
    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_5e8110915576dca9cbc2a656.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_13c9687ce951031712a37999.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_bce4caeede1d72a4c69ac270.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_bc61596e5e355614a3f71df7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_3274ae652fc1d398e4ebb9bd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_e747dd01560e8458e7c1aeac.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_48e45a433c4048062b80fc28.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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;}
.ls1{letter-spacing:198.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;}
}
.ws2{word-spacing:-36.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-198.000000px;}
._0{margin-left:-9.729491px;}
._e{margin-left:-7.980447px;}
._3{margin-left:-6.609408px;}
._2{margin-left:-5.343750px;}
._6{margin-left:-4.324219px;}
._1{margin-left:-2.671876px;}
._5{margin-left:-1.300762px;}
._d{width:13.218748px;}
._c{width:25.699217px;}
._7{width:44.507812px;}
._f{width:80.507809px;}
._a{width:91.687500px;}
._10{width:112.324217px;}
._b{width:194.554687px;}
._8{width:198.000000px;}
._4{width:698.343784px;}
.fc5{color:rgb(33,37,41);}
.fc2{color:rgb(17,85,204);}
.fc6{color:rgb(49,49,49);}
.fc4{color:rgb(54,54,54);}
.fc3{color:rgb(27,27,27);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:78.000003px;}
.fs4{font-size:83.999997px;}
.fs1{font-size:96.000003px;}
.fs0{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y74{bottom:118.338867px;}
.y4a{bottom:121.354253px;}
.y1f{bottom:140.494073px;}
.yab{bottom:141.737543px;}
.y73{bottom:142.141845px;}
.yd3{bottom:144.125980px;}
.y49{bottom:145.157232px;}
.y1e{bottom:165.463436px;}
.yaa{bottom:165.540533px;}
.y72{bottom:165.944824px;}
.yd2{bottom:167.929688px;}
.y48{bottom:168.960210px;}
.ya9{bottom:189.343500px;}
.y71{bottom:189.747802px;}
.yd1{bottom:191.731927px;}
.y47{bottom:192.763189px;}
.y1d{bottom:193.233581px;}
.y7a{bottom:195.487064px;}
.ya8{bottom:213.146479px;}
.y70{bottom:213.550778px;}
.yd0{bottom:215.534185px;}
.y46{bottom:216.566167px;}
.y79{bottom:217.306634px;}
.y1c{bottom:221.003726px;}
.ya7{bottom:236.949458px;}
.y6f{bottom:237.353758px;}
.ycf{bottom:239.337892px;}
.y45{bottom:240.369142px;}
.y1b{bottom:248.773871px;}
.y78{bottom:251.114504px;}
.ya6{bottom:260.752448px;}
.y6e{bottom:261.156737px;}
.yce{bottom:263.141603px;}
.y44{bottom:264.183841px;}
.y1a{bottom:276.544001px;}
.ya5{bottom:284.555415px;}
.y6d{bottom:284.959715px;}
.ycd{bottom:286.943842px;}
.y43{bottom:288.077641px;}
.y19{bottom:304.314146px;}
.y77{bottom:307.519039px;}
.ya4{bottom:308.358394px;}
.y6c{bottom:308.762693px;}
.ycc{bottom:310.746100px;}
.y42{bottom:311.959717px;}
.y76{bottom:331.322018px;}
.y18{bottom:332.084291px;}
.ya3{bottom:332.161373px;}
.y6b{bottom:332.565672px;}
.ycb{bottom:334.549808px;}
.y41{bottom:335.762693px;}
.y9b{bottom:339.146488px;}
.y75{bottom:355.124997px;}
.ya2{bottom:355.964362px;}
.y6a{bottom:356.368650px;}
.yca{bottom:358.353525px;}
.y40{bottom:359.565673px;}
.y17{bottom:359.854436px;}
.y9a{bottom:361.549077px;}
.y69{bottom:380.171629px;}
.yc9{bottom:382.155765px;}
.y3f{bottom:383.368652px;}
.y99{bottom:385.352055px;}
.y16{bottom:385.874998px;}
.ya1{bottom:391.100099px;}
.y68{bottom:403.974607px;}
.yc8{bottom:405.958015px;}
.y3e{bottom:407.171630px;}
.y15{bottom:407.694403px;}
.y98{bottom:409.155034px;}
.y67{bottom:427.777583px;}
.y14{bottom:429.513793px;}
.yc7{bottom:429.761722px;}
.y3d{bottom:430.974608px;}
.y97{bottom:432.958012px;}
.ya0{bottom:449.837399px;}
.y13{bottom:451.333198px;}
.y66{bottom:451.580573px;}
.yc6{bottom:453.564698px;}
.y3c{bottom:454.777587px;}
.y96{bottom:456.760987px;}
.y12{bottom:473.152588px;}
.y65{bottom:475.383538px;}
.yc5{bottom:477.367673px;}
.y3b{bottom:478.580565px;}
.y95{bottom:480.563970px;}
.y11{bottom:494.971978px;}
.y64{bottom:499.186517px;}
.yc4{bottom:501.170659px;}
.y3a{bottom:502.383544px;}
.y9f{bottom:503.137210px;}
.y94{bottom:504.366949px;}
.y10{bottom:516.791383px;}
.y63{bottom:522.989495px;}
.y9e{bottom:523.835452px;}
.yc3{bottom:524.973637px;}
.y39{bottom:526.186522px;}
.y93{bottom:528.169928px;}
.yf{bottom:538.610773px;}
.y62{bottom:546.792473px;}
.y9d{bottom:547.056148px;}
.yc2{bottom:548.776612px;}
.y38{bottom:549.989497px;}
.y92{bottom:551.972902px;}
.ye{bottom:560.430178px;}
.y9c{bottom:568.875009px;}
.y61{bottom:570.595452px;}
.yc1{bottom:572.579588px;}
.y37{bottom:573.792487px;}
.y91{bottom:575.775885px;}
.yd{bottom:582.832763px;}
.y60{bottom:594.398430px;}
.yc0{bottom:596.382574px;}
.y36{bottom:597.595462px;}
.y90{bottom:599.578864px;}
.yc{bottom:606.635745px;}
.y5f{bottom:618.201409px;}
.ybf{bottom:620.185552px;}
.y35{bottom:621.398437px;}
.y8f{bottom:623.381842px;}
.yb{bottom:630.438724px;}
.y5e{bottom:642.004388px;}
.ybe{bottom:643.988528px;}
.y34{bottom:645.201418px;}
.y8e{bottom:647.184818px;}
.ya{bottom:654.241702px;}
.y5d{bottom:665.807378px;}
.ybd{bottom:667.791502px;}
.y33{bottom:669.004397px;}
.y8d{bottom:670.987790px;}
.y9{bottom:677.461483px;}
.y5c{bottom:689.610353px;}
.ybc{bottom:691.594478px;}
.y32{bottom:692.807375px;}
.y8c{bottom:694.790768px;}
.y5b{bottom:713.413332px;}
.ybb{bottom:715.397467px;}
.y31{bottom:716.610353px;}
.y8b{bottom:718.593747px;}
.y8{bottom:726.196846px;}
.y5a{bottom:737.216310px;}
.yba{bottom:739.200443px;}
.y30{bottom:740.413332px;}
.y8a{bottom:742.396725px;}
.y59{bottom:761.019289px;}
.yb9{bottom:763.003418px;}
.y2f{bottom:764.216310px;}
.y89{bottom:766.199704px;}
.y7{bottom:768.849238px;}
.y58{bottom:784.822268px;}
.yb8{bottom:786.806392px;}
.y2e{bottom:788.019289px;}
.y88{bottom:790.002682px;}
.yde{bottom:804.953618px;}
.yb7{bottom:810.609367px;}
.y2d{bottom:811.822268px;}
.y87{bottom:813.805658px;}
.y57{bottom:819.958004px;}
.y6{bottom:826.905943px;}
.ydd{bottom:828.755858px;}
.yb6{bottom:834.412358px;}
.y2c{bottom:835.625243px;}
.y86{bottom:837.608647px;}
.ydc{bottom:852.559568px;}
.yb5{bottom:858.215329px;}
.y2b{bottom:859.428218px;}
.y85{bottom:861.411622px;}
.y56{bottom:876.362543px;}
.ydb{bottom:876.363277px;}
.yb4{bottom:882.018307px;}
.y2a{bottom:883.231197px;}
.y5{bottom:884.962648px;}
.y84{bottom:885.214597px;}
.yda{bottom:900.165525px;}
.y55{bottom:900.165532px;}
.yb3{bottom:905.821283px;}
.y29{bottom:907.034175px;}
.y83{bottom:909.017578px;}
.yd9{bottom:923.967775px;}
.y54{bottom:923.968504px;}
.yb2{bottom:929.624272px;}
.y28{bottom:930.837154px;}
.y82{bottom:932.820557px;}
.y4{bottom:943.019353px;}
.y53{bottom:947.771483px;}
.yb1{bottom:953.427248px;}
.y27{bottom:954.640132px;}
.y81{bottom:956.623535px;}
.y52{bottom:971.574457px;}
.yd8{bottom:971.575192px;}
.yb0{bottom:977.230225px;}
.y26{bottom:978.443122px;}
.y80{bottom:980.426513px;}
.y51{bottom:995.377442px;}
.yaf{bottom:1001.033203px;}
.y3{bottom:1001.076049px;}
.y25{bottom:1002.246094px;}
.y7f{bottom:1004.229492px;}
.yd7{bottom:1019.179688px;}
.y50{bottom:1019.180420px;}
.yae{bottom:1024.836182px;}
.y24{bottom:1026.049073px;}
.y7e{bottom:1028.032470px;}
.y4f{bottom:1042.983399px;}
.yd6{bottom:1042.983401px;}
.yad{bottom:1048.055421px;}
.y23{bottom:1049.852051px;}
.y7d{bottom:1051.835449px;}
.y2{bottom:1059.132751px;}
.y4e{bottom:1066.786377px;}
.yd5{bottom:1066.787109px;}
.y22{bottom:1073.655030px;}
.y7c{bottom:1075.638428px;}
.yac{bottom:1081.790771px;}
.y4d{bottom:1090.589356px;}
.y21{bottom:1097.458008px;}
.y7b{bottom:1098.858399px;}
.yd4{bottom:1114.391601px;}
.y4c{bottom:1114.392335px;}
.y1{bottom:1117.189453px;}
.y20{bottom:1132.593751px;}
.y4b{bottom:1138.195312px;}
.h9{height:43.989259px;}
.h3{height:45.858399px;}
.h8{height:48.796875px;}
.h4{height:49.992188px;}
.h5{height:50.027344px;}
.ha{height:54.158205px;}
.h6{height:56.929685px;}
.h7{height:65.062502px;}
.h2{height:66.703127px;}
.h1{height:112.561523px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x4{left:124.702298px;}
.x9{left:135.000000px;}
.xd{left:162.000000px;}
.x2{left:168.731109px;}
.xe{left:216.000000px;}
.xb{left:282.375000px;}
.x5{left:322.790194px;}
.x6{left:328.997126px;}
.x7{left:346.460040px;}
.x3{left:358.528894px;}
.xc{left:420.172807px;}
.x1{left:446.456700px;}
.xa{left:789.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:176.000000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-176.000000pt;}
._0{margin-left:-8.648436pt;}
._e{margin-left:-7.093731pt;}
._3{margin-left:-5.875030pt;}
._2{margin-left:-4.750000pt;}
._6{margin-left:-3.843750pt;}
._1{margin-left:-2.375001pt;}
._5{margin-left:-1.156233pt;}
._d{width:11.749998pt;}
._c{width:22.843748pt;}
._7{width:39.562500pt;}
._f{width:71.562497pt;}
._a{width:81.500000pt;}
._10{width:99.843748pt;}
._b{width:172.937500pt;}
._8{width:176.000000pt;}
._4{width:620.750030pt;}
.fs2{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:69.333336pt;}
.fs4{font-size:74.666664pt;}
.fs1{font-size:85.333336pt;}
.fs0{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:105.190104pt;}
.y4a{bottom:107.870447pt;}
.y1f{bottom:124.883620pt;}
.yab{bottom:125.988927pt;}
.y73{bottom:126.348307pt;}
.yd3{bottom:128.111982pt;}
.y49{bottom:129.028650pt;}
.y1e{bottom:147.078609pt;}
.yaa{bottom:147.147140pt;}
.y72{bottom:147.506510pt;}
.yd2{bottom:149.270833pt;}
.y48{bottom:150.186853pt;}
.ya9{bottom:168.305334pt;}
.y71{bottom:168.664713pt;}
.yd1{bottom:170.428380pt;}
.y47{bottom:171.345056pt;}
.y1d{bottom:171.763183pt;}
.y7a{bottom:173.766279pt;}
.ya8{bottom:189.463537pt;}
.y70{bottom:189.822913pt;}
.yd0{bottom:191.585942pt;}
.y46{bottom:192.503260pt;}
.y79{bottom:193.161452pt;}
.y1c{bottom:196.447756pt;}
.ya7{bottom:210.621740pt;}
.y6f{bottom:210.981118pt;}
.ycf{bottom:212.744793pt;}
.y45{bottom:213.661460pt;}
.y1b{bottom:221.132329pt;}
.y78{bottom:223.212892pt;}
.ya6{bottom:231.779953pt;}
.y6e{bottom:232.139321pt;}
.yce{bottom:233.903647pt;}
.y44{bottom:234.830081pt;}
.y1a{bottom:245.816889pt;}
.ya5{bottom:252.938147pt;}
.y6d{bottom:253.297524pt;}
.ycd{bottom:255.061193pt;}
.y43{bottom:256.069014pt;}
.y19{bottom:270.501463pt;}
.y77{bottom:273.350257pt;}
.ya4{bottom:274.096350pt;}
.y6c{bottom:274.455727pt;}
.ycc{bottom:276.218755pt;}
.y42{bottom:277.297527pt;}
.y76{bottom:294.508460pt;}
.y18{bottom:295.186036pt;}
.ya3{bottom:295.254553pt;}
.y6b{bottom:295.613930pt;}
.ycb{bottom:297.377607pt;}
.y41{bottom:298.455727pt;}
.y9b{bottom:301.463545pt;}
.y75{bottom:315.666664pt;}
.ya2{bottom:316.412767pt;}
.y6a{bottom:316.772133pt;}
.yca{bottom:318.536466pt;}
.y40{bottom:319.613932pt;}
.y17{bottom:319.870609pt;}
.y9a{bottom:321.376957pt;}
.y69{bottom:337.930336pt;}
.yc9{bottom:339.694013pt;}
.y3f{bottom:340.772135pt;}
.y99{bottom:342.535160pt;}
.y16{bottom:342.999999pt;}
.ya1{bottom:347.644532pt;}
.y68{bottom:359.088540pt;}
.yc8{bottom:360.851568pt;}
.y3e{bottom:361.930338pt;}
.y15{bottom:362.395025pt;}
.y98{bottom:363.693363pt;}
.y67{bottom:380.246740pt;}
.y14{bottom:381.790039pt;}
.yc7{bottom:382.010420pt;}
.y3d{bottom:383.088541pt;}
.y97{bottom:384.851567pt;}
.ya0{bottom:399.855465pt;}
.y13{bottom:401.185065pt;}
.y66{bottom:401.404953pt;}
.yc6{bottom:403.168620pt;}
.y3c{bottom:404.246744pt;}
.y96{bottom:406.009767pt;}
.y12{bottom:420.580079pt;}
.y65{bottom:422.563145pt;}
.yc5{bottom:424.326820pt;}
.y3b{bottom:425.404947pt;}
.y95{bottom:427.167974pt;}
.y11{bottom:439.975092pt;}
.y64{bottom:443.721348pt;}
.yc4{bottom:445.485030pt;}
.y3a{bottom:446.563150pt;}
.y9f{bottom:447.233076pt;}
.y94{bottom:448.326177pt;}
.y10{bottom:459.370119pt;}
.y63{bottom:464.879551pt;}
.y9e{bottom:465.631513pt;}
.yc3{bottom:466.643233pt;}
.y39{bottom:467.721353pt;}
.y93{bottom:469.484380pt;}
.yf{bottom:478.765132pt;}
.y62{bottom:486.037754pt;}
.y9d{bottom:486.272132pt;}
.yc2{bottom:487.801433pt;}
.y38{bottom:488.879553pt;}
.y92{bottom:490.642580pt;}
.ye{bottom:498.160159pt;}
.y9c{bottom:505.666675pt;}
.y61{bottom:507.195957pt;}
.yc1{bottom:508.959633pt;}
.y37{bottom:510.037766pt;}
.y91{bottom:511.800787pt;}
.yd{bottom:518.073567pt;}
.y60{bottom:528.354160pt;}
.yc0{bottom:530.117843pt;}
.y36{bottom:531.195966pt;}
.y90{bottom:532.958990pt;}
.yc{bottom:539.231773pt;}
.y5f{bottom:549.512363pt;}
.ybf{bottom:551.276047pt;}
.y35{bottom:552.354166pt;}
.y8f{bottom:554.117193pt;}
.yb{bottom:560.389976pt;}
.y5e{bottom:570.670567pt;}
.ybe{bottom:572.434247pt;}
.y34{bottom:573.512372pt;}
.y8e{bottom:575.275393pt;}
.ya{bottom:581.548180pt;}
.y5d{bottom:591.828780pt;}
.ybd{bottom:593.592447pt;}
.y33{bottom:594.670575pt;}
.y8d{bottom:596.433591pt;}
.y9{bottom:602.187985pt;}
.y5c{bottom:612.986981pt;}
.ybc{bottom:614.750647pt;}
.y32{bottom:615.828778pt;}
.y8c{bottom:617.591794pt;}
.y5b{bottom:634.145184pt;}
.ybb{bottom:635.908860pt;}
.y31{bottom:636.986981pt;}
.y8b{bottom:638.749997pt;}
.y8{bottom:645.508307pt;}
.y5a{bottom:655.303387pt;}
.yba{bottom:657.067060pt;}
.y30{bottom:658.145184pt;}
.y8a{bottom:659.908200pt;}
.y59{bottom:676.461590pt;}
.yb9{bottom:678.225260pt;}
.y2f{bottom:679.303387pt;}
.y89{bottom:681.066403pt;}
.y7{bottom:683.421545pt;}
.y58{bottom:697.619793pt;}
.yb8{bottom:699.383460pt;}
.y2e{bottom:700.461590pt;}
.y88{bottom:702.224607pt;}
.yde{bottom:715.514327pt;}
.yb7{bottom:720.541660pt;}
.y2d{bottom:721.619793pt;}
.y87{bottom:723.382807pt;}
.y57{bottom:728.851559pt;}
.y6{bottom:735.027505pt;}
.ydd{bottom:736.671873pt;}
.yb6{bottom:741.699873pt;}
.y2c{bottom:742.777993pt;}
.y86{bottom:744.541019pt;}
.ydc{bottom:757.830727pt;}
.yb5{bottom:762.858070pt;}
.y2b{bottom:763.936194pt;}
.y85{bottom:765.699219pt;}
.y56{bottom:778.988927pt;}
.ydb{bottom:778.989580pt;}
.yb4{bottom:784.016273pt;}
.y2a{bottom:785.094397pt;}
.y5{bottom:786.633465pt;}
.y84{bottom:786.857419pt;}
.yda{bottom:800.147133pt;}
.y55{bottom:800.147140pt;}
.yb3{bottom:805.174473pt;}
.y29{bottom:806.252600pt;}
.y83{bottom:808.015625pt;}
.yd9{bottom:821.304688pt;}
.y54{bottom:821.305336pt;}
.yb2{bottom:826.332687pt;}
.y28{bottom:827.410803pt;}
.y82{bottom:829.173828pt;}
.y4{bottom:838.239425pt;}
.y53{bottom:842.463540pt;}
.yb1{bottom:847.490887pt;}
.y27{bottom:848.569007pt;}
.y81{bottom:850.332031pt;}
.y52{bottom:863.621740pt;}
.yd8{bottom:863.622393pt;}
.yb0{bottom:868.649088pt;}
.y26{bottom:869.727220pt;}
.y80{bottom:871.490234pt;}
.y51{bottom:884.779948pt;}
.yaf{bottom:889.807292pt;}
.y3{bottom:889.845377pt;}
.y25{bottom:890.885417pt;}
.y7f{bottom:892.648437pt;}
.yd7{bottom:905.937500pt;}
.y50{bottom:905.938152pt;}
.yae{bottom:910.965495pt;}
.y24{bottom:912.043620pt;}
.y7e{bottom:913.806640pt;}
.y4f{bottom:927.096355pt;}
.yd6{bottom:927.096356pt;}
.yad{bottom:931.604819pt;}
.y23{bottom:933.201823pt;}
.y7d{bottom:934.964843pt;}
.y2{bottom:941.451334pt;}
.y4e{bottom:948.254557pt;}
.yd5{bottom:948.255208pt;}
.y22{bottom:954.360027pt;}
.y7c{bottom:956.123047pt;}
.yac{bottom:961.591796pt;}
.y4d{bottom:969.412760pt;}
.y21{bottom:975.518229pt;}
.y7b{bottom:976.763021pt;}
.yd4{bottom:990.570312pt;}
.y4c{bottom:990.570964pt;}
.y1{bottom:993.057292pt;}
.y20{bottom:1006.750001pt;}
.y4b{bottom:1011.729167pt;}
.h9{height:39.101563pt;}
.h3{height:40.763022pt;}
.h8{height:43.375000pt;}
.h4{height:44.437500pt;}
.h5{height:44.468750pt;}
.ha{height:48.140627pt;}
.h6{height:50.604165pt;}
.h7{height:57.833335pt;}
.h2{height:59.291669pt;}
.h1{height:100.054688pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x4{left:110.846487pt;}
.x9{left:120.000000pt;}
.xd{left:144.000000pt;}
.x2{left:149.983208pt;}
.xe{left:192.000000pt;}
.xb{left:251.000000pt;}
.x5{left:286.924617pt;}
.x6{left:292.441890pt;}
.x7{left:307.964480pt;}
.x3{left:318.692350pt;}
.xc{left:373.486940pt;}
.x1{left:396.850400pt;}
.xa{left:702.000000pt;}
}




    .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; }
  