/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #B3B3B3;
  background-image: url(images/bg_body.gif);
  background-position: top center;
  background-repeat: repeat-y;
  color: #333333;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 80%;
  line-height: 1.4em;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #601666;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.1em;
	border-left: 8px solid #6F797E;
	margin: 0px 0px 15px;
	padding: 5px 0px 5px 8px;
}
#column_right h1 {
	color: #fff;
	font-size: 1.2em;
	line-height: 1.2em;
	background: #6F797E;
	margin: 0px;
	padding: 10px;
	border:none;
}
#column_right h1 span {
	color: #E1E3E4;
}
#leftColumn1 h1 {
	color: #6F797E;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
	border-left: none;
	margin: 0px 0px 5px;
	padding: 0px 0px 5px;
	border-bottom: 1px solid #6F797E;
}

/* Commonly used to style section titles. */
h2 {
	color: #6F797E;
	font-size: 1.2em;
	font-weight: normal;
	line-height: 1.2em;
	margin: 0px 0px 10px;
	padding: 0px 0px 10px;
	border-bottom: 1px solid #601666;
}
h3 {
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0px;
  padding: 5px 5px 5px 33px;
}
h3 a {
	color: #fff!important;
	text-decoration: none;  
}
/*h3.focus_green {
	background: #6ABB9F url(images/bg_h3_green.gif) no-repeat left top;	
}
h3.focus_blue {
	background: #30393E url(images/bg_h3_blue.gif) no-repeat left top;	
}*/
h3.focus_gray {
	background: #6F797E url(images/bg_h3_gray.gif) no-repeat left top;	
}
h3.focus_purple {
	background: #601666 url(images/bg_h3_purple.gif) no-repeat left top;	
}
h3.purplebar {
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0px 0px 10px;
  padding: 5px 5px 5px 33px;
  background: #601666 url(images/bg_h3_purple.gif) no-repeat left top;
}
h4 {
	color: #8F5B94;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
	margin: 0px 0px 0px;
	padding: 0px;
}
h5 {
	color: #30393E;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	margin: 0 0 5px 0;
	padding: 0px;
}
hr {
	color: #ECECEC;
	background: #ECECEC;
	height: 1px;
	border: 0px;
	margin: 0 0 10px 0;
	padding: 0px;
}
p {
	padding: 0 0 10px 0;
	margin: 0px;
}
#contentWrapper p {
	line-height: 1.4em;
}
/* Sets the style for links. */
a,  a:link, a:visited, a:focus, a:active {
  color: #601666;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  text-decoration: underline;
}
img {
	border-style: none;	
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 760px;
}
#outerWrapper #header {
  background-color: #ddd;
  background-image: url(images/bg_header.gif);
  background-position: top left;
  background-repeat: no-repeat;
  font-size: 18px;
  font-weight: bold;
  height: 142px;
  line-height: 15px;
  padding: 0px 0px 0px 433px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 {
  float: left;
  padding: 0px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 215px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 0 0 215px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 85px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */

}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
	color:#fff;
	text-align:center;
	background-color: #70797E;
	background-image: url(images/bg_footer.jpg);
	background-position: top left;
	background-repeat: repeat-x;
	padding: 10px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	vertical-align: top;
}
#outerWrapper #footer a {
	color:#fff;
}

#column_left {
	width:325px;
	float:left;
}
#column_right {
	float: right;
	width:210px;
	font-size:90%;
}
#column_left p {
	line-height: 1.6em;
}

/* Classes */

