
/* setting the main values for the website */

body {
	font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
	background:#FFFFFF;
	color:#000000;
}

/*setting headings */

h1 {
   font-family: Arial, Verdana, sans-serif;
   color: #3000bb; 
}


h2, h3, h4 {
   font-family: Arial, Verdana, sans-serif;
   /*  color: #333399 */
}

/* end of setting headings */

/* setting the link attributes */

a img {
   border: none
}

a {
   text-decoration: none;
   font-weight: bold;
   font-family:Arial, Verdana, sans-serif
}

a:link {
   color: #0000aa;
   font-family:Arial, Verdana, sans-serif

}

a:visited {
   color: #330066;
   font-family:Arial, Verdana, sans-serif

}
a:hover {
   cursor: pointer;
   color:  #ffffff;
   background-color:#333399;
   font-family:Arial, Verdana, sans-serif


}
a:active {
   color: #330066;
   font-family:Arial, Verdana, sans-serif

}

.fade {
   font-weight:bold;
   cursor:text;
   background-color:#eeeeff;
   color:#888888;
}


a.b {
   font-family: "Comic Sans MS", cursive, sans-serif;
}
/* end of link attributes */



/* class settings */


.bigger {
   font-size:larger;
}

.small {
   font-family: Arial, Verdana, sans-serif;
   font-size: smaller
}

/* sets the box and font for quotations in the text */
.quote {
   padding: 10px 10px 10px 10px;
      font-family:Courier, "Times New Roman", serif;
   background-color:#eeeeee;
   border-style: none;
}

/* sets the box for longer comments needing more padding (eg disclaimer notice)  */
.comment {
   font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
   background-color:#ffffff;
   border-width:1px; 
   border-style:solid;
   border-color:#aaaaaa; 
    padding: 10px 10px 10px 10px   
}

/* sets the box and font for shorter comments needing less padding (eg note about links opening in new window) */
.smallcomment {
   font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
   font-size: smaller;
   background-color:#ffffff;
   border-width:1px;
   border-style:solid;
   border-color:#aaaaaa; 
     padding: 5px 5px 5px 5px   
}

/* comment with small fonts */
.tinycomment {
   font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
   font-size: smaller;
   background-color:#ffffff;
   border-width:1px;
   border-style:solid;
   border-color:#aaaaaa;
     padding: 5px 5px 5px 5px   
}

p.c {
   font-size: smaller
}


/* formatting from bluerobots to use styles to place elements on the page.  */

/* All the content boxes belong to the content class. */
.content {
   position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
   width:auto;
   min-width:120px;
   margin:0px 200px 20px 200px;
   font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
   padding:10px;
   z-index:3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
   }

.contentcenter {
   position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
   width:auto;
   min-width:120px;
   margin:0px 200px 20px 200px;
   font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
   text-align: center;
   border:1px;
   border-color:#eeeeff;
   padding:10px;
   z-index:3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
   }

.menu {
   background-color:#eeeeff;
   font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
   font-weight:bolder;
   font-size:smaller;
   color:#000000;
   padding:0 0 0 10px;
   
}

#navAlpha {
   position:absolute;
   width:160px;
   top:10px;
   left:20px;
   line-height:1.5em;
   border: 0px;
      /*background-color:#eeeeff;
   font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
   font-weight:bold;
   font-size:smaller;
   color:#888888; */
   padding:20px 10px 10px 10px;
   z-index:2;
/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity.
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style
declaration. The incorrect IE5/Win value is above, while the correct value is
below. See http://glish.com/css/hacks.asp for details. */
   voice-family: "\"}\"";
   voice-family:inherit;
   width:160px;
   }
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct
length values to user agents that exhibit the parsing error exploited above yet get
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#navAlpha {width:160px;}

#navBeta {
   position:absolute;
   width:160px;
   top:30px;
   right:20px;
   border: 0px;
   background-color:#eeeeff;
   font-family: "Trebuchet MS", Arial, Verdana, sans-serif;
   font-size: smaller;
   padding:10px;
   z-index:1;
/* Again, the ugly brilliant hack. */
   voice-family: "\"}\"";
   voice-family:inherit;
   width:160px;
   }
/* Again, "be nice to Opera 5". */
body>#navBeta {width:160px;}
