
/* Table of Content
==================================================
	#Typography
	#Generic items
	#Header
	#Nav
	#Intro
	#Wrap
	#Text_box
	#Services
	#Recent work
	#Latest posts
	#Footer
	#Page styles
	#Portfolio
	#About
	#Blog
	#Singlepost
	#Contact
	#Media Queries
	#Font-Face */
	
	
/* #Typography
================================================== */

h1 {
	font-family:'微软雅黑';
	color: #fff;
	font-weight: 800;
	font-size: 120px;
	line-height: 70px;
	text-transform: uppercase;
}

h2 {
	font-family: '微软雅黑';
	color: #fff;
	font-weight: 600;
	font-size: 24px;
	line-height: auto;	
}


h3 {
	font-family: '微软雅黑';
	font-size: 22px;
	font-weight: 700;
	color: #434343;
	border-bottom: 2px solid #337ab7;
	margin-bottom: 18px;
	text-transform: uppercase;
}

h4 {
	font-family: '微软雅黑';
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: #434343;
}

h5 {
	font-family: '微软雅黑';
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	border-bottom: 1px dotted #dfdfdf;
	padding-bottom: 3px;
	margin-bottom: 15px;
}

p {
	font-family: '微软雅黑';
	font-weight: 400;
	font-size: 13px;
	color: #686868;
}

a {
	color: #337ab7;
	text-decoration: none;
}

a:visited {
	color: #337ab7;
}

a:hover {
	text-decoration: underline;
}



/* #Generic items
================================================== */

body {
	background: #eeeeee;
}

.div_line1 {
	background: url(../images/div_line.png) repeat-x top, #f5f5f5;
	width: 100%;
	height: 20px;
	position: relative;
	z-index: 240;
}

.div_arrow1 {
	background: url(../images/div_arrow.png) no-repeat 100%;
	margin-top: -17px;
	margin-left: 70px;
	width: 114px;
	height: 29px;
	position: relative;
	z-index: 250;
}

.div_line2 {
	background: url(../images/div_line2.png) repeat-x top, #fff;
	width: 100%;
	height: 20px;
	position: relative;
	z-index: 240;
}

.div_arrow2 {
	background: url(../images/div_arrow2.png) no-repeat 100%;
	margin-top: -16px;
	margin-left: 70px;
	width: 114px;
	height: 29px;
	position: relative;
	z-index: 250;
}

.thumb {
	-webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: border;
	-moz-transition-property: border;
	-o-transition-property: border;
	transition-property: border;
}

.thumb:hover {
	border: 4px solid #337ab7;
}

.div_line3 {
	width: 100%;
	position: relative;
	z-index: 200;
	border-bottom: 1px dashed #989898;
	margin-top: 30px;
	margin-bottom: 30px;
}

.div_line4 {
	width: 100%;
	position: relative;
	z-index: 200;
	border-bottom: 1px dashed #989898;
	margin-top: 30px;
	margin-bottom: 60px;
}

.text_box2 {
	background: #337ab7;
	color: #fff;
	padding: 10px;
	margin-bottom: 45px;
}

.text_box2 p {
	color: #fff;
	margin: 0;
}



/* #Header
================================================== */

header {
	background: #fff;
	position: relative;
	width: 100%;
	z-index: 1000;
}

