﻿/* Common app styling */

#content-main {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    bottom: 50px; /* Same value as #content-footer's height */
    overflow: auto; /* Enable scrollbars within main content section */
}

#content-footer {
    background-color: #cecece;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Fixed footer height */
    overflow: hidden; /* Disable scrollbars for footer */
}

.padding {
    padding: 15px;
}

#notification-message {
    /*background-color: #818285;*/
    /*color: #fff;*/
    position: fixed;
    width: 100%;
    min-height: 85px;
    right: 0;
    z-index: 100;
    bottom: 0;
    display: none; /* Hidden until invoked */
    border-top:2px solid #ff9d9b;
}

#notification-message-header {
    /*font-size: medium;*/
    color:#ff9d9b;
    /*margin-bottom: 10px;*/
    font-family: Myriad Set Pro Text;
    font-size: 14px;
}

#notification-message-body {
    color:#ff9d9b;
    font-family: Myriad Set Pro Text;
    font-size: 14px;
}

#notification-message-close {
    background-image: url("../Images/close-icon.png");
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
#notification-message-title {
    /*margin-left: 5px;*/
    font-family: Myriad Set Pro Medium;
    font-size: 18px;
    color:#ff9d9b;
    padding-bottom: 10px;
}
#notification-message-icon{
    vertical-align:middle
}
#notification-message-icon-container {
    display: table-cell;
    vertical-align: middle;
    padding: 0px 15px 0px 15px;
}
#notification-message-text-container {
    display: table-cell;
    vertical-align: middle;
}
#notification-message-icon-text-container {
    display: table;
    min-height: 85px;
}