/* Basis */

body {
	font-family: Roboto, Arial, sans-serif;
	background: #e4e4e4;
    min-width: 300px;
}

#content-container {
    min-height: 78.6vh    
}

.cf:after {
  content: "";
  display: table;
  clear: both;
}

.mobile-indicator {
    display: none;
}

.no-scroll {
    overflow: hidden;
}

strong {
	font-weight: bold;
}

.color {
	background: #357EB2;
}

.color-text {
	color: #357EB2;
}

.white-text {
	color: white;
}

.site-width {
	width: 97%;
	max-width: 1600px;
	margin: 0 auto;
    
    -webkit-transition: all 200ms ease-in-out;
    
            transition: all 200ms ease-in-out;
}

.box-shadow {
	box-shadow: 0px 2px 1px rgba(0,0,0,0.3);
}

.box-title {
	background: #357EB2;
	color: white;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3em;
    padding: 15.5px;
	text-align: center;
}

/* Flexbox */

.flex-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
}

.flex-row-reverse {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}

.flex-column {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

.flex-column-reverse {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
}

.flex-grow {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

.flex-basis {
	-webkit-flex-basis: 100%;
	    -ms-flex-preferred-size: 100%;
	        flex-basis: 100%;
}
/* Helper Classes */

.bordered {
	border: 1px solid skyblue;
}

/* Custom Scrollbars */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}

::-webkit-scrollbar-track:hover {
    -webkit-box-shadow: none;
    background: rgba(0,0,0,0.15);
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0,0,0,0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: #357EB2;
}

/* Header */

#header-container {
	z-index: 1000;
	width: 100%;
	background: white;
	height: 50px;
	position: fixed;
	box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.3);
}

#header {
    height: 50px;
    overflow: hidden;
    
}

#header #logo {
	font-family: Arial;
	font-weight: bold;
	line-height: 52px;
	font-size: 33px;
	white-space: nowrap;
    float: left;
}

#header #logo span {
	font-size: 15px;
    color: #404040;
}
#header #logo #headspan
{
       font-size: 9px;
    color: #404040;
    font-style: italic;
    
    }


#header #logo a {
    -webkit-transition: 0.2s ease-in-out;
            transition: 0.2s ease-in-out;
}

#header #logo:hover a {
    padding-left: 5px;
}

#header #nav {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    float: right;
     
}

#header #nav > li {
    float: left;
}

#header #nav li a {
	display: inline-block;
	line-height: 50px;
	padding: 0px 9px 0px 9px;

	-webkit-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

#header #nav li a:hover {
	background: rgba(0,0,0,.05);
}

#header #nav li a:active {
	background: #D6D6D6;
}

#header #nav .current {
	border-bottom: 3px solid #357EB2;
	height: 50px;
}

#header #nav .dropdown .sub-menu {
    width: 100%;
    position: absolute;
    left: 0;
    background: #357EB2;
    text-align: right;
    padding: 0px 6%;
    max-height: 0px;
    opacity: 0.5;
    filter: alpha(opacity=50);
    overflow: hidden;
    -webkit-transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: normal;
    z-index: 999;
}

#header #nav .dropdown .sub-menu .column {
    float: right;
    width: 25%;
        padding: 1px;
}

#header #nav .dropdown .sub-menu li a {
    line-height: 1.8em;
    color: white;
    text-transform: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -webkit-transition: all 0.1s ease-in-out;
            transition: all 0.1s ease-in-out;
}

#header #nav .dropdown .sub-menu li a:hover {
    background: none;
    opacity: 1;
    filter: alpha(opacity=100);
}

#header #nav .dropdown:hover .sub-menu {
    max-height: 500px;
    opacity: 1;
    filter: alpha(opacity=100);
    padding: 15px 6%;
}

#header #nav .dropdown:hover > a {
    background: rgba(0,0,0,.05);
}

#header #nav #sitemap a {
    display: none;
}

#header #nav #search {
    height: 50px;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

