@charset "utf-8";
/* CSS Document */

/* --------------------------------------------------------------

   typography.css
   * Sets up some sensible default typography.

-------------------------------------------------------------- */

/* Default font settings.
   The font-size percentage is of 16px. (0.75 * 16px = 12px)(0.875 * 16px = 14px) */

html{ font-size:100.01%;}
body {
	font:12px  \5B8B\4F53,\5FAE\8F6F\96C5\9ED1,Arial, Helvetica, sans-serif; color:#595959;
}/*默认中文字体为微软雅黑和宋体，行间距以倍数给，不要直接给数值，如有特殊情况，请单独列出*/

/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal;}

h1 { font-size: 3em;}
h2 { font-size: 2em;}
h3 { font-size: 1.5em;}
h4 { font-size: 1.2em;}
h5 { font-size: 1em;}
h6 { font-size: 1em;}

h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
  margin: 0;
}



/*Font Style
--------------------------------------------------------------*/
.fB{ font-weight:bold;}
.fnormal{ font-weight:normal;}

/*Text Link Color
--------------------------------------------------------------*/
.cRed,.cRed:link,.cRed:visited,.cRed:active{ color:#C00; text-decoration:none;}
.cRed:hover{ color:#C00; text-decoration:underline;}

/*Align-Text alignment effect
--------------------------------------------------------------*/
.aL{ text-align:left;}
.aC{ text-align:center;}
.aR{ text-align:right;}

/*First line indent
-------------------------------------------------------------*/
.f2em{ text-indent:2em;}

/*Block elements
--------------------------------------------------------------*/
.block{ display:block;}

