/* 	
    root element for the txtscrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.txtscrollable0, div.txtscrollable1, div.txtscrollable2 { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 520px; 
    height:350px; 
} 
 
/* 
    root element for txtscrollable txtitems. Must be absolutely positioned 
    and it should have a extremely large width to accomodate txtscrollable txtitems. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.txtscrollable0 div.txtitems, div.txtscrollable1 div.txtitems, div.txtscrollable2 div.txtitems { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
    clear: both;
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.txtscrollable0 div.txtitems div, div.txtscrollable1 div.txtitems div, div.txtscrollable2 div.txtitems div { 
    float:left; 
} 
 
/* single txtscrollable txtitem */
.txtscrollable0 img, .txtscrollable1 img, .txtscrollable2 img {
    margin:6px 1px;
    padding:3px;
    vertical-align:middle;
    background-color:#fff;
    border:1px solid #ccc;
    cursor:pointer;
    
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}

.txtitem {
    width:260px;
    text-align:center;
}

/* this makes it possible to add next button beside txtscrollable */
.txtscrollable0, .txtscrollable1, .txtscrollable2 {
    float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.txtbrowse {
    display:block;
    width:14px;
    height:120px;
    float:left;
    margin:70px 3px 0;
    cursor:pointer;
    font-size:1px;
}

/* right */
a.right {
    background:url(../img/array_right.png) no-repeat;
}

/* left */
a.left {
    background:url(../img/array_left.png) no-repeat;
} 

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

.is_gallery_text {
    margin:0 5px 0 15px;
    height:350px;
    clear:both;
}