﻿#Container
{
    /* CSS to centre website */    
    margin: 0 auto;
    text-align: left;
    
    width: 800px;
    
    /*
    Increase line height for readability.
    */    
    line-height: 100%;
    height:1000px;
    
    
}

body 
{
	font-family: Verdana, "trebuchet MS", Helvetica, sans-serif;
	
	/*
    The base font size of the TT is 10px, which means 1em is 10px, 
    1.2em is 12px and so on.

    The ems for the screen are actually multipliers of the document’s
     base font size. The good practice is to set document’s font size
     to 10px (or if you want it to be resizable by the Internet
     Explorer users, set it to 62.5%).
    */
	font-size:62.5%;
	background-color:White;
	
	/* IE Hack to centre website */
	text-align: center
}

#Header
{
    height:90px;
}

#ContentLeft
{
    float: left;
    width: 130px;   
}

#ContentRight
{
    float: right;
    width: 130px;    
}

#ContentCentre
{
    margin-left: 130px;        
}



#Footer, #PopupFooter
{
    clear:both;
}


*
{
    /*
    Use the universal selector to remove all
    padding/margins from HTML element by default.
    */    
    padding: 0px;
	margin:0px;
}

ul
{
    /*
    Remove all bullets from ul element by default.
    */    
    list-style:none;
}

li
{
    /*
    Remove all underlines from li elements by default.
    */    
    text-decoration:none;
}

a
{
    /*
    Remove all underlines from a elements by default.
    */  
    text-decoration: none;
}

img
{
    border-style: none;
}

/* Admin */
#AdminContentLeft
{
    width: 130px; 
    float: Left;  
}

#AdminContentRight
{
    width: 670px;
    margin-left:20px; 
}


/* Popup */
#PopupContentLeft
{
    width: 402px; 
    float: Left;  
    margin-left:30px;
}

#PopupContentRight
{
   
    width: 300px;
    margin-left:450px;    
}

/*
#PopupContent
{
    width: 820px;
}
*/

#PopupContainer
{
    /* CSS to centre website */    
    margin: 0 auto;
    margin-top:2px;
    margin-bottom:2px;
    padding-left:20px;
    padding-right:20px;
    padding-bottom:10px;
    padding-top:8px;
    text-align: left;
    
    width: 780px;
    
    /*
    Increase line height for readability.
    */    
    line-height: 100%;
   
    border-width: 1px;
    border-style: solid;
    border-color: #7EB238;
}
