html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: Arial;
	color: #333028;
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

header, footer, article, section, nav, menu, a, img, h1, h2, h3, form, ul, ol, p { 
   display: block;
   margin: 0;
   padding: 0;
}

a {
	text-decoration: none;
}
a.smoothTransition {
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
}

img {
	border: none;
}
img.fullWidth {
	width: 100%;
}
img.opacityTransition {
	transition: opacity .5s;
	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	-o-transition: opacity .5s;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a:hover img.opacityTransition {
	opacity: .8;
	-webkit-opacity: .8;
	-moz-opacity: .8;
}

ul {
	list-style: none;
}

h1, h2, h3 {
	font-weight: normal;
}

.table, .tableCell {
	width: 100%;
	height: 100%;
}
.table {
	display: table;
}
.tableCell {
	display: table-cell;
	vertical-align: middle;
}

.tablen, .tableCelln {
	width: 100%;
	height: 100%;
}
.tablen {
	display: table;
}
.tableCelln {
	display: table-cell;
	vertical-align: text-top;
}

.container {
	position: relative;
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.title {
	font: 18px 'Times New Roman';
	font-weight: bold;
	text-transform: uppercase;
}

header .container {
	padding: 18px 0 7px;
	background: url(../images/header_bg.png) top right no-repeat;
	background-size: auto 100%;
}
header #navigatorsLogo {
	margin-left: 5.2%;
	width: 31.5%;
	min-width: 150px;
}
header #navigatorsSlogan {
	position: absolute;
	right: 17.2%;
	bottom: 12px;
	width: 31.4%;
	min-width: 150px;
}

nav, #mobileNav {
	height: 47px;
	background: url(../images/nav_bg.jpg);
	margin-bottom: 12px;
	position: relative;
	z-index: 100;
}
#mobileNav {
	display: none;
}
nav .container, nav ul, nav ul li, #mobileNav .container {
	height: 100%;
}
nav ul li {
	float: left;
	position: relative;
}
nav ul li a {
	font: 15px 'Times New Roman';
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	padding: 0 12px;
	border-right: 1px solid #fff;
}
nav ul li a:hover {
	color: #d4d4d4;
}
nav ul li:first-child a {
	padding-left: 0;
}
nav ul li:nth-last-child(2) a {
	padding-right: 0;
	border-right: none;
}
nav ul li ul {
	position: absolute;
	width: 200px;
	height: auto;
	top: 90%;
	left: 0;
	background: url(../images/submenu_bg.jpg) repeat-x;
	background-size: auto 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
}
nav ul li:hover ul {
	visibility: visible;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
}
nav ul li ul li {
	float: none;
	position: static;
}
nav ul li ul li a {
	font: 12px Arial;
	font-weight: normal;
	text-transform: none;
	color: #fff;
	padding: 5px 12px;
	border-right: none;
}
nav ul li ul li:first-child a {
	padding-left: 12px;
}
nav ul li ul li:nth-last-child(2) a {
	padding-right: 12px;
}
nav ul li ul li a:hover {
	color: #000;
	background: #d4d4d4;
}

#cadres {
	margin-bottom: 16px;
}
#cadres ul li {
	float: left;
	width: 32.5%;
	margin-right: 1.25%;
}
#cadres ul li:nth-last-child(2) {
	margin-right: 0;
}
#cadres ul li a {
	overflow: hidden;
}
#cadres ul li a img {
	transition: transform .5s;
	-webkit-transition: transform .5s;
	-moz-transition: transform .5s;
	-o-transition: transform .5s;
}
#cadres ul li a:hover img {
	transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
}

#whoWeAre {
	background: #efeeec;
	padding: 17px 0 14px;
	border-bottom: 3px solid #999;
	margin-bottom: 16px;
	font-size: 13px;
}
#whoWeAre h2 {
	margin-bottom: 10px;
}
#whoWeAre a {
	display: inline-block;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: underline;
	color: #333028;
}
#whoWeAre a:hover {
	text-decoration: none;
}

#projects {
	background: #efeeec;
	padding: 17px 0 14px;
	border-bottom: 3px solid #999;
	margin-bottom: 16px;
	font-size: 13px;
}
#projects h2 {
	margin-bottom: 10px;
}
#projects a {
	display: inline-block;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: underline;
	color: #ffffff;
}
#projects a:hover {
	text-decoration: none;
}

