
    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_9a5e50fc7b7436243fb2dd1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_4ba7f1ef05a8c72b86c14fed.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_382ac915e23a6f969c71658b.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_67b576b869e165c10f862f30.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_7bda1dbab9f541a1571356fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_b3991bd1550ab3b99da2740e.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:23.759996px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.179420px;}
.ls3{letter-spacing:34.055251px;}
.ls2{letter-spacing:54.215264px;}
.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;}
}
.ws1{word-spacing:-18.000676px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-5.139121px;}
._1e{margin-left:-3.570675px;}
._16{margin-left:-2.099793px;}
._1{margin-left:-1.007997px;}
._0{width:1.223997px;}
._b{width:2.306020px;}
._a{width:3.527619px;}
._9{width:4.632924px;}
._6{width:5.952036px;}
._15{width:7.386331px;}
._18{width:9.326600px;}
._11{width:10.650494px;}
._12{width:11.688908px;}
._17{width:12.963911px;}
._1c{width:14.729343px;}
._10{width:15.847345px;}
._38{width:16.864102px;}
._e{width:19.206779px;}
._1a{width:20.808076px;}
._19{width:22.291449px;}
._f{width:23.902648px;}
._d{width:25.904444px;}
._7{width:26.986951px;}
._8{width:28.285067px;}
._1b{width:29.469063px;}
._24{width:30.786280px;}
._37{width:32.139082px;}
._5{width:33.974829px;}
._4{width:35.522647px;}
._1f{width:37.946550px;}
._20{width:39.061186px;}
._14{width:40.983946px;}
._13{width:42.181095px;}
._26{width:44.097487px;}
._22{width:48.433632px;}
._23{width:50.047652px;}
._c{width:55.345378px;}
._2{width:57.513077px;}
._3{width:59.191775px;}
._25{width:60.701691px;}
._1d{width:194.407302px;}
._35{width:253.081350px;}
._29{width:266.469634px;}
._2a{width:290.230526px;}
._2c{width:302.470986px;}
._2d{width:308.231202px;}
._27{width:338.412720px;}
._2f{width:460.677523px;}
._32{width:467.815402px;}
._30{width:472.747819px;}
._33{width:481.208418px;}
._34{width:496.077870px;}
._31{width:540.428112px;}
._2e{width:552.442719px;}
._28{width:744.435962px;}
._2b{width:766.747519px;}
._36{width:781.095464px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y3d{bottom:106.020127px;}
.y90{bottom:124.560036px;}
.y3c{bottom:126.720085px;}
.y8f{bottom:145.620072px;}
.y3b{bottom:147.420043px;}
.y8e{bottom:166.320099px;}
.y3a{bottom:168.120072px;}
.y8d{bottom:187.020058px;}
.y39{bottom:188.820099px;}
.y6d{bottom:204.300041px;}
.y8c{bottom:207.720085px;}
.y38{bottom:209.520058px;}
.y6c{bottom:225.000068px;}
.y8b{bottom:228.420043px;}
.y37{bottom:230.220085px;}
.y6b{bottom:245.700096px;}
.y8a{bottom:249.120072px;}
.y36{bottom:250.920043px;}
.y6a{bottom:266.400055px;}
.y89{bottom:269.820099px;}
.y35{bottom:271.620072px;}
.y69{bottom:287.100083px;}
.y88{bottom:290.520058px;}
.y34{bottom:292.320099px;}
.y68{bottom:307.800041px;}
.y87{bottom:311.220085px;}
.y33{bottom:313.020058px;}
.y67{bottom:328.140060px;}
.y86{bottom:331.920043px;}
.y32{bottom:333.360077px;}
.y53{bottom:333.720085px;}
.y66{bottom:348.840088px;}
.y85{bottom:352.620072px;}
.y31{bottom:354.420043px;}
.y65{bottom:365.400055px;}
.y84{bottom:373.320099px;}
.y30{bottom:375.120072px;}
.y83{bottom:394.020058px;}
.y2f{bottom:395.820099px;}
.y82{bottom:414.720085px;}
.y2e{bottom:416.520058px;}
.y81{bottom:435.420043px;}
.y2d{bottom:437.220085px;}
.y80{bottom:456.120072px;}
.y2c{bottom:457.920043px;}
.y7f{bottom:476.820099px;}
.y2b{bottom:478.620072px;}
.y7e{bottom:497.520058px;}
.y2a{bottom:499.320099px;}
.y7d{bottom:518.220085px;}
.y29{bottom:520.020058px;}
.y7c{bottom:538.920043px;}
.y28{bottom:540.720085px;}
.y7b{bottom:559.620072px;}
.y27{bottom:561.060036px;}
.y52{bottom:561.420043px;}
.y7a{bottom:580.320099px;}
.y26{bottom:582.120072px;}
.y79{bottom:601.020058px;}
.y25{bottom:602.820099px;}
.y78{bottom:621.720085px;}
.y24{bottom:623.520058px;}
.y77{bottom:642.420043px;}
.y23{bottom:644.220085px;}
.y76{bottom:663.120072px;}
.y22{bottom:664.920043px;}
.y75{bottom:683.820099px;}
.y21{bottom:685.620072px;}
.y74{bottom:704.520058px;}
.y20{bottom:706.320065px;}
.y64{bottom:716.400055px;}
.y73{bottom:725.220051px;}
.y91{bottom:726.660049px;}
.y1f{bottom:727.020058px;}
.y63{bottom:737.100083px;}
.y72{bottom:745.920078px;}
.y1e{bottom:747.720051px;}
.y62{bottom:758.700061px;}
.y71{bottom:766.620072px;}
.y1d{bottom:768.060070px;}
.y51{bottom:768.420078px;}
.y61{bottom:780.120072px;}
.y70{bottom:787.320065px;}
.y1c{bottom:788.400055px;}
.y50{bottom:789.120072px;}
.y60{bottom:801.540081px;}
.y1b{bottom:805.680073px;}
.y6f{bottom:807.660049px;}
.y4f{bottom:809.820065px;}
.y1a{bottom:822.960056px;}
.y6e{bottom:824.400055px;}
.y4e{bottom:830.520058px;}
.y19{bottom:840.600083px;}
.y5f{bottom:844.380066px;}
.y4d{bottom:851.220051px;}
.y18{bottom:861.660049px;}
.y5e{bottom:865.800076px;}
.y4c{bottom:871.920078px;}
.y17{bottom:882.360077px;}
.y5d{bottom:887.220051px;}
.y4b{bottom:892.620072px;}
.y16{bottom:902.700061px;}
.y5c{bottom:908.820065px;}
.y4a{bottom:913.320065px;}
.y15{bottom:923.400055px;}
.y5b{bottom:930.240074px;}
.y49{bottom:934.020058px;}
.y14{bottom:944.100083px;}
.y5a{bottom:951.660049px;}
.y48{bottom:954.720051px;}
.y13{bottom:964.800076px;}
.y59{bottom:973.080059px;}
.y47{bottom:975.420061px;}
.y12{bottom:985.500068px;}
.y58{bottom:994.500068px;}
.y46{bottom:996.120072px;}
.y11{bottom:1006.200061px;}
.y57{bottom:1015.560070px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1026.900072px;}
.y56{bottom:1036.260064px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1047.420061px;}
.y55{bottom:1057.860060px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1068.120072px;}
.y54{bottom:1078.560070px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1088.820065px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.042566px;}
.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;}
.h6{height:33.684460px;}
.hc{height:41.728524px;}
.h4{height:47.982689px;}
.h2{height:50.275326px;}
.h9{height:51.998047px;}
.hd{height:52.419938px;}
.hb{height:54.880968px;}
.ha{height:58.598678px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x10{left:90.719999px;}
.x9{left:96.837643px;}
.x1c{left:100.980002px;}
.x1f{left:117.000000px;}
.xd{left:118.620002px;}
.x1e{left:127.260003px;}
.x8{left:130.499662px;}
.x16{left:138.060001px;}
.x18{left:160.199993px;}
.xe{left:164.340002px;}
.xc{left:189.900003px;}
.xf{left:201.960005px;}
.x11{left:266.939999px;}
.x19{left:360.000000px;}
.x20{left:364.139992px;}
.xa{left:366.661164px;}
.x2{left:432.899987px;}
.xb{left:446.399987px;}
.x1a{left:521.819996px;}
.x14{left:525.240006px;}
.x13{left:537.839985px;}
.x15{left:564.480011px;}
.x1b{left:691.559967px;}
.x1d{left:734.580025px;}
.x17{left:740.340019px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x12{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.159484pt;}
.ls3{letter-spacing:30.271334pt;}
.ls2{letter-spacing:48.191346pt;}
.ws1{word-spacing:-16.000601pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-4.568108pt;}
._1e{margin-left:-3.173933pt;}
._16{margin-left:-1.866483pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.087997pt;}
._b{width:2.049795pt;}
._a{width:3.135661pt;}
._9{width:4.118155pt;}
._6{width:5.290699pt;}
._15{width:6.565628pt;}
._18{width:8.290311pt;}
._11{width:9.467106pt;}
._12{width:10.390140pt;}
._17{width:11.523477pt;}
._1c{width:13.092749pt;}
._10{width:14.086529pt;}
._38{width:14.990313pt;}
._e{width:17.072693pt;}
._1a{width:18.496068pt;}
._19{width:19.814621pt;}
._f{width:21.246798pt;}
._d{width:23.026173pt;}
._7{width:23.988401pt;}
._8{width:25.142281pt;}
._1b{width:26.194723pt;}
._24{width:27.365583pt;}
._37{width:28.568073pt;}
._5{width:30.199848pt;}
._4{width:31.575686pt;}
._1f{width:33.730267pt;}
._20{width:34.721054pt;}
._14{width:36.430174pt;}
._13{width:37.494306pt;}
._26{width:39.197766pt;}
._22{width:43.052117pt;}
._23{width:44.486802pt;}
._c{width:49.195892pt;}
._2{width:51.122735pt;}
._3{width:52.614911pt;}
._25{width:53.957059pt;}
._1d{width:172.806491pt;}
._35{width:224.961200pt;}
._29{width:236.861897pt;}
._2a{width:257.982690pt;}
._2c{width:268.863099pt;}
._2d{width:273.983291pt;}
._27{width:300.811307pt;}
._2f{width:409.491131pt;}
._32{width:415.835913pt;}
._30{width:420.220284pt;}
._33{width:427.740816pt;}
._34{width:440.958106pt;}
._31{width:480.380544pt;}
._2e{width:491.060195pt;}
._28{width:661.720855pt;}
._2b{width:681.553350pt;}
._36{width:694.307079pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y3d{bottom:94.240113pt;}
.y90{bottom:110.720032pt;}
.y3c{bottom:112.640076pt;}
.y8f{bottom:129.440064pt;}
.y3b{bottom:131.040039pt;}
.y8e{bottom:147.840088pt;}
.y3a{bottom:149.440064pt;}
.y8d{bottom:166.240052pt;}
.y39{bottom:167.840088pt;}
.y6d{bottom:181.600037pt;}
.y8c{bottom:184.640076pt;}
.y38{bottom:186.240052pt;}
.y6c{bottom:200.000061pt;}
.y8b{bottom:203.040039pt;}
.y37{bottom:204.640076pt;}
.y6b{bottom:218.400086pt;}
.y8a{bottom:221.440064pt;}
.y36{bottom:223.040039pt;}
.y6a{bottom:236.800049pt;}
.y89{bottom:239.840088pt;}
.y35{bottom:241.440064pt;}
.y69{bottom:255.200074pt;}
.y88{bottom:258.240052pt;}
.y34{bottom:259.840088pt;}
.y68{bottom:273.600037pt;}
.y87{bottom:276.640076pt;}
.y33{bottom:278.240052pt;}
.y67{bottom:291.680054pt;}
.y86{bottom:295.040039pt;}
.y32{bottom:296.320069pt;}
.y53{bottom:296.640076pt;}
.y66{bottom:310.080079pt;}
.y85{bottom:313.440064pt;}
.y31{bottom:315.040039pt;}
.y65{bottom:324.800049pt;}
.y84{bottom:331.840088pt;}
.y30{bottom:333.440064pt;}
.y83{bottom:350.240052pt;}
.y2f{bottom:351.840088pt;}
.y82{bottom:368.640076pt;}
.y2e{bottom:370.240052pt;}
.y81{bottom:387.040039pt;}
.y2d{bottom:388.640076pt;}
.y80{bottom:405.440064pt;}
.y2c{bottom:407.040039pt;}
.y7f{bottom:423.840088pt;}
.y2b{bottom:425.440064pt;}
.y7e{bottom:442.240052pt;}
.y2a{bottom:443.840088pt;}
.y7d{bottom:460.640076pt;}
.y29{bottom:462.240052pt;}
.y7c{bottom:479.040039pt;}
.y28{bottom:480.640076pt;}
.y7b{bottom:497.440064pt;}
.y27{bottom:498.720032pt;}
.y52{bottom:499.040039pt;}
.y7a{bottom:515.840088pt;}
.y26{bottom:517.440064pt;}
.y79{bottom:534.240052pt;}
.y25{bottom:535.840088pt;}
.y78{bottom:552.640076pt;}
.y24{bottom:554.240052pt;}
.y77{bottom:571.040039pt;}
.y23{bottom:572.640076pt;}
.y76{bottom:589.440064pt;}
.y22{bottom:591.040039pt;}
.y75{bottom:607.840088pt;}
.y21{bottom:609.440064pt;}
.y74{bottom:626.240052pt;}
.y20{bottom:627.840058pt;}
.y64{bottom:636.800049pt;}
.y73{bottom:644.640046pt;}
.y91{bottom:645.920044pt;}
.y1f{bottom:646.240052pt;}
.y63{bottom:655.200074pt;}
.y72{bottom:663.040070pt;}
.y1e{bottom:664.640046pt;}
.y62{bottom:674.400055pt;}
.y71{bottom:681.440064pt;}
.y1d{bottom:682.720063pt;}
.y51{bottom:683.040070pt;}
.y61{bottom:693.440064pt;}
.y70{bottom:699.840058pt;}
.y1c{bottom:700.800049pt;}
.y50{bottom:701.440064pt;}
.y60{bottom:712.480072pt;}
.y1b{bottom:716.160065pt;}
.y6f{bottom:717.920044pt;}
.y4f{bottom:719.840058pt;}
.y1a{bottom:731.520050pt;}
.y6e{bottom:732.800049pt;}
.y4e{bottom:738.240052pt;}
.y19{bottom:747.200074pt;}
.y5f{bottom:750.560059pt;}
.y4d{bottom:756.640046pt;}
.y18{bottom:765.920044pt;}
.y5e{bottom:769.600068pt;}
.y4c{bottom:775.040070pt;}
.y17{bottom:784.320069pt;}
.y5d{bottom:788.640046pt;}
.y4b{bottom:793.440064pt;}
.y16{bottom:802.400055pt;}
.y5c{bottom:807.840058pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:820.800049pt;}
.y5b{bottom:826.880066pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:839.200074pt;}
.y5a{bottom:845.920044pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:857.600068pt;}
.y59{bottom:864.960053pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:876.000061pt;}
.y58{bottom:884.000061pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:894.400055pt;}
.y57{bottom:902.720063pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:912.800064pt;}
.y56{bottom:921.120057pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:931.040055pt;}
.y55{bottom:940.320054pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:949.440064pt;}
.y54{bottom:958.720063pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:967.840058pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:988.482281pt;}
.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;}
.h6{height:29.941742pt;}
.hc{height:37.092021pt;}
.h4{height:42.651279pt;}
.h2{height:44.689179pt;}
.h9{height:46.220486pt;}
.hd{height:46.595500pt;}
.hb{height:48.783082pt;}
.ha{height:52.087714pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x10{left:80.639999pt;}
.x9{left:86.077905pt;}
.x1c{left:89.760002pt;}
.x1f{left:104.000000pt;}
.xd{left:105.440002pt;}
.x1e{left:113.120003pt;}
.x8{left:115.999700pt;}
.x16{left:122.720001pt;}
.x18{left:142.399994pt;}
.xe{left:146.080002pt;}
.xc{left:168.800003pt;}
.xf{left:179.520004pt;}
.x11{left:237.279999pt;}
.x19{left:320.000000pt;}
.x20{left:323.679993pt;}
.xa{left:325.921035pt;}
.x2{left:384.799988pt;}
.xb{left:396.799988pt;}
.x1a{left:463.839996pt;}
.x14{left:466.880005pt;}
.x13{left:478.079987pt;}
.x15{left:501.760010pt;}
.x1b{left:614.719971pt;}
.x1d{left:652.960022pt;}
.x17{left:658.080017pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x12{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; }
  