/* ============================================================================== */
/* 360Office Furniture Style sheet 												  */
/* Initiated October 2006 																  */
/* Authored for 360Partners by Rick Ligas/PantheonDesign.com					  */
/* ============================================================================== */




/* ============================================================================== */
/* Table of Contents 
/* ============================================================================== */
/*	Setup (set all browsers' assumptions)
	Navigation
	Site structure 
		the pagewrapper
		general page structures
		
	Navigation
		general
		main links (upper right)
		
	Specific page styles
		usable on any page
		homepage 
		article pages
		form pages 
		suppliers pages
		portal pages
		help page 
		
	Tool tip system 
*/
/* ============================================================================== */




/* ============================================================================== */
/* Setup */
/* ============================================================================== */
* {
	margin:			0;
	border:			none;
	padding:		0;
	font-family:	Verdana, Arial, Helvetica, sans-serif;
	font-size:		12px;}
	/*	notice 12px set on font-size.... 
		get used to pixels, old school alignment. ;-)
		
		Also, be careful with this Universal selector. EVERYTHING, even a simple
		<span></span> will take on ALL the above characteristics. rl */




/* ================================================================================ */
/* Site structure																	*/
/* ================================================================================ */
/* Note that with a site design like this there is a less clear distinction  
   between structure and content. Consider this section GENERAL structures,  
   page level structures. But, there is a lot of "structure" in the specific 
   content sections below too. */

#pagewrapper {
	/* 	this keeps the page centered when the browser window is wide,  */
	/* 	and gives it a small margin all around */
	width:			882px;
	padding:		1em;
	margin-left:	auto;
	margin-right:	auto;}

	#pagewrapper					{position:relative;}
	a#supplierLoginInBanner 		{position:absolute; top:14px; left:780px; width:112px; font-size:11px; text-align:right; text-decoration:none;}
	a#supplierLoginInBanner:link	{color:rgb(22, 55, 118);}
	a#supplierLoginInBanner:visited	{color:rgb(22, 55, 118);}
	a#supplierLoginInBanner:focus	{color:rgb(22, 55, 118);}
	a#supplierLoginInBanner:hover	{color:rgb(228, 100, 21);}
	a#supplierLoginInBanner:active	{color:rgb(22, 55, 118);}


/* General page structure. These selectors effect every page on the site */

#logoanduppernav {
	/* 	Note that this selector is ONLY used on the home page. There is another 
		version, logoanduppernavcontent, for all other pages. */
	width:			882px;
	height:			62px;
	background:		url(logoanduppernav.jpg);}
	
#logoanduppernavcontent {
	/* this is used on content pages instead of the logoanduppernav */
	width:			882px;
	height:			66px;
	background:		url(logoanduppernav-secondary.jpg);}

#logolink {
	/* this is in this section because it appears on every page */
	/* it is what makes the "logo" clickable */
	/* there is a special version for the home page because of the banner size */
	float:			left;
	width:			330px;
	height:			46px;
	cursor:			pointer;}

#logolinkhomepage {
	float:			left;
	width:			330px;
	height:			62px;
	cursor:			pointer;}

#banner {
	/* 	banner is only used on the homepage. On all other pages 
		the banner is removed and the graphics are made 
		part of the contentwrappers */
	width:			882px;
	height:			140px;
	background:		url(banner.jpg);}

#contentwrapper {
	/* this is only used on the homepage. Content pages have their own wrapper */
	overflow:			auto;
	margin-bottom:		12px;
	width:				882px;}

#contentwrapper.hasSupplierWidget {
	margin-bottom:		0px;}

#contentlefthomepage {
	/*	the entire div's width must equal 662px */
	float:			left;
	/* this width has been tweaked for the 2up MO homepage! rl */
	width:			552px;
	padding-left:	110px;
	padding-right:	0px;
	padding-top:	18px;
	line-height:	1.75em;}
	
#contentleft {
	/*	the entire div's width must equal 662px */
	float:			left;
	width:			542px;
	padding-left:	110px;
	padding-right:	10px;
	padding-top:	18px;
	line-height:	1.75em;}
	
