@charset "EUC-JP"; 

/* ++++++ ブログの横幅設定 ++++++ */

/* 【注意事項】
サイズを決定する際、割合であるパーセント（％）を使用する事ができます。しかし、この％の場合割合の合計を１００％にすると表示が崩れる事がありますので、割合である％では指定しない方が良いと思われます。使用したい場合には、合計が１００％にならない様にしましょう。
http://www.1uphp.com/con2/layout/pagelayout1.html
*/
#container {
	width: 750px; /* --- 760pxまでOK ---- */
	} 

/* ++++++ ２段組の横幅設定 ++++++ */

	/* コンテンツ部分の横幅 */
#content{
	width: 525px;
	}

	/* サイドバーの横幅 */
#side	{
	width: 200px;
	}

/* +++++++++++++++++ 回り込み、text-align ++++++++++++++++++++ */

body	{
	text-align: center; /* IE用の中央寄せ */
	}

#container_out {
	padding:0px 10px;
	}

#container {
	margin-right: auto; /* IE以外用の中央寄せ */
	margin-left: auto; /* IE以外用の中央寄せ */
	text-align: left; /* 中身を左寄せに戻す */
	}
	
#banne{
	}		
	
#content{
	float: left;
	}

#side   {
	float: right;
	}

/* ----- ここで一旦クリア ----- */		
#topmiddle{
	clear:both;
	}	
	
#toptips{
	float: left;
	width: 525px;
	}
	
#toptips_side{
	float:right;
	width: 200px;
	}	
	
#pan_bottom{
	clear:both;
	}	
		
#footer	{
	}	