/* root element for tabs  */
.jtabs {
  list-style:none;
  border-bottom: 1px solid #ccc;
  margin:0 !important;
  padding:0;
  height:30px;
}

/* single tab */
.jtabs li { 
  float:left;   
  text-indent:0;
  padding:0;
  margin:0 !important;
  list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
.jtabs a {
  background-image: url('/graphics/content/tabs_green.png');
  background-position: -652px 0px;
  background-repeat: no-repeat no-repeat;
  font-size:14px;
  display:block;
  height: 30px; 
  color:#333; 
  line-height:30px;
  width: 111px;
  text-align:center;  
  text-decoration:none;
  padding:0px;
  margin:0px;  
  position:relative;
  top:1px;
}

.jtabs a:active {
  outline:none;    
}

/* when mouse enters the tab move the background image */
.jtabs a:hover {
  background-position: -652px -31px;  
  color:#fff;  
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
.jtabs .current, .jtabs .current:hover, .jtabs li.current a {
  background-position: -652px -62px;    
  cursor:default !important; 
  color:#000 !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
.jtabs .w1       { background-position: -519px 0; width:134px; }
.jtabs .w1:hover   { background-position: -519px -31px; }
.jtabs .w1.current { background-position: -519px -62px; }

/* width 2 */
.jtabs .w2       { background-position: -366px -0px; width:154px; }
.jtabs .w2:hover   { background-position: -366px -31px; }
.jtabs .w2.current { background-position: -366px -62px; }


/* width 3 */
.jtabs .w3       { background-position: -193px -0px; width:174px; }
.jtabs .w3:hover   { background-position: -193px -31px; }
.jtabs .w3.current { background-position: -193px -62px; }

/* width 4 */
.jtabs .w4       { background-position: -0px -0px; width:194px; }
.jtabs .w4:hover   { background-position: -0px -31px; }
.jtabs .w4.current { background-position: -0px -62px; }


/* initially all panes are hidden */ 
.jpanes .pane {
  display:none;    
}

.jpanes {
  padding: 20px 20px 20px 20px;
  height:290px;
  margin-left: 0px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-top: none;
  background-image: url('/graphics/content/scrollable_background_short.png');
  background-repeat: no-repeat;
}

.jpaneslarge {
  background-image: url('/graphics/content/scrollable_background_short_large.png');
}

.jsinglepane {
  border: none;
  border:0;
}

/* root element for scrollable */
.jscrollable {
  height: 290px;
  width: 635px;
}

.jpaneslarge .jscrollable {
  width: 810px;
}

.jScrollPaneContainer {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.jScrollPaneContainer {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-right:20px;
}

.jScrollPaneTrack{
  position:absolute;
  cursor:pointer;
  right:0;top:0;
  height:288px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #ccc;
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
}

.jScrollPaneDrag{
  position:absolute; 
  background-color:#999;
  cursor:pointer;
  overflow:hidden;
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
}

