.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 825px;
        float:left;
	height:90px;
}
#homepageSlider { height:260px; width:902px; z-index: 1;}
/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:relative;
        z-index: 2;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div {
	float:left;
}

/* Fix Z-index on admin dropdown menu appearing under the main nav */
div.cms-toolbar { z-index: 10000;}

/* Fix read more button in pharmaslide - move it up since the text stops before the button on the line above...needed for IE7 */
div#pharmaSlide a.linkButton {margin-top: -10px !important;}
