
/*body {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size:   100%;
	*font-size:  80%;
}*/

/*
 *	PANES & CONTENT-DIVs
 */
.ui-layout-pane { /* all 'panes' */
    background: #FFF;
    overflow: auto;
    /*border: 1px solid #BBB;
    padding: 10px; 
        
        DO NOT add scrolling (or padding) to 'panes' that have a content-div,
	   otherwise you may get double-scrollbars - on the pane AND on the content-div
	   - use ui-layout-wrapper class if pane has a content-div
	   - use ui-layout-container if pane has an inner-layout
	*/
}
/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */
.ui-layout-content {
    padding: 10px;
    position: relative; /* contain floated or positioned elements */
    overflow: auto; /* add scrolling to content-div */
}

/*
 *	UTILITY CLASSES
 *	Must come AFTER pane-class above so will override
 *	These classes are NOT auto-generated and are NOT used by Layout
 */
.layout-child-container,
.layout-content-container {
    padding: 0;
    overflow: hidden;
}

.layout-child-container {
    border: 0; /* remove border because inner-layout-panes probably have borders */
}

.layout-scroll {
    overflow: auto;
}

.layout-hide {
    display: none;
}

/*
 *	RESIZER-BARS
 */
.ui-layout-resizer { /* all 'resizer-bars' */
    background: #eee;
    border: 1px solid #BBB;
    border-width: 0;
}

.ui-layout-resizer-drag { /* REAL resizer while resize in progress */
}

.ui-layout-resizer-hover { /* affects both open and closed states */
}
/* NOTE: It looks best when 'hover' and 'dragging' are set to the same color,
		otherwise color shifts while dragging when bar can't keep up with mouse */
.ui-layout-resizer-open-hover, /* hover-color to 'resize' */
.ui-layout-resizer-dragging { /* resizer beging 'dragging' */
    background: #cad8ff;
}

.ui-layout-resizer-dragging { /* CLONED resizer being dragged */
    border: 1px solid #BBB;
}

.ui-layout-resizer-north-dragging,
.ui-layout-resizer-south-dragging {
    border-width: 1px 0;
}

.ui-layout-resizer-west-dragging,
.ui-layout-resizer-east-dragging {
    border-width: 0 1px;
}
/* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */
.ui-layout-resizer-dragging-limit { /* CLONED resizer at min or max size-limit */
    background: #E1A4A4; /* red */
}

.ui-layout-resizer-closed-hover { /* hover-color to 'slide open' */
    background: #EBD5AA;
}

.ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */
    opacity: .10; /* show only a slight shadow */
    filter: alpha(opacity=10);
}

.ui-layout-resizer-sliding-hover { /* sliding resizer - hover */
    opacity: 1.00; /* on-hover, show the resizer-bar normally */
    filter: alpha(opacity=100);
}
/* sliding resizer - add 'outside-border' to resizer on-hover 
		 * this sample illustrates how to target specific panes and states */
.ui-layout-resizer-north-sliding-hover {
    border-bottom-width: 1px;
}

.ui-layout-resizer-south-sliding-hover {
    border-top-width: 1px;
}

.ui-layout-resizer-west-sliding-hover {
    border-right-width: 1px;
}

.ui-layout-resizer-east-sliding-hover {
    border-left-width: 1px;
}

/*
 *	TOGGLER-BUTTONS
 */
.ui-layout-toggler {
    /* border: 1px solid #BBB; */ /* match pane-border */
    /*background-color: #BBB;*/
    background: url(../../Images/toggler-both-bg.png) 0px 0px #eeeeee;
    border: 0;
}


.ui-layout-resizer-hover .ui-layout-toggler {
    opacity: .60;
    filter: alpha(opacity=60);
}

.ui-layout-toggler-hover, /* need when NOT resizable */
.ui-layout-resizer-hover .ui-layout-toggler-hover { /* need specificity when IS resizable */
    background: url(../../Images/toggler-both-bg.png) 0px -100px #FC6;
    opacity: 1.00;
    filter: alpha(opacity=100);
}

.ui-layout-toggler-north,
.ui-layout-toggler-south {
    border-width: 0 1px; /* left/right borders */
}

.ui-layout-toggler-west,
.ui-layout-toggler-east {
    border-width: 1px 0; /* top/bottom borders */
}
/* hide the toggler-button when the pane is 'slid open' */
.ui-layout-resizer-sliding .ui-layout-toggler {
    display: none;
}
/*
	 *	style the text we put INSIDE the togglers
	 */
.ui-layout-toggler .content {
    color: #666;
    font-size: 12px;
    font-weight: bold;
    width: 100%;
    padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */
}