#contentright {
	float:			left;
	width:			219px;	/* why? still researching. rl */
	height:			298px;
	background:		url(contentright.jpg);}

div#contentright.hasSupplierWidget {height: 381px;}

#footer {
	/*	the entire div's width must equal 882px */
	clear:			both;
	width:			772px;
	padding-left:	110px;
	height:			20px;
	padding-top:	0px;
	color:			#999;
	font-size:		11px;}

	/* if the following declarations are not present then the font size of links in 
		the footer will default to 12px and we want 11px. Why? The Universal selector
		at the beginning of this document. */

	#footer p {font-size: 11px;}
	#footer a {font-size: 11px;color: #999;}


/* ================================================================================ */
/* End of site structure															*/
/* ================================================================================ */




/* ================================================================================ */
/* Navigation																		*/
/* ================================================================================ */
/* This system for handling the navigation tabs is very complex because of the 
	requirements: text links and rounded corners. It is easy to add or delete a 
	link but it is NOT easy to change the look or the interactions styles.
	Be careful. rl */


/* general use text link styles */

a:link {
	text-decoration:	none;
	color:				#0033FF;}

a:visited {
	text-decoration:	none;
	color:				#0033FF;}

a:focus {
	text-decoration:	underline;}
	
a:hover {
	text-decoration:	underline;
	color:				#0033FF;}

/* 
	you could have:
	a.someClass:hover {...}
	if you wanted some links to have special effects or colors rl;-)
*/

a:active {
	text-decoration:	underline;
	color:				#0033FF;}


/* special home page link styles */

a.homepage:link {
	text-decoration:	none;
	color:				#000;}

a.homepage:visited {
	text-decoration:	none;
	color:				#000;}

a.homepage:focus {
	text-decoration:	underline;}
	
a.homepage:hover {
	text-decoration:	underline;
	color:				#000;}

a.homepage:active {
	text-decoration:	underline;
	color:				#0033FF;}



/*	==========================================
	main links (the menu in the upper right) 
	- text with graphic backgrounds ug. RL 
	==========================================
*/

/* ===================== */
/* general menu settings */
/* ===================== */

#navigation ul {
	float: 				right;
	clear: 				both;
	/* 	width: 			100%; */
	/* margin-top:			18px; */
	/* 	The above rule sets the tricky vertical position of the main menu.
		It is overridden by js_CSS_overrides.js for specific browsers. */
	margin-right:		0px;
	margin-bottom:		0px;
	margin-left:		0px;
	padding:			0px;}

/* 	The following two rules set the tricky vertical position of the main menu.
	The homepage needs a different placement of the main menu and different 
	browsers need different measurements.
	These rules are overridden by js_CSS_overrides.js for specific browsers. */ 
		
#navigation ul.navHomePage {
	margin-top:			39px;
	/* 	Only used on the home page. */ }
	
#navigation ul.navOtherPage {
	margin-top:			24px;
	/* 	Used on every page except the home page. */ }

/*	If you are trying to adjust the menu position you need to 
	remember that these two rules are ONLY DEFAULTS. They "actual" rules
	are in the CSS broswer overrides files. 
	The defults are here in case the browser tests fail to figure out
	which browser the visitor is using and are set for a standards based browser. RL */

#navigation ul li { 
	display: 			inline;
	text-transform:		uppercase;}


/* ==================== */
/* leftmost tab styles  */
/* ==================== */

/* this is the leftmost tab when it is unselected */
#navigation ul li.leftmost a {
	float: 				left;
	background-image:	url(nav-background-left-unsel.jpg);
	background-repeat:	no-repeat;
	padding: 			0.5em 1.2em;
	color: 				#000;
	font-size:			11px;
	font-weight:		bold;
	text-decoration: 	none;}

/* this is the leftmost tab when it is  hovered */
#navigation ul li.leftmost a:hover {
	float: 				left;
	background-image:	url(nav-background-left-sel.jpg);
	background-repeat:	no-repeat;
	padding: 			0.5em 1.2em;
	color: 				#fff;
	text-decoration: 	none;}

/* this is the leftmost tab when it is selected */
#navigation ul li.leftmostyouarehere a {
	float: 				left;
	background-image:	url(nav-background-left-sel.jpg);
	background-repeat:	no-repeat;
	padding: 			0.5em 1.2em;
	color: 				#fff;
	font-size:			11px;
	text-decoration: 	none;}

/* this is the leftmost tab when it is selected AND hovered */
#navigation ul li.leftmostyouarehere a:hover {
	float: 				left;
	background-image:	url(nav-background-left-sel.jpg);
	background-repeat:	no-repeat;
	padding: 			0.5em 1.2em;
	color: 				#fff;
	text-decoration: 	none;}


