/*
	I. Table Of Contents
	II. Font
	1. Reset
	2. Tables
	3. Headings
	4. Anchors
	5. Form Elements
	6. General Classes
	7. Template & Layout
	8. Print
	9. Handheld
	10. Aural

Sizing in EMs
[If] Body = Parent .75em [Then] Number/12px = 0.0EMs
	11px      .9em
	12px     1.0em
	13px     1.1em
	14px     1.2em
	15px     1.25em
	16px     1.3em
	19px     1.6em

CSS References
	http://www.w3.org/TR/css3-selectors/#selectors
	http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(CSS)
	http://developer.mozilla.org/en/docs/Writing_Efficient_CSS
	http://www.dustindiaz.com/css-shorthand/
	http://www.tanfa.co.uk/css/examples/

Browser Hacks
	http://www.nealgrosskopf.com/tech/thread.asp?pid=20

IE Bugs
	http://css-class.com/articles/explorer/guillotine/
	http://www.satzansatz.de/cssd/onhavinglayout.html
	http://csscreator.com/node/472 - Fixes browser viewport resize and misaligned background images due to odd numbered width - !=IE6 - border-left: 1px solid transparent; 
	http://jszen.blogspot.com/2005/04/ie-bold-text-opacity-problem.html
*/



/****************************************************************
 II. Font
****************************************************************/
@font-face
{
font-family: MyriadPro;
src: url('/files/font/MyriadPro-Bold.otf');
font-weight: bold;
}



/****************************************************************
 1. Reset  -  http://tantek.com/log/2004/undohtml.css  -  http://meyerweb.com/eric/tools/css/reset/
****************************************************************/
html, body, h1, h2, h3, h4, h5, h6, img, blockquote, q, table, thead, tbody, tfoot, caption, th, tr, td, a, form, input, textarea, fieldset, pre
{ margin: 0px; padding: 0px; }

