/* ---------------------
	Title: Transaction Resources, Inc. - Main Screen Stylesheet
	Filename: screen.css
	Author: One Pica Inc, Boston MA
	
	Table of Contents:
		Section Title (Searchstring)			Description
		
		General Styles(=General):				Set font sizes, Page backgrounds, etc
		Master #container Styles(=Master):		Placing, sizing, styling the main container
		Branding Styles(=Branding):				Logos, taglines, branding info
		Navigation Styles(=Nav):				The navigation bar; internal and external
		Content Styles(=Content):				The main content of the page
		Multi-Column Styles(=Multicol):			The cases where the content needs to be in multiple columns
		Credit/Footer Styles(=Footer):			The footer
		Universal Styles(=Uni):					Classes and elements that apply throughout ('clear', 'blue', etc)
	
	Common Color Table:
		White:								#FFFFFF;
		Blue: 								#006494;
		Grey:								#5F6062;
		Green:								#D4D95D;
	
	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
---------------------- */

/* =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
---------------------- */
html {
	padding: 0;
	margin: 0;
	font-size: 100%; /* ensures font consistency across browsers */
	height: 100%;
}
body {
	padding: 0;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0;
	font-size: 62.5%; /* correct value for IE6 */
	line-height: 1.5;
	background-color: #FFFFFF;
	text-align: center;/* fix IE5 bug that doesn't honor margin auto */
	font-family: Tahoma, sans-serif;
	height: 100%;
	width: 750px;
}
html > body {
	font-size: 10px; /* correct value for non-IE6 browsers */
}
p {
	padding: 0;
	margin: .5em 15px 1.5em 15px;
	color: #666;
	font-size: .95em;
}

