@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

	


    
	
    
    .speaker{
        display: block;
        float: left;
        clear: none;
        background-color: white;
        border-radius: 1em;
        position: relative;
        cursor: pointer;
    }
    
    
    .speaker-right{
        width: calc(100% - 3em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: absolute;
        top: 1.5em;
        right: 1.5em;
        text-align: right;
    }
    
    
    .speaker-right p{
        float: right;
        
    }   
    
    .speaker-right h4{
        font-weight: bolder;
        
    }
    
    
    .speaker-left{
        width: 100%;
        height: 60%;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: absolute;
        z-index: 10;
        bottom: 0;
        left: 0;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .country{
        float: right;
        width: 1.7em;
        height: 1.7em;
        background-position: center;
        background-size: cover;
        border-radius: 1.5em;
        background-color: rgba(166,166,166,1.00);
        clear: both;
        display: block;
    }
    
    #ghana{
        background-image: url();
    }
    
    #england{
        background-image:url("../img/country-flags/england.png");
    }
    
    .speaker:hover{
        background-color: #E3ECEC;
    }
    
    .speaker:hover .speaker-left{
         height: 62.5%;
    }
    
    
    
    
    
    
    
    
    /*Speaker Popup*/
    
    .sp-container .speaker-right{
        width: calc(100% - 3em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: relative;
        top: auto;
        right: auto;
        text-align: left;
        margin: 1em auto auto;
        overflow-y: scroll;
    }
    
    
    .sp-container .speaker-right p{
        float: left;
        
    }   
    
    .sp-container .speaker-right h4{
        font-weight: bold;
        
    }
    
    
    .sp-container .speaker-left{
        width: 100%;
        height: 50vh;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: relative;
        z-index: 10;
        bottom: auto;
        left: auto;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .sp-container .country{
        float: left;
        
    }
    
    .speakertopics{
        width: 100%;
        display: block;
        float: left;
        clear: none;
        margin: 1em auto;
    }
    
    
    
    /*Speaker Popup*/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*Speakers Page*/
    
    .speakerslist{
        width: 90%;
        height: auto;
        float: left;
        clear: both;
        margin: auto 5%;
          display: grid; 
          grid-auto-flow: row dense; 
          grid-auto-columns: 1fr; 
          grid-auto-rows: 1fr; 
          grid-template-columns: 1fr 1fr; 
          grid-template-rows: 1fr; 
          gap: 1em 1em; 
          grid-template-areas: 
            ". ."; 
    }
    
    
    
    
    .speak-title{
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        background-color: #21B19C;
         display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    
    .speak-title h3{
        color: #fff ;
        rotate: -90deg;
        width: auto;
        height: auto;
    }
    
    
    .speakerslist .speaker{
        height: 65vh;
        width: 100%;
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        margin: auto auto 1em auto ;
        transition: all .3s;
        overflow: hidden;
        font-size: .9em;
    }
    
    
    .speakerslist .speaker-left{
        background-position: top center;
    }
    















/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
	
	
	
	
    
    .speaker{
        display: block;
        float: left;
        clear: none;
        background-color: white;
        border-radius: 1em;
        position: relative;
        cursor: pointer;
    }
    
    
    .speaker-right{
        width: calc(100% - 3em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: absolute;
        top: 1.5em;
        right: 1.5em;
        text-align: right;
    }
    
    
    .speaker-right p{
        float: right;
        
    }   
    
    .speaker-right h4{
        font-weight: bold;
        
    }
    
    
    .speaker-left{
        width: 100%;
        height: 60%;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: absolute;
        z-index: 10;
        bottom: 0;
        left: 0;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .country{
        float: right;
        width: 2.5em;
        height: 2.5em;
        background-position: center;
        background-size: cover;
        border-radius: 1.5em;
        background-color: rgba(166,166,166,1.00);
        clear: both;
        display: block;
    }
    
    #ghana{
        background-image: url();
    }
    
    #england{
        background-image:url("../img/country-flags/england.png");
    }
    
    .speaker:hover{
        background-color: #E3ECEC;
    }
    
    .speaker:hover .speaker-left{
         height: 62.5%;
    }
    
    
    
    
    
    
    
    
    /*Speaker Popup*/
    
    .sp-container .speaker-right{
        width: calc(100% - 3em);
        height: calc(100% - 5em);
        display: block;
        float: left;
        clear: none;
        position: relative;
        top: auto;
        right: auto;
        text-align: left;
        margin: 5em auto auto;
        overflow-y: scroll;
    }
    
    
    .sp-container .speaker-right p{
        float: left;
        
    }   
    
    .sp-container .speaker-right h4{
        font-weight: bold;
        
    }
    
    
    .sp-container .speaker-left{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: relative;
        z-index: 10;
        bottom: auto;
        left: auto;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .sp-container .country{
        float: left;
        
    }
    
    .speakertopics{
        width: 100%;
        display: block;
        float: left;
        clear: none;
        margin: 1em auto;
    }
    
    
    
    /*Speaker Popup*/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*Speakers Page*/
    
    .speakerslist{
        width: 90%;
        height: auto;
        float: left;
        clear: both;
        margin: auto 5%;
          display: grid; 
          grid-auto-flow: row dense; 
          grid-auto-columns: 1fr; 
          grid-auto-rows: 1fr; 
          grid-template-columns: 1fr 1fr; 
          grid-template-rows: 1fr; 
          gap: 1em 1em; 
          grid-template-areas: 
            ". ."; 
    }
    
    
    
    
    .speak-title{
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        background-color: #21B19C;
         display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    
    .speak-title h3{
        color: #fff ;
        rotate: -90deg;
        width: auto;
        height: auto;
    }
    
    
    .speakerslist .speaker{
        height: 65vh;
        width: 100%;
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        margin: auto auto 1em auto ;
        transition: all .3s;
        overflow: hidden;
        font-size: .9em;
    }
    
    
    .speakerslist .speaker-left{
        background-position: top center;
    }
    
    
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

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

    
    
    
    
    
    .speaker{
        display: block;
        float: left;
        clear: none;
        background-color: white;
        border-radius: 1em;
        position: relative;
        cursor: pointer;
    }
    
    
    .speaker-right{
        width: calc(100% - 3em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: absolute;
        top: 1.5em;
        right: 1.5em;
        text-align: right;
    }
    
    
    .speaker-right p{
        float: right;
        
    }   
    
    .speaker-right h4{
        font-weight: bold;
        
    }
    
    
    .speaker-left{
        width: 100%;
        height: 60%;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: absolute;
        z-index: 10;
        bottom: 0;
        left: 0;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .country{
        float: right;
        width: 2.5em;
        height: 2.5em;
        background-position: center;
        background-size: cover;
        border-radius: 1.5em;
        background-color: rgba(166,166,166,1.00);
        clear: both;
        display: block;
    }
    
    #ghana{
        background-image: url();
    }
    
    #england{
        background-image:url("../img/country-flags/england.png");
    }
    
    .speaker:hover{
        background-color: #E3ECEC;
    }
    
    .speaker:hover .speaker-left{
         height: 62.5%;
    }
    
    
    
    
    
    
    
    
    /*Speaker Popup*/
    
    .sp-container .speaker-right{
        width: calc(100% - 3em);
        height: calc(100% - 5em);
        display: block;
        float: left;
        clear: none;
        position: relative;
        top: auto;
        right: auto;
        text-align: left;
        margin: 5em auto auto;
        overflow-y: scroll;
    }
    
    
    .sp-container .speaker-right p{
        float: left;
        
    }   
    
    .sp-container .speaker-right h4{
        font-weight: bold;
        
    }
    
    
    .sp-container .speaker-left{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: relative;
        z-index: 10;
        bottom: auto;
        left: auto;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .sp-container .country{
        float: left;
        
    }
    
    .speakertopics{
        width: 100%;
        display: block;
        float: left;
        clear: none;
        margin: 1em auto;
    }
    
    
    
    /*Speaker Popup*/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*Speakers Page*/
    
    .speakerslist{
        width: 90%;
        height: auto;
        float: left;
        clear: both;
        margin: auto 5%;
                  display: grid; 
          grid-auto-flow: row dense; 
          grid-auto-columns: 1fr; 
          grid-auto-rows: 1fr; 
          grid-template-columns: 1fr 1fr 1fr; 
          grid-template-rows: 1fr; 
          gap: 1em 1em; 
          grid-template-areas: 
            ". . ."; 
    }
    
    
    
    
    .speak-title{
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        background-color: #21B19C;
         display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    
    .speak-title h3{
        color: #fff ;
        rotate: -90deg;
        width: auto;
        height: auto;
    }
    
    
    .speakerslist .speaker{
        height: 65vh;
        width: 100%;
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        margin: auto auto 1em auto ;
        transition: all .3s;
        overflow: hidden;
        font-size: .9em;
    }
    
    
    .speakerslist .speaker-left{
        background-position: top center;
    }
    
    
}


    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    

    /* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
	
    
    
    
    
    
    
    .speaker{
        display: block;
        float: left;
        clear: none;
        background-color: white;
        border-radius: 1em;
        position: relative;
        cursor: pointer;
    }
    
    
    .speaker-right{
        width: calc(100% - 3em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: absolute;
        top: 1.5em;
        right: 1.5em;
        text-align: right;
    }
    
    
    .speaker-right p{
        float: right;
        
    }   
    
    .speaker-right h4{
        font-weight: bold;
        
    }
    
    
    .speaker-left{
        width: 100%;
        height: 60%;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: absolute;
        z-index: 10;
        bottom: 0;
        left: 0;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .country{
        float: right;
        width: 2.5em;
        height: 2.5em;
        background-position: center;
        background-size: cover;
        border-radius: 1.5em;
        background-color: rgba(166,166,166,1.00);
        clear: both;
        display: block;
    }
    
    #ghana{
        background-image: url();
    }
    
    #england{
        background-image:url("../img/country-flags/england.png");
    }
    
    .speaker:hover{
        background-color: #E3ECEC;
    }
    
    .speaker:hover .speaker-left{
         height: 62.5%;
    }
    
    
    
    
    
    
    
    
    /*Speaker Popup*/
    
    .sp-container .speaker-right{
        width: calc(100% - 3em);
        height: calc(100% - 5em);
        display: block;
        float: left;
        clear: none;
        position: relative;
        top: auto;
        right: auto;
        text-align: left;
        margin: 5em auto auto;
        overflow-y: scroll;
    }
    
    
    .sp-container .speaker-right p{
        float: left;
        
    }   
    
    .sp-container .speaker-right h4{
        font-weight: bold;
        
    }
    
    
    .sp-container .speaker-left{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: relative;
        z-index: 10;
        bottom: auto;
        left: auto;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .sp-container .country{
        float: left;
        
    }
    
    .speakertopics{
        width: 100%;
        display: block;
        float: left;
        clear: none;
        margin: 1em auto;
    }
    
    
    
    /*Speaker Popup*/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*Speakers Page*/
    
    .speakerslist{
        width: 90%;
        height: auto;
        float: left;
        clear: both;
        margin: auto 5%;
          display: grid; 
          grid-auto-flow: row dense; 
          grid-auto-columns: 1fr; 
          grid-auto-rows: 1fr; 
          grid-template-columns: 1fr 1fr 1fr 1fr; 
          grid-template-rows: 1fr; 
          gap: 1em 1em; 
          grid-template-areas: 
            ". . . ."; 
    }
    
    
    
    
    .speak-title{
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        background-color: #21B19C;
         display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    
    .speak-title h3{
        color: #fff ;
        rotate: -90deg;
        width: auto;
        height: auto;
    }
    
    
    .speakerslist .speaker{
        height: 65vh;
        width: 100%;
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        margin: auto auto 1em auto ;
        transition: all .3s;
        overflow: hidden;
        font-size: .9em;
    }
    
    
    .speakerslist .speaker-left{
        background-position: top center;
    }
    
    
}




    
    
    /* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

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

    
    
    
    
    
    
    .speaker{
        display: block;
        float: left;
        clear: none;
        background-color: white;
        border-radius: 1em;
        position: relative;
        cursor: pointer;
    }
    
    
    .speaker-right{
        width: calc(100% - 3em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        position: absolute;
        top: 1.5em;
        right: 1.5em;
        text-align: right;
    }
    
    
    .speaker-right p{
        float: right;
        
    }   
    
    .speaker-right h4{
        font-weight: bold;
        
    }
    
    
    .speaker-left{
        width: 100%;
        height: 60%;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: absolute;
        z-index: 10;
        bottom: 0;
        left: 0;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .country{
        float: right;
        width: 2.5em;
        height: 2.5em;
        background-position: center;
        background-size: cover;
        border-radius: 1.5em;
        background-color: rgba(166,166,166,1.00);
        clear: both;
        display: block;
    }
    
    #ghana{
        background-image: url();
    }
    
    #england{
        background-image:url("../img/country-flags/england.png");
    }
    
    .speaker:hover{
        background-color: #E3ECEC;
    }
    
    .speaker:hover .speaker-left{
         height: 62.5%;
    }
    
    
    
    
    
    
    
    
    /*Speaker Popup*/
    
    .sp-container .speaker-right{
        width: calc(100% - 3em);
        height: calc(100% - 5em);
        display: block;
        float: left;
        clear: none;
        position: relative;
        top: auto;
        right: auto;
        text-align: left;
        margin: 5em auto auto;
        overflow-y: scroll;
    }
    
    
    .sp-container .speaker-right p{
        float: left;
        
    }   
    
    .sp-container .speaker-right h4{
        font-weight: bold;
        
    }
    
    
    .sp-container .speaker-left{
        width: 100%;
        height: 100%;
        display: block;
        float: left;
        clear: none;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: relative;
        z-index: 10;
        bottom: auto;
        left: auto;
        transition: all .3s;
        transform-origin: top center;
    }
    
    
    
    .sp-container .country{
        float: left;
        
    }
    
    .speakertopics{
        width: 100%;
        display: block;
        float: left;
        clear: none;
        margin: 1em auto;
    }
    
    
    
    /*Speaker Popup*/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*Speakers Page*/
    
    .speakerslist{
        width: 85%;
        height: auto;
        float: left;
        clear: both;
        margin: auto 7.5%;
          display: grid; 
          grid-auto-flow: row dense; 
          grid-auto-columns: 1fr; 
          grid-auto-rows: 1fr; 
          grid-template-columns: 1fr 1fr 1fr 1fr 1fr; 
          grid-template-rows: 1fr; 
          gap: 1em 1em; 
          grid-template-areas: 
            ". . . . ."; 
    }
    
    
    
    
    .speak-title{
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        background-color: #21B19C;
         display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    
    .speak-title h3{
        color: #fff ;
        rotate: -90deg;
        width: auto;
        height: auto;
    }
    
    
    .speakerslist .speaker{
        height: 65vh;
        width: 100%;
        border-radius: 1em;
        display: block;
        float: left;
        clear: none;
        margin: auto auto 1em auto ;
        transition: all .3s;
        overflow: hidden;
        font-size: .9em;
    }
    
    
    .speakerslist .speaker-left{
        background-position: top center;
    }
    
    
    
    
    
    
    
    
    
    
    
}
    
        /* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
    
}
            /* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

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

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
		
}