#popup-container {
    font-family: Arial, sans-serif;
    font-size: 14px;
    min-width: 350px; /* Dialog will be no smaller than this */
    max-width: 600px; /* Dialog will wrap after this width */
    /*background: #FFF;*/
    /*border: solid 5px #000;*/
    /*color: #000;*/
}

#popup-title-container .title-content {
    height: 28px;
    margin: 0;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 28px;
    color: #fff;
    background: url(../images/box-title.png);
    display: block;
    float: left;
}

#popup-title-container .title-left, #popup-title-container .title-right {
    width: 10px;
    height: 28px;
    background: url(../images/box-title-left.png);
    display: block;
    float: left;
    position: relative;
}

#popup-title-container .title-right {
    background: url(../images/box-title-right.png);
}

#popup-content {
    border: 2px solid #2C2624;
    border-top: none;
    outline: 1px solid #000;
    outline-top: none;
    padding: 5px;
    padding-top: 20px;
    padding-left: 65px;
    clear: both;
    display: block;
    margin: 0 2px;
    background-color: #151211;
    background-repeat: no-repeat;
    background-position: 5px 5px;
}

#popup-content.popup-prompt {
    padding-left: 10px;
    padding-top: 10px;
}

#popup-content.popup-prompt input  {
    padding: 3px;
}

#popup-content.popup-alert {
    background-image: url(../images/icons/error.png);
}

#popup-content.popup-success {
	background-image: url(../images/icons/success.png);
}

#popup-content.popup-confirm {
	background-image: url(../images/icons/info.png);
}

#popup-content.popup-prompt {
	background-image: url(../images/icons/help.gif);
}

#popup-panel {
	text-align: right;
    margin-top: 10px;
}

#popup-panel button {
	margin: 2px;
	padding: 3px 10px;
	border: 1px solid #999;
	color: #000;
	background: #f6f6f6;
	cursor: pointer;
}

#popup-panel button:hover {
    text-decoration: none;
    border-color: #999;
    background: #f3f3f3;
    outline: 0;
    -moz-box-shadow: 0 0 3px #999;
    -webkit-box-shadow: 0 0 3px #999;
    box-shadow: 0 0 3px #999
}

#popup-prompt {
	margin: .5em 0em;
}