@charset "UTF-8";
body {
	font-family: "Century Gothic", verdana, sans-serif;
	font-size:62.5%;
	background-image:url('../image/background.jpg');
	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 */

}
#container {
	background: #ffffff;
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top:30px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #ffffff;
	height:145px;
	width:900px;
}


#headerRight {
	background: #ffffff;
	height:130px;
	width:900px;
	float:right;
	clear:right;
	padding-left:0px;
}
#mainContent {
	height:400px;
	width:900px;
	background: #ffffff;
}
#centerContent {
	background: #ffffff;
	margin: 0 auto 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 20px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-top: 3px double #cccccc;
	width:800px;
	height:357px;
}

#text {
	height:348px;
	width: 400px;
	border:1px solid #cccccc;
	float:right;
	font-size:1.2em;
	color:#333333;
	
}
#text h1 {
	text-align:center;
}
#text h3 {
	text-align:center;
	text-decoration:underline;
}
#text h4 {
	margin-bottom:3px;
}
#text p {
	text-indent: 0px;
	line-height: 20px;
	text-align: justify;
}
#text .quotes {
	margin:20px 30px 0px 30px;
	padding:5px;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}
#text .indent {
	margin:5px 20px 0px 20px;
	padding:5px;
}
#text .indentName {
	margin: 10px 5px;
	padding:5px;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}
#text a {
	color:#cccc99;
}
#text img {
	padding:5px;
	border:none;
}

#footer {
	background: ffffff;
	height:40px;
	width:900px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
#footer p {
background: #ffffff;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 1em;
	color: #666666;
}
#footer a {
	color: ##AAA654;
	text-decoration:none;
}

#footerRight {
	width:900px;
	height:40px;
	background:#ffffff;
	float:right;
}

.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;
}
.logo {
	float:left;
	padding-top:5px;
	padding-bottom:5px;
	margin-left:5px;	
}
/* menu */
#menu {
    width:450px;
	position:relative;
	padding-top: 65px;
	padding-right: 5px;
	white-space : nowrap;
	float:right;
}
#menu ul {
	margin: 0;
	padding: 0;
}
#menu ul li {
	margin-left: 1px;
	padding: 3px 9px;
	list-style: none;
	float:left;
	font-size: 1.3em;
}
#menu ul li a {
	color: #666666;
	text-decoration: none;
	font-style: normal;
	font-family: "Century Gothic", verdana, sans-serif;
}
#menu ul li a:hover {
	color: #cccc99;
	text-decoration: none;
	font-style: normal;
}
#menu ul li #active {
	color:#cccc99;
	text-decoration: none;
	font-style: italic;
	font-family: "Century Gothic", verdana, sans-serif;
}

	
	/* slideshow */

#slideshow {
	position:absolute;
	height:350px;
	width:385px;
	margin: 0px auto;
}


#slideshow IMG {
	position:absolute;
	top:-5px;
	left:0;
	z-index:8;
	opacity:0.0;
}
#slideshow IMG.active {
	z-index:10;
	opacity:1.0;
}
#slideshow IMG.last-active {
	z-index:9;
}

/* contact info next to form */

#contact-info {
	float:left;
	width:230px;
	height:300px;
	margin-top:5px;
	text-align:left;
}
/*  contact form  */

#contact-area {
	width: 262px;
	height:310px;
	margin-top: 5px;
	padding-left:15px;
	float:right;
	border-left: 1px solid #cccccc;
	font-size: 1.1em;
	
}
#contact-area input, #contact-area textarea {
	padding: 5px;
	width: 250px;
	color:#333;
	font-family: "Century Gothic", verdana, sans-serif;
	font-size:1em;
	margin: 0px 0px 5px 0px;
	border: 1px solid #ccc;
}
#contact-area textarea {
	height: 80px;
}
#contact-area textarea:focus, #contact-area input:focus {
	border: 1px solid #999;
}
#contact-area input.submit-button {
	width: 100px;
	float: right;
	color:#666666;
	background-color:#ffffff;
}
label {
	float: left;
	margin-right: 15px;
	width: 100px;
	padding-top: 5px;
	font-size: .9em;
}

/* slider */

#holder {
	float: left;
	margin: 0px;
}

.scroll-pane {
	width: 375px;
	height: 323px;
	padding: 5px 5px 10px 10px;
	overflow: auto;
	background: #fff;
	float: right;
}


#pane1 {
	left: 2px;
	top: 3px;
}


/* ------------------------------------------------------------------------
	Miscellaneous
------------------------------------------------------------------------- */

	.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
	* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
	/* End hide from IE-mac */
