﻿/* PAGE LAYOUT */

#titlebar {
position: absolute;
left: 1%;
width: 99%;
height: 100px;
top: 1px;
background: #0080b4;
}

#menubar {
position: absolute;
left: 1%;
width: 20%;
top: 101px;
}

#maincontent {
position: absolute;
left: 21%;
width: 79%;
top: 101px;
background: #ffffff;
padding: 20px 0px 10px 0px;
border-top: 1px solid #0080b4;
border-left: 1px solid #0080b4;
}


/* NAVIGATION BAR, INCLUDING MOUSE-HOVER EFFECTS */
/* CSS COOKBOOK: PAGES 74-78 */
/*COLORS: #fbd7a1 = light orange */
/* #d4ecfb = pale blue  */
/* #8dcff4 = light blue */
/* #0469b3 = medium blue */



#menubar {
font-size: 15px; 
font-weight: bold; 
font-variant: small-caps;
font-family: verdana, arial, sans-serif;
border-left: 1px solid #0080b4;
border-right: 1px solid #0080b4;
border-bottom: 5px solid #0080b4;
padding: 0;
margin-bottom: 1em;
margin-top: 0;
background-color: #8dcff4;
}

#menubar ul {
list-style: none;
margin: 0;
padding: 0;
border-bottom: 3px solid #0080b4;
border-top: 0;
}

#menubar ul li {
margin: 0;
border-top: 2px solid #0080b4;
}

#menubar ul li a {
display: block;
padding: 2px 2px 2px 2px;
border-left: 10px solid #fbd7a1; 
border-right: 1px solid #fbd7a1; 
border-bottom: 1px solid #fbd7a1; 
border-top: 1px solid #fbd7a1;
background-color: #d4ecfb;
color: #000000;
text-decoration: none;
width: 100%;
}

html>body #menubar ul li a {
width: auto;
}

#menubar ul li a:hover {
border-left: 10px solid #0469b3; 
border-right: 1px solid #fbd7a1; 
border-bottom: 1px solid #fbd7a1; 
border-top: 1px solid #fbd7a1;
background-color: #fbd7a1; 
color: #000000; 
}



/* TEXT FORMATTING */

h1 {
font-family: verdana, arial, sans-serif; 
font-size: 30px; 
color: #ffffff;
}

h2 {
font-family: verdana, arial, sans-serif; 
font-size: 20px; 
color: #000000;
background: #d4ecfb;
padding: 0px 0px 0px 5px;
margin: 10px 0px 5px 2px;
border-left: 5px solid #0080b4;
}
/* Please note that the h2 heading on the main site includes a border-bottom; this is excluded here as it causes oddities with the formatting */ 

h3 {
font-family: verdana, arial, sans-serif; 
font-size: 18px; 
color: #000000;
padding: 0px 0px 0px 5px;
margin: 10px 0px 0px 2px;
}

h4 {
font-family: verdana, arial, sans-serif; 
font-size: 15px; 
font-weight: bold; 
color: #000000;
padding: 5px 0px 0px 15px;
margin: 0;
}

h5 {
font-family: verdana, arial, sans-serif; 
font-size: 14px; 
font-weight: bold; 
color: #00000;
padding: 5px 0px 0px 5px;
margin: 0;
}
/*Please note that h5 left margins differ between the archive and the main site; on the main site margin-left = 15px in order to indent this heading more */
/* on the archive, this throws off the story titles; IT MUST BE LEFT AT 5PX!*/

h6 {
font-family: verdana, arial, sans-serif; 
font-size: 12px; 
font-weight: bold; 
color: #00000;
padding: 5px 0px 0px 15px;
margin: 0;
}

p {
font-family: verdana, arial, sans-serif; 
font-size: 12px;
color: #000000;
padding: 0px 0px 10px 15px;
margin: 0;
}

blockquote {
font-family: verdana, arial, sans-serif; 
font-size: 11px;
color: #000000;
padding: 10px 0px 10px 5px;
border-left: 1px solid #0080b4;
}

p.faqanswer {
font-family: verdana, arial, sans-serif; 
font-size: 12px;
padding-left: 20px;
}

a:link, a:visited {
color: #0080b4; 
text-decoration: none;
font-weight: bold;
}

a:hover {
color: #f1a269; 
text-decoration: none;
font-weight: bold;
}

a.special {
color: #d4ecfb;
}

/* For use on the menu bar */
/* For some reason, these are not displaying correctly without #menubar specified. Please leave this in. */
/* p.menutitle provides the orange-backed title for use in the menubar */
#menubar p.menutitle {
font-family: verdana, arial, sans-serif; 
font-size: 14px; 
font-weight: bold;
background-color: #fbd7a1;
color: #000000;
margin: 0px 5px 0px 5px;
padding: 0px 0px 0px 5px;
border: 1px solid black;
}

/*p.quote provides the bordered box of text for use in the menu bar */
#menubar p.quote {
border: 1px solid black;
color: #000000;
font-variant: normal;
font-weight: normal;
font-size: 11px;
font-family: verdana, arial, sans-serif; 
background-color: #d4ecfb;
margin: 0px 5px 5px 5px;
padding: 5px 0px 10px 5px;
}

