/* Component for displaying details of notes attached to onsite meeting request */

.OnSiteRequestNotes {
    border: 1px solid #d2d2d2;
    -webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
    padding: 12px 10px;
    background: #f1f1f1;
    margin-bottom: 10px;
}

.OnSiteRequestNotes-item {
    margin-bottom: 10px;
    border-bottom: 1px dashed #d2d2d2;
}
.OnSiteRequestNotes-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.OnSiteRequestNotes-item-head {
    font-size: 0.9em;
    clear: both;
    margin-bottom: 5px;
}

.OnSiteRequestNotes-item-from {
    font-size: 0.9em;
    font-weight: bold;
}

.OnSiteRequestNotes-item-date {
    color:grey;
    margin-bottom: 10px;
    font-style: italic;
}
.OnSiteRequestNotes-item-user {
    font-weight: bold;
}
.OnSiteRequestNotes-item-content p {
    padding-bottom: 10px;
    -moz-word-break: break-all;
    -o-word-break: break-all;
    -ms-word-break: break-all;
    word-break: break-all;
}

.OnSiteRequestNotes-empty {
    text-align: center;
}