/* ---------------------
	Title: One Pica codebase - blank screen stylesheet
	Filename: screen.css
	Author: One Pica Inc, Boston MA
	
	Table of Contents:
		Searchstring (Section Name)				Description
		
		=General (General Styles):				Set font sizes, Page backgrounds, link behaviors, etc
		=Master (Master #container Styles):		Placing, sizing, styling the main container
		=Branding (Branding Styles):			Logos, taglines, branding info
		=Nav (Navigation Styles):				The navigation bar; internal and external
		=Forms (Form Styles)					Set appearance of forms, inputs, buttons, etc
		=Multicol (Multi-Column Styles):		The cases where the content needs to be in multiple columns
		=Headings (Heading Styles):				<h1> through <h6>
		=Content (Content Styles):				The main content of the page
		...Further style sections go here...
		=Footer (Credit/Footer Styles):			The footer
		=Uni (Universal Styles):				Classes and elements that apply throughout ('clear', 'blue', etc)
	
	Common Color Table:
		White:									#FFFFFF;
	
	Thanks To:
		CSS structure/commenting: http://www.huddletogether.com/2006/02/16/practical-web-development-tips/
		Markup structure: http://www.stuffandnonsense.co.uk/archives/whats_in_a_name_pt2.html
		Stylesheet searchstring flags: http://www.stopdesign.com/log/2005/05/03/css-tip-flags.html
---------------------- */