address { font-style: normal; }
acronym, abbr { border-bottom: 1px #000 dashed; cursor: help; }
ins { text-decoration: none; }

a img, img { border: none; }
a { text-decoration: none; }
img
{
display: block; /* http://developer.mozilla.org/en/docs/Images,_Tables,_and_Mysterious_Gaps */
-ms-interpolation-mode: bicubic; /* http://css-tricks.com/ie-fix-bicubic-scaling-for-images/ */
}

ul, ol, p, blockquote, code
{
margin-top: 1em;
margin-bottom: 1em;
}

q {	quotes: none; }
q:before, q:after { content: ""; }



/****************************************************************
 2. Tables
****************************************************************/
table
{
border: 1px solid #bfdbee;
border-collapse: collapse;
border-spacing: 0px;
width: 100%;
}

td, th
{
border: 1px solid #bfdbee;
empty-cells: show;
margin: 0px;
padding: .5em;
vertical-align: top;
}

th
{
background: #d4e7f4;
font-weight: bold;
text-align: center;
}

caption
{
background: #147cc1;
color: #fff;
font-weight: bold;
margin-left: -1px;
padding: .5em;
}

/* table tr:nth-child(even) table tr:nth-child(odd) */
.odd td { background: #fff; }
.even td { background: #f2f7fb; }



/****************************************************************
 3. Headings
****************************************************************/
h1 { padding-top: 9px; }

h1 a
{
background: url(/files/images/template/logo.png) no-repeat left top;
display: block;
height: 61px;
width: 115px;
margin-left:28px;
margin-top:3px;
}
h1 span { display: none; }

#nav h2 { display: none; }

#content h2
{
color: #147cc1;
font-family: MyriadPro, "Myriad Pro", Tahoma, san-serif;
font-size: 1.8em;
}

#content h2, #content h3, #content h4 { margin: 12px 0px; line-height: 1em; }

#content h3
{
color: #147cc1;
font-family: MyriadPro, "Myriad Pro", Tahoma, san-serif;
font-size: 1.3em;
}

#content h4
{
color: #444;
font-family: MyriadPro, "Myriad Pro", Tahoma, san-serif;
font-size: 1.1em;
}



/****************************************************************
 4. Anchors - Link - Visited - Hover - Focus - Active
****************************************************************/
#content a { text-decoration: underline; }
a:link { color: #147cc1; }
a:visited {color: #147cc1; }
a:hover { color: #0f5d92; }
a:focus { color: #147cc1; }
a:active { color: #147cc1; }
*[accesskey]:focus { outline: 1px solid #aaa; }

/* http://www.famfamfam.com/lab/icons/silk/ */
#content a[target="_blank"] { background: url(/files/images/icons/window.png) no-repeat right top; padding-right: 19px; }
#content a[href^="mailto:"] { background: url(/files/images/icons/email.png) no-repeat right top; padding-right: 19px; }
#content a[href$=".pdf"] { background: url(/files/images/icons/pdf.png) no-repeat right top; padding-right: 19px; }
#content a[href$=".doc"] { background: url(/files/images/icons/doc.png) no-repeat right top; padding-right: 17px; }
#content a[href$=".ppt"]{ background: url(/files/images/icons/ppt.png) no-repeat right top; padding-right: 17px; }
#content a[href$=".xls"]{ background: url(/files/images/icons/xls.png) no-repeat right top; padding-right: 17px; }



/****************************************************************
 5. Form Elements - http://www.456bereastreet.com/archive/200410/styling_even_more_form_controls/
****************************************************************/
fieldset
{
border: 1px solid #ccc;
padding: 10px;
}

legend
{
color: #147cc1;
font-weight: bold;
}

label { font-weight: bold; }

input + label { font-weight: normal; padding-left: 3px; }

textarea
{
line-height: 2.25em;
overflow-y: auto;
resize: both;
}

button
{
line-height: 1em;
overflow: visible;
padding: 4px 5px;
width: auto; /* http://www.viget.com/inspire/comments/styling-the-button-element-in-internet-explorer/ */
}

select, textarea, input, button
{
color: #444;
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
outline-width: 0px; /* Removes mac outline */
}

textarea,
input[type="text"],
input[type="password"]
{ border: 1px solid #ccc; padding: 4px; }

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus
{ border: 1px solid #aaa; }



/****************************************************************
 6. General Classes
****************************************************************/
.top { vertical-align: top; }
.bottom { vertical-align: bottom; }
.middle { vertical-align: middle; }
.sub { vertical-align: sub; }
.sup { vertical-align: super; }

.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }
.justify { text-align: justify; }
.distribute { text-justify: distribute; }

.smallcaps { font-variant: small-caps; }
.b { font-weight: bold; }
.i { font-style: italic; }
.u { text-decoration: underline; }
.o { text-decoration: overline; }
.s { text-decoration: line-through; }
.su { text-decoration: line-through underline; }

.ucase { text-transform: capitalize; }
.lowercase { text-transform: lowercase; }
.uppercase { text-transform: uppercase; }

.slant { font-style: oblique; } /* http://usabletype.com/css/font/styles/ */
.indent { text-indent: 1em; }
.wrap { word-wrap: break-word; white-space: normal; }
.pre { white-space: pre; }
.clear { clear: both; }

.block { display: block; }
.inline { display: inline; }
.none { display: none; }
.visible { visibility: visible; }
.hidden { visibility: hidden; }
.collapse { visibility: collapse; }

.circle { list-style-type: circle; }
.disc { list-style-type: disc; }

.dropcap:first-letter
{
color: #666;
float: left;
font-family: "Times New Roman", Times, serif;
font-size: 4em;
font-weight: bold;
margin: 0px 0px 0px 0px;
padding: 10px 10px 10px 0px;
text-transform: uppercase;
}

.semitransparent { opacity: 0.75; }

ul.collapse
{
display: inline;
list-style-type: none;
margin: 0px;
padding: 0px;
}
ul.collapse li { display: inline; }

.hr
{
border-bottom: 1px solid #ccc;
height: 1px;
margin: 1em 0em;
text-align: center;
width: 100%;
}
hr { display: none; }

blockquote p { padding-left: 40px; }

blockquote p:before
{
color: #147cc1;
content: '\201C'; /* http://monc.se/kitchen/129/rendering-quotes-with-css */
font-family: Arial, Helvetica, sans-serif;
font-size: 6em;
font-weight: bold;
line-height: 0em;
margin-left: -40px;
margin-right: 5px;
vertical-align: bottom;
}

del { text-decoration: line-through; }

ins { font-style: italic; }
ins:before { content: "("; }
ins:after { content: ")" }

/* Pseudo Elements  */
::-moz-selection
{
background: #147cc1;
color: #fff;
}

::selection
{
background: #147cc1;
color: #fff;
}


/****************************************************************
 7. Template & Layout
****************************************************************/
html, body { height: 100%; }

html
{
font-size: 100%; /* http://www.alistapart.com/articles/howtosizetextincss */
overflow-y: scroll; /* http://webdevel.blogspot.com/2007/05/controlling-browser-scrollbars.html */
}

body
{
color: #444;
font-family: Arial, Helvetica, sans-serif;
font-size: .75em; /* http://clagnut.com/blog/348/#c790 */
text-align: center; /* center things in <= IE6 */
vertical-align: baseline;
}

/* http://stackoverflow.com/questions/1255438/pin-image-background-to-bottom-of-document-in-short-and-long-documents */
#wrapper
{
min-height: 100%;
}

#container
{
margin: 0px auto;
text-align: left;
width: 950px;
padding: 0px 8px;
background: url(/files/images/template/shadow_sides.png) repeat-y;
}

#accessibility { display: none; }

#header
{
position:relative;
height: 70px;
}

#nav
{
background: url(/files/images/template/nav_bg.jpg) repeat-x left top;
height: 64px;
padding: 0px 40px;
}

#nav ul
{
display: block;
list-style-type: none;
margin: 0px;
padding: 0px;
}

#nav a[href^="#"] { cursor: default; }

/* Top Level Navigation */
#nav ul a.tln
{
color: #fff !important; /* @IE6 */
display: block;
font-size: 12px;
font-weight: bold;
height: 26px;
line-height: 26px;
padding: 5px 28px 8px;
}

#nav #home a:hover, #nav #home a.selected, #nav #home ul:hover a.tln { 
background: url(/files/images/template/nav_bg_r1_c1.png) no-repeat 0px -3px;
padding-bottom:30px;
}
#nav #our-company a:hover, #nav #our-company a.selected, #nav #our-company ul:hover a.tln { 
background: url(/files/images/template/nav-bg_r1_c2.png) no-repeat 0px -2px;
padding-bottom:30px;
}
#nav #investors a.tln { 
padding-bottom:12px;
}
#nav #investors a:hover, #nav #investors a.selected, #nav #investors ul:hover a.tln { 
background: url(/files/images/template/nav-bg_r1_c3.png) no-repeat 0px -2px;
padding-bottom:12px;
}
#nav #news a:hover, #nav #news a.selected, #nav #news ul:hover a.tln { 
background: url(/files/images/template/nav-bg_r1_c4.png) no-repeat 0px -2px;
padding-bottom:30px;
}
#nav #news { width:89px;}
#nav #careers { width:105px;}

#nav #careers a:hover, #nav #careers a.selected, #nav #careers ul:hover a.tln { 
background: url(/files/images/template/nav-bg_r1_c5.png) no-repeat 0px -2px;
padding-bottom:8px;
}
#nav #my-loans a:hover, #nav #my-loans a.selected, #nav #my-loans ul:hover a.tln { 
background: url(/files/images/template/nav-bg_r1_c6.png) no-repeat 0px -2px;
padding-bottom:30px;
}
#nav #extranet a:hover, #nav #extranet a.selected, #nav #extranet ul:hover a.tln { 
background: url(/files/images/template/nav-bg_r1_c7.png) no-repeat 0px -2px;
padding-bottom:30px;
}
#nav #investors ul li a:hover, #nav #careers ul li a:hover { 
background-color: #fff;
color: #147CC1;
padding: 7px 6px;
background-image:none;
border-top:0px;
}
#nav #investors ul li a, #nav #careers ul li a { 
border-top:0px;
}
#nav #investors ul li a.haschildren:hover, #nav #careers ul li a.haschildren:hover { 
background-color: #fff;
background-image: url(http://comlaundrydev.n-s.com/files/images/template/nav_arrows.gif);
background-position: 99% -28px;
background-repeat: no-repeat;
color: #147CC1;
padding: 7px 6px;
}

