html{
	height:100%;
}

body {
	background: white;
	font-family:'Roboto', sans-serif;
	font-size:15px;
	max-width:850px;
	width:100%;
	min-width:320px;
	margin:0 auto;
	position: relative;
	height:100%;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

.cf:after { 
	content:"";
	display:table;
	clear:both;
}

.width{
	width:980px;
	padding:0 20px;
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

p, h1, h2, h3, h4, h5, ul{
	margin:0;
}

p{
	line-height: 1.6;
}

a, a:focus{
   outline: 0;
}

a{
	transition:.5s color, .5s background;
	-webkit-transition:.5s color, .5s background;
	backface-visibility: hidden;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
    color:#224778;
    text-decoration: none;
}

a:hover{
	color:black;
}

*{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
}

img{
	max-width:100%;
	height:auto;
}

hr {
    border-color:#ececec;
    border-style: none none solid;
    border-width: 0 0 1px;
    display: block;
    height: 0;
    margin-bottom: 15px;
}

/* ---- Fonts ---- */

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

.speaker-icon:after { content: '\e800'; } 
.delegate-icon:after { content: '\e801'; }
.icon-user-add:before { content: '\e802'; }
.icon-graduation-cap:before { content: '\e803'; }
.location-icon:after { content: '\e814'; } 
.attractions-icon:after { content: '\e815'; }
.attention-icon:after { content: '\e804'; } 
.sponsor-icon:after { content: '\e805'; } 
.icon-heart:before { content: '\e806'; } 
.home-icon:after { content: '\e807'; } 
.resource-icon:after { content: '\e808'; } 
.info-icon:after { content: '\e809'; } 
.icon-help-circled:before { content: '\e80a'; } 
.icon-bell:before { content: '\e80b'; } 
.communicate-icon:after { content: '\e80c'; } 
.agenda-icon:after { content: '\e80d'; }
.letter-icon:after { content: '\e80e'; }
.refresh-icon:after { content: '\e80f'; }
.calendar-icon:after { content: '\e810'; } 
.tourism-icon:after { content: '\e811'; }
.feather-icon:after { content: '\e816'; }
.survey-icon:after { content: '\e812'; } 
.settings-icon:after { content: '\e813'; } 
.twitter-icon:after { content: '\f309'; } 
.facebook-icon:after { content: '\f30c'; } 
.gplus-icon:after { content: '\f30f'; }
.linkedin-icon:after { content: '\f318'; }
.down-arrow-icon:after { content: '\e817'; }
.ticket-icon:after { content: '\e818'; } /


/* ----  Survey Monkey Fix ?? ----- */

.smcx-iframe-container {
   overflow:auto !important;
   -webkit-overflow-scrolling:touch;
}


/* ----  Loading Styles ----- */

.is-long-load .loader, .page-reload .loader{
	visibility: visible;
	opacity: 1;
	transition-delay:0s;
}

.loader {
  position: fixed;
  top:50%;
  left:50%;
  margin-left:-13px;
  margin-top:-13px;
  z-index: 1;
  width: 26px;
  height:26px;
  visibility: hidden;
  opacity: 0;
  transition:opacity 0.3s ease 0s, visibility 0.3s ease .3s;
}

.spinner{
	position: absolute;
	left:0;
	top:0;
	border-radius:50%;
 	-webkit-animation: spin 1.4s infinite linear;
  	animation: spin 1.4s infinite linear;
  	width: 26px;
	height:26px;
	border-left:1px solid #e8e8e8;
	border-top:1px solid #e8e8e8;
	border-right:1px solid #e8e8e8;
  	border-bottom:1px solid #80a9c3;
  	border-radius:50%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
  }
  50% {
  	opacity: 1;
  }
  100% {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
  }
   50% {
  	opacity: 1;
  }
  100% {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
    opacity: 0;
  }
}

/* ----  Header Styles ----- */

.page-wrapper{
	position: relative;
/*	overflow:hidden;
*/	width:100%;
	height:100%;
}

.overlay{
	position: fixed;
	top:41px;
	right:0;
	bottom:0;
	left:0;
	background: rgba(0,0,0,.4);
	opacity: 0;
	z-index: 99;
	visibility: hidden;
	transition:.4s all;
	-webkkit-transition:.4s all;
	-moz-transition:.4s all;
}

.menu-active .overlay{
	visibility: visible;
	opacity: 1;
	transition-delay:0s;
  	-webkit-transition-delay:0s;
  	-moz-transition-delay:0s;
}

header{
	background:#f0efef;
	border-bottom:1px solid #c6cacd;
}

header a.logo{
	float:left;
	max-width:44px;
	margin-left: 10px;
    margin-top: 10px;
}

header a.logo img{
	display:block;
}

.toggle-menu{
	float:right;
	cursor: pointer;
	height: 41px;
	width:45px;
	padding:13px 12px 0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}

.toggle-menu span{
	display: block;
	background:#005aa1;
	height:3px;
	margin-bottom:4px;
	border-radius: 4px;
	-webkit-backface-visibility: hidden;
   	-moz-backface-visibility: hidden;
   	-ms-backface-visibility: hidden;
   	backface-visibility: hidden;
  	-webkit-perspective: 1000;
   	-moz-perspective: 1000;
   	-ms-perspective: 1000;
   	perspective: 1000;
   	-webkit-transition:opacity .3s ease .7s, -webkit-transform .3s ease .7s, width .3s ease .7s;
	-moz-transition:opacity .3s ease .7s, -moz-transform .3s ease .7s, width .3s ease .7s;
	transition:opacity .3s ease .7s, transform .3s ease .7s, width .3s ease .7s;
}

.toggle-menu span.line-one{
	width:100%;
	transform-origin:left top;
	-webkit-transform-origin:left top;
	-moz-transform-origin:left top;
	-ms-transform-origin:left top;
}

.menu-active .toggle-menu span.line-one{
	width:100%;
	transform-origin:left top;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
}

.toggle-menu span.line-two{
	width:83%;
}

.menu-active .toggle-menu span.line-two{
	width:0;
	opacity: 0;
}

.toggle-menu span.line-three{
	width:50%;
	transform-origin:left bottom;
	-webkit-transform-origin:left bottom;
	-moz-transform-origin:left bottom;
	-ms-transform-origin:left bottom;
}

.menu-active .toggle-menu span.line-three{
	width: 100%;
	transform-origin:left bottom;
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
}

/* ----  nav Styles ----- */

nav{
	position:fixed;
	right:5px;
	top:49px;
	z-index:9999;
	border:1px solid #3276a2;
	box-shadow:  -2px 2px 5px 0px rgba(50, 50, 50, 0.75);
	opacity:1;
	transform: translateX(265px);
	-webkit-transform: translateX(265px);
	-webkit-transition:-webkit-transform .4s ease .3s;
	-moz-transition:-moz-transform .4s ease .3s;
	transition:transform .4s ease.3s;
	bottom: 0;
	background:#1c5072;
	-webkit-overflow-scrolling:touch;
	width:250px;
	overflow-y:scroll;
}

.menu-active nav{
	transform: translateX(5px);
	-webkit-transform: translateX(5px);
}

.quick-ban{
	padding: 5px;
	background: #1f5a81;
	border-bottom:1px solid #3276a2;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}

.quick-ban img{
	display: block;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

nav ul.main-nav{
	list-style-type: none;
	padding: 0;
	background:white;
	width:250px;
	margin-bottom:100px;
}

nav ul.main-nav li{
/*	padding:0 13px 0 0;*/
	border-bottom: 1px solid #3276a2;
	background:#25658f;
	transition:.5s background;
	-webkit-transition:.5s background;
	-moz-transition:.5s background;
}

nav ul.main-nav li.minor{
	background:#1f5a81;
}

nav ul.main-nav li.minor a, nav ul.main-nav li.minor p{
	font-size: 12px;
}

nav ul.main-nav li.minor a:after, nav ul.main-nav li.minor p:after{
	font-size: 15px;
	top:18px;
}

nav ul.main-nav li a, nav ul.main-nav li p{
	color: white;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    padding:13px 10px 13px 50px;
    position: relative;
    line-height: 1.35;
    cursor:pointer;
}

nav ul.main-nav li:hover{
	background:#1f5a81;
}

nav ul.main-nav li a:after, nav ul.main-nav li p:after{
	font-family:'fontello';
	 display: inline-block;
    font-size: 20px;
    margin-top: -4px;
    vertical-align: middle;
    color:#e3e6e7;
    width:50px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 15px;
    line-height: 1.1;
}

.sub-main-nav{
	list-style-type: none;
	padding-left:0;
	display: none;
}

nav ul.main-nav li .sub-main-nav a{
	font-size:13px;
}

nav ul.main-nav li .sub-main-nav li:first-child{
	border-top: 1px solid #3276a2;
}


.social-media {
    list-style-type: none;
    padding-left: 0;
    text-align: center;
    border-bottom:1px solid #3276a2;
}

/*.social-media::after {
    content: "";
    display: inline-block;
    width: 100%;
}*/

.social-media li {
	display: block;
	width: 33.3333333%;
	float: left;
}

.social-media a {
	text-decoration: none;
	display: block;
}

.social-media a:hover{
	background: #194765;
}

.social-media a:after {
	font-family: 'fontello';
	color: white;
	font-size: 14px;
	padding: 7px 10px;
	line-height: 1.5;
	display: block;
	border-right:1px solid rgba(255,255,255,.1);
}

.social-media li.last-child a:after{
	border-right:0;
}



/* ---- Wrapper Styles ---- */

.is-loading .wrapper{
	opacity: 0;
	-ms-transform:translateY(20px);
	-webkit-transform:translateY(20px);
	-moz-transform:translateY(20px);
	transform:translateY(20px);
}

.page-reload .wrapper{
	opacity: 0;
}

.wrapper{
	width:100%;
	padding: 6px ;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	background:white;
	min-height:700px;
	opacity: 1;
	-ms-transform:none;
	-webkit-transform:none;
	-moz-transform:none;
	transform:none;
	transition:.8s all .1s;
}

/* ---- Home Styles ---- */

.rounder{
	border-radius:5px;
	position: relative;
	padding-bottom:6px;
	text-decoration: none;
	transition:.5s opacity;
	-webkit-transition:.5s opacity;
	-moz-transition:.5s opacity;
}

a.rounder:hover{
	opacity:.8;
}

.rounder img{
	display:block;
	border-radius:5px;
	width:100%;
	border:1px solid #dedede;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}

.rounder p{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: absolute;
	bottom:7px;
	left:1px;
	right:3px;
/*	background:black;
*/	color:#343434;
/*	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.65);*/
	padding:14px 10px 8px;
	line-height: 1.1;
	font-size:14px;
/*	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.45);
*/	font-weight:700;
	text-align: center;
	text-transform: uppercase;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
/*	border-bottom-right-radius:5px;
	border-bottom-left-radius:5px;*/
/*	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.44) 64%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(64%,rgba(0,0,0,0.44)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.44) 64%); 
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.44) 64%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.44) 64%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.44) 64%);*/
}

.rounder.half-last p {
    left: 4px;
    right: 0;
}

.rounder.full p{
	right:-1px;
}

.full{
	width:100%;
	float:left;
}

.half{
	width:50%;
	padding-right:3px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	float:left;
}

.half-last{
	width:50%;
	padding-left:3px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	float:left;
}

#video{
	cursor:pointer;
}

/* ----  Agenda  ----- */

.download-link{
	color:#224778 !important;
}


.download-link:hover{
	color:black !important;
}

.download-link:before{
	font-family: 'fontello';
	content: '\e808';
	padding-right:5px;
	font-size:12px;
	color:black;
}

.open{
	cursor: pointer;
}

ul.agenda{
	list-style-type:none;
	padding-left:0;
	margin-top:1px;
}

ul.agenda li.first-item{
	border-radius:2px 2px 0 0;
	cursor:default;
}

ul.agenda li{
	padding:14px 20px;
	width:100%;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	border-left:0;
	 box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05) inset;
	transition:.5s border, .5s padding;
	-webkit-transition:.5s border, .5s padding;
}


ul.agenda li .open{
	position: relative;
}

ul.agenda li .open:after{
	font-family: 'fontello';
	content: '\e817';
	position: absolute;
	top:50%;
	right:3px;
	margin-top:-6px;
	font-size:12px;
	transform-origin:center center;
	-webkit-transform-origin:center center;
	-moz-transform-origin:center center;
	-ms-transform-origin:center center;
	transition:transform .3s ease;
	-webkit-transition:-webkit-transform .3s ease .5s;
	-moz-transition:-moz-transform .3s ease .5s;
}

ul.agenda li .open.active:after{
	transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
}

ul.agenda li.day{
	background:#224778 !important;
	color:white !important;
}

ul.agenda li.day p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 4px;
}

ul.agenda li.day .confContent p{
	font-size:13px;
	line-height:1.2;
	padding-bottom:10px;
	color:black;
	font-weight:400;
}

ul.agenda li.day .confContent p.title {
    font-size: 15px;
    font-weight: 600;
    color:black;
}

ul.agenda li.day .confContent a {
    color: #224778;
    font-size: 13px;
    text-decoration: none;
    padding-bottom:10px;
    font-weight:400;
}

ul.agenda li.day .confContent a:hover{
	color:black;
}

ul.agenda li.day .confContent a.download:after{
	content: url('imgs/linkIcon.png');
	padding-left:5px;
}

ul.agenda li.day p.venue {
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    padding-bottom: 0;
}


ul.agenda li:nth-child(odd){
	background:#c9d2d9;
	color:black;
	border-bottom:1px solid #ececec;
}

ul.agenda li:nth-child(even){
	background:#dee6ed;
	color:black;
	border-bottom:1px solid #b4bbc1;
}

ul.agenda li.break{
	background:#62676b !important;
	padding:4px 20px !important;
}


ul.agenda li.break p.time{
	height:auto;
	color:white;
}

ul.agenda li.break p.break{
	text-transform:uppercase;
	color:white;
	font-size:13px;
	font-weight:600;
}

.break-room {
    color: white;
    font-size: 12px;
    line-height: 1;
    padding-bottom: 4px;
}
	
.confContent{
/*	display:none;
*/	background:#faf7f7;
	padding:0 20px 0 15px;
	margin:15px -20px -14px;
	cursor:default;
	height:0;
	opacity: 0;
	overflow-y:hidden;
	transition:.5s all;
	-webkit-transition:.5s all;

}

.confContent.is-visible{
	padding:15px 20px 5px 15px;
	opacity: 1;
}


ul.agenda li:nth-child(odd) .confContent{
	border-left:5px solid #c9d2d9;
}

ul.agenda li:nth-child(even) .confContent{
	border-left:5px solid #dee6ed;
}

.session-sponsor{
	background:white;
	padding:10px 20px;
	margin:14px -20px -14px;
	border-left:1px solid #dfdfdf;
	border-right:1px solid #dfdfdf;
	border-top: 1px solid #dfdfdf;
	position: relative;
}

.session-sponsor:after, .session-sponsor:before {
	top:-15px;
	left: 50px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.session-sponsor:after{
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #ffffff;
	border-width: 8px;
	margin-left: -8px;
}
.session-sponsor:before {
	border-color: rgba(223, 223, 223, 0);
	border-bottom-color: #d6d6d7;
	border-width: 9px;
	margin-left: -9px;
	top:-18px;
}

.session-sponsor p{
	font-size:12px;
	padding:0;
}

.confContent p{
	font-size:13px;
	line-height:1.4;
	padding-bottom:10px;
}

.confContent a {
    color: #224778;
    font-size: 13px;
    text-decoration: none;
    padding-bottom:10px;
}

.confContent a:hover{
	color:black;
}

.confContent a.download:after{
	content: url('imgs/linkIcon.png');
	padding-left:5px;
}

p.time {
    font-size: 13px;
    padding-right: 10px;
    color:#232323;
    margin-bottom:-1px;
}

.break p.time {
    float: left;
}

p.confTitle {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
	padding-right: 30px;
}

p.break{
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right:30px;
}

p.room {
    font-size: 13px;
    margin-top:-1px;
    padding-right: 30px;
    color:#343434;
}

.confContent .speaker-wrap{
    padding-bottom: 10px;
}

.confContent .speaker {
    background: none repeat scroll 0 0 #efeeee;
    border: 1px solid #e2e0e0;
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    clear: right;
    float: left;
    margin-bottom: 1.5%;
    border-radius: 3px;
    box-shadow:0 0 4px rgba(0, 0, 0, 0.05);
}

.confContent a.speaker{
	text-decoration: none;
	color:black;
	padding:0;
}

.confContent a.speaker:hover{
	opacity:.8;
}

.confContent .speaker:nth-child(odd){
	margin-right:1%;
	width:49%;
}

.confContent .speaker:nth-child(even){
	margin-left:1%;
	width:49%;
}

.confContent .speaker p{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom:0;
}

.confContent .speaker-cred .speaker-title, .confContent .speaker-cred .speaker-employer {
    margin-top: -3px;
}

.fixed-speaker-img{
	float:left;
	margin-left:-100%;
	width:67px;
}

.confContent .speaker img {
    float: left;
    display:block;
    max-width: 67px;
    border-radius: 3px 0 0 3px;
}


.confContent .speaker-cred{
	padding: 10px 15px 0;
	margin-left:67px;
}


.confContent .speaker-cred p.speaker-name{
	font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    padding-top: 2px;
    padding-bottom: 3px;
}

.confContent p.title {
    font-size: 15px;
    font-weight: 600;
}

.confContent .desc-list{
	list-style-type: disc !important;
	padding-bottom:7px;
	padding-left:30px;
}

.confContent .desc-list li{
	font-size:13px;
	line-height:1.4;
	border:none !important;
	padding:0 0 3px 0!important;
	background:#faf7f7 !important;
	box-shadow:none;
}

/* ----  Current Agenda Styles ----- */

ul.agenda li.current {
    border-left: 5px solid #224778;
    transition: .5s padding, .5s border;
    webkit-transtion: .5s padding, .5s border;
}

ul.agenda li.current .confContent{
	margin-left:-25px;
	transition:.5s margin;
	-webkit-transition:.5s margin;
}

ul.agenda li.current .open p{
	padding-left:5px;
	transition:.5s padding;
	-webkit-transition:.5s padding;
}

/* ----  Speaker List ----- */

ul.speaker-list{
	list-style-type:none;
	padding-left:0;
	margin-top:1px;
}

.header {
    background:#224778 !important;
    color: white;
}

.header h1{
	font-size:16px;
	font-weight:400;
	color:white;
}

ul.speaker-list li.first-item{
	border-radius:2px 2px 0 0;
}


ul.speaker-list li{
	padding:14px 20px;
	width:100%;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	 box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05) inset;
}

ul.speaker-list li .open{
	position: relative;
	width:100%;

}

ul.speaker-list li .open.active{
	width:100%;
}

ul.speaker-list li .open:after{
	font-family: 'fontello';
	content: '\e817';
	position: absolute;
	top:50%;
	right:3px;
	margin-top:-6px;
	font-size:12px;
	transform-origin:center center;
	-webkit-transform-origin:center center;
	-moz-transform-origin:center center;
	-ms-transform-origin:center center;
	transition:transform .3s ease .8s;
	-webkit-transition:-webkit-transform .3s ease .5s;
	-moz-transition:-moz-transform .3s ease .5s;
}

ul.speaker-list li .open.active:after{
	transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
}


ul.speaker-list li:nth-child(odd){
	background:#c9d2d9;
	color:black;
	border-bottom:1px solid #ececec;
}

ul.speaker-list li:nth-child(even){
	background:#dee6ed;
	color:black;
	border-bottom:1px solid #b4bbc1;
}
	
/*ul.speaker-list .confContent{
	display:none;
	background:#faf7f7;
	padding:15px 20px 5px 15px;
	margin:15px -20px -14px;
}*/

ul.speaker-list li:nth-child(odd) .confContent{
	border-left:5px solid #c9d2d9;
}

ul.speaker-list li:nth-child(even) .confContent{
	border-left:5px solid #dee6ed;
}

ul.speaker-list .confContent p{
	font-size:13px;
	line-height:1.4;
	padding-bottom:10px;
}

/*ul.speaker-list .speaker {
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    clear: right;
    float: left;
}*/

ul.speaker-list .speaker p{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom:0;
	font-size: 13px;
    line-height: 1.3;
    padding-right:15px;
}

ul.speaker-list .speaker p.speaker-title, ul.speaker-list .speaker p.speaker-employer{
	margin-top:-2px;
}

ul.speaker-list .fixed-speaker-img{
	float:left;
	margin-left:-100%;
	width:67px;
}

ul.speaker-list .speaker img {
    float: left;
    display:block;
	position: relative;
	max-width: 67px;
	border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    border:1px solid rgba(0,0,0,0);
}

ul.speaker-list .speaker:before{
   /* border: 1px solid transparent;*/
/*    box-shadow: 0 0 16px -6px rgba(0, 0, 0, 0.5) inset;
*/    content: "";
    display: block;
    height: 67px;
    position: absolute;
    width: 67px;
    z-index: 2;
    border-radius: 3px;
    border:1px solid rgba(0,0,0,.06);
}


/*ul.speaker-list li:nth-child(odd) .speaker img{
	border:1px solid #e9ebed;
}

ul.speaker-list li:nth-child(even) .speaker img{
	border:1px solid #ffffff;
}
*/

ul.speaker-list .speaker-cred{
	padding: 7px 15px 0;
	margin-left:67px;
}


ul.speaker-list .speaker-cred p.speaker-name{
	font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    padding-top: 2px;
    padding-bottom: 5px;
}

.speaker-socials{
	background: #ececec none repeat scroll 0 0;
    color: #323232;
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
    margin-bottom:10px;
}

.speaker-socials p{
	padding-bottom:0 !important;
}

.speaker-socials a{
    text-decoration: none;
    transition: .5s opacity;
    text-align: center;
    display:inline-block;
    margin-left:5px;
    padding-bottom:0;
}

.speaker-socials a:after{
	font-family: 'fontello';
	font-size: 12px;
}

.speaker-socials a.linkedin-icon:after{
	color: #0077b5;
}

.speaker-socials a.twitter-icon:after{
	color: #33ccff;
}


.confContent p.title {
    font-size: 15px;
    font-weight: 600;
}

.agenda-relationship {
    border: 1px solid #e0e0e0;
    margin-top: 5px;
    margin-bottom:10px;
    padding: 15px 15px 5px;
    border-radius:2px;
    box-shadow:0 0 4px rgba(0, 0, 0, 0.05);
}



.agenda-rel-title {
    background: #ececec none repeat scroll 0 0;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -15px;
    padding: 8px 10px !important;
    margin-bottom:15px;
    color:#323232;
    border-bottom:1px solid #e0e0e0;
}

.agenda-rel-title:before {
	content:'\e80d';
	font-family: 'fontello';
	padding-right:5px;
}

.agenda-date-time {
    color: #343434;
    display: block;
    font-size: 11.5px;
    padding-bottom:1px;
}

/* ----  Delegates ----- */

.delegates{
	position: relative;
}

.delegates ul.speaker-list li{
	position: relative;
}

/*.delegates ul.speaker-list li:nth-of-type(n+2) {
    height: 76px;
    padding: 11px 20px 0;
}*/

.delegates ul.speaker-list .speaker::before {
	display: none;
}

.delegates ul.speaker-list .speaker-cred {
    margin-left: 0;
    padding: 0 35px 0 0;
}

.delegates .social-card{
	position: absolute;
	right:35px;
	top:9px;
	padding-left: 0;
	list-style-type: none;
}

.delegates ul.speaker-list .social-card li{
	display: block;
	background: none;
	padding: 0;
	border: none;
	text-align: center;
	box-shadow:none;
	margin-bottom:4px;
}

.delegates .social-card li a{
	text-decoration: none;
	display: block;
	border-left:1px solid rgba(0,0,0,.2);
	width:28px;
	height:28px;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	transition:.5s opacity;
	-webkit-transition:.5s opacity;
	-moz-transition:.5s opacity;
	border:1px solid rgba(0,0,0,.2);
	border-radius:50%;
	background:white;
}
.social-card a:after{
	font-family: 'fontello';
	color:#015ca7;
	line-height: 28px;
	font-size:12px;
	transition:.5s opacity;
	-webkit-transition:.5s opacity;
	-moz-transition:.5s opacity;
}

.social-card a.twitter-icon:after{
	color:#33ccff;
}

.social-card a.linkedin-icon:after{
	color:#0077b5;
}

.delegates .social-card li a:hover:after{
	opacity: .8;
}

.delegates ul.speaker-list .speaker p.speaker-title, .delegates ul.speaker-list .speaker p.speaker-employer, .delegates ul.speaker-list .speaker-cred p.speaker-name {
   overflow: visible;
   white-space:normal;
}

.alpha-chooser{
	position: fixed;
	top:49px;
	right:6px;
	border-radius:4px;
	text-align: center;
	background: rgba(0,0,0,.6);
	z-index: 1;
	padding:8px 0;
	overflow-y:auto;
	bottom:6px;
}

.alpha-chooser span{
	display: block;
	color:white;
	font-size:13px;
	padding:2px 8px;
	cursor: pointer;
	-webkit-user-select: none;
}

.alpha-chooser span:last-of-type{
	padding-bottom:8px;
}

.letter-quick-link{
	background: #62676b none repeat scroll 0 0 !important;
    padding: 8px 20px 4px !important;
    height:auto !important;

 }

.letter-quick-link p{    
	color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;

}

/* ----  Info Pages ----- */

.content{
	background:#faf7f7;
	padding:15px 20px 5px;
	margin:10px -20px -14px;
	cursor:default;
}


.content p{
	font-size:13px;
	line-height:1.2;
	padding-bottom:10px;
}

.content a {
    color: #224778;
    font-size: 13px;
    text-decoration: none;
    padding-bottom:10px;
}

.content a.download:after{
	content: url('imgs/linkIcon.png');
	padding-left:5px;
}

.content a:hover{
	color:black;
}

.info-block {
    background: white;
    cursor: default;
    padding: 15px 20px 5px;
}

.info-block p{
	font-size:13px;
	line-height:1.3;
	padding-bottom:10px;
}

.info{
	background:#faf7f7;
	padding:15px 20px 5px;
	cursor:default;
}

.info p{
	font-size:13px;
	line-height:1.3;
	padding-bottom:10px;
}

.info .button {
    background: none repeat scroll 0 0 #224778;
    border-radius: 4px;
    color: white;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    margin-bottom:10px;
    font-size:13px;
}

.info .button:hover{
	background:#25658f;
}

/* ----  Venue ----- */

.google-maps {
	position: relative;
	padding-bottom: 60%; // This is the aspect ratio
	height: 0;
	overflow: hidden;
	margin-bottom:10px;
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/* ----  Responsive Video ----- */

#videoAppear{
	display:none;
}

.js-video {
  height: 0;
  padding-top: 25px;
  padding-bottom: 67.5%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
 
.js-video.widescreen {
  padding-bottom: 57.25%;
}
 
.js-video.vimeo {
  padding-top: 0;
}

.js-video iframe{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/* ----  Sponsors ----- */

.sponsor-grid img {
    border: 1px solid #e6e6e6;
    border-radius: 7px;
    box-sizing: border-box;
    display:block;
}

.sponsor-grid a {
    float: left;
    margin-right: 1.25%;
    width: 24%;
    margin-bottom:1.25%;
    padding-bottom:0;
}

.sponsor-grid a:hover{
	opacity:.8;
}

.sponsor-grid a:nth-child(4n){
	margin-right:0;
}

/* ----  Back ----- */

footer{
    background: none repeat scroll 0 0 #f0efef;
    max-width: 768px;
    position: fixed;
    width: 100%;
    border-top: 1px solid #b3b3b3;
    bottom:0;
    display:none;
}

footer.back-button-display{
	display:block;
}

footer a{
	font-family: "entypo";
	color: black;
	border-right: 1px solid #b3b3b3;
	padding: 5px 17px;
	text-decoration: none;
	cursor: pointer;
	display:inline-block;
	font-size:30px;

}

/* ----  make survey responsive

.smcx-embed {
   height: 500px !important;
   width: 100% !important;
}

.smcx-embed.smcx-hide-branding > .smcx-iframe-container {
    height: 500px !important;
    width:100% !important;
}
.smcx-embed > .smcx-iframe-container {
    height: 265px;
    width: 100%;
}

.survey-page{
	width:100% !important;
}

 ----- */


/* ----  twitter feed ----- */

.twitter-container{
	width:calc(100% - 40px);
	padding: 25px 20px 8px 20px;
	float: left;
	border:1px solid #eee;
	border-radius: 5px;
	margin: 20px;
	box-shadow: 0 0 15px rgba(0,0,0,.05);
	box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}

.twitter-title{
	float: left;
	position: relative;
	padding-left:40px;
	font-size:17px;
	font-weight: 300;

}

.twitter-title:after{
	font-family: 'fontello';
	position: absolute;
	left:0;
	color:#61aadb;
	top:-3px;
	font-size:22px;
}

.hashtag{
	float: right;
	color:#1c5072;
	font-weight: 700;
	font-size:17px;
}

.twitter-feed{
	list-style-type: none;
	padding-left:0;
	border-top:1px solid #dadada;
	float: left;
	margin-top:17px;
	padding-top:10px;
	margin-bottom:10px;
	max-height: 300px;
	overflow: auto;
	width: 100%;
}

.twitter-feed li{
	border-bottom:1px solid #ececec;
	padding: 10px;
}

.twitter-feed li:last-child{
	border-bottom:none;
}

.twitter-feed li .username{
	font-style: italic;
	color:#444343;
	display: block;
	font-size:14px;
	padding-left:60px;
	padding-top:7px;
}

.twitter-feed li .screename{
	font-style: italic;
	color:#707070;
	display: block;
	font-size:12px;
	padding-left:60px;
	padding-bottom:13px;
}

.twitter-feed img {
    border: 1px solid #ececec;
    border-radius: 50%;
    float: left;
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}

.twitter-feed p{
	color: #2b2a2a;
	line-height: 1.3;
	font-size:14px;
}

.twitter-feed a{
	text-decoration: none;
	color:#357caa;
}

.twitter-feed a:hover{
	color:#1c5072;
}

.twitter-join{
	display: block;
	background: #ececec;
	border-radius: 5px;
	float: left;
	text-decoration: none;
	color:#a1a0a0;
	padding: 10px 15px;
	margin-left:-13px;
	width: calc(100% + 26px);
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}

/* ----  App Install Instructions ----- */

.app-instructions{
    background: rgba(0, 0, 0, 0.7);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999999;
    display: none;
    text-align: center;
    width:100%;
    height:100%;
}

.app-instructions p {
    color: white;
    margin: 0 auto;
    max-width: 350px;
    text-align: center;
    padding:0 20px;
    display: inline-block;
    vertical-align: middle;
    width:100%;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}

.app-instructions p .close-instructions{
	display: inline-block;
	border: 1px solid #ececec;
	padding: 3px 18px;
	text-decoration: none;
	color:white;
	margin-top:10px;
	cursor: pointer;
}

.app-instructions .dummy-center{
	display: inline-block;
	height:100%;
	vertical-align: middle;
}

.app-instructions img {
    padding: 0 4px;
    vertical-align: middle;
}

.app-instructions.ios img{
	max-width:13px;
}

.app-instructions.android img, .app-instructions.blackberry img{
	max-width:4px;
}

/* ----  Responsive  ----- */

@media screen and (min-width: 851px){

	body{
		max-width:100%;
	}

	.wrapper{
		max-width:70%;
	}

	header{
		max-width:70%;
	}

	header .toggle-menu{
		visibility: hidden;
	}

	header a.menu{
		display: none;
	}

	nav{
		transform:none;
		-webkit-transform:none;
		-moz-transform:none;
		-mas-transform:none;
		width:30%;
		box-shadow: none;
		position: fixed;
		top:0;
		right:0;
		box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;
		overflow-y:auto;
		border-left: 5px solid white;
		border-right:transparent;
		border-top:transparent;
		border-bottom:transparent;
    	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	}

	nav ul.main-nav{
		width:100%;
	}

	.content-center{
		margin: 20px auto 0;
		max-width:850px;
		border: 5px solid white;
    	border-radius: 4px;
    	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	}

	.loader {
    	left: 35%;
    }

}

@media screen and (max-width: 1300px){

	.content-center{
		margin: 0 auto;
		box-shadow:none;
		border:none;
	}
}

@media screen and (max-width: 850px){
	body {
		background: white;
		box-shadow: none;
	}

	body.menu-active{
		overflow:hidden;
		position: relative;
	}

	header{
		position:fixed;
		width:100%;
		min-width:320px;
		max-width:850px;
		z-index:999999;
	}

	.wrapper{
		padding-top:48px;
	}

	nav{
		top:42px;
		position:fixed
		overflow-y:scroll;
	}



}

@media screen and (max-width: 567px){
	.twitter-title:after{
		font-size:15px;
		top:0;
	}

	.twitter-title{
		font-size:15px;
		padding-left:25px;
	}

	.hashtag{
		font-size:15px;
	}


}

@media screen and (max-width: 423px){
	.rounder p{	
		font-size:11px;
		 padding: 10px 10px 0;
		 height:30px;
		 bottom: 4px;
	}


	.twitter-feed p {
	    font-size: 13px;
	}

	.confContent .speaker:nth-child(odd) {
	    margin-left: 0;
	    width: 100%;
	}

	.confContent .speaker:nth-child(even) {
	    margin-left: 0;
	    width: 100%;
	}

	.hashtag{
		float: left;
		width:100%;
		font-size:14px;
	}

	.twitter-title{
		font-size:13px;
	}

	.twitter-title::after{
		top:-1px;
	}

	.twitter-container{
		margin: 0 0 6px 0;
		width:100%;
		padding:15px 15px 8px;
	}

	.twitter-feed{
		margin-top:11px;
	}

	.twitter-join{
		font-size:12px;
		margin-left: -9px;
		width: calc(100% + 18px);
	}
}

@media screen and (min-width: 851px){
	
	.alpha-chooser{
			display: none;
		
		}
}

@media screen and (max-width: 400px){

	.app-instructions p{
		max-width:300px;
	}
}

@media all and (display-mode: standalone){ 

	.install-app{
		display: none !important;
	}
}





