﻿/* The structure of this layout was derived from the following site
http://matthewjamestaylor.com/blog/ultimate-2-column-left-menu-pixels.htm */

body {
    margin: 0;
    padding: 0;
    border: 0; /* This removes the border around the viewport in old versions of IE */
    width: 100%;
    background: #fff;
    min-width: 767px; /* Minimum width of layout - remove line if not required */
    /* The min-width property does not work in old versions of Internet Explorer */
    /* font-size:90%; */
}

/* Header styles */
#header {
    clear: both;
    float: left;
    width: 100%;
}

/* column container */
.colmask {
    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 */
}


.popupDiv /*added as a fix for htmleditorextendor issue where blank white box appears*/ {
    display: none;
}


#colmask {
    position: relative; /* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
    clear: both;
    overflow: hidden; /* This chops off any overhanging divs */
    background: #fff; /* Left column background colour */
    margin-right: 20px;
}

#colright {
    float: left;
    width: 100%;
    position: relative;
    left: 170px; /* Left Column (LC) left padding + LC width + LC rightpadding
                                = 0 + 150 + 20 = 170 */
    background: #fff; /* Right column background colour */
}

#col1wrap {
    float: right;
    width: 100%;
}

#col1pad {
    margin: 0 220px 0 0px; /* Left Column (LC) left padding + LC width + LC rightpadding + RC right padding
                                = 0 + 150 + 20 + 45 = 170 */
}

#col1 {
    overflow: hidden;
    background: #fff;
    width: 170px;
    vertical-align: top;
}

#col2 {
    position: relative;
}

.layouttable {
    display: table;
    width:100%
}

.table-cell {
    display: table-cell;
    vertical-align: top;
}


/* Footer styles */
/*	#footer {
        clear:both;
        float:left;
        width:100%;
		border-top:1px solid #000;
    }
    #footer p {
        padding:10px;
        margin:0;
    }
*/
