/*
	Suggested order:
	
	Positioning
	Display & Box Model
	Other (Decoration, Typography, etc)

*/

/* =base
----------------------------------------------------------------------------- */

html, body {
	background: #fff;
}
html {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	margin: 0;
	line-height: 20px;
	min-width: 880px;
}
body, button, input, select, optgroup, textarea, td, th {
	color: #333;
	font-size: 18px;
	font-family: "Fira Sans", "Trebuchet MS", sans-serif;
}
small {
	font-size: 12px;
}
p, ul, ol, dl, menu, table, fieldset, blockquote, pre {
	margin: 20px 0 0;
}
h1, h2, h3, h4, h5, h6, dt, th, b, strong {
	font-weight: bold;
}
i, em {
	font-style: italic;
}

/* html5 */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
	display: block;
}
audio, canvas, video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden] {
	display: none;
}

/* headings */

h1 {
	margin: 80px 0 0;
	color: #006385;
	font-size: 40px;
	line-height: 30px;
}
h2, h3, h4, h5, h6 {
	color: #006385;
	margin: 70px 0 0;
}
h2 {
	font-size: 24px;
	line-height: 30px;
}
h3, h4, h5, h6 {
	font-size: 14px;
	line-height: 20px;
}

/* lists */

ol,
ul {
	margin-left: 40px;
	padding: 0;
}

dd {
	margin: 0;
}

ul {
	list-style-type: disc;
}
ul ul {
	list-style-type: circle;
}

ol {
	list-style-type: decimal;
}
ol ol {
	list-style-type: lower-alpha;
}
ol ol ol {
	list-style-type: lower-roman;
}

ol ol,
ol ul,
ul ol,
ul ul {
	margin-top: 0;
}

nav ul,
nav ol {
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-image: none;
}

/* links */

