@charset "utf-8";
/* CSS Document */


http {
	margin: 0;
	padding: 0;
}

.menuwrapper {
	float: left;
}

/*Strip the ul of padding and list styling*/

#menu ul {
    list-style-type:none;
    margin:0;
    padding:0;
/*	position: absolute; */
	text-align: center;
	vertical-align: top;
	width: fit-content; 
}
#menu ul ul {
    position: relative; 
}
/*Create a horizontal list with spacing*/
#menu li {
    display:inline-block;
    margin: 1px;
}
/*Style for menu links*/
#menu li a {
    display: block;
    min-width: 120px;
    text-align: center;
	padding: 0 .25em;
    line-height: 160%;
	font-size: 130%;
    font-variant: small-caps;
    font-weight: bold;
    color: #FFFBE2;
	background-color: #401100;
    text-decoration: none;
	border: solid thin #C00000;
}
/*Hover state for top level links*/
#menu li:hover a {
    background: #C00000;
	color: #fff;
}
/*Style for dropdown links*/
#menu li:hover ul a {
    background: #f3f3f3;
    color: #C00000;
    height: 40px;
    line-height: 40px;
/*	z-index: 10; */
}
/*Hover state for dropdown links*/
 #menu li:hover ul a:hover {
    background:  #C00000;
    color: #F3F3F3;
}
/*Hide dropdown links until they are needed*/
#menu li ul {
    display: none;
}
/*Make dropdown links vertical*/
#menu li ul li {
   display: block;
    float: none;
}
/*Prevent text wrapping*/
#menu li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 10px;
	text-align: left;
/^	z-index: 10; */
}
/*Display the dropdown on hover*/
  ul#menu 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;
    text-decoration: none;
    color: #c00000;
    background: #fff;
    text-align: center;
    padding: 10px 0;
    display: none;
}
/*Hide checkbox*/
input[type=checkbox ~ #menu]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu {
    display: block;
}
/*Responsive Styles*/
@media screen and (max-width : 760px){
    /*Make dropdown links appear inline*/
    #menu ul {
        position: static;
        display: none;
    }
    /*Create vertical spacing*/
    #menu li {
        margin-bottom: 1px;
    }
    /*Make all menu links full width*/
    #menu ul li, li a {
        width: 100%;
    }
    /*Display 'show menu' link*/
    .show-menu {
        display:block;
    }
}