/*
 * Top color def para el background
 * dbdbdb -> azul
 * bad3f7 -> gris
 *
 */

html {
	background: transparent url(../img/background-color-fade.png) repeat top center;
	height: 100%;
}

body{
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #334155;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* los hijos directos del body llevan floats internos (grid de Bootstrap);
   sin un ancho explícito, al ser flex items se encogen al contenido en vez
   de ocupar el 100% */
#header_container, #carousel_container, #content, #footer_container {
	width: 100%;
	flex: 0 0 auto;
}
#content {
	flex: 1 0 auto;
}

/* banner "estamos de obras" *****************************/
.obras-banner {
	background: #ffffff;
	background: linear-gradient(145deg, #ffffff 0%, #fffbf6 55%, #fff6ea 100%);
	border: 1px solid #fed7aa;
	border-radius: 16px;
	box-shadow: 0 12px 32px -4px rgba(250, 121, 0, 0.09), 0 4px 12px rgba(0, 0, 0, 0.03);
	text-align: center;
	padding: 40px 24px 36px;
	margin: 24px 0 36px 0;
	position: relative;
	overflow: hidden;
}

.obras-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #fa7900 0%, #ff9e42 50%, #fa7900 100%);
}

.obras-banner-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(250, 121, 0, 0.1);
	color: #c2410c;
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
	border: 1px solid rgba(250, 121, 0, 0.25);
}

.obras-banner h2 {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 26px;
	color: #0f172a;
	margin: 0 0 14px;
	letter-spacing: -0.2px;
}

.obras-banner-desc {
	max-width: 680px;
	margin: 0 auto 18px;
	font-size: 15.5px;
	line-height: 1.65;
	color: #475569;
}

.obras-banner-desc strong {
	color: #c2410c;
	font-weight: 700;
}

.obras-banner-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.obras-banner-contacto {
	display: inline-flex;
	align-items: center;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 6px 18px;
	border-radius: 20px;
	font-size: 13.5px;
	color: #475569;
}

.obras-banner-contacto .glyphicon {
	color: #fa7900;
	margin-right: 6px;
}

.obras-banner-telefonos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.obras-banner-tel {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ffffff;
	border: 1px solid #fed7aa;
	color: #c2410c !important;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 14.5px;
	padding: 6px 16px;
	border-radius: 20px;
	text-decoration: none !important;
	transition: all 0.2s ease;
	box-shadow: 0 1px 4px rgba(250, 121, 0, 0.08);
}

.obras-banner-tel .glyphicon {
	color: #fa7900;
	font-size: 12px;
}

.obras-banner-tel:hover {
	background: #fff7ed;
	border-color: #fa7900;
	color: #ea580c !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(250, 121, 0, 0.18);
}

.obras-banner-action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin-top: 10px;
}

.obras-banner-action .btn-obras-cta {
	background: linear-gradient(135deg, #fa7900 0%, #e06000 100%);
	color: #ffffff !important;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 26px;
	border-radius: 8px;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 14px rgba(250, 121, 0, 0.35);
	transition: all 0.2s ease;
	text-decoration: none !important;
}

.obras-banner-action .btn-obras-cta:hover {
	background: linear-gradient(135deg, #fb871b 0%, #eb6809 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(250, 121, 0, 0.45);
	color: #ffffff !important;
}

.obras-banner-action .btn-obras-cta:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px rgba(250, 121, 0, 0.3);
}

.obras-banner-action .btn-obras-secondary {
	background: #ffffff;
	border: 1.5px solid #fed7aa;
	color: #c2410c !important;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 15px;
	padding: 11px 22px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
	transition: all 0.2s ease;
	text-decoration: none !important;
}

.obras-banner-action .btn-obras-secondary:hover {
	background: #fff7ed;
	border-color: #fa7900;
	color: #ea580c !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(250, 121, 0, 0.15);
}

.obras-banner-action .btn-obras-secondary:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(250, 121, 0, 0.1);
}

.obras-banner-action .btn-obras-whatsapp {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: #ffffff !important;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 26px;
	border-radius: 8px;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
	transition: all 0.2s ease;
	text-decoration: none !important;
}

