/* Infobar 2.0 CSS */


#informationbar{
position: fixed;
font: message-box;
left: 0;
width: 100%;
z-index: 150; /* Change this value if needed to reflect your site’s setup */
text-indent: 25px;
background: InfoBackground url(./img/warning.gif) no-repeat fixed .3em .3em;
text-align: left;
padding: 5px 0;
background-color: lightyellow;
border-bottom: 1px solid black;
}


#informationbarpm{
position: fixed;
font: message-box;
left: 0;
width: 100%;
z-index: 150; /* Change this value if needed to reflect your site’s setup */
text-indent: 25px;
background: InfoBackground url(./img/check.gif) no-repeat fixed .3em .3em;
text-align: left;
padding: 5px 0;
background-color: lightyellow;
border-bottom: 1px solid black;
}

* html #informationbar{ /*IE6 fix for position*/
position: absolute;
width: expression(document.compatMode=="CSS1Compat"? document.documentElement.clientWidth+"px" : body.clientWidth+"px");
}

* html #informationbarpm{ /*IE6 fix for position*/
position: absolute;
width: expression(document.compatMode=="CSS1Compat"? document.documentElement.clientWidth+"px" : body.clientWidth+"px");
}

