html {
	 -webkit-font-smoothing: antialiased;
}


/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
	border-radius: 5px; 
	border: 2px solid #000;
	background: #4c4c4c;
	color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 16px;
	padding: 8px 10px;
	overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
	/* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}








/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -8px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -8px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -8px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -8px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -8px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -8px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-right: 9px solid;
	margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
	top: 0;
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}

.tooltipster-slide {
	left: -40px;
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.ninja { display: none; }

.divFlotante { border: 1px solid #999; overflow: hidden; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; box-shadow: 5px 5px 8px #D7F8DE; text-align: left; }
.divFlotante .aloneTitle {
	height: 35px;
	padding: 6px 20px 6px 10px;
	color: white;
	border-bottom: 1px solid #999;
	font-weight: bold;
	width: initial;
}
.divFlotante .aloneTitle.verde {
	background-color: #4ba614;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4ba614), to(#008c00));
	background-image: -webkit-linear-gradient(top, #4ba614, #008c00);
	background-image: -moz-linear-gradient(top, #4ba614, #008c00);
	background-image: -ms-linear-gradient(top, #4ba614, #008c00);
	background-image: -o-linear-gradient(top, #4ba614, #008c00);
	background-image: linear-gradient(to bottom, #4ba614, #008c00);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#4ba614, endColorstr=#008c00);
}
.divFlotante .aloneTitle.azul {
	background-color: #3093c7;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#3093c7), to(#1c5a85));
	background-image: -webkit-linear-gradient(top, #3093c7, #1c5a85);
	background-image: -moz-linear-gradient(top, #3093c7, #1c5a85);
	background-image: -ms-linear-gradient(top, #3093c7, #1c5a85);
	background-image: -o-linear-gradient(top, #3093c7, #1c5a85);
	background-image: linear-gradient(to bottom, #3093c7, #1c5a85);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#3093c7, endColorstr=#1c5a85);
}
.divFlotante .aloneTitle.rojo {
	background-color: #f62b2b;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f62b2b), to(#d20202));
	background-image: -webkit-linear-gradient(top, #f62b2b, #d20202);
	background-image: -moz-linear-gradient(top, #f62b2b, #d20202);
	background-image: -ms-linear-gradient(top, #f62b2b, #d20202);
	background-image: -o-linear-gradient(top, #f62b2b, #d20202);
	background-image: linear-gradient(to bottom, #f62b2b, #d20202);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#f62b2b, endColorstr=#d20202);
}
.divFlotante .aloneTitle.amarillo {
	background-color: #ffd65e;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffd65e), to(#febf04));
	background-image: -webkit-linear-gradient(top, #ffd65e, #febf04);
	background-image: -moz-linear-gradient(top, #ffd65e, #febf04);
	background-image: -ms-linear-gradient(top, #ffd65e, #febf04);
	background-image: -o-linear-gradient(top, #ffd65e, #febf04);
	background-image: linear-gradient(to bottom, #ffd65e, #febf04);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ffd65e, endColorstr=#febf04);
}
.divFlotante .aloneTitle.gris {
	background-color: #d3d3d3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#d3d3d3), to(#707070));
	background-image: -webkit-linear-gradient(top, #d3d3d3, #707070);
	background-image: -moz-linear-gradient(top, #d3d3d3, #707070);
	background-image: -ms-linear-gradient(top, #d3d3d3, #707070);
	background-image: -o-linear-gradient(top, #d3d3d3, #707070);
	background-image: linear-gradient(to bottom, #d3d3d3, #707070);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#d3d3d3, endColorstr=#707070);
}

.divFlotante .aloneTitle img { float: left; width: 48px; }
.divFlotante .aloneTitle .text { float: left; font-weight: bold; font-size: 16px; line-height: 20px; padding-left: 8px; }
.divFlotante .aloneTitle .close { float: right; }
.divFlotante .aloneTitle .close img { float: inherit; width: 18px; margin: 2px -4px 0px 0px; cursor: pointer; }

.divFlotante .aloneBody { padding: 20px; text-align: justify; }
.divFlotante .aloneFoot { padding: 5px 20px 8px 20px; border-top: 1px solid #999; width: 93%; margin: 0 auto; text-align: right; }

.blockMsg { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }


/* ESTILOS PARA BOTONES DE LA VENTANA */
.botonX { border: 1px solid black; padding: 5px 10px; color: white; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; cursor: pointer; }
.botonX img, .botonX div { height: 22px; float: left; }
.botonX div { padding: 4px 5px; margin-bottom: -7px; font-family: arial,sans-serif; font-size: 11px; font-weight: bold; }
.botonX.verde {
	background-image: linear-gradient(bottom, rgb(44,71,37) 15%, rgb(66,150,58) 56%, rgb(28,232,9) 92%);
	background-image: -o-linear-gradient(bottom, rgb(44,71,37) 15%, rgb(66,150,58) 56%, rgb(28,232,9) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(44,71,37) 15%, rgb(66,150,58) 56%, rgb(28,232,9) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(44,71,37) 15%, rgb(66,150,58) 56%, rgb(28,232,9) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(44,71,37) 15%, rgb(66,150,58) 56%, rgb(28,232,9) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(44,71,37)), color-stop(0.56, rgb(66,150,58)), color-stop(0.92, rgb(28,232,9)));
}
.botonX.verde:hover {
	background-image: linear-gradient(bottom, rgb(28,232,9) 15%, rgb(66,150,58) 56%, rgb(44,71,37) 92%);
	background-image: -o-linear-gradient(bottom, rgb(28,232,9) 15%, rgb(66,150,58) 56%, rgb(44,71,37) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(28,232,9) 15%, rgb(66,150,58) 56%, rgb(44,71,37) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(28,232,9) 15%, rgb(66,150,58) 56%, rgb(44,71,37) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(28,232,9) 15%, rgb(66,150,58) 56%, rgb(44,71,37) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(28,232,9)), color-stop(0.56, rgb(66,150,58)), color-stop(0.92, rgb(44,71,37)));
}
.botonX.rojo {
	background-image: linear-gradient(bottom, rgb(69,37,37) 15%, rgb(148,57,57) 56%, rgb(230,9,9) 92%);
	background-image: -o-linear-gradient(bottom, rgb(69,37,37) 15%, rgb(148,57,57) 56%, rgb(230,9,9) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(69,37,37) 15%, rgb(148,57,57) 56%, rgb(230,9,9) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(69,37,37) 15%, rgb(148,57,57) 56%, rgb(230,9,9) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(69,37,37) 15%, rgb(148,57,57) 56%, rgb(230,9,9) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(69,37,37)), color-stop(0.56, rgb(148,57,57)), color-stop(0.92, rgb(230,9,9)));
}
.botonX.rojo:hover {
	background-image: linear-gradient(bottom, rgb(230,9,9) 15%, rgb(148,57,57) 56%, rgb(69,37,37) 92%);
	background-image: -o-linear-gradient(bottom, rgb(230,9,9) 15%, rgb(148,57,57) 56%, rgb(69,37,37) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(230,9,9) 15%, rgb(148,57,57) 56%, rgb(69,37,37) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(230,9,9) 15%, rgb(148,57,57) 56%, rgb(69,37,37) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(230,9,9) 15%, rgb(148,57,57) 56%, rgb(69,37,37) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(230,9,9)), color-stop(0.56, rgb(148,57,57)), color-stop(0.92, rgb(69,37,37)));
}
.botonX.azul {
	background-image: linear-gradient(bottom, rgb(37,37,69) 15%, rgb(57,57,148) 56%, rgb(9,9,230) 92%);
	background-image: -o-linear-gradient(bottom, rgb(37,37,69) 15%, rgb(57,57,148) 56%, rgb(9,9,230) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(37,37,69) 15%, rgb(57,57,148) 56%, rgb(9,9,230) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(37,37,69) 15%, rgb(57,57,148) 56%, rgb(9,9,230) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(37,37,69) 15%, rgb(57,57,148) 56%, rgb(9,9,230) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(37,37,69)), color-stop(0.56, rgb(57,57,148)), color-stop(0.92, rgb(9,9,230)));
}
.botonX.azul:hover {
	background-image: linear-gradient(bottom, rgb(9,9,230) 15%, rgb(57,57,148) 56%, rgb(37,37,69) 92%);
	background-image: -o-linear-gradient(bottom, rgb(9,9,230) 15%, rgb(57,57,148) 56%, rgb(37,37,69) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(9,9,230) 15%, rgb(57,57,148) 56%, rgb(37,37,69) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(9,9,230) 15%, rgb(57,57,148) 56%, rgb(37,37,69) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(9,9,230) 15%, rgb(57,57,148) 56%, rgb(37,37,69) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(9,9,230)), color-stop(0.56, rgb(57,57,148)), color-stop(0.92, rgb(37,37,69)));
}
.botonX.amarillo {
	background-image: linear-gradient(bottom, rgb(68,69,37) 15%, rgb(148,148,57) 56%, rgb(215,230,9) 92%);
	background-image: -o-linear-gradient(bottom, rgb(68,69,37) 15%, rgb(148,148,57) 56%, rgb(215,230,9) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(68,69,37) 15%, rgb(148,148,57) 56%, rgb(215,230,9) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(68,69,37) 15%, rgb(148,148,57) 56%, rgb(215,230,9) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(68,69,37) 15%, rgb(148,148,57) 56%, rgb(215,230,9) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(68,69,37)), color-stop(0.56, rgb(148,148,57)), color-stop(0.92, rgb(215,230,9)));
}
.botonX.amarillo:hover {
	background-image: linear-gradient(bottom, rgb(215,230,9) 15%, rgb(148,148,57) 56%, rgb(68,69,37) 92%);
	background-image: -o-linear-gradient(bottom, rgb(215,230,9) 15%, rgb(148,148,57) 56%, rgb(68,69,37) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(215,230,9) 15%, rgb(148,148,57) 56%, rgb(68,69,37) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(215,230,9) 15%, rgb(148,148,57) 56%, rgb(68,69,37) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(215,230,9) 15%, rgb(148,148,57) 56%, rgb(68,69,37) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(215,230,9)), color-stop(0.56, rgb(148,148,57)), color-stop(0.92, rgb(68,69,37)));
}
.botonX.naranjo {
	background-image: linear-gradient(bottom, rgb(71, 51, 37) 15%, rgb(197, 119, 59) 56%, rgb(255, 122, 0) 92%);
	background-image: -o-linear-gradient(bottom, rgb(71, 51, 37) 15%, rgb(197, 119, 59) 56%, rgb(255, 122, 0) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(71, 51, 37) 15%, rgb(197, 119, 59) 56%, rgb(255, 122, 0) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(71, 51, 37) 15%, rgb(197, 119, 59) 56%, rgb(255, 122, 0) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(71, 51, 37) 15%, rgb(197, 119, 59) 56%, rgb(255, 122, 0) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(71, 51, 37)), color-stop(0.56, rgb(197, 119, 59)), color-stop(0.92, rgb(255, 122, 0)));
}
.botonX.naranjo:hover {
	background-image: linear-gradient(bottom, rgb(255, 122, 0) 15%, rgb(197, 119, 59) 56%, rgb(71, 51, 37) 92%);
	background-image: -o-linear-gradient(bottom, rgb(255, 122, 0) 15%, rgb(197, 119, 59) 56%, rgb(71, 51, 37) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(255, 122, 0) 15%, rgb(197, 119, 59) 56%, rgb(71, 51, 37) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(255, 122, 0) 15%, rgb(197, 119, 59) 56%, rgb(71, 51, 37) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(255, 122, 0) 15%, rgb(197, 119, 59) 56%, rgb(71, 51, 37) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(255, 122, 0)), color-stop(0.56, rgb(197, 119, 59)), color-stop(0.92, rgb(71, 51, 37)));
}
.botonX.celeste {
	background-image: linear-gradient(bottom, rgb(37,71,67) 15%, rgb(58,150,146) 56%, rgb(9,232,214) 92%);
	background-image: -o-linear-gradient(bottom, rgb(37,71,67) 15%, rgb(58,150,146) 56%, rgb(9,232,214) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(37,71,67) 15%, rgb(58,150,146) 56%, rgb(9,232,214) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(37,71,67) 15%, rgb(58,150,146) 56%, rgb(9,232,214) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(37,71,67) 15%, rgb(58,150,146) 56%, rgb(9,232,214) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(37,71,67)), color-stop(0.56, rgb(58,150,146)), color-stop(0.92, rgb(9,232,214)));
}
.botonX.celeste:hover {
	background-image: linear-gradient(bottom, rgb(9,232,214) 15%, rgb(58,150,146) 56%, rgb(37,71,67) 92%);
	background-image: -o-linear-gradient(bottom, rgb(9,232,214) 15%, rgb(58,150,146) 56%, rgb(37,71,67) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(9,232,214) 15%, rgb(58,150,146) 56%, rgb(37,71,67) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(9,232,214) 15%, rgb(58,150,146) 56%, rgb(37,71,67) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(9,232,214) 15%, rgb(58,150,146) 56%, rgb(37,71,67) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(9,232,214)), color-stop(0.56, rgb(58,150,146)), color-stop(0.92, rgb(37,71,67)));
}
.botonX.morado {
	background-image: linear-gradient(bottom, rgb(67,37,71) 15%, rgb(143,58,150) 56%, rgb(214,9,232) 92%);
	background-image: -o-linear-gradient(bottom, rgb(67,37,71) 15%, rgb(143,58,150) 56%, rgb(214,9,232) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(67,37,71) 15%, rgb(143,58,150) 56%, rgb(214,9,232) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(67,37,71) 15%, rgb(143,58,150) 56%, rgb(214,9,232) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(67,37,71) 15%, rgb(143,58,150) 56%, rgb(214,9,232) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(67,37,71)), color-stop(0.56, rgb(143,58,150)), color-stop(0.92, rgb(214,9,232)));
}
.botonX.morado:hover {
	background-image: linear-gradient(bottom, rgb(214,9,232) 15%, rgb(143,58,150) 56%, rgb(67,37,71) 92%);
	background-image: -o-linear-gradient(bottom, rgb(214,9,232) 15%, rgb(143,58,150) 56%, rgb(67,37,71) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(214,9,232) 15%, rgb(143,58,150) 56%, rgb(67,37,71) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(214,9,232) 15%, rgb(143,58,150) 56%, rgb(67,37,71) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(214,9,232) 15%, rgb(143,58,150) 56%, rgb(67,37,71) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(214,9,232)), color-stop(0.56, rgb(143,58,150)), color-stop(0.92, rgb(67,37,71)));
}
.botonX.limon {
	background-image: linear-gradient(bottom, rgb(61,71,37) 15%, rgb(113,150,58) 56%, rgb(143,232,9) 92%);
	background-image: -o-linear-gradient(bottom, rgb(61,71,37) 15%, rgb(113,150,58) 56%, rgb(143,232,9) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(61,71,37) 15%, rgb(113,150,58) 56%, rgb(143,232,9) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(61,71,37) 15%, rgb(113,150,58) 56%, rgb(143,232,9) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(61,71,37) 15%, rgb(113,150,58) 56%, rgb(143,232,9) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(61,71,37)), color-stop(0.56, rgb(113,150,58)), color-stop(0.92, rgb(143,232,9)));
}
.botonX.limon:hover {
	background-image: linear-gradient(bottom, rgb(143,232,9) 15%, rgb(113,150,58) 56%, rgb(61,71,37) 92%);
	background-image: -o-linear-gradient(bottom, rgb(143,232,9) 15%, rgb(113,150,58) 56%, rgb(61,71,37) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(143,232,9) 15%, rgb(113,150,58) 56%, rgb(61,71,37) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(143,232,9) 15%, rgb(113,150,58) 56%, rgb(61,71,37) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(143,232,9) 15%, rgb(113,150,58) 56%, rgb(61,71,37) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(143,232,9)), color-stop(0.56, rgb(113,150,58)), color-stop(0.92, rgb(61,71,37)));
}
.botonX.cafe {
	background-image: linear-gradient(bottom, rgb(71,56,37) 15%, rgb(150,106,58) 56%, rgb(199,141,102) 92%);
	background-image: -o-linear-gradient(bottom, rgb(71,56,37) 15%, rgb(150,106,58) 56%, rgb(199,141,102) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(71,56,37) 15%, rgb(150,106,58) 56%, rgb(199,141,102) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(71,56,37) 15%, rgb(150,106,58) 56%, rgb(199,141,102) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(71,56,37) 15%, rgb(150,106,58) 56%, rgb(199,141,102) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(71,56,37)), color-stop(0.56, rgb(150,106,58)), color-stop(0.92, rgb(199,141,102)));
}
.botonX.cafe:hover {
	background-image: linear-gradient(bottom, rgb(199,141,102) 15%, rgb(150,106,58) 56%, rgb(71,56,37) 92%);
	background-image: -o-linear-gradient(bottom, rgb(199,141,102) 15%, rgb(150,106,58) 56%, rgb(71,56,37) 92%);
	background-image: -moz-linear-gradient(bottom, rgb(199,141,102) 15%, rgb(150,106,58) 56%, rgb(71,56,37) 92%);
	background-image: -webkit-linear-gradient(bottom, rgb(199,141,102) 15%, rgb(150,106,58) 56%, rgb(71,56,37) 92%);
	background-image: -ms-linear-gradient(bottom, rgb(199,141,102) 15%, rgb(150,106,58) 56%, rgb(71,56,37) 92%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.15, rgb(199,141,102)), color-stop(0.56, rgb(150,106,58)), color-stop(0.92, rgb(71,56,37)));
}
/* # ESTILOS PARA BOTONES DE LA VENTANA */

