@charset "utf-8";
/* CSS Document */

/* CSS Document */
@charset "utf-8";
/* ~~ This is the layout information. ~~ 
1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. 
   This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, 
   it will be added to the width you define to create the *total* width. You may also choose to remove the padding on 
   the element in the div and place a second div within it with no width and the padding necessary for your design.
*/
/* ========= Custom Font ========= */
@font-face {
    font-family: 'GestaRegular';
    src: url('type/Gesta-Regular-webfont.eot');
    src: url('type/Gesta-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/Gesta-Regular-webfont.woff') format('woff'),
         url('type/Gesta-Regular-webfont.ttf') format('truetype'),
         url('type/Gesta-Regular-webfont.svg#GestaRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GestaMediumItalic';
    src: url('type/Gesta-MediumItalic-webfont.eot');
    src: url('type/Gesta-MediumItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/Gesta-MediumItalic-webfont.woff') format('woff'),
         url('type/Gesta-MediumItalic-webfont.ttf') format('truetype'),
         url('type/Gesta-MediumItalic-webfont.svg#GestaMediumItalic') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GestaMedium';
    src: url('type/Gesta-Medium-webfont.eot');
    src: url('type/Gesta-Medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/Gesta-Medium-webfont.woff') format('woff'),
         url('type/Gesta-Medium-webfont.ttf') format('truetype'),
         url('type/Gesta-Medium-webfont.svg#GestaMedium') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GestaLightItalic';
    src: url('type/Gesta-LightItalic-webfont.eot');
    src: url('type/Gesta-LightItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/Gesta-LightItalic-webfont.woff') format('woff'),
         url('type/Gesta-LightItalic-webfont.ttf') format('truetype'),
         url('type/Gesta-LightItalic-webfont.svg#GestaLightItalic') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GestaLight';
    src: url('type/Gesta-Light-webfont.eot');
    src: url('type/Gesta-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/Gesta-Light-webfont.woff') format('woff'),
         url('type/Gesta-Light-webfont.ttf') format('truetype'),
         url('type/Gesta-Light-webfont.svg#GestaLight') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GestaItalic';
    src: url('type/Gesta-Italic-webfont.eot');
    src: url('type/Gesta-Italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/Gesta-Italic-webfont.woff') format('woff'),
         url('type/Gesta-Italic-webfont.ttf') format('truetype'),
         url('type/Gesta-Italic-webfont.svg#GestaItalic') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GestaBoldItalic';
    src: url('type/Gesta-BoldItalic-webfont.eot');
    src: url('type/Gesta-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/Gesta-BoldItalic-webfont.woff') format('woff'),
         url('type/Gesta-BoldItalic-webfont.ttf') format('truetype'),
         url('type/Gesta-BoldItalic-webfont.svg#GestaBoldItalic') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GestaBold';
    src: url('type/Gesta-Bold-webfont.eot');
    src: url('type/Gesta-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/Gesta-Bold-webfont.woff') format('woff'),
         url('type/Gesta-Bold-webfont.ttf') format('truetype'),
         url('type/Gesta-Bold-webfont.svg#GestaBold') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* ========= HTML Elements ========= */
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color:#333; 
  font:14px Arial, Helvetica, sans-serif;
  text-align:left; 
}
/* ~~ 
  Removing the top margin and padding gets around an issue where margins can escape from their containing div. 
  The remaining bottom margin will hold it away from any elements that follow. 
  The remaining margins allow for complete control of placement.

  Due to variations between browsers, it's best practice to zero padding and margin on lists. 
  For consistency, you can either specify the amounts you want here, 
  or on the list items (LI, DT, DD) they contain. 
  Remember that what you do here will cascade to the .nav list unless you write a more specific selector. 
~~ */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}
ul, ol, dl, li, dt, dd  { 
  padding: 0;
  margin: 0;
  line-height: 20px;
}
h1 {
  color:#000; 
  font:30px GestaRegular, Arial, Helvetica, sans-serif;
  line-height: 30px;
  text-align:left;	
}
h2 {
  color:#000;
  font:26px GestaRegular, Arial, Helvetica, sans-serif;
  text-align:left;
}
h3 {
  color:#000;
  font:20px Arial, Helvetica, sans-serif;
  line-height: 20px;
}
h4 {
  color:#000;
  font:16px Arial, Helvetica, sans-serif;
  text-align:left;	
  line-height: 20px;
	font-weight:bold;
}
h5, h6 {
  color:#000;
  font:14px Arial, Helvetica, sans-serif bold;
  text-align:left;
	line-height: 16px;
}
p {
  color:#333333; 
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 22px;
}
/* ~~ 
  Styling for your site's links must remain in this order 
  including the group of selectors that create the hover effect.
  LoVe - HAte + Focus
    a:link
    a:visited
    a:hover
    a:focus
~~ */
a, 
a:link, 
a:visited {
  color: #666666;
  text-decoration: none;
  border-style: none; 
  outline-style: none; 
}     
a:hover, 
a:active, 
a:focus  {
  color: #ff920a; /* default warning hover - orange */
  text-decoration: none;
  border-style: none; 
  outline-style: none; 
} 
/* ~~ 
  Removes the default blue border displayed in some browsers around an image when it is surrounded by a link.
~~ */
a img { 
  border: none;
}
sup { 
  position: relative;
  top: -3px;
  vertical-align: top;
  font-size: 70%;
}
/* ========= Page Layout IDs ========= */
#top-wrapper{
	padding-top: 40px;
	background-image: url(images/top-background-gradient.gif);
	background-repeat: repeat-x;
	background-position: bottom;
}
#bottom-wrapper {
	padding-bottom: 80px;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #ffffff;
}
#top-container, 
#bottom-container {
	width: 940px;
	padding: 0px 10px;
	margin: 0px auto;
}
#bottom-container {
	padding-top: 40px;
}
/* set the height to the logo image + 30px for padding */
#header {
	position: relative;
	width: 940px;
	height: 106px;
}
#main-title {
	height: 60px;
}
/* ========= Header Logo ========= */
#site-logo {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 273px;
	height: 76px;
}
/*... ========= Header Alert Icon (Sign up for Alerts) ========= ...*/
#alert-icon {
  position: absolute;
  top: 10px;
  right: 0px;
  width: 350px;
  height: 90px;
  font-family: GestaRegular, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #6f6b6c;
}
#alert-icon > div {
  position: relative;
  float: right;
  width: 450px;
  height: 90px;
}
#alert-icon img {
  padding-right: 10px;
  vertical-align: -5px;
}
#alert-icon .fi4 {
	text-align: right;
	white-space: nowrap;
}
#alert-icon .fi4 a {
	text-decoration: none;
}
/*.. ========= Stock Scroller Styles ========= ..*/
#stock-scroller-wrapper {
  position: absolute;
  top: 70px;
  right: 0px;
  width: 550px;
  height: 50px;
}
#stock-scroller .quoteLine {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #888;
  text-align: right;
}
#stock-scroller .quoteLine > div {
  overflow: hidden;
}
#stock-scroller .ticker {
  font-weight: bold;
  color: #707070;
  padding-right: 10px;
}
#stock-scroller .trade-value {
  padding-right: 10px;
  color: #555;
}
#stock-scroller img {
    padding-right: 5px;
}
#stock-scroller .value-change {
    padding-right: 5px;
}
#stock-scroller .trend-up .value-change,
#stock-scroller .trend-up .value-change-percent {
    color: #009900;
}
#stock-scroller .trend-down .value-change,
#stock-scroller .trend-down .value-change-percent {
    color: #cc3300;
}
#stock-scroller .value-change-percent {
    padding-right: 10px;
}
#stock-scroller .trade-date {
   padding-left: 15px; 
}
/* ========= Top (Primary) Navigation ========= */
#top-navigation {
  position: relative;
}
table#navmenu {
  border-collapse: collapse; 
  border-spacing: 0;
  margin: 0; 
  padding: 0; 
  position: relative;  
  width: 940px;
}
table#navmenu td {
  height: 50px;
  margin: 0; 
  padding: 0; 
  border: 0;
  background-color: #636063; 
}