a {
	color: #06c;
	text-decoration: none;
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:focus {
	color: #036;
	text-decoration: underline;
}
a:hover,
a:active {
	outline: 0;
}

/* tables */

table {
	border-collapse: collapse;
	border-spacing: 0;
}
th,
td {
	padding: 0;
	text-align: left;
	vertical-align: top;
}

/* typography */

dfn[title],
abbr[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
mark {
	background: #ff0;
	color: #000;
}
sub,
sup {
	font-size: .75em;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
address {
	font-style: normal;
}
ins {
	background: #ff9;
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
q {
	quotes: none;
}
q:before,
q:after {
	content: "";
	content: none;
}
blockquote {
	margin-left: 20px;
	padding-left: 19px;
	border-left: 1px solid #ccc;
}
pre, code, kbd, samp {
	font-family: Menlo, Consolas, Monaco, "Courier New", monospace, serif;
}
pre {
	padding: 1em;
	border: 1px solid #ccc;
	overflow: auto;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

/* embedded */

img {
	border: 0;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}
svg:not(:root) {
	overflow: hidden;
}

/* forms */

form,
figure {
	margin: 0;
}
fieldset {
	border: 1px solid #ccc;
	padding: 19px;
}
legend {
	border: 0;
	padding: 0;
	white-space: normal;
	*margin-left: -7px;
}

/* =classes
----------------------------------------------------------------------------- */

.left { text-align: left !important; }
.right { text-align: right !important; }
.center { text-align: center !important; }

.middle { vertical-align: middle !important; }

.hidden { display: none !important; }
.nowrap { white-space: nowrap !important; }

.w1p { width: 1% !important; }
.w10p { width: 10% !important; }
.w20p { width: 20% !important; }
.w25p { width: 25% !important; }
.w30p { width: 30% !important; }
.w40p { width: 40% !important; }
.w50p { width: 50% !important; }
.w60p { width: 60% !important; }
.w70p { width: 70% !important; }
.w75p { width: 75% !important; }
.w80p { width: 80% !important; }
.w90p { width: 90% !important; }
.w100p { width: 100% !important; }

.clear:before,
.clear:after {
	content: " ";
	display: table;
}
.clear:after {
	clear: both;
}
.clear {
	*zoom: 1;
}

/* =helpers
----------------------------------------------------------------------------- */

.meta {
	color: #808080;
}

.sep {
	margin: 0 3px;
	color: #ccc;
}
.text-group {
	display: block;
}
.text-inline-group {
	display: inline-block;
	white-space: nowrap;
}

.hr {
	height: 1px;
	overflow: hidden;
	margin: 20px 0;
	border: none;
	background: #ccc;
}
.hr hr {
	display: none;
}
.hr + .form-row,
.hr + .form-wrap {
	margin-top: -10px;
}

/* =controls
----------------------------------------------------------------------------- */

input,
select,
button,
textarea {
	margin: 0;
	vertical-align: baseline;
	*vertical-align: middle;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
	*overflow: visible;
}
select,
textarea,
input.text,
input.date,
input[type="text"],
input[type="password"] {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
	border: 1px solid #ccc;
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.06);
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.06);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.06);
	vertical-align: top;
}
select,
textarea,
input.text,
input.date,
input[type="text"],
input[type="password"] {
	padding: 4px;
}
input.text,
input.date,
input[type="text"],
input[type="password"] {
	height: 30px;
	line-height: 20px;
}
select,
input[type="file"] {
	height: 30px;
}
.ie7 input.text,
.ie7 input.date,
.ie7 input[type="text"],
.ie7 input[type="password"] {
	height: 18px;
	margin-top: -1px;
	margin-bottom: -1px;
}

select {
	line-height: 20px;
}
select[size],
select[multiple] {
	height: auto;
}
optgroup {
	font-style: normal;
	font-weight: bold;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus {
	border-color: #5bb3d1;
	outline-offset: 0;
}
button,
label[for],
.options label,
input[type="image"],
input[type="reset"],
input[type="button"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
	cursor: pointer;
}
input[readonly],
textarea[readonly] {
	background-color: #f8f8f8 !important;
}
input[disabled],
button[disabled],
select[disabled],
textarea[disabled],
input[type="radio"][disabled] + label,
input[type="checkbox"][disabled] + label {
	cursor: default !important;
}
select[disabled],
textarea[disabled],
input[type="text"][disabled],
input[type="password"][disabled] {
	background-color: #f8f8f8 !important;
	outline: none !important;
	color: #999;
	text-shadow: 0 1px 0 #fff;
}
input[type="radio"],
input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
	*height: 13px;
	*width: 13px;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: none;
}

/* placeholder */

option.label,
input.placeholder,
textarea.placeholder {
	color: #999 !important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #999;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #999;
}

/* date */

input.date {
	padding-left: 28px;
	background: #fff url(date-input.gif) no-repeat 6px 50%;
}
.hasDatepick,
.hasDatepicker {
	cursor: pointer;
}

/* search */

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/* textarea */

textarea {
	width: 460px;
	height: 120px;
	min-height: 120px;
	line-height: 20px;
	resize: vertical;
	overflow: auto;
}
textarea.small {
	height: 60px;
	min-height: 60px;
}
textarea.medium {
	height: 240px;
	min-height: 240px;
}
textarea.big {
	height: 360px;
	min-height: 360px;
}

/* sizing */

.input-mini {
	width: 60px;
}
.input-small {
	width: 140px;
}
.input-medium {
	width: 220px;
}
.input-large {
	width: 300px;
}
.input-xlarge {
	width: 380px;
}
.input-xxlarge {
	width: 460px;
}
.input-max {
	width: 100%;
}

/* error */

label.error {
	color: #dc291e;
	font-weight: bold;
}
input.error,
select.error,
textarea.error {
	border-color: #dc291e !important;
	background-color: #fff8f8 !important;
	outline: none !important;
	-moz-box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1);
	box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1);
}
input.error:focus,
select.error:focus,
textarea.error:focus {
	background-color: #fff !important;
}

/* =buttons
----------------------------------------------------------------------------- */

/* small */

