/** 显示 **/
.dn { display:none; }
.db { display:block; }
.di { display:inline-block; }

/** 浮动 **/
.l { float:left; }
.r { float:right; }
.cl { clear:both; }
.clearfix { *zoom:1; }
.clearfix:after {
	display:block;
	clear:both; content:'clear';
	height:0; overflow:hidden;
}
/** 宽度 **/
.w40 { width:40px; }

/** 文字位置 **/
.tl { text-align:left; }
.tr { text-align:right; }
.tc { text-align:center; }

/** 文字颜色 **/
.c0 { color:#000; } /* black */
.r0 { color:#f00; } /* red */
.g0 { color:#0f0; } /* green */
.b0 { color:#00f; } /* blue */
.cfff { color:#fff; }

/** 文字样式 **/
.b { font-weight:bold; }
.fwN { font-weight:normal; }

/** 文字大小 **/
.f12 { font-size:12px; }
.f14 { font-size:14px; }
.f16 { font-size:16px; }
.f18 { font-size:18px; }


/** 鼠标样式 **/
.cur { cursor:pointer; }