/*
 *	PANE-MASKS
 *	these styles are hard-coded on mask elems, but are also 
 *	included here as !important to ensure will overrides any generic styles
 */
.ui-layout-mask {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    opacity: 0 !important;
    filter: Alpha(Opacity="0") !important;
}

.ui-layout-mask-inside-pane { /* masks always inside pane EXCEPT when pane is an iframe */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

div.ui-layout-mask {
}
/* standard mask for iframes */
iframe.ui-layout-mask {
}
/* extra mask for objects/applets */

/*
 *	Default printing styles
 */
@media print {
    /*
	 *	Unless you want to print the layout as it appears onscreen,
	 *	these html/body styles are needed to allow the content to 'flow'
	 */
    html {
        height: auto !important;
        overflow: visible !important;
    }

    body.ui-layout-container {
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        /* only IE6 has container width & height set by Layout */
        _width: auto !important;
        _height: auto !important;
    }

    .ui-layout-resizer, .ui-layout-toggler {
        display: none !important;
    }
    /*
	 *	Default pane print styles disables positioning, borders and backgrounds.
	 *	You can modify these styles however it suit your needs.
	 */
    .ui-layout-pane {
        border: none !important;
        background: transparent !important;
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
}

div.dropdown {
    color: #555;
    /*margin: 3px -22px 0 0;*/
    /*width: 143px;*/
    /*position: relative;*/
    /*height: 17px;*/
    text-align: left;
}

div.submenu {
    background: #fff;
    position: absolute;
    top: -12px;
    left: -20px;
    z-index: 100;
    width: 170px;
    /*margin-left: 10px;*/
    /*padding: 40px 0 5px;*/
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.dropdown li a {
    color: #555555;
    display: block;
    font-family: arial;
    /*font-weight: bold;*/
    font-size: 14px;
    /*padding: 6px 15px;*/
    cursor: pointer;
    text-decoration: none;
}

    .dropdown li a:hover {
        background: gray;
        color: #000000;
        text-decoration: none;
    }

a.account {
    font-size: 11px;
    line-height: 16px;
    color: #555;
    position: absolute;
    z-index: 110;
    display: block;
    padding: 11px 0 0 20px;
    height: 28px;
    width: 121px;
    /*margin: -11px 0 0 -10px;*/
    text-decoration: none;
    background: url(../../../App_Themes/CMS/images/arrowforfav.png) 116px 17px no-repeat;
    cursor: pointer;
}

/*.root {
            list-style: none;
            margin: 0px;
            padding: 0px;
            font-size: 11px;
            padding: 11px 0 0 0px;
            border-top: 1px solid #dedede;
        }*/



/*Custome Css start*/
/* ALL panes*/
.ui-layout-content {
    padding: 1px !important;
}

.ui-layout-content-90 {
    height: 85% !important;
    padding: 10px !important;
}

.ui-layout-center {
    padding: 0; /* IMPORTANT - remove padding so pane can 'collapse' to 0-width */
}

    .ui-layout-center > .wrapper {
        padding: 0px;
    }

.ui-layout-pane {
    border-width: 0;
    padding: 0px;
}

.ui-layout-north {
    border-bottom-width: 1px;
}

.ui-layout-south {
    border-top-width: 1px;
}

.ui-layout-resizer-west {
    border-width: 0;
}

.ui-layout-toggler-west {
    border-width: 0;
}

.ui-layout-resizer-west .ui-layout-toggler {
    /*background: #eeeeee;*/
}

.ui-layout-toggler-west div {
    width: 8px;
    height: 35px; /* 3x 35 = 105 total height */
}

.ui-layout-toggler-west .btnCenter {
    background: url(../../Images/toggler-left-bg.png) no-repeat center right #eeeeee;
}

    .ui-layout-toggler-west .btnCenter:hover {
        background: url(../../Images/toggler-left-bg.png) no-repeat center right #fdb625;
    }


.ui-layout-toggler-west .btnWest {
    background: url(../../Images/toggler-right-bg.png) no-repeat center left #eeeeee;
    border-bottom: 0px;
}

    .ui-layout-toggler-west .btnWest:hover {
        background: url(../../Images/toggler-right-bg.png) no-repeat center left #fdb625;
    }


.ui-layout-toggler-west .btnBoth {
    background: url(../../Images/toggler-both-bg.png) 0px 0px #eeeeee;
    border-bottom: 0px;
}

    .ui-layout-toggler-west .btnBoth:hover {
        background: url(../../Images/toggler-both-bg.png) 0px -100px #fdb625;
    }
/*Custome Css end*/
