                body {
                    margin: 0; padding: 0; background-color:#FFFFFF;
                }
                *{
					outline: none;
				}
                img {
					border: 0;
				}
                .container {
                    position: absolute;
					width: 450px;
                    padding: 0;
                    margin: 0 auto;
                }
                .folio_block {
                    position: absolute;
                    left: 0px; top: 0px;
                    margin: 0px 0 0 0px;
                }


                /*--Main Container--*/
                .main_view {
                    float: left;
                    position: relative;
                }
                /*--Window/Masking Styles--*/
                .window {
                    height:450px;	width: 450px;
                    overflow: hidden; /*--Hides anything outside of the set width/height--*/
                    position: relative;
                }
                .image_reel {
                    position: absolute;
                    top: 0; left: 0;
                }
                .image_reel img {
					float: left;
				}

                /*--Paging Styles--*/
                .paging {
                    position: absolute;
                    bottom: -32px; left: 450px;
                    width: 100px; height:30px;
                    z-index: 100; /*--Assures the paging stays on the top layer--*/
                    display: none; /*--Hidden by default, will be later shown with jQuery--*/
                }
                .paging a {

					filter:alpha(opacity=50);
					-moz-opacity: 0.5;
					opacity: 0.5;
                }
                .paging a.active {

					filter:alpha(opacity=100);
					-moz-opacity: 1.0;
					opacity: 1.0;
                }
                .paging a:hover {

					filter:alpha(opacity=100);
					-moz-opacity: 1.0;
					opacity: 1.0;	
                }