
/* begin css tabs */
 
ul.trimbleTabs { /* general settings */
   text-align: left; /* set to left, right or center */
   margin: 1em 0 1em 0; /* set margins as desired */
   border-bottom: 1px solid #6c6; /* set border COLOR as desired */
   list-style-type: none;
   padding: 3px 10px 3px 10px; /* THIRD number must change with respect to padding-top (X) below */
}
 
ul.trimbleTabs li { /* do not change */
   display: inline;
}
 
ul.trimbleTabs li.selected { /* settings for selected tab */
   border-bottom: 1px solid #fff; /* set border color to page background color */
   background-color: #fff; /* set background color to match above border color */
}
 
ul.trimbleTabs li.selected a { /* settings for selected tab link */
   background-color: #fff; /* set selected tab background color as desired */
   color: #000; /* set selected tab link color as desired */
   position: relative;
   top: 1px;
   padding-bottom: 4px; /* must change with respect to padding (X) above and below */
}
 
ul.trimbleTabs li a { /* settings for all tab links */
   font: bold 16px verdana, arial, sans-serif; /* set font as desired */
   padding: 3px 4px; /* set padding (tab size) as desired; FIRST number must change with respect to padding-top (X) above */
   border: 1px solid #6c6; /* set border COLOR as desired; usually matches border color specified in #tabnav */
   background-color: #cfc; /* set unselected tab background color as desired */
   color: #666; /* set unselected tab link color as desired */
   margin-right: 0px; /* set additional spacing between tabs as desired */
   text-decoration: none;
   border-bottom: none;
}
 
ul.trimbleTabs a:hover { /* settings for hover effect */
   background: #fff; /* set desired hover color */
}
 
/* end css tabs */

.animatedtabs { overflow: hidden; width: 900px; white-space:nowrap; }
.animatedtabs ul { list-style-type: none; margin: 0; padding: 0; }
.animatedtabs li { float: left; margin: 0; padding: 0; }
.animatedtabs a { 
   float: left; 
   position: relative; 
   border:1px solid #000000; 
   top: 5px; /* 1) Number of pixels to protrude up for selected tab. Should equal (3) MINUS (2) below */ 
   background: #efefef; 
   margin: 0; 
   margin-right: 3px; /*Spacing between each tab*/ 
   padding: 0 7px 0 7px; 
   text-decoration: none; 
   cursor: pointer; 
}
.animatedtabs a span { 
   float: left; 
   position: relative; 
   display: block;  
   padding: 5px 0px 4px 0px;/* 2) Padding within each tab. The 3rd value, or 3px, should equal (1) MINUS (3) PLUS (4) */ 
   font-weight: bold; 
   color: black; 
}

.animatedtabs .selected a { 
   top: 1px; /*(4)*/
   background: #fff; 
}
.animatedtabs .selected a span { 
   color: black; 
   padding-bottom: 8px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */ 
   top: 0; 
}

.animatedtabs a:hover { 
   background-position: 0px -125px; 
   top: 1px; 
}
.animatedtabs a:hover span { 
   padding-bottom: 8px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */ 
   top: 0; 
}

.tabContentsContainer { border: solid 1px #000000; padding: 12px; display: none; }
