/* CSS Document */

/* This style places the body background to the Country Chow-Chow yellow */
body {
	background-color: #ffff66;
	color:#000000;
	}
	
/* These styles format the hyperlinks with unique properties */

a:link {
	color: #990000;
	}
	
a:visited {
		color: #990000;
	}
	
a:hover {
		color: #0000ff;
	}
	
a:active {
		color: #990000;
	}

/* This style sets the paragraph styles */

p {
	margin-top: 0%;
	margin-right: 5%;
	margin-bottom: 1%;
	margin-left: 5%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	}
	
/* This class aligns the text to center */

.center {
	text-align: center;
	}

/* This class aligns the text to right */

.right {
	text-align: right;
	}
		
/* This defines the headers color and font family */

h1, h2, h3, h4, h5, h6 {
	color: #990000;
	font-family: Arial, Helvetica, sans-serif;
	}
	 
/* This separates the DIV tags from each other */
div {
	margin-top: 5%;
	margin-right: 5%;
	margin-bottom: 5%;
	margin-left: 5%;
	}