.top_line {
	background: #000;
	width: 100%;
	height: 45px;
	line-height:45px;color:#fff;
	position: relative;
}
.top_line span{margin-right:30px;}
.top_line a{color:#fff;}

.logo {
	margin-top: 20px;
}

.logo p {
	font-family: '微软雅黑';
	font-size: 34px;
	font-weight: 600;
	color: #393939;
	vertical-align: middle;
	margin: 0;
	height:28px;
}

p.header_text {
	font-size: 18px;
	margin-top: 10px;
}

.logo img {
	vertical-align: sub;
}


.social {
	margin-top: 30px;
	margin-bottom: 15px;
	text-align: right;
}

.social ul {
	margin: 0;
}

.social ul li {
	display: inline;
	margin-left: 4px;
}

.social img {
	opacity: 0.5;
	-webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}

.social img:hover {
	opacity: 1;
}


.h_contact {
	text-align: right;
	margin-bottom: 20px;
}

.h_contact p {
	margin-bottom: 2px;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
}



/* #Nav
================================================== */

nav {
	background: #08068b ; /* Old browsers */
	
	color: #fff;
	height: 44px;
	position: relative;
	z-index: 1000;
	-webkit-box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.menu {
	position: relative;
}

.menu ul {
	margin-top: 13px;
	padding: 0;
}

.menu ul li {
	display: inline;
	margin: 0;
	padding: 0;
}

nav a {
	color: #fff;
	text-decoration: none;
	padding: 14px 15px 12px 15px;
	font-family:'微软雅黑';
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	-webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: color;
	-moz-transition-property: color;
	-o-transition-property: color;
	transition-property: color;
}

nav a:visited {
	color: #fff;
}

nav a:hover {
	color: #fff;
	height: 44px;
	text-decoration: none;
}

#home #homenav {
	background: url(../images/nav_hover.jpg) repeat-x;
	color: #fff;
	height: 44px;	
}


.search input {
	margin-top: 8px;
	width: 100%;
	height: 13px;
	margin-bottom: 10px;
	padding-left: 4px;
	background-color: #000;
	font-family: '微软雅黑';
	color: #c9c9c9;
	font-weight: 300;
	font-size: 14px;
	border: 1px solid #000;
}



/* #Intro
================================================== */

#intro {
	background: #171717;
	position: relative;
	width: 100%;
	height: 600px;
	color: #fff;
	border-bottom: 4px solid #337ab7;
}

#intro .bg0 {
	background: url(../images/intro_bg0.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 600px;
	z-index: 110;
}

#intro .bg1 {
	background: url(../images/intro_bg1.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 600px;
	z-index: 100;
}

#intro .bg2 {
	background: url(../images/intro_bg2.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 600px;
	z-index: 90;
}

#intro .bg3 {
	background: url(../images/intro_bg3.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 600px;
	z-index: 80;
}

#intro .bg4 {
	background: url(../images/intro_bg4.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 600px;
	z-index: 70;
}

#intro .bg5 {
	background: url(../images/intro_bg5.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 600px;
	z-index: 60;
}

#intro .bg6 {
	background: url(../images/intro_bg6.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 600px;
	z-index: 50;
}

#intro .bg7 {
	background: url(../images/intro_bg7.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 600px;
	z-index: 40;
}

.title {
	margin-top: 120px;
	position: fixed;
	z-index: 100;
}

.title h1 {
	position: relative;
	padding-bottom: 20px;
	left: 16%;
}

.title h2 {
	position: relative;
	padding-bottom: 10px;
	left: 16%;
	text-align: center;
}

.title p {
	position: relative;
	text-align: center;
	left: 16%;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: #fff;
	text-shadow: 1px 1px 0px #000000;
	filter: dropshadow(color=#000000, offx=1, offy=1);
}

.title a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	
}

.title a:visited {
	color: #fff;
}

.title a:hover {
	color: #cf6557;
}



/* #Wrap
================================================== */

.wrap {
	-webkit-box-shadow: 0px 0px 6px 1px rgba(159, 159, 159, 0.4);
	box-shadow: 0px 0px 6px 1px rgba(159, 159, 159, 0.4);
	margin-top: -60px;
}



/* #Text_box
================================================== */

.text_box {
	background: #337ab7;
	width: 100%;
	position: relative;
	z-index: 200;
	color: #fff;
	text-align: center;
	padding: 10px 0 10px 0;
}

.text_box p {
	font-weight: 400;
	font-size: 18px;
	color: #fff;
}



/* #Services
================================================== */

.h_services {
	background: #fff;
	padding-top: 65px;
	padding-bottom: 40px;
	width: 100%;
	position: relative;
	z-index: 200;
}