/* ===================== */
/* rightmost tab styles  */
/* ===================== */

/* this is the rightmost tab when it is unselected */
#navigation ul li.rightmost a {
	float: 					left;
	
	background-image:		url(nav-background-right-unsel.jpg);
	background-repeat:		no-repeat;
	background-position:	top right;
	/*	the above setting positions the right edge of the graphic */
	padding: 				0.5em 1.2em;
	color: 					#000;
	font-size:				11px;
	font-weight:			bold;
	text-decoration: 		none;}

/* this is the rightmost tab when it is hovered */
#navigation ul li.rightmost a:hover {
	float: 					left;
	
	background-image:		url(nav-background-right-sel.jpg);
	background-repeat:		no-repeat;
	background-position:	top right;
	padding: 				0.5em 1.2em;
	color: 					#fff;
	text-decoration: 		none;}

/* this is the rightmost tab when it is selected */
#navigation ul li.rightmostyouarehere a {
	float: 					left;
	background-image:		url(nav-background-right-sel.jpg);
	background-repeat:		no-repeat;
	background-position:	top right;
	padding: 				0.5em 1.2em;
	color: 					#fff;
	font-size:				11px;
	text-decoration: 		none;}

/* this is the rightmost tab when it is selected AND hovered */
#navigation ul li.rightmostyouarehere a:hover {
	float: 					left;
	background-image:		url(nav-background-right-sel.jpg);
	background-repeat:		no-repeat;
	background-position:	top right;
	padding: 				0.5em 1.2em;
	color: 					#fff;
	text-decoration: 		none;}
/* the background positioning of the images is really something else isn't it? rl */


/* ================= */
/* middle tab styles */
/* ================= */

#navigation ul li a {
	float: 				left;
	background:			#ACD4FB;
	padding: 			0.5em 1.2em;
	color: 				#000;
	font-size:			11px;
	font-weight:		bold;
	text-decoration: 	none;}

#navigation ul li a:hover {
	background:			#3B81C9;
	color: 				#fff;}

#navigation ul li.middleyouarehere a {
	background:			#3B81C9;
	color: 				#fff;}

#navigation ul li.middleyouarehere a:hover {
	background:			#3B81C9;
	color: 				#fff;}

/* ================================================================================ */
/* end of navigation																*/
/* ================================================================================ */




/* ================================================================================ */
/* begin specific page styles.														*/
/* ================================================================================ */

/* ================================================================================ */
/* used on any page																	*/
/* ================================================================================ */

.helptag {
	cursor:				help;
	color:				#0033FF;
	font-weight:		normal;}

.emphasizedtext {
	font-weight:		bold;
	font-style:			italic;
	color:				#293999;}

.prespace {
	margin-top:			.75em;}

.postpace {
	margin-bottom:		.75em;}


/* ================================================================================ */
/* home page 																*/
/* ================================================================================ */

#banner p {
	margin-right:		15px;
	padding-top:		100px;
	text-align:			right;
	font-weight:		bold;
	font-size:			16px;}
	
#contentright h2 {
	margin-top:			45px;
	margin-right:		20px;
	text-align:			right;
	font-weight:		bold;
	font-size:			16px;}
	
