/* Navigation */
	
/* MinTabs Layout - These style will go on Navigation or Layout CSS */
ul#navPage {
	list-style: none;
	margin: 0;
	padding: 7px 0;
	text-align: right;
	white-space: nowrap;
	}
ul#navPage li {
	display: inline;
	margin: 0 2px;
	}
ul#navPage a {
	text-decoration: none;
	padding: 0 0 3px;
	}
	
/* MinTabs Colors - These style will go on Color CSS if separated out.*/
ul#navPage {
	border-bottom: 1px solid #ccc;
	}
ul#navPage a {
	border-bottom: 4px solid #FFF;
	color: #777;
	}
ul#navPage a.selected { 
	border-color: #f90;
	color: #000;
	}
ul#navPage a:hover { 
	border-color: #f90;
	}


/* Horizontal Dropdown Menu Layout - Needs to be kept together.
REQUIRES menu output as list and put inside <div id="navCategory">
*/
#navCategories, #navCategories ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}
	
#navCategories li {
	position: relative;
	}
	
#navCategories li ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
#navCategories li a {
	display: block;
	text-decoration: none;
	color: black;
	background-color: #FDFFF5;
	background: #FDFFF5; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	}
	
/* Holly Hack. IE Requirement \*/
* html #navCategories li { float: left; height: 1%; }
* html #navCategories li a { height: 1%; }
/* End */

#navCategories li:hover ul, #navCategories li.over ul { display: block;} /* The magic */


