

/* Basic Reset */
* { margin: 0; padding:0; }

/* Header */
#header {

/*	background: -webkit-gradient(linear, left top, left bottom,	color-stop(0, rgb(117,18,41)), color-stop(1, rgb(79,7,24)));*/
	height: 86px;
}

/* Top Level Menu */
#header ul {
	margin: 0 auto;
/*	width: 400px;*/
}

#header ul li {
	display: block;
	float: left;
	margin: 0px 0 0;
/*	width: 100px;*/
}

#header ul li a {
    font-family: 'Droid Sans';
	color: #FFF;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

/* Sub Level Nav */
#header ul li ul {
	background: #FFF;
	border: 1px solid #ccc;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
	margin: 15px 0 0 -20px;
/*	padding: 0 10px 0;*/
	position: relative;
	width: 66px;
        border-radius:3px;
}

#header ul li ul li {
/*	border-bottom: 1px solid #CCC;*/
	display: block;
	float: none;
	height: 14px;
	padding: 8px 0;
	text-align: center;
	width: 66px;
	margin: 0;
}

#header ul li ul li a {
	color:  #666666;
        text-decoration: none;
	text-shadow: none;
}

/*#header ul li ul li:hover{
    
     background: #f6f6f6;
}*/

#header ul li ul li a:hover {
	color: #000000;
       
}

#header ul li ul li:last-child:not(li.arrow) {
	border: 0;
        background: no-repeat none;
}

/* Arrow */
.arrow {
	background: url(../images/arrow.png) no-repeat;
	border: 0;
	display: none;
	position: absolute;
		top: -10px;
		left: 20px;
	height: 0px;
/*	width: 20px;*/
	text-indent: -9999px;
}