/*
 * Default Layout Theme
 *
 * Created for jquery.layout
 *
 * Copyright (c) 2010
 *   Fabrizio Balliano (http://www.fabrizioballiano.net)
 *   Kevin Dalman (http://allpro.net)
 *
 * Dual licensed under the GPL (http://www.gnu.org/licenses/gpl.html)
 * and MIT (http://www.opensource.org/licenses/mit-license.php) licenses.
 *
 * Last Updated: 2010-02-10
 * NOTE: For best code readability, view this with a fixed-space font and tabs equal to 4-chars
 */

/*
 *	DEFAULT FONT
 *	Just to make demo-pages look better - not actually relevant to Layout!
 */

/*
 *	PANES & CONTENT-DIVs
 */
.ui-layout-pane { /* all 'panes' */
    background:	#FFF;
    border:		1px solid #BBB;
    padding:	10px;
    overflow:	auto;
    /* 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:	15px;*/
    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:		#DDD;
    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: #C4E1A4;
}
.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;
}
.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-color: #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 */

.ui-pane-header {
    background: rgba(33,33,33,0.03) none repeat scroll 0 0;
    color: #293846;
    margin: 0;
    padding: 5px 15px;
    font-size: 16px;
}
/*
 *	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;
    }
}

/*
.ui-layout-xs {
    background-color: yellow !important;
}
.ui-layout-sm {
    background-color: green !important;
}
.ui-layout-md {
    background-color: blue !important;
}
.ui-layout-lg {
    background-color: maroon !important;
}
*/

.clearfix::before, .clearfix::after, .container::before, .container::after, .container-fluid::before, .container-fluid::after, .row::before, .row::after, .form-horizontal .form-group::before, .form-horizontal .form-group::after, .btn-toolbar::before, .btn-toolbar::after, .btn-group-vertical > .btn-group::before, .btn-group-vertical > .btn-group::after, .nav::before, .nav::after, .navbar::before, .navbar::after, .navbar-header::before, .navbar-header::after, .navbar-collapse::before, .navbar-collapse::after, .pager::before, .pager::after, .panel-body::before, .panel-body::after, .modal-footer::before, .modal-footer::after {
    content: " ";
    display: table;
}
.clearfix::after, .container::after, .container-fluid::after, .row::after, .form-horizontal .form-group::after, .btn-toolbar::after, .btn-group-vertical > .btn-group::after, .nav::after, .navbar::after, .navbar-header::after, .navbar-collapse::after, .pager::after, .panel-body::after, .modal-footer::after {
    clear: both;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-nw, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    float: left;
}


.ui-layout-lg  .col-lg-12 {
    width: 100%;
}
.ui-layout-lg  .col-lg-11 {
    width: 91.66666667%;
}
.ui-layout-lg  .col-lg-10 {
    width: 83.33333333%;
}
.ui-layout-lg  .col-lg-9 {
    width: 75%;
}
.ui-layout-lg  .col-lg-8 {
    width: 66.66666667%;
}
.ui-layout-lg  .col-lg-7 {
    width: 58.33333333%;
}
.ui-layout-lg  .col-lg-6 {
    width: 50%;
}
.ui-layout-lg  .col-lg-5 {
    width: 41.66666667%;
}
.ui-layout-lg  .col-lg-4 {
    width: 33.33333333%;
}
.ui-layout-lg  .col-lg-3 {
    width: 25%;
}
.ui-layout-lg  .col-lg-2 {
    width: 16.66666667%;
}
.ui-layout-lg  .col-lg-1 {
    width: 8.33333333%;
}

