.default_Window{
background:url(tp2.png);
width:100%;
height:100%;
}
.default_alertWindow
{
	border: 1px solid #353596;  /* this is the border around the alert window */
}
.default_titleBar
{
	/* title bar settings */
	color: #ffffff;
	/*background:url(tab.gif) repeat;*/
	background-color:#4f638c;
	font-size:11px;
	border-bottom: 1px solid #353596; /* the bottom border of your title bar, the border that separates it from the content area */
		 /* if you have an icon, you probably want to set this as the same size or a bit larger than the icon size */
	 padding: 3px 3px 0px 0px ;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	padding-top:5px;
	height:20px;
}
.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;
	font: 12px Arial;
	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 5px 5px 17px;
	background:#F4F4F9; /* 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:#F4F4F9; /* your background color.  the content area background color should be set the same as well */
	padding-bottom: 5px;
}
.default_okButton
{
	/* ok button settings */
	background-color: #4f638c;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#FFFFFF;
	border:0;
	margin-right:5px;
	cursor:pointer;
	width:50px;
	padding:2px 0px;
}
.default_cancelButton
{
	/* cancel button settings, if present */
	background-color: #cc0000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#FFFFFF;
	margin-right:5px;
	border:0;
    width:40px;
	cursor:pointer;
	padding:2px 0px;
}
