@import url('https://fonts.googleapis.com/css?family=Titillium+Web');
@import url('https://fonts.googleapis.com/css?family=PT+Sans');
/* @import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,300i,400,400i,600,600i,700,700i,900'); */

/* Titillium Web: 300 light, 400 regular, 600 semi-bold, 700 bold, 900 black */
/* PT Sans: 400 regular, 700 bold */

/*** RESET ***/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}
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, flegend,
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, input, textarea, span {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  vertical-align: baseline;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* 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;
}
html, body {
  height: 100%;
}
svg {
  overflow: hidden;
}


html {  
  font-size: 16px;
}
img {
  border: 0;
  max-width: 100%;
}
em {
  font-style: italic;
}
strong {
  font-weight: 700;
}
span.description {
  font: 0/0 a;
  color: transparent;
}
h1 p, h2 p, h3 p, h4 p, h5 p, h6 p,
p p, p h1, p h2, p h3, p h4, p h5, p h6,
li li, li p, li td,
td td, td p, th th, th p,
p a, a a, li a, td a, th a {
  font-size: 1em;
}
input {
  border: 0;
  outline: none;
  width: auto;
  line-height: normal;
  overflow: visible;
  -webkit-appearance: none;
  -webkit-border-radius: 0; 
  -moz-border-radius: 0; 
  border-radius: 0;
}
[type="search"] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}
*:focus {
  outline: none;
}
::-webkit-input-placeholder, :-moz-placeholder,
::-moz-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder {
   color: #C9C9C9;
}


/*** CUSTOM ***/

/* GENERAL */

body {
  min-width: 300px;
  color: #4D4D4D;
  background-color: #CEE7FE;
  font-family: 'PT Sans', sans-serif;
  font-style: normal;
  font-weight: 400; /* regular */
  font-size: 62.5%; /* 10px */
  line-height: 1.2;
  overflow: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}
span.small {
	font-size: 0.8em;
}
.main h1 {
	padding: 20px 0;
	margin-bottom: 20px;
	color: #F60;
	font-family: 'Titillium Web', sans-serif;
	font-size: 3.2em;
	text-transform: uppercase;
}
.main h1:before, .main h1:after {
	content: '';
	display: inline-block;
	width: 65px;
	height: 39px;
	background-repeat: no-repeat;
	background-size: 41px 39px;
	vertical-align: middle;
}
.main h1:before {
	background-image: url('../images/site/heading-arrow-left@2x.png');
	background-position: left center;
}
.main h1:after {
	background-image: url('../images/site/heading-arrow-right@2x.png');
	background-position: right center;
}
.main h2 {
	color: #4D4D4D;
	font-family: 'Titillium Web', sans-serif;
	font-size: 2.2em;
	line-height: 1.4;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 40px;
}
.main p {
  margin-bottom: 1em;
  font-size: 1.7em;
  line-height: 1.4;
  text-align: left;
}
.main p:last-child {
  margin-bottom: 0;
}
.content ul {
  list-style: outside disc;
  margin-left: 3em;
  margin-bottom: 40px;
}
.content ol {
  list-style: outside decimal;
  margin-left: 3em;
}
.content li {
  font-size: 1.8em;
  margin-bottom: 1em;
}
.content a {
	color: #2986E2;
	text-decoration: underline;
}

