/*BEHAVIOR*/
/*container for the whole popup menu*/
.menu_frame
{
	border-left: solid 1px white;
	margin-left:20px;
	padding-left:1px;
}
.menucontainer1
{
	float: left;
	padding: 1px 0px 1px 0px;
}
.menucontainer2
{
}
.menucontainer3
{
}


/*GRAPHIC*/
/*main menu link, which triggers the popup*/
.menuitem1, .menuitem2, .menuitem3, .menuitem4, .menuitem1_on, .menuitem2_on, .menuitem3_on, .menuitem4_on, .menuitem1:hover, .menuitem2:hover, .menuitem3:hover, .menuitem4:hover, .menuitem1_on:hover, .menuitem2_on:hover, .menuitem3_on:hover, .menuitem4_on:hover
{
	text-decoration: none;
	display: block;
}

/*main menu item style, for mouse over too, because of delay*/
.menuitem1, .menuitem1_on
{
    padding: 2px 2px 2px 5px;
	height: 18px; /*desired height - padding-top - padding-bottom*/
	width: 99px;  /*menucontainer width - paddingleft - paddingright*/
	max-height: 14px;
	max-width: 92px;
	font-size: 11px;
	text-align: left;
	font-weight: bold;
	border-right: solid 1px white;
}
.menuitem1
{
	color: white;
}
.menuitem1_on
{
	background: white;
	color: #056387;
}


/*popuped up menu item style*/
.menuitem2, .menuitem2_on
{
	padding: 3px;
	width:100px;
	max-width: 95px;
	text-align:left;
}
    
.menuitem2
{
    color: #056387;
    background: white;
}
.menuitem2_on
{
	background: #056387;
	color: white;
}

/*popuped level 3*/
.menuitem3, .menuitem3_on
{
	padding: 3px;
	width: 94px;
	text-align:left;
}
.menuitem3
{
    color: #056387;
    background: white;
}
.menuitem3_on
{
    color: White;
    background: #056387;
}

/*popuped level 3*/
.menuitem4, .menuitem4_on
{
	padding: 3px;
	width: 94px;
	text-align:left;
}
.menuitem4
{
    color: #056387;
    background: white;
}
.menuitem4_on
{
    color: White;
    background: #056387;
}




/*popup container*/
.popup1
{
	display: none;
	position: absolute;
	margin-left: -2px;
	width: 101px;
	max-width: 101px;
	border: solid 1px #056387;
	padding: 4px 0px 4px 0px;
	background: white;
	
}
/*second popup container*/
.popup2
{	
	display: none;
	position: absolute;
	border: solid 1px #056387;
	margin: -21px 0px 0px 0px;
	left: 100px;
	padding: 4px 0px 4px 0px;
	background: white;
}
/*second popup container*/
.popup3
{	
	display: none;
	position: absolute;
	border: solid 1px #056387;
	margin: -21px 0px 0px 98px;
	padding: 4px 0px 4px 0px;
	background: white;
}
/*popup iframe cover*/
.popupcover 
{
	position: absolute;
	left: -1000px;
	top: -1000px;
} 
