@charset "UTF-8";

/* SpryValidationSelect.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* These are the classes applied on the messages
 * (required message and invalid state message)
 * which prevent them from being displayed by default.
 */ 
.selectRequiredMsg, .selectInvalidMsg {
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states (required, invalid).
 * These classes set a default red border and color for the error text.
 * The state class (.selectRequiredState or .selectInvalidState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.selectRequiredState .selectRequiredMsg,
.selectInvalidState .selectInvalidMsg {
	display: inline;
	color: #FFF;
}

/* The next three group selectors control the way the core element (SELECT) looks like when the widget is in one of the states: 
 * focus, required / invalid, valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the SELECT
 * - the widget id is placed on the SELECT element itself (there are no error messages)
 */
 
/* When the widget is in the valid state the SELECT has a green background applied on it. */
.selectValidState select, select.selectValidState {
	background-color: #66984D;
	  border: 0;
}

/* When the widget is in an invalid state the SELECT has a red background applied on it. */
select.selectRequiredState, .selectRequiredState select,
select.selectInvalidState, .selectInvalidState select {
	background-color: #66984D;
	  border: 0;
}

/* When the widget has received focus, the SELECT has a yellow background applied on it. */
.selectFocusState select, select.selectFocusState {
	background-color: #FFF;
}

@charset "UTF-8";

/* SpryValidationTextField.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textfieldRequiredMsg, 
.textfieldInvalidFormatMsg, 
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textfieldRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textfieldRequiredState .textfieldRequiredMsg, 
.textfieldInvalidFormatState .textfieldInvalidFormatMsg, 
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg
{
	display: inline;
	color: #FFF;
}



/* The next three group selectors control the way the core element (INPUT) looks like when the widget is in one of the states: * focus, required / invalid / minValue / maxValue / minChars / maxChars , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the INPUT
 * - the widget id is placed on the INPUT element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the INPUT has a green background applied on it. */
.textfieldValidState input, input.textfieldValidState {
	background-color: #66984D;
	  border: 0;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.textfieldRequiredState, .textfieldRequiredState input, 
input.textfieldInvalidFormatState, .textfieldInvalidFormatState input, 
input.textfieldMinValueState, .textfieldMinValueState input, 
input.textfieldMaxValueState, .textfieldMaxValueState input, 
input.textfieldMinCharsState, .textfieldMinCharsState input, 
input.textfieldMaxCharsState, .textfieldMaxCharsState input {
	background-color: #66984D;
	  border: 0;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFF;
}

/* This class applies only for a short period of time and changes the way the text in the textbox looks like.
 * It applies only when the widget has character masking enabled and the user tries to type in an invalid character.
 */
.textfieldFlashText input, input.textfieldFlashText {
	color: red !important;
}

/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
.textfieldHintState input, input.textfieldHintState {
	/*color: red !important;*/
}

@charset "UTF-8";
/* SpryValidationConfirm.css - version 0.1 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.confirmRequiredMsg, 
.confirmInvalidMsg, 
.confirmValidMsg {
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .confirmRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.confirmRequiredState .confirmRequiredMsg,
.confirmInvalidState .confirmInvalidMsg
{
	display: inline;
	color: #679BB8;
}

/* The next three group selectors control the way the core element (INPUT) looks like when the widget is in one of the states: * focus, required , invalid , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the INPUT
 * - the widget id is placed on the INPUT element itself (there are no error messages)
 */

 /* When the widget is in the valid state the INPUT has a green background applied on it. */
.confirmValidState input, input.confirmValidState {
	background-color: #66984D;
	  border: 0;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.confirmRequiredState, .confirmRequiredState input, 
input.confirmInvalidState, .confirmInvalidState input
{
	background-color: #66984D;
	  border: 0;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.confirmFocusState input, input.confirmFocusState {
	background-color: #FFF;
}

@charset "UTF-8";

/* SpryValidationCheckbox.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. *//* These are the classes applied on the messages
 * (required message, minSelections message and maxSelections message)
 * which prevent them from being displayed by default.
 */
.checkboxRequiredMsg, .checkboxMinSelectionsMsg, .checkboxMaxSelectionsMsg{
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and font color for the error text.
 * The state class (e.g. .checkboxRequiredState) is applied on the top-level container for the widget, 
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.checkboxRequiredState .checkboxRequiredMsg,
.checkboxMinSelectionsState .checkboxMinSelectionsMsg,
.checkboxMaxSelectionsState .checkboxMaxSelectionsMsg {
	display: inline;
	color: #679BB8;
}

@charset "UTF-8";

/* SpryFormValidation.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */



/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textareaRequiredMsg,
.textareaMinCharsMsg,
.textareaMaxCharsMsg,
.textareaValidMsg {
	display:none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textareaRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textareaRequiredState .textareaRequiredMsg,
.textareaMinCharsState .textareaMinCharsMsg,
.textareaMaxCharsState .textareaMaxCharsMsg
{
	display: inline;
	color: #FFF;
}

/* The next three group selectors control the way the core element (TEXTAREA) looks like when the widget is in one of the states: * focus, required / minChars / maxChars , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the TEXTAREA
 * - the widget id is placed on the TEXTAREA element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the TEXTAREA has a green background applied on it. */
.textareaValidState textarea, textarea.textareaValidState {
	background-color: #66984D;
	border: 0;
}

/* When the widget is in an invalid state the TEXTAREA has a red background applied on it. */
textarea.textareaRequiredState, .textareaRequiredState textarea, 
textarea.textareaMinCharsState, .textareaMinCharsState textarea, 
textarea.textareaMaxCharsState, .textareaMaxCharsState textarea {
	background-color:#66984D;
	  border: 0;
}

/* When the widget has received focus, the TEXTAREA has a yellow background applied on it. */
.textareaFocusState textarea, textarea.textareaFocusState {
	background-color:#FFF;
}

/* This class applies only for a short period of time and changes the way the text in the textarea looks like.
 * It applies only when the widget has enforce max chars enabled and the user tries to type some more.
 */
.textareaFlashState textarea, textarea.textareaFlashState{
	color:red !important;
}
/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
textarea.textareaHintState, .textareaHintState textarea{
	/* color: red !important;*/
}

@font-face {
  font-family: 'fontawesome-selected';
  src: url("../font/fontawesome-selected.eot");
  src: url("../font/fontawesome-selected.eot?#iefix") format('embedded-opentype'), url("../font/fontawesome-selected.woff") format('woff'), url("../font/fontawesome-selected.ttf") format('truetype'), url("../font/fontawesome-selected.svg#fontawesome-selected") format('svg');
  font-weight: normal;
  font-style: normal;
}

.fc-calendar-container {
	position: relative;
	height: 400px;
	width: 400px;
}

.fc-calendar {
	width: 100%;
	height: 100%;
}

.fc-calendar .fc-head {
	height: 30px;
	line-height: 30px;
	background: #ccc;
	color: #fff;
}

.fc-calendar .fc-body {
	position: relative;
	width: 100%;
	height: 100%;
	height: -moz-calc(100% - 30px);
	height: -webkit-calc(100% - 30px);
	height: calc(100% - 30px);
	border: 1px solid #ddd;
}

.fc-calendar .fc-row {
	width: 100%;
	border-bottom: 1px solid #ddd;
}

.fc-four-rows .fc-row  {
	height: 25%;
}

.fc-five-rows .fc-row  {
	height: 20%;
}

.fc-six-rows .fc-row {
	height: 16.66%;
	height: -moz-calc(100%/6);
	height: -webkit-calc(100%/6);
	height: calc(100%/6);
}

.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
	float: left;
	height: 100%;
	width:  14.28%; /* 100% / 7 */
	width: -moz-calc(100%/7);
	width: -webkit-calc(100%/7);
	width: calc(100%/7);
	position: relative;
}

/* IE 9 is rounding up the calc it seems */
.ie9 .fc-calendar .fc-row > div,
.ie9 .fc-calendar .fc-head > div {
	width:  14.2%;
}

.fc-calendar .fc-row > div {
	border-right: 1px solid #ddd;
	padding: 4px;
	overflow: hidden;
	position: relative;
}

.fc-calendar .fc-head > div {
	text-align: center;
}

.fc-calendar .fc-row > div > span.fc-date {
	position: absolute;
	width: 30px;
	height: 20px;
	font-size: 15px;
	line-height: 20px;
	font-weight: 700;
	color: #ddd;
	text-shadow: 0 -1px 0 rgba(255,255,255,0.8);
	bottom: 5px;
	right: 5px;
	text-align: right;
	font-family: 'Lato', sans-serif;
}

.fc-calendar .fc-row > div > span.fc-weekday {
	padding-left: 5px;
	display: none;
}

.fc-calendar .fc-row > div.fc-today {
	background: #fff4c3;
}

.fc-calendar .fc-row > div.fc-out {
	opacity: 0.6;
}

.fc-calendar .fc-row > div:last-child,
.fc-calendar .fc-head > div:last-child {
	border-right: none;
}

.fc-calendar .fc-row:last-child {
	border-bottom: none;
}

.custom-calendar-wrap {
	position: relative;
	overflow: hidden;
	margin-bottom: 1em;
}

.custom-inner {
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.custom-inner:before,
.custom-inner:after  {
	content: '';
	width: 99%;
	height: 50%;
	position: absolute;
	background: #f6f6f6;
	bottom: -4px;
	left: 0.5%;
	z-index: -1;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.custom-inner:after {
	content: '';
	width: 98%;
	bottom: -7px;
	left: 1%;
	z-index: -2;
}

.custom-header {
	background: #fff;
	height: 60px;
	position: relative;
	border-top: 5px solid #2A786A;
	border-bottom: 1px solid #ddd;
}

.custom-header h2,
.custom-header h3 {
	text-align: center;
	text-transform: uppercase;
}

.custom-header h2 {
	color: #2A786A;
	font-weight: 300;
	font-size: 18px;
	margin-top: 8px;
	border: none;
	padding: 0;
	margin-bottom: 0;
}

.custom-header h3 {
	font-size: 10px;
	font-weight: 700;
	color: #b7bbc2;
}

.custom-header nav span {
	position: absolute;
	top: 12px;
	width: 30px;
	height: 30px;
	color: transparent;
	cursor: pointer;
	margin: 0 1px;
	font-size: 20px;
	line-height: 30px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.custom-header nav span:first-child {
	left: 5px;
}

.custom-header nav span:last-child {
	right: 5px;
}

.custom-header nav span:before {
	font-family: 'icomoon';
	color: #2A786A;
	position: absolute;
	text-align: center;
	width: 100%;
}

.custom-header nav span.custom-prev:before {
	content: '\e601';
}

.custom-header nav span.custom-next:before {
	content: '\e602';
}

.custom-header nav span:hover:before {
	color: #C1622F;
}

.custom-content-reveal {
	background: #f6f6f6;
	background: rgba(246, 246, 246, 0.9);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0px;
	text-align: center;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.custom-content-reveal span.custom-content-close {
	position: absolute;
	top: 15px;
	right: 10px;
	width: 20px;
	height: 20px;
	text-align: center;
	background: #2A786A;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
	cursor: pointer;
	line-height: 13px;
	padding: 0;
	font-family: 'Lato', sans-serif;
}

.custom-content-reveal span.custom-content-close:after {
	content: 'x';
	font-size: 18px;
	color: #fff;
}

.custom-content-reveal a,
.custom-content-reveal span {
	font-size: 22px;
	padding: 10px 30px;
	display: block;
}

.custom-content-reveal h4 {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 3px;
	color: #777;
	padding: 20px;
	background: #fff;
	border-bottom: 1px solid #ddd;
	border-top: 5px solid #2A786A;
	box-shadow: 0 1px rgba(255,255,255,0.9);
	margin-bottom: 30px;
}

.custom-content-reveal span {
	color: #888;
}

.custom-content-reveal a {
	color: #ef4f69;
}

.custom-content-reveal a:hover {
	color: #333;
}

/* Modifications */

.fc-calendar-container {
	height: 300px;
	width: auto;
	padding: 1em;
	background: #f6f6f6;
	box-shadow: inset 0 1px rgba(255,255,255,0.8);
}

.fc-calendar .fc-head {
	background: transparent;
	color: #2A786A;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Lato', sans-serif;
}

.fc-calendar .fc-row > div {
	background: #fff;
	cursor: pointer;
}

.fc-calendar .fc-row > div:empty {
	background: transparent;
}

.fc-calendar .fc-row > div > span.fc-date {
	top: 50%;
	left: 50%;
	text-align: center;
	margin: -10px 0 0 -15px;
	color: #686a6e;
	font-weight: 400;
	pointer-events: none;
}

.fc-calendar .fc-row > div.fc-today {
	background: #2A786A;
	box-shadow: inset 0 -1px 1px rgba(0,0,0,0.1);
}

.fc-calendar .fc-row > div.fc-today > span.fc-date {
	color: #fff;
	text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.fc-calendar .fc-row > div.fc-content:after {
	content: '\00B7';
	text-align: center;
	width: 20px;
	margin-left: -10px;
	position: absolute;
	color: #2A786A;
	font-size: 70px;
	line-height: 20px;
	left: 50%;
	bottom: 3px;
}

.fc-calendar .fc-row > div.fc-today.fc-content:after {
	color: #b02c42;
}

.fc-calendar .fc-row > div.fc-content:hover:after{
	color: #C1622F;
}

.fc-calendar .fc-row > div.fc-today.fc-content:hover:after{
	color: #fff;
}

.fc-calendar .fc-row > div > div a,
.fc-calendar .fc-row > div > div span {
	display: none;
	font-size: 22px;
}

@media screen and (max-width: 400px) {
	.fc-calendar-container {
		height: 300px;
	}
	.fc-calendar .fc-row > div > span.fc-date {
		font-size: 15px;
	}
}
@-moz-viewport { width: device-width; scale: 1; }
@-ms-viewport { width: device-width; scale: 1; }
@-o-viewport { width: device-width; scale: 1; }
@-webkit-viewport { width: device-width; scale: 1; }
@viewport { width: device-width; scale: 1; }

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon.eot?uz62ew');
	src:url('../fonts/icomoon.eot?#iefixuz62ew') format('embedded-opentype'),
		url('../fonts/icomoon.woff?uz62ew') format('woff'),
		url('../fonts/icomoon.ttf?uz62ew') format('truetype'),
		url('../fonts/icomoon.svg?uz62ew#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

html {
  font: normal 100%/1.4 'Roboto', sans-serif;
  background-color: #FFF;
  overflow-x: hidden!important;
}

body {
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
	overflow: hidden/9;
  color: #212529;
}

.flex-logo {
	width: 100%;
	vertical-align: text-bottom;
	max-width: 113px;
	padding: 1em;
	float: left;
}

.mobile {
	display: block;
}

.desktop {
	display: none;
}

/* BASE STYLES */
.main-content {
	padding: 1em;
}

.content {
	padding: 1em 0em 0!important;
}

.flex-img {
	display: block;
	width: 100%;
}

.flex-sponsor {
	width: 100%;
	padding: 1em;
	max-width: 200px;
}

.flex-sponsor1 {
	width: 100%;
	max-width: 400px;
}

.sponsor {
	text-align: center;
	padding: 1em 0em;
}

h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.84em;
  margin: 0;
  color: #E6AD5E;
  text-transform: uppercase;
  line-height: initial;
  letter-spacing: 0.5px;
  border-bottom: 2px solid;
  padding-bottom: 0.1em;
  margin-bottom: 1em;
}

h3 {
font-family: 'Lato', sans-serif;
text-transform: uppercase;
font-size: 1.5em;
margin: 0;
color: #37314B;
}

.body {
font-family: 'Roboto', sans-serif;
font-weight: 400;
font-size: 1em;
margin: 0;
padding-bottom: 1em;
}

.body:last-child {
padding-bottom: 0;
}

.bold {
font-family: 'Roboto', sans-serif;
font-weight: 700;
font-size: 1em;
margin: 0;
}

.body-link {
color: #E6AD5E;
text-decoration: none;
transition: all 0.8s linear;
}

.body-link:hover {
color: #37314B;
}

.mob-link {
	font-size: 0.83em;
}

.allcaps {
	text-transform: uppercase;
}

.center {
	text-align: center;
	padding: 0;
}

.indent {
	padding-left: 1em;
}

ul {
	margin: 0;
  padding: 0 0 1em 3em;
}

ul li {
	padding-bottom: 0.5em;
	/*font-weight: 100;*/
}

blockquote {
  margin: 0 auto;
  padding: 1em;
  background-color: #f6f6f6;
  width: 75%;
  margin-bottom: 1em;
  font-style: italic;
}

.content table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.content tr {
  border-bottom: 1px solid #E6AD5E;
}

th {
  text-align: left;
}

.date-title {
  display: block;
  padding: 0.5em;
  background-color: #E6AD5E;
  color: #FFF;
}

.imp-date {
  padding: 0.5em;
}

.reg {
  padding: 0.5em;
}

.reg .right {
  display: inline-block;
  float: right;
}

.right {
  display: inline-block;
  float: right;
  margin: 0px;
}

.left {
  display: inline-block;
  text-align: left;
  margin: 0px;
}

.top {
	display: block;
	text-align: right;
	text-decoration: none;
	text-transform: uppercase;
	color: #37314B;
	transition: all 0.8s ease;
}

.top:hover {
	color: #E6AD5E;
}

.top:before {
  content: '^';
  font-size: 1.5em;
  vertical-align: middle;
  font-family: 'Lato', sans-serif;
}

.anchor{
  display: block;
  height: 114px; /*same height as header*/
  margin-top: -114px; /*same height as header*/
  visibility: hidden;
}

.keynotes {
	border-bottom: #37314B 1px solid;
	text-align: left;
}

.keynotes div {
	padding-bottom: 0;
}

.keynotes a {
	color: #E6AD5E;
	text-decoration: none;
	border-bottom: 1px solid;
	transition: all 0.3s linear;
}

.keynotes a:hover {
	border-bottom: 2px solid;
	font-weight: 700;
}

.keynotes .body {
	padding-bottom: 0;
	padding-top: 0.7em;
	text-align: left;
}

.keynotes .unit-spacer {
	padding: 1em 1em;
}

.keynote-info {
	padding-top: 1em;
}

.keynote-info .body {
	text-indent: 2em;
	padding-bottom: 0;
}

.keynote-info .keynote-topic {
	padding: 1em 0;
	margin: 0;
	/*font-weight: 100;*/
}

.keynote-img {
	padding: 0 0 0 1em;
}

.pdf {
	color: #E6AD5E;
	font-family: 'Lato', sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.pdf:hover {
	color: #37314B;
}

.pdf img {
	padding-right: 0.5em;
}

.top {
	text-align: right;
}

.keynote-info .top a {
	color: #37314B;
	font-family: 'Lato', sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.keynote-info .top a:hover {
	color: #E6AD5E;
}

.border {
	border-bottom: #37314B 1px solid;
}

.keynoteIndex {
    padding-right: 1em;
    text-align: center;
}

.keynoteIndex .body {
    text-align: center;
}

.keynoteIndex img {
    width: 200px;
    margin: auto;
}

/* HEADER & NAVIGATION */
h1 {
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: 300;
	padding: 0.5em 0.5em 1em;
    font-size: 1.25em!important;
	margin: 0!important;
	color: #E6AD5E;
}

.subhead {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 1em 1em;
  font-size: 1em!important;
  margin: 0;
  color: #37314B;
  letter-spacing: 4px;
}

.bg {
  background-color: #f6f6f6;
  text-align: center;
    padding: 125px 1em 2em;
}

.bg-link {
	border: 1px solid;
	padding: 0.5em;
	color: #E6AD5E;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 1em;
	display: block;
	margin: 1em;
	transition: all 0.8s ease;
}

.bg-link:hover {
	background-color: #37314B;
	border: 1px solid #37314B;
	color: #FFF;
}

.dot {
	display: none;
	color: #37314B;
	font-size: 2em;
	vertical-align: middle;
	margin: 0;
	padding: 0 1em;
}

/* Side-bar Menu */
.main .side-bar-menu{
	margin: 0px;
	padding: 0px; 
}
.side-bar-menu{
	border: 1px solid  #E6AD5E;
	border-bottom:none;
	list-style-type: none;
	margin:0px;
	padding: 0px; 
}
.side-bar-menu li{
	margin:0px;
	padding: 0px; 
}
.side-bar-menu a {
	padding: 0.5em;
	margin:0;
	color: #E6AD5E;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 1.1em;
	display: block;
	width: 100%;
	text-decoration: none;
	border-bottom: 1px solid  #E6AD5E;
	transition: all 0.8s ease;
}
.side-bar-menu a:hover {
	background-color: #37314B;
	color: #FFF;
}


/* MOB MENU */
#slide-menu h1 {
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: 300;
	padding: 0.5em 0.5em 1em;
  font-size: 1.5em!important;
	margin: 0!important;
	color: #FFF;
}

nav#slide-menu {
	position: fixed;
	top: 0;
	right: -141px;
	bottom: 0;
	display: block;
	float: left;
	width: 100%;
	max-width: 141px;
	height: 100%;
	  background-color: #37314B;
	overflow-x: hidden;
  z-index: 99999;

	-moz-transition: all 300ms;
	-webkit-transition: all 300ms;
	transition: all 300ms;
}
	#slide-menu ul {
		display: block;
		margin: 0px;
		padding: 0;
		list-style: none;
		opacity: 0.5;

		-moz-transition: all 300ms;
		-webkit-transition: all 300ms;
		transition: all 300ms;
}
		#slide-menu li {
			cursor: pointer;
			padding-bottom: 0;
}

	#slide-menu a {
		font-family: 'Roboto Condensed', sans-serif;
    display: block;
    text-align: left;
    outline: none;
    box-shadow: inset 0 -1px rgba(0,0,0,0.2);
    color: #FFF;
    text-transform: uppercase;
    text-shadow: 0 0 1px rgba(255,255,255,0.1);
    letter-spacing: 1px;
    font-weight: 400;
    padding: 1.2em;
    cursor: default;
    text-decoration: none;
    font-size: 0.7em;
    -webkit-transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
	}

#slide-menu a:hover {
    background: rgba(0,0,0,0.2);
    box-shadow: inset 0 -1px rgba(0,0,0,0);
    color: #fff;
}

#slide-menu:first-child a {
    box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 0px rgba(0,0,0,0.2);
}

body.menu-active nav#slide-menu { right: 0px; }
body.menu-active nav#slide-menu ul { right: 0px; opacity: 1; }

/*
  Content
*/

div#content {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;

	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	-moz-transition: all 300ms;
	-webkit-transition: all 300ms;
	transition: all 300ms;
}

	div.menu-trigger {
		position: fixed;
top: 10px;
right: 20px;
cursor: pointer;
font-size: 40px;
line-height: 0;
-moz-transition: all 300ms;
-webkit-transition: all 300ms;
transition: all 300ms;
}
		.menu-trigger:before { 
			content: '\e603';
			display: inline-block;
			width: 36px;
			height: 36px;
			color: #E6AD5E;
			font-family: "icomoon";
			font-style: normal;
			font-size: 1.2em;
			font-weight: normal;
			font-variant: normal;
			text-align: center;
			text-transform: none;
			line-height: 36px;
			-moz-transition: all 300ms;
-webkit-transition: all 300ms;
transition: all 300ms;
		}

		.menu-active .menu-trigger:before { 
			display: none;
		}

		.menu-trigger:hover:before { 
			color: #37314B;
		}

		.menu-active .menu-trigger:after { 
			content: '\e600';
			display: inline-block;
			width: 36px;
			height: 36px;
			color: #37314B;
			background-color: #FFF;
			font-family: "icomoon";
			font-style: normal;
			font-size: 1.2em;
			font-weight: normal;
			font-variant: normal;
			text-align: center;
			text-transform: none;
			line-height: 36px;
			-moz-transition: all 300ms;
-webkit-transition: all 300ms;
transition: all 300ms;
		}

		.menu-trigger:hover:after {
			color: #E6AD5E;
		}

body.menu-active div#content { right: 141px;}
body.menu-active div#content .menu-trigger { right: 150px; }

/* SEARCH BAR */
form.gsc-search-box {
line-height: 0;
}

#___gcse_0 {
}

.searchbox {
padding: 0;
}

.searchbox .body {
  color: #E6AD5E;
  text-align: center;
  padding: 3px 0;
}

input#gsc-i-id1, input#gsc-i-id2 {
background: none!important;
}

.cse .gsc-control-cse, .gsc-control-cse {
padding: 0 1em!important;
width: auto;
border: 0!important;
}

.gsc-control-cse {
font-family: 'Roboto Condensed', sans-serif!important;
background-color: transparent!important;
}

form.gsc-search-box {
font-size: 13px;
margin-top: 0;
margin-right: 0;
margin-bottom: 0!important;
margin-left: 0;
width: 100%;
padding: 0;
}

table.gsc-search-box {
border-style: none;
border-width: 0;
border-spacing: 0 0;
width: 100%;
margin-bottom: 0px!important;
}

.gsst_a .gscb_a {
color: #E6AD5E!important;
cursor: pointer;
}

.gsst_a {
padding: 0!important;
box-shadow: none!important;
font-size: 0em!important;
}

.gsst_a:hover {
background-color: transparent!important;
}

.gsib_b {
margin-top: 4px;
display: block;
}

.cse input.gsc-search-button, input.gsc-search-button {
font-family: inherit;
font-size: 11px;
font-weight: bold;
color: #fff;
/*padding: 0 8px;*/
height: 29px;
min-width: 54px;
border: none!important;
border-radius: 0!important;
-moz-border-radius: 0!important;
-webkit-border-radius: 0!important;
border-color: none!important;
background-color: #37314B!important;
background-image: none!important;
filter: none!important;
}

.cse .gsc-search-button input.gsc-search-button-v2, input.gsc-search-button-v2 {
  width: 68px!important;
  height: 27px!important;
    margin-top: 0px!important;
}

/* RESULTS */
.results {
padding: 1em;
}

.results #___gcse_0 {
background: transparent;
padding: 0;
}

.gsc-orderby-container {
display: none;
}

table.gsc-branding, table.gcsc-branding {
display: none;
}

.gsc-above-wrapper-area {
    border: none;
    padding: 0;
}

.gs-webResult.gs-result a.gs-title:visited, .gs-webResult.gs-result a.gs-title:visited b, .gs-imageResult a.gs-title:visited, .gs-imageResult a.gs-title:visited b {
    color: #E6AD5E!important;
}

.gs-webResult.gs-result a.gs-title:link, .gs-webResult.gs-result a.gs-title:link b, .gs-imageResult a.gs-title:link, .gs-imageResult a.gs-title:link b {
    color: #E6AD5E!important;
}

.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
    border-color: #FFF;
    background-color: #FFFFFF!important;
    color: #E6AD5E!important;
}

/*UPCOMING DATES*/
.date {
	background-color: #37314B;
  padding: 0.5em;
  color: #FFF;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-weight: 300;
}

.past {
	text-decoration: line-through;
}

.past-text {
	color: #37314B;
}

.events {
	padding-bottom: 1em;
}

.events:last-child {
padding-bottom: 0;
}

/* FOOTER */
footer {
  background-color: #E6AD5E;
  color: #FFF;
  padding: 1em;
}

footer h2 {
  color: #FFF;
}

footer .body {
	text-align: left;
}

footer a {
	color: #FFF;
	border-bottom: 1px solid;
	text-decoration: none;
	transition: all 0.8s ease;
}

footer a:hover {
	color: #37314B;
	border-bottom: 1px solid;
}

footer form {
  color: #FFF;
}

footer input[type="submit"], footer input[type="reset"] {
  background-color: #FFF;
  color: #E6AD5E;
}

footer input[type="submit"]:hover, footer input[type="reset"]:hover {
  color: #FFF;
}

textarea {
  width: 100%;
}

.label {
	display: block;
	width: 100%;
}

.text {
	display: block;
	width: 100%;
}
.contact .body {
	text-align: left;
}

.copyright {
	text-align: center;
	padding: 1em;
}

.copyright a {
	color: #E6AD5E;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.8s ease;
}

.copyright a:hover {
	color: #37314B;
	border-bottom: 1px solid;
}

.copyright .body {
  font-size: 0.8em;
  padding: 1em 0 0em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  text-align: center;
}

.copyright .copyright1 {
  font-size: 0.9em;
  padding: 0;
  margin: 0;
  text-align: center;
}

.copyright .body-link {
	text-transform: inherit;
}

/* ---------------- ---------------------- */
/* ACCOMMODATION */
.ls-select-box:hover {
	background-color: #37314B;
	color: #FFF;
}

/* Papers */
.topics {
  overflow: hidden;
}

.topics li {
  padding-bottom: 0;
}

/* REGISTRATION FORM */
.registration label {
	width: 35%;
    display: inline-block;
    padding: 0.5em 0;
    vertical-align: middle;
}

.registration label:first-child {
    padding: 0em 0 0.5em;
}

.registration select,
.registration input,
.registration textarea {
    width: 64%;
    display: inline-block;
    vertical-align: middle;
}

.registration textarea {
	margin-bottom: 0.5em;
}

#Terms_and_Regulations {
    background: #e1e1e1;
}

