/*
|------------------------------------------------------------------------------
| Brava STYLES
|------------------------------------------------------------------------------
*/

/*
|------------------------------------------------------------------------------
| RESET
|------------------------------------------------------------------------------
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
|------------------------------------------------------------------------------
| ANIMATIONS
|------------------------------------------------------------------------------
*/

/* Typed Cursor */
.typed-cursor {
	opacity: 1;
	-webkit-animation: blink 0.7s infinite;
	-moz-animation: blink 0.7s infinite;
	animation: blink 0.7s infinite;
}
@keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-moz-keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*
|------------------------------------------------------------------------------
| GENERAL
|------------------------------------------------------------------------------
*/
html {
	font-size: 112.5%; /* 18px */
}
@media only screen and (min-width: 700px) {
	html {
		font-size: 125%; /* 20px */
	}
}
body {
	font-family: 'Marine', Helvetica, Arial, sans-serif;
	line-height: 1.5;
	color: #444;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
}

/*
|------------------------------------------------------------------------------
| COLUMNS & LAYOUT
|------------------------------------------------------------------------------
*/

/* Wrapper */

#wrap,
.wrapper {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Columns */

.columns .left,
.columns .right,
.threeColumns .left,
.threeColumns .center,
.threeColumns .right,
.fourColumns .column1,
.fourColumns .column2,
.fourColumns .column3,
.fourColumns .column4 {
	margin-bottom: 2rem;
}

@media only screen and (min-width: 700px) {
	.col {
		float: left;
		margin-right: 4.166666667%;
	}
	.col--last {
		margin-right: 0;
	}
	.col--1of2 {
		width: 47.916666667%;
	}
	.col--1of3 {
		width: 30.555555556%;
	}
	.col--2of3 {
		width: 65.277777778%;
	}
	.col--1of4 {
		width: 21.875%;
	}
	.col--3of4 {
		width: 73.958333333%;
	}
	.columns {
		margin-bottom: 1em;
	}
	.columns .left {
		float: left;
		width: 47.916666667%;
	}
	.columns .right {
		float: right;
		width: 47.916666667%;
	}

	.threeColumns {
		margin-bottom: 1em;
	}
	.threeColumns .left,
	.threeColumns .center {
		float: left;
		width: 30.555555556%;
		margin-right: 4.166666667%;
	}
	.threeColumns .right {
		float: right;
		width: 30.555555556%;
	}

	.fourColumns {
		margin-bottom: 1em;
	}
	@media only screen and (min-width: 700px) {
		.fourColumns {
			margin-bottom: 3rem;
		}
	}
	.fourColumns .column1,
	.fourColumns .column2,
	.fourColumns .column3 {
		float: left;
		width: 21.875%;
		margin-right: 4.166666667%;
	}
	.fourColumns .column4 {
		float: right;
		width: 21.875%;
	}

	.columns .left,
	.columns .right,
	.threeColumns .left,
	.threeColumns .center,
	.threeColumns .right,
	.fourColumns .column1,
	.fourColumns .column2,
	.fourColumns .column3,
	.fourColumns .column4 {
		margin-bottom: 0;
	}
}

/*
|------------------------------------------------------------------------------
| TYPOGRAPHY
|------------------------------------------------------------------------------
*/

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Marine', Helvetica, Arial, sans-serif;
	color: #323434;
	font-weight: bold;
	margin-bottom: 1rem;
}
h1 {
	font-size: 1.8rem;
}

h2 {
	font-size:1.4rem;
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}

.section-title {
	text-align: center;
}
.section-title h2 {
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: 2px;
	font-size: 1.3rem;
	margin-top: 1rem;
}

.left-title {
	text-align: left;
}
.left-title h2 {
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: 2px;
	font-size: 1.3rem;
	margin-top: 1rem;
}

@media only screen and (min-width: 700px) {
	.intro-title h2 {
		margin-bottom: 4rem;
	}
}

/* Paragraphs */

p {
	margin-bottom: 1.5rem;
}
p::selection {
	background: #1263aa;
	color: WHITE;
} 

/* Lists */
ul,
ol {
	margin-bottom: 1.5rem;
}
ul {
	list-style: none;
}

ol {
	margin-left: 2rem;
	list-style: decimal;
}
ul li {
    line-height: 1.2;
    margin-bottom: 0.5rem;
    /* padding-left: 1.2rem; */
    /* background: url(img/dots-bullet3.png) 0px 7px no-repeat; */
}

