﻿@import url("./font.css");


/*
	タグ
 */

* {
	font-size: 13px;
	font-family: "Arial", "Tahoma", sans-serif;
	color: #333333;
	border: none;
	margin: 0;
	padding: 0;
}

body {
	background-color: #f7f7f7;
	padding: 30px 0;
}

a {
	color: #ff6600;
	text-decoration: none;
}
a:hover {
	color: #333333;
}
p, ul, ol, dl {
	margin: 0.5em 1.5em 1em;
}
ul, ol {
	margin-left: 3em;
}

p {
	text-indent: 1em;
	line-height: 1.6em;
}
li > p {
	margin-left: 0;
	margin-right: 0;
}

li {
	margin: 1em 0;
}

dt {
	font-weight: bold;
}
dd {
	margin-left: 2em;
	margin-bottom: 1em;
}



#base {
	background-color: #ffffff;
	border: solid 1px #e1e1e1;
	border-radius: 3px;
	box-shadow: 0 0 3px #cccccc;
	width: 800px;
	margin: 0 auto;
}


h1, #header > ul > li > a, #main_pane > h2, #sub_pane > h2 {
	text-shadow: 0 0 1px #330000;
}




/*
	ヘッダ
 */

#header {
	background-image: url("./img/bg.jpg");
}
#header > h1 {
	font-size: 1.89em;
	font-weight: normal;
	background-image: url("./img/logo.png");
	background-repeat: no-repeat;
	background-position: 300px center;
	padding: 60px 100px;
}
#header > ul {
	list-style: none;
	background-image: url("./img/menu_bg.gif");
	border: solid 1px #c0c0c0;
	border-style: solid none;
	height: 30px;
	margin: 0;
	padding-left: 160px;
}
#header > ul > li {
	float: left;
	margin: 0;
}
#header > ul > li > a {
	display: block;
	font-size: 10px;
	color: #666666;
	border-left: ridge 1px #fafafa;
	line-height: 30px;
	padding: 0 30px;
}
#header > ul > li > a:hover {
	background-image: url("./img/opacity.png");
	color: #ff3300;
}
#header > ul > li.last > a {
	border-right: ridge 1px #fafafa;
}



/*
	メインペイン
 */

#main_pane {
	width: 500px;
	float: left;
	margin: 40px 0;
	margin-left: 20px;
}
#main_pane > h2 {
	font-size: 1.1em;
	font-weight: normal;
	letter-spacing: 0.1em;
	background-image: url("./img/bg.jpg");
	border: solid 1px #efefef;
	border-bottom: solid 2px #d2d2d2;
	padding: 5px 15px;
}



/*
	サブペイン
 */

#sub_pane {
	width: 250px;
	float: right;
	margin: 40px 0;
	margin-right: 20px;
}
#sub_pane > h2 {
	font-weight: normal;
	border-bottom: solid 2px #cccccc;
	padding: 5px;
}



/*
	フッタ
 */

#footer {
	font-size: 10px;
	text-align: center;
	background-color: #f7f7f7;
	border-top: solid 2px #ebebeb;
	clear: both;
	padding: 20px;
}






