﻿/* Layout 1: Header, Left Area, Content Area, Footer */

	.AllContentContainer
	{
		position: relative;
		width: 100%;
		
	}

    #Header 
    {
		position: relative;
		float: left;
		width: 100%;
		min-height: 50px;
    }

    * html #Header
    {
		height: 50px;
	}

	.Clearing 
	{
		clear: both;
		overflow: hidden;
	}

    .Clearing:After
    {
		content: " ";
		display: block;
		clear: both;
    }

    #LeftAccess
    {
		position: relative;
		float: left;
		width: 100%;
		overflow:hidden;
    }


    #Left
    {
		/*position: relative;*/
		float: left;
		width: 15%;
		overflow:hidden;
		background-color: #E3EFFB;
    }
    
    .leftmenu .colleft {
		right:75%;			/* right column width */
		background:#f4f4f4;	/* left column background colour */
	}

    * html #Left
    {
		height: 800px;
	}

    #Content
    {
		/*position: relative;*/
		float: left;
		width: 83%;
		left:100%;
		background-color: white;
    }

    * html #Content
    {
		height: 400px;
	}

    #Right
    {
		display: none;
    }

    #Footer
    {
		position: relative;
		float: left;
		width: 100%;
		min-height: 80px;
		clear:both;
    }

    * html #Footer
    {
		height: 80px;
	}

/* End Layout 1 */
