.roundedcornr_box {
   background: #8E908D url(images/roundedcornr_grad1.gif) repeat-x top left;
}
.roundedcornr_top div {
   background: url(images/roundedcornr_tl.gif) no-repeat top left;
}
.roundedcornr_top {
   background: transparent url(images/roundedcornr_tr.gif) no-repeat top right;
}
.roundedcornr_bottom div {
   background: url(images/roundedcornr_bl.gif) no-repeat bottom left;
}
.roundedcornr_bottom {
   background: transparent url(images/roundedcornr_br.gif) no-repeat bottom right;
}

.roundedcornr_top div, .roundedcornr_top,
.roundedcornr_bottom div, .roundedcornr_bottom {
   width: 100%;
   height: 15px;
   font-size: 1px;
}
.roundedcornr_content { margin: 0 15px; }





/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable_states { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 840px; 
    height:230px; 
    
   
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable_states div.items { 
    /* this cannot be too large */ 
    width:21000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable_states div.items div { 
    float:left; 
} 




div.scrollable_cities { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 840px; 
    height:520px; 
    
   
} 

div.scrollable_cities div.items { 
    /* this cannot be too large */ 
    width:21000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable_cities div.items div { 
    float:left; 
} 
 

 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    /*border:1px inset #ccc; 
    background-color:#fff; */
}

div.items div.active h2 {
    color:#FF6C00;
}



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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(images/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


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







