
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	width: 210px;
	height:135px;	
	float:left;	
	background:url(../imgs/bg_oquefazemos.jpg) left no-repeat;
	margin-left:6px;
}

/* prev, next, prevPage and nextPage buttons */
.prevv {
	position:absolute;
	left:735px;
	top:220px;
	display:block;
	width:21px;
	height:135px;
	background:url(../imgs/bg_topo_seta_esq.jpg) no-repeat left center;
	margin:0px 0px;
	z-index:888;

}
.nextt {
	position:absolute;
	left:950px;
	top:220px;
	display:block;
	width:19px;
	height:135px;
	background:url(../imgs/bg_topo_seta_dir.jpg) no-repeat left center;
	margin:0px 0px;
	z-index:1;

}

.prevPage1{
    position:absolute;
    left:0px;
    top:0px;
    display:block;
    width:51px;
    height:35px;
    background:url(../imgs/seta_topo.jpg) no-repeat left center;
    margin:0px 0px;
    z-index:888;
}

.nextPage1{
    position:absolute;
    left:0px;
    bottom:0px;
    display:block;
    width:59px;
    height:35px;
    background:url(../imgs/seta_bottom.jpg) no-repeat left center;
    margin:0px 0px;
    z-index:1;
}

a.prev {
	position:relative;
	left:16px;
	top:0px;
	display:block;
	width:21px;
	height:135px;
	background:url(../imgs/img_topo_seta_esq.jpg) no-repeat left center;
	float:left;
	margin:0px 0px;
	cursor:pointer;
	z-index:999;

}

a.next {
    position:relative;
    left:-9px;
    top:0px;
    display:block;
    width:19px;
    height:135px;
    float:left;
    margin:0px 0px;
    cursor:pointer;
    z-index:100;
}

a.prevPage{
    /*position:relative;
    left:0px;
    top:0px;
    display:block;
    width:21px;
    height:135px;
    float:left;
    margin:0px 0px;
    cursor:pointer;
    z-index:999;*/

}

a.nextPage {
    /*position:relative;
    left:0px;
    top:0px;
    display:block;
    width:19px;
    height:135px;
    background:url(../imgs/img_topo_seta_dir.jpg) no-repeat left center;
    float:left;
    margin:0px 0px;
    cursor:pointer;
    z-index:999;*/
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px 0px;
		
}

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../imgs/img_jquery01_seta_dir.png);
	clear:right;	
}

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


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


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/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;     
} 	





