/* CSS Document */

table				{
					margin: 0px;
					padding: 0px;
					}
					
td					{
					vertical-align: top;
					padding: 0px;
					margin: 0px;
					}

/*	Container box that creates the page that appears on black background
	Filled entirely by page table (below) */
/*  Total width: 938px  */
#page				{
					width: 938px;
					/* height determined by local page */
					margin-left: auto;
					margin-right: auto;
					margin-top: 25px;
					margin-bottom: 5px;
					padding: 0px;
					background-color: #383838;
					background-image: url("/images/background.gif");
					background-repeat: repeat;
					border: none;
					/*
					border-left: 1px solid;
					border-right: 1px solid;
					border-top: 4px solid;
					border-bottom: 4px solid;
					border-left-color: #777;
					border-right-color: #777;
					border-top-color: #333;
					border-bottom-color: #333;
					*/
					}
					
/*  The 10-pixel padding between the edge of the page table and each cell
	is created by 'cellpadding' attribute in code */
#page_table			{
	/*
					margin-left: auto;
					margin-right: auto;
					*/
					margin: 0px;
					}
					
#left_menu_panel	{
					width: 160px;
					height: 369px;
					background-color: transparent;
					padding: 0px;
					border: none;
					}
					
/* For 2nd row onwards, display a left empty panel on page layouts of more than 1 row */
.left_panel_empty	{
					width: 160px;
					height: 369px;
					padding: 0px;
					border: none;
					background-color: transparent;	
					}


/* For 2nd row onwards, display a Google ad on page layouts of more than 1 row */
.left_panel_ad		{
					vertical-align: middle;
					text-align: left;
					background-color: #383838;
					padding-left: 5px;
					width: 155px;
					height: 369px;
					}
					
					
/* Container box that encloses the whole left navigation menu.  Used in include/left_panel.php */
#menu_container     {
                    width: 100%;
                    margin: 0px;
                    padding-top: 10px;
                    border: none;
                    }
                    
                    
/* Container box that encloses the contact details at bottom of left navigation menu.  Used in include/left_panel.php */
#contacts_container     
					{
                    width: 100%;
                    margin-top: 10px;
                    margin-bottom: 0px;
                    border: none;
                    vertical-align: bottom;
                    font-size: 10px;
					text-align: left;
                    }