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

#navigation {
	position: relative;
	/*background of menu bar (default state)*/
	width: 954px;
	padding-right: 12px;
	height: 34px;
	z-index: 1000;
}

#navigation ul {
	list-style-type: none;
	float: right;
}

/*Top level list items*/
#navigation ul li {
	background: none;
	padding: 0px;
	position: relative;
	display: block;
	float: left;
	font-size: 14px;
}
/*Top level menu link items style*/
#navigation ul li a, .no_link {
	display: block;
	height: 34px;
	line-height: 34px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-align: center;
	color: #2c2c2c;
	text-decoration: none;
	padding: 0px 14px 0px 10px;
}
* html #navigation ul li a { /*IE6 hack to get sub menu links to behave correctly*/
	color: #2c2c2c;
}
#navigation ul li a:link, #navigation ul li a:visited {
	color: #2c2c2c;
}
#navigation ul li a.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #ffd219;
	color: #2c2c2c;
}
#navigation ul li a:hover {
	background: #dddddd; /*background of menu items during onmouseover (hover state)*/
	color: #2c2c2c;
}
/*1st sub level menu*/
#navigation ul li ul.subnav {
	display: none;
	position: absolute;
	top: 34px; left: 0px;
	width: 300px;
	list-style-type: none;
	background: #dddddd;
	padding: 10px 0px 15px 0px;
	z-index: 800;
	border: 1px solid #bababa;
}
/*Sub level menu list items (undo style from Top level List Items)*/
#navigation ul li ul li {
	display: list-item;
	float: none;
	
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
#navigation ul li ul li ul {
	top: 0;
}
/* Sub level menu links style */
#navigation ul li ul li a, #navigation ul li ul li a:visited {
	display: block;
	width: 230px; /*width of sub menus*/
	height: 25px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	line-height: 25px;	
	text-align: left;
	margin: 0px 15px;
	padding: 0px 20px;
	background: url(../images/sm_arrow.png) no-repeat left 5px;
	border-bottom: 1px dotted #bababa;
}

#navigation ul li ul li a:hover {
	background: #7e7e7e url(../images/sm_arrow.png) no-repeat left 5px;
	color: white;
}

/* Holly Hack for IE \*/
* html #navigation {
	height: 1%;
} /*Holly Hack for IE7 and below*/
/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
}
.rightarrowclass {
	position: absolute;
	top: 6px;
	right: 5px;
}
