/* 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 {
	position:relative;
	overflow:hidden; /* wrap floats */
	width:100%; /* trips haslayout, so IE is wrapping floats too */
}

.imageRotate img {
	display:block;
	border:solid #000;
	border-width:1px 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: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 .selectors li {
	float:left;
	display:inline; /* prevent IE margin bugs */
	height:42px; /* added */
	width:60px;  /* added */
	background-image:url("cityscape01.jpg"); /* added */
	padding:4px;
	margin-left:4px;
	border:2px solid #e0e0c0;
//	background:#CCC;
	border-radius:5px;
}

.imageRotate .selectors span {
	display:block;
//	width:8px;
//	height:8px;
//	border-radius:8px;
//	background:#FFF;
}

.imageRotate .selectors li:hover {
	border-color:black;
//	background:#AAA;
}

.imageRotate .selectors .selected {
	border:2px solid black;
//	background:#666;
//	background:red;}

.imageRotate .timeLeft,
.imageRotate .pause,
.imageRotate .play {
	float:left;
	margin:8px 0 0 8px;
}

.imageRotate .timeLeft {
	display:none;
	position:relative;
	width:256px;
	font-size:1px; /* fix IE minimum size bugs */
	background:#FFF;
	border:4px solid #CCC;
	border-radius:12px;
}

.imageRotate .timeLeft div {
	display:none;
	width:0;
	height:8px;
	background:#666;
	border-radius:8px;
}

.imageRotate .timeLeft div.countdown {
	background:#F00;
}

.imageRotate .pause {
	position:relative;
	top:8px;
	right:-15px;
	width:6px;
	height:37px;
	border:solid #444;
	border-width:0 10px;
}

.imageRotate .pause:hover {
	border-color:black;
}

.imageRotate .play,
.imageRotate .next,
.imageRotate .prev {
	position:relative;
	top:8px;
	right:-15px;
	width:1px;
	height:1px;
//	border:4px solid transparent;
//	border-width:26px 0 26px 36px;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 30px solid #444;
}

.imageRotate .play:hover {
	border-left-color:black;
}

.imageRotate .next,
.imageRotate .prev {
	display:none;
	position:absolute;
	top:50%;
	z-index:999;
	margin-top:-16px;
	opacity:0.2;
	filter:alpha(opacity=20); /* IE 8 and lower */
	-webkit-transition:opacity linear 0.25s;
	-moz-transition:opacity linear 0.25s;
	-o-transition:opacity linear 0.25s;
	transition:opacity linear 0.25s;
}

.imageRotate:hover .next,
.imageRotate:hover .prev {
	opacity:1;
	filter:alpha(opacity=100); /* IE 8 and lower */
}

.imageRotate .next {
	display:none;
	right:8px;
}

.imageRotate .prev {
	display:none;
	left:8px;
	border-color:transparent #CCC transparent transparent;
	border-width:8px 12px 8px 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;
	}
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #d0d0b0;
    min-width: 160px;
    text-transform:none;
    z-index: 500;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.text_right {
  text-align:right;
}

.text_center {
  text-align:center;
}

.plan_control
{
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  display:inline;
  padding:5px;
  margin:5px;
  border:2px solid #c8cccc;
}

p.top
{
  text-align: justify;
  margin-left:1em;
  margin-right:1em;
  margin-bottom:1em;
  font-size:16px;
}

p.left
{
  text-align: justify;
  margin-left:0 em;
  margin-right:1em;
  margin-bottom:1em;
  font-size:16px;
}

p.other
{
  text-align: justify;
  margin:1em;
  font-size:16px;
}

.hidespan
{
  margin:0px;
  border:0px;
  padding:0px;
  display:none;
}
