@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image: url(images/bkgd.jpg);
	background-repeat: repeat;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

h1 {
	text-indent: -5000px;
}

h2 {
	font-family: Cambria, serif;
	font-size: 160%;
	font-style: normal;
	font-weight: normal;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 200%;
}

a {
 	color: #f06c6a;
	text-decoration: none;
}

a:hover {
	color: #267ca5;
	text-decoration: underline;
}

#container {
	position: relative;
	width: 960px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	
}

#logo {
	position: absolute;
	float: left;
	left: 106px;
	width: 273px;
	height: 217px;

}

#leftFloral {
	float: left;
	width: 106px;
	height: 829px;
	background-image: url(images/lft_floral.png);
	background-repeat: no-repeat;
}

#rightFloral {
	float: right;
	width: 106px;
	height: 829px;
	background-image: url(images/rt_floral.png);
	background-repeat: no-repeat;
}

#mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: url(images/maincontent_bkg.jpg); 
	background-repeat: repeat-y;
	background-position: center;
	min-height: 660px;
}

#header {
	height: 175px;
	background-image: url(images/header.png);
	background-repeat: no-repeat;
	background-position: center;
}
/***********************/




/* NAVIGATION */

#navcontainer {
	padding: 0;
	position: relative;
	width: 447px;
	height: 49px;
	top: 68px;
	float: right;
}

#navcontainer ul { padding: 0; }
#navcontainer ul li { display: inline; }

#navcontainer ul {
	margin: 0;
	padding: 0px 0px 0px 0px;
	color: #FFFFFF;
	font-family: Cambria, serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	text-transform: uppercase;
	line-height: 150%;
	text-align: center;
}

#navcontainer ul li a {
	padding: 0;
	width: 149px;
	height: 49px;
	background-image: url(images/btn.png);
	background-repeat: no-repeat;
	background-position: left;
	color: #FFFFFF;
	text-decoration: none;
	float: left;
}

#navcontainer ul li a:hover {
	background-position: right;
	color: #472a0b;
}

/***********************/






#flash {
	padding: 0;
	margin: 0;
}

#bodyContent {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 90%;
	font-style: normal;
	font-weight: normal;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.45em;
	color: #472a0b;
	text-align: center;
}


#bodyContent td {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 70%;
	font-style: normal;
	font-weight: normal;
	line-height: 120%;
	color: #472a0b;
	text-align: left;
}

/***********************/


/* FOOTER */
#footer {
	padding: 5px;
	margin: 0 0 0 106px;
	width: 738px;
	height: 24px;
	background: url(images/footer_bkg.jpg); 
	background-repeat: repeat-x;
	font-family: “Lucida Grande”, sans-serif;
	font-size: 11.67px;
	font-style: normal;
	font-weight: normal;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.4em;
	text-align: center;
	color: #3c3b3a;
}

#footer p {
	padding: 0;
	margin: 0;
}

#footer a {
	color: #3c3b3a;;
	text-decoration: none;
}


#footer a:hover {
	color: #f06c6a;
	text-decoration: underline;
}

/***********************/






/* CLASSES */

.narrowBody {
	padding: 30px 250px;
}

.wideBody {
	padding: 30px 130px;
	min-height: 660px;
}

.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