/* Level 1 - link */
table#navmenu td a, 
table#navmenu td a:link, 
table#navmenu td a:visited {
  margin: 0px;
  border: 0px;
  padding-top: 15px;
  display: block;
  font-family: GestaLight, Arial, Helvetica, sans-serif; 
  background: none;
  height: 35px;
  text-decoration: none;
  color: #ffffff;
  font-size: 22px;  
  line-height: 22px;
}

/* About Us */
table#navmenu td#navmenu-about, 
table#navmenu td#navmenu-about > a, 
table#navmenu td#navmenu-about > a:link,
table#navmenu td#navmenu-about > a:visited {
  width: 142px; 
  text-align:center;
  text-wrap: none;
}
/* Investor Relations */
table#navmenu td#navmenu-invest, 
table#navmenu td#navmenu-invest a {
  width: 210px;
  text-align:center;
  text-wrap: none;
}
/* News */
table#navmenu td#navmenu-news, 
table#navmenu td#navmenu-news a {
  width: 100px;
  text-align:center;
  text-wrap: none;
}
/* Corporate Responsibility */
table#navmenu td#navmenu-cr, 
table#navmenu td#navmenu-cr a {
  width: 252px;
  text-align:center;
  text-wrap: none;
}
/* search */
table#navmenu td#navmenu-search {
  border: 0;
  margin: 0;
  padding: 0;
  width: 231px;
}
table#navmenu td#navmenu-search .search-wrapper {
  width: 231px;
  height: 50px;
  position: relative;
}
/* Menu Item Divider */
table#navmenu td.navmenu-divider { 
  width: 1px;
}
table#navmenu td.navmenu-divider div {
  width: 1px;
  height: 80%;
  overflow: hidden;
  font-size: 6px;
  background-color: #ffffff;
}
table#navmenu td.navmenu-divider-end { 
  width: 2px;
}
table#navmenu td.navmenu-divider-end div { 
  width: 2px;
  height: 100%;
  overflow: hidden;
  font-size: 6px;
  background-color: #ffffff;
}
/* Root Menu Hover Persistence */
/*  Level 1 - hover */
table#navmenu td#navmenu-about > a:hover, 
table#navmenu td#navmenu-about:hover > a,
table#navmenu td#navmenu-about > a:active, 
table#navmenu td#navmenu-about:active > a,
table#navmenu td#navmenu-about > a:focus, 
table#navmenu td#navmenu-about:focus > a {
  color: #666666;
}


