/*--Main Container--*/ .main_view { float: left; position: relative; } /*--Window/Masking Styles--*/ .window { height: 414px; width:740px; overflow: hidden; /*--Hides anything outside of the set width/height--*/ position: relative; } .image_reel { position: relative; top: 0; left: 0; } .image_reel img {float: left;} /*--Paging Styles--*/ .paging { position: absolute; bottom: 8px; right: 0px; left: 560px; width: 200px; height:12px; z-index: 100; /*--Assures the paging stays on the top layer--*/ font-family: arial,san-serif; text-align: center; display: none; /*--Hidden by default, will be later shown with jQuery--*/ } .paging a { padding: 5px 12px 5px 5px; text-decoration: none; color: #fff; background:url(images/slidelink.png) no-repeat; width:12px; } .paging a.active { background:url(images/slidelink-active.png) no-repeat; width:12px; } .paging a:hover { background:url(images/slidelink-active.png) no-repeat; width:12px;}