@charset 'utf-8';

/*
名称：主样式表
维护：王文 wangwen1220#139.com
依赖：base.css
日期：2013-6-24
*/

/* Global
----------------------------------------------------------------------------- */
/* 默认文字和背景颜色 */
html {
  background: url(about:blank) fixed;
}
body {
  color: #000;
  font: 12px/1.5 'Simsun',Tahoma,arial;
  _word-wrap: break-word;
  background: #EAEAEA;
}

/* 链接样式 */
a, a:link {
  color: inherit;
  *color: #000;
}
a:hover, a:active {
  color: #0F8800;
}

/* 清除图片底部空白间隙 */
img {
  vertical-align: bottom;
}

/* 默认表单样式 */
input, textarea {
  color: #999;
}
input:focus, textarea:focus {
  color: #444;
}

/* 分割线：重定义 <hr /> 元素的样式，去除默认边距，定义 1px 高度实线样式 */
hr {
  display: block;
  /* clear: both; */
  *margin: -7px 0 -9px;
  height: 1px;
  border: none;
  color: #ddd;
  background: #ddd;
}
.hr-dash { /* 定义 1px 高度虚线样式的 <hr /> 元素 */
  height: 0;
  border-top: 1px dashed #ddd;
  color: transparent;
  background: transparent;
}
.hr-dot { /* 定义 1px 高度点样式的 <hr /> 元素 */
  height: 0;
  border-top: 1px dotted #ddd;
  color: transparent;
  background: transparent;
}
.hr2 { /* 定义 2px 高度实线样式的 <hr /> 元素 */
  height: 2px;
}
.hr3 { /* 定义 3px 高度实线样式的 <hr /> 元素 */
  height: 3px;
}

/* 排版 */
.highlight {
  color: #EAEAEA;
}
#w .f12 {
  font-size: 12px;
}
#w .f14 {
  font-size: 14px;
}
#w .mt0 {
  margin-top: 0;
}
#w .mt5 {
  margin-top: 5px;
}
#w .mt8 {
  margin-top: 8px;
}
#w .mt10 {
  margin-top: 10px;
}
#w .mt15 {
  margin-top: 15px;
}
#w .mt20 {
  margin-top: 20px;
}
#w .mt30 {
  margin-top: 30px;
}
#w .mb0 {
  margin-bottom: 0;
}
#w .mb5 {
  margin-bottom: 5px;
}
#w .mb8 {
  margin-bottom: 8px;
}
#w .mb10 {
  margin-bottom: 10px;
}

/* TPL
----------------------------------------------------------------------------- */
/*
@name: w-cnt
@overview: 通用内容块样式
@require: null
*/
.w-cnt {
  margin: 0 auto;
  width: 960px;
}

/*
@name: w-box
@overview: 通用盒样式
@require: null
*/
.w-box {
  margin-bottom: 20px;
}
.w-box-hd {
  position: relative;
  border-bottom: 1px solid #E8E8E8;
  *zoom: 1;
}
.w-box-hd .title {
  margin-bottom: 10px;
  font: bold 16px/1 '宋体',arial;
  color: #0F8800;
}
.w-box-hd .link {
  position: absolute;
  right: 0;
  bottom: 5px;
  line-height: 1.2;
}
.w-box-hd .link a {
  color: #ED271F;
}

/*
@name: w-section
@overview: 段落样式
@require: null
*/
.w-section {
  margin: 10px 0 15px;
  line-height: 1.8;
  text-indent: 2em;
  font-size: 14px;
}
.w-section .more {
  margin-left: .5em;
  color: #0066CC;
}

/*
@name: w-title
@overview: 标题样式
@require: null
*/
.w-title {
  font-weight: bold;
  margin: 20px 0 5px;
  font-size: 16px;
}
.w-subtitle {
  font-weight: bold;
  margin: 20px 0 5px;
  font-size: 13px;
}

