/*

  * Los colores, bordes, tamaï¿½os de letra o imagenes de fondo (cosas de adorno, vaya) van en paleta_colores.css .
	  > ExcepciÃ³n: los colores por defecto de bordes, fondo, etc... en componentes comunes (lo que siempre vayamos 
		a usar en todas las aplicaciones) puede ir aqui; si es necesario cambiar un color de algo para una aplicaciÃ³n 
		en concreto se cambiarÃ¡ en paleta_colores.css con una regla un poco mas fuerte (aï¿½adir "html " delante de 
		la regla, por ejemplo).
  * Los altos y tamaï¿½os de fuente de algunos elementos principales (el root element, por ejemplo) va aqui. Todo lo 
	demas, vease la norma anterior; si no es una regla CSS que se va a usar en todas las aplicaciones, no va aqui.
  * Los anchos de borde (que van en paleta_colores.css) van en pixels, y es la unica medida que aun se debe hacer en px. 
    Todo lo demas, rem o %, excepto...
  * No definais anchos de nada a menos que sepais lo que haceis; usad las clases de bootstrap y la rejilla mientras 
	sea posible, pues esas se adaptaran a responsive (y los anchos en pixels, generalmente, no). Si no hay mas remedio, 
	definid con % los anchos, % o rem los altos salvo 
	  > Excepciï¿½n: si son objetos flotantes con un tamaï¿½o fijo y sin nada alrededor que se vea afectado por su tamaï¿½o
		(form de login, contenido modal, popovers...) se podria poner el ancho/alto en pixels, si bien recomiendo que
		useis rem en su lugar.

*/

