﻿@charset "utf-8";
/*--------------------------------------------------------------
*Filename:                     reset.css
---------------------------------------------------------------*/

/* Don't forget to set a foreground and background color on the
 'html' or 'body' element! 
---------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
	vertical-align: baseline;
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	outline: 0;
	padding: 0;
	margin: 0;
	border: 0;
}
/* remember to define focus styles! 
---------------------------------------------------------------*/
:focus {
	outline: 0;
}
body {
	background: white;
	line-height: 1;
	color: black;
}
dl, dt, dd, ol, ul, li {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
/* tables still need cellspacing="0" in the markup 
---------------------------------------------------------------*/
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
/* remove possible quote marks (") from <q> & <blockquote> 
---------------------------------------------------------------*/
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}


@charset "utf-8";
/*--------------------------------------------------------------
*Filename:                      style.css
---------------------------------------------------------------*/

/*body
---------------------------------------------------------------*/
body {
	width: 100%;
 width:expression(document.body.clientWidth <= 1000? "1000px": "auto");
	min-width: 1000px;
	height: auto;
	background: #ffffff;
	color: #777777;
	font-size: 13px;
	line-height: 25px;
	font-family: Arial, Helvetica, "Microsoft YaHei", "STHeiti Light", sans-serif;
}
/*a::hover
---------------------------------------------------------------*/
a {
	outline: none;
	cursor: pointer;
	color: #777777;
	text-decoration: none;
}
a:hover {
	outline: none;
	cursor: pointer;
}
/*p
---------------------------------------------------------------*/
p {
	font-size: 13px;
	line-height: 25px;
	font-family: Arial, Helvetica, "Microsoft YaHei", "STHeiti Light", sans-serif;
}
/*font color
---------------------------------------------------------------*/
.ft_fff {
	color: #ffffff;
}
.ft_444 {
	color: #555555;
}
.ft_777 {
	color: #777777;
}
.ft_47c {
	color: #47c8f1;
}
.ft_ed9 {
	color: #ed9408;
}
/*font color hover
---------------------------------------------------------------*/
.fcol_fff {
	color: #ffffff;
}
.fcol_fff_act {
	color: #f2a924;
}
.fcol_777 {
	color: #777777;
}
.fcol_777_act {
	color: #ffc800;
}
/*font uppercase
---------------------------------------------------------------*/
.ft_upp {
	text-transform: uppercase;
}
.ft_ita {
	font-style: italic;
}
/*font decoration
---------------------------------------------------------------*/
.fdec1_nom {
	text-decoration: none;
}
.fdec1_act {
	text-decoration: underline;
}
.fdec2_nom {
	text-decoration: underline;
}
.fdec2_act {
	text-decoration: none;
}
/*font shadow
---------------------------------------------------------------*/
.fsha_fff {
	text-shadow: 1px 1px 1px #ffffff;
}
.fsha_000 {
	text-shadow: 1px 1px 1px #000000;
}
/*h1, h2, h3, h4, h5, h6
---------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	cursor: default;
	color: #333333;
	font-weight: normal;
	font-family: Arial, Helvetica, "Microsoft YaHei", "STHeiti Light", sans-serif;
}
h1 {
	font-size: 30px;
	line-height: 30px;
}
h2 {
	font-size: 25px;
	line-height: 30px;
}
h3 {
	font-size: 19px;
	line-height: 25px;
}
h4 {
	font-size: 15px;
	line-height: 25px;
}
h5 {
	font-size: 13px;
	line-height: 20px;
}
h6 {
	font-size: 11px;
	line-height: 20px;
}
/*padding-top
---------------------------------------------------------------*/
.pdt_5 {
	padding-top: 5px;
}
.pdt_10 {
	padding-top: 10px;
}
.pdt_20 {
	padding-top: 20px;
}
.pdt_30 {
	padding-top: 30px;
}
/*padding-left
--------------------------------------------------------------*/
.pdl_10 {
	padding-left: 10px;
}
.pdl_20 {
	padding-left: 20px;
}
.pdl_30 {
	padding-left: 30px;
}
/*padding-right
---------------------------------------------------------------*/
.pdr_10 {
	padding-right: 10px;
}
.pdr_20 {
	padding-right: 20px;
}
.pdr_30 {
	padding-right: 30px;
}
/*margin-top
---------------------------------------------------------------*/
.mgt_5 {
	margin-top: 5px;
}
.mgt_10 {
	margin-top: 10px;
}
.mgt_20 {
	margin-top: 20px;
}
.mgt_30 {
	margin-top: 30px;
}
/*margin-left
--------------------------------------------------------------*/
.mgl_10 {
	margin-left: 10px;
}
.mgl_20 {
	margin-left: 20px;
}
.mgl_30 {
	margin-left: 30px;
}
/*margin-right
---------------------------------------------------------------*/
.mgr_10 {
	margin-right: 10px;
}
.mgr_20 {
	margin-right: 20px;
}
.mgr_30 {
	margin-right: 30px;
}
/*css3
---------------------------------------------------------------*/
.opacity {
	-moz-opacity: 0.5; /*FF*/
	opacity: 0.5; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=50)"; /* IE 8 */
	filter: alpha(opacity=50);  /* IE 4-7 */
	zoom: 1;
}
.transition {
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.shadow {
	-webkit-box-shadow: 0px 3px 7px #000;
	-moz-box-shadow: 0px 3px 7px #000;
	box-shadow: 0px 3px 7px #000;
}
/*float
---------------------------------------------------------------*/
.fl {
	float: left;
}
.fr {
	float: right;
}
.clear {
	clear: both;
}
/*layer_wrap
---------------------------------------------------------------*/
.layer_wrap {
	height: auto;
}
/*layout
---------------------------------------------------------------*/
/*body_wrap
---------------------------*/
.body_wrap {
	height: auto;
}
/*ftop
---------------------------*/
.ftop_wrap {
	width: 100%;
	height: 40px;
	background: #ffffff;
	overflow: hidden;
}
.ftop {
	margin: 0px auto;
	width: 1000px;
}
/*fhead
---------------------------*/
.fhead_wrap {
	width: 100%;
	height: auto;
	background: none;
}
.fhead {
	position: absolute;
	z-index: 999;
	top: 0px;
	right: 0px;
	left: 0px;
	margin: 0px auto;
	width: 1000px;
	height: 100px;
}
/*fbody
---------------------------*/
.fbody_wrap {
	width: 100%;
	height: auto;
	background: #ffffff;
}
.fbody {
	width: 100%;
	height: auto;
}
/*ftail
---------------------------*/
.ftail_wrap {
	width: 100%;
	height: auto;
	background: url(/2014/images/ftail_wrap.png) repeat-x top;
}
.ftail {
	margin: 0px auto;
	width: 1000px;
	height: 125px;
	background: url(/2014/images/ftail_bg.png) no-repeat center bottom;
}

@charset "utf-8";
/*--------------------------------------------------------------
*Filename:                     common.css
---------------------------------------------------------------*/

/*public
---------------------------------------------------------------*/
/*ftop_dl
---------------------------*/
/*ftop_dt*/
.ftop_dt {
	display: inline-block;
	float: left;
	padding: 10px 0px;
}
.ftop_ldl dd {
	display: inline-block;
	float: left;
	height: 20px;
	color: #666666;
	line-height: 20px;
}
.ftop_ldl dd.fspl_line {
	padding-left: 11px;
	background: url(/2014/images/fspl_line.png) no-repeat left center;
}
.ftop_ldl dd a {
	color: #666666;
}
.ftop_ldl dd a:hover {
	-moz-opacity: 0.75; /*FF*/
	opacity: 0.75; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=75)"; /* IE 8 */
	filter: alpha(opacity=75);  /* IE 4-7 */
	zoom: 1;
}
.ftop_ldl dd span.phone_icon {
	display: inline-block;
	height: 20px;
	padding-left: 19px;
	background: url(/2014/images/phone_icon.png) no-repeat left center;
	line-height: 20px;
}
/*ftop_dd*/
.ftop_dd {
	display: inline-block;
	float: right;
	padding: 10px 0px;
}
.ftop_rdl dd {
	display: inline-block;
	float: left;
	height: 20px;
	margin-left: 15px;
	color: #ffffff;
	line-height: 20px;
}
.ftop_rdl dd a {
	display: inline-block;
	height: 14px;
	padding: 3px 0px;
	overflow: hidden;
}
.ftop_rdl dd a:hover {
	-moz-opacity: 0.75; /*FF*/
	opacity: 0.75; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=75)"; /* IE 8 */
	filter: alpha(opacity=75);  /* IE 4-7 */
	zoom: 1;
}
/*fhead_dl
---------------------------*/
/*fhead_dt*/
.fhead_dt {
	display: inline-block;
	float: left;
	height: 70px;
	padding: 15px 0px;
	overflow: hidden;
}
/*fhead_dd*/
.fhead_dd {
	display: inline-block;
	float: right;
	padding-top: 15px;
}
/*fhead_rdl
---------------------------*/
/*fhead_rdt*/
.fhead_rdt {
	display: inline-block;
	float: left;
}
/*fhead_rdd*/
.fhead_rdd {
	display: inline-block;
	float: right;
	width: 190px;
	height: 40px;
	padding-left: 20px;
	background: url(/2014/images/fsea_bg.png) no-repeat right center;
	overflow: hidden;
}
.fhead_rdd input.box {
	display: inline-block;
	float: left;
	width: 125px;
	height: 20px;
	padding: 10px 10px;
	border: none;
	background: none;
	overflow: hidden;
	color: #999999;
	font-size: 15px;
	line-height: 20px;
}
.fhead_rdd input.btn {
	display: inline-block;
	float: left;
	width: 45px;
	height: 40px;
	border: none;
	background: none;
	overflow: hidden;
	cursor: pointer;
}
/*fblex_wrap
---------------------------*/
.fblex_wrap {
	position: relative;
	z-index: 999;
	display: block;
	width: 100%;
	height: 450px;
	background: none;
	overflow: hidden;
}
.fblex_iner {
	display: block;
	width: 100%;
	height: 450px;
	overflow: hidden;
}
.slide_bbg1 {
	height: 450px;  
	background: url(/2014/images/slide_bbg1.jpg) no-repeat center;  /* /2014/images/slide_bbg1.jpg */
}
.slide_bbg2 {
	height: 450px;  
	background: url(/2014/images/xinbanner1.png) no-repeat center;    /* /2014/images/slide_bbg2.jpg, xinerpbanner2.png */
} 
.slide_bbg3 {
	height: 450px; 
	background: url(/2014/images/slide_bbg3.jpg) no-repeat center;  /*url(/2014/images/slide_bbg3.jpg)*/
}
.slide_bbg4 {
	height: 450px; 
	background: url(/2014/images/slide_bbg4.jpg) no-repeat center;  /*url(/2014/images/slide_bbg3.jpg)*/
}
/*fslex_wrap
---------------------------*/
.fslex_wrap {
	position: relative;
	z-index: 999;
	display: block;
	width: 100%;
	height: 330px;
	background: none;
	overflow: hidden;
}
.fslex_iner {
	display: block;
	width: 100%;
	height: 330px;
	overflow: hidden;
}
.slide_sbg1 {
	height: 330px;
	background: url(/2014/images/slide_sbg1.jpg) no-repeat center;
}
.slide_sbg2 {
	height: 330px;
	background: url(/2014/images/slide_sbg2.jpg) no-repeat center; /*url(/2014/images/slide_sbg2.jpg)*/
}
/*ftmenu_warp
---------------------------*/
.ftmenu_warp {
	position: absolute;
	z-index: 999;
	top: 450px;
	right: 0px;
	left: 0px;
	width: 100%;
	height: 50px;
	overflow: hidden;
}
.ftmenu_iner {
	margin: 0px auto;
	width: 1000px;
	height: 50px;
	overflow: hidden;
}
.ftmenu_dl dd {
	display: inline-block;
	float: left;
	width: 200px;
	overflow: hidden;
}
.ftmenu_dl span {
	display: block;
	height: 50px;
	padding-left: 1px;
	background: url(/2014/images/sf_line.png) no-repeat left center;
	overflow: hidden;
}
.ftmenu_dl span.bg_none {
	padding-left: 0px;
	background: none;
}
.ftmenu_dl dd a {
	display: block;
	width: 100%;
	height: 50px;
	background: url(/2014/images/ftab_nom.png) repeat;
	overflow: hidden;
	font-size: 17px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
}
.ftmenu_dl dd a:hover {
	background: #ffae02;
}
.ftmenu_dl dd a.active {
	background: #ffae02;
}
/*fsite_map
---------------------------*/
.fsite_map {
	padding-top: 30px;
}
.fsite_map p {
	text-align: center;
}
.fsite_map span {
	display: inline-block;
	height: 25px;
	padding: 0px 10px 0px 11px;
	background: url(/2014/images/fspl_line.png) no-repeat left center;
	line-height: 25px;
}
.fsite_map span.bg_none {
	padding: 0px 10px 0px 10px;
	background: none;
}
.fsite_map span a {
	color: #777777;
}
.fsite_map span a:hover {
	-moz-opacity: 0.75; /*FF*/
	opacity: 0.75; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=75)"; /* IE 8 */
	filter: alpha(opacity=75);  /* IE 4-7 */
	zoom: 1;
}
/*fcopy_wrap
---------------------------*/
.fcopy_wrap {
	padding-top: 10px;
	color: #777777;
	text-align: center;
}
/*index
---------------------------------------------------------------*/
/*fcir_wrap
---------------------------*/
.fcir_wrap {
	background: #ffffff;
}
.fcir_iner {
	margin: 0px auto;
	width: 990px;
	height: 150px;
	padding: 50px 5px;
	overflow: hidden;
}
/*fcir_dl
---------------------------*/
.fcir_dl dd {
	display: inline-block;
	float: left;
	width: 150px;
	height: 150px;
	margin-left: 60px;
	overflow: hidden;
}
.fcir_dl dd.mgl_none {
	margin-left: 0px;
}
.fcir_dl dd a {
	display: block;
	width: 150px;
	height: 150px;
	overflow: hidden;
}
.fcir_dl dd a img {
	display: block;
	width: 150px;
	height: 150px;
	overflow: hidden;
}
.fcir_dl dd a span {
	display: block;
	width: 150px;
	height: 150px;
	overflow: hidden;
}
.fcir_dl dd a span.next {
	position: relative;
	z-index: 999;
	top: -150px;
	display: none;
	width: 150px;
	height: 150px;
	overflow: hidden;
}
/*ficon_wrap
---------------------------*/
.ficon_wrap {
	background: #72d0f4;
}
.ficon_iner {
	margin: 0px auto;
	width: 1000px;
	padding: 30px 0px;
	overflow: hidden;
}
/*ficon_dt*/
.ficon_dt {
	display: inline-block;
	float: left;
}
.ficon_ldt {
	display: inline-block;
	float: left;
	padding-right: 25px;
	border-right: 1px solid #b9e8fa;
}
.ficon_ldd {
	display: inline-block;
	float: left;
	padding-left: 25px;
	color: #ffffff;
}
.ficon_ldd h4 {
	color: #ffffff;
}
.ficon_ldd p {
	padding-left: 50px;
}
.ficon_ldd span.phone_icon {
	display: inline-block;
	height: 20px;
	padding-left: 19px;
	background: url(/2014/images/phone_icon.png) no-repeat left center;
	line-height: 20px;
}
/*ficon_dd*/
.ficon_dd {
	display: inline-block;
	float: right;
	padding: 5px 0px;
}
.ficon_rdl dd {
	display: inline-block;
	float: left;
	height: 50px;
	margin-left: 15px;
	color: #ffffff;
	line-height: 50px;
}
.ficon_rdl dd a {
	display: inline-block;
	width: 50px;
	height: 50px;
	overflow: hidden;
}
.ficon_rdl dd a:hover {
	-moz-opacity: 0.75; /*FF*/
	opacity: 0.75; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=75)"; /* IE 8 */
	filter: alpha(opacity=75);  /* IE 4-7 */
	zoom: 1;
}
/*item page
---------------------------------------------------------------*/
/*f1pic_wrap
---------------------------*/
.f1pic_wrap {
	background: #ffae02;
}
.f1pic_iner {
	margin: 0px auto;
	width: 970px;
	height: auto;
	padding: 50px 15px;
	overflow: hidden;
}
/*f1pic_dl*/
.f1pic_dt {
	display: inline-block;
	float: left;
	width: 370px;
	overflow: hidden;
}
.f1pic_dd {
	display: inline-block;
	float: left;
	width: 600px;
	padding-top: 50px;
	overflow: hidden;
	color: #ffffff;
	text-align: center;
}
.f1pic_dd h3 {
	color: #ffffff;
	font-size: 25px;
	text-align: center;
}
.f1pic_dd h5 {
	color: #ffffff;
	font-size: 17px;
	text-align: center;
}
.f1pic_dd p {
	font-size: 15px;
	color: #ffffff;
	text-align: center;
}
/*f12pic_wrap
---------------------------*/
.f12pic_wrap {
	margin: 0px auto;
	width: 970px;
	padding: 40px 0px;
	overflow: hidden;
}
/*f12pic_dl*/
.f12pic_dt {
	display: inline-block;
	float: left;
	width: 370px;
	overflow: hidden;
}
.f12pic_dd {
	display: inline-block;
	float: left;
	width: 570px;
	padding-left: 30px;
	overflow: hidden;
}
/*ftpic_wrap
---------------------------*/
.ftpic_wrap {
	background: #f7f7f7;
}
.ftpic_iner {
	margin: 0px auto;
	width: 970px;
	padding: 0px 15px;
	overflow: hidden;
}
.ftpic_bord {
	padding-bottom: 10px;
	background: url(/2014/images/ftpic_bord.png) no-repeat bottom center;
}
/*ftit_wrap
---------------------------*/
.ftit_wrap {
	padding-top: 25px;
}
.ftit_wrap h4 {
	height: 25px;
	padding-left: 25px;
	background: url(/2014/images/ftit_icon.png) no-repeat left center;
	color: #2f9bdb;
	font-size: 17px;
	line-height: 25px;
}
.ftit_wrap p {
	padding: 0px 0px 0px 25px;
}
/*fftit_wrap*/
.fftit_wrap h4 {
	height: 25px;
	padding-left: 25px;
	background: url(/2014/images/fftit_icon.png) no-repeat left center;
	color: #ffffff;
	font-size: 17px;
	line-height: 25px;
}
.fftit_wrap p {
	padding: 0px 0px 0px 25px;
	color: #ffffff;
}
/*fpic_cent*/
.fpic_cent {
	padding: 50px 0px;
	text-align: center;
}
/*ftpic_text*/
.ftpic_text {
	padding: 20px 0px 50px 0px;
}
.ftpic_text p {
	text-indent: 2em;
}
/*f1vide_wrap
---------------------------*/
.f1vide_wrap {
	background: #7fd3f4;
}
.f1vide_iner {
	margin: 0px auto;
	width: 970px;
	padding: 50px 15px;
	overflow: hidden;
}
/*f1vide_dl*/
.f1vide_dl {
	height: 450px;
	overflow: hidden;
}
.f1vide_dt {
	display: inline-block;
	float: left;
	padding: 50px 0px 0px 25px;
}
.f1vide_dt a {
	display: inline-block;
	width: 150px;
	height: 150px;
	padding: 5px 5px;
	background: url(/2014/images/f1cir_bg.png) no-repeat center;
	overflow: hidden;
}
.f1vide_dt a.ftab_nom {
	display: inline-block;
	width: 150px;
	height: 150px;
	padding: 5px 5px;
	background: url(/2014/images/f1cir_bg.png) no-repeat center;
	overflow: hidden;
}
.f1vide_dt a:hover {
	-moz-opacity: 0.75; /*FF*/
	opacity: 0.75; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=75)"; /* IE 8 */
	filter: alpha(opacity=75);  /* IE 4-7 */
	zoom: 1;
}
.f1vide_dt a.ftab_act {
	-moz-opacity: 0.75; /*FF*/
	opacity: 0.75; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=75)"; /* IE 8 */
	filter: alpha(opacity=75);  /* IE 4-7 */
	zoom: 1;
}
.f1vide_dd {
	display: inline-block;
	float: right;
}
/*f1tab_wrap
---------------------------*/
.f1tab_wrap {
	background: #ffae02;
}
.f1tab_iner {
	margin: 0px auto;
	width: 970px;
	padding: 40px 15px;
	overflow: hidden;
}
/*f1tab_menu
---------------------------*/
/*f1tab_dl*/
.f1tab_dl dd {
	display: inline-block;
	float: left;
	margin-left: 70px;
}
.f1tab_dl dd.mgl_none {
	margin-left: 0px;
}
.f1tab_dl dd a {
	display: inline-block;
	width: 188px;
	height: 38px;
	border: 1px solid #ffffff;
	border-radius: 4px;
	overflow: hidden;
	color: #ffffff;
	line-height: 38px;
	text-align: center;
}
.f1tab_dl dd a.ftab_nom {
	color: #ffffff;
}
.f1tab_dl dd a.ftab_act {
	color: #ffae02;
	background: #ffffff;
}
/*f1tab_cont*/
.f1tab_cont {
	color: #ffffff;
}
/*f2vide_wrap
---------------------------*/
.f2vide_wrap {
	background: #ffb61b;
}
.f2vide_iner {
	margin: 0px auto;
	width: 970px;
	padding: 50px 15px;
	overflow: hidden;
}
/*f2vide_dl*/
.f2vide_dl {
	height: 450px;
	overflow: hidden;
}
.f2vide_dt {
	display: inline-block;
	float: left;
	padding-left: 25px;
}
.f2vide_cirle a {
	display: inline-block;
	width: 150px;
	height: 150px;
	padding: 5px 5px;
	background: url(/2014/images/f1cir_bg.png) no-repeat center;
	overflow: hidden;
}
.f2vide_cirle a.ftab_nom {
	display: inline-block;
	width: 150px;
	height: 150px;
	padding: 5px 5px;
	background: url(/2014/images/f1cir_bg.png) no-repeat center;
	overflow: hidden;
}
.f2vide_cirle a:hover {
	-moz-opacity: 0.75; /*FF*/
	opacity: 0.75; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=75)"; /* IE 8 */
	filter: alpha(opacity=75);  /* IE 4-7 */
	zoom: 1;
}
.f2vide_cirle a.ftab_act {
	-moz-opacity: 0.75; /*FF*/
	opacity: 0.75; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=75)"; /* IE 8 */
	filter: alpha(opacity=75);  /* IE 4-7 */
	zoom: 1;
}
.f2vide_dd {
	display: inline-block;
	float: right;
}
/*f2tab_wrap
---------------------------*/
.f2tab_wrap {
	background: #ffc240;
}
.f2tab_iner {
	margin: 0px auto;
	width: 970px;
	padding: 40px 15px;
	overflow: hidden;
}
/*f2tab_menu
---------------------------*/
/*f2tab_dl*/
.f2tab_dl dd {
	height: 22px;
	padding-left: 20px;
}
.f2tab_dl a {
	display: inline-block;
	height: 23px;
	padding-left: 15px;
	overflow: hidden;
	color: #ffffff;
	line-height: 22px;
}
.f2tab_dl dd a.ftab_nom {
	background: none;
}
.f2tab_dl dd a:hover {
	background: url(/2014/images/fcir_icon.png) no-repeat left center;
}
.f2tab_dl dd a.ftab_act {
	background: url(/2014/images/fcir_icon.png) no-repeat left center;
}
/*f2tab_cont*/
.f2tab_cont {
	color: #555555;
}
/*f4pic_wrap
---------------------------*/
.f4pic_wrap {
	background: #ffffff;
}
.f4pic_iner {
	margin: 0px auto;
	width: 800px;
	padding: 50px 100px;
	overflow: hidden;
}
/*f4pic_dl*/
.f4pic_dt {
	display: inline-block;
	float: left;
	width: 70px;
	padding-left: 20px;
	overflow: hidden;
}
.f4pic_dd {
	display: inline-block;
	float: left;
	width: 700px;
	overflow: hidden;
}
.f4pic_dd h4 {
	color: #777777;
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	font-style: italic;
}
/*jform_wrap
---------------------------*/
.jform_wrap {
	padding: 30px 0px;
	background: #f7f7f7;
}
.jform_iner {
	margin: 0px auto;
	width: 970px;
	padding: 0px 15px;
	overflow: hidden;
}
/*list page
---------------------------------------------------------------*/
/*fnews_wrap
---------------------------*/
.fnews_wrap {
	padding: 20px 0px;
	background: #ffffff;
}
.fnews_iner {
	margin: 0px auto;
	width: 1000px;
	overflow: hidden;
}
/*fnews_dl
---------------------------*/
/*fnews_dt*/
.fnews_dt {
	display: inline-block;
	float: left;
	width: 360px;
	height: 50px;
	padding-left: 70px;
	background: url(/2014/images/fnews_icon.png) no-repeat left center;
	overflow: hidden;
}
.fnews_dt h4 {
	color: #777777;
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	font-style: italic;
}
/*fnews_dd*/
.fnews_dd {
	display: inline-block;
	float: left;
	height: 40px;
	padding-top: 10px;
	overflow: hidden;
	margin-left:265px;
}
/*fsearch_dl*/
.fsearch_dl {
	display: inline-block;
	width: 300px;
	height: 40px;
	background: url(/2014/images/fsearch_bg.jpg) no-repeat center;
	overflow: hidden;
}
.fsearch_dl dt {
	display: inline-block;
	float: left;
	width: 230px;
	height: 40px;
	overflow: hidden;
}
.fsearch_dl dt input {
	display: block;
	width: 210px;
	height: 20px;
	padding: 10px 10px;
	border: none;
	background: none;
	overflow: hidden;
	color: #999999;
	font-size: 15px;
	line-height: 20px;
}
.fsearch_dl dd {
	display: inline-block;
	float: left;
	width: 70px;
	height: 40px;
	overflow: hidden;
}
.fsearch_dl dd input {
	display: block;
	width: 70px;
	height: 40px;
	border: none;
	background: none;
	overflow: hidden;
	font-size: 0px;
	cursor: pointer;
}
/*fitem_wrap
---------------------------*/
.fitem_wrap {
	padding: 30px 0px;
	background: #f7f7f7;
}
.fitb_top {
	border-top: 10px solid #ffae02;
}
.fitem_iner {
	margin: 0px auto;
	width: 990px;
	padding: 0px 5px;
	overflow: hidden;
}
.fitem_hr {
	padding-bottom: 20px;
	border-bottom: 1px dashed #dfdfdf;
}
/*fitem_dl*/
.fitem_dt {
	display: inline-block;
	float: left;
	width: 180px;
	overflow: hidden;
}
.fitem_dt p {
	padding-top: 15px;
}
.fitem_dt a {
	display: block;
	height: 30px;
	border: 1px solid #dfdfdf;
	border-radius: 4px;
	overflow: hidden;
	line-height: 30px;
	text-align: center;
}
.fitem_dt a.ftab_nom {
	display: block;
	height: 30px;
	border: 1px solid #dfdfdf;
	border-radius: 4px;
	overflow: hidden;
	line-height: 30px;
	text-align: center;
}
.fitem_dt a:hover {
	display: block;
	height: 30px;
	border: 1px solid #ffae02;
	border-radius: 4px;
	background: #ffae02;
	overflow: hidden;
	color: #ffffff;
	line-height: 30px;
	text-align: center;
}
.fitem_dt a.ftab_act {
	display: block;
	height: 30px;
	border: 1px solid #ffae02;
	border-radius: 4px;
	background: #ffae02;
	overflow: hidden;
	color: #ffffff;
	line-height: 30px;
	text-align: center;
}
.fitem_dd {
	display: inline-block;
	float: right;
	width: 770px;
	overflow: hidden;
}
.fitem_tit {
	height: 49px;
	border-bottom: 1px solid #acacac;
}
.fitem_tit h4 {
	font-size: 17px;
	line-height: 49px;
	text-align: center;
}
.fitem_cont {
	padding: 30px 0px 15px 0px;
}
.fitem_cont p {
	text-indent: 2em;
	line-height: 25px;
}
/*fitpic_dl*/
.fitpic_dl {
	display: block;
	clear: both;
	padding-top: 15px;
	height: 124px;
	border-bottom: 1px dashed #dfdfdf;
	overflow: hidden;
}
.fitpic_dl h4 {
	font-weight: bold;
}
.fitpic_dl dt {
	display: inline-block;
	float: left;
	width: 200px;
	height: 110px;
	overflow: hidden;
}
.fitpic_dl dt img {
	display: block;
	width: 180px;
	height: 110px;
	overflow: hidden;
}
.fitpic_dl dd {
	display: inline-block;
	float: left;
	width: 570px;
	height: 110px;
	overflow: hidden;
}
.fitpic_text {
	height: 75px;
	padding-top: 15px;
	overflow: hidden;
	line-height: 25px;
}
.fitem_pagin {
	padding: 15px 20px;
	color: #333333;
}
.fitem_pagin a {
	color: #333333;
}
.fitem_pagin a:hover {
	color: #ffae02;
}
.fitem_more {
	padding: 15px 20px;
	border-top: 1px dashed #dfdfdf;
}
.fitem_more p.ymore {
	height: 25px;
	color: #ffae02;
}
.fitem_more a {
	color: #333333;
}
.fitem_more a:hover {
	color: #ffae02;
}
/*fitlist_dl*/
.fitlist_dl {
	display: block;
	clear: both;
	height: 29px;
	border-bottom: 1px dashed #dfdfdf;
	overflow: hidden;
	line-height: 29px;
}
.fitlist_dl a {
	color: #777777;
}
.fitlist_dl a:hover {
	color: #ffae02;
}
.fitlist_dt {
	display: inline-block;
	float: left;
	width: 380px;
	overflow: hidden;
	line-height: 29px;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}
