/* CSS Document */

h1  {
    font-family:Arial, Helvetica, sans-serif; 
	font-size: 225%;
	font-weight: bold;
	color: #000;
	margin-top: 0px;
	margin-bottom: 15px;
	line-height: 135%;
	EditMenuName: Heading 1;
}   

h2 {  
	font-family:Arial, Helvetica, sans-serif;
	font-size: 115%;
	font-weight: bold;
	color: #000;
	margin-top: 0px;
	margin-bottom: 8px;
	line-height: 125%;
	EditMenuName: Heading 2;  
} 
h3 {  
	font-family:Arial, Helvetica, sans-serif;
	font-size: 125%;
	font-weight: bold;
	color: #000;
	margin-top: 0px;
	margin-bottom: 15px;
	line-height: 135%;
	EditMenuName: Heading 3;   
} 
h1,h2,h3 {  
    /* top & bottom margin based on font size */  
     margin:1em 0;   
} 
h1,h2,h3,h4,h5,h6,strong {  
     /*bringing boldness back to headers and the strong element*/  
     font-weight:bold;    
} 
   
em {  
    /*bringing italics back to the em element*/  
    font-style:italic;   
}  
ol,ul,dl {  
    /*bringing lists on to the page with breathing room */  
    margin-left:2em;   
} 
ol li {  
    /*giving OL's LIs generated numbers*/  
    list-style: decimal outside;       
} 
ul li {  
    /*giving UL's LIs generated disc markers*/  
    list-style: disc outside;   
} 
dl dd {  
    /*giving UL's LIs generated numbers*/  
    margin-left:1em;   
} 
th,td {  
    /*borders and padding to make the table readable*/  
    /*border:1px solid #000;   */
    padding:.5em;   
} 
th {  
    /*distinguishing table headers from data cells*/  
    font-weight:bold;   
    text-align:left;   
} 
caption {  
    /*coordinated marking to match cell's padding*/  
    margin-bottom:.5em;   
    /*centered so it doesn't blend in to other content*/  
    text-align:left;   
} 
p,fieldset,table {   
    margin-bottom:1em;   
}  

.clearBoth {
	clear:both;
	height: 4px;
}
.clearLeft {
	clear:left;
}
.clearRight {
	clear:right;
}