
	/***********************************
	 * base structure: 	
	 *	#main > #header > #banner 	=> banner in header
	 *	#main > #header > #logo		=> logo in header
	 *	#main > #header > #dropdown-menu=> drop-down dropdown-menuigation
	 *	#main > #body > #menu		=> leftside navigation (tree)
	 *	#main > #body > #sidebar	=> sidebar col (righthand sidebar)
	 *	#main > #body > #content	=> content area with content markup
	 *	#main > #footer			=> footer
	 */
	
	
	#header, #body, #footer, .menu, #content, #sidebar , #logo , #banner {
		
		background-color:transparent;
		
		border-style:solid;
		border-top-width:1px;
		border-bottom-width:1px;
		border-right-width:1px;
		border-left-width:1px;
		border-color:#cccccc;
		
		margin-top:8px;
		margin-bottom:0px;
		margin-left:8px;
		margin-right:8px;
	}

        #main {
                height:100%;
        }
	
	/*****************************************
	 * header elements 
	 */
	 
	#header { 
		
	 	background-color:#d07373;
		border-color:#999999;
		border-bottom-width:0px;
		border-bottom-color:#999999;
		min-width:800px;
		margin-top:0px;
                height: 42px;
	}
	
	
	#logo {  
	
		text-align:center; 
		
		font-size:24px;
		font-weight:bold;
		font-variant:small-caps;
		color:#ffffff;
		
		padding:0px; 
		
		background-color:transparent;
		
		margin-bottom:0px;
		margin-top:9px;
		margin-left:0px;
		margin-right:22px;
		
		border-width:0px;
		
		float:right;
	}
	
	/*****************************************
	 * body elements 
	 */
	 
	#body {
		min-width:800px;
		min-height:600px;
		
		margin-top:0px;
		
		padding-top:0px;
		padding-bottom:4px;
		
		border-top-width:0px;
		border-left-width:1px;
		border-right-width:1px;
		border-bottom-width:1px;
		border-color:#999999;
		
		background-color:#ffffff;
		background-image:URL('../images/bg_gradient.gif');
		background-repeat:repeat-x;

	}
	
	.menu {
		float:left;
                position:absolute;

		width:180px;
		margin-top:18px;
		margin-bottom:8px;
		
		background-color:#ffffff;
		
		border-color:#999999;
		border-width:1px;
	}
	
	#sidebar {
		width:220px;
		float:right;
		margin-bottom:8px;
		margin-right:10px;
		padding-top:10px;
		border-width:0px;
		border-color:#000000;
		background-color:transparent;
	}
	
	#content { 
		min-height:580px;

		margin-left:202px;
		margin-right:0px;
		margin-bottom:8px;
		margin-top:0px;
		
		padding:16px;
		
		background-color:white;
		
		border-color:#999999;
		border-top-width:0px;
		border-right-width:0px;
		
		background-image:URL('../images/bg_gradient_bottom_up.gif');
		background-repeat:repeat-x; 
                background-position:bottom;
	}
	
	
	/*****************************************
	 * footer elements 
	 */
	 
	
	#footer { 
		
		text-align:right;
		margin-bottom:2px;
		margin-top:2px;
		padding-right:6px; 
		font-size:10px;
		border-style:none;
	}
	
	
	
	
