@charset "utf-8";
/* CSS Document */

/*Affects entire layout*/
body {	
	color: #6a6fd6;
	font-family: georgia;
	font-size: 10px;
}

/*Affects content headers*/
.head {
	position: relative; 
	top: 0px; 
	left: 0px; 
	font: 14pt georgia; 
	color: #7f9bd9;
	text-transform: capitalize;
	border-bottom: dashed 1px #7f9bd9;	
}

p:first-letter {
	position: relative; 
	top: 0px; 
	left: 0px; 
	font-style: iatlic;
	font-size: 45px;
	font-family: Edwardian Script ITC, georgia; 
	color: #7f9bd9;
	text-transform: capitalize;
} 
 
h2.two {
	position: relative; 
	top: -20px; 
	font: italic 10pt georgia; 
	color: #866174; 
	margin-left: 50px; 
	margin-bottom: -15px; 
}

/*Affects images*/
.image {
	float: left;
	margin-right: 5px;
}

/*Affects links*/
a:link {
	font-family: georgia;
	font-size: 10px;
	font-style: italic;
	color: #875E73;
	text-decoration: none;
}

a:active {
	font-family: georgia;
	font-size: 10px;
	font-style: italic;
	color: #875E73;
	text-decoration: none;
}

a:visited {
	font-family: georgia;
	font-size: 10px;
	font-style: italic;
	color: #875E73;
	text-decoration: none;
}

a:hover {
	font-family: georgia;
	font-size: 10px;
	font-style: italic;
	color: #5345AD;
	background-color: #ffffff;
	text-decoration: line-through;
}

/*Changes style of bolded and underlined text*/
b,strong {
	color: #875E73;
	border-right: #5345AD 4px solid;
	font-family: georgia;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: normal; 
}
 
u {
	color: #875E73;
	border-bottom: #5345AD 1px dotted;
	font-family: georgia;
	letter-spacing: 0px;
	font-size: 10px; 
}

/*Stylizes input areas and textareas*/
select, input, textarea {
	border: dashed 1px; 
	border-color: #5345AD;
	font-family: georgia; 
	font-size: 10px; 
	color: #875E73;
	background-color: #ffffff; 
}

