
    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_3a22afe670fdd2b42498b45b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_e665dff9463ef7801665c49e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_8d4082ec7bc3df88677e26b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_967c335307eea6cf2f156d9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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_f5c13e1ecd7be158873cf4a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_a1b444b716d7e80f4be3252c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;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_26c1c66486e424153ead355c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_dce3434d3575ee44a9b40991.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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_5c508abec7d2b9f8250469a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689453;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_2d07a93921eae75dff0c8b8d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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_35892a7179eb7bd068f9a412.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.689453;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_95fcaa673cfbfa484198e754.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687500;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_38dd456164080c4785d6b14c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.689453;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_1cbeb0aae8c43c5891a5f3c1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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_f6319af9f28781fee3a6b6fa.woff2')format("woff");}.fff{font-family:fff;line-height:0.689453;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_09c20801d86603aac383ff7d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.689453;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_7b0402bb680f96356b68685f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.689453;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);}
.v2{vertical-align:-24.120000px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.120000px;}
.v1{vertical-align:29.880000px;}
.ls12{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.252000px;}
.ls18{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.030000px;}
.ls15{letter-spacing:-0.018000px;}
.ls13{letter-spacing:-0.006000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.006000px;}
.ls11{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.090000px;}
.lse{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.138960px;}
.lsf{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.179982px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.438000px;}
.ls19{letter-spacing:0.486000px;}
.ls17{letter-spacing:1.434000px;}
.ls2{letter-spacing:2.970000px;}
.ls16{letter-spacing:3.072000px;}
.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;}
}
.ws10{word-spacing:-37.731600px;}
.ws35{word-spacing:-37.336320px;}
.ws6c{word-spacing:-35.856000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.650000px;}
.wsf{word-spacing:-16.470000px;}
.ws4{word-spacing:-14.220000px;}
.ws3{word-spacing:-14.190000px;}
.ws14{word-spacing:-13.644000px;}
.ws11{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws34{word-spacing:-13.482000px;}
.ws8{word-spacing:-13.392000px;}
.ws15{word-spacing:-13.356000px;}
.ws5e{word-spacing:-13.284000px;}
.ws93{word-spacing:-13.248000px;}
.ws17{word-spacing:-13.140000px;}
.ws5{word-spacing:-10.530000px;}
.wsa{word-spacing:-9.072000px;}
.ws6{word-spacing:-9.000000px;}
.ws12{word-spacing:-0.990000px;}
.wsc{word-spacing:-0.594000px;}
.ws13{word-spacing:-0.360000px;}
.ws5b{word-spacing:-0.324000px;}
.ws7a{word-spacing:-0.270000px;}
.wsd{word-spacing:-0.180000px;}
.ws8b{word-spacing:-0.162000px;}
.ws19{word-spacing:-0.090000px;}
.wsb{word-spacing:0.000000px;}
.ws5f{word-spacing:0.012000px;}
.ws7f{word-spacing:0.054000px;}
.ws46{word-spacing:0.108000px;}
.ws36{word-spacing:0.162000px;}
.ws1a{word-spacing:0.180000px;}
.ws16{word-spacing:0.198000px;}
.ws4b{word-spacing:0.216000px;}
.ws45{word-spacing:0.270000px;}
.ws18{word-spacing:0.342000px;}
.ws92{word-spacing:0.378000px;}
.ws6d{word-spacing:0.426000px;}
.ws8d{word-spacing:0.486000px;}
.ws90{word-spacing:0.540000px;}
.ws8f{word-spacing:0.594000px;}
.ws4e{word-spacing:0.630000px;}
.ws8e{word-spacing:0.648000px;}
.ws91{word-spacing:0.684000px;}
.ws4f{word-spacing:0.756000px;}
.wse{word-spacing:0.846000px;}
.ws51{word-spacing:0.918000px;}
.ws50{word-spacing:0.972000px;}
.ws4d{word-spacing:1.236000px;}
.ws79{word-spacing:1.710000px;}
.ws76{word-spacing:1.728000px;}
.ws4c{word-spacing:1.752000px;}
.ws78{word-spacing:1.782000px;}
.ws77{word-spacing:1.854000px;}
.ws75{word-spacing:1.980000px;}
.ws74{word-spacing:2.478000px;}
.ws39{word-spacing:2.538000px;}
.ws38{word-spacing:2.646000px;}
.ws3a{word-spacing:2.754000px;}
.ws37{word-spacing:2.808000px;}
.ws6f{word-spacing:3.132000px;}
.ws72{word-spacing:3.186000px;}
.ws73{word-spacing:3.240000px;}
.ws71{word-spacing:3.276000px;}
.ws82{word-spacing:3.348000px;}
.ws6e{word-spacing:3.402000px;}
.ws4a{word-spacing:3.510000px;}
.ws8c{word-spacing:3.564000px;}
.ws47{word-spacing:3.618000px;}
.ws44{word-spacing:3.726000px;}
.ws48{word-spacing:3.780000px;}
.ws49{word-spacing:3.834000px;}
.ws81{word-spacing:3.852000px;}
.ws41{word-spacing:3.888000px;}
.ws3e{word-spacing:3.942000px;}
.ws42{word-spacing:3.996000px;}
.ws43{word-spacing:4.050000px;}
.ws40{word-spacing:4.104000px;}
.ws3f{word-spacing:4.212000px;}
.ws25{word-spacing:4.320000px;}
.ws22{word-spacing:4.428000px;}
.ws95{word-spacing:4.446000px;}
.ws3c{word-spacing:4.482000px;}
.ws21{word-spacing:4.500000px;}
.ws70{word-spacing:4.506000px;}
.ws24{word-spacing:4.536000px;}
.ws23{word-spacing:4.590000px;}
.ws3b{word-spacing:4.950000px;}
.ws89{word-spacing:5.076000px;}
.ws80{word-spacing:5.082000px;}
.ws3d{word-spacing:5.124000px;}
.ws88{word-spacing:5.184000px;}
.ws87{word-spacing:5.238000px;}
.ws8a{word-spacing:5.292000px;}
.ws53{word-spacing:5.832000px;}
.ws52{word-spacing:6.264000px;}
.ws33{word-spacing:6.300000px;}
.ws32{word-spacing:6.372000px;}
.ws68{word-spacing:6.426000px;}
.ws2f{word-spacing:6.588000px;}
.ws69{word-spacing:6.642000px;}
.ws30{word-spacing:6.660000px;}
.ws6b{word-spacing:6.696000px;}
.ws6a{word-spacing:6.750000px;}
.ws31{word-spacing:6.780000px;}
.ws2b{word-spacing:7.020000px;}
.ws7d{word-spacing:7.074000px;}
.ws2e{word-spacing:7.128000px;}
.ws7c{word-spacing:7.182000px;}
.ws7b{word-spacing:7.236000px;}
.ws7e{word-spacing:7.290000px;}
.ws2c{word-spacing:7.344000px;}
.ws2a{word-spacing:7.380000px;}
.ws2d{word-spacing:7.452000px;}
.ws55{word-spacing:7.506000px;}
.ws58{word-spacing:7.560000px;}
.ws56{word-spacing:7.830000px;}
.ws57{word-spacing:7.938000px;}
.ws59{word-spacing:8.046000px;}
.ws5a{word-spacing:8.100000px;}
.ws5d{word-spacing:8.154000px;}
.ws5c{word-spacing:8.208000px;}
.ws54{word-spacing:8.226000px;}
.ws67{word-spacing:10.206000px;}
.ws66{word-spacing:10.260000px;}
.ws65{word-spacing:10.368000px;}
.ws63{word-spacing:10.530000px;}
.ws1d{word-spacing:10.584000px;}
.ws1f{word-spacing:10.620000px;}
.ws64{word-spacing:10.692000px;}
.ws1b{word-spacing:10.800000px;}
.ws1c{word-spacing:10.908000px;}
.ws20{word-spacing:10.980000px;}
.ws1e{word-spacing:11.070000px;}
.ws28{word-spacing:11.700000px;}
.ws27{word-spacing:11.988000px;}
.ws86{word-spacing:12.042000px;}
.ws29{word-spacing:12.060000px;}
.ws26{word-spacing:12.180000px;}
.ws84{word-spacing:12.276000px;}
.ws83{word-spacing:12.312000px;}
.ws60{word-spacing:12.366000px;}
.ws62{word-spacing:12.420000px;}
.ws85{word-spacing:12.528000px;}
.ws61{word-spacing:12.744000px;}
.ws94{word-spacing:31.464000px;}
._2{margin-left:-2.191738px;}
._0{margin-left:-1.031976px;}
._1{width:1.263600px;}
._4{width:2.484000px;}
._5{width:3.564000px;}
._9{width:4.676400px;}
._a{width:5.844960px;}
._7{width:7.635642px;}
._6{width:8.671800px;}
._8{width:10.716000px;}
._b{width:11.988000px;}
._f{width:15.311970px;}
._10{width:16.638102px;}
._3{width:18.360000px;}
._d{width:19.386000px;}
._e{width:20.412000px;}
._c{width:1237.505160px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:74.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y75{bottom:2.970000px;}
.y7b{bottom:3.240000px;}
.y77{bottom:3.330000px;}
.y7a{bottom:18.750000px;}
.y1{bottom:76.620000px;}
.y31{bottom:116.790092px;}
.y30{bottom:132.360092px;}
.y2f{bottom:147.840092px;}
.y65{bottom:152.575500px;}
.yc3{bottom:152.578500px;}
.y33{bottom:152.580000px;}
.y2e{bottom:163.410092px;}
.y2d{bottom:178.980092px;}
.y4c{bottom:193.800000px;}
.y2c{bottom:194.460092px;}
.y8b{bottom:195.240000px;}
.y64{bottom:195.595500px;}
.yc2{bottom:202.978500px;}
.y2b{bottom:210.030092px;}
.y63{bottom:211.116000px;}
.yc1{bottom:218.023500px;}
.y4b{bottom:225.030000px;}
.y2a{bottom:225.510092px;}
.y8a{bottom:226.200000px;}
.y62{bottom:226.636500px;}
.yc0{bottom:233.559000px;}
.y61{bottom:242.157000px;}
.ybf{bottom:249.585000px;}
.y29{bottom:256.470092px;}
.y89{bottom:257.610000px;}
.y60{bottom:257.677500px;}
.ya5{bottom:260.310000px;}
.ybe{bottom:265.120500px;}
.y88{bottom:273.150000px;}
.y5f{bottom:273.198000px;}
.ya4{bottom:275.344500px;}
.ybd{bottom:280.165500px;}
.y28{bottom:287.880092px;}
.y87{bottom:288.690000px;}
.y5e{bottom:288.718500px;}
.ya3{bottom:291.360000px;}
.ybc{bottom:296.191500px;}
.y27{bottom:303.360092px;}
.y86{bottom:304.230000px;}
.y5d{bottom:304.239000px;}
.ya2{bottom:306.885000px;}
.ybb{bottom:311.727000px;}
.y26{bottom:318.930092px;}
.y5c{bottom:319.759500px;}
.y85{bottom:319.770000px;}
.ya1{bottom:322.410000px;}
.yba{bottom:327.262500px;}
.y25{bottom:334.500092px;}
.y5b{bottom:335.280000px;}
.y84{bottom:335.310000px;}
.ya0{bottom:337.935000px;}
.yb9{bottom:342.798000px;}
.y24{bottom:350.070092px;}
.y83{bottom:350.850000px;}
.y9f{bottom:353.460000px;}
.yb8{bottom:358.333500px;}
.y23{bottom:365.550092px;}
.y82{bottom:366.390000px;}
.y5a{bottom:366.510000px;}
.yb7{bottom:373.869000px;}
.y22{bottom:381.120092px;}
.y81{bottom:381.930000px;}
.y9e{bottom:384.690000px;}
.yb6{bottom:389.404500px;}
.y21{bottom:396.600092px;}
.y80{bottom:397.470000px;}
.yb5{bottom:404.940000px;}
.y20{bottom:412.170092px;}
.y1f{bottom:427.650092px;}
.y7f{bottom:428.430000px;}
.yb4{bottom:436.170000px;}
.y1e{bottom:443.130092px;}
.y79{bottom:457.410000px;}
.y1d{bottom:474.090092px;}
.y7e{bottom:489.300000px;}
.y1c{bottom:520.380092px;}
.y7d{bottom:521.160000px;}
.yd8{bottom:522.870000px;}
.yd7{bottom:538.350000px;}
.y7c{bottom:553.020000px;}
.yd6{bottom:553.920000px;}
.y1b{bottom:554.940092px;}
.y9d{bottom:562.200000px;}
.yd5{bottom:569.400000px;}
.y1a{bottom:570.510092px;}
.y9c{bottom:577.770000px;}
.y76{bottom:584.880000px;}
.yd4{bottom:584.970000px;}
.y19{bottom:585.990092px;}
.y9b{bottom:593.250000px;}
.yd3{bottom:600.450000px;}
.y18{bottom:601.560091px;}
.y9a{bottom:608.820000px;}
.yd2{bottom:616.020000px;}
.y78{bottom:616.740000px;}
.y17{bottom:617.040092px;}
.y99{bottom:624.300000px;}
.yd1{bottom:631.500000px;}
.y16{bottom:632.610092px;}
.yd0{bottom:647.070000px;}
.y15{bottom:648.090091px;}
.y74{bottom:648.690000px;}
.y98{bottom:655.530000px;}
.ycf{bottom:662.550000px;}
.y14{bottom:663.660092px;}
.y13{bottom:679.140092px;}
.yce{bottom:693.330000px;}
.y12{bottom:694.710091px;}
.y73{bottom:702.780000px;}
.yb3{bottom:706.200000px;}
.y11{bottom:710.190091px;}
.y59{bottom:715.110000px;}
.yb2{bottom:721.770000px;}
.y10{bottom:725.760092px;}
.y58{bottom:730.590000px;}
.y72{bottom:734.010000px;}
.yb1{bottom:737.250000px;}
.ycd{bottom:740.400000px;}
.y57{bottom:746.160000px;}
.yf{bottom:747.990091px;}
.y71{bottom:749.490000px;}
.yb0{bottom:752.910000px;}
.ycc{bottom:755.970000px;}
.y56{bottom:761.640000px;}
.y70{bottom:765.060000px;}
.yaf{bottom:768.390000px;}
.ycb{bottom:771.450000px;}
.ye{bottom:774.720091px;}
.y55{bottom:777.120000px;}
.y6f{bottom:780.540000px;}
.yae{bottom:783.870000px;}
.y4a{bottom:785.850000px;}
.yca{bottom:787.020000px;}
.yd{bottom:790.290000px;}
.y6e{bottom:796.020000px;}
.yad{bottom:799.530000px;}
.y49{bottom:801.330000px;}
.yc{bottom:805.860091px;}
.y54{bottom:808.080000px;}
.y6d{bottom:811.680000px;}
.yac{bottom:815.010000px;}
.y48{bottom:816.900000px;}
.yc9{bottom:817.890000px;}
.y6c{bottom:827.160000px;}
.yab{bottom:830.580000px;}
.y47{bottom:832.380000px;}
.y53{bottom:839.310000px;}
.yb{bottom:840.420000px;}
.y6b{bottom:842.730000px;}
.yaa{bottom:846.150000px;}
.y46{bottom:847.860000px;}
.yc8{bottom:849.390000px;}
.y6a{bottom:858.210000px;}
.ya9{bottom:861.720000px;}
.ya{bottom:862.020000px;}
.y45{bottom:863.430000px;}
.yc7{bottom:864.870000px;}
.y52{bottom:870.720000px;}
.ya8{bottom:877.200000px;}
.y44{bottom:878.910000px;}
.yc6{bottom:880.440000px;}
.y51{bottom:886.200000px;}
.y69{bottom:889.440000px;}
.ya7{bottom:892.680000px;}
.y9{bottom:892.890000px;}
.y97{bottom:894.210000px;}
.y43{bottom:894.480000px;}
.yc5{bottom:895.920000px;}
.y50{bottom:901.770000px;}
.y96{bottom:909.690000px;}
.y42{bottom:909.960000px;}
.ya6{bottom:923.910000px;}
.y95{bottom:925.260000px;}
.y41{bottom:925.530000px;}
.yc4{bottom:927.150000px;}
.y8{bottom:931.320000px;}
.y4f{bottom:932.910000px;}
.y94{bottom:940.830000px;}
.y40{bottom:941.010000px;}
.y93{bottom:956.310000px;}
.y3f{bottom:956.580000px;}
.y7{bottom:970.380000px;}
.y92{bottom:971.880000px;}
.y3e{bottom:972.150000px;}
.y3d{bottom:987.720000px;}
.y91{bottom:1002.750000px;}
.y3c{bottom:1003.200000px;}
.y3b{bottom:1018.800000px;}
.y4{bottom:1030.530000px;}
.y3a{bottom:1034.280000px;}
.y6{bottom:1039.170000px;}
.y90{bottom:1049.760000px;}
.y39{bottom:1049.850000px;}
.y5{bottom:1055.550000px;}
.y3{bottom:1058.700000px;}
.y38{bottom:1065.330000px;}
.y8f{bottom:1065.420000px;}
.y37{bottom:1080.810000px;}
.y8e{bottom:1080.900000px;}
.y36{bottom:1096.470000px;}
.y68{bottom:1096.650000px;}
.y4e{bottom:1111.770000px;}
.y35{bottom:1111.950000px;}
.y8d{bottom:1112.130000px;}
.y67{bottom:1112.220000px;}
.y8c{bottom:1127.610000px;}
.y66{bottom:1127.700000px;}
.y4d{bottom:1143.270000px;}
.y2{bottom:1158.000000px;}
.y34{bottom:1158.750000px;}
.y32{bottom:1193.670000px;}
.hf{height:31.050000px;}
.h13{height:31.072500px;}
.h11{height:31.140000px;}
.h9{height:35.314453px;}
.h8{height:52.971680px;}
.ha{height:52.972046px;}
.hd{height:52.998047px;}
.hb{height:54.421875px;}
.hc{height:54.422241px;}
.h5{height:55.796836px;}
.h4{height:57.324375px;}
.he{height:59.452031px;}
.h10{height:63.000000px;}
.h1{height:64.657617px;}
.h7{height:72.329063px;}
.h2{height:72.562500px;}
.h3{height:75.465000px;}
.h6{height:84.535312px;}
.h12{height:126.742500px;}
.h0{height:1263.000000px;}
.w1{width:113.670000px;}
.w2{width:208.380000px;}
.w3{width:237.450000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x19{left:20.520000px;}
.x18{left:45.090000px;}
.xb{left:62.041500px;}
.x6{left:63.091500px;}
.x21{left:74.250000px;}
.x14{left:154.920000px;}
.x10{left:161.850000px;}
.x4{left:199.800000px;}
.x12{left:203.340000px;}
.x3{left:207.450000px;}
.x1f{left:223.770000px;}
.x1d{left:238.620000px;}
.x1a{left:239.790000px;}
.x1c{left:243.120000px;}
.x16{left:268.950000px;}
.x1b{left:273.630000px;}
.x2{left:277.800000px;}
.xd{left:285.060000px;}
.x13{left:286.770000px;}
.xe{left:332.310000px;}
.xa{left:364.291500px;}
.x9{left:384.751500px;}
.x7{left:390.541500px;}
.x20{left:392.550000px;}
.x8{left:394.471500px;}
.xf{left:397.320000px;}
.xc{left:422.610000px;}
.x11{left:425.929500px;}
.x1e{left:427.590000px;}
.x1{left:440.550000px;}
.x17{left:477.690000px;}
.x5{left:478.980000px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.440000pt;}
.v1{vertical-align:26.560000pt;}
.ls12{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.224000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.026667pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls13{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.005333pt;}
.ls11{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.123520pt;}
.lsf{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.159984pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.389333pt;}
.ls19{letter-spacing:0.432000pt;}
.ls17{letter-spacing:1.274667pt;}
.ls2{letter-spacing:2.640000pt;}
.ls16{letter-spacing:2.730667pt;}
.ws10{word-spacing:-33.539200pt;}
.ws35{word-spacing:-33.187840pt;}
.ws6c{word-spacing:-31.872000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.800000pt;}
.wsf{word-spacing:-14.640000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws3{word-spacing:-12.613333pt;}
.ws14{word-spacing:-12.128000pt;}
.ws11{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws34{word-spacing:-11.984000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws15{word-spacing:-11.872000pt;}
.ws5e{word-spacing:-11.808000pt;}
.ws93{word-spacing:-11.776000pt;}
.ws17{word-spacing:-11.680000pt;}
.ws5{word-spacing:-9.360000pt;}
.wsa{word-spacing:-8.064000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws12{word-spacing:-0.880000pt;}
.wsc{word-spacing:-0.528000pt;}
.ws13{word-spacing:-0.320000pt;}
.ws5b{word-spacing:-0.288000pt;}
.ws7a{word-spacing:-0.240000pt;}
.wsd{word-spacing:-0.160000pt;}
.ws8b{word-spacing:-0.144000pt;}
.ws19{word-spacing:-0.080000pt;}
.wsb{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.010667pt;}
.ws7f{word-spacing:0.048000pt;}
.ws46{word-spacing:0.096000pt;}
.ws36{word-spacing:0.144000pt;}
.ws1a{word-spacing:0.160000pt;}
.ws16{word-spacing:0.176000pt;}
.ws4b{word-spacing:0.192000pt;}
.ws45{word-spacing:0.240000pt;}
.ws18{word-spacing:0.304000pt;}
.ws92{word-spacing:0.336000pt;}
.ws6d{word-spacing:0.378667pt;}
.ws8d{word-spacing:0.432000pt;}
.ws90{word-spacing:0.480000pt;}
.ws8f{word-spacing:0.528000pt;}
.ws4e{word-spacing:0.560000pt;}
.ws8e{word-spacing:0.576000pt;}
.ws91{word-spacing:0.608000pt;}
.ws4f{word-spacing:0.672000pt;}
.wse{word-spacing:0.752000pt;}
.ws51{word-spacing:0.816000pt;}
.ws50{word-spacing:0.864000pt;}
.ws4d{word-spacing:1.098667pt;}
.ws79{word-spacing:1.520000pt;}
.ws76{word-spacing:1.536000pt;}
.ws4c{word-spacing:1.557333pt;}
.ws78{word-spacing:1.584000pt;}
.ws77{word-spacing:1.648000pt;}
.ws75{word-spacing:1.760000pt;}
.ws74{word-spacing:2.202667pt;}
.ws39{word-spacing:2.256000pt;}
.ws38{word-spacing:2.352000pt;}
.ws3a{word-spacing:2.448000pt;}
.ws37{word-spacing:2.496000pt;}
.ws6f{word-spacing:2.784000pt;}
.ws72{word-spacing:2.832000pt;}
.ws73{word-spacing:2.880000pt;}
.ws71{word-spacing:2.912000pt;}
.ws82{word-spacing:2.976000pt;}
.ws6e{word-spacing:3.024000pt;}
.ws4a{word-spacing:3.120000pt;}
.ws8c{word-spacing:3.168000pt;}
.ws47{word-spacing:3.216000pt;}
.ws44{word-spacing:3.312000pt;}
.ws48{word-spacing:3.360000pt;}
.ws49{word-spacing:3.408000pt;}
.ws81{word-spacing:3.424000pt;}
.ws41{word-spacing:3.456000pt;}
.ws3e{word-spacing:3.504000pt;}
.ws42{word-spacing:3.552000pt;}
.ws43{word-spacing:3.600000pt;}
.ws40{word-spacing:3.648000pt;}
.ws3f{word-spacing:3.744000pt;}
.ws25{word-spacing:3.840000pt;}
.ws22{word-spacing:3.936000pt;}
.ws95{word-spacing:3.952000pt;}
.ws3c{word-spacing:3.984000pt;}
.ws21{word-spacing:4.000000pt;}
.ws70{word-spacing:4.005333pt;}
.ws24{word-spacing:4.032000pt;}
.ws23{word-spacing:4.080000pt;}
.ws3b{word-spacing:4.400000pt;}
.ws89{word-spacing:4.512000pt;}
.ws80{word-spacing:4.517333pt;}
.ws3d{word-spacing:4.554667pt;}
.ws88{word-spacing:4.608000pt;}
.ws87{word-spacing:4.656000pt;}
.ws8a{word-spacing:4.704000pt;}
.ws53{word-spacing:5.184000pt;}
.ws52{word-spacing:5.568000pt;}
.ws33{word-spacing:5.600000pt;}
.ws32{word-spacing:5.664000pt;}
.ws68{word-spacing:5.712000pt;}
.ws2f{word-spacing:5.856000pt;}
.ws69{word-spacing:5.904000pt;}
.ws30{word-spacing:5.920000pt;}
.ws6b{word-spacing:5.952000pt;}
.ws6a{word-spacing:6.000000pt;}
.ws31{word-spacing:6.026667pt;}
.ws2b{word-spacing:6.240000pt;}
.ws7d{word-spacing:6.288000pt;}
.ws2e{word-spacing:6.336000pt;}
.ws7c{word-spacing:6.384000pt;}
.ws7b{word-spacing:6.432000pt;}
.ws7e{word-spacing:6.480000pt;}
.ws2c{word-spacing:6.528000pt;}
.ws2a{word-spacing:6.560000pt;}
.ws2d{word-spacing:6.624000pt;}
.ws55{word-spacing:6.672000pt;}
.ws58{word-spacing:6.720000pt;}
.ws56{word-spacing:6.960000pt;}
.ws57{word-spacing:7.056000pt;}
.ws59{word-spacing:7.152000pt;}
.ws5a{word-spacing:7.200000pt;}
.ws5d{word-spacing:7.248000pt;}
.ws5c{word-spacing:7.296000pt;}
.ws54{word-spacing:7.312000pt;}
.ws67{word-spacing:9.072000pt;}
.ws66{word-spacing:9.120000pt;}
.ws65{word-spacing:9.216000pt;}
.ws63{word-spacing:9.360000pt;}
.ws1d{word-spacing:9.408000pt;}
.ws1f{word-spacing:9.440000pt;}
.ws64{word-spacing:9.504000pt;}
.ws1b{word-spacing:9.600000pt;}
.ws1c{word-spacing:9.696000pt;}
.ws20{word-spacing:9.760000pt;}
.ws1e{word-spacing:9.840000pt;}
.ws28{word-spacing:10.400000pt;}
.ws27{word-spacing:10.656000pt;}
.ws86{word-spacing:10.704000pt;}
.ws29{word-spacing:10.720000pt;}
.ws26{word-spacing:10.826667pt;}
.ws84{word-spacing:10.912000pt;}
.ws83{word-spacing:10.944000pt;}
.ws60{word-spacing:10.992000pt;}
.ws62{word-spacing:11.040000pt;}
.ws85{word-spacing:11.136000pt;}
.ws61{word-spacing:11.328000pt;}
.ws94{word-spacing:27.968000pt;}
._2{margin-left:-1.948211pt;}
._0{margin-left:-0.917312pt;}
._1{width:1.123200pt;}
._4{width:2.208000pt;}
._5{width:3.168000pt;}
._9{width:4.156800pt;}
._a{width:5.195520pt;}
._7{width:6.787237pt;}
._6{width:7.708267pt;}
._8{width:9.525333pt;}
._b{width:10.656000pt;}
._f{width:13.610640pt;}
._10{width:14.789424pt;}
._3{width:16.320000pt;}
._d{width:17.232000pt;}
._e{width:18.144000pt;}
._c{width:1100.004587pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:2.640000pt;}
.y7b{bottom:2.880000pt;}
.y77{bottom:2.960000pt;}
.y7a{bottom:16.666667pt;}
.y1{bottom:68.106667pt;}
.y31{bottom:103.813415pt;}
.y30{bottom:117.653415pt;}
.y2f{bottom:131.413415pt;}
.y65{bottom:135.622667pt;}
.yc3{bottom:135.625333pt;}
.y33{bottom:135.626667pt;}
.y2e{bottom:145.253415pt;}
.y2d{bottom:159.093415pt;}
.y4c{bottom:172.266667pt;}
.y2c{bottom:172.853415pt;}
.y8b{bottom:173.546667pt;}
.y64{bottom:173.862667pt;}
.yc2{bottom:180.425333pt;}
.y2b{bottom:186.693415pt;}
.y63{bottom:187.658667pt;}
.yc1{bottom:193.798667pt;}
.y4b{bottom:200.026667pt;}
.y2a{bottom:200.453415pt;}
.y8a{bottom:201.066667pt;}
.y62{bottom:201.454667pt;}
.yc0{bottom:207.608000pt;}
.y61{bottom:215.250667pt;}
.ybf{bottom:221.853333pt;}
.y29{bottom:227.973415pt;}
.y89{bottom:228.986667pt;}
.y60{bottom:229.046667pt;}
.ya5{bottom:231.386667pt;}
.ybe{bottom:235.662667pt;}
.y88{bottom:242.800000pt;}
.y5f{bottom:242.842667pt;}
.ya4{bottom:244.750667pt;}
.ybd{bottom:249.036000pt;}
.y28{bottom:255.893415pt;}
.y87{bottom:256.613333pt;}
.y5e{bottom:256.638667pt;}
.ya3{bottom:258.986667pt;}
.ybc{bottom:263.281333pt;}
.y27{bottom:269.653415pt;}
.y86{bottom:270.426667pt;}
.y5d{bottom:270.434667pt;}
.ya2{bottom:272.786667pt;}
.ybb{bottom:277.090667pt;}
.y26{bottom:283.493415pt;}
.y5c{bottom:284.230667pt;}
.y85{bottom:284.240000pt;}
.ya1{bottom:286.586667pt;}
.yba{bottom:290.900000pt;}
.y25{bottom:297.333415pt;}
.y5b{bottom:298.026667pt;}
.y84{bottom:298.053333pt;}
.ya0{bottom:300.386667pt;}
.yb9{bottom:304.709333pt;}
.y24{bottom:311.173415pt;}
.y83{bottom:311.866667pt;}
.y9f{bottom:314.186667pt;}
.yb8{bottom:318.518667pt;}
.y23{bottom:324.933415pt;}
.y82{bottom:325.680000pt;}
.y5a{bottom:325.786667pt;}
.yb7{bottom:332.328000pt;}
.y22{bottom:338.773415pt;}
.y81{bottom:339.493333pt;}
.y9e{bottom:341.946667pt;}
.yb6{bottom:346.137333pt;}
.y21{bottom:352.533415pt;}
.y80{bottom:353.306667pt;}
.yb5{bottom:359.946667pt;}
.y20{bottom:366.373415pt;}
.y1f{bottom:380.133415pt;}
.y7f{bottom:380.826667pt;}
.yb4{bottom:387.706667pt;}
.y1e{bottom:393.893415pt;}
.y79{bottom:406.586667pt;}
.y1d{bottom:421.413415pt;}
.y7e{bottom:434.933333pt;}
.y1c{bottom:462.560081pt;}
.y7d{bottom:463.253333pt;}
.yd8{bottom:464.773333pt;}
.yd7{bottom:478.533333pt;}
.y7c{bottom:491.573333pt;}
.yd6{bottom:492.373333pt;}
.y1b{bottom:493.280081pt;}
.y9d{bottom:499.733333pt;}
.yd5{bottom:506.133333pt;}
.y1a{bottom:507.120081pt;}
.y9c{bottom:513.573333pt;}
.y76{bottom:519.893333pt;}
.yd4{bottom:519.973333pt;}
.y19{bottom:520.880081pt;}
.y9b{bottom:527.333333pt;}
.yd3{bottom:533.733333pt;}
.y18{bottom:534.720081pt;}
.y9a{bottom:541.173333pt;}
.yd2{bottom:547.573333pt;}
.y78{bottom:548.213333pt;}
.y17{bottom:548.480081pt;}
.y99{bottom:554.933333pt;}
.yd1{bottom:561.333333pt;}
.y16{bottom:562.320081pt;}
.yd0{bottom:575.173333pt;}
.y15{bottom:576.080081pt;}
.y74{bottom:576.613333pt;}
.y98{bottom:582.693333pt;}
.ycf{bottom:588.933333pt;}
.y14{bottom:589.920081pt;}
.y13{bottom:603.680081pt;}
.yce{bottom:616.293333pt;}
.y12{bottom:617.520081pt;}
.y73{bottom:624.693333pt;}
.yb3{bottom:627.733333pt;}
.y11{bottom:631.280081pt;}
.y59{bottom:635.653333pt;}
.yb2{bottom:641.573333pt;}
.y10{bottom:645.120081pt;}
.y58{bottom:649.413333pt;}
.y72{bottom:652.453333pt;}
.yb1{bottom:655.333333pt;}
.ycd{bottom:658.133333pt;}
.y57{bottom:663.253333pt;}
.yf{bottom:664.880081pt;}
.y71{bottom:666.213333pt;}
.yb0{bottom:669.253333pt;}
.ycc{bottom:671.973333pt;}
.y56{bottom:677.013333pt;}
.y70{bottom:680.053333pt;}
.yaf{bottom:683.013333pt;}
.ycb{bottom:685.733333pt;}
.ye{bottom:688.640081pt;}
.y55{bottom:690.773333pt;}
.y6f{bottom:693.813333pt;}
.yae{bottom:696.773333pt;}
.y4a{bottom:698.533333pt;}
.yca{bottom:699.573333pt;}
.yd{bottom:702.480000pt;}
.y6e{bottom:707.573333pt;}
.yad{bottom:710.693333pt;}
.y49{bottom:712.293333pt;}
.yc{bottom:716.320081pt;}
.y54{bottom:718.293333pt;}
.y6d{bottom:721.493333pt;}
.yac{bottom:724.453333pt;}
.y48{bottom:726.133333pt;}
.yc9{bottom:727.013333pt;}
.y6c{bottom:735.253333pt;}
.yab{bottom:738.293333pt;}
.y47{bottom:739.893333pt;}
.y53{bottom:746.053333pt;}
.yb{bottom:747.040000pt;}
.y6b{bottom:749.093333pt;}
.yaa{bottom:752.133333pt;}
.y46{bottom:753.653333pt;}
.yc8{bottom:755.013333pt;}
.y6a{bottom:762.853333pt;}
.ya9{bottom:765.973333pt;}
.ya{bottom:766.240000pt;}
.y45{bottom:767.493333pt;}
.yc7{bottom:768.773333pt;}
.y52{bottom:773.973333pt;}
.ya8{bottom:779.733333pt;}
.y44{bottom:781.253333pt;}
.yc6{bottom:782.613333pt;}
.y51{bottom:787.733333pt;}
.y69{bottom:790.613333pt;}
.ya7{bottom:793.493333pt;}
.y9{bottom:793.680000pt;}
.y97{bottom:794.853333pt;}
.y43{bottom:795.093333pt;}
.yc5{bottom:796.373333pt;}
.y50{bottom:801.573333pt;}
.y96{bottom:808.613333pt;}
.y42{bottom:808.853333pt;}
.ya6{bottom:821.253333pt;}
.y95{bottom:822.453333pt;}
.y41{bottom:822.693333pt;}
.yc4{bottom:824.133333pt;}
.y8{bottom:827.840000pt;}
.y4f{bottom:829.253333pt;}
.y94{bottom:836.293333pt;}
.y40{bottom:836.453333pt;}
.y93{bottom:850.053333pt;}
.y3f{bottom:850.293333pt;}
.y7{bottom:862.560000pt;}
.y92{bottom:863.893333pt;}
.y3e{bottom:864.133333pt;}
.y3d{bottom:877.973333pt;}
.y91{bottom:891.333333pt;}
.y3c{bottom:891.733333pt;}
.y3b{bottom:905.600000pt;}
.y4{bottom:916.026667pt;}
.y3a{bottom:919.360000pt;}
.y6{bottom:923.706667pt;}
.y90{bottom:933.120000pt;}
.y39{bottom:933.200000pt;}
.y5{bottom:938.266667pt;}
.y3{bottom:941.066667pt;}
.y38{bottom:946.960000pt;}
.y8f{bottom:947.040000pt;}
.y37{bottom:960.720000pt;}
.y8e{bottom:960.800000pt;}
.y36{bottom:974.640000pt;}
.y68{bottom:974.800000pt;}
.y4e{bottom:988.240000pt;}
.y35{bottom:988.400000pt;}
.y8d{bottom:988.560000pt;}
.y67{bottom:988.640000pt;}
.y8c{bottom:1002.320000pt;}
.y66{bottom:1002.400000pt;}
.y4d{bottom:1016.240000pt;}
.y2{bottom:1029.333333pt;}
.y34{bottom:1030.000000pt;}
.y32{bottom:1061.040000pt;}
.hf{height:27.600000pt;}
.h13{height:27.620000pt;}
.h11{height:27.680000pt;}
.h9{height:31.390625pt;}
.h8{height:47.085938pt;}
.ha{height:47.086263pt;}
.hd{height:47.109375pt;}
.hb{height:48.375000pt;}
.hc{height:48.375325pt;}
.h5{height:49.597187pt;}
.h4{height:50.955000pt;}
.he{height:52.846250pt;}
.h10{height:56.000000pt;}
.h1{height:57.473437pt;}
.h7{height:64.292500pt;}
.h2{height:64.500000pt;}
.h3{height:67.080000pt;}
.h6{height:75.142500pt;}
.h12{height:112.660000pt;}
.h0{height:1122.666667pt;}
.w1{width:101.040000pt;}
.w2{width:185.226667pt;}
.w3{width:211.066667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x19{left:18.240000pt;}
.x18{left:40.080000pt;}
.xb{left:55.148000pt;}
.x6{left:56.081333pt;}
.x21{left:66.000000pt;}
.x14{left:137.706667pt;}
.x10{left:143.866667pt;}
.x4{left:177.600000pt;}
.x12{left:180.746667pt;}
.x3{left:184.400000pt;}
.x1f{left:198.906667pt;}
.x1d{left:212.106667pt;}
.x1a{left:213.146667pt;}
.x1c{left:216.106667pt;}
.x16{left:239.066667pt;}
.x1b{left:243.226667pt;}
.x2{left:246.933333pt;}
.xd{left:253.386667pt;}
.x13{left:254.906667pt;}
.xe{left:295.386667pt;}
.xa{left:323.814667pt;}
.x9{left:342.001333pt;}
.x7{left:347.148000pt;}
.x20{left:348.933333pt;}
.x8{left:350.641333pt;}
.xf{left:353.173333pt;}
.xc{left:375.653333pt;}
.x11{left:378.604000pt;}
.x1e{left:380.080000pt;}
.x1{left:391.600000pt;}
.x17{left:424.613333pt;}
.x5{left:425.760000pt;}
}




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