
    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_4db031f95c0955ca3bea9318.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_948fe09066e6774a6e0c187e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_a3738acf0d8a717f775ac290.woff')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_08b023042090198fdb987e97.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_bf62606bfd07d1900346e273.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986816;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_4176298ed48cec6ab19eff0b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.700195;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_238eee47c41da8a9af969e8f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.869629;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_bc2b79e314d08027a9fa0146.woff')format("woff");}.ff8{font-family:ff8;line-height:0.975098;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_b02f89a0624935ae86ee7b21.woff')format("woff");}.ff9{font-family:ff9;line-height:0.982910;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_92968efdcbe37038515729f3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.728027;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:ffb;src:url('chunks/assets/font_bfdba9318abe85f2eb6a836c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.764160;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);}
.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;}
}
.wsb{word-spacing:-18.216000px;}
.ws1{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.796000px;}
.ws4{word-spacing:-8.424000px;}
.ws0{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:1.512000px;}
.ws6{word-spacing:5.688000px;}
.ws8{word-spacing:7.062000px;}
.wsc{word-spacing:10.824000px;}
.ws7{word-spacing:11.088000px;}
.wsa{word-spacing:11.946000px;}
.ws9{word-spacing:14.058000px;}
._16{margin-left:-9.763200px;}
._a{margin-left:-8.438400px;}
._11{margin-left:-7.394400px;}
._6{margin-left:-5.464800px;}
._0{margin-left:-3.486000px;}
._5{margin-left:-1.483200px;}
._1{width:1.587241px;}
._7{width:3.312000px;}
._9{width:4.760400px;}
._8{width:5.911200px;}
._10{width:7.768800px;}
._18{width:9.028800px;}
._b{width:10.303200px;}
._e{width:11.368800px;}
._f{width:12.607200px;}
._13{width:14.608800px;}
._d{width:15.667200px;}
._c{width:17.452800px;}
._20{width:18.518400px;}
._1d{width:21.418800px;}
._1c{width:22.435200px;}
._4{width:24.576000px;}
._1b{width:25.735200px;}
._23{width:26.946000px;}
._17{width:28.965600px;}
._15{width:30.218400px;}
._1a{width:31.989600px;}
._12{width:33.638400px;}
._14{width:38.116800px;}
._19{width:39.700800px;}
._1e{width:50.342400px;}
._1f{width:51.962400px;}
._22{width:53.526359px;}
._21{width:54.535200px;}
._2{width:150.341439px;}
._3{width:182.799226px;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:56.879400px;}
.y31{bottom:73.079400px;}
.y3{bottom:81.772500px;}
.y7f{bottom:135.596400px;}
.y58{bottom:147.708900px;}
.y23{bottom:149.894400px;}
.y7e{bottom:156.600900px;}
.y22{bottom:166.094400px;}
.y57{bottom:174.708900px;}
.y7d{bottom:177.605400px;}
.ya7{bottom:186.324000px;}
.y56{bottom:201.708900px;}
.ya6{bottom:205.827000px;}
.y7c{bottom:211.364400px;}
.ya5{bottom:225.330000px;}
.y55{bottom:228.708900px;}
.y7b{bottom:232.368900px;}
.y7a{bottom:253.373400px;}
.y21{bottom:255.177300px;}
.y54{bottom:270.702900px;}
.y20{bottom:282.177300px;}
.y79{bottom:287.132400px;}
.ya4{bottom:290.228550px;}
.y53{bottom:297.702900px;}
.ya3{bottom:309.728550px;}
.y78{bottom:320.891400px;}
.y1f{bottom:324.171300px;}
.y52{bottom:324.702900px;}
.ya2{bottom:329.228550px;}
.y77{bottom:341.895900px;}
.y1e{bottom:351.171300px;}
.y51{bottom:351.702900px;}
.ya1{bottom:355.103550px;}
.y76{bottom:362.900400px;}
.ya0{bottom:374.603550px;}
.y1d{bottom:378.171300px;}
.y50{bottom:378.702900px;}
.y9f{bottom:394.103550px;}
.y75{bottom:396.659400px;}
.y1c{bottom:405.171300px;}
.y4f{bottom:405.702900px;}
.y74{bottom:417.663900px;}
.y9e{bottom:419.978550px;}
.y1b{bottom:432.171300px;}
.y4e{bottom:432.702900px;}
.y73{bottom:438.668400px;}
.y9d{bottom:439.478550px;}
.y9c{bottom:458.978550px;}
.y1a{bottom:459.171300px;}
.y4d{bottom:459.702900px;}
.y72{bottom:472.427400px;}
.y9b{bottom:484.853550px;}
.y19{bottom:486.171300px;}
.y4c{bottom:486.702900px;}
.y9a{bottom:504.353550px;}
.y71{bottom:506.186400px;}
.y18{bottom:513.171300px;}
.y4b{bottom:513.702900px;}
.y99{bottom:523.853550px;}
.y70{bottom:527.190900px;}
.y4a{bottom:540.702900px;}
.y98{bottom:549.728550px;}
.y17{bottom:555.165300px;}
.y6f{bottom:555.714900px;}
.y49{bottom:567.702900px;}
.y97{bottom:569.228550px;}
.y16{bottom:582.165300px;}
.y6e{bottom:582.714900px;}
.y96{bottom:588.728550px;}
.y30{bottom:590.655900px;}
.y95{bottom:608.228550px;}
.y15{bottom:609.165300px;}
.y48{bottom:609.696900px;}
.y6d{bottom:609.714900px;}
.y2f{bottom:611.108400px;}
.y94{bottom:634.103550px;}
.y14{bottom:636.165300px;}
.y47{bottom:636.696900px;}
.y6c{bottom:636.714900px;}
.y93{bottom:653.603550px;}
.y13{bottom:663.165300px;}
.y46{bottom:663.696900px;}
.y6b{bottom:663.714900px;}
.y92{bottom:673.103550px;}
.y12{bottom:690.165300px;}
.y45{bottom:690.696900px;}
.y6a{bottom:690.714900px;}
.y91{bottom:692.603550px;}
.y2e{bottom:692.918400px;}
.y2d{bottom:713.370900px;}
.y11{bottom:717.165300px;}
.y44{bottom:717.696900px;}
.y69{bottom:717.714900px;}
.y90{bottom:718.478550px;}
.y2c{bottom:733.823400px;}
.y8f{bottom:737.978550px;}
.y10{bottom:744.165300px;}
.y43{bottom:744.696900px;}
.y68{bottom:744.714900px;}
.y2b{bottom:754.275900px;}
.y8e{bottom:757.478550px;}
.yf{bottom:771.165300px;}
.y42{bottom:771.696900px;}
.y67{bottom:771.714900px;}
.y8d{bottom:783.353550px;}
.y2a{bottom:795.180900px;}
.y41{bottom:798.696900px;}
.y66{bottom:798.714900px;}
.y8c{bottom:802.853550px;}
.y29{bottom:815.633400px;}
.yd{bottom:817.053750px;}
.ye{bottom:818.421150px;}
.y8b{bottom:822.353550px;}
.y40{bottom:825.696900px;}
.y65{bottom:825.714900px;}
.y28{bottom:836.085900px;}
.y8a{bottom:841.853550px;}
.y27{bottom:852.285900px;}
.y3f{bottom:852.696900px;}
.y64{bottom:852.714900px;}
.y26{bottom:868.485900px;}
.y89{bottom:869.829900px;}
.y3e{bottom:879.696900px;}
.y63{bottom:879.714900px;}
.y25{bottom:884.685900px;}
.y88{bottom:902.087400px;}
.y24{bottom:905.138400px;}
.y3d{bottom:906.696900px;}
.y62{bottom:906.714900px;}
.yc{bottom:922.942350px;}
.y87{bottom:923.091900px;}
.y61{bottom:933.714900px;}
.y3c{bottom:948.690900px;}
.y86{bottom:956.850900px;}
.yb{bottom:971.130750px;}
.y3b{bottom:975.690900px;}
.y60{bottom:975.708900px;}
.y85{bottom:990.609900px;}
.y3a{bottom:1002.690900px;}
.y5f{bottom:1002.708900px;}
.y9{bottom:1008.136350px;}
.y84{bottom:1024.368900px;}
.y39{bottom:1029.690900px;}
.y5e{bottom:1029.708900px;}
.y8{bottom:1040.536350px;}
.y6{bottom:1053.546450px;}
.y38{bottom:1056.690900px;}
.y5d{bottom:1056.708900px;}
.y83{bottom:1058.127900px;}
.y5{bottom:1069.746450px;}
.y7{bottom:1072.936350px;}
.y37{bottom:1083.690900px;}
.y5c{bottom:1083.708900px;}
.y82{bottom:1091.886900px;}
.y36{bottom:1110.690900px;}
.y5b{bottom:1110.708900px;}
.ya{bottom:1123.179750px;}
.y81{bottom:1125.645900px;}
.y35{bottom:1137.690900px;}
.y5a{bottom:1137.708900px;}
.y80{bottom:1159.404900px;}
.y34{bottom:1164.690900px;}
.y59{bottom:1164.708900px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y33{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.ha{height:36.093750px;}
.h6{height:39.972656px;}
.h10{height:40.394531px;}
.hf{height:40.605469px;}
.h4{height:42.949219px;}
.h3{height:44.414062px;}
.h15{height:44.882812px;}
.h14{height:45.117188px;}
.h11{height:46.300781px;}
.h5{height:47.277398px;}
.h13{height:49.371094px;}
.hc{height:49.628906px;}
.h8{height:50.414062px;}
.h9{height:51.445312px;}
.h12{height:51.539062px;}
.hd{height:53.296875px;}
.he{height:53.859375px;}
.hb{height:72.023438px;}
.h7{height:81.210938px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:4.589700px;}
.x10{left:8.086200px;}
.xe{left:16.537200px;}
.xf{left:18.764700px;}
.x15{left:21.599700px;}
.x6{left:36.976200px;}
.x13{left:43.105200px;}
.xd{left:51.718200px;}
.x5{left:63.044700px;}
.x16{left:66.595200px;}
.x17{left:72.283350px;}
.x12{left:83.173200px;}
.x11{left:84.482700px;}
.x19{left:90.779550px;}
.xc{left:184.274700px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.xb{left:234.862200px;}
.xa{left:242.046600px;}
.x4{left:308.436300px;}
.x1{left:408.040350px;}
.x18{left:461.543550px;}
.x8{left:764.209050px;}
.x3{left:791.578500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws1{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.152000pt;}
.ws4{word-spacing:-7.488000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:1.344000pt;}
.ws6{word-spacing:5.056000pt;}
.ws8{word-spacing:6.277333pt;}
.wsc{word-spacing:9.621333pt;}
.ws7{word-spacing:9.856000pt;}
.wsa{word-spacing:10.618667pt;}
.ws9{word-spacing:12.496000pt;}
._16{margin-left:-8.678400pt;}
._a{margin-left:-7.500800pt;}
._11{margin-left:-6.572800pt;}
._6{margin-left:-4.857600pt;}
._0{margin-left:-3.098667pt;}
._5{margin-left:-1.318400pt;}
._1{width:1.410881pt;}
._7{width:2.944000pt;}
._9{width:4.231467pt;}
._8{width:5.254400pt;}
._10{width:6.905600pt;}
._18{width:8.025600pt;}
._b{width:9.158400pt;}
._e{width:10.105600pt;}
._f{width:11.206400pt;}
._13{width:12.985600pt;}
._d{width:13.926400pt;}
._c{width:15.513600pt;}
._20{width:16.460800pt;}
._1d{width:19.038933pt;}
._1c{width:19.942400pt;}
._4{width:21.845333pt;}
._1b{width:22.875733pt;}
._23{width:23.952000pt;}
._17{width:25.747200pt;}
._15{width:26.860800pt;}
._1a{width:28.435200pt;}
._12{width:29.900800pt;}
._14{width:33.881600pt;}
._19{width:35.289600pt;}
._1e{width:44.748800pt;}
._1f{width:46.188800pt;}
._22{width:47.578985pt;}
._21{width:48.475733pt;}
._2{width:133.636835pt;}
._3{width:162.488201pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:50.559467pt;}
.y31{bottom:64.959467pt;}
.y3{bottom:72.686667pt;}
.y7f{bottom:120.530133pt;}
.y58{bottom:131.296800pt;}
.y23{bottom:133.239467pt;}
.y7e{bottom:139.200800pt;}
.y22{bottom:147.639467pt;}
.y57{bottom:155.296800pt;}
.y7d{bottom:157.871467pt;}
.ya7{bottom:165.621333pt;}
.y56{bottom:179.296800pt;}
.ya6{bottom:182.957333pt;}
.y7c{bottom:187.879467pt;}
.ya5{bottom:200.293333pt;}
.y55{bottom:203.296800pt;}
.y7b{bottom:206.550133pt;}
.y7a{bottom:225.220800pt;}
.y21{bottom:226.824267pt;}
.y54{bottom:240.624800pt;}
.y20{bottom:250.824267pt;}
.y79{bottom:255.228800pt;}
.ya4{bottom:257.980933pt;}
.y53{bottom:264.624800pt;}
.ya3{bottom:275.314267pt;}
.y78{bottom:285.236800pt;}
.y1f{bottom:288.152267pt;}
.y52{bottom:288.624800pt;}
.ya2{bottom:292.647600pt;}
.y77{bottom:303.907467pt;}
.y1e{bottom:312.152267pt;}
.y51{bottom:312.624800pt;}
.ya1{bottom:315.647600pt;}
.y76{bottom:322.578133pt;}
.ya0{bottom:332.980933pt;}
.y1d{bottom:336.152267pt;}
.y50{bottom:336.624800pt;}
.y9f{bottom:350.314267pt;}
.y75{bottom:352.586133pt;}
.y1c{bottom:360.152267pt;}
.y4f{bottom:360.624800pt;}
.y74{bottom:371.256800pt;}
.y9e{bottom:373.314267pt;}
.y1b{bottom:384.152267pt;}
.y4e{bottom:384.624800pt;}
.y73{bottom:389.927467pt;}
.y9d{bottom:390.647600pt;}
.y9c{bottom:407.980933pt;}
.y1a{bottom:408.152267pt;}
.y4d{bottom:408.624800pt;}
.y72{bottom:419.935467pt;}
.y9b{bottom:430.980933pt;}
.y19{bottom:432.152267pt;}
.y4c{bottom:432.624800pt;}
.y9a{bottom:448.314267pt;}
.y71{bottom:449.943467pt;}
.y18{bottom:456.152267pt;}
.y4b{bottom:456.624800pt;}
.y99{bottom:465.647600pt;}
.y70{bottom:468.614133pt;}
.y4a{bottom:480.624800pt;}
.y98{bottom:488.647600pt;}
.y17{bottom:493.480267pt;}
.y6f{bottom:493.968800pt;}
.y49{bottom:504.624800pt;}
.y97{bottom:505.980933pt;}
.y16{bottom:517.480267pt;}
.y6e{bottom:517.968800pt;}
.y96{bottom:523.314267pt;}
.y30{bottom:525.027467pt;}
.y95{bottom:540.647600pt;}
.y15{bottom:541.480267pt;}
.y48{bottom:541.952800pt;}
.y6d{bottom:541.968800pt;}
.y2f{bottom:543.207467pt;}
.y94{bottom:563.647600pt;}
.y14{bottom:565.480267pt;}
.y47{bottom:565.952800pt;}
.y6c{bottom:565.968800pt;}
.y93{bottom:580.980933pt;}
.y13{bottom:589.480267pt;}
.y46{bottom:589.952800pt;}
.y6b{bottom:589.968800pt;}
.y92{bottom:598.314267pt;}
.y12{bottom:613.480267pt;}
.y45{bottom:613.952800pt;}
.y6a{bottom:613.968800pt;}
.y91{bottom:615.647600pt;}
.y2e{bottom:615.927467pt;}
.y2d{bottom:634.107467pt;}
.y11{bottom:637.480267pt;}
.y44{bottom:637.952800pt;}
.y69{bottom:637.968800pt;}
.y90{bottom:638.647600pt;}
.y2c{bottom:652.287467pt;}
.y8f{bottom:655.980933pt;}
.y10{bottom:661.480267pt;}
.y43{bottom:661.952800pt;}
.y68{bottom:661.968800pt;}
.y2b{bottom:670.467467pt;}
.y8e{bottom:673.314267pt;}
.yf{bottom:685.480267pt;}
.y42{bottom:685.952800pt;}
.y67{bottom:685.968800pt;}
.y8d{bottom:696.314267pt;}
.y2a{bottom:706.827467pt;}
.y41{bottom:709.952800pt;}
.y66{bottom:709.968800pt;}
.y8c{bottom:713.647600pt;}
.y29{bottom:725.007467pt;}
.yd{bottom:726.270000pt;}
.ye{bottom:727.485467pt;}
.y8b{bottom:730.980933pt;}
.y40{bottom:733.952800pt;}
.y65{bottom:733.968800pt;}
.y28{bottom:743.187467pt;}
.y8a{bottom:748.314267pt;}
.y27{bottom:757.587467pt;}
.y3f{bottom:757.952800pt;}
.y64{bottom:757.968800pt;}
.y26{bottom:771.987467pt;}
.y89{bottom:773.182133pt;}
.y3e{bottom:781.952800pt;}
.y63{bottom:781.968800pt;}
.y25{bottom:786.387467pt;}
.y88{bottom:801.855467pt;}
.y24{bottom:804.567467pt;}
.y3d{bottom:805.952800pt;}
.y62{bottom:805.968800pt;}
.yc{bottom:820.393200pt;}
.y87{bottom:820.526133pt;}
.y61{bottom:829.968800pt;}
.y3c{bottom:843.280800pt;}
.y86{bottom:850.534133pt;}
.yb{bottom:863.227333pt;}
.y3b{bottom:867.280800pt;}
.y60{bottom:867.296800pt;}
.y85{bottom:880.542133pt;}
.y3a{bottom:891.280800pt;}
.y5f{bottom:891.296800pt;}
.y9{bottom:896.121200pt;}
.y84{bottom:910.550133pt;}
.y39{bottom:915.280800pt;}
.y5e{bottom:915.296800pt;}
.y8{bottom:924.921200pt;}
.y6{bottom:936.485733pt;}
.y38{bottom:939.280800pt;}
.y5d{bottom:939.296800pt;}
.y83{bottom:940.558133pt;}
.y5{bottom:950.885733pt;}
.y7{bottom:953.721200pt;}
.y37{bottom:963.280800pt;}
.y5c{bottom:963.296800pt;}
.y82{bottom:970.566133pt;}
.y36{bottom:987.280800pt;}
.y5b{bottom:987.296800pt;}
.ya{bottom:998.382000pt;}
.y81{bottom:1000.574133pt;}
.y35{bottom:1011.280800pt;}
.y5a{bottom:1011.296800pt;}
.y80{bottom:1030.582133pt;}
.y34{bottom:1035.280800pt;}
.y59{bottom:1035.296800pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y33{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.ha{height:32.083333pt;}
.h6{height:35.531250pt;}
.h10{height:35.906250pt;}
.hf{height:36.093750pt;}
.h4{height:38.177083pt;}
.h3{height:39.479167pt;}
.h15{height:39.895833pt;}
.h14{height:40.104167pt;}
.h11{height:41.156250pt;}
.h5{height:42.024354pt;}
.h13{height:43.885417pt;}
.hc{height:44.114583pt;}
.h8{height:44.812500pt;}
.h9{height:45.729167pt;}
.h12{height:45.812500pt;}
.hd{height:47.375000pt;}
.he{height:47.875000pt;}
.hb{height:64.020833pt;}
.h7{height:72.187500pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.079733pt;}
.x10{left:7.187733pt;}
.xe{left:14.699733pt;}
.xf{left:16.679733pt;}
.x15{left:19.199733pt;}
.x6{left:32.867733pt;}
.x13{left:38.315733pt;}
.xd{left:45.971733pt;}
.x5{left:56.039733pt;}
.x16{left:59.195733pt;}
.x17{left:64.251867pt;}
.x12{left:73.931733pt;}
.x11{left:75.095733pt;}
.x19{left:80.692933pt;}
.xc{left:163.799733pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.xb{left:208.766400pt;}
.xa{left:215.152533pt;}
.x4{left:274.165600pt;}
.x1{left:362.702533pt;}
.x18{left:410.260933pt;}
.x8{left:679.296933pt;}
.x3{left:703.625333pt;}
}




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