@charset "utf-8";
/* CSS general rules */
/*these are rules that are not specific to any project */
/*but rather can be easily reused in many projects */

/*****************************/
/*result styling for result/error messages*/
/*****************************/
#phpResult {
	font-family: "Courier New", Courier, monospace;
	color: blue;
	font-weight: bold;
	text-align: center;
}
#phpResult p {
	margin: 0px;
	padding: 0px;
}
#phpError {
	text-align: center;
	color: #F00;
	font-weight: bold;
	font-family: "Courier New", Courier, monospace;
}
#phpError p {
	margin: 0px;
	padding: 0px;
}
/***********************
/*general link styling */
/***********************/
a:link {
	text-decoration: none;
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #651111;
}
a:visited {
	text-decoration: none;
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #540e0e;
}
a:hover {
	text-decoration: none;
	font-size: 18px;
	color: #000;
	font-family: Georgia, "Times New Roman", Times, serif;
}
/************************/
/*general form styling */
/*these are styles that you generally want on all forms */
/*more specific rules can be added later */
/************************/
form {
	margin: 0px, auto;
	width: 600px; /*just a generic number for the purpose of centering with margin*/
}
input {
	width: 400px;
	margin-bottom: 10px;
}
select {
	margin-bottom: 10px;
}
label {
	display: block;
	margin-bottom: 5px;
}
.submitbutton {
	margin-top: 10px;
	width: 120px;
	display: block
}
textarea {
	margin-bottom: 10px;
	width: 300px;
	height: 200px;
}
/*login form... must be in a form with ID loginform */
#loginform input {
	width: 200px;
	margin-bottom: 10px;
}
#loginform label {
	display: block;
	margin-bottom: 5px;
}
#loginform {
	padding: 40px;
	width: 200px;
	margin: 0px auto;
}
#loginform .submitbutton {
	width: 100px;
	display: block;
}
/******************
/*other random classes and such */
/******************/
.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/*images wont have borders by default. takes away link borders */

img {
border: none;
}



