/* 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: #CCC;
    color: #000;
    position: absolute;
    width: 100%;
    min-height: 80px;
    right: 0;
    z-index: 100;
    bottom: 0;
    display: none; /* Hidden until invoked */
}

#notification-message #notification-message-header {
    font-size: medium;
    margin-bottom: 10px;
}

#notification-message #notification-message-close {
    background-image: url("/images/Close.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}

#details {
    margin-left: 15px;
}

#details th {
    text-align: left;
    padding-right: 10px;
}

#from {
    cursor: pointer;
    color: #336699;
}

#from:focus, #from:hover, #from:active {
    color: #4ea2df;
}

h5.signedInAs {
    display:none;
}

#loading, #attachments, #create-contact, #create-address, #create-parent {
    display:none;
}

.address {
    display:none;
}

select {
    width:100%;
}

.ms-TextField-errorMessage {
    color: red;
    margin-top: 3px;
}
