var browserw = window.innerWidth != undefined ? window.innerWidth : document.body.offsetWidth;

if(browserw >= 1055 && browserw < 1280){
	var npixel = 75 - Math.floor((browserw-1055)/3);
	document.write('<style type="text/css">\n');
	document.write('#headcdovo { left: -'+npixel+'px; }\n')
	document.write('</style>\n');
} else if(browserw >= 1280){
	document.write('<style type="text/css">\n');
	document.write('#headcdovo { left: 0; }\n')
	document.write('</style>\n');
}

/*<script type="text/javascript">
document.write('<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); echo "/style1152.css"; ?>" />');
function UniWin()
{
	this.width = window.innerWidth != undefined ? window.innerWidth : document.body.offsetWidth;
	this.height = window.innerHeight != undefined ? window.innerHeight : document.body.offsetHeight;
}

var uniwin = new UniWin();
if(uniwin.width >= 1055 && uniwin.width < 1280){
	var npixel = 75 - Math.floor((uniwin.width-1055)/3);
	document.write('<style type="text/css">\n');
	document.write('#headcdovo { left: -'+npixel+'px; }\n')
	document.write('</style>\n');
} else if(uniwin.width >= 1280){
	document.write('<style type="text/css">\n');
	document.write('#headcdovo { left: 0; }\n')
	document.write('</style>\n');
}
</script>
*/