@charset "utf-8";
body {
	font: 16px Geneva, Arial, Helvetica, sans-serif;
	background: #CCCCCC;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000099;

}

/* ---------- content + maincontent ---------- */
.onecolumn #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #EEEEEE;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.onecolumn #mainContent {
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.twocolumn #container { 
	width: 900px;
	background: #CCCCCC;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twocolumn #header { 
	background: #CCCCCC;
	padding: 10px 0 10px 0;
} 
.twocolumn #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 20px 10px 15px 20px;
}
.twocolumn #mainContent {
	background: #EEEEEE;
	margin: 0 0 0 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twocolumn #footer { 
	padding: 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#CCCCCC; 
} 
.twocolumn #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* ---------- aligning text ---------- */
.center { text-align:center; }
.left { text-align:left; }
.right { text-align:right; }

/* ---------- misc text customization ---------- */
.credits {
	font-size: 12px;
	font-style: italic;
}
.instructions {
	font-size: 14px;
	margin: 5px;
	padding: 10px;
}
blockquote {
	margin: 5px;
	padding: 10px;
	font-style: italic;
	color: #009;
}
strong { color: #000066; }
a, a:link, a:visited {
	color:#009;
	text-decoration:none;
	font-weight:bold;
}
a:hover {
	color:#069;
}
/* ---------- headings ---------- */
h2 {
	color: #009;
	border-bottom: 2px solid #009
}

/* ---------- lists ---------- */
ul {list-style-type:circle;}
li ul li {list-style-type:square;}

/* ---------- index text customization ---------- */
.indexlink {
	width: 580px;
	padding: 5px 10px 5px 10px;
	margin: 0px 0 12px 70px;
	background: #efefef;
	border: 1px solid #ccc;
}
.indexlink a,  .indexlink a:link, .indexlink a:visited {
	color:#009;
	text-decoration:none;
	font-weight:bold;
}
.indexlink a:hover {
	color:#069;
}
.eps{
	text-align:right;
	font-style:italic;
	font-weight:normal;
	color: #009;
}
.border {
	border: 1px solid #ccc;
}
.top{
	text-align:right;
	font-size: 12px;
}
/* ---------- clarifications text ---------- */
.bbs {color: #009900;}
.boolprop {color: #660066; }
.email {color: #FF9900; }
.queen {color: #CC0066 }
.borg {color: #CC00CC }
.podcast {color: #6633FF }
.conflicts {text-decoration:underline;}