﻿/* These styles are the base of the inline alerts/error messages on the site */
.alert { font-size: 13px; }

/* This is the inline alert which appears above forms to display confirmations, errors, warnings etc */
#inline-alert { position: relative; }

/* This is the jQuery validation error container. Inititalise as hidden */
#validation-container { 
	position: relative; 
	display: none;
}

.alert > DIV {
	background-position: 10px 11px !important;
	background-repeat: no-repeat !important;
	padding: 11px 25px 10px 40px;
	margin-bottom: 15px;
	position: relative;
}

.alert LABEL { 
	padding-bottom: 5px; 
	display: block;
	line-height: 15px;
	cursor: hand;
	cursor: pointer;
	width: 100% !important; /* Overrides the default width from simpla.css */
}

.alert .close, .alert .jqmClose {
	color: #990000;
	font-size: 9px;
	position: absolute;
	right: 5px; top: 5px;
	width: 7px; height: 7px;
	background: url('../img/icons/cross_grey_small.png');
}

.alert .negative {
	background: #F9C9C9 url('../img/icons/cross_circle.png');
	border: 3px solid #E56565;
	color: #665252;
}
.alert .positive {
	background: #EAFCD9 url('../img/icons/tick_circle.png');
	border: 3px solid #A6D877;
	color: #546652;
}
.alert .warning {
	background: #FFFBCC url('../img/icons/exclamation.png') 10px 11px no-repeat;
	border: 3px solid #E6DB55;
	color: #7B7E59;
}
.alert .information {
	background: #F5FBFF url('../img/icons/information.png');
	border: 3px solid #2F84CF;
	color: #525666;
}

.alert .title {
    color: 	#665252;
    margin: 0;
    font-size: 1em;
	font-weight: bold !important;
	padding: 0 0 10px 0; 
    text-transform: none;
	/* text-transform: capitalize; */
}

.alert STRONG {
	color: inherit;
	font-weight: bold;
}
.alert UL { 
	padding: 0 !important; 
	list-style: none outside none !important;
	margin: 0 !important;
}
.alert UL LI { 
	width: auto !important;
	line-height: 15px !important;
	background: transparent !important; 
	padding: 0 0 5px 0 !important; 
}
.alert .negative LI, .alert .negative LABEL { color: #665252 !important; cursor: hand; cursor: pointer; font-weight: normal; font-size: 13px; font-family: Arial; } /* Overrides the default label colour from simpla.css */
.alert .positive LI, .alert .positive LABEL { color: #546652 !important; } /* Overrides the default label colour from simpla.css */
.alert .warning LI, .alert .warning LABEL { color: #7B7E59 !important; } /* Overrides the default label colour from simpla.css */
.alert .information LI, .alert .information LABEL { color: #525666 !important; } /* Overrides the default label colour from simpla.css */

.alert .moreinfo-label {
	margin: 10px 0 2px;
	color: #BB0000;
	text-decoration: underline;
}
.alert .moreinfo-label A { color: #BB0000; }
.alert .info-container, .alert .moreinfo-label {
	font-size: 10px;
	line-height: 14px;
}
.alert .info-container {
	display: none;
	font-style: italic;
}
.alert .exception-detail { 
	font-size: 10px !important; 
	text-transform: none !important;
}

.alert-box {
    margin: 0 0 25px;
    padding: 15px;
    border: 3px solid #FAF2CC;
    background: #FCF8E3;
}
.alert-box > :last-child {
    margin-bottom: 0;
}
.alert-box p {
    color: #8A6D3B;
}