/* 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;
}
/* 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. */

html {
	font-family: Arial, Helvetica, sans-serif;
	font-size:  76%;
	height: 100%;
}
body {
	color: #333333;
	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. */
	/*background: #FFF url(images/page-bg.jpg) repeat-x top;*/
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #003399;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #666666;
	text-decoration:underline;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #F37021;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #F37021;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #F37021;
}

/* ---------- Typography CSS ---------- */

h1, h2, h3, h4, h5, h6	{
	font-family: Arial, Helvetica, sans-serif;
} /* serif fonts for header fonts.  sans serif fonts for body fonts.  */

h1 {
	font-size: 2em;
	font-weight: normal;
	margin-top: 0em;
	color:#CC3300; /* same color as navigation line and navigation current button  */
	margin-bottom: 1.2em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
}
h2 {
	font-size: 1.7em;
	margin:0em 0em 1.2em 0em;
	font-weight: normal;
	color:#333333; 
}
h3 {
	font-size: 1.7em;
	margin:0.4em 0em 1.2em 0em;
	font-weight: normal;
	color: #E44814;
}
h3 a {
	color: #E44814;
	font-style:italic;
	font-weight:bold;
	font-family:Georgia, "Times New Roman", Times, serif;
}
h3 a:visited {
	color: #E44814;
	text-decoration:none;
}
h4 {
	font-size: 1.0em;
	margin:0.4em 0em 1.2em 0em;
	font-weight: bold;
}
h5 {
	font-size: 0.9em;
	margin:0.4em 0em 1.2em 0em;
	font-weight: bold;
}
h6 {
	font-size: 0.8em;
	margin:0.4em 0em 1.2em 0em;
	font-weight: bold;
}
img {
	border: 0;
}

/* ---------- Page Structure CSS ---------- */
#barePage {
	background: #FFF url(/images/page-bg.jpg) repeat-x top;
}

/* 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 {
	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: 920px;
}

#bareWrapper {
	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: 920px;
}

#header {
	width:100%;
	position:relative;
	height:45px;
}

#headlinks {
	text-align:left;
	padding:15px 25px 20px 30px;
}

/* ---------- Navigation CSS ---------- */

#navcontainer {
	width:100%;
	height:50px;
	font-family: Arial, Helvetica, sans-serif;
	padding-left:25px;
	position:relative;
}

#nav {
	float:right;
	font-size:13px;
	text-transform:uppercase;
	font-weight:bold;
	padding:5px 50px 0 25px;
}

#nav a {
	color:#999999;
	text-decoration:none;
	padding:5px 10px 0 10px;
}

#nav a:hover {
	color:#666666;
	cursor:pointer;
}
#nav a.current, #nav a.current:hover {
	color:#F37021;
}

.logo {
	position:absolute;
	top:0;
	left:25px;
}

/* -------------------- Main body content layout ------------------------------ */
#threeColumns { /* This sets the id for a 3 column layout */
	overflow: hidden;
}

#threeColumns #rightColumn {
	float: right;
	padding: 15px 15px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
/* 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. */
#threeColumns #content {
	margin: 0 205px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 480px;
}
#twoColumnleft #content, #twoColumnright #content {
	width:595px;
}
#twoColumnleft { /* This sets the id for a 2 column layout with a left column only */
	overflow: hidden;
}
#twoColumnleft #leftColumn {
	float: left;
	padding: 15px 10px 10px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
#twoColumnleft #rightColumn {
	display:none;
}
/* 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. */
#twoColumnleft #content {
	margin: 0 15px 0 285px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#twoColumnright { /* This sets the id for a 2 column layout with a right column only */
	position:relative;
	overflow: hidden;
	clear:both;
}
#twoColumnright #leftColumn {
	display:none;
}
#twoColumnright #rightColumn {
	float: right;
	padding: 0px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
/* 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. */
#twoColumnright #content {
	margin: 0 205px 50px 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
		
}

#accreditations {
	text-align:left;
	position:absolute;
	bottom:8px;
	left:25px;
}