/* =General
---------------------- 
	General Styles applied to 'normalize' things
	Notes:
		'Em' styling generally following (http://www.clagnut.com/blog/348/) from this point 10px=1em, 11px=1.1em, etc
		100.01% font size from (http://www.communitymx.com/content/article.cfm?page=5&cid=FAF76)
		Beginning "global reset" styles, to clear troublesome browser defaults, 
		are based on (http://meyerweb.com/eric/thoughts/2007/04/14/reworked-reset/) 
		Note that most form elements are omitted; style those separately, further down.
---------------------- */
html, body, div, span,
applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
dd, dl, dt, li, ol, ul,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	line-height: 1;
	font-family: inherit;
	text-align: left;
	vertical-align: baseline;
}
a img, :link img, :visited img {
	border: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ul {
	list-style: none;
}

/* Begin Actual Site Styles */
html {
	font-size: 100.01%; /* Ensures font consistency across browsers */
	height: 100%;
}
body#bd, body.body {
	font-size: 10px; /* Sets base font-size for browsers that resize text correctly */
	line-height: 1.5; /* Sets base leading for lines of text */
	font-family: Arial, Tahoma, sans-serif;
	height: 100%;
	padding: 0;
	border-top: 1px solid transparent;
}
body.default { background: #FFFFFF url(/images/bg/pills.png) no-repeat scroll center top; }
body.stardrop { background: #FFFFFF url(/images/bg/pills-top.png) no-repeat scroll center top; }
body.starvue { background: #FFFFFF url(/images/bg/starvue-bg.png) no-repeat scroll center top; }
body.casestudies { background: #FFFFFF url(/images/bg/pills-top.png) no-repeat scroll center top; }
body.company { background: #FFFFFF url(/images/bg/pills-top.png) no-repeat scroll center top; }
body.news { background: #FFFFFF url(/images/bg/pills-top.png) no-repeat scroll center top; }
body.community { background: #FFFFFF url(/images/bg/pills-top.png) no-repeat scroll center top; }
body.contact { background: #FFFFFF url(/images/bg/pills-top.png) no-repeat scroll center top; }

p {margin-bottom: 1em; line-height: 1.5}
div, span, a {line-height: 1.5}

input, select, th, td {font-size: 1em}

h1 {font-size: 2em} /* 24px */
#tinymce h1, .article-content h1 {font-size: 2em !important;}
h2 {font-size: 1.75em} /* 18px */
#tinymce h2, .article-content h2 {font-size: 1.75em !important;}
h3 {font-size: 1.5em; line-height:1.5em;} /* 15px */
#tinymce h3, .article-content h3 {font-size: 1.5em !important; line-height:1.5em !important;}
h4 {font-size: 1.25em} /* 12px */
#tinymce h4, .article-content h4 {font-size: 1.25em !important; text-transform:inherit !important; }
h5 {font-size: 1em} /* 12px */
#tinymce h5, .article-content h5 {font-size: 1em !important;}
h6 {font-size: 1em} /* 12px */
#tinymce h6, .article-content h6 {font-size: 1em !important;}

strong {font-weight: bold}
em {font-style: italic}
sup {font-size: 50%; vertical-align: super;}

/* Basic link styles */
a, a:link {
	color: #549335;
	text-decoration: none;
}
a:visited {
	color: #549335;
}
a:hover, a:active {
	color: #549335;
	text-decoration: underline;
}
a:focus {
	outline: none; /* Removes dotted outline in Firefox */
}

/* =Master
---------------------- 
	Master Container
	Notes:
		margin: 0px auto; centers the container horizontally except in IE5, which is fixed in the body tag
---------------------- */
#container {
	position: relative;
	margin: 0px auto;
	padding: 0;
	width: 900px;
	font-size: 1.2em; /* 12px (based on value from body) */
	text-align: left; /* Normalize alignment; unfix all browsers from fix in IE stylesheet */
}
#container #pagebg {
	position:absolute;
	top:50px;
	right:-240px;	
	z-index:1;
}

/* Skip link: This is the very first link anywhere on the page; by tabbing to it or hitting accesskey 2, a user can skip the header/navigation of a page and go directly to the page content. It is normally 'hidden' by being positioned far, far off the page; bringing it into focus with Tab makes it visible. */
	#skiplink a {
		position: absolute;
		top: -1000px;
		left: -2000px;
	}
		#skiplink a:focus, #skiplink a:active {
			position: absolute;
			margin: 0;
			top: 0;
			left: 0;
			display: block;
			padding: 0;
			background: #000;
			color: #fff;
			font-weight: bold;
		}
		#skiplink a:hover { 
		}

/* =Branding
----------------------
	Branding styles: Usually the logo and tagline
	Notes:
		Image replacement: Usually Phark Method (http://www.mezzoblue.com/tests/revised-image-replacement/)
---------------------- */
#branding {
	display: block;
	height: 130px;
	width: 900px;
	background: none;
	margin: 0;
	padding: 0px 0 0 0;
}
	#branding-logo {
		width: 900px;
		height: 130px; /* Set dimensions once here, and use 100% for all dimensions in both rules below */
		margin: 0 0 0 0px;
	}
		#branding-logo h1 {
			/* Uncomment this for Image Replacement -
				the following rules set Image Replacement and neutralize h1's default behavior  */
			text-indent: -5000px;
			overflow: hidden;
			background: url("../images/branding/logo.png") 0px 0px no-repeat;
			width: 100%;
			height: 100%;
			line-height: 1;
			padding: 0;
			margin: 0; /* Change this */
		}
			#branding-logo h1 a {
				/* Also uncomment this for Image Replacement */
				display: block;
				width: 290px;
				height: 90px;
				margin-top: 17px;
			}
	#branding-info {
	}

