.Notification-container
{
    width: 320px;
    z-index: 10005;
}


* html .Notification-container
{
    position: absolute;
    
}

.Notification-item
{
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 14px;
    display: block;
    position: relative;
    margin: 0;
    min-height: 20px;
    min-width: 375px;
}

.Notification-item-wrapper
{
    min-height: 80px;
    min-width: 400px;
    padding:20px;
}

.Notification-item p
{
    text-align: center;
    margin: 0 50px;
}

.Notification-item-close
{
    width: 22px;
    height: 22px;
    position: absolute;
    top: -8px;
    right: -8px;
    background-position:top;
}

.Notification-item-close:hover
{
    background-position: center;
    }
   
.Notification-item-close:active
{
    background-position: bottom;
    }


.Notification-item-btnYesContainer
{
    /*BY KKHELAWY @21.09.2012*/
    position: absolute;
    top: 80%;
    left: 32%;
    margin-top: -10px;
}
.Notification-item-btnNoContainer
{
    /*BY KKHELAWY @21.09.2012*/
    position: absolute;
    right: 25%;
    top: 80%;
    right: 32%;
    margin-top: -10px;
}


.Notification-item-btnOkContainer
{
    /*BY KKHELAWY @21.09.2012*/
    position: absolute;
    right: 42%;
    top: 80%;
    margin-top: -10px;
}

.Notification-item-button
{
    /*BY KKHELAWY @21.09.2012*/
    width: 65px;
    height: 20px;
}

.Notification-item-image
{
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 0;
}

/**
 * Notification types
 *
 * pattern: Notification-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */

/**
 * positions
 *
 * pattern: Notification-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.Notification-position-TopLeft
{
    position: fixed;
    left: 20px;
    top: 20px;
}

.Notification-position-TopCenter
{
    position: fixed;
    top: 20px;
    left: 50%;
    margin-left: -140px;
}

.Notification-position-TopRight
{
    position: fixed;
    top: 135px;
    right: 20px;
}

.Notification-position-MiddleLeft
{
    position: fixed;
    left: 20px;
    top: 50%;
    margin-top: -40px;
}

.Notification-position-MiddleCenter
{
    position: fixed;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
    z-index: 10005;
}

.Notification-position-MiddleRight
{
    position: fixed;
    right: 20px;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
    z-index: 10005;
}
.Notification-modal
{
    /*BY KKHELAWY @21.09.2012*/
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 10004;
}
/***********************BEGIN::For Status Bar Notification BY KKhelawy @29.11.2012::****************************/
.StatusBarWrapper
{
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 9998;
    height: 50px;
    width: 100%;
    display: none;
}
.StatusBarContent
{
    position: relative;
    z-index: 9999;
    height: 50px;
    width: 100%;
    text-align: center;
    top: 25%;
    font-weight: normal;
    font-size: 14px;
    color:#000;
}
.StatusBarClose
{
    width: 22px;
    height: 22px;
    position: absolute;
    z-index: 9999;
    top: 7px;
    right: 7px;
    cursor: pointer;
    
}


.StatusBarNotice .StatusBarClose
{
    background-position: left;
}

.StatusBarNotice .StatusBarClose:hover
{
    background-position: center;
    }
    
.StatusBarNotice .StatusBarClose:active
{
    background-position: right;
    }
    

.StatusBarSuccess .StatusBarClose
{
    background-position: left;
}

.StatusBarSuccess .StatusBarClose:hover
{
    background-position: center;
}

.StatusBarSuccess .StatusBarClose:active
{
    background-position: right;
}




.StatusBarWarning .StatusBarClose
{
    background-position: left;
}

.StatusBarWarning .StatusBarClose:hover
{
    background-position: center;
}

.StatusBarWarning .StatusBarClose:active
{
    background-position: right;
}

.StatusBarError .StatusBarClose
{
    background-position: left;
}

.StatusBarError .StatusBarClose:hover
{
    background-position: center;
}

.StatusBarError .StatusBarClose:active
{
    background-position: right;

/***********************END::For Status Bar Notification BY KKhelawy @29.11.2012::****************************/