/*
@name: w-list
@overview: 列表样式
@require: null
*/
.w-list {
  margin: 10px 0;
  line-height: 1.8;
}
.w-list-item {
  margin-bottom: 5px;
  *zoom: 1;
}
.w-list-item .date {
  margin-left: 1em;
  color: #666;
}
.w-list-dot .w-list-item {
  padding-left: 14px;
  font-size: 14px;
  background: url(../img/icon-dot.png) no-repeat 0 10px;
}
.w-list-nowrap .w-list-item {
  height: 25px;
  line-height: 25px;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

/*
@name: w-sections
@overview: 文章样式
@require: null
*/
.w-sections {
  overflow: hidden;
}
.w-sections-item {
  position: relative;
  top: -1px;
  padding: 15px 0;
  border-top: 1px dotted #DDD;
  overflow: hidden;
  *zoom: 1;
}
.w-sections-item-img {
  float: left;
  width: 62px;
  overflow: hidden;
}
.w-sections-item-txt {
  margin-left: 72px;
}
.w-sections-item-txt .title {
  font-weight: bold;
}
.w-sections-item-txt .cnt {
  line-height: 1.7;
  color: #666;
}
.w-sections-item-txt .download {
  color: #0066CC;
  text-decoration: underline;
}
.w-sections-item-txt .download:hover {
  *color: #0066CC;
  text-decoration: none;
}

/*
@name: w-article
@overview: 带图片和文字的文章
@require: null
*/
.w-article {
  padding: 15px 10px;
  border-bottom: 1px dotted #DDD;
  overflow: hidden;
  *zoom: 1;
}
.w-article img {
  float: left;
  border: 1px solid #eee;
}
.w-article p {
  margin-left: 95px;
  line-height: 2;
}
.w-article p .more {
  text-decoration: underline;
  color: #0066CC;
}
.w-article p .more:hover {
  text-decoration: none;
}
.w-article-odd {
  background: #FAFAFA;
}
.w-article-odd img {
  /* float: right; */
}
.w-article-odd p {
  /* margin: 0 205px 0 0; */
}

/*
@name: w-art
@overview: 文章样式
@require: null
*/
.w-art {
  padding: 15px 10px;
  border-bottom: 1px dotted #DDD;
  overflow: hidden;
  *zoom: 1;
}
.w-art .title {
  font-size: 14px;
  font-weight: bold;
}
.w-art .cnt {
  margin-top: 7px;
  line-height: 2;
}
.w-art .cnt .more {
  color: #EAEAEA;
}
.w-art .list {
  margin-top: 4px;
  color: #999;
  line-height: 2;
}

/*
@name: w-btn
@overview: 按钮样式
@require: null
*/
.w-btn {
  display: inline-block;
  text-indent: -9999px;
  *text-indent: 0;
  *font-size: 0;
  width: 190px;
  height: 50px;
  overflow: hidden;
  outline: none;
}
.w-btn-bm {
  background: url(../img/btn-bm.png) no-repeat;
}
.w-btn-zz {
  background: url(../img/btn-zz.png) no-repeat;
}

/*
@name: w-imglink
@overview: 图片链接样式
@require: null
*/
.w-imglink {
  overflow: hidden;
}
.w-imglink-item {
  position: relative;
  padding: 10px 0;
  top: -1px;
  border-top: 1px dashed #DDD;
}
.w-imglink-item a {
  display: block;
}
.w-imglink-item a:hover {
  padding-left: 2px;
}

/*
@name: w-table
@overview: 表格样式
@require: null
*/
.w-table {
  margin: 12px 0;
  width: 100%;
  _width: 99%;
  line-height: 20px;
}
.w-table tbody th,
.w-table tbody td {
  padding: 5px 10px 5px 15px;
  border: 1px solid #DDDDDD;
  vertical-align: middle;
  font-size: 14px;
  color: #000;
  background: #fff;
}
.w-table tbody th {
  font-weight: bold;
  background: #E4E4E4;
}
.w-table tbody th:first-child,
.w-table tbody td:first-child {
  padding: 5px 10px;
  text-align: center;
}
/*.w-table tbody td:hover {
  background: #f8f8f8;
}*/
.w-table ul {
  /*margin: 4px 0;*/
  line-height: 2;
}
.w-table tfoot td {
  padding: 15px 0;
  color: #333333;
}

/*
@name: w-imgtable
@overview: 图片表格样式
@require: null
*/
.w-imgtable {
  margin: 5px 0;
  width: 100%;
  line-height: 1.5;
}
.w-imgtable th,
.w-imgtable td {
  padding: .5em 1em;
  border: 1px solid #ddd;
  vertical-align: top;
}
.w-imgtable th,
.ui-box .thead td {
  font-weight: bold;
  color: #000;
}
.w-imgtable .img td {
  padding: .5em;
  text-align: center;
}
.w-imgtable td.txt {
  padding: .5em 1em;
}
.w-imgtable td.txt h4,
.w-imgtable td.txt h5 {
  font-weight: bold;
  color: #000;
  /* font-size: 14px; */
}
.w-imgtable td.txt h5 {
  margin-top: 8px;
}
.w-imgtable td.txt h5 em {
  font-weight: bold;
  color: #FF7E16;
}
.w-imgtable td.txt p {
  margin: 8px 0 0;
}
.w-imgtable td.img {
  padding: .5em;
  text-align: center;
  vertical-align: top;
}

/*
@name: w-switchable
@overview: 焦点图样式
@require: jquery-switchable
*/
.w-switchable {
  margin-bottom: 20px;
  overflow: hidden;
  *zoom: 1;
  /*background: #fff;*/
}
.w-switchable-slide {
  position: relative;
  float: left;
  width: 520px;
  height: 325px;
  overflow: hidden;
}
.w-switchable-slide-item {
  position: absolute;
}
.w-switchable-slide .active {
  z-index: 1;
}
.w-switchable-slide-item .img,
.w-switchable-slide-item img {
  display: block;
  width: 520px;
  height: 325px;
}
.w-switchable-slide-item .title {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  font: 18px/40px '微软雅黑','黑体','宋体',arial;
  color: #fff;
  text-indent: 1em;
  filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#7F000000', endColorstr='#7F000000');
  background: rgba(0,0,0,0.5);
}
.w-switchable-slide-item .title a {
  color: #fff;
}
.w-switchable-trigger {
  float: right;
}
.w-switchable-trigger li {
  margin-bottom: 10px;
  /* *margin-bottom: 5px; */
}
.w-switchable-trigger img {
  display: block;
  width: 130px;
  height: 57px;
  filter: alpha(opacity=60);
  opacity: .6;
  cursor: pointer;
}
.w-switchable-trigger .active img {
  filter: alpha(opacity=100);
  opacity: 1;
}

/* Layout
----------------------------------------------------------------------------- */
/** 页眉 **/
#header {
  position: relative;
}
#header .topbar {
  height: 32px;
  line-height: 32px;
  background: #F5F5F5 url(../img/bg-topbar.png) repeat-x;
}
#header .topbar .menu {
  float: left;
  display: inline;
}
#header .topbar .menu-item {
  float: left;
  display: inline;
  margin-right: 4px;
  _margin-right: 2px;
  color: #444;
}
#header .topbar .menu-item.home a {
  display: inline-block;
  padding-top: 34px;
  width: 70px;
  height: 0;
  overflow: hidden;
  background: url(../img/logo-ofw-mini.png) no-repeat 0 2px;
  vertical-align: middle;
  *vertical-align: -2px;
}
#header .topbar .menu-item a {
  margin-right: 4px;
  color: #1E376D;
}
#header .topbar .menu-user {
  float: right;
}
#header .topbar .menu-user .menu-item {
  margin-right: 0;
  margin-left: 4px;
  _margin-left: 2px;
}
#header .topbar .menu-user .menu-item a {
  margin-left: 0;
  margin-right: 4px;
}
#logininfo a {
  color: #1E376D;
}
#header .banner {
  height: 407px;
  background: url(../img/bg-banner.jpg) no-repeat center bottom;
}

