body, html {
	background: #666;
	height: 100%;
	/* width: 100%; */
	padding: 0;
	margin: 0;
	border: 0;
	font-family: arial;
	font-size: 11px;
}
#mainContainer {
	/* margin-right: auto; */
	/* margin-left: auto; */
	/* width: 920px; */
	/* background: url('glow.png') no-repeat; */
	/* height:500px; */
	/* padding: 0px 80px 0px 80px; */
}

#container {/* border-top: 11px solid #303030; *//* width: 360px; */overflow-x:  hidden;/* padding: 30px; */}

#logo {
	margin: 39px 0px 40px 22px;
	background: url('/images/logoMobile.png') no-repeat;
	height: 40px;
}
#header {
	background: url('/images/headerMobile.jpg');
	height: 150px;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 28px;
	border-top: 1px solid #ffffcc;
	border-bottom: 5px solid #686868;
}
#menuContainer {
	background: #666666;
	font-size: 13px;
	list-style-type: none;
	line-height: 24px;
	margin: 0;
	padding: 30px;
	opacity: 1;
	max-height: 200px;
 -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
      -o-transition: all 1s ease;
     -ms-transition: all 1s ease;
         transition: all 1s ease;
}


#menuContainer.hidden {
	max-height: 0px;
	overflow: hidden;
	padding: 0px 30px;

}


#menuContainer li {
	padding: 0;
	margin: 0;
}

#menuContainer a {
	color: #FFF;
	text-decoration: none;
}

#menuContainer a:hover, #menuContainer li.current a {
	color: #ffffcc;
}

#contentContainer {
	background: #e9e9e9;
	/* width: 920px; */
	/* padding-top: 33px; */
	float: left;
	min-height: 300px;
	padding-bottom: 33px;
}
#content {
	/* float: left; */
	/* width: 673px; */
	/* font-size: 12px; */
	line-height: 24px;
	color: #666;
	font-family: arial;
	padding: 30px;
}

#content a {
	text-decoration: underline;
	color: #222;
}

#content a:hover {
	text-decoration: underline;
	color: #222;
}

#content h1 {
	padding: 0;
	margin: 0;
	font-family: arial;
	font-size: 26px;
	color: #666;
	width: 100%;
}

input[type="text"], textarea {
	width: 300px;
}

#hamburgerMenu {
	position: absolute;
	right: 0px;
	top: 45px;
	width: 25px;
}

#hamburgerMenu { cursor: pointer; padding: 10px 25px 16px 0px; }
#hamburgerMenu span, #hamburgerMenu span:before, #hamburgerMenu span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #ffffcc;
  position: absolute;
  display: block;
  content: '';
}
#hamburgerMenu span:before {
  top: -10px; 
}
#hamburgerMenu span:after {
  bottom: -10px;
}

#hamburgerMenu span, #hamburgerMenu span:before, #hamburgerMenu span:after {
  transition: all 500ms ease-in-out;
}
#hamburgerMenu.active span {
  background-color: transparent;
}
#hamburgerMenu.active span:before, #hamburgerMenu.active span:after {
  top: 0;
}
#hamburgerMenu.active span:before {
  transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
#hamburgerMenu.active span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}