/*   

Theme Name: CSS inicial
Theme URI: http://rudeworks.com/blog/css-inicial-2/
Author: RUDE
Author URI: http://rudeworks.com
Version: 2.0
Description: CSS bÃ¡sico con arreglos y selectores pre-configurados.

*/

/* Elementos que queremos limpiar completamente: */

* {
	margin: 0;
	padding: 0;
	/*border: none;*/
}

/* Ajustes tipográficos */

h1, h2, h3, h4, h5, h6, p, pre,
blockquote, ul, ol, dl, address {
	font-weight: normal;
	margin: 0 0 1em 0;
}

cite, em, dfn {
	font-style: italic;
}

sup {
	position: relative;
	bottom: 0.3em;
	vertical-align: baseline;
}

sub {
	position: relative;
	bottom: -0.2em;
	vertical-align: baseline;
}

li, dd, blockquote {
	margin-left: 1em;
}

ul li { padding-bottom:5px;}

code, kbd, samp, pre, tt, var{
	font-size: 100%;
	font-family: monaco, "Lucida Console", courier, mono-space;
}

del {
	text-decoration: line-through;
}

ins, dfn {
	border-bottom: 1px solid #ccc;
}

small, sup, sub {
	font-size: 85%;
}

abbr, acronym {
	text-transform: uppercase;
	font-size: 85%;
	letter-spacing: .1em;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
}

a abbr, a acronym {
	border: none;
}

sup {
	vertical-align: super;
}

sub {
	vertical-align: sub;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.8em;
}

h3 {
	font-size: 1.6em;
}

h4 {
	font-size: 1.4em;
}

h5 {
	font-size: 1.2em;
}

h6 {
	font-size: 1em;
}

/*** LINKS: Recuerda utilizar siempre la regla del LoVe-HAte ***/

a, a:link, a:visited, a:hover, a:active {
	/*
	Si quisieramos eliminar la lÃ­nea de puntos que aparece al pulsar un enlace, aplicarÃ­amos la siguiente propiedad:
	
	outline: 0;
	
	Sin embargo no se recomienda, por temas de accesibilidad para navegaciÃ³n con teclado (lo cual implica temas legales, un tema peliagudo).
	*/
	text-decoration: none;
}

a img {
	border: none;
	text-decoration: none;
}

img {
	border: none;
	text-decoration: none;
	/*
	Si aÃ±ades un background aparecerÃ¡ como fondo de la imagen, Ãºtil para imÃ¡genes de carga
	*/
}

/* Formularios */

label, button {
	cursor: pointer;
}

input:focus, select:focus, textarea:focus {
	background-color: #FFF;
}

fieldset {
	border: none;
}

/* Clases útiles */

.clear {
	clear: both;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

/* Para empezar un layout centrado: */

html {
	font: 75% Arial, Verdana, sans-serif;
	text-shadow: #000 0px 0px 0px;/* Elimina el efecto bold en Safari */
	overflow: auto;
	color: #fff;
}

body {
	text-align: center;/* Hack para que IE6 no de problemas */
	background: url(../imagenes/img-pattern-fondo.gif) repeat top;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

form{
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}

/*ESTRUCTURA PRINCIPAL*/

#container{
	position: absolute; 	/*Posicionamiento absoluto*/
	top: 0%; 				/*Desde arriba, colocar al 50% de la pantalla*/
	left: 50%; 				/*Desde la izquierda, colocar al 50% de la pantalla*/
	margin-left: -502px; /*Restamos la mitad de ancho de la capa para centrarla horizontalmente*/
	width: 1004px;
	text-align:left;
	color:#000;
}

#cabeceraTop-home{
	width:1004px; 
	height:31px;
	background: url(../imagenes/img-cabeceratop-fondo.jpg);
	color:#858383;
	font-size:8pt;
}

#cabeceraTop{
	width:1004px; 
	height:31px;
	background: url(../imagenes/img-cabeceratop-fondo2.jpg);
	color:#858383;
	font-size:8pt;
}


#cabecera{
	width:1004px; 
	height:219px;
	background: url(../imagenes/img-cabecera-fondo.jpg);
}

