@charset "utf-8";
/* 
	default.css 

	Created: 09/15/08
	Edit history:
		09/15/08 Erin
			Created the file
		09/19/08 Roberta
			Added styles for very general stuff
			Changed style names so as not to interfere with global.css
		09/22/08 Erin
			Modified .back class, breadcrumbs, crumbsAndBack - separated hover state
		09/23/08 Roberta
			Added default link states
			Removed banner padding (it is now in header.css)
			Added #pageTitle, which includes the back button and the page title 
			  (took the page title out of main content)
		09/23/08 Roberta
			Added .pdf to position the pdf icon
		09/30/08 Erin
			Fixed "Back" links
		10/14/08 Erin
			added .innerContentWide to accommodate content with no right nav bubbles
			added h2 and h3 specs for .innerContentNormal and .innerContentWide
		10/15/08 Erin
			added h2.noBottomPadding, p.noBottomPadding classes (plain old .noBottomPadding wasn't working)
		10/21/08 Erin
			added style to select (dropdown)
		10/22/08 Erin
			added form.noBottomPadding classes

*/

body{
	position: relative;
	background-color: #eee;
	background-image: url("/assets/globalbg.gif");
	background-repeat: repeat-y;
	background-position: center;
	width: 762px;
	padding: 16px;
	margin: 0px auto;
	min-height: 100%;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:16px;
	color: #545454;
}

p {
	padding:0 0 8px 0;
	margin:0;
}

a img { border: none; text-decoration: none }

a:link,active {
	color: #5481b0;
	padding: 0px;
	margin: 0px;
}

a:visited {
	color: #5481b0;
	padding: 0px;
	margin: 0px;
}

a:hover {
	color: #037cfb;
	padding: 0px;
	margin: 0px;
	text-decoration:underline;
}

select {
	font-family:Arial, Helvetica, sans-serif;
}

/*html{	
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;	
}*/


.floatLeft {
	float:left;
}
.floatRight {
	float:right;
}
.clear {
	clear:both;
}
.bold {
	font-weight:bold;
}
.italic {
	font-style:italic;
}

/*
 General padding styles
*/
.topPadding {
	padding-top:20px;
}
.topPaddingHalf {
	padding-top:10px;
}
.noTopPadding {
	padding-top:0;
	margin-top:0;
}
.bottomPaddingHalf {
	padding-bottom:10px;
}
.bottomPadding {
	padding-top:20px;
}
.noBottomPadding {
	padding-bottom:0;
	margin-bottom:0;
}
h2.noBottomPadding, p.noBottomPadding, form.noBottomPadding {
	padding-bottom:0;
	margin-bottom:0;
}

.leftPadding {
	padding-left: 20px;
}
.leftPaddingHalf {
	padding-left: 10px;
}
.noLeftPadding {
	padding-left:0;
	margin-left:0;
}
.rightPadding {
	padding-right: 20px;
}
.rightPaddingHalf {
	padding-right:10px;
}
.noRightPadding: {
	padding-right:0;
}
/*****  BANNER/BREADCRUMBS/BACKLINK START  *****/
/* breadAndBack is the breadcrumbs and the back link */

#crumbsAndBack {
	width: 762px;
	padding: 3px 0px 0px 0px;
	margin: 0px;
	border: 0px;
	color:#999999;
	font: normal 11px Arial;
	clear:both;
}

#crumbsAndBack a:link, #crumbsAndBack a:visited {
/*	color: #999999;*/
	font-weight:bold;
	text-decoration:none;
}
#crumbsAndBack a:hover {
	color: #037cfb;
}

/* Breadctrumbs START */
html > body div.breadcrumbs { margin: 2px 0px; }

.breadcrumbs {
	padding: 0px; 
	margin: 0px;
	color:#545454;
}

.breadcrumbs a:link, .breadcrumbs a:visited {
	color: #999999;
	font-weight:bold;
	text-decoration:none;
}
/* Breadcrumbs END */

/* Backlink and title START */
/* #pageTitle is the container for the backlink and the pagetitle */
#pageTitle {
	margin:0; 
	padding:10px 0;
	float:left;
}
#pageTitle .back {	
	margin:0;
	padding:1px 0 0 20px;
	background-image: url("/assets/left_arrow.gif");
	background-repeat: no-repeat;
	text-align:left;
	height:20px;
	float:left; 
	width:180px;

}
 
/* #crumbsAndBack #pageTitle .backLink  {
	color: #5481b0;
	font-weight:bold;
	text-decoration:none;
}

#crumbsAndBack #pageTitle .backlink a:hover {
	color: #037cfb;
	text-decoration:underline;
}
*/

