/* tab pane styling */
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	padding-left:20px;	
	border-bottom:0px solid #666;	
	height:29px;
	background: url(index_03.gif);
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
}

/* link inside the tab. uses a background image */
ul.tabs a { 
    border:0px solid #666;
	font-size:11px;
	display:block;
	height: 29px;  
	line-height:29px;
	width: 140px;
	text-decoration:none;
	color:#626262;
	padding:0px;
	margin:0px;	
	padding-left:20px;
	position:relative;
	overflow:hidden;
}

ul.tabs a:active {
    border:0px solid #666;
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
    border:0px solid #666;
	background-position: -420px -31px;	
	color:#ec008c;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	border:0px solid #666;
	background-position: -420px -62px;		
	cursor:default !important; 
	color:#ec008c !important;
	width:180px;
	background: url(index_031.gif) no-repeat;
}

/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;
}
div.panes div {
	display:none;		
	border:1px solid #dadada;
	border-top:0;
	background:#fff;
	width:547px;
	height:250px;
	padding:0px;
	margin:0px;
}
div.panes img{ 
	border:0px;
	width:547px;
	height:250px;
}

.scrollable {
    /* required settings */
    position:relative;
    float:left;
    overflow:hidden;
    width: 510px;
    height:133px;
}
.scrollable .items {
    /* this cannot be too large */
    width:20000em;
    position:absolute;
    clear:both;
}
.scrollable a {
    float:left;
    margin:0px 10px 0px 10px;
}
.scrollable img {
    background-color:#fff;
    padding:0px;
    border:1px solid #ccc;
    cursor:pointer;
    width:148px;
    height:127px;

    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}
.scrollable .active {
    border:1px solid #ccc;
    z-index:9999;
    position:relative;
}
/* prev, next, prevPage and nextPage buttons */
a.browse {
    display:block;
    width:11px;
    height:11px;
    float:left;
    margin-top:62px;
    cursor:pointer;
}
a.left {
    background:url(../images/arrow_left.gif) no-repeat;
    margin-right: 3px;
}
a.right {
    background:url(../images/index_right.gif) no-repeat;
    clear:right;
    margin-left: 3px;
}
/* disabled navigational button */
a.disabled {
    visibility:hidden !important;
}