/* Liquid Layout for 2 columns */
/* column container */
#colcontainer {
	position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
    clear:both;
    float:left;
    width:100%;			/* width of whole page */
	overflow:hidden;	/* This chops off any overhanging divs */
}
/* 2 column right menu settings */
#colcontainer {
}
#colcontainer #colleft {
    float:left;
    width:200%;
    margin-left:-250px;
    position:relative;
    right:100%;
}
#colcontainer #col1wrap {
    float:left;
    width:50%;
    position:relative;
    left:50%;
    padding-bottom:1em;
}
#colcontainer #col1 {
    margin:0 15px 0 265px;
    overflow:hidden;
}
#colcontainer #col2 {
    float:right;
    width:220px;
    position:relative;
    left:235px;
    margin-top: 15px;
}

/* --> */