.registrationDocuments {
	text-align: center;
	padding: 1em 0;
}

.registrationDocuments label,
.registrationDocuments select {
	width: 100%;
}

#title-error,
#First_Name-error,
#Last_Name-error,
#affiliation-error,
#address-error,
#country-error,
#email-error,
#Date_of_Payment_Transaction-error, 
#student-error,
#file-error,
#Do_you_need_an_official_Paper_Acceptance_Letter-error,
#Do_you_need_an_official_Invitation_Letter-error,
#Do_you_need_an_official_Registration_Receipt-error,
#Do_you_need_an_official_Certificate_of_Attendance-error,
#Do_you_need_an_official_Paid_Invoice-error,
#Registrant_Agreement-error,
#Session_Chair-error
 {
    display: block;
    width: 100%;
    color: red;
    padding: 0;
}

.asterik {
	color: red;
}

.registration .body {
	display: inline-block;
	vertical-align: text-top;
}

#Registrant_Agreement {
    display: inline-block;
    width: 5%;
    vertical-align: middle;
}

input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  background-color: #E6AD5E;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0.5em;
  font-size: 1em;
  border: 0;
  margin-top: 1em;
  transition: all 0.8s ease;
  width: 30%;
}

input[type="reset"]:hover, input[type="submit"]:hover {
  background-color: #37314B;
}