/** 内容 **/
#content {
  position: relative;
  padding: 0 0 20px;
  background: #fff;
  overflow: hidden;
  background: #F7F7F7 url(../img/bg-content.png) repeat-y;
}
#content.w-cnt-show {
  top: -71px;
  margin-bottom: -71px;
}
#content.w-cnt-show .w-box-hd {
  border: none;
}
#content.w-cnt-show .w-box-hd .title {
  font-size: 20px;
  margin-bottom: 20px;
}
#content .position {
  margin: -10px 20px 20px;
}
#content .position a {
  color: #000;
}
#content .position .home {
  padding-left: 15px;
  background: url(../img/icon-home.png) no-repeat 0 50%;
}
#content .position span {
  margin: 0 .3em;
  color: #444;
  font-family: sans-serif;
}
#content .position em {
  color: #C03F10;
}

/*side*/
#content .side {
  float: left;
  width: 250px;
}
#content .side .w-box-hd {
  padding: 0 10px;
}
#content .side .w-box-hd .title {
  font-size: 15px;
}
#content .side .w-box-bd {
  padding: 0 10px 0 25px;
}
#content .side .w-box-bd {
  padding: 0 10px 0 25px;
}
#content .side .w-list-item {
  font-size: 14px;
  color: #333;
}
#content .side .w-list-item a {
  color: #333;
}
#content .side .w-box-hwll {
  /*margin-top: 30px;*/
}
#content .side .w-box-hwll .w-list-item {
  line-height: 1.4;
  color: #000;
}
#content .side .w-box-hwll .hr-dot {
  margin: 20px 0;
  border-color: #E8E8E8
}
#content .side .w-box-wb .w-box-bd {
  padding: 0 10px;
}

