
    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_ffd817cddf2cf48af3ff8fea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074000;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_8d1ab1f0eaa9d698c061f9c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.070000;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_eff82055be0754c42d50c844.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112000;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_d6b9daf59650db4e54172f17.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1e81ff7b5e59a55b52984070.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_ea0d60c60e3f1c3f2aeeb161.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112000;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_2d61c7e6e13c0f82d04e2ae3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956000;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_a98d0b521b9d430a6f94e569.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.117000;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_c05d49fa919dbc43735b6c96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970000;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_e860368e3bad6203d9eca1aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739000;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_15fda807001bc53d9815e449.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966000;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_28f5376833e9e05109709ea3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.117000;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_eccc78f82fa461813819ed38.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.117000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.lsc{letter-spacing:-3.618000px;}
.lsa{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.060000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.349200px;}
.lsd{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.702000px;}
.ls5{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.840000px;}
.ls4{letter-spacing:0.960000px;}
.lsb{letter-spacing:1.200000px;}
.ls0{letter-spacing:1.440000px;}
.ls8{letter-spacing:1.800000px;}
.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;}
}
.ws0{word-spacing:-33.264000px;}
.ws1{word-spacing:-19.740000px;}
.ws8{word-spacing:-17.064000px;}
.wsbf{word-spacing:-16.368000px;}
.wsb5{word-spacing:-15.888000px;}
.wsb6{word-spacing:-15.648000px;}
.ws7{word-spacing:-14.220000px;}
.ws8a{word-spacing:-14.100000px;}
.wsbe{word-spacing:-13.620000px;}
.wsa3{word-spacing:-13.560000px;}
.ws98{word-spacing:-13.380000px;}
.wsa2{word-spacing:-13.200000px;}
.ws6{word-spacing:-13.080000px;}
.wsa8{word-spacing:-8.003424px;}
.wsa5{word-spacing:-3.840000px;}
.ws31{word-spacing:-2.820000px;}
.wsaf{word-spacing:-2.760000px;}
.ws93{word-spacing:-2.700000px;}
.ws83{word-spacing:-2.640000px;}
.ws74{word-spacing:-2.580000px;}
.ws1e{word-spacing:-2.520000px;}
.wsb0{word-spacing:-2.460000px;}
.ws6c{word-spacing:-2.400000px;}
.ws7e{word-spacing:-2.340000px;}
.ws5c{word-spacing:-2.280000px;}
.ws3c{word-spacing:-2.220000px;}
.ws71{word-spacing:-2.160000px;}
.wsb1{word-spacing:-2.100000px;}
.ws1d{word-spacing:-2.040000px;}
.ws38{word-spacing:-1.980000px;}
.ws32{word-spacing:-1.920000px;}
.ws86{word-spacing:-1.860000px;}
.ws7f{word-spacing:-1.800000px;}
.ws4{word-spacing:-1.776000px;}
.wsb7{word-spacing:-1.728000px;}
.ws60{word-spacing:-1.680000px;}
.ws22{word-spacing:-1.620000px;}
.ws16{word-spacing:-1.560000px;}
.ws89{word-spacing:-1.500000px;}
.ws2{word-spacing:-1.488000px;}
.ws18{word-spacing:-1.320000px;}
.wsbb{word-spacing:-1.296000px;}
.ws95{word-spacing:-1.200000px;}
.wsa6{word-spacing:-1.140000px;}
.ws5e{word-spacing:-1.080000px;}
.ws77{word-spacing:-1.020000px;}
.ws73{word-spacing:-0.960000px;}
.ws13{word-spacing:-0.900000px;}
.ws5a{word-spacing:-0.840000px;}
.ws2d{word-spacing:-0.780000px;}
.ws5{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.684000px;}
.ws49{word-spacing:-0.660000px;}
.ws2a{word-spacing:-0.600000px;}
.ws39{word-spacing:-0.540000px;}
.wsb4{word-spacing:-0.528000px;}
.ws67{word-spacing:-0.420000px;}
.wsf{word-spacing:-0.396000px;}
.ws30{word-spacing:-0.360000px;}
.ws3f{word-spacing:-0.300000px;}
.ws1f{word-spacing:-0.240000px;}
.ws28{word-spacing:-0.180000px;}
.ws61{word-spacing:-0.120000px;}
.wsd{word-spacing:-0.108000px;}
.ws4a{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws27{word-spacing:0.060000px;}
.wsc{word-spacing:0.072000px;}
.ws6a{word-spacing:0.120000px;}
.ws76{word-spacing:0.180000px;}
.ws6b{word-spacing:0.240000px;}
.ws23{word-spacing:0.300000px;}
.wsad{word-spacing:0.360000px;}
.ws9c{word-spacing:0.420000px;}
.ws20{word-spacing:0.480000px;}
.ws15{word-spacing:0.540000px;}
.ws9b{word-spacing:0.600000px;}
.ws21{word-spacing:0.660000px;}
.ws1a{word-spacing:0.720000px;}
.ws14{word-spacing:0.780000px;}
.ws36{word-spacing:0.840000px;}
.wsb2{word-spacing:0.900000px;}
.ws5b{word-spacing:0.960000px;}
.ws72{word-spacing:1.020000px;}
.ws33{word-spacing:1.080000px;}
.ws81{word-spacing:1.140000px;}
.ws7d{word-spacing:1.200000px;}
.wsb{word-spacing:1.260000px;}
.ws62{word-spacing:1.320000px;}
.ws84{word-spacing:1.380000px;}
.ws44{word-spacing:1.440000px;}
.ws4c{word-spacing:1.500000px;}
.ws55{word-spacing:1.560000px;}
.ws1c{word-spacing:1.620000px;}
.ws51{word-spacing:1.680000px;}
.ws3a{word-spacing:1.740000px;}
.ws97{word-spacing:1.800000px;}
.ws47{word-spacing:1.860000px;}
.ws92{word-spacing:1.920000px;}
.ws82{word-spacing:1.980000px;}
.wsba{word-spacing:2.016000px;}
.ws26{word-spacing:2.040000px;}
.ws66{word-spacing:2.100000px;}
.ws10{word-spacing:2.160000px;}
.ws3d{word-spacing:2.220000px;}
.ws4f{word-spacing:2.280000px;}
.ws2e{word-spacing:2.340000px;}
.ws4d{word-spacing:2.400000px;}
.ws40{word-spacing:2.460000px;}
.ws19{word-spacing:2.520000px;}
.ws78{word-spacing:2.580000px;}
.ws48{word-spacing:2.640000px;}
.ws8e{word-spacing:2.700000px;}
.ws3e{word-spacing:2.760000px;}
.ws8d{word-spacing:2.820000px;}
.ws75{word-spacing:2.880000px;}
.ws79{word-spacing:2.940000px;}
.wsa{word-spacing:2.952000px;}
.ws87{word-spacing:3.000000px;}
.ws69{word-spacing:3.060000px;}
.ws24{word-spacing:3.120000px;}
.ws43{word-spacing:3.180000px;}
.ws91{word-spacing:3.240000px;}
.ws58{word-spacing:3.300000px;}
.ws4b{word-spacing:3.360000px;}
.ws4e{word-spacing:3.420000px;}
.ws2c{word-spacing:3.480000px;}
.wsa9{word-spacing:3.600000px;}
.ws8b{word-spacing:3.618000px;}
.ws34{word-spacing:3.660000px;}
.ws46{word-spacing:3.720000px;}
.ws7c{word-spacing:3.780000px;}
.ws45{word-spacing:3.840000px;}
.ws37{word-spacing:3.900000px;}
.ws56{word-spacing:3.960000px;}
.wsa4{word-spacing:4.020000px;}
.ws2f{word-spacing:4.080000px;}
.ws41{word-spacing:4.140000px;}
.wsa1{word-spacing:4.260000px;}
.wsb9{word-spacing:4.320000px;}
.wsb8{word-spacing:4.368000px;}
.wsa0{word-spacing:4.380000px;}
.wsb3{word-spacing:4.440000px;}
.ws57{word-spacing:4.500000px;}
.ws9f{word-spacing:4.680000px;}
.ws17{word-spacing:4.740000px;}
.ws9a{word-spacing:4.920000px;}
.ws65{word-spacing:4.980000px;}
.ws52{word-spacing:5.040000px;}
.ws68{word-spacing:5.100000px;}
.ws29{word-spacing:5.160000px;}
.ws88{word-spacing:5.220000px;}
.ws64{word-spacing:5.280000px;}
.ws12{word-spacing:5.328000px;}
.ws70{word-spacing:5.340000px;}
.ws1b{word-spacing:5.400000px;}
.ws90{word-spacing:5.520000px;}
.wsac{word-spacing:5.640000px;}
.ws63{word-spacing:5.700000px;}
.ws6f{word-spacing:5.820000px;}
.ws42{word-spacing:5.880000px;}
.ws9e{word-spacing:5.940000px;}
.ws11{word-spacing:5.976000px;}
.ws99{word-spacing:6.060000px;}
.ws5d{word-spacing:6.120000px;}
.wsaa{word-spacing:6.240000px;}
.ws59{word-spacing:6.360000px;}
.wsa7{word-spacing:6.420000px;}
.ws2b{word-spacing:6.540000px;}
.ws85{word-spacing:6.600000px;}
.ws6d{word-spacing:6.780000px;}
.ws53{word-spacing:6.840000px;}
.ws25{word-spacing:6.960000px;}
.ws94{word-spacing:7.020000px;}
.ws54{word-spacing:7.080000px;}
.wsae{word-spacing:7.140000px;}
.ws3b{word-spacing:7.200000px;}
.ws50{word-spacing:7.260000px;}
.ws5f{word-spacing:7.320000px;}
.ws8c{word-spacing:7.380000px;}
.ws6e{word-spacing:7.440000px;}
.ws80{word-spacing:7.500000px;}
.wse{word-spacing:7.596000px;}
.ws9d{word-spacing:7.680000px;}
.ws8f{word-spacing:7.740000px;}
.ws96{word-spacing:7.920000px;}
.ws35{word-spacing:7.980000px;}
.wsab{word-spacing:8.100000px;}
.ws7a{word-spacing:8.160000px;}
.ws7b{word-spacing:10.860000px;}
.wsbd{word-spacing:12.480000px;}
.wsbc{word-spacing:12.672000px;}
._6{margin-left:-11.899200px;}
._a{margin-left:-7.554000px;}
._5{margin-left:-5.880000px;}
._4{margin-left:-4.200000px;}
._0{margin-left:-2.160000px;}
._2{margin-left:-1.020000px;}
._1{width:1.068000px;}
._3{width:2.371200px;}
._9{width:3.640800px;}
._8{width:5.439600px;}
._7{width:7.725000px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.fs6{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:85.428450px;}
.yb5{bottom:89.035500px;}
.y5c{bottom:96.228450px;}
.y84{bottom:101.488800px;}
.yb2{bottom:101.488950px;}
.y5b{bottom:107.028450px;}
.y5a{bottom:117.828450px;}
.y83{bottom:119.488800px;}
.yb1{bottom:119.488950px;}
.yea{bottom:122.061150px;}
.y43{bottom:125.087250px;}
.y59{bottom:128.628450px;}
.y1b{bottom:131.151150px;}
.y82{bottom:137.488800px;}
.yb0{bottom:137.488950px;}
.y58{bottom:139.428450px;}
.y42{bottom:139.487250px;}
.y1a{bottom:149.803200px;}
.y57{bottom:150.228450px;}
.y41{bottom:153.887250px;}
.y81{bottom:155.488800px;}
.yaf{bottom:155.488950px;}
.y56{bottom:161.028450px;}
.y26{bottom:167.800050px;}
.y19{bottom:167.803200px;}
.y55{bottom:171.828450px;}
.y40{bottom:172.539300px;}
.y80{bottom:173.488800px;}
.yae{bottom:173.488950px;}
.ydf{bottom:179.488800px;}
.y54{bottom:182.628450px;}
.y7f{bottom:191.488800px;}
.yad{bottom:191.488950px;}
.y53{bottom:193.428450px;}
.y4b{bottom:193.770000px;}
.y3f{bottom:194.139300px;}
.yde{bottom:195.988800px;}
.y18{bottom:198.559050px;}
.y52{bottom:204.228450px;}
.y7e{bottom:209.488800px;}
.yac{bottom:209.488950px;}
.ydd{bottom:212.488800px;}
.y17{bottom:217.211100px;}
.y25{bottom:217.760700px;}
.y3e{bottom:219.991200px;}
.y7d{bottom:227.488800px;}
.yab{bottom:227.488950px;}
.y7c{bottom:245.488800px;}
.yaa{bottom:245.488950px;}
.y16{bottom:247.966950px;}
.y3d{bottom:248.791200px;}
.ydc{bottom:261.988800px;}
.y89{bottom:263.488800px;}
.ya9{bottom:263.488950px;}
.y15{bottom:266.618850px;}
.y7b{bottom:281.488800px;}
.yb4{bottom:281.488950px;}
.y14{bottom:284.618850px;}
.y24{bottom:284.729100px;}
.ydb{bottom:294.988800px;}
.y7a{bottom:299.488800px;}
.ya8{bottom:299.488950px;}
.y3c{bottom:306.391200px;}
.yda{bottom:311.488800px;}
.y13{bottom:315.374850px;}
.y79{bottom:317.488800px;}
.ya7{bottom:317.488950px;}
.y3b{bottom:325.043250px;}
.y12{bottom:334.026750px;}
.y23{bottom:334.689750px;}
.y78{bottom:335.488800px;}
.ya6{bottom:335.488950px;}
.y3a{bottom:343.695150px;}
.yd9{bottom:344.488800px;}
.y77{bottom:353.488800px;}
.ya5{bottom:353.488950px;}
.yd8{bottom:360.988800px;}
.y4a{bottom:361.191150px;}
.y39{bottom:361.695150px;}
.y11{bottom:364.782750px;}
.y76{bottom:371.488800px;}
.ya4{bottom:371.488950px;}
.y10{bottom:383.434650px;}
.y8a{bottom:384.317850px;}
.y75{bottom:389.488800px;}
.ya3{bottom:389.488950px;}
.y38{bottom:392.451000px;}
.yd7{bottom:393.988800px;}
.yf{bottom:401.434650px;}
.y74{bottom:407.488800px;}
.ya2{bottom:407.488950px;}
.yd6{bottom:410.488800px;}
.ye9{bottom:410.698500px;}
.y37{bottom:411.103050px;}
.ye{bottom:419.434650px;}
.y22{bottom:419.729250px;}
.y73{bottom:425.488800px;}
.ya1{bottom:425.488950px;}
.yd5{bottom:426.988800px;}
.y36{bottom:429.103050px;}
.y72{bottom:443.488800px;}
.ya0{bottom:443.488950px;}
.y49{bottom:446.230650px;}
.y35{bottom:447.103050px;}
.yd{bottom:450.190500px;}
.yd4{bottom:459.988800px;}
.y71{bottom:461.488800px;}
.y9f{bottom:461.488950px;}
.y21{bottom:467.953650px;}
.yc{bottom:468.842550px;}
.y5e{bottom:472.169550px;}
.yd3{bottom:476.488800px;}
.y34{bottom:477.858900px;}
.y70{bottom:479.488800px;}
.y9e{bottom:479.488950px;}
.y85{bottom:489.177450px;}
.yd2{bottom:492.988800px;}
.y33{bottom:496.510950px;}
.y6f{bottom:497.488800px;}
.y9d{bottom:497.488950px;}
.yb{bottom:499.598400px;}
.yd1{bottom:509.488800px;}
.y48{bottom:514.262100px;}
.y32{bottom:514.510950px;}
.y6e{bottom:515.488800px;}
.y9c{bottom:515.488950px;}
.ya{bottom:518.250450px;}
.yd0{bottom:525.988800px;}
.y6d{bottom:533.488800px;}
.y9b{bottom:533.488950px;}
.y20{bottom:535.985100px;}
.y9{bottom:536.250450px;}
.ycf{bottom:542.488800px;}
.y31{bottom:545.266800px;}
.y6c{bottom:551.488800px;}
.y9a{bottom:551.488950px;}
.yce{bottom:558.988800px;}
.y51{bottom:561.479250px;}
.y30{bottom:563.918850px;}
.y8{bottom:567.006300px;}
.y6b{bottom:569.488800px;}
.y99{bottom:569.488950px;}
.ycd{bottom:575.488800px;}
.y2f{bottom:581.918850px;}
.y47{bottom:582.293550px;}
.y7{bottom:585.658200px;}
.y1f{bottom:585.910200px;}
.y6a{bottom:587.488800px;}
.y98{bottom:587.488950px;}
.ycc{bottom:591.988800px;}
.y69{bottom:605.488800px;}
.y97{bottom:605.488950px;}
.y6{bottom:607.910250px;}
.y1e{bottom:608.197650px;}
.ycb{bottom:608.488800px;}
.y2e{bottom:612.674700px;}
.ye8{bottom:622.383450px;}
.y68{bottom:623.488800px;}
.y96{bottom:623.488950px;}
.yca{bottom:624.988800px;}
.y2d{bottom:631.326600px;}
.yc1{bottom:634.544100px;}
.y50{bottom:637.679100px;}
.y67{bottom:641.488800px;}
.y95{bottom:641.488950px;}
.yc0{bottom:648.943950px;}
.y46{bottom:649.262100px;}
.y2c{bottom:649.326600px;}
.yc9{bottom:657.988800px;}
.y66{bottom:659.488800px;}
.y94{bottom:659.488950px;}
.y1d{bottom:666.166200px;}
.y5{bottom:666.814200px;}
.ybf{bottom:669.721950px;}
.ye7{bottom:674.233800px;}
.yc8{bottom:674.488800px;}
.y65{bottom:677.488800px;}
.yb3{bottom:677.488950px;}
.y2b{bottom:680.082600px;}
.y4f{bottom:682.679100px;}
.ybe{bottom:684.121950px;}
.ye6{bottom:690.733800px;}
.yc7{bottom:690.988800px;}
.y64{bottom:695.488800px;}
.y93{bottom:695.488950px;}
.y4{bottom:696.266100px;}
.y2a{bottom:698.734500px;}
.y45{bottom:699.222750px;}
.ybd{bottom:704.899950px;}
.ye5{bottom:707.233800px;}
.yc6{bottom:707.488800px;}
.y88{bottom:713.488800px;}
.y92{bottom:713.488950px;}
.ye4{bottom:723.733800px;}
.ybc{bottom:725.677950px;}
.y4e{bottom:727.679100px;}
.y29{bottom:729.490500px;}
.y87{bottom:731.488800px;}
.y91{bottom:731.488950px;}
.ybb{bottom:740.077950px;}
.ye3{bottom:740.233800px;}
.yc5{bottom:740.488800px;}
.y3{bottom:746.666250px;}
.y28{bottom:748.142400px;}
.y63{bottom:749.488800px;}
.y90{bottom:749.488950px;}
.yc4{bottom:756.988800px;}
.yba{bottom:760.855800px;}
.y1c{bottom:764.493000px;}
.y44{bottom:765.128250px;}
.y2{bottom:765.318150px;}
.y27{bottom:766.142400px;}
.y62{bottom:767.488800px;}
.y8f{bottom:767.488950px;}
.y4d{bottom:772.679100px;}
.ye2{bottom:773.233800px;}
.yb9{bottom:775.255800px;}
.y86{bottom:785.488800px;}
.y8e{bottom:785.488950px;}
.ye1{bottom:789.733800px;}
.yc3{bottom:789.988800px;}
.yb8{bottom:796.033800px;}
.y61{bottom:803.488800px;}
.y8d{bottom:803.488950px;}
.ye0{bottom:806.233800px;}
.yc2{bottom:806.488800px;}
.yb7{bottom:810.433800px;}
.y4c{bottom:817.679100px;}
.y60{bottom:821.488800px;}
.y8c{bottom:821.488950px;}
.y1{bottom:824.222100px;}
.yb6{bottom:839.233800px;}
.y5f{bottom:839.488800px;}
.y8b{bottom:839.488950px;}
.hd{height:23.280000px;}
.ha{height:32.292000px;}
.he{height:34.992000px;}
.h4{height:43.056000px;}
.hc{height:43.296000px;}
.hb{height:48.708000px;}
.h6{height:49.080000px;}
.h8{height:58.896000px;}
.h7{height:59.400000px;}
.h3{height:68.460000px;}
.h5{height:79.200000px;}
.h2{height:118.800000px;}
.h9{height:148.500000px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:663.000000px;}
.w0{width:663.307500px;}
.x0{left:0.000000px;}
.x13{left:34.669500px;}
.x15{left:73.522050px;}
.xb{left:85.039350px;}
.x6{left:93.490650px;}
.x4{left:102.544500px;}
.x5{left:103.607550px;}
.x16{left:106.299150px;}
.x12{left:127.559100px;}
.xa{left:135.924300px;}
.x17{left:148.818900px;}
.x1{left:165.826800px;}
.x18{left:170.078700px;}
.x2{left:178.582650px;}
.x3{left:187.086600px;}
.x8{left:208.346400px;}
.x9{left:221.102400px;}
.x7{left:229.606350px;}
.xd{left:236.951400px;}
.x19{left:338.031450px;}
.x10{left:343.793850px;}
.xe{left:409.943850px;}
.x11{left:417.323550px;}
.xf{left:479.692050px;}
.xc{left:612.518850px;}
.x14{left:614.368200px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.lsc{letter-spacing:-3.216000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.310400pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.624000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.853333pt;}
.lsb{letter-spacing:1.066667pt;}
.ls0{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.600000pt;}
.ws0{word-spacing:-29.568000pt;}
.ws1{word-spacing:-17.546667pt;}
.ws8{word-spacing:-15.168000pt;}
.wsbf{word-spacing:-14.549333pt;}
.wsb5{word-spacing:-14.122667pt;}
.wsb6{word-spacing:-13.909333pt;}
.ws7{word-spacing:-12.640000pt;}
.ws8a{word-spacing:-12.533333pt;}
.wsbe{word-spacing:-12.106667pt;}
.wsa3{word-spacing:-12.053333pt;}
.ws98{word-spacing:-11.893333pt;}
.wsa2{word-spacing:-11.733333pt;}
.ws6{word-spacing:-11.626667pt;}
.wsa8{word-spacing:-7.114155pt;}
.wsa5{word-spacing:-3.413333pt;}
.ws31{word-spacing:-2.506667pt;}
.wsaf{word-spacing:-2.453333pt;}
.ws93{word-spacing:-2.400000pt;}
.ws83{word-spacing:-2.346667pt;}
.ws74{word-spacing:-2.293333pt;}
.ws1e{word-spacing:-2.240000pt;}
.wsb0{word-spacing:-2.186667pt;}
.ws6c{word-spacing:-2.133333pt;}
.ws7e{word-spacing:-2.080000pt;}
.ws5c{word-spacing:-2.026667pt;}
.ws3c{word-spacing:-1.973333pt;}
.ws71{word-spacing:-1.920000pt;}
.wsb1{word-spacing:-1.866667pt;}
.ws1d{word-spacing:-1.813333pt;}
.ws38{word-spacing:-1.760000pt;}
.ws32{word-spacing:-1.706667pt;}
.ws86{word-spacing:-1.653333pt;}
.ws7f{word-spacing:-1.600000pt;}
.ws4{word-spacing:-1.578667pt;}
.wsb7{word-spacing:-1.536000pt;}
.ws60{word-spacing:-1.493333pt;}
.ws22{word-spacing:-1.440000pt;}
.ws16{word-spacing:-1.386667pt;}
.ws89{word-spacing:-1.333333pt;}
.ws2{word-spacing:-1.322667pt;}
.ws18{word-spacing:-1.173333pt;}
.wsbb{word-spacing:-1.152000pt;}
.ws95{word-spacing:-1.066667pt;}
.wsa6{word-spacing:-1.013333pt;}
.ws5e{word-spacing:-0.960000pt;}
.ws77{word-spacing:-0.906667pt;}
.ws73{word-spacing:-0.853333pt;}
.ws13{word-spacing:-0.800000pt;}
.ws5a{word-spacing:-0.746667pt;}
.ws2d{word-spacing:-0.693333pt;}
.ws5{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.608000pt;}
.ws49{word-spacing:-0.586667pt;}
.ws2a{word-spacing:-0.533333pt;}
.ws39{word-spacing:-0.480000pt;}
.wsb4{word-spacing:-0.469333pt;}
.ws67{word-spacing:-0.373333pt;}
.wsf{word-spacing:-0.352000pt;}
.ws30{word-spacing:-0.320000pt;}
.ws3f{word-spacing:-0.266667pt;}
.ws1f{word-spacing:-0.213333pt;}
.ws28{word-spacing:-0.160000pt;}
.ws61{word-spacing:-0.106667pt;}
.wsd{word-spacing:-0.096000pt;}
.ws4a{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws27{word-spacing:0.053333pt;}
.wsc{word-spacing:0.064000pt;}
.ws6a{word-spacing:0.106667pt;}
.ws76{word-spacing:0.160000pt;}
.ws6b{word-spacing:0.213333pt;}
.ws23{word-spacing:0.266667pt;}
.wsad{word-spacing:0.320000pt;}
.ws9c{word-spacing:0.373333pt;}
.ws20{word-spacing:0.426667pt;}
.ws15{word-spacing:0.480000pt;}
.ws9b{word-spacing:0.533333pt;}
.ws21{word-spacing:0.586667pt;}
.ws1a{word-spacing:0.640000pt;}
.ws14{word-spacing:0.693333pt;}
.ws36{word-spacing:0.746667pt;}
.wsb2{word-spacing:0.800000pt;}
.ws5b{word-spacing:0.853333pt;}
.ws72{word-spacing:0.906667pt;}
.ws33{word-spacing:0.960000pt;}
.ws81{word-spacing:1.013333pt;}
.ws7d{word-spacing:1.066667pt;}
.wsb{word-spacing:1.120000pt;}
.ws62{word-spacing:1.173333pt;}
.ws84{word-spacing:1.226667pt;}
.ws44{word-spacing:1.280000pt;}
.ws4c{word-spacing:1.333333pt;}
.ws55{word-spacing:1.386667pt;}
.ws1c{word-spacing:1.440000pt;}
.ws51{word-spacing:1.493333pt;}
.ws3a{word-spacing:1.546667pt;}
.ws97{word-spacing:1.600000pt;}
.ws47{word-spacing:1.653333pt;}
.ws92{word-spacing:1.706667pt;}
.ws82{word-spacing:1.760000pt;}
.wsba{word-spacing:1.792000pt;}
.ws26{word-spacing:1.813333pt;}
.ws66{word-spacing:1.866667pt;}
.ws10{word-spacing:1.920000pt;}
.ws3d{word-spacing:1.973333pt;}
.ws4f{word-spacing:2.026667pt;}
.ws2e{word-spacing:2.080000pt;}
.ws4d{word-spacing:2.133333pt;}
.ws40{word-spacing:2.186667pt;}
.ws19{word-spacing:2.240000pt;}
.ws78{word-spacing:2.293333pt;}
.ws48{word-spacing:2.346667pt;}
.ws8e{word-spacing:2.400000pt;}
.ws3e{word-spacing:2.453333pt;}
.ws8d{word-spacing:2.506667pt;}
.ws75{word-spacing:2.560000pt;}
.ws79{word-spacing:2.613333pt;}
.wsa{word-spacing:2.624000pt;}
.ws87{word-spacing:2.666667pt;}
.ws69{word-spacing:2.720000pt;}
.ws24{word-spacing:2.773333pt;}
.ws43{word-spacing:2.826667pt;}
.ws91{word-spacing:2.880000pt;}
.ws58{word-spacing:2.933333pt;}
.ws4b{word-spacing:2.986667pt;}
.ws4e{word-spacing:3.040000pt;}
.ws2c{word-spacing:3.093333pt;}
.wsa9{word-spacing:3.200000pt;}
.ws8b{word-spacing:3.216000pt;}
.ws34{word-spacing:3.253333pt;}
.ws46{word-spacing:3.306667pt;}
.ws7c{word-spacing:3.360000pt;}
.ws45{word-spacing:3.413333pt;}
.ws37{word-spacing:3.466667pt;}
.ws56{word-spacing:3.520000pt;}
.wsa4{word-spacing:3.573333pt;}
.ws2f{word-spacing:3.626667pt;}
.ws41{word-spacing:3.680000pt;}
.wsa1{word-spacing:3.786667pt;}
.wsb9{word-spacing:3.840000pt;}
.wsb8{word-spacing:3.882667pt;}
.wsa0{word-spacing:3.893333pt;}
.wsb3{word-spacing:3.946667pt;}
.ws57{word-spacing:4.000000pt;}
.ws9f{word-spacing:4.160000pt;}
.ws17{word-spacing:4.213333pt;}
.ws9a{word-spacing:4.373333pt;}
.ws65{word-spacing:4.426667pt;}
.ws52{word-spacing:4.480000pt;}
.ws68{word-spacing:4.533333pt;}
.ws29{word-spacing:4.586667pt;}
.ws88{word-spacing:4.640000pt;}
.ws64{word-spacing:4.693333pt;}
.ws12{word-spacing:4.736000pt;}
.ws70{word-spacing:4.746667pt;}
.ws1b{word-spacing:4.800000pt;}
.ws90{word-spacing:4.906667pt;}
.wsac{word-spacing:5.013333pt;}
.ws63{word-spacing:5.066667pt;}
.ws6f{word-spacing:5.173333pt;}
.ws42{word-spacing:5.226667pt;}
.ws9e{word-spacing:5.280000pt;}
.ws11{word-spacing:5.312000pt;}
.ws99{word-spacing:5.386667pt;}
.ws5d{word-spacing:5.440000pt;}
.wsaa{word-spacing:5.546667pt;}
.ws59{word-spacing:5.653333pt;}
.wsa7{word-spacing:5.706667pt;}
.ws2b{word-spacing:5.813333pt;}
.ws85{word-spacing:5.866667pt;}
.ws6d{word-spacing:6.026667pt;}
.ws53{word-spacing:6.080000pt;}
.ws25{word-spacing:6.186667pt;}
.ws94{word-spacing:6.240000pt;}
.ws54{word-spacing:6.293333pt;}
.wsae{word-spacing:6.346667pt;}
.ws3b{word-spacing:6.400000pt;}
.ws50{word-spacing:6.453333pt;}
.ws5f{word-spacing:6.506667pt;}
.ws8c{word-spacing:6.560000pt;}
.ws6e{word-spacing:6.613333pt;}
.ws80{word-spacing:6.666667pt;}
.wse{word-spacing:6.752000pt;}
.ws9d{word-spacing:6.826667pt;}
.ws8f{word-spacing:6.880000pt;}
.ws96{word-spacing:7.040000pt;}
.ws35{word-spacing:7.093333pt;}
.wsab{word-spacing:7.200000pt;}
.ws7a{word-spacing:7.253333pt;}
.ws7b{word-spacing:9.653333pt;}
.wsbd{word-spacing:11.093333pt;}
.wsbc{word-spacing:11.264000pt;}
._6{margin-left:-10.577067pt;}
._a{margin-left:-6.714667pt;}
._5{margin-left:-5.226667pt;}
._4{margin-left:-3.733333pt;}
._0{margin-left:-1.920000pt;}
._2{margin-left:-0.906667pt;}
._1{width:0.949333pt;}
._3{width:2.107733pt;}
._9{width:3.236267pt;}
._8{width:4.835200pt;}
._7{width:6.866667pt;}
.fsa{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.fs6{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:75.936400pt;}
.yb5{bottom:79.142667pt;}
.y5c{bottom:85.536400pt;}
.y84{bottom:90.212267pt;}
.yb2{bottom:90.212400pt;}
.y5b{bottom:95.136400pt;}
.y5a{bottom:104.736400pt;}
.y83{bottom:106.212267pt;}
.yb1{bottom:106.212400pt;}
.yea{bottom:108.498800pt;}
.y43{bottom:111.188667pt;}
.y59{bottom:114.336400pt;}
.y1b{bottom:116.578800pt;}
.y82{bottom:122.212267pt;}
.yb0{bottom:122.212400pt;}
.y58{bottom:123.936400pt;}
.y42{bottom:123.988667pt;}
.y1a{bottom:133.158400pt;}
.y57{bottom:133.536400pt;}
.y41{bottom:136.788667pt;}
.y81{bottom:138.212267pt;}
.yaf{bottom:138.212400pt;}
.y56{bottom:143.136400pt;}
.y26{bottom:149.155600pt;}
.y19{bottom:149.158400pt;}
.y55{bottom:152.736400pt;}
.y40{bottom:153.368267pt;}
.y80{bottom:154.212267pt;}
.yae{bottom:154.212400pt;}
.ydf{bottom:159.545600pt;}
.y54{bottom:162.336400pt;}
.y7f{bottom:170.212267pt;}
.yad{bottom:170.212400pt;}
.y53{bottom:171.936400pt;}
.y4b{bottom:172.240000pt;}
.y3f{bottom:172.568267pt;}
.yde{bottom:174.212267pt;}
.y18{bottom:176.496933pt;}
.y52{bottom:181.536400pt;}
.y7e{bottom:186.212267pt;}
.yac{bottom:186.212400pt;}
.ydd{bottom:188.878933pt;}
.y17{bottom:193.076533pt;}
.y25{bottom:193.565067pt;}
.y3e{bottom:195.547733pt;}
.y7d{bottom:202.212267pt;}
.yab{bottom:202.212400pt;}
.y7c{bottom:218.212267pt;}
.yaa{bottom:218.212400pt;}
.y16{bottom:220.415067pt;}
.y3d{bottom:221.147733pt;}
.ydc{bottom:232.878933pt;}
.y89{bottom:234.212267pt;}
.ya9{bottom:234.212400pt;}
.y15{bottom:236.994533pt;}
.y7b{bottom:250.212267pt;}
.yb4{bottom:250.212400pt;}
.y14{bottom:252.994533pt;}
.y24{bottom:253.092533pt;}
.ydb{bottom:262.212267pt;}
.y7a{bottom:266.212267pt;}
.ya8{bottom:266.212400pt;}
.y3c{bottom:272.347733pt;}
.yda{bottom:276.878933pt;}
.y13{bottom:280.333200pt;}
.y79{bottom:282.212267pt;}
.ya7{bottom:282.212400pt;}
.y3b{bottom:288.927333pt;}
.y12{bottom:296.912667pt;}
.y23{bottom:297.502000pt;}
.y78{bottom:298.212267pt;}
.ya6{bottom:298.212400pt;}
.y3a{bottom:305.506800pt;}
.yd9{bottom:306.212267pt;}
.y77{bottom:314.212267pt;}
.ya5{bottom:314.212400pt;}
.yd8{bottom:320.878933pt;}
.y4a{bottom:321.058800pt;}
.y39{bottom:321.506800pt;}
.y11{bottom:324.251333pt;}
.y76{bottom:330.212267pt;}
.ya4{bottom:330.212400pt;}
.y10{bottom:340.830800pt;}
.y8a{bottom:341.615867pt;}
.y75{bottom:346.212267pt;}
.ya3{bottom:346.212400pt;}
.y38{bottom:348.845333pt;}
.yd7{bottom:350.212267pt;}
.yf{bottom:356.830800pt;}
.y74{bottom:362.212267pt;}
.ya2{bottom:362.212400pt;}
.yd6{bottom:364.878933pt;}
.ye9{bottom:365.065333pt;}
.y37{bottom:365.424933pt;}
.ye{bottom:372.830800pt;}
.y22{bottom:373.092667pt;}
.y73{bottom:378.212267pt;}
.ya1{bottom:378.212400pt;}
.yd5{bottom:379.545600pt;}
.y36{bottom:381.424933pt;}
.y72{bottom:394.212267pt;}
.ya0{bottom:394.212400pt;}
.y49{bottom:396.649467pt;}
.y35{bottom:397.424933pt;}
.yd{bottom:400.169333pt;}
.yd4{bottom:408.878933pt;}
.y71{bottom:410.212267pt;}
.y9f{bottom:410.212400pt;}
.y21{bottom:415.958800pt;}
.yc{bottom:416.748933pt;}
.y5e{bottom:419.706267pt;}
.yd3{bottom:423.545600pt;}
.y34{bottom:424.763467pt;}
.y70{bottom:426.212267pt;}
.y9e{bottom:426.212400pt;}
.y85{bottom:434.824400pt;}
.yd2{bottom:438.212267pt;}
.y33{bottom:441.343067pt;}
.y6f{bottom:442.212267pt;}
.y9d{bottom:442.212400pt;}
.yb{bottom:444.087467pt;}
.yd1{bottom:452.878933pt;}
.y48{bottom:457.121867pt;}
.y32{bottom:457.343067pt;}
.y6e{bottom:458.212267pt;}
.y9c{bottom:458.212400pt;}
.ya{bottom:460.667067pt;}
.yd0{bottom:467.545600pt;}
.y6d{bottom:474.212267pt;}
.y9b{bottom:474.212400pt;}
.y20{bottom:476.431200pt;}
.y9{bottom:476.667067pt;}
.ycf{bottom:482.212267pt;}
.y31{bottom:484.681600pt;}
.y6c{bottom:490.212267pt;}
.y9a{bottom:490.212400pt;}
.yce{bottom:496.878933pt;}
.y51{bottom:499.092667pt;}
.y30{bottom:501.261200pt;}
.y8{bottom:504.005600pt;}
.y6b{bottom:506.212267pt;}
.y99{bottom:506.212400pt;}
.ycd{bottom:511.545600pt;}
.y2f{bottom:517.261200pt;}
.y47{bottom:517.594267pt;}
.y7{bottom:520.585067pt;}
.y1f{bottom:520.809067pt;}
.y6a{bottom:522.212267pt;}
.y98{bottom:522.212400pt;}
.ycc{bottom:526.212267pt;}
.y69{bottom:538.212267pt;}
.y97{bottom:538.212400pt;}
.y6{bottom:540.364667pt;}
.y1e{bottom:540.620133pt;}
.ycb{bottom:540.878933pt;}
.y2e{bottom:544.599733pt;}
.ye8{bottom:553.229733pt;}
.y68{bottom:554.212267pt;}
.y96{bottom:554.212400pt;}
.yca{bottom:555.545600pt;}
.y2d{bottom:561.179200pt;}
.yc1{bottom:564.039200pt;}
.y50{bottom:566.825867pt;}
.y67{bottom:570.212267pt;}
.y95{bottom:570.212400pt;}
.yc0{bottom:576.839067pt;}
.y46{bottom:577.121867pt;}
.y2c{bottom:577.179200pt;}
.yc9{bottom:584.878933pt;}
.y66{bottom:586.212267pt;}
.y94{bottom:586.212400pt;}
.y1d{bottom:592.147733pt;}
.y5{bottom:592.723733pt;}
.ybf{bottom:595.308400pt;}
.ye7{bottom:599.318933pt;}
.yc8{bottom:599.545600pt;}
.y65{bottom:602.212267pt;}
.yb3{bottom:602.212400pt;}
.y2b{bottom:604.517867pt;}
.y4f{bottom:606.825867pt;}
.ybe{bottom:608.108400pt;}
.ye6{bottom:613.985600pt;}
.yc7{bottom:614.212267pt;}
.y64{bottom:618.212267pt;}
.y93{bottom:618.212400pt;}
.y4{bottom:618.903200pt;}
.y2a{bottom:621.097333pt;}
.y45{bottom:621.531333pt;}
.ybd{bottom:626.577733pt;}
.ye5{bottom:628.652267pt;}
.yc6{bottom:628.878933pt;}
.y88{bottom:634.212267pt;}
.y92{bottom:634.212400pt;}
.ye4{bottom:643.318933pt;}
.ybc{bottom:645.047067pt;}
.y4e{bottom:646.825867pt;}
.y29{bottom:648.436000pt;}
.y87{bottom:650.212267pt;}
.y91{bottom:650.212400pt;}
.ybb{bottom:657.847067pt;}
.ye3{bottom:657.985600pt;}
.yc5{bottom:658.212267pt;}
.y3{bottom:663.703333pt;}
.y28{bottom:665.015467pt;}
.y63{bottom:666.212267pt;}
.y90{bottom:666.212400pt;}
.yc4{bottom:672.878933pt;}
.yba{bottom:676.316267pt;}
.y1c{bottom:679.549333pt;}
.y44{bottom:680.114000pt;}
.y2{bottom:680.282800pt;}
.y27{bottom:681.015467pt;}
.y62{bottom:682.212267pt;}
.y8f{bottom:682.212400pt;}
.y4d{bottom:686.825867pt;}
.ye2{bottom:687.318933pt;}
.yb9{bottom:689.116267pt;}
.y86{bottom:698.212267pt;}
.y8e{bottom:698.212400pt;}
.ye1{bottom:701.985600pt;}
.yc3{bottom:702.212267pt;}
.yb8{bottom:707.585600pt;}
.y61{bottom:714.212267pt;}
.y8d{bottom:714.212400pt;}
.ye0{bottom:716.652267pt;}
.yc2{bottom:716.878933pt;}
.yb7{bottom:720.385600pt;}
.y4c{bottom:726.825867pt;}
.y60{bottom:730.212267pt;}
.y8c{bottom:730.212400pt;}
.y1{bottom:732.641867pt;}
.yb6{bottom:745.985600pt;}
.y5f{bottom:746.212267pt;}
.y8b{bottom:746.212400pt;}
.hd{height:20.693333pt;}
.ha{height:28.704000pt;}
.he{height:31.104000pt;}
.h4{height:38.272000pt;}
.hc{height:38.485333pt;}
.hb{height:43.296000pt;}
.h6{height:43.626667pt;}
.h8{height:52.352000pt;}
.h7{height:52.800000pt;}
.h3{height:60.853333pt;}
.h5{height:70.400000pt;}
.h2{height:105.600000pt;}
.h9{height:132.000000pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:589.333333pt;}
.w0{width:589.606667pt;}
.x0{left:0.000000pt;}
.x13{left:30.817333pt;}
.x15{left:65.352933pt;}
.xb{left:75.590533pt;}
.x6{left:83.102800pt;}
.x4{left:91.150667pt;}
.x5{left:92.095600pt;}
.x16{left:94.488133pt;}
.x12{left:113.385867pt;}
.xa{left:120.821600pt;}
.x17{left:132.283467pt;}
.x1{left:147.401600pt;}
.x18{left:151.181067pt;}
.x2{left:158.740133pt;}
.x3{left:166.299200pt;}
.x8{left:185.196800pt;}
.x9{left:196.535467pt;}
.x7{left:204.094533pt;}
.xd{left:210.623467pt;}
.x19{left:300.472400pt;}
.x10{left:305.594533pt;}
.xe{left:364.394533pt;}
.x11{left:370.954267pt;}
.xf{left:426.392933pt;}
.xc{left:544.461200pt;}
.x14{left:546.105067pt;}
}




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