@charset "utf-8";
/* =============================*/
/* 		General Classes			*/
/* =============================*/

body {
	/* font: 90%/1.5 Verdana, Arial, Helvetica, sans-serif; */
	font: 80%/1.3 'Open Sans', sans-serif;
	/* font properties are: "font-style font-variant font-weight font-size/line-height font-family" such as > italic normal bold 12px/30px Georgia, serif; */
	margin: 0;
	padding: 0;
	/*	background-image:url('images/background.png'); */
	background-color: #FFC;
	width: 100%;
	min-height: 600px;
	color: #000;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practice to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div.*/
	padding-right: 20px;
	padding-left: 20px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math.*/
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline;
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}
blockquote {
	overflow: hidden;
	margin: 20px 30px;
	padding-left: 30px;
	background: url(images/quote.png) 0 0 no-repeat;
	font: 110%/1.4 'Architects Daughter', cursive;
}
blockquote p {
	margin-bottom: 0!Important;
	color: #595856;
	text-align:justify
}
blockquote cite {
	display: block;
	color: #666;
	text-align: right;
	padding-right:5px;
}
/* =============================*/
/* 		Wrappers				*/
/* =============================*/

#container {   /* this container surrounds the other divs */
	width: 1230px;
	margin: 0 auto;
	border: 2px solid #000;
	border-top: 0;
	background-color: #fff;
	box-shadow: 0px 5px 15px #000;	/* Add box-shadow */
	position: relative;
}
.sidebar { /* left column for nav and other */
	position: absolute;
	left: 0px;
	top: 0px;
	width: 290px;
	background-image: url('images/bg-black.png');
	padding: 15px 0 0 0;
	text-align: center;/*	height: 960px; */
}
.sidebar-banner {
	width: 100%;
	background-image: url('images/bg-white.png');
	margin-top: 15px;
	text-align: center;
}
.sidebar-inner {
	width: 100%;
	background-image: url('images/bg-white.png');
	padding-top: 15px;
	padding-bottom: 5px;
	text-align: justify;
}
.content {
	position: absolute;
	left: 290px;
	top: 0px;
	width: 940px;
}
#bg-image {
	width: 1230px;
	height: 937px;
	background: #fff url('images/body01.jpg') no-repeat center top;
}
#honest {
	margin: 10px 0 0 0;
	text-align: center;
	font: 200%/1.3 'Alex Brush', cursive;
}
/* =============================*/
/* 		Lists and Nav			*/
/* =============================*/
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	/*	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin: 11px 0; /* this creates the space between the navigation on the content below */
}
ul.nav li {
/*	border-bottom: 1px solid transparent; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	font: normal normal bold 24px/1.3 'Rokkitt', serif;
	padding: 5px 5px 5px 15px;
	display: block;
	text-decoration: none;
	color: #FFF;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-image: url('images/bg-white.png');
}
/* =============================*/
/* 		Footer Elements			*/
/* =============================*/
#payments {
	position: absolute;
	right: 15px;
	top: 872px;
}
.copyright {
	text-align: center;
	font: 70%/1.0 Verdana, Arial, Helvetica, sans-serif;
	padding-top: 16px;
}
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}
/* =============================*/
/* 		Misc float/clear		*/
/* =============================*/
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}
