html{
    min-width: 300px;
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    color: white;
    font-size: 15px; 
    background-color: #a17c6b;
    font-family: "Myriad Pro", Times, serif;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    /*    background-position-y: 150px;*/
}

headerelement
{
    background-color: white;

}

p {
    font-size: 18px;
}

a{
    color: #aee4f5;
}

a:hover{
    text-decoration: none;
    color: #2cb9d5;
}

h1{
    font-family: "Garamond", Times, serif;
    font-size: 32pt;
    color: #aee4f5;
}
h2{
    font-family: "Garamond", Times, serif;
    font-size: 26pt;
    color: #aee4f5;
}
h3{
    font-family: "Myriad Web Pro", Times, serif;
    font-size: 15pt;
    color: #fff;
    font-style: italic;
    text-transform: uppercase;
}
/****************NAVBAR*****************/
.navbar{ 
    border-radius: 0px; 
    border: 0;
    font-size: 15px;
    font-family: "Myriad Web Pro", Times, serif;
    text-transform: uppercase;
}  

.navbar-default .navbar-nav>li{
    color: #a17c6b;
    background-color: white;
    border-bottom: #2cb9d5 solid 3px;
}

.navbar-default .navbar-nav>li>a{
    padding-left: 14px;
    padding-right: 14px;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    background-color: white;
}

.navbar-default .navbar-nav>.active , .navbar-default .navbar-nav>.active:hover{
    border-bottom: 0;
}

/*remove bottom border on mobile menu*/
@media screen and (max-width: 767px) {
    .navbar-default .navbar-nav>li{
        border-bottom: 0;
    }
}


.navbar-default .navbar-nav>.active>a , .navbar-default .navbar-nav>.active>a:hover{
    white-space: normal;
    color: #2cb9d5;
    background-color: white;
    border-bottom: 0;
}

/****************FOOTER*****************/
.footer .container p{
    text-align: center;
}

.footer .container a {
    color: #8C6956;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    background-color: white;
    color: #8C6956;
}
/****************DROPDOWNS*****************/
.dropdown-menu {
    top: 98%;
    left: -1px;
}

.dropdown-menu li{
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.dropdown-menu>li>a{
    color: inherit;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
    background-color: inherit;
    color: inherit;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover{
    text-decoration: underline;
    background-color: inherit;
    color: #8C6956;
}

/*Fix active link bug in mobile menu*/
@media (max-width: 767px){
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover
    {
        color: inherit;
        background-color: inherit;
    }
}
/****************GENERAL LAYOUT*****************/
.statement {
    background-color: #8C6956;
    color: whitesmoke;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
}

.statement-text {
    color: #aee4f5;
    font-family: "Myriad Web Pro", Times, serif;
    font-size: 13pt;
    font-style: italic;  
}

.contentheader {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    font-style: italic;
}

.contentheader-text{
    padding-right: 30px;
}

.contentheader-text p{
    margin-bottom: 15px;
}

.pageindex{
    margin-top: -15px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    margin-left: -14px;
}
.pageindex a{
    color: inherit;

}

.pageindex h4{
    font-size: 20px;
    line-height: 0.65;
    font-style: italic;
}

.row{
    padding-bottom: 25px;
    border-bottom: #2cb9d5 solid 1px;
}

.twocolumns {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;

    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
    -moz-column-gap: 40px; /* Firefox */
    column-gap: 40px;

}

.noborderbottom {
    border-bottom: 0;
}

/*Set Column count to 1 on small screens*/
@media screen and (max-width: 767px) {
    .twocolumns {
        -webkit-column-count: 1; /* Chrome, Safari, Opera */
        -moz-column-count: 1; /* Firefox */
        column-count: 1;
    }
}
