/* CSS Document */
/* css リセット	*/
*{
	margin: 0;
	padding: 0;
}
li{
	list-style: none;
}



h1,h2,h3,p, input, textarea, select{
	font-size: 100%;
	font-weight: none;
}

img{
	border: 0;
	vertical-align: bottom;
}

/* link etc */
a{
	color: black;
}

a:hover{
	text-decoration:none;
	color: #CCC;	
}

/* common */

body {
	color:#333;
	font-size:small;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* layout */
#wrapper{
	width:1000px;
	margin: 0 auto;
}
#header {
	width:1000px;
	height:100px;
	background:gray;
}
#content {
	width:1000px;
	/*height:1200px;*/
	margin:10px 0;
}
#footer {
	clear:both;
	width: 1000px;
	
	height: 30px;
	padding-top:10px;
	background-color:black;
    text-align:center;
	color:white;
}
/* end layout */

/* header */
#header h1 {
	width:300px;
	height:80px;
	margin:10px;
	background-color:white;
	float: left;
	display:inline;
}
#header #navi {
	margin:10px;
	margin-left: 60px;
	float: left;
	display: inline;
}
#header #navi a {
	color:white;
}
#header #navi ul li {
	font-size:16px;
	margin-right: 20px;
	float: left;
	display: inline;
	font-weight: bold;
}


