/* root element for tabs  */
ul.tabs { 
    list-style:none; 
    margin:0 !important; 
    padding:0;  
    border-bottom:1px solid #666;   
    height: 38px;
    width: 100%;
}

/* single tab */
ul.tabs li { 
    float:left;  
    text-indent:0;
    padding:0;
    margin:0 !important;
    list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a { 
    background: url(../images/tabs/1.png) no-repeat 0 0;
    outline: none;
    font-size:14px;
    display:block;
    height: 32px;  
    line-height:30px;
    width: 212px;
    text-decoration:none;
    color:#333;
    padding: 6px 0 0 0;
    margin:0px; 
    position:relative;
    top:1px;
    font-weight: bold;
    text-align: left;
    padding-left: 10px;
}

ul.tabs a:active {
    outline:none;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
    background: url(../images/tabs/2.png) no-repeat 0 0;
    color:#fff; 
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
    background: url(../images/tabs/3.png) no-repeat 0 0;
    cursor:default !important; 
    color:#000 !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */

/* initially all panes are hidden */ 
div.panes div.pane {
    display:none;       
}

.panes {
    background-image: url(../images/home-box_bottom2.png);
    background-repeat: no-repeat;
    width: 493px; /*513*/
    height: 260px; /*272*/
    padding: 20px 0 0 22px;
}

div.panes div {
    height: 243px;
    width: 475px;
    background-color: transparent; 
    background-repeat: no-repeat;
    background-position: right bottom;
    font-size: 18px;
    line-height: 21px;
}

div.panes div ul {
    margin: 0 0 0 10px;
    list-style-type: disc;
    padding: 0 0 0 5px;
}
