/* ARCHIVO GENERAL DE ESTILOS DE COMPOSICIÓN GRÁFICA DE LA ENCICLOPEDIA ONLINE DE FILOSOFíA - ESTILOS PARA VISION EN MONITOR O PANTALLA */

@import "estilos_texto.css";

body {
  font-family: 'Open Sans', sans-serif;
  background: #CDCDB4;
  margin: 0px;
  height:100%;
}

img {
  border: 0px;
}

a {
  word-wrap: break-word;
}

a:link {
  text-decoration: none; 
  color: navy;
}

a:visited {
  text-decoration: none; 
  color:navy;
}

a:active {
  text-decoration: none; 
  color: navy;
}

a:hover {
  text-decoration: underline; 
}

div#contenedor {
  margin-top:20px;
  background: transparent;
  position: absolute;
  width:100%;
}

div#parte_izquierda {
  background: transparent;
  position: fixed;
  width: 150px;
  left: 0px;
  top: 0px;
  height: 100%;
  padding: 0px 0px 0px 0px;
}

div#logo {
  background: transparent url("../imagenes/logo_azul.png") no-repeat center;
  left: 0px;
  top: 0px;
  height: 170px;
  width: 150px;
}

div#logo:hover {
  background: gray url("../imagenes/logo_azul.png") no-repeat center;
  left: 5px;
  top: 5px;
  height: 170px;
  width: 150px;
  border: thin solid goldenrod; 
  border-radius: 5px;
  padding: 0px 0px 5px 5px; /* top right bottom left */
}

div#barra_lateral {
  background: transparent;
  left: 0px;
  top: 190px;
  width: 150px;
  height: 100%;
  padding: 0px 10px 20px 10px; /* top right bottom left */
}

div#issn {
  text-align: right;
  font-size: 0.9em;
  font-weight: bold;
  color: navy;
  line-height: 200%;
  padding: 10px 40px 10px 0px;
  text-shadow: 0 1px 1px #000;
}

div#mini_logo {
  background: transparent  url("../imagenes/mini_logo_azul.png");
  height: 27px;
  width: 130px;
  padding: 0px 0px 0px 0px; /* top right bottom left */
  }


div#logo_PUSC {
  background: transparent;
  height: 62px;
  width: 130px;
  padding: 15px 0px 0px 0px; /* top right bottom left */
  }


div#copyright {
  background: transparent;
  width: 130px;
  padding: 10px 0px 10px 0px; /* top right bottom left */
  text-align: center;
  font-size: 0.7em;
  font-weight: bold;
  text-shadow: 0 0.5px 0.5px #000;
}

div#parte_derecha {
  background: transparent;
  position: absolute;
  text-align:left;
  top: 0px;
  left: 150px;
  right: 10px;
  padding: 0px 10px 10px 10px;
}

div#frontispicio {
  background: transparent;
  background-image:url("../imagenes/eof_azul.png");
  background-repeat:no-repeat;
  position: relative;
  height: 170px;
  padding-bottom:0px;
}

div#encabezado {
  visibility: hidden;
  position: absolute;
}

div#contenido {
  background-color: #FFFFFF;
  position: relative;
  border: 1px solid goldenrod;
  border-radius: 15px;
  padding: 30px 100px 30px 100px; /* top right bottom left */
}

div.noimprimir {
}


div#pie {
  visibility: hidden;
  position: absolute;
}

div#indice {
  background-color: transparent;
  width: 58em;
  margin: 0 auto 0 auto;
  height: 2em;
  padding: 0px 0px 0px 0px; /* top right bottom left */
}

div.elemento_indice {
  float:left;
  background: #CDCDB4;
  border: 2px solid goldenrod;
  border-radius: 5px;
  height: 2em;
  width: 1.5em;
  text-align: center;
  color: blue;
  font-size: 1.1em;
  font-weight: bold;
  text-shadow: 0 1px 1px #000;
  padding-top: 0.2em;

}div.elemento_indice:hover {
  float:left;
  background: #27408B;
  border: 2px solid goldenrod;
  border-radius: 5px;
  height: 2em;
  width: 2em;
  text-align: center;
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  text-shadow: 0 1px 1px #000;
  padding-top: 0.2em;
}

/* css del menú general, tomados de la página CSS MenuMaker (http://cssmenumaker.com/) y modificados para adecuarlos al estilo de Philosophica */

#menu_general,
#menu_general ul,
#menu_general li,
#menu_general a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-size: 1em;
  position: relative;
}
#menu_general a {
  line-height: 1.3;
  padding: 6px 15px;
}
#menu_general {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 150px;
}
#menu_general > ul > li {
  cursor: pointer;
  background: #CDCDB4;
  border-bottom: 1px solid #BEBEA7;
}
#menu_general > ul > li:last-child {
  border-bottom: 1px solid #BEBEA7;
}
#menu_general > ul > li > a {
  font-size: 0.8em;
  display: block;
  color: navy;
  text-shadow: 0 1px 1px #000;
  background: #CDCDB4;
  background: -moz-linear-gradient(#CDCDB4 0%, #BEBEA7 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #CDCDB4), color-stop(100%, #BEBEA7));
  background: -webkit-linear-gradient(#CDCDB4 0%, #BEBEA7 100%);
  background: linear-gradient(#CDCDB4 0%, #BEBEA7 100%);
}
#menu_general > ul > li > a:hover {
  text-decoration: none;
}
#menu_general > ul > li.active {
  border-bottom: none;
}
#menu_general > ul > li.active > a {
  background: #27408B;
  background: -moz-linear-gradient(#27408B 0%, #2B4699 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #27408B), color-stop(100%, #2B4699));
  background: -webkit-linear-gradient(#27408B 0%, #2B4699 100%);
  background: linear-gradient(#27408B 0%, #2B4699 100%); 
  color: #FFFFFF;
  text-shadow: 0 1px 1px #2B4699;
}
#menu_general > ul > li.has-sub > a:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  border: 5px solid transparent;
  border-left: 5px solid goldenrod;
}
#menu_general > ul > li.has-sub.active > a:after {
  right: 14px;
  top: 12px;
  border: 5px solid transparent;
  border-top: 5px solid #FFFFFF;
}
/* Sub menu */
#menu_general ul ul {
  padding: 0;
  display: none;
}
#menu_general ul ul a {
  background: #CDCDB4;
  display: block;
  color: navy;
  font-size: 0.7em;
  text-shadow: 0 1px 1px #000;
}
#menu_general ul ul li {
  border-bottom: 1px solid goldenrod;
}
#menu_general ul ul li.odd a {
  background: #BEBEA7;
}
#menu_general ul ul li:last-child {
  border-bottom: 1px solid goldenrod;
}
