@charset "UTF-8";
/* CSS Document */

/*-----------------------

初期化

--------------------------*/
 

img {
   border:0;
   /*vertical-align:bottom;*/
}
 
html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address, ul, ol, li, dl, dt, dd,
table, th, td, form, fieldset {
   margin:0;
   padding:0;
}

/*-----------------

フォントのスタイルとウェイト

------------------*/

address,caption,cite,code,dfn,em,strong,th,var {
    font-style:normal;
	font-weight:normal;
}

/*-----------------

リストスタイルの消去

------------------*/

ul li {
	list-style:none;
}


/*------------------

Firefoxのスクロールバー対策

-------------------*/

html {
	overflow: scroll;
	overflow: -moz-scrollbars-vertical;
	overflow-x: scroll;
}

/*-----------------

IE7hasLayout問題を解決

----------------------*/


*:first-child+html * {
	letter-spacing: 0;
}

/*-----------------

テーブルセルのボーダーの設定

----------------------*/

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*-----------------

画像とフォームパーツの上下位置をテキストの真ん中に

----------------------*/

img, input, select, textarea {
	vertical-align: middle;
}

/*-----------------

ラジオボタンとチェックボックスの上下位置をテキストの真ん中に

追記:17/Sep/2012

----------------------*/

input[type="checkbox"],  
input[type="radio"] {  
	vertical-align:baseline;
} 


/*-----------------------

HTML5のインライン要素をブロック化

--------------------------*/

section, nav, article, aside, hgroup, header, footer, figure, figcaption, summary {
	display:block;
}