#contentright h3 {
	margin-left:		38px;
	margin-right:		20px;
	margin-bottom:		27px;
	font-weight:		normal;
	font-size:			14px;}

ul.homepagesupplierslist {
	margin-top:			12px;
	margin-left:		22px;
	list-style-type:	none;}

ul.homepagesupplierslist li {
	background-image: 		url(bullet.gif);
	background-repeat: 		no-repeat;
	background-position:	0px 6px;
	padding-left:			14px;
	line-height:			175%;}

div.services {
	height:				69px;
	background-repeat:	no-repeat;
	margin-bottom:		9px;
	margin-right:		9px;}
	
	div#chairs {
		background-image:	url(divlette_5services_chairs.jpg);}
		
	div#desks {
		background-image:	url(divlette_5services_desks.jpg);}
	
	div#filing {
		background-image:	url(divlette_5services_filing.jpg);}
	
	div#tables {
		background-image:	url(divlette_5services_tables.jpg);}
	
	div#cubicles {
		background-image:	url(divlette_5services_cubicles.jpg);}
	
div.services h1 {
	margin-right:		1em;
	text-align:			right;}

div.services p {
	margin-right:		8px;
	margin-left:		86px;}

div.services img {
	float:				right;
	margin-top:			-22px;}

/* divlette selectors removed here RL */


/* ================================================================================ */
/* Article pages, also called content pages. 										*/
/* ================================================================================ */


#contentwrapperarticlepage {
	overflow:			auto;		/* makes the wrapper contain the floats */
	width:				882px;
	margin-bottom:		14px;		/* generate 25px from the bottom of the wrapper to the baseline of the first line in the footer */
	background-image:	url(contentpagebackground.jpg);
	background-repeat:	no-repeat;}

#contentwrapperarticlepage h1 {
	background:			#fff;
	margin-right: 		450px;
	/* 	the above 2 tweaks hide just enough of the gray underline. 
		Note that each content based page can override the margin-right
		to show a precise amount of the gray line and to
		prevent the title from wrapping. 
		EVERY PAGE REDEFINES THIS IN A STYLE BLOCK !!! */
	margin-left: 		110px;
	padding-top:		3px;
	font-size:			18px;}

#contentwrapperarticlepage h3 {
	margin-top:		2em;
	border-bottom:	1px solid #7F9DB9;}

#contentwrapperarticlepage h3.indexpage {
	/* this margin give the h3 some stand off from the Get Free Quotes box - rl */
	margin-right:	12px;}

#contentwrapperarticlepage p {
	margin-bottom:	.5em;}

#contentwrapperarticlepage p.indexpage {
	/* this margin give the p some stand off from the Get Free Quotes box - rl */
	margin-right:	12px;}

#contentwrapperarticlepage li {
	margin-left:	2em;}

.articlepageheadingaslink {
	margin:				0px;
	/* 	h4's have a margin on other pages
		and when they are used as links it needs to be removed. */ }
	
/* leftside content */

/* creates an EXpandble DIVlette, used as a table of contents for the article pages */

.exdivwrapper {
	float:				left;
	margin-right:		14px;
	margin-bottom:		4px;}

.exdivtop {
	background-image:	url(divlette_article_background_top.jpg);
	background-repeat:	no-repeat;}
	
.exdivtop h2 {
	margin-bottom:		8px;
	padding-top:		7px;
	padding-right:		16px;
	font-size:			16px;
	font-weight:		normal;
	text-align:			right;}
	
.exdivtop p {
	padding-bottom:		5px;
	padding-left:		15px;}

.exdivbottom {
	/* 	height:			43px; */
	height:				36px;
	padding-top:		7px;
	/* 	width:			219px; */
	width:				203px;
	padding-right:		16px;
	background-image:	url(divlette_article_background_bottom.jpg);
	background-repeat:	no-repeat;
	text-align:			right;
	line-height:		normal;}
	
p.articlenavigation {
	margin-top:			14px;
	margin-right:		30px;
	text-align:			right;}
	

/* rightside content article pages */

