@charset "UTF-8"

body { color: black; margin-top: 40px; margin-left: 20px; }

*{
  margin:0;
  padding:0;
  zoom:1;
} 

html{
  height:100%;
}
html>/**/body{
  overflow:-moz-scrollbars-vertical;
}
html:first-child body{
  min-height:100%;
  padding-bottom:1px;
} 

/*テーブル関連 table、th、td、caption の初期化*/

table{ border-style: none; border-collapse:collapse;	/*IEでも1pxのborderになるように*/
  border-spacing:0; }
th,td{ vertical-align:top; font-weight:normal; text-align:left;	/*テキストの行揃え、thの太字表示を指定*/
}
caption{
  text-align:left;	/*テキストの行揃え*/
} 

/*リスト関連 ul、ol、dlの初期化*/

ul,ol,dl{
  list-style:none;
}
li{
  display:list-item;
  zoom:normal;
} 

/*画像・オブジェクト関連、img、object、embedの初期化*/

img,a img{
  vertical-align:bottom;
  border:none;
  background:transparent;
}
object,embed{
  vertical-align:top;
} 

/*フォーム関連、fieldset、input、textarea初期化*/

fieldset{
  border:none;
}
input,textarea{
  font-size:1em;
} 

/*テキスト関連の初期化*/

em,address,dfn{
  font-style:normal;
}
ul ul,ul dl,dl ul,table p,table ul,table table{
  font-size:1em;
} 

/*その他の初期化*/

hr{
  height:0px;
  margin:7px 0;
  border:none;
  border-top:1px solid #000;
}
* html hr{/* for -IE6 */
  margin:0;
}
*:first-child+html hr{/* for IE7 */
  margin:0;
} 