/* ---------- Stylings for homepage jQuery slider ---------- */

#slider	{
	float:left;
	margin-bottom:25px;
	margin-left:23px;
	width:600px;
	/*height:175px;*/
	overflow:hidden; 
	
}
#slider ul, #slider li {
	margin:0;
	padding:0;
	list-style:none;
}
#slider li {
	width:620px;
	height:175px;
	overflow:hidden;
}

/* ---------- Nth East Corner Box  ---------- */
#latestNews	{
	width:225px;
	height:175px;
	background-color:white;
	float:right;
	margin-right:17px;
}

/*  styles for subscription box  */
#subscription	{
	background-color:#FFF;
	background-image:url(images/newsletterHdr.jpg);
	background-repeat:no-repeat;
	width:237px;
	height:70px;
	float:right;
	margin-top:0;
	margin-right:11px;
	padding-top:5px;
	position:relative;
}

#subscription .newshead	{
	font-size:13px;
	font-weight:bold;
	margin:0 0 2px;
	position:absolute;
	right:25px;
	top:3px;
	text-align:left;
}

#newsletter	{
	margin-top:7px;
}

#subscription #subButton	{
	color:#FFF;
	background-image:url(images/subButton.jpg);
	float:right;
	background-color:#f37021;
	width:65px;
	height:20px;
	background-repeat:no-repeat;
	margin-top:0;
	margin-right:20px;
	border:none;
	font-family:arial;
	font-size:90%;
	vertical-align: middle;
}

#subscription #subButton:hover	{
	background-image:url(images/subButtonHover.jpg);
}

#subscription #email	{
	font-size:90%;
	width:100px;
}

#subscription #name	{
	font-size:90%;
	width:100px;
}

#ajaxResponse {
	float:right;
	color:#F00;
	font-size:9px;
	text-align:right;
	width:300px;
	position:absolute;
	bottom:0;
	right:0;
	padding:0 50px 5px 0;
}

/* ---------- LOGIN ---------- */
/*  this code is for the login box */
#login	{
	background-image:url(images/loginArea.jpg);
	padding-bottom:5px;
	width:237px;
	height:103px;
	color:#333;
	font-size:10px;
	float:right;
	margin-top:0px;
	margin-right:11px;
	background-repeat:no-repeat;
	background-position:top left;
}

#login .loghead	{
	width:225px;
	height:17px;
	margin-top:0px;
	position:relative;
	padding:5px 0 0 5px;
	font-size:13px;
	color:#333333;
	text-align:center;
}

#login .formAlign	{
	position:relative;
	margin-top:-13px;
	clear:both;
	margin-bottom:2px;
	padding: 0 6px 0 6px;
	height:48px;
}

#login label	{
	margin-top:2px;
}
#login .inputLog	{
	float:left;
	margin:0 0 5px 0;
	padding:0;
	width:100px;
}

#nextbit	{
	height:27px;
	margin:0;
	padding:0;
}

.accounts	{
	font-size:9px;
	margin:0 0 0 6px;
	padding:0;
	width:120px;
	float:left;
	clear:left;
	position:relative;
}

#login #log_sub	{
	float:right;
	width:60px;
	height:20px;
	font-size:9px;
	position:relative;
	background-color:#f37021;
	background-image:url(images/loginButton.jpg);
	margin:3px 20px 0 0;
	color:#fff;
	font-family:arial;
	border:none;
}

#login #log_sub:hover {
	background-image:url(images/loginButtonHover.jpg);
}

#logonForm	{
	margin:0;
	padding:0;
}

/* ---------- WIDGETS ZONE  ---------- */
	/*  this code is for widgets  */
#widgets	{
	width:225px;
	float:right;
	height:30px;
	position:absolute;
	top:3px;
	right:0;
}

.social	{
	margin-top:13px;
	padding:0;
	border:0;
}

.twitter	{
	padding:2px 30px;
	float:right;
}

