/* Navbar container */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000000;}
#colorbox{outline:0;}
#cboxContent{margin-top:32px; overflow:visible; background:#000;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{background:#000; padding:1px;}
#cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
#cboxLoadingOverlay{background:#000;}
#cboxTitle{position:absolute; top:-22px; left:0; color:#000;}
#cboxCurrent{position:absolute; top:-22px; right:205px; text-indent:-9999px;}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; text-indent:-9999px; width:20px; height:20px; position:absolute; top:-20px; background:url(images/controls.png) no-repeat 0 0;}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

#cboxPrevious{background-position:0px 0px; right:44px;}
#cboxPrevious:hover{background-position:0px -25px;}
#cboxNext{background-position:-25px 0px; right:22px;}
#cboxNext:hover{background-position:-25px -25px;}
#cboxClose{background-position:-50px 0px; right:0;}
#cboxClose:hover{background-position:-50px -25px;}
.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious{right:66px;}
.cboxSlideshow_on #cboxSlideshow{background-position:-75px -25px; right:44px;}
.cboxSlideshow_on #cboxSlideshow:hover{background-position:-100px -25px;}
.cboxSlideshow_off #cboxSlideshow{background-position:-100px 0px; right:44px;}
.cboxSlideshow_off #cboxSlideshow:hover{background-position:-75px -25px;}

@media only screen and (max-width: 1200px) {
  .top-dropdown {
  	float:left;
	clear:left;	
  }
  .top-dropdown-content
  	{
	float:left;
        clear:left;
	display:block;
	position:relative;
	left:20px;
	}
  .mobile-menu-close
	{
	position:absolute;
	float:left;
	clear:right;
	}


}
@media only screen and (min-width: 1201px) {
.top-navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Lato;
}
 .top-dropdon::after{
        content: "";
        display: block;
        float: left;
        width: 1px;
        height: 100%;
        background: #008dc9;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(35%, #008dc9), color-stop(65%, #008dc9), to(transparent));
        background: linear-gradient(to bottom, transparent 0, #008dc9 35%, #008dc9 65%, transparent 100%);
    }
/* Links inside the navbar */
.top-navbar a {
	float: left;
	font-size: 16px;
	color: white;
	text-align: center;
	padding-top: 14px;
	padding-right: 16px;
	padding-left: 16px;
	padding-bottom: 14px;
	text-decoration: none;
	z-index: 3000 !important;
	position: relative;
}

/* The dropdown container */
.top-dropdown {
  float: left;
  overflow: hidden;
 
 
}


/* Dropdown button */
.top-dropdown .top-dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
  z-index:3000;	
}

/* Dropdown content (hidden by default) */
.top-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  border: 2px solid #c06e2a;
  text-align: left;
  color: #c08438;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index:auto;
}

/* Links inside the dropdown */
.top-dropdown-content a {
  float: none;
  color: white;
  padding: 7px 16px !important;
  text-decoration: none;
  display: block;
  text-align: left;
  z-index:3000 !important;
}

/* Add a grey background color to dropdown links on hover */
.top-dropdown-content a:hover {
  background-color: #Ededed;
}

/* Show the dropdown menu on hover */
.top-dropdown:hover .top-dropdown-content {
  display: block;
}



/*
.top-dropdown {
  position: relative;
  display: inline-block;
}

.top-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: top;
}

.top-dropdown:hover .top-dropdown-content {
  position:absolute;
  display: block;
  
}
}
    .accordion {
            /* box-sizing: border-box; */
    font-family: 'Montserrat';
    font-weight: 300;
    /* Space section box from left margin*/
    padding: 0;
    /* Hide bullets to the left of section box */
    list-style: none;
}

/* Indent submenus */
@media only screen and (max-width: 1201px) {
    ul .accordion-inner {
        padding-left: 1em;
        overflow: hidden;
        display: none;
        /* Space section box from left margin*/
        padding: 5;
        /* Hide bullets to the left of section box */
        list-style: none;
    }


    /* Box arround each section */
    li a.accordion-toggle {
        /*   text-decoration: none;
           color: inherit;
           width: 50%;
           display: block;
          /* background: rgba(0, 0, 0, 0.78);*/
        /*  color: #fefefe;
          padding: .45em;
          transition: background .3s ease;
         /* -webkit-border-radius: 7px;
          -moz-border-radius: 7px;*/
        /*  border-radius: 7px;*/
    }

    /* Hover effect on a sections */
    li a.accordion-toggle:hover {
        /*background: rgba(0, 0, 0, 0.9);*/
    }

    .accordion a .fa-chevron-down {
        /*position: relative;*/
        /* green, top level  */
        color: #29d909;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .accordion a.chev .fa-chevron-down {
        color: #18537C;
    }

    .accordion a .fa-chevron-down {


        margin-left: 5px;
        margin-right: 15px;
        font-size: 18px;

    }

    .accordion a.chev .fa-chevron-down {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(180deg);
    }
}
@media screen and (min-width: 1200px) {
    .hide_me {
        display: none;
    }
}


