
/*
The following are CSS Conditional Comments to fix 
IE's min-height non-existence and also, the fact 
that serif fonts do not render exactly the same 
size in all browsers. "lt IE 6" is equivalent to 
"less than IE 6". -ubik
*/

document.write("<!--[if lt IE 6]>")
document.write('<style type="text/css">')
document.write('.content {height:250px}')
document.write('#main {height:400px}')
document.write('#container {width:780px;}')
document.write('h1 {font-size:50px}')
document.write('</style>')
document.write('<![endif]-->')

document.write('<!--[if gt IE 5]>')
document.write('<style type="text/css">')
document.write('.content {height:190px}')
document.write('#main {height:400px}')
document.write('#container {width:780px;}')
document.write('h1 {font-size:55px}')
document.write('a.topitem {background-position: 0px 2px}' )
document.write('</style>')
document.write('<![endif]-->')