﻿/*These style came from http://ago.tanfa.co.uk/css/examples/menu/tutorial-h.html*/
#menu {
width: 100%;
background-color: #cfe1f3;
height:1.7em;
/*float: left;*/
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 8em;
float: left;
}

#menu a, #menu h2 {
font: bold 12px/16px arial, helvetica, sans-serif;
display: block;
border-style: none;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
color: #35537f;
background: #cfe1f3;
}

#menu a {
color: #35537f;
background: #cfe1f3;
text-decoration: none;
}

#menu a:hover {
color: #75251B;
background: #cfe1f3;
}

#menu li {
position: relative;
}

#menu ul ul {
position: absolute;
width:10em;
z-index: 500;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
}

div#menu ul ul,/**/
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,/**/
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}


