/* ----------------------------------------------------------------------*/
/* ---------->>> COLORS <<<-----------*/
/* ----------------------------------------------------------------------*/
.black { background-color:#000; }
.white { background-color:#FFF; }

.blue { background-color:#0078c0; }
.med_blue { background-color:#66aed9; }
.light_blue { background-color:#b2d6ec; }
.pale_blue { background-color:#e5f1f9; }
.blue { background-color:#0078c0; }
.red { background-color:#e51937; }
.dark_red { background-color:#a01227; }
.navy { background-color:#2d4051; }
.gray { background-color:#b6b5b5; }
.light_gray { background-color:#E9E6E6; }
.pale_gray { background-color:#f4f2f2; }
.green { background-color:#1ea30d; }

/* ----------------------------------------------------------------------*/
/* ---------->>> TEXT COLORS <<<-----------*/
/* ----------------------------------------------------------------------*/
.txt_black { color:#000; }
.txt_white { color:#FFF; }

.txt_blue { color:#0078c0; }
.txt_med_blue { color:#66aed9; }
.txt_light_blue { color:#b2d6ec; }
.txt_pale_blue { color:#e5f1f9; }
.txt_blue { color:#0078c0; }
.txt_red { color:#e51937; }
.txt_dark_red { color:#a01227; }
.txt_navy { color:#2d4051; }
.txt_gray { color:#b6b5b5; }
.txt_green { color:#1ea30d; }

/* ----------------------------------------------------------------------*/
/* ---------->>> COMMON CLASSES <<<-----------*/
/* ----------------------------------------------------------------------*/

.width100 { width: 100%; }
.width75 { width: 75%; }
.width50 { width: 50%; }
.float_left { float: left; }
.float_right { float: right; }
.align_left { text-align: left; }
.align_right { text-align: right; }
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden }
.clearfix { clear: both; display: block; }
.pad { padding: 10px; }
.pad_left { padding-left: 10px; }
.pad_right { padding-right: 10px; }
.pad_top { padding-top: 10px; }
.pad_btm { padding-bottom: 10px; }
.margin_left { margin-left: 10px; }
.margin_right { margin-right: 10px; }
.margin_top { margin-top: 10px; }
.margin_btm { margin-bottom: 10px; }
.margin_left20 { margin-left: 20px; }
.margin_right20 { margin-right: 20px; }
.margin_top20 { margin-top: 20px; }
.margin_btm20 { margin-bottom: 20px; }
.border { border:solid 1px #000 }
.border_left { border-left:solid 1px #000 }
.border_right { border-right:solid 1px #000 }
.border_top { border-top:solid 1px #000 }
.border_btm { border-bottom:solid 1px #000 }
table.twocol td { width: 50%; }
table.threecol td { width: 33.333%; }
table.fourcol td { width: 25%; }
div.twocol { width: 50%; }
div.threecol { width: 33.333%; }
div.fourcol { width: 25%; }
table.pad_cel td { padding: 3px; }
.center { margin:0px auto }
.hide { display:none; position: absolute; top: -5000em; left: -5000em;}
.squish { letter-spacing: -0.5px; }
.top_img {}
.btm_img {}
.centered td {text-align:center;}
.centered td li {text-align:left;}

a img {
  border: 0;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> BASIC HTML TAGS <<<-----------*/
/* ----------------------------------------------------------------------*/

body {
  background: #2d4051 url(../images/bg.jpg) repeat-x left top;
  color: #2d4051;
  font-size: 62.5%;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight:normal;
  text-align: center;
  margin:0;
  padding:0;
  border:0;
  outline:0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: Trebuchet MS, Arial, Geneva, Helvetica, sans-serif;
  margin-bottom:10px;
}

h1 {
  color: #333;
  font-size: 2.8em;
  font-weight: bold;
  line-height: 2em;
  border-bottom: 1px solid #333;
  margin-bottom:.5em;
}

h2 {
  border-bottom:solid 1px #b6b5b5;
  color: #0078c0;
  font-size: 2.2em;
  font-weight: normal;
  line-height: 1.2em;
}
h1 small, h2 small{
  display:block;
  color: #b6b5b5;
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
}
h3 {
  background: url(../images/bg_h3.gif) no-repeat left .3em;
  color: #0078c0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.8em;
  font-weight: normal;
  line-height: 1.6em;
  padding-left:23px;
}
h4 {
  color: #333;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.4em;
}
h5 {
  color: #333;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.6em;
  text-transform: uppercase;
}
h6 {
  color: #333;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.4em;
  text-transform: uppercase;
}

p {
  margin: 0 0 10px 0;
  line-height: 1.4em;
}
hr {
  background: #EAEBEC;
  color: #EAEBEC;
  height: 1px;
  border: 0px;
  margin: 0 0 10px 0;
}
td {
  vertical-align: top;
}
th {
  font-weight: bold;
  color: #FFF;
  background: #333;
  vertical-align:middle;
  border-left: 1px solid #FFF;
}
th:first-child {
  border-left: none;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> LINKS <<<-----------*/
/* ----------------------------------------------------------------------*/

/* Sets the style for unvisited links. */
a, a:link, a:visited {
  color:#0078C0;
  font-weight:normal;
  text-decoration:none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: red;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #666;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #666;
}

a.pdf, a.doc, a.folder { padding-left:15px; }
a.pdf { background: url(../images/bullet_pdf.gif) no-repeat; }
a.doc { background: url(../images/bullet_page.gif) no-repeat; }
a.folder { background: url(../images/bullet_folder.gif) no-repeat; }

/* ----------------------------------------------------------------------*/
/* ---------->>> FORMS <<<-----------*/
/* ----------------------------------------------------------------------*/

/* (en) reset monospaced elements to font size 16px in Gecko browsers */
pre, tt, code { font-family:"Courier New", Courier, monospace; }

input, select, label {
  vertical-align: middle;
}
input.btn_submit, input.btn_reset {
  background: url(../images/btn_submit.gif) no-repeat left top;
  display:block;
  float:left;
  height:30px;
  margin-right:1em;
  position:relative;
  width:75px;
  text-indent:-1000em;
  border:none;
  font-size: 0;
}
input.btn_reset {
  background: url(../images/btn_reset.gif) no-repeat left top;
}
input.btn_submit:hover, input.btn_reset:hover {
  background-position: left -30px;
}

.contact_form { }
input.blue_field {
  background:#E3F0F9 url(../images/bg_textfield.gif) repeat-x scroll left top;
  border:solid 1px #66aed9;
}
.contact_form input.blue_field, .contact_form textarea { width:300px; padding:4px; }
#commentform input.blue_field  { width:200px; padding:4px; }
.contact_form textarea  { height:200px; }
.contact_form td {
  padding-bottom:5px;
  padding-right:5px;
  vertical-align:middle;
}
.contact_form select {
  background:#0078C0;
  color:#FFF;
  border:solid 1px #0058a8;
}
textarea {
  background: #e5f1f9 url(../images/bg_tiny_diagonal.gif) repeat-x left top;
  border:solid 1px #66aed9;
  color:#333;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size:1em;
}


/* ----------------------------------------------------------------------*/
/* ---------->>> LISTS <<<-----------*/
/* ----------------------------------------------------------------------*/

ul, ol, dl { margin: .5em 0 1em 1em; }
#contentWrapper li {
  background: url(../images/bullet.gif) no-repeat left .2em;
  list-style: none;
  line-height: 1.5em;
  margin: 0px 10px 3px;
  /*border-top: 1px solid #999999;*/
  padding: 0px 0px 3px 15px;

}
#contentWrapper .p7TMM04 li {
  background: none;
  line-height: auto;
  margin: 0px;
  border-top: 1px solid #FFF;
  padding: 0px;
}
#contentWrapper li:first-child, #contentWrapper .p7TMM04 li:first-child {
  border-top: none;
}

dt { font-weight: bold; }
dd { margin: 0 0 1em 2em; }

blockquote, cite { /*margin: 0 0 1em 1.5em;*/ }

#contentWrapper .pdflist li, #contentWrapper li.pdflist {
  background: url(../images/bullet_pdf.gif) no-repeat left top;
}
#contentWrapper .doclist li, #contentWrapper li.doclist {
  background: url(../images/bullet_page.gif) no-repeat left top;
}
#contentWrapper .folderlist li, #contentWrapper li.folderlist {
  background: url(../images/bullet_folder.gif) no-repeat left top;
}
#contentWrapper .wallpaper li {
  background: url(../images/bullet_image.gif) no-repeat left top;
  margin: 0px 10px 0px;
  padding: 0px 0px 0px 20px;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> BUTTONS <<<-----------*/
/* ----------------------------------------------------------------------*/

#commentform #submit, .btn_send, .btn_appointment {
  border:none;
  cursor:pointer;
  display:block;
  height:30px;
  line-height:0px;
  margin-bottom:-6px;
  text-indent:-6000px;
}
.btn_appointment {
  height:24px;
  margin-bottom:0px;
}


#commentform #submit {
  background: url(../images/btn_submit_comment.png) no-repeat left top;
  width: 175px;
}
.btn_send {
  background: url(../images/btn_send.png) no-repeat left top;
  width: 80px;
}
.btn_appointment{
  background: url(../images/btn_appointment.png) no-repeat left top;
  width: 208px;
}


#commentform #submit:hover, .btn_send:hover, .btn_appointment:hover {
  background-position:left -30px;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> PAGE STRUCTURE <<<-----------*/
/* ----------------------------------------------------------------------*/

#outerWrapper {
  background: ;
  margin: 0px auto;
  text-align: left;
  width: 950px;
}
#outerWrapper #header {
  background: #FFF;
  position:relative;
  border-bottom: 1px solid #b6b5b5;
}
  #header #topnav { position:absolute; top: 10px; right: 10px; text-align:right; }

/* Added this div and set width to force IE 6 to display Background Image properly */
#outerWrapper #nav_container {
  background: #940934 url(../images/bg_nav.gif) repeat-x left top;
}
#outerWrapper #nav {
  background: #666666 url(../images/bg_nav.gif) repeat-x left top;
  padding-left: 228px;
}
#outerWrapper #contentWrapper {
  background:#FFF url(../images/bg_contentWrapper.gif) repeat-x left top;
  float:left;
  width:950px;
}
#outerWrapper #contentWrapper .contentpad {
  padding:10px 9px 9px;
  float:left;
}

/* Col1 left column bg_col1.gif does not exist..*/
#outerWrapper #contentWrapper #col1 {
  background: url(../images/bg_col1.gif) repeat-x left top;
  float: left;
  /*width: 228px;*/
}
/* Col2 right column bg_col2.gif does not exist.*/
#outerWrapper #contentWrapper #col2 {
  background: url(../images/bg_col2.gif) repeat-x left top;
  float: right;
  /*width: 228px;*/
}
/* Col3 contains the main page content bg_col3.gif does not exist.*/
#outerWrapper #contentWrapper #col3 {
  background: url(../images/bg_col3.gif) repeat-x left top;
}
#outerWrapper #footer {
  color:#FFF;
  padding:10px;
  text-align:center;
  clear:both;
}

#header, #nav, #contentWrapper, #footer { clear:both; }

/* ----------------------------------------------------------------------*/
/* ---------->>> COLUMN CONTROLS <<<-----------*/
/* ----------------------------------------------------------------------*/

#col1 {z-index: 3}
#col2 {z-index: 5}
#col3 {z-index: 1}
#col1, #col2, #col3 { margin-bottom:10px; }
#col1_content {z-index: 4; padding:10px;}
#col2_content {z-index: 6; padding:10px;}
#col3_content {z-index: 2;  padding:10px;}
#col1_content, #col2_content, #col3_content { position:relative }

/*.showall { background: url(../images/bg_threecol.gif) repeat-y left top; }
.hidecol2 { background: url(../images/bg_leftcol.gif) repeat-y left top; }
.hidecol1 { background: url(../images/bg_rightcol.gif) repeat-y left top; }
.hideboth { background: url(../images/bg_nocolumn.gif) repeat-y left top;	}*/

/* Set the class of #contentWrapper for a 1, 2 or 3 column layout */
/* 3 col layout */
.showall #col3 {margin-left: 235px; margin-right: 235px}
/* 1 col layout */
.hideboth #col3 {margin-left: 0; margin-right: 0}
/* 2 col layout Right Sidebar */
.hidecol1 #col3 {margin-left: 0; margin-right: 228px}
/* 2 col layout Left Sidebar */
.hidecol2 #col3 {margin-left: 228px; margin-right: 0}
/* 2 col layout with 2 even columns */
.splitcolumn #col3 { width: 455px; float:left; margin-left: 20px; margin-right: 0}
.splitcolumn #col1 {width: 455px;}
.showall #col1, .showall #col2 {width: 218px;}

/* The following hides the unnecessary columns */
.hideboth #col1, .hideboth #col2 {display:none; position: absolute; top: -5000em; left: -5000em;}
.hidecol1 #col1 {display:none; position: absolute; top: -5000em; left: -5000em;}
.hidecol2 #col2 {display:none; position: absolute; top: -5000em; left: -5000em;}
.splitcolumn #col2 {display:none; position: absolute; top: -5000em; left: -5000em;}

/* ----------------------------------------------------------------------*/
/* ---------->>> HEADER <<<-----------*/
/* ----------------------------------------------------------------------*/

#top_nav {
  background: url(../images/bg_topnav.gif) repeat-x left top;
  height:30px;
  width:100%;
}
#top_nav .float_left {
  padding-left:22px;
}
#top_nav ul, #top_nav li {
  margin:0px;
  padding:0px;
}
#top_nav ul {
  margin:0px 5px 0px 0px;
}
#top_nav ul, #top_nav li, #top_nav form, #top_nav input {
  display:inline;
  float:left;
}
#top_nav a.appointment, #top_nav a.contact, #top_nav a.subscribe {
  display:block;
  height:30px;
  text-indent:-6000px;
  line-height:0px;
}
#top_nav a.appointment {
  background: url(../images/topnav_appointment.gif) no-repeat left top;
  width:132px;
}
#top_nav a.contact {
  background: url(../images/topnav_contact.gif) no-repeat left top;
  width:93px;
}
#top_nav a.subscribe {
  background: url(../images/topnav_subscribe.gif) no-repeat left top;
  width:85px;
}
#top_nav a.appointment:hover, #top_nav a.contact:hover, #top_nav a.subscribe:hover {
  background-position:left -30px;
  cursor:pointer;
}


#search {
  background: #e3f0f9 url(../images/bg_textfield.gif) repeat-x left top!important;
  color:#2d4051;
  font-size:12px;
  width: 175px;
  border: 1px solid #2d4051;
  margin:3px 0px;
  padding:4px;
}
#top_search, #cse-search-box {
  background: url(../images/bg_magnify.gif) no-repeat left top;
  padding-left: 25px;
}

#btm_nav {
  font-size:1.2em;
  padding:0px;
  margin:0px 0 -10px;
}
#btm_nav ul {
  padding:10px 0px;
}
#btm_nav li {
  display:inline;
  padding:0px 10px;
  border-left:solid 1px #2d4051;
}
#btm_nav li:first-child {
  border-left:none;
}
#btm_nav li a {
  color: #2d4051;
}
#mainimg {
  clear:both;
  /*height:240px;
  position:relative;*/
}

