/*Main Menu CSS
	
	Ver $ 1.0 $

	- To change the actual menu options, refer to "menu.js"
	- To add a drop down menu to an item in the nav add the following code: onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()"
	- To add a drop down menu to an item which will trigger onClick add the following code: onClick="return dropdownmenu(this, event, menu2, '200px')" onMouseout="delayhidemenu()"

 */


/* Used to control the float left and the vertical lines seperating the options */
#navagation {
	width: 768px;
	background: #fff;
	padding: 5px;
}

#navDiv {
	width: 768px;
	height: 26px;
	background: #000000 url(images/ddmenubg.gif) repeat-x top left;
}
.nav1, .nav2, .nav3, .nav4, .nav5, .nav6, .nav7 {
	float: left;
	padding: 4px 8px 0 8px;
}

.nav1 a:hover, .nav2 a:hover, .nav3 a:hover, .nav4 a:hover, .nav5 a:hover, .navn6 a:hover, .nav7 a:hover {
	color: #c20016;
}

.navDivide {
	float: left;
	margin: 0; padding:0;
	width: 2px;
}




/* Look and Feel CSS */
.menuMainLink {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

#dropmenudiv {
	position:absolute;
	margin: 7px 0 0 -8px;
	border:1px solid #000000;
	border-bottom-width: 0;
	text-align: left;
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	line-height:18px;
	color: #fff;	
	z-index:100;
	opacity: .9; filter: alpha(opacity=90)
}

#dropmenudiv a {
	width: 100%;
	display: block;
	text-indent: 3px;
	border-bottom: 1px solid #818181;
	padding: 1px 0;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}

#dropmenudiv a:hover { /*hover background color*/
    color: #c20016;
	background-color: #000000; 
	background: url(images/menuhover.gif) repeat-x top center; 
}

