
/* this makes it possible to add next button beside scrollable */
.scrollable {
    float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
   display:block;
    width:10px;
    height:45px;
    float:left;
    margin:0px 3px;
     cursor:pointer;
    font-size:1px;
}

/* right */
a.right {
border:solid #CCCCCC 1px;
 
    background:url(../next.gif) no-repeat;

   background-position: center ;

 
 clear:right; margin-right: 0px;}
a.right:hover {  }
a.right:active { }


/* left */
a.left {    border:solid #CCCCCC 1px;

    background:url(../prev.gif) no-repeat;
   background-position: center ;

border:solid #CCCCCC 1px;


 margin-left: 0px; }
a.left:hover  {   }
a.left:active {  }

/* up and down */
a.up, a.down  {
    background:url(/media/img/scrollable/arrow/vert_large.png) no-repeat;
    float: none;
    margin: 10px 50px;
}

 /* disabled navigational button */
a.disabled {
    visibility:hidden !important;
}
