@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800);
@import url(http://weloveiconfonts.com/api/?family=fontawesome);


body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	color: #666;
	font-size: 14px;
	text-decoration: none;
	line-height: 22px;
	background-color: #fffef9;
	background-image: url(faden2.png);
	background-repeat: no-repeat;
	background-position: center 250px;
}
* {
	margin: 0;
	padding: 0;
}

/* fontawesome */
[class*="fontawesome-"]:before {
	font-family: 'FontAwesome', sans-serif;
	font-size: 24px;
}

/*MENU*/
#header {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	background-color: #fffef9;
	text-transform: uppercase;
	width: 100%;
	height: 43px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ececec;
	position: fixed;
	float: left;
	padding-top: 3px;
	left: 0px;
	top: 0px;
	z-index: 99;
	}
#inner {
	padding-left: 20px
	}
/*Strip the ul of padding and list styling*/
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
}

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

/*Style for menu links*/
li a {
	display: block;
	text-align: center;
	line-height: 30px;
	color: #d8032c;
	background: #fffef9;
	text-decoration: none;
	padding: 6px;
	margin-bottom: 2px;
}

/*Hover state for top level links*/
li:hover a {
	color: #6e36ef;
}

/*Style for dropdown links*/
li:hover ul a {
	background: #fffef9;
	color: #d8032c;
	line-height: 30px;
	text-align: left;
	margin: 0px;
	padding: 6px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ececec;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	background: #fffef9;
	color: #6e36ef;
}

/*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 6px;
}

/*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 {
	text-decoration: none;
	color: #d8032c;
	background: #fffef9;
	text-align: left;
	display: none;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
}

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

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


/*Responsive Styles*/

@media screen and (max-width : 680px){
	#header {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	background-color: #fffef9;
	text-transform: uppercase;
	width: 100%;
	position: relative;
	float: left;
	padding-top: 3px;
	}
	#inner {
	padding-left: 0px
	}
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 0px;
	}
	li:hover ul a {
	background: #fffef9;
	color: #d8032c;
	line-height: 30px;
	text-align: left;
	margin: 0px;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #d8032c;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 26px;
	}
	/*Make all menu links full width*/
	ul li, li a {
	width: 100%;
	text-align: left;
	margin-bottom: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d8032c;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}

