@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300);
/* General Styling */
.top-header {
	display: none;
}
a {
	color: #036f93;
}
a, a > i {
	-webkit-transition: all 500ms ease-in-out 0s;
	-moz-transition: all 500ms ease-in-out 0s;
	-ms-transition: all 500ms ease-in-out 0s;
	-o-transition: all 500ms ease-in-out 0s;
	transition: all 500ms ease-in-out 0s;
}
a:hover {
	text-decoration: none;
}
.color-blue {color: #036f93;}
.color-darkblue {color: #002141;}
.color-white {color: #ffffff;}
.color-red {color: #b20000;}

.padding-15 {
	padding: 15px !important;
}
h1 {font-size: 24px;}
h2 {font-size: 20px;}
h3 {font-size: 18px;}
h4 {font-size: 16px;}
h5 {font-size: 14px;}
h6 {font-size: 12px;}
h1, h2, h3, h4, h5, h6 {
	color: #41495e;
	font-family: "Calibri",sans-serif;
}
.bg-grey {
	background-color: #fafafa;
	border: 1px solid #ddd;
	margin-bottom: 30px;
}
.bg-white {
	background-color: #fff;
}
/* END - General Styling */

/* Header Area */
.header-area {
	background-color: #ffffff;
}
.header-area .top-area {
	padding: 15px 30px;
}
.social-links,
.header-area .top-area .info-block,
.header-area .top-area .input-group {
	margin-top: 30px;
}
.header-area .top-area .info-block {
	display: block;
	padding: 6px 0px;
}
.header-area .top-area .form-control {
	background-color: #fff;
}
.form-search-page {
    position: relative;
}
.form-search-page i {
    font-size: 16px;
    position: absolute;
    right: 10px;
    top: 10px;
}
/* Header - Yamm */
.yamm .nav, 
.yamm .collapse, 
.yamm .dropup, 
.yamm .dropdown.mega,
.yamm .dropdown-submenu {
	position: static;
}
.yamm .container {
	position: relative;
}
.yamm .dropdown-menu {
	left: auto;
}
.yamm .yamm-content {
	padding: 15px;
}
.yamm .dropdown.yamm-fw .dropdown-menu {
	left: 0;
	right: 0;
}
/* Header - Menu */
.header-area .navbar {
	border: none;
	border-radius: 0px;
	min-height: auto;
	margin-bottom: 0;
}
.header-area .navbar-default {
	background-color: #fff;
}
.header-area .navbar .navbar-collapse {
	padding-left: 0px;
	padding-right: 0px;
}
@media (min-width: 768px) {
	.header-area .navbar-header .toggle-title {
		display: none;
	}
}
.header-area .navbar-header .toggle-title {
	color: #fff;
	float: left;
	font-size: 22px;
	font-family: "Open Sans Condensed",sans-serif;
	font-weight: 600;
	margin-bottom: 10px;
	margin-left: 15px;
	margin-top: 10px;
	position: relative;
	text-transform: uppercase;
}
.navbar-default .navbar-toggle {
    background-color: #fff;
	border-color: #fff;
}
.navbar-default .navbar-toggle:focus, 
.navbar-default .navbar-toggle:hover {
	background-color: #002141;
	border-color: #002141;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #002141;
}
.navbar-default .navbar-toggle:focus .icon-bar, 
.navbar-default .navbar-toggle:hover .icon-bar {
	background-color: #fff;
}
.header-area .nav-justified {
	background-color: #f5f5f5;
	font-family: "Open Sans Condensed",sans-serif;
	font-size: 17px;
}
.header-area .nav-justified > li:first-child > a {
	border-left: none;
}
.header-area .nav-justified > li > a {
	border-bottom: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    color: #444444;
    padding: 15px 0;
    text-transform: uppercase;
}
.header-area .nav-justified > li > a:hover,
.header-area .nav-justified > li > a:focus,
.header-area .nav-justified > .open > a {
	border-color:#e3e3e3;
	background-color: #fff;
	color: #011120;
}
@media (min-width: 991px) {
	.header-area .nav-justified > .dropdown > a:hover:after,
	.header-area .nav-justified > .dropdown > a:focus:after,
	.header-area .nav-justified > .open > a:after {
		bottom: -1px;
		position: absolute;
		content: '';
		width: 0;
		height: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		border-style: solid;
		border-width: 0px 15px 15px 15px;
		border-color: transparent transparent #011120 transparent;
	}
 	/* Dropdown animation */
	.nav-justified .dropdown-menu {
		display: block;
		opacity: 0;
		z-index:9;
		visibility:hidden;
		-webkit-transform: scale(.8);
		-moz-transform: scale(.8);
		-ms-transform: scale(.8);
		-o-transform: scale(.8);
		transform: scale(.8);
		-webkit-transition: visibility 500ms, opacity 500ms, -webkit-transform 500ms cubic-bezier(.43, .26, .11, .99);
		-moz-transition: visibility 500ms, opacity 500ms, -moz-transform 500ms cubic-bezier(.43, .26, .11, .99);
		-o-transition: visibility 500ms, opacity 500ms, -o-transform 500ms cubic-bezier(.43, .26, .11, .99);
		-ms-transition: visibility 500ms, opacity 500ms, -ms-transform 500ms cubic-bezier(.43, .26, .11, .99);
		transition: visibility 500ms, opacity 500ms, transform 500ms cubic-bezier(.43, .26, .11, .99);
	}
	.nav-justified .dropdown:hover .dropdown-menu {
		opacity: 1;
		visibility:visible;
		color: #777;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	 }
	 .nav-justified .dropdown-backdrop {
		visibility: hidden;
	}
}
.header-area .nav-justified li:last-child .dropdown-menu {
	right: 0;
}
.header-area .nav-justified .dropdown-menu {
	background-color: #011120;
    border: none;
    border-radius: 0;
    margin: 0 0 0 1px;
    padding: 0;
}
.header-area .nav-justified .mega .dropdown-menu {
	min-width: auto;
	width: auto;
}
.header-area .nav-justified .dropdown-menu > li > a {
	border-bottom: 1px solid #0f283e;
    color: #fff;
    font-family: "Calibri",sans-serif;
    padding-bottom: 10px;
    padding-top: 10px;
	white-space: normal;
}
.header-area .nav-justified .dropdown-menu > li > a:hover,
.header-area .nav-justified .dropdown-menu > li > a:focus {
	background-color: #062037;
	color: #fff;
}
/* Third Level - Menu */
.header-area .nav-justified .dropdown-submenu {
	position: relative;
}
.header-area .nav-justified .dropdown-submenu > .dropdown-menu,
.header-area .nav-justified .dropdown-submenu > .dropdown-menu > .dropdown > .dropdown-menu {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
    display: none;
    left: 100%;
    margin-left: 0;
    margin-top: 0;
    min-width: 160px;
    position: absolute;
    top: 0;
}
.header-area .nav-justified .dropdown-submenu:hover > .dropdown-menu,
.header-area .nav-justified .dropdown-submenu > .dropdown-menu > .dropdown:hover > .dropdown-menu {
	display: block;
}
.header-area .nav-justified .dropdown-submenu > a:after,
.header-area .nav-justified .dropdown-submenu > .dropdown-menu > .dropdown > a:after {
	content: "\f105";
	font-family: "FontAwesome";
    position: absolute;
    right: 10px;
}
.header-area .nav-justified .dropdown-submenu:hover > a:after,
.header-area .nav-justified .dropdown-submenu > .dropdown-menu > .dropdown:hover > a:after {
	border-left-color: #fff;
}
.header-area .nav-justified .dropdown-submenu.pull-left {
	float: none;
}
.header-area .nav-justified .dropdown-submenu.pull-left > .dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.header-area .nav-justified .dropdown-submenu .dropdown-menu .yamm-content {
	font-family: "Calibri",sans-serif;
	padding: 0;
}
.header-area .nav-justified .dropdown-submenu .dropdown-menu .yamm-content li a {
	color: #fff;
	display: block;
	border-bottom: 1px solid #0f283e;
	padding: 10px 15px;
}
.header-area .nav-justified .dropdown-submenu .dropdown-menu .yamm-content li a:hover {
	background-color: #0f283e;
}
.header-area .nav-justified .dropdown-submenu .dropdown-menu .yamm-content .col-sm-6 {
	padding: 0;
}
.header-area .nav-justified .dropdown-submenu .dropdown-menu .yamm-content .border-left {
	border-left: 1px solid #0f283e;
}
/* END - Header Area */

/* Content Area */
.content-area {}
.content-area .content-block {
	background-color: #fff;
	border: 1px solid #e7e7e7;
	margin-bottom: 30px;
}
.content-area .content-title {
	border-bottom: 2px solid #d0d1d6;
    font-size: 30px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    position: relative;
}
/* Share Button */
.content-area .content-title .share-btn {
	position: absolute;
    right: 0;
    top: 0;
}
.content-area .content-title .share-btn li {
	float: left;
}
.content-area .content-title .share-btn li > a {
	color: #9c9c9c;
	font-size: 18px;
}
.content-area .content-title .share-btn li > a:hover {
	color: #002141;
}
.content-area .content-title .share-btn li > a:hover > .fa-stack-1x {
	color: #b20000;
}
/* Content - Breadcrumb */
.breadcrumb {
	margin-bottom: 0;
}
.breadcrumb > li {
	color: #bc0000;
}
.breadcrumb > li + li::before {
    color: #ccc;
    content: "\f0da";
	font-family: "FontAwesome";
    padding: 0 5px;
}
/* Content - Leftbar */
.leftbar h2 {
	background-color: #f5f5f5;
	margin: 0;
	padding: 10px 20px;
}
.leftbar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.leftbar ul > li > a {
	color: #41495e;
	display: block;
	padding: 7px 20px;
	position: relative;
}
.leftbar ul > li > a:before {
	content: "\f0da";
	font-family: "FontAwesome";
    font-size: 12px;
    left: 8px;
    padding-top: 2px;
    position: absolute;
}
.leftbar ul > li > a:hover,
.leftbar ul > .active > a {
	background-color: #fff;
	color: #036f93;
}
/* Content - Arrow Block */
.content-area .arrow-block {
	list-style: none;
	padding: 0;
	margin: 0 0  30px;
	float: left;
	width: 100%;
}
.content-area .arrow-block li {
	border-left: 3px solid #fff;
	float: left;
	width: 33.333%;
	padding: 15px 5px 15px 30px;
	position: relative;
}
.content-area .arrow-block li:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	border-bottom: 85px inset transparent;
	border-left: 20px solid #fff;
	border-top: 85px inset transparent;
	content: ""
}
.content-area .arrow-block li:after {
	position: absolute;
	right: -19px;
	top: 0;
	height: 0;
	width: 0;
	border-bottom: 85px inset transparent;
	border-left: 20px solid;
	border-top: 85px inset transparent;
	content: "";
	z-index: 2;
}
.content-area .arrow-block li h1,
.content-area .arrow-block li h2 {
	margin: 0 0 5px;
}
.content-area .arrow-block li p {
	margin-bottom: 0;
}
.content-area .arrow-block li:nth-child(1) {
	background-color: #7f9fae;
	padding-left: 15px;
	border-left: none;
}
.content-area .arrow-block li:nth-child(1):before {
	display: none;
}
.content-area .arrow-block li:nth-child(1):after {
	border-left-color: #7f9fae;
}
.content-area .arrow-block li:nth-child(2) {
	background-color: #99b1bd;
}
.content-area .arrow-block li:nth-child(2):after {
	border-left-color: #99b1bd;
}
.content-area .arrow-block li:nth-child(3) {
	background-color: #bfcdd6;
}
.content-area .arrow-block li:nth-child(3):after {
	display: none;
}
/* Content Service List */
.content-area .service-list {
	background-color: #fafafa;
	list-style: none;
	padding: 0;
	margin: 0;
}
.content-area .service-list li {
	padding: 20px;
}
.content-area .service-list li h2 {
	margin-top: 0;
}
.content-area .service-list li:nth-child(2n+2) {
	background-color: #fff;
}
/* Content - Link Button */
.content-area .link-btn {
	background-color: #b20000;
	border-left: 3px solid #006989;
	color: #fff;
}
.content-area .link-btn:hover {
	background-color: #006989;
	color: #fff;
}
/* END - Content Area */

/* Footer Area */
.footer-area .footer-banner .banner-block {
	border-bottom: 7px solid #002141;
    margin: 0 auto 30px;
    max-width: 364px;
    position: relative;
}
.footer-area .footer-banner .banner-block .link {
	position: absolute;
	z-index: 1;
	left: 15px;
	bottom: 15px;
}
.footer-area .footer-banner .banner-block .link:hover {
	background-color: #002141;
}
.footer-area .footer-banner .banner-block .text-center .link {
	left: auto;
	right: auto;
	margin: auto;
}
.footer-area .footer-banner .banner-block .link {
	background-color: #006989;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
}
.footer-area .footer-banner .banner-block .bg-blue {
	background-color: #006989;
    bottom: 12px;
    color: #fff;
    padding: 3px 10px;
    position: absolute;
}
.footer-area .footer-bottom {
	background-color: #006989;
	padding: 30px 0;
}
.footer-area .footer-bottom .footer-links {
	list-style: none;
	margin: 0;
	padding-bottom: 15px;
	padding-top: 15px;
}
.footer-area .footer-bottom .footer-links > li > a {
	color: #fff;
	display: block;
}
.footer-area .footer-bottom .copyright a:hover,
.footer-area .footer-bottom .footer-links > li > a:hover {
	color: #002141;
}
.footer-area .footer-bottom .copyright {
	border-top: 1px solid #1a7894;
}
.footer-area .footer-bottom .copyright,
.footer-area .footer-bottom .copyright a {
	padding: 10px 0;
	color: #fff;
}
.footer-area .footer-bottom .copyright small {
	color: #949693;
}
.footer-area .footer-bottom .copyright small a {
	color: #ee222b;
}
.footer-area .border-right.remain {
	border-right: 1px solid #1a7894;
}
.footer-area blockquote {
	background-color: #daf6fa;
	color: #786e6c;
	border: none;
}
.footer-area blockquote small {
	color: #60a4c9;
}
.footer-area .footer-bottom .social-block {
	background-color: #1a7894;
	color: #175272;
	padding: 15px;
	position: relative;
}
.footer-area .footer-bottom .social-block h2 {
	padding: 4px 0;
}
.footer-area .footer-bottom .social-block h2,
.footer-area .footer-bottom .social-block .social-links {
	margin: 0;
}
.footer-area .footer-bottom .social-block .social-links {
	position: absolute;
	right: 15px;
	top: 0px;
}
/* END - Footer Area */

/* Social Links */
.social-links > li {
	float: left;
}
.social-links > li > a {
	color: #fff;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
}
.social-links > li > a.fa-linkedin {
	background-color: #1d89c9;
}
.social-links > li > a.fa-linkedin:hover {
	background-color: #f5f5f5;
	color: #1d89c9;
}
.social-links > li > a.fa-twitter {
	background-color: #63cef2;
}
.social-links > li > a.fa-twitter:hover {
	background-color: #f5f5f5;
	color: #63cef2;
}
/* END - Social Links */

/* Back to Top */
#topcontrol {
	background-color: #918f89;
	border-radius: 35px;
	bottom: 10px !important;
	color: #fff;
	font-size: 30px;
	height: 45px;
	line-height: 36px;
	overflow: hidden;
	text-align: center;
	width: 45px;
	z-index: 9999;
}
#topcontrol:hover {
	background-color: #bc0000;
}
#topcontrol, #topcontrol:hover {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#topcontrol span {
	display: none;
}
/* END - Back to Top */

/* Bootstrap Overwrite */
.red-btn {
	background-color: #b20000;
	border-left: 3px solid #006987;
	border-radius: 0;
	color: #fff;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease-in-out 0s;
	-moz-transition: all 500ms ease-in-out 0s;
	-ms-transition: all 500ms ease-in-out 0s;
	-o-transition: all 500ms ease-in-out 0s;
	transition: all 500ms ease-in-out 0s;
}
.red-btn:hover,
.red-btn:focus {
	background-color: #006987;
	color: #fff;
}
.form-control {
	background-color: #eeeeee;
}
.form-control:focus {
	background-color: #fff;
}
.form-control:focus {
	border-color: #006989;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0,105,137,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0,105,137,.6)
}
.table > tbody > tr > th, 
.table > tfoot > tr > th, 
.table > thead > tr > th {
	background-color: #006989;
	color: #fff;
}
legend {
    padding: 15px 0 0 0;
    font-size: 25px;
    font-weight: 600;
}
/* END - Bootstrap Overwrite */

/* Media Queries */
@media screen and (min-width: 991px) {
	.footer-area .border-right {
		border-right: 1px solid #1a7894;
	}
	.padding-left-0 {
		padding-left: 0;
	}
	.padding-right-0 {
		padding-right: 0;
	}
}
@media screen and (min-width: 767px) {
	.header-area .nav-justified > li:nth-child(6) > a {
		/*margin-bottom: -12px;
		padding: 3px 5px 2px;
		top: -12px;*/
	}
	.header-area .nav-justified > .dropdown:nth-child(6) > a:hover:after,
	.header-area .nav-justified > .dropdown:nth-child(6) > a:focus:after,
	.header-area .nav-justified > .open:nth-child(6) > a:after {
		/*bottom: -7px;*/
	}
	.footer-area .col-md-8.border-right {
		padding-right: 0;
	}
}
@media screen and (max-width: 767px) {
	.header-area .top-area {
		padding: 15px;
	}
	.header-area .navbar-header {
		background: #b20000;
	}
	.header-area .logo {
		display: block;
		margin: 0px auto 15px;
	}
	.header-area .top-area .social-links,
	.header-area .top-area .info-block {
		text-align: center;
		margin: 0;
	}
	.header-area .social-links > li {
		display: inline-block;
    	float: none;
	}
	.dropdown-menu > li > a {
		white-space: normal;
	}
	.content-area .arrow-block li {
		border-left: none;
		border-bottom: 3px solid #fff;
		width: 100%;
		padding: 25px 15px 20px !important;
	}
	.content-area .arrow-block li:before {
		border-left: 85px inset transparent;
		border-right: 85px inset transparent;
		border-top: 20px solid #fff;
		margin: auto;
		right: 0;
	}
	.content-area .arrow-block li:after {
		border-left: 85px inset transparent;
		border-right: 85px inset transparent;
		border-top: 20px solid;
		display: block;
		left: 0;
		margin: auto;
		right: 0;
		top: -3px;
    	z-index: 2;
	}
	.content-area .arrow-block li:nth-child(1):after {
		display: none;
	}
	.content-area .arrow-block li:nth-child(2):after {
		border-left-color: transparent;
		border-top-color: #7f9fae;
	}
	.content-area .arrow-block li:nth-child(3):after {
		border-top-color: #99b1bd;
		display: block;
	}
	.content-area .arrow-block li:nth-child(3) {
		border-bottom: none;
	}
	/* Menu */
	.header-area .nav-justified > li > a {
		background-color: #006989;
		color: #fff;
		text-align: left;
		padding: 10px 15px;
	}
	.header-area .nav-justified .dropdown-menu {
		box-shadow: none;
		margin-bottom: 10px;
	}
	.header-area .nav-justified > .dropdown > a:after {
		content: "\f054";
		font-family: FontAwesome;
		float: right;
	}
	.header-area .nav-justified > .dropdown.open > a {
		background-color: #b20000;
		color: #fff;
		margin-bottom: 0;
	}
	.header-area .nav-justified > .dropdown.open > a:after {
		content: "\f078";;
	}
	.header-area .nav-justified .dropdown-menu {
		position: relative;
		width:100%;
		margin-bottom: 10px;
	}
	.header-area .nav-justified .dropdown-submenu > .dropdown-menu {
		left: 0;
		position: relative;
	}
}
@media screen and (min-width: 480px) {
	
}
@media screen and (max-width: 480px) {
	
}
/* END - Media Queries */