html
{ height: 100%; overflow-y:scroll;
-webkit-overflow-scrolling: touch;

}
 .gmnoprint {
     -webkit-transform: translate3d(0,0,0);  
 }
* 
{ margin: 0px;
  padding: 0px;}

body
{ font: normal 100% 'trebuchet ms', arial, sans-serif;
  background: #FFF;
  width:100%;min-width:340px;
  text-align: left;
  color: #444;
  -webkit-overflow-scrolling: touch;
  }
table
{ font: normal 100%'trebuchet ms', arial, sans-serif;}

p
{ padding: 0 0 .5vw 0;
 }
 div.frameit{ 
 display:none;
 } 
p.indent
{ margin: 0 2em;
 }

 p.wrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
 
img
{ border-width: 1px;}



	
h1 
{ margin: 0;
  padding: 0.2vw 0 0.2vw 0;
  font: normal 100% arial, sans-serif;
 color: #712804;
 }

 h2 
{ margin: 0;
 padding: 2vw 0 .5vw 0;
 font: normal 100% arial, sans-serif;
 color: #712804;
 }
 
 h3 
{ margin: 0 0 0.2vw 0;
 padding: 0.2vw 0 0.2vw 0;
 font: normal 100% arial, sans-serif;
 color: #712804;
 }
h1.nopad  {margin: 0;padding: 0;}