INPUT, SELECT, TH, TD {font-size: 1em}
H1 { font: bold 1.25em Arial, sans-serif; margin: 0 0 0 12px; color: #006494;} /* Sub Section Main Title (sIFR) */
H2 { font-size: 1.75em; margin: 0; padding: .15em 0 0 15px; color: #FFF; width: 300px;} /* Industry Landing Main Title (sIFR) */
H3 { font-size: 1.1em; color: #B3CFDC; line-height: 20px; margin: 0; padding: .15em 0 0 1.3em; }  /* Industry Landing Quote */
H4 { font: bold 1.25em Arial, sans-serif; color: #006494; margin: 0 0 1em 0; padding: 5px 0 0 0; }
H5 { font: bold 1.25em Arial, sans-serif; color: #666; margin: 0 0 0 1em; padding: 6px 0 0 0; color: #FFFFFF; } 
H6 { font-size: 1.75em; margin: 0; padding: .15em 0 0 12px; color: #666666; width: 300px;} /* Secondary Page Main Title (sIFR) */

img, a img {
	border: none;
}

ul, ol{
	color: #666;
	font-size: 11px;
	list-style:none;
	margin:0 0 0 15px;
	padding:0;
}

ol li { 
	margin:0 0 0 20px !important;
	margin:0 0 0 23px;
	padding: 5px 0px; 
	list-style-type:decimal;
	list-style-position:outside;
	xbackground: url(../images/inline/li.gif) 0px 12px no-repeat;
	}
ul li { 
	margin:0;
	padding: 5px 10px; 
	list-style:none;
	background: url(../images/inline/li.gif) 0px 12px no-repeat;
	}

a { text-decoration: none; color: #006494; font-weight: bold; }
a:hover { color: #D4D95D; }

abbr, dfn a { 
	text-decoration: none;
	color:#333333;
	color: #006494;
	font-style: normal;
	font-weight: lighter;
	xborder-bottom: dotted 1px #666;
	background:url('../images/bg/dotted_underline.gif') 1px bottom repeat-x;
	padding: 3px 0px 1px 2px;
}

abbr, dfn a:hover { 
	color: #006494;
}



xform.smallform label { clear: left; margin: 5px 10px 5px 0; padding:0; border:1px solid blue;}
xform.smallform input { border: 1px solid #CCCCCC; margin: 4px 0 4px 0; width: 200px; padding: 4px; font: 10px Arial, sans-serif; color: #006494; }
xform.smallform textarea { border: 1px solid #CCCCCC; margin: 4px 0 4px 0; width: 200px; padding: 4px; font: 10px Arial, sans-serif; color: #006494;  }

/* =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;
	margin: 0;
	width: 750px;
	font-size: 1.2em; /* displayed at 12px */
	text-align: left; /* unfix all other browsers from the IE fix in the body tag above */
}

/* =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;
	xheight: 85px !important;
	height: 89px;
	width: 240px;
	margin: 0;
	padding: 0 0 0 5px;
	xborder:1px solid red;
}
#branding-logo {
	display: block;
	width: 235px;
	height: 89px;
	padding: 0px 0 0 0;
	margin: 0;
	background: url("../images/branding/logo.gif") left 0px no-repeat;
}
#branding-logo a {
	display: block;
	width: 235px;
	cursor: pointer;
	margin:0;
	padding:0;
}
#branding-logo h1 {
	/* uncomment this for Image Replacement */
	text-indent: -5000px;
	line-height: 10px;
	overflow: hidden;
	height: 89px;
	padding: 0;
	margin:0;
}
	
	/* Skip link(s), finalization pending */
		#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-info {
	}
#nonflashhome {
	padding:0;
	margin:0;
}
#nonflashhome img {
	padding:0;
	margin:0;
	float:left;
}
#nonflashhome a {
	display:block;
}
/* =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 {
	margin: 0;
	padding: 0;
}
	
/* -----  MAIN NAV ----- */
	#nav-main {
		height: 35px;
		xborder:1px solid red;
	}
	
	#nav-main ul {
		float: right;
		clear: right;
		margin: 11px 0px 0 5px;
		padding-right:5px;
		text-align: right;
		list-style: none;
		xheight: 25px;
		xborder:1px solid blue;
	}
		#nav-main li {
			list-style-type: none;
			padding: 0;
			margin: 0;
			float: left;
			display: block;
			background:none;
		}
		#nav-main li a {
/*			font: bold 14px Arial, sans-serif;
			padding:0 10px 10px 10px;*/
			line-height: 8px;
			font-size: 8px;
			padding: 0 9px;
			margin: 0;
			text-decoration: none;
			color: #5F6062;
			display: block;
			float: left;
			height: 11px;
			background-position: 9px 0px;
			background-repeat: no-repeat;
		}
		#nav-main a:hover {
			color: #006494;
			text-decoration: none;
			float: left;
			background-position: 9px -11px;
		}
		#nav_markets, #nav_services, #nav_about, #nav_resources, #nav_contact {
		}
		#nav_markets {
			width: 63px;
			background-image: url("../images/nav/markets.gif");
		}
		#nav_services {
			width: 63px;
			background-image: url("../images/nav/services.gif");
		}
		#nav_about {
			width: 72px;
			background-image: url("../images/nav/about.gif");
		}
		#nav_resources {
			width: 80px;
			background-image: url("../images/nav/resources.gif");
		}
		#nav_contact {
			width: 63px;
			background-image: url("../images/nav/contact.gif");
		}
	
	#header-img {
		margin: 0;
		padding 0;
		width: 750px;
	}
	
	.home {
		height: 210px;
	}

	.secondary {
		height: 117px;
		margin: 0;
	}

/* -----  SECONDARY NAV ----- */
	#nav-secondary {
		margin: 0;
		padding: 0;
		border-bottom: 1px solid #D4D95D;
		height: 35px;
		background-repeat:repeat-x;
	}
	#nav-secondary.home {
		background: url("../images/headers/subnav_bg.gif") no-repeat;
		float: left;
		font: bold 15px Arial, sans-serif;
		width: 750px;
		height: 52px;
		margin: 0;
	}
	.markets {
		background: url("../images/headers/induslanding_nav_bg.jpg") no-repeat;
		height: 35px;
		font: 12px Arial, sans-serif;
		}
	.markets ul {
		float: right;
	}
	.secondarypage {
		/* background: url("../images/headers/secondary_nav_bg.jpg"); */
		background-repeat: no-repeat;
		height: 35px;
		font: 12px Arial, sans-serif;
		color: #666666;
		}
	.secondarypage ul {
		float: right;
	}
	
	#nav-secondary ul {
		padding: 0;
		display: block;
		list-style: none;
		margin: 0;
		height: 35px;
	}
		#nav-secondary li { 
			list-style-type: none;
			background:none;
			display: block;
			float: left;
			margin: 0;
			padding: 0;
			height: 52px;
			clear: none;
			width: auto !important;
			width: 1px;
			white-space: nowrap;
		}
		
		#nav-secondary.markets li { 
			height: 35px;
			margin: 0;
		}
		
		#nav-secondary.secondarypage li { 
			height: 35px;
			margin: 0;
			color: #666666;
		}

		#nav-secondary li a {
			color: #FFF;
			text-decoration: none;
			margin-left: 18px;
			display: block;
			background-position: top center;
			height: 32px;
			padding-top: 20px;
		}
			#nav-secondary.markets li a {
			color: #FFF;
			text-decoration: none;
			display: block;
			margin-right: 10px;
			padding-top: 15px;
			height: 20px;
			xborder:1px solid yellow;
		}
		#nav-secondary.secondarypage li a {
			color: #666;
			text-decoration: none;
			display: block;
			margin-right: 10px;
			padding-top: 14px !important;
			padding-top: 15px;
			height: 20px;
		}
		
		#nav-secondary.secondarypage2 li a {
			margin-right: 5px;
		}
		
		#nav-secondary li a:hover {
			background: url("../images/headers/nav_over.gif") no-repeat;
			background-position: center 9px;
		}
	
