/* style the outer div to give it width */
.menu-top {
width: 955px;
/* height: 100px; */
/* font-size: 0.85em; */
margin-top: 18px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu-top ul {
padding: 0 18px 0 0;
margin: 0;
list-style-type: none;
height: 30px;
}
	.menu-top ul ul {
	width: 150px;
	}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu-top li {
float: right;
/* width: 120px; */
position: relative;
border-right: 2px solid #2e2d73;
}
/* style the links for the top level */
.menu-top a, .menu-top a:visited {
display: block;
text-decoration: none;
font-size: 12px;
width: 100px;
/* height: 28px; */
text-align: center;
font-variant: small-caps;
padding: 8px 0 8px 0;
text-shadow: 0px 1px 2px #ccc;
}
	.menu-top .twolines, .menu-top .twolines:visited {
	padding: 1px 0 1px 0;
	}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu-top a, * html .menu-top a:visited {
/* width: 100px; */
/* w\idth: 130px; */
}

/* style the second level background */
.menu-top ul ul a.drop, .menu-top ul ul a.drop:visited {
background: #2e2d73 url(../img/triangolino.gif) center right no-repeat;
background-position: 135px 50%;
}
/* style the second level hover */
.menu-top ul ul a.drop:hover{
/* background: #c9ba65; */
/* background-color: #e2eaf1; */
}
.menu-top ul ul :hover > a.drop {
background: #e2eaf1 url(../img/triangolino_dark.gif) center right no-repeat;
background-position: 135px 50%;
/* background: #244273 url(../img/triangolino_dark.gif) center right no-repeat; */
/* background-position: 135px 50%; */
/* color: #FFF; */
}
/* style the third level background */
.menu-top ul ul ul a, .menu-top ul ul ul a:visited {
/* background:#e2dfa8; */
}
/* style the third level hover */
.menu-top ul ul ul a:hover {
/* background:#b2ab9b; */
}
.menu-top ul ul ul :hover > a {
/* background:#b2ab9b; */
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu-top ul ul {
visibility: hidden;
position: absolute;
height: auto;
/* height: 0; */
top: 30px;
left: -2px;
/* width: 150px; */
padding: 5px 0 5px 2px;
background: #2e2d73;
/* background: yellow; */
}
/* another hack for IE5.5 */
* html .menu-side ul ul li {
display: none;
border: 0;
}
	* html .menu-side ul ul ul li {
	display: none;
	border: 0;
	}
* html .menu-top ul ul {
/* top: 29px; */
/* t\op: 30px; */
margin: 0;
padding: 0;
display: none;
}

	/* position the third level flyout menu */
	.menu-top ul ul ul{
	left: 149px;
	top: -5px;
	width: 150px;
	border-left: 1px solid #fff;
	}
	* html .menu-side ul ul ul{
	height: 0;
	}
/* position the third level flyout menu for a left flyout */
.menu-top ul ul ul.left {
left: -150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu-top table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu-top ul ul a, .menu-top ul ul a:visited {
background: #2e2d73;
color: #fff;
height: auto;
line-height: 1em;
padding: 5px 10px;
width: 129px;
font-size: 12px;
text-align: left;
}
/* yet another hack for IE5.5 */
* html .menu-top ul ul a{
/* width: 150px; */
/* w\idth: 129px; */
}


/* style the top level hover */
.menu-top :hover > a, .menu-top ul ul :hover > a {
background: #2e2d73;
color: #fff;
}
/* IE */
.menu-top a:hover, .menu-top ul ul a:hover{
background: #2e2d73;
color: #fff;
text-decoration: underline;
}

/* make the second level visible when hover on first level list OR link */
.menu-top ul li:hover ul,
.menu-top ul a:hover ul{
visibility: visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu-top ul :hover ul ul{
visibility: hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu-top ul :hover ul :hover ul ul{
visibility: hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu-top ul :hover ul :hover ul{ 
visibility: visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu-top ul :hover ul :hover ul :hover ul {
visibility: visible;
}
