@charset "utf-8";


/* styling menu button */
	#navigation label, #navigation [type=checkbox] {cursor: pointer}
	#navigation [type=checkbox] {display: none}
	#navigation label {
	position: absolute;
	top: 2%;
	right: 4%;
	z-index: 1337;
	padding-top: 0.5em;
	padding-right: 0.7em;
	padding-left: 0.7em;
	padding-bottom: 0.5em;
	font-size: 16px;
	line-height: .7em;
	text-shadow: 1px 1px 0 #000000;
	background-color: #292929;
	border-radius: 4px;
	color: #F5F5F5;
	display: block;
	}

	#navigation div > ul {
	position: absolute;
	top: 0;
	left: -80.5%;
	z-index: 1337;
	width: 72%;
	max-width: 1900px;
	border-radius: 0 0 6px 0;
	border-bottom: 1px solid #FFFFFF;
	border-right: 1px solid #FCFCFF;
	-webkit-transition: left .4s;
	-moz-transition: left .4s;
	-ms-transition: left .4s;
	transition: left .4s;
	height: auto;
	background-color: #fff;
	margin-left: 0px;
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.33);
	box-shadow: 1px 1px 3px rgba(0,0,0,0.33);
	}

	#navigation [contenteditable] {outline: none;}
	
	/* handling clic with CSS3 target */
	#navigation input:checked + ul {
		left: 0;
	}
	
	/* styling navigation items */
	#navigation ul {
		margin: 0; padding: 0;
	}
	#navigation li {
	list-style: none;
	}
	#navigation li a {
	display: block;
	padding: .9em .6em;
	color: #1D1D1D;
	border-bottom: 1px solid #9B8B6D;
	font-size: 24px;
	text-shadow: 1px 1px 0 #ECECEC;
	text-decoration: none;
	font-variant: small-caps;
	background-color: #E8E8E8;
	}
	#navigation li a:not(:only-child):after {
		
		float: right;
		font-size: 1.2em;
		color: #fff;
		margin-right: .4em;
		line-height: 1;
	}
	#navigation li:last-child a {
		border-bottom: 0;
	}
	#navigation li a:hover, #navigation li a:active {
		background: rgba(0,0,0,.3);
	}

	/* styling submenus */
	#navigation ul ul {
		max-height: 0;
		overflow: hidden;
		background: rgba(255,255,255,.1);
		-webkit-transition: .4s max-height;
		-moz-transition: .4s max-height;
		-o-transition: .4s max-height;
		-ms-transition: .4s max-height;
		transition: .4s max-height;
	}
	#navigation li:hover > ul {
		max-height: 25em;
	}
	#navigation li:hover a:not(:only-child):after {
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	#navigation ul ul a:before {display: none;}

	section {
		padding: 1rem;
		margin-top: 5em;
	}






