body {
 font-family: helvetica, arial, sans-serif;
 
 text-align: center;
}

/* MENU */

#nav {

 float: left;
 margin: 0; padding: 0;

 
 width:700px;
 position:relative;
 z-index:210;

}

#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: #000;
 line-height:16px;
  
 /*background: -moz-linear-gradient(top, black, #3c3c3c 1px, #292929 25px);
 background: -webkit-gradient(linear, left top, left 25, from(black), color-stop(4%, #3c3c3c), to(#292929));/*/
 /*border-right: 1px solid #3c3c3c;/*/
 border-left: 1px solid #292929;
 /*border-bottom: 1px solid #232323;/*/
 /*border-top: 1px solid #545454;/*/
 font-weight:bold;
 text-align:left;
 font-family:Verdana, Arial, Helvetica, sans-serif;
 font-size:12px;
 text-transform:uppercase;
}

#nav li a:hover {
 background: #2a0d65;
 background: -moz-linear-gradient(top, #8dc1fd, #237ee5);
 background: -webkit-gradient(linear, left top, left bottom, from(#237ee5), to(#237ee5));
}


/* Sub
 */

.hasChildren {
	position: absolute;
	width: 5px; height: 5px;
	background: black;
	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 {
 display: block;
    font-weight: normal;
    margin-left: -2px;
    padding-left: 7px;
    text-align: left;
    text-transform: none;
    width: 210px;
	border-bottom:solid 1px #9A9A9A;
}

/* SUBSUB Menu */

#nav li ul li ul {
 display: none;
}

#nav li ul li:hover ul {
 left: 100%;
 top: 0;
}


#nav li ul 