﻿/*		Creates fixed background image for page, and places margin and border	*/

body {
	background-attachment: fixed;
	margin: 35px 35px 45px 35px;
	/*background-color:#141414*/
}


/*		All text with class red, will have red font color	*/

.red {
	color: red;
}

.blue {
	color: blue;
}


/*		Formatting to images */

.thumb {
	width: 80px;
	height: 60px;
}

.scale {
	width:800px;
	height:600px;
}


p {
	font-family: arial, sans-serif;
	font-size: 11pt;
	/*color:#00AE00;
*/	text-align: center;
	background: rgba(255,255,255,0.3);}

p1 {
	font-family: arial, sans-serif;
	font-size: 12pt;
	/*color: #00AE00;
*/	text-align: left;}



/*		peusdo-element creating first letter of paragraph in larger font	*/

p1:first-letter {
	font-size: x-large;
}


/*		Settings for h1 and h2	*/

h1 {

	font-family: Georgia, serif;

	text-decoration: underline;

	font-size: 18pt;

	font-weight: bold;

	text-align: center;

	/*color: #00AE00;

*/	text-transform: capitalize;

}


h2 {

	font-family: Georgia, serif;

	text-decoration: underline;

	font-size: 16pt;

	font-variant: small-caps;

	font-weight: bold;

	text-align: left;

	/*color: #00AE00;*/

	text-transform: capitalize;

}



/*		Settings for Hyperlink before being clicked, after being clicked and while mouse-over	*/
a {
	background: rgba(255,255,255,0.3);
}
a:link {
	font-family: arial, sans-serif;
	font-size: 11pt;
	font-weight: bold;
}

a:visited {
	font-family: arial, sans-serif;
	font-size: 11pt;
	font-weight: bold;
}

a:hover {
	font-family: arial, sans-serif;
	font-size: 11pt;
	color: red;
	font-weight: bold;
}


/*		Settings for table text		*/

/*h4 {
	font-family: arial, sans-serif;
	text-align:center;
	font-size: 12pt;
	color:#00AE00;
}

table {
	border:2px;
	border-style:solid;
	border-color:black;
	background-color:#141414;
}


tr {
	border:2px;
	border-style:solid;
	border-color:red;
}



td {
	font-family: arial, sans-serif;
	font-size: 11pt;
	text-align:center;
	color: #00AE00;
	width: 120px;
	border:1px;
	border-style:solid;
	border-color:black
}
*/

/*		List settings		*/

ul {
	
}

li {
	font-family:arial, sans-serif;
	font-size:11pt;
	color:#00AE00;
}


/*		Puts text into a column on left of page		*/

#left-align {
	width: 400px;
	position: relative;
	float: left;
	padding: 35px 10px 35px 10px;
}


/*		Squeezes text around other objects, mainly the history column	*/

#left-most {
	position: relative;
	float: left;
	padding: 35px 10px 35px 10px;
}

#centerparagraph {
	float: none;
}