body { text-align: center;							/* defines attributes for the body of the page */
       background-color: #ffffcc					
}
.main { width: 600px;	 							/* defines attributes for the main division*/
	    margin-left: auto;							
	    margin-right: auto;							/* this division is 600px (pixels) wide */		
	    margin-top: 10px;							/*    and will be used as a container for */
	    padding: 0px;								/*    the other divisions */
	    z-index: 1 	 								/* z-index determines the level of the division */
}	    
.title { width: 600px;								/* defines attributes for the title division */
		 padding: 0px;								/* float determines if the division */
		 float: none;								/*    is aligned right or left of other text */
		 text-align: center 						
}
.menu { width: 180px;								/* defines attributes for the menu division */
	    padding: 0px;								
	    float: left;								
	    z-index: 5;									
	    font-family: "Trebuchet MS", Arial;			/* font-family sets the font and any alternates used */
	    font-size: 14px;			 				
	    color: #040152;								/* color determines the color of the font */
	    line-height: 16px;							/* line-height sets the spacing of lines of text */
	    text-align: left 
}		
.indexcont { width: 420px;							/* defines the attributes for the main division */
		     padding: 0px;							/*    of the index (home) page */
		     float: left;
		     z-index: 5;
		     font-family: "Trebuchet MS", Arial;
		     font-size: 14px;
		     color: #040152;
		     text-align: right 
}	    
.content { width: 420px; 	   		 	  			/* defines the attributes for the main division */
	       padding: 0px;							/*    of all other pages */
	       float: left;
	       z-index: 5;
	       font-family: "Trebuchet MS", Arial;
	       font-size: 14px;
	       color: #040152;
	       line-height: 18px;
	       text-align: left 
}     
h1 { font-size: 18px;  		 	   			  		/* defines the attributes for the level-one heading */
	 font-family: Tahoma, Verdana, Georgia;
	 font-weight: bold;
	 color: #2b8787 
}	 
.sub { font-size: 14px;	  		   		   			/* defines the attributes for the sub-headings */
	   font-family: Arial;
	   text-decoration: underline;					/* sets underlining for the text */
	   color: #040152 
}
table { border-style: none;							/* defines the attributes for the overall table layout */
		padding-top: 2px;
		padding-bottom: 2px;
		padding-right: 2px;
		padding-left: 2px 
}
td { border-style: solid;  							/* defines the attributes for the cells that contain */
	 border-width: 1px;								/*    the data in the table */
	 border-color: #040152;
	 font-size: 14px;
     font-family: Arial;
     text-align: left;
     vertical-align: top;  							/* moves the cell data to the top of the cell */
     width: 33% 	 								/* sets the cell width to 33% of the width of it's container */
}     
.library { border-style: none;						/* defines the attributes for the horseshoe bend */
		   font-size: 14px;							/*    library counties table */
		   font-family: Arial;
		   width: 125px 
}		   
.update { border-style: none; 						/* defines the attributes for the update blurb */
  		  font-size: 14px;							/*    on the index (home) page */
		  font-family: Arial 
}
a { font-family: Arial;		 						/* defines the attributes for the links */
    font-size: 14px;
    text-decoration: none;
    color: #1452c3 
}
a:hover { text-decoration: underline;				/* defines the attributes for the links when */
          color: #120cfd   							/*    the mouse is resting over the link */
}
.minia { font-family: Arial;						/* defines the attributes for the smaller size */
	     font-size: 10px;							/*    links */
		 text-decoration: none;
		 color: #1452c3
}	    
.current { font-family: Arial; 						/* defines the attributes for the page name link */
		   font-size: 10px;							/*    when the page is the current page */
		   text-decoration: underline;
		   color: #120cfd 
}		   
.initcap { font-family: "Times New Roman";			/* defines the attributes for larger initial letters */
		   font-size: 26px;	   	   					/*    used on some paragraphs */
		   font-weight: bold;
		   color: #2b8787 
}		   
.highlight { background-color: #ffff00 				/* defines the highlight color for highlighted items */
}