﻿#content {
    min-height:160px;
}

/*Strip the ul of padding and list styling*/
ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

img {
    margin-right:5px;
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: left;
	margin-right: 1px;
	min-width:140px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #000;
}

    li a {
        min-width:140px;
	    height: 50px;
	    line-height: 50px;
        display:block;
        color: #fff;
        text-decoration: none;
    }

/*Hover state for top level links*/
li:hover {
	background: #2f3036;
}

/*Style for dropdown links*/
li:hover ul li, li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
}

/*Hover state for dropdown links*/
li:hover ul li:hover, li:hover ul a:hover {
	background: #2f3036;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
li ul {
	display: none;
}

/*Make dropdown links vertical*/
li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
ul li:hover ul {
	display: block;
}