/* CSS Document */

/* body size and spec's */

body {
    width: 700px;
	margin-top: 34px;
    margin-left: auto;	/* need these two margins as auto so it floats left & right */
    margin-right: auto; /* need these two margins as auto so it floats left & right */
	background-color: #56697F;
	background-image: url(images/blend.jpg);
	background-repeat: repeat-x;	/* repeats images across only (not down) */
	padding-left: 50px;			/* when browser reduced, at least 50px will show on left */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #c6cfe5;
	line-height: 14pt;
}

/* standard links */

a:link {
	color: #f49a4c;
	text-decoration: none; }
a:visited {
	color: #f49a4c;
	text-decoration: none; }
a:hover {
	text-decoration: underline;
	color: #f49a4c; }
a:active {
	text-decoration: underline;
	color: #f49a4c; }
	
/*  DIVISIONS-SECTIONS */
	

/* Hheader Section */

#header {		
	margin-bottom: 34px;	
}

/* Main Content Section */

#content {		
}

/* Footer Section */
	
#footer {
    text-align: center;
	margin-top: 30px;	
}

/* Order & List Page Columns */

#left {
	float: left;
	width: 340px;
}

#right {
	float: right;
	width: 360px;
}

/* Contact Page Columns */

#contactLeft {
	float: left;
	width: 240px;
}

#contactRight {
	float: right;
	width: 460px;
}

/* Testimonials Page Columns */

#testimonialsLeft {
	float: left;
	width: 220px;
}

#testimonialsRight {
	float: right;
	width: 480px;
}

/* TYPE STYLES */

h1 {
	font-size: 11pt;
}

.footerNav {
	font-family: Papyrus, Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #c6cfe5;
}

/* footerNav links */

.footerNav a:link {
	color: #c6cfe5;
	text-decoration: none; }
.footerNav a:visited {
	color: #c6cfe5;
	text-decoration: none; }
.footerNav a:hover {
	text-decoration: underline;
	color: #c6cfe5; }
.footerNav a:active {
	text-decoration: underline;
	color: #c6cfe5; }


/* IMAGE POSITIONING */
.alignRight { text-align:right; }

.floatLeft {
	float: left;
	border: 0;
	padding-right: 50px;
}

.floatRight {
	float: right;
	border: 0;
}
.clear { clear: both; }