#contentrightarticlepage {
	/* formats the rightside "sidebar" on article pages when there is no Supplier widget */
	float:				left;
	width:				219px;
	padding-bottom:		20px;
	background-image:	url(contentrightarticlepage.jpg);
	background-repeat:	no-repeat;
	margin-top:			18px;}

#contentwrapperarticlepage.hasSupplierWidget #contentrightarticlepage {padding-bottom: 0px;}

.divlette_contentpageright {
	float:				left;
	background-image: 	url(divlette_article_right_background.jpg);
	/* the above image seems to be missing. Effect? rl */
	background-repeat: 	no-repeat;
	width:				219px;
	height:				229px;
	margin-right:		1em; }

#contentrightarticlepage h2 {
	margin-top:			12px;
	margin-right:		18px;
	margin-bottom:		12px;
	font-size:			16px;
	font-weight:		bold;
	text-align:			right;
	}

#contentrightarticlepage p {
	margin-right:		14px;
	margin-left:		22px;
	line-height:		21px;
	}

#contentrightarticlepage p img {
	float:				right;}

#contentrightarticlepage div#suppplierInfoWidget {margin-top: 50px;}



/* ================================================================================ */
/* form page IDs and classes 
	I really hope you like descendent selectors... rl								*/
/* ================================================================================ */


/* form page 1 styles (follows, in general, the html layout) ====================== */

#contentwrapperformpage {
	width:				882px;
	margin-bottom:		12px;		/* generate 25px from the bottom of the wrapper to the baseline of the first line in the footer */
	background-image:	url(contentpagebackground.jpg);
	background-repeat:	no-repeat;}

#contentwrapperformpage h1 {
	/* 	note that this duplicates the headline formatting 
		in #contentwrapperarticlepage h1 */
	background:			#fff;
	margin-right: 		450px;
	/* 	the above 2 tweaks hide just enough of the gray underline. 
		Note that each content based page can override the margin-right
		to show a precise amount of the gray line and to
		prevent the title from wrapping. */
	margin-left: 		110px;
	padding-top:		3px;
	font-size:			18px;}

#divlette_formpageheader {
	background-image: 	url(divlette_formpage.jpg);
	background-repeat: 	no-repeat;
	width:				556px;
	height:				134px;
	margin-top:			24px;
	margin-left:		106px;
	padding-top:		8px;
	padding-left:		19px;}

	#divlette_formpageheader h2 {
		font-size:			16px;
		font-weight:		bold;}
	
	#divlette_formpageheader ul {
		margin-top:			7px;
		margin-left:		20px;
		line-height:		22px;}
	
	#divlette_formpageheader p {
		margin-top:			8px;
		margin-left:		4px;}
	
#contentwrapperformpage form {
	width:				662px;
	margin-top:			4px;
	margin-left:		0px;
	padding-left:		0px;}

#blueliner {
	margin-left:		106px;
	padding-left:		20px;
	border-left: 		 1px solid #9DBFE4;}

#contentwrapperformpage form h2 {
	margin-bottom:		1em;
	font-size:			16px;
	font-weight:		bold;}

#contentwrapperformpage form h3 {
	margin-bottom:		1em;
	font-size:			12px;
	font-weight:		bold;}

#contentwrapperformpage form p {
	margin-bottom:		17px;}

#contentwrapperformpage form p.buyerquestion {
	margin-bottom:		1em;
	font-weight:		bold;}

.formatradiobuttons {
	margin-top:			-10px;
	margin-left:		60px;
	margin-bottom:		1em;
	line-height:		24px;}

.formatradiobuttons input {
	/* get some standoff from the radio button and its text */
	margin-right:		4px;}

#contentwrapperformpage form p textarea {
	/* this is used for the html textareas */
	width:				400px;
	margin-top:			6px;
	margin-left:		78px;
	padding:			3px;
	border:				1px solid #9DBFE4;}

