/*begin reset*/

* {
vertical-align: baseline;
font-weight: inherit;
font-family: sans-serif;
font-style: inherit;
font-size: 100%;
border: 0 none;
outline: 0;
padding: 0;
margin: 0;
}

html {
    -webkit-font-smoothing: antialiased;
}

/*for older browsers that don't understand HTML5*/
div, article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
	position:relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}
img{
	vertical-align: middle;
}
a img{
	border:0;
}


/*End Reset*/

.clear:after{
	display:block;
	height: 0;
	content: ".";
	clear:both;
	visibility: hidden;/*note this out to see where it places the "."*/
}

/*IE fixes*/

/* IE 6*/
* html .clear{
	height: 1%;
}

/* IE7 */
*:first-child+html .clear{
	min-height: 1px;
}

/* End IE fixes */

/*copy all the following rule to you css document*/
#slideContainer{
	width:100%; 
	position: relative;
}
.slide{
	position:absolute;
	width:100%;
	height:100%;
	background: #ff6161;/*this is a rule you should delete*/
}
.active{/*this is a rule you should delete*/
	background:#388abe;
}
/*pagination controls*/
.pager{
	margin-top: 10px;
	text-align: center;
}
.pager span{ 
	display:inline-block;
	width: 12px;
	height: 12px;
	margin:2px;
	background: #f3f3f3;
	text-indent: 99999999px;
	overflow: hidden; 
	cursor:pointer;
	border-radius: 50px;
}
span.cycle-pager-active { 
	background: #a9b2f3;
	}
/**** end pagination controls ****/	

/******** next prev controls **********/
#next, #prev{
	display: block;
	position: absolute;
	top:0;
	bottom:0;
	margin: auto;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,.5);
	text-align: center;
	text-decoration: none;
	font-size:2em;
	color:rgba(255,255,255,.75);
	border: 2px solid rgba(255,255,255,.75);
	z-index: 300;
	border-radius: 50%;
	opacity: 0;
	box-shadow: inset 0px 0px 16px white;
	text-shadow: 0px 0px 20px white;
	-webkit-transition:1s;
	transition:1s;
}
#next{
	right:0;
}
.slideshow:hover>#next{
	opacity: 1;
}
.slideshow:hover>#prev{
	opacity: 1;
}

.slide img{
	max-width:100%;
}
/******** end next prev controls **********/

