﻿#popup_overlay {
    position: fixed;
    background-color: rgba(204,204,204,0.4) !important;
    opacity: 1 !important;
}
#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 #cccccc;*/
    color: #000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 1px 1px 50px rgba(0,0,0,0.3);
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #FFFFFF;
	/*background: #fff url(/images/message/title.gif) top repeat-x;*/
    background: #0378d8;
	cursor: default;
	padding: 5px;
	margin: 0em;
}

#popup_content {
	/*background: 16px 16px no-repeat url(/images/message/info.gif);*/
	padding: 20px;
	margin: 0em;
}

#popup_content.alert {
	/*background-image: url(/images/message/info.gif);*/
}

#popup_content.confirm {
	/*background-image: url(/images/message/important.gif);*/
}

#popup_content.prompt {
	/*background-image: url(/images/message/help.gif);*/
}

#popup_message {
}

    #popup_message > div {
        line-height: 30px !important;
    }

    #popup_panel {
        text-align: center;
        margin: 1em 0em 0em 1em;
    }
    #popup_panel input {
         background: #0378d8;
         color: #fff;
         outline: none;
         border: 0;
         padding:  5px 10px;
         cursor: pointer;
         border-radius: 2px;
    }

#popup_prompt {
	margin: .5em 0em;
}