#nav ul ul a
{
background: #f6f6f6;
border-width: 1px 1px 1px 0px;
border-color: #ccc;
border-style: solid;
color: #147cc1;
display: block;
font-weight: bold;
font-size: .9em;
padding: 7px 6px;
}

#nav ul ul a:hover { background: #fff; }

/* Persistent flyouts - default */
#nav a.haschildren,
#nav li:hover li a.haschildren,
#nav li li:hover li a.haschildren,
#nav li li li:hover li a.haschildren,
#nav li li li li:hover li a.haschildren
{
background-color: #f6f6f6;
background-image: url(/files/images/template/nav_arrows.gif);
background-position: 99% 0px;
background-repeat: no-repeat;
color: #147cc1;
}

/* Persistent flyouts - hover */
#nav a:hover,
#nav li:hover a.haschildren,
#nav li li:hover a.haschildren,
#nav li li li:hover a.haschildren,
#nav li li li li:hover a.haschildren
{
background-color: #fff;
background-position: 99% -28px;
color: #147cc1;
}

#nav ul.first-child a { border-left-width: 1px; }
#nav ul ul a { border-width: 0px 1px 1px 1px; }
#nav ul ul ul li.first-child a { border-top-width: 1px; }

/* Faux Border */
#nav ul ul .first-child ul li.first-child a { border-top-color: #10659e; }

