body {	
background: #F8EAB8;	
font-family: Times New Roman, Times;	
color: #000080;	
margin-left: 50px; 	
margin-right: 50px; 	
}	

table tr td {	
border:0px solid red;	
border-collapse:collapse;	
padding:3px 10px 3px 10px;
}		

.altrow {	
background: #F0E3B0;	
}

.altrowleft {	
background: #F0E3B0;	
border-radius: 5px 0px 0px 5px;	
-webkit-border-radius: 5px 0px 0px 5px;    
-moz-border-radius: 5px 0px 0px 5px;  	
}	

.altrowright {	
background: #F0E3B0;	
border-radius: 0px 5px 5px 0px;	
-webkit-border-radius: 0px 5px 5px 0px;    
-moz-border-radius: 0px 5px 5px 0px;  	
}	

.chapterhead {	
background: #96A7BB;	
}	

.chapterheadleft {	
background: #96A7BB;	
border-radius: 5px 0px 0px 5px;	
-webkit-border-radius: 5px 0px 0px 5px;    
-moz-border-radius: 5px 0px 0px 5px;  	
}

.chapterheadright {	
background: #96A7BB;	
border-radius: 0px 5px 5px 0px;	
-webkit-border-radius: 0px 5px 5px 0px;    
-moz-border-radius: 0px 5px 5px 0px;  	
}

.sectionhead {	
background: #D5B785;	
}

.sectionheadleft {	
background: #D5B785;	
border-radius: 5px 0px 0px 5px;	
-webkit-border-radius: 5px 0px 0px 5px;    
-moz-border-radius: 5px 0px 0px 5px;  	
}

.sectionheadright {	
background: #D5B785;	
border-radius: 0px 5px 5px 0px;	
-webkit-border-radius: 0px 5px 5px 0px;    
-moz-border-radius: 0px 5px 5px 0px;  	
}	

.subsectionhead {	
background: #F0E3B0;	
}

.imagemap {	
border: 1px solid #000080; 
padding: 0px	border-radius: 5px 5px 5px 5px;	
-webkit-border-radius: 5px 5px 5px 5px;    
-moz-border-radius: 5px 5px 5px 5px;  	}

.roundbutton {
width:50px; /*same as the height*/
height:50px; /*same as the width*/
background-color:#ff0000;
border:1px solid #ff0000; /*same colour as the background*/
color:#fff;
font-size:0.8em;
/*set the border-radius at half the size of the width and height*/
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
/*give the button a small drop shadow*/
-webkit-box-shadow: 0 0 10px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 10px rgba(0,0,0, .75);
box-shadow: 2px 2px 15px rgba(0,0,0, .75);
}
/***NOW STYLE THE BUTTON'S HOVER STATE***/
.roundbutton:hover{
background:#c20b0b;
border:1px solid #c20b0b;
/*reduce the size of the shadow to give a pushed effect*/
-webkit-box-shadow: 0px 0px 5px rgba(0,0,0, .75);
-moz-box-shadow: 0px 0px 5px rgba(0,0,0, .75);
box-shadow: 0px 0px 5px rgba(0,0,0, .75);
}
