
    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_ce1d2d8d26706b71f35fc733.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_a48f5fd7c1fef4b7b4b72837.woff')format("woff");}.ff2{font-family:ff2;line-height:0.913000;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_00ecc0f4c3cd6d7513d34dc7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_5037a2a5220983a46b8c8b1d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_764abf3f36d5de216da87d42.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_72d5c3b753679048e25e23c4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923500;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_9edc3b3f96ce12a6403a4355.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_33756d62b7b8d71754bb130b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_0d97beddb7947286e2402b8f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_caf94a16d00c00c5d5d7c902.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_4851555da1bd4a8873022673.woff')format("woff");}.ffb{font-family:ffb;line-height:1.051000;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;}
.ls3b{letter-spacing:-10.096950px;}
.ls1b{letter-spacing:-2.802600px;}
.ls1c{letter-spacing:-2.798550px;}
.ls5{letter-spacing:-2.797950px;}
.ls3{letter-spacing:-2.554650px;}
.ls2d{letter-spacing:-2.057700px;}
.ls2c{letter-spacing:-1.946700px;}
.ls13{letter-spacing:-1.946400px;}
.ls9{letter-spacing:-1.697955px;}
.ls1f{letter-spacing:-1.658400px;}
.ls35{letter-spacing:-1.514100px;}
.ls20{letter-spacing:-1.451100px;}
.ls3a{letter-spacing:-1.338150px;}
.ls39{letter-spacing:-1.250235px;}
.ls24{letter-spacing:-1.245600px;}
.ls15{letter-spacing:-1.189650px;}
.ls16{letter-spacing:-1.081500px;}
.ls1e{letter-spacing:-1.058760px;}
.ls2{letter-spacing:-0.974400px;}
.ls12{letter-spacing:-0.932715px;}
.ls10{letter-spacing:-0.852600px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.014850px;}
.ls8{letter-spacing:0.184110px;}
.ls22{letter-spacing:0.207600px;}
.ls6{letter-spacing:0.270375px;}
.ls29{letter-spacing:0.273000px;}
.ls34{letter-spacing:0.306000px;}
.ls21{letter-spacing:0.310950px;}
.ls2f{letter-spacing:0.324450px;}
.ls27{letter-spacing:0.393000px;}
.ls2b{letter-spacing:0.421785px;}
.ls23{letter-spacing:0.519000px;}
.ls7{letter-spacing:0.540750px;}
.ls1d{letter-spacing:0.934200px;}
.ls33{letter-spacing:1.081500px;}
.ls31{letter-spacing:1.200465px;}
.ls4{letter-spacing:1.338150px;}
.ls0{letter-spacing:1.459800px;}
.ls30{letter-spacing:1.730400px;}
.ls32{letter-spacing:2.033220px;}
.ls28{letter-spacing:2.057700px;}
.ls26{letter-spacing:2.271150px;}
.ls11{letter-spacing:25.806750px;}
.ls38{letter-spacing:26.418300px;}
.ls37{letter-spacing:33.829200px;}
.ls36{letter-spacing:33.912600px;}
.ls2a{letter-spacing:41.335200px;}
.ls2e{letter-spacing:41.418600px;}
.ls19{letter-spacing:43.837200px;}
.ls1a{letter-spacing:43.920600px;}
.lsf{letter-spacing:79.072500px;}
.ls14{letter-spacing:83.745000px;}
.ls25{letter-spacing:83.797500px;}
.ls17{letter-spacing:85.320000px;}
.ls18{letter-spacing:85.372500px;}
.lsa{letter-spacing:107.972151px;}
.lsb{letter-spacing:107.986404px;}
.lsd{letter-spacing:108.000405px;}
.lsc{letter-spacing:108.000495px;}
.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;}
}
.ws7{word-spacing:-120.000015px;}
.ws5{word-spacing:-84.000015px;}
.ws1d{word-spacing:-40.747800px;}
.ws0{word-spacing:-32.602200px;}
.ws17{word-spacing:-29.957550px;}
.ws19{word-spacing:-29.782500px;}
.ws1c{word-spacing:-29.719620px;}
.ws1b{word-spacing:-29.416800px;}
.ws1a{word-spacing:-28.010850px;}
.ws18{word-spacing:-27.724800px;}
.ws10{word-spacing:-27.686400px;}
.wsd{word-spacing:-27.492900px;}
.wsb{word-spacing:-26.674200px;}
.wsf{word-spacing:-26.604900px;}
.ws15{word-spacing:-26.534400px;}
.wse{word-spacing:-26.496750px;}
.wsc{word-spacing:-25.546500px;}
.ws8{word-spacing:-25.475997px;}
.ws16{word-spacing:-25.327200px;}
.ws9{word-spacing:-24.318000px;}
.ws11{word-spacing:-23.770200px;}
.ws12{word-spacing:-23.735850px;}
.ws6{word-spacing:-23.160003px;}
.wsa{word-spacing:-20.844000px;}
.ws1e{word-spacing:-17.395950px;}
.ws2{word-spacing:0.000000px;}
.ws14{word-spacing:0.378000px;}
.ws1{word-spacing:2.793900px;}
.ws13{word-spacing:4.177800px;}
.ws3{word-spacing:45.402075px;}
.ws4{word-spacing:45.500070px;}
._b{margin-left:-14.089950px;}
._9{margin-left:-10.630650px;}
._8{margin-left:-8.546850px;}
._c{margin-left:-7.504800px;}
._a{margin-left:-6.465450px;}
._5{margin-left:-5.218500px;}
._4{margin-left:-4.167450px;}
._2{margin-left:-2.778300px;}
._1{margin-left:-1.389150px;}
._0{width:1.587600px;}
._3{width:3.373650px;}
._7{width:4.987650px;}
._e{width:6.119850px;}
._13{width:7.299000px;}
._11{width:9.245400px;}
._10{width:10.803450px;}
._12{width:12.408300px;}
._d{width:24.659700px;}
._6{width:29.536950px;}
._f{width:32.497050px;}
.fc6{color:rgb(0,151,167);}
.fc3{color:rgb(0,156,198);}
.fc4{color:rgb(24,60,118);}
.fc2{color:transparent;}
.fc7{color:rgb(89,89,89);}
.fc5{color:rgb(67,67,67);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:84.000015px;}
.fs7{font-size:102.000015px;}
.fse{font-size:103.650000px;}
.fsd{font-size:103.800000px;}
.fs6{font-size:108.000000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:108.300000px;}
.fsa{font-size:120.000015px;}
.fs2{font-size:121.650000px;}
.fs1{font-size:121.800000px;}
.fsc{font-size:126.000000px;}
.fsb{font-size:131.999985px;}
.fs5{font-size:144.000000px;}
.fs9{font-size:151.200000px;}
.fsf{font-size:180.300000px;}
.fs0{font-size:198.450000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:29.524515px;}
.y43{bottom:49.800000px;}
.y8{bottom:61.650000px;}
.y42{bottom:85.875000px;}
.y51{bottom:89.250000px;}
.y7{bottom:97.725000px;}
.y4e{bottom:109.537500px;}
.y41{bottom:115.200000px;}
.y20{bottom:119.505187px;}
.y50{bottom:121.950000px;}
.y17{bottom:128.070000px;}
.y5b{bottom:128.700000px;}
.y27{bottom:132.225112px;}
.y4d{bottom:134.362500px;}
.y40{bottom:151.245000px;}
.y52{bottom:160.275000px;}
.y4c{bottom:164.775000px;}
.y18{bottom:167.156850px;}
.y6{bottom:169.875000px;}
.y1f{bottom:170.505150px;}
.y2d{bottom:170.865150px;}
.y26{bottom:171.825112px;}
.y5a{bottom:172.650000px;}
.y3f{bottom:186.180000px;}
.y56{bottom:194.100000px;}
.y4b{bottom:195.225000px;}
.y10{bottom:199.725000px;}
.y53{bottom:206.475000px;}
.y25{bottom:211.425112px;}
.y16{bottom:221.430037px;}
.y1e{bottom:221.505112px;}
.y2c{bottom:222.585112px;}
.y4a{bottom:226.770000px;}
.y3a{bottom:230.145000px;}
.y35{bottom:236.925000px;}
.yf{bottom:239.175000px;}
.y5{bottom:241.995000px;}
.y4f{bottom:244.800000px;}
.y15{bottom:253.830037px;}
.y2b{bottom:254.985112px;}
.y49{bottom:257.220000px;}
.y59{bottom:258.330000px;}
.y3e{bottom:259.470000px;}
.y24{bottom:265.305187px;}
.y38{bottom:266.220000px;}
.y4{bottom:270.195000px;}
.y1d{bottom:272.505187px;}
.y34{bottom:272.970000px;}
.ye{bottom:277.500000px;}
.y2e{bottom:282.402750px;}
.y48{bottom:287.625000px;}
.y3d{bottom:293.250000px;}
.y23{bottom:301.305187px;}
.y58{bottom:302.280000px;}
.y2a{bottom:303.465187px;}
.y1c{bottom:308.505187px;}
.y37{bottom:309.030000px;}
.yd{bottom:316.950000px;}
.y47{bottom:318.075000px;}
.y14{bottom:318.629925px;}
.y29{bottom:341.265154px;}
.y3{bottom:342.300000px;}
.y39{bottom:345.120000px;}
.y46{bottom:348.495000px;}
.y13{bottom:351.029970px;}
.y33{bottom:352.995000px;}
.y22{bottom:353.025150px;}
.yc{bottom:355.275000px;}
.y1b{bottom:359.505150px;}
.y3c{bottom:365.400000px;}
.y2{bottom:371.625000px;}
.y12{bottom:383.429981px;}
.y36{bottom:389.070000px;}
.y21{bottom:392.625150px;}
.y28{bottom:394.065150px;}
.yb{bottom:394.695000px;}
.y1a{bottom:395.505150px;}
.y32{bottom:395.850000px;}
.y45{bottom:410.475000px;}
.y31{bottom:431.880000px;}
.y11{bottom:432.989966px;}
.ya{bottom:433.005000px;}
.y3b{bottom:436.425000px;}
.y44{bottom:440.925000px;}
.y1{bottom:470.070000px;}
.y55{bottom:489.570000px;}
.y9{bottom:513.720000px;}
.y57{bottom:514.845000px;}
.y30{bottom:515.970000px;}
.y19{bottom:526.525050px;}
.y54{bottom:544.800000px;}
.h9{height:59.808011px;}
.h7{height:78.570000px;}
.h14{height:78.845361px;}
.h8{height:79.101012px;}
.h16{height:80.380575px;}
.h15{height:80.496900px;}
.he{height:83.754000px;}
.h4{height:83.870325px;}
.h5{height:83.986650px;}
.h13{height:84.287769px;}
.h11{height:84.391699px;}
.h10{height:88.564526px;}
.h1a{height:88.673730px;}
.hb{height:93.060012px;}
.h17{height:93.657900px;}
.h18{height:93.787800px;}
.h3{height:94.339575px;}
.h2{height:94.455900px;}
.hd{height:97.713000px;}
.hc{height:102.365988px;}
.h6{height:104.760000px;}
.ha{height:117.255600px;}
.h12{height:120.996606px;}
.h19{height:124.924658px;}
.hf{height:137.500269px;}
.h1{height:153.897975px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xd{left:46.939965px;}
.x11{left:54.011366px;}
.xe{left:55.826925px;}
.xa{left:64.874984px;}
.x18{left:95.287484px;}
.x22{left:99.562484px;}
.xf{left:100.939965px;}
.x1c{left:105.412484px;}
.x10{left:109.826925px;}
.x13{left:111.631864px;}
.x25{left:123.824984px;}
.x23{left:126.337484px;}
.x1e{left:130.799984px;}
.x12{left:154.939965px;}
.x4{left:159.074984px;}
.x21{left:163.574984px;}
.x2{left:169.394984px;}
.xc{left:180.209524px;}
.x1{left:187.304984px;}
.x20{left:194.744984px;}
.x6{left:225.149984px;}
.x1a{left:239.294984px;}
.x1f{left:260.249984px;}
.x3{left:261.569984px;}
.x16{left:277.694984px;}
.x24{left:298.619984px;}
.x1d{left:301.244984px;}
.x7{left:312.794984px;}
.x27{left:314.819984px;}
.x19{left:320.624984px;}
.x17{left:330.494984px;}
.x9{left:345.749984px;}
.x1b{left:350.699984px;}
.x5{left:380.474984px;}
.x8{left:382.349984px;}
.x26{left:434.024984px;}
.xb{left:441.567000px;}
.x15{left:853.717365px;}
.x14{left:872.860500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3b{letter-spacing:-8.975067pt;}
.ls1b{letter-spacing:-2.491200pt;}
.ls1c{letter-spacing:-2.487600pt;}
.ls5{letter-spacing:-2.487067pt;}
.ls3{letter-spacing:-2.270800pt;}
.ls2d{letter-spacing:-1.829067pt;}
.ls2c{letter-spacing:-1.730400pt;}
.ls13{letter-spacing:-1.730133pt;}
.ls9{letter-spacing:-1.509293pt;}
.ls1f{letter-spacing:-1.474133pt;}
.ls35{letter-spacing:-1.345867pt;}
.ls20{letter-spacing:-1.289867pt;}
.ls3a{letter-spacing:-1.189467pt;}
.ls39{letter-spacing:-1.111320pt;}
.ls24{letter-spacing:-1.107200pt;}
.ls15{letter-spacing:-1.057467pt;}
.ls16{letter-spacing:-0.961333pt;}
.ls1e{letter-spacing:-0.941120pt;}
.ls2{letter-spacing:-0.866133pt;}
.ls12{letter-spacing:-0.829080pt;}
.ls10{letter-spacing:-0.757867pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.013200pt;}
.ls8{letter-spacing:0.163653pt;}
.ls22{letter-spacing:0.184533pt;}
.ls6{letter-spacing:0.240333pt;}
.ls29{letter-spacing:0.242667pt;}
.ls34{letter-spacing:0.272000pt;}
.ls21{letter-spacing:0.276400pt;}
.ls2f{letter-spacing:0.288400pt;}
.ls27{letter-spacing:0.349333pt;}
.ls2b{letter-spacing:0.374920pt;}
.ls23{letter-spacing:0.461333pt;}
.ls7{letter-spacing:0.480667pt;}
.ls1d{letter-spacing:0.830400pt;}
.ls33{letter-spacing:0.961333pt;}
.ls31{letter-spacing:1.067080pt;}
.ls4{letter-spacing:1.189467pt;}
.ls0{letter-spacing:1.297600pt;}
.ls30{letter-spacing:1.538133pt;}
.ls32{letter-spacing:1.807307pt;}
.ls28{letter-spacing:1.829067pt;}
.ls26{letter-spacing:2.018800pt;}
.ls11{letter-spacing:22.939333pt;}
.ls38{letter-spacing:23.482933pt;}
.ls37{letter-spacing:30.070400pt;}
.ls36{letter-spacing:30.144533pt;}
.ls2a{letter-spacing:36.742400pt;}
.ls2e{letter-spacing:36.816533pt;}
.ls19{letter-spacing:38.966400pt;}
.ls1a{letter-spacing:39.040533pt;}
.lsf{letter-spacing:70.286667pt;}
.ls14{letter-spacing:74.440000pt;}
.ls25{letter-spacing:74.486667pt;}
.ls17{letter-spacing:75.840000pt;}
.ls18{letter-spacing:75.886667pt;}
.lsa{letter-spacing:95.975245pt;}
.lsb{letter-spacing:95.987915pt;}
.lsd{letter-spacing:96.000360pt;}
.lsc{letter-spacing:96.000440pt;}
.ws7{word-spacing:-106.666680pt;}
.ws5{word-spacing:-74.666680pt;}
.ws1d{word-spacing:-36.220267pt;}
.ws0{word-spacing:-28.979733pt;}
.ws17{word-spacing:-26.628933pt;}
.ws19{word-spacing:-26.473333pt;}
.ws1c{word-spacing:-26.417440pt;}
.ws1b{word-spacing:-26.148267pt;}
.ws1a{word-spacing:-24.898533pt;}
.ws18{word-spacing:-24.644267pt;}
.ws10{word-spacing:-24.610133pt;}
.wsd{word-spacing:-24.438133pt;}
.wsb{word-spacing:-23.710400pt;}
.wsf{word-spacing:-23.648800pt;}
.ws15{word-spacing:-23.586133pt;}
.wse{word-spacing:-23.552667pt;}
.wsc{word-spacing:-22.708000pt;}
.ws8{word-spacing:-22.645331pt;}
.ws16{word-spacing:-22.513067pt;}
.ws9{word-spacing:-21.616000pt;}
.ws11{word-spacing:-21.129067pt;}
.ws12{word-spacing:-21.098533pt;}
.ws6{word-spacing:-20.586669pt;}
.wsa{word-spacing:-18.528000pt;}
.ws1e{word-spacing:-15.463067pt;}
.ws2{word-spacing:0.000000pt;}
.ws14{word-spacing:0.336000pt;}
.ws1{word-spacing:2.483467pt;}
.ws13{word-spacing:3.713600pt;}
.ws3{word-spacing:40.357400pt;}
.ws4{word-spacing:40.444507pt;}
._b{margin-left:-12.524400pt;}
._9{margin-left:-9.449467pt;}
._8{margin-left:-7.597200pt;}
._c{margin-left:-6.670933pt;}
._a{margin-left:-5.747067pt;}
._5{margin-left:-4.638667pt;}
._4{margin-left:-3.704400pt;}
._2{margin-left:-2.469600pt;}
._1{margin-left:-1.234800pt;}
._0{width:1.411200pt;}
._3{width:2.998800pt;}
._7{width:4.433467pt;}
._e{width:5.439867pt;}
._13{width:6.488000pt;}
._11{width:8.218133pt;}
._10{width:9.603067pt;}
._12{width:11.029600pt;}
._d{width:21.919733pt;}
._6{width:26.255067pt;}
._f{width:28.886267pt;}
.fs8{font-size:74.666680pt;}
.fs7{font-size:90.666680pt;}
.fse{font-size:92.133333pt;}
.fsd{font-size:92.266667pt;}
.fs6{font-size:96.000000pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:96.266667pt;}
.fsa{font-size:106.666680pt;}
.fs2{font-size:108.133333pt;}
.fs1{font-size:108.266667pt;}
.fsc{font-size:112.000000pt;}
.fsb{font-size:117.333320pt;}
.fs5{font-size:128.000000pt;}
.fs9{font-size:134.400000pt;}
.fsf{font-size:160.266667pt;}
.fs0{font-size:176.400000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:26.244013pt;}
.y43{bottom:44.266667pt;}
.y8{bottom:54.800000pt;}
.y42{bottom:76.333333pt;}
.y51{bottom:79.333333pt;}
.y7{bottom:86.866667pt;}
.y4e{bottom:97.366667pt;}
.y41{bottom:102.400000pt;}
.y20{bottom:106.226833pt;}
.y50{bottom:108.400000pt;}
.y17{bottom:113.840000pt;}
.y5b{bottom:114.400000pt;}
.y27{bottom:117.533433pt;}
.y4d{bottom:119.433333pt;}
.y40{bottom:134.440000pt;}
.y52{bottom:142.466667pt;}
.y4c{bottom:146.466667pt;}
.y18{bottom:148.583867pt;}
.y6{bottom:151.000000pt;}
.y1f{bottom:151.560133pt;}
.y2d{bottom:151.880133pt;}
.y26{bottom:152.733433pt;}
.y5a{bottom:153.466667pt;}
.y3f{bottom:165.493333pt;}
.y56{bottom:172.533333pt;}
.y4b{bottom:173.533333pt;}
.y10{bottom:177.533333pt;}
.y53{bottom:183.533333pt;}
.y25{bottom:187.933433pt;}
.y16{bottom:196.826700pt;}
.y1e{bottom:196.893433pt;}
.y2c{bottom:197.853433pt;}
.y4a{bottom:201.573333pt;}
.y3a{bottom:204.573333pt;}
.y35{bottom:210.600000pt;}
.yf{bottom:212.600000pt;}
.y5{bottom:215.106667pt;}
.y4f{bottom:217.600000pt;}
.y15{bottom:225.626700pt;}
.y2b{bottom:226.653433pt;}
.y49{bottom:228.640000pt;}
.y59{bottom:229.626667pt;}
.y3e{bottom:230.640000pt;}
.y24{bottom:235.826833pt;}
.y38{bottom:236.640000pt;}
.y4{bottom:240.173333pt;}
.y1d{bottom:242.226833pt;}
.y34{bottom:242.640000pt;}
.ye{bottom:246.666667pt;}
.y2e{bottom:251.024667pt;}
.y48{bottom:255.666667pt;}
.y3d{bottom:260.666667pt;}
.y23{bottom:267.826833pt;}
.y58{bottom:268.693333pt;}
.y2a{bottom:269.746833pt;}
.y1c{bottom:274.226833pt;}
.y37{bottom:274.693333pt;}
.yd{bottom:281.733333pt;}
.y47{bottom:282.733333pt;}
.y14{bottom:283.226600pt;}
.y29{bottom:303.346803pt;}
.y3{bottom:304.266667pt;}
.y39{bottom:306.773333pt;}
.y46{bottom:309.773333pt;}
.y13{bottom:312.026640pt;}
.y33{bottom:313.773333pt;}
.y22{bottom:313.800133pt;}
.yc{bottom:315.800000pt;}
.y1b{bottom:319.560133pt;}
.y3c{bottom:324.800000pt;}
.y2{bottom:330.333333pt;}
.y12{bottom:340.826650pt;}
.y36{bottom:345.840000pt;}
.y21{bottom:349.000133pt;}
.y28{bottom:350.280133pt;}
.yb{bottom:350.840000pt;}
.y1a{bottom:351.560133pt;}
.y32{bottom:351.866667pt;}
.y45{bottom:364.866667pt;}
.y31{bottom:383.893333pt;}
.y11{bottom:384.879970pt;}
.ya{bottom:384.893333pt;}
.y3b{bottom:387.933333pt;}
.y44{bottom:391.933333pt;}
.y1{bottom:417.840000pt;}
.y55{bottom:435.173333pt;}
.y9{bottom:456.640000pt;}
.y57{bottom:457.640000pt;}
.y30{bottom:458.640000pt;}
.y19{bottom:468.022267pt;}
.y54{bottom:484.266667pt;}
.h9{height:53.162676pt;}
.h7{height:69.840000pt;}
.h14{height:70.084766pt;}
.h8{height:70.312010pt;}
.h16{height:71.449400pt;}
.h15{height:71.552800pt;}
.he{height:74.448000pt;}
.h4{height:74.551400pt;}
.h5{height:74.654800pt;}
.h13{height:74.922461pt;}
.h11{height:75.014844pt;}
.h10{height:78.724023pt;}
.h1a{height:78.821094pt;}
.hb{height:82.720010pt;}
.h17{height:83.251467pt;}
.h18{height:83.366933pt;}
.h3{height:83.857400pt;}
.h2{height:83.960800pt;}
.hd{height:86.856000pt;}
.hc{height:90.991990pt;}
.h6{height:93.120000pt;}
.ha{height:104.227200pt;}
.h12{height:107.552539pt;}
.h19{height:111.044141pt;}
.hf{height:122.222461pt;}
.h1{height:136.798200pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xd{left:41.724413pt;}
.x11{left:48.010103pt;}
.xe{left:49.623933pt;}
.xa{left:57.666652pt;}
.x18{left:84.699986pt;}
.x22{left:88.499986pt;}
.xf{left:89.724413pt;}
.x1c{left:93.699986pt;}
.x10{left:97.623933pt;}
.x13{left:99.228323pt;}
.x25{left:110.066652pt;}
.x23{left:112.299986pt;}
.x1e{left:116.266652pt;}
.x12{left:137.724413pt;}
.x4{left:141.399986pt;}
.x21{left:145.399986pt;}
.x2{left:150.573319pt;}
.xc{left:160.186243pt;}
.x1{left:166.493319pt;}
.x20{left:173.106652pt;}
.x6{left:200.133319pt;}
.x1a{left:212.706652pt;}
.x1f{left:231.333319pt;}
.x3{left:232.506652pt;}
.x16{left:246.839986pt;}
.x24{left:265.439986pt;}
.x1d{left:267.773319pt;}
.x7{left:278.039986pt;}
.x27{left:279.839986pt;}
.x19{left:284.999986pt;}
.x17{left:293.773319pt;}
.x9{left:307.333319pt;}
.x1b{left:311.733319pt;}
.x5{left:338.199986pt;}
.x8{left:339.866652pt;}
.x26{left:385.799986pt;}
.xb{left:392.504000pt;}
.x15{left:758.859880pt;}
.x14{left:775.876000pt;}
}




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