
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 101%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #fff;
  color: #595959;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.65em;
  line-height: 16px;
  margin: 1em 1em 1em 1em; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
p {margin-top:0.6em;}

abbr {color:#ff0000; border:0;}

form { border: none;}

/* Commonly used to style page titles. */
h1 {
  color: #333366;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 14px;
  padding-bottom:10px;

}
/* Commonly used to style section titles. */
h2 {
  color: #333366;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 12px;
  padding:10px 0;
}
/* Sets the style for the h3 header. */
h3 {
  font-weight: bold;
  font-size: 1.2em;
  padding:10px 0;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #595959;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  /* color: #000; */
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color:#03659e;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  /* color: #000; */
  text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  /* color: #000; */
  text-decoration: underline;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  min-width: 920px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 933px;
}
#outerWrapper #frameworkWrapper {
  background-color: #e8f2f8;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #frameworkWrapper #mainFramework {
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

.banner {
	background-color:#e1ebe0;
	border:#649a68 solid 1px;
	width:210px;
	line-height:13px;
	height:100px;
	margin-top:10px;
	padding: 6px 9px;
}

.banner h3 {color:#346667;}

.banner img {float:right;}


#crumbtrail-div {padding:7px 10px 7px 15px; height:4px;}

#contentWrapper .clearFloat {
  clear: left;
  display: block;

}

#contentWrapper #leftColumn {
  float: left;
  margin-right: 10px;
  padding: 10px 10px 5px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 660px;

}

#contentWrapper #leftColumnHome {
  float: left;
  margin: 8px 0px 8px 8px;
  padding: 10px;
  width: 670px;
  background-color:#f3f6f5;
}

#contentWrapper #contentHome {
  float: left;
  margin: 8px 8px 8px 8px;
  padding: 10px;

  background-color:#f3f6f5;
}

#contentWrapper #rightColumn {
  float: right;
  margin: 8px;
  
  width: 180px;
}

.container {overflow: hidden; width: 100%; }

.gradient {
	background-image:url(images/left-hand-gradient.jpg);
  	background-position:top left;
  	background-repeat:no-repeat;

}

#container {overflow: hidden; width: 100%;}

.w3c {
	padding:10px 10px 0 10px; 
	font-weight:bold; 
	color:#03659e; 
	width:30%; 
	float:left;
	}
	
#contentWrapper {padding:5px; background-color:#fff;}

.divider {
	background-color:#e1ebe0; 
	height:5px; 
	overflow:hidden;
	}
	
.footer-links {
	 padding:7px 10px 0 10px; 
	 font-weight:bold; 
	 color:#03659e; 
	 width:65%; 
	 float:right; 
	 text-align:right;
	 }
	 
#footer-links a {
	 font-weight:bold; 
	 color:#03659e;
	 }

#header {
	height: 134px;
	width: 913px;
	background-image:url(images/bg-header.jpg);
	background-repeat: no-repeat;
	
}

hr
{
	padding:0;
	border-color: #ccc;
	border-style: dashed;
	border-width: 1px 0 0 0;
	height:0;
	}
	
#logo {
	/* text-align:center; */
	width:99%;
	margin-left:25px;
}

/* #logo {
	background-image:url(images/logo.png);
	background-repeat:no-repeat;
	width:567px;
	height:88px;
	margin-left:auto;
	margin-right:auto;
} */

.mainContent {margin: 10px 220px 5px 245px;}

/* main menu wrapper */
#main-menu {
	margin-left:26px;
	margin-top:26px;
	height:26px;
	width:857px;
	}
	
#main-menu img {float:left;}	
	
#mainContentWrapper {
  /* background-color: #fff; */
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 100%;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 0 0 240px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

.padding10px {padding:2px 10px;}

.skiplink {display:none}

.howcan {
	border:#83b2cc solid 3px; 
	padding:10px;
	width:440px; 
	float:right; 
	margin:10px 10px 0 0; 
	background-color:#F1F8FF;
}

.icons {height:130px; width:auto;}

#icons-select {padding:0 0 20px 1px; list-style-type:none; width:100%; margin-left:0; padding-left:0;}
#icons-select li {display:block; float:left; width:20%; height:64px; position:relative;}
#icons-select li a {display:block;}
#icons-select li a img {border:0;display:block;}

#the-team {padding:0 0 20px 1px; list-style-type:none; margin-left:0; padding-left:0;}
#the-team li {display:block; float:left; width:20%; height:64px; position:relative; text-align:center; font-size:1em;}
#the-team li a {display:block;text-decoration:none;}
#the-team li a img {display:block;}
#the-team li a:link{text-decoration:none;}

#contact-select {list-style-type:none; width:99%; margin-left:0; padding-left:0;}
#contact-select li {display:block; float:left; width:32.5%; height:64px; position:relative;}
#contact-select li a {display:block;}
#contact-select li a img {border:0;display:block;}

.contact-details {padding:0 0 20px 1px; list-style-type:none; width:230px; margin-left:1em; padding-left:0; float:right;}
.contact-details li {display:block; float:left; width:70%; height:30px; position:relative; font-weight:bold;width: 230px;}
.contact-details li a { color:#595959; font-weight:bold;} 
.contact-details li a img {border:0;display:block;}



.clientTests {
	width:52%; 
	float:left;
	background-image:url(images/speech-bubble.png);
	background-repeat:no-repeat;
	height:180px;
}

.testimonial {
	padding: 2.3em 5em 0 5.2em;
	font-size:0.85em;
	font-weight:bold;
}

.testimonial em {color:#063d7d;}

.testimonial2 {
	padding: 2.3em 5em 0 5.2em;
	font-size:0.85em;
	font-weight:bold;
	width:240px;
}

.testimonial2 em {color:#063d7d;}


.meetTeam {
	width:48%; 
	float:left;
	background-image:url(images/meet-team.jpg);
	height:180px;
}

.meetTeam-btn{
	margin-top:10em;
	margin-right:1em;
	float:right;
	overflow:hidden;
}

.findUs {
	border:#9F9F9F solid 1px;
	background-image:url(images/bg-find-us.jpg);
	background-repeat:no-repeat;
	padding:0.2em 0.2em 0 0.4em;;
	height:158px;
	color:#fff;
	font-weight:bold;
	margin-bottom:1em;

}

.findUs img {
	padding: 2.1em 0.5em 0 0.2em;
}

.contactUs {
	border:#9F9F9F solid 1px;
	background-color:#f1f9fb;
	background-image:url(images/bg-boxes.jpg);
	background-repeat: repeat-x;
	padding:0.2em 0.2em 0.5em 0.4em;;
	color:#fff;
	font-weight:bold;
	margin-bottom:1em;
}

.address {
	color:#03659e; 
	margin-left:5.6em; 
	margin-top:1.7em;
}

.dx {
	color:#03659e; 
	font-size:1em;
	padding-left:43px;

}

.lsc {
	padding:0 0.2em 0 0.4em;;
	height:148px;
	font-size: 0.85em;
	font-weight: bold;
	margin-bottom:1em;
	line-height:12px;
}

.profilePic {
	float:right; 
	padding-left:10px; 
	padding-bottom:10px;
}
