@import url('base.css');

/*------------------------------------*\
                 RESET
\*------------------------------------*/

.caret {
	display: inline-block;
	width: 0px;
	height: 0px;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px dashed;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

/*------------------------------------*\
               STRUCTURE
\*------------------------------------*/

.wrapper {
	max-width: 1280px;
	margin: 0 auto;
}
.header {
	padding: 15px 25px;
	background: white;
	border-left: 5px solid #2ba6cb;
	overflow: hidden;
}
.nav {
	float: right;
	margin: 12px 0;
	list-style: none;
}
.nav-link a {
	color: #2ba6cb;
	text-decoration: none;
}


/*------------------------------------*\
   Clickable Dropdown
\*------------------------------------*/

.click-nav {
	position: fixed;
	top: 0;
	right: 50px;
}
.hist {
	width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 3px 2px 10px 25px;
	height: 27px;
	line-height: 100%;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	box-shadow: 0px 0px 1px #919191;
	-webkit-box-shadow: 0px 0px 1px #919191;
	-moz-box-shadow: 0px 0px 1px #919191;
	background: white;
	background: linear-gradient(top,  #F5F5F5,  #DBDBDB);
	background: -ms-linear-gradient(top,  #F5F5F5,  #DBDBDB);
	background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#DBDBDB));
	background: -moz-linear-gradient(top,  #F5F5F5,  #DBDBDB);
	border: outset 0px #F0F0F0;
	position: fixed;
	bottom: 0;
	vertical-align: middle;
	z-index: 999;
}
.hist-span {
	font-size: 14px;
	text-align: right;
	vertical-align: middle;
	position: relative;
	width: 95%;
	display: inline-block;
	font-style: italic;
	color: #424242 !important;
	padding: 4px 16px 0px 0px;
}
.click-nav ul li {
	position: relative;
	list-style: none;
	cursor: pointer;
}
.click-nav ul li ul {
	position: absolute;
	left: 0;
	right: 0;
}
.click-nav ul .clicker {
	color: #7E7E7E;
}
.click-nav ul .clicker:hover,
.click-nav ul .active {
	background: #DBDBDB;
}
.click-nav img {
	position: absolute;
	top: 11px;
	left: 12px;
}
.click-nav ul li a {
	transition: background-color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	display: block;
	padding: 8px 10px 8px 40px;
	background: white;
	color: #7E7E7E;
	text-decoration: none;
}

/* Fallbacks */
.click-nav .no-js ul {
	display:none;
}
.click-nav .no-js:hover ul {
	display:block;
}
