
/* ================================================================ 
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/menux2s/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.
=================================================================== */
.menux2 {
height:200px;/*was 190*/
margin:10px 0 50px 5px; /* this page only */
font-family:Arial, Helvetica, sans-serif;
font-size:65%;
}

/* remove all the bullets, borders and padding from the default list styling */
.menux2 ul {
position:relative;
z-index:500;
padding:0;
margin:0;
list-style-type:none;
width:170px;
}
/* style the list items */
.menux2 li {
background: url(../Default/intellect_images/navBull.gif) no-repeat;
height:26px;
/* for IE7 */
float:left;
text-align:left;
}
/*.menux2 li.sub {background:orange url(sub.gif) no-repeat right center;} */

/* get rid of the table */
.menux2 table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menux2 a, .menux2 a:visited {
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:170px;
/*color:#000;*/
text-indent:24px;
border:1px solid #fff;
border-width:0 1px 1px 0px;
}
/* hack for IE5.5 */
* html .menux2 a, * html .menux2 a:visited {width:170px; w\idth:170px;}
/* style the link hover */
* html .menux2 a:hover {position:relative;}

.menux2 li:hover {position:relative;}

/* For accessibility of the top level menux2 when tabbing - this is awesome but i wont use in this instance
.menux2 a:active, .menux2 a:focus {color:pink; background:black;}*/

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.menux2 li:hover > a {color:White; background:url(../Default/intellect_images/level1_on.jpg) repeat-y;}

/*need something like this for IE6*/ 
* html .menux2 li a:hover{color:White; background:url(../Default/intellect_images/level1_on.jpg) repeat-y;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menux2 li ul {
visibility:hidden;
position:absolute;
top:-30px;
/* set up the overlap (minus the overrun) */
left:130px;
/* set up the overrun area */
padding:30px;
/* this is for IE to make it interpret the overrrun padding */
background:transparent url(transparent.gif);
}
.menux2 a{
color:#5b5b5b;
text-decoration:none;
}
.menux2 a:hover{
text-decoration:underline;
}

.menux2 li li{
background:#944fa0 url(../Default/intellect_images/navBull2.gif) no-repeat;
text-align:left;
}
.menux2 li li a{
	font-size:80%;
	color:White;
}
.menux2 li li a:hover{
	text-decoration:underline;
	background:#944fa0 url(../Default/intellect_images/navBull2.gif) no-repeat;
	color:White;
}





/* for browsers that understand this is all you need for the flyouts */
.menux2 li:hover > ul {visibility:visible;}


/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.menux2 ul a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.menux2 ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.menux2 ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
.menux2 ul a:hover ul {
visibility:visible;
}
/* make the third level visible when you hover over second level link */
.menux2 ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.menux2 ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.menux2 ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
