/* CSS Document */
* {
	margin:0;
	padding:0;
	font-size:13px;
}
a {
	cursor:pointer;	
}
.rotating {
	height:506px;
	width:280px;
	position:relative;
	left:50%;
	margin:30px 0 0 -130px;
}
.rotating > div {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	background:transparent url(online_wellness_slides.jpg) no-repeat 0 0;
	height:100%;
	display:none;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	box-shadow:1px 1px 4px rgba(0,0,0,0.3);
	-moz-box-shadow:1px 1px 4px rgba(0,0,0,0.3);
	-webkit-box-shadow:1px 1px 4px rgba(0,0,0,0.3);
}
.rotating > div + div {
	background-position:-280px 0;
}
.rotating > div + div + div {
	background-position:-560px 0;	
}
.rotating > div.slide_1 .button {
	position:absolute;
	right:20px;
	bottom:20px;
	padding:0 13px;
	height:22px;
	line-height:22px;
	background:#356790;
	color:#fff;
	font-weight:bold;
	text-decoration:none;
	display:inline-block;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	box-shadow:inset 0 0 3px rgba(0,0,0,0.3);
	-moz-box-shadow:inset 0 0 3px rgba(0,0,0,0.3);
	-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.3);
	transition:all ease 300ms;
	-moz-transition:all ease 300ms;
	-webkit-transition:all ease 300ms;
}
.rotating > div.slide_1 .button:hover {
	box-shadow:inset 0 0 12px rgba(0,0,0,0.4);
	-moz-box-shadow:inset 0 0 12px rgba(0,0,0,0.4);
	-webkit-box-shadow:inset 0 0 12px rgba(0,0,0,0.4);
}
.rotating nav.controls a {
	opacity:0;
	width:32px;
	height:32px;
	position:absolute;
	top:50%;
	margin-top:-22px;
	background:rgba(0,0,0,0.1);
	-moz-background:rgba(0,0,0,0.1);
	-webkit-background:rgba(0,0,0,0.1);
	text-align:center;
	font-size:32px;
	line-height:32px;
	padding:4px 0 8px 0;
	font-weight:bold;
	vertical-align:middle;
	color:#fff;
	color:rgba(255,255,255,0.4);
	transition:all ease 600ms;
	-moz-transition:all ease 600ms;
	-webkit-transition:all ease 600ms;
	border-radius:0 2px 2px 0;
	-moz-border-radius:0 2px 2px 0;
	-webkit-border-radius:0 2px 2px 0;
}
.rotating nav.controls a + a {
	right:0;
	border-radius:2px 0 0 2px;
	-moz-border-radius:2px 0 0 2px;
	-webkit-border-radius:2px 0 0 2px;
}
.rotating nav.controls a:hover {
	background:rgba(0,0,0,0.5);
	-moz-background:rgba(0,0,0,0.5);
	-webkit-background:rgba(0,0,0,0.5);		
}
.rotating:hover nav.controls a {
	display:block;
	opacity:1;
}
.rotating nav.pagination {
	position:absolute;
	text-align:center;
	font-weight:bold;
	bottom:-24px;
	height:20px;
	line-height:20px;
	font-size:16px;
	width:100%;
}
.rotating nav.pagination a {
	margin:0 3px;	
}

/*************************************
		IE is fun
**************************************/
#ie .rotating nav.controls a {
	display:none;
	filter: alpha(opacity = 10);
	background:#000;
	color:#fff;
	font-weight:bold;
}
#ie .rotating nav.controls a:hover {
	filter: alpha(opacity = 40);	
}
#ie .rotating:hover nav.controls a {
	display:block;	
}