/* estilos base comunes */

		/* html	{ font-size: 10px; } /* No tocar. Si necesitas cambiar el tamaï¿½o de fuente por defecto de los contenidos... EDIT: BOOTSTRAP YA METE ESTO; COMENTO */
		#root
		{ 
			position: relative; font-size: 1.4rem;  /* ...cambialo en el "body". El root element se usa para maquetar, ojo con eso */
			background-color: #ededed;				/* las demas propiedades del body, van como siempre */ 
			font-family: 'Asap', sans-serif; 
			font-weight: 400;  
		}

		.inline			{ display: inline; }
		.fullWidth		{ width: 100%; }
		.input-group	{ padding-bottom: 1.5rem; }
		.no-border		{ border: 0px none; }
		.divBordeado	{ border: 1px solid #cbcfd1; padding: 10px; }
		.margin-top		{ margin-top: 1rem; }

		.input-group-addon.field-tag { width: 40px !important; text-align: center; padding-left: 0.2rem; padding-right: 0.2rem; }

		.filafiltro label { display: blocK; }

		.btn-primary,
		.btn-success,
		.btn-danger,
		.btn-warning,
		.btn-pdf,
		.btn-purple,
		.btn-info		{ min-width: 24px !important; }
		
		.btn-wide		{ min-width: 180px !important; }
		
		/* los formularios van a respetar el espacio de los elementos anteriores */
		.sr-only + form { clear: left; }
		

/* Cabecera y pie de pagina (marco de la aplicaciÃ³n) */

		#app_title { font-size: 1.65rem; line-height: 5.25rem; margin: 0; padding: 0; }

		/* cabecera - separado en tres componentes para permitir degradados y colores de fondo a cualquier ancho */
		#cabecera .logo { background-repeat: no-repeat; }
		#cabecera,
		#cabecera .fondo_izq,
		#cabecera .fondo_der,
		#cabecera .logo { background-position: top left; background-size: auto 9.2rem; width: 100%; height: 9.2rem; margin: 0; }

		.row-fluid.applicationbar { color: #fff; background-color: #174894; height: 5rem; width: 100%; overflow: hidden; }
		.row-fluid.applicationbar .textapplicationLeft,
		.row-fluid.applicationbar .textapplicationRight 
		{
			color:			#fff;
			font-weight:	bold;
			width:			50%;
		}
		.row-fluid.applicationbar .textapplicationLeft { float: left; }
		.row-fluid.applicationbar .textapplicationRight
		{ 
			float:			right;
			padding-top:	0;
			padding-right:	0;
			font-size:		1.2rem;
			line-height:	1.55rem;
			text-align:		right;
		}

		/* caja de links de cabecera */
		#info_cabecera 
		{ 
			position: absolute;
			top: 1rem;
			right: 0;
			padding: 1rem 1rem 0 0;
			width: 25rem;
			height: 7.5rem;
			background-image: url("../images/fondo_derecha.png");
			opacity: 0.75;
			border-radius: 1rem;
			background-position: -1rem -1rem;
			text-align: right;
		}
		#info_cabecera ul { list-style: none; }
		#info_cabecera ul li { white-space: nowrap; }
		#info_cabecera ul li:first-child:nth-last-child(1) { margin-top: 2rem;		} /* alineaciï¿½n manual segun la lista tenga un link */
		#info_cabecera ul li:first-child:nth-last-child(2) { margin-top: 1rem;		} /* ...dos... */
		#info_cabecera ul li:first-child:nth-last-child(3) { margin-top: -0.15rem;	} /* ...tres.. */
		#info_cabecera ul li:first-child:nth-last-child(4) { margin-top: -1.25rem;	} /* ...o cuatro */
		#info_cabecera ul li a { font-weight: bold; font-size: 1.4rem; line-height: 2rem;  }

		#main-content { min-height: 45rem; padding-top: 2rem; }

	/* menu de aplicacion */
	.menubar { background-color: #FAFAFA; padding-left: 0px; border-bottom: 1px solid #BFBFBF; }

	/* portada de aplicacion */
	.portada { padding: 8px; }
	.portada a { color: #428bca; text-decoration: none; }

	/* Form de login */
	form#login_f
	{
	    width: 500px;
		margin: 3rem auto 0;
		overflow: hidden;
		padding: 1rem 2rem;
	}

	form#login_f .loginbox 
	{
	    width: 500px;
	    margin-left: auto;
	    margin-right: auto;
	    background-image: url('../images/login.png');
	    background-repeat: no-repeat;
	    background-position: 95% 20%;
	    margin-bottom: 0px;
	    border-top-right-radius: 6px;
	    border-top-left-radius: 6px;
	    background-color: #E5E5E5;
	    padding: 20px;
	}
	
	form#login_f #login_box_logo { background-image:  url('../../images/key.png') ;  background-repeat: no-repeat; height: 130px; }
	form#login_f button#login { width: 140px !important; }
	form#login_f .form-group { margin-bottom: 1rem; }
	form#login_f .form-group h3 { margin-top: 1rem; }
	form#login_f #messageBox { margin: 0; }

	form#login_f .panel-body { position: relative; }
	form#login_f .loginpie 
	{
	    position: absolute;
	    bottom: 0px;
	    width: 458px;
	    margin-left: -15px;
	    background-color: #ADD8E6;
	    padding: 5px;
	    text-align: center;
	    border-bottom-right-radius: 4px;
	    border-bottom-left-radius: 4px;
	}

	form#login_f .loginpie a { color: #0088cc; }
	form#login_f #textoEntrada 
	{
		text-align:justify;
		text-justify:inter-word;
		padding: 10px;
		margin-top: 20px;
		margin-bottom: 20px;
		background-color: white;
		overflow: auto;
		height: 90px;
		width: 70%;
		margin-left:auto;
		margin-right:auto;
		font-size: 10px;
	}
	form#login_f button#acceso-login { margin-top: 12.8rem; }
	form#login_f .msg_credenciales { margin: 1rem 0px 1rem 4rem; float: left; }

	#info_entrada { width: 540px; margin: 0 auto; color: #31708f; }

/* ventana de logout */
	#logout_screen { margin-top: 2rem; }

/* ventana home */

	#inicio-home 
	{
	    position: relative;
	    top: 0;
	    left: 0;
	    width: 100%;
	    min-height: 600px;
	    background-image: url("../img/home.png");
	    background-position: 51.5% 40%;
	    background-size: 100% auto;
	    background-repeat: no-repeat;
	}

/* form de busqueda (listado) */


	.filtroBuscador form legend	
	{
		text-transform: uppercase;
		display: inline;
		padding: 6px 12px;
		height: auto;
		color: #3B69AB;
		margin-bottom: 1rem;
		width: auto;
		border: 0px none;
		margin-top: -3rem;
		margin-left: -1.5rem;
	}


	.filtroBuscador .controls div:not(:last-child)	.btn { margin-left: 2rem; }
	.filtroBuscador .controls div:last-child		.btn { margin-right: 2rem; }
	
	

/* pestaï¿½as de formularios */

	.nav.nav-tabs.ui-tabs-nav							{ border: 0px none; }
	.nav.nav-tabs.ui-tabs-nav *:focus					{ outline: none; }
	.nav.nav-tabs.ui-tabs-nav .active					{ padding-bottom: 4px; background-color: #fff; }
	.nav.nav-tabs.ui-tabs-nav .active a					{ border: 0px none !important; background-color: #fff; width: 100%; height: 100%; display: block; }
	.nav.nav-tabs.ui-tabs-nav .has-error				{ color: red !important; }
	.nav.nav-tabs.ui-tabs-nav .has-error:after 
	{
		content: "\e107";
		position: relative;
		top: 1px;
		padding-left: 1rem;
		display: inline-block;
		font-family: 'Glyphicons Halflings';
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	.tab-content										{ padding: 0 1rem; }
	.tab-content .tab-pane fieldset legend				{ padding: 1rem 0.25rem 0.25rem; }
	.tab-content .tab-pane .container-fluid 			{ margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; padding-top: 2rem; }
	.tab-content .tab-pane .container-fluid .row-fluid	{ clear: both; }
	
	form .ui-tabs { padding-bottom: 1rem; }
	
/* leyenda de controles del formulario */
	.leyenda_form 				{ margin: 1rem auto 3rem; text-align: center; }


/* guia */

	.pagina_ayuda { margin-top: 10px; padding: 24px 18px; }
	p.clear { clear: both; }
	p.clear .btn { margin: 0 1rem 1rem 0; min-width: 10rem !important; display: block !important; }


/* formularios - detalles para validacion/feedback */
	.form-group > .input-group				{ padding-bottom: 0; width: 100%; }
	.form-group > .input-group > .checkbox	{
	    display: block;
		width: 100%;
		height: 3.5rem;
		background-color: #eee;
		border: 1px solid #ccc;
		border-radius: 0 4px 4px 0;
		margin: 0;
		padding: 0;
		line-height: 3.5rem;
		padding-left: 1rem;
		font-weight: bold;
	}

	.has-feedback											{ min-height: 7rem; }
	.form-group > .input-group > .checkbox input[type="checkbox"] { margin:0px; padding: 0px; height: 100%; }
	.form-group.has-feedback > .help-block					{ margin-top: -6rem; margin-bottom: 4rem; }
	.form-group.textarea.has-feedback > .help-block			{ margin-top: unset; position: absolute; top: 1.75rem; right: 2rem; }
	.form-group.has-feedback .form-control-feedback 		{ z-index: 100; }
	.form-group.no-control-label > .control-label,
	.no-control-label > .form-group > .control-label,
	.form-group.has-feedback > .help-block.sr-only			{ position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
	.form-group.margen-etiqueta 							{ margin-top: 2.7rem; }
	.form-group .input-group + textarea						{ width: 100%; height: 8.75rem; resize: none; }
	.form-group.textarea .input-group-addon.field-tag		{ border-radius: 5px 0 0 0 !important; border-bottom: 0px none; margin-bottom: 0px; }
	.form-group .input-group .info_textarea					{ display: block; height: 3rem; line-height: 3rem; padding-left: 1rem; background-color: #eee; border: 1px solid #ccc; border-radius: 0 4px 0 0; border-bottom: 0px none; margin-bottom: 0px; }
	.form-group.has-feedback textarea						{ border-radius: 0 0 5px 5px; } 
	.form-group.col-md-12 textarea							{ resize: vertical !important; }
	.form-group.has-error .input-group .info_textarea		{ border-top: 1px solid #a94442; border-right: 1px solid #a94442; }
	.form-group.has-error textarea							{ border: 1px solid #a94442; }
	.form-group.has-error .input-group .info_textarea,
	.form-group.has-error textarea  						{ color: #f00; background-color: #fff6d6 !important; }
	.form-group.has-success .input-group .info_textarea,
	.form-group.has-success textarea  						{ color: #3c763d; border-color: #3c763d; }
	.form-group.has-success .input-group .info_textarea 	{ border-top: 1px solid; border-right: 1px solid; background-color: #dff0d8; }
	.form-group.has-success textarea  						{ border: 1px solid; background-color: #f6fff6; }
	.form-group.textarea									{ position: relative; }
	.form-group.textarea .form-control-feedback				{ top: 2rem; }

	form .pull-right button.pull-right						{ margin: 0 0 0 0.2rem; }

	/* Ajuste para mejor visibilidad y evitar superposiciï¿½n de los textos de error de validaciï¿½n del formulario */
	.form-group .control-label { padding-bottom: 0.2rem !important; }
	.form-group.has-feedback.has-error .help-block { font-size: 1rem; padding-top: 1.2rem; }
	.bootstrap-filestyle.input-group { margin-top: 0.1rem; }

	.no-resize { resize: none; }

	mark[title] { background-color: #c3ffc3; }
	
	/* Parche estupido para alinear por el lado derecho el submenu del ultimo elemento - esto deberia hacerse con conocimiento de la estructura, donde acaba el menu, etc. No desde CSS */
	.navbar-nav > li:last-of-type .dropdown-menu { left: unset; right: 0px; }

/* Campo de texto envuelto (tags y mensajes de validacion dentro del campo) */

	.form-group.wrapped-label { margin-top: 1rem; }
	.form-group.wrapped-label .form-control { height: 5rem; padding-top: 1rem; border-radius: 0 4px 4px 0 !important; }
	.form-group.wrapped-label .control-label
	{
		position: absolute;
		z-index: 10;
		top: 0rem;
		left: 6rem;
		font-size: 1rem;
	}
	.form-group.wrapped-label.has-feedback .form-control-feedback { padding-top: 1rem; }
	.form-group.wrapped-label.has-feedback > .help-block
	{
	    z-index: 10;
	    position: absolute;
	    bottom: -4rem;
	    font-size: 1rem;
	    text-align: right;
	    right: 1rem;
	}
	
/* resultados de busqueda */
table.dataTable thead th, table.dataTable tfoot th { border: 0px none; text-transform: none; }

/* campo filestyle */
.bootstrap-filestyle.input-group .btn-field-tag { margin-top: 0; }
.bootstrap-filestyle.input-group .input-group-btn .btn { margin-top: 0px; }

/* ajuste de tag de exito, error y requerido en campos select (esquiva el botï¿½n desplegable) */
.has-feedback select + .form-control-feedback { padding-right: 4rem !important; }

/* displaytag */

table			{ border: 1px solid #666; width: 80%; margin: 20px 0 20px 0 !important; }
th, td			{ padding: 2px 4px 2px 4px !important; text-align: left; vertical-align: top; }
td				{ width: auto;}
thead tr		{ background-color: #e0e0e0; text-transform: uppercase; }
th.sorted		{ background-color: #FFF6D9; }
th a, 
th a:visited	{width:100%; color: black;}
th a:hover		{ text-decoration: underline; color: black; }
th.sorted a, 
th.sortable a	{ 
	display: block; 
	width: 100%; 
	background-position: right; 
	background-image: url(../img/arrow_off.png); 
	background-repeat: no-repeat;
}

th.order1 a { background-image: url(../img/arrow_down.png); background-repeat: no-repeat; }
th.order2 a { background-image: url(../img/arrow_up.png);	background-repeat: no-repeat; }

tr.tableRowEven, 
tr.even	{ background-color: #F9F9F9; }
tr.odd	{ background-color: #fff; }

span.export 
{
	padding: 0 4px 1px 20px;
	display: inline;
	display: inline-block;
	cursor: pointer;
}

.group-1	{ font-weight: bold; padding-bottom: 10px; border-top: 1px solid black; }
.group-2	{ font-style: italic; border-top: 1px solid black; }

.subtotal-sum, 
.grandtotal-sum		{ font-weight: bold; text-align: right; }
.subtotal-header	{ padding-bottom: 0px; border-top: 1px solid white; }

.subtotal-label,
.grandtotal-label		{ border-top: 1px solid white; font-weight: bold; }
.grouped-table tr.even	{ background-color: white; }
.grouped-table tr.odd	{ background-color: grey; }

.grandtotal-row { border-top: 2px solid black; }

.paginador.input-group .form-control { width: 3rem !important; padding-left: 0; padding-right: 0; text-align: center; }
.paginador.input-group select.pagina { min-width: 5rem; }
.paginador.input-group select.porpagina { min-width: 8rem; } 


.topbar { position: static; }

/* /displaytag */
.accion-ancho { width:150px; }
td.accion-ancho { width: 162px; }
td.accion-ancho .btn { margin-bottom: 2px; }


.display-table tr.tableRowEven,
.display-table tr.even { background-color: #fff; padding: 0.5em; color: #1B4B95; }
.display-table tr.odd  { background-color: #EFF1F1; padding: 0.5em; color: #1B4B95; }

.display-table-resultado { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; }
.display-table-resultado a { margin:0.8px; }

.display-table .pagebanner { position: relative; top: 14px; }
.display-table .pagelinks { position: relative; top: 14px; }


/* cabeceras de paneles ignorando padding del panel cuando ocupe x columnas... */

.panel.col-md-1 .panel-heading,
.panel.col-md-2 .panel-heading,
.panel.col-md-3 .panel-heading,
.panel.col-md-4 .panel-heading,
.panel.col-md-5 .panel-heading,
.panel.col-md-6 .panel-heading,
.panel.col-md-7 .panel-heading,
.panel.col-md-8 .panel-heading,
.panel.col-md-9 .panel-heading,
.panel.col-md-10 .panel-heading,
.panel.col-md-11 .panel-heading,
.panel.col-md-12 .panel-heading
{
	width: 100% !important;
	padding-left: 15px;
	margin-left: -15px;
	padding-right: 15px;
	box-sizing: content-box;
}

.btn.btn-wrapped { width: 100%; }
.btn-grid { padding-left: 4px; padding-right: 4px; margin-bottom: 4px; }


/* estilos para unificar aspecto de tablas displaytag con las de jQuery dataTables */
body .display-table > table				{ width: 100%; margin: 0 auto; clear: both; border-collapse: separate; border-spacing: 0; border: 1px solid; }
body .display-table > table tr			{ background-color: #fff; padding: 0.5em; }
body .display-table > table tr th		{ background-color: #1B4B95 !important; border: 0px none; font-size: 14px; padding: 5px 10px; line-height: 1.2em; font-weight: bold; }
body .display-table > table tr th a		{ text-decoration: none; display: block; width: 100%; padding-right: 0px; }
body .display-table > table tr th.sortable a		{ background: transparent url("../../images/sort_both.png") no-repeat center right; background-color: transparent; }
body .display-table > table tr th.sortable.order1 a { background: transparent url("../../images/sort_asc.png")  no-repeat center right; }
body .display-table > table tr th.sortable.order2 a { background: transparent url("../../images/sort_desc.png") no-repeat center right; }
body .display-table > table tr td					{ padding: 2px 4px; font-size: 12px; color: #555; vertical-align: middle; }
body .display-table > table tr td .btn				{ margin-top: 2px; margin-bottom: 2px; }
body .display-table > table tr:nth-child(2n+1)		{ background-color: #EFF1F1; color: #1B4B95; }

/* retoque a alineacion de texto en celdas de dia del datepicker */
table.ui-datepicker-calendar td[data-handler="selectDay"] a { text-align: center !important; }

/* experimento - pantalla carga */

#loader 
{
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 250px;
    height: 250px;
    margin: -125px 0 0 -125px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
    z-index: 1501;
}

#loader::before
{
    content:			"";
    position:			absolute;
    top:				5px;
    left:				5px;
    right:				5px;
    bottom:				5px;
    border-radius:		50%;
    border:				3px solid transparent;
    border-top-color:	#e74c3c;
    -webkit-animation:	spin 6s linear infinite;
    animation:			spin 6s linear infinite;
}

#loader::after
{
    content:			"";
    position:			absolute;
    top:				15px;
    left:				15px;
    right:				15px;
    bottom:				15px;
    border-radius:		50%;
    border:				3px solid transparent;
    border-top-color:	#f9c922;
    -webkit-animation:	spin 3s linear infinite;
    animation:			spin 3s linear infinite;
}
#loader-wrapper 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
}
#loader-wrapper #loader-wrapper-mensaje {
    color: #fff;
    position: absolute;
    top: 47%;
    left: 0;
    width: 100%;
    height: 5rem;
    text-align: center;
    font-size: 3.25rem;
    font-weight: bold;
    z-index: 1600;
    line-height: 5rem;
}
#loader-wrapper .loader-section
{
	position: fixed;
	top: 0;
	width: 50%;
	height: 100%;
	background-color: #222;
	z-index: 1500;
	opacity: 0.75;
}
#loader-wrapper .loader-section.section-left { left: 0; }
#loader-wrapper .loader-section.section-right { right: 0; }

.loaded #loader { opacity: 0; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; }
.loaded #loader-wrapper, .loaded #loader-wrapper #loader-wrapper-mensaje {
    display: none;
    position: absolute;
    top: -100%;
    left: -100%;
    height: 1px;
    width: 1px;
}

.loaded #loader-wrapper .loader-section.section-left
{
	-webkit-transform:	translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform:		translateX(-100%);  /* IE 9 */
	transform:			translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

	-webkit-transition: all 0.01s 0.01s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
	transition:			all 0.01s 0.01s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
.loaded #loader-wrapper .loader-section.section-right
{
    -webkit-transform:	translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform:		translateX(100%);  /* IE 9 */
	transform:			translateX(100%);  /* Firefox 16+, IE 10+, Opera */

	-webkit-transition: all 0.01s 0.01s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
	transition:			all 0.01s 0.01s cubic-bezier(0.645, 0.045, 0.355, 1.000);  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}
    
@-webkit-keyframes spin
{
	0%
	{ 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}

	100%
	{
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}

@keyframes spin
{
	0%
	{
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}

	100%
	{
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}

#textoEntrada .nav-tabs				{ padding: 0 10px; border: 0px none; }
#textoEntrada .nav-tabs > li > a	{ border: 1px solid #ddd; }
#textoEntrada .tab-content			{ width: 100%; border: 1px solid #ddd; border-radius: 5px !important; background-color: #fff; padding: 10px; margin-bottom: 10px; min-height: 100px;}

#wrap_cuadroNegocio { min-height: 40rem; }

#explorador.cuadroNegocio { min-height: 260px; }

#explorador.carpeta {min-height: 450px; }
#visor.carpeta {min-height: 590px; }

.cajaMisSolicitudes {border:3px solid #3B69AB; border-radius:3%;   margin-left:5%; padding: 8px!important; min-height: 144px;}   
.cajaMisSolicitudes:hover {background-color:#EBF5FB;}   
.cajaMisSolicitudes img  , .cajaMisSolicitudes a{display: block;    margin: auto; margin-bottom: 2%;  margin-top: 3%;}
.cajaMisSolicitudes img.certificado {width: 28%;}

.cajaBotonesIntermedia {padding: 15px!important;}
.cajaBotonesIntermedia img  , .cajaBotonesIntermedia a{display: block;    margin: auto; margin-bottom: 2%;  margin-top: 3%;}
.cajaBotonesIntermedia img.certificado {width: 28%;}

.cajaSolicitar {border-radius: 3px;  min-height: 102px;}   
.btnGestionarSolicitudes{overflow:hidden;}
.cajaSolicitar img  , .cajaSolicitar a{display: block; margin: auto; margin-bottom: 2%;}
.cajaSolicitar img{border-radius: 7%; padding: 1%;}
.cajaSolicitar img.certificado {width: 28%; }
.cajaSolicitar img.accesoClave { width:26%;}

.listConvocatorias li{display: block;   overflow: hidden; }
.listConvocatorias li .publicadoConvocatoria{ overflow: hidden;}
.listConvocatorias li .publicadoConvocatoria .solicitarCertitificado{margin-right: -14%;}

 
.loginClaveCertificado{overflow: hidden;}
.titleGestionarSolicitudes {margin-bottom: 2%}
.btnGestionarSolicitudes{white-space: initial;}

.btnDelCriterioRangoConv , .btnDelFinanciacion , .btnDelCausaDenegacion , .btnDelCampoConv , .btn-download {text-align: center;}

/* Solicitudes */
.numAula , .numPersonas, .idDespacho, .m2, .rowRecursosHumanos {width: 23%;}
.agregarRow.agregarLocal {line-height: 0px; width: 10%; color: #337ab7; font-weight: bold; padding:4px !important; float: right; margin-right: 2%;}
.agregarRow.eliminarLocal.btn-info {line-height: 21px; width: 100px; color: #fff; background-color: #5bc0de; border-color: #46b8da;}
.agregarRow.eliminarLocal.btn-info:hover {line-height: 21px; width: 100px; color: #1B4B95; background-color: #5bc0de; border-color: #46b8da;}
/*.m2{width:43%;}*/
/* .idDespacho{width:52%} */
.columnAddRowDespachos{ width: 6%;}

th a.agregarRow {width:100%;}
/*Financiacion*/
.anio{width: 20%;}
.cuantia{width: 27%;}
.importSoli{width:45%}
.importTotal{width:51%}
.desplega {width:4%; text-align: center;}
.descripcionDenegacion{width:1070px;}
.operacionesDoc{width: 120px; text-align: center;}

/* Criterios de valoración */
.puntosCriterios , .desdeCriterios , .hastaCriterios {width:15%;}
.desc-mod-1 {width:51%;}
.desc-mod-2 {width:81%;}
.nombreCriterios {width:35%;}
.descCriteriosVal {width:61%;}
.btnDelCampoConv {text-align: center;}


/* Visita */
.descripcVisita{width:33%;}
.objetoVisita{width:10%;}
.tipoVisita {width:15%;}
.descVisita {width:60%;}
.btn-addRow-visita{width:4%}

.input-group .form-control.custom_check{width:auto; margin-left:5px;}

.agregarRow {padding: 10px !important; padding-top: 1px !important;  padding-bottom: 1px !important; width: 6%;}
.textarea{resize: vertical;}
#bodyListaLocales .genericTitlePage ,  #bodyListaLocales .accordion-toggle:hover{color: #fff; background-color: #337ab7;}


#bodyListaLocales .bodyPanelUbicaciones{margin-top:5%;}
#bodyListaLocales .panel.panelHeightAuto.panelSegundoNivel {border: 1px solid #337ab7;}
.panel{border: 1px solid #337ab7;}
.panel .row.rowCheck1TecnicoContratar, .panel .row.rowCheckContratar{margin-left:40px; margin-top:5px;}
.panel .row.rowCheckRecursosHumanos{margin-left: 2%; margin-top: 1%;}
#experienciaTable {width:100%;}
.cajaMisSolicitudes a.btnGestionarSolicitudClave{margin-top: 11%;}

.imgGestionClave{width: 52%;}    
.titleGestionarSolicitud{margin-top: 3%;} 

.imgListadoConvocatorias{background-color: white; float: left;}
.btnGestionarSolicitudes span{ white-space: initial;}
.panel-title{padding-left: 1%!important;}
.panel-heading{padding-left: 2%!important;}
.bodyPanelUbicaciones .glyphicon-plus, .bodyPanelUbicaciones .glyphicon-minus{margin-right: 1%;}
.tituloAnexoMemoria{color: #5DADE2;}

form#solicitud .bg-primary {padding-left:1%;}
#bodyListaTecnicosContratar textarea{padding: 3px;}
.rowCheckContratar{margin-left: 40px;}
#solicitud .bg-primary{border-radius: 5px;}
.btnInformacion{float: right; margin-right: 3%;}

.inputPresentar{margin-left: 25px;}

.select-word-wrap { white-space: normal;}