/* CSS Document */

:root {
  --header-width: 90%;
  --header-height: 90px;
  --footer-width: 90%;
  --footer-height: 90px;
  --nav-width: 90%;
  --nav-height: 40px;
  --article-width: 90%;
  --table-width: 15%;
  --padding-size: 10px;
  --line-height: 30px;
  --border-color: #66828E;
  --background-color: #586D80;
  --text-color: aliceblue;
}

body {
  margin: auto;
  padding: 0;
}

#index_header {
  width: var(--header-width);
  margin: auto;
  height: var(--header-height);
}

#index_header #index_logo {
  float: left;
  width: 30%;
  background-image: url("../images/logo.png");
  height: var(--header-height);
  background-repeat: no-repeat;
}

#index_header #index_logo_r {
  float: left;
  width: 70%;
  height: var(--header-height);
}

#index_footer {
  width: var(--footer-width);
  height: var(--footer-height);
  margin: auto;
  font-size: 12px;
}

#index_footer_ul {
  padding: 0;
  margin: auto;
}

.index_footer_ul_li {
  float: left;
  list-style: none;
  line-height: var(--line-height);
  width: 10%;
  padding: var(--padding-size) 0;
  text-align: center;
}

#index_nav {
  width: var(--nav-width);
  margin: auto;
  height: var(--nav-height);
  padding: 0;
  background-color: var(--background-color);
  font-size: 12px;
}

#index_nav_ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

.index_nav_ul_li {
  float: left;
  line-height: var(--nav-height);
  background-color: var(--background-color);
  font-size: 12px;
  color: var(--text-color);
  width: 10%;
  text-align: center;
}

#index_nav li:active {
  text-decoration: none;
  background-color: #66828E;
}

#index_nav li:hover {
  background-color: #66828E;
}

#index_nav a:link {
  color: var(--text-color);
  text-decoration: none;
}

#index_nav a:active {
  color: var(--text-color);
  text-decoration: none;
}

#index_nav a:visited {
  color: var(--text-color);
  text-decoration: none;
}

#index_nav a:hover {
  color: var(--text-color);
  text-decoration: underline;
}

#index_article {
  width: var(--article-width);
  margin: var(--padding-size) auto;
  height: 90px;
}

#index_article table {
  width: var(--table-width);
  margin: auto;
  border-collapse: collapse;
  font-size: 12px;
  float: left;
}

#index_article td {
  border: 1px var(--border-color) solid;
  text-align: center;
  line-height: var(--line-height);
}

#index_article th {
  border: 1px var(--border-color) solid;
  text-align: left;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: var(--line-height);
  padding-left: var(--padding-size);
}