ul.fhttsBulletLight {
	font-size: 0.9rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.fhttsBulletLight li {
    line-height: 1.2;
    margin-bottom: 1.2rem;
    padding: 0.2rem 0.4em 0.1rem 0.6rem;
    /* background: url(img/connectBulletLight.png) 2px 8px no-repeat; */
    font-size: 1.1em;
    /* font-weight: bold; */
    border-left: 6px solid #19AFCC;
    /* border-bottom: 1px dotted #19AFCC; */
    /* border-top: 1px dotted #19AFCC; */
    /* border-right: 1px dotted #19AFCC; */
}
.fhttsBulletWhite li {
    line-height: 1.3;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    background: url(img/fhtts-bulletWhite.png) 0px 3px no-repeat;
    font-size: 0.9em;
}
.fhttsBulletWhite li a:link, .fhttsBulletWhite li a:visited {
	font-size:0.9em;
	color:white;
	text-decoration:none;
}
.fhttsBulletWhite li a:hover {
	color:white;
	text-decoration:none;
} 

/* Blockquotes */

blockquote {
	margin-left: 4em;
	margin-bottom: 1.5em;
	position: relative;
	font-family: 'Marine', Helvetica, Arial, sans-serif;
	font-style: italic;
	color: #447a96;
}
blockquote:before {
	position: absolute;
	content: '\201C';
	top: -36px;
	left: -100px;
	color: #25aae1;
	font-size: 6.6em;
}

/* Code */

code {
	font-family: monospace;
	font-size: 1.2em;
	background: #f9f2f4;
	color: #c7254e;
	padding: 2px 4px;
}
pre {
	font-family: monospace;
	font-size: 1.2em;
	background: #f5f5f5;
	border: 1px solid #ddd;
	color: #666;
	padding: 1em;
	overflow: auto;
	margin-bottom: 1.5em;
}

/* Type Styles */

strong,
b {
	font-weight: bold;
}
em,
i {
	font-style: italic;
}
s,
strike,
del {
	text-decoration: line-through;
}
small,
.text--small {
	font-size: 85%;
}

/* Alerts & Messages */

.success,
.error {
	clear: left;
	color: white;
	padding: 10px;
	line-height: 1;
	display: none;
}
.success {
	background: #53a561;
}
.error {
	background: #b94747;
}

.intro-text {
	margin: 0 0 70px;
	width: 700px;
	max-width: 100%;
}

/*
|------------------------------------------------------------------------------
| LINKS
|------------------------------------------------------------------------------
*/

a:link,
a:visited {
	color: #0D6A76;
	transition: all 0.1s ease-in-out;
	text-decoration: none;
	font-weight: bold;
}
.no-touch a:hover {
	color: #19AFCC;
}

/* Buttons */

.btn a:link,
.btn a:visited {
	display: inline-block;
	padding: 15px 40px;
	text-decoration: none;
	line-height: 1;
	background: #0D6A76;
	border-radius: 4px;
	font-weight: bold;
	color: white;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	BOX-SHADOW: 6px 7px 0px -3px rgba(153,151,153,0.42);
}
.no-touch .btn a:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

@media only screen and (min-width: 375px) {
	.columns .left, .columns .right {
		margin-bottom:0em;
		margin-top: 0em;
	}
}
@media only screen and (min-width: 375px) {
	.columns .left, .columns .right {
		margin-bottom:0em;
		margin-top: 0em;
	}

.page-exhibitorportal .columns .left, .page-orderbadges .columns .left, .page-marketing .columns .left, .page-operationsmanual .columns .left, .page-personalisedgraphics .columns .left, .page-floorplan .columns .left, .page-visitorlogin .columns .left, .page-recommend .columns .left {
    width: 63%;
}
.page-exhibitorportal .columns .right, .page-orderbadges .columns .right, .page-marketing .columns .right, .page-operationsmanual .columns .right, .page-personalisedgraphics .columns .right, .page-floorplan .columns .right, .page-visitorlogin .columns .right, .page-recommend .columns .right {
    width: 32%;
}
}

.page-exhibitorportal .c-block.c-block--blue .wrapper, .page-orderbadges .c-block.c-block--blue .wrapper, .page-marketing .c-block.c-block--blue .wrapper, .page-operationsmanual .c-block.c-block--blue .wrapper, .page-personalisedgraphics .c-block.c-block--blue .wrapper, .page-floorplan .c-block.c-block--blue .wrapper, .page-visitorlogin .c-block.c-block--blue .wrapper, .page-recommend .c-block.c-block--blue .wrapper {
    padding-top: 2em;
}

@media only screen and (min-width: 375px) {
	.btn a:link,
    .btn a:visited {
		margin:0;
		padding:13px 20px
	}
}

/* HUB LINKS */

.hub-links a:link,
.hub-links a:visited {
	display: inline-block;
	width: 95%;
	padding: 15px 40px;
	text-decoration: none;
	line-height: 1;
	background: #0D6A76;
	border-radius: 4px;
	font-weight: bold;
	color: white;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	BOX-SHADOW: 6px 7px 0px -3px rgba(153,151,153,0.42);
}
.no-touch .hub-links a:hover {
	color:white;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
@media only screen and (min-width: 375px) {
	.hub-links a:link,
    .hub-links a:visited {
		margin:0;
		padding: 30px 20px;
	}
}

/* Service Links */

.externalServiceLink h4 {
	display:none;
}
.externalServiceLink a:link,
.externalServiceLink a:visited {
	display: inline-block;
	width: 95%;
	padding: 15px 40px;
	text-decoration: none;
	line-height: 1;
	background: #0D6A76;
	border-radius: 4px;
	font-weight: bold;
	color: white;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	BOX-SHADOW: 6px 7px 0px -3px rgba(153,151,153,0.42);
}
.no-touch .externalServiceLink a:hover {
	color:white;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
@media only screen and (min-width: 375px) {
	.externalServiceLink a:link,
    .externalServiceLink a:visited {
		margin:0;
		padding: 30px 20px;
	}
}
.page-profilemanagement .uc.fourColumns.cf {
    margin-bottom: 0;
}

/*
|------------------------------------------------------------------------------
| IMAGES
|------------------------------------------------------------------------------
*/

img {
	max-width: 100%;
}

/*
|------------------------------------------------------------------------------
| HERO
|------------------------------------------------------------------------------
*/

.hero {
	background: #1363AA center center no-repeat;
	background-size: cover;
	height: 200px;
	position: relative;
}
.news .hero {
    background-image: url(/files/fhtts/header/ea-hero4.jpg);
}
@media (min-width: 320px) and (max-width: 767px) {
	.hero {
		height: 360px;
	}
}
@media (min-width: 768px) and (min-width: 1000px) {
	.hero {
		height: 420px;
	}
}

.hero.hero--home {
	height: auto;
	padding: 4rem 0 3rem;
}
@media (min-width: 320px) and (max-width: 480px) {
	.hero.hero--home {
		padding: 4rem 0 1rem;
	}
}
@media (min-width: 481px) and (max-width: 767px) {
	.hero.hero--home {
		padding: 7rem 0 4rem;
	}
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
.hero.hero--home {
    padding: 3rem 0 5rem;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
.hero.hero--home {
	/* background-image: url(/files/brava/images/justThermals.svg); */
	/* background-size: 100% auto; */
	/* background-position: center; */
	/* background-repeat: no-repeat; */
	padding: 6rem 0 5rem;
}
}
@media (min-width: 1025px) and (max-width: 1280px){
.hero.hero--home {
	/* background-image: url(/files/brava/images/justThermals.svg); */
	/* background-size: 100% auto; */
	/* background-position: center; */
	/* background-repeat: no-repeat; */
	padding: 13rem 0 3rem;
	}
}
@media (min-width: 1281px){
.hero.hero--home {
	/* background-image: url(/files/brava/images/justThermals.svg); */
	/* width: 100%; */
	/* height: auto; */
	/* background-size: contain; */
	/* background-position: center bottom; */
	/* background-repeat: no-repeat; */
	padding: 2em 0 18em;
	}
}

.hero:after {
	display: block;
	position: absolute;
	content: '';
	background: url(/files/brava/images/lettersAndBirdsAfter3.svg);
	/* width: 100%; */
	/* height: 500px; */
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
}
@media (min-width: 320px) and (max-width: 480px) {
	.hero:after {
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 100%;
}
}
@media (min-width: 481px) and (max-width: 767px) {
	.hero:after {
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 100%;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.hero:after {
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 100%;
	}
}
@media (min-width: 1025px) and (max-width: 1280px) {
	.hero:after {
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 100%;
}
}
@media (min-width: 1281px) {
.hero:after {
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 100%;
}
}
.page-team  .hero, .page-ourstrategy .hero, .page-leadership .hero, .page-scientificadvisoryboard .hero, .page-principalinvestigators .hero, .page-contact .hero {
	height: 338px;
}
.page-team .hero:after, .page-ourstrategy .hero:after, .page-leadership .hero:after, .page-scientificadvisoryboard .hero:after, .page-principalinvestigators .hero:after, .page-contact .hero:after {
	display: block;
	content: '';
	position: absolute;
	background-image: url(/files/brava/images/ContentPageAfter.svg);
	/* width: 100%; */
	/* height: 100%; */
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

/*@media only screen and (min-width: 1000px) {
	.page-exhibitions .hero, .page-awards .hero, .page-conferences .hero {
		height: 580px;
	}
}*/

/*  .page-attendeeaccountarea .hero, .page-speakeraccountarea .hero {
    background-image: url(/files/expocms/fhtts/photos/Network-LongContent.jpg);
    display: block;
}
.page-latesteventnews .hero, .page-profilemanagement .hero {
	background-image: url(/files/fhtts/header/Trading.jpg);
}
.page-attendeefaqs .hero, .page-exhibitorfaqs .hero {
    background-image: url(/files/fhtts/header/jw-turnberryHeader.jpg);
    display: block;
}
.page-exhibitorfaqs .hero{
    background-image: url(/files/fhtts/header/Supplier-Header.jpg);
    display: block;
}
.page-exhibitorlist .hero, .page-exhibitorprofile .hero {
    background-image: url(/files/fhtts/header/Supplier-Header.jpg);
    display: block;
}
.page-speakers .hero, .page-speakerprofile .hero, .page-educationprogramme .hero, .page-registration .hero, .page-session .hero {
    background-image: url(/files/fhtts/header/session-applause2.jpg);
    display: block;
}
.page-latesteventnews .hero {
	background-image: url(/files/fhtts/header/Trading.jpg);
}
.hero__background-image {
	display: none;
} */

.hero__title {
	margin: 0 auto;
	position: relative;
	top: 40%;
	width: 90%;
	text-align: center;
}
.hero__title h1 {
	color: white;
}
.page-exhibitions .hero__title h1, .page-conferences .hero__title h1, .page-awards .hero__title h1 {
    color: white;
    text-shadow: 1px 1px 1px #777777;
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero-logo {
	text-align: center;
}
.hero-logo P {
    color: white;
}
.hero-logo img {
	width: 100px;
}
@media only screen and (min-width: 700px) {
	.hero-logo img {
		width: 180px;
	}
}

.typed {
	max-width: 95%;
	margin: 0 auto;
	font-weight: normal;
	color: white;
	text-align: left;
	line-height: 1.2;
	font-size: 1.1rem;
	height: 50px;
}
@media (min-width: 320px) and (max-width: 480px) {
	.typed {
		height: auto;
		font-size: 0.9rem;
		margin: 0 0 1em 0;
	}
}
@media (min-width: 481px) and (max-width: 767px) {
	.typed {
		font-size: 1.6rem;
		margin: 0 0 1em 0;
	}
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
     .typed {
		font-size: 1.6rem;
		margin: 0;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
      .typed {
		font-size: 1.5rem;
		margin: 0;
	}
}
@media (min-width: 1025px) {
	.typed {
		font-size: 2rem;
		margin: 0;
	}
}

.typed-string {
	color: #ffffff;
	font-weight: bold;
	/* background: #757171; */
	/* opacity: 0.4; */
}
.typed-cursor {
	color: #1263aa;
	font-weight: bold;
}
.hero .Strapline {
    display: block;
    top: -14px;
    position: absolute;
    left: 92px;
    padding: 1em 1em;
    width: 340px;
}
.hero .Strapline {
	margin: 2em;
	width: 30%;
}
@media (min-width: 320px) and (max-width: 375px) {
	.hero .Strapline {
	width: 183px;
    TOP: 122PX;
    left: 79px;
    POSITION: RELATIVE;
    padding: 13px 9px;
	}
}
@media (min-width: 376px) and (max-width: 414px) {
	.hero .Strapline {
		width: 178px;
		TOP: 120PX;
		left: 76px;
		POSITION: RELATIVE;
		padding:10px;
	}
}
@media (min-width: 320px) and (max-width: 480px) {
	.hero .Strapline {
		width: 80%;
		TOP: -10PX;
		left: -15px;
		POSITION: RELATIVE;
	}
}
@media (min-width: 481px) and (max-width: 767px) {
	.hero .Strapline {
		width: 631PX;
		TOP: -41PX;
		left: 12px;
		POSITION: RELATIVE;
		padding: 12px 0px;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.hero .Strapline {
		width: 80%;
		TOP: -58PX;
		left: -20px;
		POSITION: RELATIVE;
	}
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.hero .Strapline {
		width: 220px;
		TOP: 91PX;
		left: 50px;
		POSITION: RELATIVE;
	}
}

@media (min-width: 1025px) and (max-width: 1280px) {
	.hero .Strapline {
		width: 80%;
		TOP: -120PX;
		left: -21px;
		POSITION: RELATIVE;
		padding: 16px 17px;
	}
}
@media (min-width: 1281px) {
	.hero .Strapline {
		width: 65%;
		TOP: 133PX;
		left: 12px;
		POSITION: RELATIVE;
		padding: 15px 0 20px;
	}
}

.hero .btn a:link,
.hero .btn a:visited {
	background: white;
	color: #19AFCC;
	z-index: 2;
}

/*
|------------------------------------------------------------------------------
| HEADER
|------------------------------------------------------------------------------
*/

.site-header {
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	padding: 10px;
	z-index: 10;
	/* opacity: 0.7; */
	transition: all 0.3s ease-in-out;
}
.page-exhibitions .site-header.cf, .page-awards .site-header.cf, .page-conferences .site-header.cf {
    opacity: 1;
    background: #1a4362;
    box-shadow: 0 12px 19px -15px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1025px) {
	.site-header {
		padding: 9px 40px 0px;
		background: #1363AA;
		box-shadow: 0 12px 19px -15px rgba(0, 0, 0, 0.2);
		height: 90px;
	}
}
@media (min-width: 320px) and (max-width: 1024px)  {
	.site-header {
		padding: 9px 35px 0px;
		background: #1363AA;
		box-shadow: 0 12px 19px -15px rgba(0, 0, 0, 0.2);
		height: 76px;
	}
}

.site-header.site-header--scrolled {
	opacity: 1;
	background: #1363AA;
	box-shadow: 0 12px 19px -15px rgba(0, 0, 0, 0.2);
	height: 90px;
	transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 1025px) {
	.site-header__left {
		float: left;
		width: 0;
	}
}
.site-header__logo {
	width: 340px;
	float: left;
	top: -3px;
	position: relative;
}
@media (min-width: 320px) and (max-width: 480px) {
	.site-header__logo {
		width: 129px;
		TOP: 12PX;
		left: 0px;
		POSITION: RELATIVE;
	}
}
@media (min-width: 481px) and (max-width: 767px) {
	.site-header__logo {
		    width: 180px;
		    TOP: 5PX;
		    left: 4px;
		    POSITION: RELATIVE;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.site-header__logo {
		    width: 152px;
		    TOP: 12PX;
		    float: left;
		    POSITION: RELATIVE;
	}
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.site-header__logo {
		    width: 260px;
		    TOP: 15PX;
		    left: 42px;
		    POSITION: RELATIVE;
	}
}
@media (min-width: 1025px) and (max-width: 1280px) {
	.site-header__logo {
		width: 342px;
		TOP: 105PX;
		left: -7px;
		POSITION: RELATIVE;
	}
}
@media (min-width: 1281px) {
	.site-header__logo {
		width: 290px;
		TOP: 143px;
		left: 7px;
		POSITION: relative;
	}
}
.page-team .site-header__logo, .page-ourstrategy .site-header__logo, .page-leadership .site-header__logo, .page-scientificadvisoryboard  .site-header__logo, .page-principalinvestigators .site-header__logo, .page-contact .site-header__logo {
	width: 340px;
	float: left;
	top: 120px;
	position: relative;
}
.site-header__logo p {
	margin: 0;
}

.site-header__right {
	float: right;
}

.site-header--scrolled .site-header__logo {
	width: 180px;
	float: left;
	top: 12px;
	position: relative;
	transition: all 0.5s ease-in-out;
}


/*
|------------------------------------------------------------------------------
| MOBILE NAVIGATION
|------------------------------------------------------------------------------
*/

#mobile-header {
	float: right;
	padding: 0;
	margin: 0.7em 0 0 0;
}
#responsive-menu-button {
	background: url(img/nav-toggle.svg);
}
.sidr ul li {
	background: none;
	padding-left: 0;
}

/*
|------------------------------------------------------------------------------
| NAVIGATION
|------------------------------------------------------------------------------
*/

#mainMenu {
}
#mainMenu ul {
	list-style: none;
	margin: 0;
}
#mainMenu li {
	float: left;
	position: relative;
	padding: 10px 0 9px;
	background: none;
	margin-top: 12px;
	/* border-bottom: 1px solid #fff; */
}
#mainMenu li#menu_register {
    background-color: #0D6A76;
}
#mainMenu a {
	display: block;
	position: relative;
	text-decoration: none;
	font-family: 'Marine', Helvetica, Arial, sans-serif;
	color: white;
	/* text-transform: uppercase; */
	/* font-weight: bold; */
	padding: 10px 10px;
	line-height: 1;
	font-size: 0.8rem;
	z-index: 2;
}
.no-touch #mainMenu a:hover {
	color: #eef2f3;
}

#mainMenu .sub_menu {
	display: none;
	position: absolute;
}
.no-touch #mainMenu li:hover .sub_menu {
	display: block;
}
#mainMenu .sub_menu {
	display: none;
	position: absolute;
	/* background: #19AFCC; */
	z-index: 2;
	left: 0;
	top: 100%;
	width: 200px;
}
#mainMenu li:hover .sub_menu {
	display: block;
	color:#fff;
	background:#19AFCC;
}
#mainMenu .sub_menu li {
	width: 100%;
	position: relative;
	margin: -5px 0 0 0;
	padding-left: 11px;
	/* border-bottom: 1px solid #fff; */
}
#mainMenu .sub_menu a:link,
#mainMenu .sub_menu a:visited {
	line-height: 1.3;
	box-sizing: border-box;
	float: none;
	font-size: 0.8rem;
	width: 100%;
	padding: 10px 10px;
}

