
/*

	CSS Template

	CONTENTS ----------
	
		1.Reset CSS
		2.Over all styles
		3.Layout
		4.Content
		5.aside styles (side column)
		6.Navigation
		7.ARD Tables
		8.Forms
		9.Site Search results
		
    -------------------

	COLOURS ----------

		Text, table lines, form border #9ea0a5
		
		Main colour: a, main headings, mark, nav, button #a99b8d 

		Secondary colour: a:hover, text selection, nav:hover, button border #a99b8d

    -------------------

 */
 
/* 1.Reset CSS
---------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td
 {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

blockquote, q { quotes:none; }
blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }
hr { display:block; height:1px; border:0; border-top:1px solid #9ea0a5; margin:15px 0; padding:0; }
input, select { vertical-align:middle; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }



/* 2.Over all styles
---------------------------------------------------------------*/
body {
	font: 12px/18px Tahoma, Arial, Verdana; /* to add line height of eg 18px use 13px/18px  */
	*font-size:small;/* hack retained to preserve specificity */
	color: #9ea0a5;
	background-color:#fff;
	}

H1, .main-heading { font:bold 24px/26px Tahoma, Arial, Verdana; color:#a99b8d;}
H2 { font-size: 18px; font-weight: bold; color: #a99b8d; }
H3 { font-size: 16px; font-weight: bold; color: #a99b8d; }
H4 { font-size: 14px; color: #9ea0a5; }
H5, .sub-heading { font-size: 14px; color: #9ea0a5; line-height:18px; }
H5 A { text-decoration: none; color: #9ea0a5; }

a, a:active, a:visited { color: #a99b8d; text-decoration: underline; }
	A:hover { color: #a99b8d; text-decoration: none; cursor:pointer; }
	a:hover, a:active { outline: none; }
	A.noline { color: #9ea0a5; text-decoration: none; }
	A.noline:hover { color: #9ea0a5; text-decoration: none; }

ul, ol { margin-left: 25px; }
ul { list-style:disc; margin-bottom:15px; }
ol { list-style-type: decimal; }


.small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; }

.mark { background-color:#fff; color:#a99b8d; font-style:italic; font-weight:bold; } /* text you would like to mark */

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; } 

.ie7 img { -ms-interpolation-mode: bicubic; }/* bicubic resizing for non-native sized IMG */

/* Text highlight styles */
::-moz-selection{ background: #e8d9cb; color:#fff; text-shadow: none; }
::selection { background:#e8d9cb; color:#fff; text-shadow: none; } 
 
/* 
 * Non-semantic helper classes 
 */

/*  image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/*  image align left, right */
.right { float:right; margin:0 0 15px 15px; }
.left { float:left; margin:0 15px 15px 0; }

/* Hide for both screenreaders and browsers */
.hidden { display: none; visibility: hidden; } 

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* clearfix  */
.cf:before, .cf:after { content: "\0020"; display: block; height: 0; overflow:hidden; } 
.cf:after { clear: both; }
/* Fix clearfix IE */
.cf { zoom: 1; }


/* 3.Layout
---------------------------------------------------------------*/
/* Skip menu for screen readers to jump the main menu */
.skipmenu { text-align: left; }
.skipmenu a { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.skipmenu a:focus, .skipmenu a:active { position: static; left: 0; width: auto; height: auto; overflow: visible; text-decoration: underline; }

#container { width:960px; margin:0 auto; }

#header { border-bottom:1px solid #9ea0a5; margin-bottom:10px; }
	#logo { width:361px; height:58px; padding:20px 0; float:left; }

#nav .address { font-size:11px; display:block; line-height:30px; border-bottom:1px solid #9ea0a5; }
.newsletter { background-color:#a99b8d;
		-webkit-border-radius:12px;
		-moz-border-radius:12px;
		-o-border-radius:12px;
		-ms-border-radius:12px;
		-khtml-border-radius:12px;
		border-radius:12px;
		padding:20px;
		margin:20px;
		}
		
		.newsletter a, .newsletter h3 {color:white; text-decoration:none;}


#content { float:left; width:498px; padding:20px; margin:0 -1px; border-left:1px solid #9ea0a5; border-right:1px solid #9ea0a5; }
	.ie6  #content { width:490px; margin-right:0; border-right:none; }
#rightcolumn { float:right; width:190px; border-left:1px solid #9ea0a5; }
	.social { margin-top:10px; padding:10px }
		.social-icon { margin:10px 5px 5px; }

#footer { border-top:1px solid #9ea0a5; border-bottom:1px solid #9ea0a5; height:39px; }
	#footer p { line-height:39px; }
	.logo-icon { float:right; width:35px; height:35px; margin-top:2px; }


/* 4.Content
---------------------------------------------------------------*/

#content p, #content h1, #content h2, #content h3, #content h4, #content h5 { margin-bottom:15px; }
#content ul li:last-child { margin-bottom:15px; }
.ielt9 #content ul, .ielt9 .submenu ul { margin-bottom:15px; }
#content ul li ul li { margin-bottom:0; }
#content table { margin-bottom:15px; }

#content h2, #content h3, #content h4, #content h5 { margin-top:15px; } /* evenly space headings in the ARD content */

.service-links a { text-decoration:none; color:#9ea0a5; }

/* 5.aside styles (side column)
---------------------------------------------------------------*/






/* 6.Navigation
---------------------------------------------------------------*/


#nav {	
	display:block;
	position:relative;
	width:230px; /*set width of menu*/
	z-index:100;/* this makes sure that the menu appears on top of all elements of the page mainly things like JS banners and flash files */
	float:left;
	border-right:1px solid #9ea0a5;
	}
	
#menu, #menu ul{
	margin:0;
	padding:0;
	list-style-type:none;
	list-style-position:outside;
	position:relative;
	line-height:18px; /* add line height  DONT USE HEIGHT */
	font-weight:normal;
	}
#menu { margin:20px 0 0 0; }
#menu li { 
	list-style:none;
	float:left; /* float needed */
	position:relative;
	border:0;
	padding-left:30px;
	}
	#menu li:before {
		content:"";
		position:absolute;
		top:8px;
		left:20px;
		display:block;
		height:12px;
		width:12px;
		-webkit-border-radius:12px;
		-moz-border-radius:12px;
		-o-border-radius:12px;
		-ms-border-radius:12px;
		-khtml-border-radius:12px;
		border-radius:12px;
		border:2px solid white;
		background-color:red;
		-moz-box-shadow: 0 0 5px #9ea0a5; -webkit-box-shadow: 0 0 5px#9ea0a5; box-shadow: 0 0 5px #9ea0a5;
	}
	#menu li:hover:before { border:3px solid white; top:7px; left:19px; }
	.ie8 #menu li:hover:before { border:0; top:8px; left:20px; }
	
	.ie8 #menu li:before { border:0; width:18px; height:18px; background-repeat:no-repeat; }
	
		#menu li.home:before,
		.ie6 #menu li.home a:hover,
		.ie7 #menu li.home:hover,
		#menu li.home ul a:hover,
		#menu li.home ul li:hover { background-color:red; }
			
			.ie8 #menu li.home:before { background-color:transparent; background-image:url(/images/circles.png);  background-position:top left; }
		
		#menu li.about-us:before,
		.ie6 #menu li.about-us a:hover,
		.ie7 #menu li.about-us:hover,
		#menu li.about-us ul a:hover,
		#menu li.about-us ul li:hover { background-color:#ff00de; }
		
			.ie8 #menu li.about-us:before { background-color:transparent; background-image:url(/images/circles.png);  background-position:0 -38px; }
		
		.ie6 #menu li.why-work-with-us a:hover,
		.ie7 #menu li.why-work-with-us:hover,
		#menu li.why-work-with-us:before { background-color: #9000FF; } 
		
			.ie8 #menu li.why-work-with-us:before { background-color:transparent; background-image:url(/images/circles.png);  background-position:0 -76px; }
		
		#menu li.our-services:before,
		.ie6 #menu li.our-services a:hover,
		.ie7 #menu li.our-services:hover,
		#menu li.our-services ul a:hover,
		#menu li.our-services ul li:hover { background-color:#1200ff; }
		
			.ie8 #menu li.our-services:before { background-color:transparent; background-image:url(/images/circles.png);  background-position:0 -114px; }
		
		#menu li.resource-centre:before,
		.ie6 #menu li.resource-centre a:hover,
		.ie7 #menu li.resource-centre:hover,
		#menu li.resource-centre ul a:hover,
		#menu li.resource-centre ul li:hover { background-color:#0096ff; }
		
			.ie8 #menu li.resource-centre:before { background-color:transparent; background-image:url(/images/circles.png);  background-position:0 -152px; }
		
		#menu li.cz:before,
		.ie6 #menu li.cz a:hover,
		.ie7 #menu li.cz:hover,
		#menu li.cz ul a:hover,
		#menu li.cz ul li:hover { background-color:#00ff54; }
		
			.ie8 #menu li.cz:before { background-color:transparent; background-image:url(/images/circles.png);  background-position:0 -190px; }
		
		#menu li.news:before,
		.ie6 #menu li.news a:hover,
		.ie7 #menu li.news:hover,
		#menu li.news ul a:hover,
		#menu li.news ul li:hover { background-color:#ccff00; }
		
			.ie8 #menu li.news:before { background-color:transparent; background-image:url(/images/circles.png);  background-position:0 -228px; }
		
		#menu li.contact-us:before,
		.ie6 #menu li.contact-us a:hover,
		.ie7 #menu li.contact-us:hover,
		#menu li.contact-us ul a:hover,
		#menu li.contact-us ul li:hover { background-color:#ff9c00; }
		
			.ie8 #menu li.contact-us:before { background-color:transparent; background-image:url(/images/circles.png);  background-position:0 -266px; }
		
		.ie6 #menu li a:hover,
		.ie7 #menu li a:hover,
		.ie7 #menu li.news:hover li a { color:#FFFFFF; }
		
		
		.ie6 #menu .cz a:hover,
		.ie6 #menu .news a:hover,
		.ie7 #menu .news a:hover,
		.ie7 #menu li.news:hover a,
		.ie7 #menu li.news:hover li a:hover,
		#menu li.news li a:hover  { color:#9ea0a5; }
		
		.ie7 #menu li:hover a { color:#FFFFFF; }
	
#menu li:hover { background-color: #efecea; } /* keeps the original button highlighted */
#menu li:first-child a { border-left:none;  } #menu li:last-child a { border-right:none;  }/* remove borders on each end */

#menu a{
	display: inline-block;
	width:156px; /*Width of menu minus the padding*/
	padding:0 22px;
	line-height:32px; /*set line height DONT use height*/
	color:#9ea0a5;
	text-decoration:none;
	}

#menu a:hover{
	color:#9ea0a5;
	}

#menu ul {
	position:absolute; /* Menu uses position ab to set drop downs so left: needs to be the same height as the menu */
	display:none; /*display none so menu is not visable until user hovers over the li*/
	width:194px; /* Width will need to be updated inline with all the padding on the menus */
	left:230px;
	top:0;
	background-color:#A99B8D;
	}

#menu li ul a{
	width:150px; /*update width inline with all the overs*/
	display:block;
	line-height:18px;
	padding:7px 22px;
	float:left;
	border:0;
	border-bottom:1px solid #fff; 
	color:#FFFFFF;
	}
#menu li ul a:hover { color:#FFFFFF; }	
#menu ul li { 
	float:left; /*float important*/
	display:inline;
	padding-left:0;
	}
#menu ul li:before { display:none; }
#menu li ul li ul {
	left:184px; /*position ab in herited from above left needs to be set to width on drop downs*/
	margin:0px 0 0 10px;
	width:204px;
	top:auto; /*should defalut to top of LI as long as float left is used on LI*/
	}
#menu li ul ul a { 
	width:160px; /*update width inline with all the overs*/
	}
#menu li:hover ul ul, #menu li:hover ul ul ul, #menu li:hover ul ul ul ul{
	display:none;
	}
#menu li:hover ul, #menu li li:hover ul, #menu li li li:hover ul, #menu li li li li:hover ul{
	display:block; /*IMPORTANT set drowns downs to show on hover*/
	}
	


