@CHARSET "UTF-8";
*{
	margin:0;
	padding:0; 
	list-style:none;
}
body {
	font-family: Arial, "微软雅黑", "宋体", sans-serif;
	font-size: 13px;
}
/*  去除IE下的X */
input::-ms-clear{
	display:none;
}
/* 去除chrome textarea可以变大小*/
textarea{
	resize:none;
}
/* 去除chrome 输入框的蓝边框*/
input,textarea{
	outline:none;
}
input,label,textarea,button,fieldset,legend {
	/* 	font-family: Arial, "微软雅黑", "宋体", sans-serif; */
	font-size: 13px;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

form {
	margin: 0;
}

.clearfix {
	clear: both;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track, ::-webkit-scrollbar-corner {
    background: #F6F6F6;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #CCC;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #CCC;
}

.input-text {
	width: 300px;
	height: 24px;
	line-height: 24px;
	border: 1px solid #CCC;
	background-color: #FCFCFC;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	border-radius: 2px;
	padding: 0 5px;
	vertical-align: middle;
}

.input-textarea {
	width: 300px;
	height: 48px;
	line-height: 24px;
	overflow: auto;
	border: 1px solid #CCC;
	background-color: #FCFCFC;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	border-radius: 2px;
	padding: 0px 5px;
}

.disabled,.readonly {
	background-color: #F0F0F0;
	color: #AAA;
	text-shadow: 0 1px 0 #fff;
}
.disabled input{
	background-color: #F0F0F0;
}