﻿/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/flyout_4level.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
.menu {
	padding: 0px;
	margin: 0px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	/* position:relative; */
	z-index:500;
	list-style-type: none;
	width: 180px;
	padding: 2px; /*???*/
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
}
/* style the list items */
.menu li {
	float: left;
	height: 36px;
	width: 180px; 
	background-image:url('../images/button_background.jpg');
	background-repeat:repeat-x; 
	margin: 2px 0px 0px 0px;
/*
	border-width: 0px 1px 1px 1px;
	border-style:solid;
*/
}
.menu-top ul {
	width: auto;
}
.menu-top ul li ul {
	width: 180px;
}

.menu-top li {
/*	border-width: 1px 1px 1px 0px; */
	width: 120px;
	height: 36px;/* 72px; */
	background-image: url('../images/button_top_menu_background.jpg');
	background-repeat: repeat-x;
	margin: 0px 6px 0px 0px;
	padding: 20px 5px 20px 10px;  
}
/*
.menu li.sub {
	background-position: right;
}
.menu-right li.sub {
	background-position:left;
}
*/
/*	style the links */
.menu a, .menu a:visited {
	display: block;
	text-decoration: none;
	min-height: 36px; 
	width: 174px; 
	text-indent: 0px;
	padding: 2px 2px 2px 2px;  
}

.menu-top a, .menu-top a:visited {
	width: 120px;
}

.menu-top li a, .menu-top li a:visited {
	width: 120px;
	height: 36px;
}
.menu-top li ul li {
	height: 36px;
	margin: 0px 0px 0px 0px;
	padding: 2px 2px 2px 2px;  
}
.menu-top li ul li a, .menu-top li ul li a:visited {
	width: 174px;
	height: 36px;
	max-width: none; 
}
.menu li:hover {
	position: relative;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu li ul {
	visibility: hidden;
	position: absolute;
	top: 0px;		/* set up the overlap (minus the overrun) */;
	left: 180px;	/* set up the overrun area */;
	padding: 0px 4px 0px 4px;
}
.menu-right li ul {left: -200px;}
.menu-top li ul li{
	background-image: url('../images/button_background.jpg');
	background-repeat:repeat-x;
	width: 180px;
}
.menu-top li ul {left: 0px; top: 72px;}
.menu-top li ul li ul {left: 180px; top: 0px;}

/*
.menu li.submenu {
	background-image: url('../images/fly.gif');
	background-position: right;
	background-repeat: no-repeat;

}
*/
/*
.menu-top li.submenu {
	background-image: none;
}
*/
/* for browsers that understand this is all you need for the flyouts */
.menu li:hover > ul {
	visibility: visible;
}


/* colors */
.menu a, .menu a:visited {
	color: navy;
}
.menu a:focus, .menu li:hover > a {
	color: #551609;
	background-color: #F6F6E6;
}

.menu a:active {
	color: #feb916;
	background-color: #F6F6E6;	
}

.menu li ul {
	background-color: #F8F8EC;
}
.menu-top li ul {
	background-color: white;
}
.menu-top li ul a, .menu-top li ul a:visited {
	color: black;
}

.selected_item {
	color: #feb916;
	background-color: #F6F6E6;
}
