#slider{
	width: 1000px;
	height: 500px;
	box-shadow: 0px 0px 8px #333;
	margin: auto;
	position: relative;
}
#ul 
   {
   	  left:45%;
   	  bottom: 0px;
   	  z-index: 999;
     position: absolute;
   	  list-style: none;
   	  cursor: pointer;
   	  bottom: 10px
   }
   #ul li 
   {
   	 width: 22px;
   	 height:22px;
   	 border-radius: 20px;
     float:left;
     background-color: #fff;
     margin-left: 3px;
     cursor:pointer;
   }
   
   #ul li:first-child 
   {
   	background-color:#fa5555;
   }

  
.sliderimage{
   	position: absolute;
   	width: 100%;
   	height: 100%;
	opacity: 0;
	-webkit-transition: all 1.6s;
	 -moz-transition: all 1.6s;
	 -o-transition: all 1.6s;
	transition: all 1.6s;
	z-index: -1;
   }
   .sliderimage:first-child{
   	opacity: 1;
   }
   #main{
   	width: 1100px;
   	margin: 20px auto;
  
   }
   #main .about-left{
   	width: 70%;
   	overflow: hidden;
   	margin-left: 30%;
   	font-size: 15px;
   	line-height: 20px;
   	color: #707473;
   
   
   }
   #main .about-left h3{
   	color: #8a3288;
   	
   }

   #main .about-left img{
   	width: 350px;
   	height: 300px;
   	float: right;
   	padding: 10px;
   		border-top-right-radius: 40%;
   	border-bottom-left-radius: 40%;
   }
   #main .about-right{
   		width: 70%;
   	margin-left: 0%;
   	overflow: hidden;
   	font-size: 15px;
   	line-height: 20px;
   	color: #707473;
   }
   #main .about-right h3{
   	color: #8a3288;
   	
   }

   #main .about-right img{
   	width: 350px;
   	height: 300px;
   	border-top-left-radius: 40%;
   	border-bottom-right-radius: 40%;
   	float: left;
   	padding: 10px;
   }
   #alert_box 
	{
		position: fixed;
		top:-100%;
		left:0px;
		width: 100%;
		height:100%;
		z-index:9999;
		 -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
		    background-color: rgba(45,58,75, 0.7);
		    box-shadow: 0px 0px 5px #fff;
	}
	.message 
	{
		width: 890px;
		height:500px;
		margin:10% auto;
		border-radius:7px;
		position:relative;
	}
	.close{
		position: absolute;
		top: -25px;
		right: -25px;
		color: #fff;
		font-size: 23px;
		cursor: pointer;
	}