﻿/*
	--- FOR SILDER / SCROLLABLE on right side
	
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/


.scrollable {
    float:left;
    height:250px;
    overflow:hidden;
    position:relative;
    width:180px;
    padding:0;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;

}

.scrollable p {
	margin:0;
}

.scrollable h3 {
	font-size:14px;
	color:#BCEE00;
	padding:10px 0px;
	text-align:center;
	width:180px;
}

.scrollable  .item {
    width:180px;
}

.scrollable img {
    -moz-border-radius:4px 4px 4px 4px;
    height:80px;
    margin:0 40px 10px;
    padding:2px;
    width:80px;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/


.scrollable .items div {
	float:left;
	}
	
a.browse {
    background:url("../images/jquery.tools.scrollable/hori_large.png") no-repeat scroll 0 0 transparent;
    cursor:pointer;
    display:block;
    float:left;
    font-size:1px;
    height:15px;
    margin:75px 10px;
    width:15px;
}

a.right  {
    background-position:0 -15px;
    clear:right;
    margin-right:0;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


/*
	--- FOR SILDER / SCROLLABLE as iframe
*/

#scroll {
	position:relative;
	overflow:	hidden;
	border:		10px solid #fff;
	outline: 	2px solid #622181;
	background: url(../images/jquery.tools.scrollable/back_top.gif) repeat-x top left;
	width:		950px;
	padding:	15px;
	height:		452px;
	font-size:	16px;
	color:		#622181;
}

#scroll h1{
	font-size: 22px;
	margin-bottom: 20px;
}

#tools {
	width:9999em;
	position:absolute;
}

#tools img{
	float: right;
	margin: 60px 0 0 40px;
}

.point {
	float:left;
	width:800px;
	padding: 50px 90px;
}

.pointImg{
	float:left;
	width:820px;
	padding: 50px 70px;
}

#thumbs {
	background: url(../images/jquery.tools.scrollable/back_thumbs.gif) repeat-x;
	height:90px;
	position:absolute;
	top:394px;
	width:1090px;
	left:-8px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}

.t {
	padding:0 !important;
	border:0 !important;
}

.t a {
	margin:1px 0 0 11px;
	display:block;
	width:atuo;
	float:left;
	height:90px;
	cursor:pointer;
	color: #fff;
	padding: 34px 20px 10px 10px;
	border-right: 1px solid #9151af;
}

.t a.active {
	background-image: url(../images/jquery.tools.scrollable/nav_active.gif);
	background-position: center 0;
	background-repeat: no-repeat;
	cursor:default !important;
}

