#nav {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
#nav li {
    float: left;
    margin-right: 20px;
    font-size: 14px;
    font-weight: bold;
}
#nav li a {
    color: #333333;
    text-decoration: none
}
#nav li a:hover {
    color: #006699;
    text-decoration: none
}
#notification_li {
    position: relative
}
#notificationContainer {
    background-color: #fff;
    border: 1px solid rgba(100, 100, 100, .4);
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    overflow: visible;
    position: absolute;
    top: 50px;
    margin-left: -190px;
    width: 400px;
    z-index: -1;
    display: none;
}
#notificationContainer:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    color: transparent;
    border: 10px solid black;
    border-color: transparent transparent white;
    margin-top: -20px;
    margin-left: 188px;
}
#notificationTitle {
    z-index: 1000;
    font-weight: bold;
    padding: 8px;
    font-size: 13px;
    background-color: #ffffff;
    width: 384px;
    border-bottom: 1px solid #dddddd;
}
#notificationsBody {
    padding: 0px !important;
    min-height: 300px;
}
#notificationFooter {
    background-color: #e9eaed;
    text-align: center;
    font-weight: bold;
    padding: 8px;
    font-size: 12px;
    border-top: 1px solid #dddddd;
}
#notification_count {
    padding: 2px 4px 0px 4px;
    background: #cc0000;
    color: #ffffff;
    font-weight: bold;
    right: -10px;
    border-radius: 9px;
    position: absolute;
    margin-top: 8px;
    font-size: 11px;
}
.notifications-list {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}
.notifications .notifications-list .item {
    -webkit-transition: -webkit-transform 0.25s ease-out 0.1s;
    -moz-transition: -moz-transform 0.25s ease-out 0.1s;
    -o-transition: -o-transform 0.25s ease-out 0.1s;
    transition: transform 0.25s ease-out 0.1s;
    border-bottom: 1px solid #bdc3c7;
    color: #7f8c8d;
    cursor: default;
    display: block;
    padding: 10px;
    position: relative;
    white-space: nowrap;
    width: 400px;
}
.notifications .notifications-list .item:before,
.notifications .notifications-list .item .details,
.notifications .notifications-list .item {
    display: inline-block;
    vertical-align: middle;
}
.notifications .notifications-list .item:before {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: #3498db;
    content: '';
    height: 8px;
    width: 8px;
}
.notifications .notifications-list .item .details {
    margin-left: 10px;
    white-space: normal;
    width: 280px;
}
.notifications .notifications-list .item .details .title,
.notifications .notifications-list .item .details .date {
    display: block;
}
.notifications .notifications-list .item .details .date {
    color: #95a5a6;
    font-size: .85em;
    margin-top: 3px;
}
.notifications .notifications-list .item .details .emetteur {
    color: #95a5a6;
    font-size: .85em;
    margin-top: 3px;
}
.notifications .notifications-list .item .details .destinataire {
    position: absolute;
    right: 10px;
    color: #95a5a6;
    font-size: .85em;
    margin-top: 3px;
}
.notifications .notifications-list .item .button-dismiss {
    color: #bdc3c7;
    font-size: 1.5em;
}
.notifications .notifications-list .item .button-dismiss:hover,
.notifications .notifications-list .item .button-dismiss:focus {
    color: #95a5a6;
}
.notifications .notifications-list .item.no-data {
    display: none;
    text-align: center;
}
.notifications .notifications-list .item.no-data:before {
    display: none;
}
.notifications .notifications-list .item.expired {
    color: #bdc3c7;
}
.notifications .notifications-list .item.expired:before {
    background: #bdc3c7;
}
.notifications .notifications-list .item.expired .details .date {
    color: #bdc3c7;
}
.notifications .notifications-list .item.dismissed {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.notifications.empty .notifications-list .no-data {
    display: block;
    padding: 10px;
}
.button-default {
    -webkit-transition: 0.25s ease-out 0.1s color;
    -moz-transition: 0.25s ease-out 0.1s color;
    -o-transition: 0.25s ease-out 0.1s color;
    transition: 0.25s ease-out 0.1s color;
    background: transparent;
    border: none;
    cursor: pointer;
    margin: 0;
    outline: none;
    position: absolute;
    margin-top: 0px;
    right: 10px;
}
.button-dismiss {
    display: inline-block;
    vertical-align: top;
}