/*---------- General ----------*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 17px;
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}

.content {
  position: relative;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 2px;
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

/*---------- Top Banner ----------*/
#top-banner-wrap {
	width: 100%;
	min-height: 40px;
	height:auto;
	background: #e1e1e1;
	/*position: fixed;*/
	top: 0;
	border-bottom: 2px solid #adadad;
	z-index: 100;
	margin-left:0px;
}

#top-banner {
	min-height: 50px; 
	height:auto;
}

#top-banner-left {
	max-width: 10%;
	vertical-align: middle;
	margin-top: 2px;
}

#top-banner-left a img {
	float: left;
}

#top-banner-middle h1 {
	position: relative;
	min-width: 80%;
	text-align: center;
}

#top-banner-right {
	height: 50px;
	position: relative;
	text-align: center;
	vertical-align: middle;
	max-width: 10%;
	margin-top: 20px;
}

#top-banner-right p {
	color: white;
}

#top-banner-right img {
	float: center;
	vertical-align: middle;
}

#top-banner p {
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
	line-height: 25px;
	text-align: middle;
	margin-top: 10px;
}

#top-banner a, #top-banner a:visited, #top-banner a:hover {
	font-size: 12px;
	font-weight: bold;
	color: #404040;
	text-decoration: none;
}

.social-icons {
	float: right;
	position: relative;
	margin-right: 5px;
}

img.opacity {
	opacity: 0.5;				  /* normal dim hover dark */
	filter: alpha(opacity=50);
	opacity: 1;					/* normal dark hover dim */
	filter: alpha(opacity=100);

}

img.opacity:hover {
	opacity: 1;					/* normal dim hover dark */
	filter: alpha(opacity=100);
	opacity: .5;				   /* normal dark hover dim */
	filter: alpha(opacity=50);
	
}

#address-pin {
	float: left;
	margin-right: 5px;
	margin-left: 35px;
}

/*---------- Header ----------*/
#header-wrap {
	width: 100%;
	max-height: 50px;
	/*position: fixed;*/
	top: 5px;
	z-index: 100;
}

#header {
	max-width: 1000px;
	width 100%;
	height: 50px;
	margin: auto;
}

#header-left {

	margin-top: 5px;

	position: relative;
}

#header-middle {
	float: center;
	margin-top: 5px;
	position: relative;
	text-align: center;
}

#header-middle p {
	text-align: center;
	color: #404040;
	font-style: italic;
	font-size: 20px;
	margin-bottom: 5px;
}

#header-right {
	float: center;
	margin-top: 5px;
	position: relative;
	text-align: right;
}

#header-right p {
	text-align: right;
	color: #404040;
	font-style: italic;
	font-size: 18px;
	margin-bottom: 30px;
}

/*---------- Menu ----------*/
.menu ul {
	text-align: left;
	display: inline;
	margin: 0;
	padding: 0;
	list-style: none;
	position:relative;
	z-index:999999999;
}

.menu ul li {
	display: inline-block;
	margin-right: -4px;
	position: relative;
	padding: 10px;
	cursor: pointer;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 20px !important;
	font-weight: bold;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.menu ul li a, a:visited {
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	color: #fff;
}

.menu ul li:hover {
	background: #E1E1E1;
	text-decoration: none;
	color: #2A55F7;
}

.menu ul li ul {
	padding: 0;
	position: absolute;
	vertical-align: middle;
	top: 30px;
	left: 0;
	width: 200px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	display: none;
	opacity: 0;
	visibility: hidden;
	-webkit-transiton: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-transition: opacity 0.2s;
}

.menu ul li ul li { 
	background: #fff; 
	display: block; 
}

.menu ul li ul li a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.menu ul li ul li:hover { 
	background: #2A55F7; 
}

.menu ul li ul li a:hover { 
	color: #fff !important; 
}

.menu ul li:hover ul {
	display: block;
	opacity: 1;
	visibility: visible;
}

/*------------Third Level----------------------*/

.menu > li > ul li > ul {
    display: none !important;
}

.menu > li > ul li:hover > ul {
    display: block !important;
    position: absolute;
    left: 100%;
    top: 0;
    width: auto;
}

.menu > li > ul > li ul > li {
    display: block;
    padding: 12px;
    white-space: nowrap;
}


/*---------- Main Content Pages ----------*/
#main-content-home-wrap {
	width: 100%;
	position: relative;
}

#main-content-home {
	width:100%;
	max-width: 1050px;
	margin: auto;
	padding-bottom: 10px;
}

#main-content-home p {
	font-size: 16px;
	color: #000;
	padding-left:4%;
	padding-right:4%;
}

#main-content-wrap {
	position: relative;
	z-index:0;
	
}

#main-content {
	padding-top: 25px;
	padding-bottom: 25px;
}

#main-content td {
	padding-top: 25px;
	padding-bottom: 25px;
	vertical-align: top;
}

#main-content-body {
	width: 700px;
	width: 600px;
	margin-right: 25px;
	float: left;
	position: relative;
}

#main-content-body p {
	font-size: 12px;
	color: #000;
	margin-bottom: 10px;
}

.content-image-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	position: relative;
}

/*--------------------------------------------------------------------------------------------------
	Sidebar
--------------------------------------------------------------------------------------------------*/

