/*
###################################################################################################
######### STANDALONE ##############################################################################
###################################################################################################
*/

/*
###################################################################################################
######### SCROLLABLE HORIZONTAL####################################################################
###################################################################################################
*/

/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
.scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 980px;
    height:180px;

/*left:-5px; /* may need to remove this when using arrows - JSB */	
	/* custom decorations */
    /* border:1px solid #ccc;
   background:url(h300.png) repeat-x; 
   background-color:blue;*/
}

/*
   root element for scrollable items. Must be absolutely positioned
   and it should have a extremely large width to accomodate scrollable
   items.  it's enough that you set the width and height for the root
   element and not for this element.
*/
.scrollable .items {
    /* this cannot be too large */
    width:20000em;
    position:absolute;
    clear:both;
}

.items .itemList {
    float:left;
    width:980px;
/*   background-color:green;  */
}

/* single scrollable item */
.cellImg {
    float:left;
    background-color:#fff;
    width:105px;
    height:180px;

/*
    padding:2px;
    border:1px solid #ccc;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
	border-radius:10px;
*/
}
.scrollable img {
 /*   width:100px; */
}

/* active item */
.scrollable .active {
    border:2px solid #000;
    position:relative;
    cursor:default;
}

/*
###################################################################################################
######### BUTTONS #################################################################################
###################################################################################################
*/

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

/* prev, next, prevPage and nextPage buttons */
a.browse {
    background:url(../images/scrollable/hori_large.png) no-repeat;
    display:block;
    width:30px;
    height:30px;
    float:left;
    margin:30px 10px;
    cursor:pointer;
    font-size:1px;
}

/* right */
a.right { background-position: 0 -30px; clear:right; margin-right: 0px; position:relative; left:-10px;}
a.right:hover { background-position:-30px -30px; }
a.right:active { background-position:-60px -30px; }


/* left */
a.left { margin-left: 0px; }
a.left:hover  { background-position:-30px 0; }
a.left:active { background-position:-60px 0; }

/* up and down */
a.up, a.down  {
    background:url(../images/scrollable/vert_large.png) no-repeat;
    float: none;
    margin: 10px 50px;
}

/* up */
a.up:hover { background-position:-30px 0; }
a.up:active { background-position:-60px 0; }

/* down */
a.down { background-position: 0 -30px; }
a.down:hover { background-position:-30px -30px; }
a.down:active { background-position:-60px -30px; }


/* disabled navigational button */
a.disabled {
    visibility:hidden !important;
}

/*
###################################################################################################
######### CUSTOM ##################################################################################
###################################################################################################
*/

.smBannerWrapper {
	margin:0 auto;
	width: 1000px;
	height:180px;
	margin:10px 0px 10px 0px;
/*	background-color:red; */
}
.smBanner {
	width:326px;
	height:180px;
/*	width:300px;
	height:180px;
*/
	float:left;
/*	margin-right:10px; */
/*	background-color:red; */
}
.smBanner img{
	width:320px;
	height:180px;
}

.smBannerLt img{
	float:left;

}
.smBannerCt img{
	margin-left: auto;
    margin-right: auto
}

.smBannerRt img{
	float:right;
}

.cellText ul{
	list-style-type: circle !important;
	position: relative;
	left:15px;
}
.cellText {
	float:left;
	width:210px;
	height:180px;
	font-size: 10pt;
	text-align:left;
	padding-left:5px;

	background: rgb(255,255,255); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: -moz-linear-gradient(left,  rgba(255,255,255,1) 63%, rgba(239,239,239,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(63%,rgba(255,255,255,1)), color-stop(100%,rgba(239,239,239,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 63%,rgba(239,239,239,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  rgba(255,255,255,1) 63%,rgba(239,239,239,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  rgba(255,255,255,1) 63%,rgba(239,239,239,1) 100%); /* IE10+ */
	background: linear-gradient(to right,  rgba(255,255,255,1) 63%,rgba(239,239,239,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=1 ); /* IE6-8 */

	border-radius:6px;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
	-khtml-border-radius:10px;

}
.cellText h5{
	margin-bottom: 10px;
	font-size: 12pt;
}

.smBannerButton {
	position:absolute;
	bottom:0px;
}