/*
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 */

a {
	text-decoration: none;
}

/* Header */
#headerlan {
	height: 86px;
}

/* Top Level Menu */
#headerlan ul {
	margin: 0 auto;
}

#headerlan ul li {
	display: block;
	float: left;

}

#headerlan ul li a {
	color: #222;
}

/* Sub Level Nav */
#headerlan 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);
	position: relative;
}

#headerlan ul li ul li {
	border-bottom: 1px solid #CCC;
	display: block;
	float: none;
	height: 25px;
	padding: 8px 0;
	text-align: center;
	margin: 0;
}

#headerlan ul li ul li a {
	color: #620d20;
	text-shadow: none;
}

#headerlan ul li ul li a:hover {
	color: #000;
}

#headerlan 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;
}