#pages {
	background: #ffffff;
	padding: 17px 0 14px;
	border-bottom: 3px solid #999;
	margin-bottom: 16px;
	font-size: 13px;
}
#pages h2 {
	margin-bottom: 10px;
}
#pages a {
	display: inline-block;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: underline;
	color: #333028;
}
#pages a:hover {
	text-decoration: none;
}


#videoAndNewsContainer {
	margin-bottom: 30px;
}

#ourVideo {
	float: left;
	width: 45.9%;
}
#ourVideo h2, #latestNews h2 {
	margin-bottom: 18px;
}
#ourVideo h2 {
	color: #e71f20;
}
#ourVideo iframe {
	width: 100%;
	height: 264px;
	border: 3px solid #000;
}

#latestNews {
	float: right;
	width: 47.6%;
}
#latestNews h2 {
	color: #0078b8;
}
#latestNews article {
	position: relative;
	height: 79px;
	border-bottom: 3px solid #0078b8;
	margin-bottom: 14px;
}
#latestNews article img {
	float: left;
	width: 101px;
	margin-right: 19px;
}
#latestNews article .info {
	float: left;
	width: calc(100% - 120px);
	width: -webkit-calc(100% - 120px);
	width: -moz-calc(100% - 120px);
	height: 100%;
	font-size: 13px;
}
#latestNews article a.readMore {
	position: absolute;
	right: 0;
	bottom: 0;
	font: 12px 'Times New Roman';
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	background: #0078b8;
	padding: 4px 10px;
}
#latestNews article a.readMore:hover {
	color: #d4d4d4;
}

#ourProjects {
	margin-bottom: 31px;
}
#ourProjects h2 {
	margin-bottom: 16px;
	color: #005f99;
}
#ourProjects .projectsContainer {
	position: relative;
	background: #ebebe8;
	padding: 16px 36px;
	box-shadow: 0 0 20px rgba(204, 204, 203, .9);
}
#ourProjects .projectsContainer .projectsAnimContainer {
	position: relative;
	height: 132px;
	overflow: hidden;
}
#ourProjects .projectsContainer .projectsAnimContainer .projectsAnim {
	position: absolute;
	top: 0;
	left: 0;
	width: 20000px;
	height: 100%;
}
#ourProjects .projectsContainer .projectsAnimContainer .projectsAnim a {
	float: left;
	height: 100%;
	overflow: hidden;
	margin-right: 2px;
	position: relative;
}
#ourProjects .projectsContainer .projectsAnimContainer .projectsAnim a .projectName {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	visibility: hidden;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
}
#ourProjects .projectsContainer .projectsAnimContainer .projectsAnim a:hover .projectName {
	visibility: visible;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;	
}
#ourProjects .projectsContainer .projectsAnimContainer .projectsAnim a .projectName h2 {
	text-align: center;
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
}
#ourProjects .projectsContainer a.prev, #ourProjects .projectsContainer a.next {
	position: absolute;
	top: 50%;
	margin-top: -66px;
	width: 25px;
	height: 132px;
	background-color: #0078b8;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	transition: all .25s;
	-webkit-transition: all .25s;
	-moz-transition: all .25s;
	-o-transition: all .25s;
}
#ourProjects .projectsContainer a.prev:hover, #ourProjects .projectsContainer a.next:hover {
	background-color: #0093e1;
}
#ourProjects .projectsContainer a.prev {
	left: 9px;
	background-image: url(../images/prev_arrow.png);
}
#ourProjects .projectsContainer a.prev:hover {
	background-position: 5% 50%;
}
#ourProjects .projectsContainer a.next {
	right: 9px;
	background-image: url(../images/next_arrow.png);
}
#ourProjects .projectsContainer a.next:hover {
	background-position: 95% 50%;
}

footer {
	background: #333028;
	padding: 12px 0 13px;
}
footer .block {
	float: left;
	padding-right: 14px;
	padding-left: 4px;
	border-right: 1px solid #555042;
	min-height: 102px;
}
footer .block:nth-last-child(2) {
	border-right: none;
}
footer .block .blockTitle {
	font-size: 11px;
	color: #fff;
	margin-bottom: 9px;
}
footer .block a.regular {
	font-size: 10px;
	color: #9b9375;
	margin-bottom: 1px;
}
footer .block a.regular:hover {
	color: #fff;
}
footer .floatRight {
	padding-top: 11px;
	width: 24.6%;
	min-width: 200px;
}

