@charset "utf-8";

/* 本体定義 */
body {
	margin: 0;
	padding: 0;
	font-size: 80%;
	background: #e7e8f2;
	color: #000;
	font-family:Verdana,"MS PGothic",Osaka,Arial,sans-serif;
}
a:link, a:visited {
	color: #1122cc;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #dd0000;
}
div#head {
	width: 100%;
	background: #3b5998;
	color: #fff;
}
div#head-in {
	padding: 0.5em 1em;
}
div#main {
	width: 100%;
}
div#main-in {
	padding: 1em;
}

/* タイトル */
h1 {
	font-size: 180%;
	margin: 5px;
	color: #fff;
}

/* 見出し */
div.sub-ttl {
	margin: 1.5em 0 0.6em 0;
	border-top: 1px dotted #3b5998;
	padding: 5px 3px;
}
div.sub-ttl span {
	color: #5b92e5;
}

/* チャートテーブル */
table#chart-day td {
	width: 25px;
	font-size: 12px;
	vertical-align: bottom;
	text-align: center;
}

div.graph-day {
	background: #ebb848;
	width: 10px;
	margin: 0 auto;
}
div.graph-mon {
	background: #5b92e5;
	height: 10px;
	/* border-right: 1px solid #404040; */
	border-bottom: 1px solid #404040;
}

/* 寄せ */
.ta-c {
	text-align: center;
}
.ta-l {
	text-align: left;
}
.ta-r {
	text-align: right;
}

/* アイコン */
img.icon {
	vertical-align: middle;
	border: none;
}

/*
	吹き出し
	http://www.k5.dion.ne.jp/~i-araki/css/popup.html
*/
table#chart-day span.popup {
	display: none;
	position: absolute;
	top: -20px;
	left: 0px;
	z-index: 1;

}
table#chart-day a:hover {
	position: relative;
	text-decoration: none;
}
table#chart-day a:hover .popup {
	display: block;
	background-color: #5b92e5;
	padding: 3px;
	color: #fff;
	border-bottom: #e7e8f2 solid 10px;
	border-left: #5b92e5 solid 5px;
}

/*
	テーブルデザイン
	http://weboook.blog22.fc2.com/blog-entry-329.html
*/
table#chart-mon {
  margin: 1.2em;
  width: auto;
  border-spacing: 0;
  font-size:14px;
}
table#chart-mon th {
  color: #000;
  padding: 8px 15px;
  background: #eee;
  background:-moz-linear-gradient(#eee, #ddd 50%);
  background:-webkit-gradient(linear, 100% 0%, 100% 50%, from(#eee), to(#ddd));
  font-weight: bold;
  border-top:1px solid #aaa;
  border-bottom:1px solid #aaa;
  line-height: 120%;
  text-align: center;
  text-shadow:0 -1px 0 rgba(255,255,255,0.9);
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
}
table#chart-mon th:first-child {
  border-left:1px solid #aaa;
  border-radius: 5px 0 0 0;	
}
table#chart-mon th:last-child {
  border-radius:0 5px 0 0;
  border-right:1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table#chart-mon tr td {
  padding: 8px 15px;
  text-align: center;
}
table#chart-mon tr td:first-child {
  border-left: 1px solid #aaa;
}
table#chart-mon tr td:last-child {
  border-right: 1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table#chart-mon tr {
  background: #fff;
}
table#chart-mon tr:nth-child(2n+1) {
  background: #f5f5f5;
}
table#chart-mon tr:last-child td {
  border-bottom:1px solid #aaa;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table#chart-mon tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
table#chart-mon tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
table#chart-mon tr:hover {
  background: #eee;
  cursor:pointer;
}
