/*
Theme Name: TutToaster Navigation
Theme URI: http://tuttoaster.com
Description: Theme for TutToaster Multi-Level Wordpress Navigation Tutorial
Version: 2.9.2
Author: Cody Ryan Robertson
Author URI: http://tuttoaster.com
Tags: tuttoaster, navigation, unfinished
*/

/* Basic Reset */
* { margin: 0; padding:0; }

a {
	text-decoration: none;
}

/* Header */
#header {
	background: -webkit-gradient(linear, left top, left bottom,	color-stop(0, rgb(117,18,41)), color-stop(1, rgb(79,7,24)));
	margin-left:-3px;
	
}

/* Top Level Menu */
#header ul {
	margin: 0 auto;
	width: 131px;
}

#header ul li {
	float: left;
	margin: 0px 0 0;
	width: 131px;;
}

#header ul li a {

	
}

/* Sub Level Nav */
#header ul li ul {
	background: #F4F4F4;
	border: 0px solid #000;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
	margin: 10px 0 0 120px;
	padding: 0 5px 0;
	/*position:relative;*/
	position:absolute;
	width: 131px;
	display:block;
	float:left;

}

#header ul li ul li {
	/*border-bottom: 1px solid #CCC;*/
	display: block;
	float: none;
	height: 18px;
	padding: 7px 0px 4px 5px;
	font-weight:bold;
	text-align: left;
	width: 131px;
	margin: 0;
	
	
}

#header ul li ul li a {
	color: #000000;
	text-shadow: none;
}

#header ul li ul li a:hover {
	color: #000;
}

#header ul li ul li:last-child:not(li.arrow) {
	border: 0;
}

/* Arrow */
.arrow {
	background: url(arrow.png) no-repeat;
	border: 0;
	display: none;
	position: absolute;
		top: -10px;
		left: 63px;
	height: 11px;
	width: 20px;
	text-indent: -9999px;
}