.fitlist_dd {
	display: inline-block;
	float: left;
}
.downcount
{
    width:90px;
}
.fitlist_dd span {
	display: inline-block;
	float: left;
	margin-left: 5px;
}
.fitlist_dd span.ytime {
	padding-right: 15px;
	width:110px;
}
.fitlist_dd span.yinput input {
	display: inline-block;
	float: left;
	width: 40px;
	height: 20px;
	border: 1px solid #dfdfdf;
	background: #ffffff;
	overflow: hidden;
	color: #777777;
	font-size: 12px;
	text-align: center;
}
.fitlist_dd span.yget a {
	display: inline-block;
	float: left;
	height: 22px;
	padding: 0px 5px;
	margin-top: 1px;
	background: #ffae02;
	overflow: hidden;
	color: #ffffff;
	font-size: 12px;
	line-height: 22px;
}
.fitlist_dd span.yview a {
	color: #c88801;
}
.fitlist_dd span.yview a:hover {
	color: #ffae02;
}
.fitlist_dd span.ydown a {
	display: inline-block;
	float: left;
	width: 27px;
	height: 22px;
	background: url(/2014/images/fyun_down.png) no-repeat left center;
	overflow: hidden;
	font-size: 0px;
}
.fitlist_dd span.ydown a:hover {
	background: url(/2014/images/fyun_down.png) no-repeat right center;
}
/*page_wrap
---------------------------*/
.page_wrap {
	height: 30px;
	padding: 15px 0px 0px 235px;
	overflow: hidden;
}
.page_dl dd {
	display: inline-block;
	float: left;
	height: 30px;
	margin: 0px 5px;
	overflow: hidden;
	line-height: 30px;
}
.page_dl dd.num a {
	display: inline-block;
	height: 30px;
	padding: 0px 3px;
	overflow: hidden;
	color: #777777;
	line-height: 30px;
}
.page_dl dd.prev a {
	display: inline-block;
	float: left;
	height: 20px;
	margin-top: 4px;
	padding: 0px 5px;
	border: 1px solid #dfdfdf;
	font-size: 12px;
	line-height: 20px;
}
.page_dl dd.next a {
	display: inline-block;
	float: left;
	height: 20px;
	margin-top: 4px;
	padding: 0px 5px;
	border: 1px solid #dfdfdf;
	font-size: 12px;
	line-height: 20px;
}
.page_dl dd.spec input {
	display: inline-block;
	float: left;
	width: 40px;
	height: 20px;
	margin-top: 4px;
	padding: 0px 5px;
	border: 1px solid #dfdfdf;
	background: #f7f7f7;
	overflow: hidden;
	color: #777777;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
}
.page_dl dd.spec a {
	display: inline-block;
	float: left;
	height: 30px;
	margin-left: 5px;
	color: #777777;
	line-height: 30px;
}
.page_dl dd a:hover {
	color: #ffae02;
}
/*fmul_wrap
---------------------------*/
.fmul_wrap {
	padding: 40px 0px;
	background: #f7f7f7;
}
.fmul_iner {
	margin: 0px auto;
	width: 1000px;
	overflow: hidden;
}
/*fmul_menu
---------------------------*/
.fmul_menu {
	display: inline-block;
	float: left;
	width: 230px;
	overflow: hidden;
}
/*fmmul_tit*/
.fmmul_tit h3 {
	color: #ffae02;
	font-weight: bold;
}
.fmmul_tit h4 {
	font-size: 17px;
	color: #ffae02;
}
/*fmul_dl*/
.fmul_dl {
	display: block;
	padding: 5px 0px 10px 5px;
	overflow: hidden;
}
.fmul_dl a {
	color: #777777;
}
.fmul_dl a:hover {
	color: #ffae02;
}
.fmul_dl a.ft_2d9 {
	color: #ffae02;
}
.fmul_dl dd.fmuld_only {
	padding-left: 36px;
	background: url(/2014/images/fmul_ico1.png) no-repeat left center;
	overflow: hidden;
	line-height: 25px;
}
.fmul_dl dd.fmuld_more a.ft_2d9 {
	display: block;
	padding-left: 39px;
	background: url(/2014/images/fmul_down.png) no-repeat left center;
	overflow: hidden;
	line-height: 25px;
}
.fmul_dl dd.fmuld_more a.active {
	display: block;
	padding-left: 39px;
	background: url(/2014/images/fmul_up.png) no-repeat left center;
	overflow: hidden;
	line-height: 25px;
}
/*fmuld_dl*/
.fmuld_dl dd {
	height: 25px;
	padding-left: 60px;
	background: url(/2014/images/fmul_ico2.png) no-repeat left center;
	line-height: 25px;
}
/*fmul_cont
---------------------------*/
.fmul_cont {
	display: inline-block;
	float: right;
	width: 770px;
	overflow: hidden;
}
.fcmul_tit {
	height: 39px;
	border-bottom: 1px solid #acacac;
}
.fcmul_tit h4 {
	font-size: 17px;
	line-height: 25px;
	text-align: center;
}
.fcmul_cont {
	padding: 15px 0px;
}
.fcmul_cont p {
	text-indent: 2em;
	line-height: 25px;
}
/*fsoft_more
---------------------------*/
.fsoft_more {
	position: absolute;
	z-index: 999;
	top: 405px;
	right: 0px;
	left: 0px;
	width: 100%;
	height: 50px;
	overflow: hidden;
}
.fsoft_iner {
	margin: 0px auto;
	width: 1000px;
	height: auto;
	text-align: right;
	overflow: hidden;
}
/*fclist_wrap
---------------------------*/
.fclist_wrap {
	width: 100%;
	height: auto;
	background: #ffffff;
}
.fclist_iner {
	margin: 0px auto;
	width: 1000px;
	height: 200px;
	overflow: hidden;
}
.fclist_dl {
	display: block;
	width: 1000px;
	height: 200px;
	overflow: hidden;
}
.fclist_dl dd.fclist_dd {
	display: inline-block;
	float: left;
	width: 330px;
	margin-left: 50px;
	overflow: hidden;
}
.fclist_dl dd.mgl_none {
	margin-left: 0px;
}
/*ftit_wrap
---------------------------*/
.ftit_dl {
	height: 30px;
	padding: 0px 10px;
	overflow: hidden;
}
.ftit_dl dt {
	display: inline-block;
	float: left;
	height: 30px;
	font-size: 13px;
	font-weight: bold;
	line-height: 30px;
}
.ftit_dl dt a {
	color: #777777;
}
.ftit_dl dt a:hover {
	color: #ffae02;
}
.ftit_dl dd {
	display: inline-block;
	float: left;
	height: 30px;
	margin-left: 25px;
	padding-left: 10px;
	background: url(/2014/images/farrow_ticon.png) no-repeat left center;
	line-height: 30px;
}
.ftit_dl dd a 
{
    color:#777;
	font-size: 12px;
}
.ftit_dl dd a:hover {
	color: #ffae02;
}
/*fh25_dl
---------------------------*/
.fh25_dl dd {
	display: block;
	height: 25px;
	padding-left: 20px;
	background: url(/2014/images/farrow_aicon.png) no-repeat left center;
	overflow: hidden;
	line-height: 25px;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}
