*{
	color: black;
	font-size: 100%;
	margin: 0;
	padding: 0;
}
body {
	background: #ffcccc;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 150%;
}
/*--------------------------------------
 Text Module
---------------------------------------*/

p,
pre,
address,
cite {
	font-size: 90%;
	margin: 1em 1em 0.7em 1em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: normal;
	line-height: 130%;
	margin: 1em;
}

h1 {
 font-size: 170%;
}

h2 {
 font-size: 130%;
}

h3 {
 font-size: 110%;
}

h4 {
	font-size: 100%;
}

h5 {
 font-size: 80%;
}

h6 {
 font-size: 80%;
}


pre {
  width: auto;
  _width: 90%; /*for IE*/
  overflow: auto;
  font-size: 75%;
  letter-spacing: 1px;
  color: #3d4263;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  padding: 8px 16px;
}


blockquote {
  display: block;
  background-color: #eaeeef;
  border-top: 1px solid #b9c3c8;
  border-left: 1px solid #b9c3c8;
  margin: 0.8em 24px;
  padding: 1px;
}

cite {
  display: block;
  color: #333333;
  font-style: normal;
  text-align: right;
}

em {
  font-style: normal;
}

strong {
  font-style: normal;
}


/*--------------------------------------
  Hypertext Module
---------------------------------------*/

a {
	color: #0033CC;
	text-decoration:none;
	border-bottom: 1px #0033CC solid;
}

a:link {
	color: #0033CC;
	text-decoration:none;
	border-bottom: 1px #0033CC solid;
}

a:hover {
	color: #b83800;
	text-decoration:none;
	border-bottom: 1px #b83800 solid;
}

/*--------------------------------------
  List Module
---------------------------------------*/

ul,
ol,
dl {
	margin: 10px 1em 1em 3em;
	padding: 0;
	font-size: 90%;
	list-style-position: outside;
}


li,
dt,
dd {
}
dt {
}

dd {
}

li li,
li p,
li pre,
li dt,
li dd,
dd li,
dd p,
dd pre,
dd dt,
dd dd {
  font-size:100%;
}

↑入れ子になった時に、文字の大きさを元に戻す。
li * {font-size: 100%}がIEだと効かないからこんなに面倒。
/*--------------------------------------
  Forms Module
---------------------------------------*/
/*--------------------------------------
  Tables Module
---------------------------------------*/

table {
  background-color: #f5f5f5;
  border-width: 1px;
  border-style: solid;
  border-color: #c1ced4 #97a4aa #97a4aa #c1ced4;
  margin: 0.5em 1em;
}

td,
th {
  font-size: 75%;
  color: white;
  padding : 0.1em 8px;
}


th {
  font-weight: normal;
  color: #536066;
  background-color: #f5f5f5;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #d2d2d2;
}

td {
  color: #2d3b4e;
  background-color: white;
  border-width: 1px;
  border-style: solid;
  border-color: white #bfc3c4 #bfc3c4 white;
}

/*--------------------------------------
  Image Module
---------------------------------------*/

img {
  vertical-align: bottom;
}



