.left { float:left!important; text-align:left; }
.right { float:right!important; text-align:right; }

#contenedor		{ width: 990px; margin: auto; position: relative; background: #F8FCFF;}
#cabecera 		{ height: 125px; position: relative; background: url(../images/cabecera.jpg) repeat-x; }

a#to_top {
    background:url("../images/top_bg.png") repeat-x 0 0;
    border:1px solid #CCC;
    color:#333333;
    font:bold 13px Arial,Sans-serif;
    padding:6px 10px;
    text-align:center;
    text-decoration:none;
    bottom:8px;
    position:fixed;
    right:8px;
    text-shadow:0 1px 0 #FFF;
    border-radius:5px;
    -webkit-border-radius:5px;
    -ms-border-radius:5px;
}

a#to_top:hover {
    background-position:0 -36px;
    border:1px solid #C2ECF7;
    color:#000;
    display:block;
}

/* ------------- MENU ------------ */

#menu{
	margin: 0;
    line-height:20px;
	list-style: none;
	/* background: #edc59b;
	background: -moz-linear-gradient(#edc59b, #dc8c37);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #dc8c37),color-stop(1, #edc59b));
	background: -webkit-linear-gradient(#edc59b, #dc8c37);
	background: -o-linear-gradient(#edc59b, #dc8c37);
	background: -ms-linear-gradient(#edc59b, #dc8c37);
	background: linear-gradient(#edc59b, #dc8c37); */
	-moz-border-radius: 50px;
	border-radius: 8px;
    padding-left: 0;
}

#menu li{
	float: left;
	height: 20px;
	padding: 0 0 10px 0;
	position: relative;
}

#menu a{
	float: left;
	padding: 0 12px;
	color: #FFF;
	text-transform: uppercase;
	font: bold 12px/25px Arial, Helvetica;
	text-decoration: none;
}

#menu li:hover > a{
	background:#0186ba;
    -moz-border-radius: 50px;
	border-radius: 8px;
    text-shadow: #dcf1fc 1px 1px 5px;
}

*html #menu li a:hover{ /* IE6 */
	color: #7d4202;
}

#menu li:hover > ul{
	display: block;
}

/* Sub-menu */

#menu ul{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 99999;
    background: #dcf1fc;
    background: -moz-linear-gradient(#dcf1fc, #dcf1fc);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #dcf1fc),color-stop(1, #dcf1fc));
    background: -webkit-linear-gradient(#dcf1fc, #dcf1fc);    
    background: -o-linear-gradient(#dcf1fc, #dcf1fc);	
    background: -ms-linear-gradient(#dcf1fc, #dcf1fc);	
    background: linear-gradient(#dcf1fc, #dcf1fc);
    -moz-box-shadow: 0 0 2px rgba(255,255,255,.5);
    -webkit-box-shadow: 0 0 2px rgba(255,255,255,.5);
    box-shadow: 0 0 2px rgba(255,255,255,.5);	
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-shadow: none;
}

#menu ul ul{
    top: 0;
    left: 150px;
}

#menu ul li{
    float: none;
    margin: 0;
    padding: 0;
    height: auto;
    display: block;
    -moz-box-shadow: 0 1px 0 #0186ba, 0 1px 0 #0186ba;
    -webkit-box-shadow: 0 1px 0 #0186ba, 0 1px 0 #0186ba;
    box-shadow: 0 1px 0 #0186ba, 0 1px 0 #0186ba;
}

#menu ul li:last-child{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}

#menu ul a{    
    padding: 10px;
	height: 10px;
	min-width: 130px;
    color:#178ABB;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
	text-transform: none;
}

*html #menu ul a{ /* IE6 */
	height: 10px;
}

*:first-child+html #menu ul a{ /* IE7 */
	height: 10px;
}

#menu ul a:hover{
    color:#FFF;
    -moz-border-radius: 0;
	border-radius: 0;
    text-shadow: none;
    background: #0186ba;
	background: -moz-linear-gradient(#04acec,  #0186ba);	
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
	background: -webkit-linear-gradient(#04acec,  #0186ba);
	background: -o-linear-gradient(#04acec,  #0186ba);
	background: -ms-linear-gradient(#04acec,  #0186ba);
	background: linear-gradient(#04acec,  #0186ba);
}

#menu ul li:first-child > a{
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#menu ul li:first-child > a:after{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #dcf1fc;
}

#menu ul ul li:first-child a:after{
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-left: 0;	
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-right: 8px solid #dcf1fc;
}

#menu ul li:first-child a:hover:after{
    border-bottom-color: #04acec; 
}

#menu ul ul li:first-child a:hover:after{
    border-right-color: #04acec; 
    border-bottom-color: transparent; 	
}


