#cuerpo::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* Track */
#cuerpo::-webkit-scrollbar-track {

	border-radius: 10px;
	background: transparent;
}

#cuerpo::-webkit-scrollbar-track:hover {

	border-radius: 10px;
	background: black;
}

/* Handle */
#cuerpo::-webkit-scrollbar-thumb {
	background: transparent;
	border-radius: 5px;
}

/* Handle on hover */
#cuerpo::-webkit-scrollbar-thumb:hover {
	background: #f09;
}







#menu_on {
	display: inline-block;
	width: 30px;
	height: 20px;
	position: relative;
	z-index: 2;
}

h2 {
	color: #ff0099;
}

button {
	background-color: #123;
	/* Green */
	border: none;
	color: white;
	padding: 16px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	-webkit-transition-duration: 0.4s;
	/* Safari */
	transition-duration: 0.4s;
	cursor: pointer;
}

.button1 {
	background-color: white;
	color: black;
	border: 2px solid #123;
	border-radius: 7px;
}

.button1:hover {
	background-color: #123;
	color: white;
	border-color: #ff0099;
}

.button1:disabled,
button[disabled] {
	border: 1px solid #999999;
	background-color: #cccccc;
	color: #666666;
}

#menu_on span {
	width: 100%;
	height: 4px;
	border-radius: 4px;
	display: block;
	position: absolute;
	background: #fff;
	transition: all 0.25s ease;
	/* Propiedades a animar | Tiempo | Tipo animación*/
	transform-origin: 0px 100%;
}

#menu_on span:nth-child(2) {
	top: calc(50% - 2px);
}

#menu_on span:nth-child(3) {
	bottom: 0;
}


nav {
	position: fixed;
	top: 0;
	bottom: 0;
	left: -400px;
	/* Escondemos nuestro menú con un valor negativo */
	width: 300px;
	z-index: 1;
	padding: 90px 30px 30px;
	background-color: black;
	opacity: 0;
	transition: all 0.75s ease;
		overflow-y: auto;
	text-align: left;
}

nav a {
	display: block;
	text-decoration: none;
	padding: 10px;
	color: rgba(255, 255, 255, 0.75);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: all ease 0.25s;
}

nav a:hover {
	color: #F09;
	border-bottom-color: #F09;
	font-size: 24px;
}


.visible_menu span:nth-child(1) {
	transform: rotate(45deg) translate(-2px, 1px);
}

.visible_menu span:nth-child(2) {
	opacity: 0;
}

.visible_menu span:nth-child(3) {
	transform: rotate(-45deg) translate(-3px, 3px);
}

.visible_menu nav {
	left: 0;
	opacity: 0.7;
}

.visible_menu #content {
	/*  transform: translateX(260px);*/
}


header {

    background-image: linear-gradient(to bottom, #282828, transparent 99%), linear-gradient(to top, #282828, transparent 99%);

    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

    min-height: 20px;
    width: 95%;

    display: inline-block;
    padding: 10px;
	margin-top: 0.5%;

}


#titulo {


	text-align: center;
	color: #FFF;

	font-size: 26px;
	font-family: Broadway;
	margin: auto;
	letter-spacing: 0.2em;



}

ul {
	list-style-type: none;
	color: #eee;
}

label {
	color: #ff0099;


}

body {
	float: inherit;
	margin: auto;
	margin-top: 2px;

	font-size: 16;


	text-align: center;
	overflow-y: hidden;


	min-width: 300px;
	/*max-width:1024px;*/

	width: auto;



	overflow: hidden;

	background-image: url(../Portada/IMG_20170812_104754.jpg);
    transition: linear 5s;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	background-size: cover;

}

#cuerpo {

    text-align: center;
    
    overflow-y: auto;
    overflow-x: hidden;

    margin-top: 5px;
    padding: 10px;

    border: thin;
    border-color: #BBBAC9;
    border-style: outset;
    border-radius: 10px;

    display: inline-block;
    height: 85%;


    width: 95%;

    background-image: linear-gradient(to bottom, #fff, transparent 99%), linear-gradient(to top, #EEE, transparent 99%);
}

#menu {

	float: left;

}

