.alertDefault_alertWindow
{
    border-radius: 5px;
	border: 1px solid #000000;  /* this is the border around the alert window */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.alertDefault_titleBar
{
	/* title bar settings */
	border-radius: 4px;
	color: #ffffff;
	font: 12px Verdana;
	font-weight:bolder;
	border-bottom: 1px solid #000000; /* the bottom border of your title bar, the border that separates it from the content area */
	/*background: #336699; */
	background: #FF0000;
	line-height: 16px; /* if you have an icon, you probably want to set this as the same size or a bit larger than the icon size */
	padding: 5px;
}
.alertDefault_titleBarLeftIcon
{
	/* left icon settings */
	/*background: transparent url(information.png) no-repeat;*/
	width: 16px;
	height: 16px;
}
.alertDefault_titleBarRightIcon
{
	/* right icon settings */
	/* background: transparent url(/icons/cancel.png) no-repeat;
	width: 16px;
	height: 16px; */
}
.alertDefault_contentArea
{
	/* the content area, where the actual message text is shown */
	border-radius: 5px;
	color: #000000;
	font: 16px;
	overflow: auto;  /* setting this to auto will make scrollbars appear if the message text is too long for the height attribute, assuming you set it */
	padding: 5px;
	background: #e7ebef; /* your background color.  the button area background color should be set the same as well */
}
.alertDefault_buttonArea
{
	/* the button area, the div that your buttons are placed into */
	border-radius: 5px;
	text-align: right; /* if you want you buttons to the left or center of the alert box, change this setting */
	background: #e7ebef; /* your background color.  the content area background color should be set the same as well */
	padding-bottom: 5px;
}
.alertDefault_okButton
{
	/* ok button settings */
	border-radius: 5px;
	padding-left: 15px;
	padding-right: 15px;
	text-align:center;
	background-repeat: no-repeat;
	background-position: center left;
	height: 35px;
}
.alertDefault_cancelButton
{
	/* cancel button settings, if present */
	border-radius: 5px;
	padding-left: 5px;
	padding-right: 5px;
	text-align:center;
	background-repeat: no-repeat;
	background-position: center left;
	height: 35px;
}