/* root element for tabs - */
ul.tabs { 
        list-style:none; 
        margin:0  0 0 60px; 
        padding:0;
        height:22px;
}

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

/* link inside the tab. uses a background image */
ul.tabs a { 
        background: url(/images/tipssprite2.png) no-repeat;
        display:block;
        height: 20px;  
        line-height:20px;
        width: 100px;
        text-align:center;
        text-decoration:none;
        color:#333;
        padding:0px;
        margin:0px;
        position:relative;

}
ul.tabs li#today, ul.tabs li#today a { 
        width: 150px;
}
ul.tabs li#today a { 
        background: url(/images/tipssprite2.png) no-repeat 3px -15px;

}
ul.tabs li#today a:hover { 
        background: url(/images/tipssprite2.png) no-repeat 3px 3px;

}
ul.tabs li#today a.current { 
        background: url(/images/tipssprite2.png) no-repeat 3px 3px;
}

ul.tabs li#tomorrow a { 
        background: url(/images/tipssprite2.png) no-repeat -145px 3px;

}
ul.tabs li#tomorrow a:hover { 
        background: url(/images/tipssprite2.png) no-repeat -145px -15px;

}
ul.tabs li#tomorrow a.current { 
        background: url(/images/tipssprite2.png) no-repeat -145px -15px;

}

ul.tabs li#tomorrow a {
		width:105px;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
        background-position: -420px -62px;
        color:#fff;
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
        background-position: -420px -62px;
        cursor:default !important; 
        color:#000 !important;
}

/* initially all panes are hidden */ 


div.panes div {
        display:none;
        padding:0px;
        clear:left;
}
