
    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_daa791b9968294983d76077b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938000;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_742fc9286a902a00f7a0bafd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914286;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_ca6de0c657456179cf296a57.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.103000;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_36451502eed0662cefbd67b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_06e6cd7d4a4bef5031884288.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.716000;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_5c36632cdaf1211fc93d15d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.132000;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_72a4ecec18c854a8d333c441.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_214687e026654b4555f37d29.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984333;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_a929f9e5724698e8f06d1c61.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.128000;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_33bd5aeec19573bc003812f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.951000;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_a7a2198e1423411da700c70b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_1b25b059528407deff7d1018.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722000;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_c8264be9ebf60b8ca9fd9e41.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861000;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_f954075368b5ee939387dfe8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.132000;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_8985140ec16d58c9865d75d4.woff2')format("woff");}.fff{font-family:fff;line-height:1.121000;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_5ca4f48d7d6b61e0ab7b0596.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914286;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_d69043d948c6dd706d260ab4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.700000;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_ca6de0c657456179cf296a57.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.103000;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_e83b0a82f247325e4a9d0ac6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.873250;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);}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.440000px;}
.v1{vertical-align:27.000600px;}
.ls7{letter-spacing:-14.985000px;}
.ls12{letter-spacing:-8.640000px;}
.ls8{letter-spacing:-5.260500px;}
.ls13{letter-spacing:-5.130000px;}
.lsf{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.528000px;}
.ls11{letter-spacing:-0.369600px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000300px;}
.ls2{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.092100px;}
.ls3{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.194400px;}
.lsc{letter-spacing:0.383700px;}
.lsd{letter-spacing:0.580800px;}
.lsa{letter-spacing:0.907200px;}
.lsb{letter-spacing:0.972000px;}
.lse{letter-spacing:2.428800px;}
.ls0{letter-spacing:10.656000px;}
.ls9{letter-spacing:1500.845400px;}
.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:-21.600000px;}
.ws2{word-spacing:-21.000000px;}
.ws5{word-spacing:-16.200000px;}
.ws9{word-spacing:-15.750000px;}
.ws15{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.965000px;}
.wsd{word-spacing:-13.200000px;}
.wsf{word-spacing:-12.830400px;}
.ws11{word-spacing:-12.750000px;}
.ws10{word-spacing:-12.672000px;}
.wsc{word-spacing:-12.408000px;}
.wsb{word-spacing:-10.529850px;}
.ws6{word-spacing:-9.324000px;}
.wse{word-spacing:-8.579850px;}
.ws13{word-spacing:-0.060000px;}
.ws4{word-spacing:-0.057000px;}
.wsa{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws14{word-spacing:5.085000px;}
.ws7{word-spacing:10.489500px;}
.ws12{word-spacing:17.235000px;}
.ws1{word-spacing:29.901600px;}
._7{margin-left:-16.264800px;}
._1{margin-left:-10.663200px;}
._c{margin-left:-9.324000px;}
._f{margin-left:-2.400000px;}
._6{width:1.294200px;}
._2{width:2.333400px;}
._9{width:3.400800px;}
._3{width:4.443600px;}
._a{width:5.730000px;}
._8{width:6.933600px;}
._5{width:8.100000px;}
._e{width:10.654800px;}
._b{width:11.676000px;}
._0{width:13.344000px;}
._4{width:16.848000px;}
._10{width:534.955800px;}
._d{width:935.674800px;}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:31.500000px;}
.fsa{font-size:34.319400px;}
.fsc{font-size:42.000000px;}
.fs9{font-size:42.119400px;}
.fsf{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fsb{font-size:52.800000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:58.499400px;}
.fs10{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs8{font-size:64.800000px;}
.fse{font-size:66.000000px;}
.fs3{font-size:67.500000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:68.825100px;}
.y51{bottom:72.099450px;}
.y50{bottom:107.149500px;}
.y25{bottom:107.149650px;}
.y24{bottom:119.149650px;}
.y4f{bottom:121.542000px;}
.y23{bottom:135.401550px;}
.y4e{bottom:135.934500px;}
.y22{bottom:150.849600px;}
.y4d{bottom:154.287000px;}
.y4c{bottom:164.719500px;}
.y21{bottom:166.282500px;}
.y20{bottom:177.463500px;}
.y4b{bottom:179.112000px;}
.y1f{bottom:192.896400px;}
.y4a{bottom:193.504500px;}
.y1e{bottom:204.077400px;}
.y49{bottom:207.897000px;}
.y1d{bottom:215.258400px;}
.y48{bottom:222.289500px;}
.y1c{bottom:239.094000px;}
.y47{bottom:240.642000px;}
.y1b{bottom:249.526500px;}
.y1a{bottom:263.919000px;}
.y19{bottom:278.311500px;}
.y18{bottom:292.704000px;}
.y46{bottom:293.231400px;}
.y45{bottom:310.827900px;}
.y17{bottom:311.056500px;}
.y44{bottom:337.221750px;}
.y16{bottom:350.314200px;}
.y43{bottom:354.818250px;}
.y15{bottom:367.910700px;}
.y42{bottom:372.414750px;}
.y14{bottom:385.507200px;}
.y41{bottom:390.011250px;}
.y13{bottom:403.103700px;}
.y40{bottom:407.607750px;}
.y69{bottom:416.408400px;}
.y12{bottom:420.700200px;}
.y3f{bottom:425.204250px;}
.y68{bottom:434.003400px;}
.y11{bottom:438.296700px;}
.y3e{bottom:442.800750px;}
.y67{bottom:451.599900px;}
.y10{bottom:455.893200px;}
.y3d{bottom:460.397250px;}
.y66{bottom:469.196400px;}
.y3c{bottom:477.993750px;}
.yf{bottom:482.287050px;}
.y65{bottom:486.792900px;}
.y3b{bottom:504.387600px;}
.y64{bottom:504.389400px;}
.y63{bottom:521.985900px;}
.ye{bottom:526.275450px;}
.y3a{bottom:530.781300px;}
.y62{bottom:539.582400px;}
.yd{bottom:546.514500px;}
.y39{bottom:557.175150px;}
.y61{bottom:557.178900px;}
.yc{bottom:562.501350px;}
.y38{bottom:583.569000px;}
.y60{bottom:583.572750px;}
.yb{bottom:594.475800px;}
.y37{bottom:609.962850px;}
.ya{bottom:614.714700px;}
.y5f{bottom:627.561150px;}
.y9{bottom:630.701850px;}
.y36{bottom:653.951250px;}
.y5e{bottom:653.958300px;}
.y35{bottom:671.547750px;}
.y5d{bottom:671.551500px;}
.y34{bottom:689.144250px;}
.y5c{bottom:689.148000px;}
.y33{bottom:706.740900px;}
.y5b{bottom:706.744500px;}
.y8{bottom:717.951750px;}
.y32{bottom:724.337250px;}
.y5a{bottom:724.341000px;}
.y7{bottom:736.596300px;}
.y31{bottom:741.933750px;}
.y59{bottom:741.937500px;}
.y30{bottom:759.530250px;}
.y58{bottom:759.537300px;}
.y6{bottom:773.377650px;}
.y2f{bottom:777.126750px;}
.y57{bottom:777.130500px;}
.y2e{bottom:794.723400px;}
.y56{bottom:794.727000px;}
.y5{bottom:798.577500px;}
.y2d{bottom:812.319900px;}
.y55{bottom:821.120850px;}
.y4{bottom:825.577350px;}
.y2c{bottom:829.916250px;}
.y2b{bottom:847.512750px;}
.y54{bottom:847.514700px;}
.y2a{bottom:865.109400px;}
.y53{bottom:873.908550px;}
.y29{bottom:882.705900px;}
.y1{bottom:892.729200px;}
.y52{bottom:900.302250px;}
.y28{bottom:900.302400px;}
.y3{bottom:921.361500px;}
.y26{bottom:936.770250px;}
.y2{bottom:938.958000px;}
.he{height:29.726400px;}
.h11{height:31.206000px;}
.h13{height:34.656000px;}
.h2{height:35.664000px;}
.h3{height:37.893000px;}
.h10{height:38.388000px;}
.h8{height:44.013000px;}
.hf{height:45.566400px;}
.hb{height:47.652000px;}
.ha{height:48.963000px;}
.h9{height:49.191000px;}
.h14{height:51.780000px;}
.hc{height:54.043200px;}
.h7{height:54.369000px;}
.hd{height:55.922400px;}
.h12{height:56.958000px;}
.h6{height:72.492000px;}
.h4{height:75.060000px;}
.h5{height:77.485582px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:93.543300px;}
.x2{left:97.795350px;}
.xd{left:114.803100px;}
.x8{left:119.055150px;}
.x9{left:123.307050px;}
.x3{left:149.640150px;}
.xa{left:157.951500px;}
.xb{left:163.201500px;}
.x5{left:164.728800px;}
.x7{left:187.156350px;}
.x6{left:242.553900px;}
.x4{left:308.000250px;}
.xe{left:355.079400px;}
.xf{left:359.331450px;}
.x1{left:458.055000px;}
@media print{
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.280000pt;}
.v1{vertical-align:24.000533pt;}
.ls7{letter-spacing:-13.320000pt;}
.ls12{letter-spacing:-7.680000pt;}
.ls8{letter-spacing:-4.676000pt;}
.ls13{letter-spacing:-4.560000pt;}
.lsf{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.469333pt;}
.ls11{letter-spacing:-0.328533pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000267pt;}
.ls2{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.081867pt;}
.ls3{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.172800pt;}
.lsc{letter-spacing:0.341067pt;}
.lsd{letter-spacing:0.516267pt;}
.lsa{letter-spacing:0.806400pt;}
.lsb{letter-spacing:0.864000pt;}
.lse{letter-spacing:2.158933pt;}
.ls0{letter-spacing:9.472000pt;}
.ls9{letter-spacing:1334.084800pt;}
.ws0{word-spacing:-19.200000pt;}
.ws2{word-spacing:-18.666667pt;}
.ws5{word-spacing:-14.400000pt;}
.ws9{word-spacing:-14.000000pt;}
.ws15{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.413333pt;}
.wsd{word-spacing:-11.733333pt;}
.wsf{word-spacing:-11.404800pt;}
.ws11{word-spacing:-11.333333pt;}
.ws10{word-spacing:-11.264000pt;}
.wsc{word-spacing:-11.029333pt;}
.wsb{word-spacing:-9.359867pt;}
.ws6{word-spacing:-8.288000pt;}
.wse{word-spacing:-7.626533pt;}
.ws13{word-spacing:-0.053333pt;}
.ws4{word-spacing:-0.050667pt;}
.wsa{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws14{word-spacing:4.520000pt;}
.ws7{word-spacing:9.324000pt;}
.ws12{word-spacing:15.320000pt;}
.ws1{word-spacing:26.579200pt;}
._7{margin-left:-14.457600pt;}
._1{margin-left:-9.478400pt;}
._c{margin-left:-8.288000pt;}
._f{margin-left:-2.133333pt;}
._6{width:1.150400pt;}
._2{width:2.074133pt;}
._9{width:3.022933pt;}
._3{width:3.949867pt;}
._a{width:5.093333pt;}
._8{width:6.163200pt;}
._5{width:7.200000pt;}
._e{width:9.470933pt;}
._b{width:10.378667pt;}
._0{width:11.861333pt;}
._4{width:14.976000pt;}
._10{width:475.516267pt;}
._d{width:831.710933pt;}
.fsd{font-size:28.000000pt;}
.fsa{font-size:30.506133pt;}
.fsc{font-size:37.333333pt;}
.fs9{font-size:37.439467pt;}
.fsf{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fsb{font-size:46.933333pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:51.999467pt;}
.fs10{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs8{font-size:57.600000pt;}
.fse{font-size:58.666667pt;}
.fs3{font-size:60.000000pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:61.177867pt;}
.y51{bottom:64.088400pt;}
.y50{bottom:95.244000pt;}
.y25{bottom:95.244133pt;}
.y24{bottom:105.910800pt;}
.y4f{bottom:108.037333pt;}
.y23{bottom:120.356933pt;}
.y4e{bottom:120.830667pt;}
.y22{bottom:134.088533pt;}
.y4d{bottom:137.144000pt;}
.y4c{bottom:146.417333pt;}
.y21{bottom:147.806667pt;}
.y20{bottom:157.745333pt;}
.y4b{bottom:159.210667pt;}
.y1f{bottom:171.463467pt;}
.y4a{bottom:172.004000pt;}
.y1e{bottom:181.402133pt;}
.y49{bottom:184.797333pt;}
.y1d{bottom:191.340800pt;}
.y48{bottom:197.590667pt;}
.y1c{bottom:212.528000pt;}
.y47{bottom:213.904000pt;}
.y1b{bottom:221.801333pt;}
.y1a{bottom:234.594667pt;}
.y19{bottom:247.388000pt;}
.y18{bottom:260.181333pt;}
.y46{bottom:260.650133pt;}
.y45{bottom:276.291467pt;}
.y17{bottom:276.494667pt;}
.y44{bottom:299.752667pt;}
.y16{bottom:311.390400pt;}
.y43{bottom:315.394000pt;}
.y15{bottom:327.031733pt;}
.y42{bottom:331.035333pt;}
.y14{bottom:342.673067pt;}
.y41{bottom:346.676667pt;}
.y13{bottom:358.314400pt;}
.y40{bottom:362.318000pt;}
.y69{bottom:370.140800pt;}
.y12{bottom:373.955733pt;}
.y3f{bottom:377.959333pt;}
.y68{bottom:385.780800pt;}
.y11{bottom:389.597067pt;}
.y3e{bottom:393.600667pt;}
.y67{bottom:401.422133pt;}
.y10{bottom:405.238400pt;}
.y3d{bottom:409.242000pt;}
.y66{bottom:417.063467pt;}
.y3c{bottom:424.883333pt;}
.yf{bottom:428.699600pt;}
.y65{bottom:432.704800pt;}
.y3b{bottom:448.344533pt;}
.y64{bottom:448.346133pt;}
.y63{bottom:463.987467pt;}
.ye{bottom:467.800400pt;}
.y3a{bottom:471.805600pt;}
.y62{bottom:479.628800pt;}
.yd{bottom:485.790667pt;}
.y39{bottom:495.266800pt;}
.y61{bottom:495.270133pt;}
.yc{bottom:500.001200pt;}
.y38{bottom:518.728000pt;}
.y60{bottom:518.731333pt;}
.yb{bottom:528.422933pt;}
.y37{bottom:542.189200pt;}
.ya{bottom:546.413067pt;}
.y5f{bottom:557.832133pt;}
.y9{bottom:560.623867pt;}
.y36{bottom:581.290000pt;}
.y5e{bottom:581.296267pt;}
.y35{bottom:596.931333pt;}
.y5d{bottom:596.934667pt;}
.y34{bottom:612.572667pt;}
.y5c{bottom:612.576000pt;}
.y33{bottom:628.214133pt;}
.y5b{bottom:628.217333pt;}
.y8{bottom:638.179333pt;}
.y32{bottom:643.855333pt;}
.y5a{bottom:643.858667pt;}
.y7{bottom:654.752267pt;}
.y31{bottom:659.496667pt;}
.y59{bottom:659.500000pt;}
.y30{bottom:675.138000pt;}
.y58{bottom:675.144267pt;}
.y6{bottom:687.446800pt;}
.y2f{bottom:690.779333pt;}
.y57{bottom:690.782667pt;}
.y2e{bottom:706.420800pt;}
.y56{bottom:706.424000pt;}
.y5{bottom:709.846667pt;}
.y2d{bottom:722.062133pt;}
.y55{bottom:729.885200pt;}
.y4{bottom:733.846533pt;}
.y2c{bottom:737.703333pt;}
.y2b{bottom:753.344667pt;}
.y54{bottom:753.346400pt;}
.y2a{bottom:768.986133pt;}
.y53{bottom:776.807600pt;}
.y29{bottom:784.627467pt;}
.y1{bottom:793.537067pt;}
.y52{bottom:800.268667pt;}
.y28{bottom:800.268800pt;}
.y3{bottom:818.988000pt;}
.y26{bottom:832.684667pt;}
.y2{bottom:834.629333pt;}
.he{height:26.423467pt;}
.h11{height:27.738667pt;}
.h13{height:30.805333pt;}
.h2{height:31.701333pt;}
.h3{height:33.682667pt;}
.h10{height:34.122667pt;}
.h8{height:39.122667pt;}
.hf{height:40.503467pt;}
.hb{height:42.357333pt;}
.ha{height:43.522667pt;}
.h9{height:43.725333pt;}
.h14{height:46.026667pt;}
.hc{height:48.038400pt;}
.h7{height:48.328000pt;}
.hd{height:49.708800pt;}
.h12{height:50.629333pt;}
.h6{height:64.437333pt;}
.h4{height:66.720000pt;}
.h5{height:68.876073pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:83.149600pt;}
.x2{left:86.929200pt;}
.xd{left:102.047200pt;}
.x8{left:105.826800pt;}
.x9{left:109.606267pt;}
.x3{left:133.013467pt;}
.xa{left:140.401333pt;}
.xb{left:145.068000pt;}
.x5{left:146.425600pt;}
.x7{left:166.361200pt;}
.x6{left:215.603467pt;}
.x4{left:273.778000pt;}
.xe{left:315.626133pt;}
.xf{left:319.405733pt;}
.x1{left:407.160000pt;}
}




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