﻿ï»¿/*
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; }
body {
	font:  Arial;
	position: relative;
	text-transform:capitalize;
	
}
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)));
	height:auto ;
	width:100%;
	
}

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

#header ul li
{
    display: block;
    float: left;
    margin: 0px 0 0 0;
    width: 120px;
}

#header ul li a
{
    color: #FFFFFF;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 11px;
    padding: 5px;
 
    text-align: center;
   
}
#header ul li img
{
    vertical-align: top;
    padding-left: 5px;
}

/* 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: 0px 0 0 -30px;
    padding: 0 10px 0;
    position: absolute;
    width: 126px;
    z-index: 3000;
}

#header ul li ul li {
	border-bottom: 1px solid #CCC;
	display: block;
	float: none;
	height: 14px;
	padding: 8px 0;
	text-align: center;
	width: 126px;
	margin: 0;
	overflow:auto;
	position:relative;
    top: 0px;
    left: 7px;
}

#header ul li ul li a {
	color: #620d20;
	text-shadow: none;
	z-index:1000px;
		overflow:auto;
		
}

#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;
}*/