/* Start : Top Horizontal menu */
/* style the outer div to give it width */
.nav {
	height:30px;
	background: url(../_media/images/menu-bkg.gif) no-repeat #f5af32;
	position:relative;
	font-family:arial, verdana, sans-serif;
	font-size:10px;
	width:900px;
	z-index:500;
	color:#1B2636;
	float:left;
	text-align:left;
	margin:0;
	background-color: #1B2636;
}

.menu img {
	border:0;
}

.menu {
	height:26px;
	font-family:arial, verdana, sans-serif;
	font-size:10px;
	color:#1B2636;
	float:left;
	text-align:left;
	margin:0 0 0 42px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none; 
	height:26px; 
}

/* style the sub-level lists */
/*.menu ul ul {
	width:15em;
}*/

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {
	float:left;
	height:26px;
	line-height:26px;
	padding:0;	
	font-family:arial, verdana, sans-serif; 
	font-size: 10px;
	color:#FFFFFF;	
	/*font-weight:bold		*/
}

/* style the sub level list items */
.menu ul ul li {
	display:block;
	width:12em;
	height:auto;
	position:relative;
	line-height:1em;	
}

.menu_selected {
	color:#FFFFFF;
}


/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	float:left;
	height:100%;
	text-decoration:none;
	background:#1B2636;
	padding:0;
	font-family:arial, verdana, sans-serif;
	font-size:9px;
	color:#FFFFFF;
	padding:0 10px 0 10px;
	text-transform:uppercase;
	font-weight:normal;
}

.menu a.multi, .menu a.multi:visited {
	background:#1B2636 url(/_media/images/arrow-menu.gif) no-repeat right;
}

#company.menu li a.multi {
	color:#ff0000;
	background:#FFFFFF url(/_media/images/arrow-menu-hover.gif) no-repeat right;
}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {
	display:block;
	background:#FFFFFF; /*sub color*/
	width:185px; /* width of sub menu*/
	height:100%;
	line-height:1.2em; 
	/*padding:0.5em 1em;*/
	padding:5px 5px 5px 12px;
	font-family:arial, verdana, sans-serif; 
	font-size:11px;
	color:#fff; 
	font-weight:normal;
	border-bottom:1px #BD8947 solid;
	text-transform:capitalize;
}

.menu ul ul a.multi2, .menu ul ul a.multi2:visited {
	background:#47638D url(/_media/images/arrow-menu-sub2.gif) no-repeat right;
}

.menu ul li a.selected {
	color:#fff;
	background:#47638D;
}

.menu ul table ul a, .menu ul table ul a:visited  {
	width:15em; /* width of sub menu*/
	w\idth:15em;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute; 
	left:0; 
	top:0; 
	font-size:1em; 
	z-index:-1;
}

.menu ul ul table {
	lef\t:-1px;
}

.menu ul ul table ul.left {
	margin-lef\t:2px;
}

.menu li:hover {
	position:relative;
}

* html .menu a:hover {
	position:relative;
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#643228;
}

/* style the fourth level background */
.menu ul ul ul ul a, .menu ul ul ul ul a:visited {
	background:#ddd;
}

/* style the sub level 1 background */
.menu ul :hover a.sub1 {
	background:#ccc;
}

/* style the sub level 2 background */
.menu ul ul :hover a.sub2 {
	background:#ddd;
}

/* style the level hovers */
/* first */
.menu a:hover {
	color:#FFF;
	background-color: #FFF;
	margin: 0px;
	border-top-color: #47638D;
	border-right-color: #47638D;
	border-bottom-color: #47638D;
	border-left-color: #47638D;
	font-family: arial, verdana, sans-serif;
}

.menu :hover > a {
	color:#fff;
	background:#47638D;
}

.menu :hover > a.multi {
	color:#fff;
	background:#47638D url(/_media/images/arrow-menu-hover.gif) no-repeat right;
	/*padding-right:10px;*/
}

/* second */
.menu ul ul a:hover{color:#fff;background:#BD8947;}
.menu ul ul :hover > a {color:#fff;background:#BD8947;}

/*.menu ul ul a.multi2:hover{color:#fff;background:#BD8947 url(/_media/images/arrow-menu-sub2.gif) no-repeat right;}*/
.menu ul ul :hover > a.multi2 {color:#fff;background:#BD8947 url(/_media/images/arrow-menu-sub2.gif) no-repeat right;}

/* third */
.menu ul ul ul a:hover {background:#BD8947;}
.menu ul ul ul :hover > a {background:#BD8947;}

/* fourth */
.menu ul ul ul ul a:hover {background:#eee;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	/*height:0;*/
	top:26px;
	left:0;
	width:187px;
	padding:0;
	margin:0;
}

/* position the third level flyout menu */
.menu ul ul ul{
	left:202px;
	top:0;
	width:14em;
}

.menu ul ul ul a, .menu ul ul ul a:visited {
	border:1px #BD8947 solid;
	border-width:0 1px 1px 1px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-14em;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility:visible; 
	height:auto; 
	padding-bottom:3em; 
	background:transparent url(images/trans.gif);
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}

/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{visibility:hidden;}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{visibility:visible;}

/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {visibility:visible;}

/* End : Top Horizontal menu */


/** START : TABBED MENU **/

#main {
	border: 1px solid #C8C7C3;
	clear: both;
}

#contents {
	padding: 1em;
	background: #FFFFFF;
	min-height:60px;
}

#header {
	position: relative;
	width: 100%;
	height: 3em;
	 /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#header ul#primary {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -1px;
/* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#header ul#primary li  {
	display: inline;
	list-style: none;
}

#header ul#primary a,#header ul#primary span,#header ul#primary a.current {
	width: 8em;
	display: block;
	float: left;
	/*padding: 4px 0;*/
	margin: 1px 2px 0 0;
	text-align: center;
	font-family: tahoma, verdana, sans-serif;
	font-size: 100%;
	text-decoration: none;
	color: #333;
}

#header ul#primary span,#header ul#primary a.current,#header ul#primary a.current:hover {
	border: 1px solid #C8C7C3;
	border-bottom: none;
	background: #FFFFFF;
	padding:0 0 2px 2px;
	margin-top: 0;
	text-align:center !important;
	width: 8em;
	display: block;	
	float: left;	
}


#header ul#primary a.current:hover {
	border: 1px solid #C8C7C3;
	border-bottom: none;
	background: #FFFFFF;
	padding:0 0 2px 2px;
	margin-top: 0;
	text-align:center !important;
	width: 8em;
	display: block;	
	float: left;
	color:#000000;	
}

#header ul#primary a {
	background: #FFFADB;
	border: 1px solid #C8C7C3;
	border-bottom: none;
}

#header ul#primary a:hover {
	margin-top: 0;
	border-color: #C8C7C3;
	background: #BD8947;
	padding-bottom: 2px;
	color:#ffffff;
}

/** END : TABBED MENU **/
#services .page .middle .mid_right_column .offshore p {
	text-align: justify;
	color: #1B2636;
}