.obras-banner-action .btn-obras-whatsapp:hover {
	background: linear-gradient(135deg, #2ae26d 0%, #159d8e 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
	color: #ffffff !important;
}

.obras-banner-action .btn-obras-whatsapp:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}

#container {
	padding: 0px 10px 10px;
	z-index:1;
	background: transparent url(../img/container_bg.png) repeat-y center center;
	background: #FEFEFE;
}
#footer_container {
	font-size: 13px;
	line-height: 1.5;
}

/**************************************** Defaults typography */


/***********************/
/* bloques principales */


	/* header *********************************/

	header#header_container {
		background: #eee;
		/*-webkit-box-shadow: 0px 2px 10px 0px rgba(50, 50, 50, 0.55);
		-moz-box-shadow:    0px 2px 10px 0px rgba(50, 50, 50, 0.55);
		box-shadow:         0px 2px 10px 0px rgba(50, 50, 50, 0.55);*/
		border-bottom: 2px solid #ddd;
	}
		header#header_container div.logo {
			margin-top: 15px;
			height: 100px;
			text-align: center;
		}

		header#header_container div.logo div {
			text-align: left;
			padding: 5px 10px;
		}
			header#header_container div.logo div img {
				height: 140px;
			}

	@media (max-width:992px) {
		header#header_container div.logo {height: 115px;}
		header#header_container div.logo div {display: inline-block;}
	}


	/* menu *********************************/

	nav.navbar {
		height: 115px;
		margin: 0;
		border: 0;
		background: transparent;
		z-index: 1000;
	}

	.navbar-nav {
		width: 100%;
		text-align:center;
	}
		.navbar-nav > li{
			float:none;
			display:inline-block;
			*display:inline; /* ie7 fix */
			zoom:1; /* hasLayout ie7 trigger */
		}
			.navbar-nav li a, .navbar-default .navbar-nav>li>a {
				font-size: 1.33em;
				line-height: 115px;
				padding: 0 10px;
				color: rgb(104, 112, 116);
				color: #111;
				text-transform: uppercase;
			}
			.navbar-nav li a:hover,.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
				background-color: white;
			}




	@media (max-width:992px) {
		nav.navbar { height: 60px;}
		.navbar-nav {margin-top: 30px;}
		.navbar-nav li a, .navbar-default .navbar-nav>li>a {line-height: 60px;}
	}

	nav.navbar .yamm-content {
		z-index: 1000;
		padding: 10px 15px;
	}

	nav.navbar .yamm-content .row a {
		line-height: 12px;
		text-align: left;
		display: inherit;
	}
	nav.navbar .yamm-content .row div div.ndlevel a {
		font-size: 10px;
		padding-left: 15px;
		margin: 2px 0;

	}

	nav.navbar .yamm-content .row div.other_links {
		border-left: 1px dotted #ccc;
		padding-left: 0;
		height: 100%;
	}

	nav.navbar .yamm-content .row div.other_links ul {

		padding-left: 0px;


	}
		nav.navbar .yamm-content .row div.other_links ul li {
			border-top: 1px dotted #ccc;
			list-style: none;
			text-align: left;
			padding: 8px 0 8px 10px;
		}
		nav.navbar .yamm-content .row div.other_links ul li:first-child {
			border-top: 0px solid white;
		}


	nav.navbar .yamm-content .row div .boton,
	nav.navbar .yamm-content .row div button {
		padding: 2px 10px;
		font-size: 13px;
		color: white;
		display: inline-block;
		line-height: 20px;
		text-transform: lowercase;

	}
	nav.navbar .yamm-content .row div .boton:hover {
		color: #fff;
		background-color: #39b3d7;
		border-color: #269abc;
	}
	nav.navbar .yamm-content .row div input {
		height: 26px;
	}



	/* carousel *********************************/

	#carousel_container {
		background: #fff url(../img/background-color.png) repeat center center;
		background-size: contain;
	}


	#sequence {
		height: 400px;
	}
	#sequence > .sequence-canvas {
		list-style: none;
	}

	#sequence > .sequence-canvas > li {
		top: 0%;
	}
	#sequence .title {
		bottom: 50%;
		width: 38%;
		background: #fff url(../img/blue-boxes.jpg) no-repeat center center;
		background: rgba(64,64,64,0.7);
		color: #fff;
		text-shadow:  4px 1px 11px rgba(0, 0, 0, 1);
		background: rgba(64,64,64,0.7) url(../img/underline-colors.png) repeat-x bottom center;
		background-size: 100% 10%;
		padding: 5px 10px 8px 10px;
	}
	.subtitle {
		color: white;
		text-shadow:  4px 1px 11px rgba(0, 0, 0, 1);
		z-index:10;
		top: 45%;
		padding: 5px 10px;
	}
	.model {
		top: 10%;
		max-width: 400px;
	}
	@media (min-width:992px) {
		#sequence .title {
			font-size: 6em;
		}
		.subtitle {
			font-size: 4em;
		}
		.model {
			top: 15%;
		}
	}
	@media (max-width:991px) {
		#sequence .title {
			font-size: 4em;
		}
		.subtitle {
			font-size: 3em;
		}
		.model {
			max-width: 250px;
			bottom: 20%;
			top: 20%;
		}
	}



	/* content *********************************/

	#content {
		margin-top: 30px;
		padding: 10px 0;
		position: relative;
	}

		 h2.section_title {
		  letter-spacing: 3px;
		  background: #fff url(https://web.archive.org/web/20250710011559im_/http://inkromatic.com/media/static/css/menu/bg_clean.png) repeat-x bottom center;
		  background: transparent url(../img/underline-colors.png) repeat-x bottom center;
		  background-size: 100% 7%;
		  padding: 5px;
		  margin: 5px 0 10px 0;
		  font-family: 'Outfit', sans-serif;
		  font-weight: 700;
		}
		#content h2 span.glyphicon {
			font-size: 0.5em;
			margin-right: 5px;
		}
		#content h2 span.bread {
			font-size: 0.5em;
			margin-right: 5px;
			font-style: italic;
		    text-shadow: 1px 1px 1px #ccc;
		    color: #444;
		}
		#content h2 span.subh1 {
			font-size: 0.5em;
			margin-right: 5px;
			font-style: italic;
			float: right;
		    text-shadow: 1px 1px 1px #ccc;
		    color: #444;

		}

	/* breadcumb *****************************/

	div.breadcumb_wrapper {
		height: 18px;
	}
	span.breadcumb {
		margin-left: 5px;
		color: #333;
		line-height: 18px;
		position: relative;
	}
		span.breadcumb a{
			color: #333;
			text-decoration: none;
		}


	/* footer *****************************/

	#footer_container {
		background: black url("../img/footer_bg.png") no-repeat scroll 50% 0;
		color: #fff;
		padding-bottom: 10px;
	}
		#footer_container img {
			margin-top: 30px;
		}
		#footer_container h3 {
			color: white;
			margin: 5px 0;
			padding: 5px 0;
		}
		#footer_container a, #footer_container p {
			color: #DE5328;
			color: #FA7900;
			color: inherit;
		}



