﻿body
{
	margin: 0;
	background-image: url(image/bg.png);
	background-attachment: fixed;
	font-family: verdana,tahoma,Arial, Helvetica, sans-serif;
}
div
{
	overflow: hidden;
}

#container
{
	margin-left: auto;
	margin-right:auto;
	width:900px;
}


#header
{
    margin: 0;
    padding: 0;
    background: #1B2024;
    font-size: 15px;
    color: #8F8F8F;
}

#whiteboard
{
	border-top-left-radius:0.5em;
	border-top-right-radius:0.5em;
	border-bottom-left-radius:0.5em;
	border-bottom-right-radius:0.5em;
	background-color:#FFFFFF;
	margin:auto;
	margin-bottom:20px;
	margin-top:-10px;
	width:777px;
	padding: 10px 46px 10px 20px;
	box-shadow:0 0 10px rgba(50, 50, 50, .1); 
	position:relative;	
}

#subtitle
{
	font-family:黑体;
	font-size:150%;
	font-weight:bold;
	color:white;
	width:auto; 
	display:inline-block;
	border-top-left-radius:0.5em;
	border-top-right-radius:0.5em;
	padding-left:30px;
	padding-right:30px;
	margin-left:50px;
	height:50px;
	background-color:#FFFFFF;
	box-shadow:0 0 10px rgba(50, 50, 50, .1); 
}

#title
{
    width: 800px;
    height: 120px;
    margin: 0 auto;
    padding: 0px 0px;
	background: url(image/logo.png) no-repeat bottom right;
}

#content
{
	margin: auto;
	width:900px;
}

#outter_list li ul
{
	list-style-image: url(image/paw.png);
}

#heading a:link,#left a:visited
{
	color:#72439c;
	padding-left:5px;
	padding-right:5px;
	font-size:120%;
}

#heading a:hover,#left a:active
{
	color:#FFFFFF;
	background-color:#FFBB11;
}

div.main>p
{
	text-indent: 1.5em;
}

div.main>h4
{
	text-indent: 1.5em;
}


#footer
{
	margin: 0;
    padding: 10px;
	height: 40px;
    background: #1B2024;
    font-size: 15px;
    color: #8F8F8F;
	font-size:70%;
	text-align:right;
	width:100%;
}

#toTop {
	display: block;
    text-decoration: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    overflow: hidden;
    width: 55px;
    height: 55px;
    border: none;
    text-indent: 100%;
    background: url(image/top-move2.png) no-repeat 0px 0px;
}

.ol-a li
{
	margin-bottom:5px;
}


/*
Pretty Table Styling
CSS Tricks also has a nice writeup: http://css-tricks.com/feature-table-design/
*/

.table-b table {
	overflow:hidden;
	border:1px solid #d3d3d3;
	background:#fefefe;
	width:70%;
	margin-top:20px;
	margin-bottom:20px;
	-moz-border-radius:5px; /* FF1+ */
	-webkit-border-radius:5px; /* Saf3-4 */
	border-radius:5px;
	-moz-box-shadow: 0 0 4px rgba(50, 50, 50, 0.2);
	-webkit-box-shadow: 0 0 4px rgba(50, 50, 50, 0.2);
}

.table-b th, td {padding:8px 8px 8px; text-align:center; }

.table-b th {padding-top:8px; background:#e8eaeb;}

.table-b td {border-top:1px solid #e0e0e0; border-right:1px solid #e0e0e0;}

.table-b tr:hover td {
    background: #e6f6f6;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;     
}  

.table-b tr.odd-row:hover td {
    background: #e0f0f0;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;     
}  

.table-b tr.odd-row td {background:#f6f6f6;}

/*
Background gradients are completely unnecessary but a neat effect.
*/

.table-b td {
	background: -moz-linear-gradient(100% 25% 90deg, #fefefe, #f9f9f9);
	background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f9f9f9), to(#fefefe));
}

.table-b tr.odd-row td {
	background: -moz-linear-gradient(100% 25% 90deg, #f6f6f6, #f1f1f1);
	background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f1f1f1), to(#f6f6f6));
}

.table-b th {
	background: -moz-linear-gradient(100% 20% 90deg, #e8eaeb, #ededed);
	background: -webkit-gradient(linear, 0% 0%, 0% 20%, from(#ededed), to(#e8eaeb));
}