/* =Nav
----------------------
	Navigation styles
	Notes:
		Navigation belongs in an UL tag with <ul><li><a></a></li></ul> as the markup scheme.
		Keep each of the below #elements as divs, and put the UL inside them
		If there's a Left-Hand navigation, use #nav-section, give it a width & float it left
---------------------- */
#nav {
	position: absolute;
	left: 0;
	top: 0;
}
	#nav-main {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: 650px;
		z-index: 1100;
	}
		#nav-main ul {
			float: right;
			list-style: none;
			margin: 0;
			padding: 0;
		}
			#nav-main ul li {
				list-style-type: none;
				padding: 14px 11px 0;
				margin: 0;
				width: auto;
				float: left;
				display: block;
				border-right: 1px solid #5e544b;
				position:relative;
			}
			#nav-main ul li.current {
				/*background: #D7D7D7;*/
				color: #0281a7;
			}
			#nav-main ul li a {
				text-decoration: none;
				font-size: 1.4em;
				font-weight: bold;
				color: #5a4a42;
			}
			#nav-main ul li.last {
				border: none;
			}
			#nav-main ul .hover {
				background: #4c7a3c;
				color: #FFFFFF;
				height: 34px;
			}
			#nav-main ul .hover a {
				color: #FFFFFF;
			}
			#nav-main ul li.current a, #home #nav-main ul li a {
				color: #0281a7;
			}
			
			#nav-main .dropdown {
				left: -999em;
				position: absolute;
				top: 48px;
			}
				#nav-main .dropdown .clear {
					clear: left;
					font-size: 1px;
					line-height: 0px;
					margin: 0;
					padding: 0;
					height: 0;
				}
			#nav-main .hover .dropdown {
				left: 0px;
				margin-left: -20px;
			}
			#nav-main .dropdowntop {
				padding: 20px 0 0 27px;
				margin: 0;
			}
			#nav-main .dropdownfooter {
				padding: 0;
				margin: 0;
				height: 16px;
				clear: left;
			}
			#nav-main .dropdownfooter {
				display: block;
			}
			#nav-main .dropdowntop-1 {
				background: url('../images/bg/nav1_top.png') left top no-repeat;
				width: 291px;
			}
			#nav-main .dropdownfooter-1 {
				background: url('../images/bg/nav1_bottom.png') left top no-repeat;
				width: 291px;
			}
			#nav-main .dropdowntop-2 {
				width: 380px;
			}
			#nav-main .dropdownfooter-2 {}
			#nav-main .dropdowntop-3 {
				background: url('../images/bg/nav3_top.png') left top no-repeat;
				width: 834px;
				height: 205px;
				margin-left: -240px;
				padding: 0;
			}
			#nav-main .dropdownfooter-3 {
				background: url('../images/bg/nav3_bottom.png') left top no-repeat;
				width: 541px;
			}
			#nav-main .dropdowntop-4 {
				width: 650px;
			}
			#nav-main .dropdownfooter-4 {}

				#nav-main .dropdown .column {
					float: left;
					margin: 0 10px 0 0;
					padding: 0;
					width: 160px;
					display: inline;
				}
				#nav-main .dropdowntop-3 .column1 {
					background:url("../images/branding/stardrop-alpha.png") no-repeat scroll left top transparent;
					width: 155px;
					padding: 20px 0 0 68px;
				}
				#nav-main .dropdowntop-3 .column2 {
					width: 180px;
					padding: 20px 0 0 10px;
				}
				#nav-main .dropdowntop-3 .column3 {
					width: 170px;
					padding: 20px 0 0 10px;
				}
				#nav-main .dropdowntop-3 .column4 {
					background:url("../images/branding/starvue-alpha.png") no-repeat scroll left top transparent;
					width: 125px;
					padding: 20px 0 0 70px;
				}
				#nav-main .dropdown .column h5 {
					font-size: 0.9em;
					padding: 0;
					margin: 0 0 0.7em 0;
					height: 21px;
					font-weight: bold;
					line-height: 0.8em;
				}
				#nav-main .dropdown .column h5 a {
					padding: 0;
					margin: 0;
					line-height: 1em;
					height: 21px;
				}
				#nav-main ul li ul {
					height: auto;
					margin: 0;
					padding: 0;
					width: 140px;
					float: none;
				}
					#nav-main .dropdowntop-1 ul {
						width: 235px;
					}
					#nav-main .dropdowntop-1 ul li {
						width: 235px;
					}
				#nav-main ul li ul li {
					float: none;
					font-size: 1em;
					line-height: 1.1em;
					padding: 0;
					margin: 0 0 4px 8px !important;
					margin-bottom: 2px;
					border: none;
					height: auto;
					width: 140px;
				}
				#nav-main ul li ul li {
					width: 150px;
				}
				#nav-main ul li ul li a {
					font-size: 1em;
					line-height: 1.3em;
					padding: 0;
					margin: 0;
					font-weight: normal;
					height: auto;
					text-indent: -8px;
					padding-left: 0px;
					white-space: normal;
				}
				#nav-main ul li ul li a:hover {
					text-decoration: underline;
				}
	#nav-section {
		position: absolute;
		left: 20px;
		top: 0;
		display: block;
		height: 25px;
	}
			#nav-section ul li {
				list-style-type: none;
				height: 21px;
				padding: 6px 0 0 0;
				width: auto;
				float: left;
				display: block;
			}
			#nav-section ul li a {
				display: block;
				height: 16px;
				padding: 5px 17px 0 17px;
				text-decoration: none;
				font-size: 0.9em;
				line-height: 1em;
				color: #5f5f5f;
			}
	#nav-external {
	}

