/*====================*/
/*=== Reset Styles ===*/
/*====================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-weight:inherit;
	font-style:inherit;
	font-size:100%;
	font-family:inherit;
}

/* -- General styles ------------------------------ */
/*cambie  #8EBD00 por #8EBD00 */

body {
	margin: 5px; padding: 0;
	background: #F5FBFF;
	padding-bottom: 1px;
	font-size: 11px;
}

.subir {
	font-family: Verdana, Geneva, sans-serif;
}

h1 {
	margin: 0; padding-bottom: 2px;
	color:  #8EBD00; font-size: 18px; font-weight: bold;
}

h2 {
	margin: 0; padding-bottom: 2px;
	color:  #8EBD00; font-size: 14px; font-weight: bold;
}

body, td, th { font-family: Arial, Helvetica, sans-serif; }
a
html, body { height: 95%; }

a:link    {
	color:  #587500;
	text-decoration: none;
	font-weight: bold;
}

a:visited { color:  #8EBD00; text-decoration: none; }
a:hover   { text-decoration: underline; }

.footer{
	background:url(images/footer.png);
	width:100%;
	height:60px;
	position: fixed;
	bottom: 0;
	right: 0;
}

.tabla_ingreso{
	border:1px solid #939393;
	margin:auto;
	background-color:#FFFFFF;
	margin-top:20px;
	background-color:#FFFFFF;
 	-moz-box-shadow: 3px 3px 4px #111;
    -webkit-box-shadow: 3px 3px 4px #111;
    box-shadow: 3px 3px 4px #111;
	/*behavior: url("css/PIE.htc");*/
}

.tabla_ingreso thead th{
	background-color:#373737;
	text-align:right;
	color:white;
	font-size:12px;
	padding: 5px 10px 5px 10px;
	border-bottom:5px solid #a5c126;
}

.tabla_ingreso thead th div{
	color:white;
	font-size:11px;
}

.tabla_ingreso tbody table{
	width:90%;
	margin:5px auto;
	/*overflow:hidden;*/
}

/* -- AdminList ---------------------------------- */
table.adminlist {
	width: 100%;
	border-spacing: 1px;
	background-color: #e7e7e7;
	color: #666;
	font-size:10px;
}

table.adminlist td,
table.adminlist th {
	padding: 4px;
	font-size:10px;
}

table.adminlist thead th {
	text-align: center;
	background:#99CC00;
	color: #fff;
	font-weight:bold
}

table.adminlist thead a:hover { 
	text-decoration: none;
}

table.adminlist thead th img {
	vertical-align: middle;
}

table.adminlist tbody th {
	font-weight: bold;
}

table.adminlist tbody tr {
	background-color: #fff;
	text-align: left;
}

table.adminlist tbody tr.row1 {
	background: #f9f9f9;
	border-top: 1px solid #fff;
}

table.adminlist tbody tr.row2 {
	background: #FF0000;
	border-top: 1px solid #fff;
}

table.adminlist tbody tr.row3 { 
    background: #FFAAAA;
	border-top: 1px solid #fff;
}

table.adminlist tbody tr.row0:hover td,
table.adminlist tbody tr.row2:hover td,
table.adminlist tbody tr.row3:hover td,
table.adminlist tbody tr.row1:hover td {
    background-color: #ffd ;
}

table.adminlist tbody tr td {
	height: 20px; background: #fff;
	border: 1px solid #fff;
}

table.adminlist tbody tr.row1 td {
	background: #f9f9f9;
	border-top: 1px solid #FFF;
}

table.adminlist tbody tr.row2 td {
	background: #FF0000;
	border-top: 1px solid #FFF;
}

table.adminlist tbody tr.row3 {
    background: #FFAAAA;
	border-top: 1px solid #fff;
}

table.adminlist tfoot tr {
	text-align: center;  color: #333;
}

table.adminlist tfoot td,
table.adminlist tfoot th {
	background-color: #f3f3f3;
	border-top: 1px solid #999;
	text-align: center;
}

table.adminlist td.order {
	text-align: center; white-space: nowrap;
}

table.adminlist td.order span {
	float: left; display: block;
	width: 20px; text-align: center;
}

table.adminlist .pagination {
	display:table; padding:0;
	margin:0 auto;
}
/* -- FIN AdminList ------------------------------ */

/* -- Menu colgante ------------------------------ */
/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
	see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */
/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */

.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
	you can also use to adjust the safe area to your requirement */
}