.ui-layout-lg .col-lg-offset-12 {
    margin-left: 100%;
}
.ui-layout-lg .col-lg-offset-11 {
    margin-left: 91.66666667%;
}
.ui-layout-lg .col-lg-offset-10 {
    margin-left: 83.33333333%;
}
.ui-layout-lg .col-lg-offset-9 {
    margin-left: 75%;
}
.ui-layout-lg .col-lg-offset-8 {
    margin-left: 66.66666667%;
}
.ui-layout-lg .col-lg-offset-7 {
    margin-left: 58.33333333%;
}
.ui-layout-lg .col-lg-offset-6 {
    margin-left: 50%;
}
.ui-layout-lg .col-lg-offset-5 {
    margin-left: 41.66666667%;
}
.ui-layout-lg .col-lg-offset-4 {
    margin-left: 33.33333333%;
}
.ui-layout-lg .col-lg-offset-3 {
    margin-left: 25%;
}
.ui-layout-lg .col-lg-offset-2 {
    margin-left: 16.66666667%;
}
.ui-layout-lg .col-lg-offset-1 {
    margin-left: 8.33333333%;
}
.ui-layout-lg .col-lg-offset-0 {
    margin-left: 0%;
}


.ui-layout-md  .col-md-12 {
    width: 100%;
}
.ui-layout-md  .col-md-11 {
    width: 91.66666667%;
}
.ui-layout-md  .col-md-10 {
    width: 83.33333333%;
}
.ui-layout-md  .col-md-9 {
    width: 75%;
}
.ui-layout-md  .col-md-8 {
    width: 66.66666667%;
}
.ui-layout-md  .col-md-7 {
    width: 58.33333333%;
}
.ui-layout-md  .col-md-6 {
    width: 50%;
}
.ui-layout-md  .col-md-5 {
    width: 41.66666667%;
}
.ui-layout-md  .col-md-4 {
    width: 33.33333333%;
}
.ui-layout-md  .col-md-3 {
    width: 25%;
}
.ui-layout-md  .col-md-2 {
    width: 16.66666667%;
}
.ui-layout-md  .col-md-1 {
    width: 8.33333333%;
}


.ui-layout-md .col-md-offset-12 {
    margin-left: 100%;
}
.ui-layout-md .col-md-offset-11 {
    margin-left: 91.66666667%;
}
.ui-layout-md .col-md-offset-10 {
    margin-left: 83.33333333%;
}
.ui-layout-md .col-md-offset-9 {
    margin-left: 75%;
}
.ui-layout-md .col-md-offset-8 {
    margin-left: 66.66666667%;
}
.ui-layout-md .col-md-offset-7 {
    margin-left: 58.33333333%;
}
.ui-layout-md .col-md-offset-6 {
    margin-left: 50%;
}
.ui-layout-md .col-md-offset-5 {
    margin-left: 41.66666667%;
}
.ui-layout-md .col-md-offset-4 {
    margin-left: 33.33333333%;
}
.ui-layout-md .col-md-offset-3 {
    margin-left: 25%;
}
.ui-layout-md .col-md-offset-2 {
    margin-left: 16.66666667%;
}
.ui-layout-md .col-md-offset-1 {
    margin-left: 8.33333333%;
}
.ui-layout-md .col-md-offset-0 {
    margin-left: 0%;
}


.ui-layout-sm  .col-sm-12 {
    width: 100%;
}
.ui-layout-sm  .col-sm-11 {
    width: 91.66666667%;
}
.ui-layout-sm  .col-sm-10 {
    width: 83.33333333%;
}
.ui-layout-sm  .col-sm-9 {
    width: 75%;
}
.ui-layout-sm  .col-sm-8 {
    width: 66.66666667%;
}
.ui-layout-sm  .col-sm-7 {
    width: 58.33333333%;
}
.ui-layout-sm  .col-sm-6 {
    width: 50%;
}
.ui-layout-sm  .col-sm-5 {
    width: 41.66666667%;
}
.ui-layout-sm  .col-sm-4 {
    width: 33.33333333%;
}
.ui-layout-sm  .col-sm-3 {
    width: 25%;
}
.ui-layout-sm  .col-sm-2 {
    width: 16.66666667%;
}
.ui-layout-sm  .col-sm-1 {
    width: 8.33333333%;
}