/* Home *********************************/


.buscador_portada {
	margin-bottom: 30px;
}
	.buscador_portada > div {
		padding: 0;
		margin: 15px;
		background-color: #eee;
		border: 1px solid #ddd;
		float: left;
	}
	.buscador_portada p, .buscador_portada a {
		colosr: white;
	}
	.buscador_portada p{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.buscador_portada .text-under{
		text-align: right;
	}


.row-pirulas {
	display: flex;
	flex-wrap: wrap;
}
.row-pirulas > [class*="col-"] {
	display: flex;
}

.pirula {
	text-align: center;
	color: #333;
	min-height: 200px;
	padding: 20px;
	width: 100%;
}
.pirula a {
	color: rgb(51,51,51);
	text-decoration: none;
}
.pirula a > span {
	position: relative;
	display: block;
	margin: 0 auto;
	text-align: center;
	font-size: 50px;
	color: white;
	margin: 10px auto;
}
.pirula a > p {
	display: inline;
}

.pirula a > h3 {
	color: inherit;
	font-size: 2em;
}

.pirulaNaranja a > span {
	background: transparent url("../img/pirula-naranja.png") no-repeat center center;
}
.pirulaAzul a > span {
	background: transparent url("../img/pirula-azul.png") no-repeat center center;
}
.pirulaVerde a > span {
	background: transparent url("../img/pirula-verde.png") no-repeat center center;
}

.pirula a > span {
	background-size: contain;
	height: 100px;
	width: 100px;
	line-height: 100px;
}

#hometabs_container {}

	#hometabs_container  .nav {
		padding: 0 15px;
	}
	#hometabs_container .nav-tabs li.active a {
		background-color: #eee;
	}

	#hometabs_container .nav-tabs li a, #hometabs_container .nav-pills li a  {
		font-size: 1.2em;
	}
		#hometabs_container .nav-tabs li a span {
			font-size: 1.5em;
		}

	#hometabs_container .tab-content {
		padding: 10px;
		background-color: #eee;
		border: 1px solid #ddd;
	}


	@media (max-width:992px) {
		#hometabs_container  .nav {
			padding: 0;
		}
	}

