﻿/*
	http://meyerweb.com/eric/tools/css/reset/
	v2.0 | 20110126
	License: none (public domain)
*/
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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video
{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/*
	HTML5 display-role reset for older browsers
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section
{
    display: block
}
body
{
    line-height: 1
}
ol,
ul
{
    list-style: none
}
blockquote,
q
{
    quotes: none
}
blockquote:before,
blockquote:after,
q:before,
q:after
{
    content: '';
    content: none;
}
table
{
    border-collapse: collapse;
    border-spacing: 0;
}
/*
	2013-5-7 添加以下部分
*/
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
table,
td,
tr,
th,
span
{
    font-family: 'Courier New', "微软雅黑", "Microsoft Yahei", 宋体, Courier, monospace;
}
img
{
    border: none
}
input,
textarea
{
    outline: none
}
/*
	鼠标全选文字背景变色
	仅支持现代浏览器
 */
 /*
::selection
{
    background: #333;
    color: #fff;
}
::-moz-selection
{
    background: #333;
    color: #fff;
}
*/
/*
	浏览器滚动条样式
	仅支持现代浏览器
*/
/*滚动条整体部分*/
::-webkit-scrollbar
{
	overflow: visible;
	/*垂直滚动条*/
	height: 8px;
	/*水平滚动条*/
	width: 8px;
}
/*滚动条两端的按钮*/
::-webkit-scrollbar-button:vertical
{
    display: none;
}
/*外层轨道*/
::-webkit-scrollbar-track:vertical
{
    background-color: black
}
/*内层轨道，滚动条中间部分（除去）*/
::-webkit-scrollbar-track-piece
{
    background: #fff
}
/*滚动条里面可以拖动的那个*/
::-webkit-scrollbar-thumb:vertical
{
    background: #999;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:vertical:hover
{
    background: #333
}
/*边角*/
::-webkit-scrollbar-corner:vertical
{
    background: #535353
}
::-webkit-scrollbar-resizer:vertical
{
    background: #ff6e00
}
/*定义右下角拖动块的样式*/
::-webkit-resizer
{
	display: none;
}
/*
	更多詳細內容可以查閱
	http://www.qianduan.net/css-custom-scroll-bar-style.html
*/