/**

 * @package XpertScroller

 * @version 3.8

 * @author ThemeXpert http://www.themexpert.com

 * @copyright Copyright (C) 2009 - 2011 ThemeXpert

 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only

 *

 */

.clearfix {
*zoom: 1;
}
.clearfix:before,  .clearfix:after {
	display: table;
	content: "";
	line-height: 0;
}
.clearfix:after {
	clear: both;
}
/*

    root element for the scrollable.

    when scrolling occurs this element stays still.

*/

.scroller {
	/* required settings */
	width:200px !important;
    position:relative;
	overflow:hidden;/* custom decorations */

}
.scroller .items {
	/* this cannot be too large */

    position:absolute;
	clear:both;
}
.padding {
	padding:5px 0 0 0;
}
.scroller .item {
	padding:0
}
.item h4 {
	font-size: 15px;
	margin: 5px 0;
}
.item h4 a {
	text-decoration: none;
}
.xs_intro {
	font-size: 12px;
}
/* single scrollable item */

@media (max-width: 767px)  {

    .scroller .imglink {max-width: 50% !important;}

}

/*Image postion left*/

img.left {
	float: left;
	margin-right: 15px;
	height: 100%;
}
/*Image postion right*/

img.right {
	float: right;
	margin-left: 15px;
	height: 100%;
}
/* active item */

.scroller .items .active {
	position:relative;
	cursor:default;
}
.cloned {
	display: none;
}
/*Navigation Button common class*/

a.browse {
	background:url(../img/hori_large.png) no-repeat -2px -1px;
	display:inline-block;
	width:19px;
	height:18px;
	cursor:pointer;
	font-size:1px;
}
/*Basic Horizontal Style*/

.basic_h .items .pane {
	float:left;
}
.basic_h .pane .item {
	float: left;
}
/* this makes it possible to add next button beside scrollable */

.basic_h .scroller {
	display: inline-block;
	vertical-align: top;
}
/* right */

.basic_h a.next {
	background-position: -2px -34px;
	clear:right;
	margin-right: 0px;
}
.basic_h a.next:hover {
	background-position: -37px -34px;
}
.basic_h a.next:active {
	background-position: -37px -34px;
}
/* left */

.basic_h a.prev {
	margin-left: 0px;
}
.basic_h a.prev:hover {
	background-position: -37px -1px;
}
.basic_h a.prev:active {
	background-position: -37px -1px;
}
/*Basic Vertical Style*/

/* prev, next, prevPage and nextPage buttons */

.basic_v .items {
	width: 100%;
}
.basic_v a.browse {
	margin: 0;
	display: block;
}
.basic_v .scroller {
	margin: 0 auto;
}
/* up and down */

.basic_v a.prev {
	background:url(../img/hori_small.jpg) no-repeat top left;
	float: none;
}
/* up */

.basic_v a.prev:hover {
}
.basic_v a.prev:active {
}
/* down */

.basic_v a.next {
	background:url(../img/hori_small.jpg) no-repeat 0 -18px;
}
.basic_v a.next:hover {
}
.basic_v a.next:active {
}
/* disabled navigational button */

a.disabled {
	visibility:hidden !important;
}
/* position and dimensions of the navigator */

.navi {
	height:24px;
	text-align: center;
	margin: 3px 0;
}
/* items inside navigator */

.navi a {
	width:19px;
	height:20px;
	margin:0 1px;
	background:url(../img/navigator.png) 0 3px no-repeat;
	display:inline-block;
	vertical-align: top;
	font-size:1px;
	cursor: pointer;
}
/* mouseover state */

.navi a:hover {
	background-position:0 -16px;
}
/* active state (current page state) */

.navi a.active {
	background-position:0 -35px;
}
