@charset "UTF-8";
/* CSS Document */

/* SEE:- http://medialoot.com/blog/how-to-create-a-responsive-navigation-menu-using-only-css/ */

/*Strip the ul of padding and list styling*/
.ul_menu {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
.li_menu {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
.li_menu a {
	display:block;
	min-width:180px;	/* derek was 100px */
	max-width:280px;	/* derek was 180px */
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
	background: #000;
	text-decoration: none;
}

/*Hover state for top level links*/
.li_menu:hover a {
	background: #C00;
}

/*Style for dropdown links*/
.li_menu:hover .ul_menu a {
	background: #f3f3f3;
	color: #000;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
.li_menu:hover .ul_menu a:hover {
	background: #C00;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
.li_menu .ul_menu {
	display: none;
}

/*Make dropdown links vertical*/
.li_menu .ul_menu .li_menu {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.li_menu .ul_menu .li_menu a {
	width: auto;
	min-width: 100px;
	padding: 0 16px;
}

/*Display the dropdown on hover*/
.ul_menu .li_menu a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #000;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ .ul_menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 769px){
	/*Make dropdown links appear inline*/
	.ul_menu {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	.li_menu {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	.ul_menu .li_menu, .li_menu a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}