/* -----  LOG IN BOX ----- */
	
	#nav-login-min {
		background: url("../images/headers/login_bg.gif") no-repeat;
		position: absolute;
		top: 0;
		left: 585px;
		height: 20px;
		width: 165px;
/*		margin-left: 585px; */
		font: bold 9px Arial, sans-serif;
		z-index:100;
	}
		#nav-login-min a {
			color: #FFF;
			text-decoration: none;
			height: 12px;
			width: 150px;
			display: block;
			padding: 4px 0 1px 15px;
		}
	
	#nav-login-max {
		background: url("../images/headers/login_hover_bg.gif") 0px -10px no-repeat;
		width: 383px;
		height: 90px;
		margin-left: 367px;
		top: -90px;
		position: absolute;
	}
		#nav-login-max form{
			padding:0; margin:0;
		}
		#nav-login-left {
		margin:0;
		padding:8px 8px 8px 12px;
		width: 171px;
		float: left;
		color: #FFF;
		font: 10px Arial, sans-serif;
		clear:none;
		}
			#nav-login-left a { text-decoration: none; color: #D4D95C; }
		
		#nav-login-right {
		margin: 0;
		padding:8px 8px 8px 12px;
		height: 70px;
		width: 171px;
		float: right;
		font: 9px Arial, sans-serif;
		}
			#nav-login-right form label {
				color: #FFFFFF;
				font: 9px Arial, sans-serif;
				width:45px;
				display:block;
				float:left;
				xborder:1px solid green;
				height: 15px !important;
				padding: 4px 0 0 0;
				margin: 3px;
			}
			#nav-login-right form input {
				font: 9px Arial, sans-serif;
				width:95px;
				height:18px;
				display:block;
				float:right;
				clear:right;
				padding:1px 0 0 5px !important;
				padding:0 0 0 5px;
			}
		#nav-login-right input {
			border: none;
			margin: 3px;
			width: 100px;
			height: 15px;
			border: 1px solid white;
		}
		#nav-login-left div, #nav-login-right div {
			float: left;
			clear: left;
			height: 55px;
			margin: 0;
			width: 100%;
		}
		#nav-login-left div a, #nav-login-right div a {
			display: inline;
			height: auto;
			float: none;
			margin: 0;
		}
		#nav-login-left a, #nav-login-right a {
			display: block;
			height: 19px;
			margin: 0;
			float: right;
			margin: 0;
		}
		#nav-login-left a img, #nav-login-right a img {
		}
	.email-input {
		border: none;
		width: 125px;
	}

/* =Content
----------------------
	Main Content styles
	Notes:
		font-size: 1em makes the text 10px but expandable in IE
		Remember: The font is inherited, so some math will be necessary to size children up or down correctly
---------------------- */
#content {
	font-size: 1em;
	margin: 0;
	width: 750px;
}
	#content-main {
		width: 750px;
		margin: 0;
	}
	
#content div.twoColumnLayoutLeft {
	width: 63%;
	float: left;
	clear: left;
	margin: 1em .5em 1em .5em;
	border:0px solid red;
}
#content div.twoColumnLayoutLeft h4{
	padding-left:12px;
}
#content div.twoColumnLayoutLeft .buttons{
	margin-left:10px;
	margin-bottom:10px;
}
#content div.twoColumnLayoutRight {
	width: 30%;
	float: right;
	clear: right;
	margin: 1.5em .5em 1em .5em;
}

#induslanding-main-ad {
	/*background: url("../images/headers/induslanding_main_ad_bg.jpg");*/
	background-repeat: no-repeat;
	background-color:#006494;
	height: auto !important;
	height:142px;
	min-height: 142px;
	margin: 0;
}

