/* Elementos que queremos limpiar completamente: */
* {
	margin: 0;
	padding: 0;
	border: none;
}
html {
	background: #557100 url(../img/fondo.png) repeat-x scroll center top;
	font: 11px Verdana, Lucida, Verdana, sans-serif;
	color:#666666;
	line-height:18px;
	text-shadow: #000 0px 0px 0px;/* Elimina el efecto bold en Safari */
}
ul {
	list-style: none;
	list-style-type: none;
}

/* Ajustes tipográficos */
h3, h4, h5, h6, p, pre,
blockquote, ul, ol, dl, address {
	font-weight: normal;
	margin: 0 0 10px 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;
}
code, kbd, samp, pre, tt, var, input[type='text'], textarea {
	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-family: "Georgia", Arial, Helvetica, sans-serif;
	font-size:24px;
	font-weight:bold;
	letter-spacing:-1px;
	line-height:24px;
	padding:0px 75px 5px 0px;
	color:#CC6600;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#CC6600;
	text-align:left;
	padding:15px 0px 15px 30px;
}
h3 {
	font-family: "Georgia", Arial, Helvetica, sans-serif;
	font-size:14px;
}
h4 {
	font-family: "Georgia", Arial, Helvetica, sans-serif;
	font-size:12px;
}
h5 {
	font-family: "Georgia", Arial, Helvetica, sans-serif;
	font-size:10px;
}
h6 {
	font-family: "Georgia", Arial, Helvetica, sans-serif;
	font-size:8px;
}

/*** LINKS: Recuerda utilizar siempre la regla del LoVe-HAte ***/
a, a:link, a:visited, 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:hover {
	text-decoration:underline;
}
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;
}