.button {
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 30px;
	padding: 5px 9px;
	border-width: 0 !important;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #e8e8e8;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#e8e8e8));
	background: -webkit-linear-gradient(top, #f8f8f8, #e8e8e8);
	background: -moz-linear-gradient(top, #f8f8f8, #e8e8e8);
	background: -o-linear-gradient(top, #f8f8f8, #e8e8e8);
	background: linear-gradient(to bottom, #f8f8f8, #e8e8e8);
	color: #333 !important;
	line-height: 22px !important;
	font-style: normal !important;
	font-weight: bold;
	text-align: center;
	text-decoration: none !important;
	text-shadow: 0 1px 0 #fff;
	outline: none;
	vertical-align: top;
}
a.button {
	white-space: nowrap !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
input.button {
	width: auto;
	overflow: visible;
}
.button:hover,
.button:focus {
	border-color: #999;
	background: #f0f0f0;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f0f0f0));
	background: -webkit-linear-gradient(top, #fff, #f0f0f0);
	background: -moz-linear-gradient(top, #fff, #f0f0f0);
	background: -o-linear-gradient(top, #fff, #f0f0f0);
	background: linear-gradient(to bottom, #fff, #f0f0f0);
}
.button:active {
	border-color: #999;
	background: #ccc;
	background: -moz-linear-gradient(#c8c8c8, #d8d8d8);
	background: -o-linear-gradient(#c8c8c8, #d8d8d8);
	background: -webkit-gradient(linear, left top, left bottom, from(#c8c8c8), to(#d8d8d8));
	background: -webkit-linear-gradient(#c8c8c8, #d8d8d8);
	background: linear-gradient(#c8c8c8, #d8d8d8);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.2);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.2);
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

/* big */

.button-big {
	height: 42px;
	padding: 10px 30px;
	font-size: 16px !important;
	line-height: 24px !important;
}

/* small */

.button-small {
	height: 24px;
	padding: 1px 9px;
	font-size: 12px !important;
	line-height: 20px !important;
}

/* main */

.button-main {
	border-color: #693f0d;
	background: #ff8c00;
	background: -moz-linear-gradient(#ff8c00, #e07b00);
	background: -o-linear-gradient(#ff8c00, #e07b00);
	background: -webkit-gradient(linear, left top, left bottom, from(#ff8c00), to(#e07b00));
	background: -webkit-linear-gradient(#ff8c00, #e07b00);
	background: linear-gradient(#ff8c00, #e07b00);
	color: #fff !important;
	text-shadow: 0 1px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.button-main:hover,
.button-main:focus {
	border-color: #74450e;
	background: #fe9700;
	background: -moz-linear-gradient(#fe9700, #e38800);
	background: -o-linear-gradient(#fe9700, #e38800);
	background: -webkit-gradient(linear, left top, left bottom, from(#fe9700), to(#e38800));
	background: -webkit-linear-gradient(#fe9700, #e38800);
	background: linear-gradient(#fe9700, #e38800);
	text-shadow: 0 1px 0 rgba(0,0,0,0.3);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.30);
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.30);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.30);
}
.button-main:active {
	border-color: #54320a;
	background: #cb6f00;
	background: -moz-linear-gradient(#cb6f00, #b36200);
	background: -o-linear-gradient(#cb6f00, #b36200);
	background: -webkit-gradient(linear, left top, left bottom, from(#cb6f00), to(#b36200));
	background: -webkit-linear-gradient(#cb6f00, #b36200);
	background: linear-gradient(#cb6f00, #b36200);
	text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.1);
	-webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.1);
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.1);
}

/* snippets */

.arrow-down {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 4px solid #666;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	vertical-align: top;
}
.button .arrow-down {
	margin-top: 8px;
	margin-left: 5px;
}
.button-big .arrow-down {
	margin-top: 7px;
	margin-left: 10px;
	border-width: 6px 6px 0;
}

/* =patch
----------------------------------------------------------------------------- */

.patch,
.patch span {
	width: 80px;
	height: 80px;
}
.patch {
	margin: 0;
	border: 5px solid #eed67c;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	border-radius: 100px;
	background: #fafafa;
	font-size: 14px !important;
	line-height: 14px !important;
	text-align: center;
	/*
	color: #fff;
	text-shadow: 0px -1px 0 rgba(0,0,0,0.7);
	*/
}
.patch big {
	display: block;
	font-size: 30px !important;
	line-height: 30px !important;
}
.patch span {
	display: table-cell;
	vertical-align: middle;
}
.box-header .patch {
	position: absolute;
	top: -15px;
	right: 15px;
}

/* =form
----------------------------------------------------------------------------- */

.required {
	color: #dc291e;
	line-height: 1;
	font-weight: bold;
	font-family: Verdana, Tahoma, sans-serif;
}
.required[title] {
	display: inline-block;
	cursor: help;
}
.help-block {
	display: block;
	margin: 0;
}	
.help-inline {
	display: inline-block;
	margin-top: 5px;
	vertical-align: top;
}

/* layout */

.form-wrap {
	margin-top: 40px;
}
fieldset .form-wrap {
	margin-top: -15px;
}
.form-data,
.form-heading {
	padding-top: 15px;
}
.form-heading {
	float: left;
	width: 220px;
	text-align: right;
}
.form-heading label {
	display: inline-block;
	vertical-align: top;
}
.form-data,
.form-option,
.form-control {
	margin-left: 240px;
}
.form-control {
	padding-top: 10px;
}
.form-option {
	padding-top: 14px;
}

/* action */

.form-action {
	margin-top: 20px;
	padding: 0 0 0 240px;
	/*
	padding: 20px 0 0 240px;
	border-top: 1px solid #ccc;
	*/
}
.form-action .main {
	float: left;
}
.form-action .alt {
	float: right;
}
.form-action .button {
	float: left;
	margin-right: 10px;
}
.form-action .alt .button {
	margin-left: 10px;
	margin-right: 0;
}

/* vertical */

.form-vertical .form-heading {
	float: none;
	width: auto;
	text-align: left;
}
.form-vertical .form-data,
.form-vertical .form-option,
.form-vertical .form-control {
	margin-left: 0;
	padding-top: 0;
}
.form-vertical .form-action {
	padding-left: 0;
}

/* options */

.options {
	margin-left: 0;
}
.options .options {
	margin: 5px 0 5px 24px !important;
}
.form-option .options {
	margin-top: 0;
}
.options > li {
	list-style: none;
}
.option-label {
	display: inline-block;
	padding-left: 20px;
	vertical-align: top;
}
.option-label:after {
	content: " ";
	display: table;
	clear: both;
}
.option-label input[type="radio"],
.option-label input[type="checkbox"] {
	float: left;
	margin-top: 4px;
	margin-left: -20px;
}

/* =table
----------------------------------------------------------------------------- */

.table th,
.table td {
	border: 1px solid #ebebeb;
}
.table {
	width: 100%;
}
.table th,
.table td {
	padding: 5px 10px;
}
.table .action {
	width: 1%;
	padding: 3px 4px;
	white-space: nowrap;
}

.table-offer {
	table-layout: fixed;
}
.table-offer th,
.table-offer td {
	padding: 10px;
}
.table-offer tbody td {
	color: #178207;
	text-align: center;
}
.table-offer tbody th {
	font-size: 14px;
	font-weight: normal;
}
.table-offer tfoot th,
.table-offer tfoot td {
	border: 0;
	padding-top: 20px;
}

/* =layout
----------------------------------------------------------------------------- */

.wrap {
	width: 840px;
	margin: 0 auto;
	padding: 0 20px;
}
#header {
	background: #09546e;
}
#hero {
	background: -moz-linear-gradient(180deg, #034961 0% , #00526e 20%, #006385 100%);
	background: -ms-linear-gradient(180deg, #034961 0% , #00526e 20%, #006385 100%);
	background: -o-linear-gradient(180deg, #034961 0% , #00526e 20%, #006385 100%);
	background: -webkit-linear-gradient(180deg, #034961 0% , #00526e 20% , #006385 100%);
	background: linear-gradient(180deg, #034961 0%, #00526e 20%, #006385 100%);
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	text-shadow: 0px 2px 5px rgba(0,0,0,0.5);
}
#quote {
	background: #f5f0df;
	color: #806500;
	font-size: 24px;
	line-height: 30px;
}

/* =header
----------------------------------------------------------------------------- */

#header .wrap {
	padding-top: 10px;
	padding-bottom: 10px;
}

/* logo */

#logo,
#logo a {
	width: 92px;
	height: 30px;
	overflow: hidden;
}
#logo {
	float: left;
	margin: 5px 0;
	background: url(logo.png) no-repeat 0 0;
	text-indent: -999px;
}
#logo a {
	display: block;
	outline: none;
}

/* =lang
----------------------------------------------------------------------------- */

#lang {
	float: right;
	margin: 10px 0 0 30px;
	list-style: none;
	color: #84aab7;
	font-family: "Fira Sans SC";
	font-size: 16px;
}
#lang a {
	color: #84aab7;
}
#lang a {
	position: relative;
	padding: 5px 2px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-variant: small-caps;
}
#lang .active {
	color: #c1d4db;
}
#lang span {
	color: #2e6d84;
}

/* =nav
----------------------------------------------------------------------------- */

#nav {
	float: right;
	margin: 0;
	list-style: none;
}
#nav a,
#nav li {
	float: left;
	color: #fff;
}
#nav li {
	padding: 0;
}
#nav a {
	position: relative;
	padding: 10px;
	font-size: 16px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#nav a:hover,
#nav a:focus {
	
}
#nav li.active a:after {
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -10px;
	display: inline-block;
	border: solid;
	border-width: 0 10px 10px;
	border-color: transparent transparent #fff transparent;
	content: '';
}

/* =hero
----------------------------------------------------------------------------- */

#hero .wrap {
	padding-top: 40px;
	padding-bottom: 40px;
	background: url(hero01.png) no-repeat 50% 50%;
}
#hero h1 {
	margin-top: 50px;
	color: #fff;
	font-size: 48px;
	line-height: 60px;
	font-weight: normal;
}
#hero h1 + p {
	margin-top: 30px;
}
#hero p {
	width: 440px;
	margin: 60px auto 0;
	font-style: italic;
}

/* =quote
----------------------------------------------------------------------------- */

#quote .wrap {
	padding-top: 60px;
	padding-bottom: 60px;
}
#quote p {
	margin: 0;
}
#quote p + p {
	margin-top: 20px;
	text-indent: 60px;
}
#quote .ref {
	font-size: 36px;
	font-style: italic;
	line-height: 48px;
}

/* =features
----------------------------------------------------------------------------- */

.features {
	margin-top: 60px;
}
.features h2 {
	font-size: 36px;
	line-height: 46px;
	font-weight: 400;
}
.features dd + dd {
	border-top: 1px solid #ccc;
	margin-top: 60px;
}
.features dd + dd h2 {
	margin-top: 50px;
}

.features .desc {
	padding-right: 390px;
}
.features .desc.alt {
	padding-right: 0;
	padding-left: 390px;
}
.features .desc.text {
	padding-right: 0;
}


.features .image {
	float: right;
	width: 350px;
	margin-right: -390px;
	border: 1px solid #ccc;
}
.features .desc.alt .image {
	float: left;
	margin-right: 0;
	margin-left: -390px;
}
.features .image img {
	max-width: 100%;
}
.features p {
	font-size: 18px;
	line-height: 27px;
}

/* =box
----------------------------------------------------------------------------- */

.box {
	margin: 40px 0 0;
	padding: 19px;
	border: 1px solid #ebebeb;
	background: #fafafa;
}
.box-header {
	position: relative;
	margin: -20px -20px 0;
	padding: 20px;
	background: #eed67c;
	color: #394042;
	font-size: 22px;
	font-weight: bold;
	text-shadow: 0px 1px 0 rgba(255,255,255,0.3);
}
.box-header.alt {
	background: #68b6cd;
}

.desc-button {
	height: 60px;
	padding-right: 180px;
}
.desc-button .button {
	float: right;
	margin: 10px -180px 0 0;
}

/* =messages
----------------------------------------------------------------------------- */

.message {
	margin: 40px 0 0;
	padding: 15px 30px 15px 20px;
	border-left: 10px solid #e5d36f;
	background: #fffade url(msg-info.png) no-repeat 20px 11px;
	text-shadow: 0 1px 0 rgba(255,255,255,0.9);
	font-size: 16px;
}
.message + .message {
	margin-top: 10px;
}
.message h2 {
	font-size: 20px;
	color: #666144;
}
.message > p:first-child,
.message > h2:first-child {
	margin: 0;
}
.message p {
	margin: 10px 0 0;
}
.message.error {
	border-color: #ed8a70;
	background: #ffe5de url(msg-error.png) no-repeat 10px 7px;
}
.message.error h2 {
	color: #a93212;
}
.message.ok {
	border-color: #7fdd78;
	background: #e0ffde url(msg-ok.png) no-repeat 11px 9px;
}
.message.ok h2 {
	color: #21a018;
}

/* =footer
----------------------------------------------------------------------------- */

#footer {
	margin-top: 100px;
	padding: 40px 0 40px;
	/*border-top: 1px solid #ccc;*/
	background: #f7f7f7;
	font-size: 14px;
}

#footer .eu,
#footer .leanest,
#footer .stafflogic {
	float: right;
	overflow: hidden;
	margin: -5px 0 0 30px;
	text-indent: -5000px;
	vertical-align: top;
}

#footer .eu {
	width: 67px;
	height: 28px;
	background: url(logo-eu.png) no-repeat;
}
#footer .leanest {
	width: 138px;
	height: 28px;
	background: url(logo-leanest.png) no-repeat;
}
#footer .stafflogic {
	height: 32px;
	width: 140px;
	background: url(logo-stafflogic.png) no-repeat;
}

/* =fancybox
----------------------------------------------------------------------------- */

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}
.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
}
.fancybox-skin {
	position: relative;
}
.fancybox-outer,
.fancybox-inner {
	position: relative;
}
.fancybox-inner {
	overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}
.fancybox-error {
	margin: 0;
	padding: 15px;
	white-space: nowrap;
	background: #fff591;
}
.fancybox-image,
.fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}
.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}
#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
	background-image: url(fancybox_sprite.png);
}
#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
}
#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url(fancybox_loading.gif) center center no-repeat;
}
.fancybox-close {
	position: absolute;
	z-index: 1001;
	top: -6px;
	right: -6px;
	width: 36px;
	height: 36px;
	cursor: pointer;
}
.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url(blank.gif); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.fancybox-prev {
	left: 0;
}
.fancybox-next {
	right: 0;
}
.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	visibility: hidden;
}
.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}
.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}
.fancybox-nav:hover span {
	visibility: visible;
}
.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* overlay */

