﻿/* ID Selectors - to distinguish a single item from other items on a single page */

   /* Ex) #footer */


/* Element Selectors - to modify all instances of these html elements */

a:link {
	color: #993300
} 

a:visited {
	color: #996600
}

body {
	margin: 0; 
	background-image: url('images/LRR_PaperBackTile.jpg');
}

div#bodywrapper { 
	width: 900px; 
	margin: 0px auto;  /* This statement centers the bodywrapper! */ 
/*	background-color:lime; */
}

div#header a img {
	border: none;
}

div#pagename h2 {
	color: #000000;
	padding-left: 18px;
}

h1 {
	font: normal normal bold x-large serif;
	text-align: center;
	padding-top: 1px;
	padding-bottom: 1px;
	margin-bottom: 1px;
	margin-top: 1px;
}

h2 {
	text-align: left
}
 
h3 {
	text-align: left
}
 
hr {
	width: 75%;
	height: 1px;
}

li {
	padding-bottom: 15px;
}

p {
	text-align: left
}

ul {
	text-align:left
}

/* Class Selectors - to apply the same properties multiple items in one or more pages */

.OneColumn {
    clear:both;
    margin:20px;
}

.TwoColumnLeft {
	float: left;
	width: 450px;
	text-align: center;
	clear:left;
	margin-bottom:21px;
/*	background-color:green; */
}

.TwoColumnRight {
	float: left;
	width: 450px;
	text-align: center;
	margin-bottom:21px;
/*	background-color:blue; */
}

.ThreeColumnLeft {width:35%;
    			  float:left;
    			  clear:both;
/*	background-color:red; */
}

.ThreeColumnCenter {width:29%;
					float:left;
/*	background-color:blue; */
}

.ThreeColumnRight {width:35%;
				   float:left;
/*	background-color:green;  */
}

.LinkTextStyle {
	font-size: large;
	text-align: center;
}

.TextAlignCenter {
	text-align:center
}

.TextRed {
	color: #FF0000;
}

.TextGreen {
	color: #008000;
}

.TextMaroon {
	color: #800000;
}

