/* Sets element margins, padding, and border to 0 to even out browser differences when adding desired values later. */
html, body, div, p, h1, h2, h3, h4, h5, h6, ol, form, fieldset, a, img, button {
     margin: 0;
     padding: 0;
     border: 0;
}
body {	
	margin:20px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:9pt;
	color:#000000;	
	background-color:DarkBlue;	
}
h1, h2, h3, h4, h5, h6 {color:Blue;}
/*Typographics styles adapted from http://www.thenoodleincident.com/tutorials/typography/ */
h1 {margin-top:1em;	font-size: 1.4em; font-weight: bold;}
h2 {margin-top:1em;	font-size: 1.2em; font-weight: bold;}
h3 {margin: 0.5em 0; font-size: 1.1em;	font-weight: bold;}
h4 {margin: 0.5em 0; font-size: 1.0em;	font-weight: bold;}
h5 {margin: 0.5em 0; font-size : 0.9em;	font-weight: bold;}
h6 {margin: 0.5em 0; font-size: 0.8em; font-weight: bold;}

p {margin: 1em 0; line-height: 1.5em;}
a {text-decoration:underline;}
a:hover {text-decoration:none;}
.txtBox {border:1px solid #666666;}
.button {
    border:1px solid #FFFFFF;
    color:#FFFFFF;
    background-color:#DC143C;
    font-size:1em;
}

#wrapper{	
	width:950px;
	margin:auto; 
	border:1px solid #000000;	
	background-color:#FFFFFF;
	
}
#header{
	height:200px; 
	position:relative;
}
#search{
	position:absolute;
	top:50px;
	left:600px;
}
	
#mainnav .item {
	padding:4px;
	border:1px solid #999999;
	background-color:#EFEFEF;
	color:Blue; 
	font-size:13pt;
	width:155px;
	text-align:center;
}
#mainnav .hover {
	text-decoration:none;
	color:#FFFFFF; 	
	background-color:#DC143C;	
}


/*** Left and Right Content ***/

#leftcolumn {
	position:relative; 
	width:150px;
	margin-left:-3px;
	margin-top:-5px;
	background-image:url(Images/topleftcorner.gif);
	background-repeat:no-repeat;
}
#rightcolumn {
	position:relative; 
	width:150px;
	margin-left:4px;
	margin-top:-3px;
	/*background-image:url(Images/toprightcorner.jpg);
	background-repeat:no-repeat;*/
}
	
.sidebarcontainer{
	padding:5px;
	margin-left:7px;
	margin-right:7px;
	border:1px solid #999999;
	background-color:#EFEFEF;
}

.sidebarcontainer a {
	color:DarkBlue; 
	text-decoration:none;
}
	
.sidebarcontainer a:hover{
	color:#FC506F; 
	text-decoration:underline;
}	

/*** Center Content ***/

#centercolumn{
	margin-top:20px;
	margin-bottom:20px;
	margin-left:50px;		
	margin-right:50px;
}
#copy a {color:DarkBlue; text-decoration:none;}
#copy a:hover {color:DarkBlue; text-decoration:underline;}
#copy .container 
{
	text-align:left;
	padding:20px 20px 20px 20px;	
}
.imgfloatright {
	float:right;
	margin:5px;
	border:1px solid #DC143C !important;
}
.imgfloatleft {
	float:left;
	margin:5px;
	border:1px solid #DC143C !important;
}


/*** Footer Content ***/

#footer {
	text-align:center;
	width:100%;
	padding:5px 0 5px 0; 
	font-size:0.9em;
	background-color:#EFEFEF;
	border-top:solid 1px #999999;	
}
#footer a {
	margin:1px 5px;	
	color:DarkBlue; 
	text-decoration:none;
}
#footer a:hover {
	color:DarkBlue; text-decoration:underline;
}


/*** Layout for printing ***/

@media print {	
	body	{
		font-size:12pt;
		line-height:13pt;
		background:#FFFFFF !important;
	}	
	#wrapper, #contentwrapper, #floatwrapper, #centercolumn, * html #wrapper, * html #contentwrapper, * html #floatwrapper, * html #centercolumn {
		width:auto !important;
		margin:auto !important;
	}
	#wrapper, #contentwrapper {border:none;}

	#mainnav{
		padding:0;
		text-align:center;
	}
	#leftcolumn, #rightcolumn, #search, #footer, #breadcrumbs {display:none;}

	#header, #wrapper, #mainnav, #mainnav .item, #mainnav .selected, #copy .container {
		background:transparent;
	}
	#centercolumn {
		float:none;
		margin:0 1em 0 2.5em;
	}
	#breadcrumbs {position:static;} 
	#copy .container{
		margin:0;
		padding:0 !important;
		border-style:none !important;
		border-width:0;
	}	
    #copy fieldset {border:none;}	
	#footer{	
		position:static;
		border-style:none !important;
		border-top:1px solid #000000; 
	}
}