.h_services img {
	text-align: right;
	margin-left: 30px;
}



/* #Recent Work
================================================== */

.recent_work {
	background: #f5f5f5;
	margin-top: -28px;
	padding-top: 65px;
	padding-bottom: 40px;
	width: 100%;
	position: relative;
	z-index: 200;
}

.r_work1, .r_work2, .r_work3 {
	display: inline-block;
	margin: 0 auto;
}

.r_work1 img {
	position: relative;
	display: block;
	z-index: 10;
}

.r_work1 {
	margin-left: 25px;
}
.r_work2 {
	margin: 0 24px 0 24px;
}


.caption {
	background: url(../images/bg_caption.png) no-repeat;
	width: 186px;
	height: 48px;
	margin: -20px auto 0 auto;
	text-align: center;
	position: relative;
	z-index: 20;
}

.caption p {
	color: #fff;
	margin: 0;
	text-transform: uppercase;
}

p.rw_title {
	padding-top: 10px;
}

p.rw_desc {
	font-size: 11px;
	font-weight: 600;
	margin-top: -6px;
}

.rw {
	border: 4px solid #d7d7d7;
	width: 172px;
	height: 140px;
	margin: 0 auto;
}



/* #Latest Posts
================================================== */

.latest_posts {
	background: #fff;
	margin-top: -28px;
	padding-top: 45px;
	padding-bottom: 80px;
	position: relative;
	z-index: 200;
}

.post_thumb1 {
	background: url(../images/post_thumb1.png) no-repeat;
	width: 182px;
	height: 132px;
	border: 4px solid #d7d7d7;
	margin: 0 auto;
}

p.t_post_title {
	font-size: 15px;
	font-weight: 600;
	margin: 6px 18px 2px 18px;
}

p.t_meta {
	font-size: 11px;
	color: #7a7979;
	margin-bottom: 2px;
	margin: 0 18px 2px 18px;
}

p.t_post_text {
	font-size: 13px;
	margin-bottom: 0;
	margin: 0 18px 2px 18px;
}



/* #Footer
================================================== */
/* #Footer
================================================== */

#footer {background: #08068b;
	width: 100%;
	position: relative;
	z-index: 100;	
}

.footer_wrap {
	background: #08068b;
	padding: 50px 0 20px 0;
	position: relative;
	z-index: 300;
}

#footer p {
	color: #fff;
}


/* latest posts */

p.f_post_title {
	margin-bottom: 0px;
	font-weight: 700;
}

p.f_post_text {
	margin-bottom: 12px;
}


/* latest tweets */

#twitter_update_list {
	font-size: 13px;
	color: #fff;
}

#twitter_update_list a {
	color: #81e7fd;
	text-decoration: none;
}

#twitter_update_list a:visited {
	color: #81e7fd;
}

#twitter_update_list a:hover {
	text-decoration: underline;
}

#twitter_update_list li {
	list-style-type: none;
}



#footer .f_bg1 {
	background: url(../images/intro_bg1.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 400px;
	z-index: 100;

}

#footer .f_bg2 {
	background: url(../images/intro_bg2.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 400px;
	z-index: 90;
}

#footer .f_bg3 {
	background: url(../images/intro_bg3.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 400px;
	z-index: 80;
}

#footer .f_bg4 {
	background: url(../images/intro_bg4.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 400px;
	z-index: 70;
}

#footer .f_bg5 {
	background: url(../images/intro_bg5.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 400px;
	z-index: 60;
}


.copyright {
	text-align: center;
	margin: 20px 70px 0 70px;
	padding-top:20px;
	border-top: 1px dotted #fff;
}

.copyright p {
	margin-bottom:0 ;
	font-size: 13px;
	line-height: 24px;
	
}



/* #Page Styles
================================================== */

#pages_intro {
	background: #171717;
	position: relative;
	width: 100%;
	height: 350px;
	color: #fff;
	border-bottom: 4px solid #337ab7;
}


