/* =Nav
----------------------------------------------- */
#nav {
	height: 25px;
	/* width: 100%; */
	margin: 0;
	padding-top: 5px;
	padding-left: 45px;
	background-color: #fff;
	background-image: url(../images/top_nav_bg.jpg);
	background-repeat: no-repeat;
	border: 0px solid red;
	text-align: center;
	font: 10pt lucida, helvetica, sans-serif;
}

#nav ul {
	width: 495px;
	margin: auto;
	padding: 0 10px;
	list-style: none;
	font: 10pt lucida, helvetica, sans-serif;
	border: 0px solid red;
}

#nav li {
	float: left;
	margin: 0;
	padding: 0;
	background-image: none;
	line-height: normal;
	text-indent: 0;
}

#nav a {
	display: block;
	margin: 0;
	padding: 0 10px;
	border: 1px solid #000;
	border-width: 0 0 0 1px;
	color: #000;
	text-decoration: none;
	white-space: nowrap;
}

* html #nav a {
	font-size: 12px;
}

#nav li:first-child a {
	border-width: 0px;
}

* html #nav a.first {
	border-width: 0px;
}

#nav li.selected {
	background-color: #000;
}

#nav li.selected a {
	color: #fff;
}


/* Following rule allows entire region of link to to be 
clickable in IE/Win. Holly Hack explained here: 
http: //www.positioniseverything.net/explorer/escape-floats.html */
* html #nav a {
	width: 1%;
}

#nav a:hover {
	background-color: #000;
	/* 
	background-image: url("../images/bg_nav_shadow.jpg");
	background-repeat: no-repeat;
	*/
	color: #fff;
}


/* =Menu-items
----------------------------------------------- */
#nav .menu_items {
	text-align: left;
	z-index: 1000;
	position: absolute;
	margin: 0px;
	padding: 0 35px 0 0;
	display: none;
	background-color: #fff;
	opacity: 0.90;
	filter: alpha(opacity=90);
	filter: progid: DXImageTransform.Microsoft.Alpha(opacity=90);
	filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	cursor:  pointer;
	border: 1px solid #999;
}

* html #nav .menu_items {
	padding-right: 0;
}

#nav .menu_items ul, #nav .menu_items li {
	list-style: none;
	margin: 0px;
	padding: 0px;
	text-decoration: none;
	width: 100%;
}

#nav .menu_items li {
	clear: both;
	margin: 0px;
	padding: 0;
	font-size: 0px;
	line-height: 12px;
	font: 10pt lucida, helvetica, sans-serif;
}

* html #nav .menu_items ul, * html .menu_items li {
	width: 145px;
	border: 0px solid red;
}

#nav .menu_items a {
	display: block;
	width: 100%;
	margin: 0;
	padding: 5px 25px 5px 10px;
	border: 0px solid red;
	color: #000;
	text-decoration: none;
	cursor: pointer;
	/* background-image: url("images/nav_bg.jpg"); */
}

* html #nav .menu_items a {
	padding-right: 0;
}

#nav li.selected .menu_items a {
	color: #000;
}

#nav li.selected .menu_items a:hover {
	background-color: #fe9100;
	color: #fff;
	border: 0px solid blue;
}