/* ----------------------------------------------------------------------*/
/* ---------->>> NAVIGATION <<<-----------*/
/* ----------------------------------------------------------------------*/

#main_nav {
  background: url(../images/bg_main_nav.gif) repeat-x left top;
  /*float: left;*/
  height: 40px;
  width:100%;
}

#main_nav, .MenuBarHorizontal {
  z-index:1000;
}

#main_nav a.nav_donate, #main_nav a.nav_about, #main_nav a.nav_financial, #main_nav a.nav_news, #main_nav a.nav_blog, #main_nav a.nav_stories, #main_nav a.nav_extras, #main_nav a.nav_home, #main_nav a.nav_events, #main_nav a.nav_careers {
  height:40px;
  text-indent:-6000px;
  margin:0px;
  padding:0px;
}
#main_nav a.nav_donate {
  background: url(../images/nav_donate.gif) no-repeat left top;
  width:79px;
}
#main_nav a.nav_about {
  background: url(../images/nav_about.gif) no-repeat left top;
  width:87px;
}
#main_nav a.nav_financial {
  background: url(../images/nav_financial.gif) no-repeat left top;
  width:133px;
}
#main_nav a.nav_news {
  background: url(../images/nav_news.gif) no-repeat left top;
  width:104px;
}
#main_nav a.nav_blog {
  background: url(../images/nav_blog.gif) no-repeat left top;
  width:89px;
}
#main_nav a.nav_stories {
  background: url(../images/nav_stories.gif) no-repeat left top;
  width:111px;
}
#main_nav a.nav_extras {
  background: url(../images/nav_extras.gif) no-repeat left top;
  width:79px;
}
#main_nav a.nav_home {
  background: url(../images/nav_home.gif) no-repeat left top;
  width:71px;
}
#main_nav a.nav_events {
  background: url(../images/nav_events.gif) no-repeat left top;
  width:136px;
}
#main_nav a.nav_careers {
  background: url(../images/nav_careers.gif) no-repeat left top;
  width:87px;
}

