﻿/* Notification styles
-----------------------------------------------------------*/
#mvcNotify
{
    position: fixed;
	top: 0px;
	z-index: 1000;
    right: 10px;
    margin: 5px auto;
	width: 500px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
     border-top-left-radius: 5px;
     border-top-right-radius: 5px;
}

@media (max-width: 499px) {
    #mvcNotify
    {
        right: 0px;
	    margin: 5px;
	    width: 100%;
    }
}

#mvcNotify .messagebox
{
	padding: 12px 10px 10px 30px;
	box-shadow: 3px 3px 8px #000;
	margin-top: 2px;
}

#mvcNotify .success
{
	color: #060;
	background: #cfc url(/Images/Main/ok.gif) no-repeat 8px 12px;
}

#mvcNotify .warning
{
	color: #c60;
	background: #ffc url(/Images/Main/warn.gif) no-repeat 8px 12px;
}

#mvcNotify .error
{
	color: #c00;
	background: #fcc url(/Images/Main/fail.gif) no-repeat 8px 12px;
}
