﻿@import url("layout.css");
body {
	font-family: Calibri;
	font-size: 14px;
	color: #000000;
	background-color: #004779;
}
#container {
	width: 1000px;
	margin: 0 auto;
	background-color: #fff;
}
#masthead {
	text-align: right;
	width: 1000px;
	height: 165px;
	overflow: hidden;
	background-color: #004779;
}
#sidebar {
	float: left;
	width: 200px;
	padding-top: 15px;
	padding-left: 10px;
	background-color: #fff;
	position: relative;
	display: inline;
}
#content {
	float: left;
	width: 758px;
	border-left: 0px;
	border-top: 0px;
	padding: 5px 15px 15px 15px;
	overflow: hidden;
	background-color: #fff;
	margin: 0px;
	position: relative;
}

#footer {
	clear: both;
	width: 1000px;
	background-color: #004779;
	padding: 0;
	overflow: hidden;
	margin-top: 0px;
}
#masthead img {
	float: left;
	border: 0px;
}
#masthead p {
	text-align: right;
	margin: 0;
	margin-top: 5px;
	margin-right: 10px;
	padding: 0;
}
/* Styles for Navigation */
#sidebar ul {
	list-style-type: none; 
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}
#sidebar li {
	display: block;
	border: 1px solid #fff;
}
#sidebar img {
Border: 0px;
Padding: 5px;
}
#sidebar a {
	font-weight: bold;
	text-decoration: none;
	color: #04b;
	display: block;
	padding: 5px;
	border-bottom: 1px solid #f9f9f9;
}
#sidebar a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #04b;
	border-bottom: 1px solid #f9f9f9;
	background-color: #f9f9f9;
}

/* Styles for Navigation */


#content img {
	display: block;
	border: 0px;
	margin: 5px; 
}

#content a {
	color: #0044BB;
	text-decoration: underline;
}

#content a:hover {
	color: #FF0000;
	text-decoration: underline;

}


/* Styles for Footer */
#footer p {
	color: #fff;
	font-size: 0.9em;
	margin: 0px;
	padding: 2px;
}
#footer a {
	color: #FFFF99;
	text-decoration: underline;
}
#footer a:hover {
	color: #FF0000;
	text-decoration: none;
}
a {
	color: #04b;
	text-decoration: underline;
}
a:hover {
	color: #333;
	text-decoration: underline;
}
.style_bold {
	font-weight: bold;
}
.style_italic {
	font-style: italic;
}

h1 {
	font-family: calibri;
	color: navy;
	font-size: xx-large;
}

h2 {
	font-family: calibri;
	color: #000;
	font-size: x-large;
}

h3 {
	font-family: calibri;
	color: navy;
	font-size: medium;
}

h4 {
	font-family: calibri;
	color: white;
	font-size: large;
}


h6 {
	font-family: calibri;
	color: navy;
	font-size: xx-small;
}

#nav{
	list-style:none;
	font-weight:bold;
	font-size: 16px;
	margin-bottom:10px;
	/* Clear floats */
	float:left;
	width:100%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav li{
	float:left;
	margin-right:10px;
	position:relative;
	z-index:4
}
#nav a{
	display:block;
	padding:5px;
	color:#fff;
	background:#004779;
	text-decoration:none;
}
#nav a:hover{
	color: #fff;
	background: #000080;
	text-decoration: underline;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:#004779; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	margin-left:0px;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{
	/* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background: #000080;
	text-decoration: underline;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#004779;
}



