
ul { list-style-type: none;}
.li9 { display: inline-block; margin:0;margin-right:10px;margin-bottom:15px;}



input.labelauty + label
{
	display: table;
	font-size: 12px;
	padding-left: 1px;
	padding-right: 1px;
	background-color:;/*一般状态背景颜色*/
	color: #333333;/*一般状态下文字颜色*/
	cursor: pointer;
	border:1px solid #cccccc;/*一般状态边框颜色*/
}


/* When not Checked */
input.labelauty:not(:checked):not([disabled]) + label:hover
{
	background-color:;
	color: #333333;/*鼠标经过时的颜色*/
	border:1px solid #ff6600;/*鼠标经过时边框颜色*/
}
input.labelauty:not(:checked) + label > span.labelauty-checked-image
{
	display: none;
}

input.labelauty:not(:checked) + label > span.labelauty-checked
{
	display: none;
}

/* When Checked */
input.labelauty:checked + label
{
	background-color:;/*选中时的颜色*/
	color: #ff6600;
	border:1px solid #ff6600;/*选中时边框颜色*/
}

input.labelauty:checked:not([disabled]) + label:hover
{
	background-color: ;/*鼠标经过选中时的背景颜色*/
}
input.labelauty:checked + label > span.labelauty-unchecked-image
{
	display: none;
}

input.labelauty:checked + label > span.labelauty-unchecked
{
	display: none;
}

input.labelauty:checked + label > span.labelauty-checked
{
	display: inline-block;
}

input.labelauty.no-label:checked + label > span.labelauty-checked
{
	display: block;
}



/* When Disabled */
/*
input.labelauty[disabled] + label
{
	opacity: 0.5;
}
*/


/* Add a background to (un)checked images 添加项目图标要同时取消其jquery-labelauty.js中相应的image注释掉的4行*/

/*
input.labelauty + label > span.labelauty-unchecked-image
{
	background-image: url( ../images/input-unchecked.png );
}

input.labelauty + label > span.labelauty-checked-image
{
	background-image: url( ../images/input-checked.png );
}

*/