.fh25_dl dd a {
	color: #777777;
}
.fh25_dl dd a:hover {
	color: #ffae02;
}
/*flso_wrap
---------------------------*/
.flso_wrap {
	padding: 0px 0px 25px 0px;
	background: url(/2014/images/flso_bg.jpg) no-repeat center bottom;
	text-align: center;
}
.flso_wrap h1 {
	padding-top: 30px;
}
.flso_wrap h4 {
	padding-top: 10px;
	color: #666666;
}
/*fpath_wrap
---------------------------*/
.fpath_wrap {
	padding: 30px 0px;
	background: #ffffff;
}
.fpath_iner {
	margin: 0px auto;
	width: 720px;
	padding: 0px 140px;
	overflow: hidden;
}
/*fpath_cdl
---------------------------*/
.fpath_cdl {
	display: block;
	width: 580px;
	height: 40px;
	padding: 0px 70px;
	overflow: hidden;
}
.fpath_cdl dt {
	display: inline-block;
	float: left;
	width: 40px;
	height: 40px;
	overflow: hidden;
}
.fpath_cdl dt a {
	display: block;
	width: 40px;
	height: 40px;
	background: url(/2014/images/fpcir_nom.png) no-repeat center;
	overflow: hidden;
	color: #777777;
	line-height: 40px;
	text-align: center;
}
.fpath_cdl dt a:hover {
	background: url(/2014/images/fpcir_act.png) no-repeat center;
	color: #7dacfa;
}
.fpath_cdl dt a.active {
	background: url(/2014/images/fpcir_act.png) no-repeat center;
	color: #7dacfa;
}
.fpath_cdl dd {
	display: inline-block;
	float: left;
	width: 120px;
	height: 40px;
	margin: 0px 10px;
	overflow: hidden;
	background: url(/2014/images/fplin_nom.png) repeat-x center;
}
.fpath_cdl dd.active {
	background: url(/2014/images/fplin_act.png) repeat-x center;
}
/*fpath_tdl
---------------------------*/
.fpath_tdl {
	display: block;
	width: 720px;
	overflow: hidden;
}
.fpath_tdl dd {
	display: inline-block;
	float: left;
	width: 140px;
	height: 30px;
	padding: 0px 20px;
	overflow: hidden;
	line-height: 30px;
	text-align: center;
}
.fpath_tdl dd a {
	color: #777777;
}
.fpath_tdl dd a:hover {
	color: #7dacfa;
}
.fpath_tdl dd a.active {
	color: #7dacfa;
}
/*fabout_wrap
---------------------------*/
.fabout_wrap {
	background: #ffffff;
}
.fabout_iner {
	margin: 0px auto;
	width: 1000px;
	padding: 20px 0;
	overflow: hidden;
}
/*fabout_dl*/
.fabout_dt {
	display: inline-block;
	float: left;
	width: 70px;
	padding-left: 5px;
	overflow: hidden;
}
.fabout_dd {
	display: inline-block;
	float: left;
	width: 700px;
	overflow: hidden;
}
.fabout_dd h4 {
	color: #777777;
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	font-style: italic;
}
/*fdown_wrap
---------------------------*/
.fdown_wrap {
	background: #ffffff;
}
.fdown_iner {
	margin: 0px auto;
	width: 800px;
	padding: 50px 100px;
	overflow: hidden;
}
/*fdown_dl*/
.fdown_dt {
	display: inline-block;
	float: left;
	width: 70px;
	padding-left: 5px;
	overflow: hidden;
}
.fdown_dd {
	display: inline-block;
	float: left;
	width: 700px;
	overflow: hidden;
}
.fdown_dd h4 {
	color: #777777;
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	font-style: italic;
}
/*fplan_wrap
---------------------------*/
.fplan_wrap {
	background: #ffffff;
}
.fplan_iner {
	margin: 0px auto;
	width: 1000px;
	padding: 20px 0;
	overflow: hidden;
}
/*fplan_dl*/
.fplan_dt {
	display: inline-block;
	float: left;
	width: 70px;
	padding-left: 5px;
	overflow: hidden;
}
.fplan_dd {
	display: inline-block;
	float: left;
	width: 700px;
	overflow: hidden;
}
.fplan_dd h4 {
	color: #777777;
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	font-style: italic;
}
/*fphoto_wrap
---------------------------*/
.fphoto_wrap {
	height: auto;
	padding-bottom: 30px;
	background: #f1f1f1;
}
.fphoto_iner {
	margin: 0px auto;
	width: 1000px;
	padding: 15px 0px;
	overflow: hidden;
}
/*fphoto_dl
---------------------------*/
.fphoto_ul li {
	display: inline-block;
	float: left;
	width: 450px;
	height: 150px;
	padding: 15px 0px;
	overflow: hidden;
}
.fphoto_ul li.odd {
	padding-right: 49px;
}
.fphoto_ul li.even {
	padding-left: 49px;
	border-left: 1px solid #dddddd;
}
/*fphoto_dl
---------------------------*/
/*fphoto_dt*/
.fphoto_dt {
	display: inline-block;
	float: left;
	width: 150px;
	height: 150px;
	overflow: hidden;
}
.fphoto_dt img {
	display: block;
	width: 150px;
	height: 150px;
	overflow: hidden;
}
/*fphoto_dd*/
.fphoto_dd {
	display: inline-block;
	float: left;
	width: 270px;
	height: 150px;
	padding-left: 30px;
	overflow: hidden;
}
.fphoto_dd p {
	display: block;
	width: 270px;
	overflow: hidden;
}
/*fphoto_tit*/
.fphoto_tit {
	height: 25px;
	color: #333333;
	font-size: 15px;
	line-height: 25px;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}
