#NotificationModal {
    position: absolute;
    width: 250px;
    border-color: #a9a9a9;
    background-color: #f6f7fb;
    padding: 2px;
    top: 45px;
    left: 25%;
}
#NotificationModal hr{
	border-top: 1px solid #b7abab;
	margin-bottom: 5px;
}

#NotificationBody{
    max-height: 300px;
	overflow-x:hidden;
	overflow-y:scroll;
}
#NotificationBody::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

#NotificationBody::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

#NotificationBody::-webkit-scrollbar-thumb {
    background-color: #000000;
}
#NotificationBody::-moz-scrollbar-track {
    -moz-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

#NotificationBody::-moz-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

#NotificationBody::-moz-scrollbar-thumb {
    background-color: #000000;
}

#NotificationBody p{
	padding-right: 10px;
	padding-left: 10px;
    margin-bottom: 0;
}