.alert {
    position: relative;
}

.alert.alert-warning {
    background: #d44116;
    border: 1px solid #d44116;
    color: #fff;
}

.alert.alert-info {
    background: #cfeffc;
    border: 1px solid #cfeffc;
    color: #333;
}

.alert.alert-info .close:focus, .alert.alert-info .example:focus, .alert.alert-info .example2:focus {
    outline: 2px solid #333;
}

.alert.alert-success {
    background: #2d8611;
    border: 1px solid #376f0e;
    color: white;
}

.alert.alert-danger {
    background: #990000;
    border: 1px solid #800015;
    color: white;
}

.alert .example, .alert .example2 {
    background: none;
    border: 0 none;
    color: #333;
    font-size: 24px;
    font-size: 1.71429em;
    font-size: 2.4rem;
    padding: 0;
    position: absolute;
    right: 3%;
    top: 10px;
}

.alert .example:focus, .alert .example2:focus {
    outline: 2px solid white;
}

.alert .example.white, .alert .example2.white {
    color: white;
}

.alert .example.close, .alert .example2.close {
    opacity: 1;
    filter: alpha(opacity = 100);
}

.alert .example.close:hover, .alert .example.close:focus, .alert .example2.close:hover, .alert .example2.close:focus {
    opacity: 1;
    filter: alpha(opacity = 100);
}

.alert .iconSpan {
    border-right: 1px solid #e0e0e0;
    display: table-cell;
    padding: 15px 20px;
    vertical-align: middle;
}

.alert .alertContent {
    display: table-cell;
}

.alert .alertContent p {
    padding: 0 10px;
}

.alert .alertHeading strong, .alert .alertHeading2 strong {
    font: normal 100% 'OpenSansBolder';
}