@charset "utf-8";




body {
	background: #ebebeb;
	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;
}
.oneColFixCtr #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: white; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 760px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#leftcol {
	float: left;
	height: 680px;
	width: 110px;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #CCC;
	clear: left;
	border-right-style: solid;
	margin-top: 40px;
	margin-right: 0px;
	margin-bottom: 40px;
	margin-left: 40px;
	height: 680px;
	padding-top: 0px;
	padding-right: 40px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#rightcol {
	padding: 0px;
	float: right;
	width: 680px;
	height: 680px;
	clear: right;
	margin-top: 40px;
	margin-right: 40px;
	margin-bottom: 40px;
	margin-left: 0px;
}

#preload {
	display: none
	}

h1 {
	font-family: "Century Gothic", Tahoma, sans-serif;
	font-size: 20px;
	color: #666;
	line-height: 17px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
h2 {
	font-family: "Century Gothic", Tahoma, sans-serif;
	font-size: 14px;
	color: #666;
	line-height: 36px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
h3 {
	font-family: "Century Gothic", Tahoma, sans-serif;
	font-size: 14px;
	line-height: 27px;
	color: #333;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

h4 {
	font-family: "Century Gothic", Tahoma, sans-serif;
	font-size: 14px;
	line-height: 27px;
	color: #666;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

h5 {
	font-family: "Century Gothic", Tahoma, sans-serif;
	font-size: 14px;
	color: #666;
	font-weight: normal;
	line-height: 8px;
}
p {
	font-family: "Century Gothic", Tahoma, sans-serif;
	font-size: 13px;
	line-height: 16px;
	font-weight: normal;
	color: #333;
}
.medium {
	color: #666;
}
.light {
	color: #CCC;
}
.link333:link {
	color: #333;
	text-decoration: none;
}
.link333:visited {
	color: #333;
	text-decoration: none;
}
.link333:hover {
	color: #333;
	text-decoration: none;
}
.link333:active {
	color: #333;
	text-decoration: none;
}

.link666:link {
	color: #666;
	text-decoration: none;
}
.link666:visited {
	color: #666;
	text-decoration: none;
}
.link666:hover {
	color: #666;
	text-decoration: none;
}
.link666:active {
	color: #666;
	text-decoration: none;
}
.lightCCC {
	color: #CCC;
}


/*
	Slideshow
*/

#slides {
	position:relative;
	top:0px;
	left:0px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:680px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container img {
}



/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
		position:absolute;
	top:185px;
	left:-190px;
	width:40px;
	height:40px;
	display:block;
	z-index:101;
	

}

#slides .next {
	left: -120px;
}



