
    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_5211e3f3191b33f4cf72846e.woff')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_c8623e480b943e6dd020a540.woff')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_5211e3f3191b33f4cf72846e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_95338859027e50ce1e33982e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_95338859027e50ce1e33982e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_95338859027e50ce1e33982e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_95338859027e50ce1e33982e.woff')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_98f89e656755b177401f0363.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_17c291460495e792aec5c934.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_55406bc8dc97d5e4661dfadc.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_39b9f98c045a47762419378b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6f41b3151190c1e6343bed04.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a8c912e0f1521cbcd3436d01.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_874450396cbba56d47e6514b.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6f41b3151190c1e6343bed04.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6f41b3151190c1e6343bed04.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_749e47daa15d38f6ef0aaf0b.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0439d6ee357da0005c49e4ae.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_d828c3d51f1c03661f375068.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_67977fca41134d78a91fed0f.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_6f41b3151190c1e6343bed04.woff')format("woff");}.ff15{font-family:ff15;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;}
.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;}
}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:304.402824px;}
.ws8{word-spacing:305.841888px;}
.ws10{word-spacing:308.722392px;}
.ws1d{word-spacing:311.602896px;}
.ws1b{word-spacing:317.361528px;}
.ws17{word-spacing:321.683472px;}
.ws15{word-spacing:324.561600px;}
.ws1a{word-spacing:326.002248px;}
.wsb{word-spacing:328.882752px;}
.wse{word-spacing:330.321816px;}
.ws4{word-spacing:333.199944px;}
.ws0{word-spacing:337.521888px;}
.ws19{word-spacing:338.960952px;}
.ws18{word-spacing:341.841456px;}
.ws12{word-spacing:350.482968px;}
.ws20{word-spacing:363.441672px;}
.ws16{word-spacing:372.080808px;}
.ws1{word-spacing:373.522248px;}
.ws21{word-spacing:392.241960px;}
.wsa{word-spacing:393.681024px;}
.ws7{word-spacing:438.322104px;}
.ws14{word-spacing:513.202536px;}
.wsd{word-spacing:709.041960px;}
.ws13{word-spacing:724.881168px;}
.wsc{word-spacing:726.320232px;}
.ws5{word-spacing:732.080448px;}
.ws2{word-spacing:740.719584px;}
.ws6{word-spacing:742.161024px;}
.ws1c{word-spacing:753.683040px;}
.ws22{word-spacing:762.322176px;}
.ws1e{word-spacing:768.080808px;}
.ws23{word-spacing:770.964480px;}
.ws24{word-spacing:785.363040px;}
.wsf{word-spacing:795.445200px;}
.ws1f{word-spacing:796.886640px;}
.ws11{word-spacing:799.761600px;}
._6{width:324.976608px;}
._5{width:329.300928px;}
._d{width:345.139344px;}
._10{width:349.458912px;}
._8{width:352.335456px;}
._a{width:353.778480px;}
._2{width:356.663736px;}
._f{width:359.539488px;}
._c{width:371.056752px;}
._13{width:384.020208px;}
._e{width:395.539848px;}
._0{width:396.978912px;}
._14{width:412.820496px;}
._7{width:417.142440px;}
._4{width:458.898264px;}
._9{width:732.501000px;}
._1{width:764.181000px;}
._3{width:765.617688px;}
._11{width:777.139704px;}
._15{width:785.778840px;}
._16{width:794.415600px;}
._b{width:818.904240px;}
._12{width:820.337760px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:79.200000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:234.360000px;}
.y15{bottom:237.600000px;}
.y38{bottom:264.600000px;}
.y47{bottom:284.759700px;}
.y39{bottom:284.760000px;}
.y7b{bottom:307.440000px;}
.y14{bottom:307.800000px;}
.y23{bottom:309.240000px;}
.y48{bottom:316.440150px;}
.y3a{bottom:316.440450px;}
.y11{bottom:329.760000px;}
.y6d{bottom:337.320300px;}
.y61{bottom:345.600300px;}
.y49{bottom:348.120000px;}
.y3b{bottom:348.120300px;}
.y84{bottom:350.640450px;}
.y7c{bottom:352.440000px;}
.y24{bottom:357.479700px;}
.y4a{bottom:379.440150px;}
.y3c{bottom:379.440450px;}
.y12{bottom:386.280150px;}
.y6e{bottom:389.880000px;}
.y7d{bottom:397.440000px;}
.y25{bottom:406.079700px;}
.y62{bottom:406.080150px;}
.y4b{bottom:411.120000px;}
.y3d{bottom:411.120300px;}
.y85{bottom:416.160000px;}
.y97{bottom:431.280000px;}
.y91{bottom:434.520000px;}
.y4c{bottom:442.440000px;}
.y51{bottom:442.440150px;}
.y6f{bottom:442.440300px;}
.y13{bottom:442.440450px;}
.yc{bottom:461.520000px;}
.y41{bottom:481.679700px;}
.y32{bottom:481.680000px;}
.y78{bottom:504.360000px;}
.y10{bottom:504.720000px;}
.y20{bottom:506.160000px;}
.y42{bottom:513.359550px;}
.y33{bottom:513.359850px;}
.y94{bottom:521.279700px;}
.y8e{bottom:521.280000px;}
.yd{bottom:527.040150px;}
.y6a{bottom:534.240300px;}
.y5f{bottom:542.520000px;}
.y43{bottom:545.040000px;}
.y34{bottom:545.040300px;}
.y82{bottom:547.559850px;}
.y79{bottom:549.360000px;}
.y21{bottom:554.400300px;}
.y95{bottom:560.520000px;}
.y8f{bottom:560.520300px;}
.y44{bottom:576.359550px;}
.y35{bottom:576.359850px;}
.ye{bottom:583.199850px;}
.y6b{bottom:586.800000px;}
.y7a{bottom:594.360000px;}
.y96{bottom:600.120000px;}
.y90{bottom:600.120300px;}
.y60{bottom:602.999850px;}
.y22{bottom:603.000300px;}
.y45{bottom:608.040000px;}
.y36{bottom:608.040300px;}
.y83{bottom:613.080000px;}
.y93{bottom:628.200000px;}
.y65{bottom:631.440000px;}
.yf{bottom:639.359550px;}
.y6c{bottom:639.359700px;}
.y37{bottom:639.359850px;}
.y46{bottom:639.360000px;}
.y7{bottom:658.440000px;}
.y2c{bottom:678.959550px;}
.y3f{bottom:678.960000px;}
.y75{bottom:701.279700px;}
.yb{bottom:701.640000px;}
.y1d{bottom:703.079700px;}
.y2d{bottom:710.279700px;}
.y52{bottom:710.280000px;}
.y40{bottom:710.280150px;}
.y8a{bottom:718.199850px;}
.y8{bottom:723.960000px;}
.y68{bottom:731.160000px;}
.y5d{bottom:739.440450px;}
.y4d{bottom:741.959550px;}
.y53{bottom:741.959850px;}
.y2e{bottom:741.960000px;}
.y80{bottom:744.479700px;}
.y76{bottom:746.279700px;}
.y1e{bottom:751.320000px;}
.y8b{bottom:757.440150px;}
.y4e{bottom:773.279700px;}
.y54{bottom:773.280000px;}
.y2f{bottom:773.280150px;}
.y9{bottom:780.120300px;}
.y69{bottom:783.720300px;}
.y77{bottom:791.279700px;}
.y8c{bottom:797.040150px;}
.y1f{bottom:799.920000px;}
.y5e{bottom:799.920300px;}
.y4f{bottom:804.959550px;}
.y55{bottom:804.959850px;}
.y30{bottom:804.960000px;}
.y81{bottom:809.999850px;}
.y92{bottom:810.000000px;}
.y19{bottom:828.360000px;}
.y50{bottom:836.279700px;}
.y8d{bottom:836.279850px;}
.ya{bottom:836.280000px;}
.y31{bottom:836.280150px;}
.y2{bottom:855.360000px;}
.y56{bottom:875.880000px;}
.y26{bottom:875.880150px;}
.y72{bottom:898.200300px;}
.y6{bottom:898.560000px;}
.y1a{bottom:900.000300px;}
.y57{bottom:907.200150px;}
.y27{bottom:907.200300px;}
.y86{bottom:915.120450px;}
.y16{bottom:920.880000px;}
.y3{bottom:920.880150px;}
.y70{bottom:928.080000px;}
.y66{bottom:928.080150px;}
.y63{bottom:936.359850px;}
.y5b{bottom:936.360000px;}
.y58{bottom:938.880000px;}
.y28{bottom:938.880150px;}
.y7e{bottom:941.400300px;}
.y73{bottom:943.200300px;}
.y1b{bottom:948.600300px;}
.y87{bottom:954.360150px;}
.y59{bottom:970.200150px;}
.y29{bottom:970.200300px;}
.y17{bottom:977.040300px;}
.y4{bottom:977.040450px;}
.y71{bottom:980.640300px;}
.y67{bottom:980.640450px;}
.y74{bottom:988.200300px;}
.y88{bottom:993.960150px;}
.y64{bottom:996.840300px;}
.y5c{bottom:996.840450px;}
.y1c{bottom:996.840600px;}
.y5a{bottom:1001.880000px;}
.y2a{bottom:1001.880150px;}
.y7f{bottom:1006.920450px;}
.y18{bottom:1033.200000px;}
.y5{bottom:1033.200150px;}
.y2b{bottom:1033.200300px;}
.y89{bottom:1033.200450px;}
.y1{bottom:1054.440000px;}
.h1{height:82.603125px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:90.000195px;}
.x3{left:101.160000px;}
.x4{left:112.320345px;}
.xe{left:113.400000px;}
.x22{left:115.559700px;}
.xf{left:120.959700px;}
.xa{left:125.640000px;}
.x23{left:126.720000px;}
.x21{left:132.479850px;}
.x1f{left:134.640300px;}
.x29{left:143.640300px;}
.x2a{left:145.800000px;}
.x26{left:146.880000px;}
.x2{left:151.560000px;}
.x17{left:155.880000px;}
.x6{left:160.200000px;}
.x1d{left:162.720000px;}
.x1e{left:165.600000px;}
.x12{left:169.920000px;}
.x15{left:190.080000px;}
.x10{left:192.600000px;}
.x11{left:194.760000px;}
.x1a{left:212.760000px;}
.x7{left:218.880000px;}
.x24{left:219.960000px;}
.x16{left:245.880000px;}
.x13{left:259.920000px;}
.x14{left:281.160000px;}
.xd{left:282.240000px;}
.x18{left:287.280000px;}
.x25{left:291.960000px;}
.x28{left:303.119850px;}
.x8{left:317.160000px;}
.xb{left:321.840000px;}
.x1b{left:333.360000px;}
.x19{left:349.920150px;}
.x1c{left:407.160000px;}
.x1{left:418.320000px;}
.x9{left:421.200000px;}
.x27{left:429.480000px;}
.x20{left:435.240000px;}
.xc{left:451.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:270.580288pt;}
.ws8{word-spacing:271.859456pt;}
.ws10{word-spacing:274.419904pt;}
.ws1d{word-spacing:276.980352pt;}
.ws1b{word-spacing:282.099136pt;}
.ws17{word-spacing:285.940864pt;}
.ws15{word-spacing:288.499200pt;}
.ws1a{word-spacing:289.779776pt;}
.wsb{word-spacing:292.340224pt;}
.wse{word-spacing:293.619392pt;}
.ws4{word-spacing:296.177728pt;}
.ws0{word-spacing:300.019456pt;}
.ws19{word-spacing:301.298624pt;}
.ws18{word-spacing:303.859072pt;}
.ws12{word-spacing:311.540416pt;}
.ws20{word-spacing:323.059264pt;}
.ws16{word-spacing:330.738496pt;}
.ws1{word-spacing:332.019776pt;}
.ws21{word-spacing:348.659520pt;}
.wsa{word-spacing:349.938688pt;}
.ws7{word-spacing:389.619648pt;}
.ws14{word-spacing:456.180032pt;}
.wsd{word-spacing:630.259520pt;}
.ws13{word-spacing:644.338816pt;}
.wsc{word-spacing:645.617984pt;}
.ws5{word-spacing:650.738176pt;}
.ws2{word-spacing:658.417408pt;}
.ws6{word-spacing:659.698688pt;}
.ws1c{word-spacing:669.940480pt;}
.ws22{word-spacing:677.619712pt;}
.ws1e{word-spacing:682.738496pt;}
.ws23{word-spacing:685.301760pt;}
.ws24{word-spacing:698.100480pt;}
.wsf{word-spacing:707.062400pt;}
.ws1f{word-spacing:708.343680pt;}
.ws11{word-spacing:710.899200pt;}
._6{width:288.868096pt;}
._5{width:292.711936pt;}
._d{width:306.790528pt;}
._10{width:310.630144pt;}
._8{width:313.187072pt;}
._a{width:314.469760pt;}
._2{width:317.034432pt;}
._f{width:319.590656pt;}
._c{width:329.828224pt;}
._13{width:341.351296pt;}
._e{width:351.590976pt;}
._0{width:352.870144pt;}
._14{width:366.951552pt;}
._7{width:370.793280pt;}
._4{width:407.909568pt;}
._9{width:651.112000pt;}
._1{width:679.272000pt;}
._3{width:680.549056pt;}
._11{width:690.790848pt;}
._15{width:698.470080pt;}
._16{width:706.147200pt;}
._b{width:727.914880pt;}
._12{width:729.189120pt;}
.fs0{font-size:70.400000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:208.320000pt;}
.y15{bottom:211.200000pt;}
.y38{bottom:235.200000pt;}
.y47{bottom:253.119733pt;}
.y39{bottom:253.120000pt;}
.y7b{bottom:273.280000pt;}
.y14{bottom:273.600000pt;}
.y23{bottom:274.880000pt;}
.y48{bottom:281.280133pt;}
.y3a{bottom:281.280400pt;}
.y11{bottom:293.120000pt;}
.y6d{bottom:299.840267pt;}
.y61{bottom:307.200267pt;}
.y49{bottom:309.440000pt;}
.y3b{bottom:309.440267pt;}
.y84{bottom:311.680400pt;}
.y7c{bottom:313.280000pt;}
.y24{bottom:317.759733pt;}
.y4a{bottom:337.280133pt;}
.y3c{bottom:337.280400pt;}
.y12{bottom:343.360133pt;}
.y6e{bottom:346.560000pt;}
.y7d{bottom:353.280000pt;}
.y25{bottom:360.959733pt;}
.y62{bottom:360.960133pt;}
.y4b{bottom:365.440000pt;}
.y3d{bottom:365.440267pt;}
.y85{bottom:369.920000pt;}
.y97{bottom:383.360000pt;}
.y91{bottom:386.240000pt;}
.y4c{bottom:393.280000pt;}
.y51{bottom:393.280133pt;}
.y6f{bottom:393.280267pt;}
.y13{bottom:393.280400pt;}
.yc{bottom:410.240000pt;}
.y41{bottom:428.159733pt;}
.y32{bottom:428.160000pt;}
.y78{bottom:448.320000pt;}
.y10{bottom:448.640000pt;}
.y20{bottom:449.920000pt;}
.y42{bottom:456.319600pt;}
.y33{bottom:456.319867pt;}
.y94{bottom:463.359733pt;}
.y8e{bottom:463.360000pt;}
.yd{bottom:468.480133pt;}
.y6a{bottom:474.880267pt;}
.y5f{bottom:482.240000pt;}
.y43{bottom:484.480000pt;}
.y34{bottom:484.480267pt;}
.y82{bottom:486.719867pt;}
.y79{bottom:488.320000pt;}
.y21{bottom:492.800267pt;}
.y95{bottom:498.240000pt;}
.y8f{bottom:498.240267pt;}
.y44{bottom:512.319600pt;}
.y35{bottom:512.319867pt;}
.ye{bottom:518.399867pt;}
.y6b{bottom:521.600000pt;}
.y7a{bottom:528.320000pt;}
.y96{bottom:533.440000pt;}
.y90{bottom:533.440267pt;}
.y60{bottom:535.999867pt;}
.y22{bottom:536.000267pt;}
.y45{bottom:540.480000pt;}
.y36{bottom:540.480267pt;}
.y83{bottom:544.960000pt;}
.y93{bottom:558.400000pt;}
.y65{bottom:561.280000pt;}
.yf{bottom:568.319600pt;}
.y6c{bottom:568.319733pt;}
.y37{bottom:568.319867pt;}
.y46{bottom:568.320000pt;}
.y7{bottom:585.280000pt;}
.y2c{bottom:603.519600pt;}
.y3f{bottom:603.520000pt;}
.y75{bottom:623.359733pt;}
.yb{bottom:623.680000pt;}
.y1d{bottom:624.959733pt;}
.y2d{bottom:631.359733pt;}
.y52{bottom:631.360000pt;}
.y40{bottom:631.360133pt;}
.y8a{bottom:638.399867pt;}
.y8{bottom:643.520000pt;}
.y68{bottom:649.920000pt;}
.y5d{bottom:657.280400pt;}
.y4d{bottom:659.519600pt;}
.y53{bottom:659.519867pt;}
.y2e{bottom:659.520000pt;}
.y80{bottom:661.759733pt;}
.y76{bottom:663.359733pt;}
.y1e{bottom:667.840000pt;}
.y8b{bottom:673.280133pt;}
.y4e{bottom:687.359733pt;}
.y54{bottom:687.360000pt;}
.y2f{bottom:687.360133pt;}
.y9{bottom:693.440267pt;}
.y69{bottom:696.640267pt;}
.y77{bottom:703.359733pt;}
.y8c{bottom:708.480133pt;}
.y1f{bottom:711.040000pt;}
.y5e{bottom:711.040267pt;}
.y4f{bottom:715.519600pt;}
.y55{bottom:715.519867pt;}
.y30{bottom:715.520000pt;}
.y81{bottom:719.999867pt;}
.y92{bottom:720.000000pt;}
.y19{bottom:736.320000pt;}
.y50{bottom:743.359733pt;}
.y8d{bottom:743.359867pt;}
.ya{bottom:743.360000pt;}
.y31{bottom:743.360133pt;}
.y2{bottom:760.320000pt;}
.y56{bottom:778.560000pt;}
.y26{bottom:778.560133pt;}
.y72{bottom:798.400267pt;}
.y6{bottom:798.720000pt;}
.y1a{bottom:800.000267pt;}
.y57{bottom:806.400133pt;}
.y27{bottom:806.400267pt;}
.y86{bottom:813.440400pt;}
.y16{bottom:818.560000pt;}
.y3{bottom:818.560133pt;}
.y70{bottom:824.960000pt;}
.y66{bottom:824.960133pt;}
.y63{bottom:832.319867pt;}
.y5b{bottom:832.320000pt;}
.y58{bottom:834.560000pt;}
.y28{bottom:834.560133pt;}
.y7e{bottom:836.800267pt;}
.y73{bottom:838.400267pt;}
.y1b{bottom:843.200267pt;}
.y87{bottom:848.320133pt;}
.y59{bottom:862.400133pt;}
.y29{bottom:862.400267pt;}
.y17{bottom:868.480267pt;}
.y4{bottom:868.480400pt;}
.y71{bottom:871.680267pt;}
.y67{bottom:871.680400pt;}
.y74{bottom:878.400267pt;}
.y88{bottom:883.520133pt;}
.y64{bottom:886.080267pt;}
.y5c{bottom:886.080400pt;}
.y1c{bottom:886.080533pt;}
.y5a{bottom:890.560000pt;}
.y2a{bottom:890.560133pt;}
.y7f{bottom:895.040400pt;}
.y18{bottom:918.400000pt;}
.y5{bottom:918.400133pt;}
.y2b{bottom:918.400267pt;}
.y89{bottom:918.400400pt;}
.y1{bottom:937.280000pt;}
.h1{height:73.425000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:80.000173pt;}
.x3{left:89.920000pt;}
.x4{left:99.840307pt;}
.xe{left:100.800000pt;}
.x22{left:102.719733pt;}
.xf{left:107.519733pt;}
.xa{left:111.680000pt;}
.x23{left:112.640000pt;}
.x21{left:117.759867pt;}
.x1f{left:119.680267pt;}
.x29{left:127.680267pt;}
.x2a{left:129.600000pt;}
.x26{left:130.560000pt;}
.x2{left:134.720000pt;}
.x17{left:138.560000pt;}
.x6{left:142.400000pt;}
.x1d{left:144.640000pt;}
.x1e{left:147.200000pt;}
.x12{left:151.040000pt;}
.x15{left:168.960000pt;}
.x10{left:171.200000pt;}
.x11{left:173.120000pt;}
.x1a{left:189.120000pt;}
.x7{left:194.560000pt;}
.x24{left:195.520000pt;}
.x16{left:218.560000pt;}
.x13{left:231.040000pt;}
.x14{left:249.920000pt;}
.xd{left:250.880000pt;}
.x18{left:255.360000pt;}
.x25{left:259.520000pt;}
.x28{left:269.439867pt;}
.x8{left:281.920000pt;}
.xb{left:286.080000pt;}
.x1b{left:296.320000pt;}
.x19{left:311.040133pt;}
.x1c{left:361.920000pt;}
.x1{left:371.840000pt;}
.x9{left:374.400000pt;}
.x27{left:381.760000pt;}
.x20{left:386.880000pt;}
.xc{left:401.600000pt;}
}




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