/* =Forms
----------------------
	Form styles
	Notes:
		A <p></p> should always enclose every label-input (or label-select) pair.
		Widths are in % to start, so that they scale, but they are the attributes most likely to change.
		Remember -- the IE stylesheet has different percentage widths to start.
---------------------- */
#content form {
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
}
	#content fieldset {
		border: 0px solid;
		padding: 0;
		margin: 0 0 1.4em 0;
	}
	#content form p {
		display: block;
		clear: both;
		margin: 0 0 0.4em 0;
		padding: 0;	
	}
		#content form label {
			display: inline;
			float: left;
			width: 35%;
			padding: 0 5% 0 0;
			margin: 0;
		}
		#content form input, #content form select, #content form textarea {
		   margin: 0;
		   padding: 0;
		   width: 59.2%; /* CLOSE to full width; use pixels for the real thing */
		   font-size: 1em;
		   border: solid 1px #999;
		   border-bottom-color: #ccc;
		   background-color: #fff;
		   font-family: Arial, Tahoma, sans-serif;
		}
		#content form input {height: 1.3em}
		#content form select {width: 59.5%; height: 1.5em}  /* Selects are not the same as inputs */
		#content form textarea {height: 6em}
		
		/* Radio buttons */
		#content form input.radio, #content form input.radiobtn {
			text-align: left;
			width: 1.3em;
			margin: 0.3em 0.2em 0 0;
			padding: 0;
			border: none;
			background: none;
		}
		#content form .radiotext {
			margin: 0 1em 0 0;
		}
		
		/* Check boxes */
		#content form input.ckbx, #content form input.checkbox {
			text-align: left;
			width: 1.2em;
			margin: 0.3em 0.2em 0 0;
			padding: 0;
			border: none;
			background: none;
		}
		
	#content form p.indent { /* For buttons or text that need to align with inputs/selects */
		margin-left: 40%;
	}
	#content form p.xspa { /* "extra space after" */
		margin-bottom: 2.0em;
	}
	#content form .req, #content form .required {
		color: red;
	}
	#content form input:focus {
		/* however we want the focused field to look */
	}
	#content form input.submit, #content button { /* There are lots of default values to fix */
		border: 3px double #999;
		border-top-color: #ccc;
		border-left-color: #ccc;
		padding: 1px 2px;
		background: #f6f6f6;
		color: #555;
		font-size: 0.9em;
		font-weight: bold;
		height: auto;
		width: auto;
		cursor: pointer;
		font-family: inherit;
	}
	#content form input.submit:hover, #content button:hover { /* IE6 can't see these, too bad */
		color: #fff;
		background-color: #ff0000;
	}
	#content form input.submit:active, #content button:active { /* Button 'feedback' behavior */
		border: 3px double #ccc;
		border-top-color: #999;
		border-left-color: #999;
	}
	
/* =Headings
----------------------
	<h1> through <h6> styles
---------------------- */
h1 {}