/*main*/
#content .main {
  margin: 0 20px 0 271px;
}
#content .main .btntitle,
#content .main .vbtntitle {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  line-height: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #2D1562;
  background: #F4DF0F;
}
#content .main .btntitle {
  margin: 20px 0 10px;
  padding: 0 18px 0 5px;
  height: 20px;
  background: #F4DF0F url(../img/bg-btntitle.png) right center no-repeat;
}
#content .main .vbtntitle {
  padding: 3px 0 18px;
  width: 20px;
  text-align: center;
  background: #F4DF0F url(../img/bg-vbtntitle.png) center bottom no-repeat;
}
#content .main .w-box-hd {
  padding: 0 20px;
  height: 35px;
  line-height: 35;
  border: none;
  background: #0F8800 url(../img/bg-w-box-hd.png) 0 50% no-repeat;
}
#content .main .w-box-hd span {
  font-size: 14px;
  color: #f4f4f4;
}
#content .main .w-box-hd .title {
  margin: 0;
  font: 20px/35px '微软雅黑','黑体';
  color: #fff;
}
#content .main .w-box-bd a[href^='mailto:'] {
  color: #0066D8;
  text-decoration: underline;
}
#content .main .w-box-bd .txt {
  margin: 5px 0;
  line-height: 1.6;
  font-size: 14px;
}
#content .main .w-box-topic .topic-item {
  position: relative;
}
#content .main .w-box-topic .topic-item .title {
  margin: 25px 0 0 14px;
  font: 16px '黑体';
}
#content .main .w-box-topic .topic-title {
  position: absolute;
  left: 10px;
  top: 20px;
}
#content .main .w-box-topic .w-list {
  /* margin: 15px 0 0 38px; */
  margin: 8px 0 0 0;
}
#content .main .w-btn-wrapper {
  margin: 100px 0 30px;
  text-align: center;
  overflow: hidden;
  *zoom: 1;
}
#content .main .w-btn-wrapper .w-btn {
  margin: 0 25px;
}

/* 注册页收费提示 */
#content .main .regtips .title {
  height: 144px;
  text-indent: -9999px;
  background: url(../img/regtips-title.png) no-repeat center center;
}
#content .main .regtips .tips {
  padding: 10px 20px;
  font: bold 16px/1 '微软雅黑','黑体';
  color: #222;
  background: #FFEAD3;
}
#content .main .regtips .tips ul {
  margin-top: 15px;
  color: #414141;
  font-size: 13px;
}
#content .main .regtips .tips li {
  line-height: 24px;
}
#content .main .regtips .tips li i {
  color: #CC0001;
  font-style: normal;
  font-size: 17px;
}
#content .main .regtips .button {
  margin: 55px 0;
  text-align: center;
}
#content .main .regtips .button a {
  display: inline-block;
  margin: 0 25px;
  width: 132px;
  height: 46px;
  overflow: hidden;
  text-indent: -9999px;
  *text-indent: 0;
  *font-size: 0;
  background: url(../img/regtips-btn-agree.png) no-repeat;
}
#content .main .regtips .button a.disagree {
  background-image: url(../img/regtips-btn-disagree.png);
}

/** 导航 **/
#nav {
  position: absolute;
  z-index: 110;
  left: 15px;
  /*left: 5%;*/
  top: 430px;
  width: 110px;
  overflow: hidden;
  background: #329612;
  /* -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  box-shadow: 1px 1px 2px rgba(0,0,0,.2); */
}
#nav dl {
  padding: 0px 0 10px;
}
#nav dt,
#nav dd {
  /*text-align: center;*/
  color: #fff;
  font-size: 14px;
}
#nav dt {
  height: 32px;
  line-height: 32px;
  overflow: hidden;
  border-bottom: 1px solid #3DAB16;
}
#nav dd {
  display: none;
  margin-top: 10px;
  line-height: 1.2;
  font-size: 12px;
  /*text-indent: 1em;*/
}
#nav dl a {
  display: block;
  padding: 0 24px;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
