/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel-wrapper{
position: relative;
margin-top: 40px;
}

.jcarousel {
    position: relative;
    overflow: hidden;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul.pool-parent {
    width: 20000em;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li.pool-item {
    /* Required only for block elements like <li>'s */
    float: left;
	width: 430px;
	position: relative;
	height: 290px;
	cursor: pointer;
	/* transition: all 0.2s ease-in 0s; */
-moz-transition: all 0.2s ease-in 0s;
-webkit-transition: all 0.2s ease-in 0s;
-o-transition: all 0.2s ease-in 0s;
-ms-transition: all 0.2s ease-in 0s;
	}
	
.pool-content{
position: absolute;
top: 0;
background: rgba(0,0,0,.6);
width: 100%;
height: 290px;
text-align: center;
font-family: 'PT Sans', sans-serif;
display: none;
/* transition: all 0.2s ease-in 0s; */
-moz-transition: all 0.2s ease-in 0s;
-webkit-transition: all 0.2s ease-in 0s;
-o-transition: all 0.2s ease-in 0s;
-ms-transition: all 0.2s ease-in 0s;
}
.jcarousel li.pool-item:hover .pool-content{
display: block;
/* transition: all 0.2s ease-in 0s; */
-moz-transition: all 0.2s ease-in 0s;
-webkit-transition: all 0.2s ease-in 0s;
-o-transition: all 0.2s ease-in 0s;
-ms-transition: all 0.2s ease-in 0s;
}	
.pool-content h3{
font-size: 19px;
color: #fff;
font-family: 'PT Sans', sans-serif;
text-transform: uppercase;
}
.pool-content p{
font-size: 14px;
color: #fff;
font-family: 'PT Sans', sans-serif;
margin-left: 40px;
margin-right: 40px;
}
.jcarousel li img{
max-width: 100%;
height: auto;
}
.pool-nav{
font-size: 0;
width: 19px;
height: 60px;
position: absolute;
top: 40%;
z-index: 999;
}
.jcarousel-control-prev{
left: 0;
background: url(../images/prev-pool.png) no-repeat left top;
}
.jcarousel-control-next{
right: 0;
background: url(../images/next-pool.png) no-repeat left top;
}
.blue-btns{
display: inline-block;
margin: 0;
margin-top: 100px;
}
.blue-btns li{
float: left;
margin: 0 5px;
}
.blue-btns img{
opacity: .8;
}
.blue-btns img:hover{
opacity: 1;
}