#menu ul li:last-child > a{
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

/* Clear floated elements */
#menu:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */


/* ------------- FIN MENU ------------ */
/*#cabecera ul#menu {
	display: table;
	margin: 0px auto;
	padding: 0px;
	list-style: none;
    line-height: 30px;
    font-size: 14px;
    color: #FFFFFF;
}

#cabecera ul#menu > li{
	float: left;
    padding-right: 15px;        
}
#cabecera li a {
	display: block;
	color: #FFFFFF;
	padding: 0 4px;
	margin: 3px;
	height:25px;
	line-height:25px;
	cursor:pointer;
	text-decoration:none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#cabecera li.parent:hover{
	background-color: #000000;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
#cabecera li a:hover, #cabecera li.active > a{
	background-color: #0186ba;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#cabecera li#current > a{
	background-color: #E67B1C !important;
}
#cabecera li.parent ul{
	visibility: hidden;
	width: 200px;
	z-index: 1;
	position: absolute;
	background-color: #000000;
	padding: 0px;
	-webkit-border-radius: 10px;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius: 10px;
	-moz-border-radius-topleft: 0;
	border-radius: 10px;
	border-top-left-radius: 0;
}
#cabecera li:hover > ul{
	visibility: visible;
}
*/

.caja_left, .caja_right { border: 1px solid #BDBDBD; font-size:12px; }
.caja_left  { float:left; width:648px; margin: 0 0 5px 5px; }
.caja_right { float:right; width:323px; margin: 0 5px 5px 0; }

.caja {
    padding: 5px;
    min-height: 300px;
}

.caja_lateral {
    float: left;
    width: 180px;
}

.caja_cuerpo {
    float: right;
    width: 795px;
}

.caja_cuerpo .caja_mitad_left,
.caja_cuerpo .caja_mitad_right {
    width: 395px;
    margin: 0 0 5px 0px;
    border-bottom: 1px solid #DCE6EF;
    overflow: hidden;
}

.caja_cuerpo .caja_mitad_left {
    float: left
}

.caja_cuerpo .caja_mitad_right {
    float: right
}

#footer { background: #9bbfd9 url(../images/footer_top.jpg) repeat-x; padding: 40px 10px 10px 10px; text-align:center; font-size:10pt; clear:both;}
#footer p { margin: 2px 0px; }
#footer p a { color: #266baf; 	font-weight: bold; }
#footer #separador { margin: 2px auto; background: url(../images/footer_separador.gif) no-repeat; height: 2px; }

#logotipo {
	position: absolute;
	z-index:90;
	left: 0px;
	top: 0px;
}
#logotipo a {
	background: url(../images/logotipo.jpg) no-repeat;
	height: 115px;
	width: 240px;
	display: block;
}
#logotipo span {
	display: none;
}


/* elementos de la página */
.topic_a, .topic_n{
    background:#4b9fc9 url('../images/header_bg.gif') repeat-x left top;
    background-size: 100% 100%;
    min-height: 30px;
    line-height: 30px;
    color: #FFFFFF;
    font-size:16px;
    font-weight: bold;
    text-shadow:0 1px 4px #083E66;
    padding: 0 10px;
}
.topic_a a, .topic_n a{color: #FFFFFF;}
.topic_a .uk-float-right{
    min-height: 30px;
    line-height: 30px;
    margin: 0;
}

#seleccion_provincia{
    display:block;
    float:right;
    top:0;
    color:#FFF;
    width:150px;
    line-height:30px;
    border-radius: 5px 0 0 5px;
}
#seleccion_provincia.up{
    background: #032B5B url('../images/flecha_provincias_up.png') no-repeat 8px;
}
#seleccion_provincia.down{
    background: #032B5B url('../images/flecha_provincias_down.png') no-repeat 8px
}
#seleccion_provincia a{
    padding: 0 0 0 30px;
    color:#FFF;
}
#seleccion_provincia a:hover{
    text-decoration:underline;
}


/****************************************
			Iconos sociales
****************************************/
#social {height: 84px; padding: 34px 0; text-align: center;}
#social img.icono {width: 64px; height: 64px; margin: 10px;}
/****************************************
			Inicio Buscador
****************************************/
#buscador{ position: absolute; top: 40px; right: 25px; color:#FFF; }
#buscador a{ color: #FFFFFF; }
#buscador #campo_buscar {
    float: left;
	width: 250px;
	height: 40px;
    padding: 0 10px;
    font-weight: 700;
	color: #b0b0b0;
	border: 2px #1682C4 solid;
    -webkit-border-radius: 8px;
	border-radius: 8px;
}

