/* ----------------------------------------------------------------- */
/* Holds the warning / error / info messages */
.alert-box {
        background-color: #BCCCE7;
        background: #BCCCE7;
        border: #8C6426 1px solid;
        text-align: left;
        width: 60%;
        padding: .5em;
        margin-bottom: 1em;
        color: black;
}

.alert-box .body {
        padding-left: 20px;
        font-weight: normal;
}

.alert-box ul {
        margin-top: 0;
        margin-bottom: 0;
}
.alert-box li {
        padding: 0px;
}

/* image and text for warning box */
.alert-box .warning-title {
        background-image: url(../images/warning.gif);
        background-repeat: no-repeat;
        background-position: 0;
        padding: 2px 0 2px 20px;
        font-weight: bold;
}

/* image and text for error box */
.alert-box .error-title {
        background-image: url(../images/error.gif);
        background-repeat: no-repeat;
        background-position: 0;
        padding: 2px 0 2px 20px;
        color: black;
        font-weight: bold;
}

/* image and text for info box */
.alert-box .info-title {
        background-image: url(../images/info.gif);
        background-repeat: no-repeat;
        background-position: 0;
        padding: 2px 0 2px 20px;
        color: black;
        font-weight: bold;
}

/* colour the marker in error fields */
.incorrect {
	color: red;
	font-weight: bold;
	size: 200%;
}

