/* ==============================
	$-Variables
============================== */

$body-typeface: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;



/* ==============================
	$-Mixins
============================== */

@mixin box-sizing {
	box-sizing: border-box;
}



/* ==============================
	$-Resets
============================== */

html,
body {
	height: 100%;
	
}

html {
	@include box-sizing;
}

*,
*:before,
*:after {
	@include box-sizing;
}

body {
	min-width: calc(300px + 1.5rem);
	margin: 0;
	line-height: 1.5;
	
	font-family: $body-typeface;
	color: #939999;
}

/* headers */
h1 {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 700;
	font-size: 1.6rem;
	color: #333;
}

/* highlight colors */
::-moz-selection {
	background-color: black;
	color: #333;
}

::selection {
	background-color: black;
	color: #333;
}

/* anchor links */
a {
	text-decoration: none;
	transition: opacity 100ms ease-in-out;
	backface-visibility: hidden;
	color: white;
	&:hover {
		opacity: .5;
	}
}



/* ==============================
	$-Modules
============================== */
.arca2 {
	font-size: 12pt;
	transition: opacity 100ms ease-in-out;
	color:#333;
	&:hover {
		opacity: .5;
	}
}

.header-logo{
color: white;
}

.arca {
	font-size: 20pt;
	text-decoration: none;
	transition: opacity 100ms ease-in-out;
	color:#333;
	backface-visibility: hidden;
	&:hover {
		opacity: .5;
	}
}

.header-logo{
color: white;
}

/* ul-reset */
.ul-reset {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
}

/* container */
.container {
	position: relative;
	top: 7.5vh;
	width: 80%;
	padding: .75rem;
	margin: auto;
}



/* ==============================
	$-Styles
============================== */

.description {
	text-align: center;
	padding:2pt;
}

.nav-wrapper {
	width: 100%;
	margin: auto;
	text-align: centre;
}

/* jQuery Accordion Navigation Menu */
.nav-item {
	border-top: 1px solid #333;
	&:first-child {
		border-top: none;
	}
}

.nav-item-inner {
	> a {
		display: block;
	}
}

.nav-item-inner-heading {
	position: relative;
	padding: .75rem;
	padding-right: 2.5rem;
	font-weight: 700;
	color: #333;
	&:focus {
		opacity: 1;
	}
	&.minus:after,
	&.plus:after {
		position: absolute;
		top: 50%;
		right: .75rem;
		transform: translateY(-50%);
		width: 1rem;
		text-align: center;
		font-family: FontAwesome;
		font-style: normal;
		font-size: .6rem;
		color: GoldenRod;
	}
	&.minus:after {
		content: "\f068";
	}
	&.plus:after {
		content: "\f067";
	}
}

.nav-sub-list {
	display: none;
	font-size: .8rem;
	overflow: hidden;
}

.nav-sub-list-inner {
	padding: 0 .75rem .75rem;
}

.nav-sub-item {
	padding-left: .75rem;
	margin-top: .375rem;
	&:first-child {
		margin-top: 0;
		font-style: italic;
	}
}