
    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_839ee00ca506acf40a5bc820.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_5858a4449e34226e60743b99.woff')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_ca8e3749bbbaea8510a46de0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_f0b57fbc392217a945510b52.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_8e8ad18eb28a082bbb45e34a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_cf8d5807395a0e30e9557d6c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.695312;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;}
.ls2{letter-spacing:0.451686px;}
.ls1{letter-spacing:0.725843px;}
.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;}
}
.ws4{word-spacing:-23.335351px;}
.ws0{word-spacing:-16.554143px;}
.ws1{word-spacing:-15.840595px;}
.ws2{word-spacing:-14.958623px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-4.251499px;}
._2{margin-left:-3.236887px;}
._4{margin-left:-1.285085px;}
._0{width:1.304731px;}
._1{width:2.601415px;}
._3{width:4.412218px;}
._7{width:5.944860px;}
._5{width:7.290061px;}
._6{width:8.883098px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.002250px;}
.fs0{font-size:59.762250px;}
.fs6{font-size:66.242700px;}
.fs4{font-size:72.002705px;}
.fs5{font-size:84.243145px;}
.fs3{font-size:131.764946px;}
.fs2{font-size:156.245841px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.980010px;}
.yb{bottom:24.120072px;}
.ya{bottom:66.960022px;}
.y10c{bottom:111.420043px;}
.yac{bottom:113.400055px;}
.y36{bottom:119.700096px;}
.yc1{bottom:123.480079px;}
.yec{bottom:127.980079px;}
.y10b{bottom:129.420043px;}
.y147{bottom:130.500068px;}
.yab{bottom:131.400055px;}
.y8f{bottom:132.840088px;}
.y35{bottom:137.700096px;}
.y67{bottom:141.480079px;}
.y129{bottom:142.920043px;}
.yeb{bottom:145.980079px;}
.y146{bottom:147.060036px;}
.y8e{bottom:150.840088px;}
.y34{bottom:155.700096px;}
.y10a{bottom:156.420043px;}
.yaa{bottom:158.400055px;}
.y66{bottom:159.480079px;}
.y128{bottom:160.920043px;}
.yea{bottom:163.980079px;}
.yc0{bottom:168.480079px;}
.y8d{bottom:168.840088px;}
.y145{bottom:169.560036px;}
.y33{bottom:173.700096px;}
.y109{bottom:174.420043px;}
.ya9{bottom:176.400055px;}
.y65{bottom:177.480079px;}
.y127{bottom:178.920043px;}
.ye9{bottom:181.980079px;}
.y144{bottom:186.120072px;}
.ybf{bottom:186.480079px;}
.y8c{bottom:186.840088px;}
.y32{bottom:191.700096px;}
.y108{bottom:192.420043px;}
.ya8{bottom:194.400055px;}
.y126{bottom:196.920043px;}
.ye8{bottom:199.980079px;}
.y64{bottom:204.480079px;}
.y77{bottom:204.840088px;}
.y143{bottom:208.620072px;}
.y31{bottom:209.700096px;}
.y107{bottom:210.420043px;}
.ya7{bottom:212.400055px;}
.y125{bottom:214.920043px;}
.ye7{bottom:217.980079px;}
.y63{bottom:222.480079px;}
.y76{bottom:222.840088px;}
.y30{bottom:227.700096px;}
.y106{bottom:228.420043px;}
.ya6{bottom:230.400055px;}
.y142{bottom:231.120072px;}
.y124{bottom:232.920043px;}
.ye6{bottom:235.980079px;}
.y62{bottom:240.480079px;}
.y75{bottom:240.840088px;}
.y105{bottom:246.420043px;}
.y141{bottom:247.500068px;}
.ya5{bottom:248.400055px;}
.y123{bottom:250.920043px;}
.ye5{bottom:253.980079px;}
.y2f{bottom:254.700096px;}
.y61{bottom:258.480079px;}
.y74{bottom:258.840088px;}
.ya4{bottom:266.400055px;}
.y8b{bottom:267.840088px;}
.y122{bottom:268.920043px;}
.y140{bottom:270.000068px;}
.y104{bottom:273.420043px;}
.y60{bottom:276.480079px;}
.y73{bottom:276.840088px;}
.y2e{bottom:281.340088px;}
.ya3{bottom:284.400055px;}
.y8a{bottom:285.840088px;}
.y121{bottom:286.920043px;}
.y103{bottom:291.420043px;}
.y13f{bottom:292.500068px;}
.y5f{bottom:294.480079px;}
.y72{bottom:294.840088px;}
.y2d{bottom:297.720085px;}
.ya2{bottom:302.400055px;}
.y89{bottom:303.840088px;}
.y5e{bottom:312.480079px;}
.y71{bottom:312.840088px;}
.y120{bottom:313.920043px;}
.y13e{bottom:315.000068px;}
.ye4{bottom:318.420043px;}
.y2c{bottom:320.220085px;}
.ya1{bottom:320.400055px;}
.y88{bottom:321.840088px;}
.y5d{bottom:330.480079px;}
.y70{bottom:330.840088px;}
.y11f{bottom:331.920043px;}
.ye3{bottom:336.420043px;}
.y13d{bottom:337.500068px;}
.ybe{bottom:339.480079px;}
.y87{bottom:339.840088px;}
.y2b{bottom:342.720085px;}
.ya0{bottom:343.800041px;}
.y11e{bottom:349.920043px;}
.ye2{bottom:354.420043px;}
.ybd{bottom:357.480079px;}
.y5c{bottom:357.840088px;}
.y2a{bottom:359.280052px;}
.y13c{bottom:360.000068px;}
.y102{bottom:363.420043px;}
.y11d{bottom:367.920043px;}
.ye1{bottom:372.420043px;}
.ybc{bottom:375.480079px;}
.y6f{bottom:375.840088px;}
.y101{bottom:381.420043px;}
.y29{bottom:381.780052px;}
.y13b{bottom:382.500068px;}
.y11c{bottom:385.920043px;}
.ye0{bottom:390.420043px;}
.ybb{bottom:393.480079px;}
.y6e{bottom:393.840088px;}
.y5b{bottom:394.920043px;}
.y13a{bottom:399.060036px;}
.y100{bottom:399.420043px;}
.y11b{bottom:403.920043px;}
.y28{bottom:404.280052px;}
.yba{bottom:411.480079px;}
.y6d{bottom:411.840088px;}
.y5a{bottom:412.920043px;}
.ydf{bottom:417.420043px;}
.y27{bottom:420.840088px;}
.y139{bottom:421.560036px;}
.y11a{bottom:421.920043px;}
.yff{bottom:426.420043px;}
.yb9{bottom:429.480079px;}
.y6c{bottom:429.840088px;}
.y59{bottom:430.920043px;}
.yde{bottom:435.420043px;}
.y26{bottom:437.220085px;}
.y138{bottom:438.120072px;}
.yfe{bottom:444.420043px;}
.yb8{bottom:447.480079px;}
.y6b{bottom:447.840088px;}
.y58{bottom:448.920043px;}
.ydd{bottom:453.420043px;}
.y25{bottom:453.780052px;}
.y86{bottom:456.840088px;}
.y137{bottom:460.620072px;}
.yb7{bottom:465.480079px;}
.y57{bottom:466.920043px;}
.y24{bottom:470.340088px;}
.y6a{bottom:471.240074px;}
.ydc{bottom:471.420043px;}
.y85{bottom:474.840088px;}
.y136{bottom:477.000068px;}
.yb6{bottom:483.480079px;}
.y119{bottom:484.920043px;}
.y23{bottom:486.720085px;}
.ydb{bottom:489.420043px;}
.y84{bottom:492.840088px;}
.y56{bottom:495.180039px;}
.y135{bottom:499.500068px;}
.yb5{bottom:501.480079px;}
.y118{bottom:502.920043px;}
.y22{bottom:503.280052px;}
.yda{bottom:507.420043px;}
.y83{bottom:510.840088px;}
.y21{bottom:519.840088px;}
.y117{bottom:520.920043px;}
.y134{bottom:522.000068px;}
.yd9{bottom:525.420043px;}
.yb4{bottom:528.480079px;}
.y82{bottom:528.840088px;}
.yfd{bottom:534.780052px;}
.y55{bottom:535.860077px;}
.y20{bottom:536.220085px;}
.yd8{bottom:543.420043px;}
.y133{bottom:544.500068px;}
.yb3{bottom:546.480079px;}
.y81{bottom:546.840088px;}
.y116{bottom:547.920043px;}
.y1f{bottom:558.720085px;}
.yd7{bottom:561.420043px;}
.y54{bottom:562.860077px;}
.yb2{bottom:564.480079px;}
.y80{bottom:564.840088px;}
.y115{bottom:565.920043px;}
.y132{bottom:567.000068px;}
.yfc{bottom:571.860077px;}
.yd6{bottom:579.420043px;}
.y53{bottom:580.860077px;}
.y1e{bottom:581.220085px;}
.yb1{bottom:582.480079px;}
.y7f{bottom:582.840088px;}
.y114{bottom:583.920043px;}
.y131{bottom:589.500068px;}
.yfb{bottom:589.860077px;}
.y1d{bottom:597.780052px;}
.y52{bottom:598.860077px;}
.yb0{bottom:600.480079px;}
.y7e{bottom:600.840088px;}
.y113{bottom:601.920043px;}
.y130{bottom:606.060036px;}
.yd5{bottom:606.420043px;}
.yfa{bottom:607.860077px;}
.y1c{bottom:614.340088px;}
.y51{bottom:616.860077px;}
.y112{bottom:619.920043px;}
.yd4{bottom:624.420043px;}
.yf9{bottom:625.860077px;}
.y7d{bottom:627.840088px;}
.y12f{bottom:628.560036px;}
.y1b{bottom:630.720085px;}
.yd3{bottom:642.420043px;}
.y50{bottom:643.860077px;}
.y12e{bottom:645.120072px;}
.y7c{bottom:645.840088px;}
.y1a{bottom:647.280052px;}
.y111{bottom:648.180039px;}
.yf8{bottom:652.860077px;}
.yd2{bottom:660.420043px;}
.y4f{bottom:661.860077px;}
.y19{bottom:663.840088px;}
.yaf{bottom:666.180039px;}
.y12d{bottom:667.620072px;}
.yf7{bottom:670.860077px;}
.y7b{bottom:672.840088px;}
.y4e{bottom:679.860077px;}
.y18{bottom:680.220085px;}
.y12c{bottom:684.000068px;}
.yd1{bottom:687.420078px;}
.yf6{bottom:688.860077px;}
.y7a{bottom:690.840054px;}
.y17{bottom:696.780052px;}
.y4d{bottom:697.860077px;}
.yd0{bottom:705.420078px;}
.y12b{bottom:706.500068px;}
.yae{bottom:706.860077px;}
.y79{bottom:708.840054px;}
.y16{bottom:713.340054px;}
.y15c{bottom:714.060070px;}
.y4c{bottom:715.860077px;}
.ycf{bottom:723.420078px;}
.yf5{bottom:724.860077px;}
.y12a{bottom:729.000068px;}
.y15{bottom:729.720051px;}
.y78{bottom:732.240074px;}
.y4b{bottom:733.860077px;}
.y15b{bottom:736.560070px;}
.yce{bottom:741.420078px;}
.yf4{bottom:742.860077px;}
.y4a{bottom:751.860077px;}
.y14{bottom:752.220051px;}
.y15a{bottom:759.060070px;}
.ycd{bottom:759.420078px;}
.yf3{bottom:760.860077px;}
.y49{bottom:769.860077px;}
.y13{bottom:775.440067px;}
.y159{bottom:775.620072px;}
.ycc{bottom:777.420078px;}
.yf2{bottom:778.860077px;}
.y48{bottom:787.860077px;}
.y12{bottom:794.880066px;}
.ycb{bottom:795.420078px;}
.yf1{bottom:796.860077px;}
.y158{bottom:798.120072px;}
.y110{bottom:805.860077px;}
.yca{bottom:813.420078px;}
.y11{bottom:814.500068px;}
.y47{bottom:814.860077px;}
.y157{bottom:820.620072px;}
.y9f{bottom:822.420078px;}
.y10f{bottom:823.860077px;}
.yc9{bottom:831.420078px;}
.y46{bottom:832.860077px;}
.y10{bottom:838.620072px;}
.y9e{bottom:840.420078px;}
.y10e{bottom:841.860077px;}
.y156{bottom:843.120072px;}
.y45{bottom:850.860077px;}
.y9d{bottom:858.420078px;}
.yf0{bottom:859.860077px;}
.yf{bottom:862.380066px;}
.y155{bottom:865.620072px;}
.y44{bottom:868.860077px;}
.y9c{bottom:876.420078px;}
.yef{bottom:877.860077px;}
.y154{bottom:882.000068px;}
.y43{bottom:886.860077px;}
.yc8{bottom:894.420078px;}
.yee{bottom:895.860077px;}
.y9b{bottom:903.420078px;}
.y153{bottom:904.500068px;}
.y42{bottom:904.860077px;}
.yc7{bottom:912.420078px;}
.yed{bottom:913.860077px;}
.y152{bottom:921.060070px;}
.y9a{bottom:921.420078px;}
.ye{bottom:922.680073px;}
.yc6{bottom:930.420078px;}
.y41{bottom:931.860077px;}
.y99{bottom:939.420078px;}
.y151{bottom:943.560070px;}
.yc5{bottom:948.420078px;}
.y40{bottom:949.860077px;}
.y98{bottom:957.420078px;}
.yd{bottom:959.940067px;}
.y150{bottom:960.120072px;}
.yc4{bottom:966.420078px;}
.y3f{bottom:967.860077px;}
.y97{bottom:975.420061px;}
.y14f{bottom:982.620072px;}
.yc3{bottom:984.420061px;}
.y3e{bottom:985.860060px;}
.y96{bottom:993.420061px;}
.y69{bottom:994.860060px;}
.y14e{bottom:999.000068px;}
.yc{bottom:1002.060070px;}
.y3d{bottom:1003.860060px;}
.y95{bottom:1011.420061px;}
.yc2{bottom:1011.780069px;}
.y14d{bottom:1021.500068px;}
.y3c{bottom:1021.860060px;}
.y10d{bottom:1030.860060px;}
.y14c{bottom:1038.060070px;}
.y94{bottom:1038.420061px;}
.y3b{bottom:1039.860060px;}
.yad{bottom:1048.860060px;}
.y93{bottom:1056.420061px;}
.y3a{bottom:1057.860060px;}
.y14b{bottom:1060.560070px;}
.y68{bottom:1066.860060px;}
.y92{bottom:1074.420061px;}
.y14a{bottom:1077.120072px;}
.y39{bottom:1084.860060px;}
.y91{bottom:1092.420061px;}
.y9{bottom:1098.720068px;}
.y149{bottom:1099.620072px;}
.y38{bottom:1102.860060px;}
.y7{bottom:1112.760064px;}
.y6{bottom:1116.000068px;}
.y90{bottom:1119.780069px;}
.y37{bottom:1120.860068px;}
.y148{bottom:1122.120063px;}
.y1{bottom:1126.800067px;}
.y5{bottom:1133.280069px;}
.y4{bottom:1150.560070px;}
.y3{bottom:1167.840063px;}
.y2{bottom:1185.120063px;}
.h4{height:15.840001px;}
.he{height:48.280332px;}
.h5{height:48.438542px;}
.hd{height:48.763550px;}
.ha{height:48.860434px;}
.h2{height:53.605104px;}
.h3{height:54.071997px;}
.h9{height:60.963227px;}
.h8{height:63.213312px;}
.hc{height:65.146978px;}
.hb{height:76.221948px;}
.h7{height:115.680357px;}
.h6{height:137.172862px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:3.420044px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.899999px;}
.xa{left:85.140000px;}
.x9{left:106.379998px;}
.x1{left:318.060001px;}
.x4{left:398.519989px;}
.x6{left:420.839985px;}
.x2{left:570.240006px;}
.x3{left:619.379998px;}
.x5{left:622.799973px;}
.xd{left:634.320030px;}
.xb{left:712.440033px;}
.xc{left:722.700027px;}
.x7{left:825.659981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.401498pt;}
.ls1{letter-spacing:0.645194pt;}
.ws4{word-spacing:-20.742534pt;}
.ws0{word-spacing:-14.714794pt;}
.ws1{word-spacing:-14.080529pt;}
.ws2{word-spacing:-13.296554pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-3.779110pt;}
._2{margin-left:-2.877233pt;}
._4{margin-left:-1.142298pt;}
._0{width:1.159761pt;}
._1{width:2.312369pt;}
._3{width:3.921972pt;}
._7{width:5.284320pt;}
._5{width:6.480054pt;}
._6{width:7.896087pt;}
.fs1{font-size:48.002000pt;}
.fs0{font-size:53.122000pt;}
.fs6{font-size:58.882400pt;}
.fs4{font-size:64.002404pt;}
.fs5{font-size:74.882796pt;}
.fs3{font-size:117.124396pt;}
.fs2{font-size:138.885192pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.760009pt;}
.yb{bottom:21.440064pt;}
.ya{bottom:59.520020pt;}
.y10c{bottom:99.040039pt;}
.yac{bottom:100.800049pt;}
.y36{bottom:106.400086pt;}
.yc1{bottom:109.760071pt;}
.yec{bottom:113.760071pt;}
.y10b{bottom:115.040039pt;}
.y147{bottom:116.000061pt;}
.yab{bottom:116.800049pt;}
.y8f{bottom:118.080079pt;}
.y35{bottom:122.400086pt;}
.y67{bottom:125.760071pt;}
.y129{bottom:127.040039pt;}
.yeb{bottom:129.760071pt;}
.y146{bottom:130.720032pt;}
.y8e{bottom:134.080079pt;}
.y34{bottom:138.400086pt;}
.y10a{bottom:139.040039pt;}
.yaa{bottom:140.800049pt;}
.y66{bottom:141.760071pt;}
.y128{bottom:143.040039pt;}
.yea{bottom:145.760071pt;}
.yc0{bottom:149.760071pt;}
.y8d{bottom:150.080079pt;}
.y145{bottom:150.720032pt;}
.y33{bottom:154.400086pt;}
.y109{bottom:155.040039pt;}
.ya9{bottom:156.800049pt;}
.y65{bottom:157.760071pt;}
.y127{bottom:159.040039pt;}
.ye9{bottom:161.760071pt;}
.y144{bottom:165.440064pt;}
.ybf{bottom:165.760071pt;}
.y8c{bottom:166.080079pt;}
.y32{bottom:170.400086pt;}
.y108{bottom:171.040039pt;}
.ya8{bottom:172.800049pt;}
.y126{bottom:175.040039pt;}
.ye8{bottom:177.760071pt;}
.y64{bottom:181.760071pt;}
.y77{bottom:182.080079pt;}
.y143{bottom:185.440064pt;}
.y31{bottom:186.400086pt;}
.y107{bottom:187.040039pt;}
.ya7{bottom:188.800049pt;}
.y125{bottom:191.040039pt;}
.ye7{bottom:193.760071pt;}
.y63{bottom:197.760071pt;}
.y76{bottom:198.080079pt;}
.y30{bottom:202.400086pt;}
.y106{bottom:203.040039pt;}
.ya6{bottom:204.800049pt;}
.y142{bottom:205.440064pt;}
.y124{bottom:207.040039pt;}
.ye6{bottom:209.760071pt;}
.y62{bottom:213.760071pt;}
.y75{bottom:214.080079pt;}
.y105{bottom:219.040039pt;}
.y141{bottom:220.000061pt;}
.ya5{bottom:220.800049pt;}
.y123{bottom:223.040039pt;}
.ye5{bottom:225.760071pt;}
.y2f{bottom:226.400086pt;}
.y61{bottom:229.760071pt;}
.y74{bottom:230.080079pt;}
.ya4{bottom:236.800049pt;}
.y8b{bottom:238.080079pt;}
.y122{bottom:239.040039pt;}
.y140{bottom:240.000061pt;}
.y104{bottom:243.040039pt;}
.y60{bottom:245.760071pt;}
.y73{bottom:246.080079pt;}
.y2e{bottom:250.080079pt;}
.ya3{bottom:252.800049pt;}
.y8a{bottom:254.080079pt;}
.y121{bottom:255.040039pt;}
.y103{bottom:259.040039pt;}
.y13f{bottom:260.000061pt;}
.y5f{bottom:261.760071pt;}
.y72{bottom:262.080079pt;}
.y2d{bottom:264.640076pt;}
.ya2{bottom:268.800049pt;}
.y89{bottom:270.080079pt;}
.y5e{bottom:277.760071pt;}
.y71{bottom:278.080079pt;}
.y120{bottom:279.040039pt;}
.y13e{bottom:280.000061pt;}
.ye4{bottom:283.040039pt;}
.y2c{bottom:284.640076pt;}
.ya1{bottom:284.800049pt;}
.y88{bottom:286.080079pt;}
.y5d{bottom:293.760071pt;}
.y70{bottom:294.080079pt;}
.y11f{bottom:295.040039pt;}
.ye3{bottom:299.040039pt;}
.y13d{bottom:300.000061pt;}
.ybe{bottom:301.760071pt;}
.y87{bottom:302.080079pt;}
.y2b{bottom:304.640076pt;}
.ya0{bottom:305.600037pt;}
.y11e{bottom:311.040039pt;}
.ye2{bottom:315.040039pt;}
.ybd{bottom:317.760071pt;}
.y5c{bottom:318.080079pt;}
.y2a{bottom:319.360047pt;}
.y13c{bottom:320.000061pt;}
.y102{bottom:323.040039pt;}
.y11d{bottom:327.040039pt;}
.ye1{bottom:331.040039pt;}
.ybc{bottom:333.760071pt;}
.y6f{bottom:334.080079pt;}
.y101{bottom:339.040039pt;}
.y29{bottom:339.360047pt;}
.y13b{bottom:340.000061pt;}
.y11c{bottom:343.040039pt;}
.ye0{bottom:347.040039pt;}
.ybb{bottom:349.760071pt;}
.y6e{bottom:350.080079pt;}
.y5b{bottom:351.040039pt;}
.y13a{bottom:354.720032pt;}
.y100{bottom:355.040039pt;}
.y11b{bottom:359.040039pt;}
.y28{bottom:359.360047pt;}
.yba{bottom:365.760071pt;}
.y6d{bottom:366.080079pt;}
.y5a{bottom:367.040039pt;}
.ydf{bottom:371.040039pt;}
.y27{bottom:374.080079pt;}
.y139{bottom:374.720032pt;}
.y11a{bottom:375.040039pt;}
.yff{bottom:379.040039pt;}
.yb9{bottom:381.760071pt;}
.y6c{bottom:382.080079pt;}
.y59{bottom:383.040039pt;}
.yde{bottom:387.040039pt;}
.y26{bottom:388.640076pt;}
.y138{bottom:389.440064pt;}
.yfe{bottom:395.040039pt;}
.yb8{bottom:397.760071pt;}
.y6b{bottom:398.080079pt;}
.y58{bottom:399.040039pt;}
.ydd{bottom:403.040039pt;}
.y25{bottom:403.360047pt;}
.y86{bottom:406.080079pt;}
.y137{bottom:409.440064pt;}
.yb7{bottom:413.760071pt;}
.y57{bottom:415.040039pt;}
.y24{bottom:418.080079pt;}
.y6a{bottom:418.880066pt;}
.ydc{bottom:419.040039pt;}
.y85{bottom:422.080079pt;}
.y136{bottom:424.000061pt;}
.yb6{bottom:429.760071pt;}
.y119{bottom:431.040039pt;}
.y23{bottom:432.640076pt;}
.ydb{bottom:435.040039pt;}
.y84{bottom:438.080079pt;}
.y56{bottom:440.160035pt;}
.y135{bottom:444.000061pt;}
.yb5{bottom:445.760071pt;}
.y118{bottom:447.040039pt;}
.y22{bottom:447.360047pt;}
.yda{bottom:451.040039pt;}
.y83{bottom:454.080079pt;}
.y21{bottom:462.080079pt;}
.y117{bottom:463.040039pt;}
.y134{bottom:464.000061pt;}
.yd9{bottom:467.040039pt;}
.yb4{bottom:469.760071pt;}
.y82{bottom:470.080079pt;}
.yfd{bottom:475.360047pt;}
.y55{bottom:476.320069pt;}
.y20{bottom:476.640076pt;}
.yd8{bottom:483.040039pt;}
.y133{bottom:484.000061pt;}
.yb3{bottom:485.760071pt;}
.y81{bottom:486.080079pt;}
.y116{bottom:487.040039pt;}
.y1f{bottom:496.640076pt;}
.yd7{bottom:499.040039pt;}
.y54{bottom:500.320069pt;}
.yb2{bottom:501.760071pt;}
.y80{bottom:502.080079pt;}
.y115{bottom:503.040039pt;}
.y132{bottom:504.000061pt;}
.yfc{bottom:508.320069pt;}
.yd6{bottom:515.040039pt;}
.y53{bottom:516.320069pt;}
.y1e{bottom:516.640076pt;}
.yb1{bottom:517.760071pt;}
.y7f{bottom:518.080079pt;}
.y114{bottom:519.040039pt;}
.y131{bottom:524.000061pt;}
.yfb{bottom:524.320069pt;}
.y1d{bottom:531.360047pt;}
.y52{bottom:532.320069pt;}
.yb0{bottom:533.760071pt;}
.y7e{bottom:534.080079pt;}
.y113{bottom:535.040039pt;}
.y130{bottom:538.720032pt;}
.yd5{bottom:539.040039pt;}
.yfa{bottom:540.320069pt;}
.y1c{bottom:546.080079pt;}
.y51{bottom:548.320069pt;}
.y112{bottom:551.040039pt;}
.yd4{bottom:555.040039pt;}
.yf9{bottom:556.320069pt;}
.y7d{bottom:558.080079pt;}
.y12f{bottom:558.720032pt;}
.y1b{bottom:560.640076pt;}
.yd3{bottom:571.040039pt;}
.y50{bottom:572.320069pt;}
.y12e{bottom:573.440064pt;}
.y7c{bottom:574.080079pt;}
.y1a{bottom:575.360047pt;}
.y111{bottom:576.160035pt;}
.yf8{bottom:580.320069pt;}
.yd2{bottom:587.040039pt;}
.y4f{bottom:588.320069pt;}
.y19{bottom:590.080079pt;}
.yaf{bottom:592.160035pt;}
.y12d{bottom:593.440064pt;}
.yf7{bottom:596.320069pt;}
.y7b{bottom:598.080079pt;}
.y4e{bottom:604.320069pt;}
.y18{bottom:604.640076pt;}
.y12c{bottom:608.000061pt;}
.yd1{bottom:611.040070pt;}
.yf6{bottom:612.320069pt;}
.y7a{bottom:614.080048pt;}
.y17{bottom:619.360047pt;}
.y4d{bottom:620.320069pt;}
.yd0{bottom:627.040070pt;}
.y12b{bottom:628.000061pt;}
.yae{bottom:628.320069pt;}
.y79{bottom:630.080048pt;}
.y16{bottom:634.080048pt;}
.y15c{bottom:634.720063pt;}
.y4c{bottom:636.320069pt;}
.ycf{bottom:643.040070pt;}
.yf5{bottom:644.320069pt;}
.y12a{bottom:648.000061pt;}
.y15{bottom:648.640046pt;}
.y78{bottom:650.880066pt;}
.y4b{bottom:652.320069pt;}
.y15b{bottom:654.720063pt;}
.yce{bottom:659.040070pt;}
.yf4{bottom:660.320069pt;}
.y4a{bottom:668.320069pt;}
.y14{bottom:668.640046pt;}
.y15a{bottom:674.720063pt;}
.ycd{bottom:675.040070pt;}
.yf3{bottom:676.320069pt;}
.y49{bottom:684.320069pt;}
.y13{bottom:689.280060pt;}
.y159{bottom:689.440064pt;}
.ycc{bottom:691.040070pt;}
.yf2{bottom:692.320069pt;}
.y48{bottom:700.320069pt;}
.y12{bottom:706.560059pt;}
.ycb{bottom:707.040070pt;}
.yf1{bottom:708.320069pt;}
.y158{bottom:709.440064pt;}
.y110{bottom:716.320069pt;}
.yca{bottom:723.040070pt;}
.y11{bottom:724.000061pt;}
.y47{bottom:724.320069pt;}
.y157{bottom:729.440064pt;}
.y9f{bottom:731.040070pt;}
.y10f{bottom:732.320069pt;}
.yc9{bottom:739.040070pt;}
.y46{bottom:740.320069pt;}
.y10{bottom:745.440064pt;}
.y9e{bottom:747.040070pt;}
.y10e{bottom:748.320069pt;}
.y156{bottom:749.440064pt;}
.y45{bottom:756.320069pt;}
.y9d{bottom:763.040070pt;}
.yf0{bottom:764.320069pt;}
.yf{bottom:766.560059pt;}
.y155{bottom:769.440064pt;}
.y44{bottom:772.320069pt;}
.y9c{bottom:779.040070pt;}
.yef{bottom:780.320069pt;}
.y154{bottom:784.000061pt;}
.y43{bottom:788.320069pt;}
.yc8{bottom:795.040070pt;}
.yee{bottom:796.320069pt;}
.y9b{bottom:803.040070pt;}
.y153{bottom:804.000061pt;}
.y42{bottom:804.320069pt;}
.yc7{bottom:811.040070pt;}
.yed{bottom:812.320069pt;}
.y152{bottom:818.720063pt;}
.y9a{bottom:819.040070pt;}
.ye{bottom:820.160065pt;}
.yc6{bottom:827.040070pt;}
.y41{bottom:828.320069pt;}
.y99{bottom:835.040070pt;}
.y151{bottom:838.720063pt;}
.yc5{bottom:843.040070pt;}
.y40{bottom:844.320069pt;}
.y98{bottom:851.040070pt;}
.yd{bottom:853.280060pt;}
.y150{bottom:853.440064pt;}
.yc4{bottom:859.040070pt;}
.y3f{bottom:860.320069pt;}
.y97{bottom:867.040055pt;}
.y14f{bottom:873.440064pt;}
.yc3{bottom:875.040055pt;}
.y3e{bottom:876.320054pt;}
.y96{bottom:883.040055pt;}
.y69{bottom:884.320054pt;}
.y14e{bottom:888.000061pt;}
.yc{bottom:890.720063pt;}
.y3d{bottom:892.320054pt;}
.y95{bottom:899.040055pt;}
.yc2{bottom:899.360062pt;}
.y14d{bottom:908.000061pt;}
.y3c{bottom:908.320054pt;}
.y10d{bottom:916.320054pt;}
.y14c{bottom:922.720063pt;}
.y94{bottom:923.040055pt;}
.y3b{bottom:924.320054pt;}
.yad{bottom:932.320054pt;}
.y93{bottom:939.040055pt;}
.y3a{bottom:940.320054pt;}
.y14b{bottom:942.720063pt;}
.y68{bottom:948.320054pt;}
.y92{bottom:955.040055pt;}
.y14a{bottom:957.440064pt;}
.y39{bottom:964.320054pt;}
.y91{bottom:971.040055pt;}
.y9{bottom:976.640061pt;}
.y149{bottom:977.440064pt;}
.y38{bottom:980.320054pt;}
.y7{bottom:989.120057pt;}
.y6{bottom:992.000061pt;}
.y90{bottom:995.360062pt;}
.y37{bottom:996.320061pt;}
.y148{bottom:997.440056pt;}
.y1{bottom:1001.600060pt;}
.y5{bottom:1007.360062pt;}
.y4{bottom:1022.720063pt;}
.y3{bottom:1038.080056pt;}
.y2{bottom:1053.440056pt;}
.h4{height:14.080001pt;}
.he{height:42.915851pt;}
.h5{height:43.056481pt;}
.hd{height:43.345378pt;}
.ha{height:43.431497pt;}
.h2{height:47.648981pt;}
.h3{height:48.063997pt;}
.h9{height:54.189535pt;}
.h8{height:56.189611pt;}
.hc{height:57.908425pt;}
.hb{height:67.752842pt;}
.h7{height:102.826984pt;}
.h6{height:121.931433pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.040039pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.799999pt;}
.xa{left:75.680000pt;}
.x9{left:94.559998pt;}
.x1{left:282.720001pt;}
.x4{left:354.239990pt;}
.x6{left:374.079987pt;}
.x2{left:506.880005pt;}
.x3{left:550.559998pt;}
.x5{left:553.599976pt;}
.xd{left:563.840027pt;}
.xb{left:633.280029pt;}
.xc{left:642.400024pt;}
.x7{left:733.919983pt;}
}




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