/*
        ___          ___          ___          ___      ___                   ___          ___     
       /\  \        /\  \        /\  \        /\  \    /\  \        ___      /\__\        /\  \    
      /::\  \      /::\  \      /::\  \      /::\  \   \:\  \      /\  \    /:/  /       /::\  \   
     /:/\:\  \    /:/\:\  \    /:/\:\  \    /:/\:\  \   \:\  \     \:\  \  /:/  /       /:/\:\  \  
    /:/  \:\  \  /::\~\:\  \  /::\~\:\  \  /::\~\:\  \  /::\  \    /::\__\/:/__/  ___  /::\~\:\  \ 
   /:/__/ \:\__\/:/\:\ \:\__\/:/\:\ \:\__\/:/\:\ \:\__\/:/\:\__\__/:/\/__/|:|  | /\__\/:/\:\ \:\__\
   \:\  \  \/__/\/_|::\/:/  /\:\~\:\ \/__/\/__\:\/:/  /:/  \/__/\/:/  /   |:|  |/:/  /\:\~\:\ \/__/
    \:\  \         |:|::/  /  \:\ \:\__\       \::/  /:/  /    \::/__/    |:|__/:/  /  \:\ \:\__\  
     \:\  \        |:|\/__/    \:\ \/__/       /:/  /\/__/      \:\__\     \::::/__/    \:\ \/__/  
      \:\__\       |:|  |       \:\__\        /:/  /             \/__/      ~~~~         \:\__\    
       \___/        \|__|    ___ \/__/    ___ \/__/   ___  ___                            \/__/    
       /\__\       ___      /\__\        /\  \       /\__\/\  \                                    
      /:/  /      /\  \    /::|  |      /::\  \     /:/  /::\  \                                   
     /:/__/       \:\  \  /:|:|  |     /:/\:\  \   /:/  /:/\:\  \                                  
    /::\__\____   /::\__\/:/|:|  |__  /:/  \:\__\ /:/  /::\~\:\  \                                 
   /:/\:::::\__\_/:/\/__/:/ |:| /\__\/:/__/ \:|__/:/__/:/\:\ \:\__\                                
   \/_|:|~~|~ /\/:/  /  \/__|:|/:/  /\:\  \ /:/  |:\  \:\~\:\ \/__/                                
      |:|  |  \::/__/       |:/:/  /  \:\  /:/  / \:\  \:\ \:\__\                                  
      |:|  |   \:\__\       |::/  /    \:\/:/  /   \:\  \:\ \/__/                                  
      |:|  |    \/__/       /:/  /      \::/__/     \:\__\:\__\                                    
       \|__|                \/__/        ~~          \/__/\/__/                                    
*/


/****************************************************************************************************/


/* recommended CSS reset, based on work by Eric Meyer - http://meyerweb.co */


/****************************************************************************************************/

@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap");
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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

:focus {
    outline: none;
}

img {
    max-width: 100%;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}
.table tbody tr td {
	border-top:unset !important;
	
}

caption,
td {
    text-align: left;
    font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}


/****************************************************************************************************/


/* more resets */


/****************************************************************************************************/

* {
    margin: 0;
    padding: 0;
}

*,
:after,
:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

a:hover {
    cursor: pointer;
}

ul {
    list-style: none;
    list-style-type: none;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}

.mobile_hidden {
    display: none;
}


/****************************************************************************************************/


/* css3 animations */


/****************************************************************************************************/

@keyframes bounce {
    0%,
    20%,
    60%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    80% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}


/****************************************************************************************************/


/* structure */


/****************************************************************************************************/
/*-------------------------------------------*\
** Global
\*-------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    outline: 0;
  }
  
  body {
    height: 100%;
    font-family: "Raleway", sans-serif;
    /*background: #efefef;*/
  }
  
  html,
  body {
      /* added font-size to test -- mjd 
    font-size: 62.5%;*/
    -webkit-font-smoothing: antialiased;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
/*  
body,
html {
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
}

body {
    font-size: 62.5%;
    font-family: 'Raleway', sans-serif;
}

*/
/****************************************************************************************************/


/* fonts text typography */


/****************************************************************************************************/



h1 {
    font-size: 3rem;
    margin: 1rem 0;
    text-transform: capitalize;
    color: #1B334C;
    font-weight: 900;
  }

h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    text-transform: capitalize;
    color: #1B334C;
    font-weight: 900;
  }

