#notifications {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 9999998;
}

.notification-item {
    position: relative;
    display: none;
    margin: 5px;
    padding: 4px 8px;
    
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px; 
    -khtml-border-radius: 10px; 
    border-radius: 10px;
    
    background-color: #000000;
    filter:alpha(opacity=70);
    background-color: rgba(0, 0, 0, 0.7); 
    
    border: 2px solid #ccc;
    color: #fff;
    width: 250px;
    min-height: 50px;
}

.notification-item[data-status='ok'] .notification-status {
    background-position: 0 0;
}

.notification-item[data-status='warning'] .notification-status {
    background-position: -33px 0;
}

.notification-item[data-status='error'] .notification-status {
    background-position: -68px 0;
}

.notification-item .notification-status {
    background: url("../images/notification/ok_warning_error_icons.png") no-repeat;
    background-size: 100px auto;
    display: inline-block;
    height: 32px;
    width: 32px;
    vertical-align: top;
    float:left;
}

.notification-item .info-wrapper {
    display: inline-block;
    margin: 0 0 0 5px;
    position: relative;
    right: 18px;
    width: 180px;
    left: 20px;
}

.notification-item .info-wrapper h1 {
    font-size: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 0 5px;
}

.notification-item .info-wrapper p {
    word-wrap: break-word;
}


.notification-item button {
    display: none;
    background: url("../images/notification/close-button.png") no-repeat;
    width: 29px;
    height: 29px;
    border: none;
    position: absolute;
    right: -15px;
    top: -13px;
    cursor: pointer;
}

.notification-item:hover {
    border: 2px solid #999;
}

.notification-item:hover button {
    display: block;
}
.textAsLink {
	cursor: pointer;
	text-decoration: underline
}

.kb-breadcrumb {
	line-height: 1.5em;
}
