/* don't put any styles here */
html, body {
	font-family: arial, Myriad MM, Myriad pro, Calibri, sans-serif;
	font-size: 15px;
	height: 100%;
	margin: 0;
	padding: 0;
}


/* this is our "window", or "body" */
#container {
	font-family: arial, Myriad MM, Myriad pro, Calibri, sans-serif;
	font-size: 90%;
	background-color: #d0d3d7;
	height: 100%;
	min-height: 100%;
	position: relative;
}
html>body #container {
	height: auto; /* Standard */	
}


/* Important; don't hide. Let it take space to avoid FF bug */
p.jump-to-nav {
	margin: 0;
	visibility: hidden;
}


/* Container->Content: this is the actual content, including everything */
#content {
	background: transparent url(../_gfx/front/bg-border-sides3.png) repeat-y 50% 0%;
	width: 980px; /* 1020px + 2*20  This is old -> 1180px; 1140 + 2*20 */
	margin: 0 auto;
	position: relative;
}


/* *** Container->Content->Header *** */
#header {
	background: transparent url(../_gfx/front/bg-border-top3.png) no-repeat 50% 0;
	padding: 45px 45px 0 45px;
}
#logo {
	background-color: #003056; /* #16325C; */
	height: 60px; /* 80px; */
	text-align: right;
}
#logo img {
	border: none;
}


/* *** Container->Content->Page *** */
#page {
	padding: 0 45px;
}


/* *** Container->Content->Page-Maincontent *** */
#maincontent {
}


/* *** Container->Content->Navigation *** */
#navigation {
	position: absolute;
	height: 25px;
	left: 45px;
	top: 20px;
	width: 890px; /* 950px; */
}


/* *** Container->Content->Footer *** */
#footer {
	background: #d0d3d7 url(../_gfx/front/bg-border-bottom3.png) no-repeat 50% 0;
	margin-top: 5px;
	padding-top: 25px;
	padding-bottom: 80px;
	text-align: center;
}



/* ####### Specific component styles - not affecting main layout ########## */



/* *** Container->Content->Navigation *** */
#navigation h1,
#navigation h2 {
	display: none;
}


/* *** Container->Content->Navigation->Main menu *** */
#mainmenu {
	margin-top: 38px;
	margin-left: 10px;
	height: 0;
	font-size: 90%;
}
#mainmenu ul {
	height: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 500;
}
#mainmenu ul li {
	float: left;
	font-family: Myriad MM, Myriad pro, Calibri, Arial, sans-serif;
	margin: 0;
	position: relative;
}

#mainmenu ul li a {
	display: block;
	padding: 10px 12px 0 12px;
	min-height: 37px;
}
#mainmenu ul li a {
	color: white;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 20px;
}

#mainmenu ul li:hover {
/*	position: relative; */
}
#mainmenu ul li.parent.locked, 
#mainmenu ul li.parent:hover {
	background-color: #184466;
}

#mainmenu ul li a:hover {
	color: #00adef;
}
#mainmenu ul li.current a {
	color: #00adef;
	font-style: normal;
}
#mainmenu ul ul {
	height: auto;
	display: none;
	background-color: #003056;
	color: black;
	position: absolute;
	top: 47px; 
	left: 0;
	padding: 0;
	margin: 0;
	width: 220px;
    filter:alpha(opacity=90);
	-moz-opacity:0.9;
	-khtml-opacity: 0.9;
	opacity: 0.90;
}
#mainmenu ul li.locked ul {
	display: block;
}
#mainmenu ul li:hover > ul {
	display: block;
}
#mainmenu ul li ul li{
	float: none;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative; /* To make IE happy */
}
#mainmenu ul li ul li a{
	color: white;
	float: none;
	height: auto;
	min-height: 0;
	margin-bottom: 0;
 	padding: 8px 20px;
	width: 180px;
}
#mainmenu ul li.current ul li a{
	color: white;
}
#mainmenu ul li.current ul li a:hover{
	color: #00adef;
}
#mainmenu ul li ul li a:hover{
	background: black;
}
#mainmenu ul li.current  ul li.current a {
	color: #00adef;
	font-style: normal;
}
#search {
	margin: 10px;
	padding: 3px 5px;
	background: white url(../_gfx/front/textfield_bg.png) no-repeat;
}
#search form,
#search p {
	margin: 0;
	padding: 0;
	white-space: nowrap;
	line-height: 1;
}
#search .search_query {
	border: 1px solid white;
	background: white;
	width: 168px;
	vertical-align: top;
}
#search .search_query.empty {
	color: #666;
	font-style: italic;
}
#search .search_submit {
	padding: 0;
	margin: 0;
	width: 18px;
}

