body {
	margin: 0px;
	padding: 0px;
	color: #000000;
	background-color:#f8f9f9;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align:left;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h1{
	color:#2656c2;
	font-size:12px;
	}


/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	border-left:1px solid #dfe0e0;
	border-right:1px solid #dfe0e0;
	width:990px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}
.container-main {
	border-left:1px solid #808397;
	border-right:1px solid #808397;
	width:990px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo~~ */
.header {
	height:175px;
	margin:0px;
	text-align:left;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	padding:0px;
	margin:0px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer {
	border-top:1px solid #dfe0e0;
	height:80px;
	padding-left:20px;
	padding-right:20px;
}
.footer-main{
	border-top:1px solid #808397;
	height:80px;
	text-align:center;
	width:100%;
}
.footer-main-inner{
	width:950px;
	height:80px;
	margin-left:auto;
	margin-right:auto;
	padding-left:20px;
	padding-right:20px;
	border-left:1px solid #808397;
	border-right:1px solid #808397;
	}
.footer-inner{
	width:950px;
	height:80px;
	margin-left:auto;
	margin-right:auto;
	padding-left:20px;
	padding-right:20px;
	border-left:1px solid #dfe0e0;
	border-right:1px solid #dfe0e0;
	}
.footer-left{
	color:#6e6e6e;
	float:left;
	height:45px;
	line-height:45px;
	width:300px;
	text-align: left;
	margin: 0px;
	padding: 0px;
}
.footer-right{
	color:#6e6e6e;
	float:right;
	height:45px;
	line-height:45px;
	margin-right:-10px;
}

.footer-dot1{
	background-image: url(../images/bottom_coner.png);
	background-repeat: no-repeat;
	background-position: left top;
	position: relative;
	z-index: 2;
	left:-25px;
	top:-4px;
	width:10px;
	float:left;
}
.footer-dot2{
	background-image: url(../images/bottom_coner.png);
	background-repeat: no-repeat;
	background-position: top;
	position: relative;
	z-index: 2;
	left:26px;
	top:-4px;
	width:10px;
	float:right;
}
.footer-dot3{
	background-image: url(../images/bottom_coner02.png);
	background-repeat: no-repeat;
	background-position: left top;
	position: relative;
	z-index: 2;
	left:-25px;
	top:-4px;
	width:10px;
}
.footer-dot4{
	background-image: url(../images/bottom_coner02.png);
	background-repeat: no-repeat;
	background-position: top;
	position: relative;
	z-index: 2;
	left:26px;
	top:-19px;
	width:10px;
	float:right;
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.main-bg{
	background-image:url(../images/main_bg.jpg);
	background-repeat:no-repeat;
	background-position: top;
	width:100%;
	margin-top:-10px;
	margin-left:auto;
	margin-right:auto;
	padding:-10px;
	

}
.navi-bg{
	background-image:url(../images/btn_bg.png);
	background-repeat:repeat-x;
	position:absolute;
	top:165px;
	padding:0px;
	height:45px;
	width:100%;
	z-index:1;
	left: 0px;
}
.about-bg{
	background-image:url(../images/aboutus/aboutUs_banner.jpg);
	background-repeat:no-repeat;
	background-position: top;
	padding:-10px;
	margin-top:-10px;
	margin-left:auto;
	margin-right:auto;

	width:100%;
	
}
.about-img{
	z-index:2;
	position:relative;
	left:-25px;
	}
.navi{
	border:none;
	border:0px;
	margin:0px;
	padding:0px;
	z-index:10;
	position: relative;
	text-transform: uppercase;
	}
.navi ul{
	height:45px;
	list-style:none;
	margin:0;
	padding:0;
/*	background-image: url(../images/btn_bg.png);
	background-repeat: repeat-x;*/
}
.navi li{
	float:left;
	padding:0px;
	border-left:1px solid #FFF;
	}
.navi li:first-child{
	margin-left: 0;    
	padding-left: 0;    
	border-left: 0;
}
.navi li a{	
	color:#cccccc;
	display:block;
	font-weight:normal;
	line-height:45px;
	margin:0px;
	padding:0px 33px;
	text-align:center;
	text-decoration:none;
}
.navi li a:hover, .navi ul li:hover a{
	color:#FFFFFF;
	text-decoration:none;
	background-image: url(../images/btn_highlight.jpg);
	background-repeat: repeat-x;
}
.navi li ul{
	display:none;
	height:auto;
	padding:0px;
	margin:0px;
	border:0px;
	position:absolute;
	width:225px;
	z-index:200;
		/*top:1em;
		/*left:0;*/
}
.navi li:hover ul{
	display:block;
		
}
.navi li li {
	border:0px;
	display:block;
	float:none;
	margin:0px;
	padding:0px;
	width:225px;
	background-color:#58595b;
	border-bottom:1px solid #FFF;
/*	background-image: url(../images/btn_bg.png);
	background-repeat: repeat-x;*/
}
.navi li:hover li a{
		background:none;
		
}
.navi li ul a{
		display:block;
		height:45px;
		font-size:12px;
		font-style:normal;
		margin:0px;
		padding:0px 10px 0px 15px;
		text-align:left;
	}
.navi li ul a:hover, .navi li ul li:hover a{
		/*background-image: url(../images/btn_highlight.jpg);*/
		background-color:#000000;
		border:0px;
		color:#ffffff;
		text-decoration:none;
}
	
/*.navi ul{
	list-style:none;
	}
.navi li{
	height:45px;
	float:left;
	list-style-type:none;
	line-height:45px;

	border-left:1px solid #FFF;
	}
.navi li:first-child{
	border:0px;
}

	
.navi li a{
	padding-left:36px;
	padding-right:36px;
	color:#FFF;
	text-decoration:none;
	display:block;
}

.navi li a:hover, .navi ul li:hover a{
	background-image:url(../images/btn_highlight.jpg);
	background-repeat:repeat;
}

.navi li ul a:hover, .navi li ul li:hover a{
			background-image:url(../images/btn_highlight.jpg);
			border:0px;
			color:#ffffff;
			text-decoration:none;
}

.navi ul ul{
	visibility: hidden;
	position: absolute;
	background:url(../images/btn_bg.png) repeat-x;
}


.navi li li {
	height:45px;
	line-height:45px;
	display:block;
	width:200px;
	
	
}
.navi ul li:hover ul{
	visibility:visible;
}
*/


.current{
	background-image:url(../images/btn_highlight.jpg)!important;
	background-repeat:repeat!important;
	}
	
.main-banner{
	margin-top:114px;
	height:161px;
	text-align:left;
	}
.content-left{
	width:520px;
	padding-left:20px;
	padding-right:20px;
	float:left;
	margin-top:30px;
	margin-bottom:43px;
	}
.content-right{
	width:390px;
	padding-left:20px;
	padding-right:20px;
	float:right;
	margin-top:30px;
	}
.content-about{
	width:950px;
	padding-left:20px;
	padding-right:20px;
	float:left;
	margin-top:30px;
	margin-bottom:43px;
	min-height:395px;
	}
