@import url('/resources/style_old.css');
/* Blank space is intentional */








@font-face {
  font-family: "Noto Sans";
  src: url("/resources/fonts/NotoSans-Regular.ttf")
}

body {
  color: #000;
  background: #0000;
  font-family: 'Segoe UI', 'Noto Sans', sans-serif;
  margin: 0;
}
#content_c_nw {
  display: flex;
  width: 100%;
  justify-content: center;
}
button {
  min-width: 50px;
  height: 25px;
  border: 1px solid #666;
  background-color: #ddd;
  background-image: linear-gradient(#eee 0%, #bbb 100%);
  border-radius: 5px;
}
button:hover {
  background-color: #ccc;
  background-image: linear-gradient(#ddd 0%, #aaa 100%);
}
button:active {
  background-color: #b2b2b2;
  background-image: linear-gradient(#ccc 0%, #999 100%);
}

input[type=text] {
  height: 30px;
  border-radius: 5px;
  border: 1px solid #aaa;
}

input[type=checkbox], input[type=radio] {
  height: 15px;
  width: 15px;
  accent-color: #f6c;
}

select {
  height: 30px;
  border: 1px solid #aaa;
  background-color: #ddd;
}
select:hover {
  background-color: #ccc;
}
select:active {
  background-color: #b2b2b2;
}

table, th, td {
  border: 1px solid #555;
}
tr:nth-child(even) {
  background-color: #eeeeee
}
th, td {
  min-width: 60px;
}
table {
  border-collapse: collapse;
}
/* Header */
#header {
  width: 100%;
  height: 50px;
  background-image: linear-gradient(#78a7 0%, #78a3 100%);
  font-size: 16pt;
  display: flex;
  align-items: center;
  position: sticky;
  left: 0;
  top: 0;
}
#header .header_effect {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  backdrop-filter: blur(10px);
}
#header .headeritem_c {
  height: 100%;
  z-index: 3;
}
#header .headeritem_dd {
  background-color: #ffffff7f;
  font-size: 14px;
  flex-direction: column;
  position: absolute;
  top: 50px;
  border: 1px solid black;
  box-shadow: 0px 0px 3px #0004;
  backdrop-filter: blur(10px);
  display: none;
}
#header .headeritem_dd.dd_show {
  display: flex;
}
#header .headeritem_dd_item {
  white-space: nowrap;
  text-decoration: none;
  color: black;
}
#header .headeritem_dd_item:hover {
  background-color: #0002;
}
#header .headeritem_dd_item:active {
  background-color: #0004;
}
#header .headeritem {
  height: 100%;
  background-color: #0000;
  background-image: none;
  min-width: 100px;
  border-radius: 0;
}
#header .headeritem:hover {
  background-color: #0002;
}
#header .headeritem:active {
  background-color: #0002;
}
#footer {
  width: 100%;
  height: 150px;
  background-image: linear-gradient(#fff 0%, #555 5%, #555);
  overflow: hidden;
  display: flex
}
#contents_2_eb {
  padding: 5px 10px;
  min-height: 100vh;
  width: 1260px;
}
.v1_block {
  display: none;
}