
    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_80b1e3518222bf740a174910.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_edb918fa5e2ac890e3fc886a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_0fa8fdded0f5313b11696083.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_be357c8921c5854741417130.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082520;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.000000px;}
.v5{vertical-align:17.760000px;}
.v4{vertical-align:22.200000px;}
.v6{vertical-align:24.420000px;}
.v1{vertical-align:26.640000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.003000px;}
.lsb{letter-spacing:0.016200px;}
.lsa{letter-spacing:0.016800px;}
.lsc{letter-spacing:0.022800px;}
.ls8{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.214200px;}
.ls6{letter-spacing:3.300000px;}
.ls3{letter-spacing:4.197333px;}
.ls2{letter-spacing:4.200000px;}
.ls4{letter-spacing:6.000000px;}
.ls5{letter-spacing:7.200000px;}
.ls0{letter-spacing:10.200000px;}
.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;}
}
.ws8{word-spacing:-51.282000px;}
.ws0{word-spacing:-38.862000px;}
.ws7{word-spacing:-27.432000px;}
.ws1{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.860000px;}
.wsc{word-spacing:-16.500000px;}
.ws9{word-spacing:-16.302000px;}
.wsd{word-spacing:-16.017000px;}
.wse{word-spacing:-14.820000px;}
.wsb{word-spacing:-14.079000px;}
.ws2{word-spacing:-12.139200px;}
.wsa{word-spacing:-11.127600px;}
.ws5{word-spacing:-10.116000px;}
.ws6{word-spacing:-8.092800px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-19.656000px;}
._14{margin-left:-15.372000px;}
._10{margin-left:-14.184533px;}
._1b{margin-left:-12.492600px;}
._1{margin-left:-10.404000px;}
._16{margin-left:-9.186000px;}
._9{margin-left:-7.178400px;}
._2{margin-left:-5.610000px;}
._7{margin-left:-4.409400px;}
._3{margin-left:-3.060000px;}
._0{margin-left:-1.584000px;}
._c{width:1.080000px;}
._6{width:2.213400px;}
._f{width:3.219600px;}
._13{width:5.132400px;}
._11{width:6.623467px;}
._12{width:7.920533px;}
._5{width:9.018600px;}
._4{width:10.514667px;}
._d{width:11.749800px;}
._8{width:13.104000px;}
._a{width:14.184000px;}
._b{width:18.648000px;}
._50{width:22.965000px;}
._28{width:38.923200px;}
._54{width:48.917400px;}
._15{width:56.923200px;}
._51{width:83.163600px;}
._47{width:127.892400px;}
._25{width:152.502000px;}
._29{width:172.306200px;}
._42{width:176.577000px;}
._18{width:185.652000px;}
._1d{width:187.618200px;}
._48{width:190.474800px;}
._4c{width:192.070200px;}
._3e{width:195.593400px;}
._40{width:196.856400px;}
._39{width:202.503000px;}
._4d{width:205.229400px;}
._1c{width:208.324200px;}
._53{width:210.118800px;}
._20{width:212.661000px;}
._2d{width:214.787400px;}
._3f{width:218.909400px;}
._1e{width:221.751600px;}
._4f{width:223.298400px;}
._57{width:228.518400px;}
._4e{width:230.237400px;}
._55{width:231.696000px;}
._30{width:233.913000px;}
._3c{width:236.965800px;}
._22{width:240.115800px;}
._31{width:242.137800px;}
._26{width:245.755800px;}
._44{width:248.050200px;}
._52{width:249.381000px;}
._1f{width:252.991200px;}
._46{width:256.312200px;}
._27{width:258.738600px;}
._35{width:263.520000px;}
._24{width:266.112000px;}
._41{width:267.961200px;}
._56{width:269.837400px;}
._43{width:271.620000px;}
._3d{width:274.298400px;}
._2f{width:278.289600px;}
._34{width:301.314600px;}
._23{width:305.247000px;}
._37{width:306.988200px;}
._2e{width:308.623200px;}
._21{width:310.105800px;}
._58{width:318.695400px;}
._2a{width:323.151600px;}
._3a{width:326.372400px;}
._36{width:327.961800px;}
._45{width:328.973400px;}
._3b{width:333.035400px;}
._2b{width:337.899000px;}
._33{width:340.098600px;}
._49{width:348.959400px;}
._4b{width:357.132600px;}
._32{width:363.561000px;}
._4a{width:371.754000px;}
._2c{width:383.985000px;}
._38{width:400.214400px;}
._17{width:502.367400px;}
._1a{width:532.512000px;}
._19{width:622.200000px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:28.800000px;}
.fs5{font-size:36.000000px;}
.fsc{font-size:39.600000px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:43.200000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.837550px;}
.y34{bottom:171.813150px;}
.y1f{bottom:177.363150px;}
.yc8{bottom:188.313150px;}
.y33{bottom:193.863150px;}
.y32{bottom:204.813150px;}
.y71{bottom:210.363150px;}
.y31{bottom:226.863150px;}
.y52{bottom:237.813150px;}
.y70{bottom:243.363150px;}
.y1e{bottom:244.626750px;}
.y51{bottom:254.313150px;}
.y6f{bottom:259.863150px;}
.y1d{bottom:266.526750px;}
.y50{bottom:276.363150px;}
.y1c{bottom:288.426750px;}
.y6e{bottom:292.863150px;}
.y6d{bottom:309.363150px;}
.y1b{bottom:310.326750px;}
.y91{bottom:325.863150px;}
.y1a{bottom:332.226750px;}
.y6c{bottom:338.004600px;}
.y4f{bottom:341.264100px;}
.yad{bottom:342.363150px;}
.yc6{bottom:343.490400px;}
.y19{bottom:354.126750px;}
.y6b{bottom:357.804600px;}
.yc5{bottom:363.290400px;}
.y4e{bottom:363.764100px;}
.y90{bottom:366.210000px;}
.yac{bottom:373.202100px;}
.y18{bottom:376.026750px;}
.y6a{bottom:377.604600px;}
.y4d{bottom:381.764100px;}
.yc4{bottom:383.090400px;}
.y8f{bottom:386.010000px;}
.yab{bottom:393.002100px;}
.y69{bottom:397.404600px;}
.y17{bottom:397.926750px;}
.y8e{bottom:405.810000px;}
.yc3{bottom:411.394200px;}
.yaa{bottom:412.652100px;}
.y68{bottom:417.204600px;}
.y16{bottom:419.826750px;}
.y8d{bottom:425.610000px;}
.y4c{bottom:426.764100px;}
.ya9{bottom:432.302100px;}
.y67{bottom:437.004600px;}
.y15{bottom:441.726750px;}
.y8c{bottom:445.410000px;}
.y4b{bottom:449.264100px;}
.yc2{bottom:450.994200px;}
.ya8{bottom:451.952100px;}
.y66{bottom:456.804600px;}
.y14{bottom:463.626750px;}
.y8b{bottom:465.210000px;}
.yc1{bottom:470.794350px;}
.ya7{bottom:471.602100px;}
.y4a{bottom:471.764100px;}
.y65{bottom:476.604600px;}
.y8a{bottom:485.010000px;}
.y13{bottom:485.526750px;}
.yc0{bottom:490.594200px;}
.ya6{bottom:491.252100px;}
.y49{bottom:494.264100px;}
.y64{bottom:496.404600px;}
.y89{bottom:504.810000px;}
.y12{bottom:507.426750px;}
.ya5{bottom:510.902100px;}
.y63{bottom:516.204600px;}
.y48{bottom:516.764100px;}
.ybf{bottom:518.898150px;}
.y88{bottom:524.610000px;}
.y11{bottom:529.326750px;}
.ya4{bottom:530.552100px;}
.y62{bottom:536.004600px;}
.y47{bottom:539.264100px;}
.y87{bottom:544.410000px;}
.ya3{bottom:550.202100px;}
.y10{bottom:551.226750px;}
.y61{bottom:555.804600px;}
.ybe{bottom:558.498300px;}
.y46{bottom:561.764100px;}
.y86{bottom:564.210000px;}
.ya2{bottom:569.852100px;}
.yf{bottom:573.126750px;}
.y60{bottom:575.604600px;}
.ybd{bottom:578.298150px;}
.y85{bottom:584.010000px;}
.y45{bottom:584.264100px;}
.y30{bottom:588.412500px;}
.ya1{bottom:589.502100px;}
.ye{bottom:595.026750px;}
.y5f{bottom:595.404600px;}
.ybc{bottom:598.098150px;}
.y84{bottom:603.810000px;}
.y2f{bottom:606.412500px;}
.ya0{bottom:609.152100px;}
.y5e{bottom:615.204600px;}
.yd{bottom:616.926750px;}
.ybb{bottom:617.898150px;}
.y83{bottom:623.610000px;}
.y2e{bottom:624.412500px;}
.y5d{bottom:635.004600px;}
.y9f{bottom:637.306050px;}
.yc{bottom:638.826750px;}
.y2d{bottom:642.412500px;}
.y82{bottom:643.410000px;}
.yba{bottom:646.202250px;}
.y44{bottom:651.764100px;}
.y5c{bottom:654.804600px;}
.yb{bottom:660.726750px;}
.y81{bottom:663.210000px;}
.y43{bottom:674.264100px;}
.y5b{bottom:674.604600px;}
.y9e{bottom:676.606050px;}
.ya{bottom:682.626750px;}
.y80{bottom:683.010000px;}
.yb9{bottom:685.802100px;}
.y2c{bottom:687.412500px;}
.y5a{bottom:694.404600px;}
.y9d{bottom:696.256050px;}
.y7f{bottom:702.810000px;}
.y9{bottom:704.526750px;}
.yb8{bottom:705.602100px;}
.y59{bottom:714.204600px;}
.y9c{bottom:715.906050px;}
.y42{bottom:721.514100px;}
.y2b{bottom:721.612500px;}
.y7e{bottom:722.610000px;}
.yb7{bottom:725.402100px;}
.y8{bottom:726.426750px;}
.y58{bottom:734.004600px;}
.y9b{bottom:735.556050px;}
.y41{bottom:741.764100px;}
.y7d{bottom:742.410000px;}
.y2a{bottom:743.212500px;}
.y7{bottom:748.326750px;}
.yb6{bottom:753.706050px;}
.y57{bottom:753.804600px;}
.y9a{bottom:755.206050px;}
.y7c{bottom:762.210000px;}
.y29{bottom:764.812500px;}
.yc7{bottom:768.106050px;}
.y6{bottom:770.226750px;}
.y56{bottom:773.604600px;}
.y99{bottom:774.856050px;}
.y7b{bottom:782.010000px;}
.y28{bottom:786.412500px;}
.y5{bottom:792.126750px;}
.yb5{bottom:793.306050px;}
.y98{bottom:794.506050px;}
.y3a{bottom:796.018500px;}
.y40{bottom:796.894050px;}
.y7a{bottom:801.810000px;}
.y55{bottom:801.908550px;}
.y27{bottom:808.012500px;}
.y3f{bottom:811.294050px;}
.yb4{bottom:813.106050px;}
.y4{bottom:814.026750px;}
.y97{bottom:814.156200px;}
.y79{bottom:821.610000px;}
.y3e{bottom:825.693900px;}
.y26{bottom:829.612500px;}
.y39{bottom:829.768500px;}
.yb3{bottom:832.906200px;}
.y96{bottom:833.806050px;}
.y3d{bottom:840.094050px;}
.y78{bottom:841.410000px;}
.y38{bottom:843.268500px;}
.y25{bottom:851.212500px;}
.yb2{bottom:852.706050px;}
.y3c{bottom:854.494050px;}
.y37{bottom:856.768500px;}
.y95{bottom:857.708100px;}
.y77{bottom:861.210000px;}
.y54{bottom:866.708550px;}
.y3b{bottom:868.894050px;}
.y36{bottom:870.268500px;}
.yb1{bottom:872.506050px;}
.y24{bottom:872.812500px;}
.y76{bottom:881.010000px;}
.y53{bottom:887.708550px;}
.yb0{bottom:892.306050px;}
.y23{bottom:894.412500px;}
.y35{bottom:899.004600px;}
.y75{bottom:900.810000px;}
.y94{bottom:901.260000px;}
.yaf{bottom:912.106050px;}
.y22{bottom:916.012500px;}
.y74{bottom:920.610000px;}
.y93{bottom:920.910000px;}
.y3{bottom:922.326750px;}
.yae{bottom:931.906200px;}
.y21{bottom:937.612500px;}
.y73{bottom:940.410000px;}
.y92{bottom:940.560000px;}
.y2{bottom:952.926750px;}
.y20{bottom:959.212500px;}
.y72{bottom:960.210000px;}
.h6{height:34.734375px;}
.hb{height:38.210449px;}
.h8{height:40.523438px;}
.hd{height:40.757812px;}
.hc{height:43.417969px;}
.h7{height:43.523438px;}
.h2{height:46.312500px;}
.h11{height:48.399902px;}
.ha{height:52.101562px;}
.h9{height:54.996094px;}
.he{height:56.041992px;}
.h3{height:57.890625px;}
.h10{height:62.627812px;}
.hf{height:63.679688px;}
.h5{height:69.468750px;}
.h4{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x3{left:108.035400px;}
.xf{left:116.914350px;}
.xc{left:126.306300px;}
.x4{left:129.295200px;}
.x7{left:150.555150px;}
.xd{left:154.716150px;}
.xb{left:158.505600px;}
.x19{left:175.535400px;}
.x5{left:182.170350px;}
.xe{left:191.745600px;}
.x16{left:211.830900px;}
.xa{left:245.395800px;}
.x1e{left:256.854300px;}
.x1b{left:261.485250px;}
.x1d{left:278.114250px;}
.x6{left:302.077950px;}
.x1c{left:326.607750px;}
.x17{left:331.415550px;}
.x18{left:341.098200px;}
.x13{left:387.070800px;}
.x15{left:390.791400px;}
.x11{left:392.935050px;}
.x10{left:427.647300px;}
.x1{left:468.680700px;}
.x12{left:480.276150px;}
.x14{left:484.460550px;}
.x9{left:518.988300px;}
.x8{left:574.709400px;}
.x1f{left:594.480450px;}
.x1a{left:601.309650px;}
.x2{left:603.664350px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.666667pt;}
.v5{vertical-align:15.786667pt;}
.v4{vertical-align:19.733333pt;}
.v6{vertical-align:21.706667pt;}
.v1{vertical-align:23.680000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.002667pt;}
.lsb{letter-spacing:0.014400pt;}
.lsa{letter-spacing:0.014933pt;}
.lsc{letter-spacing:0.020267pt;}
.ls8{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.190400pt;}
.ls6{letter-spacing:2.933333pt;}
.ls3{letter-spacing:3.730963pt;}
.ls2{letter-spacing:3.733333pt;}
.ls4{letter-spacing:5.333333pt;}
.ls5{letter-spacing:6.400000pt;}
.ls0{letter-spacing:9.066667pt;}
.ws8{word-spacing:-45.584000pt;}
.ws0{word-spacing:-34.544000pt;}
.ws7{word-spacing:-24.384000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.986667pt;}
.wsc{word-spacing:-14.666667pt;}
.ws9{word-spacing:-14.490667pt;}
.wsd{word-spacing:-14.237333pt;}
.wse{word-spacing:-13.173333pt;}
.wsb{word-spacing:-12.514667pt;}
.ws2{word-spacing:-10.790400pt;}
.wsa{word-spacing:-9.891200pt;}
.ws5{word-spacing:-8.992000pt;}
.ws6{word-spacing:-7.193600pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-17.472000pt;}
._14{margin-left:-13.664000pt;}
._10{margin-left:-12.608474pt;}
._1b{margin-left:-11.104533pt;}
._1{margin-left:-9.248000pt;}
._16{margin-left:-8.165333pt;}
._9{margin-left:-6.380800pt;}
._2{margin-left:-4.986667pt;}
._7{margin-left:-3.919467pt;}
._3{margin-left:-2.720000pt;}
._0{margin-left:-1.408000pt;}
._c{width:0.960000pt;}
._6{width:1.967467pt;}
._f{width:2.861867pt;}
._13{width:4.562133pt;}
._11{width:5.887526pt;}
._12{width:7.040474pt;}
._5{width:8.016533pt;}
._4{width:9.346370pt;}
._d{width:10.444267pt;}
._8{width:11.648000pt;}
._a{width:12.608000pt;}
._b{width:16.576000pt;}
._50{width:20.413333pt;}
._28{width:34.598400pt;}
._54{width:43.482133pt;}
._15{width:50.598400pt;}
._51{width:73.923200pt;}
._47{width:113.682133pt;}
._25{width:135.557333pt;}
._29{width:153.161067pt;}
._42{width:156.957333pt;}
._18{width:165.024000pt;}
._1d{width:166.771733pt;}
._48{width:169.310933pt;}
._4c{width:170.729067pt;}
._3e{width:173.860800pt;}
._40{width:174.983467pt;}
._39{width:180.002667pt;}
._4d{width:182.426133pt;}
._1c{width:185.177067pt;}
._53{width:186.772267pt;}
._20{width:189.032000pt;}
._2d{width:190.922133pt;}
._3f{width:194.586133pt;}
._1e{width:197.112533pt;}
._4f{width:198.487467pt;}
._57{width:203.127467pt;}
._4e{width:204.655467pt;}
._55{width:205.952000pt;}
._30{width:207.922667pt;}
._3c{width:210.636267pt;}
._22{width:213.436267pt;}
._31{width:215.233600pt;}
._26{width:218.449600pt;}
._44{width:220.489067pt;}
._52{width:221.672000pt;}
._1f{width:224.881067pt;}
._46{width:227.833067pt;}
._27{width:229.989867pt;}
._35{width:234.240000pt;}
._24{width:236.544000pt;}
._41{width:238.187733pt;}
._56{width:239.855467pt;}
._43{width:241.440000pt;}
._3d{width:243.820800pt;}
._2f{width:247.368533pt;}
._34{width:267.835200pt;}
._23{width:271.330667pt;}
._37{width:272.878400pt;}
._2e{width:274.331733pt;}
._21{width:275.649600pt;}
._58{width:283.284800pt;}
._2a{width:287.245867pt;}
._3a{width:290.108800pt;}
._36{width:291.521600pt;}
._45{width:292.420800pt;}
._3b{width:296.031467pt;}
._2b{width:300.354667pt;}
._33{width:302.309867pt;}
._49{width:310.186133pt;}
._4b{width:317.451200pt;}
._32{width:323.165333pt;}
._4a{width:330.448000pt;}
._2c{width:341.320000pt;}
._38{width:355.746133pt;}
._17{width:446.548800pt;}
._1a{width:473.344000pt;}
._19{width:553.066667pt;}
.fsa{font-size:25.600000pt;}
.fs5{font-size:32.000000pt;}
.fsc{font-size:35.200000pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:38.400000pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.855600pt;}
.y34{bottom:152.722800pt;}
.y1f{bottom:157.656133pt;}
.yc8{bottom:167.389467pt;}
.y33{bottom:172.322800pt;}
.y32{bottom:182.056133pt;}
.y71{bottom:186.989467pt;}
.y31{bottom:201.656133pt;}
.y52{bottom:211.389467pt;}
.y70{bottom:216.322800pt;}
.y1e{bottom:217.446000pt;}
.y51{bottom:226.056133pt;}
.y6f{bottom:230.989467pt;}
.y1d{bottom:236.912667pt;}
.y50{bottom:245.656133pt;}
.y1c{bottom:256.379333pt;}
.y6e{bottom:260.322800pt;}
.y6d{bottom:274.989467pt;}
.y1b{bottom:275.846000pt;}
.y91{bottom:289.656133pt;}
.y1a{bottom:295.312667pt;}
.y6c{bottom:300.448533pt;}
.y4f{bottom:303.345867pt;}
.yad{bottom:304.322800pt;}
.yc6{bottom:305.324800pt;}
.y19{bottom:314.779333pt;}
.y6b{bottom:318.048533pt;}
.yc5{bottom:322.924800pt;}
.y4e{bottom:323.345867pt;}
.y90{bottom:325.520000pt;}
.yac{bottom:331.735200pt;}
.y18{bottom:334.246000pt;}
.y6a{bottom:335.648533pt;}
.y4d{bottom:339.345867pt;}
.yc4{bottom:340.524800pt;}
.y8f{bottom:343.120000pt;}
.yab{bottom:349.335200pt;}
.y69{bottom:353.248533pt;}
.y17{bottom:353.712667pt;}
.y8e{bottom:360.720000pt;}
.yc3{bottom:365.683733pt;}
.yaa{bottom:366.801867pt;}
.y68{bottom:370.848533pt;}
.y16{bottom:373.179333pt;}
.y8d{bottom:378.320000pt;}
.y4c{bottom:379.345867pt;}
.ya9{bottom:384.268533pt;}
.y67{bottom:388.448533pt;}
.y15{bottom:392.646000pt;}
.y8c{bottom:395.920000pt;}
.y4b{bottom:399.345867pt;}
.yc2{bottom:400.883733pt;}
.ya8{bottom:401.735200pt;}
.y66{bottom:406.048533pt;}
.y14{bottom:412.112667pt;}
.y8b{bottom:413.520000pt;}
.yc1{bottom:418.483867pt;}
.ya7{bottom:419.201867pt;}
.y4a{bottom:419.345867pt;}
.y65{bottom:423.648533pt;}
.y8a{bottom:431.120000pt;}
.y13{bottom:431.579333pt;}
.yc0{bottom:436.083733pt;}
.ya6{bottom:436.668533pt;}
.y49{bottom:439.345867pt;}
.y64{bottom:441.248533pt;}
.y89{bottom:448.720000pt;}
.y12{bottom:451.046000pt;}
.ya5{bottom:454.135200pt;}
.y63{bottom:458.848533pt;}
.y48{bottom:459.345867pt;}
.ybf{bottom:461.242800pt;}
.y88{bottom:466.320000pt;}
.y11{bottom:470.512667pt;}
.ya4{bottom:471.601867pt;}
.y62{bottom:476.448533pt;}
.y47{bottom:479.345867pt;}
.y87{bottom:483.920000pt;}
.ya3{bottom:489.068533pt;}
.y10{bottom:489.979333pt;}
.y61{bottom:494.048533pt;}
.ybe{bottom:496.442933pt;}
.y46{bottom:499.345867pt;}
.y86{bottom:501.520000pt;}
.ya2{bottom:506.535200pt;}
.yf{bottom:509.446000pt;}
.y60{bottom:511.648533pt;}
.ybd{bottom:514.042800pt;}
.y85{bottom:519.120000pt;}
.y45{bottom:519.345867pt;}
.y30{bottom:523.033333pt;}
.ya1{bottom:524.001867pt;}
.ye{bottom:528.912667pt;}
.y5f{bottom:529.248533pt;}
.ybc{bottom:531.642800pt;}
.y84{bottom:536.720000pt;}
.y2f{bottom:539.033333pt;}
.ya0{bottom:541.468533pt;}
.y5e{bottom:546.848533pt;}
.yd{bottom:548.379333pt;}
.ybb{bottom:549.242800pt;}
.y83{bottom:554.320000pt;}
.y2e{bottom:555.033333pt;}
.y5d{bottom:564.448533pt;}
.y9f{bottom:566.494267pt;}
.yc{bottom:567.846000pt;}
.y2d{bottom:571.033333pt;}
.y82{bottom:571.920000pt;}
.yba{bottom:574.402000pt;}
.y44{bottom:579.345867pt;}
.y5c{bottom:582.048533pt;}
.yb{bottom:587.312667pt;}
.y81{bottom:589.520000pt;}
.y43{bottom:599.345867pt;}
.y5b{bottom:599.648533pt;}
.y9e{bottom:601.427600pt;}
.ya{bottom:606.779333pt;}
.y80{bottom:607.120000pt;}
.yb9{bottom:609.601867pt;}
.y2c{bottom:611.033333pt;}
.y5a{bottom:617.248533pt;}
.y9d{bottom:618.894267pt;}
.y7f{bottom:624.720000pt;}
.y9{bottom:626.246000pt;}
.yb8{bottom:627.201867pt;}
.y59{bottom:634.848533pt;}
.y9c{bottom:636.360933pt;}
.y42{bottom:641.345867pt;}
.y2b{bottom:641.433333pt;}
.y7e{bottom:642.320000pt;}
.yb7{bottom:644.801867pt;}
.y8{bottom:645.712667pt;}
.y58{bottom:652.448533pt;}
.y9b{bottom:653.827600pt;}
.y41{bottom:659.345867pt;}
.y7d{bottom:659.920000pt;}
.y2a{bottom:660.633333pt;}
.y7{bottom:665.179333pt;}
.yb6{bottom:669.960933pt;}
.y57{bottom:670.048533pt;}
.y9a{bottom:671.294267pt;}
.y7c{bottom:677.520000pt;}
.y29{bottom:679.833333pt;}
.yc7{bottom:682.760933pt;}
.y6{bottom:684.646000pt;}
.y56{bottom:687.648533pt;}
.y99{bottom:688.760933pt;}
.y7b{bottom:695.120000pt;}
.y28{bottom:699.033333pt;}
.y5{bottom:704.112667pt;}
.yb5{bottom:705.160933pt;}
.y98{bottom:706.227600pt;}
.y3a{bottom:707.572000pt;}
.y40{bottom:708.350267pt;}
.y7a{bottom:712.720000pt;}
.y55{bottom:712.807600pt;}
.y27{bottom:718.233333pt;}
.y3f{bottom:721.150267pt;}
.yb4{bottom:722.760933pt;}
.y4{bottom:723.579333pt;}
.y97{bottom:723.694400pt;}
.y79{bottom:730.320000pt;}
.y3e{bottom:733.950133pt;}
.y26{bottom:737.433333pt;}
.y39{bottom:737.572000pt;}
.yb3{bottom:740.361067pt;}
.y96{bottom:741.160933pt;}
.y3d{bottom:746.750267pt;}
.y78{bottom:747.920000pt;}
.y38{bottom:749.572000pt;}
.y25{bottom:756.633333pt;}
.yb2{bottom:757.960933pt;}
.y3c{bottom:759.550267pt;}
.y37{bottom:761.572000pt;}
.y95{bottom:762.407200pt;}
.y77{bottom:765.520000pt;}
.y54{bottom:770.407600pt;}
.y3b{bottom:772.350267pt;}
.y36{bottom:773.572000pt;}
.yb1{bottom:775.560933pt;}
.y24{bottom:775.833333pt;}
.y76{bottom:783.120000pt;}
.y53{bottom:789.074267pt;}
.yb0{bottom:793.160933pt;}
.y23{bottom:795.033333pt;}
.y35{bottom:799.115200pt;}
.y75{bottom:800.720000pt;}
.y94{bottom:801.120000pt;}
.yaf{bottom:810.760933pt;}
.y22{bottom:814.233333pt;}
.y74{bottom:818.320000pt;}
.y93{bottom:818.586667pt;}
.y3{bottom:819.846000pt;}
.yae{bottom:828.361067pt;}
.y21{bottom:833.433333pt;}
.y73{bottom:835.920000pt;}
.y92{bottom:836.053333pt;}
.y2{bottom:847.046000pt;}
.y20{bottom:852.633333pt;}
.y72{bottom:853.520000pt;}
.h6{height:30.875000pt;}
.hb{height:33.964844pt;}
.h8{height:36.020833pt;}
.hd{height:36.229167pt;}
.hc{height:38.593750pt;}
.h7{height:38.687500pt;}
.h2{height:41.166667pt;}
.h11{height:43.022135pt;}
.ha{height:46.312500pt;}
.h9{height:48.885417pt;}
.he{height:49.815104pt;}
.h3{height:51.458333pt;}
.h10{height:55.669167pt;}
.hf{height:56.604167pt;}
.h5{height:61.750000pt;}
.h4{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x3{left:96.031467pt;}
.xf{left:103.923867pt;}
.xc{left:112.272267pt;}
.x4{left:114.929067pt;}
.x7{left:133.826800pt;}
.xd{left:137.525467pt;}
.xb{left:140.893867pt;}
.x19{left:156.031467pt;}
.x5{left:161.929200pt;}
.xe{left:170.440533pt;}
.x16{left:188.294133pt;}
.xa{left:218.129600pt;}
.x1e{left:228.314933pt;}
.x1b{left:232.431333pt;}
.x1d{left:247.212667pt;}
.x6{left:268.513733pt;}
.x1c{left:290.318000pt;}
.x17{left:294.591600pt;}
.x18{left:303.198400pt;}
.x13{left:344.062933pt;}
.x15{left:347.370133pt;}
.x11{left:349.275600pt;}
.x10{left:380.130933pt;}
.x1{left:416.605067pt;}
.x12{left:426.912133pt;}
.x14{left:430.631600pt;}
.x9{left:461.322933pt;}
.x8{left:510.852800pt;}
.x1f{left:528.427067pt;}
.x1a{left:534.497467pt;}
.x2{left:536.590533pt;}
}




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