article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden] {
	display: none;
}
abbr[title] {
	border-bottom: 1px dotted;
}
b,
strong {
	font-weight: bold;
}
blockquote {
	margin: 1em 40px;
}
dfn {
	font-style: italic;
}
mark {
	background: #ff0;
	color: #000;
}
code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	_font-family: 'courier new', monospace;
	font-size: 1em;
}
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
q {
	quotes: none;
}
q:before,
q:after {
	content: '';
	content: none;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
svg:not(:root) {
	overflow: hidden;
}
figure {
	margin: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
	padding: 0;
	margin: 0;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
}

/* Fix for IE10 Viewport in "snap mode". 
See: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/?utm_source=html5weekly&utm_medium=email */
@media screen and (max-width:400px) {
	@-ms-viewport{
		width:320px;
	}
}
/* ==========================================================================
	Print styles.
	Inlined to avoid required HTTP connection: h5bp.com/r
/* ========================================================================== */
@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow:none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}
form {
	margin: 0;
}
fieldset {
	border: none;
	padding: 0;
	margin: 0;
}
legend {
	display: none;
}
button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
button,
input {
	line-height: normal;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}
input[type="search"] {
	-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}
input.date_picker {
	background: url('/images/icons/calendar.png') no-repeat scroll 99% center #fff;
	width: 100px;
}
input:focus,
textarea:focus {
	border-color: #fca857;
	outline: 0;
}

/**
 * Input Wrap
 */
.input_wrap {
	overflow: hidden;
	position: relative;
	margin-bottom: 5px;
}
.input_wrap label {
	display: block;
	font-size: 13px;
	font-weight: bold;
	margin-bottom: 5px;
	color: #666;
}
.input_wrap textarea,
.input_wrap input {
	width: 100%;
	border: 2px solid #b7b5a3;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	padding: 7px;
}
.input_wrap input:focus,
.input_wrap textarea:focus {
	border-color: #fca857;
	outline: 0;
}
.input_wrap.error input,
.input_wrap.error textarea {
	border-color: #f95858;
}
.input_wrap.error label {
	width: 40%;
	color: #d13434;
	position: relative;
}
.input_wrap.error label:before {
	position: absolute;
	right: 0px;
	content: '';
	width: 16px;
	height: 16px;
	background-image: url(/images/icons/form_alert.gif);
	background-repeat: no-repeat;
}
.indicator {
	padding-left: 20px;
	background: url(/images/icons/form_required.gif) 0 50% no-repeat;
}

/**
 * Input File Type Styling
 */
input[type="file"] {
	z-index: 3;
	background-color: #fff;
	width: 310px;
}
.input_wrap.file input[type="text"],
.input_wrap.file button {
	position: absolute;
}
.input_wrap.file input[type="text"] {
	width: 200px;
}
.input_wrap.file button {
	left: 210px;
	margin-top: 2.5px;
}
.input_wrap.file button:before {
	content: '';
	z-index: 2;
	left: 210px;
	border-top: 10px red solid;
	border-left: 10px #fff transparent;
	border-right: 10px #fff transparent;
}

/* Checkboxes & Radios */
.radio input,
.checkbox input {
	width: auto;
}
.radio .inner_input_wrap label,
.checkbox .inner_input_wrap label {
	width: auto;
	display: inline;
}


/**
 * Password strength
 */
