/*
==============================================================
MainMenu.css
Style sheet for the main menu for A La Castina
by Michael Kear  AFP Webworks  http://afpwebworks.com
6/2/2009
==============================================================
*/

body{
background-color: #8C90B3;	
}
#menu {
width: 12em; /* set width of menu */
background: #192168;
	float: left;
    width: 225px;
    margin-top: 130px;
    margin-left: -230px;
} 

#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#menu a, #menu h2 {
font: bold .9em/1.8em arial, helvetica, sans-serif;
color: #FFFFFF;
display: block;
border-width: 1px;
border-style: solid;
border-color: #FFFFFF;
margin: 0;
padding: 2px 3px;
}
#menu a {
color: #FFFFFF;
background: #192168;
text-decoration: none;
}

#menu a:hover {
color: #444;
background: #fff;
}
#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
} 

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 100%; /* width is based on the containing block */
}

div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}