/* ---------- Footer CSS ---------- */
#footer {
	padding: 15px 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 20px;
	color: #666666;
	clear: both;
	position:relative;
	width:880px;
	border-top:thin;
	border-top-color:#666;
	border-top-style:solid;
}

#footer a, #footer a:link, #footer a:visited, #footer a:active {
	color: #999999;
}
#footer a:hover {
	color: #333333;
	font-weight:700;
}

.footnotes	{
	float:right;
	padding-right:30px;
}
.copy	{
	float:left;
	font-size:90%;
	text-align:left;
	padding-right:40px;
	margin-top:-2px;
}

/* ---------- Two Column CSS ---------- */

.csscolumns {
	overflow:hidden;
	width: 100%;
	line-height:1.5em;
}
/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 
.imgfloat	{
	float:left;
	display:inline;
	padding:10px 5px 10px 3px;
}

#col_one_2 {
	margin: 0;
	float: left;
	width:48%;
}

#col_two_2 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: right;
	width:48%;
}

/* ---------- Side column menu styles ---------- */

.simplemenu {
	width: 100%; /*width of menu*/
}
.simplemenu .headerbar {
	font-weight:bold;
	font-size:13px;
	/*font-family: Georgia, 'Times New Roman', Times, serif;*/
	color: #333333; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 7px; /*31px is left indentation of header text*/
}
.simplemenu ul {
	list-style-type: none;
	padding: 0 0 20px; /*bottom spacing between each UL and rest of content*/
	margin: 0;
}
.simplemenu ul.normal {
	list-style-type: none;
	padding: 0 0 0px; /*adjusts for H5 above */
	margin: 0;
}
.simplemenu ul li {
	margin: 0px;
	padding: 2px;
}
.simplemenu ul li a {
	font: normal 12px Arial;
	color: black;
	background: #FFF;
	display: block;
	padding: 4px 0 4px 5px;
	line-height: 17px; /*link text is indented 8px*/
	text-decoration: none;
	border-bottom: 1px solid #C2C2C2;
}
.simplemenu ul li a:visited {
	color: black;
}
.simplemenu ul li a:hover { /*hover state CSS*/
	color: #E44814;
	background: #EAEAEA;
}
.simplemenu ul li a.on, .simplemenu ul li a.on:visited, .simplemenu ul li a.on:hover 	{ /*page selected state CSS*/
	color:#FFF;
	background:#999999;
	}
/* ---------- Common styles shared between both left and right columns ---------- */

.sidebarlt { 
	/* CSS Corners - Container DIV for all other style divs */
	width:240px;
	position:relative;
	background-image: url(images/sidebarbckgrnd.png);
	background-repeat:repeat-y;
	background-position: inherit;
}

.sidebartop	{ /* CSS Corners - top box corners */	
	background-image: url(images/sidebartop.png);
	background-repeat:no-repeat;
	width:240px;
	height:25px;
	position:absolute;
}
.sidebarbottom	{	/* CSS Corners - bottom box corners */	
	background-image: url(images/sidebarbottom.png);
	background-repeat:no-repeat;
	width:240px;
	height:25px; 
	position:relative;
}

.sidebarcontent	{ 
padding:25px 0 0 5px; 	
position:relative;
overflow:hidden;
}

.sidebarlt h2, .sidebarlt h1 {
	color:#333333;
	margin-top:10px;
	padding:0 15px 0 10px;
}

.sidebartop h4 {
	margin-top:2px;
	padding:5px 0 5px 0;
	font-size:13px;
	color:#333333;
	text-align:center;
}

.sidebarlt a {
	color: #333333;
	font-family:verdana;
	padding:0 10px 0 10px;
	display:block;
}

.sidebarlt a:hover, .sidebarlt a:active {
	color: #F37021;
	text-decoration:underline;
	font-family:verdana;
	padding:0 10px 0 10px;
	display:block;
}

.sidebarlt a:visited, hover	{
	color:#999999;
}

.sidebarlt p {
	padding:0 10px 2px 10px;
	display:block;
}

/***** Text & Layout Markup *****/

