/************************************************************************************
* FONTS
*/
/* lato-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/lato/lato-v24-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/lato/lato-v24-latin_latin-ext-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/lato/lato-v24-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-900 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/lato/lato-v24-latin_latin-ext-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-900italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 900;
  src: url('fonts/lato/lato-v24-latin_latin-ext-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-family: 'Hack';
  src: url('fonts/hack/hack-regular.woff2') format('woff2'), url('fonts/hack/hack-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Hack';
  src: url('fonts/hack/hack-bold.woff2') format('woff2'), url('fonts/hack/hack-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Hack';
  src: url('fonts/hack/hack-italic.woff2') format('woff2'), url('fonts/hack/hack-italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Hack';
  src: url('fonts/hack/hack-bolditalic.woff2') format('woff2'), url('fonts/hack/hack-bolditalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}

* {
    box-sizing: border-box;
}

body {
    padding: 0px;
    margin: 0px;
    background: #fff;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

a:visited {color: rgb(0, 0, 238); }
a[href]:hover {
    text-decoration: underline;
}
/* Used for better anchor behavior in the context of a fixed header */
.anchor{
   display:block;
   visibility:hidden;
}

/* Our top box */

div#top {
    position: absolute;
    width: 895px;
    left: 230px;
    top: 0px;
    text-align: left;
    z-index: 10;
    height: 150px;
    background: #fff;
}

div#top img#logo {
	width: 60%;
    max-width: 500px;
	height: auto;
    margin-top: 10px;
    margin-left: 5px;
    padding: 10px 0;
	float: none;
}

.facebook-icon,
.twitter-icon,
.instagram-icon,
.email-icon,
.donate-link {
    text-indent: -9999px;
    height: 40px;
    width: 40px;
    background-size: 40px 40px;
    display: inline-block;
    float: right;
    margin-top: 20px;
    margin-left: 10px;
    padding: 5px;
    background-repeat: no-repeat;
	background-color: #B6D990;
}

.facebook-icon:hover,
.twitter-icon:hover,
.email-icon:hover,
.donate-link {
	background-color: #75328A;
}

.donate-link {
	width: auto;
	color: white;
	text-indent: initial;
	line-height: 30px;
	font-size: 20px;
    margin-right: 20px;
	transition: all 1s;
display: inline-block;
}
.donate-link:hover{
	    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
}
.facebook-icon {
    background-image: url('/images/facebook.png');
}

.instagram-icon {
    background-image: url('/images/instagram.png');
}

.twitter-icon {
    background-image: url('/images/twitter.png');
}

.email-icon {
    background-image: url('/images/email.png');
}

.plus-sign {
    background-image: url('/images/plus-sign.png');
    background-repeat: no-repeat;
    height: 60px;
    width: 60px;
    background-size: 60px 60px;
    display: block;
}
/* Sidebar and menu links */

div#sidebar, .sidebar {
    position:   absolute;
    left:       50px;
    top:        0px;
	bottom:     0px;
    width:      165px;
	z-index:    9;
}

div#sidebar img,.sidebar img {
	margin: 15px auto; 
	display: block;
}

div#sidebar > ul, .sidebar > ul {
    margin: 0px;
    padding: 0px;
}

div#sidebar > ul > li, .sidebar > ul > li {
    float: left;
    position: relative;
    display: inline;
    width: 100%;
    background-color: #B6D990;
    margin-bottom: 10px;
    padding: 10px;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}

div#sidebar > ul > li>a, div#sidebar strong {
    font-size: 18px;
    font-weight: 700;
    display: block;
    color: #ffffff !important;
    text-decoration: none;
}

div#sidebar > ul li:hover {
    background-color: #75328A;
}
/* Main body entries and images */

div#body {
    position: absolute;
    left: 225px;
    top: 175px;
    max-width: 895px;
    padding-left: 10px;
    padding-right: 20px;
    margin: 0px;
    color: #75328A;
}

div.inset {
    margin-top: 20px;
    margin-left: 30px;
}

span.date {
    font-size: 10px;
    font-family: courier;
    float: right;
    clear: both;
}

div.item {
    float: left;
    padding: 0px 0px 20px 0px !important;
	width: 100%;
}

div.item>img,
div.item>div#map,
div.item .side {
    float: left;
    max-width: 100%;
    height: auto;
    vertical-align: text-top;
    padding: 0 10px 20px;
}

div.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    
    padding-top: 25px;
    height: 0;
}

iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div#cm_map {
    border: 1px solid black;
    width: 350px;
    height: 200px;
    -moz-box-shadow: 5px 5px 7px #000;
    -webkit-box-shadow: 5px 5px 7px #000;
    box-shadow: 5px 5px 7px #000;
}

h1,
h2,
h3 {
    padding: 0px;
    margin: 0px;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
}
#header>h1:first-child {margin-top: 0 !important; }
h1 { line-height: 30px; }
h2 { font-size: 20px; }
h3 { font-size: 16px; }

div#socialMedia {
    width: 180px;
}

div#socialMedia * {
    margin-left: 5px;
    float: left;
}

iframe#forum_embed {
    width: 80%;
    height: 80%;
    z-index: -1;
    position: fixed;
    margin: 20px;
    visibility: hidden;
    opacity: 0;
    background: white;
    -webkit-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    -moz-box-shadow: 5px 5px 7px #000;
    -webkit-box-shadow: 5px 5px 7px #000;
    box-shadow: 5px 5px 7px #000;
}

iframe#forum_embed.shown {
    opacity: 1;
    visibility: visible;
    z-index: 100;
}
/* *********** FORM STYLES *********** */

form div {
    position: relative;
    float: left;
    margin-right: 10px;
}

form br {
    clear: both;
}

fieldset {
    width: 550px;
    margin: 10px 0px;
}

legend {
    font-weight: 700;
}

input {
    margin: 1px 0px 2px 0px;
    padding: 0px;
    font-family: arial, helvetica, serif;
    font-size: 12px;
}

label {
    font-size: 10px;
    display: block;
    color: black;
    margin: 0px 0px 5px 2px;
    clear: left;
    z-index: 0;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

select {
    font-size: 11px;
    padding: 0px;
    margin-top: 2px;
    z-index: 0;
}
/* New Layout Styles - Used across pages */

div.one-third {
    width: 33%;
    min-width: 0;
    padding: 0 20px 0 0;
}

div.two-thirds {
    width: 66%;
    min-width: 0;
    padding: 0 20px 0 0;
}

div.one-half {
    width: 50%;
    min-width: 0;
    padding: 0 20px 25px 0;
}

div.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

div.bottom-border {
    border-bottom: 1px solid #B6D990;
    margin-bottom: 25px !important;
}

div.top-border {
    border-top: 1px solid #B6D990;
    padding-top: 25px !important;
}

blockquote {
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
    max-width: 500px;
    margin: 50px auto;
    padding: 0.35em 40px;
    line-height: 1.15;
    position: relative;
    color: #383838;
}

blockquote:before {
    display: inline-block;
    content: "\201C";
    font-size: 80px;
    position: relative;
    top: 65px;
	left: -40px;
    color: #7a7a7a;
}

blockquote cite {
    color: #999999;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

blockquote cite:before {
    content: "\2014 \2009";
}
/* *********** PAGE-SPECIFIC STYLES *********** */
/* Materials Layout */

.anchor {
    display: block;
    position: relative;
    top: -175px;
    visibility: hidden;
}

.yellow {
    color: #F4AB3A;
}

.button-purple, .button-purple[href] {
    display: block;
    width: 200px;
	text-align: center;
    background: #75328A;
    padding: 5px 20px 6px;
    margin: 20px 0;
    border-radius: 18px;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
}

.button-white {
    float: none;
    display: block;
    width: 230px;
    padding: 5px 20px 6px;
    margin: 20px 0;
    background: #fff;
    border: 1px solid #75328A;
    border-radius: 18px;
    color: #75328A;
    font-weight: 900;
    font-size: 20px;
}
/* Courses */

ul.done b {
    text-decoration: line-through;
}

.BSUnitTitle {
    display: inline-block;
    margin-right: 5px;
    font-size: 18px;
    font-weight: 700;
}
.BSUnitTitle::after{content: ' ::';}

.BSUnitSummary {
    margin: 15px 0px;
}
/* Workshops Layout */

.workshops div.item>img {
    max-width: 100%;
    height: auto;
}

.member-bio {
    padding-bottom: 15px;
    border-bottom: 1px solid #B6D990;
}
/* Contribute Layout */

.contribute div.one-half>img {
    width: 100%;
    height: auto;
    padding: 0 0 10px 0;
}

/* Tab and dropdown styles */
ul.tab, .tabcontent li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

/* Float the list items side by side */
ul.tab>li {
    display: inline-block;
    min-width: 160px;
    transition: 0.3s; 
    text-align: center;
    z-index: 2;
    border: solid 1px transparent;
}

.tablinks h2 a {color: inherit;}
/* Style the tab content */
.tabcontent{ 
    display: none; 
    position: absolute;
    padding: 12px 12px; 
    left: 0px;
    color: #75328A;
    background-color: #f9f9f9;
    text-align: left;
    z-index: 1;
}
ul.tab>li:hover, .tabcontent {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    opacity: 1;
    border: solid 1px black;
}
ul.tab>li:hover {background: #75328A; color: white;}

ul.tab li:hover .tabcontent { display: block;}

.tabcontent img{float: right; border: solid 1px black;}

.dropdown-content {
    display: none;
    position: absolute;
    font-size: 16px;
    left: 150px;
    top: 0px;
    background-color: #75328A;
    min-width: 225px;
    padding: 12px 16px;
    z-index: 99;
}

.dropdown-content a { display: block; color: white !important; }

.dropdown:hover .dropdown-content, .dropdown-content:hover {
    display: block;
}

div#copyright{
  display: inline-block;
  border-top: dashed 2px black;
  padding: 20px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 16px;
}

/* 1000px Breakpoint */

@media only screen and (max-width: 1000px),
only screen and (max-device-width: 1000px) {
    .twitter-icon,
    .instagram-icon,
    .email-icon,
	.facebook-icon {
        display: none;
    }

    div#sidebar {
        width: 20%;
        max-width: 165px;
    }

	div#sidebar img, div#top img#logo {width: 70%; height: auto; }
    div.one-third,
    div.one-half {
        width: 100%;
    }
    .quote {
        display: none;
    }
    div#map { width: 100%; text-align:  center;}
    div#map table { margin: auto; }

    div#body{ left: min(225px, calc(50px + 20%)); width: calc(100% - 20% - 50px) }
}

/* 600px Breakpoint */
@media only screen and (max-width: 600px),
only screen and (max-device-width: 600px) {
	div#top img#logo { margin-top: 10px; width: 60%; height: auto;}
    div#socialMedia * { display: none; }
    div#sidebar ul li a {
        font-size: 16px;
    }
    .duration { display: none; }
}

