
    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_048f45fed1661b8b055fb5a4.woff')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_e635a8c43d346e9e730e730c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2aa152852a0464a9c3f29e69.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ccb6b411250946d87c92624.woff')format("woff");}.ff4{font-family:ff4;line-height:0.908203;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:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws1{word-spacing:-8.138672px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-10.861974px;}
._2{margin-left:-7.228010px;}
._d{margin-left:-5.027341px;}
._0{margin-left:-3.112027px;}
._3{margin-left:-1.548613px;}
._5{width:4.499999px;}
._c{width:9.000022px;}
._6{width:13.499997px;}
._4{width:22.500002px;}
._8{width:26.999992px;}
._7{width:31.500002px;}
._9{width:35.999999px;}
._e{width:40.500032px;}
._b{width:44.999989px;}
._a{width:49.500000px;}
._f{width:198.000000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y5f{bottom:15.422059px;}
.y2d{bottom:15.422242px;}
.ybd{bottom:15.422608px;}
.ye2{bottom:37.157959px;}
.y5e{bottom:37.158326px;}
.y2c{bottom:37.158418px;}
.y2a{bottom:70.444613px;}
.y29{bottom:109.684936px;}
.ye1{bottom:112.425293px;}
.ybb{bottom:114.063716px;}
.y5c{bottom:117.340942px;}
.y8e{bottom:121.222049px;}
.yfe{bottom:125.534185px;}
.y28{bottom:133.481323px;}
.ye0{bottom:134.761958px;}
.yba{bottom:136.400384px;}
.y5b{bottom:139.677982px;}
.y8d{bottom:143.558722px;}
.yfd{bottom:146.232428px;}
.ydf{bottom:157.098637px;}
.yb9{bottom:158.737057px;}
.y5a{bottom:162.014648px;}
.y8c{bottom:165.895762px;}
.yfc{bottom:166.930657px;}
.yde{bottom:179.435302px;}
.yb8{bottom:181.074097px;}
.y27{bottom:182.654107px;}
.y59{bottom:184.351688px;}
.yfb{bottom:187.628911px;}
.y8b{bottom:188.232427px;}
.ydd{bottom:201.771967px;}
.yb7{bottom:201.772342px;}
.y26{bottom:204.990959px;}
.y58{bottom:206.688353px;}
.yfa{bottom:208.327153px;}
.y8a{bottom:210.569459px;}
.yb6{bottom:224.109367px;}
.y25{bottom:227.327812px;}
.y57{bottom:229.025212px;}
.yf9{bottom:229.025395px;}
.y89{bottom:232.906133px;}
.yb5{bottom:246.446039px;}
.ydc{bottom:246.446048px;}
.y24{bottom:248.026058px;}
.yf8{bottom:249.723637px;}
.y56{bottom:251.362057px;}
.y88{bottom:253.604378px;}
.y23{bottom:268.724303px;}
.yb4{bottom:268.782712px;}
.yf7{bottom:270.421867px;}
.y55{bottom:273.698918px;}
.y87{bottom:275.941403px;}
.y22{bottom:291.061163px;}
.yb3{bottom:291.119751px;}
.ydb{bottom:291.119753px;}
.yf6{bottom:291.120113px;}
.y54{bottom:296.035762px;}
.y86{bottom:298.278072px;}
.yb2{bottom:313.456792px;}
.y53{bottom:318.372623px;}
.y85{bottom:320.615106px;}
.y21{bottom:329.759393px;}
.yf5{bottom:335.793452px;}
.yb1{bottom:335.793457px;}
.y52{bottom:340.709466px;}
.y84{bottom:342.951769px;}
.yf4{bottom:358.130117px;}
.yda{bottom:358.130122px;}
.yb0{bottom:358.130129px;}
.y51{bottom:363.046318px;}
.y83{bottom:365.288812px;}
.y20{bottom:368.457625px;}
.yf3{bottom:380.466798px;}
.yaf{bottom:380.467163px;}
.y50{bottom:385.383172px;}
.y82{bottom:387.625484px;}
.y1f{bottom:389.155870px;}
.yae{bottom:402.804200px;}
.yf2{bottom:402.804201px;}
.yd9{bottom:402.804202px;}
.y4f{bottom:407.720024px;}
.y1e{bottom:409.854115px;}
.y81{bottom:409.962517px;}
.yf1{bottom:425.140864px;}
.yd8{bottom:425.140868px;}
.yad{bottom:425.140872px;}
.y4e{bottom:430.056878px;}
.y1d{bottom:430.552360px;}
.y80{bottom:432.299197px;}
.yd7{bottom:447.477533px;}
.yac{bottom:447.477537px;}
.yf0{bottom:447.477541px;}
.y1c{bottom:451.250594px;}
.y4d{bottom:452.393736px;}
.y7f{bottom:454.636229px;}
.yd6{bottom:469.814573px;}
.yef{bottom:469.814939px;}
.yab{bottom:469.814947px;}
.y1b{bottom:471.948839px;}
.y4c{bottom:474.730588px;}
.y7e{bottom:476.972903px;}
.yaa{bottom:492.151612px;}
.y1a{bottom:492.647050px;}
.y4b{bottom:497.067442px;}
.y7d{bottom:499.309942px;}
.y19{bottom:513.345284px;}
.yee{bottom:514.488272px;}
.yd5{bottom:514.488277px;}
.ya9{bottom:514.488644px;}
.y4a{bottom:519.404294px;}
.y7c{bottom:521.646607px;}
.y18{bottom:534.043529px;}
.yed{bottom:536.824937px;}
.yd4{bottom:536.824958px;}
.ya8{bottom:536.825318px;}
.y49{bottom:541.741148px;}
.y7b{bottom:543.983639px;}
.y17{bottom:554.741774px;}
.yec{bottom:559.161618px;}
.yd3{bottom:559.161983px;}
.ya7{bottom:559.162355px;}
.y48{bottom:564.078006px;}
.y7a{bottom:566.320312px;}
.y16{bottom:575.440019px;}
.ya6{bottom:581.499020px;}
.yeb{bottom:581.499021px;}
.yd2{bottom:581.499022px;}
.y47{bottom:586.414858px;}
.y79{bottom:588.657351px;}
.y15{bottom:596.138253px;}
.yea{bottom:603.835684px;}
.yd1{bottom:603.835688px;}
.ya5{bottom:603.836052px;}
.y46{bottom:608.751712px;}
.y78{bottom:610.994014px;}
.y14{bottom:616.836498px;}
.ye9{bottom:626.172361px;}
.yd0{bottom:626.172367px;}
.ya4{bottom:626.172726px;}
.y45{bottom:631.088564px;}
.y77{bottom:633.331057px;}
.y13{bottom:637.534743px;}
.ycf{bottom:648.509392px;}
.ye8{bottom:648.509759px;}
.ya3{bottom:648.509767px;}
.y44{bottom:653.425417px;}
.y76{bottom:655.667729px;}
.y12{bottom:658.232984px;}
.ya2{bottom:670.846432px;}
.y43{bottom:675.762267px;}
.y75{bottom:678.004763px;}
.y11{bottom:678.931227px;}
.yce{bottom:693.183112px;}
.ya1{bottom:693.183464px;}
.y42{bottom:698.099121px;}
.y10{bottom:699.629469px;}
.y74{bottom:700.341428px;}
.ycd{bottom:715.519778px;}
.ya0{bottom:715.520138px;}
.yf{bottom:720.327712px;}
.y41{bottom:720.435973px;}
.y73{bottom:721.039672px;}
.ye7{bottom:737.856442px;}
.ycc{bottom:737.856818px;}
.y9f{bottom:737.857177px;}
.ye{bottom:741.025953px;}
.y72{bottom:741.737917px;}
.y40{bottom:742.772827px;}
.y9e{bottom:760.193842px;}
.yd{bottom:761.724196px;}
.y71{bottom:764.074958px;}
.y3f{bottom:765.109679px;}
.yc{bottom:782.422438px;}
.ycb{bottom:782.530522px;}
.y9d{bottom:782.530874px;}
.y70{bottom:784.773187px;}
.y3e{bottom:787.446532px;}
.y10d{bottom:794.234618px;}
.yb{bottom:803.120680px;}
.yca{bottom:804.867188px;}
.y9c{bottom:804.867548px;}
.y6f{bottom:805.471432px;}
.y3d{bottom:808.144778px;}
.ya{bottom:823.818922px;}
.y10c{bottom:826.145506px;}
.y6e{bottom:826.169678px;}
.yc9{bottom:827.204228px;}
.ye6{bottom:827.204588px;}
.y9b{bottom:827.204592px;}
.y3c{bottom:828.843022px;}
.y10b{bottom:846.843748px;}
.y6d{bottom:846.867923px;}
.y3b{bottom:849.541253px;}
.y9a{bottom:849.541266px;}
.y9{bottom:864.155782px;}
.y10a{bottom:867.541990px;}
.y6c{bottom:867.566168px;}
.yc8{bottom:871.877933px;}
.y3a{bottom:871.878113px;}
.y99{bottom:871.878307px;}
.y8{bottom:886.492628px;}
.y109{bottom:888.240233px;}
.y6b{bottom:888.264397px;}
.yc7{bottom:894.214598px;}
.y39{bottom:894.214966px;}
.y98{bottom:894.214972px;}
.y7{bottom:908.829487px;}
.y6a{bottom:908.962642px;}
.ye5{bottom:916.551263px;}
.yc6{bottom:916.551637px;}
.y38{bottom:916.551819px;}
.y97{bottom:916.552004px;}
.y108{bottom:920.937751px;}
.y69{bottom:929.660887px;}
.y6{bottom:931.166332px;}
.y37{bottom:938.888672px;}
.y96{bottom:938.888677px;}
.y107{bottom:941.635993px;}
.y68{bottom:950.359132px;}
.yc5{bottom:961.225343px;}
.y36{bottom:961.225525px;}
.y95{bottom:961.225703px;}
.y106{bottom:962.334235px;}
.y5{bottom:966.425193px;}
.y67{bottom:971.057378px;}
.y105{bottom:983.032478px;}
.yc4{bottom:983.562007px;}
.y94{bottom:983.562371px;}
.y35{bottom:983.562378px;}
.y66{bottom:991.755622px;}
.y4{bottom:992.484879px;}
.yc3{bottom:1005.899048px;}
.y34{bottom:1005.899231px;}
.y93{bottom:1005.899414px;}
.y65{bottom:1012.453857px;}
.y104{bottom:1015.730713px;}
.y3{bottom:1018.544540px;}
.y33{bottom:1028.236084px;}
.y92{bottom:1028.236086px;}
.y64{bottom:1033.152099px;}
.y103{bottom:1036.428955px;}
.y1{bottom:1038.150009px;}
.yc2{bottom:1050.572754px;}
.y32{bottom:1050.572937px;}
.y91{bottom:1050.573120px;}
.y63{bottom:1053.850342px;}
.y102{bottom:1057.127197px;}
.yc1{bottom:1072.909417px;}
.ye4{bottom:1072.909424px;}
.y90{bottom:1072.909783px;}
.y31{bottom:1072.909789px;}
.y62{bottom:1074.548585px;}
.y101{bottom:1077.825439px;}
.ye3{bottom:1095.246093px;}
.yc0{bottom:1095.246460px;}
.y30{bottom:1095.246643px;}
.y61{bottom:1095.246826px;}
.y100{bottom:1098.523681px;}
.ybf{bottom:1117.583492px;}
.y2f{bottom:1117.583495px;}
.y8f{bottom:1117.583498px;}
.yff{bottom:1119.221923px;}
.ybe{bottom:1139.920165px;}
.y2e{bottom:1139.920349px;}
.y60{bottom:1139.920531px;}
.ybc{bottom:1156.724853px;}
.y2b{bottom:1156.725036px;}
.y5d{bottom:1156.725219px;}
.h7{height:29.619139px;}
.h2{height:43.989259px;}
.h8{height:53.789061px;}
.h4{height:63.949219px;}
.h6{height:64.546875px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.h9{height:105.899970px;}
.hb{height:106.274781px;}
.ha{height:106.274964px;}
.hc{height:106.275147px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x5{left:127.575005px;}
.x2{left:133.181663px;}
.x3{left:168.044277px;}
.x10{left:175.797518px;}
.x8{left:181.575005px;}
.x11{left:264.712068px;}
.xd{left:303.427889px;}
.xf{left:319.503087px;}
.xe{left:336.944975px;}
.x6{left:340.328772px;}
.x4{left:371.245264px;}
.xa{left:372.246248px;}
.xb{left:374.711585px;}
.x7{left:415.457678px;}
.x9{left:446.456716px;}
.xc{left:473.456716px;}
.x1{left:636.019216px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws1{word-spacing:-7.234375pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-9.655088pt;}
._2{margin-left:-6.424898pt;}
._d{margin-left:-4.468748pt;}
._0{margin-left:-2.766247pt;}
._3{margin-left:-1.376545pt;}
._5{width:3.999999pt;}
._c{width:8.000019pt;}
._6{width:11.999997pt;}
._4{width:20.000002pt;}
._8{width:23.999993pt;}
._7{width:28.000002pt;}
._9{width:32.000000pt;}
._e{width:36.000029pt;}
._b{width:39.999990pt;}
._a{width:44.000000pt;}
._f{width:176.000000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y5f{bottom:13.708497pt;}
.y2d{bottom:13.708659pt;}
.ybd{bottom:13.708985pt;}
.ye2{bottom:33.029297pt;}
.y5e{bottom:33.029623pt;}
.y2c{bottom:33.029705pt;}
.y2a{bottom:62.617434pt;}
.y29{bottom:97.497721pt;}
.ye1{bottom:99.933593pt;}
.ybb{bottom:101.389970pt;}
.y5c{bottom:104.303060pt;}
.y8e{bottom:107.752933pt;}
.yfe{bottom:111.585943pt;}
.y28{bottom:118.650065pt;}
.ye0{bottom:119.788407pt;}
.yba{bottom:121.244786pt;}
.y5b{bottom:124.158207pt;}
.y8d{bottom:127.607753pt;}
.yfd{bottom:129.984380pt;}
.ydf{bottom:139.643233pt;}
.yb9{bottom:141.099607pt;}
.y5a{bottom:144.013020pt;}
.y8c{bottom:147.462900pt;}
.yfc{bottom:148.382807pt;}
.yde{bottom:159.498047pt;}
.yb8{bottom:160.954753pt;}
.y27{bottom:162.359206pt;}
.y59{bottom:163.868167pt;}
.yfb{bottom:166.781254pt;}
.y8b{bottom:167.317713pt;}
.ydd{bottom:179.352860pt;}
.yb7{bottom:179.353193pt;}
.y26{bottom:182.214186pt;}
.y58{bottom:183.722980pt;}
.yfa{bottom:185.179691pt;}
.y8a{bottom:187.172853pt;}
.yb6{bottom:199.208327pt;}
.y25{bottom:202.069167pt;}
.y57{bottom:203.577967pt;}
.yf9{bottom:203.578129pt;}
.y89{bottom:207.027673pt;}
.yb5{bottom:219.063146pt;}
.ydc{bottom:219.063153pt;}
.y24{bottom:220.467607pt;}
.yf8{bottom:221.976567pt;}
.y56{bottom:223.432940pt;}
.y88{bottom:225.426113pt;}
.y23{bottom:238.866047pt;}
.yb4{bottom:238.917967pt;}
.yf7{bottom:240.374993pt;}
.y55{bottom:243.287927pt;}
.y87{bottom:245.281247pt;}
.y22{bottom:258.721033pt;}
.yb3{bottom:258.773112pt;}
.ydb{bottom:258.773113pt;}
.yf6{bottom:258.773433pt;}
.y54{bottom:263.142900pt;}
.y86{bottom:265.136064pt;}
.yb2{bottom:278.628260pt;}
.y53{bottom:282.997887pt;}
.y85{bottom:284.991205pt;}
.y21{bottom:293.119460pt;}
.yf5{bottom:298.483068pt;}
.yb1{bottom:298.483073pt;}
.y52{bottom:302.852859pt;}
.y84{bottom:304.846017pt;}
.yf4{bottom:318.337881pt;}
.yda{bottom:318.337887pt;}
.yb0{bottom:318.337893pt;}
.y51{bottom:322.707839pt;}
.y83{bottom:324.701166pt;}
.y20{bottom:327.517889pt;}
.yf3{bottom:338.192709pt;}
.yaf{bottom:338.193033pt;}
.y50{bottom:342.562820pt;}
.y82{bottom:344.555986pt;}
.y1f{bottom:345.916329pt;}
.yae{bottom:358.048178pt;}
.yf2{bottom:358.048178pt;}
.yd9{bottom:358.048180pt;}
.y4f{bottom:362.417800pt;}
.y1e{bottom:364.314769pt;}
.y81{bottom:364.411127pt;}
.yf1{bottom:377.902990pt;}
.yd8{bottom:377.902993pt;}
.yad{bottom:377.902998pt;}
.y4e{bottom:382.272780pt;}
.y1d{bottom:382.713209pt;}
.y80{bottom:384.265953pt;}
.yd7{bottom:397.757807pt;}
.yac{bottom:397.757811pt;}
.yf0{bottom:397.757814pt;}
.y1c{bottom:401.111639pt;}
.y4d{bottom:402.127765pt;}
.y7f{bottom:404.121093pt;}
.yd6{bottom:417.612953pt;}
.yef{bottom:417.613279pt;}
.yab{bottom:417.613287pt;}
.y1b{bottom:419.510079pt;}
.y4c{bottom:421.982745pt;}
.y7e{bottom:423.975913pt;}
.yaa{bottom:437.468100pt;}
.y1a{bottom:437.908489pt;}
.y4b{bottom:441.837726pt;}
.y7d{bottom:443.831060pt;}
.y19{bottom:456.306919pt;}
.yee{bottom:457.322908pt;}
.yd5{bottom:457.322913pt;}
.ya9{bottom:457.323239pt;}
.y4a{bottom:461.692706pt;}
.y7c{bottom:463.685873pt;}
.y18{bottom:474.705359pt;}
.yed{bottom:477.177721pt;}
.yd4{bottom:477.177740pt;}
.ya8{bottom:477.178060pt;}
.y49{bottom:481.547687pt;}
.y7b{bottom:483.541013pt;}
.y17{bottom:493.103799pt;}
.yec{bottom:497.032549pt;}
.yd3{bottom:497.032873pt;}
.ya7{bottom:497.033204pt;}
.y48{bottom:501.402672pt;}
.y7a{bottom:503.395833pt;}
.y16{bottom:511.502239pt;}
.ya6{bottom:516.888017pt;}
.yeb{bottom:516.888019pt;}
.yd2{bottom:516.888020pt;}
.y47{bottom:521.257652pt;}
.y79{bottom:523.250979pt;}
.y15{bottom:529.900669pt;}
.yea{bottom:536.742830pt;}
.yd1{bottom:536.742833pt;}
.ya5{bottom:536.743157pt;}
.y46{bottom:541.112633pt;}
.y78{bottom:543.105791pt;}
.y14{bottom:548.299109pt;}
.ye9{bottom:556.597654pt;}
.yd0{bottom:556.597660pt;}
.ya4{bottom:556.597979pt;}
.y45{bottom:560.967613pt;}
.y77{bottom:562.960939pt;}
.y13{bottom:566.697549pt;}
.ycf{bottom:576.452793pt;}
.ye8{bottom:576.453119pt;}
.ya3{bottom:576.453126pt;}
.y44{bottom:580.822593pt;}
.y76{bottom:582.815760pt;}
.y12{bottom:585.095986pt;}
.ya2{bottom:596.307939pt;}
.y43{bottom:600.677571pt;}
.y75{bottom:602.670900pt;}
.y11{bottom:603.494424pt;}
.yce{bottom:616.162767pt;}
.ya1{bottom:616.163079pt;}
.y42{bottom:620.532552pt;}
.y10{bottom:621.892861pt;}
.y74{bottom:622.525713pt;}
.ycd{bottom:636.017580pt;}
.ya0{bottom:636.017900pt;}
.yf{bottom:640.291299pt;}
.y41{bottom:640.387532pt;}
.y73{bottom:640.924153pt;}
.ye7{bottom:655.872393pt;}
.ycc{bottom:655.872727pt;}
.y9f{bottom:655.873046pt;}
.ye{bottom:658.689736pt;}
.y72{bottom:659.322593pt;}
.y40{bottom:660.242513pt;}
.y9e{bottom:675.727860pt;}
.yd{bottom:677.088174pt;}
.y71{bottom:679.177740pt;}
.y3f{bottom:680.097493pt;}
.yc{bottom:695.486611pt;}
.ycb{bottom:695.582687pt;}
.y9d{bottom:695.583000pt;}
.y70{bottom:697.576167pt;}
.y3e{bottom:699.952473pt;}
.y10d{bottom:705.986327pt;}
.yb{bottom:713.885049pt;}
.yca{bottom:715.437500pt;}
.y9c{bottom:715.437820pt;}
.y6f{bottom:715.974607pt;}
.y3d{bottom:718.350913pt;}
.ya{bottom:732.283487pt;}
.y10c{bottom:734.351561pt;}
.y6e{bottom:734.373047pt;}
.yc9{bottom:735.292647pt;}
.ye6{bottom:735.292967pt;}
.y9b{bottom:735.292971pt;}
.y3c{bottom:736.749353pt;}
.y10b{bottom:752.749998pt;}
.y6d{bottom:752.771487pt;}
.y3b{bottom:755.147780pt;}
.y9a{bottom:755.147792pt;}
.y9{bottom:768.138473pt;}
.y10a{bottom:771.148436pt;}
.y6c{bottom:771.169927pt;}
.yc8{bottom:775.002607pt;}
.y3a{bottom:775.002767pt;}
.y99{bottom:775.002940pt;}
.y8{bottom:787.993447pt;}
.y109{bottom:789.546873pt;}
.y6b{bottom:789.568353pt;}
.yc7{bottom:794.857420pt;}
.y39{bottom:794.857747pt;}
.y98{bottom:794.857753pt;}
.y7{bottom:807.848433pt;}
.y6a{bottom:807.966793pt;}
.ye5{bottom:814.712233pt;}
.yc6{bottom:814.712567pt;}
.y38{bottom:814.712728pt;}
.y97{bottom:814.712893pt;}
.y108{bottom:818.611334pt;}
.y69{bottom:826.365233pt;}
.y6{bottom:827.703407pt;}
.y37{bottom:834.567708pt;}
.y96{bottom:834.567713pt;}
.y107{bottom:837.009771pt;}
.y68{bottom:844.763673pt;}
.yc5{bottom:854.422527pt;}
.y36{bottom:854.422689pt;}
.y95{bottom:854.422847pt;}
.y106{bottom:855.408209pt;}
.y5{bottom:859.044616pt;}
.y67{bottom:863.162113pt;}
.y105{bottom:873.806647pt;}
.yc4{bottom:874.277340pt;}
.y94{bottom:874.277663pt;}
.y35{bottom:874.277669pt;}
.y66{bottom:881.560553pt;}
.y4{bottom:882.208781pt;}
.yc3{bottom:894.132487pt;}
.y34{bottom:894.132650pt;}
.y93{bottom:894.132812pt;}
.y65{bottom:899.958984pt;}
.y104{bottom:902.871745pt;}
.y3{bottom:905.372924pt;}
.y33{bottom:913.987630pt;}
.y92{bottom:913.987632pt;}
.y64{bottom:918.357421pt;}
.y103{bottom:921.270182pt;}
.y1{bottom:922.800008pt;}
.yc2{bottom:933.842448pt;}
.y32{bottom:933.842611pt;}
.y91{bottom:933.842773pt;}
.y63{bottom:936.755860pt;}
.y102{bottom:939.668620pt;}
.yc1{bottom:953.697260pt;}
.ye4{bottom:953.697265pt;}
.y90{bottom:953.697585pt;}
.y31{bottom:953.697590pt;}
.y62{bottom:955.154297pt;}
.y101{bottom:958.067057pt;}
.ye3{bottom:973.552083pt;}
.yc0{bottom:973.552409pt;}
.y30{bottom:973.552571pt;}
.y61{bottom:973.552735pt;}
.y100{bottom:976.465494pt;}
.ybf{bottom:993.407549pt;}
.y2f{bottom:993.407551pt;}
.y8f{bottom:993.407554pt;}
.yff{bottom:994.863932pt;}
.ybe{bottom:1013.262369pt;}
.y2e{bottom:1013.262532pt;}
.y60{bottom:1013.262695pt;}
.ybc{bottom:1028.199869pt;}
.y2b{bottom:1028.200032pt;}
.y5d{bottom:1028.200195pt;}
.h7{height:26.328124pt;}
.h2{height:39.101563pt;}
.h8{height:47.812499pt;}
.h4{height:56.843750pt;}
.h6{height:57.375000pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.h9{height:94.133307pt;}
.hb{height:94.466472pt;}
.ha{height:94.466635pt;}
.hc{height:94.466797pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x5{left:113.400004pt;}
.x2{left:118.383700pt;}
.x3{left:149.372691pt;}
.x10{left:156.264460pt;}
.x8{left:161.400004pt;}
.x11{left:235.299616pt;}
.xd{left:269.713679pt;}
.xf{left:284.002744pt;}
.xe{left:299.506644pt;}
.x6{left:302.514464pt;}
.x4{left:329.995790pt;}
.xa{left:330.885554pt;}
.xb{left:333.076964pt;}
.x7{left:369.295714pt;}
.x9{left:396.850414pt;}
.xc{left:420.850414pt;}
.x1{left:565.350414pt;}
}




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