#popup_container {
	font-family: Arial, sans-serif;
	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;
	border-radius: 5px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: #CCC url(img/title.gif) top repeat-x;
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url(img/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(img/info.gif);
}

#popup_content.confirm {
	background-image: url(img/important.gif);
}

#popup_content.prompt {
	background-image: url(img/help.gif);
}

#popup_content.select {
	background-image: none;
	padding: 1em 1em;
}

#popup_content.text {
	background-image: none;
	padding: 1em 1em;
}

#popup_content.order {
	background-image: none;
	padding: 1em 1em;
	font-size:1px;
}

#popup_message .droppy {
	border:none;
	display:inline-block;
	width:8px;
	margin:0px;
	background-color:none;
}

#popup_message .droppy.over {
	border:1px dashed #0af;
	width:6px;
	background-color:#def;
}

#popup_message {
	padding-left: 48px;
	overflow:auto;
	max-height: 350px;
}

#popup_content.select #popup_message  {
	padding-left: 0px;
}

#popup_content.order #popup_message {
	padding-left: 0px;
}

#popup_content.text #popup_message  {
	max-height: 400px;
	padding-left: 0px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_ok {
	cursor: pointer;
	color:#fff; border:1px solid #666; background-color: #222; border-radius:5px;
}

#popup_cancel {
	cursor: pointer;
	color:#fff; border:1px solid #666; background-color: #222; border-radius:5px;
}

#popup_prompt {
	margin: .5em 0em;
	color:#fff; border:1px solid #666; background-color: #222; border-radius:5px;
}