/* 500px Breakpoint */
@media only screen and (max-width: 500px),
only screen and (max-device-width: 500px) {
    .donate-link { display: none; }
    div#top {
        height:     75px;
        width:      100%;
        left:       0;
        padding:    0px;
        text-align: center;
    }
    div#top, div#sidebar, div#body { position: relative; }
    div#top img#logo {
        width:      200px;
        height:     auto;
        margin:     10px;
        margin-left: 40px;
        padding:    0;
    }
    /* Sidebar and menu links */
    
    div#sidebar {
        top:        0px;
        left:       0px;
        width:      100%;
        max-width:  none;
        z-index:    10;
        background: #B6D990;
		margin-bottom: 10px;
    }
	div#sidebar img { display: none; }
    div#sidebar ul {
        text-align: center;
		margin:     0px auto;
    }
    div#sidebar ul li {
        width:      auto;
		float:      none;
        border:     0px;
        margin:     0px 10px;
        padding:    5px 0;
		display:    inline-block;
    }
    div#sidebar ul>li>a {
        font-size: 14px;
        display: inline;
        color: white;
    }
    div#sidebar ul li:hover, div#sidebar ul li:hover > a {
        background-color: #B6D990;
		color: #75328A;
    }
    /* Main body entries and images */
    div#body {
        width:      100%;
        left:       0px;
        top:        0px;
        margin:     0px;
        padding:    0px 10px;
        max-width:  640px;
    }
    div.item {
        width: 100%;
        min-width: 95%;
    }
    div.item h1 {
        font-size: 18px;
    }
    div.item>iframe,
    div.item>img,
    div.item>div#map {
        clear: both;
        float: none;
        padding: 0 0 10px 0;
        max-width: 90%;
        display: block;
        margin: auto;
    }
    div#cm_map {
        border: 1px solid black;
        width: 250px;
        height: 200px;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    div#socialMedia * { display: none; }

    /* Homepage Layout */
    
    .homepage div.item {
        width: 100%;
        min-width: 0;
        padding: 15px 10px 10px;
    }
    div.two-halves p {
        width: 100%;
        min-width: 0;
        padding: 0;
    }
    #first-quote { display: none; }
    ul.tab li {min-width: 100px;}
    div#quotes, div.item>div#map {margin: 0px; padding: 0px;}
    .dropdown-content { left: 0px; }

}

@media print {
	#top, #sidebar {display: none;}

}