@charset "UTF-8";
/* CSS Document */

/*------------------------------------*\
	RESET - http://csswizardry.com/2011/02/creating-a-pure-css-dropdown-menu/
\*------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{
	margin:0;
	padding:0;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img{
	border:0;
}
address,caption,cite,code,dfn,th,var{
	font-style:normal;
	font-weight:normal;
}
caption,th{
	text-align:left;
}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight:normal;
}
q:before,q:after{
	content:'';
}
abbr,acronym{
	border:0;
}

/*------------------------------------*\
    NAV
\*------------------------------------*/

dropNavv {
	margin: 100px auto; 
	text-align: center;
}

dropNavv ul ul {
	display: none;
}

	dropNavv ul li:hover > ul {
		display: block;
	}


dropNavv ul {
	list-style: none;
	position: relative;
	display: inline-table;
}
	dropNavv ul:after {
		content: ""; clear: both; display: block;
	}

	dropNavv ul li {
		float: left;
	}
		dropNavv ul li:hover {
		}
			dropNavv ul li:hover a {
				color: #fff;
			}
		
		dropNavv ul li a {
			display: block;
			color: #757575; text-decoration: none;
		}
			
		
	dropNavv ul ul {
		position: absolute; top: 100%;
	}
		dropNavv ul ul li {
			float: none; 
		}
			dropNavv ul ul li a {
				color: #fff;
			}	
				dropNavv ul ul li a:hover {
				}
		
	dropNavv ul ul ul {
		position: absolute; left: 100%; top:0;
	}
	