.password-strength-description {
	display: block;
}
.password-strength-indicator {
	display: block;
	margin-top: 2px;
	width: 5%;
	height: 3px;
	background-color: #ccc;
}
.strength0 .password-strength-indicator {
	width: 15%;
	background-color: #ccc;
}
.strength1 .password-strength-indicator {
	width: 30%;
	background-color: #c20501;
}
.strength2 .password-strength-indicator {
	width: 45%;
	background-color: #f25101;
}
.strength3 .password-strength-indicator {
	width: 60%;
	background-color: #fda701;
}
.strength4 .password-strength-indicator {
	width: 75%;
	background-color: #0158e7;
}
.strength5 .password-strength-indicator {
	width: 90%;
	background-color: #23cf01;
}
/* ==========================================================================
	Base
/* ========================================================================== */
body,
html {
	padding: 0;
	margin: 0;
	height: 100%;
}
html {
	overflow: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
html.lt-ie9 {
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2c892', endColorstr='#dcbb7c',GradientType=1 );
}
html,
button,
input,
select,
textarea {
	font-family: 'Ubuntu', Arial, sans-serif;
	color: #444;
}
body {
	margin: 0;
	font-size: 1em;
	line-height: 1.4;

	/* Temporarily disabled for odd html/body double background glitch */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZWZlOWRjIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNTElIiBzdG9wLWNvbG9yPSIjZTRjYWE2IiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RhYWM3MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(-45deg,  rgba(239,233,220,1) 0%, rgba(228,202,166,0) 51%, rgba(218,172,114,1) 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(239,233,220,1)), color-stop(51%,rgba(228,202,166,0)), color-stop(100%,rgba(218,172,114,1)));
	background: -webkit-linear-gradient(-45deg,  rgba(239,233,220,1) 0%,rgba(228,202,166,0) 51%,rgba(218,172,114,1) 100%);
	background: -o-linear-gradient(-45deg,  rgba(239,233,220,1) 0%,rgba(228,202,166,0) 51%,rgba(218,172,114,1) 100%);
	background: -ms-linear-gradient(-45deg,  rgba(239,233,220,1) 0%,rgba(228,202,166,0) 51%,rgba(218,172,114,1) 100%);
	background: linear-gradient(135deg,  rgba(239,233,220,1) 0%,rgba(228,202,166,0) 51%,rgba(218,172,114,1) 100%);*/
	background-size: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
.lt-ie9 body {
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efe9dc', endColorstr='#daac72',GradientType=1 );
}
body:before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	background: rgb(226,200,146);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjFkZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmYxZGYiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+),url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UyYzg5MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iI2YzZWVkOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY1JSIgc3RvcC1jb2xvcj0iI2YzZWVkOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkY2JiN2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(246,241,223,1) 0%, rgba(246,241,223,0) 100%), -moz-linear-gradient(left,  rgba(226,200,146,1) 0%, rgba(243,238,216,1) 35%, rgba(243,238,216,1) 65%, rgba(220,187,124,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(246,241,223,1)), color-stop(100%,rgba(246,241,223,0))), -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(226,200,146,1)), color-stop(35%,rgba(243,238,216,1)), color-stop(65%,rgba(243,238,216,1)), color-stop(100%,rgba(220,187,124,1)));
	background: -webkit-linear-gradient(top,  rgba(246,241,223,1) 0%,rgba(246,241,223,0) 100%), -webkit-linear-gradient(left,  rgba(226,200,146,1) 0%,rgba(243,238,216,1) 35%,rgba(243,238,216,1) 65%,rgba(220,187,124,1) 100%);
	background: -o-linear-gradient(top,  rgba(246,241,223,1) 0%,rgba(246,241,223,0) 100%), -o-linear-gradient(left,  rgba(226,200,146,1) 0%,rgba(243,238,216,1) 35%,rgba(243,238,216,1) 65%,rgba(220,187,124,1) 100%);
	background: -ms-linear-gradient(top,  rgba(246,241,223,1) 0%,rgba(246,241,223,0) 100%), -ms-linear-gradient(left,  rgba(226,200,146,1) 0%,rgba(243,238,216,1) 35%,rgba(243,238,216,1) 65%,rgba(220,187,124,1) 100%);
	background: linear-gradient(to bottom,  rgba(246,241,223,1) 0%,rgba(246,241,223,0) 100%), linear-gradient(to right,  rgba(226,200,146,1) 0%,rgba(243,238,216,1) 35%,rgba(243,238,216,1) 65%,rgba(220,187,124,1) 100%);
	background-size: 100%, 100%;
	background-repeat: no-repeat, no-repeat;
	background-attachment: fixed, fixed;
}
.lt-ie9 body:before {
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f1df', endColorstr='#00f6f1df',GradientType=0 );
}
/*	Apply to all elements. In a responsive design, this is almost always a good idea */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.left {
	float: left;
}

.right {
	float: right;
}

.overlay {
	visibility: hidden;
	display: table;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.8);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	z-index: 100;
}

.overlay div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.overlay .message {
	background-color: #fff;
	padding: 30px 30px 30px 30px;
	color: #000;
	background-color: #fff;
	border-radius: 5px;
	display: inline-block;
	margin: 0 auto;
	width: 400px;
}

