/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable {
	/* required settings */ 
    position:relative;
	overflow:hidden;
	width: 715px;
	height: auto !important;
	min-height: 500px;
}
div#scrollBrands.scrollable {
	/* required settings */ 
    position:relative;
	overflow:hidden;
	width: 100%;
	height: auto !important;
	min-height: auto;
	width: 88%;
	margin: 0px auto;
	float: none;
} 
 
/* 
    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 div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
}
div#scrollBrands.scrollable div.items { 
    /* this cannot be too large */ 
    width: 100%; 
    position:absolute;
	margin: 0px auto; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:0px inset #ccc; 
    background-color:#fff; 
}

/* styling for the image wrapper  */ 
#image_wrap { 
    /* dimensions */ 
    width:; 
    margin:0px; 
    padding:15px 0; 
 
    /* centered */ 
    text-align:center; 
 
    /* some "skinning" */ 
    background-color:; 
    border:0px solid #fff; 
    outline:0px solid #ddd; 
    -moz-ouline-radius:4px; 
}

img.brandGallery {
	padding: 8px;
}

/* remove margins from the image */ 
.items img { 
    margin:0; 
} 
 
/* make A tags our floating scrollable items */ 
div#scrollBrands.scrollable div.items a { 
    display:block; 
    float:left; 
    margin:0px;
	padding:0px; 
}  