/* 
    Document   : notimoo
    Created on : 31-mar-2009, 10:49:46
    Author     : PaquitoSoft
    Description:
        Styles for Notimoo notification system.
        Change it to meet your needs.
*/

.notimoo {

    /* Don't touch here */
    position: absolute;
    z-index: 999; /* There are some cases where you'll need to change this if you're currently using a greater one in your project*/
    cursor: pointer;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
	
    /* Change this to fit your needs*/
    padding:10px 10px 10px 30px;
    border: 3px;
    border-style: solid;
    border-color: #B2B2B2;
    background: #333333;
    color: #FFFFFF;
	text-align:left;
}

.notimooError , .notimooWarning, .notimooInfo, .notimooCorrect{
    color: #000;
}

.notimooError {
    background: #f6d3a6 url(/restyling/img/obj/errNotif.gif) no-repeat;
}
.notimooWarning{
    background: #fffbc3 url(/restyling/img/obj/warnNotif.gif) no-repeat;
}
.notimooInfo{
	background: #eee url(/restyling/img/obj/messNotif.gif) no-repeat;
}
.notimooCorrect{
    background: #e2f6de url(/restyling/img/obj/corrNotif.gif) no-repeat;
}

.notimoo .close {
	float:right;
	margin-top: -5px;
	margin-right: -5px;
	height: 15px;
	width: 15px;
}

.notimoo .title {
    font-weight: bold;
    border-bottom: 1px solid;
    font-size:1.2em;
}

.notimoo .message {
    margin-top: 2px;
    clear:both;
}

.notimoo a {
    color: #FFFFFF;
}