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

	body { 
	font-family:din_bold;
	font-size:14px;
	}

@font-face {
font-family: 'din_regular';
src: url('../fontes/din_regular.eot');
src: url('../fontes/din_regular.eot?') format('embedded-opentype'),
     url('../fontes/din_regular.woff2') format('woff2'),
     url('../fontes/din_regular.woff') format('woff'),
     url('../fontes/din_regular.ttf') format('truetype'),
     url('../fontes/din_regular.svg#vtks_sonhoregular') format('svg');
font-weight: normal;
font-style: normal;
}

	/* remove the list style */
	#nav {
		font-family:din_regular;
		font-size:14px;
		padding:0; 
		list-style:none;
		margin-top:-30px;
		margin-right:169px;
		

	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			float:right; 
			display:block; 
			background:#fff; 
			position:relative;
			z-index:500; 
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:8px 5px 0 5px; 
			font-weight:bold;  
			height:23px; 
			text-decoration:none; 
			text-align:left; 
			color:#000;
		}

		#nav li a:hover {
			color:#F16825;
		}
	
		/* you can make a different style for default selected value */
		#nav a.menuselected {
			color:#F16825;

		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
			border:solid;
			border-width:1px;			

		}
		
		#nav ul li {
			width:100px; 
			float:left; 
			/* border-top:1px solid #fff; */
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#666;
		}
		
		#nav ul a:hover {
			text-decoration:none;	
		}

.logo{
	float:left;
	margin-left:169px;

}

.base_menu{
	max-width:100%;
	min-width:1100px;


}

.clear {clear:both}