/*
|------------------------------------------------------------------------------
| GENERIC PAGE
|------------------------------------------------------------------------------
*/

#page {
	padding: 0em 0 0;
	margin: 0;
	background: url(img/bgrdLtters-rpt.svg);
	/* color: white; */
	background-repeat: repeat;
	background-size: 147px 9px;
}
#content {
	padding-bottom: 2em;
}
#content,
#extras {
	float: none;
	width: 100%;
}
@media only screen and (min-width: 700px) {
	#content {
		float: left;
		width: 65.277777778%;
		padding-bottom: 4em;
	}
	#ContentZone #content {
		float: none;
		width: 100%;
		margin-bottom: 0em;
	}
	#ContentSideZoneLeft #content {
		float: right;
	}

	#extras {
		width: 30.555555556%;
		margin-top: 100px;
	}
	#ContentSideZone #extras {
		float: right;
	}
	#ContentSideZoneLeft #extras {
		float: left;
	}
}

/*
|------------------------------------------------------------------------------
| PAGE SPLIT
|------------------------------------------------------------------------------
*/

.page-split {
	margin-top: 50px;
}

.page-split__left {
	background-size: cover;
	background-position: center center;
	float: left;
	width: 50%;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.page-split__left {
		width: 100%;
		float: none;
	}
}
.page-split__left--page-conferences {
	background-image: url('img/conference/conference.jpg');
}
.page-split__left--page-exhibitions {
	background-image: url('img/exhibition/exhibition.jpg');
}

.page-split__right {
	float: right;
	width: 50%;
	box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
	.page-split__right {
		width: 100%;
		float: none;
	}
}

.page-split__content {
	max-width: 555px;
	margin: 40px;
}
@media only screen and (min-width: 1200px) {
	.page-split__content {
		margin: 70px;
		max-width: 485px;
	}
}

/*
|------------------------------------------------------------------------------
| CONTENT BLOCKS
|------------------------------------------------------------------------------
*/

.c-block--navy {
	background: url(img/fhtts_dots-bg.jpg);
	color: white;
}

.c-block--blue {
	background: url(img/dots-bg.jpg);
}

.c-block--dots {
	position: relative;
}
/* .c-block--dots:before {
	display: none;
	content: url(img/bits.png);
	position: absolute;
	top: -170px;
	left: -224px;
} */
.c-block--dots:after {
	display: block;
	content:'';
	background-image: url(/files/brava/images/lettersFooterBeforeReverse.svg);
	width:100%;
	height: 200px;
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
}
.c-block--dots .cDots {
    display: none;
}
@media only screen and (min-width: 700px) {
	.c-block--dots:before {
		display: block;
	}
}
@media only screen and (min-width: 1100px) {
	.c-block--dots:before {
		left: -174px;
	}
}

.c-block--network {
	background: url(img/circuit-vert.png) center bottom -660px no-repeat;
}
@media only screen and (min-width: 700px) {
	.c-block--network {
		background: url(img/circuit-vert.png) center top 190px no-repeat;
	}
}

.c-block-title {
	text-align: center;
}
.c-block-title h2 {
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: 2px;
	font-size: 1.3rem;
	padding: 2rem 0;
	margin-bottom: 0;
}
.c-block--navy .c-block-title h2 {
	color: white;
}

.c-block-content {
	padding-bottom: 0rem;
    padding-top: 1rem;
}
.c-block-content p {
	text-align: center;
	padding-bottom: 1rem;
	max-width: 700px;
	margin: 0 auto;
}

.c-block.c-block--navy .columns .left {
    width: 30%;
}

.c-block.c-block--navy .columns .right {
    width: 70%;
}
.blue-block-cta {
    padding: 1em;
}

.blue-block-cta h4 {
    font-size: 1.6em;
    font-weight: bold;
    color: white;
    display:none;
}

.blue-block-cta img {
    max-width:100px;
}
.c-block.c-block--navy .columns .left .blue-block-cta p {
    display:inline-block;
    float:right;
}

.c-block.c-block--navy .columns .right .blue-block-cta p {
        font-weight: normal;
    font-size: 1.8em;
    padding-top: 0.8em;
    margin-left: 2em;
}
@media only screen and (min-width: 375px) {
    .c-block .blue-block-cta {
    display:none;
  }
}
/*
|------------------------------------------------------------------------------
| FOOTER
|------------------------------------------------------------------------------
*/

.site-footer {
	background: #1363AA;
	padding: 2rem 0;
}
@media only screen and (min-width: 1100px) {
	.site-footer {
		padding: 3rem 0 1rem;
	}
}

.site-footer h3 {
	color: white;
	text-transform: uppercase;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}
.site-footer h4 {
	color: white;
	text-transform: uppercase;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

/* footer center col h4 
.site-footer-primary .center h4 {
    color: #1a4362;
}*/


.footer-links ul li {
	margin: 0;
	list-style: none;
}
.footer-links a:link,
.footer-links a:visited {
	font-size: 0.9rem;
	line-height: 2;
	padding: 5px 5px;
	color: #ffffff;
	font-weight: normal;
}
.no-touch .footer-links a:hover {
	background: white;
	color: #1363AA;
}

.footer-contact {
	color: #ffffff;
	font-size: 0.9rem;
}
.footer-contact a:link,
.footer-contact a:visited {
	color: #1ffffff;
	font-weight: normal;
}
.no-touch .footer-contact a:hover {
	color: #19AFCC;
}
.footer-contact p {
	margin-bottom: 0.9rem;
}
.footer-contact img {
	max-width: 220px;
}

.footer-contact a img {
	margin-right: 1.5rem;
}

.site-footer-secondary {
	margin-top: 2rem;
	color: #ffffff;
	font-size: 0.8rem;
	font-family: 'Marine', Helvetica, Arial, sans-serif;
}
.footer-copyright{
  font-size: 0.8em; 
  width: 100%;
  text-align: center; 
}
.footer-author{
    font-size: 0.8em; 
}
.footer-author img {
    width: 180px;
}
.footer-author a {
    color: white;
    text-decoration: none;
    font-weight: normal;
}

.footer-author a:hover, .footer-author a:visited {
    color: white;
    text-decoration: none;
    font-weight: normal;
}

@media only screen and (min-width: 700px) {
	.footer-author {
		text-align: right;
	}
}
.footer-logo img {
    float: right;
    width: 50%;
}
/*
|------------------------------------------------------------------------------
| HOME PAGE
|------------------------------------------------------------------------------
*/

/* Content */

.startPage #content {
	padding-bottom: 2em;
}

