@charset "utf-8";
/* top.css */

/*プロパティ順番
////////////////////////////////////////////////////*//*


	Mozillaが採用している「ボックスモデルによる記述順番」

	01 display
	02 list-style
	03 position
	04 float
	05 clear
	06 width
	07 height
	08 margin
	09 padding
	10 border
	11 background
	12 color
	13 font
	14 text-decoration
	15 text-align
	16 vertical-align
	17 white-space
	18 other text
	19 content


///////////////////////////////////////////////////////*/

body{
	font-family: "メイリオ","ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", sans-serif;
}

nav ul.top_nav li.nav_top {
	background: rgb(3,107,186); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(3,107,186,1) 0%, rgba(8,76,102,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(3,107,186,1)), color-stop(100%,rgba(8,76,102,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(3,107,186,1) 0%,rgba(8,76,102,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(3,107,186,1) 0%,rgba(8,76,102,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(3,107,186,1) 0%,rgba(8,76,102,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(3,107,186,1) 0%,rgba(8,76,102,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#036bba', endColorstr='#084c66',GradientType=0 ); /* IE6-9 */

}
#info {
	font-size: 13px;
}
#info dl {
		padding: 0 10px;
		overflow: hidden;
}
#info dl dt {
	float: left;
	width: 9em;
}
#info dl dd {
	padding: 0 0 0 9em;
	margin: 0 0 12px;
}