/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: #757467 url(images/bg_site.jpg) repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td, address {
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p, li, td, and address tags */
p, li, td, address {
	font-size: 12px;
}
/* Sets the line-height for these tags */
p, td {
	line-height:12px;
}
li {
	line-height: 14px;
}
address {
	line-height: 14px;
	font-style: normal;
	}
/* CLASS to remove the top margin for ordered/unordered lists; it helps remove gaps between paragraphs and lists */
ul.nomargin, ol.nomargin, p.nomargin {
	margin-top: 0px;
}
/* CLASS to create columns for unordered lists */
ul.left {
	float: left;
	margin-left: 0px;
	margin-right: 50px;
	padding-bottom:10px;
	list-style-position: inside; 
	list-style-type: disc;
}
ul.left1 {
	float: left;
	margin-left: 0px;
	list-style-position: inside; 
	list-style-type: disc;
}
h1 {
	color: #355FAD;
	font-size: 24px;
	line-height: 20px;
	text-transform: uppercase;
	font-family: Helvetica, Verdana, Arial, sans-serif;
	padding: 0px;
	margin: 0px 0px 5px;
}

h2 {
	color: #000000;
	font-size: 16px;
	line-height: 16px;
	text-transform: uppercase;
	font-family: Helvetica, Verdana, Arial, sans-serif;
	padding: 0px;
	margin: 0px 0px 5px;
}

h1.pg1heading {
	background: url(images/pg1heading.gif) no-repeat;
	text-indent: -1500px;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Styles the DIV that serves as the container for the layout. Setting the left and right margins to auto will center DIV. */
div#container {
	border-bottom: 10px solid #fff;
	width: 768px;
	margin: 10px auto 0px;
	background: #ffffff url(images/layout.gif) repeat-y; /* Faux column bg for page */
}
/* Creates DIV container for header. */
div#header {
	width: 768px;
	margin: 0px auto;
	}
/* Creates DIV container for main content */ 
div#content {
	width: 295px;
	float: left;
	padding: 30px 10px 20px 25px;
	margin-left: 15px;
	background-image: url(images/logo_bottom.jpg);
	background-repeat: no-repeat;
}
/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 398px;
	float: right;
	padding: 0px 10px 10px 0px;
	text-align: center;
}
div#sidebar img.payment{
	margin: 10px 0px 10px 10px;
	float: center;
}
/* Creates DIV container for copyright statement */
div#copyrght {
	background: #000000 url(images/copyright.gif) no-repeat;
	color: #ffffff;
	font-size: 9px;
	width: 768px;
	margin: 0px auto;
	text-align: center;
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 10px 0px;
}
div#copyrght a {
	color: #ffffff;
	text-decoration: underline;
}
/* Create CLASSES to float images and groups of images in SPAN tags */
img.rt {
	float: right;
	margin: 0px 0px 10px 25px;
}
img.rtborder{
	border: 1px solid #000;
	float: right;
	margin: 0px 0px 10px 10px;
}
img.lft {
	float: left;
	margin: 0px 25px 10px 0px;
}
img.lftborder {
	border: 1px solid #000;
	float: left;
	margin: 0px 25px 10px 0px;
}
img.ctr{
	border: 1px solid #000;
	text-align: center;
	margin: 5px auto;
}
