#popup_container {
 	font-family: 'FrutigerLTW01-45Light';
	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 1px #CCC;
	text-align: left;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title {
	font-size: 18px;
	text-align: center;
	line-height: 1.75em;
	color: #fff;
	background-color: #bd9b08;
	border: solid 1px #FFF;
	border-bottom: solid 1px #fff;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	font-size: 14px;
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-color:#fff;
}

#popup_message {
	padding-left: 48px; 
}

#popup_panel {
	text-align: center;
	margin: 0em 0em 0em 1em;
}

#popup_ok {
  cursor: pointer;
  color: #bd9b08;
  height: 28px;
  width: 70px;
  font-size: 17px;
  border: 1px solid #a8a8a8;
  text-align: right;
  outline: none;
  margin:10px;

  background: #fff;
  background: url(../images/arrow-button-ok.png) no-repeat 5px center; /* fallback */
  background: url(../images/arrow-button-ok.png) no-repeat 5px center, -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f2f2f2)); /* Saf4+, Chrome */
  background: url(../images/arrow-button-ok.png) no-repeat 5px center, -webkit-linear-gradient(top, #ffffff, #f2f2f2); /* Chrome 10+, Saf5.1+ */
  background: url(../images/arrow-button-ok.png) no-repeat 5px center,    -moz-linear-gradient(top, #ffffff, #f2f2f2); /* FF3.6+ */
  background: url(../images/arrow-button-ok.png) no-repeat 5px center,     -ms-linear-gradient(top, #ffffff, #f2f2f2); /* IE10 */
  background: url(../images/arrow-button-ok.png) no-repeat 5px center,      -o-linear-gradient(top, #ffffff, #f2f2f2); /* Opera 11.10+ */
  background: url(../images/arrow-button-ok.png) no-repeat 5px center,         linear-gradient(top, #ffffff, #f2f2f2);
}


#popup_prompt {
	margin: .5em 0em;
}