
    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_7767f98818a9fef164b3b5a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_ea4240923e84effb0e7d4ae8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.721191;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_b297c1e43bab605e75078c9d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_ca019a1e1ec37bdf335c17b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_bb293db629fda24e72d903ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981000;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_0f82282ab91cf15675e98a3f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8ee91ea132032db7e9eb0707.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.042000;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_6353e15de2a9274077b9818b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.031738;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_adb048cbd8e84cfc9a63bd85.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989000;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_54320a12a75a180be395f605.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981000;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_9f6ecb69a082493cbcae4f5c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941000;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_f2a9bbac5aebc967fa2833cf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.945000;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_84c92571b3175fe8b9e0b946.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.963379;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_d976815358ce023f7e977572.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.976111;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_8cbd669a640b1b155df5304f.woff2')format("woff");}.fff{font-family:fff;line-height:1.031738;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_9955936a84ee0669d7c363cb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.899902;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_2fa54196adf7e8b80f4a64ef.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.031738;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_12b356437082a8f68dc4d29d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.964375;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_efa82b792cb5bac52097c086.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.721191;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_8890ab41a067c064a16f5711.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.031738;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_2ef9b023bfff0402109e6642.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.903829;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:ff16;src:url('chunks/assets/font_9955936a84ee0669d7c363cb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.899902;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:ff17;src:url('chunks/assets/font_2fa54196adf7e8b80f4a64ef.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.031738;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:ff18;src:url('chunks/assets/font_12b356437082a8f68dc4d29d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.964375;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:ff19;src:url('chunks/assets/font_b418ae9c29809e41a4280c6e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.721191;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:ff1a;src:url('chunks/assets/font_8890ab41a067c064a16f5711.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.031738;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.520000px;}
.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:-37.464000px;}
.ws2{word-spacing:-35.658000px;}
.ws3{word-spacing:-22.596000px;}
.ws5{word-spacing:-16.962000px;}
.ws6{word-spacing:-16.368000px;}
.ws1{word-spacing:-16.200000px;}
.ws7{word-spacing:-16.170000px;}
.wsc{word-spacing:-1.386000px;}
.wsf{word-spacing:-1.224000px;}
.wsd{word-spacing:-0.858000px;}
.ws11{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:1.056000px;}
.ws8{word-spacing:3.432000px;}
.ws9{word-spacing:4.290000px;}
.wsa{word-spacing:4.356000px;}
.wse{word-spacing:7.920000px;}
._3{margin-left:-7.804800px;}
._4{margin-left:-4.939200px;}
._2{margin-left:-3.862800px;}
._1{margin-left:-1.990800px;}
._5{width:1.834200px;}
._7{width:3.022800px;}
._8{width:4.165200px;}
._b{width:5.259600px;}
._9{width:7.042200px;}
._6{width:8.819400px;}
._a{width:10.332000px;}
._c{width:11.800800px;}
._0{width:461.664000px;}
.fc1{color:rgb(48,88,159);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:114.000000px;}
.fs2{font-size:126.000000px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y71{bottom:4.877700px;}
.y2{bottom:5.691750px;}
.yb{bottom:9.701400px;}
.y70{bottom:26.477700px;}
.y38{bottom:45.130500px;}
.y72{bottom:45.165000px;}
.y6f{bottom:48.077700px;}
.y34{bottom:100.614000px;}
.yf{bottom:109.849650px;}
.y6d{bottom:113.065350px;}
.y33{bottom:124.666050px;}
.ye{bottom:131.449650px;}
.y6c{bottom:132.865350px;}
.y32{bottom:144.466050px;}
.y6b{bottom:156.922350px;}
.yd{bottom:159.612600px;}
.y31{bottom:164.266050px;}
.y6a{bottom:176.722350px;}
.y30{bottom:188.317950px;}
.y5{bottom:188.629200px;}
.yc{bottom:192.012600px;}
.y69{bottom:196.522350px;}
.y2f{bottom:208.117950px;}
.y4{bottom:210.229200px;}
.y68{bottom:216.322350px;}
.y2e{bottom:227.917950px;}
.y3{bottom:231.829200px;}
.y67{bottom:236.122350px;}
.ya{bottom:244.973850px;}
.y2d{bottom:247.717950px;}
.y66{bottom:255.922350px;}
.y2c{bottom:267.517950px;}
.y65{bottom:275.722350px;}
.y9{bottom:280.978350px;}
.y2b{bottom:287.317950px;}
.y64{bottom:295.522350px;}
.y2a{bottom:311.370000px;}
.y63{bottom:315.322350px;}
.y8{bottom:316.982850px;}
.y29{bottom:331.170000px;}
.y62{bottom:335.122350px;}
.y6{bottom:341.151000px;}
.y28{bottom:350.969850px;}
.y7{bottom:352.987350px;}
.y61{bottom:359.179350px;}
.y27{bottom:370.769850px;}
.y60{bottom:378.979350px;}
.y26{bottom:390.569850px;}
.y5f{bottom:398.779350px;}
.y25{bottom:410.370000px;}
.y5e{bottom:418.579350px;}
.y24{bottom:430.170000px;}
.y5d{bottom:438.379350px;}
.y23{bottom:454.221900px;}
.y5c{bottom:458.179350px;}
.y22{bottom:474.021900px;}
.y5b{bottom:477.979350px;}
.y21{bottom:493.821900px;}
.y5a{bottom:497.779350px;}
.y20{bottom:513.621900px;}
.y59{bottom:521.836350px;}
.y1f{bottom:533.421900px;}
.y58{bottom:541.636350px;}
.y1e{bottom:553.221900px;}
.y57{bottom:561.436350px;}
.y1d{bottom:573.021900px;}
.y56{bottom:581.236350px;}
.y1c{bottom:592.821900px;}
.y55{bottom:601.036350px;}
.y54{bottom:620.836350px;}
.y53{bottom:644.893350px;}
.y52{bottom:664.693350px;}
.y51{bottom:684.493350px;}
.y50{bottom:704.293350px;}
.y1b{bottom:724.897500px;}
.y4f{bottom:728.350350px;}
.y1a{bottom:742.897500px;}
.y4e{bottom:748.150350px;}
.y19{bottom:760.897500px;}
.y4d{bottom:767.950350px;}
.y18{bottom:778.897500px;}
.y4c{bottom:787.750350px;}
.y4b{bottom:807.550350px;}
.y17{bottom:814.897500px;}
.y4a{bottom:827.350350px;}
.y49{bottom:847.150350px;}
.y48{bottom:866.950350px;}
.y16{bottom:868.557300px;}
.y15{bottom:886.557300px;}
.y47{bottom:891.007350px;}
.y14{bottom:904.557300px;}
.y46{bottom:910.807350px;}
.y45{bottom:930.607350px;}
.y13{bottom:944.809200px;}
.y44{bottom:950.407350px;}
.y43{bottom:970.207350px;}
.y42{bottom:990.007350px;}
.y12{bottom:998.469150px;}
.y41{bottom:1009.807350px;}
.y40{bottom:1029.607350px;}
.y11{bottom:1036.269150px;}
.y3f{bottom:1049.407350px;}
.y10{bottom:1070.469150px;}
.y3e{bottom:1073.464350px;}
.y3d{bottom:1093.264350px;}
.y3c{bottom:1113.064350px;}
.y3b{bottom:1132.864350px;}
.y1{bottom:1147.849500px;}
.y3a{bottom:1152.664350px;}
.y6e{bottom:1186.257000px;}
.y37{bottom:1189.634700px;}
.y39{bottom:1195.334700px;}
.y73{bottom:1198.334700px;}
.y36{bottom:1211.234700px;}
.y35{bottom:1232.834700px;}
.h2{height:27.867000px;}
.hd{height:49.236000px;}
.h10{height:49.500000px;}
.he{height:50.242526px;}
.h13{height:51.222656px;}
.h11{height:51.890625px;}
.hf{height:52.948242px;}
.h4{height:54.738281px;}
.h12{height:54.810029px;}
.ha{height:57.761719px;}
.h14{height:67.086000px;}
.h3{height:67.391672px;}
.h8{height:70.728000px;}
.hc{height:80.136000px;}
.h9{height:84.996000px;}
.hb{height:89.718000px;}
.h6{height:99.162000px;}
.h7{height:103.938000px;}
.h5{height:386.661000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:438.122100px;}
.w3{width:664.610400px;}
.w2{width:709.544250px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.669250px;}
.x15{left:97.795350px;}
.x9{left:101.065950px;}
.x19{left:102.533100px;}
.x14{left:119.055150px;}
.x3{left:130.748100px;}
.x8{left:153.460200px;}
.x2{left:242.905500px;}
.xb{left:297.715350px;}
.x4{left:309.667950px;}
.xa{left:325.300650px;}
.xf{left:346.692750px;}
.x18{left:361.778850px;}
.x6{left:400.122300px;}
.x7{left:406.494300px;}
.x5{left:423.310950px;}
.xc{left:440.770200px;}
.x17{left:519.134850px;}
.xe{left:531.403050px;}
.x13{left:534.174300px;}
.x11{left:540.806700px;}
.x10{left:587.072550px;}
.x12{left:592.351800px;}
.xd{left:596.229150px;}
.x16{left:637.628850px;}
.x1b{left:661.641750px;}
.x1a{left:783.964500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.240000pt;}
.ws0{word-spacing:-33.301333pt;}
.ws2{word-spacing:-31.696000pt;}
.ws3{word-spacing:-20.085333pt;}
.ws5{word-spacing:-15.077333pt;}
.ws6{word-spacing:-14.549333pt;}
.ws1{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.373333pt;}
.wsc{word-spacing:-1.232000pt;}
.wsf{word-spacing:-1.088000pt;}
.wsd{word-spacing:-0.762667pt;}
.ws11{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:0.938667pt;}
.ws8{word-spacing:3.050667pt;}
.ws9{word-spacing:3.813333pt;}
.wsa{word-spacing:3.872000pt;}
.wse{word-spacing:7.040000pt;}
._3{margin-left:-6.937600pt;}
._4{margin-left:-4.390400pt;}
._2{margin-left:-3.433600pt;}
._1{margin-left:-1.769600pt;}
._5{width:1.630400pt;}
._7{width:2.686933pt;}
._8{width:3.702400pt;}
._b{width:4.675200pt;}
._9{width:6.259733pt;}
._6{width:7.839467pt;}
._a{width:9.184000pt;}
._c{width:10.489600pt;}
._0{width:410.368000pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:101.333333pt;}
.fs2{font-size:112.000000pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:4.335733pt;}
.y2{bottom:5.059333pt;}
.yb{bottom:8.623467pt;}
.y70{bottom:23.535733pt;}
.y38{bottom:40.116000pt;}
.y72{bottom:40.146667pt;}
.y6f{bottom:42.735733pt;}
.y34{bottom:89.434667pt;}
.yf{bottom:97.644133pt;}
.y6d{bottom:100.502533pt;}
.y33{bottom:110.814267pt;}
.ye{bottom:116.844133pt;}
.y6c{bottom:118.102533pt;}
.y32{bottom:128.414267pt;}
.y6b{bottom:139.486533pt;}
.yd{bottom:141.877867pt;}
.y31{bottom:146.014267pt;}
.y6a{bottom:157.086533pt;}
.y30{bottom:167.393733pt;}
.y5{bottom:167.670400pt;}
.yc{bottom:170.677867pt;}
.y69{bottom:174.686533pt;}
.y2f{bottom:184.993733pt;}
.y4{bottom:186.870400pt;}
.y68{bottom:192.286533pt;}
.y2e{bottom:202.593733pt;}
.y3{bottom:206.070400pt;}
.y67{bottom:209.886533pt;}
.ya{bottom:217.754533pt;}
.y2d{bottom:220.193733pt;}
.y66{bottom:227.486533pt;}
.y2c{bottom:237.793733pt;}
.y65{bottom:245.086533pt;}
.y9{bottom:249.758533pt;}
.y2b{bottom:255.393733pt;}
.y64{bottom:262.686533pt;}
.y2a{bottom:276.773333pt;}
.y63{bottom:280.286533pt;}
.y8{bottom:281.762533pt;}
.y29{bottom:294.373333pt;}
.y62{bottom:297.886533pt;}
.y6{bottom:303.245333pt;}
.y28{bottom:311.973200pt;}
.y7{bottom:313.766533pt;}
.y61{bottom:319.270533pt;}
.y27{bottom:329.573200pt;}
.y60{bottom:336.870533pt;}
.y26{bottom:347.173200pt;}
.y5f{bottom:354.470533pt;}
.y25{bottom:364.773333pt;}
.y5e{bottom:372.070533pt;}
.y24{bottom:382.373333pt;}
.y5d{bottom:389.670533pt;}
.y23{bottom:403.752800pt;}
.y5c{bottom:407.270533pt;}
.y22{bottom:421.352800pt;}
.y5b{bottom:424.870533pt;}
.y21{bottom:438.952800pt;}
.y5a{bottom:442.470533pt;}
.y20{bottom:456.552800pt;}
.y59{bottom:463.854533pt;}
.y1f{bottom:474.152800pt;}
.y58{bottom:481.454533pt;}
.y1e{bottom:491.752800pt;}
.y57{bottom:499.054533pt;}
.y1d{bottom:509.352800pt;}
.y56{bottom:516.654533pt;}
.y1c{bottom:526.952800pt;}
.y55{bottom:534.254533pt;}
.y54{bottom:551.854533pt;}
.y53{bottom:573.238533pt;}
.y52{bottom:590.838533pt;}
.y51{bottom:608.438533pt;}
.y50{bottom:626.038533pt;}
.y1b{bottom:644.353333pt;}
.y4f{bottom:647.422533pt;}
.y1a{bottom:660.353333pt;}
.y4e{bottom:665.022533pt;}
.y19{bottom:676.353333pt;}
.y4d{bottom:682.622533pt;}
.y18{bottom:692.353333pt;}
.y4c{bottom:700.222533pt;}
.y4b{bottom:717.822533pt;}
.y17{bottom:724.353333pt;}
.y4a{bottom:735.422533pt;}
.y49{bottom:753.022533pt;}
.y48{bottom:770.622533pt;}
.y16{bottom:772.050933pt;}
.y15{bottom:788.050933pt;}
.y47{bottom:792.006533pt;}
.y14{bottom:804.050933pt;}
.y46{bottom:809.606533pt;}
.y45{bottom:827.206533pt;}
.y13{bottom:839.830400pt;}
.y44{bottom:844.806533pt;}
.y43{bottom:862.406533pt;}
.y42{bottom:880.006533pt;}
.y12{bottom:887.528133pt;}
.y41{bottom:897.606533pt;}
.y40{bottom:915.206533pt;}
.y11{bottom:921.128133pt;}
.y3f{bottom:932.806533pt;}
.y10{bottom:951.528133pt;}
.y3e{bottom:954.190533pt;}
.y3d{bottom:971.790533pt;}
.y3c{bottom:989.390533pt;}
.y3b{bottom:1006.990533pt;}
.y1{bottom:1020.310667pt;}
.y3a{bottom:1024.590533pt;}
.y6e{bottom:1054.450667pt;}
.y37{bottom:1057.453067pt;}
.y39{bottom:1062.519733pt;}
.y73{bottom:1065.186400pt;}
.y36{bottom:1076.653067pt;}
.y35{bottom:1095.853067pt;}
.h2{height:24.770667pt;}
.hd{height:43.765333pt;}
.h10{height:44.000000pt;}
.he{height:44.660023pt;}
.h13{height:45.531250pt;}
.h11{height:46.125000pt;}
.hf{height:47.065104pt;}
.h4{height:48.656250pt;}
.h12{height:48.720026pt;}
.ha{height:51.343750pt;}
.h14{height:59.632000pt;}
.h3{height:59.903708pt;}
.h8{height:62.869333pt;}
.hc{height:71.232000pt;}
.h9{height:75.552000pt;}
.hb{height:79.749333pt;}
.h6{height:88.144000pt;}
.h7{height:92.389333pt;}
.h5{height:343.698667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:389.441867pt;}
.w3{width:590.764800pt;}
.w2{width:630.706000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:85.039333pt;}
.x15{left:86.929200pt;}
.x9{left:89.836400pt;}
.x19{left:91.140533pt;}
.x14{left:105.826800pt;}
.x3{left:116.220533pt;}
.x8{left:136.409067pt;}
.x2{left:215.916000pt;}
.xb{left:264.635867pt;}
.x4{left:275.260400pt;}
.xa{left:289.156133pt;}
.xf{left:308.171333pt;}
.x18{left:321.581200pt;}
.x6{left:355.664267pt;}
.x7{left:361.328267pt;}
.x5{left:376.276400pt;}
.xc{left:391.795733pt;}
.x17{left:461.453200pt;}
.xe{left:472.358267pt;}
.x13{left:474.821600pt;}
.x11{left:480.717067pt;}
.x10{left:521.842267pt;}
.x12{left:526.534933pt;}
.xd{left:529.981467pt;}
.x16{left:566.781200pt;}
.x1b{left:588.126000pt;}
.x1a{left:696.857333pt;}
}




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