.paypal table {
	width: inherit;
}

.paypal tr {
  border: 0;
  text-align: center;
}

/* ACCOMMODATION TABLE */
.accommodation table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.accommodation tr {
  height: 60px;
}

.accommodation td {
	border: 1px solid #E6AD5E;
	padding: 0 1em;
}

.bottom-border {
	border-bottom: 1px solid #37314B;
	padding-top: 1em;
}

/* Contact Us */
.contact tr {
	border-bottom: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  width: 100%;
}

input[type="image"] {
  width: inherit;
}

/* 213 PX / LG OPTIMUS ONE */
@media only screen and (min-width: 13em) {
div.menu-trigger {
top: 14px;
right: 12px;
}

nav#slide-menu {
right: -170px;
max-width: 170px;
}

body.menu-active div#content {
right: 170px;
}

body.menu-active div#content .menu-trigger {
right: 180px;
}

/* IE9 SPECIFICS */
.ie9 nav#slide-menu {
    right: -187px;
}

.ie9 body.menu-active div#content {
    right: 187px;
}

.ie9 body.menu-active div#content .menu-trigger {
    right: 200px;
}

.ie9 table {
	width: 87%;
}
}

/* IE MOBILE NAV*/
@media only screen and (min-width: 15em) and (max-width: 20em) {
	.ie9 nav#slide-menu {
    right: -290px;
    width: 100%;
}

