/* null margins and padding to give good cross-browser baseline */
html,body,address,blockquote,div,
form,fieldset,caption,
h1,h2,h3,h4,h5,h6,
hr,ul,li,ol,ul,
table,tr,td,th,p,img {
	margin:0;
	padding:0;
}

img,fieldset {
	border:none;
}

hr {
	/*
		in my code HR are for semantic section breaks where a heading
		would be undesired or inappropriate -- NOT for 'drawing a line'
		on the screen, so hide them from screen media targets.
	*/
	display:none; 
}

@media (max-width:480px) {
	* {
		-webkit-text-size-adjust:none;
		-ms-text-size-adjust:none;
	}
}

html,
body {
	height:100%;
	position:relative; /* assist with Opera and IE8 min-height fix */
}

body {
	font:normal 85%/140% "trebuchet ms",helvetica,sans-serif;
}

/* Opera min-height Fix */
body:before { 
	content:" ";
	height:100%;
	float:left;
	width:0;
	margin-top:-9999em;
}

#pageWrapper {
	min-width:256px;
	min-height:100%;
}

* html #pageWrapper {
	/*
		IE6/earlier knows not the min-height, but will incorrectly
		treat height as such.
	*/
	height:100%;
}

h1 {
	position:relative;
	float:right;
	display:inline; /* prevent IE margin oddities */
	width:216px;
	height:1%; /* fixes IE8 resize bug */
	padding:32px 0;
	margin-right:28px;
	text-align:center;
	font:bold 24px/26px "trebuchet ms",helvetica,sans-serif;
}

h1 span {
	position:absolute;
	top:0;
	left:0;
	width:216px;
	height:80px;
	background:url(images/h1Logo.png) center center no-repeat;
}

#mainMenu,
#footer ul {
	list-style:none;
	padding:32px 0;
	margin-left:20px;
	text-transform:uppercase;
	font:normal 16px/18px "trebuchet ms",helvetica,sans-serif;
	background:#FFF;
}

#mainMenu li,
#footer li {
	display:inline;
}

#mainMenu a,
#footer li a {
	display:inline-block;
	text-decoration:none;
	padding:4px 8px;
	white-space:nowrap;
	color:#555;
	-webkit-transition:all linear 0.15s;
	-moz-transition:all linear 0.15s;
	-o-transition:all linear 0.15s;
	transition:all linear 0.15s;
}

#mainMenu a:active,
#mainMenu a:focus,
#mainMenu a:hover,
#footer li a:active,
#footer li a:focus,
#footer li a:hover {
	text-decoration:underline;
	color:#000;
}

#content {
	padding-bottom:60px;
}

#footer {
	position:relative;
	overflow:hidden;
	text-align:right;
	margin-top:-60px;
	padding:16px 28px 16px 0;
	font:normal 16px/28px "trebuchet ms",helvetica,sans-serif;
	color:#666;
}

#footer ul {
	float:left;
	padding:0;
	line-height:18px;
}

@media (max-width:680px) {

	#pageWrapper {
		min-height:auto;
	}
	
	#content {
		padding-bottom:0;
	}
	
	h1 {
		float:none;
		display:block;
		margin:0 auto;
	}
	
	#mainMenu {
		text-align:center;
		margin:0;
		padding:0 0 16px;
	}
	
	#footer {
		text-align:center;
		margin:0;
	}
	
	#footer ul {
		float:none;
		padding-bottom:16px;
	}
	
}

.imageRotate {

	overflow:hidden; /* wrap floats */
	


  position: relative;

}

.imageRotate img {
	display:block;
	border:solid #000;
	border-width:0px 0;
}

.imageRotate .under {
	position:absolute;
	top:0;
	left:0;
	z-index:1;
}

.imageRotate .hide {
	display:none;
}

.imageRotate .show {
	position:relative;
	display:block;
	z-index:99;
}

.imageRotate .selectors {
		 float: right;

  position: relative;
  left: -50%; /* or right 50% */
  text-align: left;

	padding:8px 8px 8px 0;
	list-style:none;
	font-size:1px; /* fix IE minimum size bugs */
}

.imageRotate .selectors li,
.imageRotate .pause,
.imageRotate .play,
.imageRotate .next,
.imageRotate .prev {
	cursor:pointer;
	cursor:hand;
	/* fix IE minimum size bugs */
	font-size:1px; 
	line-height:1px;
	-webkit-transition:
		background-color linear 0.15s,
		border-color linear 0.15s;
	-moz-transition:
		background-color linear 0.15s,
		border-color linear 0.15s;
	-o-transition:
		background-color linear 0.15s,
		border-color linear 0.15s;
	transition:
		background-color linear 0.15s,
		border-color linear 0.15s;
}



.imageRotate .timeLeft,
.imageRotate .pause,
.imageRotate .play {
	float:left;
	margin:8px 0 0 8px;
}






.imageRotate .play,
.imageRotate .next {
	position:relative;
float: left;
margin: 0; 
padding: 0;
background: url(/images/custom/moments/right.png) no-repeat;
width: 22px;
height: 67px;
overflow:hidden;/* for ie to hide extra height*/

}


.imageRotate .prev {

position:relative;
float: left;
margin: 0; 
padding: 0;
background: url(/images/custom/moments/left.png) no-repeat;
width: 22px;
height: 67px;
overflow:hidden;/* for ie to hide extra height*/

}



.imageRotate .play:hover {
	border-left-color:#AAA;
}

.imageRotate .next,
.imageRotate .prev {
	position:absolute;
	top:50%;
	z-index:999;
	margin-top:-16px;
	opacity:1;
	filter:alpha(opacity=500); /* IE 8 and lower */
	-webkit-transition:opacity linear 1.5s;
	-moz-transition:opacity linear 1.55s;
	-o-transition:opacity linear 1.55s;
	transition:opacity linear 1.55s;
}

.imageRotate:hover .next,
.imageRotate:hover .prev {
	opacity:1;
	filter:alpha(opacity=100); /* IE 8 and lower */
}

.imageRotate .next {
	right:8px;
	top:240px;
}

.imageRotate .prev {
	top:240px;
	left:8px;
	border-color:transparent #CCC transparent transparent;
	border-width:30px 16px 30px 0;
}

* html .imageRotate .next,
* html .imageRotate .play {
	border-color:pink pink pink #CCC;
	filter:chroma(color=pink) alpha(opacity=50);
}

* html .imageRotate .prev {
	border-color:pink #CCC pink pink;
	filter:chroma(color=pink) alpha(opacity=50);
}

.imageRotate .next:hover {
	border-left-color:#FFF;
}

.imageRotate .prev:hover {
	border-right-color:#FFF;
}

@media (max-width:480px) {
	.imageRotate .timeLeft {
		width:100px;
	}
}
