#main { width:980px; margin:0 auto; text-align:left; background:url(../images/main-bg.jpg) top left no-repeat;}

#header {height:348px;}

#content {padding:0 0 30px 42px;}

#footer { height:97px;}

.col-1, .col-2, .col-3 {float:left;}
.container {width:100%; overflow:hidden;}

/* ============================= page1 ===========================*/

#page1 .col-1 {width:275px;}
#page1 .col-2 {width:545px;}

#page1 .col-2 .col-1 {width:248px;}
#page1 .col-2 .col-2 {width:133px;}

/* ============================= page2 ===========================*/

#page2 .col-1 {width:275px;}
#page2 .col-2 {width:545px;}

#page2 .col-2 .col-1 {width:238px;}
#page2 .col-2 .col-2 {width:235px;}

/* ============================= page3 ===========================*/

#page3 .col-1 {width:275px;}
#page3 .col-2 {width:545px;}

#page3 .col-2 .col-1 {width:302px;}
#page3 .col-2 .col-2 {width:220px;}

/* ============================= page4 ===========================*/

#page4 .col-1 {width:275px;}
#page4 .col-2 {width:545px;}

#page4 .col-2 .col-1 {width:248px;}
#page4 .col-2 .col-2 {width:133px;}

/* ============================= page5 ===========================*/

#page5 .col-1 {width:275px;}
#page5 .col-2 {width:545px;}

#page5 .col-2 .col-1 {width:290px;}
#page5 .col-2 .col-2 {width:243px;}

/* ============================= page6 ===========================*/
	/* remove the list style */
	#nav {
		margin:0; 
		padding:0; 
		list-style:none;
		 background:url(../images/back4.jpg) repeat-x left top;
		 width:800px;

	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			float:left; 
			display:block; 
			width:auto; 	
			position:relative;		
			margin:0;
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:0; 
				height:auto; 
			text-decoration:none; 
			text-align:center; 
		}

		#nav li a:hover {
			color:#fff;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:15px; 
			display:none; 
			margin:0; 
			padding:0; 
			list-style:none;
			background-color:#000000;
		}
		
		#nav ul li {
			width:100px; 
			float:left; 
			border-top:1px solid #fff;
		}

		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#666;
		} 
		
		#nav ul a:hover {
			text-decoration:underline;	

		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav ul {
			margin:0 0 0 -2px;
		}

		/* *************************sub sub menu **************************    */
		#nav2 ul {
			position:absolute; 
			left:40px; 
			display:none; 
			margin:0; 
			padding:0; 
			list-style:none;
			background-color: #333333;
		}
		
		#nav2 ul li {
			width:100px; 
			float:left; 
			border-top:1px solid #fff;
		
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav2 ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#666;
		}
		
		#nav2 ul a:hover {
			text-decoration:underline;	
		
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav2 ul {
			margin:0 0 0 -2px;
		}
		