@charset "utf-8";

/*
--------------------------------------------------------------------------------
Basic default styles
--------------------------------------------------------------------------------
*/

* {
    margin: 0;
    padding: 0;
}

body {
    width: 1150px;
    margin: 0 auto;
    padding: 0;
    background-image: url("../images/corkboard.png");
    background-color: #a5937b;
    font: 14pt/1.3 sans-serif;
}

/*
--------------------------------------------------------------------------------
Page layout
--------------------------------------------------------------------------------
*/

#Container {
    height: 100%;
    padding-top: 5px;
	background-image: url("../images/background.png");
    background-color: #ffffff;  /* white, only if image fails */
}

#Container:after {
    clear: both;
    content: "";
    display: block;
}

#Content {
    float: left;
    width: 770px;
    margin: 0;
    padding: 10px 0;
}

#Content2 {  /* used to add the left margin while the side navigation is "sticking" to the top */
    float: left;
    width: 770px;
    margin-left: 180px;
    padding: 10px 0;
}

#Sidebar {
	float: right;
	width: 200px;
	padding: 10px 0;
}

/*
--------------------------------------------------------------------------------
Main content element styles
--------------------------------------------------------------------------------
*/

h1, h2, h3, h4, h5, h6, p {
    padding-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

h1 {
    color: #91278f;  /* purple */
    font-size: 150%;
    font-weight: 900;
}

h2 {
    margin-top: 10px;
    color: #91278f;  /* purple */
    font-size: 130%;
    font-weight: 900;
}

h3 {
    margin-top: 10px;
    font-size: 110%;
    font-weight: bold;
}

p {
    margin: 10px 2px;
}

blockquote {
    margin: 0px;
    padding: 0px 50px 1em 50px; 
    color: #0000ff;  /* HTML blue */
    text-align: left;
    font-style: italic;
}

a img {
    border: none;
}

iframe {
	margin-left: 15px;
}

/*
--------------------------------------------------------------------------------
Table element styles
--------------------------------------------------------------------------------
*/

table {
    margin: 15px;
}

th, td {
    padding: 5px 15px;
}

th {
    font-weight: bold;
}

.RngCmd {
    margin-left: 0;
}

.RngCmd .cmd {
    font-variant: small-caps;
    font-weight: 900;
}

.RngCmd th, .RngCmd td {
    text-align: left;
    vertical-align: top;
}

/*
--------------------------------------------------------------------------------
List element styles
--------------------------------------------------------------------------------
*/

ul, ol {
    margin-left: 40px;
}

li {
    padding-top: 2px;
    padding-bottom: 2px;
}

dl {
    padding-left: 15px;
    padding-right: 15px;
}

dt {
    padding-top: 5px;
    font-weight: bold;
}

dd {
    padding-left: 20px;
}

ul.toc {
    list-style-type: none;
}

/*
--------------------------------------------------------------------------------
Inline styles
--------------------------------------------------------------------------------
*/

strong {
    font-weight: bold;
}

strong.med {
    font-style: italic;
    font-weight: bold;
}

strong.max {
    color: #b60000;  /* brightest red that will pass contrast (on white) */
    font-style: italic;
    font-weight: bold;
}

/*
--------------------------------------------------------------------------------
General classes
--------------------------------------------------------------------------------
*/

.LeftFloat {
    float: left;
	margin-left: 10px;
    margin-right: 10px;
}

.RightFloat {
    float: right;
    margin-left: 10px;
	margin-right: 10px;
}

.Author {
	margin-top: -0.25em;
    padding: 0px 15px 1em 15px;
    color: #91278f;  /* purple */
	text-align: right;
	font-style: italic;
}

.Author:before {
	content: "by ";
}

.Author a {
    color: #91278f;  /* purple */
}

.QuoteSource {
    margin-top: -1em;
    padding: 0px 50px 1em 50px;
    color: #0000ff;  /* HTML blue */
    text-align: right;
    font-style: italic;
}

.QuoteSource:before {
    content: "- ";
}

.ReturnToTop {
    font-style: italic;
    font-size: 80%;
    text-align: right;
}

.ReturnToTop a {
    text-decoration: none;
}

/*
--------------------------------------------------------------------------------
Header and footer styles
--------------------------------------------------------------------------------
*/

header {
    margin-top: 10px;
    margin-bottom: 10px;
	height: 100px;
}

footer {
	margin-bottom: 10px;
	padding: 10px 0px;
	color: #ffffff;  /* white */
	background-color: #91278f;  /* purple */
	text-align: center;
	font: italic 80%/1.2 sans-serif;
}

footer p {
	margin: 0px;
}

footer a {
	color: #ffffff;  /* white */
}

/*
--------------------------------------------------------------------------------
Navigation styles
--------------------------------------------------------------------------------
*/

nav {
	float: left;
	width: 180px;
    background-color: #00a69d;  /* blue */
    color: #000000;  /* black */
}

nav a:link, nav a:visited {
	padding: 10px;
	display: block;
	color: #000000;  /* black */
	background-color: #00a69d;  /* blue */
	text-decoration: none;
	font-size: 90%;
}

nav a:hover, nav a:active, nav a:focus {
	color: #000000;  /* black */
	background-color: #8cc53f;  /* green */
}

nav ul {
	margin-left: 0;
	list-style-type: none;
}

nav ul li {
    margin-left: 0;
    padding-left: 0;
}

.Sticky {
	position: fixed;
	top: 0;
}

/*
--------------------------------------------------------------------------------
Sidebar styles
--------------------------------------------------------------------------------
*/

#Sidebar h1, #Sidebar h2, #Sidebar h3, #Sidebar p {
    padding-left: 10px;
    padding-right: 10px;
}

#Sidebar h1 {
    color: #000000;
	font-size: 110%;
    font-weight: bold;
}

#Sidebar h2 {
	font-size: 105%;
    font-weight: bold;
}

#Sidebar ul, #Sidebar ol {
    margin-left: 35px;
    padding-right: 10px;
}

#Sidebar blockquote {
    margin: 10px 2px;
    padding: 0 10px;;
    color: #000000;  /*black */
    text-align: left;
    font-style: italic;
}

#Sidebar .QuoteSource {
    color: #000000;  /* black */
    padding-top: 5px;
}

#Sidebar iframe {
    margin-left: 5px;
}
