/* CSS Document */
@import url('botones.css');
*{
	font-family: Arial, Helvetica, sans-serif;
	text-shadow: 0 1px 0 rgba(255,255,255,.8);
	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	-o-transition: all 250ms linear;
	transition: all 250ms linear;
}
body, div, p, td, th, input, select, textarea{
	font-size: 19px;
	color: #121212;
}
body, div, form{
	margin: 0;
	padding: 0;
	}
body{
	background: #FFF;
}
/* DEFINICIONES NO ADMIN */
#fondo_cabecera{
	background: url(../../img/fondo_cabecera.png) left top repeat-x;
	height: 230px;
	min-width: 990px;
	display: block;
	}
#cabecera{
	background: url(../../img/cabecera.png) center top no-repeat;
	height: 230px;
	display: block;
}
h1{
	font-size: 1.8em;
	}
h2{
	font-size: 1.6em;
	}
h3{
	font-size: 1.4em;
	}
h4{
	font-size: 1.2em;
	}
form{
	text-align: left;
	}
label{
  margin: 0.5em;
	}
input, select, textarea{
  margin: 0.5em;
	padding-left: 0.2em;
	display: inline-block;
	white-space: nowrap;
	background-color: #ccc;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#f5f5f5));
	background-image: -webkit-linear-gradient(top, #eee, #f5f5f5);
	background-image: -moz-linear-gradient(top, #eee, #f5f5f5);
	background-image: -ms-linear-gradient(top, #eee, #f5f5f5);
	background-image: -o-linear-gradient(top, #eee, #f5f5f5);
	background-image: linear-gradient(top, #eee, #f5f5f5);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#eeeeee', EndColorStr='#f5f5f5');
	border: 1px solid #777;
	font-weight: bold;
	line-height: 2em;
	text-decoration: none;
	color: #333;
	text-shadow: 0 1px 0 rgba(255,255,255,.8);
	-moz-border-radius: .2em;
	-webkit-border-radius: .2em;
	border-radius: .2em;
	-moz-box-shadow: 0 0 4px 2px rgba(0,0,0,.2) inset;
	-webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,.2) inset;
	box-shadow: 0 0 4px 2px rgba(0,0,0,.2) inset;
	}
input{
	height: 40px;
	}
input[type="checkbox"]{
	height: auto;
	}
#login_admin, .adm_home, .adm_grupo{
	display: inline-block;
	padding: 1em 3em;
	background: #F5F5F5;
	-moz-border-radius: .2em;
	-webkit-border-radius: .2em;
	border-radius: .2em;
	-moz-box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
	box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
	text-align:left;
	}
.adm_home, .adm_grupo{
	display: block;
	padding: 1em;
	margin: 0.5em;
	}
.adm_home{
	text-align: center;
	}
.resaltado:hover{
	background: #CCC;
	}
.centrado{
	text-align:center;
	}
	
/* Avisos */

#MostrarAviso{
	position: fixed;
	top: 10px;
	left: 10px;
	width: 270px;
	height: auto;
	padding: 10px;
	color: #222;
	text-align: center;
	font-weight: bold;
	line-height: 26px;
	font-size: 17px;
	cursor: pointer;
	
	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	-o-transition: all 250ms linear;
	transition: all 250ms linear;
	
	-webkit-box-shadow: 0px 0px 20px #000000;
	-moz-box-shadow: 0px 0px 20px #000000;
	box-shadow: 0px 0px 20px #000000;
	}
#MostrarAviso.error{
	background-color: #FFBEBF;
	border: 2px solid #FF8385;
	}
#MostrarAviso.normal{
	background-color: #BDFFC6;
	border: 2px solid #82FF94;
	}
#MostrarAvisoDetalles{
	font-weight: normal;
	line-height: 18px;
	font-size: 13px;
	}
	
#imagen_prev{
	text-align: center;
	font-size: 0.8em;
	}	
#imagen_prev img{
	max-height: 100px;
	max-width: 200px;
	}
.listar{
	font-size: 0.8em;
	border: 1px solid #ddd;
	}
.listar span{
	display: block;
	color: #09F;
	margin-top: 5px;
	text-decoration: underline;
	max-width: 200px;
	overflow: hidden;
	cursor: pointer;
	margin-left: 5px;
	}
.listar span:hover{
	color: #C30;
	}
	
/* SPINNER */
.spinner {
	position: absolute;
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	z-index: 999;
	background: #fff;
}
.spinner-msg {
	text-align: center;
	font-weight: bold;
}
.spinner-img {
	background: url(../img/spinner.gif) no-repeat;
	width: 50px;
	height: 50px;
	margin: 0 auto;
}