/* navmenu-about */
table#navmenu td#navmenu-about.current,
table#navmenu td#navmenu-about:hover, 
table#navmenu td#navmenu-about.current a ,
table#navmenu td#navmenu-about a:hover,
table#navmenu td#navmenu-about:hover a {
  background: #831f82;
  color: #FFF;
}
/* #navmenu-invest */
table#navmenu td#navmenu-invest.current,
table#navmenu td#navmenu-invest:hover, 
table#navmenu td#navmenu-invest.current a, 
table#navmenu td#navmenu-invest a:hover,
table#navmenu td#navmenu-invest:hover a {
 background: #67AD2F; 
 color: #FFF;
}
/* #navmenu-News */
table#navmenu td#navmenu-news.current,
table#navmenu td#navmenu-news:hover, 
table#navmenu td#navmenu-news.current a 
table#navmenu td#navmenu-news a:hover,
table#navmenu td#navmenu-news:hover a {
 background: #4bbecf; 
 color: #FFF;
}
/* #navmenu-cr */
table#navmenu td#navmenu-cr.current,
table#navmenu td#navmenu-cr:hover, 
table#navmenu td#navmenu-cr.current a, 
table#navmenu td#navmenu-cr a:hover,
table#navmenu td#navmenu-cr:hover a {
 background: #00519e;
 color: #FFF;
}
/* ========= bottom-container styles ========= */
#bottom-container a,
#bottom-container a:link,
#bottom-container a:visited {
	color: #6f6b6c; 
}
#bottom-container a:hover,
#bottom-container a:active,
#bottom-container a:focus {
  color: #ff920a;  /* default warning hover - orange */
}
/* ========= Footer ICONS ========= */
#footer-icons {
  position: relative;
  width: 940px;
  font-family: GestaRegular, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #6f6b6c;
}
/*  based on only 4 divs - set to [1...]px if % causes any problems */
#footer-icons > div {
  width: 25%; 
  float: left;
}
#footer-icons img {
  padding-right: 10px;
  vertical-align: -5px;
}
#footer-icons .fi2, #footer-icons .fi3 {
	text-align:center;
}