.fancybox-lock {
	overflow: hidden !important;
	width: auto;
}
.fancybox-lock body {
	overflow: hidden !important;
}
.fancybox-lock-test {
	overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	background: url(fancybox_overlay.png);
}
.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}
.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* title */

.fancybox-title {
	display: none;
}

/* image */

.fancybox-image-wrap {
	padding: 10px;
	background: #fff;
}

/* =grid: http://960.gs/demo.html
----------------------------------------------------------------------------- */

.grid1 { width: 60px }
.grid2 { width: 140px }
.grid3 { width: 220px }
.grid4 { width: 300px }
.grid5 { width: 380px }
.grid6 { width: 460px }
.grid7 { width: 540px }
.grid8 { width: 620px }
.grid9 { width: 700px }
.grid10 { width: 780px }
.grid11 { width: 860px }
.grid12 { width: 940px }

.grid > .grid0 { width: 0% !important; }
.grid > .grid1 { width: 8.333333333333332% !important; }
.grid > .grid2 { width: 16.666666666666664% !important; }
.grid > .grid3 { width: 25% !important; }
.grid > .grid4 { width: 33.33333333333333% !important; }
.grid > .grid5 { width: 41.66666666666667% !important; }
.grid > .grid6 { width: 50% !important; }
.grid > .grid7 { width: 58.333333333333336% !important; }
.grid > .grid8 { width: 66.66666666666666% !important; }
.grid > .grid9 { width: 75% !important; }
.grid > .grid10 { width: 83.33333333333334% !important; }
.grid > .grid11 { width: 91.66666666666666% !important; }
.grid > .grid12 { width: 100% !important; }