.ie9 body.menu-active div#content {
    right: 284px;
}

.ie9 body.menu-active div#content .menu-trigger {
    right: 300px;
}
}

/* 240 PX */
@media only screen and (min-width: 15em) {
	h2 {
	  font-size: 1.25em;
	}

	.panel-wrapper {  
	  padding: 1em 2em!important;
	}

	.mob-link {
  font-size: inherit;
}
.left {
     margin-right: 2%;
	 padding-bottom: 12px;
}

nav#slide-menu {
right: -192px;
max-width: 192px;
}

body.menu-active div#content {
right: 192px;
}

body.menu-active div#content .menu-trigger {
right: 205px;
}

@-moz-document url-prefix() {
	nav#slide-menu {
right: -284px;
width: 100%;
}

body.menu-active div#content {
right: 284px;
}

body.menu-active div#content .menu-trigger {
right: 296px;
}
}

/* IE9 SPECIFICS */
.ie9 .gsst_a {
    display: none;
}
}

/* 320 PX / APPLE IPHONE 3GS */
@media only screen and (min-width: 20em) {
nav#slide-menu {
right: -284px;
width: 100%;
max-width: 264px;
}

body.menu-active div#content {
right: 264px;
}

body.menu-active div#content .menu-trigger {
right: 280px;
}

