/*
@font-face {
		font-family: 'UbuntuCondensed'; 
		src: url('../fonts/ubuntu-condensed-regular.woff') format('woff');
		font-display: swap;
}
@font-face {
		font-family: 'Ubuntu'; 
		src: url('../fonts/Ubuntu-Regular.woff') format('woff');
		font-display: swap;
}
@font-face {
		font-family: 'Ubuntu'; 
		src: url('../fonts/Ubuntu-Bold.woff') format('woff');
		font-display: swap;
		font-weight:bold;
}
@font-face {
		font-family: 'Ubuntu'; 
		src: url('../fonts/Ubuntu-Italic.woff') format('woff');
		font-display: swap;
		font-style:italic;
}
*/
 /*
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  */
* {box-sizing: border-box;}
div {
	position:relative;
}
body {
    /*font-family: 'Ubuntu', 'Roboto', Arial, sans-serif; */
	font-family:roboto, arial, sans-serif;
    margin: 0;
    transition: all 0.6s ease;
    opacity: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
	background: #fafafa;
	font-size: 13px;
	display: grid;
    grid-template-columns: 175px 1fr;
	line-height:1.3;
}
body.loaded {opacity: 1;}
a {
    color: #0645ad;
	text-decoration: none;
}
a:hover {
    text-decoration: underline;
}



aside {
    width: 100%;
    position: sticky;
    top: 0;
    padding: 0 12px; 
}
aside .logo {
    width: 100%;
    display: block;
    margin-bottom: 24px;
}
aside .logo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}
 nav a {
    padding: 3px 0;
    display: block;
}
 nav ins {
    display: block;
    margin-top: 20px;
    text-decoration: none;
    color: #54595d;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4px;
    margin-bottom: 4px;
}
main {
    min-height: 100vh;
    min-height: 100svh;
}
 
 header {
    height: 42px;
    border-bottom: 1px solid #ebebeb;
    background: #fcfcfc;
}
header .toptop {
    height: 42px;
    display: flex;
    justify-content: flex-end;
    padding: 4px 16px;
    align-items: center;
    gap: 20px;
}
.search  .input {
    width: 100%;
    height: 100%;
    background: #fff;
    color: #343434;
    border: 1px solid #ddd;
    height: 34px;
    display: grid;
    grid-template-columns: 1fr 34px;
	align-items: center;
}
.search .input input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding-left: 10px;
}
.search .input ins {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M12.2 13.6a7 7 0 1 1 1.4-1.4l5.4 5.4-1.4 1.4zM3 8a5 5 0 1 0 10 0A5 5 0 0 0 3 8'/%3E%3C/svg%3E%0A");
    opacity: 0.7;
}
header .toptop .right {
    display: flex;
    gap: 10px;
}
 
 
.like {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.like i {
    color: #cc0000;
    font-size: 25px;
}
.like span {
    color: #777;
    font-size: 12px;
}


article {
    background: #fff;
    padding: 10px 20px;
    border: 1px solid #a7d7f9;
    margin-bottom: 24px;
}
article .content .title h1 {
    font-size: 28px;
    font-weight: normal;
    margin: 0;
    margin-bottom: 10px;
    padding-bottom: 6px;
    display: block;
    line-height: 1.3;
    border-bottom: 1px solid #555;
}
article .content .title {
    margin-top: 15px;
    margin-bottom: 24px;
}
article .content .title span {
    display: block;
    color: #343434;
    font-size: 12px;
}
article .content {
    font-size: 15px;
    line-height: 1.5;
}

.paramstable {
    float: right;
    margin: 20px;
    margin-right: 0;
    border: 0px solid #ccc;
    padding: 0;
    width: 290px;
    font-size: 13px;
    background: #fff;
    z-index: 1;
}
.paramstable table {
    border: 1px solid #ddd;
}
.paramstable table th {
    background: #cfe3ff;
    padding: 6px;
}
.paramstable table td[colspan="2"] {
    text-align: center;
}
.paramstable table td {
    padding: 4px 10px;
}
.paramstable table td .collapsed {
    display: none;
}
.paramstable table td .collapsed.active {
    display: block;
}
.paramstable table td .shownextitem {
    border-bottom: 1px dashed #666;
    cursor: pointer;
}
 
article .text h2 {
    font-size: 21px;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
    padding-bottom: 4px;
    margin-bottom: 8px;
}

 article .text .toctitle {
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    padding: 10px;
    margin: 20px 0;
    max-width: 280px;
    font-size: 13px;
}
article .text .toctitle h2 {
    margin: 0;
    font-size: 18px;
}
article .toctitle ol {
    padding: 0;
    list-style-position: inside;
}

footer {
    margin-bottom: 24px;
    font-size: 13px;
    color: #777;
}
footer div {
    margin-bottom: 10px;
}
blockquote {
    background: #eee;
    padding: 20px;
    margin: 10px 0;
    font-style: italic;
}
.logo-m {display:none;}
table {
    width: 100%;
    border-collapse: collapse;
}
footer {
    padding: 0 24px;
}
.like * {
    pointer-events: none;
}
time {
    margin-left: 4px;
}

article table {
    margin: 20px 0;
    border: 1px solid #ddd;
}
article table th {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 4px 10px;
}
article table td {
    border: none;
    padding: 4px 10px;
}
.articlenotes {
    margin-top: 24px;
    display: block;
    padding-top: 8px;
    border-top: 1px solid #9f9e9e;
    opacity: 0.6;
}

article .text table th {
    background: #cfe3ff;
}
pre {
    display: block;
    white-space: break-spaces;
}
.alsoblock {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
    gap: 1px 6px;
    font-size: 12px;
}
.alsoblock span:after {
    content: '|';
    padding-left: 6px;
}
.searchresults {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    padding: 12px;
    z-index: 10;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 217px;
    max-height: calc(100vh - 240px);
    max-height: 320px;
    overflow: auto;
}
.searchactive .searchresults {
    display: block; 
}
.searchresults span {
    display: block;
    margin-bottom: 4px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
    line-height: 1.2;
    font-size: 11px;
}













@media (max-width: 768px) { 


aside {
    display: none;
}
body {
    grid-template-columns: 1fr;
}
header {
    background-color: #eaecf0;
    border: 0;
    box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.08);
    height: 55px;
}
.logo-m {
    display: block;
}
.logo-m img {
    height: 42px;
    width: 150px;
    object-fit: contain;
    object-position: center left;
    display: block;
}
header .toptop {
    height: 100%;
    justify-content: space-between;
}
.paramstable {
    float: none;
    width: 100%;
    margin: 20px 0;
}
header .toptop .right {
    display: none;
}
body {min-width:350px;}


}

@media (max-width: 576px) { 
}





















 
 
 