/* 7.ARD Tables
---------------------------------------------------------------*/

/*table formatting*/
.tablines { background-color: #9ea0a5; }

#content .tablines table { margin-bottom:0; border-spacing: 1px; border-collapse: separate; } /*resets the padding to 0 on tables inside the tablines*/
 
/*a light colour on the borders of branded tables*/
.tabtitle{  font-weight: bold; color: #fff; background-color: #a99b8d; padding:5px; }

.tabletitle{ font-weight: bold; color: #fff; background-color: #a99b8d; padding:5px; }

/*Used if table has an extra heading.*/
.tabhead { font-weight: bold; color: #a99b8d; background-color: #fff; padding:5px; }

/*dark colour, matching nav bar or other strong colour in the site.*/
.tabbody { font-weight: normal; color: #9ea0a5; background-color: #fff; padding:5px; }

/*standard text, white background, black text is most common.*/
.tabtotal{ font-weight: bold; color: #9ea0a5; background-color: #fff; padding:5px; }

/* clientZONE table padding */
#CZDocumentBody td { padding:4px; }


/* 8.Forms (ask us a question, search)
---------------------------------------------------------------*/

/* Form Restet/Fixes */
textarea { overflow: auto; } /* remove scroll bar in IE unless needed */
label, input[type=button], input[type=submit], button { cursor: pointer; }/* hand cursor on clickable input elements */
button, input, select, textarea { margin: 0; }/* webkit browsers add a 2px margin outside the chrome of form elements */  

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.ie6 legend, .ie7 legend { margin-left: -7px; }
button {  width: auto; overflow: visible; } /* make buttons play nice in IE */

/* ARD Form styles */

#FirstName, #LastName { width:49%; }
#Business, #Telephone, #emailAddress { width:98%; }
#ValidationCode { width: 100px; }
#Comments { width: 99%; height: 100px; }

.FormButton  { 
	height: 21px;
	color: #fff;
	background-color: #a99b8d;
	border: solid 0px #a99b8d; }
.FormText {
	background-color: #fff;
	border: solid 1px #9ea0a5;
	margin-bottom:5px;
	padding:3px; }
.FormTextRequired {
	background-color: #fff;
	border: solid 1px #FF0000;
	margin-bottom:5px;
	padding:3px; }


/* Search Form */
.searchform { display:block; float:right; margin-top:30px; }
.searchbut { 
	height:28px;
	height:30px;
	float:left; }
.searchbox {
	height:20px;
	width:140px;
	color: #fff;
	background-color: #d4cdc6;
	border:solid 0px #a99b8d;
	padding:5px; margin:0;
	float:left;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	 }
	

/* 9.Site Search results
---------------------------------------------------------------*/
.NewsWireResult{ border: #9ea0a5 1px solid; margin-bottom:15px; padding: 15px; }
.NewsWireResult H3 { margin: 0; }
.DataResult { border: #9ea0a5 1px solid; margin-bottom:15px; padding: 15px; }
.DataResult H3 { margin: 0; }