h2 { color:#6dbe45; }
#tinymce h2, .article-content h2 { color:#6dbe45 !important; }

h3 { margin: 1em 0 0 0; 	font-size: 1.4em; }
#tinymce h3, .article-content h3 { margin: 1em 0 0 0 !important; font-size: 1.4em !important; }

h4 { color: #6dbe45; font-weight: bold; margin: 0 0 0.5em 0; }
#tinymce h4, .article-content h4 { color: #6dbe45 !important; font-weight: bold !important; margin: 0 0 0.5em 0 !important; }

.green, .green h4 { color: #769d16; }
#tinymce .green h4, .article-content .green h4 { color:#769d16 !important; }

.grey, .grey h4 { color: #374245; }
#tinymce .grey h4, .article-content .grey h4 { color:#374245 !important; }

h5 { color: #5f5f5f; font-weight: bold; font-size: 1.1em; margin-top: 20px; }
#tinymce h5, .article-content h5 { color: #5f5f5f !important; font-weight: bold !important; font-size: 1.1em !important; margin-top: 20px !important; }

h6 {}
#tinymce h6, .article-content h6 {  }

h4.replace { line-height:0; text-indent:-5000px; width:auto; }
#tinymce h4.replace , .article-content h4.replace  { line-height:0 !important; text-indent:-5000px !important; width:auto !important; }

h4.replace-commutercheck { background: url("/images/headers/commuter_check.gif") left top no-repeat; height: 23px; width: 166px; margin-bottom: 0.5em;}
#tinymce h4.replace-commutercheck, .article-content h4.replace-commutercheck { background: url("/images/headers/commuter_check.gif") left top no-repeat !important; height: 23px !important; width: 166px !important; margin-bottom: 0.5em !important; }

h4.replace-commutercheckoffice { background: url("/images/headers/commuter_check_office.gif") left top no-repeat; height: 32px; width: 237px; margin-bottom:0.5em; }
#tinymce h4.replace-commutercheckoffice, .article-content h4.replace-commutercheckoffice { background: url("/images/headers/commuter_check_office.gif") left top no-repeat !important; height: 32px !important; width: 237px !important; margin-bottom:0.5em !important; }

h4.replace-commutercheckdirect { background: url("/images/headers/commuter_check_direct.gif") left top no-repeat; height: 32px; width: 237px; margin-bottom:0.5em; }
#tinymce h4.replace-commutercheckdirect, .article-content h4.replace-commutercheckdirect { background: url("/images/headers/commuter_check_direct.gif") left top no-repeat !important; height: 32px !important; width: 237px !important; margin-bottom:0.5em !important; }

/* =Multicol
----------------------
	Multi-Column Content styles
	Notes:
		These columns should be used for text within #content.
		Values are in percentages to start off -- remember that the IE stylesheet has different values.
		If you need "pixel-perfect", you'll have to stop using percentages and use actual pixels
---------------------- */
.twoColumnLayout {
	float: left;
	clear: none;
	width: 440px;
	padding: 0;
}
	.twoColumnRight {
		margin-left: 40px;
	}
	.twoColumnLayout h3 {
		margin-top: 1.4em;
		margin-left: 20px;
		color: #1b3881;
		font-weight: bold;
		font-size: 1.4em;
	}
	.twoColumnLayout .twoColumnLayout {
		width: 180px;
		margin: 1em 0 0 20px;
		padding: 0;
	}
	.twoColumnLayout .twoColumnLayout p {
		font-size: 0.9em;
	}
	.twoColumnLayout .twoColumnRight {
		margin-left: 40px;
	}
	.twoColumnRight .twoColumnLayout {
		width: 200px;
	}
		.twoColumnRight .twoColumnLayout h4 {
			margin-top: 1em;
		}
		.twoColumnRight .twoColumnLayout p {
			line-height: 1.6em;
			width: 175px;
		}
	.twoColumnRight .twoColumnRight {
		margin-left: 20px;
	}
.threeColumnLayout {
	width: 30%;
	float: left;
	clear: none;
}
	.threeColumnLeft {
		margin-right: 4%;
	}
	.threeColumnMiddle {
		margin-right: 4%;
	}
	.threeColumnRight {
		margin-right: 0;
	}

/* =Content
----------------------
	Main Content styles
	Notes:
		
		Font-size is inherited, so some math will be necessary to size child elements up or down correctly
---------------------- */
#content {
	font-size: 1em; /* Inherits 12px from #container */
	padding-left: 0px;
	width: 900px;
	color:#5e544b;
}
	#content-main {
	}
	#content-news {
	}

	#content #left {
		float:left;
		margin-top:38px;
		width:400px;
		border:0px solid red;
		z-index:1;
	}
		#content #left.full {
			width:700px;
			margin-left:40px;
		}
		#content #left.sec {
			width:410px;
			margin-left:40px;
		}
		
		#content #left .title {
			margin-bottom:16px;
		}
		#content #left .intro {
			font-size:1.2em;
		}

	#content #middle {
		margin-left:30px;
		float:left;
		width:265px;
		border:0px solid red;
		z-index:1;
	}
		#content #middle.noscreen {
			padding-top:78px;
		}

	#content #ctas {
		position:absolute;
		margin-top:80px;
		right:0px;
		width:130px;
		border:0px solid red;
		z-index:1000;
	}
	#content #ctas a {
		display:block;
		margin-bottom:14px;
	}
	#content.content-sec #ctas {
		padding-top:36px;
	}

	#content #ctas-sec {
		float:right;
		margin-top:80px;
		right:0px;
		width:130px;
		border:0px solid red;
		z-index:1000;
	}
	#content #ctas-sec a {
		display:block;
		margin-bottom:14px;
	}
	#content.content-sec #ctas-sec {
		padding-top:36px;
	}
	
	#content #ctas-sec .subnav {
		float:left;
		background:#f0f5f2;
		width:128px;
		padding:0px 0px;
		margin-bottom:20px;
	}
	
		#content #ctas-sec .subnav img {
			float:left;	
		}
		
		#content #ctas-sec .subnav a {
			padding:10px 0px;
			margin:0 10px 0px 10px;
			font-size:1.1em;
			line-height:1em;
			text-decoration:none;
			border-bottom:1px solid #ccc;
			color:#5e544b;
		}
		
		#content #ctas-sec .subnav a:hover {
			color:#0281a7;
		}
		
		#content #ctas-sec .subnav a.first {
			padding-top:0px;
		}
		#content #ctas-sec .subnav a.last {
			border:0px;	
			padding-bottom:0px;
		}
		
		
		
		#content table.datatable,
		#tinymce table.datatable,
		.article-content table.datatable {
			border-top:2px solid #999;
			border-bottom:2px solid #999;
			margin-bottom:10px;
		}
		
			#content table.datatable tr.header,
			#tinymce table.datatable tr.header,
			.article-content table.datatable tr.header {
				background:#eee;
				font-size:14px;
			}
			#content table.datatable td,
			#tinymce table.datatable td,
			.article-content table.datatable td {
				border-top:1px solid #ccc;
				padding:4px 5px;
			}
		
		
		