.aspxtextarea {
	/* this is used to further format the aspx "textareas" */
	width:				400px;
	height:				43px;
	padding:			3px;
	border:				1px solid #9DBFE4;}

#contentwrapperformpage form select {
	width:				204px;
	margin-top:			8px;
	margin-left:		54px;
	border:				1px solid #9DBFE4;}

#contentwrapperformpage form div.formattextbox {
	margin-top:			6px;
	margin-left:		78px;
	margin-bottom:		12px;}

#contentwrapperformpage form div.formattextbox input {
	/* this sets a general use single line text box */
	width:				140px;
	padding:			3px;
	margin-bottom:		8px;
	border:				1px solid #9DBFE4;}

#contentwrapperformpage form div.formattextbox input.othertext {
	/* this sets a "other" single line text box */
	width:				260px;
	padding:			3px;
	margin-bottom:		8px;
	border:				1px solid #9DBFE4;}

#contentwrapperformpage form p.zipinfo {
	margin-left:		49px;}

#contentwrapperformpage form p.zipinfo input {
	width:				35px;
	margin-bottom:		3px;
	border:				1px solid #9DBFE4;}

div.onScreenHelpUnderInput {
	/*	formats the help text under an input like the zip code on page 1 of the forms.
		Like the name? It's pretty descriptive... RL */
	margin-top:			-3px;
	margin-left:		2px;
	color:				#999;
	line-height:		1.25em;}

.questionText {font-weight: bold;}

.txtOther {
	/* this sets an "other" single line text box when used after a list of radios */
	width:				241px;
	padding:			3px;
	margin-bottom:		8px;
	margin-left:		21px;
	border:				1px solid #9DBFE4;}
	
#txtZipCode {
/*	this sets a zip code single line text box when used on a services page
	it inherits formatting from txtOther above. Both are applied. The id is 
	automatically set by George on a txtZipCode input. */
	width:				354px;
	padding:			3px;
	margin-top:			3px;
	margin-left:		3px;
	border:				1px solid #9DBFE4;}
	
.numberinput {
	width:				3em;
	padding:			3px;
	border:				1px solid #9DBFE4;}

#contentwrapperformpage form p.additionalcomments textarea {
	/* the width is overridden in some of the css overrides files */
	width:				360px;
	height:				60px;
	margin-left:		63px;
	border:				1px solid #9DBFE4;}
	
#contentwrapperformpage form p.additionalcomments {
	margin-bottom:		0px;}

#formfooter {
	background-image: 	url(formfooterbackground.jpg);
	background-repeat: 	no-repeat;
	width:				550px;
	height:				28px;
	margin-left:		-21px;
	padding-top:		23px;
	text-align:			right;}

/* for the Submit style validation, validation that starts after the submit */
div#contentwrapperformpage.validationAfterSubmit #blueliner p 			{position:relative;}
div#contentwrapperformpage.validationAfterSubmit img.ValidationFeedback	{display:none;position:absolute;top:-3px;left:-29px;}
div#contentwrapperformpage.validationAfterSubmit span.ValidationNote	{display:none;position:absolute;top:0px;left:-86px;font-weight:normal;color:#0033FF}

/* for the Inline style validation, validation that works inline as the user fills out the form */
div#contentwrapperformpage.validationInline #blueliner p 				{position:relative;}
div#contentwrapperformpage.validationInline img.ValidationFeedback		{position:absolute;top:-3px;left:-29px;}
div#contentwrapperformpage.validationInline span.ValidationNote			{display:none;position:absolute;top:0px;left:-86px;font-weight:normal;color:#0033FF}



/* form page 2 styles (follows, in general, the html layout) ====================== */

/* tweak the little table that helps layout the 2nd form page */

#wrapperforformpage2 table {
	border-collapse:	collapse;}

	#wrapperforformpage2 td {
		padding:			2px;}
		
	.formpage2column1 {
		width:				120px;}
	
	.formpage2column2 {}

/* other page 2 rules */

#contentwrapperformpage form #wrapperforformpage2 p {
	/*	this id is used to adjust the vertical spacing on the 2nd page of forms */
	margin-bottom:		0em;}

