/* page chrome structure */
#dashboard {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: 0;
    position: relative;
    margin: 0;
    width: 100%;
}

#dashboard > #dashboard-header {
    display: none; /* It is not used and should not be used. */
}

#dashboard > .vertical.tabs,
#dashboard > #dashboard-content {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    margin: 0;
    position: relative;
    vertical-align: top;
    background: #F4F5F7;
}

/* set the position and width of the vertical navigation */
#dashboard > .vertical.tabs {
    bottom: 0;
    left: 0;
    padding-top: 20px; /* to give the content some breathing room from the application header */
    position: absolute;
    top: 0;
    width: 188px;
}

#dashboard > .vertical.tabs + #dashboard-content {
    margin-left: 188px;
}

/* set the min-height of the page */
#dashboard-content {
    min-height: 600px;
    background-color: #F4F5F7;
}

#dashboard-content > .aui-page-header {
    padding: 20px;
    background-color: #F4F5F7;
}

.initializing #dashboard-content {
    height: 600px;
    overflow: hidden;
}

/* page chrome styling */
#dashboard {
    background: #fff;
    border-color: #ddd;
    border-style: solid;
    border-width: 0;
    border-bottom-width: 1px;
}
