/* ---------------------------------------------------- */
 /*  css for structure 01                                */
 /*  notes                                               */
 /* ---------------------------------------------------- */
 
 /* ---------------------------------------------------- */
 /* STRUCTURAL DIVS                                      */
 /* ---------------------------------------------------- */
 
 
 /* ---------------------------------------------------- */
 /*  wrap (everything including header and footer)       */
 /*  forces everything to centre of browser window       */
 /* ---------------------------------------------------- */
 div#wrap {
 	width:1000px; 
 	margin-top:0px;
 	margin-left:auto;   /* auto centre */
 	margin-right:auto;  /* auto centre */
 	position:relative;
 } 
 div#wrap {
 	min-height:100%;
 	height:auto !important; /* For normal browsers */
 	height:100%; /* For IE */
 }
 div#wrap {
 	min-height:400px;
 	height:auto !important; /* For normal browsers */
 	height:400px; /* For IE */
 }
 
 
 /* ---------------------------------------------------- */
 /*  inner_wrap (everything excluding footer)            */
 /*  use to apply background-color                       */
 /* ---------------------------------------------------- */
 div#outer_wrap {
 	width:100%; 
 	margin-top:0px;
 } 
 
 
 
 /* ---------------------------------------------------- */
 /* header                                               */
 /* ---------------------------------------------------- */
 div#header {
 	float:right;
 	display:inline; 
 	width:1000px;
 	height:171px;
 	margin-left:0px; 
 } 
 
 /* ---------------------------------------------------- */
 /* footer                                               */
 /* ---------------------------------------------------- */
 div#footer {
 	float:left; 
 	width:100%;
 	height:75px;
 	padding-top:20px;
 } 
 
 /* ---------------------------------------------------- */
 /* inner_footer                                               */
 /* ---------------------------------------------------- */
 div#inner_footer {
 	width:1000px; 
 	margin-top:0px;
 	margin-left:auto;   /* auto centre */
 	margin-right:auto;  /* auto centre */
 	position:relative;
 } 
 
 
 /* ---------------------------------------------------- */
 /* navigation bar                                       */
 /* ---------------------------------------------------- */
 div#navigation {
 	float:left; 
 	display:inline; 
 	width:455px; 
 	padding:0px 0px 0px 0px;
 	margin:0 0 0 61px;
 	height:40px;
 	overflow:hidden;
 } 
 
 
 /* ---------------------------------------------------- */
 /* primary_content                                      */
 /* ---------------------------------------------------- */
 div#primary_content {
 	float:left; 
 	display:inline; 
 	width:278px;
 	padding:10px 0 50px 0;
 	margin:0 0 0 96px;
 } 
 div#primary_content {
 	min-height:100%;
 	height:auto !important; /* For normal browsers */
 	height:100%; /* For IE */
 }
 div#primary_content {
 	min-height:400px;
 	height:auto !important; /* For normal browsers */
 	height:400px; /* For IE */
 }
 
 /* ---------------------------------------------------- */
 /* secondary_content                                    */
 /* ---------------------------------------------------- */
 div#secondary_content {
 	float:left; 
 	display:inline; 
 	width:455px; 
 	padding:0px 0px 50px 0px;
 	margin:0 0 0 61px;
 } 
  
 
 /* ---------------------------------------------------- */
 /* end of file                                          */
 /* ---------------------------------------------------- */
 
 