* {box-sizing:border-box}
			
			.slideshow-container {
			  max-width: 1000px;
			  position: relative;
			  margin: auto;
			}
			.mySlides {
			  display: none;
			}
			.prev, .next {
			  cursor: pointer;
			  position: absolute;
			  
			  width: auto;
			  margin-top: -22px;
			  padding: 16px;
			  color: red;
			  background:none;
			  font-weight: bold;
			  font-size: 22px;
			  transition: 0.6s ease;
			  border-radius: 5px;
			  user-select: none;
			}	

			.text {
			  color: red;
			  font-size: 18px;
			  font-weight:bold;
			  padding: 8px 12px;
			  position: absolute;			  
			  width: 100%;
			  text-align: center;
			}			
			.fade {
			  animation-name: fade;
			  animation-duration: 0.3s;
			}

			@keyframes fade {
			  from {opacity: .7}
			  to {opacity: 1}
			}
			.close_button{
			   text-decoration:none;
			   color:black;
			   font-weight:bold; 
			   display: inline-block;
			   text-align: right;
			   
			}
			@media (max-width: 650px) {
				.close_button{
				   width: 99%;
				   margin-bottom:15px;
				   font-size:13px
				}
				.text {
					top: 101%;
				}
				.prev, .next {
					top: 105%;
				}
				.next {
				  right: 25%;
				}
				.prev {
				  left: 25%;
				}
			  .special_articleMainTitle {
				 width: 90%;
				 font-size:14pt;
				 color:#e72f2f
			  }
			}
			@media (min-width: 650px) {
			    .close_button{
				   width: 96%;
				   font-size:16px
				}
				.text {
					top: 106.5%;
				}
				.prev, .next {
					top: 108%;
				}
				.next {
				  right: 40%;
				}
				.prev {
				  left: 40%;
				}
			  .special_articleMainTitle {
				 width: 650px;
				 font-size:19pt;
				 color:#e72f2f
			  }
			}