
    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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_645c6306ece3c17dc3a259d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_2ad47067b11e4c4260aabb99.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_72eacf9489a2c0a99a63b065.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_c1a46e8881d0b94276680b49.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_21185760e94098ab19f6bad5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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:ff7;src:url('chunks/assets/font_30d00ca438371b4ca3cefac4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-16.608551px;}
._e{margin-left:-8.955656px;}
._f{margin-left:-6.609388px;}
._15{margin-left:-5.423198px;}
._0{margin-left:-3.972657px;}
._2{margin-left:-2.671873px;}
._1{margin-left:-1.300781px;}
._3{width:4.405751px;}
._7{width:5.437818px;}
._6{width:8.357006px;}
._5{width:9.511807px;}
._4{width:13.406416px;}
._11{width:14.435821px;}
._c{width:17.816406px;}
._b{width:22.500000px;}
._9{width:26.849158px;}
._a{width:27.894833px;}
._8{width:31.455231px;}
._10{width:36.000000px;}
._14{width:40.500005px;}
._13{width:45.000003px;}
._12{width:49.500002px;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y6f{bottom:3.496581px;}
.y2b{bottom:3.496583px;}
.yca{bottom:90.829828px;}
.y8f{bottom:106.131598px;}
.y6d{bottom:120.528073px;}
.yc9{bottom:121.877191px;}
.y4c{bottom:131.850403px;}
.y8e{bottom:137.178961px;}
.yaa{bottom:150.226312px;}
.y6c{bottom:151.575436px;}
.yc8{bottom:152.924554px;}
.y4b{bottom:162.897775px;}
.y8d{bottom:168.226324px;}
.y29{bottom:169.187813px;}
.y6b{bottom:182.622799px;}
.yc7{bottom:183.971918px;}
.y28{bottom:189.886043px;}
.y4a{bottom:193.945129px;}
.ya9{bottom:199.273684px;}
.y8c{bottom:199.273688px;}
.y27{bottom:210.584288px;}
.y6a{bottom:213.670163px;}
.yc6{bottom:215.019283px;}
.y49{bottom:224.992313px;}
.ya8{bottom:230.321048px;}
.y8b{bottom:230.321049px;}
.y26{bottom:231.282533px;}
.y69{bottom:244.717533px;}
.yd5{bottom:244.717534px;}
.yc5{bottom:246.066646px;}
.y25{bottom:251.980778px;}
.y48{bottom:256.039666px;}
.yf5{bottom:256.335931px;}
.ya7{bottom:261.368406px;}
.y8a{bottom:261.368413px;}
.y24{bottom:272.679022px;}
.y68{bottom:275.764896px;}
.yd4{bottom:275.764898px;}
.yf4{bottom:277.113278px;}
.yc4{bottom:277.114009px;}
.y47{bottom:287.087029px;}
.ya6{bottom:292.415769px;}
.y89{bottom:292.415776px;}
.y23{bottom:293.377252px;}
.yf3{bottom:297.811523px;}
.yd3{bottom:306.812251px;}
.y67{bottom:306.812259px;}
.yc3{bottom:308.161373px;}
.y46{bottom:318.134393px;}
.yf2{bottom:318.509768px;}
.y22{bottom:322.426579px;}
.ya5{bottom:323.463133px;}
.y88{bottom:323.463139px;}
.yd2{bottom:337.859614px;}
.y66{bottom:337.859623px;}
.yf1{bottom:339.208006px;}
.yc2{bottom:339.208743px;}
.y21{bottom:348.675117px;}
.y45{bottom:349.181766px;}
.ya4{bottom:354.510496px;}
.y87{bottom:354.510503px;}
.yf0{bottom:359.906248px;}
.y20{bottom:365.923652px;}
.yd1{bottom:368.906978px;}
.y65{bottom:368.906986px;}
.yc1{bottom:370.256106px;}
.y44{bottom:380.229129px;}
.yef{bottom:380.604490px;}
.y1f{bottom:383.172187px;}
.ya3{bottom:385.557859px;}
.y86{bottom:385.557864px;}
.yd0{bottom:398.605223px;}
.y64{bottom:399.954349px;}
.y1e{bottom:400.420723px;}
.yee{bottom:401.302733px;}
.yc0{bottom:401.303469px;}
.y43{bottom:411.276493px;}
.ya2{bottom:416.605223px;}
.y85{bottom:416.605228px;}
.y1d{bottom:417.669249px;}
.yed{bottom:422.000978px;}
.y63{bottom:431.001713px;}
.ybf{bottom:432.350833px;}
.y1c{bottom:434.917785px;}
.y42{bottom:442.323856px;}
.yec{bottom:442.699225px;}
.ya1{bottom:447.652584px;}
.y84{bottom:447.652591px;}
.ycf{bottom:447.652593px;}
.y1b{bottom:452.166324px;}
.y62{bottom:460.699957px;}
.yeb{bottom:463.397468px;}
.ybe{bottom:463.398196px;}
.y1a{bottom:469.414859px;}
.y41{bottom:473.371219px;}
.ya0{bottom:478.699948px;}
.y83{bottom:478.699954px;}
.yce{bottom:478.699956px;}
.yea{bottom:484.095698px;}
.y19{bottom:486.663439px;}
.ybd{bottom:494.445559px;}
.y40{bottom:504.418582px;}
.ye9{bottom:504.793945px;}
.y9f{bottom:509.747311px;}
.y82{bottom:509.747318px;}
.y61{bottom:509.747319px;}
.y18{bottom:521.911968px;}
.ye8{bottom:525.492188px;}
.ybc{bottom:525.492923px;}
.y3f{bottom:533.792360px;}
.y81{bottom:540.794671px;}
.y9e{bottom:540.794674px;}
.y60{bottom:540.794683px;}
.ye7{bottom:546.190432px;}
.y17{bottom:548.160499px;}
.y3e{bottom:552.765749px;}
.ybb{bottom:554.866692px;}
.y16{bottom:565.409051px;}
.ye6{bottom:566.888671px;}
.y3d{bottom:571.739138px;}
.y80{bottom:571.842034px;}
.y9d{bottom:571.842038px;}
.y5f{bottom:571.842046px;}
.yba{bottom:573.840080px;}
.y15{bottom:582.657586px;}
.ye5{bottom:587.586913px;}
.y3c{bottom:590.712529px;}
.yb9{bottom:592.813469px;}
.y14{bottom:599.906121px;}
.y7f{bottom:602.889397px;}
.y9c{bottom:602.889406px;}
.y5e{bottom:602.889409px;}
.ye4{bottom:608.285155px;}
.y3b{bottom:609.685917px;}
.yb8{bottom:611.786858px;}
.y13{bottom:617.154657px;}
.ye3{bottom:628.983398px;}
.yb7{bottom:630.760249px;}
.y9b{bottom:633.936769px;}
.y5d{bottom:633.936772px;}
.y12{bottom:634.403183px;}
.y3a{bottom:648.332889px;}
.ye2{bottom:649.681642px;}
.yb6{bottom:649.733637px;}
.y11{bottom:651.651719px;}
.y7e{bottom:664.984126px;}
.y9a{bottom:664.984132px;}
.y5c{bottom:664.984135px;}
.y10{bottom:668.900258px;}
.ye1{bottom:670.379887px;}
.y39{bottom:679.380253px;}
.yf{bottom:686.148838px;}
.yb5{bottom:688.380613px;}
.ye0{bottom:691.078118px;}
.y7d{bottom:696.031489px;}
.y99{bottom:696.031494px;}
.y5b{bottom:696.031498px;}
.ye{bottom:703.397373px;}
.y38{bottom:710.427616px;}
.ydf{bottom:711.776363px;}
.yb4{bottom:719.427976px;}
.y7c{bottom:727.078852px;}
.y98{bottom:727.078858px;}
.y5a{bottom:727.078870px;}
.yde{bottom:732.474610px;}
.yd{bottom:739.294838px;}
.y37{bottom:741.474979px;}
.yb3{bottom:750.475339px;}
.ydd{bottom:753.172852px;}
.y59{bottom:758.126044px;}
.y7b{bottom:758.126214px;}
.y97{bottom:758.126221px;}
.ycd{bottom:758.126223px;}
.y36{bottom:772.522343px;}
.ydc{bottom:773.871098px;}
.yc{bottom:777.993067px;}
.yb2{bottom:781.522703px;}
.y58{bottom:789.173408px;}
.y7a{bottom:789.173578px;}
.y96{bottom:789.173584px;}
.ycc{bottom:789.173586px;}
.ydb{bottom:803.569342px;}
.y35{bottom:803.569705px;}
.yb1{bottom:812.570063px;}
.yb{bottom:816.691313px;}
.y57{bottom:820.220758px;}
.y79{bottom:820.220941px;}
.y95{bottom:820.220948px;}
.ycb{bottom:820.220949px;}
.yda{bottom:824.267578px;}
.y34{bottom:834.617061px;}
.yb0{bottom:841.943841px;}
.yd9{bottom:844.965820px;}
.y56{bottom:851.268121px;}
.y78{bottom:851.268304px;}
.y94{bottom:851.268313px;}
.ya{bottom:855.389558px;}
.yaf{bottom:860.917230px;}
.yd8{bottom:865.664062px;}
.y33{bottom:865.664428px;}
.yae{bottom:879.890619px;}
.y55{bottom:882.315484px;}
.y77{bottom:882.315668px;}
.y93{bottom:882.315676px;}
.y9{bottom:894.087802px;}
.yd7{bottom:895.362308px;}
.y32{bottom:896.711791px;}
.yad{bottom:898.864010px;}
.y54{bottom:913.362847px;}
.y76{bottom:913.363036px;}
.y92{bottom:913.363039px;}
.yac{bottom:917.837398px;}
.y31{bottom:927.759154px;}
.y8{bottom:932.786047px;}
.yd6{bottom:944.409662px;}
.y53{bottom:944.410216px;}
.y75{bottom:944.410400px;}
.y91{bottom:944.410402px;}
.yab{bottom:945.810793px;}
.y30{bottom:958.806518px;}
.y7{bottom:971.484277px;}
.y52{bottom:975.457579px;}
.y74{bottom:975.457763px;}
.y2f{bottom:989.853881px;}
.y51{bottom:1006.504943px;}
.y73{bottom:1006.505126px;}
.y90{bottom:1006.505128px;}
.y6{bottom:1010.182525px;}
.y2e{bottom:1020.901244px;}
.y50{bottom:1037.552306px;}
.y72{bottom:1037.552490px;}
.y5{bottom:1039.880768px;}
.y2d{bottom:1051.948608px;}
.y4{bottom:1063.823628px;}
.y4f{bottom:1068.599669px;}
.y71{bottom:1068.599854px;}
.y2c{bottom:1081.646850px;}
.y4e{bottom:1099.647033px;}
.y70{bottom:1099.647217px;}
.y3{bottom:1100.974812px;}
.y2a{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y4d{bottom:1116.451720px;}
.y6e{bottom:1116.451905px;}
.h2{height:43.989259px;}
.hd{height:47.988281px;}
.h6{height:48.796875px;}
.h7{height:49.992188px;}
.h8{height:53.789061px;}
.ha{height:59.167970px;}
.h5{height:63.949219px;}
.h4{height:64.546875px;}
.h3{height:118.335940px;}
.hc{height:146.548095px;}
.hb{height:146.548280px;}
.h1{height:146.548382px;}
.h9{height:146.548462px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:127.575005px;}
.x3{left:147.028279px;}
.x5{left:177.407676px;}
.xc{left:180.450005px;}
.x6{left:204.913046px;}
.xa{left:213.075005px;}
.x2{left:282.239210px;}
.x8{left:287.629995px;}
.xb{left:297.450005px;}
.x4{left:467.719205px;}
.x9{left:679.463960px;}
.x7{left:807.863416px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-14.763157pt;}
._e{margin-left:-7.960583pt;}
._f{margin-left:-5.875011pt;}
._15{margin-left:-4.820621pt;}
._0{margin-left:-3.531251pt;}
._2{margin-left:-2.374998pt;}
._1{margin-left:-1.156250pt;}
._3{width:3.916223pt;}
._7{width:4.833616pt;}
._6{width:7.428449pt;}
._5{width:8.454940pt;}
._4{width:11.916815pt;}
._11{width:12.831841pt;}
._c{width:15.836805pt;}
._b{width:20.000000pt;}
._9{width:23.865918pt;}
._a{width:24.795407pt;}
._8{width:27.960206pt;}
._10{width:32.000000pt;}
._14{width:36.000004pt;}
._13{width:40.000003pt;}
._12{width:44.000002pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y6f{bottom:3.108072pt;}
.y2b{bottom:3.108073pt;}
.yca{bottom:80.737625pt;}
.y8f{bottom:94.339198pt;}
.y6d{bottom:107.136065pt;}
.yc9{bottom:108.335281pt;}
.y4c{bottom:117.200358pt;}
.y8e{bottom:121.936854pt;}
.yaa{bottom:133.534500pt;}
.y6c{bottom:134.733721pt;}
.yc8{bottom:135.932937pt;}
.y4b{bottom:144.798022pt;}
.y8d{bottom:149.534510pt;}
.y29{bottom:150.389167pt;}
.y6b{bottom:162.331377pt;}
.yc7{bottom:163.530593pt;}
.y28{bottom:168.787593pt;}
.y4a{bottom:172.395670pt;}
.ya9{bottom:177.132164pt;}
.y8c{bottom:177.132167pt;}
.y27{bottom:187.186033pt;}
.y6a{bottom:189.929033pt;}
.yc6{bottom:191.128252pt;}
.y49{bottom:199.993167pt;}
.ya8{bottom:204.729820pt;}
.y8b{bottom:204.729821pt;}
.y26{bottom:205.584473pt;}
.y69{bottom:217.526696pt;}
.yd5{bottom:217.526697pt;}
.yc5{bottom:218.725908pt;}
.y25{bottom:223.982913pt;}
.y48{bottom:227.590814pt;}
.yf5{bottom:227.854161pt;}
.ya7{bottom:232.327472pt;}
.y8a{bottom:232.327478pt;}
.y24{bottom:242.381353pt;}
.y68{bottom:245.124352pt;}
.yd4{bottom:245.124353pt;}
.yf4{bottom:246.322913pt;}
.yc4{bottom:246.323564pt;}
.y47{bottom:255.188470pt;}
.ya6{bottom:259.925128pt;}
.y89{bottom:259.925134pt;}
.y23{bottom:260.779780pt;}
.yf3{bottom:264.721353pt;}
.yd3{bottom:272.722001pt;}
.y67{bottom:272.722008pt;}
.yc3{bottom:273.921220pt;}
.y46{bottom:282.786127pt;}
.yf2{bottom:283.119793pt;}
.y22{bottom:286.601404pt;}
.ya5{bottom:287.522785pt;}
.y88{bottom:287.522790pt;}
.yd2{bottom:300.319657pt;}
.y66{bottom:300.319665pt;}
.yf1{bottom:301.518228pt;}
.yc2{bottom:301.518883pt;}
.y21{bottom:309.933438pt;}
.y45{bottom:310.383792pt;}
.ya4{bottom:315.120441pt;}
.y87{bottom:315.120447pt;}
.yf0{bottom:319.916665pt;}
.y20{bottom:325.265469pt;}
.yd1{bottom:327.917313pt;}
.y65{bottom:327.917321pt;}
.yc1{bottom:329.116539pt;}
.y44{bottom:337.981448pt;}
.yef{bottom:338.315103pt;}
.y1f{bottom:340.597500pt;}
.ya3{bottom:342.718097pt;}
.y86{bottom:342.718101pt;}
.yd0{bottom:354.315753pt;}
.y64{bottom:355.514977pt;}
.y1e{bottom:355.929532pt;}
.yee{bottom:356.713540pt;}
.yc0{bottom:356.714195pt;}
.y43{bottom:365.579105pt;}
.ya2{bottom:370.315753pt;}
.y85{bottom:370.315758pt;}
.y1d{bottom:371.261555pt;}
.yed{bottom:375.111980pt;}
.y63{bottom:383.112633pt;}
.ybf{bottom:384.311852pt;}
.y1c{bottom:386.593587pt;}
.y42{bottom:393.176761pt;}
.yec{bottom:393.510423pt;}
.ya1{bottom:397.913408pt;}
.y84{bottom:397.913414pt;}
.ycf{bottom:397.913416pt;}
.y1b{bottom:401.925622pt;}
.y62{bottom:409.511073pt;}
.yeb{bottom:411.908860pt;}
.ybe{bottom:411.909508pt;}
.y1a{bottom:417.257653pt;}
.y41{bottom:420.774417pt;}
.ya0{bottom:425.511065pt;}
.y83{bottom:425.511070pt;}
.yce{bottom:425.511072pt;}
.yea{bottom:430.307287pt;}
.y19{bottom:432.589724pt;}
.ybd{bottom:439.507164pt;}
.y40{bottom:448.372073pt;}
.ye9{bottom:448.705729pt;}
.y9f{bottom:453.108721pt;}
.y82{bottom:453.108727pt;}
.y61{bottom:453.108728pt;}
.y18{bottom:463.921750pt;}
.ye8{bottom:467.104167pt;}
.ybc{bottom:467.104820pt;}
.y3f{bottom:474.482098pt;}
.y81{bottom:480.706374pt;}
.y9e{bottom:480.706377pt;}
.y60{bottom:480.706385pt;}
.ye7{bottom:485.502607pt;}
.y17{bottom:487.253776pt;}
.y3e{bottom:491.347333pt;}
.ybb{bottom:493.214837pt;}
.y16{bottom:502.585823pt;}
.ye6{bottom:503.901041pt;}
.y3d{bottom:508.212567pt;}
.y80{bottom:508.304030pt;}
.y9d{bottom:508.304033pt;}
.y5f{bottom:508.304041pt;}
.yba{bottom:510.080071pt;}
.y15{bottom:517.917854pt;}
.ye5{bottom:522.299478pt;}
.y3c{bottom:525.077804pt;}
.yb9{bottom:526.945306pt;}
.y14{bottom:533.249885pt;}
.y7f{bottom:535.901687pt;}
.y9c{bottom:535.901694pt;}
.y5e{bottom:535.901697pt;}
.ye4{bottom:540.697916pt;}
.y3b{bottom:541.943038pt;}
.yb8{bottom:543.810540pt;}
.y13{bottom:548.581917pt;}
.ye3{bottom:559.096353pt;}
.yb7{bottom:560.675777pt;}
.y9b{bottom:563.499350pt;}
.y5d{bottom:563.499353pt;}
.y12{bottom:563.913940pt;}
.y3a{bottom:576.295901pt;}
.ye2{bottom:577.494793pt;}
.yb6{bottom:577.541011pt;}
.y11{bottom:579.245972pt;}
.y7e{bottom:591.097001pt;}
.y9a{bottom:591.097007pt;}
.y5c{bottom:591.097009pt;}
.y10{bottom:594.578007pt;}
.ye1{bottom:595.893233pt;}
.y39{bottom:603.893558pt;}
.yf{bottom:609.910078pt;}
.yb5{bottom:611.893878pt;}
.ye0{bottom:614.291660pt;}
.y7d{bottom:618.694657pt;}
.y99{bottom:618.694661pt;}
.y5b{bottom:618.694665pt;}
.ye{bottom:625.242110pt;}
.y38{bottom:631.491214pt;}
.ydf{bottom:632.690100pt;}
.yb4{bottom:639.491534pt;}
.y7c{bottom:646.292313pt;}
.y98{bottom:646.292318pt;}
.y5a{bottom:646.292329pt;}
.yde{bottom:651.088542pt;}
.yd{bottom:657.150967pt;}
.y37{bottom:659.088870pt;}
.yb3{bottom:667.089190pt;}
.ydd{bottom:669.486980pt;}
.y59{bottom:673.889817pt;}
.y7b{bottom:673.889968pt;}
.y97{bottom:673.889974pt;}
.ycd{bottom:673.889976pt;}
.y36{bottom:686.686527pt;}
.ydc{bottom:687.885420pt;}
.yc{bottom:691.549393pt;}
.yb2{bottom:694.686847pt;}
.y58{bottom:701.487473pt;}
.y7a{bottom:701.487625pt;}
.y96{bottom:701.487630pt;}
.ycc{bottom:701.487632pt;}
.ydb{bottom:714.283860pt;}
.y35{bottom:714.284182pt;}
.yb1{bottom:722.284500pt;}
.yb{bottom:725.947833pt;}
.y57{bottom:729.085118pt;}
.y79{bottom:729.085281pt;}
.y95{bottom:729.085287pt;}
.ycb{bottom:729.085288pt;}
.yda{bottom:732.682291pt;}
.y34{bottom:741.881832pt;}
.yb0{bottom:748.394525pt;}
.yd9{bottom:751.080729pt;}
.y56{bottom:756.682774pt;}
.y78{bottom:756.682937pt;}
.y94{bottom:756.682945pt;}
.ya{bottom:760.346273pt;}
.yaf{bottom:765.259760pt;}
.yd8{bottom:769.479167pt;}
.y33{bottom:769.479492pt;}
.yae{bottom:782.124994pt;}
.y55{bottom:784.280430pt;}
.y77{bottom:784.280593pt;}
.y93{bottom:784.280601pt;}
.y9{bottom:794.744713pt;}
.yd7{bottom:795.877607pt;}
.y32{bottom:797.077148pt;}
.yad{bottom:798.990231pt;}
.y54{bottom:811.878087pt;}
.y76{bottom:811.878255pt;}
.y92{bottom:811.878257pt;}
.yac{bottom:815.855465pt;}
.y31{bottom:824.674804pt;}
.y8{bottom:829.143153pt;}
.yd6{bottom:839.475255pt;}
.y53{bottom:839.475748pt;}
.y75{bottom:839.475911pt;}
.y91{bottom:839.475913pt;}
.yab{bottom:840.720705pt;}
.y30{bottom:852.272461pt;}
.y7{bottom:863.541580pt;}
.y52{bottom:867.073404pt;}
.y74{bottom:867.073567pt;}
.y2f{bottom:879.870117pt;}
.y51{bottom:894.671061pt;}
.y73{bottom:894.671223pt;}
.y90{bottom:894.671225pt;}
.y6{bottom:897.940023pt;}
.y2e{bottom:907.467773pt;}
.y50{bottom:922.268717pt;}
.y72{bottom:922.268880pt;}
.y5{bottom:924.338460pt;}
.y2d{bottom:935.065429pt;}
.y4{bottom:945.621003pt;}
.y4f{bottom:949.866373pt;}
.y71{bottom:949.866537pt;}
.y2c{bottom:961.463867pt;}
.y4e{bottom:977.464029pt;}
.y70{bottom:977.464193pt;}
.y3{bottom:978.644277pt;}
.y2a{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y4d{bottom:992.401529pt;}
.y6e{bottom:992.401693pt;}
.h2{height:39.101563pt;}
.hd{height:42.656250pt;}
.h6{height:43.375000pt;}
.h7{height:44.437500pt;}
.h8{height:47.812499pt;}
.ha{height:52.593751pt;}
.h5{height:56.843750pt;}
.h4{height:57.375000pt;}
.h3{height:105.187502pt;}
.hc{height:130.264973pt;}
.hb{height:130.265137pt;}
.h1{height:130.265228pt;}
.h9{height:130.265300pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:113.400004pt;}
.x3{left:130.691804pt;}
.x5{left:157.695712pt;}
.xc{left:160.400004pt;}
.x6{left:182.144930pt;}
.xa{left:189.400004pt;}
.x2{left:250.879298pt;}
.x8{left:255.671107pt;}
.xb{left:264.400004pt;}
.x4{left:415.750404pt;}
.x9{left:603.967964pt;}
.x7{left:718.100814pt;}
}




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