/* 
    Document   : 04.information.bar
    Created on : Jan 17, 2013, 10:09:35 AM
    Author     : nms
    Description:
        Purpose of the stylesheet follows.
*/
#informationBar {
    height: 85px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    right: 0;
    top: -100px;
    width: 770px;
    z-index: 5000;
    background: none repeat scroll 0 0 #e1f0fa;
    border: 1px solid rgba(147, 184, 189, 0.8);
    box-shadow: 0 0 7px 7px rgba(105, 108, 109, 0.698), 0 0 20px 20px rgba(208, 223, 226, 0.6) inset;
}
#informationBarMessageContainer{
    padding: 15px;
    text-align: left;
    display:block;
}
.infoBarIcon{
    font-size: 50px;
    color: #259ADD;
    text-shadow: 0 0 13px #FFFFFF;
    padding-top:10px;
    display: inline-block;
    width:5%;
    margin: 0px 1%;
}
.infoBarMessage{
    font-size: 16px;
    color: #259ADD;
    text-shadow: 0 0 13px #FFFFFF;
    font-family: 'Lato', "Trebuchet MS", Arial, sans-serif; 
    display: inline-block;
    width:88%;
    margin: 0px 1%;
}

@media screen and (max-width: 55em) {
    #informationBar {
        width: 97%;
    }
    .infoBarIcon{
        width:15%; 
    }
    .infoBarMessage{
        width:79%;  
    }
}