#buscador #boton_buscar{
    float: left;
    margin-left: 5px;
	width: 44px;
	height: 44px;
    background: url("../images/search.png") no-repeat 0 0;
    cursor: pointer;
    border:0;
}

#boton_buscar:hover{ background-position: 0 -44px; }



#gmaps {
	width: 540px;
	height: 398px;
	border: solid 1px #808080;
}

.recuadro{
	overflow:hidden;
	margin-bottom: 5px;
}
.naranja{
	border:1px solid #eBB029;
}
.naranja .titulo{
	background:#FFFFFF url(../images/empresas_h3.gif) repeat-x left top;
}
.azul{
	border:1px solid #266BAF;
}
.azul .titulo{
	background:#E4ECF5 url(../images/azul_h3.gif) repeat-x left top;
}
.recuadro .titulo {
		padding:0 3px;
}
.recuadro .titulo{
	height: 19px;
	line-height:19px;
	color: #FFF;
	font-weight:bold;
}
.recuadro .cuerpo{
	padding: 5px;
}

/****************************************
		  Formulario registro
 http://jquery.bassistance.de/validate/demo/milk
****************************************/
.form_validate{margin:0;padding:0;}

.form_validate fieldset{margin:1em 0;border:none;}

.form_validate legend{margin:1em 0;padding:0 .5em;color:#036;background:transparent;font-size:1em;font-weight:bold;}

.form_validate .label{float:left; width:170px; padding:0 10px; text-align:right; line-height: 20px; height: 20px;}

.form_validate fieldset div{margin-bottom:10px; padding:0;}

.form_validate input[type="text"],
.form_validate input[type="password"],
.form_validate textarea{
    width: 150px;
    border-top: 1px solid #555;
    border-left: 1px solid #555;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 1px;
    color: #333;
    height: 16px;
    line-height: 16px;
}

.form_validate input:focus,textarea:focus{ background:#efefef; color:#000;}

.form_validate label.error {
  margin-left:10px;
  background:url("../images/incorrecto.gif") no-repeat 0px 0px;
  padding-left: 20px;
  padding-bottom: 2px;
  font-weight: bold;
  color: #EA5200;
}

.form_validate label.checked {
  background:url("../images/correcto.gif") no-repeat 0px 0px;
}

.form_validate .success_msg {
  font-weight: bold;
  color: #0060BF;
  margin-left: 19px;
}

.form_validate .status {
  padding-top: 2px;
  padding-left: 8px;
  vertical-align: top;
  width: 150px;
  white-space: nowrap;
}

.form_validate #lsignupsubmit {
  visibility: hidden;
}

.contratado{
	font-weight:bold;
	font-family:Tahoma;
	font-size:11px;
	color:#009900;
}

.nocontratado{
	font-weight:bold;
	font-family:Tahoma;
	font-size:11px;
	color:#CE0000;
}


/****************************************
		  Boxy Alerts
****************************************/
.boxy-wrapper { position: absolute; }
.boxy-wrapper.fixed { position: fixed; }

/* Modal */

.boxy-modal-blackout { position: absolute; background-color:black; left: 0; top: 0; }

/* Border */

.boxy-wrapper { empty-cells: show; }
.boxy-wrapper .boxy-top-left,
.boxy-wrapper .boxy-top-right,
.boxy-wrapper .boxy-bottom-right,
.boxy-wrapper .boxy-bottom-left { width: 10px; height: 10px; padding: 0 }

:root .boxy-wrapper .boxy-top-left { background: url('../images/boxy-nw.png'); }
:root .boxy-wrapper .boxy-top-right { background: url('../images/boxy-ne.png'); }
:root .boxy-wrapper .boxy-bottom-right { background: url('../images/boxy-se.png'); }
:root .boxy-wrapper .boxy-bottom-left { background: url('../images/boxy-sw.png'); }

/* IE6-8 hacks for the border. IE7+8 should support this natively but fails in conjuction with modal blackout bg. */
/* NB: these must be absolute paths or URLs to your images */
.boxy-wrapper .boxy-top-left {
	#filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/boxy-nw.png');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/boxy-nw.png')";
}
.boxy-wrapper .boxy-top-right {
	#filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/boxy-ne.png');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/boxy-ne.png')";
}
.boxy-wrapper .boxy-bottom-right {
	#filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/boxy-se.png');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/boxy-se.png')";
}
.boxy-wrapper .boxy-bottom-left {
	#filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/boxy-sw.png');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/boxy-sw.png')";
}

.boxy-wrapper .boxy-top,
.boxy-wrapper .boxy-bottom { height: 10px; background-color:black; opacity: 0.6; filter: alpha(opacity=60); padding: 0 }

.boxy-wrapper .boxy-left,
.boxy-wrapper .boxy-right { width: 10px; background-color:black; opacity: 0.6; filter: alpha(opacity=60); padding: 0 }

/* Title bar */

.boxy-wrapper .title-bar { background-color: #ecb02b; padding: 6px; position: relative; }
  .boxy-wrapper .title-bar.dragging { cursor: move; }
	.boxy-wrapper .title-bar h2 { font-size: 12px; color: white; line-height: 1; margin: 0; padding: 0; font-weight: normal; }
	.boxy-wrapper .title-bar .close { color: white; position: absolute; top: 6px; right: 6px; font-size: 90%; line-height: 1; }
	
/* Content Region */

.boxy-inner { overflow: hidden; background-color: white; padding: 0; }
.boxy-content { padding: 15px; }

/* Question Boxes */

.boxy-wrapper .question { width: 350px; min-height: 80px; }
.boxy-wrapper .answers { text-align: right; }




/****************************************
		Formulario cambia pass
****************************************/
/*.form_gen{margin:0;padding:0;}
.form_gen fieldset{margin:1em 0;border:none;}
.form_gen legend{margin:1em 0;padding:0 .5em;color:#036;background:transparent;font-size:1.3em;font-weight:bold;}
.form_gen label{float:left;width:150px;padding:0 1em;text-align:right;}
.form_gen fieldset div{margin-bottom:.5em;padding:0;display:block;}
.form_gen fieldset div input,fieldset div textarea{width:150px;border-top:1px solid #555;border-left:1px solid #555;border-bottom:1px solid #ccc;border-right:1px solid #ccc;padding:1px;color:#333;}
.form_gen fieldset div select{padding:1px;}
.form_gen div.fm_multi div{margin:5px 0;}
.form_gen div.fm_multi input{width:1em;}
.form_gen div.fm_multi label{display:block;width:300px;padding-left:5em;text-align:left;}
.fm_submit{clear:both; margin-left:177px;}
#fm_submit input{border:1px solid #000000;padding:2px 1em;background:#003366;color:#fff;font-size:100%;cursor:pointer;}
#fm_submit input:hover{border:1px solid #000000;padding:2px 1em;background:#004080;color:#fff;font-size:100%;cursor:pointer;}
.form_gen input:focus,textarea:focus{background:#efefef;color:#000;}
.form_gen fieldset div.fm_req{font-weight:bold;}
.form_gen fieldset div.fm_req label:after{content:"* ";}
.form_gen #container{margin:5px auto;padding:1em;width:673px;text-align:left;border:solid 1px #DDDDDD;clear:both;}*/


/* mensajes */
/*
#system-message ul.info,#system-message ul.success { color: #000; background: #C3D2E5 url(../images/notice-info.png) 4px top no-repeat; border-top: 3px solid #74AAE0; border-bottom: 3px solid #74AAE0;}
#system-message ul.error { color: #c00; background: #E6C0C0 url(../images/notice-alert.png) 4px top no-repeat; border-top: 3px solid #DE7A7B; border-bottom: 3px solid #DE7A7B;}
#system-message ul.aviso { color: #c00; background: #EFE7B8 url(../images/notice-note.png) 4px top no-repeat; border-top: 3px solid #F0DC7E; border-bottom: 3px solid #F0DC7E;}
#system-message .titulo{display:none}
#system-message ul{list-style-type:none; min-height: 25px; padding-top: 5px; margin-bottom: 5px; padding-left: 35px; }
*/
.system-message ul {
    list-style-type: none;
    padding: 10px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid #fbeed5;
    /*-webkit-border-radius: 4px;*/
    /*-moz-border-radius: 4px;*/
    /*border-radius: 4px;*/
    text-align: justify;
    margin: 0;
}
.system-message ul.aviso   { color: #c09853; background-color: #fcf8e3; border-color: #fbeed5; }
.system-message ul.success { color: #468847; background-color: #dff0d8; border-color: #d6e9c6; }
.system-message ul.error   { color: #b94a48; background-color: #f2dede; border-color: #eed3d7; }
.system-message ul.info    { color: #3a87ad; background-color: #d9edf7; border-color: #bce8f1; }

/* depuración */
.debug{ clear: both; margin:5px 0px; padding:5px; background-color:#EEEEEE; text-align:left; }
.debug p{background-color:#FFFFFF; margin: 2px 0px 2px 0px; }
.debug p:hover{ font-weight: bolder; }
.debug .contador{ border-bottom: 1px solid #FF0000; padding-bottom: 2px; }
.debug .contador::before{ content: "Número de registros: "; }

.clearboth { clear: both; }

ins.adsbygoogle{
    background: transparent;
}