@charset "utf-8";
*,
*:after,
*:before {
}
*{
	margin: 0px;
	padding: 0px;
	font-size: 14px;
}
body{
	width: 100%;
	margin: 0px auto;
	padding: 0px;
}
.Outline{
  text-indent: -9999px;
  float:left;
  display: none;
}
.Modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
    display: none;
}
.Button{
	padding: 5px 20px;
	border-radius: 8px;
    border: none;
    background-color: rgb(3, 59, 80);
    color: #fff;
    margin: 8px 16px;
}
.Button:hover{
    cursor: pointer;
}
.StandardInput{
	padding-left: 1em;
	border-width: 1px;
	border-radius: 4px;
    border-color: #007bff;
}
.Row{
	margin:8px auto;
    width: 1280px;
}
.Logo{
	margin: 6px;
    width: 48px;
    display: inline-block;
}
.MenuItems{
	margin: 0px 0px 0px 0px;
	background-color: white;
    display: block;
}
.MenuItems li{
	float: right;
	color: rgb(30, 30, 30);
	text-align: center;
	line-height: 48px;
	list-style: none;
	margin: 4px;
	padding: 0px 12px;
    display: block;
}
.MenuItems ul li{
    text-decoration: none;
    display: inline-block;
}
.MenuItems ul li:hover{
	border-style: solid;
	border-color: #0792e2;
	border-width: 0px 0px 2px 0px;
	color: 004aff;
	cursor: pointer;
}
.MenuItems ul li:link{
	color: rgb(30, 30, 30);
}
.MenuItems ul li a:visited{
	color: rgb(30, 30, 30);
}
.Expaneded{
    display: block;
}
.HP{
	padding:16px 12px 16px 12px;
	font-size: 24px;
	font-weight: bold;
}
.BookItemBig{
    width: 290px;
    margin-bottom: 30px;
    /*height: 300px;*/
    border-radius: 4px;
    transition: transform 0.2s ease;
}
.BookItemBig:hover{
    cursor: pointer;
    animation: MoveUp 0.2s forwards;
}
.BookItemBigIcon{
    width: 100%;
    border-radius: 4px 4px 0px 0px;
    height: 290px;
    object-fit: contain;
}
.Catagory {
    padding: 12px 12px;
}
.Catagory:hover{
    background-color: rgb(240, 240, 240);
}
.Catagory0 {
    color: rgb(0, 0, 0);
    font-weight: bold;
    text-decoration: none;
}
.Catagory0:hover{
    text-decoration: underline;
    cursor: pointer;
}
.Catagory1 {
    color: rgb(150, 150, 150);
    text-decoration: none;
}
.Catagory1:hover{
    text-decoration: underline;
    cursor: pointer;
}
.PopupBookListPanel{
    position: absolute;
    top: 72px;
    left: calc(50vw - 640px + 200px);
    display: none;
    width: 600px;
    height: 344px;
    background-color: white;
    padding: 32px 16px;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: gray;
    box-shadow: 10px 10px 12px rgba(0, 0, 0, 0.2);
}
.BottomLink {
    text-decoration: none;
}
.BottomLink:hover{
    text-decoration: underline;
    cursor: pointer;
}
.DownloadAppPopupTrigger {
    display: inline-block;
    cursor: pointer;
}
.DownloadAppPopupDiv {
    position: absolute;
    top: 48px;
    left: calc(50vw + 640px - 200px - 112px);
    display: none;
    width: 166px;
    height: 210px;
    background-color: white;
    padding: 6px;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: gray;
}
.DownloadAppPopupTrigger:hover + .DownloadAppPopupDiv {
    display: block;
}
.PrevBook{
    padding: 8px 8px 8px 16px; 
    width: 32px;
    height: 32px;
}
.NextBook{
    padding: 8px 16px 8px 8px; 
    width: 32px;
    height: 32px;
}
.PrevBook:hover{
    cursor: pointer;
}
.NextBook:hover{
    cursor: pointer;
}
.BusinessName{
    font-size: 28;
    font-style: italic;
    color: rgb(100, 100, 100);
}
.BusinessName:hover{
    cursor: pointer;
}
@keyframes MoveUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-8px);
    }
}