@charset "utf-8";
/* CSS Document */

.menu {
width:582px; 
font-size:0.85em;
padding-bottom:0px;
}

/* Tab setup */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}

/* 1st level flyout menu dimensions */
.menu ul ul {
width:97px;
padding: 0px 0px 0px 0px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
width:97px;
position:relative;
font-family:Arial, Helvetica, sans-serif;
}
/* Tab Style */
.menu a, .menu a:visited {
display:block;
font-size:11px;
font-weight:bolder;
text-decoration:none;
text-align:center;
color:#EEEEEE;
width:97px; /*Width of the Tabs*/ 
height:30px; /*Height of the Tabs*/
border:1px solid #FFFFFF; 
border-width:1px 0px 0px 1px;
border-right-color:#FF0000;
border-left-color:#999999;
border-top-color:#CCCCCC;
background:#FF0000; 
padding-left:0px; 
line-height:30px;  /*height at which the top line tab text appears*/
background:url("../Images/menu.gif") no-repeat right top;

}
/* IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:97px;
w\idth:97px;
}


/* 3rd level flyout background - not yet used*/
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#999999;
border:1px;
border-color:#666666;
border-collapse:collapse;

}

/* 1st level:  Style of the menu item which allows a 1st flyout */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#333333; 
color:#CCCCCC;
border-collapse:collapse;
border: 1px;
border-color:#999999;
}

/* style the 2nd level hover */
.menu ul ul a.drop:hover{
background:#CCCCCC; 
}

.menu ul ul :hover > a.drop {
background:#666666; /* Hover for 1st level menu that allows 2nd level menu to open */
}




/* 3rd level hover - not used yet*/
.menu ul ul ul a:hover {
background:#FF66FF;
}
.menu ul ul ul :hover > a {
background:#666666; /*Second Level Hover Cell Color*/
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:31px;  
left:0px; 
width:95px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
t\op:31px;
}

/* position the 2nd level flyout menu */
.menu ul ul ul{
left:99px; /* shift the second level flyout menu right so it lines up with the main dropdown menu */
top:0px;  /* shift the second level menu up a tiny bit */
width:95px;
text-indent: -3px; /*move the text in the menu cell a bit to the left */
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:0px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}


/* style the first level links */
.menu ul ul a, .menu ul ul a:visited {
color:#333333; 
height:auto; 
line-height:1.75em;
padding:2px 2px 5px 10px; /* make the second level menu cell taller or shorter */
width:85px;
background:#CCCCCC;  /* Background Color of the flydown menu directly under the Tab */
border:1px;
border-collapse:collapse;
border-color:#999999;
text-align:left;
text-decoration:none;
}



/* IE5.5 Compatibility*/

* html .menu ul ul a{
width:95px;
w\idth:129px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#CCCCCC;
background:#333333;
}

.menu :hover > a, .menu ul ul :hover > a {
color:#222222;
background:#666666; 
background:url("../Images/menu.gif") no-repeat right top;
  background-position:100% -30px;
}

/* Hover property for the 1st level drop down menu under the tab */
.menu ul ul :hover > a, .menu ul ul :hover a:visited {
color:#CCCCCC;
background:#333333;
border:1px;
border-color:#333333;
border-collapse:collapse;
}




/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}






