/**
Name: maintSite.css
Description: Main Site Cascading Style Sheet
Created: 2005.07.23 - Stuart Tennant
Last Updated: 2005.12.08 - ST added #italic & #bold
**/

/**** Body ****/

body {
   background-image:url(../images/background.jpg); 
   background-repeat:repeat;
   background-position: center center;
   background-attachment: fixed;
   font-family:sans-serif;
   color:#FFFF00;
}
   
/**** Heading ****/

h1 {
   text-align:left; 
   font-weight:bold; 
   text-decoration:none; 
   font-size:110%; 
   color:#FFFF00;
}

h2 {
   text-align:left; 
   font-weight:bold;
   text-decoration:none;
   font-size:100%; 
   color:#FFFF00;
}

/**** Link ****/

a {
   text-align:left; 
   font-weight:normal;
   text-decoration:none;
   font-family:sans-serif;
   color:#FFFFFF; 
}

a:link, a:visited {
   color:#FFFF00;
}

a:active, a:hover {
   color:#000000;
   background-color:#FFFF00;
}

/****  Table Styles ****/

table {
   display:table;
   border-top-style:groove;
   border-top-width:medium;
   border-top-color:rgb(0,209,171);
   border-bottom-style:groove;
   border-bottom-width:medium;
   border-bottom-color:rgb(0,209,171);
   border-left-style:none;
   border-left-width:none;
   border-right-style:none;
   border-right-width:none;
   border-spacing:0;
   border-padding:0;
   margin-top:0;
   margin-bottom:0;
   width:100%;
}
td {
   display:table-cell;
   padding-top:2px;
   padding-bottom:2px;
   padding-left:5px;
   padding-right:2px;
}
th {
   display:table-cell;
   padding-top:2px;
   padding-bottom:2px;
   padding-left:2px;
   padding-right:5px;
   font-weight:bold;
}


/**** Tree Styles ****/

#tree{
   border-top-style:groove;
   border-top-color:#FFFF00;
   border-top-width:medium;
   border-bottom-style:groove;
   border-bottom-color:#FFFF00;
   border-bottom-width:medium;
   margin-top:10%;
   margin-bottom:10%
   left:5;
   width:100%;
   height:55%;
}
.trigger{
   cursor:pointer; 
   cursor:hand; 
   display:block;
}
.branch{
   display:none; 
   margin-left:16px;
}

/**** Miscellaneous ****/

#strike {
   text-decoration:line-through;
}   

#smalltext {
   font-size:75%;
}

#italic {
   font-style:italic;
}

#bold {
   font-weight:bold;
}

/** End CSS **/


