/* ------------------------------------------------------------------
 * Fichero:  prnet.css
 * Objetivo: Hoja de estilos de pedroreina.net
 * Autor:    Pedro Reina
 * Fecha:    J.9.2.2006
--------------------------------------------------------------------*/

/* Cuerpo */

BODY
  {
  color: black;
  background-color: white;
  font-family: sans-serif;
  margin: 10px;
  }


/* Párrafos */

P.centrado
  {
  text-align: center;
  }


/* Vínculos */

A
  {
  color: #F20000;
  text-decoration: none;
  }

A:visited
  {
  color: #B01000;
  }

A:active
  {
  color: #FF0000;
  background: yellow;
  }

A:hover
  {
  color: #F20000;
  background: #EEE;
  }


/* Tablas */

table
  {
  margin-left: auto;
  margin-right: auto;
  }


/* Listas */

UL
  {
  list-style-type: square;
  }


/* Imágenes */

IMG.sinborde
  {
  border: none;
  }

IMG.seguido
   {
   margin-top: 2px;
   margin-bottom: 2px;
   border-color: gray;
   border-width: 1px;
   }

IMG.seguido:hover
   {
   border-color: black;
   }


/* Especial */

.orden
  {
  font-family: monospace;
  background: #EEE;
  padding: 5px;
  border-style: solid;
  border-color: #000;
  border-width: 1px;
  }

.corta
  {
  width: 33%;
  }


/* DIV */

DIV.cuadro
  {
  margin-bottom: 10px;
  margin-bottom: 10px;
  padding: 2px;
  border-style: solid;
  border-color: #ccc;
  border-width: 2px;
  }

DIV.titulo1
  {
  padding: 10px;
  background-color: #cacaff;
  text-align: center;
  font-size: x-large;
  }

DIV.titulo2
  {
  padding: 10px;
  background-color: #cacaff;
  text-align: center;
  font-size: large;
  font-weight: bold;
  }

DIV.titulo3
  {
  padding: 10px;
  background-color: #cacaff;
  text-align: center;
  font-weight: bold;
  }

DIV.contenido
  {
  padding: 10px;
  }


/* SPAN */

SPAN.cuadrado
  {
  width: 150px;
  height: 150px;
  border: solid gray 1px;
  float: left;
  margin: 3px;
  background-repeat: no-repeat;
  background-position: center center;
  }

SPAN.cuadrado:hover
  {
  border-color: black;
  }

