@-moz-document url("chrome://browser/content/browser.xul")
{


/* Generate a blank piece of glass to place the tab-bar on */

#main-window #navigator-toolbox #nav-bar
{
	padding: 0px 0px 26px 0px !important;
}



/*place tab-bar in the extra space that was just made*/

.tabbrowser-strip
{
position:fixed !important;
top:52px !important;
width:100%!important;
z-index:0 !important;
padding: 3px 3px 3px 3px !important;
}



tab
{
-moz-user-select:-moz-none!important;
z-index:0!important;
-moz-border-radius-bottomleft: 0px!important;
opacity: 0.99 !important; 

/*do not remove opacity, makes DWM draw the text properly, otherwise all text will be transparent */

}


/*makes the tab-bar background+gradient go away)*/

.tabbrowser-strip .tabbrowser-tabs
{
width:100%!important;
-moz-appearance: none !important;
border: 0 none !important;
background-color: transparent !important;
background-image: none !important
}

/*moves the drop indicator (when moving tabs) to where tab-bar is*/
.tab-drop-indicator-bar
{
position:fixed!important;
top:45px !important;
left:0px !important;
width:100%!important;
z-index:1 !important;
}


/* make active tab semitransparent*/
tab[selected="true"]
{
opacity: 0.80 !important;
}

/* decreace transparency on hover*/
tab[selected="true"]:hover
{
opacity: 0.95 !important;
/*do not set value greater than 0.99*/
}


}