/* legal *********************************/

.legal {
	font-size: 10px;
}


/* Productos / index **********************/




.ul_categorias_index {
	padding-left: 35px;
	margin: 1.5em 0;
	list-style-image:url('../img/cat-arrow.png');
}
.ul_categorias_index_first {
	padding-left: 0px;
}

.ul_categorias_index li {
	margin: 10px 0;
}

.ul_categorias_index li a{
	color: #666;
}

#portfolio-filter {
	float: left;
	padding: 0;
	backsground-color: #eee;
	padding: 10px;
	width: 100%;


}
	#portfolio-filter li {
		float: left;
		list-style: none;
		margin: 2px;
	}

.returncat {
	float: left;
	clear: left;
	margin-bottom: 10px;
}

@media (max-width:992px) {
	.ul_categorias_index {
		padding: 0;
		margin: 0;
		clear: both;
	}
	.ul_categorias_index li {
		float: left;
		margin: 10px 0;
		padding: 0 10px 0 0;
		list-style: none;
	}

	.ul_categorias_index h3 {
		margin: 0;
	}
	#portfolio-filter {
		padding: 5px;
	}
}



/* Productos / ver **********************/
.productoImage img {
	margin: 0 auto;
	margin-bottom: 40px;
}
.productoImage .returncat {
	float: left;
	clear: left;
	margin-bottom: 10px;
}


/* Contacto DL ***************/

dl {}
dt {
	font-weight: bold;
}
dd {
	font-style: italic;
	padding: 0 0 5px 10px;
	color: #333;
}


/* Contacto formulario online ***************/

#ContactoSolicitardForm input, #ContactoSolicitdarForm textarea, #ContactoSolicitardForm select {
    padding: 0;
	width: 90%;
    float: left;
	clear: both;
}

#ContactodSolicitarForm select {
	width: auto;
}
#ContactoSoldicitarForm div.input label {
	padding-right: 10px;
	float: left;
	clear: both;
	color: #666;
}

 #dialog-form  .form-group label {
	color: #444;
}
/*************************************************************************************/
/*Reusables**************************/



/* Plantilla base modal dialog *********************************/

.modal {
    background-color: #FFFFFF;
    border: 2px solid #333333;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 50px #CCCCCC;
    display: none;
    opacity: 0.8;
    padding: 15px;
    text-align: left;
    width: 400px;
    z-index: 100;
}
.modal h2 {
    border-bottom: 1px solid #333333;
    font-size: 20px;
    margin: 0;
    padding: 10px 0;
}

.modal .close {
	background-image: url(../img/close.png);
    cursor: pointer;
    height: 35px;
    position: absolute;
    right: -15px;
    top: -15px;
    width: 35px;
}

/* Producto Box   *********************************/

.productobox, .recursobox {
	margin-bottom: 10px;
	text-align: center;
	height: 250px;

}

