@charset "utf-8";



.slideshow{margin: 0 auto; width:800px; height:500px; overflow:hidden;} //gibt Höhe und Breite des Sliders an, wichtig overflow:hidden

.inner{height:500px; background:lightgray} //Höhe muss gleich sein wie bei .slideshow, Breite wird später definiert

.slide{width:800px; height:500; margin-left:0px; float:left;} //float:left für horizontalen Slide

.left{float:left; margin-left:-75px;width:45px; height:45px; background:url("img/left.png");} //Hintergrundbild linker Button

.right{float:right;margin-right:-75px;width:45px; height:45px; background:url("img/right.png"); } //Hintergrundbild rechter Button

.control{width:800px; position:absolute; top:250px;} //Kontrollfläche, durch top kann sie mittig ausgerichtet werden.