/* ==========================================================================
	Links
/* ========================================================================== */
a {
	color: #6497a1;
}
/* Hover styles should also apply to focus so that key accessability is maintained */
a:focus,
a:hover {
	color: #3b7581;
	text-decoration: underline;
}
/* Addresses `outline` inconsistency between Chrome and other browsers. */
a:focus {
	outline: thin dotted;
}
/* Improves readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
	outline: 0;
}

/* ==========================================================================
	Typography
/* ========================================================================== */
@font-face {
    font-family: 'bitter';
    src: url('/css/fonts/bitter-regular-webfont-webfont.eot');
    src: url('/css/fonts/bitter-regular-webfont-webfont.eot?#iefix') format('embedded-opentype'),
         url('/css/fonts/bitter-regular-webfont-webfont.woff') format('woff'),
         url('/css/fonts/bitter-regular-webfont-webfont.ttf') format('truetype'),
         url('/css/fonts/bitter-regular-webfont-webfont.svg#bitterregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* Headers */
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1em;
	font-family: 'bitter', Arial, sans-serif;
	font-weight: normal;
}
h1 {
	font-size: 2em;
	line-height: 1.5em;
}
h2 {
	font-size: 18px;
	line-height: 1.5em;
	color: #7f7e7a;
	font-family: 'Ubuntu', Arial, sans-serif;
	font-weight: bold;
}
h3 {
	font-size: 1.5em;
	color: #333;
	margin: 0;
}
h4 {
	font-size: 1.3em;
}
h5, h6 {
	color: #23a3b2;
	font-family: 'Ubuntu', Arial, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	margin: 0 0 0.5em;
}


/* Content Block Elements */
dl,
menu,
ol,
ul,
p,
pre {
	margin: 0 0 1em;
}

/* Paragraphs */
p {

}

/* Lists */
menu,
ol,
ul {
	padding: 0 0 0 32px;
}

/* Selection Colors */
::-moz-selection {
	background: #999;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #999;
	color: #fff;
	text-shadow: none;
}

/* Responsive Media Styles */
.media {
	/* Set width on this selector based on design and needs */
}
.media img,
.media video,
.media object,
.media iframe {
	width: 100%;
	height: auto;
}

/* Non-Semantic Helper Classes */
.hidden {
	display: none !important;
	visibility: hidden;
}
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}
.invisible {
	visibility: hidden;
}
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	*zoom: 1;
}
.floatright {
	float: right;
}
.floatleft {
	float: left;
}

/* user notice
-------------------------------------*/
#user-notice {
  margin: 0 0 15px 0;
  padding: 10px 10px 10px 32px;
  text-align: left;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.user-notice-info {
  background: url(/images/icons/tick.png) #e2f9e3 10px 10px no-repeat;
  border: 2px solid #9c9;
  background-position: auto 12px;
}
.user-notice-error {
  background-image: url(/images/icons/cross.png) #ffcfce 10px 10px no-repeat;
  border: 2px solid #c00;
  background-position: auto 12px;
}
#user-notice a {
  color: #c00;
  text-decoration: underline;
}
#user-notice a:hover {
  text-decoration: none;
}
#user-notice ul {
  list-style: disc;
  margin: 3px 0 0 16px;
}

/* loading modal
-------------------------------------*/
.loading .ui-dialog-titlebar {
	display: none;
}

/* no script and old browser notice
-------------------------------------*/
#noscript,
#oldbrowser,
#nocookies {
  position: relative;
  z-index: 5;
  margin: 10px;
  padding: 10px;
  text-align: left;
  background-color: #ffcfce;
  border: 3px solid #c00;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
#noscript p,
#oldbrowser p,
#nocookies p {
  padding: 0 0 5px 0;
}

/* =============================================================================
	General Page Styling

	This should be styles that apply to all sizes of screen, that will include:
		- Typography, colors, and all generic text stuff not included above
		- Useful helper classes like button styles
		- Any re-usable classes that are not screen size dependant
		- Only fonts you are sure you want to try and load on the smaller phones
			(NOTE: if you can help it, try and use a fallback font for the smaller screens
			because you can assume that they will usually have less bandwidth and might not
			even support @font-face.)

/* ========================================================================== */
/* Prefixed with tags to override default tag styling for these elemets if .button is added */
button,
.button,
a.button,
input.button {
	position: relative;
	display: inline-block;
	background: #ea7d11;
	border: none;
	padding: 7px 20px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}
button:focus,
.button:focus,
a.button:focus,
input.button:focus,
button:hover,
.button:hover,
a.button:hover,
input.button:hover {

}
button:active,
.button:active,
a.button:active,
input.button:active {

}