div.menu-trigger {
right: 20px;
}

#slide-menu a {
  font-size: 1em;
}

#slide-menu h1 {
  padding: 0.6em;
  font-size: 2em!important;
}

h1 {
  padding: 1em 1em 0.5em;
  font-size: 1.5em!important;
 }

 .bg-link {
  font-size: 1.3em;
}

.searchbox .body {
  padding: 10px 0;
}

.flex-sponsor {
  width: 49%;
  display: inline-block;
}

.content {
  padding: 1em 0em 1em!important;
}

.panel-wrapper {
  padding: 1em 3em!important;
}

/* IE9 SPECIFICS */
.ie9 nav#slide-menu {
right: -284px;
width: 100%;
}

.ie9 body.menu-active div#content {
right: 284px;
}

.ie9 body.menu-active div#content .menu-trigger {
right: 294px;
}
}

/* 533 PX */
@media only screen and (min-width: 33em) {
.main-content {
  padding: 2em;
}

h2 {
  font-size: 1.6em;
}

.indent {
  padding-left: 2em;
}

footer {
  padding: 2em;
}

.contact table {
  width: 100%;
}

.label {
	display: inline-block;
	width: 30%;
}
.text {
	display: inline-block;
	width: 70%;
}
@-moz-document url-prefix() {
.label {
	float:left;
	width: 30%;
}
.text {
	float: right;
	width: 70%;
}
}
}

