/* Wrapper */
html,body {
	height: 100%;
	margin: 0;
	font-size: 0;
}
html {
	background: url('/images/bg.png') repeat-x 0 125px;
}
body {
	max-width: 95%;
	margin: 0 auto;
	padding: 0 10px;
	font-size: 16px;
	position: relative;
	font-family: Arial;
	color: #222;
}
body::before {
	content: "";
	background: url('/images/swirl.png') no-repeat 0 0;
	width: 812px;
	max-height: 835px;
	position: absolute;
	left: -525px;
	top: 0;
	bottom: 0;
	display: block;
	z-index: -1;
}

/* Header */
header {
	display: flex;
	min-height: 104px;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
header .logo {
	padding: 20px 0 0 0;
}
header .links {
	display: flex;
	line-height: 30px;
	flex-wrap: wrap;
	align-items: flex-start;
}
header .links > * {
	padding: 0 10px;
}
header .links > *:last-child {
	padding: 0 0 0 10px;
}
a {
	color: #E95B10;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
}
a:hover {
	text-decoration: underline;
	cursor: pointer;
}
a[active],
a[active]:hover {
	font-weight: normal;
	color: unset;
	text-decoration: none;
	cursor: unset;
}
a > span {
	height: 100%;
}
button > .k-icon,
a > .k-icon {
	font-size: 20px;
	font-weight: normal;
}
button > .k-icon:last-child,
a > .k-icon:last-child {
	margin-left: 8px;
}
button > .k-icon:first-child,
a > .k-icon:first-child {
	margin-right: 8px;
}

/* Navigation */
nav {
	display: flex;
	background: linear-gradient(to bottom, rgba(245,245,247,1) 0%,rgba(234,234,237,1) 100%);
	min-height: 40px;
	line-height: 40px;
	border: 1px solid #bec1c3;
	border-radius: 3px;
	justify-content: space-between;
}
nav > * {
	display: flex;
}
nav a {
	padding: 0 10px;
}
nav > * > span {
	color: #84868C;
}

/* View */
.view {
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,.25);
	padding: 10px;
	margin: 10px 0;
	border-radius: 3px;
	min-height: 200px;
}
h1,h2 {
	margin: 0;
	padding: 0;
	color: #e95b10;
	font-size: 36px;
	font-weight: normal;
	font-family: Arial Narrow, Arial;
}
h2 {
	font-size: 24px;
	color: #222;
}
a {
	text-decoration: none;
}
.view a {
	color: #E95B10;
}
.view a:hover {
	text-decoration: underline;
}

/* Forms */
section,
form {
	border: 1px solid #bec1c3;
	background: linear-gradient(to bottom, #f5f4f7 48%, #ebebee 100%);
	padding: 10px;
	max-width: 480px;
	margin: 10px 0;
}
section {
	max-width: unset;
}
fieldset {
	border: 0;
	padding: 0;
}
fieldset ul {
	margin: 0;
	padding: 0;
}
fieldset ul li {
	display: flex;
	flex-direction: column;
	margin: 10px 0;
}
fieldset ul li input {
	font-size: 16px;
	padding: 5px;
}
button,
fieldset input[type=submit] {
	border: 0;
	padding: 10px 20px;
	font-weight: bold;
	background: #e95b10;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
}
button.delete {
	background: #434343;
}

button {
	display: inline-flex;
	align-items: center;
}

/* Info Boxes */
p.info {
	padding: 10px;
	border: 2px solid #acf;
	background: #def;
}
p.info.error {
	border-color: #f77;
	background: #fcc;
}

/* Tables */
th {
	text-align: left;
}

/* Mobile */
@media (max-width:480px) {
	header span,
	header .currentSite {
		display: none;
	}
}

/* Print */
@media print {
	header,
	nav {
		display: none;
	}
	.view {
		padding: 0;
		box-shadow: none;
	}
	* {
		color: #000 !important;
		background: none !important;
	}
	div.qq5button-wrapper {
		display: none;
	}
}