@charset "utf-8";
/*
CUSTOM CSS STYLES
======================================================*/
/*COLOURS---------------------------------*/
/*
blue_dark: #004270 - 0,66,112
blue_medium: #0e84ac - 0,145,208 
blue_alt: #0d84ad - 13,132,173
blue_light: #cce5ee - 204,229,238
grey_dark: #404040 - 64,64,64
grey_light: #d2d2d2 - 210,210,210
grey_medium: #707070 - 112,112,112
#002135
#0f406b
#0e84ac
*/

/*FONTS---------------------------------*/
/* Source Sans Pro - Black, Bold, Semibold, Regular, Light, Italic, Light Italic */


/*TEXT Styling---------------------------------*/

body{
	font-family: 'Source Sans Pro', sans-serif;
	font-weight:400;
	font-size: 16px;
	line-height: 26px;
	color:#555;
}

h1{
	font-weight:400;
	font-size: 48px;
	line-height: 48px;
	letter-spacing: -0.03em;
	color:#0e84ac;
	width:100%;
}
h2{
	font-weight:400;
	font-size: 30px;
	line-height: 30px;
	letter-spacing: -0.01em;
	color:#555;
	text-transform: uppercase;
}
h3{
	font-weight:400;
	font-size: 24px;
	line-height: 26px;
	letter-spacing: -0.02em;
	color:#0e84ac;
	text-transform: none;
	padding:0;margin:0;
}
h4{
	font-size: 18px;
	line-height: 20px;
	font-weight:400;
	color:#555;
	text-transform: uppercase;
	margin-bottom: 0;
}


.strike{text-decoration: line-through;}
/*p{
	font-weight: 300;
	font-size: 20px;
	line-height: 28px;

}*/
a,
a:link,
a:visited{
	color:#0e84ac;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	text-decoration:none;
}
a:focus,
a:hover,
a:active{
	color:#004270;
}
p.caption{
	font-size: 16px;
	line-height: 20px;
	font-style:italic;
	padding:0 0 15px 0;
}

.fractop {font-size: 55%; vertical-align: 17%;}
.fracbot {font-size: 50%;}

.blue{color:#0e84ac;}


/*NAVIGATION Styling---------------------------------*/
.mobile_only{
	display:none;	
}
.tablet_only{
	display:none;	
}
#navigation_bar{
	background: #002135;
	background: -moz-linear-gradient(left, #002135 0%, #0f406b 50%, #002135 100%);
	background: -webkit-linear-gradient(left, #002135 0%,#0f406b 50%,#002135 100%);
	background: linear-gradient(to right, #002135 0%,#0f406b 50%,#002135 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002135', endColorstr='#002135',GradientType=1 );

}
#nav {
	position:relative;
     
	z-index:100;
	padding:0;
	/* 
	In order to center the navbar which does not have a defined width we must use display:table; & margin:0 auto;
	If we had a defined width we could use display:block; & margin:0 auto;
	*/
	display: table; 
	margin:0 auto;

}
#nav > a {
    display: none;
}
#nav li {
    position: relative;
	list-style: none;
	margin:0;
	padding:0;
}
#nav li a {
	font-size:17px;
	line-height:25px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align:center;
    color: #fff;
    display: block;
	padding: 5px 20px;
}
#nav.french_nav li a {
	font-size:15px;

}
#nav li a:active {
    background: #0e84ac !important;
}
#nav span:after {
    width: 0;
    height: 0;
    border: 0.313em solid transparent; /* 5 */
    border-bottom: none;
    border-top-color: #cce5ee;
    content: '';
    vertical-align: middle;
    display: inline-block;
    position: relative;
    right: -0.313em; /* 5 */
}
/* first level */

#nav > ul {
	margin:0;
	padding:0;				
}
#nav > ul > li {    
    float: left;
}
#nav > ul > li > a {
    
    
}
#nav > ul > li:not( :last-child ) > a {
    
}
#nav > ul > li:hover > a, 
#nav > ul:not( :hover ) > li.active > a {
    background-color: #0e84ac;
}
#nav > ul > li:hover > a.current, 
#nav > ul:not( :hover ) > li.active > a.current,
#nav ul li a.current{
    background-color: #0e84ac;
	color:#fff;
}
#nav li ul li a.current{
    background-color: #002135;
	color:#fff;
}
#nav ul li a.current span:after {
    border-top-color: #0f406b;

}
/* second level */