#right-content-box {
	width: 194px !important;
	width: 194px;
	float: right;
	margin: 15px 15px 0 5px !important;
	margin: 15px 8px 0 0;
	padding: 14px 15px 15px 15px;
	xborder:1px solid red;
}
#right-content-box h5 {
	font: bold 1.25em Arial, sans-serif; 
	color: #FFFFFF; 
	margin: 0; 
	padding: 0; 
}
#right-content-box p { 
	color: #FFF; 
	margin: 0 0 0 0; 
	padding: .25em 0 .5em 0; 
}
#right-content-box-gray {
	width: 224px;
	float: right;
	margin: 20px 15px 5px 0 !important;
	margin: 20px 7px 5px 0;
	padding: 0 0 0 0;
	background: url("../images/corners/rightcol_round_top.gif") no-repeat #e8e8e8;
	clear:right;
}
#right-content-box-gray h5 {
	font: bold 1.25em Arial, sans-serif; 
	color: #666; 
	margin: 0 0 0 1em; 
	padding: 12px 0 0 0; 
}
#right-content-box-gray h2 { font: bold 1.25em Arial, sans-serif; color: #666; margin: 0 0 0 1em; padding: 12px 0 0 0; color: #666666; } 

#right-content-box-gray p { color: #FFF; margin: 1em 1.5em 1em 1.5em; padding: 0; }

#right-content-box-gray .bottom { 
	width: 224px;
	height: 6px;
	padding:5px 0 0 0;
	background: url("../images/corners/rightcol_round_bottom.gif") bottom left no-repeat #e8e8e8;
}

#right-content-box-darkgray {
	width: 224px;
	float: right;
	margin: 7px 17px 15px 0 !important;
	margin: 7px 8px 15px 15px;
	padding: 7px 0 0 0;
	background: url("../images/corners/rightcol_round_top_dark.gif") no-repeat #D3D3D3;
	clear:right;
}
#right-content-box-darkgray h1 { font: bold 1.25em Arial, sans-serif; color: #666; margin: 0 0 0 1em; padding: 12px 0 0 0; color: #666666; background:none; } 
#right-content-box-darkgray h5 { color:#333333; }
#right-content-box-darkgray p { color: #666; margin: 1em 1.5em .5em 1.5em; padding: 0; }
#right-content-box-darkgray b { color: #666; }

#right-content-box-darkgray a {
	color:#999999;
	font-weight:normal;
}

#right-content-box-darkgray .bottom { 
	width: 224px;
	height: 6px;
	padding:5px 0 0 0;
	background: url("../images/corners/rightcol_round_bottom_dark.gif") bottom left no-repeat #D3D3D3;
}
	
#induslanding-casestudy {
	background: url("../images/headers/markets_under_bg.jpg") no-repeat bottom center;
	background-color: #E8E8E8;
	padding-top:8px;
}
.columnbox-left {
		width: 460px;
		float: left;
		margin: 5px 00px 0px 19px !important;
		margin: 0 00px 0px 9px;
		padding: 0;
		clear: left;
	}
.columnbox-left h5{
	width: 460px;
	margin: 0 0 10px 3px;
	color: #006494;
	padding-bottom:10px;
	background:url('../images/headers/large-divider.gif') bottom left repeat-x;
}
.columnbox-left p{
	padding: 0; 
	margin: 0px 0 10px 3px;
}
.columnbox-left h4{
	margin-bottom:5px;
	margin-left:3px;
	}
.columnbox-left div{
	margin-bottom:15px;
	margin-left:0px;
}
.columnbox-right {
	width: 100px;
	float: right;
	margin: 5px 23px 0 0px !important;
	margin: 0 15px 0 0px;
	padding: 0;
	border:1px solid red;
}

#email-article-box {
	background: url("../images/headers/email-bg.gif") no-repeat;
	height: 80px;
	width: 220px;
	margin: 0 0 0 84px;
	padding: 10px 0 0 10px;
	
}
/* =Footer
----------------------
	Credit/footer styles: Usually the copyright/company info
	Notes:
---------------------- */
#siteinfo {
	width: 750px;
	text-decoration: none;
	margin: 0;

}
	#siteinfo-legal {
		font: 9px/15px Arial, sans-serif;
		color: #999;
		float: left;
		margin-bottom: 100px;
	}
	#siteinfo-credits {
		font: 9px/15px Arial, sans-serif;
		color: #999;
		text-decoration: none;
		float: right;
	}
		#siteinfo-credits a {
		text-decoration: none;
		color: #999;
		}
		#siteinfo-credits a:hover {
		text-decoration: none;
		color: #006494;
		}
	
	#siteinfo-accessibility {
		font: 9px/15px Arial, sans-serif;
		color: #999;
		float: left;
		text-decoration: none;
	}