/*fphoto_dat*/
.fphoto_dat {
	height: 19px;
	border-bottom: 1px dashed #dddddd;
	color: #c88801;
	line-height: 15px;
}
.fphoto_dat span {
	color: #c88801;
}
/*fphoto_txt*/
.fphoto_txt {
	height: 66px;
	padding-top: 10px;
	line-height: 22px;
	overflow:hidden;
}
/*fphoto_more*/
.fphoto_more {
	height: 20px;
	padding-top: 5px;
	line-height: 20px;
	text-align: right;
}
.fphoto_more a {
	color: #ffae02;
	font-size: 12px;
}
.fphoto_more a:hover {
	color: #777777;
}
/*fphoto_page*/
.fphoto_wrap div.page_wrap {
	padding: 30px 0px 0px 358px;
}
/*fguid_wrap
---------------------------*/
.fguid_wrap {
	height: auto;
	padding-top: 30px;
	background: #f1f1f1;
}
.fguid_iner {
	margin: 0px auto;
	width: 1000px;
	overflow: hidden;
}
/*fguid_dl
---------------------------*/
.fguid_dl dd {
	display: inline-block;
	float: left;
	height: 30px;
	font-size: 15px;
	line-height: 30px;
}
.fguid_dl a:hover {
	color: #ffae02;
}
/*fcase_wrap
---------------------------*/
.fcase_wrap {
	height: auto;
	background: #f1f1f1;
}
.fcase_iner {
	margin: 0px auto;
	width: 1000px;
	overflow: hidden;
}
.fcase_cont {
	padding: 30px 30px;
}
/*fsphoto_wrap
---------------------------*/
.fsphoto_dl dd {
	display: inline-block;
	float: left;
	width: 120px;
	height: 110px;
	margin-left: 20px;
	overflow: hidden;
	text-align: center;
}
/*fpay_wrap
---------------------------*/
.fpay_wrap {
	background: #ffffff;
}
.fpay_iner {
	margin: 0px auto;
	width: 1000px;
	padding: 30px 0px;
}
.fpay_dl dd {
	display: inline-block;
	float: left;
	width: 130px;
	height: 120px;
	margin: 0px 30px;
	overflow: hidden;
}
.fpay_dl dd span {
	display: block;
}
.fpay_dl dd a {
	display: block;
	float: left;
	width: 60px;
	height: 40px;
	padding: 40px 30px;
	background: url(/2014/images/fpay_nom.jpg) no-repeat center;
	overflow: hidden;
	color: #777777;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.fpay_dl dd a:hover {
	background: url(/2014/images/fpay_act.jpg) no-repeat center;
	color: #ffae02;
}
.fpay_dl dd a.active {
	background: url(/2014/images/fpay_act.jpg) no-repeat center;
	color: #ffae02;
}
/*fdlist_wrap
---------------------------*/
.fdlist_wrap {
	width: 100%;
	height: auto;
	padding-top:15px;
	padding-bottom:30px;
	background: #ffffff;
}
.fdlist_iner {
	margin: 0px auto;
	width: 1000px;
	height: auto;
	border-top: 1px solid #efefef;
	overflow: hidden;
}