#nav li ul {
    background-color: #0e84ac;
    display: none;
    position: absolute;
    top: 100%;
}
#nav li:hover ul {
    display: block;
    left: 0;
    right: 0;
	margin:0;
	padding:0;
}
#nav li:not( :first-child ):hover ul {
    left: -1px;
}
#nav li ul a {
	text-align:left;
    font-size: 15px; /* 20 */
	line-height:20px;
    border-top: 1px solid #cce5ee;
	padding:8px inherit;
	text-transform:none;
    /*padding: 0.75em;*/ /* 15 (20) */
}
#nav li ul li a:hover, #nav li ul:not( :hover ) li.active a {
    background-color: #002135;
	color:#fff;
}



/*PAGE Styling & Layout---------------------------------*/

hr { height: 15px; border-style: solid; border-color: #cce5ee; border-width: 1px 0 0 0; margin-top:20px; clear:both;} 
.full_width{
	width:100%;
	height:auto;
}

.float_left{
	float:left;
	padding-right:20px;
}
.float_right{
	float:right;
	padding-left:20px;
}
.clear{clear:both;}
.pad_bottom{
	padding-bottom:20px;
}
.pad_b_10{
	padding-bottom:10px;
}
.pad_top{
	padding-top:20px;
}
.no_pad{padding:0;margin:0;}
.photo_holder{
	width:100%;
	text-align:center;
	position:relative;

}
.inline{
	height:auto;
	position:relative;	
	margin: 0 auto;
	display:table;
	text-align:center;
}
.ten{ width:10%; }
.fifteen{ width:15%; }
.twenty{ width:20%; }
.twentyfive{ width:25%; }
.thirty{ width:30%; }
.fourty{ width:40%; }
.fifty{ width:50%; }
.sixty{ width:60%; }
.seventy{ width:70%; }
.eighty{ width:80%; }
.ninety{ width:90%; }
.center{text-align:center;}
.col-quarter{
	width:25%;
	float:left;
	padding:0;
	margin:0;
}

.conference_banner_home_container{
	display:table;
	width:100%;
	padding:0;
	margin:0;
	margin-bottom:40px;
}
.conference_home_container{
	display:table;
	width:100%;
	height:540px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding:0;
	margin:0;
	
}
.conference_home::before {
	position: absolute;
	top: 0;
	left:0;
	display:block;
	height: 100%;
	width: 100%;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
	background: rgba(255,255,255,0.7);
	opacity: 0;
}

.conference_home:before::after {
	opacity: 1;
}
.conference_banner_home{
	width:100%;
	padding:0;
	margin:0;
	margin-bottom:40px;
	position:relative;

}
.conference_home{
	width:100%;
	text-transform:uppercase;
	color:#fff;	
	display:table-cell;
	vertical-align:middle;
	text-align:center;
	position:relative;
}
.conference_location_home{
	font-size:72px;
	/* https://css-tricks.com/viewport-sized-typography/ 
	vw: Sizes the text as the screen resizes - works well for headlines like this but not body text 
	1vw = 1% of viewport width
	1vh = 1% of viewport height
	1vmin = 1vw or 1vh, whichever is smaller
	1vmax = 1vw or 1vh, whichever is larger
	*/
	font-size:4vw; 
	line-height:60px;
	font-weight:300;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .8);
}
.conference_date_home{
	font-size:24px;	
	font-size:1.8vw;
	font-weight:400;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .8);
}
a.outline_button{
	font-size:18px;
	line-height:24px;
	color:#fff;
	border:2px solid #fff;
	background-color: transparent;
	padding:5px 15px;
	margin:10px 0;
	transition: .5s ease;

}
a.outline_button:hover{
	color:#0e84ac;
	border:2px solid #fff;
	background-color: #fff;

}
/* SECONDARY PAGE BANNERS */
.banner,
.banner2{
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	display:table;
	width:100%;
	height:540px;
	padding:0;
	margin:0;
	margin-bottom:40px;
	position:relative;

}
.banner2{
	height:240px;
}
.conference{
	display:table-cell;
	vertical-align:middle;
	width:100%;
	height:100%;
	text-align:center;
	text-transform:uppercase;
	color:#fff;	
}
.location{
	font-size:150px;
	font-size:10vw; 
	font-weight:300;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .8);
	padding-bottom: 7vh;
}
.page_title{
	font-size:72px;
	font-size:4vw; 
	font-weight:300;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .8);

}
.date{
	font-size:36px;	
	font-size:3vw; 
	font-weight:400;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .8);
}
.van{ background-image: url(/images/vancouver-banner-home.jpg); }
.tor{ background-image: url(/images/toronto-banner-home.jpg); }
.mtl{ background-image: url(/images/montreal-banner-home.jpg); }
.hal{ background-image: url(/images/halifax-banner-home.jpg); }
.vancouver{ background-image: url(/images/vancouver-banner.jpg); }
.toronto{ background-image: url(/images/toronto-banner.jpg); }
.montreal{ background-image: url(/images/montreal-banner.jpg); }
.halifax{ background-image: url(/images/halifax-banner.jpg); }
.conference_details{ background-image: url(/images/conference-details-banner.jpg); }
.travel{ background-image: url(/images/travel-banner.jpg); }
.registration{ background-image: url(/images/registration-banner.jpg); }
.agenda{ background-image: url(/images/agenda-banner.jpg); }

