﻿/************************************************************************************************/
/*																																															*/
/*	This is the "Base" skin for the CABS AutoList.																							*/
/*																																															*/
/*	To create a new skin, copy this file into the site's App_Theme folder and name it will the	*/
/*	mask AL_[Skin].css.  All instances of "Base_" in this file should be replaced with					*/
/*	"[Skin]_".  All available CSS classes (selectors) available are listed here, so the					*/
/*	included comments should be complete.																												*/
/*																																															*/
/************************************************************************************************/

.Base_AL_UserFeedback
/*****
/*****	This applies to a DIV that appears after the title bar DIV only when there
/*****	is a validation failure, action confirmation, or action failure message set.
*****/
{
	margin: 18px;
	padding: 12px;
	border: solid 1px Navy;
}

.Base_AL_ActionConfirmation
/*****
/*****	This applies to a DIV inside the user feedback div that holds a form
/*****	action confirmation message.
*****/
{
	color: Green;
}

.Base_AL_ActionFailure
/*****
/*****	This applies to a DIV inside the user feedback div that holds a form
/*****	action failure message.
*****/
{
	color: Red;
}

