
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_a82d98f12fd07bc2b5b58505.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b5778fc4f81d37f206da0b44.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.727000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dfab5d44fc56284467ebdf1f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_aa3d426a6ea171f1b588f865.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b47441d049860b5849a2cdeb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e34a18e697159d90ce560964.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_41bb9e2b0143d93b1e3b33fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7da409d25fca2419484c8bca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_494200413226b13458789051.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_975fea2e812b4eaa109261a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ab8ec9f7f16fb5c63e3dcb87.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9dd861698c22a36258135905.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fd34eaad4d36f5436a438780.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5f7be3d203d6e275963f6ed4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5dccff0e4eea2eea14e9ab7d.woff2')format("woff");}.fff{font-family:fff;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5c15b687bad5215b85f5d103.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4a629415fc78ea12f707ffe7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c8e60c63aec302ff3daee291.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_62003316d22a63370efb6a64.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.959473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_39991c92358d2c5382641a6f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.947754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e1a71c79807b234fba7c0725.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-48.950998px;}
.ws1{word-spacing:-20.015999px;}
.ws3{word-spacing:-20.003905px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-8.956324px;}
._5{margin-left:-7.616535px;}
._2{margin-left:-5.490555px;}
._3{margin-left:-3.906164px;}
._b{margin-left:-2.460941px;}
._0{margin-left:-1.296931px;}
._9{width:1.294319px;}
._8{width:2.879205px;}
._1{width:4.499995px;}
._6{width:184.555117px;}
._a{width:251.999970px;}
._7{width:1933.384419px;}
.fc5{color:transparent;}
.fc3{color:rgb(7,39,113);}
.fc2{color:rgb(51,134,176);}
.fc1{color:rgb(9,33,112);}
.fc6{color:rgb(32,32,32);}
.fc4{color:rgb(68,68,68);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:44.999998px;}
.fs6{font-size:49.499998px;}
.fs5{font-size:62.999997px;}
.fs2{font-size:71.999997px;}
.fs4{font-size:80.999997px;}
.fs3{font-size:89.999996px;}
.fs1{font-size:188.999992px;}
.y0{bottom:0.000000px;}
.y37{bottom:13.886711px;}
.y18{bottom:24.011711px;}
.y36{bottom:42.011710px;}
.y1{bottom:42.363336px;}
.y17{bottom:51.011710px;}
.y35{bottom:70.136709px;}
.y16{bottom:78.011709px;}
.y34{bottom:98.261708px;}
.y33{bottom:126.386707px;}
.y19{bottom:142.136706px;}
.y32{bottom:154.511706px;}
.y15{bottom:188.261704px;}
.y31{bottom:200.636704px;}
.y4b{bottom:211.886703px;}
.y14{bottom:215.261703px;}
.y4a{bottom:226.511703px;}
.y30{bottom:228.761702px;}
.y49{bottom:240.011702px;}
.y13{bottom:242.261702px;}
.y48{bottom:254.636701px;}
.y2f{bottom:256.886701px;}
.y47{bottom:268.136701px;}
.y12{bottom:269.261701px;}
.y2e{bottom:285.011700px;}
.y11{bottom:296.261700px;}
.y10{bottom:323.261699px;}
.y2d{bottom:334.511698px;}
.yf{bottom:350.261697px;}
.y46{bottom:351.386697px;}
.ye{bottom:404.261695px;}
.y2c{bottom:416.636695px;}
.y45{bottom:430.136694px;}
.yd{bottom:431.261694px;}
.y2b{bottom:443.636694px;}
.yc{bottom:458.261693px;}
.y2a{bottom:470.636692px;}
.yb{bottom:485.261692px;}
.y29{bottom:497.636691px;}
.y44{bottom:517.886690px;}
.ya{bottom:533.636690px;}
.y43{bottom:550.511689px;}
.y28{bottom:551.636689px;}
.y9{bottom:565.136688px;}
.y27{bottom:579.761688px;}
.y42{bottom:583.136688px;}
.y26{bottom:607.886687px;}
.y8{bottom:616.886686px;}
.y25{bottom:636.011685px;}
.y7{bottom:645.011685px;}
.y41{bottom:652.886685px;}
.y6{bottom:673.136684px;}
.y24{bottom:692.261683px;}
.y40{bottom:693.386683px;}
.y23{bottom:720.386682px;}
.y5{bottom:739.511681px;}
.y3f{bottom:747.386681px;}
.y22{bottom:748.511681px;}
.y4{bottom:771.011680px;}
.y3e{bottom:774.386680px;}
.y21{bottom:776.636680px;}
.y3d{bottom:801.386679px;}
.y3{bottom:802.511679px;}
.y20{bottom:804.761678px;}
.y1f{bottom:853.136676px;}
.y3c{bottom:859.886676px;}
.y1e{bottom:885.761675px;}
.y3b{bottom:892.511675px;}
.y38{bottom:984.761671px;}
.y4c{bottom:991.511671px;}
.y2{bottom:1027.511669px;}
.y1d{bottom:1030.886669px;}
.y3a{bottom:1055.636668px;}
.y1c{bottom:1057.886668px;}
.y1a{bottom:1075.886667px;}
.y39{bottom:1083.761667px;}
.y1b{bottom:1084.886667px;}
.h2{height:32.387694px;}
.h11{height:32.695311px;}
.h12{height:32.739256px;}
.hf{height:33.156737px;}
.h10{height:33.376463px;}
.hd{height:36.037352px;}
.ha{height:46.052998px;}
.h4{height:51.983998px;}
.h7{height:52.136717px;}
.he{height:52.417967px;}
.hb{height:52.631998px;}
.h6{height:52.945310px;}
.hc{height:53.050779px;}
.h8{height:53.402342px;}
.h9{height:58.970212px;}
.h5{height:65.789997px;}
.h3{height:134.945994px;}
.h1{height:1104.011666px;}
.h0{height:1188.000000px;}
.w1{width:834.011677px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:22.499999px;}
.x1{left:41.624998px;}
.x6{left:113.624995px;}
.xd{left:123.082026px;}
.xb{left:133.224604px;}
.x15{left:137.707026px;}
.x11{left:147.374994px;}
.x7{left:153.439447px;}
.xe{left:158.624993px;}
.x8{left:173.425774px;}
.x3{left:193.359367px;}
.x13{left:200.583982px;}
.x16{left:215.156241px;}
.x10{left:216.878897px;}
.x18{left:263.109364px;}
.xf{left:264.884760px;}
.x9{left:267.521479px;}
.x14{left:271.283197px;}
.xc{left:287.964832px;}
.x5{left:294.873040px;}
.x17{left:299.689446px;}
.x1a{left:329.044914px;}
.x12{left:337.376945px;}
.x2{left:339.943351px;}
.x4{left:410.800764px;}
.x19{left:415.810535px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-43.511998pt;}
.ws1{word-spacing:-17.791999pt;}
.ws3{word-spacing:-17.781249pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-7.961177pt;}
._5{margin-left:-6.770253pt;}
._2{margin-left:-4.880493pt;}
._3{margin-left:-3.472146pt;}
._b{margin-left:-2.187503pt;}
._0{margin-left:-1.152828pt;}
._9{width:1.150506pt;}
._8{width:2.559293pt;}
._1{width:3.999996pt;}
._6{width:164.048993pt;}
._a{width:223.999974pt;}
._7{width:1718.563928pt;}
.fs0{font-size:39.999998pt;}
.fs6{font-size:43.999998pt;}
.fs5{font-size:55.999998pt;}
.fs2{font-size:63.999997pt;}
.fs4{font-size:71.999997pt;}
.fs3{font-size:79.999997pt;}
.fs1{font-size:167.999993pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:12.343743pt;}
.y18{bottom:21.343743pt;}
.y36{bottom:37.343742pt;}
.y1{bottom:37.656298pt;}
.y17{bottom:45.343742pt;}
.y35{bottom:62.343741pt;}
.y16{bottom:69.343741pt;}
.y34{bottom:87.343740pt;}
.y33{bottom:112.343739pt;}
.y19{bottom:126.343739pt;}
.y32{bottom:137.343738pt;}
.y15{bottom:167.343737pt;}
.y31{bottom:178.343737pt;}
.y4b{bottom:188.343736pt;}
.y14{bottom:191.343736pt;}
.y4a{bottom:201.343736pt;}
.y30{bottom:203.343736pt;}
.y49{bottom:213.343735pt;}
.y13{bottom:215.343735pt;}
.y48{bottom:226.343735pt;}
.y2f{bottom:228.343734pt;}
.y47{bottom:238.343734pt;}
.y12{bottom:239.343734pt;}
.y2e{bottom:253.343733pt;}
.y11{bottom:263.343733pt;}
.y10{bottom:287.343732pt;}
.y2d{bottom:297.343732pt;}
.yf{bottom:311.343731pt;}
.y46{bottom:312.343731pt;}
.ye{bottom:359.343729pt;}
.y2c{bottom:370.343729pt;}
.y45{bottom:382.343728pt;}
.yd{bottom:383.343728pt;}
.y2b{bottom:394.343728pt;}
.yc{bottom:407.343727pt;}
.y2a{bottom:418.343727pt;}
.yb{bottom:431.343726pt;}
.y29{bottom:442.343726pt;}
.y44{bottom:460.343725pt;}
.ya{bottom:474.343724pt;}
.y43{bottom:489.343724pt;}
.y28{bottom:490.343724pt;}
.y9{bottom:502.343723pt;}
.y27{bottom:515.343723pt;}
.y42{bottom:518.343722pt;}
.y26{bottom:540.343721pt;}
.y8{bottom:548.343721pt;}
.y25{bottom:565.343720pt;}
.y7{bottom:573.343720pt;}
.y41{bottom:580.343720pt;}
.y6{bottom:598.343719pt;}
.y24{bottom:615.343718pt;}
.y40{bottom:616.343718pt;}
.y23{bottom:640.343717pt;}
.y5{bottom:657.343717pt;}
.y3f{bottom:664.343716pt;}
.y22{bottom:665.343716pt;}
.y4{bottom:685.343715pt;}
.y3e{bottom:688.343715pt;}
.y21{bottom:690.343715pt;}
.y3d{bottom:712.343714pt;}
.y3{bottom:713.343714pt;}
.y20{bottom:715.343714pt;}
.y1f{bottom:758.343712pt;}
.y3c{bottom:764.343712pt;}
.y1e{bottom:787.343711pt;}
.y3b{bottom:793.343711pt;}
.y38{bottom:875.343708pt;}
.y4c{bottom:881.343707pt;}
.y2{bottom:913.343706pt;}
.y1d{bottom:916.343706pt;}
.y3a{bottom:938.343705pt;}
.y1c{bottom:940.343705pt;}
.y1a{bottom:956.343704pt;}
.y39{bottom:963.343704pt;}
.y1b{bottom:964.343704pt;}
.h2{height:28.789061pt;}
.h11{height:29.062499pt;}
.h12{height:29.101561pt;}
.hf{height:29.472655pt;}
.h10{height:29.667968pt;}
.hd{height:32.033202pt;}
.ha{height:40.935998pt;}
.h4{height:46.207998pt;}
.h7{height:46.343748pt;}
.he{height:46.593748pt;}
.hb{height:46.783998pt;}
.h6{height:47.062498pt;}
.hc{height:47.156248pt;}
.h8{height:47.468748pt;}
.h9{height:52.417967pt;}
.h5{height:58.479998pt;}
.h3{height:119.951995pt;}
.h1{height:981.343703pt;}
.h0{height:1056.000000pt;}
.w1{width:741.343713pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:19.999999pt;}
.x1{left:36.999998pt;}
.x6{left:100.999996pt;}
.xd{left:109.406245pt;}
.xb{left:118.421870pt;}
.x15{left:122.406245pt;}
.x11{left:130.999995pt;}
.x7{left:136.390619pt;}
.xe{left:140.999994pt;}
.x8{left:154.156244pt;}
.x3{left:171.874993pt;}
.x13{left:178.296873pt;}
.x16{left:191.249992pt;}
.x10{left:192.781242pt;}
.x18{left:233.874990pt;}
.xf{left:235.453120pt;}
.x9{left:237.796870pt;}
.x14{left:241.140620pt;}
.xc{left:255.968739pt;}
.x5{left:262.109369pt;}
.x17{left:266.390619pt;}
.x1a{left:292.484368pt;}
.x12{left:299.890618pt;}
.x2{left:302.171867pt;}
.x4{left:365.156235pt;}
.x19{left:369.609365pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  