/* SECONDARY LANGUAGE TABS - for Montreal site */
#languages{
	width:100%;
	text-align:right;
}
a.language_tab{
	font-size:14px;
	line-height:18px;
	float:right;
	color:#002135;
	border-right:2px solid #002135;
	border-bottom:2px solid #002135;
	border-left:2px solid #002135;
	border-top:none;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background-color: transparent;
	padding:4px 10px;
	margin:0 10px 0 0;
	transition: .5s ease;

}
a.language_tab:hover,
a.language_tab.selected{
	
	color:#ffffff; /*#0e84ac;*/
	background-color: #0e84ac;
	transition: .5s ease;
	border-right:2px solid #0e84ac;
	border-bottom:2px solid #0e84ac;
	border-left:2px solid #0e84ac;
}

.top{
	
	background: #e7eef5;
	background: -moz-linear-gradient(left, #e7eef5 0%, #ffffff 15%, #ffffff 85%, #e7eef5 100%);
	background: -webkit-linear-gradient(left, #e7eef5 0%,#ffffff 15%,#ffffff 85%,#e7eef5 100%);
	background: linear-gradient(to right, #e7eef5 0%,#ffffff 15%,#ffffff 85%,#e7eef5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7eef5', endColorstr='#e7eef5',GradientType=1 );
}
.bottom{
	background:#ffffff;
	margin-top: 40px;
	text-align:center;
}
#logo_section_home{
	padding:3% 0;
}
#logo_section{
	padding:1% 0;
}
/*#logo_section .container{
	padding:0 10%;
}*/

#footer {
	padding: 2% 5%;
	margin:0 auto;
	text-align:center;
}
#footer ul {
	list-style-type: none;
    margin: 0 auto 15px auto;
    padding: 0;
	display: table;
}
#footer ul li {
    display: inline;
	float: left;
    padding: 0;
	border-right: 1px solid #0e84ac;/*#cce5ee;*/
}
#footer ul li:last-child {
    border-right: none;
}
#footer ul li a {
	font-size:14px;
	line-height:14px;
    display: block;
    padding: 0 10px;
	color:#0e84ac;/*#cce5ee;*/
	text-transform:uppercase;
}
#footer ul li a:hover,
#footer ul li a.current{
	color:#002135;

}
.footer_bottom{
	display:table;
	margin:0 auto;
}
.footer_logo{
	display:inline-table;
	margin-right:30px;

}
.copyright {
	display:inline;
	color:#002663;/*#fff;*/
	font-size:12px;
}

/**/

/*-----City Buttons Side Nav Fade Effect-----*/

.city-hover {
	display: inline-block;
	position: relative;	
}

.city-hover img {
	display: block;
	max-width: 100%;
}

.city-hover::before,
.city-hover::after {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10% 0 0 0;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
	text-align:center;
}

.city-hover::before {
	opacity: 1;
	content: attr(ds-title);
	color: #fff;
	background: rgba(255,255,255,0);
	
}
.city-hover::after{
	opacity: 0;
	content: attr(ds-desc);
	color: #0e84ac;
	background: rgba(255,255,255,0.7);
}

.city-hover:hover::before{
	opacity: 0;
}
.city-hover:hover::after {
	opacity: 1;
}
a.city-hover.current,
a.city-hover.current::after{
	opacity: 1;
	content: attr(ds-desc);
	color: #0e84ac;
	background: rgba(255,255,255,0.7);
}


.banner .row{
	position:relative;
}

.group:after{
	content: "";
 	display: table;
    clear: both;
}

blockquote {
font-style: italic;
/*width: 500px;*/
margin: 15px 0;
padding: 0.25em 40px;
/*line-height: 1.45;*/
position: relative;
/*color: #383838;*/
}
blockquote:before {
display: block;
content: "\201C";
font-size: 100px;
position: absolute;
left: -10px;
top: 25px;
color: #0e84ac;
}
blockquote.french:before {
content: "\00AB"; 
top: 0px;
}
blockquote:after {
display: block;
content: "\201D";
font-size: 100px;
position: absolute;
right: 5px;
bottom: 10px;
color: #0e84ac;
}
blockquote.french:after {
content: "\00BB"; 
bottom: 50px;
}

