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

nav {
	width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	height:25px;
	padding: 0 252px;
	border-top: 4px solid #FFFFFF;
	border-bottom: 4px solid #FFFFFF;
	font-family:Verdana, Geneva, sans-serif;
	font-size:14px;
	background-color:#0000C0;
	float:left;
}
nav ul {
	list-style: none; /* this removes the list marker */
}
nav ul li {
	float:left;
}
nav ul a, nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 3px 7px 3px 7px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: Auto;
	height:19px;
	text-decoration: none;
	background: #0000C0;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #FFFFFF;
	color: #0000C0;
}

.subNav ul li {
	height:auto;
}
nav ul {
	margin:0;
	padding:0;
	list-style: none; 
	border:none;
}
nav ul li {
	float:left;
	text-align:left;
	min-width:200px;
	min-height:15px;
	margin-left:5px;
	height:auto;;
	background-image:url(../_images/arrow.png);
	background-position:left;
	background-repeat:no-repeat;
}
nav ul a, nav ul a:visited, nav ul a:link { 
	display: block; 
	width: auto;
	background: #0000C0;
	color: #FFFFFF;
	text-decoration: none;
	background-image:url(../_images/arrow.png);
	background-position:left;
	background-repeat:no-repeat;
	padding: 3px 7px 3px 27px;
}
nav ul a:hover, nav ul a:active, nav ul a:focus, subNav ul a:hover, subNav ul a:active, subNav ul a:focus {
	text-decoration: none;
	height:19px;
	background: #FFFFFF;
	color: #0000C0;
	background-image:url(../_images/arrow.png);
	background-position:left;
	background-repeat:no-repeat;
}
nav li.subNav ul, nav li.subNav li.subNav ul {
	display:none;
}
nav li.subNav ul li {
	float:none;
}
nav li.subNav:hover ul, nav li.subNav li.subNav:hover ul {
	display:block;
	position:absolute;
	width:auto;
	margin-top:0px;
	magin-bottom:0px;
}
nav li.subNav li, nav li.subNav li.subNav li {
	border-bottom:1px solid #FFFFFF;
	border-top:1px solid #FFFFFF;
	border-left:1px solid #FFFFFF;
	border-right:1px solid #FFFFFF;
}
 nav li.subNav li.subNav:hover ul {
	display:block;
	position:absolute;
	left:100px;
	min-width:300px;
	width:auto;
	margin-top:-10px;
}
nav li.subNav li.subNav li.subNav ul, nav li.subNav li.subNav li.subNav li.subNav ul {
	display:none;
}
nav li.subNav li.subNav li.subNav:hover ul, nav li.subNav li.subNav li.subNav li.subNav:hover ul {
	display:block;
	position:absolute;
	width:auto;
	margin-top:0px;
}
 nav li.subNav li.subNav li.subNav:hover ul {
	display:block;
	position:absolute;
	left:115px;
	width:auto;
	margin-top:-30px;
}
nav li.subNav li.subNav:hover ul li, nav li.subNav li.subNav li.subNav:hover ul li {
	text-align:left;
	min-width:300px;
	margin-left:2px;
	height:auto;
	width:auto;
}
