/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .ui-tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav-under-image {
        display: none;
    }
}


.our-story-rollover {
    position: absolute;
    top: 450px;
    left: 50%;
    margin: 0 0 0 -10px;
    z-index: 10;
}
.our-story-button {
    width: 168px;
    height: 28px;
    margin: 0;
    display: block;
    border: none;
    background: url(/Images/our-story.gif);
}
.our-story-button-over {
    width: 168px;
    height: 28px;
    margin: 0;
    display: block;
    border: none;
    background: url(/Images/our-story-over.gif);
}
.shop-products-rollover {
    position: absolute;
    top: 450px;
    left: 50%;
    margin: 0 0 0 200px;
    z-index: 10;
}
.shop-products-button {
    width: 168px;
    height: 28px;
    margin: 0;
    display: block;
    border: none;
    background: url(/Images/shop-products.gif);
}
.shop-products-button-over {
    width: 168px;
    height: 28px;
    margin: 0;
    display: block;
    border: none;
    background: url(/Images/shop-products-over.gif);
}


/* Skin */
.ui-tabs-nav-under-image, .ui-tabs-panel {
    font: 11px Helvetica, Arial, Verdana, sans-serif;
    color: #4e1b00;
}
.ui-tabs-nav-under-image {
    margin: 0 0 0 -1px;
    padding: 0;
    list-style: none;
    background-color: #ccccde;
}
.ui-tabs-nav-under-image:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav-under-image li {
    float: left;
    margin: 0;
    min-width: 299px; /* be nice to Opera */
    /* USE THIS FOR 4 ROTATING ITEMS:
    min-width: 224px;
    */
}
.ui-tabs-nav-under-image a, .ui-tabs-nav-under-image a span {
    display: block;
    text-align: center;
    background-color: #ccccde;
}
.ui-tabs-nav-under-image a {
    margin: 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    color: #7b7c97;
    font-weight: bold;
    line-height: 14px;
    text-align: left;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
}
.ui-tabs-nav-under-image a:hover {
    color: #bf2c37;
}
.ui-tabs-nav-under-image .ui-tabs-selected a {
    position: relative;
    margin-top: -8px;
    padding-top: 8px;
    color: #4e1b00;
    background: transparent url(/Images/up-arrow.gif) no-repeat top center;
}
.ui-tabs-nav-under-image a span {
    width: 299px; /* IE 6 treats width as min-width */
    min-width: 299px;
    /* USE THIS FOR 4 ROTATING ITEMS:
    width: 224px;
    min-width: 224px;
    */
    height: 22px; /* IE 6 treats height as min-height */
    min-height: 22px;
    border-left: solid 1px #fff;
    padding-top: 9px;
    cursor: hand;
}
*>.ui-tabs-nav-under-image a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-panel {
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
    font: 11px Helvetica, Arial, Verdana, sans-serif;
    color: #4e1b00;
}
.ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}

/* Additional IE specific bug fixes... */
* html .ui-tabs-nav-under-image { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-tabs-nav-under-image  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}
