/************/
/* FileStructure */
/**********
1 Header
2 Navigation
3 Header small
4 Responsive Navigation
5 Footer

*/

/****************/
/*** 1 Header ***/
/****************/

header {
	background-color: #FFF;
	line-height: 1em;
	position: relative;
    right: 0;
    top: 0;
    z-index: 999;
}

.header-in {
	text-align: justify;
}

#logo_img {
	width: 152px;
	height: 64px;
	background-repeat: no-repeat;
	background-size: 100%;
}

#logo{
	margin-top: 10px;
	display: inline-block;
	float: left;
	position: relative;
}

/********************/
/*** 2 Navigation ***/
/********************/

.header-in nav ul li {
	padding-top: 0px;
}

nav li {
	float: left;
}

nav ul li a {
	height: 100%;
	float: right;
	font-stretch: narrower;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1em;
	text-transform: uppercase;
	color: rgb(91, 94, 96);
	padding: 35px 20px 41px;
	position: relative;
	text-decoration: none;
	transition: opacity 0.25s linear;
	-moz-transition: opacity 0.25s linear;
	-webkit-transition : opacity 0.25s linear;
	-o-transition: opacity 0.25s linear;
}

nav ul li:hover a.naviLink {
	background-color: #6876a4;
	color: #FFF;
}

.navLink {
	color: rgb(91, 94, 96);
}

.selectedNav {
	background-color: rgb(32,51,119);
	color: rgb(255, 255, 255);
}

.submenu {
	display: none;
	position: absolute;
	float: left;
	padding: 10px 0px;
	width: 190px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #FFF;
	text-align: left;
	-webkit-transition: opacity 0.25s linear;
	-moz-transition: opacity 0.25s linear;
	-o-transition: opacity 0.25s linear;
	transition: opacity 0.25s linear;
	z-index: 100;
	top: 90px;
}

li:nth-child(2):hover > .submenu {
	display: block;
}

.submenu li {
	float: left;
	position: relative;
	width: 100%;
	padding: 7px 20px;
	text-transform: uppercase;
}

.submenu li:hover{
	color: rgb(32, 51, 119);
}

.show-sub:hover .submenu {
	display: block;
}

.submenu li a {
	float: none;
	color: #fff;
	font-size: 11px;
	line-height: 1,5 em;
	padding: 0px;
	text-align: left;
}

.submenu li:hover a {
	color: rgb(32,51,119);
}

/********************/
/*** 3 Header small ***/
/********************/

.header-small {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #203377;
}

.header-small #logo_img {
	width: 97px;
	height: 43px;
	background-repeat: no-repeat;
	background-size: 100%;
	margin: 0px 0px;
}

.header-small nav li {
	position: relative;
	margin-bottom: 0px;
}

.header-small nav ul li a {
	font-stretch: narrower;
	font-weight: 100;
	font-size: 14px;
	line-height: 1em;
	text-transform: uppercase;
	color: #FFF;
	padding: 22px 20px;
}

.header-small nav ul li:hover a.naviLink {
	background-color: #FFF;
	color: #5B5E60;
}

.header-small nav .submenu {
	top: 58px;
}

.header-small nav .submenu li {
	padding: 7px 20px;
}

.header-small nav .submenu li a {
	font-size: 11px;
	padding: 0px;
}

.header-small nav ul li a.currentMenu {
	background-color: #FFF;
	color: #5B5E60;
}

/*******************************/
/*** 4 Responsive Navigation ***/
/*******************************/

#responsiveNavButton {
	width: 48px;
	height: 48px;
	border-color: #FFF;
	border-radius: 25%;
	border-style: solid;
	border-width: 1px;
	background-color: #00C2A9;
	position: relative;
	margin-top: 8px;
	text-align: center;
	font-weight: normal;
	font-style: normal;
	font-size: 60px;
	line-height: 40px;
	padding-top: 7px
}

#responsiveNavButton:after {
	content: "=";
	color: #fff;
}

#responsiveNav {
	text-align: center;
	background-color: #203377;
	width:100%;
}

#responsiveNav li a {
	color: #fff;
}

#responsiveNav ul li {
	background-color: rgb(119, 119, 119);
}

#responsiveNav li {
    list-style: none;
    padding-bottom: 10px;
    border-top: 1px solid #e3e3e3;
    padding-top: 10px;
    margin: 0px;
}



/****************/
/*** 5 Footer ***/
/****************/

footer {
	background-color: rgba(0, 0, 0, 0.95);
	color: #4b4b4c;
	padding: 37px 0;
	text-align: center;
	font-size: 12px;
	margin: 40px 0px 0px 0px;
}

footer a {
	color: #4b4b4c;
	padding: 0px 10px 0px 0px;
}