/* start standard html elements */
body{
font-family:Arial,sans-serif;
font-size:12px;
text-align:center;
}
a:link, a:visited,a:hover{
color:#0066FF;
text-decoration:none;
}
a:hover{
color:#000000;
}
h1,h2,h3,h4,.lower a:link, .lower a:visited, .lower a:hover{
font-family:Georgia, Times New Roman, Times, serif;
}
h3{
width:100%;
clear:both;/** kinda redundant **/
text-align:center;
font-size:1.1em;
margin:0px;
margin-bottom:5px;
padding:0px;
}
h4{
font-size:.9em;
padding-left:1%;
}
/* end standard html elements */
/* start custom classes */
.container{
width:100%;
/** will add some more stuff here eventually, but for now, wanted to make sure there was something other than body that wrapped all**/
}
.mainlogo
{
width:100%;
background-color: #FFFFFF;
border-bottom-style:solid;
border-bottom-color:#FFCC33;
border-bottom-width:medium;
padding-bottom:1%;
}
.maintext{
width:100%;
text-align:left;
padding-top:15px;
padding-bottom:15px;
}
.maintext span{
float:left;
width:49%;
text-align:right;
margin:0px;
padding:0px;
}
.maintext p{
width:auto;
margin:0px;
padding:0px;
padding-bottom:10px;
padding-left:1%;
padding-right:1%;
}
/** a half-assed wrap, so I don't have to do so much markup to override maintext assigns **/
.form input, .form textarea{
float:left;
width:100%;
clear:both;
}
.form span{
width:auto;
clear:none;
margin-top:10px;	
}
.form p{
float:left;
width:98%;
clear:both;
}
.center{
text-align:center;
}
.center p{
width:98%;
}
.navbar {
width: 100%;
padding:0px;
margin:0px;
font-size:1.3em;
}
.navbar li{
list-style-type:none;
padding:30px;
padding-top:0px;
display:inline;
}
.lower{
background-color:#FFCC33;
font-size:1.0em;
color:#000000;
padding-top:7px;
padding-bottom:30px;
border-top-style:solid;
border-top-color:#999999;
border-top-width:2px;
}
.lower a:link, .lower a:visited, .lower a:hover{
color:#0066FF;
font-weight:bold;
}
.lower a:hover{
color:#000000;
}
/** to turn float on and off for ie **/
.f{
float:left; /* I really need to find a way to make FF display bgcolor and border without a float **/
}
.border{
border-width:2px;
border-style:solid;
border-color:#999999;
}

/* stuff from w3.com for accessiblity etc. */
/* Begin bidirectionality settings (do not change) */
BDO[DIR="ltr"]  { direction: ltr; unicode-bidi: bidi-override }
BDO[DIR="rtl"]  { direction: rtl; unicode-bidi: bidi-override }

*[DIR="ltr"]    { direction: ltr; unicode-bidi: embed }
*[DIR="rtl"]    { direction: rtl; unicode-bidi: embed }

/* Elements that are block-level in HTML4 */
ADDRESS, BLOCKQUOTE, BODY, DD, DIV, DL, DT, FIELDSET, 
FORM, FRAME, FRAMESET, H1, H2, H3, H4, H5, H6, IFRAME,
NOSCRIPT, NOFRAMES, OBJECT, OL, P, UL, APPLET, CENTER, 
DIR, HR, MENU, PRE, LI, TABLE, TR, THEAD, TBODY, TFOOT, 
COL, COLGROUP, TD, TH, CAPTION 
                { unicode-bidi: embed }
/* End bidi settings */


@media print {
  @page         { margin: 10% }
  H1, H2, H3,
  H4, H5, H6    { page-break-after: avoid; page-break-inside: avoid }
  BLOCKQUOTE, 
  PRE           { page-break-inside: avoid }
  UL, OL, DL    { page-break-before: avoid }
}

@media speech {
  H1, H2, H3, 
  H4, H5, H6    { voice-family: paul, male; stress: 20; richness: 90 }
  H1            { pitch: x-low; pitch-range: 90 }
  H2            { pitch: x-low; pitch-range: 80 }
  H3            { pitch: low; pitch-range: 70 }
  H4            { pitch: medium; pitch-range: 60 }
  H5            { pitch: medium; pitch-range: 50 }
  H6            { pitch: medium; pitch-range: 40 }
  LI, DT, DD    { pitch: medium; richness: 60 }
  DT            { stress: 80 }
  PRE, CODE, TT { pitch: medium; pitch-range: 0; stress: 0; richness: 80 }
  EM            { pitch: medium; pitch-range: 60; stress: 60; richness: 50 }
  STRONG        { pitch: medium; pitch-range: 60; stress: 90; richness: 90 }
  DFN           { pitch: high; pitch-range: 60; stress: 60 }
  S, STRIKE     { richness: 0 }
  I             { pitch: medium; pitch-range: 60; stress: 60; richness: 50 }
  B             { pitch: medium; pitch-range: 60; stress: 90; richness: 90 }
  U             { richness: 0 }
  A:link        { voice-family: harry, male }
  A:visited     { voice-family: betty, female }
  A:active      { voice-family: betty, female; pitch-range: 80; pitch: x-high }
}
