/* --------------------------------------------- */
/* Author: http://codecanyon.net/user/CodingJack */
/* --------------------------------------------- */

/* The main container used for the slider */
#container {

	width: 100%;
	height: 420px;
	margin: 0 auto 0 auto;
	/*border: 5px solid #AAA;
	-moz-box-shadow: 0px 0px 5px 2px #888;
	-webkit-box-shadow: 0px 0px 5px 2px #888;
	box-shadow: 0px 0px 5px 2px #888;
	*/
	
}

/* The slider title */
#title {
	
	width: 100%;
	margin: 0px auto 0px auto;
	color: #EEE;
	
}

/* Slider control buttons */
#cj-gallery #cj-gallery-controls {

	background: none;
	margin-bottom: -10px;
	
}

/* The previous image button */
#cj-gallery .cj-left-icon {
	
	width: 30px;
	height: 26px;
	margin: 0;
	padding: 0;
	display: inline-block;
	background: url(../../../images/graphics/left_arrow_2.png) no-repeat;
	
}

/* The next image button */
#cj-gallery .cj-right-icon {
	
	width: 30px;
	height: 26px;
	margin: 0;
	padding: 0;
	display: inline-block;
	background: url(../../../images/graphics/right_arrow_2.png) no-repeat;
	
}

/* The pause slideshow button */
#cj-gallery .cj-pause-icon {
	
	width: 30px;
	height: 26px;
	margin: 0;
	padding: 0;
	display: inline-block;
	background: url(../../../images/graphics/pause_icon_2.png) no-repeat;
	
}

/* The play slideshow button */
#cj-gallery .cj-play-icon {
	
	width: 30px;
	height: 26px;
	margin: 0;
	padding: 0;
	display: inline-block;
	background: url(../../../images/graphics/play_icon_2.png) no-repeat;
	
}

/* Slideshow buttons mouse over state */
#cj-gallery .cj-left-icon:hover, 
#cj-gallery .cj-close-icon:hover, 
#cj-gallery .cj-right-icon:hover,
#cj-gallery .cj-play-icon:hover,
#cj-gallery .cj-pause-icon:hover {
	
	opacity: 0.75;
	background-position: left top;
	
}









