.oikos-feature-outer-container {
	/* float: left; */
	position: relative; /* Needed to absolutely position the navigation arrows */
	border: 1px solid #D1D3D4;
	overflow: hidden; /* Fixes need for clear div */
	/* Set width and height in custom CSS
	height: 300px;
	width: 700px;
	*/
}

/*
 * Slider-prev and slider-next are hidden by default - we progressively enhance (note some browsers
 * only allow :hover on a tags!)
 * The hover is actually controlled by the #oikos-feature-container:hover selector
 * When buttons need to be hidden (when you can't go to previous or next) then we then override this
 * using jQuery to add a "hide" class to the slider-previous and slider-next.  The order of these is 
 * therefore important - the hide must come last!
 */

.oikos-feature-previous {
	display: none;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 86px;
	left: 20px;
	z-index: 200;
	overflow: hidden;
	background: transparent url(../images/slider-arrows.png) no-repeat scroll 0 0;
}
.oikos-feature-outer-container:hover .oikos-feature-previous{ display: block; cursor: pointer;}
.oikos-feature-outer-container .oikos-feature-previous.hide{ display: none !important; }

.oikos-feature-next {
	display: none;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 86px;
	right: 20px;
	z-index: 200;
	overflow: hidden;
	background: transparent url(../images/slider-arrows.png) no-repeat scroll -40px 0;
}
.oikos-feature-outer-container:hover .oikos-feature-next{ display: block; cursor: pointer; }
.oikos-feature-outer-container .oikos-feature-next.hide{ display: none !important; }

.oikos-feature-outer-container .oikos-feature-page-nav {
	display: block;
	position: absolute;
	bottom: 0;
	right: 5px;
/*	background: #0A0A0A;	
	background-color: rgba(10, 10, 10, 0.8);	*/
	padding: 5px 0 5px 5px; 
	z-index: 500;
}

.oikos-feature-outer-container .oikos-feature-page-nav-item {
	float: left;
	width: 8px;
	height: 20px;
	overflow: hidden;
	color: #FFF;
	margin-right: 5px;
	font-weight: bold;
	text-indent: -9999px;
	background: transparent url(../images/slider-dot.png) no-repeat scroll 0px 0px;
}
.oikos-feature-outer-container .oikos-feature-page-nav-item.selected {
	color: #AAAAAA;
	background-position: -8px 0;	
}
.oikos-feature-outer-container .oikos-feature-page-nav-item:hover {
	cursor: pointer;
	color: #AAAAAA;
	background-position: -8px 0;	
}

.oikos-feature-wrapper {
	float: left;
	overflow: hidden;
	position: relative;
}

.oikos-feature-panel-container {
	margin-left: 0px;
	position: relative;
}

.oikos-feature-panel {
	float: left;
	position: relative; /* This is needed to that the text can be absolutely positioned */
}

.oikos-feature-image {
	display: block;
	margin: auto auto;
	height: 100%;
	width: 100%;
}

.oikos-feature-image img {
	display: block;
	margin: auto auto;
}

.oikos-feature-text {
	width: 145px;
	height: 100%;
	position: absolute;
	top: 0px;
	right: 0px;
	color: #FFF;
	background-color: #0A0A0A;
	background-color: rgba(10, 10, 10, 0.9);
	padding: 15px 50px 15px 15px;
	z-index: 100;
}

.oikos-feature-text h3 {
	font-weight: normal;
	font-size: 22px;
	margin-bottom: 10px;
}

.oikos-feature-text p {
	font-size: 12px;
	line-height: 120%;
	margin-bottom: 5px;
}

.oikos-feature-text a {
	text-decoration: none;
	color: #FFF;
}

.oikos-feature-text a:hover {
	text-decoration: underline;
}

p.oikos-feature-read-more {
	margin-top: 14px;
}
span.oikos-feature-read-more-arrow {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-left: 10px;
	background: transparent url(../images/double-arrow.gif) no-repeat center right;
}
