/* From original home page-2/2004 */
/* taken care of in reset.css */
/* img {border: 0px solid ; padding: 0 0 0 0; margin: 0 0 0 0;} */
/* wedge in some basic HTML5 behavior */
section, article, header, footer, nav, aside, hgroup { display: block;}
/*************************** Positioning *******************************/
#logo {
  background-color: white;
  height:114px;
  padding: 4px 0px 4px 4px;
  width:183px;
}
p, p.normal, p.byline, p.footnote, p.continued {
    margin: 11pt 0 .0001pt 0;
    font-family: "Times New Roman", "Liberation Serif", serif;
}
p.byline {
    margin-top: 4pt;
    font-style:italic;
}
p.footnote {
    margin-top: 0pt;
}
p.continued {
    font-style: italic;
    margin-top: 4pt;
    text-align: right;
}
.colhead, 
.colheadlight {
  font-family:"Tahoma Bold","Liberation Sans",Arial,Trebuchet, sans-serif;
  font-weight: bold;
  color:#666;
  margin: 0 0 .0001pt 0;
}
h2.colheadlight, 
p.colheadlight {
  color: white;
  background-color:transparent;
}
/* Added - LW 3/2004 - the text on the left*/
p.NavLink,  li {
    font-family:"Tahoma Bold","Liberation Sans",Trebuchet,Helvetica,Arial,sans-serif;
    font-weight:normal;
    color: white;
    background-color:transparent;
}
ul.none, ul.NavLink, ul.navlink {
  list-style-type: none;
  margin-left: 0px ;
  padding-left: 0px;
}

/*************************** Anchors  *******************************/
/* Added - LW 3/2004 - the links on the right and left */
#rightcontent a:link, a:link {color: #FFFF00; text-decoration: none;}
#rightcontent a:visited, a:visited {color: #000080; text-decoration: none;}
#rightcontent a:hover, a:hover {color: #FFFF00; text-decoration: underline;}
#rightcontent a:active, a:active {color: #FFFFFF; text-decoration: none;}
#rightcontent h3 a:hover {color: black;text-decoration: none;}

/* Added - LW 3/2004 - the links in the essay text */
#centercontent a:link, a.TextLink:link {color: #000080; text-decoration: none;}
#centercontent a:visited, a.TextLink:visited {color: #800080; text-decoration: none;}
#centercontent a:hover, a.TextLink:hover {text-decoration: underline;}
#centercontent h3 a:hover {color: black;text-decoration: none;}

span.required {
  font-weight: bold;
  color: red;
  background-color: transparent;
  }
/* A little CSS3 rounded boxes effects */
div, fieldset {
  -webkit-border-radius: 10px; /* Safari prototype */
  -moz-border-radius: 10px; /* Gecko browsers */
  border-radius: 10px; /* Everything else - limited support at the moment */ 
}

/* fix the body centered - tr - 16-dec-2008 */
body {
  max-width:1008px; 
  min-height:800px; /* let the background drape below the shortest pages */
  padding-top: 18px;
  margin: 0 auto; 
  background-color: #000000;
  /* New CSS for background gradients - FF 3.6+ - see: 
  http://mindfly.com/blog/post/2010/02/26/Making-the-Grade-A-Primer-on-Linear-Gradients.aspx*/
  background: -moz-linear-gradient(top left -75deg, #ccf, #339) ;
  background: -webkit-gradient(linear, 0 top, 0 bottom, color-stop(0, #ccf), color-stop(1, #339));
  /* From http://robertnyman.com/2010/02/15/css-gradients-for-all-web-browsers-without-usingimages/ */ 
  /* For Internet Explorer 5.5 - 7 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#333399, endColorstr=#CCCCFF);
  /* For Internet Explorer 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#333399, endColorstr=#CCCCFF)";

}

/* ******************* FONTS ******************* */
/* Consolidate font info in one place. */
body {
  font-size: 62.5%;
  /* line-height: 1.2em; */
}
p {font-size: 0.9em; }
p.byline {font-size: 1em; }
.colhead, .colheadlight {font-size: 1.4em;line-height:1.4em; }
p.navlink {font-size: 1.1em; }
/* drop-shadow headlines */
h1 {text-shadow: 3px 3px 4px #a0937f;}
h2.colhead {text-shadow: 3px 3px 4px #ccc;}
h2.colheadlight {text-shadow: 3px 3px 4px #666; }

/* **************** Menu ******************** */
/* Animate the menu to make it more interesting */

#leftcontent .navlink li {
  height: 1.4em;
}
#rightcontent .navlink li {height: 1.4em;}
#leftcontent .navlink li a {
  /* display: block;*/ 
  padding:4px;
  -webkit-border-radius: 6px; /* Safari prototype */
  -moz-border-radius: 6px; /* Gecko browsers */
  border-radius: 6px; /* Everything else - limited support at the moment */ 
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.navlink li a:hover {
  background-color:lightgray;
  background-color:rgba(255,255,255,0.5);
  color: yellow;
  text-decoration:none;
  text-shadow: 1px 1px 1px gray;
}

/* More 'wow' if the client asks 
*:hover { 
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
 }
*/