#crumbsAndBack #pageTitle .backLink  {
	color: #5481b0;
	font-weight:normal;
	text-decoration:none;
}

#crumbsAndBack #pageTitle a:hover.backLink {
	color:#037CFB;
	text-decoration:underline;
}

/* #pageTitle .title is the container for the actual title, which may be 1 or two lines */
#pageTitle .title {
	width: 562px;
	padding: 0 0 0 0; 
    margin-left:0;
	margin-right:0;
	font: bold 18px Arial;
	color: #f90;
    float:right;
}
 /* Big one-line header for top of content */
.pageHeader1LineOnly {
	width: 555px;
	padding: 0; 
	margin-left: 200px;
	margin-top:-20px;
	margin-bottom:10px;
	font: bold 18px Arial;
	color: #f90;
	display: block;
}
/* Big two-line headers for top of content.  
The first line has top padding, the second has a bottom margin. */
.pageHeaderLine1of2 {
	width: 565px;
	margin-left: 200px;
	margin-top:-20px;
	padding:0px;
	font: bold 18px Arial;
	color: #f90;
	display: block;
}
.pageHeaderLine2of2 {
	width: 565px;
	padding: 0px 0px 0px 0px; 
	margin-left: 200px;
	margin-bottom:10px;
	font: bold 18px Arial;
	color: #f90;
	display: block;
}
/* Backlink and title END */

/***** BREADCRUMBS/BACKLINK END *****/


/***** MAIN CONTENT *****/
/* This is everything between the breadcrumbs/backlink and the footer*/

#mainContent {
	float: left; 
	width: 762px; 
	padding: 0; 
	margin: 0;
}

#mainContent a:link, #mainContent a:visited {
	color: #5481b0;
	text-decoration:none;
	padding:0;
	margin:0;
}

#mainContent a:hover {
	color: #037cfb;
	text-decoration:underline;
	padding:0;
	margin:0;
}
#mainContent a:active {
	color: #5481b0;
	text-decoration:none;
	padding:0;
	margin:0;
}
	 
/***** NAVBAR START *****/

#leftNav {
	float:left;
	width:180px;
	padding:0;
	margin:0;
}

#rightNavWrap {
	float:right;
	text-align:left;
	width:180px;
	padding:0;
	margin:0;
}
/***** INNER CONTENT START *****/
.innerContentNormal {
	/*Leave room for right nav links*/
	float:left;
	width:362px;
    text-align:left;
	vertical-align:top;
	margin: 0 20px;
	padding:0;
}	

.innerContentWide {
	/*For content with no right nav links*/
	float:right;
	width:552px;
    text-align:left;
	vertical-align:top;
	margin: 0 0px 0 20px;
	padding:0 10px 0 0;
}


.innerContentNormal h2, .innerContentWide h2{
	color:#11568b;
	font-size:15px;
	font-weight:bold;
}

.innerContentNormal h3, .innerContentWide h3{
	color:#666666;
	font-size:12px;
	font-weight:bold;
	/*margin-bottom:0px;*/
}

.grayBold {
	font-weight:bold;
	color:#666;
}
/* Secondary orange title, used for headers in the middle of the content. */
.subtitle {
	font: bold 13px Arial;
	color: #ff9900;
	margin: 0px;
	padding: 15px 0px 10px 0;
}
/* Same as subtitle, but no padding - use for a title at the top of the content. */ 
.subtitleNoPadding {
	font: bold 13px Arial;
	color: #ff9900;
	margin: 0px;
	padding: 0;
}
.subtitle, .subtitleNoPadding a {
	color:#ff9900;
	text-decoration:none;
}
/* Tertiary orange title */
.subSubtitle {
	font-weight: bold;
	font-size: 12px;
	color:#ff9900;
	margin:0px;
	padding: 5px 0 0 0;
}
/* Gray title, used when you need something to go between subtitle and subSubtitle. */
.graySubtitle {
	line-height:16px;
	text-align:left;
	padding: 10px 0 0 0;
	font-size:13px;
	font-weight:bold;
	color:#666;
}
/* Bold title, no padding, to be used over multiple paragraphs. */
.boldTitle {
	font-weight: bold;
	padding:0;
	margin:0;
}

.pdf {
	position:absolute;
	margin-top:-1px;
	margin-left:3px;
}

.pdf {
	position:absolute;
	margin-top:-1px;
	margin-left:3px;
}