.etabs {
	margin: 0;
	padding: 0;
}
.tab-container {
	margin: 0px 0px 0px 20px;
	width: 620px;
}
.panel-container {
    background-color: #fff;
    border: 1px solid #cccccc;
    padding: 10px;    	
 	margin-bottom: 10px;
 }

.tab {
	display: inline-block;
	zoom:1; *display:inline;	
	border: 1px solid #bcb9b9;
	position: relative;
	padding: 0px;	
	
	background: rgb(216, 216, 216);
	background: -moz-linear-gradient(90deg, rgb(216, 216, 216) 30%, rgb(182, 182, 182) 70%);
	background: -webkit-linear-gradient(90deg, rgb(216, 216, 216) 30%, rgb(182, 182, 182) 70%);
	background: -o-linear-gradient(90deg, rgb(216, 216, 216) 30%, rgb(182, 182, 182) 70%);
	background: -ms-linear-gradient(90deg, rgb(216, 216, 216) 30%, rgb(182, 182, 182) 70%);
	background: linear-gradient(180deg, rgb(216, 216, 216) 30%, rgb(182, 182, 182) 70%);
	
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
}
.tab a:link, .tab a:visited {
	font-size: 14px;
	color: #fff;
	font-weight: normal;
	line-height: 2em;
	display: block;
	padding: 0 10px;
	outline: none;
	
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7);
	}
.tab a:hover {
	text-decoration: none;
	font-weight: normal;
}
.tab.active {
	background-color: #fff;
	background: none;
	color: #000;
	font-weight: normal;
	padding-top: 1px;
	position: relative;
	top: 1px;
	border: 1px solid #bcb9b9;
	border-bottom: 1px solid #fff;
}
 .tab a.active {
 	color: #000;
 	font-weight: normal;
 	padding: 0 10px;
 	text-shadow: none;
}
.tab-container ul li:first-child {
	width: 70px !important;
}
    

#nav {
    margin:0;
    padding:0;
    list-style: none;
    position: absolute;
    top: 1px;
    left: -81px;    
}    
    
    /* make the LI display inline */
    /* it's position relative so that position absolute */
    /* can be used in submenu */

.gallery-arrow {
    position: absolute;
	top: 2px;
	left: 100px;
}   

#nav li {
	position: relative;
	
	float:left;
        display:block;        
        z-index:500;
        margin:0 1px;
    }
        
    /* this is the parent menu */
    #nav li a {
        display:block;
        padding:8px 5px 0 5px;
        font-weight:700;
        height:23px;
        text-decoration:none;
        color:#fff;
        text-align:center;
        color:#333;
    }
    #nav li a:hover {
        color:#fff;
    }
    
    /* you can make a different style for default selected value */
    #nav a.selected {
        color:#f00;
    }
    
/* submenu, it's hidden by default */

#nav ul {
	position: absolute;
	top: 25px;
	left: -20px;
	display: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	list-style: none;
	background-color: #b6b6b6;
}
#nav ul li {
	width: 100px;
	float: left;
	text-align: left;
	padding: 5px 10px 5px 10px;
	border-top: 1px solid #A8A8A8;
}        
#nav ul li:first-child {
	width: 100px;
	float: left;
	border-top: 0px;
}
        
        /* display block will make the link fill the whole area of LI */
        #nav ul a {
            display: block;            
            padding: 8px 0 5px 0;
            color: #FFF;
            text-shadow: none;
            line-height: 0px;
            text-align: left;
            font-weight: normal;
            height: 2px;
        }
        
        #nav ul a:hover {
            text-decoration: none;
            color: #000;
        }
/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #nav ul {
    margin:0 0 0 -2px;
}