@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	/* background: #F9F9F7 url('images/pattern_062.gif');	*/
	background: #aaaaaa;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #000000;
}
#mainBody {
	background-image: url(images/body-bg.gif);
}
#shade {
	width: 1022px;
	background-image: url(images/bg.gif);
	margin: 0 auto; 
}
#container { 
	width: 980px;  
	background: #FFFFFF;
	margin: 0 auto; 
	/* border: 1px solid #000000; */
	text-align: left;	
} 
#header { 
	/* background: #0033CC; */
	background: #016dae; 
	color: #FFFFFF;
	padding: 0 10px;  /* 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. */
	height: 120px;
} 
#header h1 {
	font-family: "Times New Roman", Times, serif;
	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 */
	color: #ffca03;
	font-size: 40px;
	font-weight: normal; 
}
#languages {
	/* width: 200px;
	position: relative;
	top: -17px;
	left: 760px;
	padding: 0 10px;
	text-align: right; */
	padding-bottom: 8px;
}
#languages img {
	margin-left: 4px;
	border: 0;
}
#logo {
	position: relative;
	top: 0;
	left: 10px;
	
}
#login {
	font-size: 0.6em;
	position: relative;
	width: 200px; 
	top: -110px;
	left: 765px; 
	color: #FFFFFF;
	text-align: center;
}
#login fieldset legend {
	color: #FFFFFF;
}
#login a:link, #login a:visited, #login a:hover {
	color: #FFFFFF;
}

#vmenu	
{
	float: left; 
	width: 140px; 
	/* background: #EBEBEB; */ /* the background color will be displayed for the length of the content in the column, but no further */
	background: #FFFFFF;
	padding-top: 2px; /* top and bottom padding create visual space within this div  */
	padding-bottom: 2px; /* top and bottom padding create visual space within this div  */
	font-size: 0.7em;
}


#hmenu {
	height: 30px;
	margin-top: 8px;
	border-bottom: 2px solid #016dae;
}
#hmenu ul {
	margin: 0;
	margin-left: 10px;
	padding: 0;
	list-style: none;
}
#hmenu ul li {
	/* display: inline; */
	margin: 2px;
}
#hmenu ul li a:link, #hmenu ul li a:visited {
	border: 1px solid #016dae;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
	color: #016dae;
	font-weight: bold;
	text-decoration: none;
	font-size: 0.8em;
}
#hmenu ul li a:hover {
	background-color: #016dae;
	color: #FFFFFF;
}



/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqRtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#sidebar1 {
	float: right; 
	width: 200px; 
	/* background: #EBEBEB; */ /* the background color will be displayed for the length of the content in the column, but no further */
	background-color: #FFFFFF;
	padding-top: 10px; /* top and bottom padding create visual space within this div  */
	font-size: 0.8em;
}
#sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
#sidebar1 h3 {
	background-color:#016dae;
	color: #FFFFFF;
	font-size: 1.0em;
	display: block;
	margin-left: 10px;
	margin-right: 10px;
	padding: 5px;
}
#sidebar1 ul {
	padding-left: 25px;
	padding-right: 15px;
	font-size: 0.8em;
}
#sidebar1 ul li {
	margin-bottom: 10px;
}
#boxes {
	background-color: #EBEBEB;
	padding-top: 2px;
	padding-bottom: 5px;
}	
#search {
	text-align: center;
}
#search a {
	font-size: 0.8em;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#mainContent { 
	/* margin: 0 26% 0 10px;*/  /* the left margin should mirror the margin on the header and footer for proper alignment. */
	margin-left: 10px;
	margin-right: 10px;
	float: left;
	width: 620px;
} 
#mainContent h1 {
	font-size: 1.1em;
}
#mainContent h2 {
	background-color:#016dae;
	color: #FFFFFF;
	font-size: 1.0em;
	display: block;
	margin-left: 10px;
	margin-right: 10px;
	padding: 5px;
}
#mainContent h3 {
	margin-left: 10px;
	padding-left: 30px;
	font-size: 0.9em;
}
#mainContent p, #mainContent td {
	font-size: 0.9em;
	line-height: 1.5;
	margin-left: 10px;
	margin-right: 10px;
	padding-left: 30px;
	text-align: justify;
}
 #mainContent ul li, #mainContent ol li  {
	line-height: 1.5;
 }
#mainContent ul {
	font-size: 0.9em;
	margin-left: 15px;
	padding-left: 40px;
}
.article_row {
	margin-left: 10px;
	margin-right: 10px;
	padding-left: 30px;
	border-bottom: 1px dotted #0033CC;
}
.article_title {
	font-style: italic;
}
.downloads {
	text-align: center;
}


#footer { 
	font-size: 0.7em;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	border-top: 2px solid #0033CC;
	border-bottom: 2px solid #0033CC;
} 
#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 */
}


/* Miscellaneous classes for reuse */
.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. The floated element must precede the element it should be next to on the 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;
}
.centered {
	text-align: center;
}

input.loginField
{
width: 80px;
}

img.frontPage {
	border: solid 2px #016dae;
	padding: 2px;
}
p.innerText {
	margin-left: 40px;
	padding-left: 10px;
}



/* HORIZONTAL MENU */

#tabs {
	float:left;
	width:100%;
	font-size:93%;
	line-height:normal;
	border-bottom:1px solid #666;
	margin-bottom:1em; /*margin between menu and rest of page*/
	overflow:hidden;
	}

#tabs ul {
	margin:0;
	padding:10px 10px 0 0px;
	list-style:none;
	
	}

#tabs li {
	display:inline;
	margin:0;
	padding:0;
	}

#tabs a {
	float:left;
	background:url("images/left.png") no-repeat left top;
	margin:0;
	padding:0 0 0 6px;
	text-decoration:none;
	}

#tabs a span {
	float:left;
	display:block;
	background:url("images/right.png") no-repeat right top;
	padding:6px 15px 4px 6px;
	margin-right:2px;
	color:#FFF;
	}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
#tabs a span {float:none;}

/* End IE5-Mac hack */
#tabs a:hover span {
	}

#tabs a:hover {
	background-position:0% -42px;
	}

#tabs a:hover span {
	background-position:100% -42px;
	}

/* END OF HORIZONTAL MENU */

/* VERTICAL MENU */

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.sidebarmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
font: bold 13px Verdana;
width: 140px; /* Main Menu Item widths */
border-bottom: 1px solid #ccc;
}
 
.sidebarmenu ul li{
position: relative;
}

/* Top level menu links style */
.sidebarmenu ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: #016dae;
text-decoration: none;
padding: 6px;
border-bottom: 1px solid #778;
border-right: 1px solid #778;
}

.sidebarmenu ul li a:link, .sidebarmenu ul li a:visited, .sidebarmenu ul li a:active{
/* background-color: #012D58; */ /*background of tabs (default state)*/
	background-color: #cecbb5;
}

.sidebarmenu ul li a:visited{
color: #016dae;
}

.sidebarmenu ul li a:hover{
background-color: #ffca03;
}

/*Sub level menu items */
.sidebarmenu ul li ul{
position: absolute;
width: 170px; /*Sub Menu Items width */
top: 0;
visibility: hidden;
}

.sidebarmenu a.subfolderstyle{
background: url(images/right.gif) no-repeat 97% 50%;
}

 
/* Holly Hack for IE \*/
* html .sidebarmenu ul li { float: left; height: 1%; }
* html .sidebarmenu ul li a { height: 1%; }
/* End */



/* END OF VERTICAL MENU */