/*p.quotetwo provides the bordered box of CENTERED text for use in the menu bar */
#menubar p.quotetwo {
text-align: center;
margin: 5px;
border: 1px solid black;
color: #000000;
font-variant: normal;
font-weight: normal;
font-size: 11px;
font-family: verdana, arial, sans-serif; 
background-color: #d4ecfb;
margin: 0px 5px 5px 5px;
padding: 5px 0px 10px 5px;
}

/*p.footer provides the style for the copyright notice and disclaimer in the menu bar */
#menubar p.footer {
color: #000000;
font-variant: normal;
font-weight: normal;
font-size: 9px;
font-family: verdana, arial, sans-serif; 
margin-top: 0px 5px 5px 5px;
}

#maincontent ol li {
font-family: verdana, arial, sans-serif; 
font-size: 12px;
padding: 0px 20px 10px 10px;
}

#maincontent ul li {
font-family: verdana, arial, sans-serif; 
font-size: 12px;
padding: 0px 20px 10px 10px;
}

#maincontent li {
padding-bottom: 0px 0px 10px 0px;
}

li.nomarker {
list-style-type: none;
}


/* "general" provides basic text formating */

#general {
font-family: verdana, arial, sans-serif; 
font-size: 12px;
color: #000000;
padding-left: 10px;
}

#general h1 {
font-family: verdana, arial, sans-serif; 
font-size: 30px; 
color: #ffffff;
}

#general h2 {
font-family: verdana, arial, sans-serif; 
font-size: 20px; 
color: #000000;
background: #d4ecfb;
padding: 0px 0px 0px 5px;
margin: 10px 0px 5px 2px;
border-left: 5px solid #0080b4;
}
/* Please note that the h2 heading on the main site includes a border-bottom; this is excluded here as it causes oddities with the formatting */ 

#general h3 {
font-family: verdana, arial, sans-serif; 
font-size: 18px; 
color: #000000;
padding: 0px 0px 0px 5px;
margin: 10px 0px 0px 2px;
}

#general h4 {
font-family: verdana, arial, sans-serif; 
font-size: 15px; 
font-weight: bold; 
color: #000000;
padding: 5px 0px 0px 15px;
margin: 0;
}

#general h5 {
font-family: verdana, arial, sans-serif; 
font-size: 14px; 
font-weight: bold; 
color: #00000;
padding: 5px 0px 0px 5px;
margin: 0;
}
/*Please note that h5 left margins differ between the archive and the main site; on the main site margin-left = 15px in order to indent this heading more */
/* on the archive, this throws off the story titles; IT MUST BE LEFT AT 5PX!*/

#general h6 {
font-family: verdana, arial, sans-serif; 
font-size: 12px; 
font-weight: bold; 
color: #00000;
padding: 5px 0px 0px 15px;
margin: 0;
}

#general p {
font-family: verdana, arial, sans-serif; 
font-size: 12px;
color: #000000;
padding: 0px 0px 10px 15px;
margin: 0;
}

.redtext {
  color: #d1004b;
}

#general blockquote {
font-family: verdana, arial, sans-serif; 
font-size: 11px;
color: #000000;
padding: 10px 0px 10px 5px;
border-left: 1px solid #0080b4;
}

#general a:link, a:visited {
color: #0080b4; 
text-decoration: none;
font-weight: bold;
}

#general a:hover {
color: #f1a269; 
text-decoration: none;
font-weight: bold;
}

#general a.special {
color: #d4ecfb;
}

#general ol li {
font-family: verdana, arial, sans-serif; 
font-size: 12px;
padding: 0px 20px 10px 10px;
}

#general ul li {
font-family: verdana, arial, sans-serif; 
font-size: 12px;
padding: 0px 20px 10px 10px;
}

#general li {
padding-bottom: 0px 0px 10px 0px;
}

#general li.nomarker {
list-style-type: none;
}

hr {
    height:1px;
    width:100%;
    background:#000000;
}

/* FORMATS TABLE ON INDEX PAGE */

td {
  padding: 3px;
}

td#titlecell {
  border: 1px solid black;
  background: #fbd7a1;
  color: black;
  font-family: verdana, arial, sans-serif; 
  font-size: 15px; 
  font-weight: bold; 
}

td#contentcell {
  border: 1px solid black;
  background: #d4ecfb;
  color: black;
  font-family: verdana, arial, sans-serif; 
  font-size: 12px;
}

td#whitetitlecell {
  border-bottom: 1px solid black;
  background: white;
  color: #0080b4;
  font-family: verdana, arial, sans-serif; 
  font-size: 15px; 
  font-weight: bold; 
}

td#whitecell {
  border: 0;
  background: white;
  color: black;
  padding-top: 10px;
  font-family: verdana, arial, sans-serif; 
  font-size: 12px;
}

td#whitecellwithborder {
  border: 1px solid black;
  background: white;
  color: black;
  font-family: verdana, arial, sans-serif; 
  font-size: 12px;
}