/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 22, 2017, 3:20:22 PM
    Author     : HeFischer
*/

.Content_Carousel
{
	min-height: 700px;
	padding: 4px !important;
	border:1px solid #ccc;
}

#carouselouter
{    
	height: 100%;
	overflow:hidden;   
	position: relative;
	z-index: 2;
}

#carousel 
{
	position: absolute;
	padding: 10px;	 
	z-index: 1;
}

#slides {
	overflow:hidden;
	/* fix ie overflow issue */
	position:relative;
	
}

/* remove the list styles, width : item width * total items */	
#slides ul {
	position:relative;
	left:0;
	top:0;
	list-style:none;
	margin:0;
	padding:0;	
}

/* width of the item */
#slides li
{
   width: 100%;
}

#slides li img {
	padding-top:4px;
	padding-bottom:4px;
	width: 100%;
}

/* Styling for prev and next buttons */
#buttons {
	padding: 5px 0 0 5px;	
	/* float:right; */
	top: 0px;
	right: 0px;
	position: absolute;
}

#buttons a {
	display:block; 
	width:31px; 
	height:32px;
	text-indent:-999em;
	float:left;
	outline:0;
}

a#carousel_prev {
	background:url(../img/arrow.png) 0 -31px no-repeat; 
}

a#carousel_prev:hover {
	background:url(../img/arrow.png) 0 0 no-repeat;
}

a#carousel_next {
	background:url(../img/arrow.png) -32px -31px no-repeat; 
}

a#carousel_next:hover {
	background:url(../img/arrow.png) -32px 0 no-repeat;
}

.clear {clear:both}