

/*Changes the effects of the font and font size of the body tags in the html
*/
body {
	font-family:Verdana, Geneva, Arial, sans-serif;
	font-size: small;
	}
	
/*changes the font weight, color and adds a border to the bottom for the h1 and h2 tags*/
h1, h2 {
			font-weight:normal;
			color: #cc6600;
			border-bottom:thin dotted #888888;
	}
	h1 {font-sieze:170%;
	}
	h2 {font-size:130%;
	}
	
	/*changes the font of the blockqyote in the main html*/
	blockquote {
				font-style: italic;
		}
		
	/*changes the ssize, border type, of the table*/
	table {
		margin-left:20px;
		margin-right:20px;
		border: thin solid black;
		caption-side: bottom;
		}
		/*changes the td,th tags to thin dotted gray*/
	td, th{
		border: thin dotted gray;
		padding: 5px;
	}
	caption{
		font-style:italic;
		padding-top: 8px;
		}
	table {
		margin-left: 20px;
		margin-right: 20px;
		border: thin solid black;
		caption-side:bottom;
		border-collapse: collapse;
	}
	
	th {
		background-color:#cc6600;
		}
		/*changing cell color*/
	.cellcolor {
		background-color:#fcba7a;
		}
		
	li { 
		list-style-type:square;
		}
		