/*
 * A List Apart's Holy Grail layout
 * http://www.alistapart.com/articles/holygrail
 */

@import url(posts.css);
@import url(theme.css);

body {
    min-width: 810px;
    padding:0; margin:0;
}

#header {
    top: 0;
    margin: 0;
}

#container {
   width: 800px;
   margin-left: auto;
   margin-right: auto;
}

#container .column {
    position: relative;
    float: right;
}

#container #center {
    width: 630px;
	float: left;
}

#left {
    width: 150px;   
}

#right {
   width: 150px;
}

#footer {
    clear: both;
}

/*** IE6 Fix ***/
* html #left {
    left: 5%;
}

