@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body
{
	
}

a {
	text-decoration: none;
	color: white;
}

.btn-menu{
	padding: 20px;
	display: none;
	background: #000;
	color: #fff;
	
}
.contenedor-menu{
	width: 20%;
	max-width:150px;
	margin-top: 50px;
	display: inline-block;
	line-height: 18px;
	z-index: 999;
	position: fixed;
}
.contenedor-menu .menu {
	width: 100%;
}
.contenedor-menu ul{
	list-style: none;
}
.contenedor-menu .menu li a{
	color: #fff;
	display: block;
	padding: 15px 20px;
	background: rgba(0,0,0,0.5);
	border-left: 5px solid rgba(255,255,255,0.5);
		
}
.contenedor-menu .menu li a:hover{
	background: #000;
	color: #fff;
	border-left: 5px solid rgba(0,115,2,1.00);
	text-transform: uppercase;
	
}
.contenedor-menu .menu ul{
	display: none;
}
.contenedor-menu .menu ul li a {
	background: rgba(0,0,0,0.80);
	color:#fff;
}
.contenedor-menu .menu .activado > a{
	background: #000;
	color:rgba(0,115,2,1.00);
	border: 5px solid rgba(0,115,2,1.00);
	text-transform: uppercase;
}

#button {
width: 100%;
margin: 0;
padding: 0;	
}
#button li {
	display: inline-block;
	margin: 0;
	list-style: none;
}
#button li a {
font-family: Arial;
font-size:.8em;
float:right;
padding: 10px;
color: #fff;
background: rgba(0,0,0,0.5);
border-left: 5px solid rgba(255,255,255,0.5);	
text-decoration: none;
	
/*text-transform: uppercase;*/

}

#button li a:hover {
    background: #000;
    border-left: 5px solid rgba(0,115,2,1.00);
    color: #fff;
	text-transform: uppercase;
	/*transition: border .3s;*/
}

@media screen and (max-width:640px){
	body{padding-top:80px;
		}
	.contenedor-menu{
		margin: 0;
		width: 100%;
		min-width: 100%;
		position: fixed;
		top:0;
		z-index: 1000;
			}
	.btn-menu{
		display: block;
	}
	.contenedor-menu .menu{
		display: none;
	}
	
	
	}