body{ /* style of BODY */

}

#contentwrapper{ /* wrapper around page content other than menu markup */
    position: relative;
    width: 100%;
    -moz-transition: left 100ms ease-in-out, right 100ms ease-in-out; /* Content wrapper transition. Actual duration controlled by script */
    -webkit-transition: left 100ms ease-in-out, right 100ms ease-in-out;
    transition: left 100ms ease-in-out, right 100ms ease-in-out;
}

/*
.menutoggler {  fixed toggler that toggles menu visibility 
    position: fixed;
	width:39px;
	height:34px;
	background-image:url(images/responsive-icon.JPG);
    top: 100px;
    left: 0;
    z-index: 500;
    padding: 2px 5px;
    border: 1px solid #a4c3ca;
    cursor: pointer;
}

.menutoggler:hover{
    border: 1px solid gray;
}*/


.menutoggler.right{ /* Additional fixed toggler style when menu orientation is "right" instead of "left" */
    left: auto;
    right: 0;
}

.pushmenu{ /* shared class for horizontal push menu */
	background-color: #4a4a4a;
	color: white;
	width: 250px; /* default menu width */
	height: 100%;
	position: fixed;
	z-index: 1000;
	font-size: 13px;
	font-family:Arial, Helvetica, sans-serif;
	top: -100%;
	clear: both;
	display: block;
	border-bottom:#CCC solid 1px;
	visibility: 'hidden';
	overflow-y: auto;
	-moz-transition: all 100ms ease-in-out; /* Menu transition. Actual duration controlled by script */
	-webkit-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
}

.pushmenu.left{ /* Additional push menu style when orientation is "left" */
    border-right: 7px solid black;
}

.pushmenu.right{ /* Additional push menu style when orientation is "right" */
    border-left: 4px solid black;
    box-shadow: -8px 0 5px rgba(174, 174, 174, .8);
    width: 300px;
}


.pushmenu .closebutton{ /* label button inside UL to close menu */
    position: absolute;
    right: 5px;
    top: 11px;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.pushmenu .closebutton:hover{
    color: lightyellow;
}


.pushmenu a{
color: white;
}

.pushmenu h2{
    color: #FFF4EA;
    margin-left: 15px;
    font-size: 1.3em;
    letter-spacing: 5px;
    border-bottom: 1px solid gray;
    padding-bottom: 3px;
    text-transform: uppercase;
}



.pushmenu ul.mainnav{ /* Push menu main UL style */
    padding: 0;
    margin: 0;
    list-style: none;
}

.pushmenu ul.mainnav li{
    margin-bottom: 0px;
}

.pushmenu ul.mainnav a{
    font-size: 13px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
    padding: 13px;
    padding-left: 15px;
    display: block;
    color: white;
    text-decoration: none;
	border-bottom: #000 solid 1px;
}

.pushmenu ul.mainnav a i{ /* Fontawesome icon style */
    margin-right: 5px;
}


.pushmenu  ul.mainnav a:hover{
    background: darkred;
    color: white;
}

.pushmenu.open + .menutoggler{ /* Style of menu toggler when menu is opened */
    opacity: 0.3;
}