.fdlist_dl dd a {
    background: url("/2014/images/farrow_aicon.png") no-repeat scroll left center rgba(0, 0, 0, 0);
    color: #666;
    display: block;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    padding-left: 20px;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fdlist_dl {
    overflow: hidden;
    padding: 0 40px;
    width: 920px;
    padding-left:0px;
}
.fdlist_dl dd {
    display: inline-block;
    float: left;
    height: 25px;
    text-align: left;
    width: 100px;
}
.fdlist_dl dd.mgl_none {
	margin-left: 0px;
}
.fdlist_dl dd a {
	color: #777777;
}
.fdlist_dl dd a:hover {
	color: #ffae02;
}
/*ftit_wrap
---------------------------*/
.ftit_dl {
	height: 30px;
	padding: 0px 10px;
	overflow: hidden;
}
.ftit_dl dt {
	display: inline-block;
	float: left;
	height: 30px;
	font-size: 13px;
	font-weight: bold;
	line-height: 30px;
}
.ftit_dl dt a {
	color: #777777;
}
.ftit_dl dt a:hover {
	color: #ffae02;
}
.ftit_dl dd {
	display: inline-block;
	float: left;
	height: 30px;
	margin-left: 25px;
	padding-left: 10px;
	background: url(/2014/images/farrow_ticon.png) no-repeat left center;
	line-height: 30px;
}
.ftit_dl dd a {
	font-size: 12px;
}
.ftit_dl dd a:hover {
	color: #ffae02;
}


/*fpath_wrap
---------------------------*/


/*分页版块*/
.page{
       width:100%;
       height:28px; 
       line-height:26px; 
       clear:both; 
       float:left; 
       text-align:center; 
       overflow:hidden; 
       color: #777777;
       font-size: 14px;
       font-family: Arial,"Microsoft YaHei","SimHei",Helvetica,sans-serif;
}
.page input{
    width:20px; 
    height:12px; 
    line-height:12px; 
    border: 1px solid #a9a9a9;
    vertical-align:middle;
    color: #777777;
    font-size: 14px;
    font-family: Arial,"Microsoft YaHei","SimHei",Helvetica,sans-serif;
}
.page img{
    padding:0;
    margin:0 0 3px 0; 
    vertical-align:middle;
}
.page a{
    color: #ffae02;
    font-size: 14px;
    font-family: Arial,"Microsoft YaHei","SimHei",Helvetica,sans-serif;
}

#TB_window {
	top: 0px;
	left: 0px;
	position: fixed;
	_position: absolute;
	background: #fff;
	z-index: 102;
	color:#000000;
	display:none;
	border:5px solid #666;
}
#TB_caption{
	height:25px;
	padding:10px 30px 10px 25px;
}
#TB_closeWindow{
	height:25px;
	padding:10px 25px 10px 0;
	float:right;
}
#TB_closeAjaxWindow{
	padding:5px 10px 7px 0;
	margin-bottom:1px;
	text-align:right;
	background-color:#FF9900;
}
#TB_ajaxContent{
	padding:2px 15px 15px 15px;
	overflow:auto;
}

