
    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_ca285208b2a1d6582ca32c98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_cc1479396d3c0d9734a4df23.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929000;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_a0cf79e76ab53fbfcda7916e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963000;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:40.517926px;}
.v2{vertical-align:45.019918px;}
.v3{vertical-align:85.537844px;}
.ls0{letter-spacing:0.000000px;}
.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:-14.406374px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:64.346322px;}
.ws4{word-spacing:168.194412px;}
.wsc{word-spacing:171.003655px;}
.wsb{word-spacing:177.270428px;}
.ws2{word-spacing:195.098228px;}
.ws7{word-spacing:196.610891px;}
.ws3{word-spacing:201.040944px;}
.ws6{word-spacing:219.408647px;}
.wse{word-spacing:269.254852px;}
.wsa{word-spacing:281.140176px;}
.wsd{word-spacing:304.982689px;}
.wsf{word-spacing:310.961347px;}
.ws8{word-spacing:319.533253px;}
.ws9{word-spacing:1111.055090px;}
._d{margin-left:-5.042191px;}
._2{margin-left:-3.743226px;}
._1{margin-left:-2.592733px;}
._0{margin-left:-1.008083px;}
._3{width:1.656667px;}
._7{width:79.234328px;}
._66{width:83.698600px;}
._6{width:85.082364px;}
._83{width:100.411803px;}
._2d{width:101.493317px;}
._21{width:102.859077px;}
._46{width:120.436869px;}
._1f{width:151.515060px;}
._86{width:156.196393px;}
._17{width:160.665862px;}
._18{width:161.711544px;}
._87{width:167.473730px;}
._88{width:175.501297px;}
._4b{width:189.083291px;}
._74{width:190.523925px;}
._60{width:200.498867px;}
._1a{width:202.943473px;}
._75{width:205.290407px;}
._27{width:212.241122px;}
._59{width:214.761213px;}
._85{width:216.527433px;}
._36{width:218.544688px;}
._67{width:222.901890px;}
._29{width:226.215304px;}
._55{width:237.777197px;}
._58{width:240.765756px;}
._57{width:251.751379px;}
._43{width:252.939557px;}
._80{width:264.645084px;}
._56{width:270.479680px;}
._26{width:272.424526px;}
._42{width:273.865163px;}
._79{width:276.602374px;}
._3f{width:282.292892px;}
._9{width:283.661497px;}
._28{width:286.398708px;}
._7a{width:290.576556px;}
._f{width:295.546755px;}
._5c{width:301.416211px;}
._38{width:306.495251px;}
._41{width:308.512492px;}
._10{width:309.665002px;}
._3b{width:314.635200px;}
._a{width:315.787710px;}
._3d{width:316.940220px;}
._2e{width:322.486311px;}
._16{width:324.935758px;}
._4e{width:328.753447px;}
._2a{width:329.905956px;}
._5f{width:333.363486px;}
._6e{width:335.164283px;}
._1b{width:337.109143px;}
._61{width:341.791215px;}
._b{width:342.833706px;}
._34{width:349.282529px;}
._1e{width:350.723166px;}
._23{width:352.523963px;}
._14{width:354.901015px;}
._2c{width:356.125557px;}
._6b{width:357.278066px;}
._5d{width:360.591532px;}
._84{width:362.536393px;}
._47{width:364.769381px;}
._19{width:367.216033px;}
._76{width:368.514675px;}
._72{width:370.531930px;}
._63{width:373.700969px;}
._52{width:377.230894px;}
._89{width:379.463882px;}
._81{width:386.774390px;}
._c{width:387.963642px;}
._69{width:388.972088px;}
._5a{width:390.772885px;}
._7d{width:392.789777px;}
._1c{width:394.695334px;}
._82{width:397.183721px;}
._44{width:402.225952px;}
._12{width:404.530972px;}
._31{width:407.628342px;}
._15{width:410.976320px;}
._25{width:421.420629px;}
._65{width:425.599152px;}
._5e{width:442.668637px;}
._62{width:453.113309px;}
._24{width:482.792470px;}
._4c{width:486.754935px;}
._39{width:509.081656px;}
._2f{width:518.304945px;}
._2b{width:525.435685px;}
._35{width:542.362408px;}
._73{width:564.837128px;}
._49{width:566.421818px;}
._22{width:594.943695px;}
._7c{width:602.870279px;}
._5{width:607.026645px;}
._37{width:629.664708px;}
._3c{width:659.267790px;}
._4{width:672.350343px;}
._1d{width:673.649308px;}
._3a{width:697.588758px;}
._64{width:704.075133px;}
._5b{width:706.812292px;}
._7b{width:713.585434px;}
._8b{width:719.706478px;}
._13{width:728.997756px;}
._48{width:741.387226px;}
._30{width:762.852800px;}
._11{width:799.586908px;}
._70{width:817.851076px;}
._77{width:845.761415px;}
._68{width:847.058340px;}
._51{width:868.202306px;}
._e{width:884.010700px;}
._8a{width:887.108059px;}
._78{width:894.671416px;}
._6c{width:901.658133px;}
._53{width:917.864628px;}
._33{width:919.017762px;}
._54{width:929.388022px;}
._6f{width:931.335329px;}
._6a{width:952.944823px;}
._8{width:955.034110px;}
._45{width:956.403130px;}
._50{width:968.645780px;}
._32{width:970.592682px;}
._71{width:1001.567072px;}
._40{width:1037.438634px;}
._7e{width:1039.455511px;}
._4d{width:1072.950330px;}
._7f{width:1082.530932px;}
._4a{width:1084.403463px;}
._4f{width:1098.233464px;}
._3e{width:1127.910606px;}
._20{width:1130.429754px;}
._6d{width:1135.473992px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.031868px;}
.fs0{font-size:78.032780px;}
.y0{bottom:0.000000px;}
.y1{bottom:8.352971px;}
.y72{bottom:33.845997px;}
.y98{bottom:33.846005px;}
.y26{bottom:33.846089px;}
.y2{bottom:33.846179px;}
.y4c{bottom:33.846182px;}
.ybe{bottom:33.846357px;}
.y25{bottom:59.651392px;}
.y71{bottom:63.027703px;}
.ybd{bottom:63.027737px;}
.y97{bottom:63.027888px;}
.y4b{bottom:63.027902px;}
.y24{bottom:70.906371px;}
.y70{bottom:74.282682px;}
.ybc{bottom:74.282716px;}
.y96{bottom:74.282868px;}
.y4a{bottom:74.282882px;}
.y23{bottom:121.553779px;}
.y6f{bottom:124.930090px;}
.ybb{bottom:124.930124px;}
.y95{bottom:124.930275px;}
.y49{bottom:124.930289px;}
.y22{bottom:132.808758px;}
.y6e{bottom:136.185069px;}
.yba{bottom:136.185103px;}
.y94{bottom:136.185254px;}
.y48{bottom:136.185268px;}
.y21{bottom:183.456165px;}
.y6d{bottom:186.832476px;}
.yb9{bottom:186.832510px;}
.y93{bottom:186.832662px;}
.y47{bottom:186.832676px;}
.y20{bottom:194.711145px;}
.y6c{bottom:198.087456px;}
.yb8{bottom:198.087490px;}
.y92{bottom:198.087641px;}
.y46{bottom:198.087655px;}
.y1f{bottom:245.358552px;}
.y6b{bottom:248.734863px;}
.yb7{bottom:248.734897px;}
.y91{bottom:248.735048px;}
.y45{bottom:248.735063px;}
.y1e{bottom:256.613531px;}
.y6a{bottom:259.989843px;}
.yb6{bottom:259.989876px;}
.y90{bottom:259.990028px;}
.y44{bottom:259.990042px;}
.y1d{bottom:307.260939px;}
.y69{bottom:310.637250px;}
.yb5{bottom:310.637284px;}
.y8f{bottom:310.637435px;}
.y43{bottom:310.637449px;}
.y1c{bottom:318.515918px;}
.y68{bottom:321.892229px;}
.yb4{bottom:321.892263px;}
.y8e{bottom:321.892415px;}
.y42{bottom:321.892429px;}
.y1b{bottom:369.163326px;}
.y67{bottom:372.539637px;}
.yb3{bottom:372.539671px;}
.y8d{bottom:372.539822px;}
.y41{bottom:372.539836px;}
.y1a{bottom:380.418305px;}
.y66{bottom:383.794616px;}
.yb2{bottom:383.794650px;}
.y8c{bottom:383.794801px;}
.y40{bottom:383.794815px;}
.y19{bottom:431.065712px;}
.y65{bottom:434.442024px;}
.yb1{bottom:434.442057px;}
.y8b{bottom:434.442209px;}
.y3f{bottom:434.442223px;}
.y18{bottom:442.320692px;}
.y64{bottom:445.697003px;}
.yb0{bottom:445.697037px;}
.y8a{bottom:445.697188px;}
.y3e{bottom:445.697202px;}
.y17{bottom:492.968099px;}
.y63{bottom:496.344410px;}
.yaf{bottom:496.344444px;}
.y89{bottom:496.344595px;}
.y3d{bottom:496.344610px;}
.y16{bottom:504.223078px;}
.y62{bottom:507.599390px;}
.yae{bottom:507.599423px;}
.y88{bottom:507.599575px;}
.y3c{bottom:507.599589px;}
.y15{bottom:554.870486px;}
.y61{bottom:558.246797px;}
.yad{bottom:558.246831px;}
.y87{bottom:558.246982px;}
.y3b{bottom:558.246996px;}
.y14{bottom:566.125465px;}
.y60{bottom:569.501776px;}
.yac{bottom:569.501810px;}
.y86{bottom:569.501962px;}
.y3a{bottom:569.501976px;}
.y13{bottom:616.772873px;}
.y5f{bottom:620.149184px;}
.yab{bottom:620.149218px;}
.y85{bottom:620.149369px;}
.y39{bottom:620.149383px;}
.y5e{bottom:631.404163px;}
.yaa{bottom:631.404197px;}
.y84{bottom:631.404348px;}
.y38{bottom:631.404363px;}
.y12{bottom:670.796774px;}
.y5d{bottom:682.051571px;}
.ya9{bottom:682.051604px;}
.y83{bottom:682.051756px;}
.y37{bottom:682.051770px;}
.y5c{bottom:693.306550px;}
.ya8{bottom:693.306584px;}
.y82{bottom:693.306735px;}
.y36{bottom:693.306749px;}
.y11{bottom:698.934222px;}
.y10{bottom:728.197169px;}
.y5b{bottom:743.953957px;}
.ya7{bottom:743.953991px;}
.y81{bottom:743.954143px;}
.y35{bottom:743.954157px;}
.y5a{bottom:755.208937px;}
.ya6{bottom:755.208971px;}
.y80{bottom:755.209122px;}
.y34{bottom:755.209136px;}
.yf{bottom:775.468082px;}
.ye{bottom:803.605531px;}
.y59{bottom:805.856344px;}
.ya5{bottom:805.856378px;}
.y7f{bottom:805.856529px;}
.y33{bottom:805.856543px;}
.y58{bottom:817.111324px;}
.ya4{bottom:817.111357px;}
.y7e{bottom:817.111509px;}
.y32{bottom:817.111523px;}
.yd{bottom:832.868477px;}
.yc{bottom:861.005926px;}
.y57{bottom:867.758731px;}
.ya3{bottom:867.758765px;}
.y7d{bottom:867.758916px;}
.y31{bottom:867.758930px;}
.y56{bottom:879.013710px;}
.ya2{bottom:879.013744px;}
.y7c{bottom:879.013895px;}
.y30{bottom:879.013910px;}
.yb{bottom:908.276839px;}
.y55{bottom:929.661118px;}
.ya1{bottom:929.661151px;}
.y7b{bottom:929.661303px;}
.y2f{bottom:929.661317px;}
.ya{bottom:937.539786px;}
.y54{bottom:940.916097px;}
.ya0{bottom:940.916131px;}
.y7a{bottom:940.916282px;}
.y2e{bottom:940.916296px;}
.y9{bottom:965.677234px;}
.yc5{bottom:991.563367px;}
.y53{bottom:991.563504px;}
.y9f{bottom:991.563538px;}
.y79{bottom:991.563690px;}
.y2d{bottom:991.563704px;}
.y8{bottom:994.940181px;}
.yc4{bottom:1002.818347px;}
.y52{bottom:1002.818484px;}
.y9e{bottom:1002.818518px;}
.y78{bottom:1002.818669px;}
.y2c{bottom:1002.818683px;}
.y7{bottom:1023.077629px;}
.y6{bottom:1052.340576px;}
.yc3{bottom:1053.465754px;}
.y51{bottom:1053.465891px;}
.y9d{bottom:1053.465925px;}
.y77{bottom:1053.466076px;}
.y2b{bottom:1053.466090px;}
.yc2{bottom:1064.720733px;}
.y50{bottom:1064.720871px;}
.y9c{bottom:1064.720904px;}
.y76{bottom:1064.721056px;}
.y2a{bottom:1064.721070px;}
.y5{bottom:1081.603522px;}
.y4{bottom:1109.740971px;}
.yc1{bottom:1115.368141px;}
.y4f{bottom:1115.368278px;}
.y9b{bottom:1115.368312px;}
.y75{bottom:1115.368463px;}
.y29{bottom:1115.368477px;}
.yc0{bottom:1126.623120px;}
.y4e{bottom:1126.623257px;}
.y9a{bottom:1126.623291px;}
.y74{bottom:1126.623443px;}
.y28{bottom:1126.623457px;}
.y3{bottom:1162.639374px;}
.ybf{bottom:1178.396026px;}
.y4d{bottom:1178.396163px;}
.y99{bottom:1178.396196px;}
.y73{bottom:1178.396348px;}
.y27{bottom:1178.396362px;}
.h4{height:52.583264px;}
.h5{height:54.960315px;}
.h2{height:56.809997px;}
.h6{height:95.478241px;}
.h7{height:99.980233px;}
.ha{height:140.498159px;}
.h8{height:1206.533614px;}
.h3{height:1206.533794px;}
.h9{height:1206.533974px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:847.499977px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:22.499998px;}
.x4{left:32.639440px;}
.x3{left:49.082262px;}
.x6{left:149.691226px;}
.x5{left:630.278847px;}
.x1{left:781.125008px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:36.015934pt;}
.v2{vertical-align:40.017705pt;}
.v3{vertical-align:76.033639pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-12.805665pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:57.196730pt;}
.ws4{word-spacing:149.506144pt;}
.wsc{word-spacing:152.003249pt;}
.wsb{word-spacing:157.573714pt;}
.ws2{word-spacing:173.420647pt;}
.ws7{word-spacing:174.765236pt;}
.ws3{word-spacing:178.703062pt;}
.ws6{word-spacing:195.029908pt;}
.wse{word-spacing:239.337646pt;}
.wsa{word-spacing:249.902379pt;}
.wsd{word-spacing:271.095724pt;}
.wsf{word-spacing:276.410087pt;}
.ws8{word-spacing:284.029558pt;}
.ws9{word-spacing:987.604525pt;}
._d{margin-left:-4.481948pt;}
._2{margin-left:-3.327312pt;}
._1{margin-left:-2.304651pt;}
._0{margin-left:-0.896074pt;}
._3{width:1.472593pt;}
._7{width:70.430514pt;}
._66{width:74.398755pt;}
._6{width:75.628768pt;}
._83{width:89.254936pt;}
._2d{width:90.216282pt;}
._21{width:91.430290pt;}
._46{width:107.054995pt;}
._1f{width:134.680053pt;}
._86{width:138.841238pt;}
._17{width:142.814099pt;}
._18{width:143.743595pt;}
._87{width:148.865538pt;}
._88{width:156.001153pt;}
._4b{width:168.074036pt;}
._74{width:169.354600pt;}
._60{width:178.221215pt;}
._1a{width:180.394199pt;}
._75{width:182.480361pt;}
._27{width:188.658775pt;}
._59{width:190.898856pt;}
._85{width:192.468829pt;}
._36{width:194.261945pt;}
._67{width:198.135013pt;}
._29{width:201.080270pt;}
._55{width:211.357508pt;}
._58{width:214.014006pt;}
._57{width:223.779004pt;}
._43{width:224.835162pt;}
._80{width:235.240075pt;}
._56{width:240.426382pt;}
._26{width:242.155134pt;}
._42{width:243.435700pt;}
._79{width:245.868777pt;}
._3f{width:250.927015pt;}
._9{width:252.143553pt;}
._28{width:254.576629pt;}
._7a{width:258.290272pt;}
._f{width:262.708227pt;}
._5c{width:267.925521pt;}
._38{width:272.440223pt;}
._41{width:274.233326pt;}
._10{width:275.257779pt;}
._3b{width:279.675734pt;}
._a{width:280.700187pt;}
._3d{width:281.724640pt;}
._2e{width:286.654498pt;}
._16{width:288.831785pt;}
._4e{width:292.225286pt;}
._2a{width:293.249739pt;}
._5f{width:296.323099pt;}
._6e{width:297.923807pt;}
._1b{width:299.652572pt;}
._61{width:303.814413pt;}
._b{width:304.741072pt;}
._34{width:310.473359pt;}
._1e{width:311.753926pt;}
._23{width:313.354634pt;}
._14{width:315.467569pt;}
._2c{width:316.556050pt;}
._6b{width:317.580503pt;}
._5d{width:320.525807pt;}
._84{width:322.254571pt;}
._47{width:324.239450pt;}
._19{width:326.414252pt;}
._76{width:327.568600pt;}
._72{width:329.361716pt;}
._63{width:332.178639pt;}
._52{width:335.316350pt;}
._89{width:337.301228pt;}
._81{width:343.799458pt;}
._c{width:344.856571pt;}
._69{width:345.752968pt;}
._5a{width:347.353676pt;}
._7d{width:349.146469pt;}
._1c{width:350.840297pt;}
._82{width:353.052197pt;}
._44{width:357.534180pt;}
._12{width:359.583086pt;}
._31{width:362.336304pt;}
._15{width:365.312284pt;}
._25{width:374.596114pt;}
._65{width:378.310357pt;}
._5e{width:393.483233pt;}
._62{width:402.767386pt;}
._24{width:429.148863pt;}
._4c{width:432.671053pt;}
._39{width:452.517028pt;}
._2f{width:460.715506pt;}
._2b{width:467.053942pt;}
._35{width:482.099918pt;}
._73{width:502.077448pt;}
._49{width:503.486060pt;}
._22{width:528.838840pt;}
._7c{width:535.884692pt;}
._5{width:539.579240pt;}
._37{width:559.701963pt;}
._3c{width:586.015813pt;}
._4{width:597.644749pt;}
._1d{width:598.799385pt;}
._3a{width:620.078896pt;}
._64{width:625.844562pt;}
._5b{width:628.277593pt;}
._7b{width:634.298163pt;}
._8b{width:639.739091pt;}
._13{width:647.998006pt;}
._48{width:659.010867pt;}
._30{width:678.091378pt;}
._11{width:710.743918pt;}
._70{width:726.978734pt;}
._77{width:751.787924pt;}
._68{width:752.940747pt;}
._51{width:771.735383pt;}
._e{width:785.787289pt;}
._8a{width:788.540496pt;}
._78{width:795.263481pt;}
._6c{width:801.473896pt;}
._53{width:815.879669pt;}
._33{width:816.904677pt;}
._54{width:826.122686pt;}
._6f{width:827.853625pt;}
._6a{width:847.062065pt;}
._8{width:848.919209pt;}
._45{width:850.136116pt;}
._50{width:861.018471pt;}
._32{width:862.749051pt;}
._71{width:890.281842pt;}
._40{width:922.167674pt;}
._7e{width:923.960454pt;}
._4d{width:953.733627pt;}
._7f{width:962.249717pt;}
._4a{width:963.914189pt;}
._4f{width:976.207524pt;}
._3e{width:1002.587205pt;}
._20{width:1004.826448pt;}
._6d{width:1009.310215pt;}
.fs1{font-size:64.028327pt;}
.fs0{font-size:69.362471pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:7.424863pt;}
.y72{bottom:30.085331pt;}
.y98{bottom:30.085338pt;}
.y26{bottom:30.085413pt;}
.y2{bottom:30.085492pt;}
.y4c{bottom:30.085495pt;}
.ybe{bottom:30.085651pt;}
.y25{bottom:53.023459pt;}
.y71{bottom:56.024625pt;}
.ybd{bottom:56.024655pt;}
.y97{bottom:56.024789pt;}
.y4b{bottom:56.024802pt;}
.y24{bottom:63.027885pt;}
.y70{bottom:66.029051pt;}
.ybc{bottom:66.029081pt;}
.y96{bottom:66.029216pt;}
.y4a{bottom:66.029228pt;}
.y23{bottom:108.047803pt;}
.y6f{bottom:111.048969pt;}
.ybb{bottom:111.048999pt;}
.y95{bottom:111.049133pt;}
.y49{bottom:111.049146pt;}
.y22{bottom:118.052229pt;}
.y6e{bottom:121.053395pt;}
.yba{bottom:121.053425pt;}
.y94{bottom:121.053559pt;}
.y48{bottom:121.053572pt;}
.y21{bottom:163.072147pt;}
.y6d{bottom:166.073312pt;}
.yb9{bottom:166.073342pt;}
.y93{bottom:166.073477pt;}
.y47{bottom:166.073490pt;}
.y20{bottom:173.076573pt;}
.y6c{bottom:176.077739pt;}
.yb8{bottom:176.077769pt;}
.y92{bottom:176.077903pt;}
.y46{bottom:176.077916pt;}
.y1f{bottom:218.096491pt;}
.y6b{bottom:221.097656pt;}
.yb7{bottom:221.097686pt;}
.y91{bottom:221.097821pt;}
.y45{bottom:221.097833pt;}
.y1e{bottom:228.100917pt;}
.y6a{bottom:231.102082pt;}
.yb6{bottom:231.102112pt;}
.y90{bottom:231.102247pt;}
.y44{bottom:231.102260pt;}
.y1d{bottom:273.120834pt;}
.y69{bottom:276.122000pt;}
.yb5{bottom:276.122030pt;}
.y8f{bottom:276.122165pt;}
.y43{bottom:276.122177pt;}
.y1c{bottom:283.125261pt;}
.y68{bottom:286.126426pt;}
.yb4{bottom:286.126456pt;}
.y8e{bottom:286.126591pt;}
.y42{bottom:286.126603pt;}
.y1b{bottom:328.145178pt;}
.y67{bottom:331.146344pt;}
.yb3{bottom:331.146374pt;}
.y8d{bottom:331.146508pt;}
.y41{bottom:331.146521pt;}
.y1a{bottom:338.149604pt;}
.y66{bottom:341.150770pt;}
.yb2{bottom:341.150800pt;}
.y8c{bottom:341.150935pt;}
.y40{bottom:341.150947pt;}
.y19{bottom:383.169522pt;}
.y65{bottom:386.170688pt;}
.yb1{bottom:386.170718pt;}
.y8b{bottom:386.170852pt;}
.y3f{bottom:386.170865pt;}
.y18{bottom:393.173948pt;}
.y64{bottom:396.175114pt;}
.yb0{bottom:396.175144pt;}
.y8a{bottom:396.175278pt;}
.y3e{bottom:396.175291pt;}
.y17{bottom:438.193866pt;}
.y63{bottom:441.195031pt;}
.yaf{bottom:441.195061pt;}
.y89{bottom:441.195196pt;}
.y3d{bottom:441.195209pt;}
.y16{bottom:448.198292pt;}
.y62{bottom:451.199458pt;}
.yae{bottom:451.199488pt;}
.y88{bottom:451.199622pt;}
.y3c{bottom:451.199635pt;}
.y15{bottom:493.218210pt;}
.y61{bottom:496.219375pt;}
.yad{bottom:496.219405pt;}
.y87{bottom:496.219540pt;}
.y3b{bottom:496.219552pt;}
.y14{bottom:503.222636pt;}
.y60{bottom:506.223801pt;}
.yac{bottom:506.223831pt;}
.y86{bottom:506.223966pt;}
.y3a{bottom:506.223978pt;}
.y13{bottom:548.242553pt;}
.y5f{bottom:551.243719pt;}
.yab{bottom:551.243749pt;}
.y85{bottom:551.243884pt;}
.y39{bottom:551.243896pt;}
.y5e{bottom:561.248145pt;}
.yaa{bottom:561.248175pt;}
.y84{bottom:561.248310pt;}
.y38{bottom:561.248322pt;}
.y12{bottom:596.263799pt;}
.y5d{bottom:606.268063pt;}
.ya9{bottom:606.268093pt;}
.y83{bottom:606.268227pt;}
.y37{bottom:606.268240pt;}
.y5c{bottom:616.272489pt;}
.ya8{bottom:616.272519pt;}
.y82{bottom:616.272653pt;}
.y36{bottom:616.272666pt;}
.y11{bottom:621.274864pt;}
.y10{bottom:647.286372pt;}
.y5b{bottom:661.292407pt;}
.ya7{bottom:661.292437pt;}
.y81{bottom:661.292571pt;}
.y35{bottom:661.292584pt;}
.y5a{bottom:671.296833pt;}
.ya6{bottom:671.296863pt;}
.y80{bottom:671.296997pt;}
.y34{bottom:671.297010pt;}
.yf{bottom:689.304962pt;}
.ye{bottom:714.316027pt;}
.y59{bottom:716.316750pt;}
.ya5{bottom:716.316780pt;}
.y7f{bottom:716.316915pt;}
.y33{bottom:716.316927pt;}
.y58{bottom:726.321176pt;}
.ya4{bottom:726.321206pt;}
.y7e{bottom:726.321341pt;}
.y32{bottom:726.321354pt;}
.yd{bottom:740.327535pt;}
.yc{bottom:765.338601pt;}
.y57{bottom:771.341094pt;}
.ya3{bottom:771.341124pt;}
.y7d{bottom:771.341259pt;}
.y31{bottom:771.341271pt;}
.y56{bottom:781.345520pt;}
.ya2{bottom:781.345550pt;}
.y7c{bottom:781.345685pt;}
.y30{bottom:781.345697pt;}
.yb{bottom:807.357191pt;}
.y55{bottom:826.365438pt;}
.ya1{bottom:826.365468pt;}
.y7b{bottom:826.365602pt;}
.y2f{bottom:826.365615pt;}
.ya{bottom:833.368698pt;}
.y54{bottom:836.369864pt;}
.ya0{bottom:836.369894pt;}
.y7a{bottom:836.370029pt;}
.y2e{bottom:836.370041pt;}
.y9{bottom:858.379764pt;}
.yc5{bottom:881.389660pt;}
.y53{bottom:881.389782pt;}
.y9f{bottom:881.389812pt;}
.y79{bottom:881.389946pt;}
.y2d{bottom:881.389959pt;}
.y8{bottom:884.391272pt;}
.yc4{bottom:891.394086pt;}
.y52{bottom:891.394208pt;}
.y9e{bottom:891.394238pt;}
.y78{bottom:891.394372pt;}
.y2c{bottom:891.394385pt;}
.y7{bottom:909.402337pt;}
.y6{bottom:935.413845pt;}
.yc3{bottom:936.414004pt;}
.y51{bottom:936.414125pt;}
.y9d{bottom:936.414155pt;}
.y77{bottom:936.414290pt;}
.y2b{bottom:936.414303pt;}
.yc2{bottom:946.418430pt;}
.y50{bottom:946.418552pt;}
.y9c{bottom:946.418582pt;}
.y76{bottom:946.418716pt;}
.y2a{bottom:946.418729pt;}
.y5{bottom:961.425353pt;}
.y4{bottom:986.436418pt;}
.yc1{bottom:991.438347pt;}
.y4f{bottom:991.438469pt;}
.y9b{bottom:991.438499pt;}
.y75{bottom:991.438634pt;}
.y29{bottom:991.438646pt;}
.yc0{bottom:1001.442774pt;}
.y4e{bottom:1001.442895pt;}
.y9a{bottom:1001.442925pt;}
.y74{bottom:1001.443060pt;}
.y28{bottom:1001.443073pt;}
.y3{bottom:1033.457221pt;}
.ybf{bottom:1047.463134pt;}
.y4d{bottom:1047.463256pt;}
.y99{bottom:1047.463286pt;}
.y73{bottom:1047.463420pt;}
.y27{bottom:1047.463433pt;}
.h4{height:46.740679pt;}
.h5{height:48.853614pt;}
.h2{height:50.497775pt;}
.h6{height:84.869548pt;}
.h7{height:88.871318pt;}
.ha{height:124.887252pt;}
.h8{height:1072.474323pt;}
.h3{height:1072.474483pt;}
.h9{height:1072.474643pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:753.333313pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:19.999998pt;}
.x4{left:29.012836pt;}
.x3{left:43.628677pt;}
.x6{left:133.058868pt;}
.x5{left:560.247864pt;}
.x1{left:694.333341pt;}
}




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