/* =Uni
----------------------
	Universal styles: Styles that apply to elements found throughout the siteT
	Notes:
		The best example of this is the "clear" div
---------------------- */
.clear {
	clear: both;
	font-size:0px;
	line-height:0;
}
.gray {
	color: #666;
}

.no-li {
	 margin: 0 0 0 15px; 
	 padding: 0; 
	 list-style:none;
	 background:none;
	 }
.no-li ul { 
	list-style: none; 
	margin: 0; 
	padding: 0; 
	}
.no-li li { 
	list-style: none; 
	margin: 0; 
	padding: 0;
	background:none;
	}

.content-divider { 
	background: url("../images/headers/large-divider.gif") repeat-x;
	height: 1px;
	line-height:1px;
	font-size:1px;
	margin: 10px 0 10px 15px !important;
	margin: 3px 0 10px 15px;
}

.input-label {
	font: 10px Arial, sans-serif;
	color: #FFFFFF;
}
#definition {
	position: absolute;
	top: 10px;
	left: 10px;
	width:228px;
	display: none;
	z-index: 100;
}
#definition .boxtop {
	background:url('../images/inline/glossary_box_top.png') top left no-repeat !important;
	background: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/inline/glossary_box_top.png', sizingMethod='image');
	height:7px;
	line-height:1px;
	font-size:1px;
	/*
	float: left;
	clear: left;
	width:228px;
	*/
}
#definition .boxbottom {
	background:url('../images/inline/glossary_box_bottom.png') top left no-repeat !important;
	background: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/inline/glossary_box_bottom.png', sizingMethod='image');
	height:24px;
	clear: left;
	/*
	float: left;
	clear: left;
	width:228px;
	*/
}
#definition .middle-right {
}
#definition .content {
	padding:2px 10px 2px 15px;
	display: block;
/*	height: 146px; */
	width: 198px;
	float: left;
	background: url('../images/inline/glossary_box_color.png') top left repeat;
}
#definition #pngHelper {
/*
	background:url('../images/inline/glossary_box_mid.png') top left repeat-y !important;
	background: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/inline/glossary_box_mid.png', sizingMethod='scale');
	width:228px;
*/
	width: 5px;
	display: block;
	background:url('../images/inline/glossary_box_midright.png') top left repeat-y !important;
	background: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/inline/glossary_box_midright.png', sizingMethod='scale');
/*	height: 150px; */
	float: left;
}
#definition .line {
	background:url('../images/inline/glossary_dottedline.gif') repeat-x;
	height:1px;
	padding:0 0 0 0;
	margin:2px 0 5px 0;
	line-height:1px;
	font-size:1px;
}
#definition p {
	padding:0px 0px 5px 0px;
	margin:0px;
	color:#444444;
	display: block;
}
#definition p b {
	color:#FFFFFF;
}
/*
#definition p a {
	color:#CCCCCC;
	font-size:11px;
	font-weight:normal;
	background:url('../images/icons/arrowbutton.gif') 0 2px no-repeat;
	padding:0 0 0 15px;
}
#definition p a:hover {
	color:#FFFFFF;
}
*/
#error {
	width:445px;
	margin:12px;
	padding:0;
	background: url("../images/corners/error_round_top.gif") no-repeat #D9775D;
}
#error .bottom { 
	width: 445px;
	height: 6px;
	background: url("../images/corners/error_round_bottom.gif") bottom left no-repeat #D9775D;
}
#confirmation {
	width:445px;
	margin:12px;
	padding:0;
	background: url("../images/corners/confirm_round_top.gif") no-repeat #D4D95D;
}
#confirmation p, #error p{
	color:#333333;
	font-weight:bold;
	text-align:center;
	padding:12px 12px 5px 15px !important;
	padding:12px 12px 0px 15px;
	margin:0;
}
#confirmation .bottom { 
	width: 445px;
	height: 6px;
	background: url("../images/corners/confirm_round_bottom.gif") bottom left no-repeat #D4D95D;
}
.required {
	color:#FF0000;
	}