#main_nav a.nav_donate:hover, #main_nav a.nav_about:hover, #main_nav a.nav_financial:hover, #main_nav a.nav_news:hover, #main_nav a.nav_blog:hover, #main_nav a.nav_stories:hover, #main_nav a.nav_extras:hover, #main_nav a.nav_home:hover, #main_nav a.nav_events:hover, #main_nav a.nav_careers:hover {
  background-position:left -40px;
  cursor:pointer;
}

#main_nav li.nav_donate, #main_nav li.nav_about, #main_nav li.nav_financial, #main_nav li.nav_news, #main_nav li.nav_blog, #main_nav li.nav_stories, #main_nav li.nav_extras, #main_nav li.nav_home, #main_nav li.nav_events, #main_nav li.nav_careers {
  height:40px;
}
#main_nav li.nav_donate {
  width:79px;
}
#main_nav li.nav_about {
  width:87px;
}
#main_nav li.nav_financial {
  width:133px;
}
#main_nav li.nav_news {
  width:104px;
}
#main_nav li.nav_blog {
  width:89px;
}
#main_nav li.nav_stories {
  width:111px;
}
#main_nav li.nav_extras {
  width:79px;
}
#main_nav li.nav_home {
  width:71px;
}
#main_nav li.nav_events {
  width:136px;
}
#main_nav li.nav_careers {
  width:87px;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> NAV DESIGN INFO <<<-----------*/
