/* 一括で全ての要素の余白をゼロに指定 */
* {
  padding: 0;
  margin: 0;
}

a:link {
  color: #cccccc;
  text-decoration: underline;
}

a:visited {
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

/* ---------------------------------------- フォントスタイル フォントサイズ */
body {
  font-size: 0.8em;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
  color: #cccccc;
  background-color : black;
}

/* ---------------------------------------- レイアウトに関する指定 */

#wrapper {
  text-align: left;
  margin: 1em auto 0;
  width: 800px;
  background: black;
}

#header {
  background: darkgreen;
  padding: 0;
}
#nav {
  clear: both;
  padding: 1em 0 1em;
  border-top: 1px solid #dddddd;
  text-align: left;
}

#nav ul li{
	float:left;
	list-style-type:none;
}
#nav li a{
	display:block;
	padding:2px;
	margin:1px 10px;
	text-decoration:none;
	text-align:left;
	color: #cccccc;
}
#nav li a:hover{
	color:black;
	text-decoration:none;
	background-color:WhiteSmoke;
}


#contents {
  float: left;
  width: 100%;
  padding: 5px;
}
#main {
	float:left;
	width:520px;
}
#sub {
	float:right;
	width:275px;
	text-align:left;
}

#info {
	width:220px;
	height:200px;
	text-align:left;
	overflow: auto;
}

#subcontents {						
  float: left;
  width: 100%;
  padding: 4em 30px 4em 20px;
}
#footer {
  font-size: 0.7em;					
  clear: both;
  padding: 1em 0 1em;
  border-top: 1px solid #dddddd;
}

/* ---------------------------------------- #header内の指定 */

/* -- 見出しレベル1 -- */
h1 {
  text-align: right;
  font-size: 1.2em;
  font-weight: normal;
}

/* -- 概要 -- */
.description { }


/* ---------------------------------------- #contents内の指定 */

/* -- 見出し -- */
h2,h3,h4,h5,h6 {
  font-size: 1.0em;
  margin-bottom: 1.5em;
  padding: 5px 0 5px 5px;
  border-left : 0px solid #555555;
  border-bottom: 1px solid #555555;
}

h3,h4,h5,h6 {
  margin-top: 1.5em; 
}

/* -- 文字 -- */
#contents p {
  line-height: 1em;
  margin-bottom: 0.5em;
}

/* -- 文字 -- */
#contents table {
  border: 0;
  text-align: center;
  margin: 5px;
}

/* -- パン屑リスト -- */
#contents .topic-path {
  line-height: 1em;
  margin-bottom: 2em;
}


/* ---------------------------------------- #footer内の指定 */
#footer p {
  text-align: right; 
}