#contentwrapperformpage form #wrapperforformpage2 div.formattextbox {
	/* this id is used to adjust the vertical spacing on the 2nd page of forms */
	margin-top:			4px;
	margin-bottom:		2px;}

#contentwrapperformpage form  #wrapperforformpage2 select {
	/* tweaked to be as wide as the zip code input */
	width:				200px;}

#contentwrapperformpage form  #wrapperforformpage2 input {
	/* Note that this WILL format the aspx controls.
		You might not think that the selector would select an aspx
		control and it won't - except that the aspx control is only
		seen by the SERVER and not the BROWSER. The browser sees
		an INPUT were the server sees the asp:TextBox. This can lead
		to a LOT OF CONFUSION so be very careful with your 
		aspx understanding. rl. */
	width:				241px;
	padding:			3px;
	border:				1px solid #9DBFE4;}

#contentwrapperformpage form  #wrapperforformpage2 input.pndigits {
	width:				40px;
	padding:			3px;
	border:				1px solid #9DBFE4;}

#contentwrapperformpage form  #wrapperforformpage2 input.zip {
	width:				192px;
	padding:			3px;
	border:				1px solid #9DBFE4;}

#contentwrapperformpage form  #wrapperforformpage2  td.zipTDadjustments {
	/* Used on page 2 of the forms to deal with the zip code label */
	vertical-align:		top;
	padding-top:		8px;}

div.onScreenHelpUnderInputPage2 {
	/*	Does the same as the similar rule for page 1 of the forms.
		Page 2 needs some minor adjustments. RL */
	margin-top:			3px;
	margin-left:		0px;
	color:				#999;
	line-height:		1.25em;}


img#privacyAssured {
	margin-right:		6px;
	vertical-align:		-7px;}

#contentwrapperformpage form #wrapperforformpage2 input#getQuotesNowBtn {border:none; width:159px; height:26px; }

img#BBBAccreditedBusinessSeal {position:absolute;top:80px;left:535px;}

/* validation for form page 2 */
div#wrapperforformpage2.validationAfterSubmitPage2 .validationMark {display:none;}

div#wrapperforformpage2.validationAfterSubmitPage2 {position:relative;} /* setup a positioning context for the validation marks */
div#wrapperforformpage2 table {
	table-layout:		fixed;
	border-collapse:	collapse;
	border-spacing:		0px;
	width:				680px;}
div#wrapperforformpage2 table td#col1 	{width:120px;}
div#wrapperforformpage2 select#StateId 	{width:249px; margin:0em;}
/* this is really specific, and it needs to be. */

/* careful there is an id = ValidationMark and a class = validationMark !!! */
img.validationMark 						{display:none;position:absolute;top:39px;left:-29px;}
span.ValidationHint						{display:none;color:#0033FF;}




/* ================================================================================ */
/* Suppliers pages																	*/
/* ================================================================================ */

td.suppliersignupheader {
	font-weight:		bold;}

td.suppliersignupcheckboxes {
	line-height:		1.5em;}




/* ================================================================================ */
/* Portal pages 																	*/
/* ================================================================================ */
/* Note that these two are currently clones of classes for article pages... rl		*/

#contentwrapperportalepage {
	width:				882px;
	background-image:	url(contentpagebackground.jpg);
	background-repeat:	no-repeat;
	}

#contentwrapperportalepage h1 {
	background:			#fff;
	margin-right: 		450px;
	/* 	the above 2 tweaks hide just enough of the gray underline. 
		Note that each content based page can override the margin-right
		to show a precise amount of the gray line and to
		prevent the title from wrapping. 
		EVERY PAGE REDEFINES THIS IN A STYLE BLOCK !!! */
	margin-left: 		110px;
	padding-top:		3px;
	font-size:			18px;}

#portalwrapper {
	margin-left:		103px;}