#copyrights {
	background: #5e5745;
	padding: 5px 0;
	font-size: 11px;
	color: #fff;
}
#copyrights a {
	color: #fff;
}

@media screen and (max-width:1000px) {
	footer .floatLeft, footer .floatRight {
		float: none;
	}
	footer .floatRight {
		margin: 0 auto;
	}
}

@media screen and (max-width:768px) {
	#mobileNav {
		display: block;
	}
	nav {
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100%;
		background: #0068a4;
		box-shadow: 0 -2px 5px rgba(0, 0, 0, .4);
		-webkit-box-shadow: 0 -2px 5px rgba(0, 0, 0, .4);
		-moz-box-shadow: 0 -2px 5px rgba(0, 0, 0, .4);
		margin-bottom: 0;
		transition: transform 1s;
		-webkit-transition: transform 1s;
		-moz-transition: transform 1s;
		-o-transition: transform 1s;
		z-index: 200;
	}
	nav.active {
		transform: translate(-300px,0);
		-webkit-transform: translate(-300px,0);
		-moz-transform: translate(-300px,0);
		-ms-transform: translate(-300px,0);
		-o-transform: translate(-300px,0);
	}
	nav .container, nav ul, nav ul li {
		height: auto;
	}
	nav .container {
		width: 100%;
	}
	nav ul li {
		float: none;
		position: static;
	}
	nav ul li a {
		border-right: none;
		padding: 7px 12px;
		border-bottom: 1px solid #fff;
	}
	nav ul li:first-child a {
		padding-left: 12px;
	}
	nav ul li:nth-last-child(2) a {
		border-bottom: none;
		padding-right: 12px;
	}
	nav ul li ul {
		position: static;
		width: 100%;
		top: 0;
		display: none;
	}
	nav ul li ul li a {
		border-bottom: none;
	}
	nav ul li:hover ul {
		display: block;
	}
	#latestNews article .info {
		font-size: 11px;
	}
	footer .block {
		float: none;
		border-right: none;
		padding-right: 0;
		padding-left: 0;
		padding-top: 9px;
		padding-bottom: 9px;
		border-bottom: 1px solid #555042;
		min-height: 0;
		text-align: center;
	}
	footer .block:nth-last-child(2) {
		border-bottom: none;
	}
	footer .block a.blockTitle {
		margin-bottom: 0;
	}
}

@media screen and (max-width:640px) {
	.title {
		text-align: center;
	}
	#ourVideo, #latestNews {
		float: none;
		width: 100%;
	}
	#latestNews {
		margin-top: 20px;
	}
	#cadres ul li {
		float: none;
		margin-bottom: 10px;
		width: 100%;
		max-width: 325px;
		margin-left: auto;
		margin-right: auto;
	}
	#cadres ul li:nth-last-child(2) {
		margin-right: auto;
	}
	#videoAndNewsContainer {
		margin-bottom: 50px;
	}
	#latestNews article {
		margin-bottom: 28px;
	}
	#latestNews article a.readMore {
		position: static;
		text-align: center;
	}
	#copyrights .floatLeft, #copyrights .floatRight {
		float: none;
		text-align: center;
	}
	#copyrights .floatRight {
		margin-top: 10px;
	}
}

.titles {
    font-weight: bold;
    text-align: left;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    color: #333028;
}

.subtext {
    font-weight: normal;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #07548f;
}
a.readmore:link{

	font-weight:bold;

	font-family:Times "Times New Roman", Times, serif;

	font-size:12px;

	color:#333028;	

	text-decoration:underline;

}

a.readmore:visited{

	font-weight:bold;

	font-family:Times "Times New Roman", Times, serif;

	font-size:12px;

	color:#333028;	

	text-decoration:underline;

}

a.readmore:hover{

	font-weight:bold;

	font-family:Times "Times New Roman", Times, serif;

	font-size:12px;

	color:#005f99;	

	text-decoration:underline;

}
