/*Hauptrahmen für die Thumbnails*/ 
#thumbs {
 	position: absolute;
 	width: 184px;
 	height: 460px;
	top: 0px;
	left: 0px;
	padding-left: 16px;
	padding-top: 10px;
 }

 /*Rahmen für die einzelnen Thumbnails*/ 
 .thumb {
 	position: relative;
 	float: left;
 	width: 90px;
 	height: 85px;
 }
 
 .thumb a{
 	position: absolute;
 	width: 82px;
 	height: 78px;
 	border: solid 2px #FFBF01;
 }
 
 .thumb a:hover{
 	border: solid 2px #08d384;
 }
 
 .thumb .check{
 	border: solid 2px #08d384;
 }
 
 /*Rahmen für das Hauptbild*/ 
 #main-pic {
 	position: absolute;
 	height: 350px;
 	width: 500px;
 	left: 50px;
 	top: 55px;
 	text-align: center;
 }
 
 #main-pic img {
 	 border: solid 1px black;

 }	
 
 /*Rahmen für die Bildtext*/
 #pic-text {
 	position: absolute;
 	width: 500px;
 	height: 15px;
 	left: 50px;
 	top: 413px;
 	border:solid 1px #FF9900;
 	text-align: center;
 }
 
 /*Rahmen für die Bildernavigation*/
 #pic-navi {
 	position: absolute;
 	width: 160px;
 	height: 15px;
 	left: 22px;
 	top: 438px;
 	text-align: center;
 }
 
 /*Rahmen für Button --> nächstes Bild*/
 #pic-next {
 	position: absolute;
 	width: 20px;
 	height: 40px;
 	right: 27px;
 	top: 200px;
 }
 
 /*Rahmen für Button --> vorheriges Bild*/
 #pic-prev {
 	position: absolute;
 	width: 20px;
 	height: 40px;
 	left: 20px;
 	top: 200px;
 }
 
 #pic-next img {
 	border: none;
 }
 
  #pic-prev img {
 	border: none;
 }