.compOrange	{
color:#F37021;
font-weight:bold;
}

.compGrey	{
color:#666666;
font-weight:bold;
}

.bold	{ /* color scheme for bolded text in any main content area */
color:#333333;
font-weight:bold;
}

.faqsSpace	{ /* strictly for use within FAQ section for paragraph separation - replaces .txtColBold class */
	margin-top:2em;
}

.textHlght	{ /* highlights text background to light red for emphasis within content area  */
background-color:#F6C9CB;
}

.legals	{ /* for text that is offset from normal text and serves as legal or representation or as a footnote*/
	color:#999999;
	font-size:80%;
}

.spaced ol, .spaced ul, .spaced li {
	font-size: 1.0em;
	line-height: 1.5em;
	margin-top: 0.2em;
	margin-bottom: 0.1em;
}

p {
	font-size: 1.0em;
	line-height: 1.5em;
	margin: 1.2em 0em 1.2em 0em;
}

li > p {
	margin-top: 0.2em;
}

pre {
	font-family: monospace;
	font-size: 1.2em;
	background: #F4F4F4;
	margin: 15px;
	padding: 10px;
	border: 1px dotted #CCC;
}

.right { /* stock images floated right */
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}

.left { /* stock images floated left */
	float: left;
	margin-right: 10px;
	margin-bottom: 5px;
}

.clear { /* stock clears next line after floated content */
	clear:both;
}

.galleryleft {
	float:left;
	border:solid 5px #000;
	margin:10px 10px 0 0;
}	
.arrow {
	background: url(images/arrow.gif) no-repeat left top;
	display: block;
	padding-left: 15px;
	margin-top: 8px;
}

/* ---------- Stylings for hierarchical Sitemap ---------- */

.sitemap span.none, .sitemap span.vert, .sitemap span.last, .sitemap span.midd {
	background:transparent 0px 0px no-repeat;
	width: 24px;
	height: 18px;
	display: block;
	float: left;
	margin-left: 1em;
}
.sitemap li {
	line-height: 1.65em;
}
.sitemap span.vert {
	background-image: url(images/map_vert.gif);
}
.sitemap span.last {
	background-image: url(images/map_last.gif);
}
.sitemap span.midd {
	background-image: url(images/map_midd.gif);
}
.sitemap, .sitemap ul, .sitemap li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* ---------- These are the styles for the contact form ---------- */
#contactform	{
	margin:0;
	padding:0;
}

label {
	width:150px;
}
.inputValue {
	width:50%;
	margin-top:5px;
}
.inputText {
	width:85%;
	height:180px;
	margin-top:5px;
}
.inputButton {
	float:right;
	background-color:#d94121;
	margin-right:9px;
	background-image:url(images/form_btns.gif);
	color:#fff;
	font-family:arial;
}

select	{
	margin-top:5px;
	margin-bottom:15px;
}
.required {
	font-size:9px;
	color:#C00;	
}
textarea	{

}

.labelLeft	{
	clear:left;
	float:left;
	width:100px;
	padding-left:5px;
}
.inputLeft 	{
	float:left;
	margin:0 0 5px 8px;
	width:50%;
	clear:both;
}
.labelAlign	{
	clear:left;
	float:left;
	width:100px;
	margin:0;
	padding:0;
	padding-left:5px;
	vertical-align:middle;
}

/* ---------- These are the styles for the data detail table ---------- */

#detail {
	margin-top: 20px;
}
#detail h3 {
	margin: 8px 0px 0px;
	padding: 0px;	
}
#detail p {
	line-height:normal;	
}
#detail a {
	font-weight:bold;	
}
#detail td.uline {
	border-bottom:1px solid #ccc;	
}

/* ---------- These are the styles for the testimonials box ---------- */

.MenuContents	{
	position: relative; 
	display:none; 
	width:570px; 
	height:379px; 
	overflow:hidden; 
	margin-top:-20px;
	clear:both;
	background-image:url(images/testimonials-box.jpg);
	background-repeat:no-repeat;
	font-size:12px;
	font-family:verdana;
}

