﻿html {
    height: 100%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    position: relative;
    min-height: 100%;
}



#header {
    font-size: 15pt;
    background-color: #004e2b;
    color: white;
    height: 50px;
    line-height:50px;
    text-transform:uppercase;
}

#commands {
    background-color: #afafaf;
    color: black;
    min-height: 50px;
    line-height: 25px;
    font-size:11pt;
    text-transform: uppercase;  
}
    #commands a {
        color:white;
        text-decoration:none;
    }
        #commands a:hover {
            color: white;
            text-decoration: underline;
        }

#logo {
    width:100%;
    box-shadow:#afafaf 1px 1px 2px;
    margin-top:-100px;
}
#logo img {
    width: 100%;    
}

#login {
    margin-bottom:100px;
}
    #login .alert {
        margin-top:10px;
        font-size:10pt;
    }



#main {
    margin-top: 30px;
    padding-bottom:100px;
}

    #main .channel {
        margin-bottom: 0px
    }

    #main ul {
        margin: 0;
        padding: 0;
        list-style-type: square;
        margin-top: 20px;
        margin-bottom: 20px;
    }
        #main ul li {
            margin: 0;
            margin-left:15px;
            padding: 0;
            list-style: none;
            text-transform:uppercase;
            padding-bottom:10px;
        }

            #main ul li::before {
                content: "\25CE"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
                color: #004e2b; /* Change the color */
                font-weight: bold; /* If you want it to be bold */
                display: inline-block; /* Needed to add space between the bullet and the text */
                width: 1em; /* Also needed for space (tweak if needed) */
                margin-left: -1em; /* Also needed for space (tweak if needed) */
                margin-right:5px;
            }

        #main ul li a {
            text-decoration: none;
            color: #afafaf;
        }
            #main ul li a:hover {
                text-decoration: underline;
            }


    #main .product-box {
        background-color: #004e2b;
        color:white;
        text-transform:uppercase;
        height:300px;
        width:100%;
        text-align:center;
        line-height:300px;
        margin-bottom:30px;
        font-size:15pt;
    }
        #main .product-box a {
            color:white;
            text-shadow:2px 1px 1px #666;
        }

#news p {
    font-size:10pt;
    text-align:justify;
    margin-bottom:0;
    margin-top:5px;
}

#news a {
    font-size: 10pt;
    color: #004e2b;
    text-decoration: none;
    margin-bottom:20px;
    display:inline-block;
    width:100%;
}
    #news a:hover {
        color: #004e2b;
        text-decoration: underline;
    }



#footer {
    font-size: 10pt;
    background-color: #004e2b;
    color: white;
    width: 100%;
    height: 50px;
    min-height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}
    #footer a {
        color:white;
        text-decoration:none;
    }
        #footer a:hover {
            color: white;
            text-decoration: underline;
        }



#notifications {
    font-size: 10pt;
    background-color: #c70909;
    color: white;
    position: absolute;
    bottom: 50px;
    width: 100%;
    height: 50px;
    line-height: 50px;
}
    #notifications a {
        color: white;
        text-decoration: none;
    }

        #notifications a:hover {
            color: white;
            text-decoration: underline;
        }



.fullImage {
    background-size: cover;
    margin-top: -60px;
    height:400px;
    width:100%;
    background-position:center
}



.uploadList {
    border:1px solid rgb(235, 235, 228);
    width:100%;
}
    .uploadList tr td {
        padding:0px 10px 0px 10px;
    }


.list-datapager {
    background-color: #efefef;
    padding: 3px;
}
    .list-datapager a {
        color: #004e2b;
    }