#cabecera input.news{
	width: 213px;
/*	margin-bottom: 8px;*/
/*	border: 1px solid #c0c0c0;*/
}

#menu-principal-home{
	width:1004px;
	height:37px;
	background: url(../imagenes/img-menu-fondo.gif);
}

#menu-principal{
	width:1004px;
	height:37px;
	background: url(../imagenes/img-menu-fondo2.gif);
}

/*para generar el menu horizontal*/
#navlist li
{
display: inline;
list-style-type: none;
padding:0 0 0 0;
margin: 0 0 0 0;
}

#pie-pagina{
	background: url(../imagenes/img-pieDePagina-fondo.gif);
	width:1004px;
	height:31px;	 
	color:#767676;
	clear:both;
}

.link-pie-pagina{
	color:#d43815;
	font-weight: bold;
}

.link-pie-pagina a.hover{
	text-decoration: underline;
}

.link-noticias{
	color:#d43815;
	font-weight: bold;
}

.link-noticias a.hover{
	text-decoration: underline;
}

/*contenido home*/
#contenido-home{
	background: url(../imagenes/img-contenido-fondo.gif);
	width:1004px;
	height:490px;	
}

#contenido-home-left{
	width:170px;
	padding-top:42px;
	padding-left:17px;
	padding-right:13px;
	color:#fff;
}

#contenido-home-center{
	width:463px;
	/*padding-left:24px;*/
	height:310px;
	padding-top:17px;
	margin-right:4px;

}

#contenido-home-right{
	width:242px;
	padding-top:40px;
	padding-left:21px;
	padding-right:37px;
	color:#fff;
}

#contenido{
	width:1004px;
	background-color: #ffffff;
}

#contenido-ficha{
	background:#ffffff; background: url(../imagenes/img-ficha-fondo1.jpg);
	background-repeat: no-repeat;
}

#contenido-contacto{
	background:#ffffff; background: url(../imagenes/img-ficha-fondo1.jpg);
	background-repeat: no-repeat;
	padding-top:94px;
}

/*Formulario*/
#form-contacto label{
	display: block;
	float: left;
	width: 73px;
	padding-right: 8px;
	text-align:right;
	color:#747575;
}

#form-contacto input {
	width: 256px;
	margin-bottom: 5px;
	border: 1px solid #c7c7c7;
	background-color: #c7c7c7;
  	color: #333;
}

#form-contacto input.mensaje{
	width: 256px;
	height: 129px;
	margin-bottom: 5px;
	border: 1px solid #c7c7c7;
	background-color: #c7c7c7;
}

#form-contacto input.boton{
	width:52px;
	margin-bottom: 5px;
	border: none;
}

#contenido-companyia{
	background:#ffffff; background: url(../imagenes/img-companyia-fondo1.jpg);
	background-repeat: no-repeat;
}
#contenido-noticias{
	background:#ffffff; background: url(../imagenes/img-ficha-fondo1.jpg);
	background-repeat: no-repeat;
}

UL.consquare { list-style-type: square; color:#000; }

#listado-productos #paginacion{
	padding:4px; 
	margin-right:10px; 
	margin-top:10px; 
	border-top: 1px solid #a9a9a9;
}

#listado-productos #paginacion a{
	color:#4f4e4e;
}

#listado-productos #paginacion a.hover{
	color:#4f4e4e;
	font-weight:bold;
}

#listado-productos #paginacion-registros{
	padding:4px; 
	text-align:center;
}

#idioma_activo{
	color:#d3381a;
}


#lista-idiomas a{
	font-weight:bold;
	color:#858383;
}

#boton-acciones{
	width: 97px;
	height: 20px;
	background: Silver url(../imagenes/btn-acciones.png) no-repeat top;
	text-align: center;
	cursor: pointer;
}
#boton-acciones .texto{
	color: #545454;
	font-size: 8pt;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 15pt;
}
#boton-acciones .texto:hover{
	color: #A52A2A;
}

.submit{
	color:#858383;	
}

.submit:hover{
	color:#d43714;
}
