/* ================================================================ 
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/flyoutt.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.
=================================================================== */
/* common styling */
.menu {
	font-family: Arial, Helvetica, sans-serif;
	width:175px;
	height:200px;
	position:relative;
	font-size:13px;
	margin-top: 25px;
	margin-right: 0;
	margin-bottom: 25px;
	margin-left: 0;
}
.menu ul li a, .menu ul li a:visited {
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	width:145px;
	height:20px;
	text-align:left;
	line-height:19px;
	font-size:12px;
	font-weight: bold;
	background-color: #285171;
	border: 2px double #903530;
	margin: 4px;
	padding: 8px;
}
.menu ul {padding:0; margin:0;list-style-type: none; }
.menu ul li {float:left; margin-right:1px; position:relative;}
.menu ul li ul {display: none;}

/* specific to non IE browsers */
.menu ul li:hover a {
	color:#fff;
	border: 2px double #FFFFFF;
}
/* this is the size of the hover box */
.menu ul li:hover ul {display:block; position:absolute; top:0; left:163px; width:200px;}

/* this styles the hover */
.menu ul li:hover ul li a.hide {
	color:#1F3D59;
	background-color: #97B6CB;
}
.menu ul li:hover ul li:hover a.hide {width:200px;}
.menu ul li:hover ul li ul {display: none;}

/*This is the drop-down box, what it looks like*/
.menu ul li:hover ul li a {
	display:block;
	color:#1F3D59;
	background-color: #97B6CB;
	width:200px;
	height:20px;
	text-align:left;
	line-height:19px;
	font-size:11px;
	font-weight: bold;
	border: 0px;
	padding: 0px;
	text-indent: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
}

/*This is the rollover of the dropbox*/
.menu ul li:hover ul li a:hover {
	width:200px;
	color:#285171;
	background-color: #97B6CB;
}

/*This is the second drop-down*/
.menu ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:200px;
	top:0;
	color:#1F3D59;
}

/*This is the third menu*/
.menu ul li:hover ul li:hover ul li a {
	display:block;
	width:200px;
	color:#1596432;
}
.menu ul li:hover ul li:hover ul li a:hover {background:#bd8d5e; color:#fff;}