/* 768 PX */
@media only screen and (min-width: 48em) {
.topics li {
    padding-bottom: 0;
    list-style-type: disc;
    list-style-position: inside;
    padding: 0px 0 0px 25px;
    text-indent: -2em;
}

.topics {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
}

.ls-wrapper {
  margin: 0 auto;
}

.bg-link {
  display: inline-block;
  margin: 0 0 1.5em;
}

.dot {
  display: inline-block;
  padding: 0 0.5em;
}
}

/* 1024 PX */
@media only screen and (min-width: 64em) {
	.desktop {
		display: block;
	}

	.mobile {
		display: none;
	}

	header {
		position: inherit;
		width: 100%;
		padding: 114px 0 0;
	}

	div#content {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
}

	.bg-img {
		position: absolute;
	}

	.bg {
		background-color: rgba(0,0,0,0.65);
		position: relative;
		text-align: center;
		padding: 22px 0;
    min-height: 360px;
	}

	.flex-img {
  max-height: 366px;
}

	@-moz-document url-prefix() {
		.bg-img {
		position: absolute;
		width: 100%;
		}
		.bg {
		background-color: rgba(0,0,0,0.65);
		position: relative;
		text-align: center;
		padding: 24px 0;
		}
					.flex-img {
  max-height: 366px;
}
	}

	.cbp-af-header nav {
  	float: right;
  	width: 88%;
  	text-align: right;
  	padding-right: 1.5em;
	}

	.cbp-af-inner nav .dot {
  		font-size: 1em;
  		color: #37314B;
  		padding: 0 0.4em;
	}

	.cbp-af-header nav a {
  font-size: 0.6em!important;
  padding: 1em 0.1em;
	}

	.cbp-af-header nav a:hover {
	background-color: #37314B;
	padding: 1em 0.1em;
	color: #FFF!important;
	}

	div#content {
  position: inherit;
	}

	.searchbox .body {
  padding: 2px 0;
  color: #FFF;
}

