﻿/* ===============================================================================
COMMON CLASSES (APP): This section provides classes that are shared accross the 
entire application.  Please see Site.css for corresponding values.  Note that this
style sheet (Base-Theme.css) should load later in the DOM load sequence so that it 
overrides anything in Site.css  The only items in this section should be related to themeing

Nameing Convention: 
    app = All applications

    emp = Employee Views

    adm = Admin Views (shared admin classes)
        cnf = Configuration Views  
        brd = Brand Manager Views
        mgr = Manager Screens
        
=============================================================================== */
div.app-header-menu-bar 
{
    z-index:90;
	padding-top:3px;
	vertical-align: middle; 
	height: 41px; 
	position:relative;
	margin-top:6px;
	background-color:transparent;
	-moz-box-shadow:    3px 3px 5px 0px #888;
	-webkit-box-shadow: 3px 3px 5px 0px #888;
	box-shadow:         3px 3px 5px 0px #888;
}

div.app-header-menu-bar-item {line-height: 2.2em; width: 120px; cursor: pointer; border:0px !important; }


/* ===============================================================================
MANAGER VIEWS (MGR): This section contains classes that are only used for 
the administration views 
=============================================================================== */
div.mgr-scheduler-nav 
{
    position:absolute;
    background-color:#efefef;
    width:100%;
    background-image:-ms-linear-gradient(bottom, #FFFFFF 0%, #efefef 100%);
    background-image:-moz-linear-gradient(bottom, #FFFFFF 0%, #efefef 100%);
    background-image:-o-linear-gradient(bottom, #FFFFFF 0%, #efefef 100%);
    background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, #FFFFFF), color-stop(1, #efefef));
    background-image:-webkit-linear-gradient(bottom, #FFFFFF 0%, #efefef 100%);
    background-image:linear-gradient(bottom, #FFFFFF 0%, #efefef 100%);    
}


/* ===============================================================================
JQUERY UI (JUI): This section contains classes that are only used for overrides
on the Jquery UI.
=============================================================================== */
.ui-widget-content {background-color:#fff}
.ui-tabs-nav li {margin:0px !important;}
.ui-tabs-nav li a {padding:4px 12px 4px 12px !important;}