/* ----------------------------------------------------------------------*/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul {
  border: 1px solid #333;
  background-color:#CCC;
  overflow:visible;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a, ul.MenuBarHorizontal a:visited {
  display: block;
  cursor: pointer;
  font-size: 1.3em;
  font-weight:bold;
  color: #FFF;
  text-decoration: none;
  background: url(none);
  vertical-align:middle;
}
ul.MenuBarHorizontal ul a, ul.MenuBarHorizontal ul a:visited {
  display: block;
  cursor: pointer;
  font-size: 1em;
  font-weight:normal;
  padding: 0.75em;
  color: #2d4051;
  text-decoration: none;
  background: #E6E6E6;
}

/* First Level of Navigation Hover Style */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus, ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {
  background: #0078c0 url(../images/bg_nav_hover.gif) repeat-x left top;
  color: #FFF;
  text-decoration: none;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal ul a.MenuBarItemHover, ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal ul a.MenuBarSubmenuVisible {
  background:#0078c0 url(none);
  color: #FFF;
}



#main_nav li ul, #main_nav li ul li {
  width:150px;
}

#main_nav li ul li {
  border-top:1px solid #999999;
}
#main_nav li ul li:first-child {
  border-top:none;
}

/*#main_nav li ul {
  filter:alpha(opacity=95);
  -moz-opacity:0.95;
  -khtml-opacity: 0.95;
  opacity: 0.95;
}*/