/* *** Code to make the drop down work out in IE6 and IE 5.5 *** */

/* get rid of the table */
#mainmenu  table {
	position: absolute;
	border-collapse: collapse;
	top: 0;
	left: 0;
	z-index: 100;
}

/* For IE5.5 and IE6 give the hovered links a position relative and a change of background and foreground color. This is needed to trigger IE to show the sub levels */
* html #mainmenu  li a {
	padding-bottom: 25px;
}
* html #mainmenu  li.locked a, 
* html #mainmenu  li a:hover {
	position: relative;
	color: #00adef;
}
*html #mainmenu li.parent a:hover {
	background-color: #184466;
}
*html #mainmenu li.parent ul li a:hover {
	background-color: black;
}
* html #mainmenu  ul ul {
	visibility:hidden;
	display:block;
	position:absolute;
	left: -15px;
	top: 52px;
}

#mainmenu li a:hover ul ul{
	visibility:hidden;
}
#mainmenu li a:hover ul a:hover ul ul{
	visibility:hidden;
}
#mainmenu li a:hover ul a:hover ul a:hover ul ul{
	visibility:hidden;
}
#mainmenu ul li.locked ul,
#mainmenu li a:hover ul {
	visibility: visible; 

}

/* *** /Code to make the drop down work out in IE6 and IE 5.5 *** */

#maincontent {
	font-size: 8pt;
}

#maincontent-body p {
	line-height: 1.4;
}



.index-image h1 {
	line-height:0;
	margin:0;
	padding:0;
}


.layout-4 {
}

.layout-4 .cell {
	width: 215px; /* This is old -> 261px; */
	float: left;
	margin-left: 10px;
	margin-top: 10px;
}
.layout-4 .cell.col1 {
	clear: left;
	margin-left: 0;
}
.layout-4 .cell.col12 {
	margin-left: 0;
	width: 440px;

}
.layout-4 .cell.col3 {
	margin-left: 10px;
	width: 215px;
}
.layout-4 .cell.col14 {
	margin-left: 10px;
	width: 215px;
}
.layout-4 .cell.col34 {
	width: 440px;
}
.layout-4 .cell.col234 {
}
.layout-4 .cell.col34.cell-text {
	width: 369px;
	padding-left: 30px;
	padding-right: 40px;
}
.layout-4 .cell.col234 {
	width: 665px; /* This is old -> 807px; */
}
.layout-4 .cell.col234.cell-text {
	width: 574px;
	padding-left: 40px;
	padding-right: 50px;
}
.layout-4 .cell.col1234 {
	margin-left: 0;
	margin-right: 0;
	width: 980px;
}
.layout-4 .cell.col1234.cell-text {
	width: 800px;
	padding-left: 40px;
	padding-right: 50px;
}

.layout-4 .cell.row1 {
	margin-top: 0;
	margin-bottom: 10px;
	min-height: 160px;
}
.layout-4 .cell.row2 {
	margin: 0;
	min-height: 160px;
}
.layout-4 .cell.row12 {
	margin-top: 0;
	min-height: 330px;
}
.layout-4 .cell.row12.cell-text {
	min-height: 295px;
	padding-top: 25px;
	padding-bottom: 10px;
}
.cell.cell-text {
	background-color: #e5e6e8;
	padding: 0 0 0 0;
	text-align: justify;
}
.cell.cell-text.announce {
	background-color:#003056;
}
.cell.cell-text h1  {
	margin-top: 0;
	margin-bottom: 15px;
	text-align: left;
}
.cell.cell-text h2,
.cell.cell-text h3 {
	margin-top: 0;
	margin-bottom: 12px;
	padding-bottom: 0px;
	text-align: left;
}
.cell.cell-text p,
.cell.cell-text blockquote{
	/*margin: 15px 60px 15px 45px;*/
	margin: 15px 0;
}
.layout-4  img {
	border: none;
	display: block; /*<-- may need to compensate for this */
	margin: 0;
	padding: 0;
}

.cell.localmenu.col1 {
	background: #003056 url("../_gfx/front/dummy-one-quarter-page3-bg.jpg") no-repeat;
}

.layout-4 .cellgroup {
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: top left;
}
.layout-4.template1 .cellgroup {
	background-image: url("../_gfx/front/dummy-one-quarter-page3-fade.jpg");
}
.layout-4.template1.with-localmenu .cellgroup {
	background-image: url("../_gfx/front/dummy-one-quarter-page3-bg-fade.jpg");
}
.layout-4.template2 .cellgroup {
	background-image: url("../_gfx/front/dummy-one-half-page3-fade.jpg");
}

