#system-message-container
{
	display: none;
}

#modal-messages
{
	position: fixed;
	text-align: center;
	width: 500px;
	height: auto;
	overflow: hidden;
	margin: 0;
	left: 0;
	top: 0;
	z-index: 1000;
    border-radius: 6px;
    padding: 0 20px 20px 20px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.7);
    background: #EDEDED;
}

#messages-overlay
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #000000;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
    opacity: 0.6;
}

#modal-messages #messages-header
{
	height: 35px;
	width: 100%;
    margin: 0;
    font-size: 0.8em;
}

#modal-messages #messages-header #messages-title
{
    float: left;
    margin-left: 15px;
    font-weight: bold;
}

#modal-messages #messages-header #messages-close
{
    float: right;
    margin-right: 15px;
    margin-top: 7px;
}

#modal-messages #messages-header #messages-close img
{
	display: block;
}

#modal-messages #messages-main
{
	background: #ededed;
    height: auto;
    width: 100%;
    display: block;
    color: #717171;
    text-align: center;
    padding: 15px 0;
}


#modal-messages #messages-main p
{
	margin: 0;
    text-align: center;
    line-height: 125%;
}

#modal-messages #messages-footer
{
	clear: left;
	display: block;
	width: auto;
	height: 35px;
	background: #60605f;
	color: #f9fea6;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	line-height: 35px;
    padding-right: 15px;
    font-size: 85%;
    text-align: right;
}

#modal-messages #messages-footer a
{
	color: #f9fea6;
	border-bottom: 1px dotted #f9fea6;
}

#modal-messages #messages-header.error
{
    background: #E08021;
}

#modal-messages #messages-main span
{
	display: block;
	margin-bottom: 10px;
}

#modal-messages #messages-main span.messages-error
{
	color: #E08021;
}

#modal-messages #messages-main span.messages-notice
{
	color: #717171;
}