/* WEBSITE MESSAGE SYSTEM CSS */
.website-message { visibility: hidden; position: fixed; top: 0; right: 0; bottom: auto; left: 0; border-radius: 0 0 5px 5px; padding: 8px 10px 10px; overflow: hidden; width: 500px; min-height: 25px; background-color: #666; margin: auto; z-index: 9999999999; }
.website-message .wm-wrapper { position: relative; padding: 0 20px 0 0; }
.website-message .wm-wrapper ul { margin: 0; padding: 0; }
.website-message .wm-wrapper ul li { background: 5px center no-repeat transparent; margin: 0 10px 8px 0; padding: 5px 5px 5px 35px; list-style: none; text-align: left; color: #FFF; line-height: 18px; font-family: Arial; font-size: 14px; border-radius: 3px; cursor: pointer; }
.website-message .wm-wrapper ul li:last-child { margin-bottom: 0; }
.website-message .wm-wrapper ul li a { color: #FFF; text-decoration: underline; outline: none; }
.website-message .wm-wrapper ul li b { display: block; font-weight: normal; font-size: 11px; }
.website-message .wm-wrapper ul li[msg-type='1'] { background-color: rgba(67, 187, 47, 0.7); background-image: url("/library/images/cms/website-msg/success.png"); }
.website-message .wm-wrapper ul li[msg-type='2'] { background-color: rgba(231, 110, 102, 0.7); background-image: url("/library/images/cms/website-msg/error.png"); }
.website-message .wm-wrapper ul li[msg-type='3'] { background-color: rgba(174, 142, 47, 0.7); background-image: url("/library/images/cms/website-msg/alert.png"); }
.website-message .wm-wrapper ul li[msg-type='4'] { background-color: rgba(55, 140, 176, 0.7); background-image: url("/library/images/cms/website-msg/info.png"); }
.website-message .wm-wrapper > a { background: url("/library/images/cms/website-msg/close_message.png") center top no-repeat scroll transparent; display: block; text-decoration: none; position: absolute; top: 0; right: 0; width: 24px; height: 24px; outline: none; }

.md-modal {
	visibility: hidden;
	backface-visibility: hidden;
}

.md-show {
	visibility: visible;
}

.md-overlay 
{
    width:100%; height:100%; position:fixed; top:0; left:0; z-index:999;  background:url("/library/img/topbar/white.png");
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}

.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}

/* Effect 1: Fade in and scale up */
.md-effect-1 .md-content
{
	transform: scale(0.7);
	opacity: 0;
    transition: all 0.3s;
}

.md-show.md-effect-1 .md-content 
{
	transform: scale(1);
	opacity: 1;
}

.safari-fix     
{
    transform:rotate(10deg);
}
.closeButton {
    padding: 3px;
    background-color: #00aeef;
    color: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url('../../images/icon_close.png');
    background-position:center center;
    background-repeat:no-repeat;
    cursor: pointer;
}