.two_col {
	background: url(images/bg_2col.gif) repeat-y left top;	
}
.one_col {
	background: url(images/bg_1col.gif) repeat-y left top;	
}
.column {
	background: url(images/bg_column.gif) no-repeat left top;	
}
.nocolumn {
	background: url(images/bg_nocolumn.gif) no-repeat left top;	
}
.nopad {
	padding:0px;
}
.float_left {
	float:left;
}
.bumpup {
	margin-top: -4px;
}
.pad {
	padding: 10px;
}
.padsides {
	padding: 0 10px;
}
.padleft {
	padding: 0 0 0 10px;
}
/*.text_blue {
	color:#30393E!important;
}
.text_green {
	color:#6ABB9F!important;
}*/
.text_purple {
	color:#601666!important;
}
.text_gray {
	color:#6F797E!important;
}
/*.box_green, .box_blue,*/ .box_gray, .box_purple {
	padding: 10px;
	margin-bottom: 10px;
}
/*.box_green p, .box_blue p,*/ .box_gray p, .box_purple p {
	padding: 0px;
	margin: 0px;
}
/*.box_green, table.searchlist tr.row_green td {
	background: #E2F2EC;	
}
.box_blue {
	background: #CDD5D8;	
}*/
.box_gray {
	background: #E3E5E6;	
}
.box_purple {
	background: #DDD1DE;	
}
.box_darkgray {
	background: #D0D6D8;
}
a.focus_purple {
	display:block;
	background: #601666 url(images/bg_h3_purple.gif) no-repeat left top;
	line-height:27px;
	margin: 0px;
 	padding: 0 0 0 33px;
	color:#fff!important;	
}
.borderbtm {
	border-bottom: 2px solid #fff
}
.bordertop {
	border-top: 2px solid #fff
}
.quote_purple {
	color: #fff;
	padding: 20px 10px 10px;
	background: #601666 url(images/bg_lightbox.jpg) no-repeat left top;
	font-style: italic;
}
.quote_purple a {
	color: #fff!important;
}
.dropshadow {
	padding: 0 20px 15px 0;
	background: #FFF url(images/bg_dropshadow.gif) no-repeat left bottom;
}
.topshadow {
	padding: 15px 20px 0 0;
	margin: 0px;
	background: #FFF url(images/bg_topshadow.gif) no-repeat left 15px;
	vertical-align: bottom;
}
.topshadow img {
	border: 1px solid #601666;
	margin: 0px;
	vertical-align: bottom;
}
table.searchlist th {
	padding: 3px 10px;
	vertical-align:top;
	font-weight: bold;
	color: #FFFFFF;
	background: #601666;
	text-align: center;
	vertical-align:middle;
	border-right: 1px solid #FFFFFF;
}
table.searchlist td {
	padding: 15px 10px;
	vertical-align:top;
}
table.searchlist tr.row_gray, table.searchlist tr.row_gray td {
	background: #EAEBEC;
}
table.padcell td {
	padding: 0 10px 10px 0;
	vertical-align:top;
}
#leftColumn1 div.pad {
	font-size:90%;
}
#column_right div.pad {
	background: #E1E3E4;
}
#column_right div.lightbox {
	background: #F0F1F2 url(images/bg_lightbox.jpg) no-repeat left bottom;
}
.lightbox {
	background: #F0F1F2 url(images/bg_lightbox.jpg) no-repeat left bottom;
}
#process_chart {
	padding: 83px 0 0 0;
	margin: 0px 0px 15px;
	background: url(images/process_arrow.gif) no-repeat center top;
}
#process_chart p, #process_chart ul {
	padding: 10px 5px!important;
	margin: 0px!important;
}
#process_chart li {
	
	
}
#process_chart td {
	vertical-align: middle;	
}
td.graylight {
	background: #EAEBEC url(images/bk_greenarrow.gif) no-repeat right bottom;
	padding-bottom: 28px;
}
td.graymed {
	background: #D4D7D9 url(images/bk_greenarrow.gif) no-repeat right bottom;
	padding-bottom: 28px;
}
td.graylightright {
	background: #EAEBEC url(images/bk_bluearrow.gif) no-repeat left bottom;
	padding-bottom: 28px;
}
td.graymedright {
	background: #D4D7D9 url(images/bk_bluearrow.gif) no-repeat left bottom;
	padding-bottom: 28px;	
}
td.purple_one {
	background: #EFE8F0 url(images/bk_purplearrow.gif) no-repeat center bottom;	
}
td.purple_two {
	background: #E8DDE9 url(images/bk_purplearrow.gif) no-repeat center bottom;	
}
td.purple_three {
	background: #D0BAD1 url(images/bk_purplearrow.gif) no-repeat center bottom;	
}
td.purple_four {
	background: #C0A3C2 url(images/bk_purplearrow.gif) no-repeat center bottom;	
}
td.purple_five {
	background: #B08BB3 url(images/bk_purplearrow.gif) no-repeat center bottom;	
}
td.purple_six {
	background: #601666;
	color: #FFF;	
}
td.purple_one, td.purple_two, td.purple_three, td.purple_four, td.purple_five, td.purple_six {
	font-weight: bold;		
}
td.purple_one, td.purple_two, td.purple_three, td.purple_four, td.purple_five {
	padding-bottom: 28px;		
}
.position {
	background: url(images/bg_position.gif) no-repeat left .6em;
	padding-left: 13px;
	margin-top: -5px;
	padding-top: 3px;
	border-top: 1px solid #999999;
}

/*--------------[NAVIGATION]--------------*/
#nav {
	padding:0;
	margin:0;
	border-bottom: 15px solid #30393E;
	font-size:.9em;
}


/* LISTS */

#leftColumn1 div.pad li, #column_left ul li, #content div.padsides ul li, #column_right li {
	margin: 0 0 5px 0;
	padding: 0 0 5px 1em;
	border-bottom: 1px solid #666666;
	list-style: url(none) none outside;
	display:block;
	text-indent: 0px;
}
#leftColumn1 div.pad li, #column_right li {
	background: url(images/bullet.gif) no-repeat left .5em!important;
}
#column_left ul li, #content div.padsides ul li {
	background: url(images/bullet_gray.gif) no-repeat left .5em;
}
#column_left li ul li {
	background: url(images/bullet.gif) no-repeat left .5em;
}
#process_chart td.bluelight ul li, #process_chart td.bluemed ul li {
	background: url(images/bullet_blue.gif) no-repeat left .5em;
}
#column_right ul, #leftColumn1 div.pad ul {
	margin: 0 0 10px 0;
	padding: 0px;
}
#column_left ul, #column_left ol, div.nocolumn ul, div.nocolumn ol  {
	margin: 0 0 10px 0;
	padding: 10px 20px;

}
#column_left ol, #column_left li  {
	margin: 0 0 5px 0;
	padding: 0 0 5px 0;
	border-bottom: 1px solid #666666;
}
