
/**************** menu coding *****************/
#menu {
	width: 100%;
	background: #eee;
	float: left;	
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 96px;
float: left;
}

#menu a, #menu h2 {
	font: normal 12px arial, helvetica, sans-serif;
	display: block;
	margin: 0;
	padding: 2px 3px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #fff;
}

#menu h2 {
	color: #fff;
	background: #7bacdc;
	text-transform: uppercase;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 0px;
	padding-left: 00px;
	text-align: center;
	font-weight: normal;
	font-size: 12px;
}

#menu a {
	color: #000;
	background: #efefef;
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding: 5px;
	font-weight: normal;
}

#menu a:hover {
color: #fff;
background: #7bacdc;
}

#menu li {position: relative;}

#menu ul ul {
	position: absolute;
	width: 200px;

}

#menu ul ul.contact {
	position: absolute;
	width: 150px;
}

#menu ul ul.espanol {
	position: absolute;
	width: 96px;
}


#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;}


