/*****************************************************************************
 pivot_table.css
 
******************************************************************************
 Written in 2004 by 
    Brian Douglas Skinner <brian.skinner@gumption.org>
  
 Copyright rights relinquished under the Creative Commons  
 Public Domain Dedication:
    http://creativecommons.org/licenses/publicdomain/
  
 You can copy freely from this file.  This work may be freely reproduced, 
 distributed, transmitted, used, modified, built upon, or otherwise exploited
 by anyone for any purpose.
  
 This work is provided on an "AS IS" basis, without warranties or conditions 
 of any kind, either express or implied, including, without limitation, any 
 warranties or conditions of title, non-infringement, merchantability, or 
 fitness for a particular purpose. You are solely responsible for determining 
 the appropriateness of using or distributing the work and assume all risks 
 associated with use of this work, including but not limited to the risks and 
 costs of errors, compliance with applicable laws, damage to or loss of data 
 or equipment, and unavailability or interruption of operations.

 In no event shall the authors or contributors have any liability for any 
 direct, indirect, incidental, special, exemplary, or consequential damages,
 however caused and on any theory of liability, whether in contract, strict 
 liability, or tort (including negligence), arising in any way out of or in 
 connection with the use or distribution of the work.
*****************************************************************************/

html, body {
  background: #ffffff;
  color: rgb(0%,0%,0%);
}

#mainArea {
  background: rgb(99%,99%,100%);
  border-top: solid thin #000000;
}

.pivotTable {
  font-family: Arial, sans-serif;
  font-size: x-small;
  background: silver;
}

.pivotTable th {
  background: rgb(90%,90%,100%);
  padding: 2px;
}

.pivotTable tr {
  background: white;
}

.even {
  background: rgb(99%,99%,100%);
  padding: 2px 2px 2px 10px;
  text-align: right;
}

.odd {
  background: rgb(100%,100%,80%);
  padding: 2px 2px 2px 10px;
  text-align: right;
}

.pivotTable tr:hover {
  background: yellow !important;
}

.pivotTable td:hover {
  background: yellow !important;
}

.layoutButton {
  width: 100%;
  height: 100%;
}

.outerBar {
  width: 400px;
  padding: 0px;
  text-align: left;
}

.innerBar {
  background: rgb(0%, 100%, 0%);
  border: none;
  text-align: right;
  color: white;
}

#debugOutput {
  font-family: Courier, monospace;
  font-size: x-small;
  border-style: inset;
  text-align: left;
  visibility: hidden;
  display: none;
}

a, a:link, a:visited, a:active {
  font-weight: normal;
  text-decoration: none;
  border-bottom: 1px dotted;
}

a:hover {
  font-weight: normal;
  text-decoration: none;
  border-bottom: 1px solid;
}



