/* Neurigen.css */
/* Copyright(c)2007 Jonathan D. Lettvin, All Rights Reserved */

@page {
  size: landscape;
}

.Cajal {
/*  background-image:url('http://lettvin.net/CajalBackground2.jpg'); */
  //background-image:url('http://lettvin.net/grid.png');
  font-family:serif;
  font-weight:600;
}


h1,h2,h3,h4,h5,h6 {
  /* color:           blue; */
  text-align:        center;
  page-break-before: always;
  /* text-decoration: underline; */
}

body {
  background-color: white;
  position:         center;
  margin:           1px;
  background-image: url('grid.png');
  /* background-image: url('CajalBackground2.jpg'); */
}

table {
  page-break-before: avoid;
  page-break-after:  avoid;
  page-break-inside: avoid;
}

table.main {
  margin-top:       3px;
  background-color: #FFC;
  border:           3px double rgb(0,0,0);
}

img {
  border-width: 1px;
  border-color: black;
}

lh {
  font-size:   120%;
}

p {
  text-indent:      20px;
}

td.redbox {
  color:            black;
  background-color: white;
  border-color:     white;
  border-style:     solid;
  border-width:     3px;
  margin-top:       3px;
  margin-bottom:    1px;

  /* IE requires functions to hover of tags other than A tags */
  h: expression(
         onmouseout= new Function(
             "this.style.color='black';" +
             "this.style.borderColor='white';" +
             "this.style.backgroundColor='white';"),
         onmouseover = new Function(
             "this.style.color='black';" +
             "this.style.backgroundColor='white';" +
             "this.style.borderColor='red';")
           );
}

td.redbox:hover {
  color:            black;
  background-color: white;
  border-color:     red;
}
