/* サイトの幅と分割時の幅 */
#wrapper{
	width: 1092px;
	margin: 0 auto;
}
#wrapperall{
	float : left ;
	width: 1092px;
}
#footer {
	text-align: center;
	margin: 25px 10px 5px 10px;
	border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #EEE;
	float : left ;
	width : 1092px ;
	}

/* サイトの基本情報 */
body {
	font-size: 14px;
	font-weight: normal;
	font-family: 'メイリオ' ,Meiryo, 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro' , 'ＭＳ Ｐゴシック' , 'Osaka' ,sans-serif;/* 左のフォントから優先的に選ばれる一番使いたいのを一番左に */
	color: #FFF;
	text-align: center;
	background-color: #000;
	background-image: 
		url(picture/background2.jpg),
		url(picture/backgroundtile.jpg);
	background-position:
		center top,
		left;
	background-repeat: 
		no-repeat,
		repeat;
}

/* 言語リンク、イラストリンク */
#header {
	font-style: italic;
	text-align: right;
	margin-top : 400px;
	margin-right : 10px;
}

/* リンク設定 */
a{/*リンクされた文字*/
    color:#FF9;
 }
a:link {/*未訪問のリンク*/
    color:#FF9;
}
a:visited {/*訪問後のリンク*/
    color:#FF9;
 }
a:hover {/*マウスをのせたとき*/
    color:#FC6;
}

/* 見出し */
h1 {/* 大見出し */
	position: relative;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0EB), to(#087));/* Webkit系 */
	background-image: -moz-linear-gradient(top,  #0EB,  #087);/* Mozilla系 */
	background-image: -ms-linear-gradient(top,  #0EB,  #087);/* IE10+ */
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	line-height: 1;
	margin: 10px 7px 10px 2px;
	padding: 14px 5px 10px 50px;
	border-radius: 20px;
}
h1:before {
	content: "";
	position: absolute;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1FE), to(#CFF));/* Webkit系 */
	background-image: -moz-linear-gradient(top,  #1FE,  #CFF);/* Mozilla系 */
	background-image: -ms-linear-gradient(top,  #1FE,  #CFF);/* IE10+ */
	top: 50%;
	left: 14px;
	margin-top :-10px;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	box-shadow: 1px 1px 1px #777 inset;
}

/* 文章位置調整 */
h6 {/* 左寄せ */
	font-size: 14px;
	font-weight: normal;
	text-align: left;
	margin: 5px 15px 5px 10px;
}/* h7以降は使えない */