/* ================================================================================ */
/* Suppliers sidebar widget															*/
/* ================================================================================ */

	div#suppplierInfoWidget {margin-top: 36px;}
	
	a#supplierInfo			{
		display: 			block; 
		width: 				209px; 
		height:				153px; 
		padding-top: 		39px; 
		padding-left: 		10px;
		font-size:			12px;
		line-height:		18px;}
		
	a#supplierInfo:link		{background: url(Supplier-info-background.jpg) 	no-repeat top left; color: #163776;}
	a#supplierInfo:visited	{background: url(Supplier-info-background.jpg) 	no-repeat top left; color: #163776;}
	a#supplierInfo:focus	{background: url(Supplier-info-background.jpg)	no-repeat top left; color: #163776;}
	a#supplierInfo:hover	{background: url(Supplier-info-background.jpg)	no-repeat bottom left; color: #163776;}
	a#supplierInfo:active	{background: url(Supplier-info-background.jpg)	no-repeat top left; color: #163776;}
	



/* ================================================================================ */
/* Thank you page 																	*/
/* ================================================================================ */

	body.thankYou #contentwrapperarticlepage h1 {margin-right:0px;}

	div#contentleft.thankYou ul {
		margin-bottom:			.5em;
		list-style-type:		decimal;}

	div#contentleft.thankYou h3 {	/* not needed in the new design with the three column table. */
		margin-bottom:			1em;}

	div#contentleft.thankYou ul {
		margin-bottom:			24px;
		list-style-type:		disc;
		color:					#477ec4; }

	div#contentleft.thankYou ul li span {
		color:					#000; }

	table.thankYou	{
		table-layout: 		fixed; 
		border-collapse:	collapse; 
		border-spacing: 	0;
		margin-top:			16px;}

	table.thankYou th {width:150px;}

	table.thankYou td {
		padding-bottom:		10px;
		vertical-align:		top;
		font-size:			12px; 
		line-height:		16px; 
		text-align:			center;}

	table.thankYou td a img {margin-bottom:9px;} 

	table.thankYou tr.TRWithLists td {
		line-height:	24px; 
		text-align:		left;}

	div.thankYouPageSidebar {float:right; width:220px;}

	div#contentwrapperarticlepage div.thankYouPageSidebar h3 {
		border:			0;
		margin:			0;
		margin-top:		24px;
		background:		url(divlette_1_top.jpg) no-repeat;
		padding-right:	20px;
		font-size:		16px; 
		line-height:	33px;
		text-align:		right;}

	div#contentwrapperarticlepage div.thankYouPageSidebar p {
		background: 	url(divlette_1_bottom.jpg) left bottom no-repeat;
		padding:		10px 0px 20px 10px ;
		line-height:	24px;}

	div#contentwrapperarticlepage div.thankYouPageSidebar p span {color: white;}


/* ================================================================================ */
/* help page 																		*/
/* ================================================================================ */

h4 {
	margin-top:			1em;}

p.callToAction {
	background-color:	#f3f4f8;
	margin-top:			.75em;
	border:				1px solid #e7d9ed;
	padding:			.5em;}


/* ================================================================================ */
/* Tool tip system																	*/
/* ================================================================================ */

span.tip {
	background-color:	#eef0f4 }

div#tipDiv {
	position:			absolute; 
	visibility:			hidden; 
	left:				0; 
	top:				0; 
	z-index:			10000;
	width:				240px; 
	background-color:	#F9F9FF; 
	border:				1px solid #0033FF; 
	padding-top:		6px; 
	padding-right:		4px; 
	padding-bottom:		10px; 
	padding-left:		10px; 
	font-size:			11px; 
	line-height:		1.3;
	color:				#000; }

div#tipDiv div.img {
	text-align:			left; }
	
div#tipDiv div.txt {
	text-align:			left; 
	margin-top:			0px; }
	
/* for when the tooltip only displays text */
div#tipDiv div.otxt {
	text-align:			left;
	margin-top:			-4px; }
	
div#tipDiv .alt {
	text-align:			center; 
	color:				#336; 
	font-weight:		bolder;
	font-style:			italic; }



/* ================================================================================ */
/* end of styles																	*/
/* ================================================================================ */
