﻿/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */


/* Begin CSS Popout Menu */

#menu{
position:inherit;
top:0.0em; /* was 0.5em */
left:2.0em;
z-index:3;
/* width:12.0em; */
width: 85px;
/* padding-bottom:3em; To allow room for bottom dropdown */
}

#menu a{font:normal 100%/150% verdana,arial,helvetica,sans-serif;
font-weight: bold;
display:inherit;
color: #4E4B4B; /* Orig 0A4B9C */
text-decoration: none;
white-space:nowrap;
margin:0;
padding:0 0 0 0; /* Tried 0 6px 0 10px */
}

#menu h2{
font:bold 100% verdana,arial,helvetica,sans-serif;
display:block;
border-width:0px;
border-style:solid;
border-color:#4E4B4B #4E4B4B #4E4B4B #4E4B4B;
white-space:nowrap;
margin:0;
padding:0 4px 0 4px; /* Tried 0 4px 0 4px */
}


#menu h2{
color:#fff;
background:#e5e5e5;
/* text-transform:uppercase;  BLOCKED AS NO NEED */
}

#menu a{
color:#454545; /* Dark Blue Original Item Color */
background:##e4e4e4; /* #EFEFEF */
text-decoration:none;
font-weight: bold;
}

#menu a:hover{
color:#454545; /* Changed to Gray with hover */
background:#e4e4e4; /* was 525252 */
/* color:#858687; Was for Change to Gray with hover */
/* background:#E5E5E5; */
/* Tried left-margin: 10px; */
}

#menu a:active{
color:#4E4B4B; /* was 4E4B4B */
background:#000000; /* #E5E5E5 */
}

#menu ul{
  	margin: 0 0 0 12px;
	border-top: 0;
	padding: 0 0 0 0px;
	list-style: none;
	font-size: 12px;
	font-weight: bold;
}

/* Requirement: Put the element selector name (div)
onto non anchor hover selectors to force IE5 and
5.5 to correctly apply the csshover file. */

div#menu li, div#menu li:hover{
position:relative;
background:#e4e4e4;  /* was EFEFEF background of menu and submenu*/
}

div#menu li ul{
position:absolute;
top:0;
left:100%;
display:none;
background:#8d8d8d; /* was 8d8d8d */
}

div#menu ul ul,
div#menu ul ul ul,
div#menu ul li:hover ul ul,
div#menu ul li:hover ul ul ul
{display:none;}

/* Checked till here...................... */
/* Checked till here. .........................*/


div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display:block;}

/* End non-anchor hover selectors */

/* Styling for Expand */

#menu a.x, #menu a.x:visited{

}

#menu a.x:hover{
color: #4E4B4B; /* Orig. 0A4B9C */
}

#menu a.x:active{
color:#4E4B4B; /* Orig. 0A4B9C */
background:#8D8D8D; /* Orig. 8D8D8D */
}

/* Begin Content Area */

#content{margin:0 0 0 0;padding:0.5em;border:none;}
#content a:link{color:#015696;}
#content a:visited{color:#015696;}
#content a:hover{color:#FFFFFF;background:#848687;} /*Changes the background & foreground color of items */
#content a:active{color:#060;background:#e4e4e4;} 
#content h1, #content h2, #content h3{font:bold 1.0em arial,sans-serif;margin:0.5em 0.25em;padding:0;}
#content img{border:none;}
#content p{font:normal 0.9em/1.5em verdana,helvetica,arial,sans-serif;margin:0.5em;}
#content ul, #content ul ul{font:normal 0.9em/1.5em verdana,helvetica,arial,sans-serif;margin:0 4.0em 1.5em 0;} /* Adjust the second level */
#content ul li{font:normal 0.9em/1.5em verdana,helvetica,arial,sans-serif;margin:0;}
#content ul ul li{font:normal 1.1em/1.5em verdana,helvetica,arial,sans-serif;margin:0;} /* of the sub menu */
#content .fr{float:right;margin:0 0 0.5em 0.5em;}
#content .mod{font:normal .7em arial,sans-serif;margin:.25em;}
div.vv{position:relative;top:0;float:right;margin:0 0 0 2px;}

/* End Content Area */