@media only screen and (max-width: 414px) {
	#content {
		margin-top: 2rem;
	}
}
@media only screen and (min-width: 415px) {
	#content {
		margin-top: 2rem;
	}
}

@media only screen and (min-width: 700px) {
	.startPage #main .fourColumns {
		margin-bottom: 4rem;
	}
}

.panels {
	padding-bottom: 3rem;
}
@media only screen and (min-width: 900px) {
	.panel {
		width: 31.333%;
		float: left;
		margin: 0 1.8rem 0 0;
	}
	.panel:last-child {
		margin-right: 0;
		float: right;
	}
}

.homeIntroduction {
    margin-bottom: 2.2rem;
    padding: 30px 40px;
    background-color: white;
	box-shadow: rgb(204, 204, 204) 0px 5px 15px -5px;
}
.homeIntroduction p {
	font-size: 1.1em;
    line-height: 1.5em;
    margin-bottom: 0.7em;
}
.home-intro h2 {
    font-size: 1.3em;
    line-height: 1.4em;
    font-weight: normal;
}
.home-intro p {
    font-size: 1.3em;
    line-height: 1.3em;
}
.colContent {
    margin-bottom: 2.2rem;
    padding: 30px 40px;
    background-color: white;
	box-shadow: rgb(204, 204, 204) 0px 5px 15px -5px;
}
.colContent h2 {
    font-size: 1.3em;
    line-height: 1.4em;
    font-weight: normal;
}
.colContent p {
	font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.7em;
}

/*
|------------------------------------------------------------------------------
| NEWS LISTINGS PAGE
|------------------------------------------------------------------------------
*/

.newsContainer .item {
	margin-bottom: 1.5rem;
}
@media only screen and (min-width: 600px) {
	.newsContainer .item {
		float: left;
		width: 47.5%;
		margin-right: 5%;
	}
	.newsContainer .item:nth-child(2n) {
		margin-right: 0;
	}
	.newsContainer .item:nth-child(2n + 1) {
		clear: left;
	}
}
@media only screen and (min-width: 800px) {
	.newsContainer .item {
		width: 30%;
	}
	.newsContainer .item:nth-child(2n) {
		margin-right: 5%;
	}
	.newsContainer .item:nth-child(2n + 1) {
		clear: none;
	}
	.newsContainer .item:nth-child(3n) {
		margin-right: 0;
	}
	.newsContainer .item:nth-child(3n + 1) {
		clear: left;
	}
}

.newsContainer .item img {
	margin-bottom: 0.5rem;
}
.newsContainer .item .date {
	display: block;
	color: #0D6A76;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}
.newsContainer .item a:link,
.newsContainer .item a:visited {
	font-family: 'Marine', Helvetica, Arial, sans-serif;
	line-height: 1.2;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: bold;
}
.no-touch .newsContainer .item:hover a {
	color: #0D6A76;
}
.newsContainer .item p {
	margin-bottom: 0;
}

/*
|------------------------------------------------------------------------------
| NEWS ITEM PAGE
|------------------------------------------------------------------------------
*/

.news #main {
	/* max-width: 700px; */
	/* margin-left: auto; */
	/* margin-right: auto; */
}
.news .date {
	/* text-align: center; */
	font-size: 0.9rem;
	color: #0D6A76;
	display: block;
	margin-bottom: 1rem;
}
/* .news .newsitem > h1 {
	display: none;
} */

/*
|------------------------------------------------------------------------------
| CALENDAR PAGE
|------------------------------------------------------------------------------
*/

.page-calendarpage .date {
	display: block;
	color: #0D6A76;
	font-size: 0.9em;
}

/*
|------------------------------------------------------------------------------
| CALENDAR EVENT PAGE
|------------------------------------------------------------------------------
*/

.page-calendarpage.event .date {
	margin-bottom: 1em;
}

/*
|------------------------------------------------------------------------------
| DATABASE SEARCH PAGE
|------------------------------------------------------------------------------
*/

.page-databasesearch .item {
	padding: 0;
	margin: 0 0 1em;
}

/*
|------------------------------------------------------------------------------
| WIKI PAGE
|------------------------------------------------------------------------------
*/

.page-wiki .path {
	float: none;
}

/*
|------------------------------------------------------------------------------
| OBJECTS
|------------------------------------------------------------------------------
*/

/* Timeline */

.timeline-block {
	border-left: 1px solid #bbb;
	margin-left: 5px;
	padding-bottom: 40px;
}
.timeline-block h4 {
	padding-left: 30px;
	background: url(img/blue-point.png) left top no-repeat;
	position: relative;
	left: -11px;
}
@media only screen and (min-width: 700px) {
	.timeline-block h4 {
		background-position: left top 3px;
	}
}
.timeline-block ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
.timeline-block ol li {
	padding-left: 30px;
	font-size: 0.9rem;
	background: url(img/grey-point.png) top 5px left no-repeat;
	margin-bottom: 13px;
	line-height: 1.4;
	position: relative;
	left: -9px;
}
.timeline-block ol li:last-child {
	margin: 0;
}

/* Feature */

.feature {
	/* text-align: center; */
}
.feature img {
	width: 145px;
	margin-bottom: 1.5rem;
}
.feature a:link, .feature a:visited {
	color:#447da2;
}
@media only screen and (min-width: 700px) {
	.feature img {
		width: 100px;
	}
}
@media only screen and (min-width: 900px) {
	.feature img {
		width: 62px;
	}
}
.feature h3 {
	text-transform: uppercase;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	color: white;
}
.feature p {
	font-size: 0.9rem;
	line-height: 1.3;
	margin: 0 auto;
	max-width: 400px;
}

@media only screen and (min-width: 700px) {
	.feature--border {
		position: relative;
	}
	.feature--border:after {
		content: '';
		display: block;
		height: 1px;
		width: 30%;
		position: absolute;
		top: 50px;
		right: -25%;
		/* background: #447da2; */
	}
}
@media only screen and (min-width: 900px) {
	.feature--border:after {
		top: 72px;
	}
}

/* Feature on white */

.featureWhite {
	text-align: center;
}
.featureWhite img {
	width: 145px;
	margin-bottom: 1.5rem;
}
.ffeatureWhite a:link, .featureWhite a:visited {
	color:#447da2;
}
@media only screen and (min-width: 700px) {
	.featureWhite img {
		width: 100px;
	}
}
@media only screen and (min-width: 900px) {
	.featureWhite img {
		width: 145px;
	}
}
.featureWhite h3 {
	text-transform: uppercase;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	color: #447da2;
}
.featureWhite p {
	font-size: 0.9rem;
	line-height: 1.3;
	margin: 0 auto;
	max-width: 400px;
}

@media only screen and (min-width: 700px) {
	.featureWhite--border {
		position: relative;
	}
	.featureWhite--border:after {
		content: '';
		display: block;
		height: 1px;
		width: 30%;
		position: absolute;
		top: 50px;
		right: -25%;
		background: #447da2;
	}
}
@media only screen and (min-width: 900px) {
	.featureWhite--border:after {
		top: 72px;
	}
}


/* Image Panel */

.imagePanel {
	position: relative;
	margin: 0 auto;
	max-width: 500px;
}
.imagePanel p {
	margin: 0;
}
.imagePanel h3 {
	color: white;
	padding: 0.8rem 1.6rem;
	border-radius: 999px;
	background: rgba(0, 36, 86, 0.7);
	text-shadow: 0 0 3px rgb(0, 36, 86);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
	font-weight: normal;
}
/*.imagePanel .link a:link, a:visited {
    color: white!important;
    transition: all 0.1s ease-in-out;
    text-decoration: none;
    font-weight: bold;
}

.no-touch .imagePanel .link a:hover {
	color: #25aae1;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}*/
/* Border Text */

.border-text p {
	border: 2px solid #1a4362;
	color: #1a4362;
	line-height: 1.2;
	padding: 1.5rem 1rem;
	font-family: 'Marine', Helvetica, Arial, sans-serif;
	margin: 0 auto;
	text-align: center;
	font-weight: bold;
	max-width: 200px;
}
@media only screen and (min-width: 700px) {
	.border-text p {
		max-width: 125px;
	}
}
@media only screen and (min-width: 1285px) {
	.border-text p {
		max-width: none;
	}
}

/* Case Study Item */

.case-study-item {
	text-align: center;
}
.case-study-item img {
	max-height: 80px;
	margin-bottom: 1rem;
}
.case-study-item h3 {
	text-transform: uppercase;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}
.case-study-item p {
	font-size: 0.9rem;
	line-height: 1.3;
	margin: 0 auto;
	max-width: 400px;
}
.case-study-item .link a:link,
.case-study-item .link a:visited {
	display: inline-block;
	text-transform: uppercase;
	color: white;
	background: #ef9b37;
	padding: 10px 30px;
	border-radius: 999px;
	line-height: 1;
	font-size: 0.8rem;
}
.no-touch .case-study-item .link a:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	transform: scale(1.05);
}

/*
|------------------------------------------------------------------------------
| WIDGETS
|------------------------------------------------------------------------------
*/

/* Boxed Text */

.boxedText {
	padding: 1em;
	background: #f5f5f5;
	margin-bottom: 1.5em;
}
.boxedText p:last-child {
	margin-bottom: 0;
}

/* Sidebar Image Link */