.cell.hotbutton  {
	background-color: transparent;
}
.cell.hotbutton img {
	border: none;
	width: 215px; /* 261px; */
	height: 160px; /* 175px; */
}
.cell.hotbutton a span {
	background-color: white;
	position: absolute;
	top: 0;
	left: 0;
	width: 215px; /* 261px; */
	height: 160px; /* 175px; */
	z-index: 100;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}
.cell.hotbutton a span:hover {
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}
#maincontent .cell.hotbutton h2 {
	margin: 5px 0px 5px 0px;
	font-size: 110%;
	line-height: inherit;
	text-transform: uppercase;
}
.cell.hotbutton p {
	margin: 5px 0px 5px 0px;
}
.cell.hotbutton a {
	display: block;
	position: relative;
	text-decoration: none;
}
.cell.hotbutton h2 a {
	color: black;
}
.cell.hotbutton p a {
	color: #333;
}


/* *** Footer menu *** */
#footer-menu {
	margin: 10px 0;
}
#footer-menu ul {
	clear: both;
	margin: 0;
	margin: 0;
	font-size: 12px;
	font-weight: bold;
	list-style: none;
	padding: 0 0 20px 0;
	text-transform: uppercase;
}
#footer-menu ul li {
	background: transparent url("../_gfx/front/list-style-circle.png") no-repeat center left;
	display: inline;
	margin: 0;
	padding: 0 20px 0 12px;
	text-align: left;
}
#footer-menu ul li a:link,
#footer-menu ul li a:visited {
	color: black;
	text-decoration: none;
}
#footer-menu ul li a:link:hover,
#footer-menu ul li a:visited:hover{
	text-decoration: underline;
}
#footer-menu ul li span.service_time {
	color: red;
}


/* *** Lang menu *** */

#langmenu {
	position: absolute;
	right: 0;
	top: 0;
}
#langmenu ul {
	list-style: none;
	margin: 7px 0 0 0;
	padding: 0;
}
#langmenu ul img{
	border: none;
	opacity: 0.75;
}
#langmenu ul img:hover{
	border: none;
	opacity: 1.0;
}


/* *** TEMP *** */
#footer-valid,
#footer-info,
#localmenu {
	display: none;
}
#footer {
}


#site-info {
	display: block;
	font-family: arial, sans-serif;
	bottom: 0;
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
}
#site-info .site-info-container {
	margin: 0 auto;	
	width: 980px;
}
#site-info .site-logos {
	display: none;
}
#site-info .constructor {
	overflow: hidden;
	white-space: nowrap;
}
#site-info .constructor {
	width: 50%;
	float: left;
}
#site-info .copyright,
#site-info #cookies {
	width: 25%;
	float: left;
}
#site-info .copyright,
#site-info .constructor,
#site-info #cookies {
	color: #999;
	font-size: 7pt;
	font-weight: normal;
	text-transform: uppercase;
	text-shadow:0 -1px 0 rgba(0, 0, 0, 0.3);
	letter-spacing: 0.6pt;
	word-spacing: 2pt;
}
#site-info a {
	color: #666;
	font-weight: bold;
	text-decoration: none;
}
#site-info #cookies a {
	color: #999;
	font-weight: normal;
	text-decoration: none;
}



/* *** Maincontent head and path *** */

#maincontent-head {
	margin-bottom: 12px;
}

/* *** Path *** */
#maincontent-path {
	display: none;
	color: #ccc;
	font-size: 80%;
	margin: 0;
	padding: 10px;
}
#maincontent-path a:link {
	color: #ccc;
	text-decoration: none;
}


/* *** Maincontent *** */

#maincontent {
}

html>body #maincontent {

}
#maincontent a {
	text-decoration: none;
}
#maincontent a:hover {
	text-decoration: underline;
}

#maincontent-body {
	position: relative;
	width: 890px; /* This is old -> 1080px; */
	/*border: 1px solid transparent;  This is weired... */ 
}

#maincontent h1 {
	font-size: 14pt;
	margin-bottom: 0.25em;
}
#maincontent h2 {
	font-size: 12pt;
	margin-bottom: 0.25em;
}
#maincontent h3 {
	font-size: 11pt;
	margin-bottom: 0.25em;
}
#maincontent p,
#maincontent blockquote {
	margin-top: 0.25em;
}

#maincontent .language_warning {
	text-align: center;
	background-color: #758da0;
	margin-top: 12px;
	padding: 5px;
}
#maincontent .language_warning p {
	margin: 0;
	color: #fff;
}