#header #nav #search .search-input {
    max-width: 0px;
    -webkit-transition: all 200ms ease-in-out;
            transition: all 200ms ease-in-out;    
    overflow: hidden;
    float: right;
}

#header #nav #search .search-input-open {
    max-width: 500px;
}

.list-item {
    opacity: 0;
    filter: alpha(opacity=0);
}

#header #nav #search .search-input input {
    display: inline-block;
    height: 50px;
    padding: 0px 8px;
    margin: 0px;
    line-height: 50px;
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: lighter;
    border: none;
    width: 350px;
    color: #357EB2;
    border-bottom: 2px solid rgba(53, 126, 178, 0);
    -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}

#header #nav #search .search-input input:focus {
    outline: none;
    border-bottom: 2px solid #357EB2;
}

#content-container {
	padding-top: 50px;
}

#footer-container {
	margin-top: 30px;
	width: 100%;
}

#footer-container #footer {
	font-size: 14px;
}

#footer #row-1, #footer #row-2 {
	padding: 15px 0px 15px 0px;
}


#footer #row-1 ul li {
	float: left;
	text-transform: uppercase;
	font-weight: bold;
	margin-left: 20px;

}

#footer #row-1 li:first-child {
	margin-left: 0px;
}

#footer a {
	-webkit-transition: all 0.1s ease-in-out;
	        transition: all 0.1s ease-in-out;
	color: rgba(255,255,255,0.8);
}

#footer a:hover {
	color: rgba(255,255,255,1);
}

#footer #row-1 .secondary-menu {
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid white;
	display: inline-block;
}

#footer #row-1 p {
	font-weight: normal;
	display: inline-block;
}

    #footer #row-1 span {
      font-size: 9px;
    font-style: italic;
    }


#footer #row-1 .copyright {
    margin-left: 371px;
    margin-top: -8px;
    color: rgba(255,255,255,0.6);
}

#footer #row-1 .watermark {
	color: rgba(255,255,255,0.6);
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid white;
}

#footer #row-2 {
	background: rgba(0,0,0,0.2);
}

#footer #row-2 .disclaimer {
	color: rgba(255,255,255, 0.5);
	font-size: 12px;
    line-height: 1.2em;
}

#footer #row-2 .disclaimer .more {
	font-size: 12px;
	color: rgba(255,255,255,0.8);
}

#footer #row-2 .disclaimer .more:hover {
	color: rgba(255,255,255,1);
}


.anchor {
    position: relative;
    top: -75px;
}

.pdf-viewer {
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1499;
}

.pdf-viewer .wrapper {
    padding: 10px;
    background: white;
    border-radius: 5px;
    height: 85vh;
    margin: 0 auto;
    margin-top: 7.5vh;
    z-index: 1500;
    width: 90%;
    max-width: 1400px;
}

.pdf-viewer .wrapper .close {
    display: inline-block;
    font-size: 25px;
    color: white;
    margin-top: -35px;
    margin-right: -35px;
    float: right;
    cursor: pointer;
    -webkit-transition: all 100ms ease-in-out;
            transition: all 100ms ease-in-out;
}

.pdf-viewer .wrapper .close:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2)
}

.pdf-viewer .wrapper .content {
    overflow: hidden;
    height: 100%;
}

.under-dev {
    margin: 0 auto;
    color: #333333;
    padding: 30px;
    text-align: center;
}

.under-dev .icon {
    font-size: 80px;
}
.under-dev h1 {
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 50px;
    padding: 10px;
}
.under-dev p {
    font-weight: lighter;
    font-size: 24px;
    line-height: 1.3em;
}








@media screen and (max-width: 1250px) {
    
    #header #nav #search .search-input input {
        width: 300px;
    }
    
    .site-width {
        width: 100%;
    }
}




