/* ================================================================ 
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/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/*======================== 1ST LEVEL MENU DEFINITIONS ========================*/

/* common styling */

.arrow {
	display:block;
	margin:0;
	text-align:right;
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
	cursor:hand;           /* IE5 only knows about "hand", so set it both ways */
}

.arrow span {        /* this simultaneously left and right aligns the text and */
	float:left;       /* the >> in the drop-down menus which link to sub-menus */
}

.menu {
	font-family: Arial, Helvetica, sans-serif;  
	position:relative; 
	font-size:10px; 
	z-index:100; 
	margin-left:15px;
	margin-right:15px;
	height:23px;
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
	cursor:hand;}           /* IE5 only knows about "hand", so set it both ways */

.menu ul {
	padding:0; 
	margin:0; 
	list-style: none;}

.menu ul li {
	float:left; 
	position:relative;}

.menu ul li a,
.menu ul li a:visited {
	display:block;
	text-decoration:none;
	height:23px; 
	text-align:center; 
	color:#000000;
	background: #FFFF00 url(images/buttons/button_up.gif) repeat-x;
	border:1px outset #B5B5B5;
	width:83px;
	line-height:23px; 
	font-size:11px; 
	overflow:hidden;
	filter:alpha(opacity=90);
	-moz-opacity:.90;opacity:.90;}

.menu ul li a:hover {
	background:#FFFF00 url(images/buttons/button_down.gif) repeat-x;
	color:#FFFFFF}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu ul li ul {
	display: none;}

/* specific to non IE browsers */

.menu ul li:hover ul {
	display:block; 
	position:absolute; 
	top:24px; 
	left:0; 
	width:150px;}

.menu ul li:hover ul li a {
	display:block; 
	background:#FFFF00; 
	color:#000000;
	padding:0px 0.33em;	       /* this sets the l/r margins for our menu item */
	width:150px;
	text-align:left;}

.menu ul li:hover ul li a:hover {
	background:#4166B4; 
	color:#FFFFFF;
	width:150px;}

.menu ul li:hover ul li a.hide {
	background:#FFFF00; 
	color:#000000;}

.menu ul li:hover ul li:hover a.hide {
	background:#4166B4; 
	color:#FFFFFF;}

.menu ul li:hover ul.left {
	left:-75px;}

/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul li ul {
	display: none;}

.menu ul li:hover ul li:hover ul {
	display:block; 
	position:absolute; 
	left:159px; 
	z-index:101;
	top:0;
	width:175px;}

.menu ul li:hover ul li:hover ul li a,
.menu ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	width:175px;
}

.menu ul li:hover ul li:hover ul a.hide {
	background:#FFFF00; 
	color:#000000;}

.menu ul li:hover ul li:hover ul li:hover a.hide {
	background:#4166B4; 
	color:#FFFFFF;}

.menu ul li:hover ul li:hover ul.left {
	left:-184px;}

/*======================== 4TH LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul li:hover ul li ul {
	display: none;}

.menu ul li:hover ul li:hover ul li:hover ul {
	display:block; 
	position:absolute; 
	left:175px; 
	top:0;}

.menu ul li:hover ul li:hover ul li:hover ul.left {
	left:-184px;}