/* Extra Level Code
#nav ul ul ul li.first-child ul a { border-top-width: 0px; }
#nav ul ul ul li.first-child ul li.first-child a { border-top: 1px solid #ccc; }
*/

#nav li { position: relative;z-index:5000; }

#nav ul
{
float: left;
list-style-type: none;
margin: 0px;
padding: 0px;
}

#nav ul ul
{
padding: 0px 50px 50px 0px;
position: absolute;
left: 0px;
width: 176px;
z-index: 500;
}

#nav ul ul ul
{
position: absolute;
top: -1px;
left: 175px;
}

#nav ul ul ul ul { top: 0px; }

#nav ul ul,
#nav ul li:hover ul ul,
#nav ul ul li:hover ul ul
{ display: none; }

#nav ul li:hover ul,
#nav ul ul li:hover ul,
#nav ul ul ul li:hover ul
{ display: block; }

#content
{
position:relative;
background: url(/files/images/template/sidebar_bg.jpg) repeat-y right top;
background-color: #fff;
letter-spacing: normal;
word-spacing: normal;
line-height: 2em;
text-align: justify;
padding-bottom: 20px;
padding-left: 30px;
width: 920px;
/* http://www.dustindiaz.com/min-height-fast-hack/ */
min-height: 500px;
height: auto !important; 
height: 500px;
}

.hide-aside #content { float: none; width: 920px; }
.hide-aside #aside { display: none; }
.hide-aside #pagetitle { display:none; }

#crumbs
{
font-size: .9em;
list-style-type: none;
margin: 0px;
padding: 0px;
height: 27px;
width: 565px;
display:block;
}

#crumbs li
{
color: #333;
float: left;
display: block;
margin-right: 5px;
}

#content #crumbs a { color: #777; }

#copy {
  width:460px;
  margin-left:200px;
  min-height:540px;
  height:auto !important;
  height:540px;
}

#news-bar {
  position:absolute;
  top:10px;
  right:20px;
  width:190px;
}

#news-bar ul li {
  list-style-image:url(/files/images/template/news_bullet.png);
  text-align:left;
  line-height:1.3em;
  margin-bottom:10px;
  margin-left:15px;
}

#news-bar ul {
  -webkit-padding-start: 0px;
  padding-left:0px;
}

#news-bar ul li .headline {
  font-weight:bold;
  text-decoration:underline;
  display:block;
  margin-bottom:3px;
  color:#333;
}

#aside
{
position:absolute;
width: 160px;
}

	#aside ul
	{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	}

