
    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_4ca9ee9c4bf2631378671d2e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061000;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_e68c9aca7454c58ab2cd4845.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_58bf6a994c3b0c156fdea4e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.075000;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_3adc450dd9bfc3a59fb7c321.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_be73a83e197a0683a808ff08.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.123000;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_be10b94d3c86f6eed5f4b4ce.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d1c49be2c0592d2a656a8c0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.124000;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:ff8;src:url('chunks/assets/font_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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:ff9;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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:ffa;src:url('chunks/assets/font_8534ee88f90edc956c8a24d8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.069000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-34.169053px;}
.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;}
}
.ws3{word-spacing:-22.040304px;}
.ws1{word-spacing:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws6{word-spacing:-15.001902px;}
.ws8{word-spacing:-12.004672px;}
.ws7{word-spacing:-10.504681px;}
.ws4{word-spacing:-6.996050px;}
.ws5{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:1284.315805px;}
._d{margin-left:-1.001312px;}
._17{width:1.828737px;}
._1d{width:2.880333px;}
._15{width:4.060303px;}
._2{width:5.240950px;}
._1a{width:6.447842px;}
._6{width:7.681688px;}
._16{width:8.870568px;}
._7{width:9.932448px;}
._29{width:10.990244px;}
._9{width:12.403771px;}
._1c{width:13.859790px;}
._4{width:14.899660px;}
._a{width:18.335710px;}
._11{width:20.106732px;}
._23{width:21.322265px;}
._1f{width:23.035893px;}
._13{width:24.967161px;}
._0{width:26.084516px;}
._10{width:27.509276px;}
._19{width:28.726766px;}
._26{width:30.716365px;}
._b{width:31.915906px;}
._e{width:32.995702px;}
._25{width:34.898706px;}
._8{width:35.994072px;}
._c{width:37.993731px;}
._27{width:39.220232px;}
._2a{width:40.978443px;}
._2b{width:42.304315px;}
._12{width:43.318261px;}
._f{width:44.425187px;}
._21{width:46.205302px;}
._24{width:49.843343px;}
._28{width:50.897401px;}
._2c{width:52.373613px;}
._5{width:57.942163px;}
._22{width:59.898960px;}
._18{width:61.011107px;}
._1b{width:66.651077px;}
._1e{width:68.001905px;}
._20{width:72.367365px;}
._3{width:88.781646px;}
._1{width:109.430537px;}
._14{width:111.655524px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.675507px;}
.fs5{font-size:27.984200px;}
.fs7{font-size:29.750527px;}
.fs8{font-size:42.018724px;}
.fs9{font-size:48.018688px;}
.fs1{font-size:54.020354px;}
.fs4{font-size:60.007609px;}
.fs0{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs2{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y9c{bottom:5.604055px;}
.y9b{bottom:15.520897px;}
.y9a{bottom:25.437740px;}
.y99{bottom:35.354582px;}
.y98{bottom:45.271424px;}
.y97{bottom:63.495018px;}
.y94{bottom:69.341374px;}
.y93{bottom:87.697305px;}
.y95{bottom:88.570477px;}
.y92{bottom:104.835572px;}
.y39{bottom:106.238069px;}
.y37{bottom:106.391791px;}
.y38{bottom:126.495702px;}
.y9d{bottom:177.702007px;}
.ya1{bottom:212.105405px;}
.ya0{bottom:228.111635px;}
.y9f{bottom:244.117864px;}
.y96{bottom:268.878324px;}
.ya7{bottom:305.905363px;}
.ya6{bottom:321.911592px;}
.ya5{bottom:337.917822px;}
.ya4{bottom:353.924051px;}
.ya3{bottom:369.930281px;}
.ya2{bottom:385.936510px;}
.y9e{bottom:413.245626px;}
.y1a{bottom:462.177710px;}
.y19{bottom:484.686191px;}
.y91{bottom:500.807814px;}
.y18{bottom:507.194671px;}
.y6e{bottom:516.777119px;}
.y90{bottom:523.316295px;}
.y34{bottom:528.221489px;}
.y17{bottom:529.703152px;}
.y86{bottom:529.934765px;}
.y6d{bottom:539.285599px;}
.y8f{bottom:545.824776px;}
.y33{bottom:550.729970px;}
.y16{bottom:552.211633px;}
.y85{bottom:552.443246px;}
.y6c{bottom:561.794080px;}
.y8e{bottom:568.333256px;}
.y32{bottom:573.238451px;}
.y15{bottom:574.720113px;}
.y84{bottom:574.951727px;}
.y6b{bottom:584.302561px;}
.y8d{bottom:590.841737px;}
.y31{bottom:595.746931px;}
.y14{bottom:597.228594px;}
.y83{bottom:597.460207px;}
.y6a{bottom:606.811041px;}
.y51{bottom:610.412395px;}
.y8c{bottom:613.350218px;}
.y30{bottom:618.255412px;}
.y13{bottom:619.737075px;}
.y82{bottom:619.968688px;}
.y69{bottom:629.319522px;}
.y50{bottom:632.920875px;}
.y8b{bottom:635.858698px;}
.y2f{bottom:640.763893px;}
.y12{bottom:642.245555px;}
.y81{bottom:642.477169px;}
.y68{bottom:651.828003px;}
.y4f{bottom:655.429356px;}
.y8a{bottom:658.367179px;}
.y2e{bottom:663.272373px;}
.y11{bottom:664.754036px;}
.y80{bottom:664.985649px;}
.y67{bottom:674.336483px;}
.y4e{bottom:677.937837px;}
.y89{bottom:680.875660px;}
.y2d{bottom:685.780854px;}
.y10{bottom:687.262517px;}
.y7f{bottom:687.494130px;}
.y66{bottom:696.844964px;}
.y4d{bottom:700.446317px;}
.y88{bottom:703.384140px;}
.y2c{bottom:708.289335px;}
.yf{bottom:709.770997px;}
.y7e{bottom:710.002611px;}
.y65{bottom:719.353445px;}
.y4c{bottom:722.954798px;}
.y87{bottom:725.892621px;}
.y2b{bottom:730.797815px;}
.ye{bottom:732.279478px;}
.y64{bottom:741.861925px;}
.y4b{bottom:745.463279px;}
.y2a{bottom:753.306296px;}
.yd{bottom:754.787959px;}
.y63{bottom:764.370406px;}
.y4a{bottom:767.971759px;}
.ya8{bottom:770.239386px;}
.y29{bottom:775.814777px;}
.yc{bottom:777.296439px;}
.y62{bottom:786.878887px;}
.y49{bottom:790.480240px;}
.y28{bottom:798.323257px;}
.yb{bottom:799.804920px;}
.y61{bottom:809.387367px;}
.y48{bottom:812.988721px;}
.y7d{bottom:813.211949px;}
.y27{bottom:820.831738px;}
.ya{bottom:822.313401px;}
.y60{bottom:831.895848px;}
.y47{bottom:835.497201px;}
.y7c{bottom:835.720430px;}
.y26{bottom:843.340219px;}
.y9{bottom:844.821881px;}
.y5f{bottom:854.404329px;}
.y46{bottom:858.005682px;}
.y7b{bottom:858.228911px;}
.y25{bottom:865.848699px;}
.y8{bottom:867.330362px;}
.y5e{bottom:876.912809px;}
.y45{bottom:880.514163px;}
.y7a{bottom:880.737391px;}
.y24{bottom:888.357180px;}
.y7{bottom:889.838843px;}
.y5d{bottom:899.421290px;}
.y44{bottom:903.022643px;}
.y79{bottom:903.245872px;}
.y23{bottom:910.865661px;}
.y6{bottom:912.347323px;}
.y5c{bottom:921.929771px;}
.y43{bottom:925.531124px;}
.y78{bottom:925.754353px;}
.y22{bottom:933.374141px;}
.y5{bottom:934.855804px;}
.y5b{bottom:944.438251px;}
.y42{bottom:948.039605px;}
.y77{bottom:948.262833px;}
.y21{bottom:955.882622px;}
.y4{bottom:957.364285px;}
.y5a{bottom:966.946732px;}
.y41{bottom:970.548085px;}
.y76{bottom:970.771314px;}
.y20{bottom:978.391103px;}
.y3{bottom:979.872765px;}
.y59{bottom:989.455213px;}
.y40{bottom:993.056566px;}
.y75{bottom:993.279795px;}
.y1f{bottom:1000.899583px;}
.y2{bottom:1002.381246px;}
.y58{bottom:1011.963693px;}
.y3f{bottom:1015.565047px;}
.y74{bottom:1015.788275px;}
.y1e{bottom:1023.408064px;}
.y57{bottom:1034.472174px;}
.y3e{bottom:1038.073527px;}
.y73{bottom:1038.296756px;}
.y36{bottom:1044.941151px;}
.y1d{bottom:1045.916545px;}
.y56{bottom:1056.980655px;}
.y3d{bottom:1060.582008px;}
.y72{bottom:1060.805237px;}
.y55{bottom:1079.489135px;}
.y3c{bottom:1083.090489px;}
.y71{bottom:1083.313717px;}
.y1c{bottom:1092.992359px;}
.y54{bottom:1101.997616px;}
.y3b{bottom:1105.598969px;}
.y70{bottom:1105.822198px;}
.y1b{bottom:1110.999143px;}
.y53{bottom:1124.506097px;}
.y6f{bottom:1128.330679px;}
.y3a{bottom:1146.039205px;}
.y52{bottom:1147.014577px;}
.y35{bottom:1168.408029px;}
.hc{height:15.033783px;}
.hb{height:22.751155px;}
.hf{height:24.187179px;}
.h10{height:34.161222px;}
.h11{height:42.016352px;}
.h4{height:43.918547px;}
.hd{height:48.786186px;}
.h7{height:49.686300px;}
.h8{height:52.506658px;}
.he{height:53.639998px;}
.h3{height:53.653825px;}
.h9{height:57.621710px;}
.ha{height:57.745506px;}
.h6{height:59.638470px;}
.h5{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:43.002920px;}
.x4{left:45.390362px;}
.xa{left:47.967125px;}
.xe{left:49.032541px;}
.xd{left:53.391773px;}
.xb{left:119.519995px;}
.xc{left:127.283452px;}
.x3{left:209.587566px;}
.x2{left:468.686187px;}
.x5{left:469.707957px;}
.x6{left:470.966816px;}
.x9{left:496.419632px;}
.x8{left:618.659038px;}
.x7{left:620.563834px;}
@media print{
.v1{vertical-align:-30.372492pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-19.591382pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws6{word-spacing:-13.335024pt;}
.ws8{word-spacing:-10.670820pt;}
.ws7{word-spacing:-9.337494pt;}
.ws4{word-spacing:-6.218711pt;}
.ws5{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:1141.614049pt;}
._d{margin-left:-0.890055pt;}
._17{width:1.625544pt;}
._1d{width:2.560296pt;}
._15{width:3.609158pt;}
._2{width:4.658622pt;}
._1a{width:5.731415pt;}
._6{width:6.828167pt;}
._16{width:7.884949pt;}
._7{width:8.828843pt;}
._29{width:9.769106pt;}
._9{width:11.025574pt;}
._1c{width:12.319813pt;}
._4{width:13.244143pt;}
._a{width:16.298409pt;}
._11{width:17.872651pt;}
._23{width:18.953124pt;}
._1f{width:20.476350pt;}
._13{width:22.193032pt;}
._0{width:23.186237pt;}
._10{width:24.452690pt;}
._19{width:25.534903pt;}
._26{width:27.303435pt;}
._b{width:28.369694pt;}
._e{width:29.329513pt;}
._25{width:31.021072pt;}
._8{width:31.994731pt;}
._c{width:33.772205pt;}
._27{width:34.862429pt;}
._2a{width:36.425282pt;}
._2b{width:37.603835pt;}
._12{width:38.505121pt;}
._f{width:39.489055pt;}
._21{width:41.071380pt;}
._24{width:44.305194pt;}
._28{width:45.242134pt;}
._2c{width:46.554323pt;}
._5{width:51.504145pt;}
._22{width:53.243520pt;}
._18{width:54.232095pt;}
._1b{width:59.245402pt;}
._1e{width:60.446138pt;}
._20{width:64.326546pt;}
._3{width:78.917019pt;}
._1{width:97.271588pt;}
._14{width:99.249354pt;}
.fs6{font-size:16.600451pt;}
.fs5{font-size:24.874844pt;}
.fs7{font-size:26.444913pt;}
.fs8{font-size:37.349977pt;}
.fs9{font-size:42.683279pt;}
.fs1{font-size:48.018092pt;}
.fs4{font-size:53.340097pt;}
.fs0{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs2{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y9c{bottom:4.981382pt;}
.y9b{bottom:13.796353pt;}
.y9a{bottom:22.611324pt;}
.y99{bottom:31.426295pt;}
.y98{bottom:40.241266pt;}
.y97{bottom:56.440016pt;}
.y94{bottom:61.636777pt;}
.y93{bottom:77.953160pt;}
.y95{bottom:78.729313pt;}
.y92{bottom:93.187175pt;}
.y39{bottom:94.433839pt;}
.y37{bottom:94.570481pt;}
.y38{bottom:112.440624pt;}
.y9d{bottom:157.957340pt;}
.ya1{bottom:188.538138pt;}
.ya0{bottom:202.765897pt;}
.y9f{bottom:216.993657pt;}
.y96{bottom:239.002955pt;}
.ya7{bottom:271.915878pt;}
.ya6{bottom:286.143637pt;}
.ya5{bottom:300.371397pt;}
.ya4{bottom:314.599157pt;}
.ya3{bottom:328.826916pt;}
.ya2{bottom:343.054676pt;}
.y9e{bottom:367.329445pt;}
.y1a{bottom:410.824631pt;}
.y19{bottom:430.832170pt;}
.y91{bottom:445.162502pt;}
.y18{bottom:450.839708pt;}
.y6e{bottom:459.357439pt;}
.y90{bottom:465.170040pt;}
.y34{bottom:469.530213pt;}
.y17{bottom:470.847246pt;}
.y86{bottom:471.053125pt;}
.y6d{bottom:479.364977pt;}
.y8f{bottom:485.177579pt;}
.y33{bottom:489.537751pt;}
.y16{bottom:490.854785pt;}
.y85{bottom:491.060663pt;}
.y6c{bottom:499.372516pt;}
.y8e{bottom:505.185117pt;}
.y32{bottom:509.545289pt;}
.y15{bottom:510.862323pt;}
.y84{bottom:511.068201pt;}
.y6b{bottom:519.380054pt;}
.y8d{bottom:525.192655pt;}
.y31{bottom:529.552828pt;}
.y14{bottom:530.869861pt;}
.y83{bottom:531.075740pt;}
.y6a{bottom:539.387592pt;}
.y51{bottom:542.588795pt;}
.y8c{bottom:545.200194pt;}
.y30{bottom:549.560366pt;}
.y13{bottom:550.877400pt;}
.y82{bottom:551.083278pt;}
.y69{bottom:559.395131pt;}
.y50{bottom:562.596334pt;}
.y8b{bottom:565.207732pt;}
.y2f{bottom:569.567905pt;}
.y12{bottom:570.884938pt;}
.y81{bottom:571.090817pt;}
.y68{bottom:579.402669pt;}
.y4f{bottom:582.603872pt;}
.y8a{bottom:585.215270pt;}
.y2e{bottom:589.575443pt;}
.y11{bottom:590.892476pt;}
.y80{bottom:591.098355pt;}
.y67{bottom:599.410207pt;}
.y4e{bottom:602.611410pt;}
.y89{bottom:605.222809pt;}
.y2d{bottom:609.582981pt;}
.y10{bottom:610.900015pt;}
.y7f{bottom:611.105893pt;}
.y66{bottom:619.417746pt;}
.y4d{bottom:622.618949pt;}
.y88{bottom:625.230347pt;}
.y2c{bottom:629.590520pt;}
.yf{bottom:630.907553pt;}
.y7e{bottom:631.113432pt;}
.y65{bottom:639.425284pt;}
.y4c{bottom:642.626487pt;}
.y87{bottom:645.237885pt;}
.y2b{bottom:649.598058pt;}
.ye{bottom:650.915092pt;}
.y64{bottom:659.432822pt;}
.y4b{bottom:662.634026pt;}
.y2a{bottom:669.605596pt;}
.yd{bottom:670.922630pt;}
.y63{bottom:679.440361pt;}
.y4a{bottom:682.641564pt;}
.ya8{bottom:684.657232pt;}
.y29{bottom:689.613135pt;}
.yc{bottom:690.930168pt;}
.y62{bottom:699.447899pt;}
.y49{bottom:702.649102pt;}
.y28{bottom:709.620673pt;}
.yb{bottom:710.937707pt;}
.y61{bottom:719.455438pt;}
.y48{bottom:722.656641pt;}
.y7d{bottom:722.855066pt;}
.y27{bottom:729.628212pt;}
.ya{bottom:730.945245pt;}
.y60{bottom:739.462976pt;}
.y47{bottom:742.664179pt;}
.y7c{bottom:742.862605pt;}
.y26{bottom:749.635750pt;}
.y9{bottom:750.952783pt;}
.y5f{bottom:759.470514pt;}
.y46{bottom:762.671717pt;}
.y7b{bottom:762.870143pt;}
.y25{bottom:769.643288pt;}
.y8{bottom:770.960322pt;}
.y5e{bottom:779.478053pt;}
.y45{bottom:782.679256pt;}
.y7a{bottom:782.877681pt;}
.y24{bottom:789.650827pt;}
.y7{bottom:790.967860pt;}
.y5d{bottom:799.485591pt;}
.y44{bottom:802.686794pt;}
.y79{bottom:802.885220pt;}
.y23{bottom:809.658365pt;}
.y6{bottom:810.975399pt;}
.y5c{bottom:819.493129pt;}
.y43{bottom:822.694332pt;}
.y78{bottom:822.892758pt;}
.y22{bottom:829.665903pt;}
.y5{bottom:830.982937pt;}
.y5b{bottom:839.500668pt;}
.y42{bottom:842.701871pt;}
.y77{bottom:842.900296pt;}
.y21{bottom:849.673442pt;}
.y4{bottom:850.990475pt;}
.y5a{bottom:859.508206pt;}
.y41{bottom:862.709409pt;}
.y76{bottom:862.907835pt;}
.y20{bottom:869.680980pt;}
.y3{bottom:870.998014pt;}
.y59{bottom:879.515744pt;}
.y40{bottom:882.716948pt;}
.y75{bottom:882.915373pt;}
.y1f{bottom:889.688518pt;}
.y2{bottom:891.005552pt;}
.y58{bottom:899.523283pt;}
.y3f{bottom:902.724486pt;}
.y74{bottom:902.922911pt;}
.y1e{bottom:909.696057pt;}
.y57{bottom:919.530821pt;}
.y3e{bottom:922.732024pt;}
.y73{bottom:922.930450pt;}
.y36{bottom:928.836578pt;}
.y1d{bottom:929.703595pt;}
.y56{bottom:939.538360pt;}
.y3d{bottom:942.739563pt;}
.y72{bottom:942.937988pt;}
.y55{bottom:959.545898pt;}
.y3c{bottom:962.747101pt;}
.y71{bottom:962.945527pt;}
.y1c{bottom:971.548763pt;}
.y54{bottom:979.553436pt;}
.y3b{bottom:982.754639pt;}
.y70{bottom:982.953065pt;}
.y1b{bottom:987.554794pt;}
.y53{bottom:999.560975pt;}
.y6f{bottom:1002.960603pt;}
.y3a{bottom:1018.701515pt;}
.y52{bottom:1019.568513pt;}
.y35{bottom:1038.584915pt;}
.hc{height:13.363363pt;}
.hb{height:20.223249pt;}
.hf{height:21.499714pt;}
.h10{height:30.365531pt;}
.h11{height:37.347869pt;}
.h4{height:39.038709pt;}
.hd{height:43.365499pt;}
.h7{height:44.165600pt;}
.h8{height:46.672585pt;}
.he{height:47.679998pt;}
.h3{height:47.692289pt;}
.h9{height:51.219298pt;}
.ha{height:51.329339pt;}
.h6{height:53.011974pt;}
.h5{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:38.224818pt;}
.x4{left:40.346988pt;}
.xa{left:42.637445pt;}
.xe{left:43.584481pt;}
.xd{left:47.459354pt;}
.xb{left:106.239996pt;}
.xc{left:113.140846pt;}
.x3{left:186.300059pt;}
.x2{left:416.609944pt;}
.x5{left:417.518184pt;}
.x6{left:418.637170pt;}
.x9{left:441.261895pt;}
.x8{left:549.919145pt;}
.x7{left:551.612297pt;}
}




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