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

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

label{
	color: #333333;
	font-weight: bold;
	font-size: 11px;
	font-family: tahoma;
}

input, textarea, select{
	border: 1px #b8b8b8 solid;
	padding: 4px;
	color: #333333;
	width: 260px;
	height: 18px;
	margin: 0px auto 10px;
	font-size: 11px;
	font-family: tahoma;
}

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: 260px;
	height: 28px;
}


/* Botones */
button{
    display:block;
    background-color: #f5f4f5;
	background-image: url(../../imagenes/panel/bg_boton.png);
    border:1px solid #c1c1c1;
    text-decoration:none;
	outline: none;
	cursor: pointer;
	height: 30px;
	width: auto;
    overflow:visible;
	margin-right: 5px;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 11px;
	font-family: verdana;
}

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

/* Tamaņos de campos */

.mini{
	width: 20px;
}

.small{
	width: 100px;
}

.wide{
	width: 560px;
}

.file
{
	height: 25px;
}

.div_form{
	overflow: auto;
}

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

.div_form select{
	width: 210px;
}

checkbox{
	width: auto;
}

#b_cancelar{
	margin-top: 7px;
	display: block;
	cursor: pointer;
	width: 50px;
	padding-left: 100px;
	color: gray;
	border: 0px solid red;
}

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

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

.informacion, .exito, .alerta, .error {
	font-family:Arial, Helvetica, sans-serif; 
	font-size:11px;
	line-height: 14px;
	border: 0px solid;
	padding: 10px 20px;
	color: white;
	overflow: auto;
	margin-bottom: 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.informacion {
   background-color: #BDE5F8;
}
.exito {
   background-color: #628f00;
}
.alerta {
   color: #544600;
}
.error {
   background-color: #a30000;
}

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

.right{
	float: right;
}

.left{
	float: left;
}

.pointer{
	cursor: pointer;
}

.hidden{
	display: none;
}

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

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

.modal h2{
	border-bottom: 1px dotted silver;
	padding-bottom: 5px;
}

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

.modal ul{
	overflow: auto;
}

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

.modal .wide{
	width: 420px;
}