/*
Bootstrap Grid Overrides
========================*/

/* Custom Bootstrap override for secondary header */
@media all and (min-width: 768px) and (max-width: 1199px) {
	
	.header_secondary-wrapper .col-md-7,
	.header_secondary-wrapper .col-md-5 {
		max-width: 100%;
		webkit-box-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 100%;
	}
	
}


/* Custom Bootstrap override for secondary header */
@media all and (min-width: 1200px){
	

	.header_secondary-wrapper .container {
		max-width: 1500px;
	}
	
}


@media (min-width: 1540px) {
	
	footer .container {
		max-width: 1240px;
	}	
	
}


/* Custom Bootstrap override added by KM */

.h2, h2 {
    font-size: 1.75rem;
}

.h3, h3 {
    font-size: 1.5rem;
}

.h4, h4 {
    font-size: 1.3rem;
}

hr {
    border: none;
    height: 1px;
    /* Set the hr color */
    color: #999; /* old IE */
    background-color: #999; /* Modern Browsers */
    margin: 40px;
}

/*===== END Bootstrap overrides */


/*
Defaults
=================== */

html {
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, body { 
	font-family: 'Verdana', Tahoma, Geneva, sans-serif; 
}


h1, h2, h3, h4, h5, h6 {
	color: #18498d;
	font-weight: bold;
	margin-bottom: .3rem;
}

body {
	color: #5c5c5c;
	font-size: 0.875rem;
}

a { 
	color: #18498d; 
	cursor: pointer; 
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
}
/*===== END defaults */





/*
Forms
=================== */

label {
	color: #5c5c5c;
	display: block;
	font-weight: bold;
	margin-bottom: 8px;
	margin-top: 8px;
}

input, 
textarea, 
select, 
button {
	-webkit-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
	appearance:none;	
	border-radius: 0;
	background-color: #fff;
	border: 1px solid #5c5c5c;
	color: #5c5c5c;
	margin-bottom: 15px;
}

input[type="text"], 
input[type="email"], 
input[type="tel"], 
textarea, 
select {
	border-radius: 4px;	
	display: block;
	padding: 5px 10px;
	width: 100%;
	max-width: 400px;
}

input[type="radio"], 
input[type="checkbox"] {
	margin-top: 2px;
	padding: 8px;
	vertical-align: top;
}

input[type="radio"] {
	border-radius: 10px;
}

input[type="radio"]:checked, 
input[type="checkbox"]:checked {
	background-color: #18498d;
}

textarea {
	min-height: 100px;
}

input[type="submit"]{	
	cursor: pointer;
	font-family: Tahoma,Verdana, Geneva,sans-serif; 
	font-weight: bold;
	display: block;
	text-align: center;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .5rem 2rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	letter-spacing: 1px;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	text-transform: uppercase;	
	margin-top: 25px;
	margin-bottom: 25px;
}

input[type="submit"], input[type="submit"]:focus {
	background-color: #18498d;
	border-color: #18498d;
	color: #ffffff;
}

input[type="submit"]:hover {
	text-decoration: none;
	background-color: rgba(255,255,255,0.1);
	border-color: #18498d;
	color: #18498d;
}
/*===== END forms */





/*
Buttons
======== */

.button { 
	font-family: Tahoma,Verdana, Geneva,sans-serif; 
	font-weight: bold;
	display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .5rem 2rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	text-transform: uppercase;
	outline: none;
}


.slider a.button, .slider a.button:visited, .slider a.button:active,
footer a.button, footer a.button:visited, footer a.button:active {
	background-color: #fff;
	border-color: #fff;
	color: #18498d;
}

.slider a.button:hover,
footer a.button:hover {
	text-decoration: none;
	background-color: rgba(255,255,255,0.1);
	border-color: #fff;
	color: #fff;
}



main a.button, main a.button:visited, main a.button:active {
	background-color: #18498d;
	border-color: #18498d;
	color: #ffffff;
}

main a.button:hover {
	text-decoration: none;
	background-color: rgba(255,255,255,0.1);
	border-color: #18498d;
	color: #18498d;
}





/*
Mobile Menu Styles & Functionality
================================== */

.nav_btn-toggle { 
	display: block;
	color: inherit;
	cursor: pointer;
	padding: 5px 10px;
	text-decoration: none;
	width: 100%; 
	
}

.nav_btn-icon {
	margin-top: 4px;
	float: right;
}

.nav_menu { display: none; }

@media all and (min-width: 768px){
	
	.nav_btn-toggle { 
		display: none; 
	}
	
	.nav_menu { 
		display: block !important; 
	}
	
}

/* If no js hide btn toggle and show nav menu */
.no-js .nav_btn-toggle { display: none; }
.no-js .nav_menu { display: block; }

/*===== END Mobile Menu */





/*
Header
=================== */

/* main & secondary Header */
.header_main-wrapper {
	background-color: #000;
	background-color: rgba(0,0,0,0.6);
}

.header_secondary-wrapper {
	background-color: #fff;
	background-color: rgba(255,255,255,0.6);
}

.nav_header-main {
	color: #fff; /*for inheritance */
}

.nav_header-secondary {
	color: #18498d; /*for inheritance */
}

.nav_header-main ul, 
.nav_header-secondary ul{ 
	font-size: 0;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.nav_header-main ul li a,
.nav_header-secondary ul li a{
		display: block;
}

.nav_header-main a, 
.nav_header-main a:visited,
.nav_header-secondary a, 
.nav_header-secondary a:visited {
	font-family: 'Tahoma', Verdana, Geneva,sans-serif; 
	letter-spacing: 1px;
	padding: 15px 15px;
	text-decoration: none;
	text-transform: uppercase;
}

.nav_header-main a, 
.nav_header-main a:visited {
	color: #fff;
	font-size: 12px;
	font-size: 0.75rem;
}

.nav_header-secondary a, 
.nav_header-secondary a:visited {
	color: #18498d;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: bold;
}



/* logo */
.site-logo img {	
	width: auto;
	height: auto;
	max-width: 100%;
}



/* search */
.search {
	display: none;
	position: relative;
	height: 41px;
}

input.search-input {	  
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 10px;
	font-size: 13px;
	font-size: 0.8125rem;
	padding: 10px 13px;
	outline: none;
	width: 100%;
	max-width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	padding-right: 54px;
}

.search_icon {
	background: #d5040a;
	background: -webkit-linear-gradient(#8c0202, #d5040a);
	background: -moz-linear-gradient(#8c0202, #d5040a);
	background: linear-gradient(#8c0202, #d5040a);
	border-radius: 0 10px 10px 0;
	color: #fff;
	font-size: 20px;
   /* padding: 4px 18px 8px; */
    padding: 1px 18px 8px;
    position: absolute;
    top: 0px;
    right: 0;    
}

.controls .radio{
	width: 150px;
    float: left;
}

.ordering-box {
	clear:both;
}

.only .checkbox{
	width: 150px;
    float: left;
}

.edocman-heading {
    display: none !important;
}

.pagination ul {
	list-style-type: none;
	
}

.pagination ul li {
	display: inline;
	padding: 10px;
}

/* header media querries */
@media all and (min-width: 768px){
	
	.header_main-wrapper {
		border-bottom: 1px solid #fff;
		border-bottom: 1px solid rgba(255,255,255,1);
	}
	
	.nav_header-main ul,
	.nav_header-secondary ul{
		float: right;
	}
	
	.nav_header-main ul li,
	.nav_header-secondary ul li {
		display: inline-block;
		vertical-align: bottom;
	}
	
	.nav_header-main a {
		padding: 12px 18px;
	}
	
	.nav_header-secondary a {
		padding: 24px 18px 12px;
		text-shadow: 1px 1px 0px #fff;
	}
	
	.nav_header-main ul li a.active,
	.nav_header-secondary ul li a.active {
		background-color: #fff;
		font-weight: bold;
	}
	
	.nav_header-main ul li a.active {	
		border-radius: 8px 8px 0px 0px;
		color: #18498d;
	}
	
	.nav_header-main ul li a:hover,
	.nav_header-main ul li a:focus {
		background-color: #fff;
		border-radius: 8px 8px 0px 0px;
		color: #18498d;
	}
	
	/*Icons in main nav */
	.nav_header-main ul li:nth-child(6) a:hover,
	.nav_header-main ul li:nth-child(7) a:hover {
		background-color: transparent;
	}
	
	.nav_header-secondary ul li a.active,
	.nav_header-secondary ul li a:hover,
	.nav_header-secondary ul li a:focus {		
		background: -webkit-linear-gradient(rgba(255,255,255,0), #ffffff);
		background: -moz-linear-gradient(rgba(255,255,255,0), #ffffff);
		background: linear-gradient(rgba(255,255,255,0), #ffffff);
		color: #cc0409;
	}
	
	.search {
		display: block;
		padding: 34px 0;
		top: 20px;
		right: 18px;
	}
	
	input.search-input { 
		width: 310px;
	}

	.edocman_document {
		padding-bottom:20px
	}
	
	.menu-right-nav li {
		width:100%;
	}
	
	h1.edocman-page-heading {
	font-size:2rem;
	}
	h2.edocman-heading {
	font-size:1.8rem;
	}
	h3.edocman-category-title {
	font-size:1.2rem;
	font-weight:normal;
		
	display: table-cell;
    vertical-align: middle;
    text-align: center;
		
	}
	
	.edocman-box-heading{
		display: table;
		width: 100%;
	}

	h3.edocman-document-title{
	font-size:1.2rem;
	font-weight:normal;
	}
	
	.edocman-sort-direction{
		top: 20px;
		position: relative;
	}
	.span3 {
		width:25%;
		float:left;
	}

	.span9 {
		width:75%;
		float:left;
	}

	.span4 {
		width:31%;
		float:left;
		margin:10px
	}
	.span4 div {
		height:70px;
	}
}

@media all and (min-width: 768px){
	
	header { 
		position: fixed; 
		z-index: 9999;
		left: 0;
		right: 0;
	}
	
}

/*===== END Header */





/*
Slider
================================== */

.slider {
	color: #fff; /*For Inheritance*/
	font-size: 23px; /*For Inheritance*/
	font-family: 'Tahoma', Verdana, Geneva,sans-serif; /*For Inheritance*/
	line-height: 1.2;	
}

.slider:after {
	background-image: url('../img/dropshadow.png');
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: scroll;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	content: '';
	display: block;
	height: 25px;
	margin-top: -8px;
	width: 100%;
	
	
}

.slider_slide {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;	
	position: relative;	
}

.slider_slide-content {
	background-color: rgba(0,0,0,0.6);
	padding: 20px;
	position: absolute;
	top: 25%;
	left: 10%;
	width: 540px;
	max-width: 100%;		
}

.slider_slide-content p:last-child {
	margin-bottom: 0;
}

.slick-list, 
.slick-track { 
	height: 100%; 
}

.slick-arrow {
	background-color: transparent;
    color: #fff;
	cursor: pointer;
    font-size: 60px;
	position: absolute; 
	top: 58%; 
	z-index: 1;
}

.slick-arrow:hover {
	opacity: 0.8;
}

.slick-prev { 
	left: 3%; 
}
.slick-next { 
	right: 3%; 
}


@media all and (max-width: 767px){
	
	.slider {
		height: 400px;
	}
	
	.slider_slide-content {
		left: 0;
	}
	
	.slick-arrow { 
		display: none !important;
	}
	
}


@media all and (min-width: 768px){
	
	.slider {
		height: 800px;
	}
	
	.slider_slide-content { 
		top: 58%; 
	}
	
	.slick-arrow { 
		top: 64%; 
	}
	
	
	
}

@media all and (min-width: 1200px){
	
	.slider {
		height: 630px;
	}
	
	.slider_slide-content { 
		top: 50%; 
	}
	
	.slick-arrow { 
		top: 58%; 
	}
}
/*===== END Slier */




/*
Hero Image Section
================================== */
.hero_section {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;	
	color: #fff;
	height: 400px;
	position: relative;
}

.hero_section h1 {
	color: #fff;
}

.hero_section h1 {
	font-size: 48px;
	font-weight: normal;
}

.hero_section-content {
	background-color: rgba(0,0,0,0.6);
	color: #fff;
	position: absolute;
	bottom: 150px;
	padding: 22px 40px 22px 40px;
}


@media all and (min-width: 768px){
	
	.hero_section {
		height: 600px;
	}
	
	.hero_section-content {
		bottom: 68px;
		padding: 22px 40px 22px 230px;
	}

}

@media all and (min-width: 1200px){
	
	.hero_section {
		height: 420px;
	}
	
}
/*===== END Hero Image Section */





/*
Tabs Section
================================== */

.tab_section {
	background-color: #bfd8f9;
}

.nav_section-tabs {
	padding-top: 70px;
}

.nav_section-tabs .nav-tabs {
	border-bottom: 1px solid #dee2e6;
}

.nav_section-tabs a {
	color: #18498d;
	font-size: 12px;
	font-weight: bold;
	font-family: Tahoma,Verdana, Geneva,sans-serif; 
}

.nav_section-tabs a.nav-link.active {
	border-color: #fff;
	color: #18498d;
}

.nav_section-tabs a.nav-link:hover {
	background-color: #fff;
	border-color: #fff;
}

.tab_section-content {
	background-color: #fff;
	padding: 36px 20px 20px; 
}

/* Investors Tab Section */
.tab_section-content-investors ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 25px;
}

.tab_section-content-investors ul li {
	line-height: 1.2;
}

.tab_section-content-investors ul li,
.tab_section-content-investors table {
	font-size: 20px;
}

.tab_section-content-investors table {
	margin-top: 30px;
	margin-bottom: 25px;
	width: 100%;
}

.tab_section-content-investors table td:nth-child(2){
	color: #18498d;
	text-align: right;
}

.tab_section-content a, 
.tab_section-content i {	
	color: #18498d;	
	font-size: 14px;
	font-weight: bold;
}

.tab_section-content-investors a.button {
	width: 100%;
}
/* END Investors Tab Section */


@media all and (min-width: 768px){
	
	.nav_section-tabs a {
		font-size: 20px;
	}
	
}

/*===== END Tabs Section */





/*
Content Article Section
================================== */

article {
	font-size: 15px;
	padding: 20px 0;
}

article h1, article h2, article h3, article h4, article h5, article h6 {
	margin-bottom: 0.9375rem;
}

article p {
	margin-bottom: 1.875rem;
	line-height: 1.6;
}

.article_section {
	padding: 20px 0;
}

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

.nav_aside ul li {
	line-height: 2.4;
}

.nav_aside a, .nav_aside a:visited {
	color: #18498d;
	font-size: 15px;
	font-weight: bold;
}

.nav_aside a:hover, .nav_aside a:focus, .nav_aside a.active {
	color: #cc0409;	
}


.article_fluid {
	background-color: #18498d;
	color: #fff;
	text-align: center;
	padding: 0;
	overflow: hidden;
}


.article_fluid h1, .article_fluid h2, .article_fluid h3, .article_fluid h4, .article_fluid h5, .article_fluid h6 {
	color: inherit;
}

.article_fluid-content,
.article_fluid-hero {
	padding: 120px 5%;
}

.article_fluid-hero {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;	
}

@media all and (max-width: 767px){
	
	.article_fluid-hero {
		padding: 240px 5%;
	}
	
}

/*===== END Content Article Section */





/*
Footer
================================== */

footer { 
	background-color: #18498d;
	color: #fff;
	font-size: 0.9375rem;
}


footer h4 {
	font-size: 24px;
	font-size: 1.5rem;
	color: #fff;
	font-weight: bold;
}

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


footer ul li a {
	color: #fff;
	font-size: 15px;
	font-size: 0.9375rem;
}

footer ul li a:hover, footer ul li a:focus, footer ul li a:active, footer ul li a:visited {
	color: #fff;
}

.footer_top-wrapper {
	padding: 60px 0 20px
}

.nav_footer-main ul li {
	line-height: 1.8;
}

.nav_footer-main ul li a {
	font-size: 13px;
	font-size: 0.8125rem;
	text-transform: uppercase;
}

.address_footer {
	margin-bottom: 40px;
}

.social_footer {
	margin-bottom: 45px;
}

.social_footer {
	margin-left: -8px;
}

.address_footer li {
	line-height: 1.5;
}

.address_footer strong {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.5
}

.social_footer li { 
	 display: inline;
}

.social_footer a {
	font-size: 16px;
	font-size: 2.25rem;
	padding: 6px;
}

.contact_footer { 
	line-height: 2; 
}

.contact_footer .button { 
	margin-top: 10px; 
}

.footer_bottom-wrapper {
	background-color: #002354;
	font-size: 11px;
	text-align: center;
	padding: 46px 0;
}

.nav_footer-secondary ul li,
.nav_footer-secondary ul li a {
	font-size: 11px;
}

@media all and (min-width: 768px){

	.contact_footer li{
		display: inline-block;
		margin-bottom: 20px;
		line-height: 0;
	}
	
	.contact_footer li:last-child {
		display: block;
	}
	
	.contact_footer .button { 
		margin-top: 10px; 
	}
	
	.footer_bottom-wrapper {
		text-align: right; 
	}
	
	.nav_footer-secondary ul li { 
		display: inline; 
	}
	
	.nav_footer-secondary ul li a { 
		margin: 0 8px; 
	}

}

@media all and (min-width: 1200px){

	.contact_footer li:nth-child(2) {
		margin-left: 46px;
	}

}

/*===== END Footer */







































