@charset "utf-8";
/* ===================================================================
CSS information

 File Name  : style.css
 Author     : MIYA
 Style Info : コンテンツ内のスタイル
=================================================================== */

/* ----------------------------- Browser Default Initialization */
body, div, h1, ul, li, address	{
	margin: 0;	padding: 0;
}
h1	{
	font-size: 100%;
}
img	{
	border: 0;
	vertical-align: bottom;
}
li	{
	list-style-type: none;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	line-height: 1.5;
	color: #333;
	font-size: 75%;
}
html>/**/body {
	font-size: 12px;
}

* + html body {
	font-family: "メイリオ","Meiryo";
}
a, a:link, a:visited	{
	text-decoration: none;
	color: #333;
}
a:hover	{
	text-decoration: underline;
	color: #666;
}
a:active	{
	color: #999;
}

/* コンテンツ要素					
----------------------------------------------------------- */
div#contents {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 920px;
	height: 580px;
	margin: -310px 0 0 -480px;
	padding: 20px;
}
#contents h1 {
	margin-bottom: 15px;
}
#contents ul {
	width: 900px;
	padding-left: 20px;
}
*:first-child + html #contents ul	{
	padding-bottom: 15px;
}
#contents ul li {
	width: 200px;
	background: #F4F4F4;
	padding: 3px;
	float: left;
	margin: 0 15px 15px 0;
	border: 1px solid #D1D1D1;
}
#contents address	{
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
}
/* clearfix */
#contents ul:after	{ height:0;	visibility: hidden;	content: ".";	display: block;	clear: both; }
