/* home.css */
/* written by Rosalinda StMatthew */
/* copyright 2003 DoubleObsession */

/* home.html */





/* Sets the background, colors and main font faces.  Duh. */

body {
	
	color: rgb(179, 217, 255);
	background-color: rgb(0, 0, 0);
	background-image: url("../bar/000.jpg");
	background-repeat: repeat-x;
	font-family: "tempus sans itc", tahoma, arial, helvecta, sans-serif;
	padding-top: 65px;
	text-align: center;
	}





/* Controls the appearance of the unvisited link. */

a:link {

	color: rgb(179, 217, 255);
	text-decoration: none;
	font-weight: bold;
	padding: 2px;
	} 





/* Controls the appearance of the visited link. */

a:visited {
	
	color: rgb(179, 217, 255);
	text-decoration: none;
	background-color: rgb(0, 0, 0);
	padding: 2px;
	}





/* Controls the appearance of a link during mouseover.  Does not work in Netscape 4. */

a:hover {

	color: rgb(0, 0, 0);
	background-color: rgb(179, 217, 255);
	padding: 2px;
	}





/* Controls the appearance of a link whilst clicking.  Does not work in Netscape 4. */

a:link:active {

	color: rgb(179, 217, 255);
	background-color: rgb(0, 0, 0);
	padding: 2px;
	}





/* Places the main text under the 'bar'. */

.main {

	padding-left: 90px;
	padding-right: 90px;
	padding-top: 50px;
	}





/* Provides padding to separate the 'fiction' and 'nonfiction' links. A quick fix that does not work in Netscape 4, and renders oddly in IE 5. */

.division {
	
	padding-left: 80px;
	padding-right: 120px;
	}