.search-image {
    border:5px solid white;   
    
    transition: filter .25s ease-in-out;
    -webkit-filter: grayscale(0%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
    filter: grayscale(0%); /* FF 35+ */
}
    .search-image:hover {
        border:5px solid #004e2b;      
        
        -webkit-filter: grayscale(100%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
        filter: grayscale(100%); /* FF 35+ */
    }

.search-link {
    color: #004e2b;
}
.search-link:hover {
    color: #333333;    
}


h1 {
    font-size: 14pt;
    color: #afafaf;
    font-weight: 400;
    text-transform: uppercase;
}
    h1 span {
        color: #004e2b;
    }

    h1.businessunit {
        font-size: 45pt;
    }

h2 {
    font-size: 12pt;
    color:#b40505;
    font-weight: 400;    
    font-style:italic;
    margin-bottom:30px;
}

h3 {
    font-size: 12pt;
    color: #afafaf;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

h4 {
    font-size: 9pt;
    color: #b40505;
    font-weight: 400;
    font-style: italic;   
    padding:0;
    margin:0;
}


ol {
    padding-inline-start: 17px;
    padding-left:17px;
}

a.aspNetDisabled {
    color: gray !important;
}


input, textarea, select {
    padding: 2px;
    color: #555555;
    border: 1px solid #afafaf;
    margin-bottom: 10px;
    width: 100%;
    /*box-shadow: #afafaf 1px 1px 2px;*/
}

    textarea:disabled, select:disabled, input:disabled {
        background-color: rgb(235, 235, 228);
    }

    input[type=checkbox] {
        box-shadow:none;
        border:0;
        width:auto;
        text-align:left;
        margin-right: 5px;
    }

    input[type=email]:invalid {
        color:darkred;
    }

.button {
    background-color: #004e2b;
    border:0;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    width: 100%;
    padding: 10px;
    display: inline-block;
    cursor: pointer;
}
.button:hover {
    text-decoration:none;
    color:black;
}


.button-simple {
    color: #004e2b;
    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    padding:0;
}
    .button-simple:hover {
        text-decoration: none;
        color: black;
    }



.button-dialog {
    background-color: #f79100;
    border: 0;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    width: 100%;
    padding: 10px;
    display: inline-block;
    cursor: pointer;
}

    .button-dialog:hover {
        text-decoration: none;
        color: black;
    }


.button-simple-link {
    color: #004e2b;
    font-size: 15px;
    text-transform: none;
}



.list-filter {
    border: 1px solid white;
    border-bottom: 1px solid rgb(235, 235, 228);
    color: orange;
    text-align: right;
    font-size: 8pt;
}
    .list-filter:focus {
        border: 1px solid white;
        border-bottom: 1px solid rgb(235, 235, 228);
        outline: 0;
    }



.row-form:nth-child(even) {
    background-color: #eeeeee;
    padding: 5px 0px 5px 0px
}

.row-form:nth-child(odd) {
    background-color: #FFFFFF;
    padding: 5px 0px 5px 0px
}

.row-form input, .row-form textarea, .row-form select {
    margin-bottom: 0px;
}


.button-textsearch {
    color: #004e2b;
    margin-top: 6px;
    font-size: 15pt;
}


.search-title {
    margin-bottom: 12px;
    text-transform: uppercase;
    width: 100%;
    border-bottom: 1px solid #004e2b;
    display: inline-block;
    padding: 2px 0 2px 0;
    font-weight: bold;
}


.document-box {
    text-align: left;
    color: white !important;
    background-color: #ffffff;
    text-transform: uppercase;
    margin-top: 10px;
}


.documentgallery-description {
    margin-top: 5px;
    word-wrap: break-word;
}
    .documentgallery-description a {
        color: #000000 !important
    }

.gallery-description {
    display: block;
    background-color: #004e2b;
    padding: 5px;
    font-size: 10pt;
    text-align: center;
    color:white;
}

.videogallery-description {
    display: block;
    background-color: #004e2b;
    padding: 5px;
    font-size: 10pt;
    text-align: left;
    color: white;
    margin-bottom:30px;
} 

.no-margin {
    margin: 0;
}  
.no-padding {
    padding:0;
}
.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
.align-center {
    text-align: center;
}
.break-word {
    word-break: break-word;
    word-wrap: break-word;
}

.alert {
    margin-top:20px;
}





.modalBackground {
    height: 100%;
    background-color: #000000;
    filter: alpha(opacity=75);
    opacity: 0.75;
}




/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    #logo {
        display:none;
    }

    #navigation .align-left {
        text-align:center;
    }
    #navigation .align-right {
        text-align: center;
    }    
    

}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    #logo {
        display: none;
    }

    .fullImage {     
        height: 150px;     
    }

    h1.businessunit {
        font-size: 30pt;
    }
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .fullImage {
        margin-top: 0px !important;
    }
}

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    
    .fullImage {
        margin-top: -30px;
    }
}