#TB_load{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	overflow: visible;
	visibility: visible;
	display: block;
	z-index:101;
}
#TB_loadContent{
	margin-left: -125px;
	position: absolute;
	top: -50px;
	left: 50%;
	width: 250px;
	height: 100px;
	visibility: visible;
}
.popup .con {
    float: left;
    padding: 10px 0;
    width: 450px;
}

.popup {
    float: left;
    margin: 0;
    text-decoration: none;
    width: 450px;
}
.popup .con .cycle {
    clear: both;
    float: left;
    margin: 10px 0 15px;
    width: 100%;
}
.popup .con .cycle .text {
    float: left;
    font-family: Microsoft Yahei;
    font-size: 14px;
    height: 24px;
    line-height: 24px;
    margin: 0 0 0 30px;
    width: 70px;
}
.popup .con .cycle .input_text {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #ccc;
    float: left;
    font-family: Arial,Helvetica,sans-serif;
    height: 22px;
    line-height: 22px;
    margin: 0 0 0 5px;
    padding: 0 5px;
    width: 190px;
}
.popup .con .cycle .input_text2 {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #ccc;
    float: left;
    font-family: Arial,Helvetica,sans-serif;
    height: 22px;
    line-height: 22px;
    margin: 0 0 0 5px;
    padding: 0 5px;
    width: 100px;
}
.popup .con .cycle .a1 {
    background: none repeat scroll 0 0 #FF9900;
    border: 1px solid #5c87ac;
    color: #fff;
    float: left;
    font-family: Arial,Helvetica,sans-serif;
    height: 22px;
    line-height: 22px;
    margin: 0 0 0 5px;
    padding: 0 10px;
}
.popup .con .cycle .a2 {
    background: none repeat scroll 0 0 #FF9900;
    border: 1px solid #5c87ac;
    color: #fff;
    float: left;
    font-family: Arial,Helvetica,sans-serif;
    height: 22px;
    line-height: 22px;
    margin: 0 0 0 105px;
    padding: 0 10px;
}
.popup .con .cycle .input_button {
    background: url("/2014/Images/button_bg2.png") no-repeat scroll left top rgba(0, 0, 0, 0);
    color: #fff;
    cursor: pointer;
    display: inline;
    float: left;
    font-family: "微软雅黑";
    font-size: 18px;
    height: 33px;
    margin: 10px 7px 0 105px;
    text-align: center;
    width: 123px;
}
.popup .con .cycle .input_button:hover {
    background: url("/2014/Images/button_bg_hover2.png") no-repeat scroll left top rgba(0, 0, 0, 0);
}
.popup .con .cycle .close {
    background: url("/2014/Images/button_bg.png") no-repeat scroll left top rgba(0, 0, 0, 0);
    color: #fff;
    cursor: pointer;
    display: inline;
    float: left;
    font-family: "微软雅黑";
    font-size: 18px;
    height: 33px;
    line-height: 33px;
    margin: 10px 7px 0 15px;
    text-align: center;
    width: 123px;
}
.popup .con .cycle .close:hover {
    background: url("/2014/Images/button_bg_hover.png") no-repeat scroll left top rgba(0, 0, 0, 0);
}
.popup .con .cycle .information {
    clear: both;
    color: #999;
    float: left;
    line-height: 20px;
    margin: 0 0 0 104px;
    width: 206px;
}
.popup .con .cycle .input_text:hover, .popup .con .cycle .input_text2:hover {
    border: 1px solid #666;
}

/*qq客服在线*/
.qq_online{ width:168px; padding:10px 0; position:fixed;right:2px; top:160px; border:1px solid #1f4c72; background:#40729d; z-index:3; display:none;}
.qq_online .title{ width:123px; height:36px; line-height:36px; float:left; padding:0 0 0 45px; background:url(/Images/all_bg.png) no-repeat left -1552px; font-family:Microsoft Yahei; font-size:19px; color:#fff;}
.qq_online .cycle{ width:100%; float:left; clear:both; margin:30px 0 0 0;}
.qq_online .cycle .title2{ width:100%; height:29px; line-height:29px; float:left;background:#25537a; border-top:1px solid #183c5a; border-bottom:1px solid #183c5a;font-family:Microsoft Yahei; font-size:16px; color:#fff; text-align:center;}
.qq_online .cycle .list{ width:100%; clear:both; float:left; padding:9px 0 0 0;}
.qq_online .cycle .list .li{ width:100%; clear:both; float:left; margin:5px 0 0 0;}
.qq_online .cycle .list .li .qq_icon{ width:20px; height:23px; background:url(/Images/all_bg.png) no-repeat -24px -1603px; float:left; margin:0 0 0 14px;}
.qq_online .cycle .list .li .name{ width:96px; height:24px; line-height:24px; text-align:center; float:left; margin:0 0 0 9px; background:url(/Images/all_bg.png) no-repeat -283px -1448px;font-family:Microsoft Yahei; font-size:14px; color:#fff;}
.qq_online .cycle .list .li .name:hover{ width:96px; height:24px; float:left; margin:0 0 0 9px; background:url(/Images/all_bg.png) no-repeat -391px -1448px;}

.qq_online_open{ width:31px; height:163px; position:fixed;right:2px; top:160px;background:url(/Images/all_bg.png) no-repeat -569px -1522px; cursor:pointer; z-index:2;}

.qq_online_close{ width:16px; height:16px; position:fixed;right:5px; top:162px;background:url(/Images/all_bg.png) no-repeat -541px -1522px; cursor:pointer; z-index:4;}

/*当前位置*/
    .local
      {
        width: 1000px;
        margin: 0 auto;
        height: 30px;
      }
      .e_localtit {
        float: left;
        height: 21px;
        margin-top:0px;
        width: 30px;
      }
      .e_localtit img {
         background-repeat: no-repeat;
       }
       .local p {
        color: #323232;
        font-family: Arial, Helvetica, "Microsoft YaHei", "STHeiti Light", sans-serif;
        font-size: 14px;
        height: 21px;
        line-height: 21px;
        margin-top: 21px;
      }
      .local p a:hover{ color:Red;}
      
      
      
      @charset "utf-8";
/*--------------------------------------------------------------
*Filename:                      top.css
---------------------------------------------------------------*/

/*totop
---------------------------------------------------------------*/
#totop {
	position: fixed;
	z-index: 999;
	bottom:40px;
	right: 50px;
	display: none;
	width: 40px;
	height: 40px;
	overflow: hidden;
}
*html #totop {
	position: absolute;
	cursor: pointer;
	right: 50px;
 top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight)-75+"px");
}
#totop a.top_nom {
	display: block;
	width: 40px;
	height: 40px;
	background: url(/2014/plugin/top/images/up-top.png) no-repeat top; 
}
#totop a.top_act {
	background: url(/2014/plugin/top/images/up-top.png) no-repeat bottom;
}
{ text-decoration:}

