/* Navigation */

#navigation {
	background-image:url(../images/nav-bg.jpg); 
	background-repeat:no-repeat;
	height:117px;
	width:1024px;
	}	

#navigation #menu{
	padding-top:46px;
	}
	
#navigation ul li{
	list-style-type:none;
	height:30px;
	float:left;
	text-align:center;
	padding-right:40px;
	display:inline;
	}	

#navigation ul.parent a:hover {
	color:#cb4f00;
	}
	
.menu-tabs ul li {
	float:left;
	}

.menu-tabs li a{ /*selected main tab style */
	color:#ffffff;
	text-decoration:none;
	font-size:14px;
	display:block;
	padding:6px 10px 0px 8px ;
	height:23px;
	cursor:pointer;
	}

.menu-tabs li.selected a{ 
	background-color: #b7c8d0; 
	color:#cb4f00;
	text-decoration:none;
	font-size:14px;
	display:block;
	padding:6px 10px 0px 8px ;
	height:23px;
	}

.menu-tabs li a:hover{ 
	background-color: #b7c8d0; 
	color:#cb4f00;
	text-decoration:none;
	font-size:14px;
	display:block;
	padding:6px 10px 0px 8px ;
	height:23px;
	}

.menu-tabs li.selected a:hover{ 
	text-decoration: none;
	}


/* Drop Down Menu */

.dropmenu{
	margin-top:-1px;
	top:0px;
	position:absolute;
	font:normal 12px arial;
	line-height:18px;
	height:27px;
	z-index:100;
	background-color:#b7c8d0;
	visibility:hidden  ;
	width:1024px;
	text-align:center;
	}


.dropmenu a{
	text-decoration: none;
	color: black;
	text-align:center;
	display:block;
	float:left;
	padding:5px 30px 0 30px;
	}


.dropmenu a:hover{
	color:#cb4f00;
	}
	
	
/* Tree Menu */
.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
	}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	padding-left: 22px;
	margin-bottom: 3px;
	}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
	}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none; /*Hide them by default. Don't delete. */
	}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
	}	
	
.treeview li ul li {
	color:#000000;
	}	
	
.treeview ul.open {
	color:red;
	}	