@media screen and (max-width: 1150px) {
    
    #header #logo {
        font-family: Arial;
        font-weight: bold;
        line-height: 50px;
        font-size: 25px;
        white-space: nowrap;
    }
    
    #header #logo span {
        font-size: 13px;
        color: #404040;
    }
    #header #logo #headspan
{
       font-size: 7px;
    color: #404040;
    font-style: italic;
    
    }

    
    
    
    #header #nav {
        font-size: 12px;
    }
    
    
    
    
    #header #nav li a {
        padding: 0px 10px 0px 10px;
    }
    
    #header #nav #search .search-input input {
        font-size: 14px;
    }
    
    #header #nav .dropdown .sub-menu {
        padding: 0px 4%;
    }
    #header #nav .dropdown:hover .sub-menu {
        padding: 15px 4%;
    }
    
    
    #footer-container #footer {
        font-size: 12px;
    }
    
} /* @media */


@media screen and (max-width: 960px) {
    .box-title {
        font-size: 16px;
            }
   
    
    .under-dev {
        padding: 30px;
        text-align: center;
    }

    .under-dev .icon {
        font-size: 60px;
    }
    .under-dev h1 {
        margin-top: 10px;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 30px;
        padding: 10px;
    }
    .under-dev p {
        font-weight: lighter;
    /*    padding: 20px;*/
        font-size: 18px;
        line-height: 1.3em;
    }
} /* @media */

@media screen and (max-width: 880px) {


    .site-width {
        width: 85%;
    }
    
    .mobile-indicator {
        display: block;
    }
    
    #header-container {
        overflow: visible;
    }
    
    #header #nav {
        width: 100%;
    }

    #header .nav-container {
    	width: 50px;
    	background: url(../../img/icons/burger.png) center no-repeat;
    	background-size: 25px;
        cursor: pointer;
        float: right;
        height: 50px;
    }
    
    #header .nav-container .scrollable {
        display: block;
        max-height: 0px;
        overflow-x: hidden;
        overflow-y: scroll;
        position: fixed;
        top: 50px;
        left: 0px;
        background: #357EB2;
        width: 100%;
        text-align: right;
        -webkit-transition: 200ms all ease-in-out;
                transition: 200ms all ease-in-out;
    }
    
    #header .nav-container .scrollable::-webkit-scrollbar {
        width: 2px;
        height: 2px;
    }
    
    #header .nav-container #nav li {
        width: 100%;
    }
    
    #header .nav-container #nav li a {
        padding: 0px 9.2%;
        line-height: 40px;
        color: white;
        width: 100%;
    }

    #header #nav li a:active {
        background: rgba(0,0,0,.05);
    }

    #header #nav .current {
        border-bottom: none;
        height: 40px;
    }

    #header #nav .dropdown .sub-menu {
        display: none;
    }
    
    #header #nav #sitemap a {
        display: block;
    }
    
    #header #nav #search {
        display: none;
    }    
    
    /* This .nav-open class is used to grow and shrink the header menu in the mobile layout */
    #header .nav-open {
        max-height: 500px !important;
        box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.3);
    }
    
    #footer #row-1 ul {
        float: left;
        width: 100%;
    }

    #footer #row-1 ul li {
        float: left;
        line-height: 1.2em;
        padding: 10px 0px;
        margin-left: 0px;
        margin-right: 20px;
    }

    #footer #row-1 .secondary-menu {
        margin-left: 0px;
        padding-left: 0px;
        border-left: none;
    }

    #footer #row-1 .copyright {
        line-height: 1.5em;
        float: left;
        width: 100%;
    }
      
    #footer #row-1 .watermark {
        margin-left: 0px;
        padding-left: 0px;
        border-left: none;
        float: left;
        line-height: 30px;
    }
} /* @media */




@media screen and (max-height: 330px) {
    
    /* This makes sure the mobile-menu is scrollable when the device height is short */
    
    #header .nav-container .scrollable {
        height: 80vh;
    }

}






@media screen and (max-width: 600px) {

    #footer #row-1 ul li {
        width: 100%;
    }

    #footer #row-1 .secondary-menu {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        padding-top: 10px;
        margin-top: 10px;
    }

    
} /* @media */







@media screen and (max-width: 400px) {
    
    #header #logo span {
        display: none;
    }
    
} /* @media */