/* ----------------------------------------------------------------------*/
/* ---------->>> ACCORDION MENU <<<-----------*/
/* ----------------------------------------------------------------------*/

#side_nav { width: 218px; margin-bottom:20px; }
#p7TMM_1 { background: url(../images/sidenav_top.png) no-repeat left top; padding-top:12px; }
#p7TMM_1u1 {
  background: url(../images/sidenav_btm.png) no-repeat left bottom;
  padding-bottom:13px;
  border-top:1px solid #FFF;
}
#contentWrapper #navigation {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px;
  border: 1px solid #FFF;
  border-top: none;
  border-left: none;
}
#contentWrapper #navigation ul { padding: 0; margin: 0; }
#contentWrapper #navigation li {
  background: #0078c0;
  cursor: pointer;
  list-style-type: none;
  padding: 0;
  margin: 0;
  float: left;
  display: block;
  width: 100%;
}
#contentWrapper #navigation li.active>a { background: url(../images/close.gif) no-repeat right center; }
#contentWrapper #navigation li div {
  padding: 20px;
  background: #b2d6ec;
  display: block;
  clear: both;
  float: left;
  width: 218px;
}
#contentWrapper #navigation a {
  text-decoration: none;
  border-bottom: 1px solid #FFF;
  font: normal 1.1em/2em Arial, sans-serif;
  color: #FFF;
  padding: 0 10px;
  display: block;
  cursor: pointer;
  background: url(../images/open.gif) no-repeat center right;
}

/* Level 2 */
#contentWrapper #navigation li ul li { background: #66aed9; font-size: 0.9em; }


/* ----------------------------------------------------------------------*/
/* ---------->>> COLUMN 1 LEFT COL <<<-----------*/
/* ----------------------------------------------------------------------*/