h3 {
    font-size: 2rem;
    margin: 1rem 0;
    color: #1B334C;
    text-align: left;
    font-weight: 900;
  }


h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
    text-transform: capitalize;
    color: #1e4a7b;
    
  }

h5 {
    font-size: 1rem;
    margin: 1rem 0;
    text-transform: capitalize;
    color: #1B334C;
    font-weight: 900;
    text-align: center;
  }


h6 {
  font-size: 0.5rem;
  margin: 1rem 0;
  text-transform: capitalize;
  color: #1B334C;
  font-weight: 900;
}
.sponsors h4 {
    text-align: center;
}

p {
  /*  font-weight: 400;
    font-size: 1.2em;
    line-height: 1.7;*/
    margin: 0.8rem 0;
    
    
    text-align:left;
}

a[name] {
    padding-top: 120px;
    margin-top: -120px;
}

.primary_content2 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    padding: 40px 30px;
    background: #fff;
}


/****************************************************************************************************/


/* header */


/****************************************************************************************************

header {
    /* mjd test header
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    
    
    position: fixed;
    
    z-index: 9999;
    margin: -100px 0 0 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    /* took out because of stupid firefox width: -webkit-fill-available; 
    width: 100%;
}
*/

/****************************************************************************************************/


/* homepage < theme */


/****************************************************************************************************

.theme {
    width: 100%;
    max-height: 670px;
    overflow: hidden;
    position: relative;
}




.gradient {
    background-color: rgba(62, 126, 138, 0.6);
    width: 100%;
    height: 100%;
   padding: 27px 0 0 0;
}
/*
.theme video {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: -99;
    top: 0;
    left: 0;
}
*/
.theme_no_video {
    display: none;
}

.theme_content {
    max-width: 830px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0 25px 0;
}

.theme_content .logo {
    max-width: 750px;
    margin: 0 auto;
    height: auto;
    width: 100%;
}

.theme_content .tagline {
    color: #fff;
    font-size: 2.3em;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 700;
    margin: 15px 0 0 0;
}

.theme_content .date_location {
    color: #fff;
    font-size: 3em;
    padding: 15px 0;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    text-transform: uppercase;
    margin: 30px 0;
   
}

.date_location span {
    font-size: 0.8em;
}

.theme_content .register_btn {
    width: 240px;
    height: 70px;
    /*margin: 0 auto;*/
    margin:0 0 5% 16.5%;
}

.theme_content .register_btn2 {
    width: 240px;
    height: 70px;
    margin: -70px -30px 0 300px;
}

.theme_content .register_btn a {
    color: #fff;
    font-size: 1.7em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 70px;
    display: block;
    width: 240px;
    height: 70px;
    border: solid 1px #fff;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.theme_content .register_btn a:hover {
    background: #9f2021;
    border: solid 1px #9f2021;
    color: #fff;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}


/****************************************************************************************************/


/* homepage */


/****************************************************************************************************/

.primary_content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #111;
    padding: 60px 30px;
    background: #fff;
}


/****************************************************************************************************/


/* homepage < slider */


/****************************************************************************************************/
/*Company and all slider but speakers*/
.division_slider {
    clear: both;
    margin: 0 auto;
}

.division_wrap {
    height: 130px;
    display: table;
    margin: 0;
}

.division_wrap div {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 0 50px;
}

.division_wrap img {
    display: block;
    /*max-height: 130px;*/
    max-height: 77px;
    width: auto;
    margin: 0 auto;
}
/*SPEAKERS Slider*/





.division_wrap_speaker {
    height: 130px;
    display: table;
    margin: 0;
}

.division_wrap_speaker div {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 0 50px;
}

.division_wrap_speaker img {
    display: block;
    max-height: 130px;
    width: auto;
    margin: 0 auto;
}




/****************************************************************************************************/


/* homepage < slider overrides */


/****************************************************************************************************/

.bx-wrapper {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    left: 0 !important;
    background: none !important;
    border-bottom: solid 1px #eee;
    margin: 0 auto;
    padding: 0 0 30px 0;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    bottom: 15px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #eee;
    margin: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #b7b7b7;
}