h1 {
  padding: 0em 0em 0.5em;
  font-size: 1.8em!important;
  color: #FFF;
}

.subhead {
  padding: 0 1em 1.5em;
  color: #E6AD5E;
}

.main-content {
  padding: 1em;
}

h2 {
  font-size: 1.5em;
}

.content {
  padding: 8px 1em 1em!important;
}

.panel-wrapper {
  padding: 1em 2em!important;
  background: inherit!important;
}

.topics {
  margin: 0;
  padding: 0 0 1em 2em;
}

.date-title {
  display: table-cell;
  padding: 0.5em;
  background-color: transparent;
  color: #000;
  border-right: 1px solid #E6AD5E;
    font-weight: 500;
}

.imp-date {
  padding: 0.5em;
}

.reg {
  padding: 0.5em;
}

footer form {
  color: #FFF;
}

.contact {
  padding: 0 0em 0 2em;
}

.ie9 .bg-img {
		position: absolute;
		width: 100%;
	}
}

/* 1100 PX */
@media only screen and (min-width: 68em) {
	.cbp-af-header nav a {
  font-size: 0.9em!important;
}

.bg {
		background-color: rgba(0,0,0,0.65);
		position: relative;
		text-align: center;
		padding: 36px 0px 0px 0px;
    min-height: 366px;
	}
.flex-img {
  /*max-height: 393px;*/
}

@-moz-document url-prefix() {
		.bg-img {
		position: absolute;
		width: 100%;
		}
		.bg {
		background-color: rgba(0,0,0,0.7);
		position: relative;
		text-align: center;
		padding: 23px 0;
		}
					.flex-img {
  max-height: 366px;
}
	}

	.cbp-af-inner nav .dot {
  padding: 0 0.3em;
}
}

/* 1280 PX */
@media only screen and (min-width: 80em) {
	.cbp-af-header nav a {
  font-size: 0.85em!important;
}

.topics {
  margin: 0;
  padding: 0 0 1em 3em;
}

.date-title {
  font-weight: 700;
}
.reg {
  font-weight: 700;
}
.bg {
    /*min-height: 393px;*/
	}
	@-moz-document url-prefix() {
		.bg {
			background-color: rgba(0,0,0,0.7);
		position: relative;
		text-align: center;
		padding: 23px 0;
		min-height: 366px;
		}
	}
}

/* 1366 PX */
@media only screen and (min-width: 85em) {
	.content {
  padding: 8px 2em 1em!important;
}
.cbp-af-header nav a {
  font-size: 1em!important;
}
}

/* 1440 PX */
@media only screen and (min-width: 90em) {
.cbp-af-header nav a {
  font-size: 1em!important;
}
}

/* 1600 PX */
@media only screen and (min-width: 100em) {
	.cbp-af-header nav a {
  font-size: 1em!important;
}
}

/* contact us */
.half {
  float: left;
  width: 48%;
  margin-bottom: 1em;
}

.right { width: 50%; }

.left {
     margin-right: 2%; 
}

.full { width: 100%; }

@media (max-width: 600px) {
  .half {
     width: 100%; 
     float: none;
     margin-bottom: 0; 
  }
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}
.announcement-text{
	background-color: #E2E2E2;
	padding: 10px;
	margin-top: 0;
	font-size: 90%;
}
.grid {
  letter-spacing: -0.31em;
  *letter-spacing: normal;
  *word-spacing: -0.43em;
  text-rendering: optimizespeed;
}
.opera-only :-o-prefocus,
.grid {
  word-spacing: -0.43em;
}
.unit {
  display: inline-block;
  *display: inline;
  zoom: 1;
  letter-spacing: normal;
  text-rendering: auto;
  vertical-align: top;
  word-spacing: normal;
}
.unit-spacer {
  padding: 8px;
}
@media only screen and (max-width: 63.9em) {
  .unit-s-hidden {
    display: none;
    visibility: hidden;
  }
  .unit-s-1 {
    display: block;
  }
  .unit-s-1-2 {
    width: 49%;
  }
  .unit-s-1-3 {
    width: 33.33333%;
  }
  .unit-s-2-3 {
    width: 66.66667%;
  }
  .unit-s-1-4 {
    width: 25%;
  }
  .unit-s-3-4 {
    width: 75%;
  }
}
/*@media only screen and (min-width: 64em) and (max-width: 60em) {
  .unit-m-hidden {
    display: none;
    visibility: hidden;
  }
  .unit-m-1 {
    display: block;
  }
  .unit-m-1-2 {
    width: 49%;
  }
  .unit-m-1-3 {
    width: 33.33333%;
  }
  .unit-m-2-3 {
    width: 66.66667%;
  }
  .unit-m-1-4 {
    width: 25%;
  }
  .unit-m-3-4 {
    width: 75%;
  }
  .unit-m-1-3-1 {
    width: 25%;
  }
  .unit-m-1-4-1 {
    width: 49%;
  }
  .unit-m-1-4-2 {
    width: 11%;
  }
}*/
@media only screen and (min-width: 64em) {
  .unit-l-hidden {
    display: none;
    visibility: hidden;
  }
  .unit-l-1 {
    display: block;
  }
  .unit-l-1-2 {
    width: 49%;
  }
  .unit-l-1-3 {
    width: 33.33333%;
  }
  .unit-l-2-3 {
    width: 66.66667%;
  }
  .unit-l-1-4 {
    width: 25%;
  }
  .unit-l-3-4 {
    width: 75%;
  }
  .unit-l-1-3-1 {
    width: 25%;
  }
  .unit-m-1-4-1 {
    width: 49%;
  }
  .unit-l-1-4-2 {
    width: 10%;
  }
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}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;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}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;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
.cbp-af-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFF;
	z-index: 10000;
	height: 114px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

.cbp-af-header .cbp-af-inner {
	margin: 0 auto;
}