#nav dt.fold a {
  background: url(../img/icon-plus.png) 90% 50% no-repeat;
  _background: url(../img/icon-plus-ie6.png) 90% 50% no-repeat;
}
#nav dt.unfold a {
  background: url(../img/icon-minus.png) 90% 50% no-repeat;
  _background: url(../img/icon-minus-ie6.png) 90% 50% no-repeat;
}
#nav dt.current a,
#nav dt a:hover {
  color: #FEEB2C;
  background-color: #267F0D;
}
#nav dd a:hover {
  text-decoration: underline;
}

/* 部分嘉宾介绍 */
.w-table-jb {
  border: 1px solid #ccc;
}
.w-table-jb tbody td {
  padding: 8px;
  border: 1px solid #ccc;
  line-height: 1.8;
  vertical-align: top;
  font-size: 12px;
}
.w-table-jb tbody td img {
  margin-bottom: 20px;
  width: 100px;
  height: auto;
}
.w-table-jb tbody td h4 {
  margin-top: 4px;
  text-align: center;
  font-weight: normal;
}
.w-table-jb tbody td h5 {
  margin-bottom: 4px;
  font-weight: bold;
  line-height: 1.2;
}
.w-table-jb tbody td p {
  margin: 0 0 5px;
  color: #333;
}

/* 部分特邀嘉宾及评委 */
.w-list-jb {
  margin: 5px -30px 15px 0;
  overflow: hidden;
  *zoom: 1;
}
.w-list-jb .w-list-item {
  float: left;
  margin: 10px 30px 0 0;
  _margin: 10px 21px 0 0;
  width: 140px;
  /*width: 145px;*/
  border: 1px solid #ddd;
  background: #fff;
}
.w-list-jb .w-list-item .photo {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.w-list-jb .w-list-item .photo a {
  display: block;
  /* width: 100px; */
  height: 120px;
  overflow: hidden;
  vertical-align: bottom;
}
.w-list-jb .w-list-item .photo img {
  /* margin-left: -5px; */
  width: auto;
  height: 100%;
}
.w-list-jb .w-list-item .txt {
  padding: 5px 10px;
}
.w-list-jb .w-list-item .txt .name a {
  color: #0066CC;
}
.w-list-jb .w-list-item .txt .intro {
  margin-top: 3px;
  height: 64px;
  line-height: 16px;
  overflow: hidden;
}

/** 页脚 **/
html .foot {
  border-top: 1px solid #ddd;
  background: #fff;
}
html #bottom {
  margin: 10px auto 0;
  overflow: hidden;
  text-align: left;
  width: 990px;
  font: 12px/1.5 \5b8b\4f53, arial;
}
#bottom .bottom-m {
  float: left;
  height: 33px;
  width: 988px;
  border: none;
  background: none;
}
#bottom .bottom-m-1 {
  height: 29px;
  line-height: 29px;
  text-align: center;
  width: 984px;
  border: none;
}
#bottom .bottom-m-1 a {
  color: #1a4991;
  text-decoration: none;
}
#bottom .bottom-m-1 a:hover {
  color: #cc0000;
  text-decoration: underline;
}
#bottom .bottom-2 {
  color: #666666;
  float: left;
  line-height: 25px;
  padding: 5px 0;
  text-align: center;
  width: 100%;
}
#bottom .bottom-2 a {
  color: #253751;
}
#bottom .bottom-110 {
  float: left;
  padding: 5px 0;
  text-align: center;
  width: 100%;
}

/** 弹窗 **/
.w-dialog {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 357px;
  height: 133px;
  overflow: hidden;
  background: url(../img/bg-dialog.png) no-repeat;
  _position: absolute;
  *left: 50%;
  *margin-left: -178px;
  *top: 50%;
  *margin-top: -66px;
  _top: 660px;
}
.w-dialog .closer {
  position: absolute;
  top: 15px;
  right: 12px;
  width: 17px;
  height: 17px;
}
.w-dialog .ok {
  position: absolute;
  bottom: 15px;
  right: 13px;
  width: 82px;
  height: 28px;
}
#overlay {
  display: none;
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: #000;
  opacity: .7;
  filter: alpha(opacity=70);
  _position: absolute;
  _width: 100%;
  _height: expression(document.body.clientHeight);
}

.wtxt {
  margin-bottom: 10px;
  font: 14px/1.7 'Simsun';
  color: #000;
}