var head = document.getElementsByTagName('head')[0];
var style = document.createElement('style');
style.setAttribute("type", "text/css");
head.appendChild(style);
var style_text = '.opencart_ads_single{ font-size: 11px; height:130px;}.opencart_ads_single_title{ font-size: 14px; font-weight:bold;}.opencart_ads_single ul li{ display: inline-block; text-align: center; margin-left:3px; min-width:100px; border:1px solid white ;}.opencart_ads_single ul li:hover{ border:1px solid blue;}.opencart_ads_single ul li a:hover{ color:red;}.price-old{ text-decoration:line-through; color:gray;} ';
if (style.styleSheet) { // IE style.styleSheet.cssText = style_text; } else { // the world var tt1 = document.createTextNode(style_text); style.appendChild(tt1); }
var oldonload = window.onload;
window.onload = function() {
if (oldonload) {
oldonload();
}
var oas_top = document.getElementById('oas_top'); var oas_bottom = document.getElementById('oas_bottom');
if (oas_top){
if (oas_top.getElementsByTagName('ul').length > 0){
document.getElementById('oas_title_top').style.display=''; oas_top.style.display='';
}
}
if (oas_bottom){
if (oas_bottom.getElementsByTagName('ul').length > 0){
document.getElementById('oas_title_bottom').style.display=''; oas_bottom.style.display='';
}
}
}


