﻿/* ============================================================
	AllMsg
   ============================================================ */
.MsgControl-close
{
    width:21px;
	height:20px;
	cursor:pointer; 
	position: relative;
    float: right;
    padding: 0px;
    margin: 0px;  
}
.MsgControl
{
  font-size: 12px;
    font-weight: normal;
    width: 100%;
    margin-left: -2px;
    text-align: left;
    margin-bottom: 16px;    
}
/* ============================================================
	ConfirmMsg
   ============================================================ */
.ConfirmMsg
{
}
.ConfirmMsg .MsgControl-close
{
    background: transparent url(/Images/success-close.png) no-repeat top right;
}
.ConfirmMsg .MsgControl
{
	border:solid 1px #90ac13; 
	background:#eef4d3 url(../images/success.png) 8px 6px no-repeat;
	color:#90ac13; 	
}
.ConfirmMsg .MsgControl-txt
{
	color: #90ac13;
}

/* ============================================================
	WarningMsg
   ============================================================ */
.WarningMsg
{
}
.WarningMsg .MsgControl
{
    border: solid 1px #c69136;
    background: #FFFFCC url(/Images/warning.png) 8px 6px no-repeat;
    color: #c69136; 
}
.WarningMsg .MsgControl-close
{
	background: transparent url(/Images/warning-close.png) no-repeat top right;
}
.WarningMsg .MsgControl-txt
{
	color: #C69136;
}

/* ============================================================
	ErrorMsg
   ============================================================ */
.ErrorMsg
{
}
.ErrorMsg .MsgControl
{
    border: solid 1px #CC0000;
    background: #F7CBCA url(/Images/error.png) 8px 6px no-repeat;
    color: #CC0000;
    margin-top: 5px;
}

.ErrorMsg .MsgControl-txt
{
    color: #CC0000;
}
.ErrorMsg .MsgControl-close
{
    background: transparent url(/Images/error-close.png) no-repeat top right;
}


