
/**  Copyright (c) 2007-2009 Webplus, Inc. All rights reserved.  **/

/**  Description: defines style for individual ids and classes not covered in base.css, layout.css, and forms.css  **/

/* palette info:

         Orange :  #f7a118
Washed-out Blue :  #f9fbfe
      Soft Blue :  #e2ebf2
      HARD BLUE :  #00f

    Error (red) :  #c00
Success (green) :  #090

*/

/**********************/
/**  GENERAL/GLOBAL  **/
/**********************/

body {
  background-color: #e2ebf2;
  font-family: arial, helvetica, sans-serif;
  font-size: 10pt;
  line-height: 1.65em;
}

h1 { font-size: 20pt; line-height: 1.35em; }
h2 { font-size: 16pt; line-height: 1.35em; }
h3 { font-size: 12pt; line-height: 1.35em; }

a {
  color: #00f;
  text-decoration: underline;
}

.error {
  color: #c00;
}
.success {
  color: #090;
}

.group {
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.center {
  /* needed quite often */
  text-align: center;
}

.no-buffer {
  /* used to prevent auto padding/margin of <h*> or <p> */
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hide-text {
  padding: 0 !important;
  text-indent: -9999px;
}

table.shrinkwrap {
  /* used to center block level elements */
  margin: 0 auto;
}

.small-font {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 8pt;
}

.copyright {
  text-align: center;
}

.adslot {
  padding: 0;
}

.p {
  padding: .55em 0;
}
/* matches <p> from base.css */
/* mainly used for adslot divs */

/***************************/
/**  NEWS / PRESSRELEASE  **/
/***************************/

/**  news-list.wml and pressrelease-list.wml  **/

ul.news-list {
  border-top: 1px solid #f7a11a;
  list-style-type: none;
  margin: 10px 0 15px;
  padding: 0 !important;
}

.news-list li {
  border-bottom: 1px solid #f7a11a;
  margin: 0 !important;
  padding: 5.5pt 0;
  position: relative;
  overflow: hidden;
}
.news-list li.odd {
  background-color: #f9fbfe;
}

.news-list li span.news-date {
  display: block;
  float: left;
  text-align: center;
  width: 110px;
}

.news-list li span.news-headline {
  display: block;
  float: left;
  width: 530px;
}

/***************/
/**  TOOLTIP  **/
/***************/

.tooltip {
  cursor: help;
  outline: 0;
  position: relative;
  text-decoration: none;
  z-index: 50;
}
.tooltip img { border: none; }
.tooltip span { display:none; }

.tooltip:hover {
  cursor: help;
  z-index: 51;
}
.tooltip:hover span {
  background-color: #E2EBF2;
  border: 2px solid #000;
  color: #000;
  cursor: default;
  display: block;
  font-family: verdana, sans-serif;
  font-size: 10pt;
  font-weight: normal;
  line-height: 13pt;
  padding: 8px;
  position: absolute;
  text-align: left;
  width: 400px;
}

.tooltip:active { outline:none; }
.tooltip:focus { -moz-outline-style:none; }

.tooltip span.upleft { right:10px; bottom:25px; }
.tooltip span.upright { left:15px; bottom:25px; }
.tooltip span.downleft { right:10px; top:25px; }
.tooltip span.downright { left:25px; top:25px; }
