// #0099ff = transparent blue
// #0066cc = hover blue
// blue = blue duh!
//
// colors                 = where used
// #000000 black          = a.tab, div.tabMain, iframe.tabContent, h4#title borders
// #E0FFFF light cyan     = a.tab border-color
// #659EC7 sky blue       = a.tab, a.tab.activeTab, div.tabMain, iframe.tabContent, h4#title border-color
// #B4CFEC slate gray2    = a.tab, a.tab:visited border-color and font
// #488AC7 steel blue3    = a.tab:hover background-color hover
// #C2DFFF slate grey1    = a.tab:hover border-color
// #2b65ec royal blue2    = a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited, div.tabMain, iframe.tabContent background-color
// #2554C7 royal blue3    = a.tab.activeTab, a.tab.activeTab:hover, div.tabMain, iframe.tabContent, h4#title border-color
// #151b54 Midngight Blue = a.tab:hover, a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited, font color
// #B4CFEC slate gray2    = a.tab:hover, a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited, background-color

div.tabBox {}

div.tabArea {
  font-size: 80%;
  font-weight: bold;
  padding: 0px 0px 3px 0px;
}

a.tab {
  background-color: #488ac7;
  border: 2px solid #000000;
  border-bottom-width: 0px;
  border-color: #2554c7 #659ec7 #659ec7 #2554c7;
  -moz-border-radius: .75em .75em 0em 0em;
  border-radius-topleft: .75em;
  border-radius-topright: .75em;
  padding: 2px 1em 2px 1em;
  position: relative;
  text-decoration: none;
  top: 3px;
  z-index: 100;
}

a.tab, a.tab:visited {
  color: white;
}

a.tab:hover {
  background-color: #488ac7;
  border-color: #c2dfff #b4cfec #b4cfec #c2dfff;
  color: #151b54;
}

a.tab.activeTab, a.tab.activeTab:hover, a.tab.activeTab:visited {
  background-color: #2b65ec;
  border-color: #659ec7 #2554c7 #2554c7 #659ec7;
  color: #151b54;
}

a.tab.activeTab {
  padding-bottom: 4px;
  top: 1px;
  z-index: 102;
}

div.tabMain {
  background-color: #2b65ec;
  border: 2px solid #000000;
  border-color: #659ec7 #2554c7 #2554c7 #659ec7;
  -moz-border-radius: 0em .5em .5em 0em;
  border-radius-topright: .5em;
  border-radius-bottomright: .5em;
  padding: .5em;
  position: relative;
  z-index: 101;
  width: 96%;
}

div.tabIframeWrapper {
  width: 100%;
}

iframe.tabContent {
  background-color: #2b65ec;
  border: 1px solid #000000;
  border-color: #2554c7 #659ec7 #659ec7 #2554c7;
  width: 100%;
  height: 28ex;
}

/******************************************************************************
* Additional styles.                                                          *
******************************************************************************/

h4#title {
  background-color: #2554C7;
  border: 1px solid #000000;
  border-color: #2554c7 #659ec7 #659ec7 #2554c7;
  color: #151B54;
  font-weight: bold;
  margin-top: 0em;
  margin-bottom: .5em;
  padding: 2px .5em 2px .5em;
}