.content {
	background: url("../images/headers/header_home.jpg") left top no-repeat;
	padding-top: 10px;
	padding-left: 6px;
	border:0px solid red;
}
.content img {
	border:0px solid red;
}
.content-employers {
	background: url("../images/headers/header_employers.jpg") left top no-repeat;
	padding-top: 185px;
}
.content-sec {
	position:relative;
	display:block;
	top:-26px;	
	z-index:1000;
}
.home-header-helper {
	display: block;
	height: 1%; /* fix IE7 display oddity */
	background: url("../images/bg/home_emp_bg.gif") left bottom no-repeat;
}
.two-header-column {
	width: 400px;
	padding: 0px 20px 0 20px;
	float: left;
	color: #FFFFFF;
	font-size: 1.25em;
	line-height: 1.5em;
}
	.two-header-column-right {
		margin-left: 40px;
	}
	.two-header-column h3.replace {
		display: none;
	}
	.two-header-column p {
		margin-bottom: 8px;
	}
	.two-header-column strong {
		font-size: 110%;
		line-height: 100%;
	}
	

.callout img {
	float:left;
	padding:0px;
	margin:0px;
}
.callout {
	background:#f0f5f2;	
	font-size:1em;
	width:257px;
	margin-bottom:20px;
	float:left;
}
.callout-content {
	margin:0px 14px;
}


.topline {
	border-top:1px solid #ddd;
	padding-top:10px;
}
	
