/*Whole page CSS*/
.M_Page {
		margin-right:auto;
		font-family: Verdana, Times, serif;
		margin-left:auto;
		width:100%;
		height:100%;
		background-color:#F9E784;}

#Intro_Div{
margin:40px;}

#S_Text{
	text-align:center;
	font-size:22px;}
/* Slideshow*/
.mySlides {
	border-radius:100px;
	display: block;
	height: 100%;
    width: 100%;
}
.mySlides img {
	 max-width: 100%;
    max-height: 100%;
	
}
.slideshow-container {
	  margin: auto;
	width: 70%;
	border: 3px solid gray;
	overflow: hidden;
	position: relative;
}
.slide-prev, .slide-next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}
.slide-next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
.slide-prev:hover, .slide-next:hover {
	background-color: rgba(0,0,0,0.8);
}
.slide-text {
	color:black;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}
.slide-number {
	color: black;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}
.slide-dot-control {
		  margin: auto;
	width: 20%;
	text-align: center;
}
.slide-dot {
	cursor:pointer;
	height: 13px;
	width: 13px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
.slide-dot-active, .slide-dot:hover {
	background-color: #717171;
}

/************CSS Animation***********/

.animated { 
   -webkit-animation-name: fadeIn; 
           animation-name: fadeIn; 
   -webkit-animation-duration: 1s; 
           animation-duration: 1s; 
} 
@-webkit-keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;} 
} 
@keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;} 
} 
.fadeIn { 
    -webkit-animation-name: fadeIn; 
    animation-name: fadeIn; 
}