blockquote cite {
color: #0e84ac;
display: block;
font-style: normal;
	text-align:right;
	margin-top:-2px;
}
 
blockquote cite:before {
content: "\2014 \2009";
}


/*
blockquote:after {

display: block;
content: "\201D";
font-size: 100px;
position: absolute;
right: 10px;
top: 25px;
color: #0e84ac;
}*/
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    /*height:0;*/
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
#logo_section a.button, #logo_section a.button2{
	/*width:auto !important;*/
	width:270px !important;
}
a.button, a.button2 { 
	display:table;
	text-align:center;
	text-transform:uppercase;
	font-size:18px;
	background: #0f406b;
	color: #fff;
	padding:2% 3%;
	margin:3% auto;
	border:1px solid transparent;
	width:100%;
	/* border-radius: 10px;*/
	}
a.button:hover, a.button2:hover{ 
	background:#fff;
	color: #0e84ac;
	border:1px solid #0e84ac;
	}
a.button2 {
	/*background: #666666;*/
	background: #eaeaea;
	background: -moz-linear-gradient(top, #eaeaea 0%, #c1c0bf 49%, #cac9c8 50%, #d1d0cf 100%);
	background: -webkit-linear-gradient(top, #eaeaea 0%,#c1c0bf 49%,#cac9c8 50%,#d1d0cf 100%);
	background: linear-gradient(to bottom, #eaeaea 0%,#c1c0bf 49%,#cac9c8 50%,#d1d0cf 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#d1d0cf',GradientType=0 );
	color: #333333;
	}
a.button:hover, a.button2:hover{ 
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 36%, #ffffff 57%, #ffffff 100%);
	background: -webkit-linear-gradient(top, #ffffff 0%,#ffffff 36%,#ffffff 57%,#ffffff 100%);
	background: linear-gradient(to bottom, #ffffff 0%,#ffffff 36%,#ffffff 57%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
	color: #666666;
	border:1px solid #666666;
	}
/*
a.button { 
	display:table;
	text-align:center;
	text-transform:uppercase;
	font-size:18px;
	background: rgba(66,97,118, 1);
	background: -moz-radial-gradient(center, ellipse cover, rgba(0,145,208,1) 0%, rgba(66,97,118,1) 100%);
	background: -webkit-radial-gradient(center, ellipse cover, rgba(0,145,208,1) 0%, rgba(66,97,118,1) 100%);
	background: radial-gradient(ellipse at center, rgba(0,145,208,1) 0%, rgba(66,97,118,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#426176', endColorstr='#0091d0',GradientType=1 );
	color: #fff;
	padding:2% 10%;
	margin:3% 0;
	 border-radius: 10px;
	}
a.button:hover{ 
	background:rgba(66,97,118,1);
	background: -moz-radial-gradient(center, ellipse cover, rgba(66,97,118,1) 0%, rgba(66,97,118,1) 100%);
	background: -webkit-radial-gradient(center, ellipse cover, rgba(66,97,118,1) 0%, rgba(66,97,118,1) 100%);
	background: radial-gradient(ellipse at center, rgba(66,97,118,1) 0%, rgba(66,97,118,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#426176', endColorstr='#426176',GradientType=1 );
	}
*/

table{
	width:100%;
	border-collapse: collapse;
	margin-bottom:20px;
	font-size:18px;
}
tr{
	border-bottom:1px solid #6caa77;
}
th{
	background:#0e84ac;
	color:#fff;
}
td, th{
	padding:5px;
	text-align:center;
}
col:first-child {/*background: #fff;*/ width:17%;}

.callout{
	background: #e7eef5;
	padding:30px 0px 20px 30px;
}
.callout img{
	width:50%;
	height:auto;
}

@media (max-width: 1440px) {
	
}
@media (max-width: 1024px) {
	#menu {
		float: none;
		padding: 3px;
		margin: 0 0 10px 0;
		background-color: #0e84ac;/*#6caa77*/
		display:none;
	}
	
	#menu > ul > li {
		font-size:16px;
		line-height:24px;
		padding: 0 0 0 0;
		margin:0 0 0 0;
	}
	#menu > ul a {
		width: 100%;
		padding: 10px 0 10px 0;
		margin:0 0 0 0;
	}
	#menu li:hover ul,
	#menu li.sfHover ul {
	  /*top: 38px;*/
		
	}
	/*Make dropdown links appear inline*/
	#menu ul {
		position: static;
		display: block;
		padding: 0 0 0 0;
		margin:0 0 0 0;
	}
	#menu ul ul {
		position:static;
		padding: 0 0 0 0;
		margin:0 0 0 0;
	}

	/*Create vertical spacing*/
	#menu li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	#menu ul li {
		width: 100%;
	}
	#menu li a {
		width:inherit;

	}
	#menu a {
		color: #fff;
	}
	.show-menu {
		display:block;
	}
	#nav {
		width: 100%;
		position: static;
		margin: 0;
	}
	.location{font-size:12vw; }
	.date{font-size:6vw; }

}
@media (max-width: 768px) {
	.tablet_only{
		display:block;	
	}
	
	h1{
		font-size: 48px;
		line-height: 54px;
	}
	
	th{
		line-height:18px;
	}
	a.outline_button{
		display:block;
		padding:5px 15px;
		margin:10px 20px;

	}
	#nav {
		position: relative;
		top: auto;
		left: auto;
		background-color: #002135;
	}
	 #nav ul {
		background-color: #002135;
	}
	#nav > a {

		text-align: left;
		text-indent: -9999px;
		background-color: #0e84ac;
		position: relative;
	}
	#nav > a:before, #nav > a:after {
		position: absolute;
		border: 2px solid #fff;
		/*content: '';*/
	}
	#nav > a:after {
		/*top: 60%;*/
	}
	#nav:not( :target ) > a:first-of-type, #nav:target > a:last-of-type {
		display: block;
		background-color: #002135;
		color:#fff;
		text-align: center;
    	text-indent: 0px;
		text-transform:uppercase;
		padding:5px 0;
	}
	/* first level */

	#nav > ul {
		height: auto;
		display: none;
		position: absolute;
		left: 0;
		right: 0;
					margin-bottom: 0;
	}
	#nav:target > ul {
		display: block;
	}
	#nav > ul > li {
		width: 100%;
		float: none;
	}
	#nav > ul > li > a {
		height: auto;
		text-align: left;
		/*padding: 0 0.833em; /* 20 (24) */
	}
	#nav > ul > li:not( :last-child ) > a {
		border-right: none;
		border-bottom: 1px solid #cce5ee;
	}
	/* second level */

	#nav li ul {
		position: static;
		/*padding: 1.25em; /* 20 */
		padding-top: 0;
		background-color: #002135;
	}
	.location{ font-size:14vw; }
	.page_title{ font-size:7.6vw; }
	.city-hover::before,
	.city-hover::after {
		padding: 5% 0 0 0;
	}

}
@media (max-width: 640px) {
	.mobile_only{
		display:block;	
	}
	.remove_on_mobile,
	#side_nav{
		display:none !important;	
	}

	#logo img{
		width:100%;
		height:auto;
		/*padding:2% 5%;*/
	}
	
	h1{
		font-size: 30px;
		line-height: 36px;
	}
	h2{
		font-size: 24px;
		line-height: 24px;

	}
	h3{
		font-size: 20px;
		line-height: 22px;

	}

	.form-control-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
		padding:.5rem .25rem;
	}
	.col-quarter{
		float:none;
		display:block;
		width:100%;
		
	}
	.conference_home_container{
		height:200px;
		

	}
	.conference_location_home{
		font-size:10vw;
		line-height:24px;

	}
	.conference_date_home{
		font-size:6vw;

	}
	a.outline_button{
		display:inline;
		padding:5px 15px;
		margin:10px 0;


	}
	.footer_logo,
	.copyright{
		display:inline-table;
		margin-right:0px;
		text-align:center;
	}
	#footer {
		padding: 3% 1%;
	}

	#footer ul li a {
		font-size:13px;
		padding: 0 8px;

	}
	.location{
		font-size:18vw; 
		/*line-height:132px;*/

	}
	.date{
		font-size:10vw; 
		
	}
	.banner2{
		height:160px;
	}
	.city-hover::before,
	.city-hover::after {

		padding: 10% 0 0 0;

	}
	.map-responsive{
		overflow:none;
		padding-bottom:15px;
		position:relative;
		height:auto;
	}
	.map-responsive iframe{
		position:relative;
		display:block;
	}
	blockquote cite {
	margin-top:0px;
	}
	.float_right,
	.float_left{
		float:none;
		padding-left:0px;
		display:block;
	}
	.inline{display:block;}

	.ten,
	.fifteen,
	.twenty,
	.twentyfive,
	.thirty,
	.fourty,
	.fifty,
	.sixty,
	.seventy,
	.eighty,
	.ninety{ width:100%; }

	}
@media (max-width: 420px) {
	
	

}