.sideImageLink {
	margin-bottom: 1.5em;
}

/* Sidebar Image Link w/ Title */

.sideImageLinkTitle {
	margin-bottom: 1.5em;
}

/* Login Box */

.login {
	margin-bottom: 1.5em;
}
.login td {
	border: 0;
	padding: 0;
}
.login input[type='text'],
.login input[type='password'] {
	padding: 2%;
	width: 96%;
	border: 1px solid #ccc;
	font-size: 1em;
	margin-bottom: 1em;
	height: 0px;
	width: 30%;
}
@media only screen and (max-width: 500px) {
	.login input[type='text'],
	.login input[type='password'] {
		padding: 3%;
		width: 94%;
	}
}
.login input[type='checkbox'] {
	margin: 0 0.5em 1.5em 0;
}
.login .remember label {
	display: inline-block;
	font-size: 0.9em;
}

/* News List */

.newsList {
	margin-bottom: 1.5em;
}
.newsList .item {
	margin: 0 0 1em;
}
.newsList .img {
	display: block;
	margin: 0 auto 1em;
}

/* News Box */

.newsBox {
	border-top: 1px solid #b43127;
	padding-top: 1.5em;
}
.newsBox h4 {
	font-size: 1.2em;
}

/* Poll */

.poll,
.result {
	margin-bottom: 1.5em;
}
.poll td {
	border: 0;
}
.poll input[type='radio'] {
	margin-right: 1em;
}
.poll label {
	display: inline;
}

/* Enhance News List */

.enhancedNewsList {
	margin-bottom: 1.5em;
}
.enhanced_news {
	margin-bottom: 1em;
}
.enhanced_news_image {
	float: left;
	width: 30%;
	margin-right: 5%;
}
.enhanced_news_date {
	font-size: 1em;
}
.enhanced_news_title {
	font-size: 1.2em;
}

/* Random Image */

.randomImage {
	margin-bottom: 1.5em;
}

/* Raw Markup */

.rawMarkup {
	margin-bottom: 1em;
}

/* Recommend Widget */

.recommend {
	margin-bottom: 1.5em;
}
#ctl00_PageWrapper_ContentAndSidebar_PostContent_ctl09_lblText {
	display: block;
}
.recommend input[type='text'] {
	padding: 2%;
	width: 96%;
	border: 1px solid #ccc;
	font-size: 1em;
	margin-bottom: 1em;
}
@media only screen and (max-width: 500px) {
	.recommend input[type='text'],
	.recommend input[type='password'] {
		padding: 3%;
		width: 94%;
	}
}

/* Marquee */

.marquee {
	margin-bottom: 1.5em;
}
/* Quick way to override width setting: */
/*.marquee marquee {
		width: 100%;
	}*/

/* Register */

.register {
	margin-bottom: 1.5em;
	display: none;
}
.register td {
	padding: 0;
	border: 0;
}
.register label {
	margin-right: 1em;
}
.ff.remember {
    display: none;
}

/* RSS List */

.rssAggregator {
	margin-bottom: 1.5em;
}

/* Search Box */

.searchBox {
	margin-bottom: 1.5em;
}

/* Social Links */

@media only screen and (min-width: 900px) {
	.social-links {
		margin-top: 2rem;
	}
}
.social-links ul {
	margin: 0;
}
.social-links li {
	padding: 0;
	background: none;
	float: right;
	margin-right: 1rem;
}
.social-links img {
	transition: all 0.2s ease-in-out;
}
.no-touchevents .social-links a:hover img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/* Social Bookmarks */

.socialBookmarks {
	margin-bottom: 1.5em;
}
.socialBookmarks a {
	margin-right: 0.5em;
}

/* Social Networks */

.socialNetworks {
	margin-bottom: 1.5em;
}
.socialNetworks .twitter,
.socialNetworks .facebook,
.socialNetworks .linkedin,
.socialNetworks .googleplus {
	width: 100px;
	margin: 0 1em 1em 0 !important;
}

/* System Login */

.systemLogin {
	margin-bottom: 1.5em;
}
.systemLogin td {
	border: 0;
	padding: 0;
}
.systemLogin input[type='text'],
.systemLogin input[type='password'] {
	padding: 2%;
	width: 96%;
	border: 1px solid #ccc;
	font-size: 1em;
	margin-bottom: 1em;
}
@media only screen and (max-width: 500px) {
	.systemLogin input[type='text'],
	.systemLogin input[type='password'] {
		padding: 3%;
		width: 94%;
	}
}
.systemLogin input[type='checkbox'] {
	margin: 0 0.5em 1.5em 0;
}
.systemLogin .remember label {
	font-size: 0.9em;
	display: inline-block;
}

/* Tabs */

#tabs {
	margin-bottom: 1.5em;
}
#tabs .tabPanel {
    padding: 0 0.5em;
}
.tabs {
	margin: 0 0 1em;
}
.tabs li {
	float: left;
	margin: 0 0.1em 0 0;
	background-color: #19AFCC;
	padding: 0.7em 0;
	width: 33%;
	text-align: center;
}
@media (min-width: 320px) and (max-width: 746px) {
    .tabs li {
        width: 100%;
        margin-bottom:0.2em;
    }
}
.tabs li.selected {
    background: #0D6A76;
}
.tabs li a {
	color: #ffffff;
}
.tabs li a:hover{
	color:#0D6A76;
}
.tabs li.selected a {
	color: #ffffff;
}
.tabs li.selected a:hover {
	color: #19AFCC;
}
.tabContentHidden {
	display: none;
}
#tabs .feature-step {
    display:inline-block;
    width: 60px;
    height: 60px;
    margin-bottom:1em;
    border-radius: 50%;
    background: #19AFCC;
    transition-delay: 0s;
    transition: .5s ease-in-out;
    padding: 0.5em;
}
#tabs .feature-step img {
    position: relative;
    left: 5px;
    top: 6px;
}
#tabs .feature-step p {
	color:white;
	font-size:1.5em;
	line-height:2.1em;
	text-align:center;
}
p.tabColTitle {
    color: #0D6A76;
    font-weight: bold;
    margin-bottom: 1.2em;
    /* text-align: center; */
}

.tabColTxt {
    font-size: 0.9em;
    margin-top: 0;
}

/* FEATURE STEP STYLES WITHOUT TABS */

.feature-intros h2 {
    color: white;
    background: #19AFCC;
    padding: 0.2em 0.5em;
    font-weight: bold;
    font-size: 1.2rem;
}
.feature-step {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-bottom: 1em;
    border-radius: 50%;
    background: #19AFCC;
    transition-delay: 0s;
    transition: .5s ease-in-out;
    padding: 0.5em;
}
.feature-step img {
    position: relative;
    left: 5px;
    top: 6px;
}
.feature-step p {
    color: white;
    font-size: 1.5em;
    line-height: 2.1em;
    text-align: center;
}

@media only screen and (min-width: 700px) {
		.page-attendees .fourColumns {
			margin-bottom: 0rem;
		}
	}

/* Ticker */

.ticker {
	margin-bottom: 1.5em;
}
.ticker ul {
	margin: 0;
	list-style: none;
}


/* Calendar List */

.calendarList {
	margin-bottom: 1.5em;
}
.calendarList .sidelist {
	margin-bottom: 1em;
}
.calendarList .item {
	margin-bottom: 1em;
}
.calendarList .calendar_title {
	display: block;
}
.calendarList p {
	margin: 0;
}

/* Calendar Teaser */

.calendarTeaser {
	margin-bottom: 1.5em;
}
.calendarTeaser table {
	margin: 0;
}
.calendarTeaser td {
	padding: 0;
}
.calendarTeaser td.dxMonthGrid {
	padding: 0;
}

/* Form Widget */

.form {
	margin-bottom: 1.5em;
}

/* Jump Calendar List */

.jumpCalendarList {
	margin-bottom: 1.5em;
}
.jumpCalendarList .item {
	margin: 0 0 1em;
}
.jumpCalendarList .jumpcalendar_title {
	display: block;
}
.jumpCalendarList p {
	margin: 0;
}

/* Visitor Form Widget */

.visitorForm {
	margin-bottom: 2em;
}
.visitorForm h3 {
	font-size:1.2rem;
	line-height: 3em;
	border-top: 1px dotted #ccc;
}

/* Nomination Divider */

.visitorForm .nom-form-divide h4 {
    padding-top: 1em;
    border-top: 5px double #19AFCC;
    width: 19%;
}

/* Subscribe */

.subscribe {
	margin-bottom: 1.5em;
}

/* Teaser */

.teaser {
	margin-bottom: 1.5em;
}

/*
|------------------------------------------------------------------------------
| FORM ELEMENTS
|------------------------------------------------------------------------------
*/

/* iOS Overrides */

input[type='text'],
input[type='email'],
input[type='password'],
textarea,
input[type='submit'] {
	-webkit-appearance: none;
	border-radius: 0;
}

/* Generic Styles */

