/*
 * Force vertical scrollbars
 * cf. http://www.hicksdesign.co.uk/journal/forcing-scrollbars-now-even-better
 */
body {
    height: 100%;
}
html {
    height: 100%;

}
/*
 * Make footer stick to bottom, and force vertical scrollbar
 * cf. http://themaninblue.com/experiment/footerStickAlt/
 */
#container {
    position: relative;
    min-height: 100%;
}
* html #container {
    height: 100%;
}

#footer {
/*    position: relative;
    margin: 0 auto;*/
}

/* ie6 transparency fix 
* html #hm_content img {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(...);
}
*/