.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */

/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu, .menu ul li {
	color: #eee;
	background: #234;
}

.menu ul {
	width: 11em;
}

.menu a {
	text-decoration: none;
	color: #eee;
	padding: .4em 1em;
	display: block;
	position: relative;
}

.menu a:hover, .menu li:hover>a {
	color: #fc3;
}

.menu li li {	/* create borders around each item */
	border: 1px solid #ccc;
}

.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a { /*color: #567;*/ }

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */
/* -- FIN Menu colgante -------------------------- */

/
.calendario{
	background-image:	url('images/calendar.png');	background-repeat:	no-repeat;	background-position: right; cursor:pointer;
}

/* -- Generales como input, select etc ----------------------- */

select,
input{
	border: 1px solid #CCCCCC;
	border-radius: 3px 3px 3px 3px;
	color: #555555;
	line-height: 18px;
	padding: 4px;
	-moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	/*behavior: url("css/PIE.htc");*/
}

select:focus,
input:focus{
	border-color: rgba(82, 168, 236, 0.8);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
	outline: 0 none;
}

input:-webkit-input-placeholder { color:#CCC; }
input:-moz-placeholder { color:#CCC; } /* firefox 19+ */
input:-ms-input-placeholder { color:#CCC; } /* ie */
input:-moz-placeholder { color:#CCC; }


input.readonly{
	border: 1px dotted #ddd;
	border-radius: 3px;
	/*background: none #F2F2F2;*/
	background-color:#F2F2F2;
	color:#000000;
	line-height: 18px;
	padding: 4px;
	border-color: rgba(192,192,192, 0.8);
	box-shadow: none;
	/*behavior: url("css/PIE.htc");*/
}

/* -- FIN Formulario "frmList" ------------------- */
.opciones-box{
	background: #98C413;
	box-shadow: 0 0 5px #888;
	display: inline-block;
}

.contenido-box{
	text-align:left;
	background:#FFFFFF;
	border-radius: 8px 8px 8px 8px;
	box-shadow: 0 0 2px #888;
	padding:10px;
	/*behavior: url("css/PIE.htc");*/
}

fieldset {
	margin-bottom: 10px;
	border: 1px #ccc solid;
	padding: 5px;
	text-align: left;
}

fieldset p {  margin: 10px 0px;  }


/**************************************/
/*	propiedades del	PAGINADOR		  */
/**************************************/
.paginador{
	max-width:200px;
	margin:0 auto;
	padding:0;
}

.paginador tr td a {
	text-decoration:none;
}

.anterior{
	width:20px;	max-width:20px;	min-width:20px;
	height:10px;
	padding:5px;
	background:url(images/paginacion_flecha_izq.png) no-repeat center;
}

.siguiente{
	width:20px;	max-width:20px;	min-width:20px;	
	height:10px;
	padding:5px;
	background:url(images/paginacion_flecha_der.png) no-repeat center;
}

.primera{
	width:20px;	max-width:20px;	min-width:20px;
	height:10px;
	padding:5px;
	background:url(images/paginacion_doble_flecha_izq.png) no-repeat center;
}

.ultima{
	width:20px;	max-width:20px;	min-width:20px;	
	height:10px;
	padding:5px;
	background:url(images/paginacion_doble_flecha_der.png) no-repeat center;
}

.pages, .selectedpage{
	width:20px;	max-width:20px;	min-width:20px;	
	height:10px;
	padding: 3px 5px 3px 5px;
}

.selectedpage{ border:solid 1px #33b234 ; }

.selectedpage a{ color: #33b234; }

.pages a{ color:#99CC00; font-weight:bold; }

.pages:hover, .selectedpage:hover{ color:#33b234; font-size:13px; }

.anterior:hover{ background:url(images/paginacion_flecha_izq1.png) no-repeat center; }

.siguiente:hover{ background:url(images/paginacion_flecha_der1.png) no-repeat center; }

.primera:hover{	background:url(images/paginacion_doble_flecha_izq1.png) no-repeat center; }

.ultima:hover{ background:url(images/paginacion_doble_flecha_der1.png) no-repeat center; }

table tr td #MenuBotones tr td{ padding: 3px; }
table tr td #MenuBotones1 tr td{ padding: 3px; }


/*	propiedades del	PAGINADOR		  */
/**************************************/
.paginador{
	max-width:500px;
	margin:0 auto;
	padding:0;
	overflow:hidden;
}

.paginador tr td a { text-decoration:none; }

.anterior, .siguiente{
	padding:5px;
	width:50px;
	max-width:50px;
	border:1px solid #cccccc;
}

.anterior a, .siguiente a{ color:#373737; font-weight:bold;	text-align:center;}

.pages, .selectedpage{
	width:20px;	max-width:20px;	min-width:20px;
	height:15px;
	padding: 3px 5px 3px 5px;
	border:	1px solid #cccccc;
}

.pages{	background-color:#373737;}

.pages:hover{ background-color:#4c4c4c;}

.selectedpage{ background-color: #a2d035;}

.pages	a, .selectedpage	a{ color:#fff; font-weight:bold;}

/* -- Botones -------------------------------------------------*/
.btn {
	/*behavior: url("css/PIE.htc");*/
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */
    *zoom: 1;
	/*borde interno de un elemento*/
    padding: 4px 10px 4px;
	/*si no se setea con 0 toma en magen por defecto margen de abajo*/
    margin-bottom: 0;
	/*tamaño de la letra*/
    font-size: 13px;
	/**Establece el alto de la línea en la que se coloca el texto.
	*	Este valor se conoce tradicionalmente como interlineado. 
	*	Seleccione normal para hacer que el alto de línea del tamaño de la fuente se calcule de manera automática, 
	*	o bien introduzca un valor exacto y seleccione una unidad de medida. Ambos navegadores reconocen el atributo Line-height ej: line-heigth:18px.*/
	line-height: 18px;
	color:#000000;
	text-align: center;
	text-shadow: 0 10px 10px rgba(255, 255, 255, 0.75);
	vertical-align: middle;/*Esta equiqueta la deje seteada por defecto para cuando se cree un boton con una imagen*/
	background-color: #f5f5f5;/*color de mi boton por defecto en el caso de que no seteen la nueva propiedad*/
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(top, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
	border: 1px solid #cccccc;
	border-bottom-color: #b3b3b3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	*margin-left: .3em;
}

a.btn:visited, a.btn, a.btn:link{
	color:#FFF;
	font-size:10px;
}

.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] { background-color: #e6e6e6; }
.btn:active,
.btn.active {
    background-color: #cccccc \9;
}

.btn:first-child {
    *margin-left: 0;/*HEREDA A TODOS LOS HIJOS*/
}

.btn:hover {
	color: #000000;
	text-decoration: none;
	background-color: #e6e6e6;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	-moz-transition: background-position 0.1s linear;
	-ms-transition: background-position 0.1s linear;
	-o-transition: background-position 0.1s linear;
	transition: background-position 0.1s linear;
}

.btn:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.btn.active,
.btn:active {
	background-image: none;
	-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	background-color: #e6e6e6;
	background-color: #d9d9d9 \9;
	outline: 0;
}

.btn.disabled,
.btn[disabled] {
	cursor: default;
	background-image: none;
	background-color: #e6e6e6;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.btn-large {
	padding: 9px 14px;
	font-size: 15px;
	line-height: normal;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/*behavior: url("css/PIE.htc");*/
}

.btn-large [class^="icon-"] {
    margin-top: 1px;
}

.btn-small {
    padding: 5px 9px;
    font-size: 11px;
    line-height: 16px;
}

.btn-small [class^="icon-"] {
    margin-top: -1px;
}

.btn-mini {
    padding: 2px 6px;
    font-size: 11px;
    line-height: 14px;
}

.btn-primary,
.btn-primary:hover,
.btn-warning,
.btn-warning:hover,
.btn-danger,
.btn-danger:hover,
.btn-success,
.btn-success:hover,
.btn-info,
.btn-info:hover,
.btn-inverse,
.btn-inverse:hover {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    color: #ffffff;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
    color: rgba(255, 255, 255, 0.75);
}

.btn-primary {
	background-color: #0074cc;
	background-image: -moz-linear-gradient(top, #0088cc, #0055cc);
	background-image: -ms-linear-gradient(top, #0088cc, #0055cc);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));
	background-image: -webkit-linear-gradient(top, #0088cc, #0055cc);
	background-image: -o-linear-gradient(top, #0088cc, #0055cc);
	background-image: linear-gradient(top, #0088cc, #0055cc);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);
	border-color: #0055cc #0055cc #003580;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] { background-color: #0055cc; }
.btn-primary:active,
.btn-primary.active {
    background-color: #004099 \9;
}
.btn-warning {
	background-color: #faa732;
	background-image: -moz-linear-gradient(top, #fbb450, #f89406);
	background-image: -ms-linear-gradient(top, #fbb450, #f89406);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
	background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
	background-image: -o-linear-gradient(top, #fbb450, #f89406);
	background-image: linear-gradient(top, #fbb450, #f89406);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
	border-color: #f89406 #f89406 #ad6704;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] { background-color: #f89406; }
.btn-warning:active,
.btn-warning.active { background-color: #c67605 \9; }
.btn-danger {
	background-color: #da4f49;
	background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
	background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: linear-gradient(top, #ee5f5b, #bd362f);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
	border-color: #bd362f #bd362f #802420;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] { background-color: #bd362f; }
.btn-danger:active,
.btn-danger.active { background-color: #942a25 \9; }
.btn-success {
	background-color: #5bb75b;
	background-image: -moz-linear-gradient(top, #62c462, #51a351);
	background-image: -ms-linear-gradient(top, #62c462, #51a351);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
	background-image: -webkit-linear-gradient(top, #62c462, #51a351);
	background-image: -o-linear-gradient(top, #62c462, #51a351);
	background-image: linear-gradient(top, #62c462, #51a351);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
	border-color: #51a351 #51a351 #387038;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] { background-color: #51a351; }
.btn-success:active,
.btn-success.active { background-color: #408140 \9; }
.btn-info {
	background-color: #49afcd;
	background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
	background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
	background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
	background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
	background-image: linear-gradient(top, #5bc0de, #2f96b4);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
	border-color: #2f96b4 #2f96b4 #1f6377;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] { background-color: #2f96b4; }
.btn-info:active,
.btn-info.active { background-color: #24748c \9; }
.btn-inverse {
	background-color: #414141;
	background-image: -moz-linear-gradient(top, #555555, #222222);
	background-image: -ms-linear-gradient(top, #555555, #222222);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));
	background-image: -webkit-linear-gradient(top, #555555, #222222);
	background-image: -o-linear-gradient(top, #555555, #222222);
	background-image: linear-gradient(top, #555555, #222222);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);
	border-color: #222222 #222222 #000000;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] { background-color: #222222; }
.btn-inverse:active,
.btn-inverse.active { background-color: #080808 \9; }
button.btn,
input[type="submit"].btn {
    *padding-top: 2px;
    *padding-bottom: 2px;
}

button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
    padding: 0;
    border: 0;
}

button.btn.btn-large,
input[type="submit"].btn.btn-large {
    *padding-top: 7px;
    *padding-bottom: 7px;
}

button.btn.btn-small,
input[type="submit"].btn.btn-small {
    *padding-top: 3px;
    *padding-bottom: 3px;
}

button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
    *padding-top: 1px;
    *padding-bottom: 1px;
}

.btn-fijo{ width:120px; }

.btn .btn-aceptar1{
	background-image: url(images/aceptar.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn .btn-login{
	background-image: url(images/foto_candado.jpg) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn .btn-buscar {
	background-image: url(images/buscar.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn .btn-cancelar {
	background-image: url(images/cancelar.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn .btn-agregar {
	background-image: url(images/agregar.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn .btn-subir {
	background-image: url(images/up.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn .btn-limpiar {
	background-image: url(images/blanco.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn .btn_recargar {
	background-image: url(images/refresh.gif) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn-finalizar {
	background-image: url(images/boton_finalizar.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:24px;
	height:24px;
	line-height:24px;
	margin:0px;
}

.btn .btn-limpiar1 {
	background-image: url(images/limpiar.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn-gestiones {
	background-image: url(images/gestiones.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn-sol_docto {
	background-image:url(images/sol_docto.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.btn-actualiza_trabajador {
	background-image:url(images/actualiza_trabajador.png) !important;
	background-position:left;
	background-repeat:no-repeat;
	padding-left:20px;
	margin:0px;
}

.boton_buscar {
	background:url(images/buscar.png) left no-repeat;
	background-position:8px;
	cursor:pointer;
	padding-left:16px;
	text-align:center;
}

.boton_login {
	background:url(imagesfoto_candado.jpg) left no-repeat;
	background-position:8px;
	cursor:pointer;
	padding-left:16px;
	text-align:center;
}

.boton_aceptar {
	background:url(images/aceptar.png) left no-repeat;
	cursor:pointer;
}

.boton_cancelar {
	background:url(images/cancelar.png) left no-repeat;
	cursor:pointer;
}

.boton_agregar {
	background:url(images/agregar.png) left no-repeat;
	cursor:pointer;
}

.boton_subir {
	background:url(images/up.png) left no-repeat;
	cursor:pointer;
}

.boton_limpiar {
	background:url(images/limpiar.png) left no-repeat;
	background-position:8px;
	cursor:pointer;
	padding-left:16px;
	text-align:center;
}

.boton_actualiza_trabajador {
	background:url(images/actualiza_trabajador.png) left no-repeat;
	background-position:8px;
	cursor:pointer;
	padding-left:16px;
	text-align:center;
}

.boton_recargar {
	background:url(images/refresh.gif) left no-repeat;
	cursor:pointer;
}

.boton_finalizar {
	background:url(images/boton_finalizar.png) left no-repeat;
	cursor:pointer;
	height: 36px;
	font-weight: bold;
}

.boton_lock {
	background:url(images/lock.png) left no-repeat;
	cursor:pointer;
	height: 36px;
	font-weight: bold;
}

.boton_unlock {
	background:url(images/unlock.png) left no-repeat;
	cursor:pointer;
	height: 36px;
	font-weight: bold;
}
/* -- FIN Botenes ---------------------------------------------*/			


/* -- overall styles ------------------------------ */

#border-top.h_green           { background-image: url(images/Gj_header_middle.png); }
#border-top.h_green div       { background: url(images/Gj_header_right.png) 100% 0 no-repeat; }
#border-top.h_green div div   { background: url(images/Gj_header_left.png) no-repeat; height: 54px; }

#border-top.h_green2          { background-image: url(../images/header_middle.png); }
#border-top.h_green2 div      { background: url(images/header_right.png) 100% 0 no-repeat; }
#border-top.h_green2 div div  { background: url(images/header_left.png) no-repeat; height: 54px; }


#border-top .title {
	font-size: 22px;
	font-weight: bold;
	line-height: 54px;
	float:left;
	vertical-align:bottom;
	padding-left: 250px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #004C64;
}

#border-top .version {
	position:absolute;
	float: right;
	right: 10%;
	color: #FFFFFF;
}

#border-top .versionavatar {
	position:absolute;
	float: right;
	right: 1%;
	color: #FFFFFF;
}

#border-top-cliente .title {
	font-size: 22px; font-weight: bold; line-height: 44px; float:right;
	padding-left: 250px;
}

#border-top-cliente .version {
	display: block;
	float: right;
	right: 1%;
	color:#FFCC00;
	padding: 25px 5px 0 0;
}

#border-bottom 			{ background: url(../images/j_bottom.png) repeat-x; }
#border-bottom div  	{ background: url(../images/j_corner_br.png) 100% 0 no-repeat; }
#border-bottom div div 	{ background: url(../images/j_corner_bl.png) no-repeat; height: 11px; }

/* -- fin overall styles ------------------------------ */


/* -- notificacion y mensajes ------------------------------ */
#alerta_notificacion {
	background:url(images/notificacion.png) no-repeat;
	width:25px;
	height:20px;
	color:#F00;
	font-weight:bold;
	font-size:16px;
	cursor:pointer;
	text-decoration:blink;
}

#alerta_mensaje {
	background:url(images/mensaje.png) no-repeat;
	width:25px;
	height:20px;
	color:#F00;
	font-weight:bold;
	font-size:16px;
	cursor:pointer;
	text-decoration:blink;
}

.div_asunto_notificacion {
	position:absolute;
	left:5px;
	top:85px;
	/*width:263px;*/
	width:190px;
	height:200px;
	z-index:1;
	display:none;
	overflow:auto;
	
	background-color:#E1E1F7;
	display:;
	border:2px solid #399;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	-moz-box-shadow:1px 1px 5px;
	-webkit-box-shadow:1px 1px 5px;
	/*behavior: url("css/PIE.htc");*/
	box-shadow:1px 1px 5px;
}

/* -- fin y mensajes ------------------------------ */

.validation-failed, validation-advice {
	color: #C00;
	border-color: rgba(255, 0, 0, 0.8);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 0, 0, 0.6);
	outline: 0 none;
}

.validation-advice {
	color: #C00;
}

/*#actualiza_trabajador {
	background-color:#E1E1F7;
	border:1px solid #399;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	-moz-box-shadow:1px 1px 4px;
	-webkit-box-shadow:1px 1px 4px;
	box-shadow:1px 1px 4px; 
    height:24px;
    font-size:13px;
    font-weight:bold;
}*/


/*.btnActualizaTrabajador {
	behavior: url("css/PIE.htc");
	background:url(images/actualiza_trabajador.png) left no-repeat;
    /*display: inline-block;*/
    *display: inline;
    /* IE7 inline-block hack */
    *zoom: 1;
	/*borde interno de un elemento*/
    padding: 4px 10px 4px;
	/*si no se setea con 0 toma en magen por defecto margen de abajo*/
    margin-bottom: 0;
	/*tamaño de la letra*/
    font-size: 13px;
	/**Establece el alto de la línea en la que se coloca el texto.
	*	Este valor se conoce tradicionalmente como interlineado. 
	*	Seleccione normal para hacer que el alto de línea del tamaño de la fuente se calcule de manera automática, 
	*	o bien introduzca un valor exacto y seleccione una unidad de medida. Ambos navegadores reconocen el atributo Line-height ej: line-heigth:18px.*/
	line-height: 18px;
	color:#000000;
	text-align: center;
	text-shadow: 0 10px 10px rgba(255, 255, 255, 0.75);
	vertical-align: middle;/*Esta equiqueta la deje seteada por defecto para cuando se cree un boton con una imagen*/
	background-color: #f5f5f5;/*color de mi boton por defecto en el caso de que no seteen la nueva propiedad*/
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(top, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
	border: 1px solid #cccccc;
	border-bottom-color: #b3b3b3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	*margin-left: .3em;
	size:20px
}

a.btnActualizaTrabajador:visited, a.btnActualizaTrabajador, a.btnActualizaTrabajador:link{
	color:#FFF;
	font-size:10px;
}

.btnActualizaTrabajador:hover,
.btnActualizaTrabajador:active,
.btnActualizaTrabajador.active,
.btnActualizaTrabajador.disabled,
.btnActualizaTrabajador[disabled] { background-color: #e6e6e6; }
.btnActualizaTrabajador:active,
.btnActualizaTrabajador.active {
    background-color: #cccccc \9;
}

.btnActualizaTrabajador:first-child {
    *margin-left: 0;/*HEREDA A TODOS LOS HIJOS*/
}

.btnActualizaTrabajador:hover {
	color: #000000;
	text-decoration: none;
	background-color: #e6e6e6;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	-moz-transition: background-position 0.1s linear;
	-ms-transition: background-position 0.1s linear;
	-o-transition: background-position 0.1s linear;
	transition: background-position 0.1s linear;
}

.btnActualizaTrabajador:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.btnActualizaTrabajador:active {
	background-image: none;
	-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	background-color: #e6e6e6;
	background-color: #d9d9d9 \9;
	outline: 0;
}

.btnActualizaTrabajador.disabled,
.btnActualizaTrabajador[disabled] {
	cursor: default;
	background-image: none;
	background-color: #e6e6e6;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}*/




/*Botones revisor**************************************/
.boton, .boton:visited { /* botones genéricos */
	background: #222 url(../images/overlay.png) repeat-x;
	display: inline-block;
	padding: 5px 10px 6px;
	margin-top:4px;
	color: #FFF;
	text-decoration: none;
	text-align:center;
	
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	-moz-box-shadow:1px 1px 2px;
	-webkit-box-shadow:1px 1px 1px;
	box-shadow:1px 1px 1px;
	
	font-size: 11px;
	font-weight: bold;
	line-height: 1;
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
	height:14px;
	width:160px;
	
	position: relative;
	cursor:pointer;
	/*behavior: url("css/PIE.htc");*/
}



.boton:hover { /* el efecto hover */
	background-color: #111
	color: #FFF;
}

.boton:active{  /* el efecto click */
	top: 1px;
}

/*colores*/
.red.boton, .red.boton:visited { background-color: #E62727; }
.red.boton:hover{ background-color: #CF2525; }

.blue.boton, .blue.boton:visited { background-color: #2981E4; }
.blue.boton:hover{ background-color: #2575CF; }

.green.boton, .green.boton:visited { background-color: #91BD09; }
.green.boton:hover{ background-color: #749A02; }

.orange.button, .orange.button:visited { background-color: #FF5C00; }
.orange.button:hover{ background-color: #D45500; }

.yellow.button, .yellow.button:visited { background-color: #FFB515; }
.yellow.button:hover{ background-color: #FC9200; }

/******************************************************/