
    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_279a94e2ef520d978a0ca027.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_7ce539ae61aabdfe5889f137.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_0ac88e64ad72ccb5d6245be9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_51a4f1cbab156073590efd06.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d3260a29c5435418310c7d4a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_a54183e3b5d726bc986ff2c9.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);}
.v2{vertical-align:-27.360009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360009px;}
.v3{vertical-align:41.760130px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012094px;}
.ls0{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359114px;}
.ls4{letter-spacing:34.055251px;}
.ls2{letter-spacing:64.085852px;}
.ls7{letter-spacing:113.039301px;}
.ls5{letter-spacing:135.359126px;}
.ls8{letter-spacing:196.559292px;}
.ls6{letter-spacing:241.919297px;}
.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:-59.762250px;}
.ws3{word-spacing:-18.012770px;}
.ws0{word-spacing:-18.000676px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-8.483662px;}
._2{margin-left:-6.110541px;}
._5{margin-left:-5.040189px;}
._6{margin-left:-3.967163px;}
._0{margin-left:-2.122885px;}
._3{margin-left:-1.078837px;}
._1{width:1.707659px;}
._9{width:3.405658px;}
._8{width:4.501013px;}
._a{width:5.893253px;}
._d{width:7.403777px;}
._10{width:8.545411px;}
._7{width:9.552171px;}
._24{width:10.593408px;}
._f{width:11.655803px;}
._e{width:13.595854px;}
._11{width:15.110733px;}
._17{width:16.536996px;}
._14{width:19.725732px;}
._c{width:21.141710px;}
._b{width:22.147948px;}
._25{width:23.783230px;}
._16{width:24.820766px;}
._15{width:26.102387px;}
._23{width:32.474917px;}
._12{width:38.848553px;}
._13{width:39.958843px;}
._22{width:131.104957px;}
._1a{width:141.874372px;}
._1c{width:183.872140px;}
._1d{width:200.949438px;}
._1e{width:205.117441px;}
._19{width:219.645400px;}
._1b{width:259.058528px;}
._20{width:277.059195px;}
._21{width:280.643775px;}
._1f{width:320.389268px;}
._18{width:329.318373px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.241800px;}
.fs4{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs0{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y7f{bottom:3.959953px;}
.ya6{bottom:3.959988px;}
.y9e{bottom:3.960005px;}
.y85{bottom:3.960021px;}
.y8b{bottom:3.960023px;}
.y5a{bottom:89.640060px;}
.y74{bottom:99.000000px;}
.y59{bottom:110.340088px;}
.yf0{bottom:113.040047px;}
.y73{bottom:115.740074px;}
.y28{bottom:118.980079px;}
.y97{bottom:124.560036px;}
.yd0{bottom:126.900055px;}
.y58{bottom:131.040047px;}
.y99{bottom:135.000068px;}
.y27{bottom:139.680039px;}
.y96{bottom:145.260064px;}
.ycf{bottom:147.600083px;}
.y57{bottom:151.740074px;}
.yef{bottom:154.800041px;}
.y98{bottom:155.700096px;}
.y26{bottom:160.380066px;}
.yce{bottom:168.300041px;}
.y56{bottom:172.440033px;}
.yee{bottom:175.500068px;}
.y25{bottom:181.080093px;}
.ycd{bottom:189.000068px;}
.y55{bottom:193.140060px;}
.y95{bottom:194.940033px;}
.yed{bottom:196.200096px;}
.y24{bottom:201.780052px;}
.y92{bottom:209.160049px;}
.ycc{bottom:209.700096px;}
.y54{bottom:213.840088px;}
.yec{bottom:216.900055px;}
.y94{bottom:219.600083px;}
.y91{bottom:229.860077px;}
.ycb{bottom:230.400055px;}
.y23{bottom:231.480079px;}
.y53{bottom:234.540047px;}
.y93{bottom:240.300041px;}
.yca{bottom:251.100083px;}
.y22{bottom:252.180039px;}
.y52{bottom:255.240074px;}
.yeb{bottom:258.480079px;}
.yc9{bottom:271.800041px;}
.y51{bottom:275.940033px;}
.y90{bottom:279.540047px;}
.y21{bottom:281.880066px;}
.yc8{bottom:292.500068px;}
.y8d{bottom:293.760064px;}
.y50{bottom:296.640060px;}
.yea{bottom:300.240074px;}
.y20{bottom:302.580093px;}
.y8f{bottom:304.200096px;}
.yc7{bottom:313.200096px;}
.y8c{bottom:314.460091px;}
.y4f{bottom:317.340088px;}
.ye9{bottom:320.940033px;}
.y1f{bottom:323.280052px;}
.y8e{bottom:324.900055px;}
.yc6{bottom:333.900055px;}
.y4e{bottom:338.040047px;}
.ye8{bottom:341.640060px;}
.y1e{bottom:343.980079px;}
.yc5{bottom:354.600083px;}
.y4d{bottom:358.740074px;}
.ye7{bottom:362.340088px;}
.y8a{bottom:364.140060px;}
.y1d{bottom:364.680039px;}
.yc4{bottom:375.300041px;}
.y72{bottom:378.540047px;}
.y4c{bottom:379.440033px;}
.ye6{bottom:383.040047px;}
.y1c{bottom:385.380066px;}
.y88{bottom:388.800041px;}
.y71{bottom:395.280052px;}
.y4b{bottom:400.140060px;}
.ye5{bottom:403.740074px;}
.y87{bottom:409.500068px;}
.yc3{bottom:414.000068px;}
.y1b{bottom:415.080093px;}
.y4a{bottom:420.840088px;}
.ye4{bottom:424.440033px;}
.y89{bottom:430.200096px;}
.yc2{bottom:434.700096px;}
.y1a{bottom:435.780052px;}
.y49{bottom:441.540047px;}
.ye3{bottom:445.140060px;}
.yc1{bottom:455.400055px;}
.y19{bottom:456.480079px;}
.y48{bottom:462.240074px;}
.ye2{bottom:465.840088px;}
.y84{bottom:469.440033px;}
.y83{bottom:473.400055px;}
.yc0{bottom:476.100083px;}
.y18{bottom:477.180039px;}
.y47{bottom:482.940033px;}
.y86{bottom:483.660049px;}
.ye1{bottom:486.540047px;}
.y82{bottom:494.100083px;}
.y17{bottom:497.880066px;}
.y46{bottom:503.640060px;}
.ybf{bottom:505.800041px;}
.ye0{bottom:507.240074px;}
.y16{bottom:518.580093px;}
.y45{bottom:524.340088px;}
.ybe{bottom:526.500068px;}
.y7e{bottom:533.340088px;}
.y7d{bottom:537.300041px;}
.y15{bottom:539.280052px;}
.ybd{bottom:547.200096px;}
.y81{bottom:547.560036px;}
.ydf{bottom:549.000068px;}
.y44{bottom:554.040047px;}
.y7c{bottom:558.000068px;}
.y14{bottom:559.980079px;}
.ybc{bottom:567.900055px;}
.y80{bottom:568.260064px;}
.y43{bottom:574.740074px;}
.y7b{bottom:578.700096px;}
.ybb{bottom:588.600083px;}
.yde{bottom:590.580093px;}
.y13{bottom:595.080093px;}
.y42{bottom:595.440033px;}
.y70{bottom:601.740074px;}
.yba{bottom:609.300041px;}
.ydd{bottom:611.280052px;}
.y7a{bottom:611.640060px;}
.y41{bottom:616.140060px;}
.y6f{bottom:622.440033px;}
.y12{bottom:628.020058px;}
.ydc{bottom:631.980079px;}
.y79{bottom:632.340088px;}
.y40{bottom:636.840088px;}
.yb9{bottom:638.460091px;}
.y6e{bottom:643.140060px;}
.y11{bottom:650.340088px;}
.ydb{bottom:652.680039px;}
.y78{bottom:653.040047px;}
.y3f{bottom:657.540047px;}
.yb7{bottom:663.120072px;}
.y6d{bottom:663.840088px;}
.y10{bottom:672.840088px;}
.yda{bottom:673.380066px;}
.y77{bottom:673.740074px;}
.y3e{bottom:678.240074px;}
.yb6{bottom:683.820099px;}
.y6c{bottom:684.540047px;}
.y76{bottom:694.440067px;}
.yf{bottom:695.160049px;}
.y3d{bottom:698.940067px;}
.yb8{bottom:704.520058px;}
.y6b{bottom:705.240074px;}
.y75{bottom:711.360077px;}
.yd9{bottom:715.140060px;}
.ye{bottom:717.480079px;}
.y3c{bottom:719.640060px;}
.y6a{bottom:725.940067px;}
.yd{bottom:739.800076px;}
.y3b{bottom:740.340054px;}
.yb5{bottom:743.760064px;}
.y69{bottom:746.640060px;}
.yd8{bottom:756.900055px;}
.yb2{bottom:757.980079px;}
.y3a{bottom:761.040081px;}
.yc{bottom:762.120072px;}
.y68{bottom:767.340054px;}
.yb4{bottom:768.420078px;}
.yd7{bottom:777.600083px;}
.yb1{bottom:778.680073px;}
.y39{bottom:781.740074px;}
.yb{bottom:784.440067px;}
.y67{bottom:788.040081px;}
.yb3{bottom:789.120072px;}
.y38{bottom:802.440067px;}
.ya{bottom:806.760064px;}
.y66{bottom:808.740074px;}
.yd6{bottom:819.180073px;}
.y37{bottom:823.140060px;}
.yb0{bottom:828.360077px;}
.y9{bottom:829.080059px;}
.y65{bottom:829.440067px;}
.yad{bottom:842.580059px;}
.y64{bottom:850.140060px;}
.y36{bottom:852.840054px;}
.yaf{bottom:853.020058px;}
.yd5{bottom:862.560070px;}
.yac{bottom:863.280052px;}
.y8{bottom:864.180073px;}
.y63{bottom:870.840054px;}
.yae{bottom:873.720051px;}
.y35{bottom:882.540081px;}
.y62{bottom:891.540081px;}
.yd4{bottom:896.940067px;}
.y7{bottom:897.840054px;}
.y34{bottom:903.240074px;}
.y61{bottom:912.240074px;}
.yab{bottom:912.960056px;}
.y33{bottom:923.940067px;}
.ya8{bottom:927.180073px;}
.y60{bottom:932.940067px;}
.yd3{bottom:935.640060px;}
.yaa{bottom:937.620072px;}
.y6{bottom:939.960056px;}
.y32{bottom:944.640060px;}
.ya7{bottom:947.880066px;}
.y5f{bottom:953.640060px;}
.yd2{bottom:956.340054px;}
.ya9{bottom:958.320065px;}
.y31{bottom:965.340054px;}
.y5e{bottom:974.340054px;}
.yd1{bottom:977.040064px;}
.y30{bottom:986.040064px;}
.y5{bottom:990.180073px;}
.yf5{bottom:994.320065px;}
.y5d{bottom:995.040064px;}
.ya5{bottom:997.560070px;}
.y2f{bottom:1006.740074px;}
.ya2{bottom:1011.780069px;}
.y5c{bottom:1015.740074px;}
.ya4{bottom:1022.220068px;}
.y4{bottom:1026.540064px;}
.y2e{bottom:1027.440067px;}
.ya1{bottom:1032.480063px;}
.yf4{bottom:1036.080059px;}
.y5b{bottom:1036.440067px;}
.ya3{bottom:1042.920061px;}
.yf3{bottom:1056.780069px;}
.y2d{bottom:1057.140060px;}
.y3{bottom:1068.300058px;}
.yf2{bottom:1077.480063px;}
.y2c{bottom:1077.840070px;}
.y9d{bottom:1082.160067px;}
.y9c{bottom:1086.120072px;}
.ya0{bottom:1096.380066px;}
.yf1{bottom:1098.180073px;}
.y2b{bottom:1098.540064px;}
.y2{bottom:1104.480063px;}
.y9b{bottom:1106.820065px;}
.y9f{bottom:1117.080059px;}
.y2a{bottom:1119.240066px;}
.y9a{bottom:1127.520066px;}
.y1{bottom:1134.360068px;}
.y29{bottom:1139.940067px;}
.ha{height:20.159980px;}
.he{height:20.159981px;}
.h11{height:20.159998px;}
.h15{height:20.160015px;}
.h14{height:20.160016px;}
.hc{height:20.160050px;}
.h5{height:34.885794px;}
.h3{height:52.068362px;}
.h8{height:52.138677px;}
.h9{height:52.419938px;}
.h7{height:54.880968px;}
.h6{height:57.412496px;}
.h4{height:62.245803px;}
.h2{height:69.344443px;}
.h16{height:93.108339px;}
.h13{height:93.828357px;}
.h10{height:93.828492px;}
.hd{height:93.828497px;}
.h17{height:93.898533px;}
.h12{height:93.898673px;}
.hb{height:93.898808px;}
.hf{height:93.898812px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:4.500000px;}
.w16{width:4.679970px;}
.wd{width:4.680038px;}
.w2{width:9.000000px;}
.wb{width:10.079955px;}
.w19{width:14.040046px;}
.w7{width:21.960021px;}
.w8{width:23.039979px;}
.w5{width:23.039996px;}
.wa{width:23.040047px;}
.w15{width:25.919975px;}
.w14{width:25.920044px;}
.w10{width:26.639991px;}
.w17{width:26.639992px;}
.w3{width:27.000000px;}
.w21{width:30.600013px;}
.wf{width:34.920044px;}
.wc{width:37.980011px;}
.w1e{width:45.000000px;}
.we{width:45.899987px;}
.w1a{width:48.419975px;}
.w11{width:48.960021px;}
.w1c{width:49.860008px;}
.w1d{width:51.659981px;}
.w20{width:53.820030px;}
.w13{width:58.860008px;}
.w9{width:59.759994px;}
.w18{width:70.560036px;}
.w6{width:73.259994px;}
.w1f{width:75.420044px;}
.w12{width:98.460022px;}
.w1b{width:108.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:84.959997px;}
.xb{left:102.599997px;}
.x4{left:111.959997px;}
.x2{left:116.280001px;}
.x1{left:127.079999px;}
.x12{left:129.599997px;}
.x5{left:138.959997px;}
.xc{left:167.580008px;}
.xd{left:214.560001px;}
.x8{left:223.379998px;}
.x13{left:241.560001px;}
.x14{left:246.060001px;}
.x36{left:259.560001px;}
.x15{left:269.099997px;}
.xe{left:299.519989px;}
.xa{left:312.300007px;}
.x33{left:322.560001px;}
.xf{left:366.120002px;}
.x10{left:440.100014px;}
.x11{left:487.800007px;}
.x16{left:632.159981px;}
.x30{left:646.200027px;}
.x31{left:650.700027px;}
.x6{left:662.759994px;}
.x25{left:678.059967px;}
.x7{left:681.480011px;}
.x26{left:682.559967px;}
.x2a{left:685.620002px;}
.x38{left:690.480011px;}
.x1d{left:691.919975px;}
.x1e{left:696.419975px;}
.x32{left:699.120002px;}
.x2f{left:702.720017px;}
.x17{left:705.240006px;}
.x37{left:707.580025px;}
.x18{left:709.740006px;}
.x34{left:712.440033px;}
.x27{left:717.480011px;}
.x1f{left:719.460023px;}
.x28{left:721.980011px;}
.x20{left:723.960023px;}
.x2c{left:725.940033px;}
.x19{left:731.700027px;}
.x21{left:734.039978px;}
.x1a{left:736.200027px;}
.x22{left:738.539978px;}
.x29{left:748.620002px;}
.x2d{left:751.860008px;}
.x2e{left:756.539978px;}
.x1b{left:759.240006px;}
.x1c{left:763.740006px;}
.x35{left:768.600014px;}
.x23{left:776.519989px;}
.x24{left:781.200027px;}
.x2b{left:784.080025px;}
.x9{left:807.659981px;}
@media print{
.v2{vertical-align:-24.320008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320008pt;}
.v3{vertical-align:37.120116pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.010750pt;}
.ls0{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.ls4{letter-spacing:30.271334pt;}
.ls2{letter-spacing:56.965202pt;}
.ls7{letter-spacing:100.479379pt;}
.ls5{letter-spacing:120.319223pt;}
.ls8{letter-spacing:174.719371pt;}
.ls6{letter-spacing:215.039375pt;}
.ws1{word-spacing:-53.122000pt;}
.ws3{word-spacing:-16.011351pt;}
.ws0{word-spacing:-16.000601pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-7.541033pt;}
._2{margin-left:-5.431592pt;}
._5{margin-left:-4.480168pt;}
._6{margin-left:-3.526367pt;}
._0{margin-left:-1.887008pt;}
._3{margin-left:-0.958966pt;}
._1{width:1.517920pt;}
._9{width:3.027251pt;}
._8{width:4.000900pt;}
._a{width:5.238447pt;}
._d{width:6.581135pt;}
._10{width:7.595921pt;}
._7{width:8.490819pt;}
._24{width:9.416362pt;}
._f{width:10.360714pt;}
._e{width:12.085204pt;}
._11{width:13.431763pt;}
._17{width:14.699552pt;}
._14{width:17.533984pt;}
._c{width:18.792631pt;}
._b{width:19.687065pt;}
._25{width:21.140649pt;}
._16{width:22.062903pt;}
._15{width:23.202121pt;}
._23{width:28.866593pt;}
._12{width:34.532047pt;}
._13{width:35.518972pt;}
._22{width:116.537740pt;}
._1a{width:126.110553pt;}
._1c{width:163.441902pt;}
._1d{width:178.621723pt;}
._1e{width:182.326614pt;}
._19{width:195.240355pt;}
._1b{width:230.274247pt;}
._20{width:246.274840pt;}
._21{width:249.461133pt;}
._1f{width:284.790460pt;}
._18{width:292.727443pt;}
.fs2{font-size:42.881600pt;}
.fs4{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs0{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:3.519958pt;}
.ya6{bottom:3.519989pt;}
.y9e{bottom:3.520004pt;}
.y85{bottom:3.520019pt;}
.y8b{bottom:3.520020pt;}
.y5a{bottom:79.680054pt;}
.y74{bottom:88.000000pt;}
.y59{bottom:98.080079pt;}
.yf0{bottom:100.480042pt;}
.y73{bottom:102.880066pt;}
.y28{bottom:105.760071pt;}
.y97{bottom:110.720032pt;}
.yd0{bottom:112.800049pt;}
.y58{bottom:116.480042pt;}
.y99{bottom:120.000061pt;}
.y27{bottom:124.160035pt;}
.y96{bottom:129.120057pt;}
.ycf{bottom:131.200074pt;}
.y57{bottom:134.880066pt;}
.yef{bottom:137.600037pt;}
.y98{bottom:138.400086pt;}
.y26{bottom:142.560059pt;}
.yce{bottom:149.600037pt;}
.y56{bottom:153.280030pt;}
.yee{bottom:156.000061pt;}
.y25{bottom:160.960083pt;}
.ycd{bottom:168.000061pt;}
.y55{bottom:171.680054pt;}
.y95{bottom:173.280030pt;}
.yed{bottom:174.400086pt;}
.y24{bottom:179.360047pt;}
.y92{bottom:185.920044pt;}
.ycc{bottom:186.400086pt;}
.y54{bottom:190.080079pt;}
.yec{bottom:192.800049pt;}
.y94{bottom:195.200074pt;}
.y91{bottom:204.320069pt;}
.ycb{bottom:204.800049pt;}
.y23{bottom:205.760071pt;}
.y53{bottom:208.480042pt;}
.y93{bottom:213.600037pt;}
.yca{bottom:223.200074pt;}
.y22{bottom:224.160035pt;}
.y52{bottom:226.880066pt;}
.yeb{bottom:229.760071pt;}
.yc9{bottom:241.600037pt;}
.y51{bottom:245.280030pt;}
.y90{bottom:248.480042pt;}
.y21{bottom:250.560059pt;}
.yc8{bottom:260.000061pt;}
.y8d{bottom:261.120057pt;}
.y50{bottom:263.680054pt;}
.yea{bottom:266.880066pt;}
.y20{bottom:268.960083pt;}
.y8f{bottom:270.400086pt;}
.yc7{bottom:278.400086pt;}
.y8c{bottom:279.520081pt;}
.y4f{bottom:282.080079pt;}
.ye9{bottom:285.280030pt;}
.y1f{bottom:287.360047pt;}
.y8e{bottom:288.800049pt;}
.yc6{bottom:296.800049pt;}
.y4e{bottom:300.480042pt;}
.ye8{bottom:303.680054pt;}
.y1e{bottom:305.760071pt;}
.yc5{bottom:315.200074pt;}
.y4d{bottom:318.880066pt;}
.ye7{bottom:322.080079pt;}
.y8a{bottom:323.680054pt;}
.y1d{bottom:324.160035pt;}
.yc4{bottom:333.600037pt;}
.y72{bottom:336.480042pt;}
.y4c{bottom:337.280030pt;}
.ye6{bottom:340.480042pt;}
.y1c{bottom:342.560059pt;}
.y88{bottom:345.600037pt;}
.y71{bottom:351.360047pt;}
.y4b{bottom:355.680054pt;}
.ye5{bottom:358.880066pt;}
.y87{bottom:364.000061pt;}
.yc3{bottom:368.000061pt;}
.y1b{bottom:368.960083pt;}
.y4a{bottom:374.080079pt;}
.ye4{bottom:377.280030pt;}
.y89{bottom:382.400086pt;}
.yc2{bottom:386.400086pt;}
.y1a{bottom:387.360047pt;}
.y49{bottom:392.480042pt;}
.ye3{bottom:395.680054pt;}
.yc1{bottom:404.800049pt;}
.y19{bottom:405.760071pt;}
.y48{bottom:410.880066pt;}
.ye2{bottom:414.080079pt;}
.y84{bottom:417.280030pt;}
.y83{bottom:420.800049pt;}
.yc0{bottom:423.200074pt;}
.y18{bottom:424.160035pt;}
.y47{bottom:429.280030pt;}
.y86{bottom:429.920044pt;}
.ye1{bottom:432.480042pt;}
.y82{bottom:439.200074pt;}
.y17{bottom:442.560059pt;}
.y46{bottom:447.680054pt;}
.ybf{bottom:449.600037pt;}
.ye0{bottom:450.880066pt;}
.y16{bottom:460.960083pt;}
.y45{bottom:466.080079pt;}
.ybe{bottom:468.000061pt;}
.y7e{bottom:474.080079pt;}
.y7d{bottom:477.600037pt;}
.y15{bottom:479.360047pt;}
.ybd{bottom:486.400086pt;}
.y81{bottom:486.720032pt;}
.ydf{bottom:488.000061pt;}
.y44{bottom:492.480042pt;}
.y7c{bottom:496.000061pt;}
.y14{bottom:497.760071pt;}
.ybc{bottom:504.800049pt;}
.y80{bottom:505.120057pt;}
.y43{bottom:510.880066pt;}
.y7b{bottom:514.400086pt;}
.ybb{bottom:523.200074pt;}
.yde{bottom:524.960083pt;}
.y13{bottom:528.960083pt;}
.y42{bottom:529.280030pt;}
.y70{bottom:534.880066pt;}
.yba{bottom:541.600037pt;}
.ydd{bottom:543.360047pt;}
.y7a{bottom:543.680054pt;}
.y41{bottom:547.680054pt;}
.y6f{bottom:553.280030pt;}
.y12{bottom:558.240052pt;}
.ydc{bottom:561.760071pt;}
.y79{bottom:562.080079pt;}
.y40{bottom:566.080079pt;}
.yb9{bottom:567.520081pt;}
.y6e{bottom:571.680054pt;}
.y11{bottom:578.080079pt;}
.ydb{bottom:580.160035pt;}
.y78{bottom:580.480042pt;}
.y3f{bottom:584.480042pt;}
.yb7{bottom:589.440064pt;}
.y6d{bottom:590.080079pt;}
.y10{bottom:598.080079pt;}
.yda{bottom:598.560059pt;}
.y77{bottom:598.880066pt;}
.y3e{bottom:602.880066pt;}
.yb6{bottom:607.840088pt;}
.y6c{bottom:608.480042pt;}
.y76{bottom:617.280060pt;}
.yf{bottom:617.920044pt;}
.y3d{bottom:621.280060pt;}
.yb8{bottom:626.240052pt;}
.y6b{bottom:626.880066pt;}
.y75{bottom:632.320069pt;}
.yd9{bottom:635.680054pt;}
.ye{bottom:637.760071pt;}
.y3c{bottom:639.680054pt;}
.y6a{bottom:645.280060pt;}
.yd{bottom:657.600068pt;}
.y3b{bottom:658.080048pt;}
.yb5{bottom:661.120057pt;}
.y69{bottom:663.680054pt;}
.yd8{bottom:672.800049pt;}
.yb2{bottom:673.760071pt;}
.y3a{bottom:676.480072pt;}
.yc{bottom:677.440064pt;}
.y68{bottom:682.080048pt;}
.yb4{bottom:683.040070pt;}
.yd7{bottom:691.200074pt;}
.yb1{bottom:692.160065pt;}
.y39{bottom:694.880066pt;}
.yb{bottom:697.280060pt;}
.y67{bottom:700.480072pt;}
.yb3{bottom:701.440064pt;}
.y38{bottom:713.280060pt;}
.ya{bottom:717.120057pt;}
.y66{bottom:718.880066pt;}
.yd6{bottom:728.160065pt;}
.y37{bottom:731.680054pt;}
.yb0{bottom:736.320069pt;}
.y9{bottom:736.960053pt;}
.y65{bottom:737.280060pt;}
.yad{bottom:748.960053pt;}
.y64{bottom:755.680054pt;}
.y36{bottom:758.080048pt;}
.yaf{bottom:758.240052pt;}
.yd5{bottom:766.720063pt;}
.yac{bottom:767.360047pt;}
.y8{bottom:768.160065pt;}
.y63{bottom:774.080048pt;}
.yae{bottom:776.640046pt;}
.y35{bottom:784.480072pt;}
.y62{bottom:792.480072pt;}
.yd4{bottom:797.280060pt;}
.y7{bottom:798.080048pt;}
.y34{bottom:802.880066pt;}
.y61{bottom:810.880066pt;}
.yab{bottom:811.520050pt;}
.y33{bottom:821.280060pt;}
.ya8{bottom:824.160065pt;}
.y60{bottom:829.280060pt;}
.yd3{bottom:831.680054pt;}
.yaa{bottom:833.440064pt;}
.y6{bottom:835.520050pt;}
.y32{bottom:839.680054pt;}
.ya7{bottom:842.560059pt;}
.y5f{bottom:847.680054pt;}
.yd2{bottom:850.080048pt;}
.ya9{bottom:851.840058pt;}
.y31{bottom:858.080048pt;}
.y5e{bottom:866.080048pt;}
.yd1{bottom:868.480057pt;}
.y30{bottom:876.480057pt;}
.y5{bottom:880.160065pt;}
.yf5{bottom:883.840058pt;}
.y5d{bottom:884.480057pt;}
.ya5{bottom:886.720063pt;}
.y2f{bottom:894.880066pt;}
.ya2{bottom:899.360062pt;}
.y5c{bottom:902.880066pt;}
.ya4{bottom:908.640061pt;}
.y4{bottom:912.480057pt;}
.y2e{bottom:913.280060pt;}
.ya1{bottom:917.760056pt;}
.yf4{bottom:920.960053pt;}
.y5b{bottom:921.280060pt;}
.ya3{bottom:927.040055pt;}
.yf3{bottom:939.360062pt;}
.y2d{bottom:939.680054pt;}
.y3{bottom:949.600052pt;}
.yf2{bottom:957.760056pt;}
.y2c{bottom:958.080063pt;}
.y9d{bottom:961.920060pt;}
.y9c{bottom:965.440064pt;}
.ya0{bottom:974.560059pt;}
.yf1{bottom:976.160065pt;}
.y2b{bottom:976.480057pt;}
.y2{bottom:981.760056pt;}
.y9b{bottom:983.840058pt;}
.y9f{bottom:992.960053pt;}
.y2a{bottom:994.880059pt;}
.y9a{bottom:1002.240059pt;}
.y1{bottom:1008.320061pt;}
.y29{bottom:1013.280060pt;}
.ha{height:17.919982pt;}
.he{height:17.919983pt;}
.h11{height:17.919998pt;}
.h15{height:17.920013pt;}
.h14{height:17.920014pt;}
.hc{height:17.920044pt;}
.h5{height:31.009595pt;}
.h3{height:46.282988pt;}
.h8{height:46.345491pt;}
.h9{height:46.595500pt;}
.h7{height:48.783082pt;}
.h6{height:51.033330pt;}
.h4{height:55.329603pt;}
.h2{height:61.639505pt;}
.h16{height:82.762968pt;}
.h13{height:83.402984pt;}
.h10{height:83.403104pt;}
.hd{height:83.403108pt;}
.h17{height:83.465363pt;}
.h12{height:83.465487pt;}
.hb{height:83.465607pt;}
.hf{height:83.465611pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.000000pt;}
.w16{width:4.159973pt;}
.wd{width:4.160034pt;}
.w2{width:8.000000pt;}
.wb{width:8.959960pt;}
.w19{width:12.480041pt;}
.w7{width:19.520019pt;}
.w8{width:20.479981pt;}
.w5{width:20.479996pt;}
.wa{width:20.480042pt;}
.w15{width:23.039978pt;}
.w14{width:23.040039pt;}
.w10{width:23.679992pt;}
.w17{width:23.679993pt;}
.w3{width:24.000000pt;}
.w21{width:27.200012pt;}
.wf{width:31.040039pt;}
.wc{width:33.760010pt;}
.w1e{width:40.000000pt;}
.we{width:40.799988pt;}
.w1a{width:43.039978pt;}
.w11{width:43.520019pt;}
.w1c{width:44.320007pt;}
.w1d{width:45.919983pt;}
.w20{width:47.840027pt;}
.w13{width:52.320007pt;}
.w9{width:53.119995pt;}
.w18{width:62.720032pt;}
.w6{width:65.119995pt;}
.w1f{width:67.040039pt;}
.w12{width:87.520020pt;}
.w1b{width:96.000000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.519997pt;}
.xb{left:91.199997pt;}
.x4{left:99.519997pt;}
.x2{left:103.360001pt;}
.x1{left:112.959999pt;}
.x12{left:115.199997pt;}
.x5{left:123.519997pt;}
.xc{left:148.960007pt;}
.xd{left:190.720001pt;}
.x8{left:198.559998pt;}
.x13{left:214.720001pt;}
.x14{left:218.720001pt;}
.x36{left:230.720001pt;}
.x15{left:239.199997pt;}
.xe{left:266.239990pt;}
.xa{left:277.600006pt;}
.x33{left:286.720001pt;}
.xf{left:325.440002pt;}
.x10{left:391.200012pt;}
.x11{left:433.600006pt;}
.x16{left:561.919983pt;}
.x30{left:574.400024pt;}
.x31{left:578.400024pt;}
.x6{left:589.119995pt;}
.x25{left:602.719971pt;}
.x7{left:605.760010pt;}
.x26{left:606.719971pt;}
.x2a{left:609.440002pt;}
.x38{left:613.760010pt;}
.x1d{left:615.039978pt;}
.x1e{left:619.039978pt;}
.x32{left:621.440002pt;}
.x2f{left:624.640015pt;}
.x17{left:626.880005pt;}
.x37{left:628.960022pt;}
.x18{left:630.880005pt;}
.x34{left:633.280029pt;}
.x27{left:637.760010pt;}
.x1f{left:639.520020pt;}
.x28{left:641.760010pt;}
.x20{left:643.520020pt;}
.x2c{left:645.280029pt;}
.x19{left:650.400024pt;}
.x21{left:652.479980pt;}
.x1a{left:654.400024pt;}
.x22{left:656.479980pt;}
.x29{left:665.440002pt;}
.x2d{left:668.320007pt;}
.x2e{left:672.479980pt;}
.x1b{left:674.880005pt;}
.x1c{left:678.880005pt;}
.x35{left:683.200012pt;}
.x23{left:690.239990pt;}
.x24{left:694.400024pt;}
.x2b{left:696.960022pt;}
.x9{left:717.919983pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  