@import "css_reset.css";
@import "base.css";
@import "../../../app/include/css/base_app.css";

/*--------------------------------------------------
FORMULARIOS
--------------------------------------------------*/

label{
	color: #333333;
}


input, textarea, select{
	/*background-image: url(../../../app/imagenes/bg_input.png);*/
	border: 1px #d4d4d4 solid;
	padding: 6px;
	color:#777;
	width: 260px;
	height: 18px;
	margin: 3px auto 10px;
	font-size: 1em;
	font-family:Open Sans, Arial, Helvetica, sans-serif;;
	-moz-border-radius: 2px/*{cornerRadius}*/;
	-webkit-border-radius: 2px/*{cornerRadius}*/;
	
}

input:focus, select:focus, textarea:focus {
	color:#333;
}

/*
input:focus,textarea:focus{
	outline:none;
	border-color:rgba(82,168,236,.75)!important;
	box-shadow:0 0 8px rgba(82,168,236,.5);
	-moz-box-shadow:0 0 8px rgba(82,168,236,.5);
	-webkit-box-shadow:0 0 8px rgba(82,168,236,.5);
}
*/

textarea{
	height: 79px;
	overflow: auto;
}

select{
	width: 270px;
	height: 32px;
}

.file{
	width: 150px;
}

.div_form{
	overflow: auto;
	border: 0px solid blue;	
}

.div_form li{
	float: left;
	width: 300px;
	border: 0px solid red;
}

#tabs ul li a{
	font-family: tahoma;
	border: 1px solid red;
}

/* Botones */
button{
    display:block;
	border: 0px;
    text-decoration:none;
	outline: none;
	cursor: pointer;
	height: 30px;
	width: auto;
	margin-right: 5px;
    overflow:visible;
	padding-left: 10px;
	padding-right: 10px;
	/*color: white;*/
	/*border-left: 1px solid #de820b;*/
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	
	
}

button:active{
	line-height: 25px;
}

/* Tamaņos de campos */

.mini{
	width: 20px;
}

.small{
	width: 100px;
}

.wide{
	width: 560px;
}

.wide_s{
	width: 570px;
}

.file
{
	height: 25px;
}

/* Descripcion de los checkbox */
.t_info{
	margin-left: 90px;
	margin-top: 12px;
	display: block;
	position: absolute;
	color: gray;
	border: 0px solid red;
}

.t_info b{
	color: black;
}


checkbox{
	width: auto;
}

#b_cancelar{
	float: left;
	margin: 7px auto auto 5px;
	display: block;
	cursor: pointer;
	width: 50px;
	color: gray;
	border: 0px solid red;
}

#b_cancelar:hover{
	color: #4c92e8;
	font-weight: bold;
}

/*--------------------------------------------------
TABLAS
--------------------------------------------------*/

.tabla td{
	border-bottom: 1px dotted #c2c2c2;
	height: 35px;
	padding: 0px 5px;
}

.tabla td.header{
	font-weight: bold;
	height: 30px;
}

.tabla tr:hover{
	background-color: #f1f1f1;
}

.tabla .zebra{
	background-color: ;
}

/*--------------------------------------------------
CONFIRMACIONES
--------------------------------------------------*/

.informacion, .exito, .alerta, .error {
	font-family: tahoma, Helvetica, sans-serif; 
	font-size:12px;
	border: 0px solid;
	padding: 10px 20px;
	color: white;
	overflow: auto;
}

.informacion {
   background-color: #BDE5F8;
     background-image: url('../../../app/imagenes/panel/info.png');
}
.exito {
   background-color: #628f00;
   background-image:url('../../../app/imagenes/panel/exito.png');
}
.alerta {
   color: #544600;
   background-image: url('../../../app/imagenes/panel/warning.png');
}
.error {
   background-color: #a30000;
   background-image: url('../../../app/imagenes/panel/error.png');
}


/* Redondear confirmacion */
.informacion, .exito, .alerta, .error {
-moz-border-radius: 4px/*{cornerRadius}*/;
-webkit-border-radius: 4px/*{cornerRadius}*/;
margin-bottom: 10px;
margin-top: 10px;
}

/*--------------------------------------------------
FUNCIONALES
--------------------------------------------------*/

.right{
	float: right;
}

.left{
	float: left;
}

.pointer{
	cursor: pointer;
}

.hidden{
	display: none;
}

/*--------------------------------------------------
PAGINACION
--------------------------------------------------*/

.paginador{
	margin-top: 10px;
}

.paginador .actual{
	color: orange;
	font-weight: bold;
}

.paginador .pagina_lista, .pagina_ultima, .pagina_primera{
	min-height: 26px;
	min-width: 26px;
	float: left;
	line-height: 25px;
	display: block;
	text-align: center;
	border: 0px solid #e1e1e1;
	background-color: #b82104;
	color: white;
	margin-right: 5px;
	cursor: pointer;
	border-radius: 3px;

	transition: all 500ms; /* Safari */
	-webkit-transition: all 500ms; /* Safari */
	-o-transition: all 500ms; /* Safari */
	-moz-transition: all 500ms; /* Safari */

}

.paginador .pagina_lista{
	/*background-color: red;*/
}
.paginador .pagina_ultima{
	width: 91px;
	/*background-image: url(../../../app/imagenes/bg_ultima.png); */
}
.paginador .pagina_primera{
	width: 91px;
	/*background-image: url(../../../app/imagenes/bg_primera.png); */
}


.paginador .pagina_lista:hover, .pagina_ultima:hover, .pagina_primera:hover{
	background-color: #EFAB01;
}

/*--------------------------------------------------
MODAL
--------------------------------------------------*/
.modal{
	padding: 20px;
}

.modal input,.modal textarea{
	width: 200px;
	margin-top: 5px;
}

.modal h2{
	border-bottom: 1px dotted silver;
	color: black;
	font-size: 24px;
	background-color: none;
	background-image: none;
	height: auto;
	padding: 0px;
	margin-bottom: 10px;
	line-height: 20px;
	padding-bottom: 5px;
}

.modal .descripcion_modal{
	color: gray;
	display: block;
	margin-bottom: 15px;
}

.modal ul{
	overflow: auto;
}

.modal li{
	float:left;
	margin-right: 10px;
}

.modal .wide{
	width: 420px;
}