.grid > .grid1,
.grid > .grid2,
.grid > .grid3,
.grid > .grid4,
.grid > .grid5,
.grid > .grid6,
.grid > .grid7,
.grid > .grid8,
.grid > .grid9,
.grid > .grid10,
.grid > .grid11,
.grid > .grid12 {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		    box-sizing: border-box;
	float: left;
	min-height: 1px;
	padding-right: 10px;
	padding-left: 10px;
}

.grid > [class*="grid"]:first-child {
	padding-left: 0;
}
.grid > [class*="grid"]:last-child {
	padding-right: 0;
}

/* =font
----------------------------------------------------------------------------- */

@font-face {
	font-family: "Fira Sans";
	src: url(font/Fira_Sans/FiraSans-Regular.woff) format("woff");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: "Fira Sans SC";
	src: url(font/Fira_Sans_SC/FiraSansSC-Regular.woff) format("woff");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: "Fira Sans";
	src: url(font/Fira_Sans/FiraSans-RegularItalic.woff) format("woff");
	font-weight: 400;
	font-style: italic;
}
@font-face {
	font-family: "Fira Sans";
	src: url(font/Fira_Sans/FiraSans-Medium.woff) format("woff");
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: "Fira Sans";
	src: url(font/Fira_Sans/FiraSans-Light.woff) format("woff");
	font-weight: 200;
	font-style: normal;
}

/* =print
----------------------------------------------------------------------------- */

@media print {

	/* general */

	* {
		background: transparent !important;
		color: black !important;
		text-shadow: none !important;
		box-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	tr, img, pre, blockquote {
		page-break-inside: avoid;
	}
	h2, h3 {
		page-break-after: avoid;
	}
	thead {
		display: table-header-group;
	}
	p, h2, h3 {
		orphans: 3;
		widows: 3;
	}
	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

	/* reset layout */

	html,
	body,
	#wrap,
	#header,
	#content {
		width: auto !important;
		min-width: 1px !important;
		min-height: 1px !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	/* disable floats */

	#content {
		float: none !important;
	}

	/* do not display */

	#nav,
	#menu,
	#header,
	#sidebar,
	#footer,
	.pager,
	.modal-wrap {
		display: none !important;
	}

}