
    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_8ee8af9b343fcf0e035e76a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_a5f0ba1e1152329c6df53060.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_6098f6b10f711a5062ca560a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_886a6bbba20f291125be25e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.701000;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;}
}
.ws19{word-spacing:-18.183288px;}
.ws6b{word-spacing:-3.586912px;}
.ws5{word-spacing:-3.456003px;}
.ws46{word-spacing:-3.128730px;}
.ws10{word-spacing:-2.932366px;}
.ws5b{word-spacing:-2.539638px;}
.ws29{word-spacing:-2.016002px;}
.ws3c{word-spacing:-1.950547px;}
.ws2f{word-spacing:-1.885092px;}
.ws1e{word-spacing:-1.296001px;}
.ws5d{word-spacing:-1.230546px;}
.ws68{word-spacing:-1.165092px;}
.wsf{word-spacing:-0.968728px;}
.ws3f{word-spacing:-0.510546px;}
.wse{word-spacing:-0.314182px;}
.ws5c{word-spacing:-0.183273px;}
.ws20{word-spacing:0.000000px;}
.ws26{word-spacing:0.013091px;}
.ws1b{word-spacing:0.274909px;}
.ws4f{word-spacing:0.405819px;}
.ws33{word-spacing:0.667637px;}
.ws38{word-spacing:0.733092px;}
.ws43{word-spacing:0.864001px;}
.ws65{word-spacing:0.929455px;}
.ws1f{word-spacing:1.125819px;}
.ws41{word-spacing:1.191274px;}
.ws5e{word-spacing:1.453092px;}
.ws4b{word-spacing:1.518547px;}
.ws4d{word-spacing:2.238547px;}
.ws7{word-spacing:2.369457px;}
.ws52{word-spacing:2.500366px;}
.ws17{word-spacing:2.696730px;}
.ws5a{word-spacing:2.762184px;}
.ws6c{word-spacing:3.024003px;}
.ws16{word-spacing:3.089457px;}
.ws40{word-spacing:3.154912px;}
.ws42{word-spacing:3.285821px;}
.ws45{word-spacing:3.351276px;}
.ws8{word-spacing:3.613094px;}
.ws30{word-spacing:3.678549px;}
.ws64{word-spacing:3.744003px;}
.ws6a{word-spacing:4.333095px;}
.ws6d{word-spacing:4.464004px;}
.ws67{word-spacing:4.856731px;}
.ws47{word-spacing:5.118550px;}
.ws28{word-spacing:5.707641px;}
.ws21{word-spacing:5.969460px;}
.ws37{word-spacing:6.034914px;}
.ws3a{word-spacing:6.100369px;}
.ws48{word-spacing:6.165823px;}
.ws53{word-spacing:6.427642px;}
.ws36{word-spacing:6.493096px;}
.ws51{word-spacing:6.624006px;}
.ws2c{word-spacing:6.689460px;}
.ws3b{word-spacing:7.147642px;}
.ws50{word-spacing:7.213097px;}
.ws12{word-spacing:7.344006px;}
.ws3e{word-spacing:8.064007px;}
.ws54{word-spacing:8.260371px;}
.ws60{word-spacing:8.456734px;}
.ws3d{word-spacing:8.587644px;}
.ws4a{word-spacing:8.718553px;}
.ws4{word-spacing:8.980371px;}
.ws3{word-spacing:9.589000px;}
.ws49{word-spacing:9.634917px;}
.ws63{word-spacing:9.765826px;}
.ws55{word-spacing:10.158554px;}
.ws31{word-spacing:10.224009px;}
.ws22{word-spacing:10.289463px;}
.ws5f{word-spacing:10.485827px;}
.ws69{word-spacing:10.551282px;}
.wsc{word-spacing:10.813100px;}
.ws57{word-spacing:11.009464px;}
.wsa{word-spacing:11.074918px;}
.ws39{word-spacing:11.402191px;}
.ws2a{word-spacing:12.122192px;}
.ws1d{word-spacing:12.253101px;}
.ws66{word-spacing:12.711283px;}
.ws24{word-spacing:12.842193px;}
.ws1{word-spacing:13.686840px;}
.ws0{word-spacing:13.810815px;}
.ws59{word-spacing:14.282194px;}
.ws27{word-spacing:15.264013px;}
.ws56{word-spacing:15.329467px;}
.ws14{word-spacing:15.853104px;}
.ws61{word-spacing:16.573105px;}
.ws35{word-spacing:16.834923px;}
.ws2d{word-spacing:20.173108px;}
.ws34{word-spacing:20.304017px;}
.ws25{word-spacing:20.762199px;}
.ws2e{word-spacing:20.893108px;}
.ws18{word-spacing:21.351291px;}
.ws4e{word-spacing:22.202200px;}
.ws62{word-spacing:23.249474px;}
.ws2{word-spacing:27.975090px;}
.ws4c{word-spacing:28.616751px;}
.ws2b{word-spacing:30.711298px;}
.ws44{word-spacing:31.627663px;}
.ws1c{word-spacing:83.371871px;}
.ws11{word-spacing:94.983517px;}
.wsd{word-spacing:131.356638px;}
.ws23{word-spacing:146.797378px;}
.ws32{word-spacing:147.203197px;}
.wsb{word-spacing:150.842472px;}
.ws6{word-spacing:188.436331px;}
.ws58{word-spacing:246.445461px;}
.ws9{word-spacing:247.715280px;}
.ws15{word-spacing:262.259292px;}
.ws1a{word-spacing:270.990936px;}
.ws13{word-spacing:340.444812px;}
._2{margin-left:-11.281725px;}
._4{margin-left:-7.058330px;}
._7{margin-left:-5.432732px;}
._0{margin-left:-3.843225px;}
._6{margin-left:-2.668393px;}
._b{margin-left:-1.654961px;}
._1a{width:1.148596px;}
._5{width:2.582316px;}
._1{width:3.719250px;}
._8{width:16.101832px;}
._22{width:18.710350px;}
._13{width:20.210226px;}
._23{width:23.810229px;}
._10{width:25.839322px;}
._15{width:27.264077px;}
._a{width:28.472751px;}
._14{width:29.504779px;}
._25{width:32.072754px;}
._19{width:33.774574px;}
._1b{width:35.214575px;}
._11{width:36.392758px;}
._21{width:38.733878px;}
._1e{width:40.254579px;}
._30{width:41.367307px;}
._18{width:42.369749px;}
._2c{width:44.407805px;}
._2b{width:46.080038px;}
._16{width:47.242976px;}
._2d{width:51.170252px;}
._12{width:53.891083px;}
._2f{width:54.916409px;}
._3{width:60.623775px;}
._1d{width:63.556417px;}
._28{width:66.305510px;}
._17{width:72.056389px;}
._27{width:78.137547px;}
._c{width:81.852577px;}
._34{width:84.024262px;}
._24{width:85.090980px;}
._20{width:102.390823px;}
._f{width:164.980666px;}
._29{width:172.691511px;}
._32{width:215.104202px;}
._31{width:244.941549px;}
._2a{width:264.628749px;}
._d{width:289.174224px;}
._26{width:358.020351px;}
._e{width:433.955784px;}
._2e{width:486.126789px;}
._33{width:494.389030px;}
._1c{width:541.446496px;}
._1f{width:605.340210px;}
._9{width:1784.647505px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y27{bottom:35.166000px;}
.y78{bottom:125.004000px;}
.y6f{bottom:145.327500px;}
.y77{bottom:145.924500px;}
.y26{bottom:150.187500px;}
.y59{bottom:166.248000px;}
.y25{bottom:171.108000px;}
.y58{bottom:186.573000px;}
.y76{bottom:187.170000px;}
.y24{bottom:191.433000px;}
.y57{bottom:207.493500px;}
.y75{bottom:208.092000px;}
.y23{bottom:212.353500px;}
.y56{bottom:227.818500px;}
.y6e{bottom:228.415500px;}
.y22{bottom:232.677000px;}
.y55{bottom:248.739000px;}
.y74{bottom:249.337500px;}
.y21{bottom:253.599000px;}
.y54{bottom:269.062500px;}
.y6d{bottom:269.661000px;}
.y20{bottom:273.922500px;}
.y53{bottom:289.984500px;}
.y6c{bottom:290.583000px;}
.y1f{bottom:294.844500px;}
.y52{bottom:310.308000px;}
.y6b{bottom:310.906500px;}
.y1e{bottom:315.168000px;}
.y51{bottom:331.230000px;}
.y6a{bottom:331.827000px;}
.y1d{bottom:335.491500px;}
.y50{bottom:351.553500px;}
.y69{bottom:352.152000px;}
.y1c{bottom:356.413500px;}
.y4f{bottom:372.475500px;}
.y68{bottom:373.072500px;}
.y1b{bottom:376.737000px;}
.y4e{bottom:392.799000px;}
.y67{bottom:393.397500px;}
.y1a{bottom:397.659000px;}
.y4d{bottom:413.721000px;}
.y66{bottom:414.318000px;}
.y19{bottom:417.982500px;}
.y4c{bottom:434.044500px;}
.y65{bottom:434.641500px;}
.y18{bottom:438.904500px;}
.y4b{bottom:454.966500px;}
.y64{bottom:455.563500px;}
.y17{bottom:459.228000px;}
.y4a{bottom:475.290000px;}
.y63{bottom:475.887000px;}
.y16{bottom:480.150000px;}
.y49{bottom:496.212000px;}
.y62{bottom:496.809000px;}
.y15{bottom:500.473500px;}
.y48{bottom:517.132500px;}
.y14{bottom:521.395500px;}
.y47{bottom:537.456000px;}
.y61{bottom:538.054500px;}
.y13{bottom:542.316000px;}
.y46{bottom:558.378000px;}
.y12{bottom:562.639500px;}
.y45{bottom:578.701500px;}
.y11{bottom:583.561500px;}
.y44{bottom:599.623500px;}
.y10{bottom:604.483500px;}
.y43{bottom:619.947000px;}
.yf{bottom:624.807000px;}
.y42{bottom:640.869000px;}
.ye{bottom:645.729000px;}
.y60{bottom:661.192500px;}
.y41{bottom:661.791000px;}
.yd{bottom:666.052500px;}
.y40{bottom:682.114500px;}
.yc{bottom:686.974500px;}
.y5f{bottom:702.438000px;}
.y3f{bottom:703.035000px;}
.yb{bottom:707.298000px;}
.y83{bottom:722.761500px;}
.y3e{bottom:723.360000px;}
.ya{bottom:731.805000px;}
.y5e{bottom:743.683500px;}
.y3d{bottom:744.280500px;}
.y82{bottom:764.007000px;}
.y3c{bottom:764.604000px;}
.y9{bottom:771.331500px;}
.y5d{bottom:784.929000px;}
.y3b{bottom:785.526000px;}
.y8{bottom:791.655000px;}
.y81{bottom:805.252500px;}
.y3a{bottom:805.849500px;}
.y80{bottom:825.576000px;}
.y5c{bottom:826.174500px;}
.y39{bottom:826.771500px;}
.y7{bottom:828.183000px;}
.y73{bottom:846.498000px;}
.y38{bottom:847.095000px;}
.y7f{bottom:866.821500px;}
.y37{bottom:867.418500px;}
.y72{bottom:887.743500px;}
.y36{bottom:888.340500px;}
.y6{bottom:905.742000px;}
.y7e{bottom:908.067000px;}
.y35{bottom:908.664000px;}
.y71{bottom:928.987500px;}
.y34{bottom:929.586000px;}
.y5{bottom:949.005000px;}
.y7d{bottom:949.312500px;}
.y33{bottom:949.909500px;}
.y70{bottom:970.233000px;}
.y32{bottom:970.831500px;}
.y7c{bottom:990.558000px;}
.y31{bottom:991.155000px;}
.y4{bottom:1000.450500px;}
.y7b{bottom:1011.478500px;}
.y30{bottom:1012.077000px;}
.y2f{bottom:1032.400500px;}
.y3{bottom:1037.809500px;}
.y7a{bottom:1052.724000px;}
.y2e{bottom:1053.322500px;}
.y2d{bottom:1073.646000px;}
.y5b{bottom:1074.243000px;}
.y2{bottom:1075.170000px;}
.y79{bottom:1093.969500px;}
.y2c{bottom:1094.566500px;}
.y1{bottom:1112.529000px;}
.y2b{bottom:1114.891500px;}
.y5a{bottom:1115.488500px;}
.y2a{bottom:1135.812000px;}
.y29{bottom:1156.137000px;}
.y28{bottom:1180.644000px;}
.h6{height:45.490947px;}
.h5{height:49.090950px;}
.h3{height:61.459121px;}
.h4{height:61.631275px;}
.h2{height:88.766100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:106.299000px;}
.x3{left:113.952000px;}
.x8{left:128.803500px;}
.x4{left:134.554500px;}
.x2{left:152.328000px;}
.x1{left:178.939500px;}
.x5{left:363.289500px;}
.x6{left:388.750500px;}
.xa{left:442.366500px;}
.x9{left:614.452500px;}
.xb{left:728.655000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws19{word-spacing:-16.162923pt;}
.ws6b{word-spacing:-3.188366pt;}
.ws5{word-spacing:-3.072003pt;}
.ws46{word-spacing:-2.781093pt;}
.ws10{word-spacing:-2.606548pt;}
.ws5b{word-spacing:-2.257456pt;}
.ws29{word-spacing:-1.792001pt;}
.ws3c{word-spacing:-1.733820pt;}
.ws2f{word-spacing:-1.675638pt;}
.ws1e{word-spacing:-1.152001pt;}
.ws5d{word-spacing:-1.093819pt;}
.ws68{word-spacing:-1.035637pt;}
.wsf{word-spacing:-0.861092pt;}
.ws3f{word-spacing:-0.453819pt;}
.wse{word-spacing:-0.279273pt;}
.ws5c{word-spacing:-0.162909pt;}
.ws20{word-spacing:0.000000pt;}
.ws26{word-spacing:0.011636pt;}
.ws1b{word-spacing:0.244364pt;}
.ws4f{word-spacing:0.360728pt;}
.ws33{word-spacing:0.593455pt;}
.ws38{word-spacing:0.651637pt;}
.ws43{word-spacing:0.768001pt;}
.ws65{word-spacing:0.826183pt;}
.ws1f{word-spacing:1.000728pt;}
.ws41{word-spacing:1.058910pt;}
.ws5e{word-spacing:1.291637pt;}
.ws4b{word-spacing:1.349819pt;}
.ws4d{word-spacing:1.989820pt;}
.ws7{word-spacing:2.106184pt;}
.ws52{word-spacing:2.222547pt;}
.ws17{word-spacing:2.397093pt;}
.ws5a{word-spacing:2.455275pt;}
.ws6c{word-spacing:2.688002pt;}
.ws16{word-spacing:2.746184pt;}
.ws40{word-spacing:2.804366pt;}
.ws42{word-spacing:2.920730pt;}
.ws45{word-spacing:2.978912pt;}
.ws8{word-spacing:3.211639pt;}
.ws30{word-spacing:3.269821pt;}
.ws64{word-spacing:3.328003pt;}
.ws6a{word-spacing:3.851640pt;}
.ws6d{word-spacing:3.968003pt;}
.ws67{word-spacing:4.317095pt;}
.ws47{word-spacing:4.549822pt;}
.ws28{word-spacing:5.073459pt;}
.ws21{word-spacing:5.306186pt;}
.ws37{word-spacing:5.364368pt;}
.ws3a{word-spacing:5.422550pt;}
.ws48{word-spacing:5.480732pt;}
.ws53{word-spacing:5.713459pt;}
.ws36{word-spacing:5.771641pt;}
.ws51{word-spacing:5.888005pt;}
.ws2c{word-spacing:5.946187pt;}
.ws3b{word-spacing:6.353460pt;}
.ws50{word-spacing:6.411642pt;}
.ws12{word-spacing:6.528005pt;}
.ws3e{word-spacing:7.168006pt;}
.ws54{word-spacing:7.342552pt;}
.ws60{word-spacing:7.517097pt;}
.ws3d{word-spacing:7.633461pt;}
.ws4a{word-spacing:7.749825pt;}
.ws4{word-spacing:7.982552pt;}
.ws3{word-spacing:8.523556pt;}
.ws49{word-spacing:8.564371pt;}
.ws63{word-spacing:8.680735pt;}
.ws55{word-spacing:9.029826pt;}
.ws31{word-spacing:9.088008pt;}
.ws22{word-spacing:9.146189pt;}
.ws5f{word-spacing:9.320735pt;}
.ws69{word-spacing:9.378917pt;}
.wsc{word-spacing:9.611644pt;}
.ws57{word-spacing:9.786190pt;}
.wsa{word-spacing:9.844372pt;}
.ws39{word-spacing:10.135281pt;}
.ws2a{word-spacing:10.775282pt;}
.ws1d{word-spacing:10.891645pt;}
.ws66{word-spacing:11.298919pt;}
.ws24{word-spacing:11.415282pt;}
.ws1{word-spacing:12.166080pt;}
.ws0{word-spacing:12.276280pt;}
.ws59{word-spacing:12.695283pt;}
.ws27{word-spacing:13.568011pt;}
.ws56{word-spacing:13.626193pt;}
.ws14{word-spacing:14.091648pt;}
.ws61{word-spacing:14.731649pt;}
.ws35{word-spacing:14.964376pt;}
.ws2d{word-spacing:17.931651pt;}
.ws34{word-spacing:18.048015pt;}
.ws25{word-spacing:18.455288pt;}
.ws2e{word-spacing:18.571652pt;}
.ws18{word-spacing:18.978925pt;}
.ws4e{word-spacing:19.735289pt;}
.ws62{word-spacing:20.666199pt;}
.ws2{word-spacing:24.866747pt;}
.ws4c{word-spacing:25.437112pt;}
.ws2b{word-spacing:27.298932pt;}
.ws44{word-spacing:28.113478pt;}
.ws1c{word-spacing:74.108329pt;}
.ws11{word-spacing:84.429793pt;}
.wsd{word-spacing:116.761456pt;}
.ws23{word-spacing:130.486558pt;}
.ws32{word-spacing:130.847286pt;}
.wsb{word-spacing:134.082198pt;}
.ws6{word-spacing:167.498961pt;}
.ws58{word-spacing:219.062632pt;}
.ws9{word-spacing:220.191360pt;}
.ws15{word-spacing:233.119371pt;}
.ws1a{word-spacing:240.880832pt;}
.ws13{word-spacing:302.617611pt;}
._2{margin-left:-10.028200pt;}
._4{margin-left:-6.274071pt;}
._7{margin-left:-4.829095pt;}
._0{margin-left:-3.416200pt;}
._6{margin-left:-2.371905pt;}
._b{margin-left:-1.471077pt;}
._1a{width:1.020974pt;}
._5{width:2.295392pt;}
._1{width:3.306000pt;}
._8{width:14.312739pt;}
._22{width:16.631422pt;}
._13{width:17.964645pt;}
._23{width:21.164648pt;}
._10{width:22.968286pt;}
._15{width:24.234735pt;}
._a{width:25.309112pt;}
._14{width:26.226470pt;}
._25{width:28.509115pt;}
._19{width:30.021843pt;}
._1b{width:31.301844pt;}
._11{width:32.349118pt;}
._21{width:34.430114pt;}
._1e{width:35.781848pt;}
._30{width:36.770940pt;}
._18{width:37.661999pt;}
._2c{width:39.473605pt;}
._2b{width:40.960034pt;}
._16{width:41.993756pt;}
._2d{width:45.484668pt;}
._12{width:47.903185pt;}
._2f{width:48.814586pt;}
._3{width:53.887800pt;}
._1d{width:56.494593pt;}
._28{width:58.938231pt;}
._17{width:64.050123pt;}
._27{width:69.455597pt;}
._c{width:72.757847pt;}
._34{width:74.688233pt;}
._24{width:75.636427pt;}
._20{width:91.014065pt;}
._f{width:146.649481pt;}
._29{width:153.503566pt;}
._32{width:191.203735pt;}
._31{width:217.725821pt;}
._2a{width:235.225555pt;}
._d{width:257.043755pt;}
._26{width:318.240312pt;}
._e{width:385.738474pt;}
._2e{width:432.112702pt;}
._33{width:439.456915pt;}
._1c{width:481.285774pt;}
._1f{width:538.080187pt;}
._9{width:1586.353338pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:31.258667pt;}
.y78{bottom:111.114667pt;}
.y6f{bottom:129.180000pt;}
.y77{bottom:129.710667pt;}
.y26{bottom:133.500000pt;}
.y59{bottom:147.776000pt;}
.y25{bottom:152.096000pt;}
.y58{bottom:165.842667pt;}
.y76{bottom:166.373333pt;}
.y24{bottom:170.162667pt;}
.y57{bottom:184.438667pt;}
.y75{bottom:184.970667pt;}
.y23{bottom:188.758667pt;}
.y56{bottom:202.505333pt;}
.y6e{bottom:203.036000pt;}
.y22{bottom:206.824000pt;}
.y55{bottom:221.101333pt;}
.y74{bottom:221.633333pt;}
.y21{bottom:225.421333pt;}
.y54{bottom:239.166667pt;}
.y6d{bottom:239.698667pt;}
.y20{bottom:243.486667pt;}
.y53{bottom:257.764000pt;}
.y6c{bottom:258.296000pt;}
.y1f{bottom:262.084000pt;}
.y52{bottom:275.829333pt;}
.y6b{bottom:276.361333pt;}
.y1e{bottom:280.149333pt;}
.y51{bottom:294.426667pt;}
.y6a{bottom:294.957333pt;}
.y1d{bottom:298.214667pt;}
.y50{bottom:312.492000pt;}
.y69{bottom:313.024000pt;}
.y1c{bottom:316.812000pt;}
.y4f{bottom:331.089333pt;}
.y68{bottom:331.620000pt;}
.y1b{bottom:334.877333pt;}
.y4e{bottom:349.154667pt;}
.y67{bottom:349.686667pt;}
.y1a{bottom:353.474667pt;}
.y4d{bottom:367.752000pt;}
.y66{bottom:368.282667pt;}
.y19{bottom:371.540000pt;}
.y4c{bottom:385.817333pt;}
.y65{bottom:386.348000pt;}
.y18{bottom:390.137333pt;}
.y4b{bottom:404.414667pt;}
.y64{bottom:404.945333pt;}
.y17{bottom:408.202667pt;}
.y4a{bottom:422.480000pt;}
.y63{bottom:423.010667pt;}
.y16{bottom:426.800000pt;}
.y49{bottom:441.077333pt;}
.y62{bottom:441.608000pt;}
.y15{bottom:444.865333pt;}
.y48{bottom:459.673333pt;}
.y14{bottom:463.462667pt;}
.y47{bottom:477.738667pt;}
.y61{bottom:478.270667pt;}
.y13{bottom:482.058667pt;}
.y46{bottom:496.336000pt;}
.y12{bottom:500.124000pt;}
.y45{bottom:514.401333pt;}
.y11{bottom:518.721333pt;}
.y44{bottom:532.998667pt;}
.y10{bottom:537.318667pt;}
.y43{bottom:551.064000pt;}
.yf{bottom:555.384000pt;}
.y42{bottom:569.661333pt;}
.ye{bottom:573.981333pt;}
.y60{bottom:587.726667pt;}
.y41{bottom:588.258667pt;}
.yd{bottom:592.046667pt;}
.y40{bottom:606.324000pt;}
.yc{bottom:610.644000pt;}
.y5f{bottom:624.389333pt;}
.y3f{bottom:624.920000pt;}
.yb{bottom:628.709333pt;}
.y83{bottom:642.454667pt;}
.y3e{bottom:642.986667pt;}
.ya{bottom:650.493333pt;}
.y5e{bottom:661.052000pt;}
.y3d{bottom:661.582667pt;}
.y82{bottom:679.117333pt;}
.y3c{bottom:679.648000pt;}
.y9{bottom:685.628000pt;}
.y5d{bottom:697.714667pt;}
.y3b{bottom:698.245333pt;}
.y8{bottom:703.693333pt;}
.y81{bottom:715.780000pt;}
.y3a{bottom:716.310667pt;}
.y80{bottom:733.845333pt;}
.y5c{bottom:734.377333pt;}
.y39{bottom:734.908000pt;}
.y7{bottom:736.162667pt;}
.y73{bottom:752.442667pt;}
.y38{bottom:752.973333pt;}
.y7f{bottom:770.508000pt;}
.y37{bottom:771.038667pt;}
.y72{bottom:789.105333pt;}
.y36{bottom:789.636000pt;}
.y6{bottom:805.104000pt;}
.y7e{bottom:807.170667pt;}
.y35{bottom:807.701333pt;}
.y71{bottom:825.766667pt;}
.y34{bottom:826.298667pt;}
.y5{bottom:843.560000pt;}
.y7d{bottom:843.833333pt;}
.y33{bottom:844.364000pt;}
.y70{bottom:862.429333pt;}
.y32{bottom:862.961333pt;}
.y7c{bottom:880.496000pt;}
.y31{bottom:881.026667pt;}
.y4{bottom:889.289333pt;}
.y7b{bottom:899.092000pt;}
.y30{bottom:899.624000pt;}
.y2f{bottom:917.689333pt;}
.y3{bottom:922.497333pt;}
.y7a{bottom:935.754667pt;}
.y2e{bottom:936.286667pt;}
.y2d{bottom:954.352000pt;}
.y5b{bottom:954.882667pt;}
.y2{bottom:955.706667pt;}
.y79{bottom:972.417333pt;}
.y2c{bottom:972.948000pt;}
.y1{bottom:988.914667pt;}
.y2b{bottom:991.014667pt;}
.y5a{bottom:991.545333pt;}
.y2a{bottom:1009.610667pt;}
.y29{bottom:1027.677333pt;}
.y28{bottom:1049.461333pt;}
.h6{height:40.436397pt;}
.h5{height:43.636400pt;}
.h3{height:54.630330pt;}
.h4{height:54.783356pt;}
.h2{height:78.903200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:94.488000pt;}
.x3{left:101.290667pt;}
.x8{left:114.492000pt;}
.x4{left:119.604000pt;}
.x2{left:135.402667pt;}
.x1{left:159.057333pt;}
.x5{left:322.924000pt;}
.x6{left:345.556000pt;}
.xa{left:393.214667pt;}
.x9{left:546.180000pt;}
.xb{left:647.693333pt;}
}




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