
    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_4d305c41ece32c13225bc314.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_38588fed697dac859839464d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_26c526797c5fd3c996cc94a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_838170aec68b864b349f1ae8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_1c694f01a94a6003859065a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_2aaecb4050453d77e6c1f791.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694336;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(0.254850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254850,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-128.340000px;}
.v2{vertical-align:-84.960000px;}
.v3{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.414600px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.396000px;}
.ls2{letter-spacing:84.581280px;}
.ls0{letter-spacing:87.984000px;}
.ls8{letter-spacing:1549.884000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws2{word-spacing:-53.442720px;}
.ws0{word-spacing:-33.533520px;}
.ws6{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.016000px;}
.ws8{word-spacing:-15.228000px;}
.ws7{word-spacing:-15.138000px;}
.ws4{word-spacing:-13.410720px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-25.776480px;}
._11{margin-left:-6.673612px;}
._a{margin-left:-3.361680px;}
._10{margin-left:-2.139840px;}
._2{margin-left:-1.059840px;}
._9{width:1.203840px;}
._8{width:2.343840px;}
._7{width:55.008000px;}
._e{width:78.516000px;}
._c{width:278.028000px;}
._d{width:290.556000px;}
._f{width:322.668000px;}
._4{width:361.056000px;}
._5{width:362.316000px;}
._b{width:370.599840px;}
._3{width:390.996000px;}
._0{width:507.756960px;}
._1{width:535.644240px;}
._12{width:2360.724000px;}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(255,255,0);}
.fc3{color:rgb(118,146,60);}
.fc4{color:transparent;}
.fc1{color:rgb(79,98,40);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs8{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:55.613437px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:1.080000px;}
.yd3{bottom:1.260000px;}
.y8f{bottom:2.700000px;}
.y64{bottom:2.872500px;}
.y91{bottom:2.880000px;}
.y2b{bottom:3.600000px;}
.yc2{bottom:3.825481px;}
.y9a{bottom:4.132500px;}
.yf0{bottom:4.665000px;}
.y62{bottom:8.460000px;}
.yc3{bottom:10.118980px;}
.y2e{bottom:10.440000px;}
.yc0{bottom:11.353006px;}
.ya9{bottom:11.880000px;}
.yae{bottom:12.960000px;}
.ya5{bottom:19.620000px;}
.ya2{bottom:19.800000px;}
.y99{bottom:25.192500px;}
.yb9{bottom:27.165000px;}
.ybf{bottom:30.315214px;}
.ya8{bottom:32.580000px;}
.yad{bottom:33.660000px;}
.y98{bottom:45.526500px;}
.yb8{bottom:47.865000px;}
.y2d{bottom:63.390000px;}
.y97{bottom:66.226500px;}
.y60{bottom:66.636000px;}
.yb7{bottom:68.565000px;}
.y8d{bottom:70.956000px;}
.y29{bottom:71.316000px;}
.ybd{bottom:78.156000px;}
.y96{bottom:86.926500px;}
.yb6{bottom:89.265000px;}
.y8c{bottom:94.176000px;}
.y28{bottom:94.536000px;}
.ybc{bottom:98.856000px;}
.y5f{bottom:101.016000px;}
.y92{bottom:106.603500px;}
.y95{bottom:107.626500px;}
.yee{bottom:110.196000px;}
.ybb{bottom:119.556000px;}
.y63{bottom:127.303500px;}
.y94{bottom:128.326500px;}
.y8b{bottom:128.736000px;}
.y27{bottom:128.916000px;}
.y5e{bottom:135.576000px;}
.yba{bottom:140.256000px;}
.yed{bottom:148.896000px;}
.y93{bottom:149.566500px;}
.y8a{bottom:163.110000px;}
.y26{bottom:163.470000px;}
.yb5{bottom:163.665000px;}
.y5d{bottom:170.130000px;}
.yec{bottom:187.770000px;}
.y89{bottom:197.670000px;}
.y25{bottom:198.030000px;}
.y5c{bottom:204.510000px;}
.yeb{bottom:226.470000px;}
.y88{bottom:232.230000px;}
.y24{bottom:232.410000px;}
.y5b{bottom:239.070000px;}
.yef{bottom:243.405000px;}
.yea{bottom:265.350000px;}
.y87{bottom:266.610000px;}
.y23{bottom:266.970000px;}
.y5a{bottom:271.110000px;}
.yb4{bottom:280.335000px;}
.ye9{bottom:286.275000px;}
.y59{bottom:291.855000px;}
.y86{bottom:301.215000px;}
.y22{bottom:301.575000px;}
.ye8{bottom:306.975000px;}
.y58{bottom:312.555000px;}
.ye7{bottom:327.675000px;}
.y57{bottom:333.255000px;}
.y21{bottom:333.615000px;}
.y85{bottom:335.775000px;}
.yb3{bottom:340.275000px;}
.ye6{bottom:348.375000px;}
.y56{bottom:353.955000px;}
.y20{bottom:354.315000px;}
.ye5{bottom:369.075000px;}
.y84{bottom:370.155000px;}
.y55{bottom:374.655000px;}
.y1f{bottom:375.015000px;}
.ye4{bottom:389.775000px;}
.y54{bottom:395.355000px;}
.y1e{bottom:395.715000px;}
.yb2{bottom:400.215000px;}
.y83{bottom:404.715000px;}
.ye3{bottom:410.475000px;}
.y53{bottom:416.055000px;}
.y1d{bottom:416.415000px;}
.ye2{bottom:431.175000px;}
.y90{bottom:433.875000px;}
.y52{bottom:436.755000px;}
.y1c{bottom:437.115000px;}
.y82{bottom:439.275000px;}
.yb1{bottom:447.375000px;}
.ye1{bottom:451.875000px;}
.y51{bottom:457.455000px;}
.y1b{bottom:457.635000px;}
.ye0{bottom:472.575000px;}
.y81{bottom:473.655000px;}
.y50{bottom:478.155000px;}
.y1a{bottom:478.335000px;}
.ydf{bottom:493.275000px;}
.y4f{bottom:498.855000px;}
.y19{bottom:499.035000px;}
.y80{bottom:508.215000px;}
.yb0{bottom:508.395000px;}
.yde{bottom:513.975000px;}
.y4e{bottom:519.555000px;}
.y18{bottom:519.735000px;}
.ydd{bottom:534.675000px;}
.y4d{bottom:540.255000px;}
.y17{bottom:540.435000px;}
.y7f{bottom:542.595000px;}
.ydc{bottom:555.375000px;}
.y4c{bottom:560.985000px;}
.y16{bottom:562.425000px;}
.yaf{bottom:568.365000px;}
.y7e{bottom:574.665000px;}
.ydb{bottom:576.105000px;}
.y4b{bottom:581.685000px;}
.y15{bottom:584.385000px;}
.y7d{bottom:595.365000px;}
.yda{bottom:596.805000px;}
.y4a{bottom:602.385000px;}
.y7c{bottom:616.065000px;}
.yd9{bottom:617.505000px;}
.y49{bottom:623.085000px;}
.y14{bottom:626.325000px;}
.yac{bottom:628.305000px;}
.y7b{bottom:636.765000px;}
.yd8{bottom:640.185000px;}
.y48{bottom:643.785000px;}
.y13{bottom:650.445000px;}
.y7a{bottom:657.465000px;}
.y47{bottom:664.485000px;}
.yd7{bottom:664.665000px;}
.y12{bottom:674.025000px;}
.y79{bottom:678.165000px;}
.y61{bottom:681.405000px;}
.y46{bottom:685.185000px;}
.yab{bottom:689.325000px;}
.y11{bottom:694.725000px;}
.y78{bottom:698.865000px;}
.y45{bottom:705.885000px;}
.yd6{bottom:713.805000px;}
.y10{bottom:715.425000px;}
.y77{bottom:719.565000px;}
.y44{bottom:726.585000px;}
.yf{bottom:736.125000px;}
.yaa{bottom:736.305000px;}
.yd4{bottom:738.285000px;}
.y76{bottom:740.985000px;}
.y43{bottom:747.285000px;}
.ye{bottom:757.365000px;}
.yd2{bottom:762.765000px;}
.y75{bottom:766.905000px;}
.y42{bottom:767.985000px;}
.yd{bottom:780.945000px;}
.ya7{bottom:783.465000px;}
.yd1{bottom:787.425000px;}
.y41{bottom:788.685000px;}
.y74{bottom:801.465000px;}
.yc{bottom:801.645000px;}
.y40{bottom:809.385000px;}
.yd0{bottom:826.665000px;}
.y3f{bottom:830.085000px;}
.y8e{bottom:835.305000px;}
.y73{bottom:835.845000px;}
.ya6{bottom:843.450000px;}
.ycf{bottom:847.230000px;}
.y3e{bottom:850.830000px;}
.yb{bottom:856.950000px;}
.yce{bottom:867.930000px;}
.y72{bottom:870.450000px;}
.y3d{bottom:871.530000px;}
.ycd{bottom:888.630000px;}
.ya4{bottom:890.610000px;}
.y3c{bottom:892.230000px;}
.ya{bottom:894.750000px;}
.y71{bottom:905.010000px;}
.ycc{bottom:909.330000px;}
.y3b{bottom:912.930000px;}
.ycb{bottom:930.030000px;}
.y3a{bottom:933.630000px;}
.ya3{bottom:937.590000px;}
.y70{bottom:939.390000px;}
.y9{bottom:940.830000px;}
.yca{bottom:950.730000px;}
.ybe{bottom:951.010915px;}
.y39{bottom:954.330000px;}
.yc9{bottom:971.430000px;}
.y6f{bottom:973.950000px;}
.y38{bottom:975.030000px;}
.yc1{bottom:976.266622px;}
.ya1{bottom:986.190000px;}
.y8{bottom:986.730000px;}
.yc8{bottom:992.130000px;}
.y37{bottom:995.730000px;}
.y6e{bottom:1005.990000px;}
.yc7{bottom:1012.830000px;}
.y36{bottom:1016.430000px;}
.y7{bottom:1017.870000px;}
.y2a{bottom:1023.450000px;}
.y6d{bottom:1026.690000px;}
.ya0{bottom:1033.530000px;}
.y35{bottom:1037.130000px;}
.y6c{bottom:1047.390000px;}
.y6{bottom:1048.830000px;}
.y9f{bottom:1054.230000px;}
.y34{bottom:1057.830000px;}
.y2c{bottom:1064.850000px;}
.y6b{bottom:1068.090000px;}
.y9e{bottom:1074.930000px;}
.y33{bottom:1078.530000px;}
.y5{bottom:1079.970000px;}
.y6a{bottom:1088.790000px;}
.y9d{bottom:1095.630000px;}
.y32{bottom:1099.770000px;}
.y69{bottom:1109.490000px;}
.y4{bottom:1110.930000px;}
.yc6{bottom:1116.330000px;}
.y9c{bottom:1118.490000px;}
.y31{bottom:1123.380000px;}
.y68{bottom:1130.220000px;}
.yc5{bottom:1137.060000px;}
.y3{bottom:1142.100000px;}
.y30{bottom:1146.420000px;}
.y9b{bottom:1149.480000px;}
.y67{bottom:1150.920000px;}
.yc4{bottom:1157.760000px;}
.y66{bottom:1171.620000px;}
.y2{bottom:1173.420000px;}
.y2f{bottom:1180.980000px;}
.y1{bottom:1191.780000px;}
.y65{bottom:1192.320000px;}
.h22{height:13.680000px;}
.hf{height:13.702500px;}
.h10{height:13.845150px;}
.he{height:13.852650px;}
.h21{height:13.860000px;}
.h1f{height:15.120000px;}
.h7{height:17.265000px;}
.hc{height:19.440000px;}
.h23{height:21.765000px;}
.h1e{height:24.022372px;}
.h13{height:36.165000px;}
.h16{height:36.180000px;}
.h12{height:36.345000px;}
.h15{height:36.360000px;}
.h1a{height:49.125000px;}
.h14{height:49.140000px;}
.h18{height:49.170000px;}
.h1c{height:49.278770px;}
.h19{height:50.205000px;}
.h17{height:50.220000px;}
.h20{height:56.320312px;}
.h1d{height:58.003077px;}
.h8{height:62.327813px;}
.h2{height:69.086250px;}
.hd{height:74.004654px;}
.h4{height:75.093750px;}
.h5{height:87.859687px;}
.h9{height:96.690000px;}
.h1b{height:105.825000px;}
.h3{height:112.640625px;}
.h6{height:125.406562px;}
.ha{height:150.187500px;}
.h11{height:169.020000px;}
.hb{height:200.500313px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:56.340000px;}
.w6{width:73.116000px;}
.w5{width:92.340000px;}
.wb{width:99.882476px;}
.w4{width:102.816000px;}
.wc{width:150.452697px;}
.wf{width:158.070000px;}
.wd{width:169.935000px;}
.we{width:195.330000px;}
.w9{width:231.319500px;}
.w2{width:353.359500px;}
.wa{width:424.155000px;}
.w8{width:501.364500px;}
.w3{width:680.535000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.589726px;}
.x8{left:10.789500px;}
.x14{left:18.953350px;}
.x11{left:21.511213px;}
.x15{left:35.390768px;}
.x2{left:54.000000px;}
.x3{left:81.000000px;}
.x9{left:84.241500px;}
.x4{left:108.036000px;}
.xe{left:118.846500px;}
.x7{left:128.746500px;}
.x5{left:135.036000px;}
.xd{left:140.086500px;}
.x6{left:162.030000px;}
.x1{left:236.370000px;}
.x16{left:263.925000px;}
.x10{left:317.472966px;}
.x18{left:348.195000px;}
.xf{left:350.175000px;}
.xb{left:391.215000px;}
.x13{left:418.613407px;}
.x17{left:433.875000px;}
.xc{left:461.775000px;}
.xa{left:474.735000px;}
@media print{
.v1{vertical-align:-114.080000pt;}
.v2{vertical-align:-75.520000pt;}
.v3{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.352000pt;}
.ls2{letter-spacing:75.183360pt;}
.ls0{letter-spacing:78.208000pt;}
.ls8{letter-spacing:1377.674667pt;}
.ws1{word-spacing:-64.000000pt;}
.ws2{word-spacing:-47.504640pt;}
.ws0{word-spacing:-29.807573pt;}
.ws6{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws8{word-spacing:-13.536000pt;}
.ws7{word-spacing:-13.456000pt;}
.ws4{word-spacing:-11.920640pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-22.912427pt;}
._11{margin-left:-5.932100pt;}
._a{margin-left:-2.988160pt;}
._10{margin-left:-1.902080pt;}
._2{margin-left:-0.942080pt;}
._9{width:1.070080pt;}
._8{width:2.083413pt;}
._7{width:48.896000pt;}
._e{width:69.792000pt;}
._c{width:247.136000pt;}
._d{width:258.272000pt;}
._f{width:286.816000pt;}
._4{width:320.938667pt;}
._5{width:322.058667pt;}
._b{width:329.422080pt;}
._3{width:347.552000pt;}
._0{width:451.339520pt;}
._1{width:476.128213pt;}
._12{width:2098.421333pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:49.434166pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:0.960000pt;}
.yd3{bottom:1.120000pt;}
.y8f{bottom:2.400000pt;}
.y64{bottom:2.553333pt;}
.y91{bottom:2.560000pt;}
.y2b{bottom:3.200000pt;}
.yc2{bottom:3.400427pt;}
.y9a{bottom:3.673333pt;}
.yf0{bottom:4.146667pt;}
.y62{bottom:7.520000pt;}
.yc3{bottom:8.994649pt;}
.y2e{bottom:9.280000pt;}
.yc0{bottom:10.091561pt;}
.ya9{bottom:10.560000pt;}
.yae{bottom:11.520000pt;}
.ya5{bottom:17.440000pt;}
.ya2{bottom:17.600000pt;}
.y99{bottom:22.393333pt;}
.yb9{bottom:24.146667pt;}
.ybf{bottom:26.946857pt;}
.ya8{bottom:28.960000pt;}
.yad{bottom:29.920000pt;}
.y98{bottom:40.468000pt;}
.yb8{bottom:42.546667pt;}
.y2d{bottom:56.346667pt;}
.y97{bottom:58.868000pt;}
.y60{bottom:59.232000pt;}
.yb7{bottom:60.946667pt;}
.y8d{bottom:63.072000pt;}
.y29{bottom:63.392000pt;}
.ybd{bottom:69.472000pt;}
.y96{bottom:77.268000pt;}
.yb6{bottom:79.346667pt;}
.y8c{bottom:83.712000pt;}
.y28{bottom:84.032000pt;}
.ybc{bottom:87.872000pt;}
.y5f{bottom:89.792000pt;}
.y92{bottom:94.758667pt;}
.y95{bottom:95.668000pt;}
.yee{bottom:97.952000pt;}
.ybb{bottom:106.272000pt;}
.y63{bottom:113.158667pt;}
.y94{bottom:114.068000pt;}
.y8b{bottom:114.432000pt;}
.y27{bottom:114.592000pt;}
.y5e{bottom:120.512000pt;}
.yba{bottom:124.672000pt;}
.yed{bottom:132.352000pt;}
.y93{bottom:132.948000pt;}
.y8a{bottom:144.986667pt;}
.y26{bottom:145.306667pt;}
.yb5{bottom:145.480000pt;}
.y5d{bottom:151.226667pt;}
.yec{bottom:166.906667pt;}
.y89{bottom:175.706667pt;}
.y25{bottom:176.026667pt;}
.y5c{bottom:181.786667pt;}
.yeb{bottom:201.306667pt;}
.y88{bottom:206.426667pt;}
.y24{bottom:206.586667pt;}
.y5b{bottom:212.506667pt;}
.yef{bottom:216.360000pt;}
.yea{bottom:235.866667pt;}
.y87{bottom:236.986667pt;}
.y23{bottom:237.306667pt;}
.y5a{bottom:240.986667pt;}
.yb4{bottom:249.186667pt;}
.ye9{bottom:254.466667pt;}
.y59{bottom:259.426667pt;}
.y86{bottom:267.746667pt;}
.y22{bottom:268.066667pt;}
.ye8{bottom:272.866667pt;}
.y58{bottom:277.826667pt;}
.ye7{bottom:291.266667pt;}
.y57{bottom:296.226667pt;}
.y21{bottom:296.546667pt;}
.y85{bottom:298.466667pt;}
.yb3{bottom:302.466667pt;}
.ye6{bottom:309.666667pt;}
.y56{bottom:314.626667pt;}
.y20{bottom:314.946667pt;}
.ye5{bottom:328.066667pt;}
.y84{bottom:329.026667pt;}
.y55{bottom:333.026667pt;}
.y1f{bottom:333.346667pt;}
.ye4{bottom:346.466667pt;}
.y54{bottom:351.426667pt;}
.y1e{bottom:351.746667pt;}
.yb2{bottom:355.746667pt;}
.y83{bottom:359.746667pt;}
.ye3{bottom:364.866667pt;}
.y53{bottom:369.826667pt;}
.y1d{bottom:370.146667pt;}
.ye2{bottom:383.266667pt;}
.y90{bottom:385.666667pt;}
.y52{bottom:388.226667pt;}
.y1c{bottom:388.546667pt;}
.y82{bottom:390.466667pt;}
.yb1{bottom:397.666667pt;}
.ye1{bottom:401.666667pt;}
.y51{bottom:406.626667pt;}
.y1b{bottom:406.786667pt;}
.ye0{bottom:420.066667pt;}
.y81{bottom:421.026667pt;}
.y50{bottom:425.026667pt;}
.y1a{bottom:425.186667pt;}
.ydf{bottom:438.466667pt;}
.y4f{bottom:443.426667pt;}
.y19{bottom:443.586667pt;}
.y80{bottom:451.746667pt;}
.yb0{bottom:451.906667pt;}
.yde{bottom:456.866667pt;}
.y4e{bottom:461.826667pt;}
.y18{bottom:461.986667pt;}
.ydd{bottom:475.266667pt;}
.y4d{bottom:480.226667pt;}
.y17{bottom:480.386667pt;}
.y7f{bottom:482.306667pt;}
.ydc{bottom:493.666667pt;}
.y4c{bottom:498.653333pt;}
.y16{bottom:499.933333pt;}
.yaf{bottom:505.213333pt;}
.y7e{bottom:510.813333pt;}
.ydb{bottom:512.093333pt;}
.y4b{bottom:517.053333pt;}
.y15{bottom:519.453333pt;}
.y7d{bottom:529.213333pt;}
.yda{bottom:530.493333pt;}
.y4a{bottom:535.453333pt;}
.y7c{bottom:547.613333pt;}
.yd9{bottom:548.893333pt;}
.y49{bottom:553.853333pt;}
.y14{bottom:556.733333pt;}
.yac{bottom:558.493333pt;}
.y7b{bottom:566.013333pt;}
.yd8{bottom:569.053333pt;}
.y48{bottom:572.253333pt;}
.y13{bottom:578.173333pt;}
.y7a{bottom:584.413333pt;}
.y47{bottom:590.653333pt;}
.yd7{bottom:590.813333pt;}
.y12{bottom:599.133333pt;}
.y79{bottom:602.813333pt;}
.y61{bottom:605.693333pt;}
.y46{bottom:609.053333pt;}
.yab{bottom:612.733333pt;}
.y11{bottom:617.533333pt;}
.y78{bottom:621.213333pt;}
.y45{bottom:627.453333pt;}
.yd6{bottom:634.493333pt;}
.y10{bottom:635.933333pt;}
.y77{bottom:639.613333pt;}
.y44{bottom:645.853333pt;}
.yf{bottom:654.333333pt;}
.yaa{bottom:654.493333pt;}
.yd4{bottom:656.253333pt;}
.y76{bottom:658.653333pt;}
.y43{bottom:664.253333pt;}
.ye{bottom:673.213333pt;}
.yd2{bottom:678.013333pt;}
.y75{bottom:681.693333pt;}
.y42{bottom:682.653333pt;}
.yd{bottom:694.173333pt;}
.ya7{bottom:696.413333pt;}
.yd1{bottom:699.933333pt;}
.y41{bottom:701.053333pt;}
.y74{bottom:712.413333pt;}
.yc{bottom:712.573333pt;}
.y40{bottom:719.453333pt;}
.yd0{bottom:734.813333pt;}
.y3f{bottom:737.853333pt;}
.y8e{bottom:742.493333pt;}
.y73{bottom:742.973333pt;}
.ya6{bottom:749.733333pt;}
.ycf{bottom:753.093333pt;}
.y3e{bottom:756.293333pt;}
.yb{bottom:761.733333pt;}
.yce{bottom:771.493333pt;}
.y72{bottom:773.733333pt;}
.y3d{bottom:774.693333pt;}
.ycd{bottom:789.893333pt;}
.ya4{bottom:791.653333pt;}
.y3c{bottom:793.093333pt;}
.ya{bottom:795.333333pt;}
.y71{bottom:804.453333pt;}
.ycc{bottom:808.293333pt;}
.y3b{bottom:811.493333pt;}
.ycb{bottom:826.693333pt;}
.y3a{bottom:829.893333pt;}
.ya3{bottom:833.413333pt;}
.y70{bottom:835.013333pt;}
.y9{bottom:836.293333pt;}
.yca{bottom:845.093333pt;}
.ybe{bottom:845.343036pt;}
.y39{bottom:848.293333pt;}
.yc9{bottom:863.493333pt;}
.y6f{bottom:865.733333pt;}
.y38{bottom:866.693333pt;}
.yc1{bottom:867.792553pt;}
.ya1{bottom:876.613333pt;}
.y8{bottom:877.093333pt;}
.yc8{bottom:881.893333pt;}
.y37{bottom:885.093333pt;}
.y6e{bottom:894.213333pt;}
.yc7{bottom:900.293333pt;}
.y36{bottom:903.493333pt;}
.y7{bottom:904.773333pt;}
.y2a{bottom:909.733333pt;}
.y6d{bottom:912.613333pt;}
.ya0{bottom:918.693333pt;}
.y35{bottom:921.893333pt;}
.y6c{bottom:931.013333pt;}
.y6{bottom:932.293333pt;}
.y9f{bottom:937.093333pt;}
.y34{bottom:940.293333pt;}
.y2c{bottom:946.533333pt;}
.y6b{bottom:949.413333pt;}
.y9e{bottom:955.493333pt;}
.y33{bottom:958.693333pt;}
.y5{bottom:959.973333pt;}
.y6a{bottom:967.813333pt;}
.y9d{bottom:973.893333pt;}
.y32{bottom:977.573333pt;}
.y69{bottom:986.213333pt;}
.y4{bottom:987.493333pt;}
.yc6{bottom:992.293333pt;}
.y9c{bottom:994.213333pt;}
.y31{bottom:998.560000pt;}
.y68{bottom:1004.640000pt;}
.yc5{bottom:1010.720000pt;}
.y3{bottom:1015.200000pt;}
.y30{bottom:1019.040000pt;}
.y9b{bottom:1021.760000pt;}
.y67{bottom:1023.040000pt;}
.yc4{bottom:1029.120000pt;}
.y66{bottom:1041.440000pt;}
.y2{bottom:1043.040000pt;}
.y2f{bottom:1049.760000pt;}
.y1{bottom:1059.360000pt;}
.y65{bottom:1059.840000pt;}
.h22{height:12.160000pt;}
.hf{height:12.180000pt;}
.h10{height:12.306800pt;}
.he{height:12.313467pt;}
.h21{height:12.320000pt;}
.h1f{height:13.440000pt;}
.h7{height:15.346667pt;}
.hc{height:17.280000pt;}
.h23{height:19.346667pt;}
.h1e{height:21.353220pt;}
.h13{height:32.146667pt;}
.h16{height:32.160000pt;}
.h12{height:32.306667pt;}
.h15{height:32.320000pt;}
.h1a{height:43.666667pt;}
.h14{height:43.680000pt;}
.h18{height:43.706667pt;}
.h1c{height:43.803351pt;}
.h19{height:44.626667pt;}
.h17{height:44.640000pt;}
.h20{height:50.062500pt;}
.h1d{height:51.558291pt;}
.h8{height:55.402500pt;}
.h2{height:61.410000pt;}
.hd{height:65.781915pt;}
.h4{height:66.750000pt;}
.h5{height:78.097500pt;}
.h9{height:85.946667pt;}
.h1b{height:94.066667pt;}
.h3{height:100.125000pt;}
.h6{height:111.472500pt;}
.ha{height:133.500000pt;}
.h11{height:150.240000pt;}
.hb{height:178.222500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:50.080000pt;}
.w6{width:64.992000pt;}
.w5{width:82.080000pt;}
.wb{width:88.784423pt;}
.w4{width:91.392000pt;}
.wc{width:133.735731pt;}
.wf{width:140.506667pt;}
.wd{width:151.053333pt;}
.we{width:173.626667pt;}
.w9{width:205.617333pt;}
.w2{width:314.097333pt;}
.wa{width:377.026667pt;}
.w8{width:445.657333pt;}
.w3{width:604.920000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.746423pt;}
.x8{left:9.590667pt;}
.x14{left:16.847422pt;}
.x11{left:19.121079pt;}
.x15{left:31.458461pt;}
.x2{left:48.000000pt;}
.x3{left:72.000000pt;}
.x9{left:74.881333pt;}
.x4{left:96.032000pt;}
.xe{left:105.641333pt;}
.x7{left:114.441333pt;}
.x5{left:120.032000pt;}
.xd{left:124.521333pt;}
.x6{left:144.026667pt;}
.x1{left:210.106667pt;}
.x16{left:234.600000pt;}
.x10{left:282.198192pt;}
.x18{left:309.506667pt;}
.xf{left:311.266667pt;}
.xb{left:347.746667pt;}
.x13{left:372.100807pt;}
.x17{left:385.666667pt;}
.xc{left:410.466667pt;}
.xa{left:421.986667pt;}
}




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