textarea {
    border-style: inset;
    border-width: 3px;
}
a, a:hover
{ outline: none;
 text-decoration: underline;
 color: #006600;}

a:hover
{ text-decoration: none;}

.left
{ float: left;
 width: auto;
 margin-right: 1vw;}

.right
{ float: right; 
 width: auto;
 margin-left: 1vw;}
 
.center
{ display: block;
 text-align: center;
 margin: 1vw auto;}
 
 div.sidebox {
	 width:30%; float:right; display:inline-block;  padding: 1vw 0vw 1vw 1vw;
 }
 
 p.piccaption {
	 font-size:80%; 
 }
 	 
 p.bullet {
margin-left: 3em;  
 }
 
img.sideboxpicture {
	max-width:100%;
	border-color:#000;
	border-width:1px;
	border-style:solid;
	}
 
 #menubar
{ width: auto;
height:1.8em;margin: 0;
  padding: 0em;
 text-align: center;
  border-color:#544E15;
  border-style:solid;
  border-width:1px 1px 0px 1px;
 background: #191970} 

 
 #main
{ text-align: left;
padding: 0 2vw;
}
#upload_site_content {font-size: 120%;}

#header
{ background: #ADD8E6;
 padding: 0.5vw 2vw 0.5vw 2vw;
  border-color:#544E15;
 border-style:solid;
 border-width:1px;
 color: #544E15;
 font-size: 120%;
 height: 3.5em;
 }

#header p 
{ 	font-size:1em;
	display: inline;
	float:right;
	margin: 0 .5em; 
	padding: 0;
 }

 
 
#site_content
{ overflow: hidden;
 padding: 0 2vw;
 background: #FFF;
  border-color:#544E15;
  border-style:solid;
  border-width:1px;
 } 
 
 
#footer
{ font-size: 50%;
 padding: .5vw 2vw;
 text-align: center; 
background: #ADD8E6;
 color: #000;
 border-color:#544E15;border-style:solid;border-width:1px;
 }

#footer a
{ color: #444; font-size: 1.5em;
 }

#footer a:hover
{ color: red;
 text-decoration: underline;}

 button 
	{ font-size: 1em;}

input[type=submit] {
    font-size: 1em;
	margin: 0 1em 0  2em;
}	
input[type=radio]  {
    font-size: 120%;
}	
	
input[type=text]  {
    font-size: 1em;
}	

input.topbutton {
	font-size:0.8em; 
	display:inline; 
	float:right; 
	margin: 0 .3em; 
	padding: 0;
	}

/* information pupup button css below */

.box {
  width: 1%;
  padding:0; margin:  0 10% 0 10%;;
  position: absolute;
    width: auto;
    height: auto;
    border-radius: 5px/5px;
  text-align: center;
  display:inline;
  
 }

.popbutton {
  font-size: 1em;
  padding: .2em;
  color: #000;
  border: 1px solid grey;
  border-radius: 3px/3px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  background: lightgrey;
}
.popbutton:hover {
  background: white;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  padding:5px;
  background: #fff;
  border-radius: 5px;
  border: 0px white;
  width: 90%;
    position: relative;
  transition: all 5s ease-in-out;
  font-size: 0.9em;
}

.popup h2 {
  margin-top: 0;
  color: #000;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  padding:0 1em;
  position: absolute;
  font-size: 2em;
  top: 0em;
  right: 20%;
  transition: all 200ms;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
.popup .close:hover {
  color: red;
}
.popup .popcontent {
  height: auto;
  padding: 5% 0; margin:5%;
   overflow: auto;
  color: #000;
  font-weight: normal;
  font-size:1.25em;
}

/* information pupup button css above */

/*-------------------------
	Inline help tip
--------------------------*/


.help-tip{
	margin:0;
	padding:0;
	display: inline-block; 
	float:right;
	text-align: center;
	background-color: #EABCC4;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	font-size: 1em;
	line-height: 26px;
	cursor: default;
}

.help-tip:before{
	content:'?';
	font-weight: bold;
	color:#000;
}

.help-tip:hover p{
	display:block;
	transform-origin: 100% 0%;
	-webkit-animation: fadeIn 0.3s ease-in-out;
	animation: fadeIn 0.3s ease-in-out;

}

.help-tip p{
	display: none;
	text-align: left;
	background-color: #1E2021;
	padding: 20px;
	width: 300px;
	position: relative;float:left;
	left:-325px;
	border-radius: 3px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	right: -4px;
	color: #FFF;
	font-size: 1em;
	line-height: 1;
}

.help-tip p:before{
	position: absolute;
	content: '';
	width:0;
	height: 0;
	border:6px solid transparent;
	border-bottom-color:#1E2021;
	right:10px;
	top:-12px;
}

.help-tip p:after{
	width:100%;
	height:40px;
	content:'';
	position: absolute;
	top:-40px;
	left:0;
}

@-webkit-keyframes fadeIn {
	0% { 
		opacity:0; 
		transform: scale(0.6);
	}

	100% {
		opacity:100%;
		transform: scale(1);
	}
}

@keyframes fadeIn {
	0% { opacity:0; }
	100% { opacity:100; }
}


/* end help-tip css code */

/* new MENU  below */

/*Strip the ul of padding and list styling*/


ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
li a {
	display:block;
	min-width:6.5em;
	height: 1.5em;
	text-align: center;
	line-height: 1.4em;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #191970;
	text-decoration: none;
	margin-right: 15px;
}

/*Hover state for top level links*/
li:hover a {
	background: #19c589;
}

/*Style for dropdown links*/
li:hover ul a {
	background: #5959AB;
	color: #191970;
	height: 1em;
	line-height: 1em;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	background: #19c589;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
li ul {
	display: none;
}

/*Make dropdown links vertical*/
li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 .5em;
}
ul#menu li a:hover, ul#menu li.selected a, ul#menu li.selected a:hover
/*need to fix this can't get selected to change */
{ color: #FFF;
 background: #5959AB;
 }

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #19c589;
	text-align: center;
	padding: .2em 0;
	display: none;
}

/*Hide checkbox*/
#menubar input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
#menubar input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 7px;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	/* info pop up windows adjustments below */
input.topbutton {font-size: 0.9em;}
	 #header img{display: none;}
	 .mobile-hide{ display: none; }
  .mobile-display{ display: block; }
 
 #footer a
{ color: #444; font-size: 1.5em;
 }


	
}