label {
	display: block;
}
.requiredLabel {
	color: firebrick;
}
input[type='text'],
input[type='email'],
input[type='password'],
textarea {
	font-size: 1em;
	padding: 0.45em;
	margin: 0 0 1em;
	border: 1px solid #bbb;
	color: #555;
	font-family: 'freight-sans-pro', Arial, sans-serif;
}
textarea {
	min-width: 300px;
	max-width: 98%;
}
select {
	font-size: 0.8em;
	margin: 0 0 1em;
}
input[type='submit'] {
	padding: 10px 30px;
	text-decoration: none;
	line-height: 1;
	background: #059aad;
	border-radius: 4px;
	font-weight: bold;
	color: white;
	font-size: 0.9rem;
	/* text-transform: uppercase; */
	letter-spacing: 1px;
	font-family: 'freight-sans-pro', Arial, sans-serif;
	border: 0;
	transition: all 0.2s ease-in-out;
	BOX-SHADOW: 6px 7px 0px -3px rgba(153,151,153,0.42);
}
.no-touch input[type='submit']:hover {
	cursor: pointer;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
input[type='checkbox'],
input[type='radio'] {
	margin: 0 1em 0.5em 0;
}
.alternatives td {
	border: 0;
	padding: 0;
}
.alternatives label {
	display: inline-block;
	font-weight: normal;
}

/* Contact Page Form */

.visitorForm .inputForm {
	margin: 0 0 1.5em;
}
.visitorForm label {
	font-size: 0.85em;
	color: #333;
	/* font-weight: bold; */
}
.visitorForm .alternatives label {
	font-size: 0.85em;
	font-weight: normal;
	color: #333;
}
.visitorForm input[type='text'] {
	box-sizing: border-box;
	padding: 10px;
	width: 100%;
	max-width: 350px;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #ccc;
	margin-top: 10px;
	margin-bottom: 30px;
	transition: all 0.1s ease-in-out;
}
.visitorForm input[type='text']:focus {
	border-bottom: 3px solid #0D6A76;
	outline: none;
	padding-bottom: 8px;
}

.form-footnote {
    font-size: 0.8em;
    margin-top: 2em;
}

.visitorForm input#ctl00_PageWrapper_ContentAndSidebar_PostContent_ctl00_q14373 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 4em;
    width: 29%;
}

.visitorForm .g-recaptcha {
    margin-bottom: 2em;
}
/* Visitor Reg Form */
.page-registration .inputForm {
	margin: 0 0 1.5em;
}
.page-registration .inputForm label {
	font-size: 0.85em;
	color: #333;
	font-weight: bold;
}
.page-registration .inputForm .alternatives label {
	font-size: 0.85em;
	font-weight: normal;
	color: #333;
}
.page-registration .inputForm input[type='text'] {
	box-sizing: border-box;
	padding: 10px;
	width: 100%;
	max-width: 350px;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #ccc;
	margin-bottom: 30px;
	transition: all 0.1s ease-in-out;
}
.page-registration .inputForm input[type='text']:focus {
	border-bottom: 3px solid #0D6A76;
	outline: none;
	padding-bottom: 8px;
}

.form-footnote {
    font-size: 0.8em;
    margin-top: 2em;
}

.page-registration .inputForm input#ctl00_PageWrapper_ContentAndSidebar_PostContent_ctl00_q14373 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 4em;
    width: 29%;
}

.page-registration .inputForm .g-recaptcha {
    margin-bottom: 2em;
}

.page-profilemanagement #categories table, div#ctl00_PageWrapper_ContentAndSidebar_PostContent_trvCategories table {
	margin: 0;
}
.page-profilemanagement #categories td, div#ctl00_PageWrapper_ContentAndSidebar_PostContent_trvCategories td {
	border: 0;
	padding: 0;
	width: 30px;
	vertical-align: middle;
}
.page-profilemanagement #categories td:last-child, div#ctl00_PageWrapper_ContentAndSidebar_PostContent_trvCategories td:last-child {
	width: auto;
}
	.page-profilemanagement #categories input[type=checkbox], div#ctl00_PageWrapper_ContentAndSidebar_PostContent_trvCategories, input[type=checkbox] {
		margin: 0 0.5em 0 0;
	}
/*
|------------------------------------------------------------------------------
| TABLES
|------------------------------------------------------------------------------
*/

table {
	width: 100%;
	margin-bottom: 1.5em;
}
td {
	padding: 0.5em;
	border: 1px solid #ccc;
}
table.Opsmanual {
	border-width: 1px 1px 1px 1px;
	border-spacing: 2px;
	border-style: solid solid solid solid;
	border-color: gray;
	border-collapse: collapse;
	background-color: white;
}
table.Opsmanual  th {
	border-width: 1px 1px 1px 1px;
	padding: 5px 5px 5px 5px;
	border-style: dotted dotted dotted dotted;
	border-color: gray gray gray gray;
	background-color: white;
	-moz-border-radius: 0px 0px 0px 0px;
}
table.Opsmanual  td {
	border-width: 1px 1px 1px 1px;
	padding: 5px 5px 5px 5px;
	border-style: dotted dotted dotted dotted;
	border-color: gray gray gray gray;
	background-color: white;
	-moz-border-radius: 0px 0px 0px 0px;
}
table.Opsmanual h2 {
    font-size:1em;
}

/*
|------------------------------------------------------------------------------
| BX SLIDER
|------------------------------------------------------------------------------
*/

.bx-wrapper {
	border: 0;
	background: none;
	box-shadow: none;
}

.bx-text {
	background: #1882af;
	padding: 1.5rem 1rem;
}
@media only screen and (min-width: 900px) {
	.bx-text {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		max-width: 45%;
		z-index: 2;
		padding: 1.5rem 2.5rem 1.5rem 1.5rem;
	}
	.bx-text:after {
		display: block;
		position: absolute;
		content: '';
		background: #1882af;
		right: -30px;
		top: 0;
		bottom: 0;
		width: 60px;
		height: 100%;
		transform: skewX(-8deg);
		z-index: 1;
	}
}
@media only screen and (min-width: 1024px) {
	.bx-text {
		max-width: 35%;
	}
}
@media only screen and (min-width: 1100px) {
	.bx-text {
		max-width: 25%;
	}
	.bx-text:after {
		width: 80px;
		right: -40px;
	}
}
@media only screen and (min-width: 1150px) {
	.bx-text {
		padding: 2rem;
	}
}

.bx-text h3,
.bx-text h4 {
	color: white;
	position: relative;
	line-height: 1.1;
	margin-bottom: 2rem;
	text-transform: uppercase;
}
.bx-text h3:after,
.bx-text h4:after {
	position: absolute;
	display: block;
	content: '';
	height: 1px;
	width: 50px;
	left: 0;
	bottom: -1rem;
	background: #60c4ef;
}
@media only screen and (min-width: 1220px) {
	.bx-text h3 {
		font-size: 1.3rem;
	}
}
.bx-text h4 {
	font-size: 0.9rem;
}
.bx-text p {
	color: white;
	line-height: 1.2;
	font-size: 0.8rem;
}
.bx-text a:link,
.bx-text a:visited {
	display: inline-block;
	padding: 10px 30px;
	text-decoration: none;
	line-height: 1;
	background: #ef9b37;
	border-radius: 999px;
	font-weight: bold;
	color: white;
	font-size: 0.8rem;
	text-transform: uppercase;
}
.no-touch .bx-text a:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

@media only screen and (min-width: 900px) {
	.bx-wrapper .bx-pager {
		position: absolute;
		left: -43px;
		top: 50%;
		padding: 0;
		margin-top: -45px;
		height: 90px;
	}
	.bx-wrapper .bx-pager-item {
		display: block;
		width: 10px;
		height: 10px;
		padding: 10px;
	}
}
@media only screen and (min-width: 1200px) {
	.bx-wrapper .bx-pager {
		left: -54px;
	}
}

/*
|------------------------------------------------------------------------------
| HELPER STYLES
|------------------------------------------------------------------------------
*/

/* Clearfix */

.cf:before,
.cf:after,
#content:before,
#content:after,
#mainMenu:before,
#mainMenu:after,
.path:before,
.path:after,
.letterBox:before,
.letterBox:after,
.socialNetworks:before,
.socialNetworks:after,
.tabs:before,
.tabs:after,
.page-visitorzone .fav_exhibitor:before,
.page-visitorzone .fav_exhibitor:after,
.page-visitorzone .fav_product:before,
.page-visitorzone .fav_product:after {
	content: ' '; /* 1 */
	display: table; /* 2 */
}
.cf:after,
#content:after,
#mainMenu:after,
.path:after,
.letterBox:after,
.socialNetworks:after,
.tabs:after,
.page-visitorzone .fav_exhibitor:after,
.page-visitorzone .fav_product:after {
	clear: both;
}
.cf,
#content,
#mainMenu,
.path,
.letterBox,
.socialNetworks,
.tabs,
.page-visitorzone .fav_exhibitor,
.page-visitorzone .fav_product {
	*zoom: 1;
}

/* Floats */

.fl {
	float: left;
}
.fr {
	float: right;
}

/* Hidden Elements */

.languageMenu,
.sidr-class-languageMenu {
	display: none;
}

/* Foot NOTE TEXT BLOCKS*/

.foot-note h4 {
    font-weight: bold;
}

.foot-note p {
    font-size: 0.9em;
    line-height: 1.4em;
    margin-bottom: 1.2em;
}

/* Pagination */

.dxpSummary {
	font-family: 'helvetica neue', Helvetica, Arial, sans-serif;
	color: #666;
}

/* NEW HOME 3 COL CTA */
.HomeSignpost {
	margin-bottom:1.2em;
	box-shadow: 9px 10px 0px -4px rgba(153,151,153,0.42);
	font-family: 'Libre Franklin', Arial, sans-serif;
	font-size: 0.8em;
	position: relative;
}
.HomeSignpost h4 {
    display:none;
}
	.HomeSignpost p {
		margin: 0;
	}
	.HomeSignpost .link {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
	}
		.HomeSignpost .link a:link,
		.HomeSignpost .link a:visited {
			display: block;
			color: white;
			letter-spacing: 1px;
			font-size: 1em;
			text-transform: uppercase;
			text-decoration: none;
			padding: 10px;
			background: #19AFCC;
			text-align: center;
		}
		.no-touch .HomeSignpost:hover .link a {
			padding: 20px 10px;
		}
		.HomeSignpost .red-link .link a:link,
		.HomeSignpost .red-link .link a:visited {
			background: #e2211b;
			background: rgba(226, 33, 27, 0.75);
		}

