/* ================================================================ 
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 */
/*OK*/
.menu{
	font-family: "Cooper Black", sans-serif;
	position: fixed;
	margin-top:10px;
	left:0px;
	padding-left:10px;
	padding-right:10px;
	text-align: left;
	width: 180px;
	z-index:100;
	height:100%;
}
/*OK*/
.menu ul li a, .menu ul li a:visited {
	display:block;
	text-decoration:none;
	color:#000;
	width:180px;
	height:20px;
	text-align:center;
	background:#ff0;
	background-image: url('/sis/images/menu/menu_inactive.gif');
	background-repeat: no-repeat;
	line-height:19px;
	font-size:16px;
	padding-top:5px;
	padding-bottom:5px;
/*	overflow:hidden;*/
}
/*OK*/
.menu ul {
	padding:0;
	margin:0;
	list-style-type: none;
}
/*OK*/
.menu ul li {
	float:left;
/*	margin-right:1px;*/
	position:relative;
}
/*OK*/
.menu ul li ul {
	display: none;
}


/* specific to non IE browsers */

/*OK*/
.menu ul li:hover a {
	color:#933;
	background:#ff0;
	background-image: url('/sis/images/menu/menu_active.gif');
	background-repeat: no-repeat;
}

/*OK*/
.menu ul li:hover ul {
	display:block;
	position:absolute;
	top:0;
	left:180px;
/*	width:105px;*/
}

/*Used only for third level menus, NOT TESTED
.menu ul li:hover ul li a.hide {
	background:#ddd;
	background-image: url('./images/menu/Level2_200_20.gif');
	background-repeat: no-repeat;
	color:#000;
	text-align:left;
	width:200px;
}
.menu ul li:hover ul li:hover a.hide {
	width:150px;
}
.menu ul li:hover ul li ul {
	display: none;
}
*/

/*OK*/
.menu ul li:hover ul li a, .menu ul li:hover ul li a:visited {
	display:block;
	background:#ff0;
	color:#000; 
	background-image: url('/sis/images/menu/menu_inactive.gif');
	background-repeat: no-repeat;
	width:180px;
	text-align:center;
	height:20px;
}

/*OK*/
.menu ul li:hover ul li a:hover {
	background:#ff0;
	color:#933;
	background-image: url('/sis/images/menu/menu_active.gif');
	background-repeat: no-repeat;
	text-align:center;
	width:180px;
}


/*TO BE TESTED, Dont know what theses settings do. Probably for third level menus*/


.menu ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:160px;
	top:0;
	color:#000;
}
.menu ul li:hover ul li:hover ul li a {
	display:block;
	width:160px;
	background:#dfc184;
	color:#000;
}
.menu ul li:hover ul li:hover ul li a:hover {
	background:#ff0;
	color:#fff;
}