.ui-layout-sm .col-sm-offset-12 {
    margin-left: 100%;
}
.ui-layout-sm .col-sm-offset-11 {
    margin-left: 91.66666667%;
}
.ui-layout-sm .col-sm-offset-10 {
    margin-left: 83.33333333%;
}
.ui-layout-sm .col-sm-offset-9 {
    margin-left: 75%;
}
.ui-layout-sm .col-sm-offset-8 {
    margin-left: 66.66666667%;
}
.ui-layout-sm .col-sm-offset-7 {
    margin-left: 58.33333333%;
}
.ui-layout-sm .col-sm-offset-6 {
    margin-left: 50%;
}
.ui-layout-sm .col-sm-offset-5 {
    margin-left: 41.66666667%;
}
.ui-layout-sm .col-sm-offset-4 {
    margin-left: 33.33333333%;
}
.ui-layout-sm .col-sm-offset-3 {
    margin-left: 25%;
}
.ui-layout-sm .col-sm-offset-2 {
    margin-left: 16.66666667%;
}
.ui-layout-sm .col-sm-offset-1 {
    margin-left: 8.33333333%;
}
.ui-layout-sm .col-sm-offset-0 {
    margin-left: 0%;
}

.ui-layout-xs .col-xs-12 {
    width: 100%;
}
.ui-layout-xs .col-xs-11 {
    width: 91.66666667%;
}
.ui-layout-xs .col-xs-10 {
    width: 83.33333333%;
}
.ui-layout-xs .col-xs-9 {
    width: 75%;
}
.ui-layout-xs .col-xs-8 {
    width: 66.66666667%;
}
.ui-layout-xs .col-xs-7 {
    width: 58.33333333%;
}
.ui-layout-xs .col-xs-6 {
    width: 50%;
}
.ui-layout-xs .col-xs-5 {
    width: 41.66666667%;
}
.ui-layout-xs .col-xs-4 {
    width: 33.33333333%;
}
.ui-layout-xs .col-xs-3 {
    width: 25%;
}
.ui-layout-xs .col-xs-2 {
    width: 16.66666667%;
}
.ui-layout-xs .col-xs-1 {
    width: 8.33333333%;
}

.ui-layout-xs .col-xs-offset-12 {
    margin-left: 100%;
}
.ui-layout-xs .col-xs-offset-11 {
    margin-left: 91.66666667%;
}
.ui-layout-xs .col-xs-offset-10 {
    margin-left: 83.33333333%;
}
.ui-layout-xs .col-xs-offset-9 {
    margin-left: 75%;
}
.ui-layout-xs .col-xs-offset-8 {
    margin-left: 66.66666667%;
}
.ui-layout-xs .col-xs-offset-7 {
    margin-left: 58.33333333%;
}
.ui-layout-xs .col-xs-offset-6 {
    margin-left: 50%;
}
.ui-layout-xs .col-xs-offset-5 {
    margin-left: 41.66666667%;
}
.ui-layout-xs .col-xs-offset-4 {
    margin-left: 33.33333333%;
}
.ui-layout-xs .col-xs-offset-3 {
    margin-left: 25%;
}
.ui-layout-xs .col-xs-offset-2 {
    margin-left: 16.66666667%;
}
.ui-layout-xs .col-xs-offset-1 {
    margin-left: 8.33333333%;
}
.ui-layout-xs .col-xs-offset-0 {
    margin-left: 0%;
}




.ui-layout-xs .visible-xs {
    display: block !important;
}

.ui-layout-sm .visible-sm {
    display: block !important;
}

.ui-layout-md .visible-md {
    display: block !important;
}

.ui-layout-lg .visible-lg {
    display: block !important;
}

.ui-layout-lg .hidden-lg {
    display: none !important;
}

.ui-layout-md .hidden-md {
    display: none !important;
}

.ui-layout-sm .hidden-sm {
    display: none !important;
}

.ui-layout-xs .hidden-xs {
    display: none !important;
}


