@charset "utf-8";
/*this is for the whole page, sets default font attributes and centers page in browser.*/
body {
	margin: 20px 20px 15px 20px;
	padding: 0px;
	color: #333333;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 10px;
	background:url(images/bkg-green.jpg) repeat-x;
}
/*attributes for default links, no underlines, */
a:link, a:active, a:visited {
	text-decoration: none;
	Color:#333333;
}
/*attributes for hovering over default links, no underlines & changes color */
a:hover {
	text-decoration:none;
	COLOR: #648b70;
}
/*classes for different colored text and link behavior*/
.white, .white a:link, .white a:visited {
	COLOR: #FFFFFF;
}
.white a:hover {
	COLOR: #CECECE;
}
.blue, .blue a:link, .blue a:visited {
	COLOR: #7692b8;
}
.blue a:hover {
	COLOR: #5a708f;
}
.green, .green a:link, .green a:visited {
	COLOR: #648b70;
}
.green a:hover {
	COLOR: #75a985;
}
.yellow, .yellow a:link, .yellow a:visited {
	COLOR: #b8b681;
}
.yellow a:hover {
	COLOR: #9f9d70;
}
.red, .red a:link, .red a:visited {
	COLOR: #9d6e6a;
}
.red a:hover {
	COLOR: #815a67;
}
/*these are for the main header tags, customize these for headers over creating new style*/
h1 {
	margin-top: 0px;
	margin-bottom:5px;
	font-size: 14px;
}
h2 {
	margin-top: 0px;
	margin-bottom:0px;
	font-size: 10px;
}
/*if need to change space above or below all paragraphs*/
p {
	margin-top: 10px;
	margin-bottom: 10px;
}
/*Unordered List, if you're making a bulleted list, this changes indent and such.*/
ul {
	margin-top:0px;
	padding-left:20px;
}
/*this is the outer container, telling it margins from the edges of browser. */
.container {
	margin: 0 auto;
}
.content {
	width:1020px;
	background-color:#FFFFFF;
	text-align:left;
}
/*padding can be applied to a td (cell) tag or to image if placing it within a box*/
.padding {
	padding-left: 15px;
	padding-right: 15px;
}
.col1 {
	width:295px;
	padding:0px 15px 0 30px;
	float:left;
	text-align:center;
}
.col2 {
	width:310px;
	padding:0px 15px 0 15px;
	float:left;
	text-align:center;
}
.col3 {
	width:295px;
	padding:0px 30px 0 15px;
	float:left;
	text-align:center;
}
.col23 {
	width:630px;
	padding:0px 30px 0 15px;
	float:left;
	font-size:12px;
	line-height:17px;
}
.col123 {
	padding:0px 30px 0 30px;
	font-size:12px;
	line-height:17px;
}

.colinside {
	padding:0px 30px 0 15px;
	text-align:left;
	font-size:12px;
	line-height:17px;
	float:left;
}

.clear {
	clear:both;
}