#pages_intro .p_bg1 {
	background: url(../images/intro_bg1.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 350px;
	z-index: 100;
}

#pages_intro .p_bg2 {
	background: url(../images/intro_bg2.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 350px;
	z-index: 90;
}

#pages_intro .p_bg3 {
	background: url(../images/intro_bg3.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 350px;
	z-index: 80;
}

#pages_intro .p_bg4 {
	background: url(../images/intro_bg4.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 350px;
	z-index: 70;
}
.copyrights{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
#pages_intro .p_bg5 {
	background: url(../images/intro_bg5.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 350px;
	z-index: 60;
}

#pages_intro .p_bg6 {
	background: url(../images/intro_bg6.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 350px;
	z-index: 50;
}

#pages_intro .p_bg7 {
	background: url(../images/intro_bg7.png) 50% 0 repeat-x fixed;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 350px;
	z-index: 40;
}


#pages_intro .title {
	margin-top: 50px;
}

#pages_intro h1 {
	text-transform: uppercase;
	font-size: 48px;
	left: 0%;
}

#pages_intro p {
	color: #fff;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
	left: 0%;
	text-align: left;
}

.pages_wrap {
	-webkit-box-shadow: 0px 0px 6px 1px rgba(159, 159, 159, 0.4);
	box-shadow: 0px 0px 6px 1px rgba(159, 159, 159, 0.4);
	margin-top: -60px;
	border-top: 6px solid #337ab7;
	position: relative;
	z-index: 200;
}

.pages_wrap h3 {
	font-size: 28px;
	padding-bottom: 4px;
}



/* #Portfolio
================================================== */

.portfolio {
	position: relative;
	z-index: 200;
	background: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
}

#portfolio #portfolionav {
	background: url(../images/nav_hover.jpg) repeat-x;
	color: #fff;
	height: 44px;	
}

.gallery {
	margin-top: 30px;
	text-align: center;
}

.work1, .work2, .work3, .work4 {
	display: inline-block;
	margin: 0 auto;
	margin-bottom: 35px;
}

.work2 {
	margin-left: 20px;
	margin-right: 10px;
}
.work3 {
	margin-left: 10px;
	margin-right: 20px;
}


img.gal_item {
	display: inline-block;
	margin-bottom: 14px;
	border: 4px solid #d7d7d7;
}

img.gal_item:hover {
	border: 4px solid #337ab7;
}

.center_item {
	margin: 0 14px 0 14px;
}



/* #About
================================================== */

#about #aboutnav {
	background: url(../images/nav_hover.jpg) repeat-x;
	color: #fff;
	height: 44px;	
}

.about {
	position: relative;
	z-index: 200;
	background: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
}

.services {
	margin-top: 40px;
}

.serv_icon {
	margin: 0 auto;
	text-align: center;
}

.serv_icon2 {
	margin: 0 auto;
	text-align: center;
	width: 160px;
	margin-left: 35px;
}

.serv_icon3 {
	margin: 0 auto;
	text-align: center;
	width: 160px;
	margin-left: 20px;
}


.team {
	background: #f5f5f5;
	margin-top: -30px;
	padding-top: 60px;
	padding-bottom: 35px;
}

.team_member {
	text-align: center;
	margin-top: 40px;
}

.team_member2 {
	text-align: center;
	width: 160px;
	margin-left: 35px;
	margin-top: 40px;
}

.team_member3 {
	text-align: center;
	width: 160px;
	margin-left: 20px;
	margin-top: 40px;
}

.team_social ul {
	margin: 0;
}

.team_social ul li {
	display: inline;
	margin-left: 4px;
}

.team_social img {
	opacity: 0.5;
	-webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}

.team_social img:hover {
	opacity: 1;
}


.testimonials {
	padding-top: 30px;
	padding-bottom: 30px;
}

.testi_box {
	background: #eeeeee;
	width: 200px;
	padding: 10px;
	margin: 30px auto 0 auto;
}

