/* viewport for all tabs and the content managed by the tabs */
 .tabviewport {
   position:relative;
   min-width:100px;
  }
/* container for each tab */
 .tabcontainer {
   float:left;
  }
 .tab {
   position:relative;
   padding-left:1px;
  }
/*** positioning and sizing for tab buttons/images ***/
 .tabButton {
   font-size:.75em;
   font-family:sans-serif;
   font-weight:bolder;
   text-align:center;
   vertical-align:top;
  }
 .LC { /* left corner */
   position:absolute; width:7px;
   margin:0px; padding:0px;
   top:0px; left:1px;
  }
 .RC { /* right corner */
   position:absolute; width:7px;
   margin:0px; padding:0px;
   top:0px;
   left:134px; /* change tab/tabButton width equal to change here */
  }
 .tab, .tabButton, .B {
   width:140px; /* change RC left equal to change here */
  }
 .tab, .tabButton {
   height:23px;
  }
/***/

 .tabActive, .tabDiv {
   color:#000000;
   background-image:URL("bgLight.png");
   background-color:#D4DDED;
  }
 .tabInactive {
   color:#FFFFFF;
   background-image:URL("bgDark.png");
   background-color:#4A659B;
   cursor:pointer;
  }
 .tabDiv {
    width:138px; height:16px;
    font-size: 8pt;
    font-family: Arial;
    font-weight: bolder;
    text-align: center;
    vertical-align: top;
    padding-top:6px;
  }

 .tabActive, .tabInactive, .tabDiv {
   border-top:1px solid #4A659B; border-left:1px solid #4A659B; border-right:1px solid #4A659B;
  }
 .tabInactive {
   border-bottom:1px solid white;
  }
  tab input[type="submit"] {
   border-top:1px solid red; border-left:1px solid red; border-right:1px solid red;
  }

 .content { 
   clear:both; /* clears floating layout from the tabs */
   background-image:URL("bgLight.png");
   border-left:1px solid #4A659B; border-right:1px solid black; border-bottom:1px solid black;
  }
 .TL {
   border-top:1px solid black;
  }
 .subContent { 
   margin-top:7px; margin-bottom:7px; 
   padding-top:20px;
   border:1px solid black;
  }

/*** content common margins and padding ***/
 .tabviewport {
   margin-left:-1px;
  }
 .content, .subContent {
   padding-left:20px; padding-right:20px; padding-bottom:7px;
  }
/***/



