You're getting warmer, at least you have it on the page, but you have it inside another style tag. It needs to be in the head, not in another tag. So, where you have:
HTML Code:
<style type="text/css">
<!--
.style1 {color: #CCCCCC; font-size: 9px;}
.style9 {font-size: 9px}
.style11 {color: #CCCCCC}
.style13 {color: #FFFFFF}
.style14 {font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 13px;}
<!--[if IE]>
<style type="text/css">
.pooBox {
width:200px;
}
</style>
<![endif]-->
-->
</style>
It should be:
HTML Code:
<style type="text/css">
<!--
.style1 {color: #CCCCCC; font-size: 9px;}
.style9 {font-size: 9px}
.style11 {color: #CCCCCC}
.style13 {color: #FFFFFF}
.style14 {font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 13px;}
-->
</style>
<!--[if IE]>
<style type="text/css">
.pooBox {
width:200px;
}
</style>
<![endif]-->
Bookmarks