/*  scroll scg.ca */

div.scrollable {  
position:relative;
overflow:hidden;
width: 600px;	 
height:150px;
border-top:1px solid #dcdcdc;
border-right:1px solid #dcdcdc;
border-left:1px solid #dcdcdc;
}

/* 
root element for scrollable items. It is 
absolutely positioned with large width. 
*/
#thumbs {	
position:absolute;
width:20000em;	
clear:both;
line-height: 10pt;
}

/* custom positioning for navigational links */
a.prev, a.next {
margin-top:0px;
}



/* single item */
#thumbs div {
float:left;
width:200px;
height:150px;
background:#aaa;
color:#fff;
border-left:1px solid #fff;
border-right:1px solid #dcdcdc;
cursor:pointer;
line-height: 10pt;
}

/* style when mouse is over the item */
#thumbs div.hover {
background-color:#6CABC8;	
}

/* style when element is active (clicked) */
#thumbs div.active {
background-color:#057D5A;
cursor:default;
}

#thumbs p {	
font-family: Arial;
font-size:10px;
color:#fff;
margin: 0;
padding: 5px 12px 0px 12px;
line-height: 10pt;
}

#thumbs a {		
font-family: Arial;
font-size:8pt;
font-weight: bold;
color:#fff;	
}

#thumbs a:hover {
color:#fafafa;
text-decoration: none;
}

#thumbs a.text, #thumbs a.text:visited {		
font-family: Arial;
font-size:10px;
color:#fff;
text-decoration: none;
}


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

/* prev, next, prevPage and nextPage buttons */
a.prev,  a.prevPage {
    width:36px;
    height: 151px;
	background:url(http://www.skintherapy.ca/flow/images/left.png) no-repeat;
	float:left;
	cursor:pointer;	
}

/* next button uses another background image */
a.next, a.nextPage {
    width:36px;
    height: 151px;
	background:url(http://www.skintherapy.ca/flow/images/right.png) no-repeat;
	float:left;
	cursor:pointer;
}

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

/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(http://www.skintherapy.ca/flow/images/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

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



