    /*
     * See jQuery UI Tabs documentation:
     * http://docs.jquery.com/UI/Tabs/Theming
     */
    
    ul.ui-tabs-nav {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
        ul.ui-tabs-nav  li {
            float: left;
			border: 0;
            margin-right: 13px;
        }
		
		ul.ui-tabs-nav li a {
			display: block;
			height: 45px;
			background-position: 0 -90px;
			outline: 0;
		}
		
			#nav #welcome {
				width: 122px;
				background-image: url( ../images/tab_welcome.png );
			}
			#nav #depth {
				width: 149px;
				background-image: url( ../images/tab_depth.png );
			}
			#nav #action {
				width: 115px;
				background-image: url( ../images/tab_action.png );
			}
			#nav #download {
				width: 145px;
				background-image: url( ../images/tab_download.png );
			}
			
		#nav a:hover {
				background-position: 0 -45px;
			}
        
        ul.ui-tabs-nav li.ui-tabs-selected a {
            background-position: 0 0;			
        }
                
    div.ui-tabs-panel {
        clear: both;
       	border: 0;
        text-align: left;
    }
    
    div.ui-tabs-hide {
        display: none;
    }
	
/* Additional IE specific bug fixes... */
* html .ui-tabs-nav { /* auto clear @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-tabs-nav  { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