@media only screen and (min-width: 481px) {
#navigation label, #navigation [type=checkbox] {cursor: pointer}
	#navigation [type=checkbox] {display: none}
	#navigation label {
	position: absolute;
	top: 2%;
	right: 4%;
	z-index: 1337;
	padding-top: 0.5em;
	padding-right: 0.7em;
	padding-left: 0.7em;
	padding-bottom: 0.5em;
	font-size: 16px;
	line-height: .7em;
	text-shadow: 0px 1px;
	border-radius: 4px;
	display: block;
	}

	#navigation div > ul {
	position: absolute;
	top: 0;
	left: -80.5%;
	z-index: 1337;
	width: 72%;
	max-width: 1900px;
	border-radius: 0 0 6px 0;
	-webkit-transition: left .4s;
	-moz-transition: left .4s;
	-ms-transition: left .4s;
	transition: left .4s;
	background-color: #fff;
	margin-left: 0px;
	height: 30%;
	border-bottom: 0px solid #FFFFFF;
	border-right: 0px solid #FCFCFF;
	margin-top: 0%;
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.33);
	box-shadow: 1px 1px 3px rgba(0,0,0,0.33);
	}

	#navigation [contenteditable] {outline: none;}
	
	/* handling clic with CSS3 target */
	#navigation input:checked + ul {
		left: 0;
	}
	
	/* styling navigation items */
	#navigation ul {
		margin: 0; padding: 0;
	}
	#navigation li {
	list-style: none;
	}
	#navigation li a {
	display: block;
	padding: .9em .6em;
	color: #1D1D1D;
	
	border-bottom: 1px solid #FFFFFF;
	font-size: 20px;
	text-shadow: 0px 0px 0;
	text-decoration: none;
	font-variant: small-caps;
	}
	#navigation li a:not(:only-child):after {
		
		float: right;
		font-size: 1.2em;
		color: #fff;
		margin-right: .4em;
		line-height: 1;
	}
	#navigation li:last-child a {
		border-bottom: 0;
	}
	#navigation li a:hover, #navigation li a:active {
		background: rgba(0,0,0,.3);
	}

	/* styling submenus */
	#navigation ul ul {
		max-height: 0;
		overflow: hidden;
		background: rgba(255,255,255,.1);
		-webkit-transition: .4s max-height;
		-moz-transition: .4s max-height;
		-o-transition: .4s max-height;
		-ms-transition: .4s max-height;
		transition: .4s max-height;
	}
	#navigation li:hover > ul {
		max-height: 25em;
	}
	#navigation li:hover a:not(:only-child):after {
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	#navigation ul ul a:before {display: none;}

	section {
		padding: 1rem;
		margin-top: 5em;
	}


}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 800px) {
li.lined_heading {
	padding-top: 0;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0;
	font-weight: normal;
	font-size: 16px;
	width: 100%;
	
}


/* styling menu button */
	#navigation label, #navigation [type=checkbox] {cursor: pointer}
	#navigation [type=checkbox] {display: none}
	#navigation label {
	z-index: 1337;
	padding-top: auto;
	padding-right: auto;
	padding-left: auto;
	padding-bottom: auto;
	font-size: 3.8em;
	font-weight: bold;
	line-height: normal;
	text-shadow: 0px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	color: #fff;
	display: none;
	
	}

	#navigation div > ul {
	top: 0px;
    left: auto;
    z-index: 1337;
    width: 80%;
    border-radius: 0 0 0px 0;
    /* margin-right: 5%; */
    background-color: #5A5A5A;
    -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.33);
    box-shadow: 0px 0px 0px rgba(0,0,0,0.33);
    margin-top: 3%;
	}

	#navigation [contenteditable] {outline: none;}
	
	/* handling clic with CSS3 target */
	#navigation input:checked + ul {
	left: auto;
	}
	
	/* styling navigation items */
	#navigation ul {
	margin: 0px;
	padding: 0px;
	
	}
	#navigation li {
	list-style: outside none none;
	width: 16%;
	float: left;
	padding-bottom: 0%;
	margin: 0px;
	
	}
	
	#navigation li a {
	display: block;
	padding: 0px;
	color: #C4C1B9;
	font-size: 1.4em;
	text-shadow: 0px 0px;
	text-decoration: none;
	text-align: center;
	font-variant: small-caps;
	padding-top: 2%;
	padding-bottom: 2%;
	border-bottom-left-radius: 79%;
	border-top-right-radius: 79%;
	background-color: #5A5A5A;
	border-top: 0px solid #FFFFFF;
	border-bottom: 0px solid #FFFFFF;
	}
	#navigation li a:hover {
	-webkit-box-shadow: 1px 3px 5px rgba(0,0,0,0.34);
	box-shadow: 1px 3px 5px rgba(0,0,0,0.34);
	}
	
	#navigation li a:not(:only-child):after {
		
		float: right;
		font-size: 1.2em;
		color: #fff;
		margin-right: .4em;
		line-height: 1;
		
	}
	#navigation li:last-child a {
		border-bottom: 0;
		
	}
	#navigation li a:hover, #navigation li a:active {
	background-color: #9c9788;
	color: #FFFFFF;	
	}

	/* styling submenus */
	#navigation li ul li {
	width: 100%;
	background-color: #525252;
	z-index: 999;
	border-bottom: 1px solid #2D2D2D;
	}
	#navigation li ul li a {
	padding-top: 5%;
	padding-bottom: 5%;
	margin-top: 0%;
	;
	border-left-color: rgba(81,81,81,1.00);
	border-bottom-width: 0px;
	border-bottom-style: none;
	}
	#navigation li ul li:hover {
		border-bottom: 0px solid #2D2D2D;
		}
	
	#navigation ul ul {
		max-height: 0;
		overflow: hidden;
		background: rgba(255,255,255,.1);
		-webkit-transition: .4s max-height;
		-moz-transition: .4s max-height;
		-o-transition: .4s max-height;
		-ms-transition: .4s max-height;
		transition: .4s max-height;
		
		
	}
	#navigation li:hover > ul {
		max-height: 25em;
	}
	#navigation li:hover a:not(:only-child):after {
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	#navigation ul ul a:before {display: none;}

	section {
		padding: 1rem;
		margin-top: 5em;
	}


}
