@charset "utf-8";

/************************* 全体 ******************************/

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

html {
  height: 100%;
  _overflow: hidden;
}

body {
  width: 100%;
  height: 100%;
  background-color: #300;
  font-size: 12px;
  color: white;
  _overflow: hidden;
}

h1 {
  margin: 1em;
  padding: .2em 1em;
  background-color: red;
  color: white;
}

/************************* ヘッダ ******************************/

#header {
  width: 100%;
  height: 59px;
  position: fixed;
  _position: absolute;
  top: 0;
  _top: -1px;
  right: 0;
  _right: 16px;
  _padding-top: 1px;
  border: none;
  z-index: 2;
  text-align: left;
  overflow: hidden;
}

#header_inner {
  _margin-left: 16px;
  width: 631px;
  height: 100%;
  background: black;
  text-align: left;
  color: white;
  overflow: hidden;
}


/************************* フッタ ******************************/

#footer {
  width: 100%;
  height: 31px;
  position: fixed;
  _position: absolute;
  bottom: 0px;
  _bottom: -1px;
  right: 0;
  _right: 16px;
  _padding-bottom: 1px;
  z-index: 2;
  border: none;
  text-align: left;
  font-size: 12px;
  overflow: hidden;
}

#footer_inner {
  _margin-left: 16px;
  height: 100%;
  width: 631px;
  background: black;
  text-align: left;
  color: white;
  overflow: hidden;
}

#footer .copyright {
  padding-top: 16px;
  height: 30px;
}

#footer .trademark {
  width: 260px;
  height: 30px;
  float: right;
}

/************************* ボディ ******************************/

#content_body {
  width: 100%;
  height: 100%;
  _overflow: auto;
  _overflow-x: hidden;
  position: relative;
  z-index: 1;
}

#content_inner {
  width: 631px;
  height: 100%;
  padding: 72px 0 0 0;
}

#content_inner p {
  margin-left: 2em;
}

/************************* 入力フィールド ******************************/

#input {
  margin: 0.6em 1em;
  padding: 0 1em;
}

#input input {
  padding: .2em;
  width: 16em;
}

#input input:focus {
  background-color: #ffc;
}

/************************* プレイヤー情報 ******************************/

#players {
  margin: 1em;
  padding: 1em 1.4em;
  border-top: 1px solid silver;
}

#players div {
  clear: both;
}

#players div p {
  margin-left: 0;
}

#players div .ringname {
  float: left;
  width: 16em;
}

#players div .count {
  float: left;
  width: 4em;
  color: silver;
}

#players div .anchor a {
  text-decoration: none;
  color: orange;
}

#players div .anchor a:hover {
  color: white;
}

/************************* 結果 ******************************/

#result {
  clear: both;
  margin: 0 1em;
  padding: .5em 1.4em 1em 0;
  border-top: 1px solid silver;
}

#result p {
  margin-left: 1em;
  color: #ffc;
}

/************************* 注意 ******************************/

#annotation {
  margin: 1em 2em;
  padding-bottom: 4em;
}

#annotation p {
  margin: 0;
  font-size: 90%;
  color: gray;
}

