/*
Item Name: jQuery Carousel Evolution
Author: Mapalla
Author URI: http://codecanyon.net/user/Mapalla
Version: 1.0
*/

/* _______________________________________________ */

/* CONTAINER */
/* _______________________________________________ */

.portfolio .carousel_c
{
	position :relative ;
	margin:40px auto 30px auto;
	border :none;
	overflow : visible;
}

/* _______________________________________________ */

/* SLIDES */
/* _______________________________________________ */

/* slide container */
.portfolio .carousel_c .slides
{
	margin :0 auto;
	padding :0;
	border :none;
	list-style :none;
	position :relative ;
	overflow :visible ;
	
}

/* slide item */
.portfolio .carousel_c .slides .slideItem 
{
	position :absolute;
	/*cursor :pointer ;*/
	overflow : hidden;
	padding :0;
	margin :0;
	border :none;
	background: #fff;
	
	-webkit-box-shadow: 1px 2px 5px 3px rgba(0,0,0,0.38);
-moz-box-shadow: 1px 2px 5px 3px rgba(0,0,0,0.38);
box-shadow: 1px 2px 5px 3px rgba(0,0,0,0.38);
	

}


.portfolio .carousel_c .slides .slideItem img
{
	margin :0;
	padding :0;
	border :none;
	
	
}

/* _______________________________________________ */

/* DIRECTION BUTTON */
/* _______________________________________________ */

.portfolio .carousel_c .nextButton
{
	position :absolute ;
	right :10px;
	top :50%;
	width :72px;
	height :72px;
	margin-top:-72px;
	background : url("../images/next_button.png") no-repeat center;
	cursor :pointer ;
	z-index :10;
}

.portfolio .carousel_c .prevButton
{
	position :absolute ;
	left :10px;
	top :50%;
	width :72px;
	height: 72px;	
	margin-top: -72px;	
	background : url("../images/prev_button.png");
	cursor :pointer ;
	z-index :10;
}

/* _______________________________________________ */

/* NAVIGATION BUTTON */
/* _______________________________________________ */

/* buttons container */
.portfolio .carousel_c .buttonNav
{
	position : relative ;
	margin :0 auto;
	z-index :999;
	display: none
}

/* numbers */
.portfolio .carousel_c .buttonNav .numbers 
{
	position :relative ;
	float :left ;
	margin :5px;
	color : #828282 ;
	cursor :pointer ;
	font-weight :bold ;
	text-decoration :none;
	font-size :1em;
	font-family :Arial, Verdana ;
}

.portfolio .carousel_c .buttonNav .numbers:hover
{
	color: #000;
	text-decoration :underline;
}

.portfolio .carousel_c .buttonNav .numberActive
{
	background : none;
	color :#000;
	cursor :default ;
}

/* bullets */
.portfolio .carousel_c .buttonNav .bullet
{
	position :relative ;
	float :left ;
	width :16px;
	height :16px;
	background : url(../images/bullet-inactive.jpg) no-repeat center ;
	margin :5px;
	float :left ;
	cursor :pointer ;
}

.portfolio .carousel_c .buttonNav .bullet:hover
{
	background : url(../images/bullet-active.jpg) no-repeat center ;
}

.portfolio .carousel_c .buttonNav .bulletActive
{
	background : url(../images/bullet-active.jpg) no-repeat center ;
	cursor :default ;
}

/* ____________________________________________________________ */

/* VIDEO */
/* ____________________________________________________________ */

.portfolio .carousel_c .slides .videoOverlay
{
	background :url("images/video.png") no-repeat center; /* play button */
}

.portfolio .carousel_c .slides .spinner
{
	background : #000 url(images/loading.gif) no-repeat center; /* video preloader */
}

/* _____________________________ *

/* SHADOW */
/* _____________________________ */

.portfolio .carousel_c .shadow
{
	width :100%;
	height :82px;
}

.portfolio .carousel_c .shadow .shadowLeft
{
	background : url("images/shadowLeft.png") no-repeat;
	width :100px;
	height :82px;
	
	/* fix png problems in ie */
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowLeft.png, sizingmethod=scale)"; /* IE8 */   
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowLeft.png, sizingmethod=scale);   /* IE6 & 7 */                     
}

.portfolio .carousel_c .shadow .shadowMiddle
{
	height :82px;
	background:url("images/shadowTile.png") repeat-x;
	
	/* fix png problems in ie */
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowTile.png, sizingmethod=scale)"; /* IE8 */   
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowTile.png, sizingmethod=scale);   /* IE6 & 7 */                     
}

.portfolio .carousel_c .shadow .shadowRight
{
	width :100px;
	height :82px;
	background:url("images/shadowRight.png") no-repeat;
	
	/* fix png problems in ie */
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowRight.png, sizingmethod=scale)"; /* IE8 */   
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowRight.png, sizingmethod=scale);   /* IE6 & 7 */                     
}

/* ____________________________________________________________ */

/* REFLECTION GRADIENT */
/* ____________________________________________________________ */

/* gradient color for Opera */
.portfolio .carousel_c .gradient
{
	background-image :url(scripts/gradient.svg);
}