@charset "utf-8";
/* CSS Document */
*{
	box-sizing: border-box;
}

/*body{
	

	background:#FF8040;
	display:flex;
	min-height:100vh;
	width:1100px;
	margin:auto;
    
}
*/
.areas{
	width:100%;
	max-width:280px;
	background:#8080FF;
	color:#000;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:14px;
	font-weight:800;
	margin:2px;
	border:1px solid #1E1E1E;
	padding:2px;
	cursor:pointer;
	box-shadow:1px 1px 1px #F9F9F9;
	transition: background-color 0.3s;	
}
	
.areas:hover {
  background-color: #00F;
  transform: scale(1.1);
  color:#FEFEFE;
  box-shadow:5px 5px 5px #848484;
}
		


#men_izq{
	vertical-align:top;
	padding:5px;
	/*background:#005AB5;*/
	width:295px;
	height:900px;
	display:inline-block;
}

#contenido{
	vertical-align:top;
	padding:5px;
	background: #FEFEFE;
	width:890px;
	height:1015px;
	display:inline-block;	
	margin:5px;
	box-shadow:5px 5px 5px #828282;
}           
                 
#pie{
	background:#FF0080;
	width:1090px;
	height:293px;
	display:inline-block;	
	
}
                 

/*******/
.container-slider{
	
	width: 90%;
	max-width:1200px;	
	margin:auto;
	background:#919191;
	overflow: hidden;
	box-shadow: 0 0 0 10px #fff,
				0 15px 50px;
	position: relative;/*para los botones*/

		
}

.slider{
	display: flex;
	width:700%;
	height:400px;
	background:#FF0080;
	margin-left:-100%;
	
	}
	
.slider_section{
	width: 100%;
	background: #0F0;
	
	
	}
	
.slider_img{
	display:block;
	width:100%;
	height:100%
	
	}
	

.slider__btn{
	position:absolute;
	width:40px;
	height:40px;
	background:rgba(11,51,184,0.5);
	top:50%;
	transform: translateY(-50%);
	font-weight:bold;	
	text-align:center;
	color:#FFF;
	font-size:30px;
	border-radius:50%;
	cursor:pointer;
	}
	
.slider__btn:hover{
	background:#D7D7D7;
	
}

.slider__btn__left{
	left: 10px;
	}
	
.slider__btn__rigth{
	right:10px;
		
}
	
	
	
	
	
	
	