.testi_box2 {
	background: #eeeeee;
	width: 200px;
	padding: 10px;
	margin: 30px auto 0 auto;
}

.testi_box p, .testi_box2 p {
	margin: 0;
}

p.client {
	margin-left: 30px;
	color: #1e1e1e;
}

p.client2 {
	color: #1e1e1e;
}

.speech_arrow {
	background: url(../images/speech_arrow.png) 0 0 no-repeat;
	width: 16px;
	height: 16px;
	margin-left: 60px;
}

.speech_arrow2 {
	background: url(../images/speech_arrow.png) 0 0 no-repeat;
	width: 16px;
	height: 16px;
	margin-left: 30px;
}



/* #Blog
================================================== */

#blog #blognav {
	background:url(../images/bg1.png) repeat-x;
	color: #fff;
	height: 44px;	
}

.blog {
	position: relative;
	z-index: 200;
	background: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
}

p.post_title {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	color: #3d3d3d;
	margin-bottom: 20px;
}

.post_date {
	background: #337ab7;
	width: 40px;
	text-align: center;
	color: #fff;
	padding: 4px;
	margin-bottom: 15px;
}

.post_date p {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	line-height: 18px;
}

p.meta, p.meta2 {
	color: #9f9f9f;
	margin: 0;
	margin-bottom: 5px;
}

p.meta img {
	margin-right: 5px;
	vertical-align: text-top;
}

p.meta2 img {
	margin-right: 5px;
	vertical-align: baseline;
}

.post_image {
	margin-bottom: 15px;
}

.post_image img {
	border: 5px solid #c8c8c8;
}

.post a:hover {
	text-decoration: none;
}


/* sidebar */

p.sidebar_title, p.sidebar_title2 {
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	color: #3d3d3d;
	border-bottom: 1px solid #337ab7;
	margin-bottom: 20px;
}

p.sidebar_title2 {
	margin-top: 40px;
}

.tags a {
	background: #c8c8c8;
	padding: 1px 4px;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	margin-right: 3px;
	margin-bottom: 6px;
	display: inline-block;
	-webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: background;
	-moz-transition-property: background;
	-o-transition-property: background;
	transition-property: background;
}

.tags a:visited {
	color: #fff;
}

.tags a:hover {
	background: #337ab7;
	text-decoration: none;
}


.top_posts a {
	color: #646464;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
}

.top_posts a:visited {
	color: #646464;
}

.top_posts a:hover {
	color: #337ab7;
}

.top_posts img {
	vertical-align: text-top;
	margin-right: 3px;
}


.recent_comments a {
	color: #646464;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	font-style: italic;
}

.recent_comments a:visited {
	color: #646464;
}

.recent_comments a:hover {
	color: #337ab7;
}

.recent_comments img {
	vertical-align: text-bottom;
	margin-right: 3px;
}


.recent_work_blog img {
	border: 3px solid #c8c8c8;
	margin: 0 10px 10px 0;
	-webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: border;
	-moz-transition-property: border;
	-o-transition-property: border;
	transition-property: border;
}

.recent_work_blog img:hover {
	border: 3px solid #337ab7;
}



/* #Singlepost
================================================== */

.comments img {
	border: 3px solid #337ab7;
}

p.user_name {
	font-size: 15px;
	font-weight: 600;
	color: #3d3c3c;
	margin-bottom: 1px;
}

p.comment_date {
	font-size: 11px;
	color: #767676;
	margin-bottom: 9px;
}

.comments p {
	margin-bottom: 3px;
}
.reply {
	background: #337ab7;
	text-align: center;
	color: #fff;
	padding: 1px 5px 1px 5px;
}

a.reply {
	color: #fff;
	font-size: 11px;
	text-transform: uppercase;
}

a.reply:hover {
	text-decoration: none;
	background: #c8c8c8;
}

.div_line_comments {
	border-top: 1px solid #c6c6c6;
	margin-top: 20px;
	margin-bottom: 20px;
}


/* comments_form */