/* Gradients: http://www.colorzilla.com/gradient-editor/ */
.gradient {
	background: #000000;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #000000 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top,  #000000 0%,#ffffff 100%);
	background: -o-linear-gradient(top,  #000000 0%,#ffffff 100%);
	background: -ms-linear-gradient(top,  #000000 0%,#ffffff 100%);
	background: linear-gradient(to bottom,  #000000 0%,#ffffff 100%);
}
.lt-ie9 .gradient  {
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 );
}

/* =============================================================================
	Structural Styles & Media Queries
/* ========================================================================== */

.page-width {
	width: 1140px;
	margin: 0 auto;
}

#page-header {
	position: relative;
	z-index: 99;
	min-width: 1140px;
	background: #a2cad2;
	border-bottom: 2px solid #fff;
	margin-bottom: 20px;
}

.page-logo {
	color: #fff;
	text-decoration: none;
}

.page-logo:active,
.page-logo:hover {
	color: #fff;
	text-decoration: none;
}

.page-logo {
	background: url(/images/WG-White.png) no-repeat;
	padding-left: 60px;
	font-weight: normal;
	font-size: 16px;
	float: left;
	margin: 12px 0 0;
}

#primary_nav {
	position: relative;
	float: right;
	border-right: 1px solid #e0eaeb;
	border-left: 1px solid #819ca8;
}
#primary_nav li {
	position: relative;
	float: left;
	border-left: 1px solid #e0eaeb;
	border-right: 1px solid #819ca8;
}
#primary_nav a {
	position: relative;
	display: block;
	width: 100%;
	color: #708a96;
	font-weight: bold;
	text-shadow: 0 1px 1px #eee;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	padding: 14px;
	text-decoration: none;
	text-align: center;
	overflow: hidden;
}
#primary_nav a:hover,
#primary_nav a:focus,
#primary_nav .on a,
#primary_nav .active a {
	overflow: visible;
	background: #809ca8;
	color: #fff;
	text-shadow: 0 1px 0 #444;
}
#primary_nav a.avatar {
	padding: 14px 14px 14px 40px;
}
.avatar:before {
	position: absolute;
	content: '';
	width: 22px;
	height: 21px;
	left: 14px;
	top: 13px;
	background: url(/images/avatar.png) top left no-repeat;
}
.on .avatar:before,
.active .avatar:before,
.avatar:hover:before {
	background-position: 0 -21px;
}
#primary_nav .profile-nav {
	width: 185px;
}
#primary_nav .profile-nav:hover .sub-nav,
#primary_nav .profile-nav.active .sub-nav {
	border-bottom: 2px solid #999;
}
#primary_nav .profile-nav:hover .sub-nav li:first-child,
#primary_nav .profile-nav.active .sub-nav li:first-child {
	margin-top: 0;
}
.sub-nav {
	position: absolute;
	background: #a2cad2;
	top: 46px;
	left: 0;
	right: -1px;
	border: none;
	border-bottom: 2px solid #fff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	overflow: hidden;
}
#primary_nav .sub-nav li {
	float: none;
	background: none;
	border: none;
	border-top: 1px solid #708a96;
	text-align: center;
}
#primary_nav .sub-nav a {
	color: #fff;
	background: none;
	text-shadow: none;
	letter-spacing: 0;
}
#primary_nav .sub-nav a:hover {
	background: #84aeb7;
}
#primary_nav .sub-nav li:first-child {
	margin-top: -250px;
	-webkit-transition: margin-top 350ms ease;
	-moz-transition: margin-top 350ms ease;
	-ms-transition: margin-top 350ms ease;
	-o-transition: margin-top 350ms ease;
	transition: margin-top 350ms ease;
}
#page-content {
	position: relative;
	z-index: 10;
	background: #fff;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	padding: 23px;
	margin-bottom: 20px;
}
#page-footer {
	margin-bottom: 20px;
}
#page-footer small {
	display: block;
	text-align: right;
	font-size: 11px;
	color: #826a42;
}

/** ====== Page Specific Button Styles ====== **/

