/*
			Load CSS before JavaScript
		*/
		
		/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		.slides_container {
			width:1026px;
			display:none;
		}

		/*
			Each slide
			Important:
			Set the width of your slides
			If height not specified height will be set by the slide content
			Set to display block
		*/
		.slides_container div {
			width:1026px;
			height:290px;
			display:block;
		}
		
		/*
			Optional:
			Reset list default style
		*/
		.pagination {
			list-style:none;
			/*margin:0;
			padding:0; */
			margin-top: -41px;
            margin-left: -21px;
            z-index: 9999;
            position:absolute;
		}
		
	.pagination li {
      float:left;
      z-index: 9999;
      width:20px;
      height:20px;
      background-color: #767a7d; /*WEBSICHER #666666;*/
      margin:1px;
      text-align:center;
      line-height: 18px;
      text-decoration: none;
  }
        
        .pagination .current{
        
           background-color: white; /*WEBSICHER #666666;*/
            
        }
        
        .pagination a, .pagination a:visited, .pagination a:hover, .pagination a:link{
         text-decoration: none;
         color:white;   
        }
		/*
			Optional:
			Show the current slide in the pagination
		*/
		.pagination .current a,.pagination .current a:visited,.pagination .current a:hover,.pagination .current a:link {
			color:#484d50;			
			
		}