/* Nav Bar - Do not edit unless you know what you are doing */

/* Top static bar */
#nav {
	height: 24px;
	width: 750px;		/* A width + padding */
	position: relative;
	margin: 0px;
	padding: 0px;
	z-index: 99000;
}

/* disable all padding on sub-lists */
#nav li ul {
	margin: 0;
	padding: 0;
	background: #000;
	background-image: linear-gradient(top, #000 30%, #272727 75%);
	background-image: -ms-linear-gradient(top, #000 30%, #272727 75%);
	background-image: -moz-linear-gradient(top, #000 30%, #272727 75%);
	background-image: -webkit-linear-gradient(top, #000 30%, #272727 75%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#272727'); 
	border-top: 1px solid black;
}

/* Disable all link decorations */
#nav a {
	text-decoration: none;
}

/* Float the main list items, same height as #nav */
#nav li {
	margin: 0px;
	float: left;
	display: block;
	height: 24px;
	color: #fff;
}

/* Sub-menu - Hide by default */
#nav li ul {
	display: none;
}

/* Put the subnav below, space from the top by height of #nav */
#nav li.off ul, #nav li.on ul  {
	position: absolute;
	top: 27px;
	float: left;
	left: -1px;
	height: 23px;
	padding-left: 6px;
	padding-bottom: 4px;
	width: 749px;
}

/* To style the enabled sub-list */
#nav li.on ul {
/*
	background: green;
*/
}

/* To style the enabled sub-list for IE */
#nav li.on:hover ul, #nav li.over ul {
/*
	background: #224d6f;
*/
}

/* Set the style for the links in the top bar - the total height must be equal to the height of #nav, 
 * and the total width of all elements must be no longer than the width of #nav */
#nav li a {
	color: #fff;
	display: block;
	width: 70px; 
	height: 21px;
	padding: 6px 2px 0px 2px;
	font-size: 12px;
	position: relative;
	text-align: center;
}

/* Style enabled link titles in #nav */
#nav li.on a {
	color: #f90;
	background: #000;
	background-image: linear-gradient(bottom, #000 30%, #272727 75%);
	background-image: -ms-linear-gradient(bottom, #000 30%, #272727 75%);
	background-image: -moz-linear-gradient(bottom, #000 30%, #272727 75%);
	background-image: -webkit-linear-gradient(bottom, #000 30%, #272727 75%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#272727'); 
	
}
#nav li:first-child.on a {
	border-top-left-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-webkit-border-top-left-radius: 6px;
}

#nav li.on ul a {
	color: #f90;
	background-image: none !important;
	background: none !important;
}

/* Style links in the sub-nav - Total height must be equal to that of the sub-nav UL */
#nav li.on ul a, #nav li.off ul a {
	border: 0;
	float: left; 		/*ie doesn't inherit the float*/
	color: #fff;
	width: auto;
	padding: 9px 12px 2px 12px;
	height: 16px;
	font-size: 10.5px;
}
#nav li ul li {
	height: 26px;
}

/* New links colored differently */
#nav li.on ul .new a, #nav li.off ul .new a {
	color: #006DEF;
}

#nav li.on ul .newt, #nav li.off ul .newt{
	color: #f90;
	font-size: 9px;
}

/* Style enabled sub-nav list for IE */
#nav li.on:hover ul a, #nav li.over ul li a {
/*
	background: #224d6f;
*/
}

/* How to display sub list */
#nav li.on ul {
	display: block;
}

/* How to place sub-list when enabled */
#nav li.off:hover ul, #nav li.over ul {
	display: block;
	z-index: 6000;
}

/* Set the color of sub-nav links when mouse-overed */
/* Includes New links */
#nav li.off a:hover, #nav li.on a:hover, #nav li ul .new a:hover { 
	color: #f90;
}

/* Set the default styles for all top links */
/*
#toplink1 a, #toplink2 a, #toplink3 a, #toplink4 a, #toplink5 a, #toplink6 a {
	display: block;
	height: 100%;
	width: 100%;
	position: relative;
	text-align: center;
}
*/

/*subnav formatting*/
#nav li.off ul a, #nav li.on ul a {
	display: block;
	color: #888;
}		

#nav li.on ul a {
/*
	background: #f90;
*/
}


