﻿/*
    Copyright (C) 2009 ColorCyberWay
    All rights reserved
    General style for entire site
*/


/***** CSS Reset *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


/***** General *****/
/*
html{
    filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}
*/
body {
    text-align: center;
    color: #333333;    
    font: normal 12px Arial, Helvetica, sans-serif, "微软雅黑", "宋体";
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: #3399cb;
}

a:hover {
    background: #3399cb;
    color: #ffffff;
}

label, button {
    cursor: pointer
}

.clear {
    clear: both;
    font-size: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */


/***** Layout *****/

.wrapper {
    width: 960px;
    text-align: left;
    margin: 0 auto;
}

.wrapper .header {
    height: 40px;
    margin: 20px 20px 0;
    _display: inline;
}

.wrapper .nav {
    width: 160px;
    float: left;
    margin: 0 0 0 25px;
    _display: inline;
}

.wrapper .content {
    width: 746px;
    float: right;
    margin: 5px 20px 0 0;
    _overflow: hidden;
    _display: inline;
}

.wrapper .footer {
    float: right;
    width: 700px;
    text-align: right;
    padding: 10px 25px 20px 0;
    color: #999999;
}


/***** Header *****/

.header h1 {
    float: left;
}

.header h1 a {
    width: 155px;
    height: 32px;
    display: block;
    background: url(../image/logo.png) no-repeat 0 0;
    text-indent: -999px;
    float: left;
}

.header h1 a:hover {
    background: url(../image/logo.png) no-repeat 0 0;
}

.header .quotation {
    width: 746px;
    height: 40px;
    float: right;
    background: url(../image/quotation-bg.png) no-repeat 0 0;
    position: relative;
}

.quotation .quotation-icon {
    width: 45px;
    height: 50px;
    background: url(../image/quotation-head.jpg) no-repeat 0 0;
    position: absolute;
    top: -20px;
    left: 10px;
    z-index: 1001;
    cursor: none;
}

.ie .quotation .quotation-icon {
    cursor: url(/ccwweb/assets/image/s.cur), crosshair;
}

.quotation .quotation-content {
    float: left;
    padding: 10px 0 10px 60px;
    display: none;
    color: #666666;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    top: 10px;
    z-index: 1000;
    cursor: default;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: ignore;
}

.quotation .quotation-content .date {
    color: #999999;
    font-family: Verdana;
    font-size: 10px;
    margin-left: 5px;
}

.quotation-cursor {
    width: 64px;
    height: 32px;
    position: absolute;
    display: none;
    background: url(../image/quotation-cursor.png) no-repeat right top;
    z-index: 1002;
    cursor: none;
}

.ie .quotation-cursor {
    cursor: url(/ccwweb/assets/image/s.cur), crosshair;
}

/***** Navigation *****/

.nav h2 {
    padding: 25px 0 5px;
    font-size: 14px;
    font-weight: bold;
}

.nav h2 a {
    color: #333333;
}

.nav h2 a:hover,
.nav h2 a.current {
    color: #cc0000;
    background: none;
}

.nav .nav-list {
    width: 132px;
}

.nav-list li {
    padding: 5px 0 5px 18px;
    border-bottom: 1px solid #cccccc;
    background: url(../image/list-icon-arrow.gif) no-repeat 0 4px;
}

.nav-list li a {
    font-weight: bold;
    color: #666666;
}

.nav-list li a:hover,
.nav-list li a.current {
    color: #cc0000;
    background: none;
}

.nav-list li.expand {
    background: url(../image/list-icon-varrow.gif) no-repeat 0 4px;
}

.nav-list .sub-nav-list {
    margin-top: 5px;
}

.nav-list .sub-nav-list li {
    padding-left: 10px;
    border-bottom: none;
    background: url(../image/list-icon-hline.gif) no-repeat 0 11px;
}

.nav .meta-list {
    width: 125px;
    margin-top: 40px;
}

.meta-list li {
    padding: 5px 0 5px 20px;
    border-bottom: 1px solid #cccccc;
    background: url(../image/list-icon-arrow.gif) no-repeat 0 4px;
}

.meta-list li a {
    font-weight: bold;
    color: #666666;
}

.meta-list li a:hover,
.meta-list li a.current {
    color: #cc0000;
    background: none;
}

.nav .info {
    padding-top: 40px;
    color: #666666
    line-height: 1.5;
}

/***** Content *****/

.content .content-top {
    height: 10px;
    font-size: 0px;
    background: url(../image/content-top-bg.png) no-repeat 0 0;
}

.content .content-middle {
    background: url(../image/content-middle-bg.png) repeat-y 0 0;
    padding: 10px 20px 30px;
    position: relative;
}

.content .content-bottom {
    height: 10px;
    font-size: 0px;
    background: url(../image/content-bottom-bg.png) no-repeat 0 0;
}

.content h3 {
    margin: 10px 0 0 0;
    padding: 2px 0 1px 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    color: #f18c0f;
}

.content .intro-img {
    width: 765px;
    height: 210px;
    margin-top: 20px;
    position: relative;
    top: 0;
    left: -29px;
}

.content .intro {
    margin: 8px 0 0 0;
    padding: 0 0 0 3px;
    color: #999999;
    font-size: 14px;
    line-height: 1.5;
}

.content p {
    padding: 5px 0;
    line-height: 1.5;
}

.content h4 {
    margin: 30px 0 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: #f18c0f;
}


