
/*custom font for text*/
@import url(https://fonts.googleapis.com/css?family=Nunito);
/*CSS file for fontawesome - an iconfont we will be using. This CSS file imported contains the font-face declaration. More info: https://fortawesome.github.io/Font-Awesome/ */
@import url(http://thecodeplayer.com/uploads/fonts/fontawesome/css/font-awesome.min.css);


/**/
#Encabezado table tbody tr td{
	position: 1;
}
.conten{
	width: 92%;
	margin:0%;
	display: inline-block;
	position: absolute;
	Left:6.01%;
	font-weight: 990;
	top: 6.9%;
	
}

/*Basic reset*/
* {margin:0px; padding: 0;}

body {
	background: #1332cf;
	font-family: Nunito, arial, verdana;
}
#accordian {
	background: #2F598F;
	width: 150px;
	margin: -1px auto 0 auto;
	color: white;
	/*Some cool shadow and glow effect*/
	box-shadow: 
		0 5px 15px 1px rgba(0, 0, 0, 0.6), 
		0 0 010px 1px rgba(255, 255, 255, 0.09);
	position: absolute;
	Left: 0%;
	font-weight: 900;
	top: 6.5%;

}

.navegation ul li h3 span ul li.active{
	background: #fff;
}
.navegation l li h3 span ul li.active  a{
	color: #333;
}


/*heading styles*/
#accordian h3 {
	font-size: 11px;
	line-height: 34px;
	padding: 0 6px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	background: #003040 ; 
	background: linear-gradient(#1332cf, #0D4EA2);
}
/*heading hover effect*/
#accordian h3:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
/*iconfont styles*/
#accordian h3 span {
	font-size: 16px;
	margin-right: 10px;
}
/*list items*/
#accordian li {
	list-style-type: none;
}
/*links*/
#accordian ul ul li a {
	color: white;
	text-decoration: none;
	font-size: 9px;
	line-height: 27px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
	text-decoration: none;  /* quita el subrayado */
 	display: block; /*Permite que se haga bloque el link*/
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	background: #003545;
	border-left: 5px solid lightgreen;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}
#accordian li.active ul {
	display: block;
}
