
    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_60e8be673ef289c385ab3d12.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_ed295d6712235364cf3bd706.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_e8b44b4c45fadb49fe980d58.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_b9658346b859d54cbb4f0db5.woff')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v1{vertical-align:-10.800113px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:47.520126px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.050268px;}
.ls1{letter-spacing:48.968134px;}
.ls3{letter-spacing:793.448215px;}
.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;}
}
.ws2{word-spacing:-17.214913px;}
.ws3{word-spacing:-14.084113px;}
.ws1{word-spacing:-14.033845px;}
.ws0{word-spacing:0.000000px;}
._24{margin-left:-9.451704px;}
._8{margin-left:-7.705913px;}
._3{margin-left:-5.624475px;}
._0{margin-left:-4.255760px;}
._7{margin-left:-3.247234px;}
._4{margin-left:-2.243985px;}
._2{margin-left:-1.215932px;}
._1{width:1.376103px;}
._5{width:2.685974px;}
._1d{width:50.199544px;}
._22{width:71.470909px;}
._b{width:91.500350px;}
._e{width:98.084979px;}
._1c{width:117.734015px;}
._23{width:131.897197px;}
._25{width:133.998659px;}
._21{width:135.668429px;}
._20{width:137.552001px;}
._6{width:157.917520px;}
._1b{width:159.284555px;}
._14{width:166.742279px;}
._13{width:190.358405px;}
._19{width:199.302486px;}
._d{width:213.800869px;}
._f{width:216.460439px;}
._1f{width:220.241010px;}
._15{width:228.797327px;}
._17{width:237.764319px;}
._10{width:245.048381px;}
._16{width:247.534289px;}
._11{width:268.664507px;}
._18{width:312.354340px;}
._1a{width:329.569253px;}
._c{width:358.801416px;}
._12{width:360.643103px;}
._1e{width:389.510764px;}
._9{width:487.424411px;}
._a{width:512.011595px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:50.663700px;}
.fs1{font-size:62.147700px;}
.fs0{font-size:67.551750px;}
.y0{bottom:0.000000px;}
.y9b{bottom:2.699958px;}
.ya6{bottom:2.699960px;}
.y95{bottom:2.699992px;}
.y85{bottom:2.699993px;}
.y72{bottom:2.700010px;}
.ya2{bottom:2.700027px;}
.y75{bottom:2.879997px;}
.y8b{bottom:2.879998px;}
.y78{bottom:3.059984px;}
.y91{bottom:3.239972px;}
.y99{bottom:3.240004px;}
.y7c{bottom:3.240006px;}
.y100{bottom:106.740006px;}
.yd3{bottom:113.940033px;}
.y68{bottom:115.379998px;}
.yff{bottom:133.740006px;}
.y4d{bottom:137.879998px;}
.yd2{bottom:140.580025px;}
.y67{bottom:142.200027px;}
.y4c{bottom:153.360008px;}
.yd1{bottom:156.059967px;}
.y66{bottom:157.500000px;}
.y24{bottom:159.120002px;}
.yfe{bottom:160.379998px;}
.y4b{bottom:168.659981px;}
.y65{bottom:173.159981px;}
.yd0{bottom:182.879998px;}
.y23{bottom:185.759994px;}
.yfd{bottom:187.200027px;}
.y64{bottom:188.639992px;}
.y4a{bottom:195.659981px;}
.y63{bottom:204.120002px;}
.ycf{bottom:209.879998px;}
.y22{bottom:212.580025px;}
.yfc{bottom:214.019989px;}
.y62{bottom:219.600013px;}
.y49{bottom:222.480011px;}
.y61{bottom:235.259994px;}
.yce{bottom:236.519989px;}
.y21{bottom:239.399986px;}
.yfb{bottom:240.840019px;}
.y48{bottom:249.299973px;}
.y60{bottom:250.559967px;}
.ycd{bottom:252.000000px;}
.yfa{bottom:256.139992px;}
.y47{bottom:264.600013px;}
.y20{bottom:266.220017px;}
.yf9{bottom:271.799973px;}
.ycc{bottom:278.820030px;}
.y5f{bottom:281.700027px;}
.yf8{bottom:287.100013px;}
.y46{bottom:291.600013px;}
.y1f{bottom:292.860008px;}
.y11b{bottom:294.299973px;}
.y5e{bottom:297.179970px;}
.yf7{bottom:302.759994px;}
.ycb{bottom:305.639992px;}
.y11a{bottom:309.779983px;}
.y45{bottom:318.240006px;}
.y1e{bottom:319.860008px;}
.y5d{bottom:324.000000px;}
.yf6{bottom:329.580025px;}
.yca{bottom:332.460022px;}
.y119{bottom:336.779983px;}
.y44{bottom:345.240006px;}
.y1d{bottom:346.500000px;}
.y5c{bottom:351.000000px;}
.yf5{bottom:356.399986px;}
.yc9{bottom:359.279983px;}
.y118{bottom:363.419975px;}
.y43{bottom:371.879998px;}
.y1c{bottom:373.320030px;}
.y5b{bottom:377.639992px;}
.yf4{bottom:383.220017px;}
.yc8{bottom:385.919975px;}
.y117{bottom:390.240006px;}
.y42{bottom:398.700027px;}
.y1b{bottom:400.139992px;}
.yc7{bottom:401.399986px;}
.y5a{bottom:404.460022px;}
.yc6{bottom:416.879998px;}
.y116{bottom:417.059967px;}
.yac{bottom:417.600013px;}
.y41{bottom:425.519989px;}
.y1a{bottom:426.960022px;}
.yad{bottom:432.179970px;}
.yab{bottom:434.879998px;}
.yc5{bottom:443.879998px;}
.ya9{bottom:447.480011px;}
.y40{bottom:452.340019px;}
.y19{bottom:453.600013px;}
.yaa{bottom:462.059967px;}
.ya8{bottom:464.759994px;}
.yc4{bottom:470.519989px;}
.ya5{bottom:477.360008px;}
.y3f{bottom:478.980011px;}
.y18{bottom:480.600013px;}
.ya7{bottom:491.940033px;}
.yf3{bottom:494.460022px;}
.ya4{bottom:494.639992px;}
.yc3{bottom:497.519989px;}
.y3e{bottom:505.980011px;}
.y17{bottom:507.240006px;}
.yf2{bottom:509.940033px;}
.ya3{bottom:521.820030px;}
.yc2{bottom:524.159981px;}
.ya1{bottom:524.519989px;}
.yf1{bottom:525.600013px;}
.y3d{bottom:532.620002px;}
.y16{bottom:534.059967px;}
.yc1{bottom:539.639992px;}
.yf0{bottom:540.899986px;}
.ya0{bottom:543.240006px;}
.y115{bottom:550.980011px;}
.yc0{bottom:555.120002px;}
.y9f{bottom:555.659981px;}
.yef{bottom:556.559967px;}
.y3c{bottom:559.440033px;}
.y15{bottom:560.879998px;}
.y9e{bottom:561.600013px;}
.y114{bottom:566.279983px;}
.yee{bottom:572.039977px;}
.y14{bottom:576.360008px;}
.y9d{bottom:577.080025px;}
.ybf{bottom:582.120002px;}
.y3b{bottom:586.259994px;}
.yed{bottom:587.519989px;}
.y9c{bottom:591.480011px;}
.y113{bottom:593.279983px;}
.y13{bottom:603.179970px;}
.y9a{bottom:604.080025px;}
.ybe{bottom:608.759994px;}
.y3a{bottom:613.079990px;}
.yec{bottom:614.339985px;}
.y98{bottom:619.379998px;}
.y112{bottom:620.100013px;}
.ybd{bottom:624.240006px;}
.y97{bottom:625.319995px;}
.y12{bottom:630.000000px;}
.y127{bottom:635.579990px;}
.y94{bottom:637.920010px;}
.y39{bottom:639.720017px;}
.yeb{bottom:641.339985px;}
.y111{bottom:646.920010px;}
.ybc{bottom:651.060001px;}
.y96{bottom:652.500000px;}
.y93{bottom:655.199993px;}
.y11{bottom:656.639992px;}
.y110{bottom:662.220017px;}
.y126{bottom:662.399986px;}
.y38{bottom:666.720017px;}
.y92{bottom:667.800007px;}
.yea{bottom:667.980011px;}
.ybb{bottom:677.879998px;}
.y90{bottom:683.100013px;}
.ye9{bottom:683.459988px;}
.y10{bottom:683.639992px;}
.y8f{bottom:689.040012px;}
.y125{bottom:689.220017px;}
.yba{bottom:693.180004px;}
.y37{bottom:693.360008px;}
.ye8{bottom:698.939999px;}
.y8d{bottom:701.639992px;}
.y124{bottom:704.519989px;}
.y36{bottom:708.839985px;}
.yf{bottom:710.279983px;}
.ye7{bottom:714.420010px;}
.y8e{bottom:716.220017px;}
.y8c{bottom:718.920010px;}
.yb9{bottom:720.180004px;}
.y10f{bottom:724.319995px;}
.ye{bottom:725.759994px;}
.ye6{bottom:729.899986px;}
.y8a{bottom:731.519989px;}
.y89{bottom:734.399986px;}
.y35{bottom:735.660015px;}
.y10e{bottom:739.800007px;}
.ye5{bottom:745.560001px;}
.y88{bottom:746.819995px;}
.yb8{bottom:747.000000px;}
.yd{bottom:752.579990px;}
.y87{bottom:752.759994px;}
.y10d{bottom:755.279983px;}
.ye4{bottom:760.860008px;}
.y34{bottom:762.480011px;}
.y84{bottom:765.360008px;}
.y10c{bottom:770.939999px;}
.y59{bottom:773.819995px;}
.ye3{bottom:776.519989px;}
.y33{bottom:777.779983px;}
.yc{bottom:779.399986px;}
.y83{bottom:782.819995px;}
.y10b{bottom:786.240006px;}
.y123{bottom:789.300007px;}
.ye2{bottom:792.000000px;}
.y32{bottom:793.439999px;}
.y82{bottom:797.399986px;}
.y58{bottom:800.459988px;}
.y10a{bottom:801.899986px;}
.y122{bottom:804.779983px;}
.yb{bottom:806.220017px;}
.ye1{bottom:807.480011px;}
.y86{bottom:809.100013px;}
.y81{bottom:811.800007px;}
.y57{bottom:815.939999px;}
.y109{bottom:817.379998px;}
.y31{bottom:820.259994px;}
.y80{bottom:827.279983px;}
.yb7{bottom:831.420010px;}
.y121{bottom:831.600013px;}
.ya{bottom:833.040012px;}
.ye0{bottom:834.300007px;}
.y30{bottom:835.740006px;}
.y7f{bottom:841.860008px;}
.y56{bottom:842.759994px;}
.y108{bottom:844.379998px;}
.yb6{bottom:847.079990px;}
.y7e{bottom:854.279983px;}
.y9{bottom:859.680004px;}
.y7d{bottom:860.220017px;}
.ydf{bottom:861.300007px;}
.yb5{bottom:862.379998px;}
.y2f{bottom:862.560001px;}
.y55{bottom:869.759994px;}
.y107{bottom:871.019989px;}
.y7b{bottom:873.000000px;}
.y120{bottom:873.899987px;}
.yb4{bottom:878.040012px;}
.y7a{bottom:878.939999px;}
.y54{bottom:885.060001px;}
.y8{bottom:886.680004px;}
.yde{bottom:887.939999px;}
.y2e{bottom:889.379998px;}
.yb3{bottom:893.519989px;}
.y79{bottom:897.480011px;}
.y106{bottom:897.839985px;}
.ydd{bottom:903.419992px;}
.yb2{bottom:909.000000px;}
.y77{bottom:910.080008px;}
.y53{bottom:912.060001px;}
.y7{bottom:913.319996px;}
.y76{bottom:915.840002px;}
.y2d{bottom:916.199993px;}
.ydc{bottom:918.900003px;}
.y105{bottom:924.659998px;}
.y52{bottom:927.360008px;}
.y74{bottom:928.439999px;}
.y73{bottom:931.319996px;}
.y11f{bottom:931.680004px;}
.ydb{bottom:934.379998px;}
.yb1{bottom:935.819996px;}
.y6{bottom:940.139992px;}
.y51{bottom:942.840002px;}
.y2c{bottom:943.020006px;}
.y71{bottom:943.919992px;}
.yda{bottom:949.860008px;}
.y104{bottom:951.479994px;}
.y2b{bottom:958.319996px;}
.y11e{bottom:958.500000px;}
.y70{bottom:961.020006px;}
.yb0{bottom:962.819996px;}
.yd9{bottom:965.520006px;}
.y5{bottom:966.960004px;}
.y50{bottom:969.659998px;}
.y11d{bottom:973.979994px;}
.y6f{bottom:975.599997px;}
.y103{bottom:978.120002px;}
.yd8{bottom:980.819996px;}
.y4f{bottom:985.139992px;}
.y2a{bottom:985.319996px;}
.y11c{bottom:989.280001px;}
.yaf{bottom:989.460004px;}
.y6e{bottom:990.360008px;}
.y4{bottom:993.780001px;}
.yd7{bottom:996.479994px;}
.y29{bottom:1000.620002px;}
.y6d{bottom:1004.939999px;}
.y102{bottom:1005.120002px;}
.yd6{bottom:1011.960004px;}
.y28{bottom:1016.280001px;}
.y6c{bottom:1019.520006px;}
.y3{bottom:1020.419992px;}
.yd5{bottom:1027.439999px;}
.y4e{bottom:1031.580008px;}
.y101{bottom:1031.759994px;}
.y6b{bottom:1035.360008px;}
.yd4{bottom:1042.919992px;}
.y27{bottom:1043.099997px;}
.yae{bottom:1047.239997px;}
.y2{bottom:1047.420001px;}
.y6a{bottom:1053.180004px;}
.y26{bottom:1058.579999px;}
.y69{bottom:1071.719999px;}
.y25{bottom:1073.879998px;}
.y1{bottom:1074.060001px;}
.hb{height:14.219982px;}
.h5{height:14.220000px;}
.hc{height:14.220016px;}
.h11{height:14.220017px;}
.hf{height:14.579990px;}
.he{height:14.579991px;}
.h6{height:14.759994px;}
.h7{height:16.919992px;}
.hd{height:17.099980px;}
.h8{height:17.100013px;}
.h9{height:17.100015px;}
.h4{height:37.032988px;}
.h3{height:45.427298px;}
.h2{height:58.547049px;}
.h1{height:58.646002px;}
.h10{height:92.227132px;}
.ha{height:92.947424px;}
.h0{height:1188.000000px;}
.w13{width:3.419992px;}
.w17{width:3.420009px;}
.w11{width:4.319995px;}
.w1b{width:4.319997px;}
.w2{width:7.199958px;}
.w19{width:7.199993px;}
.wf{width:7.200010px;}
.w4{width:7.200027px;}
.wc{width:7.919975px;}
.w6{width:7.919992px;}
.wa{width:7.920009px;}
.wb{width:7.920010px;}
.wd{width:7.920044px;}
.w8{width:8.639991px;}
.w5{width:8.639992px;}
.w7{width:8.640009px;}
.w9{width:8.640060px;}
.w16{width:16.560002px;}
.w14{width:18.179970px;}
.w18{width:24.840002px;}
.w12{width:26.100014px;}
.w3{width:28.259994px;}
.w1{width:28.260063px;}
.w20{width:60.840002px;}
.w10{width:61.740006px;}
.w1c{width:62.640009px;}
.w1e{width:67.860009px;}
.w1d{width:73.439999px;}
.we{width:74.879998px;}
.w1f{width:83.340002px;}
.w15{width:95.580007px;}
.w1a{width:103.140009px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:140.400003px;}
.x2{left:148.319996px;}
.x1c{left:164.699993px;}
.x1d{left:168.120002px;}
.x1e{left:192.780001px;}
.x17{left:209.879998px;}
.x18{left:214.199993px;}
.x24{left:216.000000px;}
.x23{left:221.759994px;}
.x15{left:223.199993px;}
.xe{left:228.060001px;}
.x25{left:231.659998px;}
.x19{left:240.300007px;}
.x16{left:242.819996px;}
.x20{left:251.460005px;}
.x21{left:255.599997px;}
.x4{left:274.500000px;}
.xf{left:282.419992px;}
.x22{left:318.240006px;}
.x5{left:340.740006px;}
.x10{left:348.480011px;}
.x6{left:406.259994px;}
.x11{left:414.000000px;}
.x7{left:477.720017px;}
.x12{left:485.639992px;}
.x8{left:572.220017px;}
.x1a{left:590.220017px;}
.x9{left:624.059967px;}
.x13{left:631.980011px;}
.xa{left:652.320030px;}
.xb{left:670.139992px;}
.x1b{left:677.879998px;}
.xc{left:721.980011px;}
.x14{left:729.720017px;}
.xd{left:750.240006px;}
.x3{left:767.879998px;}
.x1f{left:775.799973px;}
@media print{
.v1{vertical-align:-9.600100pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:42.240112pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.044683pt;}
.ls1{letter-spacing:43.527230pt;}
.ls3{letter-spacing:705.287302pt;}
.ws2{word-spacing:-15.302145pt;}
.ws3{word-spacing:-12.519211pt;}
.ws1{word-spacing:-12.474529pt;}
.ws0{word-spacing:0.000000pt;}
._24{margin-left:-8.401514pt;}
._8{margin-left:-6.849701pt;}
._3{margin-left:-4.999533pt;}
._0{margin-left:-3.782898pt;}
._7{margin-left:-2.886430pt;}
._4{margin-left:-1.994653pt;}
._2{margin-left:-1.080828pt;}
._1{width:1.223203pt;}
._5{width:2.387532pt;}
._1d{width:44.621816pt;}
._22{width:63.529697pt;}
._b{width:81.333644pt;}
._e{width:87.186648pt;}
._1c{width:104.652458pt;}
._23{width:117.241953pt;}
._25{width:119.109920pt;}
._21{width:120.594159pt;}
._20{width:122.268445pt;}
._6{width:140.371129pt;}
._1b{width:141.586271pt;}
._14{width:148.215359pt;}
._13{width:169.207471pt;}
._19{width:177.157765pt;}
._d{width:190.045217pt;}
._f{width:192.409279pt;}
._1f{width:195.769787pt;}
._15{width:203.375402pt;}
._17{width:211.346061pt;}
._10{width:217.820783pt;}
._16{width:220.030479pt;}
._11{width:238.812895pt;}
._18{width:277.648302pt;}
._1a{width:292.950447pt;}
._c{width:318.934592pt;}
._12{width:320.571647pt;}
._1e{width:346.231790pt;}
._9{width:433.266143pt;}
._a{width:455.121418pt;}
.fs2{font-size:45.034400pt;}
.fs1{font-size:55.242400pt;}
.fs0{font-size:60.046000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:2.399963pt;}
.ya6{bottom:2.399964pt;}
.y95{bottom:2.399993pt;}
.y85{bottom:2.399994pt;}
.y72{bottom:2.400009pt;}
.ya2{bottom:2.400024pt;}
.y75{bottom:2.559997pt;}
.y8b{bottom:2.559998pt;}
.y78{bottom:2.719986pt;}
.y91{bottom:2.879975pt;}
.y99{bottom:2.880004pt;}
.y7c{bottom:2.880005pt;}
.y100{bottom:94.880005pt;}
.yd3{bottom:101.280029pt;}
.y68{bottom:102.559998pt;}
.yff{bottom:118.880005pt;}
.y4d{bottom:122.559998pt;}
.yd2{bottom:124.960022pt;}
.y67{bottom:126.400024pt;}
.y4c{bottom:136.320007pt;}
.yd1{bottom:138.719971pt;}
.y66{bottom:140.000000pt;}
.y24{bottom:141.440002pt;}
.yfe{bottom:142.559998pt;}
.y4b{bottom:149.919983pt;}
.y65{bottom:153.919983pt;}
.yd0{bottom:162.559998pt;}
.y23{bottom:165.119995pt;}
.yfd{bottom:166.400024pt;}
.y64{bottom:167.679993pt;}
.y4a{bottom:173.919983pt;}
.y63{bottom:181.440002pt;}
.ycf{bottom:186.559998pt;}
.y22{bottom:188.960022pt;}
.yfc{bottom:190.239990pt;}
.y62{bottom:195.200012pt;}
.y49{bottom:197.760010pt;}
.y61{bottom:209.119995pt;}
.yce{bottom:210.239990pt;}
.y21{bottom:212.799988pt;}
.yfb{bottom:214.080017pt;}
.y48{bottom:221.599976pt;}
.y60{bottom:222.719971pt;}
.ycd{bottom:224.000000pt;}
.yfa{bottom:227.679993pt;}
.y47{bottom:235.200012pt;}
.y20{bottom:236.640015pt;}
.yf9{bottom:241.599976pt;}
.ycc{bottom:247.840027pt;}
.y5f{bottom:250.400024pt;}
.yf8{bottom:255.200012pt;}
.y46{bottom:259.200012pt;}
.y1f{bottom:260.320007pt;}
.y11b{bottom:261.599976pt;}
.y5e{bottom:264.159973pt;}
.yf7{bottom:269.119995pt;}
.ycb{bottom:271.679993pt;}
.y11a{bottom:275.359985pt;}
.y45{bottom:282.880005pt;}
.y1e{bottom:284.320007pt;}
.y5d{bottom:288.000000pt;}
.yf6{bottom:292.960022pt;}
.yca{bottom:295.520020pt;}
.y119{bottom:299.359985pt;}
.y44{bottom:306.880005pt;}
.y1d{bottom:308.000000pt;}
.y5c{bottom:312.000000pt;}
.yf5{bottom:316.799988pt;}
.yc9{bottom:319.359985pt;}
.y118{bottom:323.039978pt;}
.y43{bottom:330.559998pt;}
.y1c{bottom:331.840027pt;}
.y5b{bottom:335.679993pt;}
.yf4{bottom:340.640015pt;}
.yc8{bottom:343.039978pt;}
.y117{bottom:346.880005pt;}
.y42{bottom:354.400024pt;}
.y1b{bottom:355.679993pt;}
.yc7{bottom:356.799988pt;}
.y5a{bottom:359.520020pt;}
.yc6{bottom:370.559998pt;}
.y116{bottom:370.719971pt;}
.yac{bottom:371.200012pt;}
.y41{bottom:378.239990pt;}
.y1a{bottom:379.520020pt;}
.yad{bottom:384.159973pt;}
.yab{bottom:386.559998pt;}
.yc5{bottom:394.559998pt;}
.ya9{bottom:397.760010pt;}
.y40{bottom:402.080017pt;}
.y19{bottom:403.200012pt;}
.yaa{bottom:410.719971pt;}
.ya8{bottom:413.119995pt;}
.yc4{bottom:418.239990pt;}
.ya5{bottom:424.320007pt;}
.y3f{bottom:425.760010pt;}
.y18{bottom:427.200012pt;}
.ya7{bottom:437.280029pt;}
.yf3{bottom:439.520020pt;}
.ya4{bottom:439.679993pt;}
.yc3{bottom:442.239990pt;}
.y3e{bottom:449.760010pt;}
.y17{bottom:450.880005pt;}
.yf2{bottom:453.280029pt;}
.ya3{bottom:463.840027pt;}
.yc2{bottom:465.919983pt;}
.ya1{bottom:466.239990pt;}
.yf1{bottom:467.200012pt;}
.y3d{bottom:473.440002pt;}
.y16{bottom:474.719971pt;}
.yc1{bottom:479.679993pt;}
.yf0{bottom:480.799988pt;}
.ya0{bottom:482.880005pt;}
.y115{bottom:489.760010pt;}
.yc0{bottom:493.440002pt;}
.y9f{bottom:493.919983pt;}
.yef{bottom:494.719971pt;}
.y3c{bottom:497.280029pt;}
.y15{bottom:498.559998pt;}
.y9e{bottom:499.200012pt;}
.y114{bottom:503.359985pt;}
.yee{bottom:508.479980pt;}
.y14{bottom:512.320007pt;}
.y9d{bottom:512.960022pt;}
.ybf{bottom:517.440002pt;}
.y3b{bottom:521.119995pt;}
.yed{bottom:522.239990pt;}
.y9c{bottom:525.760010pt;}
.y113{bottom:527.359985pt;}
.y13{bottom:536.159973pt;}
.y9a{bottom:536.960022pt;}
.ybe{bottom:541.119995pt;}
.y3a{bottom:544.959991pt;}
.yec{bottom:546.079987pt;}
.y98{bottom:550.559998pt;}
.y112{bottom:551.200012pt;}
.ybd{bottom:554.880005pt;}
.y97{bottom:555.839996pt;}
.y12{bottom:560.000000pt;}
.y127{bottom:564.959991pt;}
.y94{bottom:567.040009pt;}
.y39{bottom:568.640015pt;}
.yeb{bottom:570.079987pt;}
.y111{bottom:575.040009pt;}
.ybc{bottom:578.720001pt;}
.y96{bottom:580.000000pt;}
.y93{bottom:582.399994pt;}
.y11{bottom:583.679993pt;}
.y110{bottom:588.640015pt;}
.y126{bottom:588.799988pt;}
.y38{bottom:592.640015pt;}
.y92{bottom:593.600006pt;}
.yea{bottom:593.760010pt;}
.ybb{bottom:602.559998pt;}
.y90{bottom:607.200012pt;}
.ye9{bottom:607.519989pt;}
.y10{bottom:607.679993pt;}
.y8f{bottom:612.480011pt;}
.y125{bottom:612.640015pt;}
.yba{bottom:616.160004pt;}
.y37{bottom:616.320007pt;}
.ye8{bottom:621.279999pt;}
.y8d{bottom:623.679993pt;}
.y124{bottom:626.239990pt;}
.y36{bottom:630.079987pt;}
.yf{bottom:631.359985pt;}
.ye7{bottom:635.040009pt;}
.y8e{bottom:636.640015pt;}
.y8c{bottom:639.040009pt;}
.yb9{bottom:640.160004pt;}
.y10f{bottom:643.839996pt;}
.ye{bottom:645.119995pt;}
.ye6{bottom:648.799988pt;}
.y8a{bottom:650.239990pt;}
.y89{bottom:652.799988pt;}
.y35{bottom:653.920013pt;}
.y10e{bottom:657.600006pt;}
.ye5{bottom:662.720001pt;}
.y88{bottom:663.839996pt;}
.yb8{bottom:664.000000pt;}
.yd{bottom:668.959991pt;}
.y87{bottom:669.119995pt;}
.y10d{bottom:671.359985pt;}
.ye4{bottom:676.320007pt;}
.y34{bottom:677.760010pt;}
.y84{bottom:680.320007pt;}
.y10c{bottom:685.279999pt;}
.y59{bottom:687.839996pt;}
.ye3{bottom:690.239990pt;}
.y33{bottom:691.359985pt;}
.yc{bottom:692.799988pt;}
.y83{bottom:695.839996pt;}
.y10b{bottom:698.880005pt;}
.y123{bottom:701.600006pt;}
.ye2{bottom:704.000000pt;}
.y32{bottom:705.279999pt;}
.y82{bottom:708.799988pt;}
.y58{bottom:711.519989pt;}
.y10a{bottom:712.799988pt;}
.y122{bottom:715.359985pt;}
.yb{bottom:716.640015pt;}
.ye1{bottom:717.760010pt;}
.y86{bottom:719.200012pt;}
.y81{bottom:721.600006pt;}
.y57{bottom:725.279999pt;}
.y109{bottom:726.559998pt;}
.y31{bottom:729.119995pt;}
.y80{bottom:735.359985pt;}
.yb7{bottom:739.040009pt;}
.y121{bottom:739.200012pt;}
.ya{bottom:740.480011pt;}
.ye0{bottom:741.600006pt;}
.y30{bottom:742.880005pt;}
.y7f{bottom:748.320007pt;}
.y56{bottom:749.119995pt;}
.y108{bottom:750.559998pt;}
.yb6{bottom:752.959991pt;}
.y7e{bottom:759.359985pt;}
.y9{bottom:764.160004pt;}
.y7d{bottom:764.640015pt;}
.ydf{bottom:765.600006pt;}
.yb5{bottom:766.559998pt;}
.y2f{bottom:766.720001pt;}
.y55{bottom:773.119995pt;}
.y107{bottom:774.239990pt;}
.y7b{bottom:776.000000pt;}
.y120{bottom:776.799988pt;}
.yb4{bottom:780.480011pt;}
.y7a{bottom:781.279999pt;}
.y54{bottom:786.720001pt;}
.y8{bottom:788.160004pt;}
.yde{bottom:789.279999pt;}
.y2e{bottom:790.559998pt;}
.yb3{bottom:794.239990pt;}
.y79{bottom:797.760010pt;}
.y106{bottom:798.079987pt;}
.ydd{bottom:803.039993pt;}
.yb2{bottom:808.000000pt;}
.y77{bottom:808.960007pt;}
.y53{bottom:810.720001pt;}
.y7{bottom:811.839996pt;}
.y76{bottom:814.080002pt;}
.y2d{bottom:814.399994pt;}
.ydc{bottom:816.800003pt;}
.y105{bottom:821.919998pt;}
.y52{bottom:824.320007pt;}
.y74{bottom:825.279999pt;}
.y73{bottom:827.839996pt;}
.y11f{bottom:828.160004pt;}
.ydb{bottom:830.559998pt;}
.yb1{bottom:831.839996pt;}
.y6{bottom:835.679993pt;}
.y51{bottom:838.080002pt;}
.y2c{bottom:838.240005pt;}
.y71{bottom:839.039993pt;}
.yda{bottom:844.320007pt;}
.y104{bottom:845.759995pt;}
.y2b{bottom:851.839996pt;}
.y11e{bottom:852.000000pt;}
.y70{bottom:854.240005pt;}
.yb0{bottom:855.839996pt;}
.yd9{bottom:858.240005pt;}
.y5{bottom:859.520004pt;}
.y50{bottom:861.919998pt;}
.y11d{bottom:865.759995pt;}
.y6f{bottom:867.199997pt;}
.y103{bottom:869.440002pt;}
.yd8{bottom:871.839996pt;}
.y4f{bottom:875.679993pt;}
.y2a{bottom:875.839996pt;}
.y11c{bottom:879.360001pt;}
.yaf{bottom:879.520004pt;}
.y6e{bottom:880.320007pt;}
.y4{bottom:883.360001pt;}
.yd7{bottom:885.759995pt;}
.y29{bottom:889.440002pt;}
.y6d{bottom:893.279999pt;}
.y102{bottom:893.440002pt;}
.yd6{bottom:899.520004pt;}
.y28{bottom:903.360001pt;}
.y6c{bottom:906.240005pt;}
.y3{bottom:907.039993pt;}
.yd5{bottom:913.279999pt;}
.y4e{bottom:916.960007pt;}
.y101{bottom:917.119995pt;}
.y6b{bottom:920.320007pt;}
.yd4{bottom:927.039993pt;}
.y27{bottom:927.199997pt;}
.yae{bottom:930.879997pt;}
.y2{bottom:931.040001pt;}
.y6a{bottom:936.160004pt;}
.y26{bottom:940.959999pt;}
.y69{bottom:952.639999pt;}
.y25{bottom:954.559998pt;}
.y1{bottom:954.720001pt;}
.hb{height:12.639984pt;}
.h5{height:12.640000pt;}
.hc{height:12.640014pt;}
.h11{height:12.640015pt;}
.hf{height:12.959991pt;}
.he{height:12.959992pt;}
.h6{height:13.119995pt;}
.h7{height:15.039993pt;}
.hd{height:15.199982pt;}
.h8{height:15.200012pt;}
.h9{height:15.200013pt;}
.h4{height:32.918211pt;}
.h3{height:40.379821pt;}
.h2{height:52.041821pt;}
.h1{height:52.129779pt;}
.h10{height:81.979673pt;}
.ha{height:82.619933pt;}
.h0{height:1056.000000pt;}
.w13{width:3.039993pt;}
.w17{width:3.040008pt;}
.w11{width:3.839996pt;}
.w1b{width:3.839997pt;}
.w2{width:6.399963pt;}
.w19{width:6.399994pt;}
.wf{width:6.400009pt;}
.w4{width:6.400024pt;}
.wc{width:7.039978pt;}
.w6{width:7.039993pt;}
.wa{width:7.040008pt;}
.wb{width:7.040009pt;}
.wd{width:7.040039pt;}
.w8{width:7.679992pt;}
.w5{width:7.679993pt;}
.w7{width:7.680008pt;}
.w9{width:7.680053pt;}
.w16{width:14.720002pt;}
.w14{width:16.159973pt;}
.w18{width:22.080002pt;}
.w12{width:23.200012pt;}
.w3{width:25.119995pt;}
.w1{width:25.120056pt;}
.w20{width:54.080002pt;}
.w10{width:54.880005pt;}
.w1c{width:55.680008pt;}
.w1e{width:60.320008pt;}
.w1d{width:65.279999pt;}
.we{width:66.559998pt;}
.w1f{width:74.080002pt;}
.w15{width:84.960006pt;}
.w1a{width:91.680008pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:124.800003pt;}
.x2{left:131.839996pt;}
.x1c{left:146.399994pt;}
.x1d{left:149.440002pt;}
.x1e{left:171.360001pt;}
.x17{left:186.559998pt;}
.x18{left:190.399994pt;}
.x24{left:192.000000pt;}
.x23{left:197.119995pt;}
.x15{left:198.399994pt;}
.xe{left:202.720001pt;}
.x25{left:205.919998pt;}
.x19{left:213.600006pt;}
.x16{left:215.839996pt;}
.x20{left:223.520004pt;}
.x21{left:227.199997pt;}
.x4{left:244.000000pt;}
.xf{left:251.039993pt;}
.x22{left:282.880005pt;}
.x5{left:302.880005pt;}
.x10{left:309.760010pt;}
.x6{left:361.119995pt;}
.x11{left:368.000000pt;}
.x7{left:424.640015pt;}
.x12{left:431.679993pt;}
.x8{left:508.640015pt;}
.x1a{left:524.640015pt;}
.x9{left:554.719971pt;}
.x13{left:561.760010pt;}
.xa{left:579.840027pt;}
.xb{left:595.679993pt;}
.x1b{left:602.559998pt;}
.xc{left:641.760010pt;}
.x14{left:648.640015pt;}
.xd{left:666.880005pt;}
.x3{left:682.559998pt;}
.x1f{left:689.599976pt;}
}




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