/*
	Theme Name: CSS inicial
	Theme URI: http://rudeworks.com/blog/css-inicial/
	Author: RUDE
	Author URI: http://rudeworks.com
	Version: 1.0
	Description: CSS básico con arreglos y selectores pre-configurados.
	*/
/*** HACKS PARA IE ***/
	/* Si tienes la necesidad de aplicar algún hack para IE6 utiliza este selector: */
*html p {
	height: 1%;
	margin-left: 0;
	text-align: justify;
	}
	/* Si necesitas aplicarlo a IE7 utiliza este:*/
*:first-child+html {
	}
/*** NEUTRALIZANDO ESTILOS:* 	elementos que queremos limpiar completamente: ***/
{margin: 0;padding: 0;border: none;}
	
html {
	/*font: 70% "Lucida Grande", Lucida, Verdana, sans-serif;*/
	text-shadow: #000 0px 0px 0px;/*Elimina el efecto bold en Safari*/
	color: #666666;
	font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif ;
	font-size: 12px;
	 }
/*fondo de grilla para maquetar*/
body{
	background-color: #b7ad70;
	background-image: url(images/fondos/fondobody.jpg);
	background-repeat: repeat-x;
	margin:0;
	/*SCROLLBAR-FACE-COLOR:#6699CC;
SCROLLBAR-HIGHLIGHT-COLOR: #6699CC;
SCROLLBAR-SHADOW-COLOR: #6699CC;
SCROLLBAR-3DLIGHT-COLOR: #FFFFFF;
SCROLLBAR-ARROW-COLOR: #FFFFFF;
SCROLLBAR-TRACK-COLOR: #E3E3E3;
SCROLLBAR-DARKSHADOW-COLOR: #000000;*/
}
/*** NEUTRALIZANDO ESTILOS:		elementos con margen vertical: ***/
	h1, h2, h3, h4, h5, h6, p, pre,
	blockquote, ul, ol, dl, address {
		font-weight: normal;
		margin: 0;
	}
/*** Algunos ajustes basicos: ***/
	sup {
		position: relative;
		bottom: 0.3em;
		vertical-align: baseline;
	}
	sub {
		position: relative;
		bottom: -0.2em;
		vertical-align: baseline;
	}
	dd, blockquote {
		margin-left: 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, select, textarea {
		font-size: 100%;
	}
	input:focus, select:focus, textarea:focus {
		background-color: #FFF;
	}
	fieldset {
		border: none;
	}
/*** Algunas clases útiles: ***/
	.clear {
		clear: both;
	}
	.float-left {
		float: left;
	}
	.float-right {
	float: right;
	display: block;
	}
	.helvetica {
		font-family: Arial, Helvetica, Geneva, sans-serif;
	}
	.item{
	border-bottom:1px solid #CCCCCC;
	padding-bottom: 10px;
	margin-top: 10px;
	}
	.item h1{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.3em;
	color: #6B654E;
	font-weight: bold;
	line-height: 1em;

	}

