/* 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: 100%;
}
/* 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: #666;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	margin: 0 0 0 0; /* 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. */
}
/* Commonly used to style page titles. */
h1 {
	color: #3E668A;
	font-size: 18px;
	font-weight: bold;
	line-height: 18px;
}
/* Commonly used to style section titles. */
h2 {
	color: #3E668A;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
#content h2 {
	margin-bottom: -15px;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* 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; /* 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: 780px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#outerWrapper #header {
	background-color: #FFFFFF;
	padding: 0px;
	height: 116px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #369;
	background-image: url(../images/headerimage.jpg);
	margin: 0px;
	background-repeat: no-repeat;
	background-position: right;
}
#header .imgHeader {
	float: right;
}
#header .imgLogo {
	float: left;
	margin-left: 12px;
	margin-top: 30px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#banner h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	margin-left: 20px;
	margin-top: 20px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
}


#outerWrapper #contentWrapper #leftNav {
	float: left;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 0px;
	margin-left: 0px;
}
/* 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 {
	padding: 10px;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 220px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #369;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	color: #000000;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #369;
	font-size: 11px;
	clear: both;
	text-align: center;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #content #contentTwoCol {
	padding: 0px;
	font-size: 11px;
	margin: 0px;
}
#outerWrapper #contentWrapper #content #contentTwoCol #leftCol {
	float: left;
	width: 250px;
	padding: 10px;
}
#outerWrapper #contentWrapper #content #contentTwoCol #rightCol {
	margin-left: 270px;
	padding: 10px;
}
.solutionList {
	margin: 0px;
	padding-left: 16px;
	list-style-type: disc;
	list-style-position: outside;
}
.solutionListHeader {
	font-size: 12px;
	font-weight: normal;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	color: #FFFFFF;
	background-color: #336799;
	text-align: center;
}
br.clear {
	clear: both;
}
#contactInfo h2 {
	color: #336799;
	font-size: 12px;
	font-weight: normal;
}
#contactInfo p {
	font-size: 11px;
	color: #666666;
	margin-top: 10px;
}

#contactInfo {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #336799;
	margin-top: 50px;
	padding-top: 20px;
}

#leftNav li a:hover {
	color: #336799;
	border: 1px solid #346697;
	padding-top: 4px;
	padding-left: 4px;
	padding-bottom: 0px;
}
#leftNav ul {
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
}
#leftNav   ul   a  {
	font-weight: normal;
	font-size: 12px;
	color: #666666;
	text-decoration: none;
	height: 20px;
	padding-top: 5px;
	padding-left: 5px;
	padding-bottom: 1px;
	line-height: 16px;
	display: block;
}
#leftNav .currentPage     {
	color: #336799;
	font-weight: bold;
	border: 1px solid #34689A;
	padding-top: 4px;
	padding-bottom: 0px;
	padding-left: 4px;
}
#contactInfo a {
	color: #336799;
	font-weight: normal;
}
#content .leftPic {
	float: left;
	margin-right: 20px;
	border: 1px solid #336799;
}
#content .qsPic {
	margin-left: 172px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-align: center;
}

#footerNav {
	color: #336799;
	text-align: center;
	margin-bottom: 5px;
	margin-top: 0px;
}
#footerNav a {
	color: #336799;
	padding-right: 5px;
	padding-left: 5px;
	font-weight: normal;
}
#content h3 {
	color: #3E668A;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #336799;
	margin-right: 50%;
	margin-bottom: -12px;
	font-weight: normal;
}
#content  .specialWord {
	color: #336799;
	font-size: 12px;
	font-weight: bold;
	font-style: italic;
}

#content .rightPic {
	float: right;
	margin-left: 20px;
}
#content .contentTopPic {
	margin-top: 0px;
	margin-bottom: 20px;
	border: 2px solid #A0BBCE;
	margin-left: -2px;
}
#content .quiksupportlink {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-left: 20px;

}

#content .emailLink {
	color: #336799;
}
#content .contactDetails {
	text-align: left;
}
#banner {
	margin-left: 237px;
}
#banner p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #336695;
	font-weight: bold;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 40px;
	font-variant: normal;
}
.sampleWebSite {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.portfolioHeader {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #336699;
	padding-bottom: 3px;
	margin-top: 30px;
	width: 70%;
}

input#login, input#password {
	width: 125px;
	border: 1px solid #3E668A;
}
