/* this is a comment. This is only a comment. */
.default_alertWindow
{
	border: 1px solid gray;  /* this is the border around the alert window */
    background-color: white;
}
.default_titleBar
{
	/* title bar settings */
    color: #ffffff;
    font-weight: bold;
	/*font: 12px Georgia;*/
	border-bottom: 1px solid #000000; /* the bottom border of your title bar, the border that separates it from the content area */
	/*background: #336699; */
	background: #f02e24;
	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;
}
.default_titleBarLeftIcon
{
	/* left icon settings */
	/*background: transparent url(information.png) no-repeat;
	width: 16px;
	height: 16px;*/
}
.default_titleBarRightIcon
{
	/* right icon settings */
	/* background: transparent url(/icons/cancel.png) no-repeat;
	width: 16px;
	height: 16px; */
}
.default_contentArea
{
	/* the contente area, where the actual message text is shown */
	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: #ffffff; /* your background color.  the button area background color should be set the same as well */
}
.default_buttonArea
{
	/* the button area, the div that your buttons are placed into */
	/*text-align: right; /* if you want you buttons to the left or center of the alert box, change this setting */
	background-color: #ffffff; /* your background color.  the content area background color should be set the same as well */
	padding-bottom: 25px;
}
.default_okButton
{
	/* ok button settings */
	float: left;
	/*background-repeat: no-repeat;*/
	/*height: 18px;
	width: 72px;*/
    /*background-color: White;
	background-image: url(/ABAIImages/Icons/btnABAI_New_Checkout.png);*/
	cursor: pointer;
	margin-left: 5px;
	border: none;
}
.default_cancelButton
{
	/* cancel button settings, if present */
	cursor: pointer;
	/*height: 18px;
	width: 144px;*/
    /*background-image: url(/ABAIImages/Icons/btnABAI_New_ContinueShopping.png);
    background-color: White;*/
	/*background-repeat: no-repeat;*/
	float: right;
	margin-right: 5px;
	border: none;
}