a.button {
	text-decoration: none;
	-webkit-transition: background 250ms ease;
	-moz-transition: background 250ms ease;
	-ms-transition: background 250ms ease;
	-o-transition: background 250ms ease;
	transition: background 250ms ease;
}
button.button.processing,
a.button.processing,
input.button.processing,
.button.processing,
button.button.processing:hover,
a.button.processing:hover,
input.button.processing:hover,
.button.processing:hover  {
	background: url(/images/loading.gif) no-repeat top center;
	text-indent: -9999px;
}
.button.blue {
	background: #88cad2;
}
.button.blue:hover {
	background: #5fa1a9;
}
.button.orange {
	background: #fca857;
}
.button.orange:hover {
	background: #d9893c;
}
.button.khaki {
	background: #b7b5a3;
}
.button.khaki.active {
	background: #96947e;
}
.button.khaki.inactive {
	background: #e0ded8;
}
.button.khaki:hover {
	background: #96947e;
}
.button.khaki-border {
	background: #fff;
	color: #888675;
	border: 2px solid #b7b5a3;
}
.button.khaki-border:hover {
	background: #b7b5a3;
	color: #fff;
}
.button.left {
	text-indent: 20px;
}
.button.right {
	text-indent: -20px;
}
.button.left:before,
.button.right:before {
	position: absolute;
	content: '';
	width: 0px;
	height: 0px;
	border-style: solid;
}
.button.left:before {
	margin-top: 3px;
	left: 0;
	margin-left: 10px;
	border-width: 6px 10px 6px 0;
	border-color: transparent #fcdd88 transparent transparent;
}
.button.right:before {
	margin-top: 3px;
	right: 0;
	margin-right: 10px;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent #fcdd88;

}
.orange.left:hover:before {
	border-color: transparent #fca857 transparent transparent;
}
.orange.right:hover:before {
	border-color: transparent transparent transparent #fca857;
}
.khaki.left:before {
	border-color: transparent #888675 transparent transparent;
}
.khaki.right:before {
	border-color: transparent transparent transparent #888675;
}
.khaki.left:hover:before {
	border-color: transparent #b7b5a3 transparent transparent;
}
.khaki.right:hover:before {
	border-color: transparent transparent transparent #b7b5a3;
}
.app-title {
	line-height: 24px;
	font-size: 24px;
	font-weight: bold;
	font-family: 'bitter', Arial, Sans-Serif;
	color: #454545;
}
.document-options {
	position: relative;
	z-index: 10;
}
.document-options h2 {
	padding-left: 15px;
	float: left;
	color: #454545;
}
.document-options a {
	color: #b7b5a3;
	line-height: 30px;
	text-decoration: none;
	font-weight: bold;
	margin: 0 0 0 30px;
}
.document-options a:hover {
	color: #6e6c59;
}
.document-options span {
	font-size: 13px;
	line-height: 12px;
	margin-left: 20px;
	color: #aaa;
}

