html { height:100%; color:#737373; font-family: 'Open Sans', sans-serif; }

body {
	height:100%;
	margin:0;
	background-image:url(../images/background1.jpg);
}

h2 {
	color:#4e6a2a;
	text-transform:uppercase;
	font-family:Tahoma, Geneva, sans-serif;
	padding:0; margin:0;
	margin-bottom:10px;
	font-size:18px;
}

h3 {
	font-size:14px;
	color:#4e6a2a;
	text-transform:uppercase;
	font-family:Tahoma, Geneva, sans-serif;
	font-weight:bold;
	
	padding:0px;
    margin:0px;	
	margin-bottom:5px;
}

hr {
	margin-top:15px;
	margin-bottom:15px;
	
	border:0;
	height:0;
    border-top:solid 1px #eaeaea;
    /*border-bottom:1px solid rgba(255, 255, 255, 0.3);	*/
}

.news_smalltitle {
	color:#4e6a2a;
	/*text-transform:uppercase;*/
	font-size:18px;
	font-weight:bold;
	text-decoration:none;
	
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;		
}

.news_smalltitle:hover {
	color:#000;
}

.news_smalldate {
	color:#aaa; /* 690101;*/
	font-size:11px;
}

.read_more {
	font-weight:600;
	font-size:14px;
	text-decoration:none;
	color:#000;
}

.container {
	overflow:auto;
	margin:0 auto;
	width:1250px;
	background-color:#fff;
	
	-webkit-box-shadow: 0px 0px 25px -1px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 25px -1px rgba(0,0,0,1);
	box-shadow: 0px 0px 25px -1px rgba(0,0,0,1);	
	
	background-image:url(../images/bk_head.png); background-position:top center; background-repeat:no-repeat;
}

.content_side {
	/*border:solid 1px #aeaeae;*/
	width:250px;
	/*padding:15px;*/
	margin-top:25px;
}

.content_side > h2 {
	border-left:solid 3px #4e6a2a;
	background:#eaeaea;
	padding:10px;
	width:230px;
}

.menubar {
	overflow:visible;
	margin:25px;
	background-color:rgba(23,23,64,.4); /*#267C37;*/
	height:125px;
}

.logo {
	display:block;
	float:left;
	width:240px;
	height:100%;
	/*background-color:#1e1e1e;*/
	text-align:center;
}

.mainmenu {
	position:relative;
	height:75px;
	float:left;
	width:960px;
}

.subbar {
	position:relative;
	height:40px;
	background:rgba(255,255,255,.2);
	float:left;
	width:960px;
}

/* navigation */

nav {
	position:relative;
	
	height:75px;
	float:left;
	width:960px;
	
	/*margin:22px auto;*/
	/*margin-top:22px;*/
}
nav ul  {list-style:none; padding:0; margin:0;}

nav > ul > li {
	height:75px;
	vertical-align:middle;

	position:relative;
	/*float:left;	*/
	display:inline-table;
	border-right:solid 1px rgba(255,255,255,.5);
	padding-left:20px;
	padding-right:20px;
	/*margin-top:10px;*/
	
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;		
}

/*nav > ul > li:last-child {
	border-right:none;
}*/

nav ul li a {
	display:table-cell;
	vertical-align:middle;
    /*text-shadow:
    -1px -1px 0 #666,
    1px -1px 0 #666,
    -1px 1px 0 #666,
    1px 1px 0 #666; */
	
	font-weight:500;
	font-family:sans-serif;
	font-size:16px;
	color:#fff; text-decoration:none; text-transform:uppercase;
	
	transition : all 0.5s ease-out; 
	-webkit-transition : all 0.5s ease-out; 
	-moz-transition : all 0.5s ease-out;
	-o-transition : all 0.5s ease-out;   	
}

/*nav > ul > li .selected {
	color:#a7cf38; text-decoration:none; font:bold 17px Arial; text-transform:uppercase;
}*/

nav ul > li:hover {
	background:#1e1e1e;
	
    /*text-shadow:
    -1px -1px 0 #eaeaea,
    1px -1px 0 #eaeaea,
    -1px 1px 0 #eaeaea,
    1px 1px 0 #eaeaea; 	*/
}

nav .sub {
	position:absolute;	
	top:75px;
	left:0px;
	opacity:0;
	visibility:hidden;
	width:200px;	
	
	background:#1e1e1e; /*rgba(255,255,255,.4);*/
	padding:15px;
	z-index:50000;
	
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;		
}

nav .sub > li {
	display:inline-table;
	height:35px;
	width:200px;
	position:relative;
	border-bottom:solid 1px #2c2c2c;
}

nav .sub > li:last-child {
	border-bottom:none;
}


nav > ul > li:hover .sub {
	opacity:1;
	visibility:visible;
}

nav .sub > li:hover {
	background:#141414;
}

nav .sub > li  > a {
	text-transform:none;
	padding:10px;
}

/*
*/

.subbar ul  {list-style:none; padding:0; margin:0;}

.subbar > ul > li {
	height:40px;
	vertical-align:middle;

	position:relative;
	display:inline-table;
	border-right:solid 1px rgba(255,255,255,.5);
	padding-left:20px;
	padding-right:20px;
	
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;		
}

.subbar ul li a {
	display:table-cell;
	vertical-align:middle;
	
	font-weight:500;
	font-family:sans-serif;
	font-size:16px;
	color:#fff; text-decoration:none; text-transform:uppercase;
	
	transition : all 0.5s ease-out; 
	-webkit-transition : all 0.5s ease-out; 
	-moz-transition : all 0.5s ease-out;
	-o-transition : all 0.5s ease-out;   	
}

.subbar ul li:hover {
	background:#000;
}

.lang_flag {
	opacity:0.5;
}

.lang_flag_selected {
	opacity:1;
}


.tags_title {
	border:solid 1px #888;
	background-color:#a6ce37; /*rgb(47,47,128);*/
	padding:8px;
	color:#fff;
	font-weight:bold;
}

.tags_tag {
	border:solid 1px #888;
	background-color:#fff;
	padding:8px;
	color:#888;	
	white-space: nowrap;
	text-decoration:none;
	
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;		
}

.tags_tag:hover {
	cursor:pointer;
	position:relative;
	z-index:999;
	color:#fff;
	background-color:#a6ce37; /*rgb(47,47,128);*/
}

/* custom ul */
ul.custom {list-style-type: none; padding:0;	margin:0;}

li.arrred {background-image: url(../images/bullet1.gif); background-repeat: no-repeat; background-position:left center; padding-left:15px;}
li.arrblue {background-image: url(../images/bullet2.gif); background-repeat: no-repeat; background-position:left center; padding-left:15px;}
li.tickblue {background-image: url(../images/tick1.gif); background-repeat: no-repeat; background-position:left center; padding-left:15px;}
li.plwhitearr {background-image: url(../images/plainwhitearr.gif); background-repeat: no-repeat; background-position:left center; padding-left:15px;}

/* services page */

.services_box * {z-index:1000; transition: all 0.5s ease;}
.services_box {display:table; float:left; text-align:center; width:304px; height:220px; margin-right:20px; margin-bottom:20px; border:solid 1px #0041B3;}
.services_box > span {display:table-cell; vertical-align:middle;}
.services_box > span > h2 {background:rgba(255,255,255,.6);}
.services_box > span > span {display:none; visibility:hidden; padding:10px; padding-top:0; color:#fff;}
.services_box:hover .overlay {background-color:rgba(0,0,0,.7); -ms-transform: scale(1.1,1.1); -webkit-transform: scale(1.1,1.1); transform: scale(1.1,1.1);}
.services_box:hover .text {display:block; visibility:visible;}
.services_box:hover h2 {display:none; visibility:hidden;}