/*
 * @freebie: Buttom.css
 * @author: Francisco Neves
 */

* { outline: none !important; }
a, a:visited, a:hover, a:active { text-decoration: none; color: inherit; }


div.clean-button
{
	display: table;
	padding: 5px;
	border-radius: 50px 50px 50px 50px;
	-moz-border-radius: 50px 50px 50px 50px;
	-webkit-border-radius: 50px 50px 50px 50px;
	cursor: pointer;
}

div.clean-button > span.text
{
	background-color: #f89735;
    border: 1px solid #eaa662;
    border-radius: 80px;
    color: white;
    font-size: 12px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    float: left;
    width: 80px;
    line-height: 30px;
    height: 30px;
    padding: 0px;

}

div.clean-button:hover > span.text
{
	background: #f5c765;
	background: -moz-linear-gradient(top, #f5c765 0%, #cd900e 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%,#f5c765), color-stop(100%, rgba(105,213,241,1)));
	background: -webkit-linear-gradient(top, #f5c765 0%, #cd900e 100%);
	background: -o-linear-gradient(top, #f5c765 0%, #cd900e 100%);
	background: -ms-linear-gradient(top, #f5c765 0%, #cd900e100%);
	background: linear-gradient(to bottom, #f5c765 0%, #cd900e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcd54d', endColorstr='#f0d868', GradientType=0 );
}

div.clean-button:active
{
	background: #f8b432;
	background: -moz-linear-gradient(top, #f8b432 0%, #bf7f04 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #f8b432), color-stop(100%, #bf7f04));
	background: -webkit-linear-gradient(top, #f8b432 0%, #bf7f04 100%);
	background: -o-linear-gradient(top, #f8b432 0%, #bf7f04 100%);
	background: -ms-linear-gradient(top, #f8b432 0%, #bf7f04 100%);
	background: linear-gradient(to bottom, #f8b432 0%, #bf7f04 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cbcbcb', endColorstr='#f1f1f1', GradientType=0 );
}

div.clean-button:active > span.text
{
	background: #dfa840;
	background: -moz-linear-gradient(top, #dfa840 0%, #f5be56 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #af8431), color-stop(100%, #a1803f));
	background: -webkit-linear-gradient(top, #dfa840 0%, #f5be56  100%);
	background: -o-linear-gradient(top, #dfa840 0%, #f5be56  100%);
	background: -ms-linear-gradient(top, #dfa840 0%, #f5be56  100%);
	background: linear-gradient(to bottom, #dfa840 0%,#f5be56  100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#056aad', endColorstr='#055183', GradientType=0 );
	-webkit-box-shadow: inset 0px 2px 0px 0px #bb8928;
	-moz-box-shadow: inset 0px 2px 0px 0px #bb8928;
	box-shadow: inset 0px 2px 0px 0px #bb8928;
	border: 1px solid #03507e;
}


@charset "utf-8";
/*--------------------------------------------------------------
*Filename: jqtransform.css
---------------------------------------------------------------*/

/*jqTransform
---------------------------------------------------------------*/
/*Buttons
---------------------------------------------------------------*/
button.jqTransformButton {
	position: relative;
	left: 0px;
	width: 115px;
	height: 30px;
	margin: 0px;
	padding: 0px;
	border: none;
	border-radius: 4px;
	background-color: transparent;
	cursor: pointer;
	color: #ffffff;
	font-size: 13px;
	font-family: Arial, "Microsoft YaHei", "SimHei", Helvetica, sans-serif;
	overflow: hidden;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
button.jqTransformButton {
}
}
*:first-child+html button.jqTransformButton[type] {
	width: 1;
} /* IE7 */
button.jqTransformButton span {
	display: block;
	float: right;
	margin: 0px;
	height: 30px;
	padding: 0px; /* sliding doors padding */
	border-radius: 4px;
	background: none;
}
button.jqTransformButton span span {
	display: block;
	width: 115px;
	height: 30px;
	line-height: 30px;
	background: #ffae02;
	overflow: hidden;
	color: #ffffff;
	font-size: 13px;
	text-decoration: none;
}
/*hover*/
button.jqTransformButton_hover span span {
	color: #ffffff;
	background: #c88801;
}
button.jqTransformButton_hover span {
	background: none;
}
/*clicked*/
button.jqTransformButton_click span span {
	color: #ffffff;
	background: #c88801;
}
button.jqTransformButton_click span {
	background: none;
}
/* IE 6 */
* html button.jqTransformButton {
	height: 30px;
}
* button.jqTransformButton span span {
	height: 30px;
}
/* IE 7 */
*+ html button.jqTransformButton {
	height: 30px;
}
*+ button.jqTransformButton span span {
	height: 30px;
}
/*Inputs
---------------------------------------------------------------*/
.jqTransformInputWrapper {
	float: left;
	height: 28px;
	border-radius: 0px;
	border: 1px solid #a9a9a9;
	background: #f7f7f7;
	overflow: hidden;
}
.jqTransformInputInner {
	height: 28px;
	background: #f7f7f7;
	overflow: hidden;
}
.jqTransformInputInner div {
	height: 28px;
	overflow: hidden;
}
.jqTransformInputInner div input {
	height: 20px;
	border: none;
	background: none;
	padding: 4px 4px;
	color: #777777;
	font-size: 13px;
	font-family: Arial, "Microsoft YaHei", "SimHei", Helvetica, sans-serif;
	line-height: 20px;
	vertical-align: middle;
}
/*  IE6 */
* html .jqTransformInputInner div input {
	height: 20px;
	line-height: 20px;
	overflow: hidden;
}
/* Ie7 */
*+ html .jqTransformInputInner div input {
	height: 20px;
	line-height: 20px;
	overflow: hidden;
}
/*hover*/
.jqTransformInputWrapper_hover {
	border-radius: 0px;
}
.jqTransformInputWrapper_hover div.jqTransformInputInner {
	border-radius: 0px;
}
/*focus*/
.jqTransformInputWrapper_focus {
	border-radius: 0px;
}
.jqTransformInputWrapper_focus div.jqTransformInputInner {
	border-radius: 0px;
}
.jqTransformSafari .jqTransformInputInner div {
	position: relative;
}
.jqTransformSafari .jqTransformInputInner div input {
	border-radius: 0px;
}
/*Textarea
---------------------------------------------------------------*/
table.jqTransformTextarea td#jqTransformTextarea-mm textarea {
	font-size: 13px;
	line-height: 20px;
}
table.jqTransformTextarea td {
	width: 4px;
	height: 4px;
	font-size: 1px;
	line-height: 1px;
}
table.jqTransformTextarea {
	border: 1px solid #a9a9a9;
}
table.jqTransformTextarea tr {
/*border: 1px solid red;*/
}
table.jqTransformTextarea textarea {
	border: none;
	background: #f7f7f7;
	color: #777777;
	font-size: 13px;
	font-family: Arial, "Microsoft YaHei", "SimHei", Helvetica, sans-serif;
	resize: none;
	overflow: hidden;
}
table.jqTransformTextarea td#jqTransformTextarea-tl {
	background: #f7f7f7;
}
table.jqTransformTextarea td#jqTransformTextarea-tm {
	background: #f7f7f7;
}
table.jqTransformTextarea td#jqTransformTextarea-tr {
	background: #f7f7f7;
}
table.jqTransformTextarea td#jqTransformTextarea-ml {
	background: #f7f7f7;
}
table.jqTransformTextarea td#jqTransformTextarea-mm {
	background: #f7f7f7;
}
table.jqTransformTextarea td#jqTransformTextarea-mr {
	background: #f7f7f7;
}
table.jqTransformTextarea td#jqTransformTextarea-bl {
	background: #f7f7f7;
}
table.jqTransformTextarea td#jqTransformTextarea-bm {
	background: #f7f7f7;
}
table.jqTransformTextarea td#jqTransformTextarea-br {
	background: #f7f7f7;
}
/*hover*/
table.jqTransformTextarea-hover td#jqTransformTextarea-tl {
	background: #f7f7f7;
}
table.jqTransformTextarea-hover td#jqTransformTextarea-tm {
	background: #f7f7f7;
}
table.jqTransformTextarea-hover td#jqTransformTextarea-tr {
	background: #f7f7f7;
}
table.jqTransformTextarea-hover td#jqTransformTextarea-ml {
	background: #f7f7f7;
}
table.jqTransformTextarea-hover td#jqTransformTextarea-mm {
	background: #f7f7f7;
}
table.jqTransformTextarea-hover td#jqTransformTextarea-mr {
	background: #f7f7f7;
}
table.jqTransformTextarea-hover td#jqTransformTextarea-bl {
	background: #f7f7f7;
}
table.jqTransformTextarea-hover td#jqTransformTextarea-bm {
	background: #f7f7f7;
}
table.jqTransformTextarea-hover td#jqTransformTextarea-br {
	background: #f7f7f7;
}
/*focus*/
table.jqTransformTextarea-focus td#jqTransformTextarea-tl {
	background: #f7f7f7;
}
table.jqTransformTextarea-focus td#jqTransformTextarea-tm {
	background: #f7f7f7;
}
table.jqTransformTextarea-focus td#jqTransformTextarea-tr {
	background: #f7f7f7;
}
table.jqTransformTextarea-focus td#jqTransformTextarea-ml {
	background: #f7f7f7;
}
table.jqTransformTextarea-focus td#jqTransformTextarea-mm {
	background: #f7f7f7;
}
table.jqTransformTextarea-focus td#jqTransformTextarea-mr {
	background: #f7f7f7;
}
table.jqTransformTextarea-focus td#jqTransformTextarea-bl {
	background: #f7f7f7;
}
table.jqTransformTextarea-focus td#jqTransformTextarea-bm {
	background: #f7f7f7;
}
table.jqTransformTextarea-focus td#jqTransformTextarea-br {
	background: #f7f7f7;
}
table.jqTransformTextarea .jqTransformSafariTextarea div {
	position: relative;
	overflow: hidden;
}
table.jqTransformTextarea .jqTransformSafariTextarea textarea {
	position: absolute;
	top: 0px;
	left: 0px;
	background: #f7f7f7;
	resize: none;
	overflow: hidden;
}
/*Radios
---------------------------------------------------------------*/
.jqTransformRadioWrapper {
	display: inline-block;
	height: 25px;
	width: 25px;
	padding-top: 4px;
}
.jqTransformRadio {
	display: inline-block;/*display: -moz-inline-block;*/
	height: 25px;
	width: 25px;
	background: transparent url(/2014/plugin/jqtransform/images/radio/radio.gif) no-repeat center top;
	vertical-align: middle;
}
/*Checkboxes
---------------------------------------------------------------*/
span.jqTransformCheckboxWrapper {
	display: inline-block;
	float: left;
	height: 16px;
	padding: 2px 5px 2px 0px;
	overflow: hidden;
}
a.jqTransformCheckbox {
	display: block;
	height: 16px;
	width: 16px;
	background: transparent url(/2014/plugin/jqtransform/images/checkbox/checkbox.gif) no-repeat left top;
	vertical-align: middle;
}
/* Checked - Used for both Radio and Checkbox */
a.jqTransformChecked {
	background: transparent url(/2014/plugin/jqtransform/images/checkbox/checkbox.gif) no-repeat left bottom;
}
/*Selects
---------------------------------------------------------------*/
.jqTransformSelectWrapper {
	position: relative;
	float: left;
	width: 250px;
	height: 27px;
}
.jqTransformSelectWrapper div span {
	position: absolute;
	width: 238px !important;
	height: 25px;
	padding: 0px 4px;
	border-radius: 0px;
	border: 1px solid #a9a9a9;
	background: #f7f7f7;
	cursor: pointer;
	color: #777777;
	font-size: 13px;
	line-height: 25px;
	font-family: Arial, "Microsoft YaHei", "SimHei", Helvetica, sans-serif;
	white-space: nowrap;
	overflow: hidden;
}
.jqTransformSelectWrapper a.jqTransformSelectOpen {
	position: absolute;
	right: 0px;
	display: inline-block;
	width: 30px;
	height: 25px;
	background: url(/2014/plugin/jqtransform/images/select/selectr-bg.gif) no-repeat center;
}
.jqTransformSelectWrapper ul {
	position: absolute;
	z-index: 10;
	top: 27px;
	left: 0px;
	display: none;
	height: auto;
	list-style: none;
	border: 1px solid #a9a9a9;
	border-radius: 0px;
	background: #f7f7f7;
	overflow: auto;
}
.jqTransformSelectWrapper ul a {
	display: block;
	padding: 5px;
	background: #f7f7f7;
	color: #999999;
	font-size: 13px;
	text-decoration: none;
}
.jqTransformSelectWrapper ul a.selected {
	background: #f7f7f7;
	color: #777777;
}
.jqTransformSelectWrapper ul a:hover, .jqTransformSelectWrapper ul a.selected:hover {
	background: #f7f7f7;
	color: #777777;
}
/* Hidden - used to hide the original form elements */
.jqTransformHidden {
	display: none;
}
/*jform_table update lith
------------------------------------------------------*/
/*jform_table*/
.jform_table {
	width: 100%;
}
/*ftbody */
.jform_table td {
	font-size: 13px;
	line-height: 20px;
	vertical-align: middle;
}
.jform_table td.ytext {
	width: 100px;
	padding-top: 10px;
	overflow: hidden;
}
.jform_table td.ybox {
	width: 385px;
	padding-top: 10px;
	overflow: hidden;
	color: #ff0000;
}
.jform_table td.yatext {
	width: 100px;
	padding-top: 10px;
	overflow: hidden;
}
.jform_table td.yabox {
	width: 870px;
	padding-top: 10px;
	overflow: hidden;
	color: #ff0000;
}
.jform_table td.yctext {
	width: 100px;
	padding-top: 10px;
	overflow: hidden;
}
.jform_table td.ycbox {
	width: 870px;
	padding-top: 10px;
	overflow: hidden;
}
.jform_table td.ycbox td {
	color: #777777;
	font-size: 12px;
	text-align: left;
	line-height: 20px;
	vertical-align: middle;
}
.jform_table td.ydtext {
	width: 100px;
	padding-top: 10px;
	overflow: hidden;
}
.jform_table td.ydbox {
	width: 870px;
	padding-top: 10px;
	overflow: hidden;
}
.jform_table td.ybtext {
	width: 100px;
	padding-top: 20px;
	overflow: hidden;
}
.jform_table td.ybbox {
	width: 870px;
	padding-top: 20px;
	overflow: hidden;
}

