/*
 * principal.css
 * Hoja de estilos principal para la web de Sinestesia
 *
 * (C) 2005, Daniel Callejas Sevilla
 * danics@correo.ugr.es
 */


/* Cuerpo y estructura general */

body {
	background: #b2b2b2;

	font-family: Tahoma, helvetica, sans-serif;
	font-size: 9pt;
}

#contenedor_principal {
	margin: 5px;
	padding-top: 20px;
	padding-bottom: 25px;
	padding-left: 2em;
	padding-right: 2em;

	border-left: 1px solid black;
	border-top: 1px solid black;
	border-right: 4px solid #777;
	border-bottom: 4px solid #777;

	background: white;
}

#cabecera {
	text-align: center;
	margin: 0;
	background: url(../img/fondo-banner.jpg) no-repeat center;
}

#cabecera img#banner_principal {
	border: none;
}

#escudos {
	text-align: center;
	position: relative;
	top: 40px;
	margin-top: -10px;
	padding: 20px;
	background: #ddd;
	clear: both;
}

#autor {
	position: relative;
	right: 5px;
	top: 60px;
	text-align: right;
	font-size: 7pt;
}


ul#indice_contenido {
	display: block;
	margin: 0;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 0;
	text-align: center;
	clear: both;
}

ul#indice_contenido li {
	display: inline;
	border: none;
	padding-bottom: 4px;
	line-height: 2em;
	position: relative;
}
ul#indice_contenido li.separador {
	display: inline;
	border: none;
	border-left: 2px dotted #777;
	margin-left: 4px;
	margin-right: 0px;
	background: white;
}

ul#indice_contenido li a {
	text-decoration: none;
	border: 1px outset black;
	margin-left: 2px;
	margin-right: 1px;
	padding: 2px;
	color: inherit;
}

ul#indice_contenido li.sub_1 {
	border-bottom: 3px solid #0F0;
	color: green;
}
ul#indice_contenido li.sub_1:hover {
	background: #DFD;
	border-bottom: 7px solid #0F0;
}
ul#indice_contenido li.sub_2 {
	border-bottom: 3px solid #F00;
	color: red;
}
ul#indice_contenido li.sub_2:hover {
	background: #FEE;
	border-bottom: 7px solid #F00;
}
ul#indice_contenido li.sub_3 {
	border-bottom: 3px solid #00F;
	color: navy;
}
ul#indice_contenido li.sub_3:hover {
	background: #EEF;
	border-bottom: 7px solid #00F;
}
ul#indice_contenido li.sub_4 {
	border-bottom: 3px solid #0CC;
	color: #099;
}
ul#indice_contenido li.sub_4:hover {
	background: #DFF;
	border-bottom: 7px solid #0CC;
}
ul#indice_contenido li.sub_5 {
	border-bottom: 3px solid #CC0;
	color: #880;
}
ul#indice_contenido li.sub_5:hover {
	background: #FFC;
	border-bottom: 7px solid #CC0;
}
ul#indice_contenido li.sub_6 {
	border-bottom: 3px solid #F0F;
	color: #909;
}
ul#indice_contenido li.sub_6:hover {
	background: #FDF;
	border-bottom: 7px solid #F0F;
}



ul#indice_contenido li a:hover {
	border: 1px solid black;
}

/* Esta parte de aquí no va bien en IE */
	ul#indice_contenido li ul.subindice_contenido {
		display: none;
		position: absolute;
		padding: 3px;
		padding-top: 10px;
		border-right: 2px solid black;
		border-bottom: 2px solid black;
		border-left: 2px solid black;
		z-index: 3;
	}

	ul#indice_contenido li:hover ul.subindice_contenido {
		display: block;
		position: absolute;
		top: 1.4em;
		background: inherit;
	}

	ul#indice_contenido li ul.subindice_contenido li {
		display: block;
		line-height: 1em;
		margin-top: 10px;
		padding: 0px;
	}

	ul#indice_contenido li ul.subindice_contenido li a {
		border: none;
		border-bottom: 1px dotted black;
	}
/* Fin de la parte que no va bien en IE */



.seccion_inactiva {
	font-weight: normal;
}
.seccion_activa {
	font-weight: bold;
}

#bandera_idioma {
	float: right;
}


/* Detalles genéricos */

h2 {
	color: #C44;
	border-bottom: 2px solid #C44;
	padding-left: 2em;
	margin-top: 3em;
	margin-bottom: 1em;
}

h3 {
	color: #B55;
	border-bottom: 1px solid #B55;
/*	padding-left: 3em;*/
	margin-top: 2em;
	margin-bottom: 0.5em;
	width: 55%;
}

h4 {
	color: #C66;
	font-weight: bold;
	font-style: italic;
}

a {
	color: green;
	text-decoration: underline;
}

a:hover {
	color: olive;
	text-decoration: underline;
}

a img {
	border: 0;
}


strong {
	font-weight: bold;
	/*color: navy;*/
}

em {
	font-style: italic;
	font-weight: bold;
	color: olive;
}

.nota_al_margen {
	float: right;
	margin: 12pt;
	border-left: 1px solid green;
	border-top: 1px solid green;
	border-right: 3px solid olive;
	border-bottom: 3px solid olive;

	width: 40%;
	background: white;

	padding: 1em;
}

.importante {
	font-size: 110%;
	font-weight: bold;
	background: #FF9;
}

li {
	margin-bottom: 6pt;
}

li p {
	margin: 3pt;
}

a.enlace_grande {
	text-decoration: none;
}

th {
	text-align: left;
}

abbr {
	border: none;
}

abbr:after {
	content: " [" attr(title) "]";
	font-size: 80%;
}