@media only screen and (max-width: 950px) {
	.HomeSignpost .link a:link,
	.HomeSignpost .link a:visited {
		font-size: 1em;
	}
}
@media only screen and (max-width: 700px) {
	.HomeSignpost {
		width: 100%;
	}
}
@media only screen and (max-width: 400px) {
	.HomeSignpost {
		width: 100%;
	}
}
/* Home page 3 col cta */
.home-col-cta img {
	width:100%;
}
.home-col-cta a {
    color: white;
}

.home-col-cta .link {
    background: #0D6A76;
    padding: 1em;
    position: relative;
    top: -78px;
    width: 89.1%;
    opacity: 1;
    text-align: center;
}
@media (min-width: 320px) and (max-width: 375px) {
	.home-col-cta .link {
	width: 89.2%;
	}
}
@media (min-width: 376px) and (max-width: 414px) {
	.home-col-cta .link {
	width: 90.2%;
	}
}
@media (min-width: 415px) and (max-width: 480px) {
	.home-col-cta .link {
	width: 90.2%;
	}
}
@media (min-width: 481px) and (max-width: 667px) {
	.home-col-cta .link {
	width: 92%;
	}
}
@media (min-width: 668px) and (max-width: 736px) {
	.home-col-cta .link {
	width: 80%;
	}
}
@media (min-width: 737px) and (max-width: 768px) {
	.home-col-cta .link {
	width: 92%;
	}
}
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
	.home-col-cta .link {
	width: 86%;
	}
}
@media (min-width: 769px) and (max-width: 1024px) {
	.home-col-cta .link {
	width: 86%;
	}
}
@media (min-width: 1025px) and (max-width: 1280px) {
	.home-col-cta .link {
	width: 87.6%;
	}
}
@media (min-width: 1281px) {
	.home-col-cta .link {
		width: 89.1%;
	}
}
/* Contact page */

.team-member p {
    font-size: 0.8em;
    line-height: 1.3em;
}

/* Portfolio item */
.portfolio p {
    font-size: 0.8em;
    margin-bottom: 0.8em;
}
}

/* Getting there Map */
    .google-maps {
        position: relative;
        padding-bottom: 75%; // This is the aspect ratio
        height: 0;
        overflow: hidden;
    }
    .google-maps iframe {
        top: 0;
        left: 0;
        width: 100% !important;
        box-shadow: 9px 10px 0px -4px rgba(153,151,153,0.42);
}

/*  FAQs  */
.uc.faq .a1 {
    padding:1em;
    border-left: 4px solid #19AFCC;
   background-color: #f8f8f8;
    margin-bottom:2em;
} 
.uc.faq h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom:0.5em;
}
.uc.faq p {
   font-size: 0.9em;
   margin-bottom:0.6em 
}

.uc.faq ul.faqBullet {
    font-size: 0.9rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.uc.faq .faqBullet li {
    font-size: 0.9em;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    padding: 0.5rem 0.5em 0.5rem 0.6rem;
    background: #fff;
    font-weight: bold;
    border-left: 5px solid #19AFCC;
    border-bottom: 1px dotted #19AFCC;
    border-top: 1px dotted #19AFCC;
    border-right: 1px dotted #19AFCC;
}

.venueImg {
    box-shadow: 9px 10px 0px -4px rgba(153,151,153,0.42);
    position: relative;
}
@media only screen and (max-width: 700px) {
	.venueImg {
		width: 100%;
	}
}
@media only screen and (max-width: 400px) {
	.venueImg {
		width: 100%;
	}
}

/*
|------------------------------------------------------------------------------
| SPEAKER ZONE
|------------------------------------------------------------------------------
*/

/* Header Section */

	.page-speakeraccountarea #welcome {
		margin-bottom: 2em;
	}
		.page-speakeraccountarea #welcome h1 {
			font-size: 1.6em;
			text-transform: none;
		}
		.page-speakeraccountarea #welcome .links {
			display: inline-block;
			text-decoration: none;
			float: right;
			margin: 0 0 0 1em;
			color: #0D6A76;
			font-size: 0.5em;
			line-height: 1;
			background: #fff;
			border: 2px solid #19AFCC;
			border-radius: 5px;
			padding: 10px 20px;
			text-decoration: none;
			text-transform: uppercase;
			text-align: center;
		}
			.no-touchevents .page-speakeraccountarea #welcome .links:hover {
				cursor: pointer;
				background: #19AFCC;
				color:#fff; 
			}

/* FORM FIELDS */

.page-speakeraccountarea input[type='text'],
.page-speakeraccountarea input[type='email'],
.page-speakeraccountarea input[type='password'],
.page-speakeraccountarea textarea {
	font-size: 1em;
	padding: 0.45em;
	margin: 0 0 1em;
	border: 1px solid #bbb;
	color: #555;
	font-family: 'freight-sans-pro', Arial, sans-serif;
	WIDTH:60%
}
	/* tabs */

.page-speakeraccountarea .tabs {
	float: left;
	width: 25.555555556%;
	margin-right: 4.166666667%;
}
	.page-speakeraccountarea .tabs li {
		float: none;
		display: block;
		margin: 0;
		background-color: #fff;
		padding: 0;
		width: 100%;
	}
		.page-speakeraccountarea .tabs a:link,
		.page-speakeraccountarea .tabs a:visited {
			display: block;
			text-decoration: none;
			background: #eee;
			color: #0D6A76;
			line-height: 1;
			padding: 0.7em;
			border-bottom: 1px solid #ccc;
		}
		.page-speakeraccountarea .tabs li:first-child a {
			border-top: 1px solid #ccc;
		}
		.page-speakeraccountarea .tabs .selected a,
		.page-speakeraccountarea .tabs a:hover {
			background: white;
		}
		.page-speakeraccountarea .tabs .selected a {
			font-weight: bold;
			color: #0D6A76;
		}
.page-speakeraccountarea .tabPanel {
	float: left;
	width: 70.277777778%;
}
/* .page-speakeraccountarea .tabs li:nth-child(1), .page-speakeraccountarea .tabs li:nth-child(6) {
	display: none;
} */


/* Summary Tab */

.page-speakeraccountarea #summary .progressbar {
	border-color: #1a2b4c;
	border-radius: 6px;
	padding: 2px;
}
	.page-speakeraccountarea #summary .bar {
		line-height: 1.5;
		border-radius: 4px;
		background-color: #19AFCC;
	}
	#ctl00_PageWrapper_ContentAndSidebar_PostContent_lblSummaryAnalyticsLabel,
	#ctl00_PageWrapper_ContentAndSidebar_PostContent_lblSummaryAnalytics,
	body.exhibitorZone #summary p:last-child  {
		/* display: none; */
	}

/* Profile Tab */

.page-speakeraccountarea #profile label {
	/* display: INHERIT; */
	margin: 0 0.5em 0 0;
}
.page-speakeraccountarea #profile img {
	margin: 1em 0;
}
.page-speakeraccountarea #profile #ctl00_PageWrapper_ContentAndSidebar_PostContent_rptProfile_ctl00_lblProfile {
	display: block;
}
.page-speakeraccountarea #profile textarea {
	height: 150px;
}
.page-speakeraccountarea #profile .limit,
.page-speakeraccountarea #profile .primarynote {
	font-size: 0.8em;
}

.page-speakeraccountarea #profile #ctl00_PageWrapper_ContentAndSidebar_PostContent_rptProfile_ctl00_lblProfile,
.page-speakeraccountarea #profile #ctl00_PageWrapper_ContentAndSidebar_PostContent_rptProfile_ctl00_txtProfile,
.page-speakeraccountarea #profile #ctl00_PageWrapper_ContentAndSidebar_PostContent_rptProfile_ctl00_lblProfileLimit,
.page-speakeraccountarea #profile #ctl00_PageWrapper_ContentAndSidebar_PostContent_rptProfile_ctl00_lblPrimaryProfile,
.page-speakeraccountarea #profile #ctl00_PageWrapper_ContentAndSidebar_PostContent_btnSaveProfile {
	position: relative;
	top: 25px;
}

/* Logo Tab */

.page-speakeraccountarea #logo img {
	display: block;
	margin: 0 0 1em;
	padding: 1em;
	border: 1px dashed #ccc !important;
}

/* Image Tab */

.page-speakeraccountarea #image img {
	display: block;
	margin: 0 0 1em;
	padding: 1em;
	border: 1px dashed #ccc !important;
}

/* Social Links Tab */

.page-speakeraccountarea #social label {
	display: inline;
}
.page-speakeraccountarea #social input[type=text] {
	width: 200px;
}

/* Categories Tab */

.page-speakeraccountarea #categories table {
	margin: 0;
}
.page-speakeraccountarea #categories td {
	border: 0;
	padding: 0;
	width: 30px;
	vertical-align: middle;
}
.page-speakeraccountarea #categories td:last-child {
	width: auto;
}
	.page-speakeraccountarea #categories input[type=checkbox] {
		margin: 0 0.5em 0 0;
	}
.exhibitorZone #categories .limit {
	font-size: 0.8em;
	margin: 1em 0;
}

/* Products Tab */

.page-speakeraccountarea #products table {
	margin: 0;
}
	.page-speakeraccountarea #products td {
		border: 0;
		padding: 0;
		width: 30px;
		vertical-align: middle;
	}
	.page-speakeraccountarea #products td:last-child {
		width: auto;
	}
.page-speakeraccountarea #currentproducts {
	margin-bottom: 1.5em;
}
.page-speakeraccountarea #products label[for=ctl00_PageWrapper_ContentAndSidebar_PostContent_chkProductNew] {
	display: inline;
}
.page-speakeraccountarea #products input[type=checkbox] {
	margin: 0 0.5em 0 0;
}
.page-speakeraccountarea #products .preview {
	padding: 0.5em 0;
	border-bottom: 1px solid #ccc;
}
.page-speakeraccountarea #products .preview:last-child {
	border: 0;
}

/* Downloads Tab */

