/*Dreamweaver Cascading Style Sheet - COP 2823
d3pt.css to use with d3pt.html*/

/* Styles*/ 

/*Tag selector, exported from dreamweaver file -- sets font (family, size, color) and sets background color for page*/
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #0033FF;
	background-color: #9966FF;
}
/*Tag selector, exported from dreamweaver file - sets text size, color, and aligns left*/
p {
font-size: 12px;
color: #6666ff;
text-decoration: none;
text-align: left;
}

/* These are Pseudo-Class Selectors */
/*Links are purple, 12 px, font is set*/
a:link {
	color: #9933ff;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
/*On visit, text turns dark blue*/
a:visited {
	text-decoration: none;
	color: #9933FF;
}
/*On hover, text turns black, background of text turns light blue*/
a:hover {
	text-decoration: none;
	color: #000000;
	background-color: #99CCFF;
}
/*On active, text color changes to medium blue*/
a:active {
	text-decoration: none;
	color: #0099FF;
}

/*These are Tag Selectors */
/*heading one is 18px, same color as table border*/
h1 {
	font-size: 18px;
	color: #6C00D9;
}
/*heading two is 16px, purple bold*/
h2 {
	font-size: 16px;
	color: #9933CC;
	font-weight: bold;
}
/*heading three is 14px, light purple*/
h3 {
	font-size: 14px;
	color: #9933FF;
}

/* This is a Type Selector */
/*poem titles are blue, font is set, 12px, bold*/
.poemtitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #6666FF;
	text-decoration: none;
}

/* This is an ID Selector */
/*sets table layout with background and border and width*/
#tablelayout {
	background-color: #F0E1FF;
	width: 800px;
	border: 5px solid #6C00D9;
}

/*This is a Tag Selctor for the Table */
/*sets the table borders inside to 1px, solid, purple 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 #6C00D9;
	border-collapse: collapse;
	padding: 5px 5px 5px 5px;
}
/*This is an ID selector*/
/*Puts color of purplish-blue on dividers, small bold caps for text*/
#topnav {
	color: #8080ff;
	font-size: small;
	font-variant: small-caps;
	font-weight: bold;
}
/*Sets text to 10px bold*/
#leftnav {
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
}
/*Sets text to small, bold, makes dividers purplish-blue*/
#botnav {
	font-size: small;
	font-weight: bold;
	color: #8080FF;
}
/* End Styles */