body { /* style of BODY */
}
#pushcontentwrapper { /* 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;
}
.pushmenu { /* shared class for horizontal push menu */
	background-color: #222222;
	color: white;
	width: 240px; /* default menu width */
	height: 100%;
	position: fixed;
	z-index: 1000;
	font-size: 10px;
	top: -100%;
	clear: both;
	display: block;
	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: 0px solid #ffd67c;
}
.pushmenu.right { /* Additional push menu style when orientation is "right" */
	border-left: 0px solid black;
	width: 300px;
}
.pushmenu .closebutton { /* label button inside UL to close menu */
	position: absolute;
	right: 15px;
	top: 11px;
	cursor: pointer;
	font-size: 36px;
	text-align: center;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	color:lightyellow;
}
.pushmenu .closebutton:hover {
	color: #F90;
}
.pushmenu a {
	color: white;
}
.pushmenu h2 {
	color: #FFF4EA;
	margin-left: 15px;
	font-family: Verdana, Arial, 'Rosario', sans-serif;
	font-size: 14px;
	letter-spacing: 0px;
	border-bottom: 0px solid gray;
	padding-bottom: 15px;
	text-transform: uppercase;
}
.pushmenu ul.mainnav { /* Push menu main UL style */
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Verdana, Arial, 'Rosario', sans-serif;
	font-weight: bold;
}
.pushmenu ul.mainnav li {
	margin-bottom: 0px;
}
.pushmenu ul.mainnav a {
	font-size: 14px;
	padding: 6px 4px 6px 0px;
	padding-left: 20px;
	display: block;
	color: #f1f1f1;
	text-decoration: none;
}
.pushmenu ul.mainnav a i { /* Fontawesome icon style */
	margin-right: 0px;
}
.pushmenu ul.mainnav a:hover {
	background: #1c6d9b;
	color: #f1f1f1;
}
.pushmenu.open + .menutoggler { /* Style of menu toggler when menu is opened */
	opacity: 0.3;
}
/* ######### CSS for sample animated drawer button style  ######### */

.animateddrawer {
	font-size: 0px; /* to change size of animated drawer, simply adjust this property value ONLY */
	width: 2.2em; /* width of button */
	height: 1.6em; /* height of button */
	outline: none;
	display: block;
	position: relative;
}
.animateddrawer:before, .animateddrawer:after {
	position: absolute;	content: '';	display: block;	width: 100%;	height: 0.3em; /* height of top and bottom drawer line */
	background: #666666;	top: 0;	left: 0;	opacity: 1;	transition: all 0.3s ease-in; border-radius: 2px;
}
.animateddrawer:after {
	top: auto;
	bottom: 0;
}
.animateddrawer span {
	width: 100%;	height: 0.3em; /* height of middle drawer line */ 
	background: #666666;	position: absolute;	top: 39%;	margin-top: 0px; /* set this to - half of middle drawer line height */
	border-radius: 2px;	-webkit-transform-origin: 50% 50%;	transform-origin: 50% 50%;	transition: all 0.3s ease-in 0.3s;
}
.animateddrawer span::after {
	content: '';	display: block;	width: 100%;	height: 0.3em; /* height of middle drawer line */
	background: #666666;	position: absolute;	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;	transition: all 0.3s ease-in 0.3s; border-radius: 2px;
}
.animateddrawer.open:before { /* style when .open class is added to button */
	top: 50%;
	margin-top: -0.5em; /* set this to - half of top drawer line height */
	opacity: 0;
}
.animateddrawer.open:after { /* style when .open class is added to button */
	bottom: 50%;
	opacity: 0;
}
.animateddrawer.open span { /* style when .open class is added to button */
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.animateddrawer.open span:after { /* style when .open class is added to button */
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.muccon:link {
	COLOR: #fff;FONT-FAMILY: Verdana, Arial; FONT-SIZE: 13px; FONT-WEIGHT: normal; text-decoration: none; border-bottom: 1px #666666 dashed; 
}
.muccon:visited {
	COLOR: #fff;FONT-FAMILY: Verdana, Arial; FONT-SIZE: 13px; FONT-WEIGHT: normal; text-decoration: none; 
}
.muccon:hover {
	COLOR: #ff0; FONT-FAMILY: Verdana, Arial; FONT-SIZE: 13px; FONT-WEIGHT: normal; text-decoration: none; 
}