@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,700,900");

.navBar {    
    background-color: rgb(56, 56, 56);     
    height: 40px;
}

.navBar ul {
    list-style-type: none;
    margin-left: 50px;
    padding: 0;
    overflow: hidden;
}

.navBar li {
    display: inline;
    margin-right: 10px;    
}

.navBar li a:hover:not(.active a) {
    background-color: #111111;
}

a {
    text-decoration: none;
    color: white;
    font-family: "Source Sans Pro", Helvetica, sans-serif;   
    font-weight: 300; 
    font-size: 1.2em;
    line-height: 40px;
    padding: 10px;
    border-radius: 5px;
}

.active a
{
    background-color: #04aa6d;       
}

.text-links {
    text-decoration: none;
    color: blue;
    font-family: "Source Sans Pro", Helvetica, sans-serif;   
    font-size: 1em;
    padding: 0;
}

body {
    background-color: rgb(255, 252, 243); 
}

h1 {
    color: rgb(127, 127, 255);
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-weight: 700;    
    line-height: 0.5;    
}

h2 {
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-weight: 700;    
}

h4 {
    color: black;            
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-weight: 300;
    line-height: 0.1;    
}

.titleFormat {
    padding: 50px;    
}

.contentFormat {    
    width: 80%;
    margin: auto;    
    padding-bottom: 5em;
    background-color: white;
}

.tiles {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;  
    margin: 0 0 0 -0.5em;  
}

    .tiles article {
        -moz-transition: -moz-transform 0.5s ease, opacity 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
        -ms-transition: -ms-transform 0.5s ease, opacity 0.5s ease;
        transition: transform 0.5s ease, opacity 0.5s ease;
        position: relative;
        width: calc(33.33333% - 2.5em);
        margin: 2.5em 0 0 2.0em;
    }

        .tiles article > .image {
            -moz-transition: -moz-transform 0.5s ease;
            -webkit-transition: -webkit-transform 0.5s ease;
            -ms-transition: -ms-transform 0.5s ease;
            transition: transform 0.5s ease;
            position: relative;
            display: block;
            width: 100%;
            border-radius: 4px;
            overflow: hidden;
        }

        .tiles article > .image img {
            display: block;
            width: 100%;
        }

        .tiles article > .image:before {
            pointer-events: none;
            -moz-transition: background-color 0.5s ease, opacity 0.5s ease;
            -webkit-transition: background-color 0.5s ease, opacity 0.5s ease;
            -ms-transition: background-color 0.5s ease, opacity 0.5s ease;
            transition: background-color 0.5s ease, opacity 0.5s ease;
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 1.0;
            z-index: 1;
            opacity: 0.8;
        }

        .tiles article > .image:after {
            pointer-events: none;
            -moz-transition: opacity 0.5s ease;
            -webkit-transition: opacity 0.5s ease;
            -ms-transition: opacity 0.5s ease;
            transition: opacity 0.5s ease;
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;            
            background-position: center;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            opacity: 0.25;
            z-index: 2;
        }

    .tiles article > a {
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -moz-transition: background-color 0.5s ease, -moz-transform 0.5s ease;
        -webkit-transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
        -ms-transition: background-color 0.5s ease, -ms-transform 0.5s ease;
        transition: background-color 0.5s ease, transform 0.5s ease;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0em;
        border-radius: 4px;
        border-bottom: 0;
        color: #ffffff;
        text-align: center;
        text-decoration: none;
        z-index: 3;
    }

        .tiles article > a > :last-child {
            margin: 0;
        }

        .tiles article > a:hover {
            color: #ffffff !important;
        }

        .tiles article > a h2 {
            margin: 0;
        }

    .tiles article > a .content {
        -moz-transition: max-height 0.5s ease, opacity 0.5s ease;
        -webkit-transition: max-height 0.5s ease, opacity 0.5s ease;
        -ms-transition: max-height 0.5s ease, opacity 0.5s ease;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        width: 90%;
        max-height: 0;
        line-height: 1.5;
        margin-top: 0.35em;
        opacity: 0;
    }

        .tiles article > a .content > :last-child {
            margin-bottom: 0;
        }
    

    body:not(.is-touch) .tiles article:hover > .image {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

        body:not(.is-touch) .tiles article:hover > .image:before {
            background-color: #333333;
            opacity: 0.35;
        }

        body:not(.is-touch) .tiles article:hover > .image:after {
            opacity: 0;
        }

    body:not(.is-touch) .tiles article:hover .content {
        max-height: 15em;
        opacity: 1;
    }

    #header {
		padding: 10px 0 0 100px ;
	}

		#header .logo {
			display: block;
			border-bottom: 0;
			color: inherit;						
			margin: 0 0 0 0;
			text-decoration: none;			
			display: inline-block;
		}

			#header .logo > * {
				display: inline-block;
				vertical-align: middle;
			}

			#header .logo .symbol {
				margin-right: 0.65em;
			}

				#header .logo .symbol img {
					display: block;
					width: 40%;
					height: 40%;
				}

