#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;
	background: #ffffff;
        padding: 2px;
                
        border-top-width: 3px;
        border-right-width-value: 3px;
        border-bottom-width: 3px;
        border-left-width-value: 3px;
        border-top-style: solid;
        border-right-style-value: solid;
        border-bottom-style: solid;
        border-left-style-value: solid;
        border-top-color: transparent;
        border-right-color-value: transparent;
        border-bottom-color: transparent;
        border-left-color-value: transparent;
        border-image-source: none;
        border-image-slice: 100% 100% 100% 100%;
        border-image-width: 1 1 1 1;
        border-image-outset: 0 0 0 0;
        border-image-repeat: stretch stretch;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.4);
}

#messages-overlay
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #000000;
        opacity: 0.2;
}

#modal-messages #messages-header
{
	height: 35px;
	width: 100%;
	background: #fffff;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
        display: block;
        color: #0000000;
        text-align: left;
        line-height: 35px;
        font-size: 125%;
        margin: 0;
}

#modal-messages #messages-header #messages-title
{
        float: left;
        margin-left: 5px;
        font-weight: normal;
        font-family: 'Oxygen',Arial,sans-serif;
        color: #222222;
}

#modal-messages #messages-header #messages-close
{
        float: right;
        margin-right: 0px;
        margin-top: -3px;
        padding-top: 0px;
        padding-right: 2px;
        padding-bottom: 2px;
        padding-left: 2px;
        width: 16px;
        height: 16px;

        opacity: 0.8;
    
}

#modal-messages #messages-header #messages-close:hover
{
        opacity: 1;
}

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

#modal-messages #messages-main
{
	background: #ffffff;
        height: auto;
        width: 100%;
        display: block;
        color: #7d7b7a;
        font-size: 125%;
        text-align: justify;
        min-height: 100px;    
}


#modal-messages #messages-main p
{
	margin: 0;
        margin-left: 5px;
        padding: 0px;
        text-align: justify;
        font-size: 85%;
        line-height: 125%;
}

#modal-messages #messages-footer
{
	clear: left;
	display: block;
	width: auto;
	height: 35px;
	background: #ffffff;
	color: #f9fea6;
	border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
	line-height: 35px;
        padding-right: 2px;
        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;
}