body  {
	font-family: Georgia, "Times New Roman", Times, serif;
	background: #e3e3e3;
	text-align: center;
	font-style: italic;
	font-weight: bold;
}

/* MENU */

#nav {
 background: #e5e5e5 url(../img/body_text.png);
 float: left;
 margin: 0; padding: 0;
 border: none;
 border-bottom: none;
}

#nav li a, #nav li {
 float: left;
}

#nav li {
 list-style: none;
 position: relative;
}

#nav li a {
 padding: 1em 2em;
 text-decoration: none;
 color: white;
 background: #292929 url(../img/u_4.png) no-repeat;
 background: -moz-linear-gradient(top, black, #3c3c3c 1px, #292929 25px url(../img/u_4.png) no-repeat);
 background: -webkit-gradient(linear, left top, left 25, from(black), color-stop(4%, #3c3c3c), to(#292929)) url(../img/u_4.png) no-repeat;
 border-right: 1px solid #3c3c3c;
 border-left: 1px solid #292929;
 border-bottom: 1px solid #232323;
 border-top: 1px solid #545454;
}

#nav li a:hover {
 background: #666666 url(../img/u_4.png) no-repeat;
 background: -moz-linear-gradient(top, #333333, #666666) url(../img/u_4.png) no-repeat;
 background: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#666666)) url(../img/u_4.png) no-repeat;
}


/* Submenu */

.hasChildren {
	position: absolute;
	width: 5px; height: 5px;
	background: black url(../img/u_4.png) no-repeat;
	right : 0;
	bottom: 0;
}

#nav li ul {
 display: none;
 position: absolute;
 left: 0;
 top: 100%;
 padding: 0; margin: 0;
}

#nav li:hover > ul {
 display: block;
}

#nav li ul li, #nav li ul li a {
 float: none;
}

#nav li ul li {
 _display: inline; /* for IE6 */
}

#nav li ul li a {
 width: 210px;
 display: block;
}

/* SUBSUB Menu */

#nav li ul li ul {
 display: none;
}

#nav li ul li:hover ul {
 left: 100%;
 top: 0;
}


#nav li ul 