body {
 font-family: helvetica, arial, sans-serif; font-size: 12px;
 background: #e3e3e3;
/* text-align: center;*/
}

/* MENU */
#nav {
 margin: 0 auto; padding: 0;
 border: 0px solid white;
 border-bottom: none;
 text-align: center;
}

#nav li a, #nav li {
 float: left;
}

#nav li {
 list-style: none;
 position: relative;
}

#nav li a {
 padding: 10px 15px;
 text-decoration: none;
 color: white;
 background: #000000;
 background: -moz-linear-gradient(top, black, #3c3c3c 1px, #000000 25px);
 background: -webkit-gradient(linear, left top, left 25, from(black), color-stop(4%, #3c3c3c), to(#000000));
 border-right: 1px solid #3c3c3c;
 border-left: 1px solid #000000;
 border-bottom: 1px solid #232323;
 border-top: 1px solid #545454;
 z-index: 50;
}

#nav li a:hover {
 background: #6426F2;
 background: -moz-linear-gradient(top, #35089C, #6426F2);
 background: -webkit-gradient(linear, left top, left bottom, from(#35089C), to(#6426F2));
}


/* SUBMENU */
.hasChildren {
	position: absolute;
	width: 5px; height: 5px;
/*	background: #fff; */
	right : 0;
	bottom: 0;
}

#nav li ul {
 display: none;
 position: absolute;
 left: 0;
 top: 100%;
 padding: 0; margin: 0;
 text-align: left;
 z-index: 100;
}

#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: 100px;
 display: block;
}

.rightArrow {
width: 12px;
height: 12px;
float: right;
content: url(../rightArrow.png);
}

/* SUBSUB MENU */
#nav li ul li ul {
 display: none;
}

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

#nav li ul {}

.pipsSubMenu {cursor:default; }