.main table {
	width: 100%;
	margin-bottom: 20px;
}
.main th, .main td {
	border: 1px solid #CCC;
	text-align: left;
}
.main th {
	padding: 15px;
	background-color: #9FD0BE;
	font-size: 1.5em;
	font-weight: 700;
}
.main td {
	padding: 15px;
	background-color: #EFEFEF;
	font-size: 1.6em;
}
.main tr:nth-child(even) td {
	background-color: #FFF;
}
.main hr {
	margin: 30px 0;
	border: 1px solid #CCC;
}
.content li p, .content p li, .content p p,
.content li li, .content th p, .content td p,
.content th li, .content td li {
  font-size: 1em;
}
.content th ul, .content th ol,
.conten td ul, .content td ol {
	margin-left: 1em;
}
.content p a, .content p a:visited, .content p a:hover, .content p a:active,
.content li a, .content li a:visited, .content li a:hover, .content li a:active,
.content th a, .content th a:visited, .content th a:hover, .content th a:active,
.content td a, .content td a:visited, .content td a:hover, .content td a:active {
  text-decoration: underline;
}
.content h3 {
	font-size: 2em;
	line-height: 1.4;
	font-weight: 800;
	margin: 30px 0 5px 0;
	text-transform: uppercase;
}
.content h3:first-child {
	margin-top: 0;
}
.content h4 {
	color: #888;
	font-size: 1.6em;
}
.container {
	width: 90%;
	max-width: 1200px;
	min-width: 300px;
	margin: 0 auto;
	background-color: #FFF;
}
.wrapper {
	width: 100%;
	padding: 30px;
}
.video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
}
.video-container iframe, .video-container object,
.video-container embed {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.lower {
	text-transform: lowercase !important;
}

.hyphen {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.breakwords {
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
}


/* HEADER */

.header {
	width: 100%;
	background: url('../images/site/header-bg@2x.png') no-repeat right top;
	background-size: 1200px auto;
}
.header-wrapper {
	display: inline-block;
	position: relative;
	width: 100%;
	padding-bottom: 20px;
}
.header-logo-desktop {
	display: block;
	float: left;
	width: 567px;
	max-width: 100%;
	margin-bottom: 60px;
}
.header-logo-mobile {
	display: none;
}
.header-right {
	float: right;
	padding: 10px 0;
	text-align: right;
}
.header-search {
	padding: 4px;
	border: 1px solid #FFF;
}
.header-search-desktop {
	display: inline-block;
	width: 100%;
	max-width: 250px;
	margin: 68px 20px 19px 0;
}
.header-search-mobile {
	display: none;
}
input.gsc-input {
	display: block;
	float: left;
	height: 25px;
	padding: 3px 5px;
	color: #FFF !important;
	background: transparent !important;
	font-size: 1.7em !important;
}
input.gsc-input::-webkit-input-placeholder {
	color: #EEE;
	font-size: 0.9em !important;
	font-style: italic;
}
input.gsc-input::-moz-placeholder {
	color: #EEE;
	font-size: 0.9em !important;
	font-style: italic;
}
input.gsc-input:-ms-input-placeholder {
	color: #EEE;
	font-size: 0.9em !important;
	font-style: italic;
}
input.gsc-input:-moz-placeholder {
	color: #EEE;
	font-size: 0.9em !important;
	font-style: italic;
}
input.gsc-search-button, input.gsc-search-button-v2 {
	display: block;
	float: right;
	width: 39px !important;
	min-width: 0 !important;
	height: 25px !important;
	min-height: 0 !important;
	padding: 6px 13px !important;
	border: 0 !important;
	margin: 0 !important;
	background: #79007F !important;
}
.gsc-control-cse {
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	font-family: inherit !important;
	font-size: 1em !important;
}
form.gsc-search-box, table.gsc-search-box {
	margin-bottom: 0 !important;
	font-size: 1em !important;
}
.gsc-search-box-tools .gsc-search-box .gsc-input {
	padding-right: 0 !important;
	background: transparent !important;
}
.gsc-input-box, .gsc-input-box-hover {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}
.gsc-input-box-focus {
	border: 0 !important;
	box-shadow: none !important;
}
.gsib_a {
	height: 26px !important;
	padding: 0 8px !important;
}
.gsst_b {
	font-size: 1em !important;
}
.gsst_a {
	padding-top: 0 !important;
}
.gscb_a {
	padding-top: 3px !important;
	color: #DDD !important;
	font-size: 3em !important;
	line-height: 22px !important;
	font-family: inherit !important;
}
.gsc-control-cse div {
	text-align: left !important;
}
.gsc-table-result, .gsc-thumbnail-inside, .gsc-url-top {
	padding-left: 0 !important;
}
.gs-webResult div.gs-visibleUrl, .gs-imageResult div.gs-visibleUrl,
.gsc-results .gsc-cursor-box .gsc-cursor-page {
	font-size: 1.4em !important;
}
.gsc-results .gsc-cursor-box {
	margin: 10px 0 !important;
}

.facebook-container {
	position: absolute;
	right: 50px;
	top: 46px;
	-webkit-box-shadow: 0 0 10px #FFF;
	-moz-box-shadow: 0 0 10px #FFF;
	box-shadow: 0 0 10px #FFF;
}
.facebook {
	display: block;
	width: 40px;
	height: 40px;
	background: url('../images/site/facebook@2x.png') no-repeat left top;
	background-size: 40px 40px;
}


/* SLIDER */

.banner-slider-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 36%;
	margin-bottom: 30px;
}
.banner-slider-container .bx-wrapper, .banner-slider-container .bx-viewport,
.banner-slider, .banner-slider-container .slide {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.banner-slider {
	visibility: hidden;
}
.banner-slider-container .slide {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	bottom: 10px;
}


/* MENU */

.main-menu {
	clear: both;
	width: 100%;
	font-family: 'Titillium Web', sans-serif;
	letter-spacing: 1px;
}
.main-menu ul {
	width: 100%;
	text-align: center;
}
.main-menu li {
	position: relative;
	display: inline-block;
	width: 17%;
	margin: 0 15px 15px 15px;
	text-align: center;
	cursor: pointer;
}
.main-menu li#about, .main-menu li#about ul {
	background-color: #FFA115;
}
.main-menu li#scope, .main-menu li#scope ul {
	background-color: #79007F;
}
.main-menu li#programme, .main-menu li#programme ul {
	background-color: #00551A;
}
.main-menu li#criteria, .main-menu li#criteria ul {
	background-color: #9F7800;
}
.main-menu li#awards, .main-menu li#awards ul {
	background-color: #004AC9;
}
.main-menu li#supports, .main-menu li#supports ul {
	background-color: #AA3B00;
}
.main-menu li#come-and-stay, .main-menu li#come-and-stay ul {
	background-color: #003D8A;
}
.main-menu li#faq, .main-menu li#faq ul {
	background-color: #A21671;
}
.main-menu li#submission, .main-menu li#submission ul {
	background-color: #009F02;
	
}

