My html
Code:
<div id="main">
<span class="contnt"> 
 
lalala - a bunch of stuff.. no more css tags nested in here
   
</span>
</div>
My CSS
Code:
#main {
  position:absolute; 
  left:160px; 
  top:110px; 
  z-index:1; 
  width: 545px;
  border-right-width: thin;
  }
 
.contnt p, div, th, td, li, dd  {
   /* more specific to override rule in improrting sheet */
  font-size: x-small;
   /* false value for WinIE4/5 */
  voice-family: "\"}\""; 
  voice-family: inherit;
   /*recover from trick */
  font-size: small;
   /*intended value for better browsers*/
  }
when i add the border-right-width: thin; property for whatever reason my code pages lost he left:160px; and then the border thing doesn't work either...

its probably a simple answer - please help

thanks