.default_alertWindow
{
	border: 2px solid #000000;  /* this is the border around the alert window */
}
.default_titleBar
{
	/* title bar settings */
	color: #FFFFFF;
	border-bottom: 1px solid #000000; /* the bottom border of your title bar, the border that separates it from the content area */
	background: #336699; 
	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; font-variant:normal; font-size:14pt; font-family:Times New Roman; font-weight:bold
}
.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 */
	color: #000000;
	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; font-style:normal; font-variant:normal; font-weight:normal; font-size:14px; font-family:Times New Roman; text-align:justify; margin-left:0
}
.default_buttonArea
{
	/* the button area, the div that your buttons are placed into */
	border-style:solid; border-width:1px; 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: 3px;padding-left:4px; padding-right:4px; padding-top:3px
}
.default_okButton
{
	/* ok button settings */
	background: url('accept.png') no-repeat left center;
	padding-left: 15px;
	margin-right: 5px;
	background-position-y:center; background-position-x:left; height:35px; font-variant:normal; font-size:12pt; font-family:Times New Roman; font-weight:bold; background-repeat:no-repeat
}
.default_cancelButton
{
	/* cancel button settings, if present */
	background: url('cancel.png') no-repeat left center;
	padding-left: 15px;
	margin-right: 5px;
	background-position-y:center; background-position-x:left; height:35px; font-variant:normal; font-size:12pt; font-family:Times New Roman; font-weight:bold; background-repeat:no-repeat
}
