@charset "utf-8"

/*css document*/

*{	 
	margin: 0px; 
	padding: 0px;
} 

@import url(http://meyerweb.com/eric/tools/css/reset/reset.css);

/*Menu Superior*/

#menusup {
	float: right;
  	display: inline-block;
  	box-sizing:border-box;
}

#menusup ul {
	display: inline-block;
  	float: right;
  	box-sizing:border-box;
}

#menusup li {
	display: inline-block;
	list-style: none;
	text-align: center;
}

#menusup a {
	color: #555;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
}

#menusup a:hover {
	color: #244987;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: underline;
}

/*Menu Principal*/

#menuprincipal {
  	display: inline-block;
  	box-sizing:border-box;
  	width: 50%;
  	background-color: #244987;
  	min-width: 250px;
  	float: right;
  	padding: 2%;
}

#menuprincipal ul {
  	float: left;
}

#menuprincipal li {
	display: block;
	list-style: none;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	height: 1.1em;
	line-height: 1.1em;
}

#menuprincipal ul li a {
	color: white;
  	text-decoration: none;
  	padding-right: 20px;
  	padding-left: 1px;
  	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
}