﻿@charset "UTF-8";
@import url('http://www.dowelectronics.com/CSS/lato_reg/stylesheet.css');
@import url('http://www.dowelectronics.com/CSS/Futura_Book/stylesheet.css');
@import url('http://www.dowelectronics.com/CSS/Futura_Light/stylesheet.css');
@import url('http://www.dowelectronics.com/CSS/LatoLight/stylesheet.css');
@import url('http://www.dowelectronics.com/CSS/Futura_Medium/stylesheet.css');
/*Strip the ul of padding and list styling*/
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 1;
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: left;
}

/*Style for menu links*/
li a {
	display: block;
	min-width: 140px;
	padding-left: 25px;
	height: 50px;
	letter-spacing: 3px;
	line-height: 50px;
	font-family: "Futura Book";
	color: #000000;
	background: #ffffff;
	text-decoration: none !important;
	font-size: 14px;
	text-align: left;
	list-style-type: none;
}

/*Hover state for top level links*/
li:hover a {
	background: #ffffff;
	
}

/*Style for dropdown links*/
li:hover ul a {
	background: #ffffff;
	color: #000000;
	height: 40px;
	line-height: 40px;
	font-size: 10px;
	opacity: .9;
	margin-left: 6px;
	border-left-style: solid;	
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	background: #ffffff;
	color: #e51937;
}

/*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 a:hover + .hidden, .hidden:hover {
	display: block;
}