.graybox {
  background: #e8e6e6 url(../images/bg_graybox.jpg) repeat-x left top;
  border-right: 1px solid #b9b8b8;
  border-left: 1px solid #b9b8b8;
  overflow:auto;
  padding:0px 12px;
  min-height:300px;
}
.graybox h1, .graybox h1 a {
  background: url(../images/bg_graybox_h1.gif) no-repeat left .5em;
  color:#0078c0;
  border-bottom: solid 1px #b6b5b5;
  font-size:2.4em;
  font-weight:normal;
  padding-left:20px;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> COLUMN 2 RIGHT COL <<<-----------*/
/* ----------------------------------------------------------------------*/

.quote_block {
  margin-bottom:20px;
}

.quote_block .quote {
  background:#FFF;
  border-left:solid 1px #b6b5b5;
  border-right:solid 1px #b6b5b5;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size:1.4em;
  font-style:italic;
  line-height:1.4em;
  padding:5px 15px;
}

.quote_block .attribute {
  color:#0078c0;
  font-size:1.2em;
  line-height:1.2em;
  padding:10px 15px 0px;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> COLUMN 3 MIDDLE COL <<<-----------*/
/* ----------------------------------------------------------------------*/

#top_images {width:455px; overflow:hidden; margin-bottom:20px;}
#top_images img {}

.redbar {
  background:#ce020c url(../images/bg_heading.jpg) repeat-y left top;
  overflow:hidden;
  width:455px;
}
.redbar h1 {
  background: url(../images/bg_heading_h1.gif) no-repeat 10px 5px;
  border-bottom:none;
  color:#FFF;
  font-size:2.8em;
  font-weight:normal;
  line-height:1.4em;
  margin-bottom:0px;
  padding:0px 0px 0px 55px;
  margin:0;
  border:0;
  outline:0;
}
.hidecol2 .redbar {
  background:#ce020c url(../images/bg_heading_wide.png) repeat-y left top;
  width:700px;
}
#col3 table.striped {
  width:455px;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> CONTENT FOOTER <<<-----------*/
/* ----------------------------------------------------------------------*/

#contentFooter {
  background: #231f20 url(../images/bg_contentFooter.gif) repeat-x left top;
  color:#b6b5b5;
  font-size:1.1em;
  line-height:2.6em;
  margin-top:10px;
  overflow:hidden;
  width:932px;
}

#contentFooter h3 {
  background: none;
  border-bottom: 1px solid #b6b5b5;
  color: #FFF;
  font-size: 1.4em;
  line-height: 1.6em;
  margin-bottom: .3em;
  padding:0px;
}

#contentFooter img {
  clear:both;
  margin-bottom:10px;
}
#contentFooter .pad {
  padding:10px 10px 0px;
}

.quarter {
  width:232px;
  float:left;
}

#contentFooter_divider {
  background: url(../images/contentFooter_divider.gif) repeat-y left top;
  overflow:hidden;
  width:932px;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> JQUERY STRIPING <<<-----------*/
/* ----------------------------------------------------------------------*/

table.striped tr.row_gray, table.striped tr.row_gray td {
  background: #EAEBEC;
}
table.striped td {
  padding:4px;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> FOOTER <<<-----------*/
/* ----------------------------------------------------------------------*/

/* Sets the style for unvisited links. */
#footer a,  #footer a:link { color: #b2d6ec; }
/* Sets the style for visited links. */
#footer a:visited { color: #b2d6ec; }
/* Sets the style for links on mouseover. */
#footer a:hover { color: #b2d6ec; }
/* Sets the style for a link that has focus. */
#footer a:focus { color: #666; }
/* Sets the style for a link that is being activated/clicked. */
#footer a:active { color: #666; }

/* ----------------------------------------------------------------------*/
/* ---------->>> WP TAGS THAT REQUIRE IMAGES <<<-----------*/
/* ----------------------------------------------------------------------*/

a.slideshowlink {
  background: url(../images/bg_h3.gif) no-repeat left .1em;
  color: #0078c0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.8em;
  font-weight: normal;
  line-height: 1.6em;
  padding-left:23px;
}

/* ----------------------------------------------------------------------*/
/* ---------->>> IE BACKGROUND FIX <<<-----------*/
/* ----------------------------------------------------------------------*/

/* divs that do not have a width set whose backgrounds do not display in IE 6*/
/* make sure these divs do not have margin or padding applied*/
#nav_container, #contentWrapper {
  /*width:100%;*/
}

/* ----------------------------------------------------------------------*/
/* ---------->>> CLEAR FIXES <<<-----------*/
/* ----------------------------------------------------------------------*/

#top_nav, #main_nav, #btm_nav, #contentFooter {
  clear:both;
  position:relative;
}

td.align_top { vertical-align:top; }
