*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
:root {
  --default-font: "Consolas", "Courier New", "monospace", "MS UI Gothic",
    "Arial", "Verdana", "Calibri";
  --default-font-size: 16px;
  --nav-top: 100px;
  --sidebar-toggle-size: 30px;
}
html {
  font-size: var(--default-font-size);
}
body {
  font-family: var(--default-font);
  color: #383838;
  background-image: linear-gradient(90deg, #9ea8af 0%, #9db7c2 100%);
  background-repeat: repeat-x;
  justify-content: center;
  align-items: center;
  scrollbar-face-color: #77d6fa;
  scrollbar-highlight-color: #77d6fa;
  scrollbar-shadow-color: #77d6fa;
  scrollbar-3dlight-color: #ffffff;
  scrollbar-arrow-color: #ffffff;
  scrollbar-track-color: #ffffff;
  font-family: Tahoma, Verdana, Arial, Verdana, sans-serif;
  scrollbar-darkshadow-color: #ffffff;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
}
A {
  color: #2b2b2b;
  text-decoration: none;
}
A:hover {
  color: #000000;
  text-decoration: none;
}
select {
  background-color: ffffff;
  color: #363636;
  font-family: "Tahoma", "Verdana";
}
.ajaxBT {
  display: flex;
  flex-direction: column;
  padding: 0px;
  position: fixed;
  height: 123px;
  top: 0px;
  left: 0px;
  width: 100%;
  color: #000000;
  font-size: 0.85rem;
  z-index: 9999;
  border-bottom: #440b94 0px dotted;
  background-image: linear-gradient(90deg, #fdfdf0 0%, #efd18f 100%);
  background-color: rgba(255, 255, 255, 1);
  justify-content: center;
  align-items: flex-start;
}
.maincat {
  list-style-type: none;
  list-style: none;
  color: #292929;
}
.maincat a {
  color: #ffffff;
  text-decoration: none;
  float: left;
  padding: 1px 3px 1px 3px;
  border-radius: 2fvpx;
}
.maincat a.active {
  background-color: #a8e2ef;
  color: #292929;
}
.maincat a:hover:not(.active) {
  color: #363636;
  background-image: linear-gradient(90deg,
      transparent 0%,
      rgba(251, 250, 239, 0.9) 25%,
      rgba(255, 255, 255, 0.9) 83%,
      transparent 100%);
}
.type3menu01 {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  vertical-align: middle;
  background-image: linear-gradient(90deg, #4fa1cc 0%, #49729d 100%);
}
.scat {
  list-style-type: none;
  list-style: none;
  display: inline;
  color: #363636;
}
.scat a {
  display: inline;
  color: #ffffff;
  text-decoration: none;
  float: left;
  padding: 1px 8px 1px 8px;
  border-radius: 2px;
}
.scat a.active {
  background-color: #f3eddd;
  color: #292929;
}
.scat a:hover:not(.active) {
  color: #363636;
  background-image: linear-gradient(to right,
      transparent 0%,
      rgba(251, 250, 239, 0.9) 25%,
      rgba(255, 255, 255, 0.9) 83%,
      transparent 100%);
}
.type2menu01 {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  vertical-align: middle;
  background-image: linear-gradient(90deg, #72bad8 0%, #4e9ec3 100%);
}
.sidebar-title {
}
.left-sidebar {
  background-color: rgba(142, 142, 142, 1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border-radius: 5px;
  padding: 2px;
  position: sticky;
  top: calc(var(--nav-top) + 30px);
  transition: transform 0.3s ease;
  z-index: 7;
  max-height: calc(100vh - var(--nav-top) - 70px);
  width: 338px;
  margin-bottom: 20px;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .left-sidebar {
    position: fixed;
    top: calc(var(--nav-top) + 30px);
    width: auto;
    z-index: 7;
    transform: translateX(calc(-100% - 50px));
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.8);
    max-height: calc(100svh - var(--nav-top));
  }
  .left-sidebar.active {
    transform: translateX(0);
  }
}
.sidebar-menu {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  overflow-y: auto;
  flex: 1;
  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: #c2c2c2 #f1f1f1;
}
.sidebar-menu::-webkit-scrollbar {
  width: 7px;
}
.sidebar-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.sidebar-menu::-webkit-scrollbar-thumb {
  background: #c2c2c2;
  border-radius: 10px;
}
.sidebar-menu::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
.sidebar-close {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  color: red;
  width: 25px;
  height: 25px;
}
.sidebar-close-background {
  fill: #2e2e2e;
  transition: fill 0.3s ease;
}
.sidebar-close-lines {
  fill: #ffffff;
  transition: fill 0.3s ease;
}
.sidebar-close:hover .sidebar-close-background {
  fill: #2e2e2e;
}
.sidebar-close:hover .sidebar-close-lines {
  fill: #ffffff;
}
@media (max-width: 1100px) {
  .sidebar-close {
    display: block;
  }
}
.sidebar-toggle {
  --color-background: #07218c;
  --color-lines: #ffffff;
  display: none;
  position: fixed;
  z-index: 7;
  font-size: 2rem;
  border-radius: 50%;
  width: var(--sidebar-toggle-size);
  height: var(--sidebar-toggle-size);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.left-toggle {
  top: calc(var(--nav-top) + 70px);
  left: 30px;
}
.sidebar-toggle-background {
  fill: #000000;
  transition: fill 0.3s ease;
}
.sidebar-toggle-lines {
  fill: #ffffff;
  transition: fill 0.3s ease;
}
.sidebar-toggle:hover .sidebar-toggle-background {
  fill: #ffffff;
}
.sidebar-toggle:hover .sidebar-toggle-lines {
  fill: #000000;
}
@media (max-width: 1100px) {
  .sidebar-toggle {
    display: block;
  }
  .sidebar-toggle.nonActive {
    display: none;
  }
  .main-content {
    width: 100%;
  }
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
  }
  .overlay.active {
    display: block;
  }
}
.sscat {
  align-items: stretch;
  background-color: #bdbdbc;
  font-size: 0.8rem;
  color: #363636;
  width: 120px;
  margin: 2px;
  border-radius: 5px;
}
.sscat:active {
  font-size: 0.8rem;
  background-color: #fcf3dd;
  color: #292929;
}
.sscat:hover:not(.active) {
  font-size: 0.8rem;
  color: #363636;
  background-color: #ffffff;
}
.type1PdList {
  display: flex;
  align-items: stretch;
  flex-grow: 1;
  text-align: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
}
.type1PdListHide {
  display: none;
}
.type1-menu-image-bg-2 {
  position: relative;
  border-radius: 3px 3px 3px 3px;
}
.type1-menu-pic {
  border-radius: 8px 8px 0px 0px;
  padding: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.type1-menu-OnSale {
  position: absolute;
  top: 0;
  left: 0;
}
.type1-menu-title {
  padding-top: 4px;
  padding-bottom: 4px;
}
.goodList-block {
  position: relative;
}
.goodList-Pic {
  padding: 4px;
  border-radius: 8px 8px 8px 8px;
  object-fit: cover;
}
.goodList-onsale {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 0px;
  top: 0;
  left: 0;
}
.hmfoot {
  display: flex;
  flex-wrap: wrap;
  border-top: #ffffff 0px dotted;
  border-bottom: #ffffff 0px dotted;
  padding: 20px;
  justify-content: center;
  background-image: linear-gradient(90deg, #fdfdf0 0%, #efd18f 100%);
}
.hmrha1 {
  line-height: 2rem;
  font-size: 0.8rem;
  color: #ddd;
  text-decoration: none;
  font-family: "Arial", "Consolas", "Courier New", "monospace", "MS UI Gothic",
    "Arial", "Verdana", "Calibri";
}
.hmrha2 {
  font-size: 1.5rem;
  color: #fefefe;
  text-decoration: none;
  font-family: "monospace", "Arial", "Consolas", "Courier New", "monospace",
    "MS UI Gothic", "Arial", "Verdana", "Calibri";
}
.footItem {
  margin: 15px;
  line-height: 2rem;
  font-size: 0.7rem;
  color: #ddd;
  text-decoration: none;
}
.footItem2 {
  margin: 15px;
  line-height: 2rem;
  font-size: 0.7rem;
  color: #c1c1c1;
  text-decoration: none;
}
.footItem2 A:link {
  color: #c1c1c1;
  text-decoration: none;
}
.footItem2 A:visited {
  color: #c1c1c1;
  text-decoration: none;
}
.footItem2 A:hover {
  color: #c1c1c1;
  text-decoration: none;
}
.HomeNote {
  background-image: linear-gradient(180deg, RED, #ed0202);
  font-size: 1.2rem;
  line-height: 2rem;
  color: #edd28a;
  text-decoration: yes;
  text-align: center;
  font-weight: bold;
  padding: 1px;
}
.HomeTop {
  width: 100%;
  height: 123px;
  padding: 10px;
  text-align: center;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #fdfdf0 0%, #c8e6f0 100%);
}
.Home {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 2px;
  text-align: center;
  flex: 1;
}
.TopIconBg {
  display: block;
  width: 100%;
  padding: 3px;
  background-color: rgba(0, 0, 0, 0.05);
}
.goodstable {
	width: 160px;
	display: inline-block;
	font-size: 0.8rem;
	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(178, 178, 178, 0.9);
	padding: 10px;
	margin: 0px 0px 10px 0px;
	overflow: hidden;
	line-height: 1.5rem;
	color: #353535;
	border-radius: 5px;
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.15),
		0 8px 20px rgba(0, 0, 0, 0.1);
}
.goodstable:hover {
	color: #1c1c1c;
	background-color: rgba(255, 255, 255, 1);
}
.goodstableNEWS {
	width: 160px;
	display: inline-block;
	font-size: 0.8rem;
	border: 1px solid rgba(178, 178, 178, 0.9);
	padding: 10px;
	margin: 0px 10px 10px 0px;
	overflow: hidden;
	line-height: 1.5rem;
	color: #353535;
	background-color: #ffffff;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.15),
		0 8px 20px rgba(0, 0, 0, 0.1);
}
.goodstableNEWS:hover {
	color: #1c1c1c;
	background-color: rgba(255, 255, 255, 1);
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.15),
		0 8px 20px rgba(0, 0, 0, 0.1);
}
.sectionMid {
   margin:0;
  text-align: center;
  align-items: center;
}
.MiditemB01 {
  margin: 0 auto;
  padding: 2vh 3vw;
  border-width: 0px;
  width: 95%;
}
.Miditem {
  display: inline-block;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  border-width: 0px;
  margin: 20px 10px;
}
@media screen and (max-width: 768px) {
  .sectionMid {
     margin:0;
    text-align: center;
    align-items: center;
  }
  .MiditemB01 {
    margin: 1vh auto;
    vertical-align: middle;
    padding: 0;
    border-width: 0px;
    width: 99%;
    padding: 1vh 1vw;
  }
  .Miditem {
    display: inline-block;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-color: #ffffff;
    border-radius: 10px;
    border-width: 0px;
  }
  .MiditemNew {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    align-items: stretch;
    border-width: 0px;
  }
  	.goodstable {
		width: 110px;
		display: inline-block;
		font-size: 0.8rem;
		padding: 6px 2px;
		overflow: hidden;
		line-height: 1.5rem;
		color: #353535;
		border-radius: 5px;
	}
	.goodstableNEWS {
		width: 110px;
		display: inline-block;
		font-size: 0.8rem;
		padding: 6px 2px;
		overflow: hidden;
		line-height: 1.5rem;
		color: #353535;
		border-radius: 5px;
	}
}
.MiditemBGC01 {
  display: inline-block;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-color: rgba(73, 149, 78, 0.3);
  border-color: 1px solid rgba(9, 86, 12, 0.3);
  border-radius: 10px;
  padding: 2rem;
  border-width: 0px;
  margin: 20px 10px;
}
.MiditemBGC02 {
  display: inline-block;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-color: rgba(149, 145, 73, 0.3);
  border-color: 1px solid rgba(86, 80, 9, 0.3);
  border-radius: 10px;
  padding: 2rem;
  border-width: 0px;
  margin: 20px 10px;
}
.MiditemBGC03 {
  display: inline-block;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-color: rgba(73, 145, 149, 0.3);
  border-color: 1px solid rgba(30, 86, 89, 0.434);
  border-radius: 10px;
  padding: 2rem;
  border-width: 0px;
  margin: 20px 10px;
}
.MiditemNew {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  align-items: stretch;
  border-width: 0px;
  margin: 20px auto;
}
.MiditemPdList {
  display: inline-flex;
  align-items: flex-start;
  text-align: center;
  justify-content: space-between;
  width: 95%;
  border-width: 0px;
}
.MiditemA303 {
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-between;
  width: 100%;
  border-width: 0px;
}
.SVformtable {
  display: inline-block;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 10px;
  margin: auto;
  padding: 2rem;
  margin: 20px 10px;
  text-align: left;
  border-width: 0px;
  border-color: #ffffff;
}
.SVformtabletd {
  padding: 5px;
}
.SVpagination {
  color: #2b2b2b;
  text-decoration: none;
  text-align: left;
  margin: 1vh 1vw;
  background-color: rgba(0, 0, 0, 0.3);
}
.SVpagination a {
  font-size: 0.65rem;
  color: #ffffff;
  background-color: #bed1e1;
  border-radius: 4px;
  margin: 1px 1px 1px 1px;
  float: left;
  padding: 6px 12px;
  text-decoration: none;
}
.SVpagination a.active {
  font-size: 0.65rem;
  background-color: #78a3bb;
  color: #ffffff;
}
.SVpagination a:hover:not(.active) {
  font-size: 0.65rem;
  color: #90bbd8;
  background-color: #e2e4e4;
}
.btn-circle {
  color: red;
  border: 1px solid red;
  width: 80px;
  height: 80px;
  border-radius: 2px 40px 2px 40px;
  transition: all 0.3s;
}
.btn-circle:hover {
  background-image: linear-gradient(90deg, #fa748b 0%, #f5a623 100%);
  color: #fff;
  box-shadow: 0px 10px 5px -2px rgba(0, 0, 0, 0.3);
  transform: scale(1.5);
}
.btn-modify_pw {
  font-size: 0.75rem;
  color: #ffffff;
  background-color: red;
  border: 1px solid #ffffff;
  border-radius: 4px;
}
.btn-modify_pw:hover {
  font-size: 0.75rem;
  color: #212121;
  background-color: #fdb404;
  border: 1px solid #212121;
  border-radius: 4px;
}
.btn-ready2send {
  font-size: 1.7rem;
  color: #ffffff;
  padding: 10px 20px 10px;
  border: 0px solid #f5a623;
  background-color: #f5a623;
  border-radius: 16px;
}
.btn-ready2send:hover {
  font-size: 1.7rem;
  color: #ffffff;
  background-image: linear-gradient(90deg, #f5a623 0%, #fc9004 100%);
  border: 0px solid #f5a623;
  border-radius: 16px;
}
.send_car {
  font-size: 1.7rem;
  color: #212121;
  padding: 10px 20px 10px;
  border: 0px solid #f52366;
  background-color: #f9bf45;
  border-radius: 16px;
}
.send_car:hover {
  font-size: 1.7rem;
  color: #212121;
  background-image: linear-gradient(90deg, #a7e2fb 0%, #5dccfb 100%);
  border-radius: 16px;
  border: 0px solid #a7e2fb;
}
.btn-submit {
  font-size: 1.3rem;
  padding: 5px 10px 5px;
  color: #ffffff;
  background-color: #319969;
  border: 0px solid red;
  border-radius: 6px;
}
.btn-submit:hover {
  font-size: 1.3rem;
  color: #ffffff;
  background-image: linear-gradient(90deg, #319969 0%, #107346 100%);
  border: 0px solid red;
  border-radius: 6px;
}
.btn-reset {
  font-size: 1.3rem;
  padding: 5px 10px 5px;
  color: #383838;
  background-color: #ffc03b;
  border: 0px solid red;
  border-radius: 6px;
}
.btn-reset:hover {
  font-size: 1.3rem;
  color: #000000;
  background-image: linear-gradient(90deg, #ffc03b 0%, #f8ae12 100%);
  border: 0px solid red;
  border-radius: 6px;
}
.btn-forgotPW {
  font-size: 1.3rem;
  padding: 5px 10px 5px;
  color: #ffffff;
  background-color: #fa3851;
  border: 0px solid red;
  border-radius: 6px;
}
.btn-forgotPW:hover {
  font-size: 1.3rem;
  color: #ffffff;
  background-image: linear-gradient(90deg, #fa3851 0%, #fd1c39 100%);
  border: 0px solid red;
  border-radius: 6px;
}
.btn-signUp {
  font-size: 1.3rem;
  padding: 5px 10px 5px;
  color: #ffffff;
  background-color: #12acfc;
  border: 0px solid red;
  border-radius: 6px;
}
.btn-signUp:hover {
  font-size: 1.3rem;
  color: #ffffff;
  background-image: linear-gradient(90deg, #12acfc 0%, #0296e3 100%);
  border: 0px solid red;
  border-radius: 6px;
}
.btn-detail {
  font-size: 0.65rem;
  color: #ffffff;
  background-color: #c7c7c7;
  border: 0px solid red;
  border-radius: 2px;
  padding: 1px 5px 1px 5px;
}
.btn-detail:hover {
  font-size: 0.65rem;
  color: #ffffff;
  background-image: linear-gradient(90deg, #adadad 0%, #8b8b8b 100%);
  border: 0px solid red;
  border-radius: 2px;
}
.BT_addToCart {
  border: none;
  padding: 10px;
  color: #000;
  background-color: rgb(251, 211, 34);
  border-radius: 15px;
  cursor: pointer;
}
.BT_addToCart:hover {
  background-color: #f8aa03;
  opacity: 1;
}
.courseflex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  align-content: stretch;
  justify-content: center;
  text-align: center;
}
.courseA {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}
.FlexAboutUs {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  text-align: center;
  border-radius: 10px;
}
.FlexDIYtutorial {
  border-spacing: 10px;
  background-color: #ffffff;
  display: inline;
  font-size: 0.7em;
  line-height: 2em;
  border: 0px solid #eeeeee;
  padding: 30px 15px;
  margin: 10px 10px 10px 10px;
  overflow: hidden;
  letter-spacing: 1pt;
  color: #696969;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 10px;
}
.FlexItemAboutus {
  background-color: rgb(239, 233, 224);
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8em;
  border: 0px solid #eeeeee;
  padding: 25px;
  margin: 10px 10px 10px 10px;
  overflow: hidden;
  letter-spacing: 1pt;
  color: #353535;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 10px;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.05);
}
.searchBox {
  display: flex;
  border-radius: 25px;
  overflow: hidden;
}
.searchTxtInput {
  background-color: rgb(252, 241, 222);
  flex-grow: 1;
  border: none;
  background-color: #ffffff;
  padding: 10px 15px;
  outline: none;
  padding: 0px 15px;
}
.searchBT {
  width: 38px;
  background-color: #eeeeee;
  border: none;
  padding: 0px 5px 0px 3px;
  cursor: pointer;
}
.courseTable00 {
  background-color: #e8e2c2;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8em;
  border: 0px solid #eeeeee;
  padding: 25px;
  margin: 10px 10px 10px 10px;
  overflow: hidden;
  letter-spacing: 1pt;
  color: #353535;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 10px;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.05);
}
.courseTable01 {
  background-color: #efdde1;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8em;
  border: 0px solid #eeeeee;
  padding: 25px;
  margin: 10px 10px 10px 10px;
  overflow: hidden;
  letter-spacing: 1pt;
  color: #353535;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 10px;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.05);
}
.courseTable02 {
  background-color: #dbece6;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8em;
  border: 0px solid #eeeeee;
  padding: 25px;
  margin: 10px 10px 10px 10px;
  overflow: hidden;
  letter-spacing: 1pt;
  color: #353535;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 10px;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.05);
}
.courseTable03 {
  background-color: #e0e3ec;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8em;
  border: 0px solid #eeeeee;
  padding: 25px;
  margin: 10px 10px 10px 10px;
  overflow: hidden;
  letter-spacing: 1pt;
  color: #353535;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 10px;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.05);
}
.courseTable04 {
  background-color: #ebe2d3;
  display: inline-block;
  font-size: 1rem;
  line-height: 2em;
  border: 0px solid #eeeeee;
  padding: 25px;
  margin: 10px 10px 10px 10px;
  overflow: hidden;
  letter-spacing: 1pt;
  color: #353535;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 10px;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.05);
}
.courseTable05 {
  background-color: #eceae1;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8em;
  border: 0px solid #eeeeee;
  padding: 25px;
  margin: 10px 10px 10px 10px;
  overflow: hidden;
  letter-spacing: 1pt;
  color: #353535;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 10px;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.05);
}
.courseTableFB {
  background-color: #e3d9d9;
  display: inline-block;
  font-size: 1rem;
  border: 0px solid #eeeeee;
  padding: 50px;
  margin: 10px 10px 10px 10px;
  overflow: hidden;
  letter-spacing: 1pt;
  color: #353535;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 10px;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.05);
}
.ad-container {
  width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.ad-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.ad-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .ad-content {
    display: none;
  }
}
.ad-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
}
.ad-content h3 {
  margin-bottom: 4vh;
  font-size: 1.2em;
}
.ad-content p {
  margin-bottom: 4vh;
  font-size: 1em;
}
.ad-content a {
  display: inline-block;
  padding: 8px 16px;
  background: #ff5722;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}
.ad-content a:hover {
  background: #e64a19;
}
.ad-nav {
  position: absolute;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.ad-nav-item {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.ad-nav-item.active {
  background: white;
}
.ad-prev,
.ad-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}
.ad-prev:hover,
.ad-next:hover {
  background: rgba(0, 0, 0, 0.8);
}
.ad-prev {
  left: 20px;
}
.ad-next {
  right: 20px;
}
.introfont {
	border-spacing: 0px;
	font-size: 0.8rem;
	line-height: 1.2rem;
	color: #868686;
}
.introType1font {
	border-spacing: 0px;
	font-size: 0.8rem;
	line-height: 1.2rem;
	color: #727272;
}
.booknamegray {
	color: #666666;
}
.red {
	color: #FF0000;
}
.wordplayg {
	color: #339900;
}
.wordplayv {
	color: #9966FF;
}
.wordplayred {
	color: #990066;
}
.white {
	color: #FFFFFF;
}
.v {
	color: #9900FF;
}
.R {
	color: #FF0033;
}
.pink {
	color: #FF6666;
}
.yellow01 {
	color: #FFFF33;
}
.gray {
	color: #888888;
}
.gray01 {
	color: #999999;
}
.blue01 {
	color: #006699;
	text-decoration: none;
}
.yourip {
	font-size: 0.8rem;
	color: #338333;
	text-decoration: none;
}
.ToPOnlySalebyInternet {
	font-size: 0.8rem;
	COLOR: #057ca9;
	TEXT-DECORATION: yes;
}
.ToPOnlySalebyInternet A:link {
	font-size: 0.8rem;
	COLOR: #057ca9;
	TEXT-DECORATION: yes;
}
.ToPOnlySalebyInternet A:visited {
	font-size: 0.8rem;
	COLOR: #057ca9;
	TEXT-DECORATION: yes;
}
.ToPOnlySalebyInternet A:hover {
	font-size: 0.8rem;
	COLOR: #057ca9;
	TEXT-DECORATION: yes;
}
.bookname {
	color: #000000;
}
.goods1 {
	table-layout: fixed;
	font-size: 0.7rem;
	line-height: 1rem;
	color: #363636;
	background-color: rgba(252, 3, 3, 0.3);
}
.goods {
	table-layout: fixed;
	font-size: 0.75rem;
	line-height: 1.2rem;
	color: #282828;
}
.goods A:link {
	table-layout: fixed;
	font-size: 0.75rem;
	color: #575757;
}
.goods A:visited {
	table-layout: fixed;
	font-size: 0.75rem;
	color: #50370f;
}
.goods A:hover {
	table-layout: fixed;
	font-size: 0.75rem;
	color: #000000;
}
.tb01 {
	color: #546F02;
}
HR {
	border-top: 1px dotted #dddddd noshade;
	height: 1px;
	overflow: hidden;
	border-right: 0px none #ffffff;
	border-bottom: 0px none #ffffff;
	border-left: 0px none #ffffff;
}
.hr01 {
	border-top: 1px solid #609748;
	border-right: 0px none #ffffff;
	border-bottom: 0px none #ffffff;
	border-left: 0px none #ffffff;
}
.nextpage,
.nextpage:focus {
	background: transparent;
	color: #878787;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	padding: 5px 10px;
	margin: 5px;
	border: 1px solid #878787;
	border-radius: 3px;
}
.nextpage:hover {
	color: #fd5406;
	border: 1px solid #fd5406;
}
.nextpruduct {
	COLOR: #B4B4B4;
	TEXT-DECORATION: yes;
}
.nextpruduct A:link {
	COLOR: #B4B4B4;
	TEXT-DECORATION: yes;
}
.nextpruduct A:visited {
	COLOR: #B4B4B4;
	TEXT-DECORATION: yes;
}
.nextpruduct A:hover {
	COLOR: #FC03B9;
	TEXT-DECORATION: yes;
}
.bder01 {
	border-bottom: #00aeef 2px dotted;
	margin: 2px 2px 2px 2px;
	background-color: #ffffff;
}
.bder02 {
	border-top: #00aeef 2px dotted;
	margin: 2px 2px 2px 2px;
	background-color: #ffffff;
}
.topcat {
	COLOR: #737373;
	TEXT-DECORATION: none;
}
.topcat A:link {
	COLOR: #737373;
	TEXT-DECORATION: none;
}
.topcat A:visited {
	COLOR: #737373;
	TEXT-DECORATION: none;
}
.topcat A:hover {
	COLOR: black;
	TEXT-DECORATION: none;
}
.viewcart {
	COLOR: #ff0000;
	TEXT-DECORATION: none;
}
.viewcart A:link {
	COLOR: #ff0000;
	TEXT-DECORATION: none;
}
.viewcart A:visited {
	COLOR: #ff0000;
	TEXT-DECORATION: none;
}
.viewcart A:hover {
	COLOR: #000000;
	TEXT-DECORATION: none;
}
.topcart {
	COLOR: #bbbbbb;
	TEXT-DECORATION: none;
}
.topcart A:link {
	COLOR: #7C00BC;
	TEXT-DECORATION: none;
}
.topcart A:visited {
	COLOR: #7C00BC;
	TEXT-DECORATION: none;
}
.topcart A:hover {
	COLOR: EC008C;
	TEXT-DECORATION: none;
}
.toporderstatus {
	COLOR: #bbbbbb;
	TEXT-DECORATION: none;
}
.toporderstatus A:link {
	COLOR: #0072BC;
	TEXT-DECORATION: none;
}
.toporderstatus A:visited {
	COLOR: #0072BC;
	TEXT-DECORATION: none;
}
.toporderstatus A:hover {
	COLOR: EC008C;
	TEXT-DECORATION: none;
}
.cart {
	COLOR: #0d0909;
	TEXT-DECORATION: none;
}
.cart A:link {
	COLOR: #000000;
	TEXT-DECORATION: underline;
}
.cart A:visited {
	COLOR: #000000;
	TEXT-DECORATION: none;
}
.cart A:hover {
	COLOR: #000000;
	TEXT-DECORATION: underline;
}
.login {
	COLOR: #6633ff;
	TEXT-DECORATION: none;
}
.login A:link {
	COLOR: #6633ff;
	TEXT-DECORATION: none;
}
.login A:visited {
	COLOR: #6633ff;
	TEXT-DECORATION: none;
}
.login A:hover {
	COLOR: #6633ff;
	TEXT-DECORATION: none;
}
.hm {
	BORDER-RIGHT: #cccccc 0px dotted;
	BORDER-TOP: #cccccc 0px dotted;
	font-size: 0.65rem;
	BORDER-LEFT: #cccccc 0px dotted;
	BORDER-BOTTOM: #cccccc 1px dotted;
	BACKGROUND-COLOR: #ffffff;
}
.hm00 {
	COLOR: #666666;
	TEXT-DECORATION: none;
}
.hm01 {
	COLOR: #999999;
	TEXT-DECORATION: none;
}
.hm02 {
	COLOR: blue;
	TEXT-DECORATION: none;
}
.hm03 {
	BORDER-RIGHT: #cccccc 1px dashed;
	BORDER-TOP: #cccccc 1px dashed;
	font-size: 0.5rem;
	BORDER-LEFT: #cccccc 1px dashed;
	COLOR: #666666;
	BORDER-BOTTOM: #cccccc 1px dashed;
	BACKGROUND-COLOR: #ffffff;
	TEXT-DECORATION: none;
}
.hmPrm {
	COLOR: orangered;
	font-weight: bold;
	TEXT-DECORATION: none;
}
.hmred {
	COLOR: red;
	TEXT-DECORATION: none;
}
.price {
	COLOR: red;
	TEXT-DECORATION: none;
}
.adm01 {
	COLOR: #000000;
}
.adm02 {
	COLOR: #ff0000;
}
.adm03 {
	COLOR: #999999;
}
.adm04 {
	COLOR: #0000ff;
}
.adm05 {
	COLOR: #009900;
}
.hmwhite {
	font-size: 0.7rem;
	COLOR: #ffffff;
}
.hmwhite A:link {
	COLOR: #ffffff;
	TEXT-DECORATION: none;
}
.hmwhite A:visited {
	COLOR: #ffffff;
	TEXT-DECORATION: none;
}
.hmwhite A:hover {
	COLOR: #ffffff;
	TEXT-DECORATION: true;
}
.CenterMiddle {
	margin: auto;
	padding: auto;
	text-align: center;
}
.wireFtb01 {
	background-color: #FFF0B5;
	border-radius: 5px;
	COLOR: #272727;
	width: 85vw;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border: 0px solid black;
	margin: auto;
}
.wireFtb02 {
	background-color: #0189B6;
	border-radius: 5px;
	COLOR: #272727;
	width: 85vw;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border: 0px solid black;
	margin: auto;
}
.wireFtb03 {
	background-color: #006600;
	border-radius: 5px;
	COLOR: #272727;
	width: 85vw;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border: 0px solid black;
	margin: auto;
}
.table01 {
	BORDER-RIGHT: #ff6600 1px solid;
	BORDER-TOP: #ff6600 1px solid;
	BORDER-LEFT: #ff6600 1px solid;
	BORDER-BOTTOM: #ff6600 1px solid;
	BORDER-COLLAPSE: collapse;
}
.table02 {
	BORDER-RIGHT: #48e7f9 1px solid;
	BORDER-TOP: #48e7f9 1px solid;
	BORDER-LEFT: #48e7f9 1px solid;
	BORDER-BOTTOM: #48e7f9 1px solid;
	BORDER-COLLAPSE: collapse;
}
.table03 {
	BORDER-RIGHT: #a0bc80 3px dashed;
	BORDER-TOP: #a0bc80 3px dashed;
	BORDER-LEFT: #a0bc80 3px dashed;
	BORDER-BOTTOM: #a0bc80 3px dashed;
	BORDER-COLLAPSE: collapse;
}
.table04 {
	BORDER-RIGHT: #dddddd 2px dashed;
	BORDER-TOP: #dddddd 2px dashed;
	BORDER-LEFT: #dddddd 2px dashed;
	BORDER-BOTTOM: #dddddd 2px dashed;
	BORDER-COLLAPSE: collapse;
}
.table05 {
	BORDER-RIGHT: #ffc81d 1px solid;
	BORDER-TOP: #ffc81d 1px solid;
	BORDER-LEFT: #ffc81d 1px solid;
	BORDER-BOTTOM: #ffc81d 1px solid;
	BORDER-COLLAPSE: collapse;
}
.table06 {
	BORDER-RIGHT: #dddddd 1px solid;
	BORDER-TOP: #dddddd 1px solid;
	BORDER-LEFT: #dddddd 1px solid;
	BORDER-BOTTOM: #dddddd 1px solid;
	BORDER-COLLAPSE: collapse;
}
.table07 {
	BORDER-RIGHT: #f6f6f6 0px double;
	BORDER-TOP: #f6f6f6 2px double;
	BORDER-LEFT: #f6f6f6 2px double;
	BORDER-BOTTOM: #f6f6f6 0px double;
	BORDER-COLLAPSE: collapse;
}
.table08 {
	BORDER-RIGHT: #ffffff 0px double;
	BORDER-TOP: #ffffff 0px double;
	BORDER-LEFT: #ffffff 0px double;
	BORDER-BOTTOM: #f6f6f6 0px ffffff;
	BORDER-COLLAPSE: collapse;
}
.orderprint {
	font-size: 0.7rem;
	border: 1px #999900;
	color: #999900;
}
.FS-0_7 {
	font-size: 0.7rem;
}
.FS-0_8 {
	font-size: 0.8rem;
}
.FS-0_9 {
	font-size: 0.9rem;
}
.FS-1_5 {
	font-size: 1.5rem;
}
.TC01 {
	line-height: 1.5rem;
	color: #272727;
}
.TC02 {
	line-height: 1.5rem;
	COLOR: #666666;
}
.TC02-sm {
	font-size: 0.7rem;
	COLOR: #666666;
}
.TC03 {
	line-height: 1.5rem;
	COLOR: #FF0099;
	line-height: 1rem;
}
.TC04 {
	line-height: 1.5rem;
	COLOR: #0066ff;
}
.TC05 {
	line-height: 1.5rem;
	COLOR: #3333ff;
}
.TC06 {
	line-height: 1.5rem;
	COLOR: #bf1004;
}
.TC07 {
	line-height: 1.5rem;
	COLOR: #720800;
}
.TC08 {
	line-height: 1.5rem;
	COLOR: #cc5c00;
}
.TC10 {
	line-height: 1.5rem;
	COLOR: #0575E2;
	line-height: 1.1rem;
}
.TC12 {
	line-height: 1.5rem;
	COLOR: #cc00cc;
}
.TC15,
.TC15 a {
	color: #FF6600;
	line-height: 1.1rem;
}
.TC16 {
	color: #009900;
}
.TC22 {
	padding: 2px;
	line-height: 1.5rem;
	border-spacing: 2px;
	COLOR: #363636;
	background-color: #9DEDFE;
	padding: 8px;
	margin: 5px;
	TEXT-DECORATION: none;
	border-radius: 5px;
}
.auth-Input {
	background-color: rgb(225, 224, 224);
	color: black;
	border: none;
	padding: 10px 15px;
	outline: none;
	border-radius: 25px;
}
.auth-Input::placeholder {
	color: rgb(65, 107, 205);
	opacity: 1;
}
.auth-Input:focus {
	color: blue;
}
.white {
	COLOR: #ffffff;
}
.white01 {
	font-size: 0.5rem;
	COLOR: #ffffff;
}
.itemapprox {
	text-align: left;
	margin: 15px 20px;
	font-size: 0.8rem;
	line-height: 1.5rem;
	COLOR: #666666;
}
.goodscolourbias {
	margin: 15px 0px;
	font-size: 0.8rem;
	line-height: 1.2rem;
	COLOR: #666666;
}
.dalo {
	BORDER-RIGHT: #f9acd9 1px solid;
	BORDER-TOP: #f9acd9 1px solid;
	BORDER-LEFT: #f9acd9 1px solid;
	COLOR: #000000;
	BORDER-BOTTOM: #f9acd9 1px solid;
	BACKGROUND-COLOR: #ffffff
}
.dalotitle {
	COLOR: #990033;
}
.hmrow2 {
	BORDER-RIGHT: #cccccc 0px dotted;
	BORDER-TOP: #cccccc 0px dotted;
	font-size: 0.65rem;
	BORDER-LEFT: #cccccc 0px dotted;
	BORDER-BOTTOM: #cccccc 1px dotted;
	BACKGROUND-COLOR: #ffffff;
}
.hmrow1 {
	margin: 6px;
	padding: 6px;
	border-radius: 3px 3px 3px 3px;
}
.sofarplace {
	display: block;
	text-align: left;
	font-size: 0.7rem;
	color: #cfd8e3;
}
.sofarplace A:link {
	margin: 7px;
	font-size: 0.75rem;
	COLOR: #e4e4e4;
	TEXT-DECORATION: none;
}
.sofarplace A:visited {
	font-size: 0.75rem;
	COLOR: #e4e4e4;
	TEXT-DECORATION: none;
}
.sofarplace A:hover {
	font-size: 0.75rem;
	COLOR: #ffffff;
	TEXT-DECORATION: none;
}
.cartprice01 {
	color: #FF0000;
	font-weight: bold;
}
.price-list-table-01 {
	background-color: #fcf7de;
	border-color: red;
	border-width: 3px;
	margin: 0px;
	padding: 6px;
	border-radius: 3px 3px 3px 3px;
}
.cartword01 {
	border-width: 3px;
	margin: 0px;
	padding: 0px;
	border-spacing: 2px;
	border-radius: 3px 3px 3px 3px;
	color: #000000;
}
.cartmarketprice {
	border-color: blue;
	border-width: 3px;
	color: #999999;
	text-decoration: line-through;
}
.carthr01 {
	color: #FF99CC;
	border: 0px none #666666;
}
.cartqt {
	color: #0066FF;
}
.gdName {
	font-size: 2rem;
	line-height: 2.5rem;
}
.gdlist01 {
	font-size: 0.75rem;
	line-height: 1rem;
	background-color: #e5e5e5;
}
.cartscale01 {
	color: #388838;
}
.title {
	background-repeat: no-repeat;
	line-height: 28px;
	font-weight: bold;
	color: #3e5663;
	justify-content: center;
	align-items: center;
	text-align: left;
	font-size: 1.5rem;
}
.title02 {
	background-repeat: no-repeat;
	font-weight: bold;
	color: #415059;
	justify-content: center;
	align-items: center;
	text-align: left;
	font-size: 1.2rem;
}
.window01 {
	background-color: #ffffff;
}
.window02 {
	background-color: #FFFFFF;
}
.gdlist02 {
	text-align: left;
	color: #aeaeae;
	padding: 10px;
	background-color: #ebf7f7;
	border-radius: 3px;
}
.introBd {
	text-align: left;
	color: #aeaeae;
	padding: 10px;
	background-color: #ebf7f7;
	border-radius: 3px;
}
.introType1Bd {
	color: #cccccc;
	border: 1px #ccc solid;
	border-radius: 3px;
	padding: 10px;
	color: #c0bfbf;
	background-color: #ffffff;
	width: 100%;
}
.store {
	color: #FF0033;
}
.lackstore {
	color: #9933CC;
}
.membertr01 {
	padding: 2px;
	border-spacing: 2px;
	COLOR: #363636;
	background-color: #DDFAFF;
	TEXT-DECORATION: none;
	border-top: 0px solid #ffffff;
	border-right: 0px solid #ffffff;
	border-bottom: 0px solid #ffffff;
	border-left: 0px solid #ffffff;
}
.membertr02 {
	padding: 2px;
	border-spacing: 2px;
	COLOR: #363636;
	background-color: #9DEDFE;
	TEXT-DECORATION: none;
	border-top: 0px solid #ffffff;
	border-right: 0px solid #ffffff;
	border-bottom: 0px solid #ffffff;
	border-left: 0px solid #ffffff;
}
.membertr03 {
	padding: 2px;
	border-spacing: 2px;
	COLOR: #363636;
	background-color: #e0e0e0;
	TEXT-DECORATION: none;
	border-top: 0px solid #ffffff;
	border-right: 0px solid #ffffff;
	border-bottom: 0px solid #ffffff;
	border-left: 0px solid #ffffff;
}
.memberhead01 {
	padding: 2px;
	border-spacing: 2px;
	COLOR: #363636;
	TEXT-DECORATION: none;
	border-top: 0px solid #ffffff;
	border-right: 0px solid #ffffff;
	border-bottom: 0px solid #ffffff;
	border-left: 0px solid #ffffff;
}
.membertr05 {
	padding: 2px;
	border-spacing: 2px;
	COLOR: #000000;
	background-color: #F3F3F3;
	TEXT-DECORATION: none;
	border-top: 1px solid #778899;
	border-right: 1px solid #778899;
	border-bottom: 1px solid #778899;
	border-left: 1px solid #778899;
}
.membertr04 {
	padding: 7px;
	border-spacing: 2px;
	COLOR: #363636;
	background-color: #FFFFFF;
	TEXT-DECORATION: none;
	border-top: 1px solid #778899;
	border-right: 1px solid #778899;
	border-bottom: 1px solid #778899;
	border-left: 1px solid #778899;
}
.membertr06 {
	padding: 2px;
	border-spacing: 2px;
	COLOR: #363636;
	background-color: #FFFFBF;
	TEXT-DECORATION: none;
	border-top: 1px solid #778899;
	border-right: 1px solid #778899;
	border-bottom: 1px solid #778899;
	border-left: 1px solid #778899;
}
.member07 {
	padding: 7px;
	border-spacing: 2px;
	COLOR: #000000;
	background-color: #00D8FF;
	TEXT-DECORATION: none;
	font-family: "Arial", "Verdana", "Calibri", "MS UI Gothic";
	border-top: 1px #778899 solid;
	border-right: 1px solid #778899;
	border-bottom: 1px solid #778899;
	border-left: 1px solid #778899;
}
.membertr08 {
	padding: 2px;
	border-spacing: 2px;
	COLOR: #363636;
	background-color: #787878;
	TEXT-DECORATION: none;
	border-top: 1px solid #778899;
	border-right: 1px solid #778899;
	border-bottom: 1px solid #778899;
	border-left: 1px solid #778899;
}
.membertr09 {
	padding: 2px;
	border-spacing: 2px;
	COLOR: #363636;
	background-color: #ffffff;
	TEXT-DECORATION: none;
	line-height: 2.1rem;
	border-color: red;
	border-top: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
}
.membertd01 {
	padding: 3px;
	border-spacing: 0px;
	border-top: 1px solid #778899;
	border-right: 1px solid #778899;
	border-bottom: 1px solid #778899;
	border-left: 1px solid #778899;
}
.membertd02 {
	padding: 3px;
	border-spacing: 0px;
}
.news {
	background-color: #FFFFee;
}
.newsborder {
	border: 0px dotted #ffffff;
}
.news_supply {
	background-color: #FFFFee;
}
.news_bead {
	background-color: #FFFFee;
}
.news_other {
	background-color: #FFFFee;
}
.instruction_table01 {
	background-color: #FFFFFF;
	color: black;
	border-top: 1px ridge #eeeeee;
	border-right: 1px ridge #eeeeee;
	border-bottom: 1px ridge #eeeeee;
	border-left: 1px ridge #eeeeee;
	background-color: #ffffff;
}
.instruction_td {
	background-color: #FFFFFF;
	color: black;
	border-top: 0px ridge #eeeeee;
	border-right: 1px ridge #eeeeee;
	border-bottom: 1px ridge #eeeeee;
	border-left: 0px ridge #eeeeee;
	background-color: #ffffff;
}
.instruction_bg01 {
	color: black;
	background-color: #FFFF00;
	border-top: 0px ridge #eeeeee;
	border-right: 1px ridge #eeeeee;
	border-bottom: 1px ridge #eeeeee;
	border-left: 0px ridge #eeeeee;
}
.instruction_bg02 {
	color: black;
	background-color: #FFFF00;
	border-top: 0px ridge #eeeeee;
	border-right: 1px ridge #eeeeee;
	border-bottom: 1px ridge #eeeeee;
	border-left: 0px ridge #eeeeee;
}
.instruction_bg_step {
	color: black;
	background-color: #E6E6E6;
	border-top: 0px ridge #eeeeee;
	border-right: 1px ridge #eeeeee;
	border-bottom: 1px ridge #eeeeee;
	border-left: 0px ridge #eeeeee;
}
.instruction_f01 {
	font-size: 0.7rem;
	color: blue;
}
.instruction_f02 {
	font-size: 0.7rem;
	color: red;
}
.styleIcon {
	cursor: pointer;
}
.search01 {
	padding: 2px;
	border-spacing: 2px;
	font-size: 0.85rem;
	TEXT-DECORATION: none;
	color: #ff0355;
}
.searchtable {
	background-color: #ffffff;
	border-radius: 38px;
	height: 45px;
	width: auto;
	display: inline-block;
	font-size: 0.8rem;
	border: 0px solid #ffffff;
	padding: 0px;
	margin: 4px 4px 4px 4px;
	overflow: hidden;
	line-height: 1.5em;
	letter-spacing: 1pt;
	color: #353535;
}
#outbox {
	-moz-column-count: 5;
	-moz-column-gap: 10px;
	-webkit-column-count: 5;
	-webkit-column-gap: 10px;
	column-count: 5;
	column-gap: 10px;
	width: 800px;
	margin: 0 auto;
}
.content_box {
	width: 128px;
	display: inline-block;
	font-size: 0.7rem;
	border: 2px solid #eeeeee;
	padding: 10px;
	margin: 5px 5px 5px 0;
	overflow: hidden;
	font-size: 0.9rem;
	line-height: 1.5em;
	letter-spacing: 1pt;
	color: #353535;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.content_box h1 {
	font-size: 0.9rem;
}
.PicRadius01 {
	border-radius: 4px 4px 4px 4px;
}
.PicRadius02 {
	border-radius: 8px 8px 8px 8px;
}
.minwt {
	text-decoration: none;
	color: #fff;
	font-size: 1.1rem;
	font-weight: bold;
	background: #0066FF;
	padding: 5px 15px;
	float: right;
}
.ajaxMSG01 {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	background-color: #0e8aff;
	font-weight: bold;
	text-align: center;
	border-radius: 50%;
	border: 2px solid #ffffff;
	transform: translate(-50%, -50%);
	z-index: 9997;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ajaxMSG01Content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 200px;
	color: white;
	font-size: 1.5rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
}
.ajaxMSG02 {
	position: fixed;
	bottom: 0;
	right: 0;
	height: 30px;
	width: 100px;
	background-color: #FF0087;
	COLOR: #ffffff;
	font-size: 0.85rem;
	z-index: 9998;
}
.TopIcon-text {
	margin-right: 5px;
}
@media screen and (max-width: 768px) {
	#logopic {
		width: 150px;
	}
	#pic2 {
		width: 250px;
	}
	.Hide {
		display: none;
	}
	.TopIcon-text {
		display: none;
	}
}