/* ================================================================================ */
/* 360OPartners Style sheet 														*/
/* 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 (page 1 and 2)
		suppliers pages
		portal pages
		help page 
		
	Tool tip system 
	
	note: tab stops set to 4 spaces for this file
	
*/
/* =============================================================================== */




/* ================================================================================ */
/* Setup 																			*/
/* ================================================================================ */
* {
	margin:			0;
	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;}


/* 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);}

#LogoPlaceholder {
	/*	This is a clickable transparent gif overlaid on the logo 
		inside the logoanduppernavcontent div */
	float:				left;
	margin-left:		12px;}

#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;	/* contain all the contents of the contentwrapper */
	width:				882px;
	margin-bottom:		10px;	/* 25px from bottom of this container to first baseline in the footer */}
	
#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);
	background-repeat:	no-repeat;}
	
#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;}

/* ================================================================================ */
/* 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;}


/* 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 a:link {
	font-size:			11px;
	color: 				#999;}
	
#footer a:visited {
	font-size:			11px;
	color:				#999;}



/*	==========================================
	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:			37px;
	/* 	Only used on the home page. */ }
	
#navigation ul.navOtherPage {
	margin-top:			22px;
	/* 	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. The default is set for IE. 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;}

img {
	border: 			none;}

/* ================================================================================ */
/* 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;}

#HomePageMainParagraph {
	position:			relative; /* setup a positioning context for the Get Quotes button */
	margin-right:		1.25em;
	margin-bottom:		0px;
	height:				106px;}

.HomePageGetQuotesBtn {
	position:			absolute;
	top:				60px;
	left:				392px;}

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%;}



/* Two services */
div.twoservices {
	float:					left;
	width:					267px;
	height:					166px;
	background-repeat:		no-repeat;
	margin-top:				6px;
	margin-bottom:			7px;	/* tweaked to be 16 pixels */
	margin-right:			9px;}
	
	div#service21, 
	div#service22 {
		background-image:	url(divlette_2services.jpg);}
		
	div.twoservices h1 {
		margin-top:			2px;
		margin-right:		1em;
		text-align:			right;}

	div.twoservices h1 a:link {
		color:				#333333;}

	div.twoservices p {
		margin-top:			6px;
		margin-right:		8px;
		margin-left:		12px;
		height:				108px;
		font-size:			12px;
		line-height:		150%;
		color:				#666666;}		
		
	div.twoservices .SmallServicesButton {
		margin-left:		144px;}		
		


/* Three services */
div.threeservices {
	float:					left;
	width:					174px;
	width:					174px;
	height:					174px;
	background-repeat:		no-repeat;
	margin-top:				-1px;
	margin-bottom:			7px;	/* tweaked to be 16 pixels */
	margin-right:			10px;}
	
	div#service31, 
	div#service32,
	div#service33 {
		background-image:	url(divlette_3services.jpg);}
		
	div.threeservices h1 {
		margin-top:			2px;
		margin-right:		1em;
		text-align:			right;}

	div.threeservices h1 a:link {
		color:				#333333;}

	div.threeservices p {
		margin-top:			6px;
		margin-right:		8px;
		margin-left:		12px;
		height:				117px;
		font-size:			12px;
		line-height:		150%;
		color:				#666666;}		

	div.threeservices .SmallServicesButton {
		margin-left:		52px;}		



/* Four services */
div.fourservices {
	float:					left;
	width:					130px;
	height:					174px;
	background-repeat:		no-repeat;
	margin-top:				7px;	/* tweaked to be 16 pixels */
	margin-right:			8px;}
	
	div#service41, 
	div#service42,
	div#service44,
	div#service43 {
		background-image:	url(divlette_4services.jpg);}
		
	div.fourservices h1 {
		margin-top:			2px;
		margin-right:		1em;
		text-align:			right;}

	div.fourservices h1 a:link {
		color:				#333333;}

	div.fourservices p {
		margin-top:			6px;
		margin-right:		12px;
		margin-left:		12px;
		height:				109px;
		font-size:			11px;
		line-height:		150%;
		color:				#666666;}		

	div.fourservices .SmallServicesButton {
		margin-left:		7px;}		



/* Five services */
div.fiveservices {
	height:					69px;
	background-repeat:		no-repeat;
	margin-bottom:			6px;	/* tweaked */
	margin-right:			9px;}
	
	div#service51 {
		background-image:	url(divlette_5services_1.jpg);}
		
	div#service52 {
		background-image:	url(divlette_5services_2.jpg);}
	
	div#service53 {
		background-image:	url(divlette_5services_3.jpg);}
	
	div#service54 {
		background-image:	url(divlette_5services_4.jpg);}
	
	div#service55 {
		background-image:	url(divlette_5services_5.jpg);}
	
	div#service56 {
		background-image:	url(divlette_5services_6.jpg);}
	
div.fiveservices h1 {
	margin-right:			1em;
	text-align:				right;}

div.fiveservices h1 a:link {
		color:				#333333;}

div.fiveservices p {
	margin-right:			8px;
	margin-left:			126px;}

div.fiveservices img {
	float:					right;
	margin-top:				-22px;}



/* ================================================================================ */
/* Article pages 																	*/
/* ================================================================================ */


#contentwrapperarticlepage {
	overflow:			auto;
	width:				882px;
	margin-bottom:		14px;	/* 25px from bottom of this container to first baseline in the footer */
	background-image:	url(contentpagebackground.jpg);
	background-repeat:	no-repeat;}

#contentwrapperarticlepage h1 {
	background:			#fff;
	margin-right: 		20px;
	/* 	the above 2 tweaks hide just enough of the gray underline. 
		The intent was to let the page authors manage this page by page 
		by overriding it in a style block in every page. */
	margin-left: 		110px;
	padding-top:		3px;
	font-size:			18px;}

#contentwrapperarticlepage h3 {
	margin-top:			2em;
	border-bottom:		1px solid #7F9DB9;}

#contentwrapperarticlepage h3.indexpage {
	/* this margin gives 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 gives 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 */
	float:				left;
	width:				219px;
	height:				298px;
	background-image:	url(contentrightarticlepage.jpg);
	background-repeat:	no-repeat;
	margin-top:			18px;}

#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;}




/* ================================================================================ */
/* 	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;
	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;}

.formatZipCode {
	margin-top:			-10px;
	margin-left:		60px;
	margin-bottom:		4px;
	line-height:		24px;}

#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:		80px;
	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. */
	margin-bottom:		1em;
	margin-left:		64px;
	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;
	margin-top:			3px;
	margin-left:		3px;}

.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;}


/* form page 2 styles ============================================================= */
/* (follows, in general, the html layout) ========================================= */

#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;}


/* ================================================================================ */
/* 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.
	Note also that the portal pages might not actually exist - they are in
	George's province. 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. 
		This is often overriden with inline styles on the h1 itself. */
	margin-left: 		110px;
	padding-top:		3px;
	font-size:			18px;}

#portalwrapper {
	margin-left:		103px;}



/* ================================================================================ */
/* 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																	*/
/* ================================================================================ */
