/* The menu styling */
/* Remove the padding, margins and bullets from the lists */
.menu, .menu ul {
	list-style-type:none;
	padding:0;
	width:100px;
	margin: 0;
}
.menu {
	margin-top: 5px;
	margin-right: 3px;
	margin-bottom: 40px;
	margin-left: 15px;
}
/* for IE7 to position the tables correctly */
.menu {position:relative; float:left;}

/* for IE5.5 and IE6 to position the tables corectly */
* html .menu {position:static;}

/* Set up the size of the list items and float left to place inline */
.menu li {
	display:block;
	float:left;
	width:194px;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;

}

/* Give the sub level list item a diffent background color to make it 'stand out'. */
.menu li.sub {
	border: 0px solid #FFFFFF;
	width: 180px;
	font-size: 9px;
	background-color: #4a4c58;
}

.menu li.sub2 {
	border: 0px solid #FFFFFF;
	width: 195px;
	font-size: 9px;
	background-color: #4a4c58;
}

/* Style and position the table so it takes no part in the menu function. The font size is necessary for IE5.5 */
.menu table {
	border-collapse:collapse;
	width:0;
	height:20px;
	position:absolute;
	bottom: 0;
	top:auto;
	left:0;
}

/* Default link styling */
.menu li a {
	display:block;
	font-size:9px;
	line-height:19px;
	height:19px;
	text-decoration:none;
	text-indent:15px;
	color: #abadb8;
}

/* Style the list OR link hover. Depends on which browser is used */
.menu a:hover {background:#f6f6f6; font-size:9px;}

/* For all browsers except IE5.5 and IE6 to keep the hover state through the menu cascade. */
.menu :hover > a {
	background:#f6f6f6;
	font-size: 9px;
}

/* Give the link OR list a relative position. Depends on which browser is used */
.menu li.sub:hover,
.menu li.sub a:hover {position:relative;}
.menu li.sub2:hover,
.menu li.sub2 a:hover {position:relative;}

/* keep the 'next' level invisible by placing it off screen. */
.menu ul,
.menu :hover ul ul, 
.menu :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul :hover ul ul {position:absolute;left:-9999px; width:228px; top:0;}

/* Position the flyout sub levels to 'pull-up' or 'drop-down' when hovering over the sub level list OR link.  the transparent gif is for IE7 only and need not actually exist. File transparent.gif supplied with zip file */
/* pull up */
.menu :hover ul, 
.menu :hover ul :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul :hover ul :hover ul {
	left:194px;
	top:-20px;
	bottom:auto;
	background:transparent url(trans.png);
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 0px;
} 
/* drop down */
.menu :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul :hover ul {padding:20px 20px 20px 0; left:180px; top:-20px; bottom:auto;}
.divbox {
	background-color: #FF0000;
	padding: 2px;
}
