/*-- 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;
}

#nav li ul li#navlnk_here a {
  background: url(none) no-repeat center left;
}
#nav li ul li a:hover {
  background: white url(none) no-repeat center left;
}