.main-menu li#emedisummit, .main-menu li#emedisummit ul {
	background-color: #FF6115;
}

.main-menu li a {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 8px;
	color: #FFF;
	font-size: 2em;
	text-transform: uppercase;
	text-decoration: none;
}
.main-menu li a:hover:before {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: 1;
}
.main-menu li li a:hover:before {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: -1;
}
.main-menu li a span {
	position: relative;
	color: #FFF;
	z-index: 2;
}

.main-menu ul ul {
	display: none;
	position: absolute;
	left: 0;
	z-index: 10;
}
.main-menu ul ul li {
	display: block;
	width: 100%;
	margin: 0;
}
.main-menu ul ul li a {
	width: 100%;
	padding: 10px;
	text-transform: none;
}

.menu-btn-mobile {
	display: none;
	float: left;
	width: 80px;
	padding: 8px 10px;
	color: #FFF;
	background-color: #79007F; /* #FFA115 */
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}
.menu-btn-mobile span:after {
	display: inline-block;
	content: '\2630';
	padding-left: 10px;
}
.menu-btn-close {
	display: none;
	width: 100%;
	padding: 0 20px;
	color: #FFF;
	font-size: 4em;
	font-weight: 300;
	text-align: right;
	opacity: 0.7;
	cursor: pointer;
}


/* WIDGETS */