.skip-link,
#header-done,
#phone {
	display: none;
}

hr.hide {
	display: none;
}
.clearer {
	clear: both;
}


/* *** Footer *** */



#footer #copyright {
	position: absolute;
	left: 20px;
	top: 10px;
}

#footer #webmaster {
}

#footer-valid {
	position: absolute;
	right: 36px;
	top: 10px;
}

#footer #footer-valid a,
#footer #footer-valid a:visited {
	color: #9ab;
	text-decoration: none;
}
#footer #footer-valid a:hover,
#footer #footer-valid a:visited:hover {
	color: #678;
	text-decoration: underline;
}



/*
1 box 1080px + 0 margin
1:3 box 255px + 805px + 20px margin
1:1 box 530px + 530px + 20px margin
*/


.one-quarter {
	float: left;
	height: 432px;
	margin-right: 20px;
	width: 225px; /* 255px; */
}

.three-quarters {
	float: right;
	width: 805px;
}

.rightmost {
	margin-right: 0;
}




/* *** X Lists *** */






.city_list {
	float: left;
}

.city_list ul  li {
	line-height: 1.5em;
	position: relative;
}
.city_list ul li.reset {
    margin-top: -3.0em;
}


.city_list ul  li.column1 {
	margin-left: 12px;
}


.city_list ul  li.column2 {
	margin-left: 253px;
}





ul.list_of_services,
ul.list_of_projects {
	float: left;
	margin: 0 0px 0 30px;
	padding: 0;
	width: 170px;
}

ul.list_of_services li,
ul.list_of_projects li
 {
    float: left;
 	list-style-image: url("../_gfx/front/list-style-circle.png");
	margin-right: 30px;
	text-align: left;
	width: 180px;
 }
 
 
.newslist li a:link,
.newslist li a:visited,
.equipmentlist li a:link,
.equipmentlist li a:visited,
ul.list_of_services li a:link,
ul.list_of_services li a:visited,
ul.list_of_projects li a:link,
ul.list_of_projects li a:visited {
	color: black;
	text-decoration: none;
}
.newslist li a:hover,
.equipmentlist li a:hover,
ul.list_of_services li a:hover,
ul.list_of_projects li a:hover  {
	text-decoration: underline;
 }

 
 
div.cert-group {
	float: left;
	width: 300px;
}
p + div.cert-group  {
	margin-right:40px;
}
 ul.certificate_list {
	margin: 0;
	margin-left: 10pt;
	padding: 0 0 12pt 0;
}
ul.certificate_list .classification_society {
}
ul.certificate_list  li img.cert-logo{
	float: right;
	clear: right;
}

 
img.inline_flag {
	display: inline;
}
 
 

.imagelist  .image_text {
	display: none;
 }



.columnlist {
	float: left;
	line-height: 20px;
	text-align: left;
}
.columnlist.width-4 {
	width: 200px;
}
#maincontent .columnlist h2 {
	font-size: 100%;
	margin: 0;
}
.columnlist ul {
	margin: 0 0 20px 0;
	padding-left: 20px;
}
.columnlist ul li {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
 	list-style-image: url("../_gfx/front/list-style-circle2.png");
	margin-left: 0;
	padding-left: 0;
	white-space: wrap;
 }

.columnlist a:link,
.columnlist a:visited {
	color: black;
	text-decoration: none;
}
.columnlist a:hover {
	text-decoration: underline;
}

.layout-4 .cell.localmenu {
	width: 184px;
	min-height:270px;
	padding: 30px 15px;
}
.localmenu ul {
	list-style:none;
	margin: 0;
	padding: 0;
}
.localmenu ul li a {
	font-weight: bold;
	text-transform: uppercase;
	color: white;
	display: block;
	padding: 5px 15px;
}
#maincontent .localmenu ul li a:hover {
	color: #00adef;
	text-decoration: none;
}
.localmenu ul li.current a {
	background: transparent url("../_gfx/front/localmenu-current.png") no-repeat right 50%;
}
#maincontent .localmenu ul li.current a:hover{
	color: white;
}

.captionWrap_galleryImage .captionText {
	color: white;
	font-size: 10px;
	padding: 2px 5px 0 5px;
	font-style: italic;
	font-family: arial, sans-serif;
	width: 205px;
}


/* Illustration and MoviePlayer */
#illustration {
	width: 890px;
	height: 330px;
	overflow: hidden;
}
#illustration img {
	border: none;
}
#illustration a.moviePlayButton {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url("../_gfx/movie-play.png") no-repeat 50% 50%;
	width: 890px;
	height: 330px;
	cursor: pointer;	
}


