/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* Menu stuff */	

	
.containerformenu { 
	min-height: 50px; /* for modern browsers */
	height: auto !important; /* for modern browsers */
	height: 50px; /* for IE5.x and IE6 */
	width: 525px; /* keeps menu width intact */
	text-align: center; /* centers it on the page */
	border: 0px solid green;
	float: right;
	}

.menu {
	float:right;
	padding-top: 0px;
	position:relative; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	min-height:49px; /* for modern browsers */
	height:auto !important; /* for modern browsers */
	height:46px; /* for IE5.x and IE6 */
	width: 525px; /* centers it on the page - must be same as html. menu */
	margin:0 auto; /* centers it on the page */
	text-align: center; /* centers it on the page */
	border-bottom: 0px solid #000000;
	margin-right: -6px;
	}

/* hack to correct IE5.5 (AND IE6!)faulty box model - must be same as in .menu */
* html .menu {width:525px; w\idth:525px;}


/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:74px;}

/* 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:74px;position:relative; margin-bottom: -1px;}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#FFFFFF;
	width:74px;
	height:34px;
	border:1px solid #000; /* keeps menu borders intact */
	border-width:0px 0 0px 1px; /* keeps menu borders intact */
	background:#4D7BA9;
	padding-top:12px;
	line-height:12px;
	}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:74px; w\idth:74px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#fff; background:#113960; }
.menu :hover > a, .menu ul ul :hover > a {color:#fff;background:#113960;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	text-align: left; 
	color:#FFFFFF; 
	height:auto; 
	line-height: 1.1em; 
	padding:4px 8px; 
	width:128px;
	border:1px solid #000000;
	}

/* style the second level hover */
.menu ul ul a.drop:hover {background:#336699; height:auto;}
.menu ul ul :hover > a.drop {background:#336699; height:auto;}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#e2dfa8;}

/* style the third level hover */
.menu ul ul ul a:hover {background:#b2ab9b;}

/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:46px;left:0; width:74px;border-top:0px solid #000;}

/* another hack for IE5.5 - second instance must be +1 pixel - these values must be same as .menu ul ul */
* html .menu ul ul {top:45px;t\op:45px;}

/* position the third level flyout menu */
.menu ul ul ul{left:74px; top:-1px; width:74px;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-74px;}

/* 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; border-collapse:collapse;;}



/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}

/* 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;}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}