.document-options .download-print {
	padding-right: 15px;
}
.notice-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: none;
	opacity: 0;
	-webkit-transition: opacity 350ms ease;
	-moz-transition: opacity 350ms ease;
	-ms-transition: opacity 350ms ease;
	-o-transition: opacity 350ms ease;
	transition: opacity 350ms ease;
}
.notice {
	position: fixed;
	width: 400px;
	top: 50%;
	left: 50%;
	margin-left: -200px;
	margin-top: -110px;
	color: #fff;
	padding: 30px;
	text-align: center;
	background: #ea7d11;
	border: 3px solid #fca857;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: inset 0 0 20px 0 rgba(0,0,0,0.01), 0 0 50px 0 rgba(0,0,0,0.35);
	-moz-box-shadow: inset 0 0 20px 0 rgba(0,0,0,0.01), 0 0 50px 0 rgba(0,0,0,0.35);
	box-shadow: inset 0 0 20px 0 rgba(0,0,0,0.01), 0 0 50px 0 rgba(0,0,0,0.35);
}
.notice-title {
	font-family: 'Ubuntu', Arial, Sans-serif;
	font-weight: bold;
	text-align: center;
	margin: 0 0 10px;
}
.notice-message {
	text-align: left;
	margin: 0 0 20px;
}
.notice a.button {
	width: 45%;
	font-size: 14px;
	border: 2px solid #fcb167;
}
a.cancel {
	margin: 0 2% 0 0;
	background: rgb(246,155,70);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2OWI0NiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNzg3MTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(246,155,70,1) 0%, rgba(247,135,23,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(246,155,70,1)), color-stop(100%,rgba(247,135,23,1)));
	background: -webkit-linear-gradient(top,  rgba(246,155,70,1) 0%,rgba(247,135,23,1) 100%);
	background: -o-linear-gradient(top,  rgba(246,155,70,1) 0%,rgba(247,135,23,1) 100%);
	background: -ms-linear-gradient(top,  rgba(246,155,70,1) 0%,rgba(247,135,23,1) 100%);
	background: linear-gradient(to bottom,  rgba(246,155,70,1) 0%,rgba(247,135,23,1) 100%);
}
.lt-ie9 a.cancel {
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f69b46', endColorstr='#f78717',GradientType=0 );
}
a.cancel:hover {
	border: 2px solid #b05f11;
	background: rgb(224,173,125);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UwYWQ3ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjI1JSIgc3RvcC1jb2xvcj0iI2RhOGEzZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhZTY1MjAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(224,173,125,1) 0%, rgba(218,138,61,1) 25%, rgba(174,101,32,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(224,173,125,1)), color-stop(25%,rgba(218,138,61,1)), color-stop(100%,rgba(174,101,32,1)));
	background: -webkit-linear-gradient(top,  rgba(224,173,125,1) 0%,rgba(218,138,61,1) 25%,rgba(174,101,32,1) 100%);
	background: -o-linear-gradient(top,  rgba(224,173,125,1) 0%,rgba(218,138,61,1) 25%,rgba(174,101,32,1) 100%);
	background: -ms-linear-gradient(top,  rgba(224,173,125,1) 0%,rgba(218,138,61,1) 25%,rgba(174,101,32,1) 100%);
	background: linear-gradient(to bottom,  rgba(224,173,125,1) 0%,rgba(218,138,61,1) 25%,rgba(174,101,32,1) 100%);
}
.lt-ie9 a.cancel:hover {
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0ad7d', endColorstr='#ae6520',GradientType=0 );
}
a.accept,
a.portrait,
a.landscape {
	margin: 0 0 20px 2%;
	color: #663300;
	background: rgb(252,221,136);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZGQ4OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZjZGQ4OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iI2YzYmI1NSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMmFkMzciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(252,221,136,1) 0%, rgba(252,221,136,1) 50%, rgba(243,187,85,1) 51%, rgba(242,173,55,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,221,136,1)), color-stop(50%,rgba(252,221,136,1)), color-stop(51%,rgba(243,187,85,1)), color-stop(100%,rgba(242,173,55,1)));
	background: -webkit-linear-gradient(top,  rgba(252,221,136,1) 0%,rgba(252,221,136,1) 50%,rgba(243,187,85,1) 51%,rgba(242,173,55,1) 100%);
	background: -o-linear-gradient(top,  rgba(252,221,136,1) 0%,rgba(252,221,136,1) 50%,rgba(243,187,85,1) 51%,rgba(242,173,55,1) 100%);
	background: -ms-linear-gradient(top,  rgba(252,221,136,1) 0%,rgba(252,221,136,1) 50%,rgba(243,187,85,1) 51%,rgba(242,173,55,1) 100%);
	background: linear-gradient(to bottom,  rgba(252,221,136,1) 0%,rgba(252,221,136,1) 50%,rgba(243,187,85,1) 51%,rgba(242,173,55,1) 100%);
}
.lt-ie9 a.accept {
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcdd88', endColorstr='#f2ad37',GradientType=0 );
}
a.accept:hover,
a.portrait:hover,
a.landscape:hover {
	border: 2px solid #fee8d2;
	background: rgb(252,191,133);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjYmY4NSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZjYmY4NSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iI2ZiOGUyNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmY2E1NTEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(252,191,133,1) 0%, rgba(252,191,133,1) 50%, rgba(251,142,36,1) 51%, rgba(252,165,81,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,191,133,1)), color-stop(50%,rgba(252,191,133,1)), color-stop(51%,rgba(251,142,36,1)), color-stop(100%,rgba(252,165,81,1)));
	background: -webkit-linear-gradient(top,  rgba(252,191,133,1) 0%,rgba(252,191,133,1) 50%,rgba(251,142,36,1) 51%,rgba(252,165,81,1) 100%);
	background: -o-linear-gradient(top,  rgba(252,191,133,1) 0%,rgba(252,191,133,1) 50%,rgba(251,142,36,1) 51%,rgba(252,165,81,1) 100%);
	background: -ms-linear-gradient(top,  rgba(252,191,133,1) 0%,rgba(252,191,133,1) 50%,rgba(251,142,36,1) 51%,rgba(252,165,81,1) 100%);
	background: linear-gradient(to bottom,  rgba(252,191,133,1) 0%,rgba(252,191,133,1) 50%,rgba(251,142,36,1) 51%,rgba(252,165,81,1) 100%);
}
.lt-ie9 a.accept:hover {
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcbf85', endColorstr='#fca551',GradientType=0 );
}