/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/

	Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/

body {
  min-width: 960px;
}

/* Containers
----------------------------------------------------------------------------------------------------*/
.container_12 {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/


.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	display:inline;
	float: left;
	margin-left: 10px;
	margin-right: 10px;
}



.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11,
.push_12, .pull_12 {
	position:relative;
}


/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .grid_1 {
	width:60px;
}

.container_12 .grid_2 {
	width:140px;
}

.container_12 .grid_3 {
	width:220px;
}

.container_12 .grid_4 {
	width:300px;
}

.container_12 .grid_5 {
	width:380px;
}

.container_12 .grid_6 {
	width:460px;
}

.container_12 .grid_7 {
	width:540px;
}

.container_12 .grid_8 {
	width:620px;
}

.container_12 .grid_9 {
	width:700px;
}

.container_12 .grid_10 {
	width:780px;
}

.container_12 .grid_11 {
	width:860px;
}

.container_12 .grid_12 {
	width:940px;
}




/* Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .prefix_1 {
	padding-left:80px;
}

.container_12 .prefix_2 {
	padding-left:160px;
}

.container_12 .prefix_3 {
	padding-left:240px;
}

.container_12 .prefix_4 {
	padding-left:320px;
}

.container_12 .prefix_5 {
	padding-left:400px;
}

.container_12 .prefix_6 {
	padding-left:480px;
}

.container_12 .prefix_7 {
	padding-left:560px;
}

.container_12 .prefix_8 {
	padding-left:640px;
}

.container_12 .prefix_9 {
	padding-left:720px;
}

.container_12 .prefix_10 {
	padding-left:800px;
}

.container_12 .prefix_11 {
	padding-left:880px;
}



/* Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .suffix_1 {
	padding-right:80px;
}

.container_12 .suffix_2 {
	padding-right:160px;
}

.container_12 .suffix_3 {
	padding-right:240px;
}

.container_12 .suffix_4 {
	padding-right:320px;
}

.container_12 .suffix_5 {
	padding-right:400px;
}

.container_12 .suffix_6 {
	padding-right:480px;
}

.container_12 .suffix_7 {
	padding-right:560px;
}

.container_12 .suffix_8 {
	padding-right:640px;
}

.container_12 .suffix_9 {
	padding-right:720px;
}

.container_12 .suffix_10 {
	padding-right:800px;
}

.container_12 .suffix_11 {
	padding-right:880px;
}



/* Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .push_1 {
	left:80px;
}

.container_12 .push_2 {
	left:160px;
}

.container_12 .push_3 {
	left:240px;
}

.container_12 .push_4 {
	left:320px;
}

.container_12 .push_5 {
	left:400px;
}

.container_12 .push_6 {
	left:480px;
}

.container_12 .push_7 {
	left:560px;
}

.container_12 .push_8 {
	left:640px;
}

.container_12 .push_9 {
	left:720px;
}

.container_12 .push_10 {
	left:800px;
}

.container_12 .push_11 {
	left:880px;
}



/* Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .pull_1 {
	left:-80px;
}

.container_12 .pull_2 {
	left:-160px;
}

.container_12 .pull_3 {
	left:-240px;
}

.container_12 .pull_4 {
	left:-320px;
}

.container_12 .pull_5 {
	left:-400px;
}

.container_12 .pull_6 {
	left:-480px;
}

.container_12 .pull_7 {
	left:-560px;
}

.container_12 .pull_8 {
	left:-640px;
}

.container_12 .pull_9 {
	left:-720px;
}

.container_12 .pull_10 {
	left:-800px;
}

.container_12 .pull_11 {
	left:-880px;
}




/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
  zoom: 1;
}
html,body,div,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,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-size:100%;background:transparent}body{line-height:1}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}ul li{list-style:none}body{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;font-size:12px;color:#47433f;margin:0px}p{line-height:14px}div.clear,div.clr{clear:both}div.height{height:10px}h1{font-size:14px;font-weight:bold}h2{font-size:12px;text-transform:uppercase;font-weight:bold;line-height:14px}a:link,a:visited{text-decoration:none;color:#383737}a.int:link,a.int:visited{color:#47433f;text-decoration:underline;font-size:11px}div.header{margin:auto;background:url("/media/common/img/bg-header.jpg") 0 0 repeat-x;height:128px;width:100%}.imgLogo{position:absolute;pointer-events:none}.imgLogo img{position:relative;margin-left:-70px;margin-top:-25px}div.con-ingreso-s{margin:auto;background:url("/media/common/img/bg-ingreso.jpg") 0 0 repeat-x;height:62px;width:100%;padding-top:20px;margin-bottom:-9px}div.con-ingreso{margin:auto;background:url("/media/common/img/bg-ingreso.jpg") 0 100% repeat-x;height:169px;width:100%}div.con-ingreso-s div.boton,div.con-ingreso div.boton{margin-top:2px}span.ico-usuario,span.ico-clave,span.ico-rep,span.ico-flecha{float:left;margin-top:10px;margin-right:3px}span.ico-usuario{background:url("/media/common/img/icons-login.png") 0 0 no-repeat;width:14px;height:12px}span.ico-clave{background:url("/media/common/img/icons-login.png") 0 -12px no-repeat;width:19px;height:10px}span.ico-rep{background:url("/media/common/img/icons-login.png") 0 -22px no-repeat;width:13px;height:15px}span.ico-flecha{background:url("/media/common/img/icons-login.png") 0 -38px no-repeat;width:15px;height:12px}div.con-ingreso-s div.formu{margin-right:5px}div.con-ingreso-s a{font-size:10px;color:#5d5d5d;margin-top:-10px}div.input-home{margin:auto;background:url("/media/common/img/input-principal.jpg") 0 0 no-repeat;width:468px;height:24px;padding:43px 0 45px 28px}div.input-home input.input-home{float:left;color:#aaa9a9;font-size:18px;width:380px;margin-right:21px;border:none}div.input-home input.lupa{background:none;width:67px;height:75px;cursor:pointer;border:none;margin-top:-25px}div.nav{float:right;margin-top:50px;color:#fff}div.nav ul li{float:left;margin-right:12px}div.nav ul li a:link,div.nav ul li a:visited{float:left;background:url("/media/common/img/boton-nav.png") -32px 0 no-repeat;height:28px;padding:5px 16px;border-radius:5px;border:1px solid #223f5c;color:#fff;text-align:center;font-size:12px;line-height:14px;font-weight:bold}div.nav ul li a:hover,div.nav ul li a:active,div.nav ul li a#current-nav{background:url("/media/common/img/boton-nav.png") -32px -39px no-repeat;border:1px solid #7498ab;color:#383737}div.nav ul li a.home:link,div.nav ul li a.home:visited{background:url("/media/common/img/boton-nav.png") -3px 0 no-repeat;width:10px}div.nav ul li a.home:hover,div.nav ul li a.home:active,div.nav ul li a.home#current-nav{background:url("/media/common/img/boton-nav.png") -3px -39px no-repeat;width:10px}div.sub-menu{float:left;height:29px;width:940px}div.sub-menu ul li{float:left;margin-right:3px}div.sub-menu ul li a{float:left;background:url("/media/common/img/sub-menu-informes.jpg") 0 0 no-repeat;height:29px}div.sub-menu ul li a.a{width:152px}div.sub-menu ul li a.b{width:157px;background-position:-159px 0px}div.sub-menu ul li a.c{width:88px;background-position:-266px 0px}div.sub-menu ul li a.d{width:124px;background-position:-416px 0px}div.sub-menu ul li a.e{width:112px;background-position:-546px 0px}div.sub-menu ul li a.f{width:147px;background-position:-664px 0px}div.sub-menu ul li a.g{width:121px;background-position:-817px 0px}div.sub-menu ul li a.h{width:171px;background-position:-1002px 0px}div.sub-menu ul li a.i{width:141px;background-position:-1179px 0px}div.sub-menu ul li a.j{width:159px;background-position:-1326px 0px}div.sub-menu ul li a.k{width:210px;background-position:-1660px 0px}div.sub-menu ul li a.l{width:129px;background-position:-2011px 0px}div.sub-menu ul li a.m{width:129px;background-position:-2145px 0px}div.sub-menu ul li a.n{width:109px;background-position:-2279px 0px}div.sub-menu ul li a.o{width:148px;background-position:-2509px 0px}div.sub-menu ul li a.p{width:107px;background-position:-3097px 0px}div.sub-menu ul li a.q{width:98px;background-position:-3208px 0px}div.sub-menu ul li a.tasacion{width:110px;background-position:-2662px 0px}div.sub-menu ul li a.transferencia{width:140px;background-position:-2773px 0px}div.sub-menu ul li a.a:hover,div.sub-menu ul li a.c#current1{background-position:0px -30px}div.sub-menu ul li a.b:hover,div.sub-menu ul li a.b#current1{background-position:-159px -30px;height:39px}div.sub-menu ul li a.c:hover,div.sub-menu ul li a.c#current1{background-position:-266px -30px}div.sub-menu ul li a.d:hover,div.sub-menu ul li a.d#current1{background-position:-416px -30px;height:39px}div.sub-menu ul li a.e:hover,div.sub-menu ul li a.e#current1{background-position:-546px -30px;height:39px}div.sub-menu ul li a.f:hover,div.sub-menu ul li a.f#current1{background-position:-664px -30px;height:39px}div.sub-menu ul li a.g:hover,div.sub-menu ul li a.g#current1{background-position:-817px -30px;height:39px}div.sub-menu ul li a.h:hover,div.sub-menu ul li a.h#current1{background-position:-1002px -30px;height:39px}div.sub-menu ul li a.i:hover,div.sub-menu ul li a.i#current1{background-position:-1179px -30px;height:39px}div.sub-menu ul li a.j:hover,div.sub-menu ul li a.j#current1{background-position:-1326px -30px;height:39px}div.sub-menu ul li a.k:hover,div.sub-menu ul li a.k#current1{background-position:-1660px -30px;height:39px}div.sub-menu ul li a.l:hover,div.sub-menu ul li a.l#current1{background-position:-2011px -30px;height:39px}div.sub-menu ul li a.m:hover,div.sub-menu ul li a.m#current1{background-position:-2145px -30px;height:39px}div.sub-menu ul li a.n:hover,div.sub-menu ul li a.n#current1{background-position:-2279px -30px;height:39px}div.sub-menu ul li a.o:hover,div.sub-menu ul li a.o#current1{background-position:-2509px -30px;height:39px}div.sub-menu ul li a.p:hover,div.sub-menu ul li a.p#current1{background-position:-3097px -30px;height:39px}div.sub-menu ul li a.q:hover,div.sub-menu ul li a.q#current1{background-position:-3208px -30px;height:39px}div.sub-menu ul li a.tasacion:hover,div.sub-menu ul li a.tasacion#current1{background-position:-2662px -30px;height:39px}div.sub-menu ul li a.transferencia:hover,div.sub-menu ul li a.transferencia#current1{background-position:-2773px -30px;height:39px}span.linea{float:left;border-right:1px solid #c2c2c2;height:75px;width:1px;margin:-10px 0px}div.sub-menu ul li span.submenu-title-a{float:left;background:url("/media/common/img/sub-menu-informes.jpg") -1491px 0 no-repeat;height:29px;width:79px}div.sub-menu ul li span.submenu-title-b{float:left;background:url("/media/common/img/sub-menu-informes.jpg") -1576px 0 no-repeat;height:29px;width:79px}div.sub-menu ul li span.submenu-title-c{float:left;background:url("/media/common/img/sub-menu-informes.jpg") -1870px 0 no-repeat;height:29px;width:79px}div.footer{margin:auto;width:100%;background:url("/media/common/img/bg-footer.jpg") 0 0 repeat-x;height:76px;color:#dddcdc;padding-top:20px}div.footer ul{float:left;margin-bottom:8px}div.footer ul li{float:left}div.footer a:visited,div.footer a:link{color:#dddcdc;padding:0px 6px;font-weight:bold}div.footer a:hover,div.footer a:active,div.footer acurrent{text-decoration:underline}div.bg-marcas{margin:auto;background:url("/media/common/img/bg-marcas.jpg") 0 0 repeat-x;height:206px;width:100%}div.marcas-a img,div.marcas-b img{float:left;margin-right:30px}div.marcas-b{float:left;margin-top:15px}span.pest{float:left;background:url("/media/common/img/pest.png") 0 0 no-repeat;width:137px;height:39px;position:relative;top:-9px;color:#fff;text-align:center;padding-top:10px;line-height:14px}a.pest:link,a.pest:visited{background:url("/media/common/img/pest.png") 0 -49px no-repeat;width:137px;height:49px;color:#fff;font-weight:bold;text-align:center;line-height:14px;display:table-cell;vertical-align:middle}a.pest:hover,a.pest:active,a.pest#current{background:url("/media/common/img/pest.png") 0 0 no-repeat}a.pest-not:link,a.pest-not:visited{background:url("/media/common/img/pest.png") 0 -98px no-repeat;width:137px;height:49px;color:#fff;font-weight:bold;text-align:center;line-height:14px;display:table-cell;vertical-align:middle}a.pest-not:hover,a.pest-not:active,a.pest-not#current{background:url("/media/common/img/pest.png") 0 -147px no-repeat}a.acciones{color:#383737 !important;float:right;font-size:12px !important;position:absolute;right:0;top:5px}span.ocultar{display:inline-block;background:url("/media/common/img/subir.png") 0 0 no-repeat;height:8px;width:9px}span.mostrar{display:inline-block;background:url("/media/common/img/subir.png") 0 -8px no-repeat;height:8px;width:9px}div.slider{margin:auto;width:658px;height:85px;border:1px solid #c2c2c2;background-color:#f1f1f2;margin-top:5px}div.slider div.controls{float:right;position:relative;right:10px;top:60px}div.slider div.controls a{float:left;border-radius:5px;width:16px;height:16px;border:1px solid #cececf;text-align:center;line-height:15px;background-color:#dfdfe0;margin-left:6px}div.slider div.controls a:hover,div.slider div.controls a#active{color:#fff;background-color:#3b3b3b;border:1px solid #3b3b3b}div.formu{float:left}label,input,textarea{font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;font-size:12px}input{font-size:12px}input.text{height:17px !important}input[type='radio']{margin-right:0px}select,input.text{border:2px solid #cecece;width:154px;height:31px;border-radius:6px;font-size:12px;color:#aaa9a9;padding:5px}select.s{border:1px solid #9f9f9f;height:25px;width:56px;color:#47433f;padding:3px 5px 4px;border-radius:6px}textarea{width:820px;height:80px;border:1px solid #c2c2c2;background-color:#f1f1f2;padding:5px;resize:none}input.ingreso{float:left;background:url("/media/common/img/input-ingreso.png") 0 0 no-repeat;width:179px;height:27px;color:#aaa9a9;padding:3px 10px 4px;border:none}input.ingreso-error{background-position:0px -35px}div.boton{float:left}div.boton input{float:left;background:url("/media/common/img/boton-input.png") 0 0 no-repeat;height:29px !important;padding:5px 0px 7px 10px !important;color:#fff !important;font-size:12px;border:none !important;border-radius:0;cursor:pointer}div.boton a{float:left;background:url("/media/common/img/boton-input.png") 0 0 no-repeat;height:11px;padding:9px 0px 9px 10px;color:#fff;font-size:12px;border:none;color:#fff !important;text-decoration:none !important}div.boton a.myReports{width:92px;background-size:92px 92px;border-radius:7px}div.boton:hover a,div.boton:hover input{background:url("/media/common/img/boton-input.png") 0 -29px no-repeat}div.boton input.boton-xl,div.boton a.boton-xl{float:left;background:url("/media/common/img/boton-input-xl.jpg") 0 0 no-repeat;width:232px;height:38px !important;font-size:18px;line-height:38px;padding:0px;text-align:center}div.boton a.medium{height:10px;width:130px;padding-left:0px;text-align:center;border-radius:5px;border:1px solid #3a3a3a;-webkit-border-radius:5px;-moz-border-radius:5px;background:url("/media/common/img/boton-input.png") -5px 0px no-repeat;line-height:10px}div.boton a.medium:hover,div.boton#current0 a.medium{background:url("/media/common/img/boton-input.png") -5px -58px no-repeat;border:1px solid #38393a;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px}div.boton b{float:left;background:url("/media/common/img/boton-input.png") 100% 0 no-repeat;height:29px;width:10px}div.boton:hover b{background:url("/media/common/img/boton-input.png") 100% -29px no-repeat}div.boton a.s{float:left;background:url("/media/common/img/boton-s.png") 0 0 no-repeat;width:30px;height:14px;font-size:11px;font-weight:bold;color:#fff;padding:5px;text-align:center;line-height:14px}div.error-formu{display:inline-block;position:relative;right:338px;height:30px;background-color:#eae8e8;border:1px solid #c2c2c2;padding:3px 10px;line-height:28px}span.error{float:left;font-size:10px;color:#cd0a15;margin-left:153px;margin-top:2px}div.cont-formulario{float:left;margin-top:30px;min-height:406px}div.cont-formulario div.formu{margin-bottom:12px}div.cont-formulario label{float:left;margin-top:7px;width:153px}div.cont-formulario input,div.cont-formulario select,div.cont-formulario textarea{width:240px;height:28px;border:2px solid #cecece;border-radius:8px;-webkit-border-radius:8px;-moz-border-radius:8px;padding:0px 5px;color:#aaa9a9;font-weight:bold;background-color:#fff;font-weight:normal}div.cont-formulario div.boton input{border-radius:0px}div.cont-formulario select{padding:5px;width:254px;height:32px}div.cont-formulario textarea{height:100px;padding:5px}div.cont-formulario input.error,div.cont-formulario select.error{background-color:#eae8e8}span.resp{color:#aaa9a9;position:relative;top:7px}div.pagination{float:right}div.pagination a{float:left;color:#383737;margin:0px 4px}div.pagination a.desact{color:#c1c0c0;cursor:inherit}div.pagination strong{background-color:#3c3c3c;color:#fff;width:17px;height:17px;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;line-height:17px;text-align:center;float:left;position:relative;top:-2px;margin:0px 4px}div.input-buscador{background:url("/media/common/img/input-interior.jpg") 0 0 no-repeat;width:463px;height:45px;padding:29px 0 10px 28px}div.input-buscador input.input-buscador{float:left;color:#aaa9a9;font-size:18px;width:79%;border:none}div.input-buscador input.lupa{background:none;width:59px;height:44px;cursor:pointer;border:none;margin-top:-11px}div.input-buscador a.lupa{background:none;width:59px;height:44px;cursor:pointer;border:none;margin-top:-11px}table tr td{padding:12px 15px}table tr td label{margin-right:10px}table tr.title{border-left:1px solid #1e3c5a;border-right:1px solid #1e3c5a}table tr.title td{background-color:#1e3c5a;color:#fff;font-weight:bold}span.down{vertical-align:text-top;cursor:pointer;width:16px !important;height:16px !important;float:right;margin-top:-2px}span.up{vertical-align:text-top;cursor:pointer;width:16px !important;height:16px !important;float:right;margin-top:-2px}table.mini-table tr td{padding:7px 8px !important;height:24px;line-height:24px}table.tabla-resumen tr td{margin-bottom:5px;padding:5px 10px;text-align:left;vertical-align:middle;height:50px;font-weight:bold}table.tabla-resumen tr td p{display:inline-block;vertical-align:middle;width:auto}table.tabla-resumen-new tr td{border-top:1px dotted #bbb;margin:0;padding:10px 5px;text-align:left;vertical-align:top;height:auto;width:46%;display:inline-block}table.tabla-resumen-new tr td span{float:left}table.tabla-resumen-new tr td:nth-child(odd){margin-right:3%}table.tabla-resumen-new tr td p{overflow:hidden;vertical-align:middle;line-height:16px;font-size:12px;margin:0;text-align:left}table.tabla-resumen-new tr td p strong{text-transform:uppercase}table.tabla-resumen-new tr:nth-child(1) td{border-top:0 none}span.remate_status{display:inline-block;background:url("/media/common/img/remate_status_full.png") 0 0 no-repeat;width:50px;height:55px;margin-right:8px;vertical-align:middle}span.remate_status.ok{background-position:bottom left}span.remate_status.warning{background-position:top left}span.remate_status.no-info{background-position:0 -55px}span.reporte{display:inline-block;background:url("/media/common/img/reporte.png") 0 0 no-repeat;width:46px;height:50px;margin-right:8px;vertical-align:middle}span.situacion{background-position:0px -51px !important}span.situacion2{background-position:0px -152px !important;height:48px !important}span.situacion2a{background-position:0px -149px !important;height:48px !important}span.situacion3{background-position:0px -102px !important;height:47px !important}span.situacion4{background-position:0px -251px !important;height:49px}a#PROP span.situacion3{background-position:0px -107px !important;height:46px !important}span.vigente{background-position:0px -199px !important}span.info{background-position:0px -300px !important;width:39px;height:42px;margin-top:5px;margin-right:15px}span.vigente-pendiente{background-position:0px -342px !important}span.cars{display:inline-block;vertical-align:middle;background:url("/media/common/img/cars.png") 0 0 no-repeat;width:47px;height:52px;margin-right:8px}span.propietarios{background-position:0px -152px !important;height:47px}span.flota{background-position:0px -197px !important}span.si-taxi{background-position:0px -246px !important}span.propietarios{background-position:0px -152px !important;height:47px}span.comment-ico{background:url("/media/common/img/comment.png") 0 50% no-repeat !important}span.seguridad-ico{background:url("/media/common/img/seguridad-vehicular.png") 0 50% no-repeat !important}span.consumo-ico{background:url("/media/common/img/modulo-consumo-emision.png") 0 50% no-repeat !important}span.cops{display:inline-block;vertical-align:middle;background:url("/media/common/img/cops.png") 0 0 no-repeat;width:46px;height:51px;margin-right:8px}span.multa{background-position:0px -53px !important}span.si-multa{background-position:0px -158px !important}span.no-multa{background-position:0px -2px !important}span.re-multa{background-position:0px -209px !important}span.chk-multa{background-position:0px -54px !important}span.dl-multa{background-position:0px -259px !important}span.nd-multa{background-position:0px -310px !important}span.garantia{display:inline-block;vertical-align:middle;width:46px;height:46px;padding-right:8px}span.km{display:inline-block;vertical-align:middle;background:url("/media/common/img/km.png") 0 0 no-repeat;width:41px;height:30px;padding-right:15px;margin-top:10px}span.carrito{float:right;position:relative;top:-2px;background:url("/media/common/img/carrito.png") 0 3px no-repeat;width:36px;height:20px}span.agregado{display:inline-block;vertical-align:middle;height:24px;background-position:0px -20px !important;margin-top:-4px}table tr.sub-title{border:1px solid #c2c2c2;background-color:#b7d3e1;border-bottom:none}table tr.sub-title td{padding:5px 15px}tr.sub-title h1{margin-left:55px}table tr.sub-title span{float:left;position:absolute;width:44px}tr td.dest{background-color:#d6efb3}div.info{background:#f1f1f2 url("/media/common/img/info.png") 10px 10px no-repeat;border:1px solid #c2c2c2;padding:10px 10px 10px 45px;margin:15px 0px;margin-bottom:0px;overflow:hidden}div.info.content{margin:0px;background-image:none;border-top:0px}div.info > p{float:left;margin-top:5px;margin-bottom:5px}div.info a{color:#1e3c5a;text-decoration:underline}span.informacion{float:right;background:url("/media/common/img/info.png") 0 0 no-repeat;width:27px;height:25px;margin-top:14px;cursor:pointer;position:absolute}a.info-adicional{text-decoration:underline;color:#383737}a.info-adicional:hover{color:#000}div.cont-block{float:left;width:200px;height:47px;border:1px solid #c2c2c2;padding:10px 9px 9px}div.cont-block img{margin-right:10px}div.cont-block h2,div.cont-block img{float:left}a.lupa{float:left;background:url("/media/common/img/lupa.gif") 0 0 no-repeat;width:19px;height:18px;cursor:pointer}span.circle-blue{float:left;position:relative;background:url("/media/common/img/circle-blue.png") 0 0 no-repeat;width:30px;height:30px;top:8px;left:8px;color:#fff;text-align:center;font-size:14px;line-height:30px;font-weight:bold}div.flotante{position:fixed;border:1px solid #cfd0d1;background-color:#f1f1f2;top:10%;color:#383737;width:500px;padding:15px 10px;z-index:100}div.flotante a{color:#383737}div.flotante h1{float:left;margin-right:5px}span.cerrar{float:right;font-size:11px;cursor:pointer}div.box-light{background-color:#fff;opacity:0.7;z-index:90;display:block;height:100%;left:0;position:fixed;top:0;width:100%;filter:alpha(opacity=70);-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"}div.float-error{float:left;position:relative;width:auto;top:-10px}div.cont-float-error{float:left;width:auto;height:38px;text-align:center;line-height:38px;background:url("/media/common/img/center.png") 0 0 repeat-x;font-size:11px;color:#e6e6e6}span.left{float:left;background:url("/media/common/img/left.png") 0 0 no-repeat;height:38px;width:10px}span.right{float:right;background:url("/media/common/img/right.png") 0 0 no-repeat;height:38px;width:12px}div.float-patente{top:-48px;left:264px}a.volver{float:left;margin-top:16px;color:#383737 !important;padding-left:0px !important}div.flotante-info{float:left;height:100%;position:relative;top:25px;left:-124px;width:278px;z-index:100}div.flotante-info div.cont-float-info{float:left;width:252px;background-color:#f2f2f3;padding:0px 12px 5px;border:1px solid #d0d0d1;border-top:none;padding:12px}div.flotante-info div.cont-float-info h1{margin-bottom:5px}#inf-tabla{margin-top:4px;float:right;margin-left:5px}#inf-tabla div.flotante-info{left:-125px !important;top:26px;text-align:left}a.ok,a.asignar,a.provisorio,a.proceso,a.nuevo,a.sininfo{float:left;color:#fff;width:73px;height:24px;text-align:center;font-size:11px;font-weight:bold;line-height:24px;white-space:nowrap}a.ok{background:url("/media/common/img/asignar-ok.png") 0 0 no-repeat}a.asignar{background:url("/media/common/img/asignar-ok.png") 0 -24px no-repeat}a.provisorio{background:url("/media/common/img/asignar-ok.png") 0 -72px no-repeat}a.proceso{background:url("/media/common/img/asignar-ok.png") 0 -48px no-repeat;color:#666}a.nuevo{background:url("/media/common/img/asignar-ok.png") 0 -96px no-repeat}a.sininfo{background:url("/media/common/img/asignar-ok.png") 0 -120px no-repeat}a.verde,a.naranjo,a.amarillo,a.celeste,a.azul,a.rosado,a.rojo,a.cafe,a.gris{float:left;color:#fff;width:73px;height:24px;text-align:center;font-size:11px;font-weight:bold;line-height:24px}a.verde{background:url("/media/common/img/asignar-ok.png") 0 0 no-repeat}a.naranjo{background:url("/media/common/img/asignar-ok.png") 0 -24px no-repeat}a.amarillo{background:url("/media/common/img/asignar-ok.png") 0 -48px no-repeat;color:#666}a.celeste{background:url("/media/common/img/asignar-ok.png") 0 -72px no-repeat}a.azul{background:url("/media/common/img/asignar-ok.png") 0 -96px no-repeat}a.rosado{background:url("/media/common/img/asignar-ok.png") 0 -120px no-repeat}a.rojo{background:url("/media/common/img/asignar-ok.png") 0 -144px no-repeat}a.cafe{background:url("/media/common/img/asignar-ok.png") 0 -168px no-repeat}a.gris{background:url("/media/common/img/asignar-ok.png") 0 -192px no-repeat;color:#666}a.verdeCo,a.naranjoCo,a.amarilloCo,a.celesteCo,a.azulCo,a.rosadoCo,a.rojoCo,a.cafeCo,a.grisCo{float:left;color:#fff;width:100px;height:24px;text-align:center;font-size:11px;font-weight:bold;line-height:24px}a.verdeCo{background:url("/media/common/img/asignar-ok-co.png") 0 0 no-repeat}a.naranjoCo{background:url("/media/common/img/asignar-ok-co.png") 0 -24px no-repeat}a.amarilloCo{background:url("/media/common/img/asignar-ok-co.png") 0 -48px no-repeat;color:#666}a.celesteCo{background:url("/media/common/img/asignar-ok-co.png") 0 -72px no-repeat}a.azulCo{background:url("/media/common/img/asignar-ok-co.png") 0 -96px no-repeat}a.rosadoCo{background:url("/media/common/img/asignar-ok-co.png") 0 -120px no-repeat}a.rojoCo{background:url("/media/common/img/asignar-ok-co.png") 0 -144px no-repeat}a.cafeCo{background:url("/media/common/img/asignar-ok-co.png") 0 -168px no-repeat}a.grisCo{background:url("/media/common/img/asignar-ok-co.png") 0 -192px no-repeat;color:#666}.enable{background-color:#cae9ce}.g-ok{background:url("/media/common/img/garantia_estado.png") 0 -91px no-repeat}.g-undefined{background:url("/media/common/img/garantia_estado.png") 0 -46px no-repeat}.g-no{background:url("/media/common/img/garantia_estado.png") 0 0 no-repeat}.p-patente{background:url("/media/common/img/patente_bg.png") no-repeat scroll 0 -15px transparent;color:#7b7b7b;float:left;font-size:22px;height:57px;margin:-15px 5px -23px -5px;padding:22px 0 0 13px;text-shadow:-1px -1px #fff;text-transform:uppercase;width:140px}.p1{width:35px;text-align:center;margin-right:12px;float:left}.p2{width:35px;text-align:center;margin-right:14px;float:left}.p2{width:35px;text-align:center;float:left}#slider{margin:5px 0 5px 0}ol#controls li{float:left;list-style:none;width:16px;height:16px;text-align:center;margin-right:3px;background-color:#f0eced;color:#3f3f3f;border:1px solid #f0eced;border-radius:5px;line-height:15px}ol#controls li:hover{background-color:#3f3f3f;border:1px solid #3f3f3f;color:#fff;cursor:pointer}ol#controls li a:hover{color:#fff}ol#controls li:hover a{color:#fff}ol#controls{margin-top:-30px;margin-left:552px}ol#controls li.current{background-color:#3f3f3f;border:1px solid #3f3f3f;color:#fff;cursor:pointer}ol#controls li.current a{color:#fff}#delete_avatar{float:right;margin:5px 0 0 0}.garantia-sp{background:url("/media/common/img/garantia.png") 0 0 no-repeat}a.refresh-btn{color:#fff;border:2px solid #fff;border-radius:6px;background-color:#9ac300;padding:3px 6px;margin-right:19px;float:right}div.tyc{float:left;margin-bottom:25px}div.tyc p{margin-bottom:15px;line-height:16px}div.tyc p strong{margin-bottom:25px;line-height:16px}div.tyc ul{margin-bottom:10px}div.tyc ul li{margin-bottom:5px;line-height:16px;list-style-type:disc;list-style-position:inside}div.table-cont-n{border:1px solid #c2c2c2;width:938px}div.table-cont-n table tr.g td{background-color:#f2f2f4}div.table-cont-n-head{background-color:#b7d3e1;float:left;width:938px;height:44px}div.table-cont-n-head span.cars{float:left;margin:-10px 0 0 15px}div.table-cont-n-head h1{float:left;margin:16px 0 0 5px}div.table-cont-n table tr.titulos{background-color:#1e3c5a;color:#fff;font-weight:bold}div.table-cont-n img.estadio{border:1px solid #c2c2c2}div.table-cont-n-footer-desc{float:left;width:485px;border-right:1px solid #dbdada;padding:10px;margin:5px;margin-right:10px}div.table-cont-n-footer-fuente{float:left;padding:10px}div.beta{width:83px;height:83px;background:url("/media/common/img/beta.png") 0 0 no-repeat;position:fixed;top:0;right:0;z-index:9999}span.h1-info{float:right;margin:-23px 18px 0 0}span.h1-info-alt{float:right;margin:5px 18px 0 10px}div.checkbox_caja div.checkbox{margin-bottom:10px}a.rmvcat:link,a.rmvcat:visited,a.rmvcat:hover,a.rmvcat:active{width:11px;height:13px;display:inline-table;background:url("/media/common/img/trash.png") 0 0 no-repeat;text-indent:-9999px}a.openflotanteboxdoc:link,a.openflotanteboxdoc:visited{background:url("/media/common/img/upload_file_icon.png") 100% 0 no-repeat;display:block;height:24px;line-height:24px;width:88px;font-weight:bold;text-transform:capitalize}div#floatContent{display:none}div#floatContent > .innerDiv{left:40%;top:45%;margin:0 auto;position:fixed;z-index:999}div#floatContent > .innerDiv > img{float:left}div#floatContent > .innerDiv > .text{color:#fff;padding-left:40px;font-size:30px}#detalleMovil{position:fixed;right:40px;bottom:20px;width:320px;border:1px solid;background-color:#eee;border-top-left-radius:5px;overflow:hidden}#detalleMovil > .topTitle{border-bottom:1px solid #bbb;padding:10px 10px;font-weight:bold;font-size:15px;background-color:#1e3c5a;color:#fff}#detalleMovil > .detalle{padding:0px 15px 10px 15px}#detalleMovil > .detalle:hover{background-color:#b2cbff}#detalleMovil > .detalle > .label{padding:10px 5px;font-weight:bold;font-size:16px;cursor:pointer}#detalleMovil > .item{padding:10px 20px}#detalleMovil > .detalle > .ninjaStyle{display:none}#detalleMovil > .detalle > .ninjaStyle > .item{padding:6px 25px}#detalleMovil > .item:hover,#detalleMovil > .detalle > .ninjaStyle > .item:hover{background-color:#c7e17e}#detalleMovil > .item > .titleMov,#detalleMovil > .detalle > .ninjaStyle > .item > .titleMov{font-size:14px}#detalleMovil > .item > .valueMov,#detalleMovil > .detalle > .ninjaStyle > .item > .valueMov{text-align:right;font-size:14px}#detalleMovil > .detalle > .ninjaStyle > .item.separator{background-color:#ccc;padding:0px;height:6px}#detalleMovil > .item > .titleMov{font-size:16px;font-weight:bold}#detalleMovil > .item > .valueMov{text-align:right;font-size:16px;color:#f00;font-weight:bold}#detalleMovil > .buttons{padding:4px 0px 10px 0px}#detalleMovil > .buttons > .button{border:1px solid #808080;width:90%;margin:0 auto;padding:10px 0px;text-align:center;font-size:18px;border-radius:3px;margin-bottom:4px;cursor:pointer;color:#fff}#detalleMovil > .buttons > .button.recalc{background:#61c419;background:linear-gradient(to bottom, #61c419 0%, #b4e391 50%, #61c419 100%)}#detalleMovil > .buttons > .button.recalc:hover{background:#61c419;background:linear-gradient(to bottom, #61c419 0%, #93e256 50%, #61c419 100%)}#detalleMovil > .buttons > .button.calcul{background:#f9c667;background:linear-gradient(to bottom, #f9c667 0%, #f79621 100%)}#detalleMovil > .buttons > .button.calcul:hover{background:#f7a918;background:linear-gradient(to bottom, #f7a918 0%, #f79621 100%)}#alterMovil{width:24px;margin:-5px 2px -8px 0px;float:right;cursor:pointer}div.not-cont{float:left;width:960px}div.not-cont-block{float:left;padding:0 10px;width:940px;margin-bottom:29px;border-bottom:1px solid #4b4b4b;padding-bottom:25px}div.not-cont-block-a{float:left;width:620px;margin-right:22px}span.date{float:left}div.not-cont-block-a h1{color:#1b3653;font-size:30px;font-weight:bold;float:left;margin:13px 0 22px 0}span.recuadro{border:1px solid #dadada;padding:20px;color:#383737;font-size:16px;text-transform:uppercase;float:left;display:block;float:left}span.title-noticia{font-size:18px;color:#383737;margin:20px 0 13px 0;float:left}div.not-cont-block-a a.img-big{float:left;width:298px;height:226px}div.not-cont-block-a a.img-big img{border:8px solid #eae8e8}div.not-cont-block-a div.texto{float:left;margin-left:20px;width:302px}div.not-cont-block-a p{margin-bottom:25px}div.minigal a{margin-right:16px}div.minigal a img{border:5px solid #eae8e8}div.not-cont-block-b{float:left;width:298px}div.not-cont-block-b a.imagengrande img{border:5px solid #eae8e8}div.not-cont-block-b ul{margin:10px 0 10px 10px}div.not-cont-block-b ul li{margin:0 0 10px 10px;list-style-position:outside;list-style-image:url("/media/common/img/arrowbull.gif")}div.msg-create-alert{width:700px;float:left;border:1px solid #c2c2c2;background:#eae8e8 url("/media/common/img/alert-icon-generando.gif") 50% 10px no-repeat;padding-top:60px;padding-bottom:10px}div.msg-create-alert-error-icon{background:#eae8e8 url("/media/common/img/alert-icon-generando-error.gif") 50% 10px no-repeat}div.msg-create-alert h2{color:#383737;font-size:13px;text-align:center;font-weight:normal}div.patantes-group{float:left;width:100%;text-align:center;margin:25px 0 0 0}div.patente-group-item{width:141px;height:54px;display:inline-block;background:url("/media/common/img/bg-patente-group.gif") 0 0 no-repeat}div.patente-group-item.cl{width:202px;height:62px;background:url("/media/informe/img/patente_bg.png") 0 0 no-repeat}div.patente-group-item.cl div{font-size:28px;line-height:28px;margin:11px 0px 0 28px}div.patente-group-item.ar{width:190px;height:75px;background:url("/media/informe/img/patente_bg_ar.png") 0 0 no-repeat}div.patente-group-item.ar div{font-size:28px;line-height:28px;margin:30px 0px 0 24px}div.patente-group-item.co{width:200px;height:92px;background:url("/media/informe/img/patente_bg_co.png") 0 0 no-repeat}div.patente-group-item.co div{font-size:28px;line-height:28px;margin:37px 0px 0 45px}div.patente-group-item.cr{width:180px;height:88px;background:url("/media/informe/img/patente_bg_cr.png") 0 0 no-repeat}div.patente-group-item.mx{width:190px;height:75px;background:url("/media/informe/img/patente_bg_mx.png") 0 0 no-repeat}div.patente-group-item.mx div{font-size:28px;line-height:28px;margin:30px 0px 0 24px}div.patente-group-item.pe{width:194px;height:78px;background:url("/media/informe/img/patente_bg_pe.png") 0 0 no-repeat}div.patente-group-item.pe div{font-size:28px;line-height:28px;margin:31px 0px 0 41px}div.patente-group-aa,div.patente-group-bb,div.patente-group-cc{text-transform:uppercase;text-align:center;float:left;width:32px;margin-left:10px;font-size:18px;margin-top:12px}div.patente-group-bb{margin-left:13px}div.patente-group-cc{margin-left:13px}div.filete-cyan{float:left;height:42px;width:940px;background-color:#b8d3e2;line-height:42px;padding:0 10px;margin:23px 0;font-weight:normal;font-size:14px}div.key-op{width:66px;height:66px;display:block;background:url("/media/common/img/keys.gif") 0 0 no-repeat}div.ggrey{background:url("/media/common/img/keys.gif") -66px 0 no-repeat}div.omite{background:url("/media/common/img/keys.gif") -130px 0 no-repeat}div.op-bar{width:178px;height:21px;display:block;background:url("/media/common/img/porcentajes.png") 0 0 no-repeat;margin-top:15px}div.mf100{background:url("/media/common/img/porcentajes.png") 0 0 no-repeat}div.mf75{background:url("/media/common/img/porcentajes.png") 0 -21px no-repeat}div.mf50{background:url("/media/common/img/porcentajes.png") 0 -42px no-repeat}div.mf25{background:url("/media/common/img/porcentajes.png") 0 -63px no-repeat}div.op-bar-prom{text-align:center;display:block;font-size:48px;font-weight:bold;margin-top:10px}div.op-bar-desc{display:block;text-align:center;margin-top:10px}div.co2-bar{width:178px;height:21px;background:url("/media/common/img/porcentajes-co2.png") 0 0 no-repeat}div.co2-mf100{background:url("/media/common/img/porcentajes-co2.png") 0 0 no-repeat}div.co2-mf75{background:url("/media/common/img/porcentajes-co2.png") 0 -21px no-repeat}div.co2-mf50{background:url("/media/common/img/porcentajes-co2.png") 0 -42px no-repeat}div.co2-mf25{background:url("/media/common/img/porcentajes-co2.png") 0 -63px no-repeat}table.co2t tr td{padding:12px 0}div.stars-bar{width:138px;height:18px;background:url("/media/common/img/stars-euroncap.png") 0 0 no-repeat;color:#fff;text-align:left;padding:6px 0 0 6px}div.stars-mf5{background:url("/media/common/img/stars-euroncap.png") 0 0 no-repeat}div.stars-mf4{background:url("/media/common/img/stars-euroncap.png") 0 -24px no-repeat}div.stars-mf3{background:url("/media/common/img/stars-euroncap.png") 0 -48px no-repeat}div.stars-mf2{background:url("/media/common/img/stars-euroncap.png") 0 -72px no-repeat}div.stars-mf1{background:url("/media/common/img/stars-euroncap.png") 0 -97px no-repeat}div.sub-menu ul li a.new-inf{background-position:-2915px 0;width:177px}#logos_rotativos{width:1500px}#logos_rotativos div img{width:120px;margin-right:20px}.divBody{padding:20px 10px 0px 10px}div.title{font-size:20px;font-weight:bold;margin-bottom:10px}.subTitle{font-size:16px;font-weight:bold;margin-bottom:10px;margin-top:20px}.subTitle .number{float:left;width:30px}.subTitle .text{text-decoration:underline}.textoEntero{height:500px;padding:10px;overflow-y:scroll;overflow-x:hidden;border:1px solid}ul.lista1{list-style-type:disc;margin-bottom:12px;padding-left:40px}ul.lista1 li{list-style:inherit !important}ul.lista2{list-style-type:lower-alpha;margin-bottom:12px;padding-left:40px}ul.lista2 li{list-style:inherit !important}ul.lista3{list-style-type:lower-roman;margin-bottom:12px;padding-left:40px}ul.lista3 li{list-style:inherit !important}td.fixedTitle{width:1%;padding:0px 5px;min-height:35px;height:35px}td.fixedTD{padding:12px 5px;white-space:nowrap}td.fixedTD.nCnt{padding:0px 5px}.newContent{width:24px}.action{cursor:pointer}.fixed tr td{padding:12px 10px}.parte{float:left;margin:10px}.formU{border:2px solid #cecece;border-radius:8px;-webkit-border-radius:8px;padding:0px 5px;height:28px;color:#aaa9a9;background-color:#fff}select{border:2px solid #cecece !important}div.filtro{overflow:hidden;clear:both;padding:12px 15px}div.filtro .input{float:left;padding:2.3px 10px}div.filtro .input .dat{float:right}#datesNinjas{display:none}input{padding:2px 5px;border:1px solid #cecece;height:24px;border-radius:4px;color:#666}input[type=file]{padding:2px 5px;border:2px solid #cecece;height:29px;border-radius:4px;color:#666}div.verde,div.naranjo,div.amarillo,div.celeste,div.azul,div.rosado,div.rojo,div.cafe,div.gris{color:#fff;width:73px;height:24px;text-align:center;font-size:11px;font-weight:bold;line-height:24px}div.verde{background:url("/media/common/img/asignar-ok.png") 0 0 no-repeat}div.naranjo{background:url("/media/common/img/asignar-ok.png") 0 -24px no-repeat}div.amarillo{background:url("/media/common/img/asignar-ok.png") 0 -48px no-repeat;color:#666}div.celeste{background:url("/media/common/img/asignar-ok.png") 0 -72px no-repeat}div.azul{background:url("/media/common/img/asignar-ok.png") 0 -96px no-repeat}div.rosado{background:url("/media/common/img/asignar-ok.png") 0 -120px no-repeat}div.rojo{background:url("/media/common/img/asignar-ok.png") 0 -144px no-repeat}div.cafe{background:url("/media/common/img/asignar-ok.png") 0 -168px no-repeat}div.gris{background:url("/media/common/img/asignar-ok.png") 0 -192px no-repeat;color:#666}.closeButton{opacity:0.6;cursor:pointer}.closeButton:hover{opacity:1}.fixOrder.year{width:7%}.fixOrder .textOr{float:left}.fixOrder .linkOr{float:right}.closeButton{opacity:0.6;cursor:pointer}.closeButton:hover{opacity:1}.progress{position:relative;border:1px solid #ddd;padding:1px;border-radius:3px;margin:10px 15%}.bar{background-color:#b4f5b4;width:0%;height:20px;border-radius:3px}.percent{position:absolute;display:inline-block;top:3px;left:48%}.previewAjaxTable{border-collapse:collapse;width:80%;margin:0 10%}.previewAjaxTable tr td{padding:3px 10px;border:1px solid #808080}a.link-ex{margin:20px auto 24px auto;width:240px;height:37px;display:block;font-size:14px;font-weight:700;text-align:center;line-height:37px;color:#fff;background:url("/media/common/img/btn-ver.png") 0 0 repeat-x;clear:both}a.link-exV2{margin:20px auto 24px auto;width:350px;height:54px;display:block;font-size:20px;font-weight:700;text-align:center;line-height:54px;color:#fff;background:url("/media/common/img/btn-ver-V2.png") 0 0 repeat-x;clear:both}input.link-ex-a{margin:24px auto 24px 33px !important;width:232px;height:38px;display:block;font-size:14px;font-weight:700;text-align:center;line-height:37px;color:#fff;background:url("/media/common/img/bnt-sub.png") 0 0 repeat-x;clear:both;cursor:pointer}input.link-ex-b{margin:auto !important;width:280px;padding:0 15px;height:38px;display:block;font-size:14px;font-weight:700;text-align:center;line-height:37px;color:#fff;background:url("/media/common/img/bnt-sub-fracaso.png") 0 0 repeat-x;clear:both;cursor:pointer}div.calugaIE{cursor:default;border:3px solid #d7d705;position:fixed;background-color:#faebd7;right:3%;bottom:3%;width:17%;padding:1% 1%;font-size:18px;text-align:center;border-radius:10px}div.calugaIE > img.close{position:absolute;top:7px;right:8px;cursor:pointer;opacity:0.6;filter:alpha(opacity=60)}div.calugaIE > img.close:hover{opacity:1;filter:alpha(opacity=100)}div.calugaIE > img.arrow{position:absolute;bottom:-22px;left:15%}
div.tip{width:100%;overflow:hidden;display:block;margin:15px}div.tip-point{width:30px;height:18px;background:url("/media/common/img/tip-point.png") 0 0 no-repeat;display:block;margin-left:15px;margin-bottom:-2px;position:relative;z-index:2}div.tip-cont{width:96.5%;border:1px dashed #b7b7b7;background-color:#fdfbe6;display:block;overflow:hidden}div.tip-item{overflow:hidden;padding:10px !important}span.tip-ico{float:left;width:29px;height:29px;margin:2px 15px 0 0;background:url("/media/common/img/tip-icon.png") 0 0 no-repeat}span.tip-ico-aa{background:url("/media/common/img/tip-icon.png") 0 -87px no-repeat}span.tip-ico-bb{background:url("/media/common/img/tip-icon.png") 0 0 no-repeat}span.tip-ico-cc{background:url("/media/common/img/tip-icon.png") 0 -29px no-repeat}span.tip-ico-dd{background:url("/media/common/img/tip-icon.png") 0 -58px no-repeat}span.tip-txt{line-height:20px}input.ljkdsd{padding:2px 5px !important;border:1px solid #cecece;height:24px;border-radius:4px;color:#666}.estLimpieza{border:1px solid #ccc;background-color:#eee;margin-top:10px}.estLimpieza .title{padding:15px 15px !important;border-bottom:1px solid #ccc;margin:0 10px;font-weight:bold;font-size:15px}.estLimpieza table{width:98%;margin:0 auto;border:1px solid #ccc;margin-bottom:10px}.estLimpieza table tr.title{background-color:#1e3c5a;color:#fff;font-weight:bold;font-size:inherit}.estLimpieza table tr.whtBkg{background-color:#fff}.estLimpieza table tr.total{font-weight:bold;font-size:110%}.estLimpieza table td.center{text-align:center}.estLimpieza table td.bckBrd{border-bottom:1px solid #ccc}.flotantePrev{position:fixed;background-color:#f1f1f2;color:#383737;padding:15px 10px !important;z-index:100;top:50%;left:50%;margin-top:-35px;margin-left:-114px}.formLine{clear:both;padding:5px !important}.formLine .text{float:left;width:20%;line-height:24px}.formLine .inpt{margin-left:20%}span.error{margin-left:21%}span.error p{margin:0px}table.mini-table tr td{padding:7px 8px !important !important}.p-patenteV2{background:url("/media/common/img/patente_bgV2.png") no-repeat scroll 0 0 transparent;color:#7b7b7b;font-size:22px;height:47px;text-shadow:-1px -1px #fff;text-transform:uppercase;width:131px;padding-top:8px !important}.p1V2{width:35px;text-align:center;margin-right:8px;margin-left:3px;float:left}.p2V2{width:35px;text-align:center;float:left;margin-left:3px;margin-right:8px}.p3V2{width:35px;text-align:center;float:left;margin-left:0px}.p-patenteMX{background:url("/media/common/img/patente_bg_MX.png") no-repeat scroll 0 0 transparent;color:#7b7b7b;font-size:22px;height:47px;text-shadow:-1px -1px #fff;text-transform:uppercase;width:131px;padding-top:8px !important;letter-spacing:3px}div.informacionV2{background:url("/media/common/img/info.png") 0 0 no-repeat;width:27px;height:25px;cursor:pointer;float:right;margin-left:6px}div.flotante-infoV2{float:left;height:100%;position:relative;top:25px;left:-124px;width:278px;z-index:100}div.flotante-infoV2 div.cont-float-infoV2{float:left;width:252px;background-color:#f2f2f3;padding:0px 12px 5px !important;border:1px solid #d0d0d1;border-top:none;padding:12px !important}div.flotante-infoV2 h1{margin-bottom:5px}.newDivSummary{overflow:hidden;border:1px solid #c2c2c2}.newDivSummary .divInfoSummary{width:35.5%;float:left}.newDivSummary .newSummaryTitle{border-bottom:1px solid #c2c2c2;background-color:#b7d3e1;padding:12px 15px !important;overflow:hidden}.newDivSummary .newSummaryTitle.left{border-right:1px solid #fff}.newDivSummary .newSummaryTitle .text{float:left;font-size:14px;font-weight:bold}.newDivSummary .newSummaryTitle .ping{float:right;margin:-10px 15px 0 0}.newDivSummary .infoContent{padding:15px 15px !important;border-right:1px solid #c2c2c2}.newDivSummary .infoContent .infoContainer{border:1px solid #c2c2c2}.newDivSummary .infoContent .infoContainer .infoDetail{overflow:hidden;padding:10px 8px !important}.newDivSummary .infoContent .infoContainer .infoDetail .text{float:left;width:56%}.newDivSummary .infoContent .infoContainer .infoDetail .value{margin-left:56%}.newDivSummary .divInfoInfo{margin-left:35.5%}.newDivSummary .divInfoInfo .newSummary{overflow:hidden;padding:15px !important}.newDivSummary .divInfoInfo .newSummary .summary{border:1px solid #c2c2c2;width:49%;float:left;margin:1px}.newDivSummary .divInfoInfo .newSummary .summary:hover{background-color:#eee}.newDivSummary .divInfoInfo .newSummary .summary .content{padding:5px 10px 0px 10px !important;margin-bottom:5px;text-align:left;height:50px;font-weight:bold}.newDivSummary .divInfoInfo .newSummary .summary .content a span{float:left}.newDivSummary .divInfoInfo .newSummary .summary .content a div{height:50px;margin-left:54px;vertical-align:middle}textarea.trans{height:50px}input.trans,textarea.trans,select.trans{display:inline-block;width:210px;border:1px solid #ccc;border-radius:3px;outline:none;padding:4px !important;transition:all 0.25s ease-in-out;-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out}input.trans:focus,textarea.trans:focus,select.trans:focus{box-shadow:0 0 7px #39d213;-webkit-box-shadow:0 0 7px #39d213;-moz-box-shadow:0 0 7px #39d213}input.camouflage{border:0px;background-color:transparent}.formulary{overflow:hidden}.formulary .title{font-size:16px;font-weight:bold;border-bottom:1px solid #808080;padding:10px 15px !important}.formulary .section{padding:10px !important}.formulary .section .line{padding:5px !important;border-radius:3px}.formulary .section .line:hover{background:rgba(220,220,220,0.6)}.formulary .section .line .txt{float:left;width:30%;line-height:25px}.formulary .section .line .npt{margin-left:30%}.formulary .section .line .npt .expl{color:#aaa;font-size:11px}.formulary .separator{height:1px;background-color:#ccc;margin:0 auto;width:97%;clear:both}.formulary .botonera{overflow:hidden;padding:20px 0px !important}.personSection{background:url("/media/common/img/icons/trans-Disabled.png") 95% 10% no-repeat}.factorySection{background:url("/media/common/img/icons/trans-factory.png") 95% 10% no-repeat}.carSection{background:url("/media/common/img/icons/trans-cars_icon.png") 95% 10% no-repeat}.soldSection{background:url("/media/common/img/icons/trans-car_keys_icon.png") 95% 10% no-repeat}.requiredInfo{margin-top:10px;color:#808080;font-size:10px}.requiredInfo .item{padding:3px 5px !important}.requiredInfo .item .concept{float:left;margin-right:5px}#namePers{width:350px}#cityPers{width:150px}#comuPers{width:150px}#addrPers{width:450px}#runPers{width:90px}#counPers{width:150px}#nameFact{width:350px;color:#808080}#cityFact{width:150px;color:#808080}#comuFact{width:150px;color:#808080}#addrFact{width:450px;color:#808080}#runFact{width:90px;color:#808080}#counFact{width:150px}#factFact{width:400px;color:#808080}#typeVehi{width:250px;color:#808080}#marcVehi{width:250px;color:#808080}#modeVehi{width:350px;color:#808080}#yearVehi{width:70px;color:#808080}#coloVehi{width:250px;color:#808080}#motoVehi{width:170px;color:#808080}#chasVehi{width:170px;color:#808080}#pateVehi{width:70px;color:#808080}#kiloVehi{width:100px}#pricSold{width:120px}#typeSold{color:#000}#commSold{width:70%;background:#fff}#commTran{width:80%;background:#fff}div.box-light{background-color:#000;opacity:0.7;z-index:90;display:block;height:100%;left:0;position:fixed;top:0;width:100%;filter:alpha(opacity=70);-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"}
.inputLupa{position:relative;height:108px;width:495px;margin:0 auto}.inputLupa .input{width:487px;position:absolute;left:0;z-index:1}.inputLupa .input .top{width:487px;height:28px;background:url("/media/common/img/lupa2.0/Lupa-Top.png")}.inputLupa .input .mid{width:487px;height:52px;background:url("/media/common/img/lupa2.0/Lupa-Mid.png")}.inputLupa .input .mid input{height:60%;margin-top:10px;margin-left:35px;width:78%;color:#aaa9a9;font-size:18px;border:0px}.inputLupa .input .bot{width:487px;height:28px;background:url("/media/common/img/lupa2.0/Lupa-Bot.png")}.inputLupa .button{width:68px;position:absolute;right:0px;z-index:2}.inputLupa .button .lupa{width:68px;height:108px;background:url("/media/common/img/lupa2.0/Lupa-Lup.png")}.inputLupa .button .lupa input{width:90%;border:0;margin-top:28px;height:52px;cursor:pointer;background:url("/media/common/img/lupa2.0/Lupa-Lup.png") 0px -28px}.inputLupa .button .lupa input:hover{background:url("/media/common/img/lupa2.0/Lupa-Lup-hover.png") 0px -28px}.inputLupaInt{position:relative;height:83px;width:465px;margin:0 auto}.inputLupaInt .input{width:458px;position:absolute;left:0;z-index:1}.inputLupaInt .input .top{width:458px;height:19px;background:url("/media/common/img/lupa2.0/lupaInterior_top.png")}.inputLupaInt .input .mid{width:458px;height:43px;background:url("/media/common/img/lupa2.0/lupaInterior_mid.png")}.inputLupaInt .input .mid input{height:60%;margin-top:8px;margin-left:35px;width:78%;color:#aaa9a9;font-size:18px;border:0px}.inputLupaInt .input .bot{width:458px;height:21px;background:url("/media/common/img/lupa2.0/lupaInterior_bot.png")}.inputLupaInt .button{width:59px;position:absolute;right:0px;z-index:2}.inputLupaInt .button .lupa{width:59px;height:83px;background:url("/media/common/img/lupa2.0/lupaInterior_lup.png")}.inputLupaInt .button .lupa input{width:88%;border:0;margin-top:19px;height:44px;cursor:pointer;background:url("/media/common/img/lupa2.0/lupaInterior_lup.png") 0px -19px}.inputLupaInt .button .lupa input:hover{background:url("/media/common/img/lupa2.0/lupaInterior_lup-hover.png") 0px -19px}.deleteOption{float:right;display:none;cursor:pointer;z-index:20}.select2-results li{z-index:10}.select2-results .select2-result-label{cursor:default}.formNew .titleNew{margin:15px 0 10px 0;font-weight:bold;font-size:15px;border-bottom:1px solid #000}.formNew .datos{padding:0 10px}.linea{overflow:hidden;padding:5px}.linea .texto{float:left;width:30%}.linea .input{margin-left:31%}.clean{clear:both}.disabled{color:#bbb;background-color:#ddd;border:1px solid}.waiting{background-color:#eee;border:1px solid #aaa}.ninja{display:none}.popUpCatchap{width:650px !important;position:fixed !important;left:0;right:0;margin-left:auto;margin-right:auto;padding:0px !important;background-color:#f1f1f2 !important;border-radius:3px}.popUpCatchap .popUpTitle{padding:5px 0px;overflow:hidden;clear:both;margin-bottom:5px}.popUpCatchap .popUpTitle .texto{float:left;padding:2px 15px;font-weight:bold;font-size:16px}.popUpCatchap .popUpTitle .close{float:right;padding:4px 10px}.popUpCatchap .popUpTitle .close .closeExam{opacity:0.4;filter:alpha(opacity=40);cursor:pointer;cursor:pointer}.popUpCatchap .popUpTitle .close .closeExam:hover{opacity:1;filter:alpha(opacity=100)}.popUpCatchap .subPanel{clear:both;padding-top:10px}.popUpCatchap .subPanel .buttonPanel{border-top:1px solid #ccc;padding:10px 15px;overflow:hidden}.popUpCatchap .subPanel .buttonPanel .buttonPop{float:right;border:1px solid #bbb;padding:6px 12px;margin-left:5px;cursor:pointer;background-color:#eee;border-radius:3px}.popUpCatchap .subPanel .buttonPanel .buttonPop:hover{background-color:#ffe4b5;border-color:#808080;font-weight:bold}.popUpCatchap .popUpContent{padding:5px 15px 10px 15px}.tableErr{overflow:hidden;width:100%;border:1px solid #bbb}.tableErr .trErr{overflow:hidden}.tableErr .trErr .tdErr{float:left;padding:12px 10px}.tableErr .trErr .tdErr.title{font-weight:bold;background-color:#1e3c5a;color:#fff}.tableErr .trErr .tdErr.fst{width:25%}.tableErr .trErr .tdErr.snd{width:35%}.tableErr .trErr .tdErr.trd{width:30%}.tableErr .trErr .tdErr.see{padding:4px 10px}p{margin-bottom:8px}
div#slider { height: 88px !important; }
@import "https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap";footer{margin:auto;width:100%;height:auto;background:#444;background:linear-gradient(to bottom, #444 0%, #515151 100%);padding-top:20px;position:relative;font-size:11px;color:#fff;bottom:0 !important;clear:both}footer a{color:#fff !important}#floating_tabs{position:fixed;top:23%;right:0;z-index:10000;display:block}.limpieza_tab{max-width:41px;margin-top:0.5em;background-color:#004cc6;cursor:pointer;padding:0px;-ms-writing-mode:tb-lr;writing-mode:vertical-lr}.limpieza_tab .limpieza_tab_inner{padding:4px 13px}.floating_tabs_inner_text{font-size:16px;font-weight:700;color:#fff !important;border:1px solid #fff;border-right:none;text-decoration:none !important;padding:20px 12px 20px 8px;font-family:"Raleway", sans-serif}#help_tab{max-width:41px;border-color:#ffa500 !important;background-color:#ffa500;cursor:pointer;cursor:pointer;padding:0px;-ms-writing-mode:tb-lr;writing-mode:vertical-lr}#help_tab .help_tab_inner{padding:4px 13px}#help_tab img{display:block}.form-help{background-color:#fff;margin:1em;padding-top:1em;padding-bottom:1em;border-radius:1em}.form-help input,.form-help textarea{background-color:#f6f6f6 !important}.text-emergency{display:inline-block;vertical-align:middle;float:none}.telephone-text{colorblack: !important}.btn-help{color:#1f6a92;font-weight:bold;float:right}.faq-link-text{color:#375e80;font-weight:bold;font-size:12px}.systemAlert{margin-bottom:5px;min-height:60px;padding-left:30px;padding-right:30px;padding-top:14px}.systemAlert i.fa{margin-top:2px !important;display:block;float:left;margin:10px}
.title a{color:#fff;text-decoration:none}.boton .s{width:40px !important;height:25px !important}.boton a{height:29px !important}.formNewMasive .formContent .ask .forPadding .input{padding:10px 10px !important}.formPerfil .formForm .formData .line .inpt input{height:30px !important}:root input[type="checkbox"].ios-switch:checked + div{width:3em !important}