#phone-menu-button {
	height: 40px;
	background: transparent;
	color: #ffffff;
	font-size: 1.4em;
	line-height: 30px;
	display: none;
	margin: 0 auto;
	border: 0;
	padding-top: 10px;
	cursor: pointer;
}

#phone-menu-button:focus { 
	outline: none; 
}

.phone-menu {
	background: rgba(240,240,240,.7);
	position: absolute;
	top: 0;
	left: 0;	
}

.phone-menu h3 {
	color: #c59617;
	font-size: 1.5em;
	padding: 15px;
	margin: 0;
	font-weight: 300;
	background: rgba(255,255,255,.7);
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	box-sizing: border-box;
}

#phone-menu-close-button {
	border: none;
	cursor: pointer;
	color: #c59617;
	font-size: 1.5em;
	padding: 10px;
	margin: 0;
	font-weight: 300;
	background: transparent;
	float: right;
	outline: none;
}

#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
	text-decoration: none;
	line-height: 1;
	font-size: 1em;
	position: relative;
	text-align: left;
}
#cssmenu {
	width: 250px;
}
#cssmenu a {
	line-height: 1.3;
}

#cssmenu > ul > li {
	background: rgba(3,73,48,.9);
}
#cssmenu > ul > li:hover {
	background: rgba(3,73,48,.7);
}
#cssmenu > ul > li > a {
	font-size: .95em;
	display: block;
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
}
#cssmenu > ul > li > a > span {
	display: block;
	padding: 12px 20px;
}
#cssmenu > ul > li > a:hover {
	text-decoration: none;
}
#cssmenu > ul > li.active {
	border-bottom: none;
}
#cssmenu > ul > li.has-sub > a span {
	background: url(menu_images/icon_plus.png) 96% center no-repeat;
}
#cssmenu > ul > li.has-sub.active > a span {
	background: url(menu_images/icon_minus.png) 96% center no-repeat;
}

#cssmenu ul ul {
	display: none;
	background: #fff;
	border-right: 1px solid #666666;
	border-left: 1px solid #666666;
}
#cssmenu ul ul li {
	padding: 0;
	border-bottom: 1px solid #034930;
	border-top: none;
	background: rgba(248,237,217,.9);
}
#cssmenu ul ul a {
	padding: 10px 10px 10px 45px;
	display: block;
	color: #034930;
	font-size: .85em;
	font-weight: bold;
}
#cssmenu ul ul a:before {
	font-family: FontAwesome2;
	content: '\f054';
	position: absolute;
	left: 10px;
	color: #034930;
	padding-left: 20px;
	font-size: .7em;
	top: 15px;
}
#cssmenu ul ul a:hover {
	background: rgba(230,216,181,.9);
}

/* Orientation-dependent styles for the content of the menu */
.phone-menu-vertical {
	width: 250px;
	min-height: 100%;
	top: 0;
	z-index: 1000;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #aaaaaa;
}

/* Vertical menu that slides from the left or right */
.phone-menu-left {
	left: -250px;
}

.phone-menu-right {
	right: -250px;
}

.phone-menu-left.menu-open {
	left: 0;
}

.phone-menu-right.menu-open {
	right: 0;
}

/* Horizontal menu that slides from the top or bottom */

.phone-menu-top {
	top: 0;
}

.phone-menu-bottom {
	bottom: -150px;
}

.phone-menu-top.menu-open {
	top: 0;
}

.phone-menu-bottom.menu-open {
	bottom: 0;
}

/* Push classes applied to the body */
.push-body {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.push-body-toright {
	left: 250px;
}

.push-body-toleft {
	left: -250px;
}

/* Transitions */
.phone-menu,
.push-body {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media screen and (max-width : 767px){

#phone-menu-button {
	display: block;
}

}

@media screen and (max-width : 500px){
	
#cssmenu {
	width: 250px;
}

.phone-menu-vertical {
	width: 250px;
}

.phone-menu-left {
	left: -250px;
}

.phone-menu-right {
	right: -250px;
}

.push-body-toright {
	left: 250px;
}

.push-body-toleft {
	left: -250px;
}	

}

@media screen and (min-width : 501px) and (max-width : 767px){
	
#cssmenu {
	width: 500px;
}

.phone-menu-vertical {
	width: 500px;
}

.phone-menu-left {
	left: -500px;
}

.phone-menu-right {
	right: -500px;
}

.push-body-toright {
	left: 500px;
}

.push-body-toleft {
	left: -500px;
}	

}
