/*--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: 50px; right: 0px; left: 550px; width: 200px; height:0px; z-index: 100; /*--Assures the paging stays on the top layer--*/ font-family: arial,san-serif; text-align: center; line-height: 40px; display: none; /*--Hidden by default, will be later shown with jQuery--*/ } .paging a { padding: 5px; text-decoration: none; color: #fff; background: #99a9a7; border: 1px solid #99a9a7; } .paging a.active { font-weight: bold; background: #920000; border: 1px solid #610000; } .paging a:hover {font-weight: regular; text-decoration: none;}