<!--

/*

	navigation-horizontal.css
	=========================
	This style sheet defines the rules for a horizontal navigation bar. To
	apply these rules to nav2 just change nav1 to nav2.

*/

/*--------------------------------------------------
	LEVEL 1
--------------------------------------------------*/

div#nav1 {
	float: right;
	font-size: 0.9em;
	font-weight: bold;
}

div#nav1 ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

div#nav1 ul li {
	float: left;
	margin: 0 1px 0 0;
	/* Needed for drop down */
	position: relative;
	background-color: #d1edfe;
}

div#nav1 ul li:hover {
	background-color: #3eaaea;
}

/* Custom styling for the nav background */

div#nav1 ul li#n1 {
	background:url(../images/nav1_bg_left.gif) no-repeat left bottom;
	background-color: #d1edfe;
}

div#nav1 ul li#n1:hover {
	background:url(../images/nav1_bg_left_over.gif) no-repeat left bottom;
	background-color: #3eaaea;
}

div#nav1 ul li#n1 a.selected ,
div#nav1 ul li#n1 a.parent {
	background:url(../images/nav1_bg_left_selected.gif) no-repeat left bottom;
	background-color: #0c78b8;
}

div#nav1 ul li#n191 {
	background:url(../images/nav1_bg_right.gif) no-repeat right bottom;
	background-color: #d1edfe;
}

div#nav1 ul li#n191 a.selected,
div#nav1 ul li#n191 a.parent {
	background:url(../images/nav1_bg_right_selected.gif) no-repeat right bottom;
	background-color: #0c78b8;
}

div#nav1 ul li#n191:hover {
	background:url(../images/nav1_bg_right_over.gif) no-repeat right bottom;
	background-color: #3eaaea;
}

div#nav1 ul li a {
	display: block;
	padding: 23px 13px 8px 13px;
	color: #3679b3;
	text-decoration: none;
}

div#nav1 ul a.parent {
	color: #FFFFFF;
	background-color: #0c78b8;
}

div#nav1 ul a.selected {
	color: #FFFFFF;
	background-color: #0c78b8;
}

div#nav1 ul li a:hover {
	text-decoration: none;
	color: #FFFFFF;
}

/* IE fix for gap under list items */
* html div#nav1 ul li.level2 { float: left; clear: both; }
* html div#nav1 ul li.level2 a { height: 1%; }

/*--------------------------------------------------
	DROP DOWN ACTIONS
--------------------------------------------------*/

div#nav1 ul.level1 li:hover ul.level2 {
	/* Needed for drop down */
	display: block;
}

/*--------------------------------------------------
	LEVEL 2
--------------------------------------------------*/

div#nav1 ul.level2 {
	border: 1px solid #666666;
	/* Needed for drop down */
	position: absolute;
	left: 0;
	top: 23px;
	display: none;
	width: 100px;
}

div#nav1 ul.level2 li {
	width: 100px;
	margin: 0;
	float: none;
}

/*--------------------------------------------------
	LEVEL 3 +
--------------------------------------------------*/

div#nav1 ul.level3 {
	display: none;
}

/*

	Nav2 rules

*/

/*--------------------------------------------------
	LEVEL 1
--------------------------------------------------*/

div#nav2 {
	position: absolute;
	top: 96px;
	margin-left: 0;
	font-size: 1.10em;
	font-weight: bold;
}

div#nav2 ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

div#nav2 ul li {
	float: left;
	margin: 0 0 2px 0;
	/* Needed for drop down */
	position: relative;
	cursor: pointer;
}


div#nav2 ul li a {
	display: block;
	padding: 6px 12px 6px 13px;
	color: #FFFFFF;
	text-decoration: none;
}

div#nav2 ul a.parent {
	background: url(../images/nav2_bg_over.gif) repeat-x;
}

div#nav2 ul a.selected {
	background: url(../images/nav2_bg_over.gif) repeat-x;
}

div#nav2 ul li a:hover {
	text-decoration: none;
}

div#nav2 ul li:hover {
	text-decoration: none;
	background: url(../images/nav2_bg_over.gif) repeat-x;
}

/* IE fix for gap under list items */
* html div#nav2 ul li.level2 { float: left; clear: both; }
* html div#nav2 ul li.level2 a { height: 1%; }

/*--------------------------------------------------
	DROP DOWN ACTIONS
--------------------------------------------------*/

div#nav2 ul.level1 li:hover ul.level2 {
	/* Needed for drop down */
	display: block;
}

/*--------------------------------------------------
	LEVEL 2
--------------------------------------------------*/

div#nav2 ul.level2 {
	border: 1px solid #666666;
	/* Needed for drop down */
	position: absolute;
	left: 0;
	top: 23px;
	display: none;
	width: 100px;
}

div#nav2 ul.level2 li {
	width: 100px;
	margin: 0;
	float: none;
}

/*--------------------------------------------------
	LEVEL 3 +
--------------------------------------------------*/

div#nav2 ul.level3 {
	display: none;
}

div.stripNav ul {
	margin: 2px;
	padding: 0 0 0 34px;
}

div.stripNav ul li {
	display: inline;
}

div.stripNav ul li a {
	border-right: 1px solid #BBBBBB;
	padding: 0 5px 0 5px;
}

div.stripNav a#n200,
div.stripNav a#n191 {
	border-right: none;
}

	

-->