/*
KISSY CSS Reset
理念：清除和重置是紧密不可分的
特色：1.适应中文 2.基于最新主流浏览器
维护：玉伯(lifesinger@gmail.com), 正淳(ragecarrier@gmail.com)
*/

/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td, form { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}

/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

h1 { font-size: 18px; /* 18px / 12px = 1.5 */ }
h2 { font-size: 16px; }
h3 { font-size: 14px; }
h4, h5, h6 { font-size: 100%; }

address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */

/* 重置列表元素 */
ul, li, ol { list-style: none; }

/* 重置文本格式元素 */
a { text-decoration: none; cursor: pointer;}
a:hover { text-decoration: none; }

abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before, q:after { content: ''; }

/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: none; } /* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}

.fl{ display: inline; float: left;}
.fr{ display: inline; float: right;}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
/*html { overflow-y: scroll; }*/

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    font-size:0;
}
.clearfix { *zoom:1;}

/* chrome input自动填充黄色背景 */
input:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px white inset;}

@font-face {
    font-family: 'ErasDemiITC';
    src: url('font/ErasDemiITC.eot');
    src: local('Eras Demi ITC'),
    local('fontName'),
    url('font/ErasDemiITC.woff') format('woff'),
    url('font/ErasDemiITC.ttf') format('truetype'),
    url('font/ErasDemiITC.svg#fontName') format('svg');
}

/*
@font-face {
    font-family: 'Impact';
    src: url('font/impact.eot');
    src: local('Eras Demi ITC'),
    local('fontName'),
    url('font/impact.woff') format('woff'),
    url('font/impact.ttf') format('truetype'),
    url('font/impact.svg#fontName') format('svg');
}*/



/*
KISSY CSS Reset
理念：清除和重置是紧密不可分的
特色：1.适应中文 2.基于最新主流浏览器
维护：玉伯(lifesinger@gmail.com), 正淳(ragecarrier@gmail.com)
*/

/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td, form, iframe{ /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}

h1 { font-size: 18px; /* 18px / 12px = 1.5 */ }
h2 { font-size: 16px; }
h3 { font-size: 14px; }
h4, h5, h6 { font-size: 100%; }

address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */

/* 重置列表元素 */
ul, li, ol { list-style: none; }

/* 重置文本格式元素 */
a { text-decoration: none; cursor: pointer;}
a:hover { text-decoration: none; }
a:active { background: transparent;}

abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before, q:after { content: ''; }

/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: none; } /* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}

.fl{ display: inline; float: left;}
.fr{ display: inline; float: right;}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
/*html { overflow-y: scroll; }*/
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    font-size:0;
}
.clearfix { *zoom:1;}

/* chrome input自动填充黄色背景 */
.page{ width: 100%; height: 40px; line-height: 40px; overflow: hidden; text-align: center; padding: 20px 0; vertical-align: top;}
.page a,.page span,.page .page-go{ display: inline-block; width: 38px; height: 38px; line-height: 38px; font-weight:bold; color: #4a4a4a; background:none;font-size: 16px; margin: 0 5px; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border: solid 1px #000000; vertical-align: top;}
.page a:hover,.page a.cur{ color: #ffffff; background-color: #d0021b; border: solid 1px #d0021b;}
.page .page-prev,.page .page-next{ width: 48px;}
.page span{ width: auto; border: 0; color: #000000; font-weight:bold; margin-left: 36px;}
.page form{ display: inline-block; vertical-align: top;}
.page .pageNum{ display: inline-block; width: 48px; height: 20px; line-height: 20px; padding: 8px 0; text-align: center; border: solid 1px #4a4a4a; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; font-size: 20px; background-color: transparent; vertical-align: top;}
.page .page-go{ cursor: pointer;}
.page input:focus{ outline: none;}
#nav_monkey{background:url(../image/nav_monkey_bg.png) repeat-x;width:1120px;height:100px; margin:0 auto; padding:0px 50px 0px 80px;overflow:hidden;}
#nav_monkey ul{width:1100px;height:34px;line-height:34px;margin-top:35px;margin-left:25px;}
#nav_monkey ul a{background:url(../image/green_l.png) no-repeat;height:34px;line-height:34px;margin-right:30px; color:#ffffff; font-size:18px;display:inline-block;}
#nav_monkey ul a span{display:inline-block;background:url(../image/greenr_bg.png) no-repeat right center;height:34px;line-height:34px;margin-left:6px; margin-left:10px; padding-left:5px;padding-right:15px;}
#nav_monkey ul a:hover{background:url(../image/red_l.png) no-repeat;}
#nav_monkey ul a:hover span{background:url(../image/redr_bg.png) no-repeat right center;}
#nav_monkey ul a.navit{background:url(../image/red_l.png) no-repeat;}
#nav_monkey ul a.navit span{background:url(../image/redr_bg.png) no-repeat right center;}
#banner_one{ width:1250px; height:565px; overflow:hidden; margin:0 auto;}
.monkey_bg{ width:1250px; margin:0 auto;background:url(../image/monkey_bg.png) no-repeat bottom center; padding-bottom:171px;overflow:hidden;}
.monkey_index{width:1250px; margin:0 auto;background:url(../image/monkey_bg.png) no-repeat bottom center; padding-bottom:154px;overflow:hidden;}
.monkey_twenty{ width:1250px; margin:0 auto;background:url(../image/monkey_bg.png) no-repeat bottom center; padding-bottom:151px;overflow:hidden;}
#foot{width:1185px;height:88px; margin:0 auto;position:relative;padding-left:65px;padding-top:50px;background:url(../image/foot_bg.png) repeat-x;}
#foot p{height:24px;color:#ffffff;font-weight:bold; margin-bottom:2px; font-family:"黑体"; overflow:hidden;}
#foot p span{padding:0px 2px;}
#foot p a{padding:0px 2px;color:#ffffff;}
#foot .kite{position:absolute;top:-343px;z-index:99;right:60px; background:url(../image/fengzeng.png) no-repeat;width:129px;height:342px;}

