.sidebar {

	position: relative;

	background: #e1e1e1;
	padding: 15px;
	border: 1px solid #404040;
	margin-bottom: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
	max-width: 60%;
}

.sidebar h2 {
	color: black;
	text-align: right;
}

.sidebar p {
	font-size: 20px;
}

.input {
	padding: 5px;
	margin-bottom: 10px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-khtml-border-radius: 5px;
	font-size: 12px;
	font-style: italic;
	border: none;
	width: 100% !important;  /* added to force the input to stretch sidebar */
} 

.submit {
	padding: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
	font-size: 14px;
	text-transform: uppercase;
	background: #2a55f7;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	border: none;
	text-align: center;
	width: 85px;
	margin: auto;
	display: block;
}


/*---------- Copyright ----------*/
#copyright-wrap {
	position: relative;
	text-align:center;
}

#copyright {
	width:100%;
	max-width: 1280px;
	margin: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

#copyright p {
	color: #fff;
	font-size: 11px;
}

#copyright a, a:visited {
	text-decoration: underline;
	font-size: 11px;
	color: #519FE1;
	font-weight: bold;
}

#copyright a:hover {
	text-decoration: underline;
	font-size: 11px;
	color: #e1e1e1;
	font-weight: bold;
}

/*---------- About ----------*/

.about {
	width: 60%;
	height: 350px;
	border: 3px solid #404040;
	border-color: white;
	color: #fff;
	min-height: 185px;
	margin-bottom: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
		
.about img {
    padding: 5px;
    background: none repeat scroll 0% 0%;
    border: 0px solid #CCC;
	width: 228px;
	height: 314px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
.about img.left { float: left; }
.about img.right { float: right; }

.about div {
	display: inline;
	padding: 0px;
    width: 100%;
}
.about div.left { text-align: left; }
.about div.right { text-align: right; }

.about div h1 {
	font-weight: bold;
	color: #fff;
}
.about div h2 {
	font-weight: bold;
	color: #fff;
}
.about div p  { 
	font-weight: bold;
	padding: 5px !important;
	color: #fff;
}

img.cert {
	background: none;
	border: none;
	height: 65px;
	width: 75px;
}

/*---------- Resources ----------*/

.resources {
	width: 40%;
/*	background: #0095a8;
	border: 3px solid #404040; */
	color: #fff;
	min-height: 185px;
	margin-bottom: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
		
.resources img {
    padding: 5px;
    background: none repeat scroll 0% 0%;
    border: 0px solid #CCC;
	width: 228px;
	height: 314px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
.resources img.left { float: left; }
.resources img.right { float: right; }

.resources div {
	display: inline;
	padding: 0px;
    width: 100%;
}
.resources div.left { text-align: left; }
.resources div.right { text-align: right; }

.resources div h1 {
	color:  #00db00;
}
.resources div h2 {
	color: #00db00;
}
.resources div p  { 
	padding: 5px !important;
	color: #000;
}

img.cert {
	background: none;
	border: none;
	height: 65px;
	width: 75px;
}

/*---------- Events ----------*/

.events {
	width: 100%;
	border: 3px solid #404040;
	color: #fff;
	min-height: 185px;
	margin-bottom: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
		
.events img {
    padding: 5px;
    background: none repeat scroll 0% 0%;
    border: 0px solid #CCC;
	width: 599px;
	height: 480px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
.events img.left { float: left; }
.events img.right { float: right; }

.events div {
	display: inline;
	padding: 0px;
    width: 100%;
}
.events div.left { text-align: left; }
.events div.right { text-align: right; }

.events div h1 {
	color:  #00db00;
}
.events div h2 {
	color: #00db00;
}
.events div p  { 
	padding: 5px !important;
	color: #000;
}

img.cert {
	background: none;
	border: none;
	height: 65px;
	width: 75px;
}

/*---------- GBNF ----------*/

.gbnf {
	width: 100%;
	color: #fff;
	min-height: 185px;
	margin-bottom: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
		
.gbnf img {
    padding: 5px;
    background: none repeat scroll 0% 0%;
    border: 0px solid #CCC;
	width: 1280px;
	height: 720px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
.gbnf img.left { float: left; }
.gbnf img.right { float: right; }

.gbnf div {
	display: inline;
	padding: 0px;
    width: 100%;
}
.gbnf div.left { text-align: left; }
.gbnf div.right { text-align: right; }

.gbnf div h1 {
	color:  #00db00;
}
.gbnf div h2 {
	color: #00db00;
}
.gbnf div p  { 
	padding: 5px !important;
	color: #000;
}

img.cert {
	background: none;
	border: none;
	height: 65px;
	width: 75px;
}

/*---------- Calendar ----------*/

.calendar {
	width: 100%;
	color: #fff;
	min-height: 185px;
	margin-bottom: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
		
.calendar img {
    padding: 5px;
    background: none repeat scroll 0% 0%;

	width: 599px;
	height: 480px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}
.calendar img.left { float: left; }
.calendar img.right { float: right; }

.calendar div {
	display: inline;
	padding: 0px;
    width: 100%;
}
.calendar div.left { text-align: left; }
.calendar div.right { text-align: right; }

.calendar div h1 {
	color:  #00db00;
}
.calendar div h2 {
	color: #00db00;
}
.calendar div p  { 
	padding: 5px !important;
	color: #000;
}

img.cert {
	background: none;
	border: none;
	height: 65px;
	width: 75px;
}

