@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin-ext");

* {
    font-family: 'Open Sans';
}

body {
    background-color: #EDF8FC;
	/* padding-bottom: 25px; */
	position:relative;
	height:100%;
}

.container {
    max-width: 1024px;/*990px*/
    width: 96%;
}

.space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.space-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-top {
    min-height: 66px;
    -webkit-box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.25);
    z-index: 2;
    position: relative;
    background-color: #FFF;
}

.header-top .navbar-brand {
    position: absolute;
    padding-top: 0;
    z-index: 1;
    margin-right: 0;
    top: 100%;
    -webkit-transform: translateY(-66px);
    -ms-transform: translateY(-66px);
    transform: translateY(-66px);
}

.header-top .page-title {
    color: #40768F;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 20px;
    display: inline-block;
}

.header-top .partner {
    margin-left: 7px;
    height: 60px;
    margin-top: 4px;
    display: block;
    float: left;
}

.logo-wrap {
    padding: 0;
    max-width: 120px;
    min-width: 120px;
    min-height: 66px;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li:before {
    content: '-';
    font-weight: 700px;
    color: #C88D15;
    font-size: 30px;
    line-height: 16px;
    position: relative;
    top: 4px;
    margin-right: 10px;
}

a {
    color: #3e7790;
    -webkit-transition: all 0.16s ease-in-out;
    transition: all 0.16s ease-in-out;
}

h1 {
    color: #40768F;
    font-size: 36px;
    font-weight: bold;
}

h1:first-child {
    margin-top: 50px;
}

.header {
    -webkit-box-shadow: 0 -1px 6px 0 black;
    box-shadow: 0 -1px 6px 0 black;
    z-index: 100;
}

.header-bottom {
    min-height: 90px;
    background-color: #40768F;
    position: relative;
    z-index: 2;
}

.header-bottom .logo-wrap {
    position: relative;
    height: 90px;
}

.header-bottom .logo-wrap .navbar-brand {
    position: absolute;
    padding-top: 0;
    z-index: 1;
    margin-right: 0;
    top: 0;
    -webkit-transform: translateY(-66px);
    -ms-transform: translateY(-66px);
    transform: translateY(-66px);
}

.header-bottom .row.navbar.navbar-toggleable-md {
    padding: 0;
}

.header-bottom .collapse.navbar-collapse {
    padding: 0;
    height: 90px;
}

.header-bottom .collapse.navbar-collapse.show {
    -webkit-box-shadow: 0 8px 7px -7px black;
    box-shadow: 0 8px 7px -7px black;
}

.header-bottom .navbar-nav {
    background-color: #40768F;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-bottom .navbar-nav .nav-link {
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    height: 26px;
    padding: 0 20px;
}

.nav-item.nav-link, .nav-link.dropdown-toggle {
         justify-content: center;
        align-items: center;
}


.header-bottom .navbar-nav .nav-link .nav-link{
	color:#fff;
}
.header-bottom .navbar-nav .nav-link.active {
    border-bottom: 4px solid #C88D15;
    color: #FFF;
}

.header-bottom .navbar-nav .nav-link:hover {
    color: #cbd6da;
}

.header-bottom .navbar-nav .dropdown-toggle {
    position: relative;
    /* cursor: default; */
}

.header-bottom .navbar-nav .dropdown-toggle .dropdown-menu {
    -webkit-transform: translateY(-3px) scaleY(0);
    -ms-transform: translateY(-3px) scaleY(0);
    transform: translateY(-3px) scaleY(0);
    opacity: 0;
    padding: 0;
    display: block;
    text-transform: none;
    -webkit-transition: all .16s ease-in-out;
    transition: all .16s ease-in-out;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    border-top: 4px solid #C88D15;
    left: -1px;
    top: 100%;
}

.header-bottom .navbar-nav .dropdown-toggle .dropdown-menu:before {
    display: block;
    content: '';
    border: 10px solid transparent;
    width: 0;
    height: 0;
    border-bottom-color: #C88D15;
    position: absolute;
    top: -20px;
    left: 50px;
}

.header-bottom .navbar-nav .dropdown-toggle .dropdown-menu a {
    color: #40768F;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 50px 8px 18px;
}

.header-bottom .navbar-nav .dropdown-toggle .dropdown-menu a.active, .header-bottom .navbar-nav .dropdown-toggle .dropdown-menu a:active {
    background-color: #f9f3e8;
    color: #C88D15;
}

.header-bottom .navbar-nav .dropdown-toggle .dropdown-menu a.active {
    background-image: url("../images/html/arrow-hover.png");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.header-bottom .navbar-nav .dropdown-toggle:hover .dropdown-menu {
    -webkit-transform: translateY(-3px) scaleY(1);
    -ms-transform: translateY(-3px) scaleY(1);
    transform: translateY(-3px) scaleY(1);
    opacity: 1;
}

.header-bottom .navbar-nav .dropdown-toggle:after {
    display: none;
}

.header-bottom .soc-networks-wrap {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-bottom .soc-networks {
    margin-left: 20px;
    width: auto;
}

.header-bottom button.navbar-toggler {
    top: 20px;
}

.soc-networks {
    float: right;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 33px;
    border-left: 1px solid #FFF;
    height: 51px;
}

.soc-networks .soc {
    display: block;
    float: left;
    color: #FFF;
    border: 2px solid #C88D15;
    display: block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 18px;
    margin-left: 7px;
    -webkit-transition: all 0.16s ease-in-out;
    transition: all 0.16s ease-in-out;
}

.soc-networks .soc i {
    font-size: 21px;
}

.soc-networks .soc i.fa-facebook {
    position: relative;
    left: -1px;
}

.soc-networks .soc:hover {
    background-color: #C88D15;
}

.categories .category {
    /* height: 294px; */
    height:265px;
    position: relative;
    overflow: hidden;
}

.categories .category a {
    height: 100%;
}

.categories .category .image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    -webkit-transition: all 0.16s ease-in-out;
    transition: all 0.16s ease-in-out;
}

.categories .category .title {
    position: absolute;
    left: 50%;
    /* top: 65%; */
    top: 60%;
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 5px black;
    font-size: 24px;
    color: #FFF;
    line-height: 1.2em;
    display: block;
}

.categories .category .title:after {
    content: '';
    display: block;
    width: 50px;
    border-top: 2px solid #FFF;
    position: relative;
    left: 50%;
    top: 24px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.categories .category:hover .image {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.bnr {
    min-height: 250px;
    background-color: #7d9ba8;
    overflow: hidden;
}

.bnr .row {
    height: 100%;
}

.bnr .background {
    height: 250px;
    width: 860px;
    background-position: left center;
    background-repeat: no-repeat;
    position: absolute;
    background-size: cover;
    right: 0;
    top: 0;
}

.bnr .content {
    position: relative;
    z-index: 1;
}

.bnr .content .text {
    height: 250px;
}

.bnr .content .col {
    position: relative;
    height: 100%;
}

.bnr .content .title {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 0;
    /* position: absolute;
    width: 100%;
    bottom: 0;
    padding: 40px 0 */
    
}

.bnr .content .title h2 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 0 5px #000000;
    position: relative;
 

}

.bnr .content .title h2:before {
    content: '';
    display: block;
    width: 50px;
    border-top: 2px solid #FFF;
    position: absolute;
    bottom: -15px;
}

.bnr .contact {
    padding: 0;
    z-index: 2;
    position: relative;
    min-width: 200px;
}

.bnr .contact .image {
    width: 100%;
    height: 250px;
    position: relative;
    background-size: cover;
    background-position: center center;
}

.right-menu {
    padding: 0;
    min-width: 200px;
}

.right-menu .submenu {
    margin-top: 30px;
}

.right-menu .submenu a {
    display: block;
    float: left;
    clear: both;
    padding: 3px 0;
    padding-left: 25px;
    border-left: 1px solid #40768F;
    font-weight: 600;
	font-size:14px;
}

.right-menu .submenu a.active {
    border-left: 4px solid #C88D15;
    color: #C88D15;
    padding-left: 22px;
}

.right-menu .submenu a:hover {
    padding-left: 22px;
    border-left: 4px solid #C88D15;
}

.right-menu .submenu:after {
    content: '';
    display: block;
    clear: both;
}

.right-menu .events {
    margin-top: 30px;
}

.right-menu .events p {
    margin-bottom: 10px;
}

.right-menu .events span {
    font-weight: 700;
}

.split {
    padding: 0;
    padding-bottom: 80px;
    overflow: hidden;
}

.split .col-lg-9 {
    padding-top: 30px;
    padding-right: 40px;
}

.info {
    padding: 20px 13px;
    background-color: #7D9BA8;
    color: #FFF;
}

.info p {
    margin-bottom: 7px;
}

.info p.name {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.info a {
    margin-bottom: 5px;
    display: inline-block;
    padding-left: 20px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: left center;
    text-decoration: none;
	font-size:14px;
}

.info a.phone {
    background-image: url("../images/html/phone.png");
    background-position: 2px center;
}

.info a.email {
    background-image: url("../images/html/mail.png");
}

.sponsors {
    /* padding: 35px 0; */
    background-color: #FFF;
}

#sponsors{
    position:fixed;
    bottom:0; 
    width:100%;
}

.sponsors a {
    height: 70px;
    display: block;
    -webkit-transition: all 0.16s ease-in-out;
    transition: all 0.16s ease-in-out;
    margin: 10px;
}

.sponsors a img {
    display: block;
    max-height: 100%;
    width: auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    will-change: transform;
}

.sponsors a:hover {
    opacity: 0.7;
}

.news {
    padding-bottom: 80px;
    color: #5e6669;
    font-size: 14px;
}

.news .news-container {
    padding-top: 45px;
}

.news a:hover {
    text-decoration: none;
}

.news h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #40768F;
    text-align: center;
    margin-bottom: 27px;
}

.news h2:after {
    content: '';
    display: block;
    width: 70px;
    border-top: 1px solid #C88D15;
    position: relative;
    left: 50%;
    top: 6px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.news .news-item {
    margin-top: 27px;
    padding-left: 27px;
    border-left: 4px solid #40768F;
    -webkit-transition: all .16s ease-in-out;
    transition: all .16s ease-in-out;
}

.news .news-item a > h3 {
    color: #2B2B2B;
    font-size: 1rem;
    font-weight: 700;
}

.news .news-item .date {
    font-weight: 700;
}

.news .news-item .read-more {
    font-weight: 700;
    padding-right: 20px;
    background-image: url("../images/html/arrow-default.png");
    background-position: right center;
    background-repeat: no-repeat;
}

.news .news-item .read-more:hover {
    color: #C88D15;
    background-image: url("../images/html/arrow-hover.png");
}

.news .news-item:hover {
    border-color: #C88D15;
}

.news .news-item:first-child {
    margin-top: 0;
}

.pager {
    margin-top: 50px;
}

.pager .col {
    padding: 0;
}

.pager .page {
    display: block;
    float: left;
    background-color: #C5D9E2;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 5px;
    background-position: center center;
    background-repeat: no-repeat;
    font-weight: 600;
    margin-bottom: 10px;
}

.pager .page:hover {
    background-color: #A9C8D7;
}

.pager .page.active {
    color: #FFF;
    background-color: #40768F;
}

.pager .page.prev, .pager .page.next {
    background-image: url("../images/html/arrow-default.png");
}

.pager .page.first, .pager .page.last {
    background-image: url("../images/html/pager-last.png");
}

.pager .page.first {
    margin-right: 15px;
}

.pager .page.last {
    margin-left: 10px;
}

.pager .page.prev, .pager .page.first {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.text {
    font-size: 14px;
}

.text img {
    max-width: 100%;
    height: auto;
}

.board {
    font-size: 14px;
    color: #5e6669;
}

.board .board-member {
    margin-bottom: 20px;
}

.board .board-member img {
    float: left;
    margin-right: 15px;
    margin-bottom: 5px;
}

.board .board-member .wrap {
    float: left;
    max-width: 220px;
}

.board .board-member p,
.board .board-member a {
    display: block;
    float: left;
    clear: both;
}

.board .board-member p.name {
    margin-bottom: 0;
    font-size: 16px;
    /* font-weight: 600; */
	font-weight:bold;
    color: #2B2B2B;
    line-height: 1.2em;
	margin-bottom:2px;
}

.board .board-member p.position {
    line-height: 1em;
    font-size: 13px;
    /* margin-bottom: 7px; */
	margin-bottom:2px;
}

.board .board-member a {
   /*  margin-bottom: 5px; */
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: left center;
    text-decoration: none;
}

.board .board-member a.phone {
    background-image: url("../images/html/phone_blue.png");
    background-position: 2px center;
}

.board .board-member a.email {
    background-image: url("../images/html/mail_blue.png");
}

.board .board-member a:first-of-type {
    /* margin-top: 10px; */
}

.calendar {
    font-size: 14px;
    color: #5e6669;
}

.calendar .table-wrap {
    width: 100%;
}

.calendar table {
    width: 100%;
}

.calendar table thead th {
    background-color: #40768F;
    color: #FFF;
    padding: 5px;
    text-align: center;
}

.calendar table tbody td {
    padding: 12px;
    border-bottom: solid 1px #C5D9E2;
}

.calendar table tbody td:first-child {
    font-weight: 700;
}

.calendar table tbody td:nth-child(2) {
    font-weight: 700;
}

.calendar table tbody td[colspan="4"] {
    background-color: #C5D9E2;
    font-weight: 600;
    text-align: center;
    padding: 15px;
    border-bottom: 0;
    color: #2B2B2B;
    font-size: 17px;
}

.calendar table tbody td b {
    color: #2b2b2b;
}

.table-wrap {
    overflow-x: auto;
}

.footer {
	/* position: absolute;
    bottom: 0;
    width: 100%;
    height: 25px;   */
    background-color: #7D9BA8;
}

/* #content{
	min-height: 100%;
	height: auto;	
	margin: 0 auto -25px;
	padding-bottom:25px;
}
#content.news,#content.text{
	margin: 0 auto -105px;
	padding-bottom:105px;
}
#content.sponsored{
	margin: 0 auto -185px;
	padding-bottom:185px;
}
#content.sponsored.news{
	margin: 0 auto -265px;
	padding-bottom:265px;
} */
/* #sponsors{
	position: absolute;
    bottom: 25px;
    width: 100%;
} */

.footer .copyright {
    text-align: center;
    color: #FFF;
    font-size: 11px;
    padding: 6px 0 3px 0;
}

.footer .copyright p {
    margin-bottom: 0;
}

.gallery .gallery-item {
    margin-bottom: 20px;
}

.gallery .gallery-item .content {
    background-color: #7D9BA8;
    text-align: center;
    height: 100%;
}

.gallery .gallery-item .thumb-wrap {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.gallery .gallery-item .thumb-wrap .thumbnail {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.16s ease-in-out;
    transition: all 0.16s ease-in-out;
    will-change: transform;
}

.gallery .gallery-item a {
    color: inherit;
    text-decoration: none;
}

.gallery .gallery-item .title {
    text-align: left;
    padding: 15px 20px;
    font-weight: 500;
    color: #FFF;
    line-height: 1.2em;
}

.gallery .gallery-item:hover .thumbnail {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.gallery .pager {
    margin-top: 40px;
    padding-left: 15px;
}

.featherlight.gallery .featherlight-content {
    padding: 0;
    border-bottom: 0;
    overflow: visible;
    max-height: 80%;
}

.featherlight.gallery .featherlight-content .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 20px;
    background-color: #7D9BA8;
    color: #FFF;
}

.featherlight.gallery .featherlight-content .featherlight-close {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    margin-top: -5px;
    width: 35px;
    height: 35px;
    background-image: url("../images/html/close.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
}

/* .featherlight.gallery .featherlight-previous {
    left: 0;
    right: unset;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
} */

/* .featherlight.gallery .featherlight-next {
    right: 0;
    left: unset;
} */


.featherlight.gallery .featherlight-next,
.featherlight.gallery .featherlight-previous {
    width: 150px;
    top: 0;
    -webkit-transition: background-image .16s ease-in-out;
    transition: background-image .16s ease-in-out;
    display: block;
    background: transparent;
}

.featherlight.gallery .featherlight-next{
    right: 0px;
    left: auto;
}

.featherlight.gallery .featherlight-previous{
    right: auto;
    left: 0px;
}

.featherlight.gallery .featherlight-next:hover:before,
.featherlight.gallery .featherlight-previous:hover:before {
    opacity: 1;
}

.featherlight.gallery .featherlight-next span,
.featherlight.gallery .featherlight-previous span {
    display: block;
    width: 50px;
    height: 50px;
    background-image: url("../images/html/gal-arrow.png");
    /* right: 30px;
    left: unset; */
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.featherlight.gallery .featherlight-next span{
    left: auto;
    right: 10px;
}

.featherlight.gallery .featherlight-previous span{
    left: 10px;
    right: auto;
}

.featherlight.gallery .featherlight-previous span{
    background-image: url("../images/html/gal-arrow2.png");
}
.featherlight.gallery .featherlight-next:before,
.featherlight.gallery .featherlight-previous:before {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: url("../images/html/gradient.png");
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: opacity .16s ease-in-out;
    transition: opacity .16s ease-in-out;
}

.featherlight.gallery .featherlight-previous:before{
    background: url("../images/html/gradient2.png");
}


/* EXTRA */
.soc-networks .soc i.fa-facebook {
    
    left: 0px;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #40768F; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    width:30px;
	padding: 5px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
}
#myBtn.show{
	display:block;
}
#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

i.arrow{
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}
.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.nearbottom{
    bottom:25px!important;
}
.footer.nearbottom{
    bottom:0!important;
    position:fixed;
    width:100%;
}
.footer{
    margin-top:90px;
}
body.bottomed{
    padding-bottom:130px;
}

.piclistwrap a{
    width: 33%;
    display: inline-block;
}

.piclistwrap a img{
    width: 100%;
}
.graphicaleditdiv{
    min-height:10px!important;
}