/*
    Toast stylesheets for Chillat.net

    (c) 2009, Chillat.net
*/



#toastbar {	/* container for the toasts */
    position: fixed;
    right: 10px;
    top: 10px;
    width: 240px;
    background-color: transparent;
}

#toastbar div.toast {
    margin-top: 2px;
    background: 5px 5px no-repeat #000000;
    background-color: rgba(0,0,0,0.7);
    -moz-border-radius: 4px;
    font: 9pt helvetica,arial,tahoma;
    color: #EEEEEE;
    cursor: pointer;
    min-height: 60px;
}
#toastbar div.toast:hover {
    background-color: rgba(0,0,0,0.9);
    color: #FFFFFF;
    cursor: pointer;
}
#toastbar div.toast a {
    display: block;
    padding: 4px 4px 4px 60px;
    color: inherit;
    text-decoration: none;
}





#eventbar {
    position: fixed;
    left: 10px;
    top: 0px;
    background-color: transparent;
}
#eventbar > div {
    margin-right: 5px;
    background: #404040;
    background-color: rgba(64,64,64,0.7);
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
}
#eventbar > div:hover {
    background-color: #ff6c00;
}
#eventbar > div > a {
    padding: 3px 5px 3px 5px;
    text-decoration: none;
    display: block;
}
#eventbar > div img {
    border: none;
}
