/* css for content slider */

/* push down content if slider is loaded */
#content_wrapper {
	margin-top: 305px;
}

#contentslider {
	background-image: url('./images/slide_wrap.png');
	background-repeat: repeat-x;
	position: absolute;
	top: 185px;
	height: 305px;
	width: 100%;
}

#cs_wrapper {
	width: 1064px;
	height: 305px;
	margin: 0 auto 0 auto;
}

#slider {
	background-image: url('./images/slide_wrap_inside.png');
	background-repeat: repeat-x;
	height: 305px;
	z-index: 10000;
	width: 856px;
	position: relative;
	float: left;
	overflow: hidden;
}

#slider_content {
	position: absolute;
	width: 10000px;
	height: 100%;
	margin: 0;
	padding: 0;
	left: 0px; /* this property is what we animate when we slide the slider */
}

.article {
	display: block;
	color: #fff;
	margin: 0 auto 0 auto;
}

.article h1, .article h2, .article h3, .article p , .article a{
	color: #fff;
}

.article a:hover {
	text-decoration: underline;
}

.article_image {
	width: 444px;
	float: left;
}

.article_text {
	margin: 20px 0 0 0;
	padding: 0 20px 0 20px;
	width: 372px;
	float: left;
}

.article_text p {
	padding: 10px 0 10px 0;
}
.cs_left_button, .cs_right_button {
	position: relative;
	width: 104px;
	height: 305px;
	z-index: 10000;
	padding-top: 100px;
}

.cs_left_button {
	background-image: url('./images/left_button_bgfix.png'); /* fix for the slider bg so buttons can be on the "edge" */
	background-repeat: repeat-x;
	float: left;
}

.cs_right_button {
	background-image: url('./images/right_button_bgfix.png'); /* fix for the slider bg so buttons can be on the "edge" */
	background-repeat: repeat-x;
	float: right;
}