.page-speakeraccountarea #currentdownloads {
	margin-bottom: 1.5em;
}
.page-speakeraccountarea #downloads input[type=file] {
	margin-bottom: 1em;
}
.page-speakeraccountarea #downloads .preview {
	padding: 0.5em 0;
	border-bottom: 1px solid #ccc;
}
.page-speakeraccountarea #downloads .preview:last-child {
	border: 0;
}

.page-speakeraccountarea #ctl00_PageWrapper_ContentAndSidebar_PostContent_lblSummaryAnalyticsLabel, #ctl00_PageWrapper_ContentAndSidebar_PostContent_lblSummaryAnalytics, body.exhibitorZone #summary p:last-child {
    /* display: none; */
}

/*
|------------------------------------------------------------------------------
| SPEAKER LIST
|------------------------------------------------------------------------------
*/

/* Dev Express Styles */

.divSpeakers td {
	border: 0;
	padding: 0;
}
.divSpeakers td.dxdvCtrl {
	padding: 0;
}
.divSpeakers .dxpControl {
	width: 300px;
}
.divSpeakers .dxdvFlowItemsContainer {
	margin: 0 !important;
}
.divSpeakers .dxdvFlowItem {
	margin: 0 4% 4% 0 !important;
	background: none;
	border: 0;
	width: 22% !important;
	position: relative;
	overflow: visible;
	font-family: 'proxima-nova', Arial, sans-serif;
	height: 350px;
	padding: 0;
}

.divSpeakers .dxdvFlowItem:nth-child(4n) {
	margin-right: 0 !important;
}

/* Speaker Styles */

.speaker {
	float: left;
	width:100%;
	margin-right: 4.166666667%;
	text-align: center;
}

.divSpeakers .speaker {
	float: none;
	width: 100%;
}

	.speaker a {
		text-decoration: none;
		color: #333;
	}
	.no-touch .speaker a:hover {
		color: #0D6A76; 
	}
	.speaker p {
		margin: 0;
	}
	.speaker__image {
		border-radius: 1000px;
		margin-bottom: 15px;
		width: 200px;
		height: 200px;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		margin-left: auto;
		margin-right: auto;
	}
	.session .speaker .speaker__image {
		width: 100%;
		height: 0;
		padding-bottom: 100%;
	}
	.speaker__name {
		margin-bottom: 10px;
		font-size: 20px;
	}
	.speaker__title,
	.speaker__company {
		font-size: 16px;
		font-weight: normal;
	}
	.speaker__company {
		font-style: italic;
	}

@media only screen and (max-width: 900px) {
	.speaker {
		width: 30.555555556%;
	}
	.speaker:nth-child(4n) {
		margin-right: 4.166666667%;
	}

	.divSpeakers .dxdvFlowItem {
		width: 29% !important;
	}
	.divSpeakers .dxdvFlowItem:nth-child(4n) {
		margin-right: 4% !important;
	}
	.divSpeakers .dxdvFlowItem:nth-child(3n) {
		margin-right: 0 !important;
	}
}
@media only screen and (max-width: 730px) {
	.speaker {
		width: 40.916666667%;
	}

	.divSpeakers .dxdvFlowItem {
		width: 48% !important;
	}
	.divSpeakers .dxdvFlowItem:nth-child(3n) {
		margin-right: 4% !important;
	}
	.divSpeakers .dxdvFlowItem:nth-child(2n) {
		margin-right: 0 !important;
	}
}
@media only screen and (max-width: 560px) {
	.speaker {
		clear: right;
	}
}
@media only screen and (min-width: 900px) {
	.speaker:nth-of-type(4n) {
		clear: left;
	}
}
@media only screen and (min-width: 511px) and (max-width: 900px) {
	.speaker:nth-of-type(3n),
	.speaker:nth-of-type(5n) {
		clear: left;
	}
	.speaker:nth-of-type(6n) {
		clear: none;
	}
}
@media only screen and (max-width: 510px) {
	.speaker {
		width: 100%;
		margin-right: 0;
	}
	.session .speaker .speaker__image {
		width: 100px;
		height: 100px;
		padding-bottom: 0;
	}
	.speaker:nth-child(3n) {
		margin-right: 0
	}

	.divSpeakers .dxdvFlowItem {
		width: 100% !important;
		margin-right: 0 !important;
	}
	.divSpeakers .dxdvFlowItem:nth-child(3n) {
		margin-right: 0 !important;
	}
}

/*
|------------------------------------------------------------------------------
| SPEAKER PROFILE
|------------------------------------------------------------------------------
*/

.speaker-profile-image {
	float: left;
	margin-right: 40px;
	border-radius: 1000px;
}
.speaker-profile {
	overflow: hidden;
}
	.speaker-profile__subtitle {
		font-size: 18px;
		text-transform: uppercase;
	}
	.speaker-links {}
		.speaker-links p {
			margin-bottom: 10px;
		}
		.speaker-links__label {
			font-size: 14px;
			color: #666;
			text-transform: uppercase;
			font-weight: bold;
		}
		.speaker-links a {
			text-decoration: none;
		}
		.speaker-sessions {
    margin-top: 130px;
}

	.speaker-sessions__subtitle {
		font-size: 19px;
		text-transform: uppercase;
	}
	.speaker-sessions__list {
		margin: 0;
		list-style: none;
	}
		.speaker-session {
			margin-bottom: 20px;
		}
			.speaker-session__track {
				margin: 0;
				border-radius: 1000px;
				border: 1px solid #1599d9;
				text-align: center;
				font-size: 14px;
				color: #1599d9;
				padding-top: 11px;
				height: 29px;
				width: 40px;
				float: left;
				margin-right: 20px;
				DISPLAY: NONE;
			}
			.speaker-session__details {
				overflow: hidden;
				font-size: 15px;
			}
				.speaker-session__title {
					line-height: 1.2;
					font-weight: normal;
					font-size: 16px;
					margin-bottom: 5px;
				}
					.speaker-session__title a:link,
					.speaker-session__title a:visited {
						text-decoration: none;
						color: #333;
					}
					.no-touch .speaker-session__title a:hover {
						color: #333;
						text-decoration: underline;
					}
				.speaker-session__time {
					font-style: italic;
					margin-bottom: 15px;
				}
.speaker-session__level {
    display: none;
}

@media only screen and (max-width: 1000px) {
	.speaker-profile-image {
		float: none;
		display: block;
		margin: 0 auto 20px;
	}
}

.page-speakerprofile .main-content {
	float: left;
	width: 65.2777777778%;
}
.page-speakerprofile .sidebar-content {
	float: right;
	width: 30.5555555556%;
}

@media only screen and (max-width: 800px) {
	.page-speakerprofile .main-content,
	.page-speakerprofile .sidebar-content {
		float: none;
		width: 100%;
		margin-bottom: 30px;
	}
}



/* ITINERARY TABS */

.tabPanel .uc.twoColumns.cf {
    width: 100%;
    margin: 0;
}

.tabPanel .uc.twoColumns.cf .left {
    float:left;
    width: 26%;
}
.tabPanel .uc.twoColumns.cf .right {
    float:right;
    width: 74%;
}
.tabPanel .uc.twoColumns.cf .leftDark {
    text-align:left;
    color:white;
    background-color:#0D6A76;
    padding:10px;
    margin:0;
}
.tabPanel .uc.twoColumns.cf .rightDark {
    text-align:left;
    color:white;
    background-color:#0D6A76;
    padding:10px;
    margin:0;
}
.tabPanel .uc.twoColumns.cf .leftLight {
    text-align:left;
    color:white;
    background-color:#19AFCC;
    padding:10px;
    margin:0;
}

.tabPanel .uc.twoColumns.cf .rightLight {
    text-align:left;
    color:white;
    background-color:#19AFCC;
    padding:10px;
    margin:0;
}
.tabPanel .uc.twoColumns.cf .leftWhite {
    text-align:left;
    color:#0D6A76;
    background-color:#fff;
    border-top:1px dotted #19afcc;
    padding:10px;
    margin:0;
}

.tabPanel .uc.twoColumns.cf .rightWhite {
    text-align:left;
    color:#0D6A76;
    background-color:#fff;
    border-top:1px dotted #19afcc;
    padding:10px;
    margin:0;
}

.itinerary-time, .itinerary-title {
    font-size: 1em;
    font-weight: bold;
}

.itinerary-day, .itinerary-summary {
    font-size: 0.8em;
}

.itinerary-type, .itinerary-location {
    font-size: 0.8em;
}

.leftWhite .itinerary-time, .leftWhite .itinerary-title, .rightWhite .itinerary-time, .rightWhite .itinerary-title {
	font-weight:normal;
}

.page-sampleitinerary #tabs .tabPanel {
    padding: 0 8px 0 0;
}

/* speech bubble cta */
.txt-bubble h2 {
	position: relative;
	width: 80%;
	padding:1em;
	margin: .5em auto 2em auto;
	color: #ffffff;
	font-size: 1.4em;
	font-weight:bold;
	text-align:center;
	z-index: 5;
}
	
	.txt-bubble h2:before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		background-color: #19AFCC;
		transform: perspective(.2em) rotateX(-0.2deg);
	}
	
	.txt-bubble h2:after{
		content: '';
		position: absolute;
		bottom: 0;
		left: 100px;
		width: 0;
		height: 0;
		border: 20px solid transparent;
		border-top-color: #19AFCC;
		border-bottom: 0;
		border-left: 0;
		margin-left: -10px;
		margin-bottom: -16px;
	}

/* Content divider */

.light-blue-divider {
    border-top: 1px dashed #19AFCC;
    width: 95%;
    margin: 1em auto;
}		

/* Smaller footnore text */
p.nbFootnore {
    font-size: 0.8em;
    margin-bottom: 1em;
}


.panelLeftTest {
    padding: 10px 20px;
    background: #ffffff;
    margin-right: 34px;
}