body,div,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
	font-family: Arial, Helvatica, Serif;
	font-size:13px;
	color:#333;
}

a {
	color:#000;
	text-decoration:underline;
}
a:hover {
	color:#0000ff;
}

#wrapper {
	width:100%;
}

.header {
	width:100%;
	background-color:#000078;
	overflow:hidden;
}
.header .header_content {
	color:#ffffff;
	padding:10px;
	margin:0px;
	font-weight:bold;
}
.header .header_content a {
	color:#23aadd;
	text-decoration:none;
}
.header .header_content a:hover {
	text-decoration:underline;
}
.header .header_content span {
	float:right;
}

.wrapper_content {
	padding:10px;
}
.wrapper_content p {
	text-align:justify;
}

.footer {
	background-color: #EFEFEF;
    border-top: 5px solid #000078;
    margin: 10px 0 0;
    padding: 10px;
    text-align: center;
}





/*============== RESPONSIVE NAVIGATION BAR ====================*/
.navigation {
	border-bottom: 1px solid #333333;
    overflow: hidden;
	width:120%;
}
#toggle, .toggle { display: none; }
.menu > li { list-style: none; float:left;	}
.clearfix:before, .clearfix:after { display: table; content: ""; }
.clearfix:after { clear: both; }

.nav-header{ 
	/*background-color: #4CAF50;*/
	font-weight:bold;
	font-family: Arial, Helvatica, Serif;
    /*color: white;*/
    padding: 10px;
    font-size: 13px;
    border: none;
    cursor: pointer;
}

.dropbtn {
    /*background-color: #4CAF50;*/
	font-weight:bold;
	font-family: Arial, Helvatica, Serif;
    /*color: white;*/
    padding: 10px;
    font-size: 13px;
    border: none;
    cursor: pointer;
}

.nav-header, .menu, .menu > li, .menu > li > a{ 
	height: 40px; 
}

.menu > li > a{
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	font-weight:bold;
	line-height: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

.menu > li > a:hover, .menu > li > a:focus{
	color: #23aadd;
}

.toggle{ 
	z-index: 2; 
}


@media (min-width: 768px) and (max-width: 979px) {
	 .nav-header {
	  float: none;
	  /*margin: -20px 0 0 30px;*/
	 }
}

@media only screen and (max-width: 767px){
	.header .header_content {
		float:none;
		text-align:center;
	}
	.header .header_content span {
		display:block;
		float:none;
		margin:10px 0 0;
	}
	.navigation {
		border:0;
		margin:20px 0 0;
		overflow:visible;
	}



	.menu { display: none; opacity: 0; width: 120%; position: absolute; right: 0; margin-top: -10px; }
	.menu > li { display: block; width: 120%; margin: 0; }
	.menu > li > a { display: block; width: 120%; text-decoration: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
	.toggle { display: block; position: relative; cursor: pointer; -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; margin-top: -20px !important; }
	#toggle:checked ~ .menu { display: block; opacity: 1;}
	
	.menu{
		background: #FFFFFF;
	}
	
	.menu, .menu > li, .menu > li > a{
		height: auto;
	}
	
	.menu > li > a{
		padding: 15px 15px;
	}
	
	.menu > li > a:hover, .menu > li > a:focus{
		background: #F2F2F2;
		padding: 15px 15px 15px 25px;
	}
	.nav-header li{ background:none !important; padding:0 !important;}
	.nav-header li a:link, #topnav li a:visited, #topnav li a:hover{padding: 10px;}
	.toggle:after {
		content: 'Main Menu';
		display: block;
		width: 200px;
		margin:0 auto 10px;
		padding: 10px 50px;
		background: #333333;
		text-align: center;
		font-family: Arial;
		font-size: 12px;
		color: #FFFFFF;
		-webkit-transition: all 0.5s linear;
		-moz-transition: all 0.5s linear;
		-o-transition: all 0.5s linear;
		transition: all 0.5s linear;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box; 
	}

	.toggle:hover:after{
		background: #333333;
	}
	
	#toggle:checked + .toggle:after{
		content: 'Close Menu';
		font-family: Arial;
	}
	
	.nav-header, .toggle:after{ 
		float: none; 
	}
	.toggle:after { 
		text-align: center; width: 100%; 
	}
}

/*===================================================*/
/* Style The Dropdown Button */


/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
	color: #ff66ff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ff66ff}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}