.inner {
    text-decoration: none;
    color: rgb(92, 92, 92);
    font-family: "Source Sans Pro", Helvetica, sans-serif;   
    font-weight: 300; 
    font-size: 1.4em;
    line-height: 40px;
    top: 40px;
    padding-left: 100px;    
    padding-right: 100px;
}

.center-img {
    text-align: center;
}

code {
    background: rgba(144, 144, 144, 0.075);
    border-radius: 4px;
    border: solid 1px #c9c9c9;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    margin: 0 0.25em;
    padding: 0.25em 0.65em;
}

pre {
    -webkit-overflow-scrolling: touch;
    font-family: "Courier New", monospace;
    font-size: 0.7em;
    margin: 0 0 2em 0;
}

    pre code {
        display: block;
        line-height: 1.75;
        padding: 1em 1.5em;
        overflow-x: auto;
    }

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;    
}

.slideshow-container {
    max-width: 1024px;
    position: relative;    
    margin: auto;
    overflow: hidden;
    height: 100%;    
}

.center-fit {
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
}

iframe {
    display: block;
    margin: 0 auto;
}

.slideshow-container .slider {
    height: 100%;
    white-space: nowrap;
    font-size: 0;
    transition: 0.8s;
}

.slideshow-container .slider > * {
    font-size: 1rem;
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    height: 100%;
    width: 100%;
    background: none 50% no-repeat;
    background-size: cover;
}

.slideshow-container .prevNext {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 100%;
    height: 0;
}

.slideshow-container .prevNext > div+div {
    visibility: hidden;
}

.slideshow-container .prevNext a {
    background: #fff;
    position: absolute;
    width: 60px;
    height: 60px;        
    font-weight: bold;
    font-size: 28px;
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.slideshow-container .prevNext a:hover {
    opacity: 1;
}

.slideshow-container .prevNext a+a {
    left: auto;
    right: 0;
}

.slideshow-container .bullets {
    position: absolute;
    z-index: 2;
    bottom: 0;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

.slideshow-container .bullets > a {
    display: inline-block;
    width: 10px;
    height: 10px;        
    background: rgba(255, 255, 255, 1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slideshow-container .bullets > a+a {
    background: rgba(255, 255, 255, 0.5);
}

.slideshow-container .bullets > a:hover {
    background: rgba(255, 255, 255, 0.7) !important;
}

.slideshow-container > s:target ~ .bullets >* {background: rgba(255, 255, 255, 0.5);}
#s1:target ~ .bullets >*:nth-child(1) {background: rgba(255, 255, 255, 1);}
#s2:target ~ .bullets >*:nth-child(2) {background: rgba(255, 255, 255, 1);}
#s3:target ~ .bullets >*:nth-child(3) {background: rgba(255, 255, 255, 1);}
#s4:target ~ .bullets >*:nth-child(4) {background: rgba(255, 255, 255, 1);}
#s5:target ~ .bullets >*:nth-child(5) {background: rgba(255, 255, 255, 1);}

.slideshow-container >s:target ~ .prevNext >* { visibility: hidden; }
#s1:target ~ .prevNext >*:nth-child(1) { visibility: visible; }
#s2:target ~ .prevNext >*:nth-child(2) { visibility: visible; }
#s3:target ~ .prevNext >*:nth-child(3) { visibility: visible; }
#s4:target ~ .prevNext >*:nth-child(4) { visibility: visible; }
#s5:target ~ .prevNext >*:nth-child(5) { visibility: visible; }

#s1:target ~ .slider { transform: translateX(0%); -webkit-transform: translateX(0%); }
#s2:target ~ .slider { transform: translateX(-100%); -webkit-transform: translateX(-100%); }
#s3:target ~ .slider { transform: translateX(-200%); -webkit-transform: translateX(-200%); }
#s4:target ~ .slider { transform: translateX(-300%); -webkit-transform: translateX(-300%); }
#s5:target ~ .slider { transform: translateX(-400%); -webkit-transform: translateX(-400%); }

.slideshow-container {
    color:#fff;
    text-align: center;
}

.slideshow-container .slider h2 {
    margin-top: 40vh;
    font-weight: 200;
    letter-spacing: -0.06em;
    word-spacing: 0.2em;
    font-size: 3em;
}

.slideshow-container a {
    border-radius: 50%;
    margin: 0 3px;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

.ref-links {    
    display: block;
    width: 40%;
    margin-left: 3em;
}

.ref-links li {
    display: inline;    
}

.ref-links a {
    padding: 4px;
}

.ref-links img {
    width: 10%;        
}
