* {
	margin:0;
	padding: 0;
	box-sizing:border-box;
    -webkit-transition: all 0.25s ease 0s;
	-moz-transition: all 0.25s ease 0s;
	-ms-transition: all 0.25s ease 0s;
	-o-transition: all 0.25s ease 0s;
	transition: all 0.25s ease 0s;
}


body {
	font-family: 'Open Sans', sans-serif;
}


#pg-container {
	height: inherit;
	width: 1000px;
	margin: 0 auto;
	padding: 0 10px;
	position: 
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

#header {
	width: 100%;
	height: 400px;
	background: url('../images/bg.jpg') center center;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;

}


	#header img {
		width: 420px;
		margin: 116px 0 0 0;
	}

	#header h2 {
		font-weight: 300;
		color: #fff;
		margin-top: -50px;
		margin-left: 200px;
	}

	#header ul.nav {
		color: #eee;
		font-size: 12px;
		text-transform: uppercase;
		position: absolute;
		bottom: 10px;
		width: 660px;
		left:0;
		right: 0;
		margin: auto;
	}

		#header ul.nav li {
			float: left;
			margin-left: 10px;
		}

			#header ul.nav li a {
				display: block;
				text-align: center;
				width: 120px;
				height: 32px;
				line-height: 32px;
				border-radius: 3px;
			}

			#header ul.nav li a:hover, #header ul.nav li a.nav-active{
				background: rgba(0,0,0,0.4);
			}


#main {
	width: 100%;
	background: #fff;
}

	#main a:hover {
		text-decoration: underline;
	}

	#main #pg-container {
		width: 700px;
		padding: 0 10px 60px 10px;
	}

		#main h1 {
			font-weight: 300;
			margin:60px 0 0 0;
		}

		#main p {
			font-size: 16px;
			width: 600px;
			margin:40px 0 0 60px;
		}

		#main ul {
			list-style-type:circle;
			margin:40px 0 20px 60px;

		}

			#main ul li {
				margin-bottom: 15px;
				margin-left:20px;
			}


#footer {
	width: 100%;
	height: 26px;
	line-height: 26px;
	background:#eee;
	font-size: 11px;
	color: #999;
	text-align: center;
}

#map_canvas {
	width: 100%;
	height: 400px;
}

map.set('styles', [
  {
    featureType: 'road',
    elementType: 'geometry',
    stylers: [
      { color: '#000000' },
      { weight: 1.6 }
    ]
  }