/* tab component --------------- */
div.tab-items,
div.tab-content {
  position: relative;
}
div.tab-items {
  z-index: 2; 
}
.tab-container {
  float:left;
  padding-bottom: 2em;
}
.tab-container ul.tab-items {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.tab-items li {
  float: left;
  margin: 0 .3em 1px 0;
  color: #fff;
  line-height: 2;
  background-color: #888;
  border: 1px solid #ccc;
  border-width: 1px 1px 0;
  -moz-border-radius: 12px 12px 0 0;
  -webkit-border-radius:12px 12px 0 0;
  border-radius:  12px 12px 0 0;
  behavior: url(/resources/dyn/files/353119z87610c16/_fn/PIE.htc);
  cursor: pointer;
  text-transform: uppercase;
  cursor: hand; /* sets cursor pointer for IE */
  position: relative;

}
.tab-items li:hover {
  color: #333; 
}
.tab-items li span {
  display: block;
  padding:0 1em;
}
.tab-items li.tab-selected {
  background: #E6E6E6;
  font-weight: bold;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: -1px;
  border-width: 1px 1px 1px;
  color: #333;
}
.tab-content {
  display: none;
  line-height: 1.5em;
  border: 1px solid #ccc;
  padding: 2em 2em 1em;
  -moz-border-radius: 0 12px 12px 12px;
  -webkit-border-radius: 0 12px 12px 12px;
  border-radius: 0 12px 12px 12px;
   background: #E6E6E6;
  margin-top: -1px;
}

.tab-content h2 {
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 8px;
}
.tab-content ul {
  list-style: disc;
  padding-left: 2.5em;
  margin-top: 1em;
}