#search
{
top:25px;
right:130px;
position: absolute;
}

	#search label { display: none; }

	#search-input
	{
	position:absolute;
	top:13px;
	border: 2px solid #82c2c2;
	color: #999;
	font-size: 1.15em;
	width: 120px;
	height:12px;
	}

#search-input:focus { outline: none; }

	#search-button
	{
	position:relative;
	top:6px;
	right:-120px;
	}

#brands { 
  margin-top:50px;
  position: relative; 
  background: url(/files/images/template/brand_sidebar.png) repeat-x left top;
  height:287px;
  width:139px;
  padding-top:60px;
  padding-left:30px;
}

  #brands a { 
    font-family: Verdana;
    font-size: 15px;
    text-decoration:none;
  }

	#ptabs
	{
	overflow: auto;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	}

  
		#ptabs li { float: left; } /* IF IE6 */

			#ptabs a
			{
			border: 1px solid #e0e0e0;
			color: #888;
			display: block;
			font-size: .9em;
			font-weight: bold;
			height: 24px; /* IF IE6 */
			line-height: 24px; /* IF IE6 */
			margin-right: 7px;
			padding: 0px 12px; /* IF IE6 */
			}

			#ptabs .selected a, #ptabs a:hover
			{
			border-color: #ccc #ccc #fff #ccc;
			color: #333;
			}

			#ptabs a:focus { outline: 0px; }

	#tabs
	{
	
	border: 1px solid #ccc;
	position: absolute;
	top: 25px;
	left: 0px;
	width: 160px;
	z-index: 1;
	}

	#tab-worldwide { display: none; }
	#tab-usa { display: block; }

		#tabs li { margin-top: 12px; }
		#tabs li.first-child { margin-top: 0px; }

			#tabs a { font-weight: bold; }
			#tabs a:hover { color: #333; }

#tabs ul
{
border-bottom: 1px solid #bbb;
padding: 15px 12px 15px 12px;
}

#tabs h2
{
color: #666;
padding: 7px 0px;
border-top: 1px solid #fff;
font-size: 1em;
text-align: center;
}

#footer-top {
background: url(/files/images/template/footer-top.png) repeat-x left top;
height:24px;
position:relative;
top:-24px;
}

#footer
{
background: url(/files/images/template/footer-bottom.jpg) repeat-x left top;
clear: both;
height: 75px;
position: relative;
}

	#footer ul, #legal
	{
	margin: 0px;
	position: absolute;
	text-align: center;
	width: 100%;
	}

	#footer ul
	{
	display: block;
	list-style-type: none;
	padding: 0px;
	top: 15px;
	padding-top:10px;
	}

	#footer li
	{
	display: inline;
	list-style-type: none;
	padding: 0px 35px; /* 0px 3px 0px 6px */
	}

	#footer li.first-child
	{
	padding-left: 0px;
	}

	#footer a
	{
	color: #333;
	font-weight: bold;
	font-size: 11px;	
	}

	#footer a:hover { color: #444; }
	
	#legal
	{
	color: #333;
	font-size: .8em;
	top: 55px;
	}

#shadow_left {
background-image: url(/files/images/template/shadow_top_left.gif);
background-position: 0% 0%;
background-repeat: repeat-y;
}

#shadow_left #shadow-img {float:left;}

#shadow_right {
background-image: url(http://www.allaboutpacs.com/images/shadow_right.gif);
background-position: 100% 0%;
background-repeat: repeat-y;
}



div.clearfix {
background-color: white;
clear: both;
font-size: 1px;
height: 1px;
margin: 0px 8px;
}

/****************************************************************
 8. Print - http://www.alistapart.com/stories/goingtoprint/
****************************************************************/
@media print {
#header, #nav, #crumbs, #aside, #footer { display: none; }
#content { border-width: 0px; color: #000; float: none; padding: 0px; width: 100%; }
#content a { text-decoration: underline; border-bottom-width: 0px; }

html, body { height: auto; }
#wrapper { min-height: 1%; }
}



/****************************************************************
 9. Handheld
****************************************************************/
@media handheld {
#accessibility { display: block; }
}



/****************************************************************
 10. Aural
****************************************************************/
@media aural {
#accessibility { display: block; }
}