#menu2 {
	display: inline-block;

	padding-left: 10px;
	padding-right: 10px;
	
	font-size: 11;

	width: 95%;
	background-color: #282828;

	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;

}

#menu2 a {
	display: inline-block;
	font-family: "Comic Sans MS";
	padding: 2px;
	color: white;



}


#menu2 li {

	text-align: center;

	border-color: #BBBAC9;


	background-color: #282828;



}


#menu2 a:hover {

	color: #123;
	background-color: #ff0099;

}


.menu3 {
	padding: 0;
	margin: 0;
	max-width: 700px;
	height: 50px;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	list-style-type: none;
}

.menu3 li a {
	text-decoration: none;
	align-self: center;
	border-radius: 5px;
	font-size: 14px;
	padding: 10px 15px;
	transition: background .2s linear;
}



footer {

    background-image: linear-gradient(to bottom, #282828, transparent 99%), linear-gradient(to top, #282828, transparent 99%);
    border-radius: 5px;

    margin-top: 5px;
    color: white;

    width: 95%;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    
    height: 18px;
    letter-spacing: 2;


}

a {
	color: white;
	text-decoration: none;
}

#usuario2 {
	color: white;
	display: inline-block;
	font-family: Tahoma, Geneva, sans-serif;
}

#usuario2 a:hover {

	color: #F09;
}

#usuario3 {

	color: #F09;

	margin-left: 1em;
	margin-right: 1em;
	display: inline-block;

	font-family: Tahoma, Geneva, sans-serif;
}

#centrado-porcentual {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	width: auto;
	margin: 0 auto;
	max-height: 30;
}

.cuadritos {
	float: left;
	border: thin;
	border-color: #F09;
	border-style: outset;
	border-radius: 10px;
	padding: 5px;
	background-color: white;
	margin: 10px;

}

.cuadritos:hover {
	float: left;
	max-width: 236px;
	max-height: 256px;
	border: 3px;
	border-color: yellow;
	border-style: outset;
	border-radius: 10px;
	padding: 5px;
	background-color: #F09;

}

.aceptar {
	width: 150px;
	height: 17px;
	background: #F06;
	border: 2px solid #f6f6f6;

	margin-top: 5px;
	font-size: 14px;
	color: white;
	text-align: central;
	display: inline-block;
	border-radius: 5px;

}


h1 {
	display: inline-block;

	width: 90vw;

	font-family: Tahoma, sans-serif;
	text-align: center;

	margin: auto;


}

.padre {
	text-align: center;
}

.hijo {
	background-color: yellow;
	padding: 10px;
	margin: 10px;
	display: inline-block;
	width: 300px;
}

.hijo2 {
	background-color: yellow;
	display: inline-block;
}

.hijo3 {

	display: inline-block;


	border: thin;
	border-color: #F09;
	border-style: outset;
	border-radius: 10px;
	padding: 5px;
	background-color: white;
	margin: 10px;
}

.hijo9 {
    	

    display: block;
	border: thin;
	border-color: #F09;
	border-style: outset;
	border-radius: 10px;
	padding: 0;
    background-color: floralwhite;
	
}

.hijo3:hover {


	border: 3px;
	border-color: yellow;
	border-style: outset;

	background-color: #F09;

}






@media (max-width: 900px) {

	#menu2 {
		font-size: 9px;
	}
	#usuario2 {
		font-size: 9px;
	}
	#usuario3 {
		font-size: 9px;
	}
}

@media (max-width: 530px) {

	#menu2 {
		display: none;
	}

	#usuario2 {
		display: none;
	}

	.cuadritos {
		float: none;
		border: thin;
		border-color: #F09;
		border-style: outset;
		border-radius: 10px;
		padding: 5px;
		background-color: white;
		margin: 10px;

	}

	#titulo {
		/*display: none;*/
		font-size: 20px;

	}

	textarea {
		display: none;
		width: 300px;
	}

	#cuerpo {

		max-height: 83vh;
		margin-top: 0px;
        text-align: center;
	}


	footer {
		margin-top: 0px;
	}

	#grafica {


		width: 350px;
		display: inline-block;

	}
    
    

}