.cbp-af-header h1,
.cbp-af-header nav {
	display: inline-block;
	position: relative;
}

 /* We just have one-lined elements, so we'll center the elements with the line-height set to the height of the header */
.cbp-af-header h1,
.cbp-af-header nav a {
	line-height: 114px;
}

.cbp-af-header h1 {
	text-transform: uppercase;
	color: #333;
	letter-spacing: 4px;
	font-size: 4em;
	margin: 0;
	float: left;
}

.cbp-af-header nav {
	float: right;
}

.cbp-af-header nav a {
	color: #E6AD5E;/*
	font-weight: 200;*/
	font-size: 1em;
	text-decoration: none;
	font-weight: 700;
}

.cbp-af-header nav a:hover {
	color: #2A786A;
}

/* Transitions and class for reduced height */
.cbp-af-header h1,
.cbp-af-header nav a {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.cbp-af-header ul {
	list-style:none;
	position:relative;
	float:left;
	margin:0;
	padding:0
}

.cbp-af-header li {
position:relative;
	float:left;
	margin:0;
	padding:0
}

/* Example Media Queries */
@media screen and (max-width: 55em) {
	
	.cbp-af-header .cbp-af-inner {
		width: 100%;
	}

	.cbp-af-header h1,
	.cbp-af-header nav {
		display: block;
		margin: 0 auto;
		text-align: center;
		float: none;
	}

	.cbp-af-header h1,
	.cbp-af-header nav a {
		line-height: 115px;
	}

	.cbp-af-header nav a {
		margin: 0 10px;
	}

}

@media screen and (max-width: 32.25em) {
	.cbp-af-header nav a {
		font-size: 1em;
	}
}

@media screen and (max-width: 24em) {
	.cbp-af-header nav a,
	.cbp-af-header.cbp-af-header-shrink nav a {
		line-height: 1;
	}
}
/*
 *  Liquid Slider v2
 *  Copyright 2012 Kevin Batdorf
 *  http://liquidslider.com
 *  MIT license
 */

.no-js .liquid-slider {
  height:350px;
  overflow:scroll;
}

.ls-preloader {  
  background: url(../images/loading.gif) #f2f2f2 no-repeat center 50%;
  opacity:1;
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:2;
}

/*** Containers ***/
.ls-wrapper {
  clear: both;
  overflow: auto;
  position: relative;
}

.liquid-slider {
  width: 600px;
  margin: 0 auto;
  float: left;
  overflow: hidden;
  position: relative;
}
.arrows .liquid-slider {
  /* Margin between slider and arrows */
  margin: 0 10px;
}
.ls-responsive .liquid-slider {
  width: 100%;
  margin: 0;
}
.panel-container {
  position: relative;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  /* from http://davidwalsh.name/translate3d */
}
.liquid-slider .panel-container .fade {
  width:100%;
  opacity: 0;
  position: absolute;
  top: 0; 
  left: 0;
  display: block;
}

.title {
  border: none;
  padding: 0;
  margin-bottom: 0.5em;
}

/*** Panels ***/
.liquid-slider .ls-panel {  
  width: 600px;
  display: block;
  float: left;
}
.panel-wrapper {  
  padding: 1em 0.5em;
  position:relative;
    background: #f6f6f6;
  box-shadow: inset 0 1px rgba(255,255,255,0.8);
}

/*** Tabbed Navigation ***/
.ls-nav {
  overflow:hidden;
  clear:both;
    border-bottom: 1px solid #66984D;
}
.ls-nav a {
  color: #66984D;
  padding: 10px 15px;  
  outline:0;
  border-right: 1px solid;
    font-family: 'Lato', sans-serif;
}
.ls-nav a:hover {
  background: #66984D;
  color: #FFF;
  text-shadow: none;
}
.ls-nav .current a {
  background: #66984D;
  color: #FFF;
}
.currentCrossLink {
  font-weight: bold;
}
.ls-nav ul {  
  padding:0;
  clear: both;
  display: block;
  margin: auto;
  overflow: hidden;
}
.ls-nav ul li {
  display: inline;
}
.ls-nav ul li a {
  display: block;
  float: left;
  text-decoration: none;
}

/*** Mobile Navigation ***/
.ls-select-box { 
  width: 100%;
  height: 35px;
  overflow: hidden;
  transition: all 0.8s ease;
}
.ls-select-box select {  
  width: 150%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance:none;
  background: transparent;
  padding: 5px;
  font-size: 110%;
  border: none;
  height: 35px;
  cursor:pointer;
  outline: 0;
}

/*** Arrow Navigation (non-graphical) ***/
.ls-nav-left, .ls-nav-right {
  top:0;
  float: left;
  clear:both;
}
.ls-nav-left a, .ls-nav-right a {
  background: #000;
  color: #fff;
  padding: 5px;
  width: 100px;
  display: block;
  text-align: center;
  text-decoration: none;
}
.ls-responsive .ls-nav-left {
  position: absolute;
  left: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-left a {
  background: #9A9A9A;
  width: 80px;
}
.ls-responsive .ls-nav-left a:hover {
  background: #747474;
}
.ls-responsive .ls-nav-right {
  position: absolute;
  right: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-right a {
  background: #9A9A9A;
  width: 80px;
}
.ls-responsive .ls-nav-right a:hover {
  background: #747474;
}

/*** Arrow Navigation (graphical) ***/
.ls-nav-left-arrow, .ls-nav-right-arrow {
  cursor: pointer;
  float: left;
  clear: both;
}
.ls-nav-left-arrow a, .ls-nav-right-arrow a {
  display: block;
}
[class$="-arrow"] {
  width: 25px;
  height: 25px;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  margin-top: 50px;
  position:relative;
}
.ls-nav-right-arrow {
  background-position: top right;  
  margin-right: 5px;
}
.ls-nav-left-arrow {
  background-position: top left;  
  margin-left: 5px;
}
.ls-nav-left-arrow:hover {
  background-position: bottom left;
}
.ls-nav-right-arrow:hover {
  background-position: bottom right;
}
.ls-responsive .ls-nav-left-arrow {
  position: absolute;
  left: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-right-arrow {
  position: absolute;
  right: 0;
  z-index: 2;
}
