/*Strip the ul of padding and list styling*/
#header ul {
    list-style-type:none;
    margin:0;
    padding:0;
    position: absolute;
	margin-left:0;
	margin-top:110px;
}
/*Create a horizontal list with spacing*/
#header li {
    display:inline-block;
    float: left;
    margin-right: 1px;
}
/*Style for menu links*/
#header li a {
    display:block;
    min-width:100px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-family: Helvetica, Arial, sans-serif;
    color: #000;
    background-color: green;
    text-decoration: none;
}
/*Hover state for top level links*/
#header li:hover a {
    background-color: blue;
	color:white;
}
/*Style for dropdown links*/
#header li:hover ul a {
    background: #f3f3f3;
    color: #2f3036;
    height: 40px;
    line-height: 40px;
}
/*Hover state for dropdown links*/
#header li:hover ul a:hover {
    background: #19c589;
    color: #fff;
}
/*Hide dropdown links until they are needed*/
#header li ul {
    display: none;
}
/*Make dropdown links vertical*/
#header li ul li {
    display: block;
    float: none;
}
/*Prevent text wrapping*/
#header li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
}
/*Display the dropdown on hover*/
#header ul li a:hover + .hidden, .hidden:hover {
    display: block;
}
/*Style 'show menu' label button and hide it by default*/
#header .show-menu {
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: white;
    background-color: blue;
    text-align: right;
    padding: 10px 10px;
    display: none;
}
/*Hide checkbox*/
#header input[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
#header input[type=checkbox]:checked ~ #menu{
    display: block;
}
/*Responsive Styles*/
@media screen and (max-width : 639px){
    /*Make dropdown links appear inline*/
    #header ul {
        position: static;
        display: none;
	margin-left:0;
	margin-top:0;
		
    }
    /*Create vertical spacing*/
    #header li {
        margin-bottom: 1px;
    }
    /*Make all menu links full width*/
    #header ul li, #header li a, #header #menu {
        width: 100%;
    }
    /*Display 'show menu' link*/
    #header .show-menu {
        display:block;
		 margin-left:80px;
    }
}