/*-- hacks for IE family - curses on them --*/
/*-- prefix property with underscore delivers only to IE6/7 --*/
/*-- prefix property with dot delivers to IE6 --*/

a{
  .border-right: 1px solid transparent;
  _border-right: 1px solid white; /*transparent; doesnt work in IE6 */
}

/* weird bug in IE7 - blockquote next to left float picture
   picture goes if p's inside block are italic!! */
#content blockquote.textright p{
  .font-style: normal;
}

/* cures IE6 bug which adds extra space between elements in a ul*/
#nav li {
  display: inline;
}
/* stopping VB's nav dropping below content in home page */
#contentsec {
  .width: 303px;
}