.MenuContents p  	{
	width:520px;	
	margin:4.5em .3em 0 2em;	
}

.MenuContents h3 	{
	width:520px;	
	margin:.5em .3em 0 2em;	
	font-size:130%;
}

.box-link-back { 
	position: absolute; 
	top: 335px; 
	left: 65px; 
	width: 90px; 
	height: 26px; 
	background-color: transparent; 
}	

.box-link-next { 
	position: absolute; 
	top: 335px; 
	left: 410px; 
	width: 90px; 
	height: 26px; 
	background-color: transparent; 
}	

/* ---------- These are additional styles included by Mad Chaos Designs ---------- */

.center	{
	margin-left:auto;
	margin-right:auto;
	display:block;
}
.centeredImage {
	text-align:center;
	margin-top:0px;
	margin-bottom:0px;
	padding:0px;
}
	
.pullLeft	{ /* pulls an image across to fit into 2 columns format */
	text-align:center;
	margin-left:-30px;
	padding:0px;
	overflow:visible;
}

/* ---------- Pull Quotes used in place of bolded senteces, best on two-column layouts ---------- */
.pullquote	{
	font:18px 'Times New Roman';
	color:#3A047C;
	font-style:italic;
	width:97%;
	margin:0 0 10px 10px;
	padding:15px 5px 5px 5px;
	border-bottom:2px solid #5C06C8;
	border-top:2px solid #5C06C8;
}

.pullquoteCol	{
	font:18px 'Times New Roman';
	font-style:italic;
	color:#3A047C;
	width:45%;
	margin:0 0 10px 15px;
	padding:15px 10px 10px 5px;
	border-bottom:2px solid #5C06C8;
	border-top:2px solid #5C06C8;
	float:right;
}

.pullquoteGreen	{
	color:#007931;
	width:97%;
	margin:0 0 10px 10px;
	padding:5px;
	border-bottom:2px solid #007931;
	border-top:2px solid #007931;
	float:right;
}

.quoteLeft	{ /* this style is to align the pullquote's left quotation mark */
	float:left;
	display:block;
	margin-top:-14px;
	margin-left:-10px;
	font-size:225%;
}

.quoteRight	{ /* this style is to align the pullquote's left quotation mark */
	float:right;
	display:block;
	margin-top:-28px;
	margin-right:2px;
	font-size:225%;
	margin-bottom:-10px;
}

/* ---------- These are styles imported from old CriticalData website ---------- */

.txtColBold {
	font-size: 12px;
	color: #333333;
	font-weight: bold;
}
.txtCol {
	font-size: 12px;
	color: #333333;
	font-weight: normal;
}
.text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
}
.txtColBoldRed {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FF0000;
	font-weight: bold;
}
.txtColBoldWhite {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
}
.txtSub  {
	font-size:11px;
	color: #999999;
}
.txtSub li  {
	font-size:11px;
	color: #999999;
}
.txtLegal {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
}
.subtitle   {
	font-weight: bold;
	font-size: 10px;
	color: #d3462a;
	text-decoration: underline;
}
.greyFramed {
	border: 1px solid #525659;
}
.redFramed {
	border: 2px solid #FF0000;
}
.imgStyle {
	display: inline;
	float: none; 
	border: 0;
	left: 0pt;
	top: 0pt;
}

#padcell {
	text-align: left;
	padding-left: 5px;
}
#blackBold {
	color: #000000;
	font-weight: bold;
}
#red {
	color: #FF0000;
}
#redBold {
	color: #FF0000;
	font-weight: bold;
}
#blue {
	color: #0000FF;
}

/* ---------- These are styles associated to Mad Chaos Designs for design credit ---------- */
#designer	{
	color:#6b6b6b;
	font-size:8px;
	height:15px;
	padding-left:30px;
	margin:0;
	float:left;
}
#designer a	{
	color:#6b6b6b;
	font-family:helvetica, arial;
	text-decoration:none;
}