/****************************************************************************************************/


/* homepage < about intro */


/****************************************************************************************************/

.intro_media {
    width: 45%;
    position: relative;
}

.intro_media.left {
    float: left;
    margin: 0 60px 30px 0;
}

.intro_media.right {
    float: right;
    margin: 0 0 53px 60px;
}

.intro_media img {
    width: 100%;
    height: auto;
}

.intro_video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    margin: 15px 0 7px 0;
}

.intro_media:after {
    content: "";
    width: 100%;
    height: 38px;
    background: url(/Conferences/images/east2020/video_drop_shadow.png) no-repeat;
    background-size: contain;
    position: absolute;
}

.intro_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro_img {
    width: 45%;
}
.intro_img.left {
    float: left;
    margin: 0 60px 30px 0;
}
.intro_img.right {
    float: right;
    margin: 0 0 30px 60px;
}
.intro_img img {
    width: 100%;
    height: auto;
}
/****************************************************************************************************/


/* homepage < slider < speakers */


/****************************************************************************************************/

.speakers {
    background: url(https://dzceab466r34n.cloudfront.net/images_nl/sw/Sectionbackground_SME19v4.jpg) no-repeat;
    background-size: cover;
}

.speakers h5 {
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0;
    color: #fff;
}

.speaker_headshots {
    text-align: center;
}

.speaker_headshots img {
    border-radius: 50%;
    /*
	-webkit-filter: grayscale(1);
	-webkit-filter: grayscale(100%);
	filter: gray;
	filter: grayscale(100%);
	*/
}

.spk_name {
    font-size: 1.7em;
    color: #fff;
    font-weight: 400;
}

.spk_comp {
    color: #f1f1f1;
    font-style: italic;
    font-size: 0.7em;
    font-weight: 700;
}

.spk_title {
    font-size: 1.1em;
    color: #f1f1f1;
}


/****************************************************************************************************/


/* homepage < highlights */


/****************************************************************************************************/

.highlight_wrapper {
    width: 100%;
    background: linear-gradient(to bottom left, rgba(14, 81, 150, 0.9), rgba(14, 81, 150, 0.8)), url(/conferences/images/east2020/placeholder--abstract.jpg) center center no-repeat;
    /*background: url(/Conferences/images/east2020/Greysectionbackground-SME19.png) no-repeat;*/
    background-size: cover;
    float: left;
}

.highlights {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0 auto;
    padding: 0 30px;
    color: #fff;
}
.highlights h3 {
    color:#fff;

}
.highlights div,
.who_attend div {
    width: 100%;
    padding: 30px;
    color: #fff;
}

.highlights div.icon {
    float: left;
    width: 130px;
    text-align: center;
    margin: 0 60px 60px 0;
    padding: 0;
}

.highlights div.icon i.fa {
    font-size: 5em;
    color: #fff;
    width: 130px;
    height: 130px;
    line-height: 130px;
    border-radius: 150px;
    border: solid 1px #fff;
}


/****************************************************************************************************/


/* homepage < who attend */


/****************************************************************************************************/

.who_attend {
    background: url(https://dzceab466r34n.cloudfront.net/Conference/StreamingMediaEast/2020/placeholder--location.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    padding: 30px 0;
    color: #fff;
    float: left;
}

.who_attend h3 {
    color: #fff;
}

.who_attend div {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0 auto;
    padding: 0 30px;
}

.who_attend ul {
    float: left;
    padding: 0 0 30px 0;
}

.who_attend li {
    /*font-size: 1.5em;*/
    float: left;
    width: 45%;
    padding: 15px 15px 0 15px;
    margin: 0 0 0 5%;
}

.who_attend a:visited {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}

.who_attend a {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}

.who_attend li:before {
    font-family: 'FontAwesome';
    content: '\f00c';
    margin: 0 5px 0 -30px;
    padding: 0 10px 0 0;
    color: #fff;
}


/****************************************************************************************************/


/* homepage < tracks */


/****************************************************************************************************/

.tracks {
   
}

.tracks_wrap {
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}



.track {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 99;
}

a.track_link {
    background-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    position: absolute;
    z-index: -99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.track:hover a.track_link {
    top: 45px;
    bottom: 45px;
    left: 45px;
    right: 45px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.track_info {
    padding: 75px;
}

.track img {
    max-width: 75%;
    height: auto;
    max-height: 120px;
}

.track .img2 {
    max-width: 100%;
    height: auto;
    max-height: 130px;
}

.track .img3 {
    max-width: 100%;
    height: 120px;
    max-height: 140px;
}
.track .img_bst {
    max-width: 100%;
    height: 118px;

}

.track p.fix {
    margin: 30px 0 0 0;
}

.btn2 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 200px;
    cursor: pointer;
    position: relative;
    margin: 30px auto 0 auto;
    text-indent: -50px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border: solid 1px #0e5196;
    color: #0e5196;
}

.btn2 span {
    display: inline-block;
    width: 50px;
    height: 48px;
    line-height: 48px;
    background: #0e5196;
    position: absolute;
    color: #fff;
    right: 0;
    text-indent: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.btn2 span .fa {
    line-height: 50px;
}

.track:hover .btn2 i {
    animation: bounce 0.7s;
}

.track:hover .btn2 {
    background: #0e5196;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.track:hover .btn2 span {
    background: #0e5196;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.track_sme {
    background: url(/Conferences/images/east2020/BusandStrat19block.jpg) no-repeat center center;
    background-size: cover;
}

.track_cds {
    background: url(/Conferences/images/east2020/CDSblock.jpg) no-repeat center center;
    background-size: cover;
}
.track_Discovery {
    background: url(/Conferences/images/east2020/Discovery19block.jpg) no-repeat center center;
    background-size: cover;
}

.track_OTT {
    background: url(/Conferences/images/east2020/OTT19block.jpg) no-repeat center center;
    background-size: cover;
}
.track_lss {
    background: url(/Conferences/images/east2020/LSS19block.jpg) no-repeat center center;
    background-size: cover;
}
.track_Tech {
    background: url(/Conferences/images/east2020/TechHowTo19block.jpg) no-repeat center center;
    background-size: cover;
}
.track_VES {
    background: url(/Conferences/images/east2020/VES19block.jpg) no-repeat center center;
    background-size: cover;
}



.track_smu {
    background: url(/Conferences/images/east2020/SMU19block.jpg) no-repeat center center;
    background-size: cover;
}

.primary_content div.descriptionLogo {
    width: 200px;
    min-height: 75px;
    background-repeat: no-repeat;
    float: left;
    margin: 0 10px 4px 0;
    background-position: center;
    overflow: hidden;
    text-align: center;
    font-weight: bolder;
}

/****************************************************************************************************/


/* homepage < testimonials */


/****************************************************************************************************

.testimonials {
    background: url(https://dzceab466r34n.cloudfront.net/images_nl/sw/Sectionbackground_SME19v4.png) no-repeat;
    background-size: cover;
    width: 100%;
    padding: 30px 0 0 0;
    color: #fff;
    float: left;
}

.testimonial {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0 auto;
    padding: 0 30px;
    clear: both;
}

.testimonial img {
    float: left;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: solid 3px #fff;
    margin: 0 30px 60px 0;
}

.testimonial_name {
    font-size: 1.7em;
    color: #fff;
    font-weight: 400;
}

*/
/****************************************************************************************************/


/* homepage < sponsors */


/****************************************************************************************************/

.sponsor_wrapper {
    margin: 60px 0;
    float: left;
    clear: both;
    width: 100%;
}

.sponsors {
    margin: 30px 0 0 0;
    color: #666;
}

.sponsors ul {
    text-align: center
}

.sponsors ul li {
    display: inline-block;
    margin: 15px;
}

.sponsors ul li {
    min-width: 120px;
    min-height: 60px;
    background: #ffffff;
    /*background:#f1f1f1;*/
}


/****************************************************************************************************/


/* subpage */


/****************************************************************************************************/

.subpage {
    width: 100%;
   /* background: url(/Conferences/images/east2020/bg_subpage.jpg) no-repeat fixed top center; */
    background-size: cover;
}
.subpage .hero__location2 {
    display:block;
   
  }
  
/*
 .subpage  .main_menu li:first-child {
    width: 169px;
    height: 120px;
    margin: -9px 12px 0 0;
    background: url(/Conferences/images/east2020/logo_menu.svg) no-repeat;
    background-size: 172px 87px;
    line-height: normal;
}

.subpage .main_menu li:first-child a {
    width: 190px;
    height: 50px;
    text-indent: -9999px;
    display: block;
}

.subpage .banner_date_location {
    top: 70px;
    position: fixed;
    background: url(/Conferences/images/east2020/Greysectionbackground-SME19.png) center center;
    opacity: 1.0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 2em;
    color: #444;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    z-index: 99;
}

.subpage .banner_date_location.scroll {
    top: -70px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
*/
.secondary_content {
    padding: 80px 30px 0 30px;
}
.subpage .primary_content {
    background: #fff;
    padding: 40px 30px 0 30px;
}
.menu_set{
    width: 322px;
    margin-top: -6.3%;
/*float:right;
margin-right: 39%;
margin-left: 37%;
padding-top: 9px;
padding-bottom: 13px;*/
}

.subpage .secondary_content {
    background: none;
}

.unorderedlist ul {
    margin: 0 0 10px 25px;
    font-weight: 400;
    font-size: 1.0em;
    line-height: 1.7;
    list-style-type: disc;
    text-align: left;
}

.unorderedlist ul li ul {
    margin: 0 0 10px 25px;
    font-weight: 400;
    font-size: 1.4em;
    line-height: 1.7;
    list-style-type: disc;
}

.unorderedlist2 ul {
    margin: 0 0 10px 25px;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.7;
    margin: 1em 0;
    list-style-type: none;
}

.unorderedlist2 ul li ul {
    margin: 0 0 10px 25px;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.7;
    margin: 1em 0;
    list-style-type: none;
    ;
}

/* Below are only for the landing pages of the colocated in SME site
    Not needed elsewhere */
.ColocatedImageHearder150{
    width:600px;
    height:150px;
}
.ColocatedImageHeader200{
    width:600px;
    height:200px;
}
.ColocatedImageHeaderBST {
    width: 700px;
    height: 200px;
}
.ColocatedImageHearderDiscovery {
    width: 700px;
    height: 151px;
}
/****************************************************************************************************/


/* subpage overrides */


/****************************************************************************************************/

.subpage_conference_info {
    background: url(/Conferences/images/east2020/Greysectionbackground-SME19.png) center center;
    background-size: cover;
    width: 100%;
    margin: 70px auto 0 auto;
    display: inline-block;
    text-align: center;
    border-bottom: solid 1px #ccc;
    padding: 15px;
}

.subpage_conference_info .theme_content {
    max-width: 400px;
    padding: 100px 0 30px 0;
}

.subpage_conference_info .date_location {
    font-size: 2em;
    color: #444;
}

.sub_page .primary_content {
    max-width: 1200px;
    width: 100%;
    padding: 30px;
}

.sub_page .primary_content {
    text-align: center;
}

.sub_page_agenda {
    max-width: 1600px !important;
    width: 100% !important;
}


/****************************************************************************************************************************/


/* Co-located events    */ 


/**********************************************************************************************************************/
/*
.colocated ul li {
    margin: 0.6rem;
    
}
.colocated ul li img {
  
    max-width: 75%;
}
.colocated ul {
    text-align: center;
    display: inline-flex;
}
.colocated ul li {
    display: inline-flex;
}
.colocated h5 {
    font-size: 2rem;
    color: #0e5196;
    text-align: center;
    margin-bottom: auto;
}

  width: intrinsic;          Safari/WebKit uses a non-standard name 
  width: -moz-max-content;    = Firefox/Gecko 
  width: -webkit-max-content; = Chrome 
*/



.colocated {
    margin: 90px 0px -45px;
    float: left;
    clear: both;
    width: 100%;
    background: #ffffff;
    
}

.colocated ul {
    text-align: center
}

.colocated ul li {
    display: inline-block;
    margin: 1%;
    
}

.colocated ul li {
    min-width: 151px;
    min-height: 60px;
    
}

/*
.colocated ul li:first-child {
    min-width: 140px;
    min-height: 60px;
    
    
}
*/
.colocated h5 {
    font-size: 2rem;
    color: #315565;
    text-align: center;
    margin-bottom: auto;
}

ul li span {
    font-size: 1em;
}
/****************************************************************************************************/


/* other screens */


/****************************************************************************************************/
@media screen and (max-width:1399px) {
 html,
  body {
      /* added font-size to test -- mjd 
    font-size: 62.5%;*/
	margin-left: unset;
  }
}


@media screen and (max-width:1160px) {
   /* .theme_content {
        padding: 100px 0 30px 0;
    }*/
    
p {
    /*  font-weight: 400;
      
      line-height: initial;*/
      margin: 0.8rem 0;
      font-size: unset;
      
      text-align:left;
  }
}

@media screen and (max-width:1070px) {
    .theme_content .logo {
        max-width: 540px;
    }
    .theme_content .tagline {
        font-size: 1.8em;
        margin: 5px 0 0 0;
    }
    .theme_content .date_location {
        font-size: 3em;
        padding: 10px 0;
        margin: 5px auto 30px auto;
    }
    .subpage_conference_info .date_location {
        font-size: 2em;
        margin: 0 0 0 0;
    }
}


/*************************************************************************** ad sizes ***************************************************************************/

/****************************************************************************************************************************************************************/
#ad_320x50 {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 999999;
    display: none;
    background: #444444;
    background: rgba(68, 68, 68, 1.0);
}




@media screen and (max-width:1030px) {
    .social ul li a {
        font-size: 1.4em;
    }
    .session {
        padding: 15px;
    }
    .menu_set {
        width: 281px;
        margin-top: -9.8%;
    }
}
/*
@media screen and (max-width:970px) {
    .main_menu ul li {
        margin: 0 15px 0 0;
    }
}
*/

@media screen and (max-width:950px) {
/*
    .main_menu ul li {
        margin: 0 14px 0 0;
    }
    .main_menu ul li a {
        font-size: 1.3em;
    }
    .subpage .main_menu li:last-child {
        width: 80px;
        height: 40px;
        margin: 15px 0 0 0;
        background: #9f2021;
        line-height: normal;
    }
    .subpage .main_menu li:last-child a {
        color: #fff;
        line-height: 40px;
        width: 80px;
        height: 40px;
        text-align: center;
    }
    */
    footer {
        max-width: 700px;
        margin: 0 auto;
    }
    .footer_block {
        float: left;
        margin: 0 2.6% 30px 0;
        padding: 0 30px 0 0;
        border-right: none;
        width: 46%;
        min-height: 140px;
    }
    .footer_block:nth-child(2),
    .footer_block:nth-child(4) {
        text-align: right;
        padding: 0 0 0 0;
    }
    .footer_block:nth-child(2) ul {
        float: right;
    }
    .sub_logo {
        float: right;
    }
}
/*
@media screen and (max-width:920px) {

    .main_menu ul li {
        margin: 0 10px 0 0;
    }
    .main_menu ul li a {
        font-size: 1.2em;
    }
}
*/
@media screen and (max-width:870px) {
  /*
    header,
    .list_grid_toggle {
        display: none;
    }
    .mobile_header,
    .mobile_menu_btn {
        display: block;
    }
    */
    .theme_content {
        padding: 20px 0 0px 0;
    }
    .subpage_conference_info {
        margin: 50px auto 0px auto;
    }
    .theme_content .date_location {
    margin:0px auto 30px auto;}
}

@media screen and (max-width:830px) {
    .theme_content .date_location {
        font-size: 2.8em;
        text-shadow: 2px 2px #000;
    }
   /* took out 12-15-19 mjd 
    h2 {
        font-size: 3.7em;
    }
    p {
        font-size: 1.5em;
        margin: 0.9em 0;
    }
    */
    .highlights {
        float: left;
    }
    .highlights div {
        width: 100%;
        margin: 0 0 30px 0;
        display: block;
        float: left;
        text-align: left;
    }
    .highlights div:last-child {
        margin: 0 0 30px 0;
    }
    .track:hover a.track_link {
        top: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    .track_info {
        padding: 45px;
    }
    .subpage .banner_date_location {
        top: 50px;
    }
    .gradient {
        padding:10px ;
    }
    
}
@media screen and (max-width:768px) {
.menu_set {
    width: 210px;
    float: right;
    margin-right: 39%;
    margin-top: -11.8%;
    
  }
  

}
@media screen and (max-width:760px) {
    .theme_video {
        display: none;
    }
   
    .theme_content {
        padding: 90px 0 60px 0;
    }

    .subpage .primary_content {
        
        padding: 20px 30px 0 30px;
    }
    .ColocatedImageHeader200 {
        width: 600px;
        height: 100px;
    }
    .ColocatedImageHearder150 {
        width: 600px;
        height: 78px;
    }
    .ColocatedImageHeaderBST {
        width: 700px;
        height: 100px;
    }
    .ColocatedImageHearderDiscovery {
        width: 700px;
        height: 100px;
    }/*
    .theme_no_video {
        display: block;
        background: url(https://dzceab466r34n.cloudfront.net/Conference/StreamingMediaEast/2020/placeholder--location.jpg) top left no-repeat;
        background-size: cover;
        min-height: 670px;
        position: absolute;
        z-index: -99;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }*/
    .sub_page .primary_content {
        padding: 100px 10px 60px 10px;
    }
    .session_time {
        font-size: 1.3em;
        padding: 10px;
    }
    .session {
        margin: 0 0 0 70px;
    }
}

@media screen and (max-width:630px) {
    .theme_content .logo {
        width: 100%;
    }

    .subpage .banner_date_location {
        font-size: 1.3em;
    }
    .mobile_hidden {
        display: inline;
    }
    .intro_media {
        float: none;
        margin: 0 auto 15px auto;
        width: 100%;
    }
    h3 {
        font-size: 2.7em;
        margin: 0 0 0 0;
    }
    .highlight_wrapper {
        background: url(/Conferences/images/east2020/Greysectionbackground-SME19.png) no-repeat;
        background-size: cover;
    }
    .highlights div {
        text-align: center;
    }
    .highlights div.icon {
        float: left;
        width: 100%;
        margin: 0 0 30px 0;
    }
    .who_attend li {
        width: 95%;
    }
    
    .testimonial {
        text-align: center;
    }
    .testimonial img {
        float: none;
        clear: both;
        display: inline-block;
        margin: 0 auto;
    }
    .footer_block {
        float: left;
        clear: both;
        margin: 15px auto 0 auto;
        padding: 15px 0 0 0;
        border-top: solid 1px #eee;
        width: 100%;
        min-height: inherit;
        text-align: center;
    }
    .footer_block:nth-child(2),
    .footer_block:nth-child(4) {
        text-align: center;
        padding: 15px 0 0 0;
    }
    .footer_block:nth-child(2) ul {
        float: none;
        margin: 0 auto;
        width: 165px;
    }
    .email_updates {
        padding: 15px 0 30px 0;
    }
    .sub_logo {
        float: none;
        margin: 10px auto 15px auto;
    }

    .division_wrap {
        
        
        margin: 36px;
    }
    .division_wrap img{
        margin: 0px 20px 45px;
    }
    /*.intro_media {
        display:none;
    }*/
}

/*NEW from Bill*/
@media screen and (max-width:530px) {
    #ad_468x60 {
        display: none;
    }

    .primary_content{

        padding: 30px 30px;
    }
    #div-gpt-ad-1371156417389-0 {
        display: none;
    }

    #ad_320x50 {
        display: block;
    }

    #div-gpt-ad-1371156417389-2 {
        display: block;
    }

    #bcVideoNavigation {
        height: 60px;
        padding: 3px;
    }

    .intro_img {
        width: 98%;
        
    }
    
        .intro_img.left {
            float: left;
            
            /*padding-bottom: 65.25%;
            margin: 25px 25px 0 0;*/
            margin: 0 0 34px 0px;
        }
        
        .intro_img.right {
            display:none;
        }
}
/*END NEW from Bill*/



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

    h2 {
        font-size: 2rem;
    }
    p {
        font-size: 1.2rem;
    }
    .theme_content .register_btn {
        width: 240px;
        height: 115px;
        margin: 0px 0 1px 38px;
    }
    .theme_content .register_btn2 {
        /* width: 164px; */
        /* height: 22px; */
        margin: 15px auto auto 0px;
    }


    .theme_content {
        padding: 60px 0 60px 0;}

    .theme_content .tagline {
        font-size: 1.6em;
        margin: 5px 0 0 0;
    }
    
    .theme_content .date_location{
font-size: 0.8em;
    }

    h3 {
        font-size: 1.5em;
    }
    
}