.widgets-wrapper {
	display: table;
	table-layout: fixed;
	width: 100%;
	height: auto;
	padding: 10px;
	border-collapse: separate;
	border-spacing: 20px;
	overflow: hidden;
}
body#home .widgets-wrapper {
	padding-top: 0;
}
.widget {
	display: table-cell;
	width: 33%;
	padding: 20px;
}
.widget-1, .widget:nth-child(3n+1) {
	border: 2px solid #00A99D;
}
.widget-2, .widget:nth-child(3n+2) {
	border: 2px solid #FC5389;
}
.widget-3, .widget:nth-child(3n+3) {
	border: 2px solid #9165E6;
}
.widget:last-child {
	margin-right: 0;
}
.widget-heading {
	margin-bottom: 20px;
	font-family: 'Titillium Web', sans-serif;
	font-size: 2.4em;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.widget-1 .widget-heading,
.widget:nth-child(3n+1) .widget-heading {
	color: #00A99D;
}
.widget-2 .widget-heading,
.widget:nth-child(3n+2) .widget-heading {
	color: #FC5389;
}
.widget-3 .widget-heading,
.widget:nth-child(3n+3) .widget-heading {
	color: #9165E6;
}
.widget-content {
	color: #333;
}
.widget-content .date {
	color: #2986E2;
}
.widget-content a {
	color: #2986E2;
	text-decoration: underline;
}


/* BOTTOM LOGOS */

.bottom-wrapper {
	padding-top: 10px;
}
.bottom-blocks {
	text-align: center;
}
.bottom-block {
	display: inline-block;
	padding-right: 20px;
	margin-bottom: 20px;
	text-align: left;
	vertical-align: top;
}
.bottom-heading {
	font-size: 1.4em;
	color: #333;
	margin-bottom: 10px;
}
.bottom-block:last-child {
	padding-right: 0;
}
.bottom-logo {
	display: inline-block;
	padding: 0 5px;
	margin-bottom: 10px;
	vertical-align: middle;
}
.bottom-logo img {
	width: auto;
	height: auto;
	max-width: 250px;
	max-height: 40px;
}


/* FOOTER */

.footer {
	background-color: #007CCE;
}
.footer-menu {
	margin-bottom: 30px;
}
.footer-menu ul {
	text-align: center;
}
.footer-menu li {
	display: inline-block;
	padding: 0 15px;
	border-right: 1px solid #FFF;
}
.footer-menu li:last-child {
	border-right: 0;
}
.footer-menu li a {
	display: inline-block;
	color: #FFF;
	font-size: 1.5em;
	text-decoration: none;
}
.footer-menu li a:hover {
	text-decoration: underline;
}
.copyright {
	color: #FFF;
	font-size: 1.3em;
	text-align: center;
}



/* HOME */

.home-welcome {
	width: 100%;
}
.welcome-left {
	position: relative;
	display: table-cell;
	width: 53%;
	padding: 30px;
	background-color: #F90;
	vertical-align: top;
}
.main .welcome-left h2 {
	margin-top: 0;
	color: #000;
}
.welcome-left p {
	color: #000;
}
.welcome-left .footnote {
	position: absolute;
	right: 30px;
	bottom: 30px;
	font-size: 1.6em;
}
.welcome-left .footnote {
	color: #FFF;
}
.welcome-left .footnote:after {
	content: '>>';
	padding-left: 5px;
	color: #FFF;
	font-size: 0.8em;
}
.welcome-right {
	display: table-cell;
	background-color: #000;
	vertical-align: middle;
}


/* PAGES */

.triple-block {
	margin-bottom: 40px;
}
.triple-block h3 {
  color: #79007F;
  padding-bottom: 10px;
  border-bottom: 1px solid #79007F;
  margin-bottom: 20px;
  text-transform: none;
}
.triple-block ul, .triple-block li:last-child {
	margin-bottom: 0;
}
.triple-content {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.tb-left, .tb-right {
	display: table-cell;
	vertical-align: top;
}
.tb-left {
	width: 230px;
	padding-right: 20px;
	text-align: center;
}


/*** MEDIA QUERIES ***/

@media screen and (max-width: 1150px) {
	.main-menu li {
		width: 163px;
	}
}

@media screen and (max-width: 1020px) {
	.header-logo-desktop {
		float: none;
		margin-bottom: 0;
	}
	.header-right {
		float: none;
		padding: 15px 0 20px 0;
	}
	.header-search-desktop {
		margin: 0 20px 0 0;
	}
}

@media screen and (max-width: 900px) {
	.welcome-left, .welcome-right {
		display: block;
		width: 100%;
	}
	.welcome-left .footnote {
		position: static;
		padding-top: 10px;
		font-size: 1.4em;
	}
	.welcome-left .footnote:after {
		content: '\25BE';
		color: #FFF;
		font-size: 1.4em;
	}
}

@media screen and (min-width: 751px) {
	.main-menu ul li:hover ul {
		display: block !important;
	}
}

@media screen and (max-width: 750px) {
	.header-search-desktop {
		display: none;
	}
	.header-search-mobile {
		display: block;
		width: 163px;
		margin: 10px auto 25px auto;
	}
	.gscb_a {
		font-size: 2em !important;
		line-height: 7px !important;
	}
	body.menu-open {
		overflow: hidden;
	}
	body.menu-open .container {
		position: relative;
	}
	.menu-btn-mobile, .menu-btn-close,
	body.menu-open .menu-mask {
		display: block;
	}
	.main-menu {
		display: block;
		position: fixed;
		left: -100%;
		top: 0;
		width: 70%;
		max-width: 280px;
		height: 100%;
		background-color: #000;
		background-color: rgba(0,0,0,0.8);
		z-index: 10000; /* above slider arrows */
		opacity: 0;
  	overflow: auto;
  	-webkit-transition: all 0.5s ease-in-out;
  	-moz-transition: all 0.5s ease-in-out;
  	transition: all 0.5s ease-in-out;
  }
  .main-menu.menu-open {
  	left: 0;
  	opacity: 1;
  	box-shadow: 1px 0px 10px rgba(0,0,0,0.3);
  	-webkit-transition: all 0.5s ease-in-out;
  	-moz-transition: all 0.5s ease-in-out;
  	transition: all 0.5s ease-in-out;
  }
	.main-menu ul {
		float: none;
		width: 100%;
	}
	.main-menu li {
		border-bottom: 0;
	}
	.main-menu li a {
		display: block;
		height: auto;
		color: #FFF;
		font-size: 1.4em;
		font-weight: 700;
	}
	.main-menu li a span {
		display: block;
	}
	.main-menu ul ul {
		position: static;
	}

	.facebook-container {
		right: 30px;
		top: auto;
		bottom: 20px;
	}

	.widgets-wrapper {
		display: block;
		padding: 30px;
	}
	.widget {
		display: block;
		width: 100%;
		height: auto;
		padding: 15px;
		margin-bottom: 20px;
	}
	.widget:last-child {
		margin-bottom: 0;
	}

	.tb-content, .tb-left, .tb-right {
		display: block;
	}
	.tb-content {
		clear: both;
	}
	.tb-left {
    float: right;
    padding: 0 0 20px 20px;
    text-align: right;
  }
}

@media screen and (max-width: 680px) {
	.bottom-blocks {
		text-align: left;
	}
	.tb-left {
		float: none;
		padding: 0 0 20px 0;
    text-align: left;
	}
}

@media screen and (max-width: 530px) {
	.wrapper {
		padding: 20px;
	}
	.banner-slider-container {
		margin-bottom: 20px;
	}
	.header-logo-desktop {
		display: none;
	}
	.header-logo-mobile {
		display: block;
		width: 100%;
		margin-bottom: 30px;
	}
	.header-right {
		padding: 0;
	}
}