body{
	margin: 0;
	font-size: 15px;
}
.active {
    background-color: #19c589;
}
.special {
    background-color: #d21c1c;
}

/*Strip the ul of padding and list styling*/
ul {
    list-style-type:none;
    margin:0;
    padding:0;
    position: absolute;
}
#menu{
	width: 100%;
	//width: auto;
	//margin: auto;
	background-color: #333;
	position: fixed;
    top: 0;
	z-index: 100;
}
#menu li a{
	//border: 2px solid #2b2b2b;
}
#menu ul li a{
	border: none;
	color: #000;
}
/*Create a horizontal list with spacing*/
li {
    display:inline-block;
    float: left;
    //margin-right: 1px;
}
/*Style for menu links*/
li a {
    display:block;
    //min-width:140px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff;
    background: #2f3036;
    text-decoration: none;
	padding-left: 20px;
	padding-right: 20px;
}
/*Hover state for top level links*/
li:hover a {
    background: #19c589;
	text-decoration: none;
	color: white;
}
/*Style for dropdown links*/
li:hover ul a {
    background: #f3f3f3;
    //color: #2f3036;
    height: 40px;
    line-height: 40px;
}
/*Hover state for dropdown links*/
li:hover ul a:hover {
    background: #19c589;
    color: #fff !important;
}
/*Hide dropdown links until they are needed*/
li ul {
    display: none;
}
/*Make dropdown links vertical*/
li ul li {
    display: block;
    float: none;
}
/*Prevent text wrapping*/
li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
	text-align: left;
}
/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
    display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	//width:100%;
	//margin: 0;
    text-decoration: none;
    color: #fff;
    //background: #19c589;
	background: #2f3036;
    text-align: center;
    padding: 20px 0;
	font-size: 20px;
    display: none;
}
.show-menu:hover{
	cursor:pointer;
	background: #d21c1c;
}
.hide-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    //background: #19c589;
	background: #2f3036;
    text-align: center;
    padding: 10px 0;
    display: none;
	padding:20px;
	font-size: 20px;
}
.hide-menu:hover{
	cursor:pointer;
	background: #d21c1c;
}
/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}