/** code by webdevtrick ( https://webdevtrick.com ) **/
@media screen and (min-width: 480px) {
body {
	background: #white;
	font-size:22px;
	line-height: 32px;
	color: #ffffff;
	word-wrap:break-word !important;
    font-family: 'Arial', sans-serif, Quicksand;
	width: 100%; 
	height: 100%; 
	min-width: 1000px; 
	//min-height: 1000px;
	margin: 0;
	padding: 0;
}
}

#container {
		margin: 0 auto;
	width: 100%;
    min-width:1000px;
    height:auto;
}
 
 
nav {
	margin: 25px 0;
	background-color: #58595B;
}
nav ul {
	padding: 0;
        margin: 0;
	list-style: none;
	position: relative;
	}	
nav ul li {
	display:inline-block;
	background-color: #008569;
	width:205px;
	}
nav a {
	display:block;
	padding:0 10px;	
	color:#FFF;
	font-size:20px;
	line-height: 60px;
	text-decoration:none;
}
nav a:hover { 
	background-color: #ED1C24; 
}
nav ul ul {
	display: none;
	position: absolute; 
	top: 60px; 	
}	
nav ul li:hover > ul {
	display:inherit;
}	
nav ul ul li {
	width:240px;
	float:none;
	display:list-item;
	position: relative;
}
nav ul ul ul li {
	position: relative;
	top:-60px; 
	left:230px;
}
nav ul ul li {
	border: 1px solid white;
}	
li > a:after { content:  ' ▼'; }
li > a:only-child:after { content: ''; }

h1.a1{
	text-align: center;
	font-size:10px;
	font-family:helvetica;
}
	
p.a1{
	font-size:20px;
	line-height: 32px;
	font-family: Quicksand;
	padding-top: 20px;
	padding-bottom: 20px;
	//margin:50px;
	text-align:center;
	color: #58595B;	
}

img.a1{
	width:70px
	height:50px;
}


hr { 
		width: 1000px;
        position: relative; 
        top: 20px; 
        border: none; 
        height: 2px; 
        background: #58595B; 
        //margin-bottom: 50px; 
        }
div.imgsh{
	width: 100%;
    min-width:1000px;
}		

div.a1{
width: 1000px;
		//width: 100%;
    min-width:1000px;
    //height:auto;	
}


div.a2{
width: 1000px;
height:24px;
	  	font-family: Arial;
font-size: 12px;
	//line-height: 22px;
color: white;
  background: #008569;	
}



* {
  box-sizing: border-box;
}

.zoom {
  padding: 50px;
  //background-color: green;
  transition: transform .2s;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}