#footer-icons .fi4 {
	text-align:right;
}

/* ========= Footer NAV ========= */
#footer-nav {
  padding-bottom: 30px;
  color: #636063;
  font-family: GestaRegular, Arial, Helvetica, sans-serif;
  font-size: 18px;
}
#footer-nav div {
  width: 25%;
  float: left;
}
#footer-nav p.hdr {
  font-size: 16px;
	padding-bottom: 15px;  
}
#footer-nav p.hdr a, 
#footer-nav p.hdr a:visited, 
#footer-nav p.hdr a:hover, 
#footer-nav p.hdr a:active, 
#footer-nav p.hdr a:focus {
  font-family: GestaRegular, Arial, Helvetica, sans-serif;
/*  color: #6f6b6c; */
} 
#footer-nav p.lnk, #footer-nav p.lnk a{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
	line-height: 20px; 
}
#footer-nav p.lnk a:hover, 
#footer-nav p.lnk a:active, 
#footer-nav p.lnk a:focus {
  color: #ff920a; /* default warning hover - orange */
}
/* ========= Footer Copyright ========= */
#footer-copy {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #ffffff;
}
#footer-copy-content, #footer-copy-content a {
  padding-bottom: 0px;
  padding-top: 10px;
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #6f6b6c; 
}
#footer-copy-content div {
  float: left;
}
#footer-copy-content p {
  text-align: right;
}
#footer-copy-content a:hover, 
#footer-copy-content a:active, 
#footer-copy-content a:focus {
  color: #ff920a; /* default warning hover - orange */
/*  text-decoration:underline; */
}  
/* ========= Common Classes ========= */
.header-bottom-padding {
  padding-bottom: 20px;
}

.header-bottom-padding-short {
  padding-bottom: 5px;
}

.header-bottom-padding-med {
  padding-bottom: 15px;
}
.center-div{
  margin-left: auto;
  margin-right: auto;
}
.clearfloat { /* this class can be placed on a br or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
  clear:both;
  height:0;
  font-size: 1px;
  line-height: 0px;
}
/**  ??????????? not sure if I need this or not - it's the default class for the <li> elements above **/
.null {
}
/* Bottom/Footer Layout === */
.footer-divider {
  padding-top: 20px; 
  padding-bottom: 20px;
}
/* ========= Gradients ========= */
.bottom-wrapper-gradient {
  background: #e8e8e8; /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U4ZThlOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZmVmZWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top,  #e8e8e8 0%, #efefef 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e8e8e8), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #e8e8e8 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #e8e8e8 0%,#efefef 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #e8e8e8 0%,#efefef 100%); /* IE10+ */
  background: linear-gradient(top,  #e8e8e8 0%,#efefef 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8e8e8', endColorstr='#efefef',GradientType=0 ); /* IE6-8 */
}

/* ========= Pop Up Alert ========= */
#popup_container {     
min-width: 300px;  /* Dialog will be no smaller than this */     
max-width: 600px;  /* Dialog will wrap after this width */     
background: #fff;     
border: solid 5px #4f4f4f;     
} 

#popup_content {     
background: 16px 16px no-repeat;     
padding: 1em 1.75em;     
margin: 0em; 
} 

#popup_content.alert {     
background-image: url(); 
} 

#popup_content.confirm {     
background-image: none; 

} #popup_content.prompt {     
background-image: url(); 
} 

#popup_message {     
/*    padding-left: 48px;  */
} 

#popup_panel {     
text-align: center;     
margin: 1em 0em 0em 1em; 
} 

#popup_prompt {     
margin: .5em 0em; 
}
