/* 
    Document   : three_cols_layout
    Created on : Nov 17, 2008, 12:41:32 AM
    Author     : aggelos
    Description:
        This css contains the layout for the 3 columns maincontainer.
*/
@import url('layout.css');

.columnsContainer{
    width:100%;
    margin-top:5px;
    float: left;
    clear: both;
    position: relative;
}

.column1 {
    float: left;
    width: 27%;
    height: auto;
    margin-left: 1%;
    margin-right: 1%;
    border: 0px solid white;
    clear: none;
}

.column2 {
    float: left;
    width: 36%;
    height: auto;
    margin-left: 1%;
    margin-right: 1%;
    border: 0px solid white;
    clear: none;
}

.column3 {
    float: left;
    width: 27%;
    height: auto;
    margin-left: 1%;
    margin-right: 1%;
    border: 0px solid white;
    clear: none;
}