#bottom {
	background: url("../images/bg/footer.jpg") center top repeat-x;
	min-height:300px;
	width:100%;
}
	#bottom p {
		margin:5px 0;
	}
	#bottom ul {
		margin:7px 0 0 0;
	}
	#bottom ul li {
		list-style:none;
		background:none;
		padding: 5px 0;
		border-bottom:1px solid #968c87 !important;
	}
	#bottom ul li .title {
		display:block;
	}
	#bottom ul li .category {
		display:none;
	}
	#bottom ul li .createdby {
		font-size:12px;
		color:#cac2be;
	}
	#bottom a {
		color:#fff;
		font-weight:bold;
	}
	#bottom #bcontainer {
		position: relative;
		margin: 0px auto;
		padding: 0;
		width: 900px;
		color: #fff;
		font-size: 1.2em; /* 12px (based on value from body) */
		text-align: left; /* Normalize alignment; unfix all browsers from fix in IE stylesheet */	
	}
		#bottom #bcontainer #bhelper {
			padding-top:30px;
			padding-bottom:30px;
			padding-left:40px;
		}
		#bottom .bleft {
			width:410px;
			float:left;
			border:0px solid red;
			font-size:1em;
		}
		#bottom .bmiddle {
			width:190px;
			float:left;
			margin-left:35px;
			border:0px solid red;
		}
		#bottom .bright {
			width:190px;
			float:left;
			margin-left:35px;
			border:0px solid red;
		}
	
	
	/***************************
	Tabs
	****************************/
	.tab_content {
	border: 0px solid #5e544b;
	padding-bottom: 15px;
	}
	 
	#tabContainer {
		padding-bottom: 0px;
		margin-bottom: 0px;
		display: block;
		float:left;
	}
	 
	#tabContainer div {
		margin-bottom: 0px;
		padding-bottom: 6px;
		padding-right: 12px;
		padding-left: 12px;
		font-weight: bold;
		margin-left: 0px;
		padding-top: 5px;
		font-size:14px;
		float: left;
	}
	 
	#tabContainer .tabs_on, #tabContainer .tabs_off {
		border-bottom-color: #5e544b;
		border-right-color: #5e544b;
		background-position: bottom;
		border-left-color: #5e544b;
		border-bottom-style: solid;
		background-color: #EFEFEF;
		border-right-style: solid;
		border-top-color: #5e544b;
		border-left-style: solid;
		border-bottom-width: 0px;
		border-right-width: 1px;
		border-top-style: solid;
		border-left-width: 0px;
		border-top-width: 0px;
		cursor: pointer;
	}
	#tabContainer .tabs_on {
		background-color: #dde9e4;
		color:#0281a7;
	}
	
	
	
	
.single-column {
	width: 613px;
}
.single-header-column {
	width: 573px;
	padding: 18px 20px 6px 20px;
	background: url("../images/bg/single_header_bg.jpg") left bottom no-repeat;
	float: left;
}
	.single-header-column p {
		color: #1b3881;
		font-size: 1.2em;
		line-height: 1.5em;
	}
.support-column {
	width: 280px;
	float: right;
	display: inline;
	margin: 25px 28px 0 0
}
	.support-column .cta {
		margin-bottom: 10px;
	}
.single-column .twoColumnLayout {
	width: 275px;
	margin: 10px 0 0 25px;
	padding: 15px 0px;
}
.single-column .twoColumnRight {
	margin-left: 30px;
}


#content ul {
	list-style: none;
	margin: 20px 0 20px 0;
}
#tinymce ul, .article-content ul {
	list-style: none !important;
	margin: 20px 0 20px 0 !important;
}
	#content ul li {
		list-style-type: none;
		padding: 0 0 0 23px;
		margin: 0.3em 1.3em;
		background: url("../images/bg/bullet.gif") left 0.3em no-repeat;
		line-height: 1.4em;
	}
	#tinymce ul li, .article-content ul li {
		list-style-type: none !important;
		padding: 0 0 0 23px !important;
		margin: 0.3em 1.3em !important;
		background: url("/images/bg/bullet.gif") left 0.3em no-repeat !important;
		line-height: 1.4em !important;
	}

.right-button {
	float: right;
}
.left-button {
	float: left;
}
.button-learnmore-red {
	width: 109px;
	height: 28px;
	display: block;
	background: url("../images/buttons/learn_more_red.gif") left top no-repeat;
	text-indent: -5000px;
	overflow: hidden;
	margin: 0 0 15px 0;
}
.button-learnmore-blue, .button-learnmore-grey {
	width: 78px;
	height: 22px;
	display: block;
	background: url("../images/buttons/learn_more_blue.gif") left top no-repeat;
	text-indent: -5000px;
	overflow: hidden;
	margin: 0 0 15px 0;
}
.button-learnmore-grey {
	background: url("../images/buttons/learn_more_grey.gif") left top no-repeat;
}

