@charset "utf-8";
/* CSS Document */
/*------------------------------------------------------------------------
  Old School Cameras - style sheet tabs navigation in rental catalog pages
  - redesign, development, and code by: Sean Glassford
  - last updated: 4/1/2012
  - Copyright 2012, Old School Cameras, All Rights Reserved
--------------------------------------------------------------------------*/

/* root element for tabs  */
ul.tabs {
    list-style:none;
    margin:0 !important;
    padding:0;
    height:30px;
}
/* single tab */
ul.tabs li {
	position:absolute;
	top:3px;
    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 {
	position:absolute;
	top:3px;
    display:block;
    height:21px;
    line-height:21px;
    width:inherit;
    text-align:center;
    text-decoration:none;
    /*color:#333;*/
    padding:0px;
    margin:0px;
    position:relative;
}
ul.tabs a:active {
    outline:none;
}
/* 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, ul.tabs a.current {
	top:0px;
    cursor:default !important;
    color:#fafafa !important;
	font-size:21px;
	font-weight:500;
	text-shadow: 0px 5px 1px rgba(0,0,0,.15), 0 0 10px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.4), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
	opacity:0.99;
    filter: alpha(opacity=99);
}
ul.tabs a:hover {
	text-decoration:none;
    color:#fafafa !important;
	text-shadow: 0px 4px 1px rgba(0,0,0,.15), 0 0 10px rgba(0,0,0,.7), 0 1px 3px rgba(0,0,0,.5), 0 3px 4px rgba(0,0,0,.3), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
	opacity:0.99;
    filter: alpha(opacity=99);
}

/* initially all panes are hidden */
.panes .pane {
    display:none;
}