
    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_a96d2c13c8c511c3ed6840cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_32e543d583da3227708a92a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_beb9d06755a0d31327efbe0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_65bb5b3ab7f10ab13ec9a45f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_1624c28bd41a1394eaab5bb0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_26adc2183c35a14a2677da52.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:41.039978px;}
.v2{vertical-align:82.800112px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.615251px;}
.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:-18.000676px;}
.ws0{word-spacing:-10.902647px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-4.765595px;}
._12{margin-left:-3.493537px;}
._a{margin-left:-2.230959px;}
._1{margin-left:-1.223997px;}
._0{width:1.367996px;}
._6{width:2.579495px;}
._7{width:3.601713px;}
._15{width:5.052358px;}
._9{width:6.239998px;}
._8{width:7.536658px;}
._c{width:9.421385px;}
._b{width:10.931754px;}
._e{width:12.372371px;}
._d{width:13.416753px;}
._5{width:14.902927px;}
._19{width:16.508772px;}
._1e{width:19.303511px;}
._2f{width:20.833698px;}
._20{width:22.290181px;}
._17{width:23.358690px;}
._1d{width:24.591455px;}
._21{width:25.866347px;}
._16{width:26.905386px;}
._4a{width:28.014494px;}
._1f{width:29.038417px;}
._f{width:30.720459px;}
._10{width:31.957252px;}
._4b{width:33.220297px;}
._1c{width:34.859104px;}
._1b{width:36.709182px;}
._3b{width:37.852047px;}
._30{width:38.954026px;}
._52{width:40.554177px;}
._47{width:41.651536px;}
._55{width:42.807033px;}
._18{width:43.912368px;}
._2{width:45.849086px;}
._3{width:46.910469px;}
._4{width:48.481020px;}
._58{width:50.853144px;}
._54{width:51.949389px;}
._53{width:53.303658px;}
._13{width:54.722055px;}
._14{width:56.250767px;}
._4f{width:57.523454px;}
._4e{width:58.640027px;}
._51{width:59.694800px;}
._27{width:63.084831px;}
._4c{width:64.255841px;}
._35{width:65.582088px;}
._4d{width:66.977251px;}
._57{width:69.120909px;}
._2e{width:70.622278px;}
._49{width:72.581630px;}
._11{width:74.504428px;}
._56{width:77.888926px;}
._43{width:81.422683px;}
._29{width:84.316292px;}
._26{width:88.622954px;}
._41{width:91.896827px;}
._40{width:92.938458px;}
._42{width:101.583441px;}
._50{width:103.385196px;}
._3a{width:119.584117px;}
._2d{width:131.824576px;}
._45{width:135.424712px;}
._34{width:137.584793px;}
._39{width:142.624982px;}
._38{width:151.925706px;}
._44{width:155.259207px;}
._2b{width:156.965896px;}
._3f{width:160.625658px;}
._2c{width:162.785739px;}
._25{width:167.825929px;}
._33{width:178.626334px;}
._31{width:182.498449px;}
._36{width:184.146183px;}
._32{width:187.927059px;}
._23{width:192.967248px;}
._24{width:198.787092px;}
._3e{width:207.427416px;}
._3d{width:226.989932px;}
._37{width:262.355355px;}
._2a{width:296.195373px;}
._3c{width:298.864840px;}
._46{width:300.520902px;}
._22{width:558.356489px;}
._28{width:575.061116px;}
._48{width:849.139904px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y92{bottom:3.959988px;}
.y6c{bottom:3.960021px;}
.y9a{bottom:4.319997px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y62{bottom:102.960022px;}
.y3d{bottom:106.020127px;}
.yc0{bottom:122.220085px;}
.y86{bottom:122.940033px;}
.y61{bottom:123.660049px;}
.y3c{bottom:126.720085px;}
.ybf{bottom:142.920043px;}
.y85{bottom:143.640060px;}
.y60{bottom:145.080093px;}
.y3b{bottom:147.420043px;}
.ybe{bottom:163.620072px;}
.y84{bottom:164.340088px;}
.y5f{bottom:165.780052px;}
.y3a{bottom:168.120072px;}
.ybd{bottom:184.320099px;}
.y83{bottom:185.040047px;}
.y5e{bottom:187.380066px;}
.y39{bottom:188.820099px;}
.ybc{bottom:205.020058px;}
.y82{bottom:205.740074px;}
.y5d{bottom:208.080093px;}
.y38{bottom:209.520058px;}
.ybb{bottom:225.720085px;}
.y81{bottom:226.440033px;}
.y5c{bottom:229.140060px;}
.y37{bottom:230.220085px;}
.y58{bottom:239.400055px;}
.yba{bottom:246.420043px;}
.y80{bottom:247.140060px;}
.y5a{bottom:249.840088px;}
.y36{bottom:250.920043px;}
.y56{bottom:260.100083px;}
.yb9{bottom:267.120072px;}
.y7f{bottom:267.840088px;}
.y59{bottom:270.540047px;}
.y35{bottom:271.620072px;}
.y57{bottom:280.800041px;}
.yb8{bottom:287.820099px;}
.y7e{bottom:288.540047px;}
.y5b{bottom:291.240074px;}
.y34{bottom:292.320099px;}
.yb7{bottom:308.520058px;}
.y7d{bottom:309.240074px;}
.y55{bottom:312.660049px;}
.y33{bottom:313.020058px;}
.yb6{bottom:329.220085px;}
.y7c{bottom:329.940033px;}
.y54{bottom:333.360077px;}
.y32{bottom:333.720085px;}
.yb5{bottom:349.920043px;}
.y7b{bottom:350.640060px;}
.y53{bottom:354.060036px;}
.y31{bottom:354.420043px;}
.yb4{bottom:370.620072px;}
.y7a{bottom:371.340088px;}
.y30{bottom:375.120072px;}
.yb3{bottom:391.320099px;}
.y79{bottom:392.040047px;}
.yc9{bottom:395.460091px;}
.y2f{bottom:395.820099px;}
.yb2{bottom:412.020058px;}
.y78{bottom:412.740074px;}
.y2e{bottom:416.520058px;}
.yb1{bottom:432.720085px;}
.y77{bottom:433.440033px;}
.y2d{bottom:437.220085px;}
.yb0{bottom:453.420043px;}
.y76{bottom:454.140060px;}
.y2c{bottom:457.920043px;}
.yaf{bottom:473.760064px;}
.y75{bottom:474.840088px;}
.y2b{bottom:478.620072px;}
.yae{bottom:494.460091px;}
.y74{bottom:495.540047px;}
.y2a{bottom:499.320099px;}
.yad{bottom:515.520058px;}
.y73{bottom:516.240074px;}
.y29{bottom:520.020058px;}
.yac{bottom:536.220085px;}
.y72{bottom:537.660049px;}
.y28{bottom:540.720085px;}
.yab{bottom:556.920043px;}
.y71{bottom:558.360077px;}
.y27{bottom:561.420043px;}
.yaa{bottom:577.620072px;}
.y70{bottom:579.780052px;}
.y26{bottom:582.120072px;}
.ya9{bottom:598.320099px;}
.y6f{bottom:601.200096px;}
.yc1{bottom:602.460091px;}
.y25{bottom:602.820099px;}
.ya8{bottom:619.020058px;}
.y6e{bottom:622.440033px;}
.y24{bottom:623.520058px;}
.ya7{bottom:639.720085px;}
.y68{bottom:643.140060px;}
.y23{bottom:644.220085px;}
.y6b{bottom:649.440033px;}
.y6a{bottom:653.400055px;}
.ya6{bottom:660.420043px;}
.y66{bottom:663.840088px;}
.y22{bottom:664.920043px;}
.y69{bottom:674.100083px;}
.ya5{bottom:681.120072px;}
.y67{bottom:684.540047px;}
.y21{bottom:685.620072px;}
.ya4{bottom:701.820065px;}
.y6d{bottom:705.240074px;}
.y20{bottom:706.320065px;}
.ya3{bottom:722.520058px;}
.y65{bottom:726.660049px;}
.y1f{bottom:727.020058px;}
.ya2{bottom:743.220051px;}
.y1e{bottom:747.000068px;}
.y64{bottom:747.360077px;}
.y52{bottom:747.720051px;}
.ya1{bottom:763.920078px;}
.y1d{bottom:764.280052px;}
.y63{bottom:768.060070px;}
.y51{bottom:768.420078px;}
.y1c{bottom:781.560070px;}
.ya0{bottom:785.340054px;}
.yc8{bottom:788.400055px;}
.yca{bottom:788.760064px;}
.y50{bottom:789.120072px;}
.y1b{bottom:799.560070px;}
.yc7{bottom:805.680073px;}
.y9f{bottom:806.040081px;}
.y4f{bottom:809.820065px;}
.y1a{bottom:820.260064px;}
.yc6{bottom:822.960056px;}
.y9e{bottom:827.460056px;}
.y4e{bottom:830.520058px;}
.yc5{bottom:840.600083px;}
.y19{bottom:840.960056px;}
.y9d{bottom:848.160049px;}
.y4d{bottom:851.220051px;}
.y18{bottom:861.660049px;}
.y9c{bottom:868.860077px;}
.y4c{bottom:871.920078px;}
.y17{bottom:882.000068px;}
.yc4{bottom:882.360077px;}
.y98{bottom:890.280052px;}
.y4b{bottom:892.620072px;}
.y99{bottom:896.400055px;}
.y9b{bottom:900.720051px;}
.yc3{bottom:902.700061px;}
.y16{bottom:903.060070px;}
.y97{bottom:910.980079px;}
.y4a{bottom:913.320065px;}
.y15{bottom:923.400055px;}
.y96{bottom:932.400055px;}
.y49{bottom:934.020058px;}
.y14{bottom:944.100083px;}
.y95{bottom:953.100083px;}
.y48{bottom:954.720051px;}
.y13{bottom:964.800076px;}
.y91{bottom:970.200061px;}
.y90{bottom:974.160049px;}
.y47{bottom:975.420061px;}
.y94{bottom:984.600065px;}
.y12{bottom:985.500068px;}
.y8f{bottom:994.860060px;}
.y46{bottom:996.120072px;}
.y8b{bottom:1005.300058px;}
.y11{bottom:1006.200061px;}
.y8e{bottom:1015.560070px;}
.y45{bottom:1016.820065px;}
.y8a{bottom:1026.000068px;}
.y10{bottom:1026.900072px;}
.y8d{bottom:1036.260064px;}
.y44{bottom:1037.520058px;}
.y93{bottom:1046.700061px;}
.yf{bottom:1047.420061px;}
.y8c{bottom:1056.960074px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1068.120072px;}
.y89{bottom:1078.560070px;}
.y42{bottom:1078.920061px;}
.yc2{bottom:1088.820065px;}
.yd{bottom:1089.180073px;}
.y88{bottom:1099.260064px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.042566px;}
.y87{bottom:1119.960065px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.h11{height:20.520007px;}
.h13{height:20.520024px;}
.hf{height:20.520057px;}
.h6{height:42.517797px;}
.h4{height:47.982689px;}
.h9{height:52.173835px;}
.hb{height:52.671319px;}
.ha{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h2{height:63.459415px;}
.h15{height:65.886904px;}
.hc{height:104.499392px;}
.h14{height:104.499532px;}
.hd{height:105.219275px;}
.h12{height:105.219410px;}
.he{height:105.219545px;}
.h10{height:146.259527px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w6{width:7.739971px;}
.w7{width:7.740006px;}
.w5{width:8.819962px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x11{left:86.040003px;}
.xe{left:87.659998px;}
.x29{left:93.599997px;}
.x9{left:96.477289px;}
.x56{left:98.459997px;}
.x1c{left:99.900003px;}
.x3e{left:101.700002px;}
.x39{left:107.459997px;}
.x3f{left:112.680005px;}
.x2b{left:114.299998px;}
.x52{left:119.340002px;}
.x3a{left:120.599997px;}
.xd{left:123.480002px;}
.x51{left:126.719999px;}
.x3b{left:130.319996px;}
.x8{left:135.360000px;}
.x18{left:138.060001px;}
.x10{left:139.860000px;}
.x2a{left:142.739997px;}
.x3d{left:146.340002px;}
.x1a{left:148.680005px;}
.xa{left:151.558208px;}
.x55{left:155.340002px;}
.x12{left:173.159998px;}
.x43{left:201.060001px;}
.x42{left:202.319996px;}
.x4d{left:213.840002px;}
.x40{left:223.020006px;}
.x41{left:233.099997px;}
.x1e{left:236.340002px;}
.x1f{left:245.340002px;}
.xc{left:248.759994px;}
.x1d{left:250.919992px;}
.x2d{left:264.599997px;}
.x4f{left:267.837196px;}
.x2e{left:273.599997px;}
.x2c{left:279.360008px;}
.x44{left:320.040012px;}
.x5a{left:331.379998px;}
.x45{left:336.240006px;}
.x20{left:340.560001px;}
.x17{left:345.240006px;}
.x53{left:352.620002px;}
.x46{left:356.040012px;}
.x21{left:358.560001px;}
.xf{left:363.420010px;}
.x4e{left:368.100014px;}
.x2f{left:372.420010px;}
.x30{left:378.360008px;}
.x57{left:400.860008px;}
.x1b{left:421.379998px;}
.x2{left:432.899987px;}
.x50{left:446.399987px;}
.x47{left:453.600014px;}
.x22{left:459.720017px;}
.xb{left:472.860008px;}
.x54{left:478.259994px;}
.x48{left:481.319996px;}
.x23{left:485.819996px;}
.x31{left:500.399987px;}
.x59{left:522.360008px;}
.x16{left:554.220017px;}
.x58{left:573.480011px;}
.x15{left:586.080025px;}
.x49{left:591.659981px;}
.x24{left:596.879998px;}
.x4a{left:601.559967px;}
.x25{left:605.159981px;}
.x33{left:612.179970px;}
.x32{left:616.320030px;}
.x14{left:659.700027px;}
.x4b{left:677.700027px;}
.x34{left:689.580025px;}
.x4c{left:695.340019px;}
.x28{left:700.019989px;}
.x26{left:705.600014px;}
.x35{left:709.740006px;}
.x27{left:712.980011px;}
.x37{left:715.320030px;}
.x36{left:718.019989px;}
.x38{left:730.620002px;}
.x3c{left:736.740006px;}
.x6{left:746.279983px;}
.x19{left:747.899987px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x13{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:36.479980pt;}
.v2{vertical-align:73.600100pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:28.991334pt;}
.ws2{word-spacing:-16.000601pt;}
.ws0{word-spacing:-9.691242pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-4.236084pt;}
._12{margin-left:-3.105367pt;}
._a{margin-left:-1.983074pt;}
._1{margin-left:-1.087997pt;}
._0{width:1.215997pt;}
._6{width:2.292885pt;}
._7{width:3.201523pt;}
._15{width:4.490985pt;}
._9{width:5.546665pt;}
._8{width:6.699252pt;}
._c{width:8.374565pt;}
._b{width:9.717115pt;}
._e{width:10.997663pt;}
._d{width:11.926003pt;}
._5{width:13.247046pt;}
._19{width:14.674464pt;}
._1e{width:17.158676pt;}
._2f{width:18.518843pt;}
._20{width:19.813494pt;}
._17{width:20.763280pt;}
._1d{width:21.859071pt;}
._21{width:22.992309pt;}
._16{width:23.915898pt;}
._4a{width:24.901773pt;}
._1f{width:25.811926pt;}
._f{width:27.307074pt;}
._10{width:28.406446pt;}
._4b{width:29.529153pt;}
._1c{width:30.985870pt;}
._1b{width:32.630384pt;}
._3b{width:33.646264pt;}
._30{width:34.625801pt;}
._52{width:36.048157pt;}
._47{width:37.023588pt;}
._55{width:38.050696pt;}
._18{width:39.033216pt;}
._2{width:40.754743pt;}
._3{width:41.698195pt;}
._4{width:43.094240pt;}
._58{width:45.202795pt;}
._54{width:46.177235pt;}
._53{width:47.381030pt;}
._13{width:48.641827pt;}
._14{width:50.000682pt;}
._4f{width:51.131959pt;}
._4e{width:52.124468pt;}
._51{width:53.062044pt;}
._27{width:56.075405pt;}
._4c{width:57.116303pt;}
._35{width:58.295190pt;}
._4d{width:59.535334pt;}
._57{width:61.440808pt;}
._2e{width:62.775358pt;}
._49{width:64.517004pt;}
._11{width:66.226158pt;}
._56{width:69.234601pt;}
._43{width:72.375719pt;}
._29{width:74.947815pt;}
._26{width:78.775959pt;}
._41{width:81.686068pt;}
._40{width:82.611962pt;}
._42{width:90.296392pt;}
._50{width:91.897952pt;}
._3a{width:106.296993pt;}
._2d{width:117.177401pt;}
._45{width:120.377522pt;}
._34{width:122.297594pt;}
._39{width:126.777762pt;}
._38{width:135.045072pt;}
._44{width:138.008184pt;}
._2b{width:139.525241pt;}
._3f{width:142.778363pt;}
._2c{width:144.698435pt;}
._25{width:149.178603pt;}
._33{width:158.778964pt;}
._31{width:162.220843pt;}
._36{width:163.685496pt;}
._32{width:167.046274pt;}
._23{width:171.526443pt;}
._24{width:176.699637pt;}
._3e{width:184.379926pt;}
._3d{width:201.768829pt;}
._37{width:233.204760pt;}
._2a{width:263.284776pt;}
._3c{width:265.657636pt;}
._46{width:267.129691pt;}
._22{width:496.316879pt;}
._28{width:511.165436pt;}
._48{width:754.791026pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y92{bottom:3.519989pt;}
.y6c{bottom:3.520019pt;}
.y9a{bottom:3.839997pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y62{bottom:91.520020pt;}
.y3d{bottom:94.240113pt;}
.yc0{bottom:108.640076pt;}
.y86{bottom:109.280030pt;}
.y61{bottom:109.920044pt;}
.y3c{bottom:112.640076pt;}
.ybf{bottom:127.040039pt;}
.y85{bottom:127.680054pt;}
.y60{bottom:128.960083pt;}
.y3b{bottom:131.040039pt;}
.ybe{bottom:145.440064pt;}
.y84{bottom:146.080079pt;}
.y5f{bottom:147.360047pt;}
.y3a{bottom:149.440064pt;}
.ybd{bottom:163.840088pt;}
.y83{bottom:164.480042pt;}
.y5e{bottom:166.560059pt;}
.y39{bottom:167.840088pt;}
.ybc{bottom:182.240052pt;}
.y82{bottom:182.880066pt;}
.y5d{bottom:184.960083pt;}
.y38{bottom:186.240052pt;}
.ybb{bottom:200.640076pt;}
.y81{bottom:201.280030pt;}
.y5c{bottom:203.680054pt;}
.y37{bottom:204.640076pt;}
.y58{bottom:212.800049pt;}
.yba{bottom:219.040039pt;}
.y80{bottom:219.680054pt;}
.y5a{bottom:222.080079pt;}
.y36{bottom:223.040039pt;}
.y56{bottom:231.200074pt;}
.yb9{bottom:237.440064pt;}
.y7f{bottom:238.080079pt;}
.y59{bottom:240.480042pt;}
.y35{bottom:241.440064pt;}
.y57{bottom:249.600037pt;}
.yb8{bottom:255.840088pt;}
.y7e{bottom:256.480042pt;}
.y5b{bottom:258.880066pt;}
.y34{bottom:259.840088pt;}
.yb7{bottom:274.240052pt;}
.y7d{bottom:274.880066pt;}
.y55{bottom:277.920044pt;}
.y33{bottom:278.240052pt;}
.yb6{bottom:292.640076pt;}
.y7c{bottom:293.280030pt;}
.y54{bottom:296.320069pt;}
.y32{bottom:296.640076pt;}
.yb5{bottom:311.040039pt;}
.y7b{bottom:311.680054pt;}
.y53{bottom:314.720032pt;}
.y31{bottom:315.040039pt;}
.yb4{bottom:329.440064pt;}
.y7a{bottom:330.080079pt;}
.y30{bottom:333.440064pt;}
.yb3{bottom:347.840088pt;}
.y79{bottom:348.480042pt;}
.yc9{bottom:351.520081pt;}
.y2f{bottom:351.840088pt;}
.yb2{bottom:366.240052pt;}
.y78{bottom:366.880066pt;}
.y2e{bottom:370.240052pt;}
.yb1{bottom:384.640076pt;}
.y77{bottom:385.280030pt;}
.y2d{bottom:388.640076pt;}
.yb0{bottom:403.040039pt;}
.y76{bottom:403.680054pt;}
.y2c{bottom:407.040039pt;}
.yaf{bottom:421.120057pt;}
.y75{bottom:422.080079pt;}
.y2b{bottom:425.440064pt;}
.yae{bottom:439.520081pt;}
.y74{bottom:440.480042pt;}
.y2a{bottom:443.840088pt;}
.yad{bottom:458.240052pt;}
.y73{bottom:458.880066pt;}
.y29{bottom:462.240052pt;}
.yac{bottom:476.640076pt;}
.y72{bottom:477.920044pt;}
.y28{bottom:480.640076pt;}
.yab{bottom:495.040039pt;}
.y71{bottom:496.320069pt;}
.y27{bottom:499.040039pt;}
.yaa{bottom:513.440064pt;}
.y70{bottom:515.360047pt;}
.y26{bottom:517.440064pt;}
.ya9{bottom:531.840088pt;}
.y6f{bottom:534.400086pt;}
.yc1{bottom:535.520081pt;}
.y25{bottom:535.840088pt;}
.ya8{bottom:550.240052pt;}
.y6e{bottom:553.280030pt;}
.y24{bottom:554.240052pt;}
.ya7{bottom:568.640076pt;}
.y68{bottom:571.680054pt;}
.y23{bottom:572.640076pt;}
.y6b{bottom:577.280030pt;}
.y6a{bottom:580.800049pt;}
.ya6{bottom:587.040039pt;}
.y66{bottom:590.080079pt;}
.y22{bottom:591.040039pt;}
.y69{bottom:599.200074pt;}
.ya5{bottom:605.440064pt;}
.y67{bottom:608.480042pt;}
.y21{bottom:609.440064pt;}
.ya4{bottom:623.840058pt;}
.y6d{bottom:626.880066pt;}
.y20{bottom:627.840058pt;}
.ya3{bottom:642.240052pt;}
.y65{bottom:645.920044pt;}
.y1f{bottom:646.240052pt;}
.ya2{bottom:660.640046pt;}
.y1e{bottom:664.000061pt;}
.y64{bottom:664.320069pt;}
.y52{bottom:664.640046pt;}
.ya1{bottom:679.040070pt;}
.y1d{bottom:679.360047pt;}
.y63{bottom:682.720063pt;}
.y51{bottom:683.040070pt;}
.y1c{bottom:694.720063pt;}
.ya0{bottom:698.080048pt;}
.yc8{bottom:700.800049pt;}
.yca{bottom:701.120057pt;}
.y50{bottom:701.440064pt;}
.y1b{bottom:710.720063pt;}
.yc7{bottom:716.160065pt;}
.y9f{bottom:716.480072pt;}
.y4f{bottom:719.840058pt;}
.y1a{bottom:729.120057pt;}
.yc6{bottom:731.520050pt;}
.y9e{bottom:735.520050pt;}
.y4e{bottom:738.240052pt;}
.yc5{bottom:747.200074pt;}
.y19{bottom:747.520050pt;}
.y9d{bottom:753.920044pt;}
.y4d{bottom:756.640046pt;}
.y18{bottom:765.920044pt;}
.y9c{bottom:772.320069pt;}
.y4c{bottom:775.040070pt;}
.y17{bottom:784.000061pt;}
.yc4{bottom:784.320069pt;}
.y98{bottom:791.360047pt;}
.y4b{bottom:793.440064pt;}
.y99{bottom:796.800049pt;}
.y9b{bottom:800.640046pt;}
.yc3{bottom:802.400055pt;}
.y16{bottom:802.720063pt;}
.y97{bottom:809.760071pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:820.800049pt;}
.y96{bottom:828.800049pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:839.200074pt;}
.y95{bottom:847.200074pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:857.600068pt;}
.y91{bottom:862.400055pt;}
.y90{bottom:865.920044pt;}
.y47{bottom:867.040055pt;}
.y94{bottom:875.200058pt;}
.y12{bottom:876.000061pt;}
.y8f{bottom:884.320054pt;}
.y46{bottom:885.440064pt;}
.y8b{bottom:893.600052pt;}
.y11{bottom:894.400055pt;}
.y8e{bottom:902.720063pt;}
.y45{bottom:903.840058pt;}
.y8a{bottom:912.000061pt;}
.y10{bottom:912.800064pt;}
.y8d{bottom:921.120057pt;}
.y44{bottom:922.240052pt;}
.y93{bottom:930.400055pt;}
.yf{bottom:931.040055pt;}
.y8c{bottom:939.520066pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:949.440064pt;}
.y89{bottom:958.720063pt;}
.y42{bottom:959.040055pt;}
.yc2{bottom:967.840058pt;}
.yd{bottom:968.160065pt;}
.y88{bottom:977.120057pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:988.482281pt;}
.y87{bottom:995.520058pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.h11{height:18.240006pt;}
.h13{height:18.240021pt;}
.hf{height:18.240051pt;}
.h6{height:37.793598pt;}
.h4{height:42.651279pt;}
.h9{height:46.376742pt;}
.hb{height:46.818950pt;}
.ha{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h2{height:56.408369pt;}
.h15{height:58.566137pt;}
.hc{height:92.888349pt;}
.h14{height:92.888473pt;}
.hd{height:93.528245pt;}
.h12{height:93.528365pt;}
.he{height:93.528485pt;}
.h10{height:130.008469pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w6{width:6.879974pt;}
.w7{width:6.880005pt;}
.w5{width:7.839966pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x11{left:76.480003pt;}
.xe{left:77.919998pt;}
.x29{left:83.199997pt;}
.x9{left:85.757590pt;}
.x56{left:87.519997pt;}
.x1c{left:88.800003pt;}
.x3e{left:90.400002pt;}
.x39{left:95.519997pt;}
.x3f{left:100.160004pt;}
.x2b{left:101.599998pt;}
.x52{left:106.080002pt;}
.x3a{left:107.199997pt;}
.xd{left:109.760002pt;}
.x51{left:112.639999pt;}
.x3b{left:115.839996pt;}
.x8{left:120.320000pt;}
.x18{left:122.720001pt;}
.x10{left:124.320000pt;}
.x2a{left:126.879997pt;}
.x3d{left:130.080002pt;}
.x1a{left:132.160004pt;}
.xa{left:134.718407pt;}
.x55{left:138.080002pt;}
.x12{left:153.919998pt;}
.x43{left:178.720001pt;}
.x42{left:179.839996pt;}
.x4d{left:190.080002pt;}
.x40{left:198.240005pt;}
.x41{left:207.199997pt;}
.x1e{left:210.080002pt;}
.x1f{left:218.080002pt;}
.xc{left:221.119995pt;}
.x1d{left:223.039993pt;}
.x2d{left:235.199997pt;}
.x4f{left:238.077508pt;}
.x2e{left:243.199997pt;}
.x2c{left:248.320007pt;}
.x44{left:284.480011pt;}
.x5a{left:294.559998pt;}
.x45{left:298.880005pt;}
.x20{left:302.720001pt;}
.x17{left:306.880005pt;}
.x53{left:313.440002pt;}
.x46{left:316.480011pt;}
.x21{left:318.720001pt;}
.xf{left:323.040009pt;}
.x4e{left:327.200012pt;}
.x2f{left:331.040009pt;}
.x30{left:336.320007pt;}
.x57{left:356.320007pt;}
.x1b{left:374.559998pt;}
.x2{left:384.799988pt;}
.x50{left:396.799988pt;}
.x47{left:403.200012pt;}
.x22{left:408.640015pt;}
.xb{left:420.320007pt;}
.x54{left:425.119995pt;}
.x48{left:427.839996pt;}
.x23{left:431.839996pt;}
.x31{left:444.799988pt;}
.x59{left:464.320007pt;}
.x16{left:492.640015pt;}
.x58{left:509.760010pt;}
.x15{left:520.960022pt;}
.x49{left:525.919983pt;}
.x24{left:530.559998pt;}
.x4a{left:534.719971pt;}
.x25{left:537.919983pt;}
.x33{left:544.159973pt;}
.x32{left:547.840027pt;}
.x14{left:586.400024pt;}
.x4b{left:602.400024pt;}
.x34{left:612.960022pt;}
.x4c{left:618.080017pt;}
.x28{left:622.239990pt;}
.x26{left:627.200012pt;}
.x35{left:630.880005pt;}
.x27{left:633.760010pt;}
.x37{left:635.840027pt;}
.x36{left:638.239990pt;}
.x38{left:649.440002pt;}
.x3c{left:654.880005pt;}
.x6{left:663.359985pt;}
.x19{left:664.799988pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x13{left:718.080017pt;}
.x4{left:722.559998pt;}
}




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