
    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_e1378bacb8804bd1dffcf474.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982000;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_ac8b4e24702a359ed577a3a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993000;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_921c6786ee4ce581f46b56db.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_f6db1f8fb1ac20dc1887909c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991000;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_e08244b28eaa0fe3ea03b55a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.982000;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_08707f5d7d974b483f9538cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915000;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_a175dd2366248ba7a60b62d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.743000;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_6220f08de350b155aee9e7e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_233b00467bfed380fbe6886a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.781250;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_f3185362fed72e307a11b5ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_891463f0abdc464c59ecfe4b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.915000;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_b31e8ecc560b9c684ab3ba75.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.822000;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_4ae357b63b48b5d9b11f4824.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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_6220f08de350b155aee9e7e5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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_a175dd2366248ba7a60b62d9.woff2')format("woff");}.fff{font-family:fff;line-height:0.743000;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_f3185362fed72e307a11b5ae.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.100098;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_489775597449750e0cfd5ac2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.915000;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_a175dd2366248ba7a60b62d9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.743000;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_6220f08de350b155aee9e7e5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.100098;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_f3185362fed72e307a11b5ae.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.100098;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_891463f0abdc464c59ecfe4b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.915000;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:ff16;src:url('chunks/assets/font_6220f08de350b155aee9e7e5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.100098;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:ff17;src:url('chunks/assets/font_a175dd2366248ba7a60b62d9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.743000;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:ff18;src:url('chunks/assets/font_f3185362fed72e307a11b5ae.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.100098;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:ff19;src:url('chunks/assets/font_489775597449750e0cfd5ac2.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.915000;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:ff1a;src:url('chunks/assets/font_50fc2e50883129226c7f6781.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.915000;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);}