@charset "utf-8";
/*--------------------------------------------------------------
*Filename:flexslider.css
---------------------------------------------------------------*/ 
/* Browser Resets */
.flex-container a:active, .flexslider a:active {
	outline: none;
}
.slides, .flex-control-nav, .flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}
/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {
	width: 100%;
	margin: 0;
	padding: 0;
}
.flexslider .slides > li {
	display: none;
} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
	max-width: 100%;
	display: block;
}
.flex-pauseplay span {
	text-transform: capitalize;
}
/* Clearfix for the .slides element */
.slides:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
html[xmlns] .slides {
	display: block;
}
* html .slides {
	height: 1%;
}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
	display: block;
}
/* FlexSlider Default Theme
*********************************/
.flexslider {
	position: relative;
	left: 0px;
	right: 0px;
	zoom: 1;
	display: block;
	width: 100%;
	text-align: center;
}
.flexslider .slides {
	zoom: 1;
}
.flexslider .slides > li {
	position: relative;
	text-align: center;
}
.flexslider .slides > li >p {
	display: block;
	width: 100%;
}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {
	zoom: 1;
	position: relative;
}
/* Caption style */
/* IE rgba() hack */
.flex-caption {
	display: none;
	width: 100%;
	overflow: hidden;
}
/* Direction Nav */
.flex-direction-nav li a {
	position: absolute;
	top: 40%;
	display: none;
	width: 40px;
	height: 40px;
	/*background: url(/2014/plugin/flexslider/images/bg_direction_nav.png) no-repeat 0 0;*/
	cursor: pointer;
	text-indent: -9999px;
}
.flex-direction-nav li .next {
	background-position: -40px 0;
	right: 0px;
}
.flex-direction-nav li .prev {
	left: 0px;
}
.flex-direction-nav li .disabled {
	-moz-opacity: 0.5; /*FF*/
	opacity: 0.5; /* Firefox,Safari(WebKit),Opera)*/
	filter: "alpha(opacity=50)"; /* IE 8 */
	filter: alpha(opacity=50);  /* IE 4-7 */
	zoom: 1;
	cursor: default;
}
/* Control Nav */
.flex-control-nav {
	position: absolute;
	bottom: 15px;
	left: 50%;
	margin-left: -20px;
	text-align: center;
}
.flex-control-nav li {
	display: inline-block;
	zoom: 1;
}
.flex-control-nav li:first-child {
	margin: 0;
}
.flex-control-nav li a {
	display: block;
	width: 20px;
	height: 20px;
	background: url(/2014/plugin/flexslider/images/bg_control_nav.png) no-repeat top;
	font-size: 0px;
	text-indent: -9999px;
}
.flex-control-nav li a:hover {
	background: url(/2014/plugin/flexslider/images/bg_control_nav.png) no-repeat bottom;
}
.flex-control-nav li a.active {
	background: url(/2014/plugin/flexslider/images/bg_control_nav.png) no-repeat bottom;
}