.comments_form {
	margin-top: 60px;
}

.comments_form h5 {
	border-bottom: 1px solid #337ab7;
	color: #3b3b3b;
}

.comments_form p {
	font-size: 12px;
	color: #515151;
	text-transform: uppercase;
	margin-bottom: 1px;
}

.comments_form input {
	width: 70%;
	height: 18px;
	margin-bottom: 10px;
	padding-left: 4px;
	background-color: #eaeaea;
	font-family: '微软雅黑';
	font-weight: 300;
	font-size: 14px;
}

.comments_form textarea {
	background-color: #eaeaea;
	margin-bottom: 10px;
	padding-left: 5px;
	font-family: '微软雅黑'
	font-weight: 300;
	font-size: 14px;
	width: 100%;
	height: 90px;
}

.comments_form input.submit-button {
	background-color: #337ab7;
	color: #fff;
	font-family: '微软雅黑';
	font-weight: 400;
	text-transform: uppercase;
	font-style: normal;
	font-size: 13px;
	width: 60px;
	margin-top: 5px;
	padding: 1px;
	height: 25px;
	text-align: center;
	border: 0;
}

.comments_form input.submit-button:hover {
	background-color: #c8c8c8;
}



/* #Contact
================================================== */

#contact #contactnav {
	background: url(../images/nav_hover.jpg) repeat-x;
	color: #fff;
	height: 44px;	
}

.contact {
	position: relative;
	z-index: 200;
	background: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
}

.map {
	margin-top: 20px;
	border: 4px solid #e5e3e3;
	width: 100%;
}


/* contact form */

.done {
	font-family:'微软雅黑';
	color: #3a3939;
	font-size: 14px;
	margin-bottom: 15px;
	padding: 10px;
	display: none;
}

.contact_form {
	margin-top: 30px;
}

.contact_form p {
	font-family:'微软雅黑';
	font-size: 12px;
	color: #515151;
	text-transform: uppercase;
	margin-bottom: 2px;
}

.contact_form input {
	width: 70%;
	height: 18px;
	margin-bottom: 10px;
	padding-left: 4px;
	background-color: #eaeaea;
	font-family: '微软雅黑';
	font-weight: 300;
	font-size: 14px;
}

.contact_form textarea {
	background-color: #eaeaea;
	margin-bottom: 10px;
	padding-left: 5px;
	font-family: '微软雅黑';
	font-weight: 300;
	font-size: 15px;
	width: 100%;
	height: 99px;
}

.contact_form input.submit-button {
	background-color: #337ab7;
	color: #fff;
	font-family:'微软雅黑';
	font-weight: 400;
	text-transform: uppercase;
	font-style: normal;
	font-size: 13px;
	width: 60px;
	margin-top: 5px;
	padding: 1px;
	height: 25px;
	text-align: center;
	border: 0;
}

.contact_form input.submit-button:hover {
	background-color: #c8c8c8;
}


/* contact_info */

.contact_info {
	margin-top: 30px;
	padding-left: 20px;
}

.contact_info h4 {
	margin-bottom: 20px;
}

.contact_info img {
	margin-right: 8px;
	vertical-align: middle;
}

span.address {
	margin-left: 30px;
}


.contact .social ul li {
	display: inline;
	margin-right: 1px;
}

.contact .social {
	text-align: left;
	padding-left: 20px;
}


.pages_wrap h3{padding-top:50px;padding-bottom:8px;}
.cpmt_info{font-size:14px;}
.cpmt_info p{font-size:14px;}
.header_top{padding-top:15px;padding-bottom:15px;}
.container .header_top .nine.columns{}
.container.header_top .column, .container.header_top .columns{margin-left:0px;margin-right:0px;}
.container.header_top .six{ float:right;}
h5{border-bottom:0px;}
header,#footer{min-width:1090px;}
#undefinedStickyWrapper{}
#undefinedStickyWrapper .sticky{width:100%;min-width:1090px;}
.header_phone{ float:right;margin-top:29px;}