/* SCREEN */
/*
Elementos HTML:
En este CSS se definen las reglas que corresponen a los elementos comunes a todas las páginas.
Son básicamente elementos de la interfaz como contenedores generales, cabecera, pie, clases CSS, etc.
*/

/* COLORES */
/*

Rojo					#e32d2e
Rojo Oscuro				#fc6565
*/


/* Elementos HTML
---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------*/
body
{
	background: #fff url(../../img/css/bg/body.gif) repeat-x;
	color: #333;
	font-family: Tahoma, Helvetica, Arial, sans-serif;
	font-size: .75em;
}

/* @group headings */

h1, h2, h3, h4, h5, h6
{
	font-family: Helvetica, Arial,'Lucida Sans Unicode', 'Lucida Grande', LucidaGrande,'Lucida Sans', sans-serif;
	line-height: 1em;
	margin: 0 0 .25em 0;
}

h1
{
	font-size: 2em;
	width: 530px;
}

h2
{
	font-size: 1.6em;
}

h3
{
	font-size: 1.2em;
}

h4
{
	font-size: 1em;
}

h5
{
	font-size: 1em;
}

h6
{
	font-size: 1em;
}



/* @end */
a
{
	color: #e32d2e;
	text-decoration: underline;
}
a:hover
{
	color: #fc7e7e;
}

acronym,
abbr {
	border-bottom: 1px dotted;
	cursor: help;
}

q,
blockquote
{
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	line-height: 1.25em;
}

blockquote
{
	border: 1px solid #ddd;
	font-size: 1.8em;
	padding: 1em;
}

blockquote cite
{
	display: block;
	font-size: .65em;
	margin: 1em 0 0 0;
}

cite
{
	
}

kbd
{
	background: #eee;
	border-top: .15em solid #ccc;
	border-right:.25em solid #aaa;
	border-bottom:.3em solid #888;
	border-left:.2em solid #bbb;
	color: #000;
	font-size: .9em;
	font-weight: normal;
	font-family: "Lucida console", Courier, monospace, sans-serif;
	line-height: 2em;
	padding: .05em .2em;
}

/* @group lists */

ul li,
ol li
{
	background-image: url(../../img/css/bullets/li.gif);
	margin: 0 0 .5em 0;
}

ul li,
ol li,
dt,
dd
{
	background-repeat: no-repeat;
	padding: 0 0 0 1.25em;
}

dl
{
}

dt, dd
{
	margin: 0 0 .15em 0;
}

dt
{
	background-image: url(../../img/css/bullets/dt.gif);
	font-weight: bold;
}

dd
{
	
}



/* @end */

/* @group forms */

form
{

}

fieldset
{
	background: #fff;
	border: 1px solid #ccc;
	border-top: 4px solid #ccc;
	margin: 0 0 1.5em 0;
	padding: 1em;
}

legend
{
	border: 1px solid #ccc;
	font-family: Helvetica, Arial,'Lucida Sans Unicode', 'Lucida Grande', LucidaGrande,'Lucida Sans', sans-serif;
	font-size: 1.25em;
	font-weight: bold;
	margin: 0;
	padding: .25em .5em;
}

label
{
	font-weight: bold;
	margin: 0 0 .25em 0;
	display: block;
}

optgroup
{
	font-style: normal;
}

option
{
	background: #fff;
	cursor: pointer;
	padding: 0 0 0 1em;
}

input,
button,
select,
optgroup,
option,
textarea
{
	background-color: #fff;
	font-family: Tahoma, Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
}

input,
button,
select,
textarea
{
	border: 1px solid #999;
}

select,
input,
button,
textarea
{
	padding: .25em;
	margin: 0 0 .5em 0;
}

input,
button,
textarea
{
	background: #fff url(../../img/css/bg/input.gif) repeat-x;
}

textarea
{
	overflow: auto;
}

input:hover,
button:hover,
select:hover,
textarea:hover
{
	border: 1px solid #333;
}

input:focus,
button:focus,
select:focus,
textarea:focus
{
	background: #fff;
	border: 1px solid #ccc;
}



/* @end */

/* @group tables */
table, caption, thead, th, tr, td
{
	border: 1px solid #ccc;
	border-collapse: collapse;
	border-spacing: 0;
}

table
{
	margin: 0 0 1em 0;
	width: 100%;
}

caption
{
	font-family: 'Lucida Sans Unicode', 'Lucida Grande', LucidaGrande,'Lucida Sans', Geneva, Helvetica, Arial, sans-serif;
	font-size: 1.35em;
	padding: .35em .5em;
}

th
{
	font-weight: bold;
	text-align: left;
}

th,
td
{
	padding: .5em;
	vertical-align: top;
}

/* @group thead */

thead
{
	background: #000;
	color: #fff;
}

/* @end */

/* @group tbody */

tbody
{
	
}

/* @end */

/* @group tfoot */

tfoot
{
	
}

/* @end */



/* @end */