body{
    font-family: "Helvetica Narrow", sans-serif;
}

.desktop-header{
    position: relative;
	background-color: #ffff99;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

ol, ul{
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

ol > li{
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

ol > li:before{
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

li ol > li, li ul > li{
    margin: 0;
}

li ol > li:before{
    content: counters(item, ".") " ";
}

ul.dashed{
    list-style: none;
    margin-left: 0;
    padding-left: 1em;
}

ul.dashed > li:before{
    content: "- ";
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.green-background{
    background-color: #148730;
}

.custom-container{
    display: table;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 768px){
    .header-image{
        width: 80%;
        max-width: 660px;
        height: 30%;
        max-height: 225px;
    }
    .nav-justified > li:first-child > a{
        border-left: 0;
    }
    .nav-justified > li:last-child > a{
        border-right: 0;
    }
	.content-container{
		width: 100%;
		max-width: 1024px;
		margin: 0 auto;
		border: 5px solid #18b23f;
		border-top: 0px;
	}
}

.nav-justified{
    max-height: 52px;
    background-color: #148730;
}
.nav-justified > li > a{
    color: white;
    margin: 0;
	padding: 10 7;
}

@media screen and (max-width: 767px) {
    .side-collapse-container{
        width: 100%;
        position: relative;
        left: 0;
        transition: left .4s;
    }
    .side-collapse-container.out{
        left: 200px;
        background-color: #148730;
    }
    .side-collapse {
        top: 50px;
        bottom: 0;
        left: 0;
        width: 200px;
        position: fixed;
        overflow: hidden;
        transition: width .4s;
        z-index: 1;
        background-color: #148730;
    }
    .side-collapse.in {
        width: 0;
    }
}

.white-icon-bar{
    background-color: white;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.white-icon-bar+.white-icon-bar{
    margin-top: 4px;
}

.btn-facebook-custom {
	color: #fff;
	background-color: #4C67A1;
	font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
    position: absolute;
    z-index: 2;
}
.btn-facebook-custom:hover {
	color: #fff;
	background-color: #405D9B;
}
.btn-facebook-custom:focus {
	color: #fff;
}

.facebook-logo{
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.facebook-logo:before{
    content: "\f230";
}

.custom-form-group{
    margin: 0 5 5 0;
}

.custom-form-control{
    display: block;
    width: 100%;
    padding: 2px;
    line-height: 1.4;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

textarea.custom-form-control{
    height: auto;
}

label{
    margin: 0;
}

.custom-content-container{
    width: 100%;
    min-height: 430px;
    max-width: 720px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 5px solid #d0d0d0;
    background-color: #ffff99;
}

.custom-form{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 3px;
}

.text-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.loginBtn {
    box-sizing: border-box;
    position: relative;
    /* width: 13em;  - apply for fixed size */
    margin: 0.2em;
    padding: 0 15px 0 46px;
    border: none;
    text-align: left;
    line-height: 34px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #FFF;
}
.loginBtn:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 100%;
}
.loginBtn:focus {
    outline: none;
}
.loginBtn:active {
    box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
}


/* Facebook */
.loginBtn-facebook {
    background-color: #4C69BA;
    background-image: linear-gradient(#4C69BA, #3B55A0);
    /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
    text-shadow: 0 -1px 0 #354C8C;
}
.loginBtn-facebook:before {
    border-right: #364e92 1px solid;
    background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png') 6px 6px no-repeat;
}
.loginBtn-facebook:hover,
.loginBtn-facebook:focus{
    background-color: #5B7BD5;
    background-image: linear-gradient(#5B7BD5, #4864B1);
}

.loginBtn-custom{
    padding: 0 15;
    color: black;
    background-color: #96e059;
    background-image: linear-gradient(#96e059, #84c450);
    /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
}
.loginBtn-custom:before{
    width: 0;
}
.loginBtn-custom:hover,
.loginBtn-custom:focus{
    background-color: #84c450;
    background-image: linear-gradient(#84c450, #7fb750);
}

.loginBtn-custom2{
    padding: 0 15;
    color: white;
    background-color: #e00f24;
    background-image: linear-gradient(#e00f24, #e01d21);
    /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
}
.loginBtn-custom2:before{
    width: 0;
}
.loginBtn-custom2:hover,
.loginBtn-custom2:focus{
    background-color: #e01d21;
    background-image: linear-gradient(#e01d21, #e04353);
}

.facebook-button-container{
    float: right;
	width: 75px; 
    height: 90px;
    position: absolute;
    margin-top: 5px;
    right: 0px;
    top: 0px;
}


.form-style1{
    width: 54%
}

.form-style2{
    width: 44%
}

.form-style3{
    width: 40%
}

.form-style4{
    width: 65%
}

.form-style5{
    width: 33%
}

.form-style6{
    width: 45%
}

@media screen and (max-width: 767px){
    .form-style1, .form-style2, .form-style3, 
    .form-style4, .form-style5, .form-style6{
	width: 100% !important;
    }
}

.link-button{
    appearance:button;
    -moz-appearance:button; /* Firefox */
    -webkit-appearance:button; /* Safari and Chrome */
}