.v1{vertical-align:-3.250200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.409000px;}
.v3{vertical-align:11.637000px;}
.v2{vertical-align:19.980000px;}
.ls4{letter-spacing:-2.520000px;}
.ls6{letter-spacing:-1.380000px;}
.ls2{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000060px;}
.ls3{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.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;}
}
.ws3f{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.450000px;}
.ws6e{word-spacing:-8.748000px;}
.ws0{word-spacing:-8.064000px;}
.ws1{word-spacing:-7.920000px;}
.wse{word-spacing:-5.876640px;}
.ws61{word-spacing:-3.060000px;}
.ws2a{word-spacing:-2.460000px;}
.ws55{word-spacing:-2.280000px;}
.ws18{word-spacing:-1.980000px;}
.ws29{word-spacing:-1.380000px;}
.ws6{word-spacing:-1.080000px;}
.ws5{word-spacing:-0.972000px;}
.ws5f{word-spacing:-0.900000px;}
.ws70{word-spacing:-0.756000px;}
.ws5b{word-spacing:-0.360000px;}
.ws1d{word-spacing:-0.168000px;}
.ws49{word-spacing:-0.126000px;}
.ws33{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws10{word-spacing:0.180000px;}
.ws11{word-spacing:1.020000px;}
.ws4e{word-spacing:1.200000px;}
.ws30{word-spacing:1.500000px;}
.ws66{word-spacing:1.560000px;}
.ws6f{word-spacing:1.620000px;}
.ws14{word-spacing:1.680000px;}
.ws57{word-spacing:1.860000px;}
.ws35{word-spacing:1.920000px;}
.ws2f{word-spacing:2.100000px;}
.wsc{word-spacing:2.142000px;}
.ws28{word-spacing:2.160000px;}
.ws2b{word-spacing:2.460000px;}
.ws34{word-spacing:2.640000px;}
.ws4b{word-spacing:2.688000px;}
.ws47{word-spacing:2.820000px;}
.ws46{word-spacing:2.940000px;}
.ws37{word-spacing:3.000000px;}
.ws72{word-spacing:3.834000px;}
.ws3a{word-spacing:4.200000px;}
.ws60{word-spacing:4.500000px;}
.ws3{word-spacing:4.590000px;}
.ws5d{word-spacing:4.620000px;}
.ws24{word-spacing:4.830000px;}
.ws38{word-spacing:4.860000px;}
.ws19{word-spacing:5.040000px;}
.ws4{word-spacing:5.292000px;}
.ws42{word-spacing:5.640000px;}
.ws71{word-spacing:5.724000px;}
.ws36{word-spacing:5.760000px;}
.ws77{word-spacing:6.120000px;}
.ws4a{word-spacing:6.258000px;}
.ws15{word-spacing:6.300000px;}
.ws7{word-spacing:6.624000px;}
.ws1a{word-spacing:6.660000px;}
.ws74{word-spacing:6.912000px;}
.ws48{word-spacing:7.020000px;}
.ws2d{word-spacing:7.140000px;}
.ws8{word-spacing:7.182000px;}
.ws13{word-spacing:7.320000px;}
.ws3d{word-spacing:7.518000px;}
.ws45{word-spacing:7.560000px;}
.ws9{word-spacing:7.581000px;}
.ws56{word-spacing:7.920000px;}
.ws63{word-spacing:7.980000px;}
.ws5c{word-spacing:8.400000px;}
.ws12{word-spacing:8.580000px;}
.ws4c{word-spacing:8.988000px;}
.ws39{word-spacing:9.060000px;}
.ws75{word-spacing:9.600000px;}
.ws20{word-spacing:9.828000px;}
.ws6c{word-spacing:9.840000px;}
.ws31{word-spacing:10.380000px;}
.wsa{word-spacing:10.422000px;}
.ws16{word-spacing:10.560000px;}
.ws32{word-spacing:10.860000px;}
.wsb{word-spacing:11.001000px;}
.ws1e{word-spacing:11.256000px;}
.ws1b{word-spacing:11.298000px;}
.ws68{word-spacing:11.460000px;}
.ws44{word-spacing:11.580000px;}
.ws62{word-spacing:11.760000px;}
.ws52{word-spacing:12.120000px;}
.ws6b{word-spacing:12.420000px;}
.ws23{word-spacing:12.432000px;}
.ws27{word-spacing:12.660000px;}
.ws4d{word-spacing:12.720000px;}
.ws43{word-spacing:13.200000px;}
.ws67{word-spacing:13.860000px;}
.ws53{word-spacing:14.100000px;}
.ws5e{word-spacing:14.880000px;}
.ws40{word-spacing:15.240000px;}
.ws41{word-spacing:15.540000px;}
.ws76{word-spacing:15.780000px;}
.ws4f{word-spacing:16.080000px;}
.ws21{word-spacing:16.296000px;}
.ws5a{word-spacing:16.500000px;}
.ws17{word-spacing:16.980000px;}
.ws2c{word-spacing:17.040000px;}
.ws2e{word-spacing:18.180000px;}
.ws59{word-spacing:18.240000px;}
.ws26{word-spacing:18.300000px;}
.ws73{word-spacing:18.414000px;}
.ws3b{word-spacing:18.648000px;}
.ws54{word-spacing:18.960000px;}
.ws50{word-spacing:20.700000px;}
.ws1c{word-spacing:21.336000px;}
.ws1f{word-spacing:22.134000px;}
.ws6a{word-spacing:22.680000px;}
.ws65{word-spacing:23.820000px;}
.ws58{word-spacing:24.180000px;}
.ws22{word-spacing:24.864000px;}
.ws69{word-spacing:27.480000px;}
.ws51{word-spacing:28.140000px;}
.ws3c{word-spacing:29.610000px;}
.ws64{word-spacing:30.600000px;}
.ws25{word-spacing:61.954800px;}
.ws3e{word-spacing:64.378800px;}
.ws6d{word-spacing:102.982800px;}
._13{margin-left:-4.908000px;}
._a{margin-left:-3.114000px;}
._14{margin-left:-2.102400px;}
._5{margin-left:-1.015200px;}
._2{width:1.182600px;}
._1{width:2.192400px;}
._0{width:3.682800px;}
._3{width:5.356800px;}
._4{width:6.409800px;}
._6{width:7.678800px;}
._12{width:8.718000px;}
._c{width:10.902000px;}
._b{width:12.000000px;}
._d{width:13.488000px;}
._9{width:14.502000px;}
._11{width:16.146000px;}
._10{width:17.532000px;}
._f{width:19.104000px;}
._e{width:20.616000px;}
._15{width:22.026000px;}
._19{width:23.568000px;}
._17{width:25.098000px;}
._16{width:28.362000px;}
._18{width:29.370000px;}
._7{width:62.672400px;}
._8{width:1335.768600px;}
.fc9{color:rgb(101,151,45);}
.fc8{color:rgb(53,145,165);}
.fc6{color:rgb(64,172,173);}
.fc2{color:rgb(224,63,93);}
.fc5{color:rgb(254,255,253);}
.fc4{color:rgb(103,104,102);}
.fc1{color:rgb(235,176,59);}
.fcb{color:rgb(80,80,80);}
.fca{color:rgb(23,23,23);}
.fc7{color:rgb(46,46,46);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:25.267500px;}
.y53{bottom:27.364200px;}
.y27{bottom:28.176750px;}
.y24{bottom:54.000000px;}
.y1c{bottom:59.239350px;}
.yc7{bottom:68.128200px;}
.y7f{bottom:68.128350px;}
.y47{bottom:68.648100px;}
.y9b{bottom:68.855550px;}
.y52{bottom:68.872800px;}
.yca{bottom:69.762750px;}
.y97{bottom:74.128350px;}
.y1b{bottom:76.339350px;}
.y117{bottom:80.128200px;}
.y9a{bottom:81.455550px;}
.y51{bottom:81.472800px;}
.yc9{bottom:82.362750px;}
.yc6{bottom:86.128200px;}
.y7e{bottom:86.128350px;}
.y46{bottom:86.648100px;}
.y96{bottom:92.128350px;}
.y99{bottom:94.055550px;}
.y50{bottom:94.072800px;}
.yc8{bottom:94.962750px;}
.y116{bottom:98.128200px;}
.yc5{bottom:104.128200px;}
.y7d{bottom:104.128350px;}
.y45{bottom:104.648100px;}
.y98{bottom:106.655550px;}
.y4f{bottom:106.672800px;}
.y95{bottom:110.128350px;}
.y113{bottom:116.128200px;}
.y1a{bottom:119.043300px;}
.y4e{bottom:119.272800px;}
.ycd{bottom:121.838100px;}
.yc4{bottom:122.128200px;}
.y7c{bottom:122.128350px;}
.y44{bottom:122.648100px;}
.y94{bottom:128.128350px;}
.y4d{bottom:131.872800px;}
.y112{bottom:134.128200px;}
.ycc{bottom:134.438250px;}
.y19{bottom:135.243300px;}
.yc3{bottom:140.128200px;}
.y7b{bottom:140.128350px;}
.y43{bottom:140.648100px;}
.y4c{bottom:144.472800px;}
.y93{bottom:146.128350px;}
.ycb{bottom:147.038250px;}
.y18{bottom:151.443300px;}
.y111{bottom:152.128200px;}
.y4b{bottom:157.072800px;}
.y103{bottom:158.128200px;}
.y7a{bottom:158.128350px;}
.y42{bottom:158.648100px;}
.y17{bottom:167.643300px;}
.y4a{bottom:169.672800px;}
.yc2{bottom:170.128200px;}
.y102{bottom:176.128200px;}
.y79{bottom:176.128350px;}
.y41{bottom:176.648100px;}
.y49{bottom:182.272800px;}
.y16{bottom:183.843300px;}
.yea{bottom:188.128200px;}
.y78{bottom:194.128350px;}
.y40{bottom:194.648100px;}
.y48{bottom:194.872800px;}
.y15{bottom:200.043300px;}
.yc1{bottom:200.128200px;}
.ye9{bottom:206.128200px;}
.y77{bottom:212.128350px;}
.y14{bottom:216.243300px;}
.yc0{bottom:218.128200px;}
.ye8{bottom:224.128200px;}
.y3f{bottom:224.648100px;}
.y76{bottom:230.128350px;}
.y13{bottom:232.443300px;}
.ybf{bottom:236.128200px;}
.y129{bottom:238.002000px;}
.ye7{bottom:242.128200px;}
.y3e{bottom:242.648100px;}
.y92{bottom:248.128350px;}
.y12{bottom:248.643300px;}
.ybe{bottom:254.128200px;}
.ye6{bottom:260.128200px;}
.y75{bottom:260.128350px;}
.y3d{bottom:260.648100px;}
.y128{bottom:264.570750px;}
.y11{bottom:264.843300px;}
.y91{bottom:266.128350px;}
.ybd{bottom:272.128200px;}
.ye5{bottom:278.128200px;}
.y74{bottom:278.128350px;}
.y3c{bottom:278.648100px;}
.y127{bottom:279.139500px;}
.y10{bottom:281.043300px;}
.y90{bottom:284.128350px;}
.ybc{bottom:290.128200px;}
.ye4{bottom:296.128200px;}
.y73{bottom:296.128350px;}
.y3b{bottom:296.648100px;}
.y8f{bottom:302.128350px;}
.y126{bottom:305.708250px;}
.ybb{bottom:308.128200px;}
.y82{bottom:311.388450px;}
.yf{bottom:313.443300px;}
.ye3{bottom:314.128200px;}
.y72{bottom:314.128350px;}
.y3a{bottom:314.648100px;}
.y125{bottom:320.277000px;}
.y81{bottom:322.188450px;}
.yba{bottom:326.128200px;}
.y71{bottom:332.128350px;}
.y39{bottom:332.648100px;}
.y80{bottom:339.238050px;}
.yb9{bottom:344.128200px;}
.ye{bottom:345.717000px;}
.y124{bottom:346.845750px;}
.y70{bottom:350.128350px;}
.y38{bottom:350.648100px;}
.y83{bottom:354.048900px;}
.y101{bottom:356.128200px;}
.y123{bottom:361.414500px;}
.yb8{bottom:362.128200px;}
.yd{bottom:362.816850px;}
.y6f{bottom:368.128350px;}
.y37{bottom:368.648100px;}
.ye2{bottom:374.128200px;}
.yb7{bottom:380.128200px;}
.y6e{bottom:386.128350px;}
.y36{bottom:386.648100px;}
.y122{bottom:387.983250px;}
.ye1{bottom:392.128200px;}
.yc{bottom:396.116850px;}
.y110{bottom:398.128200px;}
.y121{bottom:402.552000px;}
.y6d{bottom:404.128350px;}
.y35{bottom:404.648100px;}
.yb6{bottom:410.128200px;}
.yb{bottom:412.316850px;}
.y10f{bottom:416.128200px;}
.y6c{bottom:422.128350px;}
.y34{bottom:422.648100px;}
.yb5{bottom:428.128200px;}
.ya{bottom:428.516850px;}
.y120{bottom:429.120750px;}
.y10e{bottom:434.128200px;}
.y6b{bottom:440.128350px;}
.y33{bottom:440.648100px;}
.y11f{bottom:443.689500px;}
.y9{bottom:444.717000px;}
.y11a{bottom:444.751350px;}
.yb4{bottom:446.128200px;}
.yf1{bottom:447.076650px;}
.y10d{bottom:452.128200px;}
.yf0{bottom:457.876650px;}
.y6a{bottom:458.128350px;}
.y11e{bottom:458.258250px;}
.y32{bottom:458.648100px;}
.y8{bottom:460.917000px;}
.y119{bottom:461.964000px;}
.yb3{bottom:464.128200px;}
.y10c{bottom:470.128200px;}
.yed{bottom:474.233100px;}
.y100{bottom:476.128200px;}
.y69{bottom:476.128350px;}
.y118{bottom:476.364000px;}
.y7{bottom:477.116850px;}
.yb2{bottom:482.128200px;}
.y11d{bottom:484.827000px;}
.y10b{bottom:488.128200px;}
.yec{bottom:488.633100px;}
.y31{bottom:488.648100px;}
.y11b{bottom:491.174850px;}
.y6{bottom:493.316850px;}
.yff{bottom:494.128200px;}
.y68{bottom:494.128350px;}
.y11c{bottom:498.793500px;}
.yd3{bottom:499.537950px;}
.yb1{bottom:500.128200px;}
.yf2{bottom:503.443800px;}
.y10a{bottom:506.128200px;}
.y8e{bottom:506.128350px;}
.y30{bottom:506.648100px;}
.y5{bottom:509.516850px;}
.yd2{bottom:510.337950px;}
.yfe{bottom:512.128200px;}
.y67{bottom:512.128350px;}
.yb0{bottom:518.128200px;}
.y109{bottom:524.128200px;}
.y8d{bottom:524.128350px;}
.y4{bottom:525.716850px;}
.ycf{bottom:527.387700px;}
.yfd{bottom:530.128200px;}
.y66{bottom:530.128350px;}
.yaf{bottom:536.128200px;}
.y2f{bottom:536.648100px;}
.y3{bottom:541.917000px;}
.y8c{bottom:542.128350px;}
.yd5{bottom:542.198400px;}
.yfc{bottom:548.128200px;}
.y65{bottom:548.128350px;}
.yae{bottom:554.128200px;}
.y2e{bottom:554.648100px;}
.y2{bottom:558.116850px;}
.y12b{bottom:560.128200px;}
.y8b{bottom:560.128350px;}
.yfb{bottom:566.128200px;}
.yad{bottom:572.128200px;}
.y2d{bottom:572.648100px;}
.y12a{bottom:578.128200px;}
.y64{bottom:578.128350px;}
.ye0{bottom:584.128200px;}
.yac{bottom:590.128200px;}
.y1{bottom:590.516850px;}
.y2c{bottom:590.648100px;}
.yfa{bottom:596.128200px;}
.y63{bottom:596.128350px;}
.ydf{bottom:602.128200px;}
.yab{bottom:608.128200px;}
.y2b{bottom:608.648100px;}
.yf9{bottom:614.128200px;}
.y62{bottom:614.128350px;}
.yde{bottom:620.128200px;}
.yaa{bottom:626.128200px;}
.y2a{bottom:626.648100px;}
.yf8{bottom:632.128200px;}
.y61{bottom:632.128350px;}
.y1e{bottom:632.782200px;}
.ydd{bottom:638.128200px;}
.ya9{bottom:644.128200px;}
.y29{bottom:644.648100px;}
.yf7{bottom:650.128200px;}
.y60{bottom:650.128350px;}
.y20{bottom:653.985300px;}
.ydc{bottom:656.128200px;}
.y108{bottom:662.128200px;}
.y1f{bottom:666.585300px;}
.yf6{bottom:668.128200px;}
.y5f{bottom:668.128350px;}
.ya8{bottom:674.128200px;}
.y28{bottom:674.648100px;}
.y107{bottom:680.128200px;}
.yf5{bottom:686.128200px;}
.y5e{bottom:686.128350px;}
.y1d{bottom:688.979250px;}
.ya7{bottom:692.128200px;}
.y106{bottom:698.128200px;}
.yf4{bottom:704.128200px;}
.y5d{bottom:704.128350px;}
.ya6{bottom:710.128200px;}
.y8a{bottom:716.128350px;}
.y23{bottom:727.596750px;}
.ya5{bottom:728.128200px;}
.yf3{bottom:734.128200px;}
.y5c{bottom:734.128350px;}
.ya4{bottom:746.128200px;}
.y89{bottom:746.128350px;}
.y105{bottom:758.128200px;}
.ya3{bottom:764.128200px;}
.y5b{bottom:764.128350px;}
.y22{bottom:765.396750px;}
.y104{bottom:776.128200px;}
.ya2{bottom:782.128200px;}
.y88{bottom:782.128350px;}
.ydb{bottom:794.128200px;}
.y5a{bottom:794.128350px;}
.ya1{bottom:800.128200px;}
.y87{bottom:800.128350px;}
.y21{bottom:803.196750px;}
.yda{bottom:812.128200px;}
.y59{bottom:812.128350px;}
.ya0{bottom:818.128200px;}
.y86{bottom:818.128350px;}
.yd9{bottom:830.128200px;}
.y58{bottom:830.128350px;}
.y9f{bottom:836.128200px;}
.y85{bottom:836.128350px;}
.yd8{bottom:848.128200px;}
.y57{bottom:848.128350px;}
.yef{bottom:849.374700px;}
.y115{bottom:850.538100px;}
.y9e{bottom:854.128200px;}
.y84{bottom:854.128350px;}
.yee{bottom:860.174550px;}
.y114{bottom:861.337950px;}
.yd1{bottom:863.081400px;}
.yd7{bottom:866.128200px;}
.y56{bottom:866.128350px;}
.y9d{bottom:872.128200px;}
.yd0{bottom:873.881250px;}
.yeb{bottom:876.531000px;}
.yd6{bottom:884.128200px;}
.y55{bottom:884.128350px;}
.yce{bottom:890.931000px;}
.y9c{bottom:902.128200px;}
.y54{bottom:902.128350px;}
.yd4{bottom:905.741700px;}
.y25{bottom:965.135850px;}
.h12{height:29.268000px;}
.h13{height:30.870000px;}
.h7{height:34.146000px;}
.hf{height:37.795898px;}
.h5{height:38.496000px;}
.h11{height:38.928000px;}
.h6{height:39.024000px;}
.ha{height:39.690000px;}
.hd{height:39.945112px;}
.hb{height:43.195312px;}
.h10{height:43.308000px;}
.h3{height:43.902000px;}
.h4{height:46.227000px;}
.h14{height:46.311000px;}
.hc{height:46.875000px;}
.he{height:48.120000px;}
.h2{height:48.780000px;}
.h8{height:101.052000px;}
.h9{height:102.438000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xc{left:13.181100px;}
.x1d{left:61.612350px;}
.xb{left:65.055000px;}
.x1a{left:69.754800px;}
.x9{left:77.171100px;}
.x11{left:85.464600px;}
.x26{left:91.982250px;}
.x2{left:106.299150px;}
.x13{left:127.564350px;}
.x1b{left:144.441150px;}
.xa{left:168.377850px;}
.x28{left:170.078850px;}
.x27{left:183.819450px;}
.x23{left:209.152200px;}
.x29{left:212.603850px;}
.x22{left:214.024800px;}
.xd{left:221.102400px;}
.x15{left:226.771650px;}
.x12{left:253.690950px;}
.x24{left:255.542550px;}
.xe{left:263.627400px;}
.x16{left:269.296650px;}
.x1e{left:272.783100px;}
.x1c{left:279.221100px;}
.x1f{left:302.352900px;}
.x5{left:319.836600px;}
.x6{left:325.363050px;}
.x4{left:336.201150px;}
.x21{left:338.031600px;}
.x18{left:358.228350px;}
.x8{left:371.397150px;}
.x7{left:372.856950px;}
.x20{left:380.556600px;}
.x1{left:393.213300px;}
.x3{left:395.703300px;}
.x19{left:400.753350px;}
.xf{left:413.253600px;}
.x25{left:416.692950px;}
.x14{left:493.820400px;}
.x17{left:509.202750px;}
.x10{left:722.297250px;}
@media print{
.v1{vertical-align:-2.889067pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.141333pt;}
.v3{vertical-align:10.344000pt;}
.v2{vertical-align:17.760000pt;}
.ls4{letter-spacing:-2.240000pt;}
.ls6{letter-spacing:-1.226667pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000053pt;}
.ls3{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ws3f{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.400000pt;}
.ws6e{word-spacing:-7.776000pt;}
.ws0{word-spacing:-7.168000pt;}
.ws1{word-spacing:-7.040000pt;}
.wse{word-spacing:-5.223680pt;}
.ws61{word-spacing:-2.720000pt;}
.ws2a{word-spacing:-2.186667pt;}
.ws55{word-spacing:-2.026667pt;}
.ws18{word-spacing:-1.760000pt;}
.ws29{word-spacing:-1.226667pt;}
.ws6{word-spacing:-0.960000pt;}
.ws5{word-spacing:-0.864000pt;}
.ws5f{word-spacing:-0.800000pt;}
.ws70{word-spacing:-0.672000pt;}
.ws5b{word-spacing:-0.320000pt;}
.ws1d{word-spacing:-0.149333pt;}
.ws49{word-spacing:-0.112000pt;}
.ws33{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws10{word-spacing:0.160000pt;}
.ws11{word-spacing:0.906667pt;}
.ws4e{word-spacing:1.066667pt;}
.ws30{word-spacing:1.333333pt;}
.ws66{word-spacing:1.386667pt;}
.ws6f{word-spacing:1.440000pt;}
.ws14{word-spacing:1.493333pt;}
.ws57{word-spacing:1.653333pt;}
.ws35{word-spacing:1.706667pt;}
.ws2f{word-spacing:1.866667pt;}
.wsc{word-spacing:1.904000pt;}
.ws28{word-spacing:1.920000pt;}
.ws2b{word-spacing:2.186667pt;}
.ws34{word-spacing:2.346667pt;}
.ws4b{word-spacing:2.389333pt;}
.ws47{word-spacing:2.506667pt;}
.ws46{word-spacing:2.613333pt;}
.ws37{word-spacing:2.666667pt;}
.ws72{word-spacing:3.408000pt;}
.ws3a{word-spacing:3.733333pt;}
.ws60{word-spacing:4.000000pt;}
.ws3{word-spacing:4.080000pt;}
.ws5d{word-spacing:4.106667pt;}
.ws24{word-spacing:4.293333pt;}
.ws38{word-spacing:4.320000pt;}
.ws19{word-spacing:4.480000pt;}
.ws4{word-spacing:4.704000pt;}
.ws42{word-spacing:5.013333pt;}
.ws71{word-spacing:5.088000pt;}
.ws36{word-spacing:5.120000pt;}
.ws77{word-spacing:5.440000pt;}
.ws4a{word-spacing:5.562667pt;}
.ws15{word-spacing:5.600000pt;}
.ws7{word-spacing:5.888000pt;}
.ws1a{word-spacing:5.920000pt;}
.ws74{word-spacing:6.144000pt;}
.ws48{word-spacing:6.240000pt;}
.ws2d{word-spacing:6.346667pt;}
.ws8{word-spacing:6.384000pt;}
.ws13{word-spacing:6.506667pt;}
.ws3d{word-spacing:6.682667pt;}
.ws45{word-spacing:6.720000pt;}
.ws9{word-spacing:6.738667pt;}
.ws56{word-spacing:7.040000pt;}
.ws63{word-spacing:7.093333pt;}
.ws5c{word-spacing:7.466667pt;}
.ws12{word-spacing:7.626667pt;}
.ws4c{word-spacing:7.989333pt;}
.ws39{word-spacing:8.053333pt;}
.ws75{word-spacing:8.533333pt;}
.ws20{word-spacing:8.736000pt;}
.ws6c{word-spacing:8.746667pt;}
.ws31{word-spacing:9.226667pt;}
.wsa{word-spacing:9.264000pt;}
.ws16{word-spacing:9.386667pt;}
.ws32{word-spacing:9.653333pt;}
.wsb{word-spacing:9.778667pt;}
.ws1e{word-spacing:10.005333pt;}
.ws1b{word-spacing:10.042667pt;}
.ws68{word-spacing:10.186667pt;}
.ws44{word-spacing:10.293333pt;}
.ws62{word-spacing:10.453333pt;}
.ws52{word-spacing:10.773333pt;}
.ws6b{word-spacing:11.040000pt;}
.ws23{word-spacing:11.050667pt;}
.ws27{word-spacing:11.253333pt;}
.ws4d{word-spacing:11.306667pt;}
.ws43{word-spacing:11.733333pt;}
.ws67{word-spacing:12.320000pt;}
.ws53{word-spacing:12.533333pt;}
.ws5e{word-spacing:13.226667pt;}
.ws40{word-spacing:13.546667pt;}
.ws41{word-spacing:13.813333pt;}
.ws76{word-spacing:14.026667pt;}
.ws4f{word-spacing:14.293333pt;}
.ws21{word-spacing:14.485333pt;}
.ws5a{word-spacing:14.666667pt;}
.ws17{word-spacing:15.093333pt;}
.ws2c{word-spacing:15.146667pt;}
.ws2e{word-spacing:16.160000pt;}
.ws59{word-spacing:16.213333pt;}
.ws26{word-spacing:16.266667pt;}
.ws73{word-spacing:16.368000pt;}
.ws3b{word-spacing:16.576000pt;}
.ws54{word-spacing:16.853333pt;}
.ws50{word-spacing:18.400000pt;}
.ws1c{word-spacing:18.965333pt;}
.ws1f{word-spacing:19.674667pt;}
.ws6a{word-spacing:20.160000pt;}
.ws65{word-spacing:21.173333pt;}
.ws58{word-spacing:21.493333pt;}
.ws22{word-spacing:22.101333pt;}
.ws69{word-spacing:24.426667pt;}
.ws51{word-spacing:25.013333pt;}
.ws3c{word-spacing:26.320000pt;}
.ws64{word-spacing:27.200000pt;}
.ws25{word-spacing:55.070933pt;}
.ws3e{word-spacing:57.225600pt;}
.ws6d{word-spacing:91.540267pt;}
._13{margin-left:-4.362667pt;}
._a{margin-left:-2.768000pt;}
._14{margin-left:-1.868800pt;}
._5{margin-left:-0.902400pt;}
._2{width:1.051200pt;}
._1{width:1.948800pt;}
._0{width:3.273600pt;}
._3{width:4.761600pt;}
._4{width:5.697600pt;}
._6{width:6.825600pt;}
._12{width:7.749333pt;}
._c{width:9.690667pt;}
._b{width:10.666667pt;}
._d{width:11.989333pt;}
._9{width:12.890667pt;}
._11{width:14.352000pt;}
._10{width:15.584000pt;}
._f{width:16.981333pt;}
._e{width:18.325333pt;}
._15{width:19.578667pt;}
._19{width:20.949333pt;}
._17{width:22.309333pt;}
._16{width:25.210667pt;}
._18{width:26.106667pt;}
._7{width:55.708800pt;}
._8{width:1187.349867pt;}
.fs7{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:22.460000pt;}
.y53{bottom:24.323733pt;}
.y27{bottom:25.046000pt;}
.y24{bottom:48.000000pt;}
.y1c{bottom:52.657200pt;}
.yc7{bottom:60.558400pt;}
.y7f{bottom:60.558533pt;}
.y47{bottom:61.020533pt;}
.y9b{bottom:61.204933pt;}
.y52{bottom:61.220267pt;}
.yca{bottom:62.011333pt;}
.y97{bottom:65.891867pt;}
.y1b{bottom:67.857200pt;}
.y117{bottom:71.225067pt;}
.y9a{bottom:72.404933pt;}
.y51{bottom:72.420267pt;}
.yc9{bottom:73.211333pt;}
.yc6{bottom:76.558400pt;}
.y7e{bottom:76.558533pt;}
.y46{bottom:77.020533pt;}
.y96{bottom:81.891867pt;}
.y99{bottom:83.604933pt;}
.y50{bottom:83.620267pt;}
.yc8{bottom:84.411333pt;}
.y116{bottom:87.225067pt;}
.yc5{bottom:92.558400pt;}
.y7d{bottom:92.558533pt;}
.y45{bottom:93.020533pt;}
.y98{bottom:94.804933pt;}
.y4f{bottom:94.820267pt;}
.y95{bottom:97.891867pt;}
.y113{bottom:103.225067pt;}
.y1a{bottom:105.816267pt;}
.y4e{bottom:106.020267pt;}
.ycd{bottom:108.300533pt;}
.yc4{bottom:108.558400pt;}
.y7c{bottom:108.558533pt;}
.y44{bottom:109.020533pt;}
.y94{bottom:113.891867pt;}
.y4d{bottom:117.220267pt;}
.y112{bottom:119.225067pt;}
.ycc{bottom:119.500667pt;}
.y19{bottom:120.216267pt;}
.yc3{bottom:124.558400pt;}
.y7b{bottom:124.558533pt;}
.y43{bottom:125.020533pt;}
.y4c{bottom:128.420267pt;}
.y93{bottom:129.891867pt;}
.ycb{bottom:130.700667pt;}
.y18{bottom:134.616267pt;}
.y111{bottom:135.225067pt;}
.y4b{bottom:139.620267pt;}
.y103{bottom:140.558400pt;}
.y7a{bottom:140.558533pt;}
.y42{bottom:141.020533pt;}
.y17{bottom:149.016267pt;}
.y4a{bottom:150.820267pt;}
.yc2{bottom:151.225067pt;}
.y102{bottom:156.558400pt;}
.y79{bottom:156.558533pt;}
.y41{bottom:157.020533pt;}
.y49{bottom:162.020267pt;}
.y16{bottom:163.416267pt;}
.yea{bottom:167.225067pt;}
.y78{bottom:172.558533pt;}
.y40{bottom:173.020533pt;}
.y48{bottom:173.220267pt;}
.y15{bottom:177.816267pt;}
.yc1{bottom:177.891733pt;}
.ye9{bottom:183.225067pt;}
.y77{bottom:188.558533pt;}
.y14{bottom:192.216267pt;}
.yc0{bottom:193.891733pt;}
.ye8{bottom:199.225067pt;}
.y3f{bottom:199.687200pt;}
.y76{bottom:204.558533pt;}
.y13{bottom:206.616267pt;}
.ybf{bottom:209.891733pt;}
.y129{bottom:211.557333pt;}
.ye7{bottom:215.225067pt;}
.y3e{bottom:215.687200pt;}
.y92{bottom:220.558533pt;}
.y12{bottom:221.016267pt;}
.ybe{bottom:225.891733pt;}
.ye6{bottom:231.225067pt;}
.y75{bottom:231.225200pt;}
.y3d{bottom:231.687200pt;}
.y128{bottom:235.174000pt;}
.y11{bottom:235.416267pt;}
.y91{bottom:236.558533pt;}
.ybd{bottom:241.891733pt;}
.ye5{bottom:247.225067pt;}
.y74{bottom:247.225200pt;}
.y3c{bottom:247.687200pt;}
.y127{bottom:248.124000pt;}
.y10{bottom:249.816267pt;}
.y90{bottom:252.558533pt;}
.ybc{bottom:257.891733pt;}
.ye4{bottom:263.225067pt;}
.y73{bottom:263.225200pt;}
.y3b{bottom:263.687200pt;}
.y8f{bottom:268.558533pt;}
.y126{bottom:271.740667pt;}
.ybb{bottom:273.891733pt;}
.y82{bottom:276.789733pt;}
.yf{bottom:278.616267pt;}
.ye3{bottom:279.225067pt;}
.y72{bottom:279.225200pt;}
.y3a{bottom:279.687200pt;}
.y125{bottom:284.690667pt;}
.y81{bottom:286.389733pt;}
.yba{bottom:289.891733pt;}
.y71{bottom:295.225200pt;}
.y39{bottom:295.687200pt;}
.y80{bottom:301.544933pt;}
.yb9{bottom:305.891733pt;}
.ye{bottom:307.304000pt;}
.y124{bottom:308.307333pt;}
.y70{bottom:311.225200pt;}
.y38{bottom:311.687200pt;}
.y83{bottom:314.710133pt;}
.y101{bottom:316.558400pt;}
.y123{bottom:321.257333pt;}
.yb8{bottom:321.891733pt;}
.yd{bottom:322.503867pt;}
.y6f{bottom:327.225200pt;}
.y37{bottom:327.687200pt;}
.ye2{bottom:332.558400pt;}
.yb7{bottom:337.891733pt;}
.y6e{bottom:343.225200pt;}
.y36{bottom:343.687200pt;}
.y122{bottom:344.874000pt;}
.ye1{bottom:348.558400pt;}
.yc{bottom:352.103867pt;}
.y110{bottom:353.891733pt;}
.y121{bottom:357.824000pt;}
.y6d{bottom:359.225200pt;}
.y35{bottom:359.687200pt;}
.yb6{bottom:364.558400pt;}
.yb{bottom:366.503867pt;}
.y10f{bottom:369.891733pt;}
.y6c{bottom:375.225200pt;}
.y34{bottom:375.687200pt;}
.yb5{bottom:380.558400pt;}
.ya{bottom:380.903867pt;}
.y120{bottom:381.440667pt;}
.y10e{bottom:385.891733pt;}
.y6b{bottom:391.225200pt;}
.y33{bottom:391.687200pt;}
.y11f{bottom:394.390667pt;}
.y9{bottom:395.304000pt;}
.y11a{bottom:395.334533pt;}
.yb4{bottom:396.558400pt;}
.yf1{bottom:397.401467pt;}
.y10d{bottom:401.891733pt;}
.yf0{bottom:407.001467pt;}
.y6a{bottom:407.225200pt;}
.y11e{bottom:407.340667pt;}
.y32{bottom:407.687200pt;}
.y8{bottom:409.704000pt;}
.y119{bottom:410.634667pt;}
.yb3{bottom:412.558400pt;}
.y10c{bottom:417.891733pt;}
.yed{bottom:421.540533pt;}
.y100{bottom:423.225067pt;}
.y69{bottom:423.225200pt;}
.y118{bottom:423.434667pt;}
.y7{bottom:424.103867pt;}
.yb2{bottom:428.558400pt;}
.y11d{bottom:430.957333pt;}
.y10b{bottom:433.891733pt;}
.yec{bottom:434.340533pt;}
.y31{bottom:434.353867pt;}
.y11b{bottom:436.599867pt;}
.y6{bottom:438.503867pt;}
.yff{bottom:439.225067pt;}
.y68{bottom:439.225200pt;}
.y11c{bottom:443.372000pt;}
.yd3{bottom:444.033733pt;}
.yb1{bottom:444.558400pt;}
.yf2{bottom:447.505600pt;}
.y10a{bottom:449.891733pt;}
.y8e{bottom:449.891867pt;}
.y30{bottom:450.353867pt;}
.y5{bottom:452.903867pt;}
.yd2{bottom:453.633733pt;}
.yfe{bottom:455.225067pt;}
.y67{bottom:455.225200pt;}
.yb0{bottom:460.558400pt;}
.y109{bottom:465.891733pt;}
.y8d{bottom:465.891867pt;}
.y4{bottom:467.303867pt;}
.ycf{bottom:468.789067pt;}
.yfd{bottom:471.225067pt;}
.y66{bottom:471.225200pt;}
.yaf{bottom:476.558400pt;}
.y2f{bottom:477.020533pt;}
.y3{bottom:481.704000pt;}
.y8c{bottom:481.891867pt;}
.yd5{bottom:481.954133pt;}
.yfc{bottom:487.225067pt;}
.y65{bottom:487.225200pt;}
.yae{bottom:492.558400pt;}
.y2e{bottom:493.020533pt;}
.y2{bottom:496.103867pt;}
.y12b{bottom:497.891733pt;}
.y8b{bottom:497.891867pt;}
.yfb{bottom:503.225067pt;}
.yad{bottom:508.558400pt;}
.y2d{bottom:509.020533pt;}
.y12a{bottom:513.891733pt;}
.y64{bottom:513.891867pt;}
.ye0{bottom:519.225067pt;}
.yac{bottom:524.558400pt;}
.y1{bottom:524.903867pt;}
.y2c{bottom:525.020533pt;}
.yfa{bottom:529.891733pt;}
.y63{bottom:529.891867pt;}
.ydf{bottom:535.225067pt;}
.yab{bottom:540.558400pt;}
.y2b{bottom:541.020533pt;}
.yf9{bottom:545.891733pt;}
.y62{bottom:545.891867pt;}
.yde{bottom:551.225067pt;}
.yaa{bottom:556.558400pt;}
.y2a{bottom:557.020533pt;}
.yf8{bottom:561.891733pt;}
.y61{bottom:561.891867pt;}
.y1e{bottom:562.473067pt;}
.ydd{bottom:567.225067pt;}
.ya9{bottom:572.558400pt;}
.y29{bottom:573.020533pt;}
.yf7{bottom:577.891733pt;}
.y60{bottom:577.891867pt;}
.y20{bottom:581.320267pt;}
.ydc{bottom:583.225067pt;}
.y108{bottom:588.558400pt;}
.y1f{bottom:592.520267pt;}
.yf6{bottom:593.891733pt;}
.y5f{bottom:593.891867pt;}
.ya8{bottom:599.225067pt;}
.y28{bottom:599.687200pt;}
.y107{bottom:604.558400pt;}
.yf5{bottom:609.891733pt;}
.y5e{bottom:609.891867pt;}
.y1d{bottom:612.426000pt;}
.ya7{bottom:615.225067pt;}
.y106{bottom:620.558400pt;}
.yf4{bottom:625.891733pt;}
.y5d{bottom:625.891867pt;}
.ya6{bottom:631.225067pt;}
.y8a{bottom:636.558533pt;}
.y23{bottom:646.752667pt;}
.ya5{bottom:647.225067pt;}
.yf3{bottom:652.558400pt;}
.y5c{bottom:652.558533pt;}
.ya4{bottom:663.225067pt;}
.y89{bottom:663.225200pt;}
.y105{bottom:673.891733pt;}
.ya3{bottom:679.225067pt;}
.y5b{bottom:679.225200pt;}
.y22{bottom:680.352667pt;}
.y104{bottom:689.891733pt;}
.ya2{bottom:695.225067pt;}
.y88{bottom:695.225200pt;}
.ydb{bottom:705.891733pt;}
.y5a{bottom:705.891867pt;}
.ya1{bottom:711.225067pt;}
.y87{bottom:711.225200pt;}
.y21{bottom:713.952667pt;}
.yda{bottom:721.891733pt;}
.y59{bottom:721.891867pt;}
.ya0{bottom:727.225067pt;}
.y86{bottom:727.225200pt;}
.yd9{bottom:737.891733pt;}
.y58{bottom:737.891867pt;}
.y9f{bottom:743.225067pt;}
.y85{bottom:743.225200pt;}
.yd8{bottom:753.891733pt;}
.y57{bottom:753.891867pt;}
.yef{bottom:754.999733pt;}
.y115{bottom:756.033867pt;}
.y9e{bottom:759.225067pt;}
.y84{bottom:759.225200pt;}
.yee{bottom:764.599600pt;}
.y114{bottom:765.633733pt;}
.yd1{bottom:767.183467pt;}
.yd7{bottom:769.891733pt;}
.y56{bottom:769.891867pt;}
.y9d{bottom:775.225067pt;}
.yd0{bottom:776.783333pt;}
.yeb{bottom:779.138667pt;}
.yd6{bottom:785.891733pt;}
.y55{bottom:785.891867pt;}
.yce{bottom:791.938667pt;}
.y9c{bottom:801.891733pt;}
.y54{bottom:801.891867pt;}
.yd4{bottom:805.103733pt;}
.y25{bottom:857.898533pt;}
.h12{height:26.016000pt;}
.h13{height:27.440000pt;}
.h7{height:30.352000pt;}
.hf{height:33.596354pt;}
.h5{height:34.218667pt;}
.h11{height:34.602667pt;}
.h6{height:34.688000pt;}
.ha{height:35.280000pt;}
.hd{height:35.506767pt;}
.hb{height:38.395833pt;}
.h10{height:38.496000pt;}
.h3{height:39.024000pt;}
.h4{height:41.090667pt;}
.h14{height:41.165333pt;}
.hc{height:41.666667pt;}
.he{height:42.773333pt;}
.h2{height:43.360000pt;}
.h8{height:89.824000pt;}
.h9{height:91.056000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xc{left:11.716533pt;}
.x1d{left:54.766533pt;}
.xb{left:57.826667pt;}
.x1a{left:62.004267pt;}
.x9{left:68.596533pt;}
.x11{left:75.968533pt;}
.x26{left:81.762000pt;}
.x2{left:94.488133pt;}
.x13{left:113.390533pt;}
.x1b{left:128.392133pt;}
.xa{left:149.669200pt;}
.x28{left:151.181200pt;}
.x27{left:163.395067pt;}
.x23{left:185.913067pt;}
.x29{left:188.981200pt;}
.x22{left:190.244267pt;}
.xd{left:196.535467pt;}
.x15{left:201.574800pt;}
.x12{left:225.503067pt;}
.x24{left:227.148933pt;}
.xe{left:234.335467pt;}
.x16{left:239.374800pt;}
.x1e{left:242.473867pt;}
.x1c{left:248.196533pt;}
.x1f{left:268.758133pt;}
.x5{left:284.299200pt;}
.x6{left:289.211600pt;}
.x4{left:298.845467pt;}
.x21{left:300.472533pt;}
.x18{left:318.425200pt;}
.x8{left:330.130800pt;}
.x7{left:331.428400pt;}
.x20{left:338.272533pt;}
.x1{left:349.522933pt;}
.x3{left:351.736267pt;}
.x19{left:356.225200pt;}
.xf{left:367.336533pt;}
.x25{left:370.393733pt;}
.x14{left:438.951467pt;}
.x17{left:452.624667pt;}
.x10{left:642.042000pt;}
}




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