
/*Heading styles*/
 		
 		H1
 		{ 
 		color: darkblue; 
 		font-family: 'Times New Roman', 'Times', serif;
 		font-size: 42px; 
 		font-weight: 500
 		}

/*Body styles*/
	body {
	background: #cccc99; /*#0099ff*/
	margin: 0px;
	}
	
/*Line styles*/
		HR
		{
		height: 1px;
		width: 75%;
		color: #cccccc;
		}
/*Anchor styles*/
a {text-decoration: none}
a:hover {text-decoration: underline}
a.main {color: blue}
a.resource {color: red}
a.image {color: red}
a.ancillary {color: red}
a.external {color: navy}

/*Table styles*/

		TABLE
		{
		border-style: solid; 
		border-width: 0px; 
		border-collapse: collapse; 
		background: #ffffff /*#ccff99*/

		}

		TABLE.border 
		{
		border-top: 0px solid black;
		border-bottom: 0px solid black;
 		border-left: 2px solid #000000;
 		border-right: 2px solid #000000;
 		border-collapse: collapse;
 		background: #ffffff;
 		}
 		
		TABLE.noborder 
		{
		border-top: 0px solid black;
		border-bottom: 0px solid black;
 		border-left: 0px solid black;
 		border-right: 0px solid black;
 		border-collapse: collapse;
 		background: #ffffff;
 		}
 		
		TABLE.small
		{
		border-top: 1px solid gray;
		border-bottom: 1px solid gray;
 		border-left: 1px solid gray;
 		border-right: 1px solid gray;
		border-collapse: collapse; 
 		background: #ffffff;
 		width: 85%;
 		}