﻿/*This style will be applied to the div element holding the menu*/
body
{
	margin: 0;
	padding: 0px;
}

#menuContainer1
{
	background-color: #C6D9EA;
	width: 10em;
	padding: 5px;
	padding-left: 13px;
	padding-top: 30px;
}

/* Link styles*/

#menuContainer1 a
{
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
	font-size: 10pt;
	font-family: Verdana, Arial, sans-serif;
	z-index: 0;
}

#menuContainer1 a:hover
{
	color: #498dcb;
}



div#menuContainer1 .a:hover table a:hover, div#menuContainer1 div.menuitem:hover table a:hover
{
	background: #7DA6EE;
	border: 1px solid #000000;
	border-left: 10px solid #000000;
	color: #000000;
	display: block;
	padding: 0px 12px;
	text-decoration: none;
	z-index: 1000;
}


/* Hide bullets in unordered list*/
#menuContainer1 ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* Set li styles*/

#menuContainer1 li
{
	background-color: #498dcb;
	border: 1px solid #ffffff;
	width: 10em; /* this is to make the submenus position relative to this li */
	position: relative;
	display: block;
}

/* Mouseover li style*/
#menuContainer1 li:hover
{
	border: 1px solid #000000;
	background-color: #C6D9EA;
}

/*Initially hide second level (or higher) pop-up*/
#menuContainer1 ul ul
{
	position: absolute;
	right: 10em;
	top: 0;
	visibility: hidden;
	display: block;
}

/*Mouseover: display second level (or higher) pop-up*/
#menuContainer1 li:hover > ul
{
	visibility: visible;
}





/* new menu */

.suckerdiv1 ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 155px; /* Width of Menu Items */
	border-bottom: 1px solid #fff;
}

.suckerdiv1 ul li
{
	position: relative;
}

/*Sub level menu items */
.suckerdiv1 ul li ul
{
	position: absolute;
	width: 170px; /*sub menu width*/
	top: 0;
	visibility: hidden;
}



/* Sub level menu links style */
.suckerdiv1 ul li a
{
	
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	
	color: White;
	font-family: Verdana,Arial;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
	background: #4a8ece;
	padding: 1px 7px;
	border: 1px solid #fff;
	border-bottom: 0;
	text-align: right;
	margin-bottom:-1px;
}

.suckerdiv1 ul li a:visited
{
	color: White;
}

.suckerdiv1 ul li a:hover
{
	background-color: #C6D9EA;
}

.suckerdiv1 .subfolderstyle1
{
	background: url(arrow-left1.gif) no-repeat center left;
	background-color: #4a8ece;
}


/* Holly Hack for IE \*/
* html .suckerdiv1 ul li
{
	float: left;
	height: 1%;
}
* html .suckerdiv1 ul li a
{
	height: 1%;
}
/* End */