/* Sticky footer styles */

* {
    margin:0;
    padding:0;
} 

html, body, #wrap {
    height: 100%;
}

body > #wrap {
    height: auto;          /* Child selector to hide this from IE6 */
    min-height: 100%;
}

#wrap {
    position:relative;
}

#content {
    padding-bottom: 80px;  /* must be same height as the footer - or a little more ;) */
}  

#footer {
    position: absolute;
    bottom: 0px;
    height: 50px;
    width: 100%;
} 


/* gogga 3 column layout - center column have to be longest :s */
/* CC have to be longest - otherwise LC and RC will overlap footer */

#center{
    margin: 0 17% 0 17%;   /* RC width + padding / LC width + padding */
    padding: 0 1em;
    overflow: auto;        /* tables tend to get to wide - scroll damit */
}

#left {
    width: 15%;            /* LC width */
    padding: 0 1%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

#right {                    /* RC width */
    width: 15%;
    padding: 0 1%;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
}

#content{
    position: relative;  /* RC an LC is relative to this div */
    margin: 0 auto;      /* center it in #wrap */
    width: 100%;         /* FOR IE6 (gives hasLayout and fix positioning problems) */
    min-width: 600px;    /* for the rest */
}


