/*
    Syndicatie.nl browser bug workarounds stylesheet
    Last update: 20030725

    Browser bugs we work around:

    - The broken box model in IE5-5.5/Win
    - Wrong list number positioning in Safari
    - List item background images are not rendered properly in IE, so they
      will not be displayed in IE. Workarounds are in the flavour stylesheets.

    Unsupported browser bugs:

    - Some elements are positioned inproperly in IE5/mac due to incorrect 
      inheritance of position: relative. 
      http://developer.apple.com/internet/css/ie5cssbugs.html
*/

/*
    Working around broken box model with SBMH
    http://css-discuss.incutio.com/?page=BoxModelHack
*/
#header
{
\height:            181px;
heigh\t:            180px;
}
#box
{
\width:             652px;
w\idth:             654px;
\margin-left:       -326px;
ma\rgin-left:       -327px;
}

/*
    Safari leaves no space between the list number and the content of a list
    element with list-style-position: inside. To work around this, we first set 
    it and than reset it to 0 for other browsers.
    http://www.hixie.ch/tests/evil/css/import/extra/mediaexoticmedia.html (53c)
*/
.title
{
    padding-left:   2em;
}
@media ScReEn { .title { padding-left: 0; } }

/*
    Mozilla currently does not respect outline: none, so we have this:
*/
#navigation a,
#flavours a,
a.feed:active
{
    -moz-outline:   none;
}
