#cb_message.container {
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 5px #999;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	width: 50%;
}

#cb_message .title {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: #CCC  /* url(images/title.gif) top repeat-x */ ;
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em ;
}

#cb_message .content {
	background: 1px 16px no-repeat url(images/error.gif);
	padding: 0.8em 0.5em;
	margin: 0em;
	padding-bottom: 1em;
	font-size: 14px;
}

#cb_message .content.INFO     { background-image: url( images/info.gif      ); }
#cb_message .content.QUESTION { background-image: url( images/help.gif      ); }
#cb_message .content.WARNING  { background-image: url( images/important.gif ); }
#cb_message .content.ERROR    { background-image: url( images/error.png     ); }
#cb_message .content.alert    { background-image: url( images/info.gif      ); }
#cb_message .content.confirm  { background-image: url( images/important.gif ); }
#cb_message .content.prompt   { background-image: url( images/help.gif      ); }
#cb_message .message { padding-left: 28px; }
#cb_message .panel { text-align: center; margin: 0.5em; }
#cb_message .prompt { margin: .5em 0em; }
#cb_message .panel input{ width:100px; height:30px; margin-right: 5px;margin-left: 5px; }


@media (min-width: 640px) {
	#cb_message .content {
		background: 16px 16px no-repeat url(images/error.gif);
		padding: 1.2em 1.75em;
	}
	#cb_message .message { padding-left: 48px; }
}