.home-solution-finder {
	background: url("../images/bg/home_form_bg.gif") left top no-repeat;
	height: 85px;
	padding: 20px 20px 0 20px;
	width: 399px;
	margin: 10px 0 0 0;
}
.secondary-solution-finder {
	background: url("../images/bg/secondary_form_bg.gif") left top no-repeat;
	height: 85px;
	padding: 20px 20px 0 20px;
	width: 570px;
	margin: 10px 0 20px 0;
}
	.solution-finder h3 {
		margin: 0;
	}
	.secondary-solution-finder h3 {
		color: #1b3881;
	}
	.solution-finder form {
		padding: 20px 0;
	}
		.solution-finder form label, .solution-finder form input, .solution-finder form select {
			width: auto;
			float: left;
			margin: 0 10px 0 0;
			padding: 2px 0 0 0;
		}
		.secondary-solution-finder form label {
			font-weight: bold;
			color: #5F5F5F;
		}
		.solution-finder form select {
			margin-right: 15px;
			padding: 0;
			width: 70px;
		}
		.secondary-solution-finder form select {
			margin-right: 30px;
		}
		.solution-finder form button.go {
			background: url("../images/buttons/go.gif") left top no-repeat;
			height: 22px;
			width: 40px;
			text-indent: -5000px;
			overflow: hidden;
			border: none;
			padding: 0;
			margin: 0;
		}
		
.plant {
	background: url("../images/bg/plant.gif") right bottom no-repeat;
}
.train {
	background: url("../images/bg/train.gif") right bottom no-repeat;
}
/* =Footer
----------------------
	Credit/footer styles: Usually the copyright/company info
	Notes:
---------------------- */
#siteinfo {
	border-top:1px solid #aaa;
	margin-top: 25px;
	width: 100%;
	color: #cac2be;
	font-size: 0.9em;
}
	#siteinfo-legal { /* Usually the copyright notice */
		width: 580px;
		/*height: 31px;*/
		margin: 12px 0 0 0px;
		line-height:1.7em;
		display: block;
		float: left;
	}
	#siteinfo-links { /* Usually Terms, Privacy and Accessibility */
		float: right;
		margin: 12px 0px 0 0; 
	}
		#siteinfo-links ul {
		}
			#siteinfo-links ul li {
				width: auto;
				float: left;
				padding: 0 10px;
				border-right:1px solid #aaa;
				border-bottom:none;
			}
			#siteinfo-links ul li.last {
				border: none;
				padding-right: 0px;
			}
			#siteinfo-links ul li a {
				color: #cac2be;
				text-decoration: none;
			}
	#siteinfo-image {
		float: right;
		width: 90px;
		height: 32px;
		margin: 26px 35px 0 0;
	}

/* =Uni
----------------------
	Universal styles: Styles that apply to elements found throughout the site
	Notes:
		The best example of this is the "clear" div
---------------------- */
.clear {clear: left;}
.clear-right {clear: right}
.clear-both {clear: both}
.clear-none {clear: none;}

.bold {font-weight: bold}
.em {font-style: italic}

div.hr {
	border-top: 1px solid #ccc;
	height: 1px;
	margin: 8px 0 8px 0;
	font-size: 0;
}

.fat {
	height: 12px;
}
.fat-pad {
	padding-top: 12px;
}
.thin {
	height: 5px;
}
.thin-pad {
	padding-top: 5px;
}
.header {
	font-weight: bold;
}
.align-right {
	text-align: right;
}
.hidden {
	display: none;
}



/*****************
  LIGHTBOX   
 *****************/
 
 #lightbox{
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	z-index: 1210;
	text-align: center;
	line-height: 0;
	}

#lightbox a img{ border: none; }

#outerImageContainer{
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	}

#imageContainer{
	padding: 10px;
	}

#loading{
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
	}
#hoverNav{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1210;
	}
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{
	width: 49%;
	height: 100%;
	background: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
	}
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }


#imageDataContainer{
	font: 12px Georgia, "Times New Roman", Times, serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	}

#imageData{
	padding:10px 10px;
	}
#imageData #imageDetails{ width: 70%; float: left; text-align: left; color:#777; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em;	}	
		
#overlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1200;
	width: 100%;
	height: 500px;
	background-color: #000;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
	}
	

.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
	}

.clear {
	clear:both;
}

* html>body .clearfix {
	display: inline-block; 
	width: 100%;
	}

* html .clearfix {
	/* Hides from IE-mac \*/
	height: 1%;
	/* End hide from IE-mac */
	}	
	
