@charset "UTF-8";
body  {
	font: .9em Georgia, "Times New Roman", Times, serif; 
	color: #333333; 
	margin: 0px;  /* 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 */
	background-color: #333333;
	background-image: url(images/popup_dropshadow.jpg);
	background-repeat: repeat-y;
	background-position:center;
	}



p { 
	font: 1em/1.2em Georgia, "Times New Roman", Times, serif; 
	margin-top: 0px; 
	text-align: left;
	}
h1 {
	font: normal bold 1.2em Georgia, "Times New Roman", Times, serif; 
	margin-bottom: 0px; 
	color: #336699;
	}
h2 {
	font: bold 1em Georgia, "Times New Roman", Times, serif; 
	margin-bottom: 0px; 
	color: #006666;
}
	
h3 { 
	font: italic bold 1.1em Georgia, "Times New Roman", Times, serif; 
	margin-bottom: 0px; 
	color: #660033;
	}
a:link { 
	font-weight: bold; 
	text-decoration: none; 
	color: #003366;
	}
a:visited { 
	font-weight: bold; 
	text-decoration: none; 
	color: #669933;
	}
a:hover, a:active { 
	text-decoration: underline; 
	color: #660033;
	}





#popupcontainer { 
	width: 550px;  /* using 20px less than a full allowable width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
		} 
#header { 
	background: #DDDDDD; 
	padding: 0 0 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
		} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
		}
	
#mainContent { 
	margin: 0; /* 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. */
	border-left: dotted 1px #666666;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
		} 


/*  The floating boxes for IMPORTANT CALL OUT INFO .....................

NOTE: this portion of code based on 'Tranquille' by Dave Shea, found on CSSzengarden.com. css released under Creative Commons License - http://creativecommons.org/licenses/by-nc-sa/1.0/

........................................................................ */


#quickSummary {
	clear:both; 
	background-color: #99CCFF;
	margin: 20px 20px 20px 10px; 
	width: 160px; 
	float: left;
	}
#quickSummary p {
	font: italic .8em/1.3em georgia; 
	text-align:center;
	}

#preamble {
	clear: right; 
	padding: 0px 10px 0px 10px;
	}
#supportingText {
	padding-left: 10px; 
	margin-bottom: 40px;
	}
	
	/* END the floating boxes for IMPORTANT CALL OUT INFO..................
	.....................................................................*/




/*  The Navigation ...........................................
	these all need to be renamed more intuitivly. but for now it is three sections of lists with slightly different styling.*/



#linkList {
	margin-left: 0px;
	}
	
#linkList2 { 
	font: .8em Verdana, Arial, Helvetica, sans-serif; 
	/*background: transparent url(paper-bg.jpg) top left repeat-y; */
	padding: 10px; 
	margin-top: 0px; 
	width: 175px; 
	}
	
#linkList h3.select { 
	/*background: transparent url(h3.gif) no-repeat top left; */
	margin: 10px 0px 5px 0px; 
	width: 97px; 
	height: 16px; 
	}
	
#linkList h3.select span {
	display:none
	}
	
#linkList h3.favorites { 
	/*background: transparent url(h4.gif) no-repeat top left; */
	margin: 25px 0px 5px 0px; 
	width: 60px; 
	height: 18px; 
	}
	
#linkList h3.favorites span {
	display:none
	}
	
#linkList h3.downloads { 
	/*background: transparent url(h5.gif) no-repeat top left; */
	margin: 25px 0px 5px 0px; 
	width:57px; 
	height: 14px; 
	}
	
#linkList h3.downloads span {
	display:none
	}
	
#linkList h3.resources { 
	/*background: transparent url(h6.gif) no-repeat top left; */
	margin: 25px 0px 5px 0px; 
	width:63px; 
	height: 10px; 
	}
	
#linkList h3.resources span {
	display:none
	}

#linkList ul {
	margin: 0px;
	padding: 0px;
	}
	
#linkList li {
	line-height: 1.2em; 
	list-style-type: none;
	/*background: transparent url(cr1.gif) no-repeat top center; */
	display: block; 
	padding-top: 5px; 
	margin-bottom: 3px;
	margin-left: 5px;
	}
	
#linkList li a:link { 
	color: #003366;
	}
	
#linkList li a:visited {
	color: #336600;
	}


/* End Left Hand Navigation sidebar here .................... */

/*Information for footer..............................
	includes special link styles for the footer */

#footer { 
	width: 550px;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height: auto;
	background:#DDDDDD;
	border-bottom: solid #688A13 8px;
} 
#footer p {
	line-height: 1em;
	text-align: right;
	font: .8em Arial, Helvetica, sans-serif;
	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 */
}

#footer a:link { 
	font-weight: normal; 
	color: #003366;
	text-decoration: none; 
	}
#footer a:visited { 
	font-weight: normal; 
	text-decoration: none; 
	color: #669933;
	}
#footer a:hover, a:active { 
	color: #660033;
	text-decoration: none; 

	}

/*Extra elements for floating.............................
*/

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}