.productobox .segundamanobadge, .productobox .ofertabadge {
	position: absolute;
	width: 45%;
	top: 5px;
	padding: 3px;
	color: white;
	background: #5bc0de;
	border-color: #269abc;
	z-index: 100;
}
.productobox .segundamanobadge:hover, .productobox .ofertabadge:hover {
	background-color: #39b3d7;
	border-color: #269abc;
}
.productobox .segundamanobadge {
	left: 0px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.productobox .ofertabadge {
	right: 0px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}


.productobox .boxContent, .recursobox .boxContent {
	overflow: hidden;
	height: 235px;
	position: relative;
}
.productobox .boxContent h3, .recursobox .boxContent h3  {
	padding-bottom: 5px;
	font-size: 15px;
	padding-bottom: 5px;

}
.productobox .boxContent h3 a, .recursobox .boxContent h3 a {
	color: #FA7900;
	color: #DE5328;
	color: #FA7900;
	color: #000;
	font-weight: bold;
	text-decoration: none;
	font-size: 1.2em;
}

.productobox .boxContent  a img {
	margin-top: 6px;
	display: inline-block;
}
.productobox .boxContent  a {
	z-index: 20;
}
.productobox a.texto, .recursobox a.texto {
	font-size: 12px;
	text-align: center;
	margin: 0 0 5px 0;
	color: #333;
	text-decoration: none;
	line-height: 18px;
	display: block;
	overflow: hidden;
	height: 54px;
}

/* Representante Box   *********************************/

.representantebox, .recursobox {


}

.representantebox .segundamanobadge {

}
.representantebox .segundamanobadge:hover {

}
.representantebox .segundamanobadge {

}
.representantebox .ofertabadge {

}


.representantebox .boxContent {

}
.representantebox .boxContent h3  {

}
.representantebox .boxContent h3 a {

}

.representantebox .boxContent  a img {
	float: left;
	height: p200px;
	margin-top: 20px;
}
.representantebox .boxContent  a {

}
.representantebox a.textorepresentante {
	height: 160px;
	font-size: 12px;
	text-align: center;
	margin: 5px 15px;
	color: #333;
	text-decoration: none;
	line-height: 18px;
	display: block;
	overflow: hidden;
}


/* Otros ************************************************/

ol li {
	margin-bottom: 10px;
}


/* Estilos accesorios *********************************/


a.navlink {
	font-size: 1.1em;
	text-transform: capitalize;
	font-weight: bold;

}

p.quote {
	color: #777!important;
	font-style: italic;
}

.prepend-top {
	margin-top: 10px;
}
.append-bottom {
	margin-bottom: 10px;
}


hr.space {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #FFFFFF;
    visibility: hidden;
}
hr {
    background: none repeat scroll 0 0 #DDDDDD;
    border: medium none;
    clear: both;
    color: #DDDDDD;
    float: none;
    height: 1px;
    margin: 0 0 1.45em;
    width: 100%;
}

hr.clear {
	background: none repeat scroll 0 0 #FFFFFF;
	color: #FFFFFF;
	visibility: hidden;
	margin: 0;
}


/*** cta ***************************************/

a.cta {
	position: relative;
	padding: 4px 50px 0px 10px;
	font-size: 18px;
	line-height: 24px;
	height: 53px;
	color: white;
	font-weight: bold;
	font-variant: small-caps;
	text-transform: lowercase;
	display: block;
	background: url("../img/button4_bg.png") repeat-x scroll 0 -114px transparent;
	text-align: center;


}
a.cta:hover {
	background-position: 0 -57px;
}
a.cta:active {
	font-style: normal;
	background-position: 0 0px;
	line-height: 25px;
}
	a.cta span {
		font-size: 0.65em;
		font-weight: normal;
	}
	a.cta span.img {
		width: 38px;
		height: 100%;
		position: absolute;
		top: 0;
		right: 6px;
		background: url("/web/20250710011559im_/http://inkromatic.com/media/static/img/cta_contacto.gif") no-repeat 0 50% transparent;
	}
	a.cta:hover span {
		background-position: -38px 50%;
	}



/* *************************************************  filetypes */

    a.descargaFichero {
	    display:inline-block;
	    padding: 100px 10px 0 20px;
	    background:transparent url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/blank.png) center top no-repeat;
    }
    a.descargaFicheroHalfSize {
	    display:inline-block;
	    padding: 50px 10px 0 20px;
	    background:transparent url(/web/20250710011559im_/http://inkromatic.com/media/static/img/100px/mime/blank.png) center top no-repeat;
    }
    a.descargaFicheroIzq {
	    display:inline-block;
	    text-decoration: none;
	    padding: 10px 10px 0 100px;
	    height: 100px;
	    background:transparent url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/blank.png) center left no-repeat;
    }
    span.fechaFicheroIzq {
    	color: #333;
    	font-size: 12px;
    	text-decoration: none;
    	font-style: italic;
    	text-decoration: none;
    }
    a.descargaFicheroIzqHalfSize {
	    display:inline-block;
	    padding: 0px 10px 0 50px;
	    min-height: 50px;
	    background:transparent url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/blank.png) top left no-repeat;
    }
    a.tituloFicheroIzqHalfSize {
    	color: #333;
    	font-size: 12px;
    	padding-left: 5px;
    	text-decoration: none;
    	font-style: italic;
    }

    a.pdf {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/pdf.png);
    }
    a.xls, a.csv, a.xlt, a.xlw, a.ods, a.xlsx {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/xls.png);
    }
    a.ppt, a.pps, a.odp, a.pptx {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/ppt.png);
    }
    a.doc, a.rtf, a.txt, a.odt, a.docx {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/doc.png);
    }
    a.txt {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/txt.png) ;
    }
  	/**halves**/
    a.pdfHalf {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/100px/pdf.png);
    }
    a.xlsHalf, a.csvHalf, a.xltHalf, a.xlwHalf, a.odsHalf, a.xlsxHalf {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/100px/xls.png);
    }
    a.pptHalf, a.ppsHalf, a.odpHalf, a.pptxHalf {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/100px/ppt.png);
    }
    a.docHalf, a.rtfHalf, a.txtHalf, a.odtHalf, a.docxHalf {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/100px/doc.png);
    }
    a.txtHalf {
    	background-image: url(/web/20250710011559im_/http://inkromatic.com/media/static/img/mime/100px/txt.png) ;
    }


.success,
.message,
.cake-error,
.cake-debug,
.notice {
	display: block;
	width: 96%;
	margin: 20px 1% 0 2%;
	margin-top: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 10px 0;
	text-indent: 40px;
	font-size: 14px;
}

.cake-error {
	background: #F3D9D9 url(/web/20250710011559im_/http://inkromatic.com/media/static/css/bg/admin/icn_alert_error.png) 10px 10px no-repeat;
	border: 1px solid #D20009;
	color: #7B040F;
}

.success {
	background: #E2F6C5 url(/web/20250710011559im_/http://inkromatic.com/media/static/css/bg/admin/icn_alert_success.png) 10px 10px no-repeat;
	border: 1px solid #79C20D;
	color: #32510F;
}

.message {
	background: #B5E5EF url(/web/20250710011559im_/http://inkromatic.com/media/static/css/bg/admin/icn_alert_info.png) 10px 10px no-repeat;
	border: 1px solid #77BACE;
	color: #082B33;
}

/* Form errors */
form .error { /* Se aplica al div.input */
	width: 98%;
	margin-left: 1%;
	background: #F3D9D9;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-weight: normal;
	border: 1px solid #D20009;

}
form .error-message { /* Se aplica al div con el error dentro del div.input */
	-moz-border-radius: none;
	-webkit-border-radius: none;
	border-radius: none;
	border: none;
	background: none;
	margin: 0;
	text-align: right;
	padding-right: 2%;
	height: 25px;
	line-height: 25px;
}
form .error,
form .error-message {
	color: #7B040F;
}




.btn-ink {
	background: #fff url(../img/background-color.png) repeat center center;
	background-size: 100%;
	color: white;
	text-shadow: 1px 1px 1px black;
	position: relative;
	z-index: 1;
}
.btn-ink:hover, .btn-ink:focus {
	color: white;
	z-index: 2;
	background: none;
}

.btn-ink:after {
    content : "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	background: url(../img/background-color.png) repeat center center;
    background-size: 100%;
    width: 100%;
    height: 100%;
    opacity : 0.7;
    z-index: -1;
}

#banner_cprint {

	display: block;
	margin: 0 auto;
	margin-top: -40px;
	text-align: center;
	width: 100%;

}

@media (max-width:768px) {
	#banner_cprint img{
		width: 100%;
	}
}

