/*LSC Cascading Style Sheet - sample1.html*/

/* Styles*/ 

/*Tag selector, exported from dreamweaver file -- sets font (family, size, color) and sets background color for page -dark gray and text is brown*/

body {

	font-family: Verdana, Arial, Helvetica, sans-serif;

	font-size: 12px;

	color: #996666;

	background-color: #666666;

}

/*Tag selector, exported from dreamweaver file - sets text size, color (maroon), and aligns left*/

p {

font-size: 12px;

color: #990033;

text-decoration: none;

text-align: left;

}



/* These are Pseudo-Class Selectors */

/*Links are maroon, 12 px, font is set*/

a:link {

	color: #993300;

	text-decoration: none;

	font-family: Verdana, Arial, Helvetica, sans-serif;

	font-size: 12px;

}

/*On visit, text turns black*/

a:visited {

	text-decoration: none;

	color: #993300;

}

/*On hover, text turns black, background of text turns gray*/

a:hover {

	text-decoration: none;

	color: #000000;

	background-color: #CCCCCC;

}

/*On active, text color changes to dark gray*/

a:active {

	text-decoration: none;

	color: #666666;

}



/*These are Tag Selectors */

/*heading one is 18px, same color as table border-maroon*/

h1 {

	font-size: 18px;

	color: #663300;

}

/*heading two is 16px, maroon bold*/

h2 {

	font-size: 16px;

	color: #663333;

	font-weight: bold;

}

/*heading three is 14px, dark purple*/

h3 {

	font-size: 14px;

	color: #660000;

}



/* This is a Type Selector */

/*poem titles are black, font is set, 12px, bold*/

.poemtitle {

	font-family: Verdana, Arial, Helvetica, sans-serif;

	font-size: 12px;

	font-weight: bold;

	color: #333300;

	text-decoration: none;

}



/* This is an ID Selector */

/*sets table layout with background- med gray and border -brown and width outside*/

#tablelayout {

	background-color: #D5D2D2;

	width: 800px;

	border: 5px solid #663300;

}



/*This is a Tag Selctor for the Table */

/*sets the table borders inside to 1px, solid, black and gives 5px of padding all around, and collapses border (which apparently does not work in Netscap Nav 6.0)*/

table, th, td {

	border: 1px solid #000000;

	border-collapse: collapse;

	padding: 5px 5px 5px 5px;

}
#td1 {
	border-right-width: 0px;
	border-right-style: none;
}

/*This is an ID selector*/

/*Puts color of brown on dividers, small bold caps for text*/

#topnav {

	color: #990000;

	font-size: small;

	font-variant: small-caps;

	font-weight: bold;

}

/*Sets text to 10px bold*/

#leftnav {

	font-size: 12px;

	font-weight: bold;

	text-decoration: none;

}

/*Sets text to small, bold, makes dividers purplish-blue*/

#botnav {

	font-size: small;

	font-weight: bold;

	color: #990000;

}

/* End Styles */
