
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_8bef196fa2af45baddabf024.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_618a872a1615994998f54089.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;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_3d47595ab4041daec344f6c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.998667;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_03c36fc610f9032978cf5b9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957000;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_dc3b7bf805e537c5fe15f45a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959000;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_e39310c7fd3ef330e4966e69.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987000;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_86fe33b586438bd73ea6d5f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.884000;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_c00a50437627959fd22c7b7e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;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_31c2b850bb4b30d5a1c7d386.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.943000;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_a9176762604757dc7700369e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901000;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_34701b6107ee1c4e8064f6dc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.983000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.748000px;}
.ls1{letter-spacing:-8.316864px;}
.ls14{letter-spacing:-2.016000px;}
.lsa{letter-spacing:-1.260000px;}
.ls13{letter-spacing:-0.945000px;}
.ls5{letter-spacing:-0.693000px;}
.lse{letter-spacing:-0.630000px;}
.lsd{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.441000px;}
.lsc{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.189000px;}
.ls12{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.126000px;}
.lsf{letter-spacing:0.189000px;}
.ls10{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.315000px;}
.lsb{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.756000px;}
.ls11{letter-spacing:1.105593px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.wsc5{word-spacing:-13.980000px;}
.ws29{word-spacing:-13.167000px;}
.ws6{word-spacing:-13.005000px;}
.ws83{word-spacing:-12.789000px;}
.ws81{word-spacing:-12.474000px;}
.ws82{word-spacing:-12.033000px;}
.wscf{word-spacing:-7.581915px;}
.ws95{word-spacing:-1.512000px;}
.wsa9{word-spacing:-0.504000px;}
.ws44{word-spacing:-0.441000px;}
.wsf{word-spacing:-0.315000px;}
.ws7b{word-spacing:-0.300000px;}
.ws93{word-spacing:-0.252000px;}
.ws79{word-spacing:-0.189000px;}
.ws56{word-spacing:-0.126000px;}
.ws7f{word-spacing:-0.063000px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws27{word-spacing:0.126000px;}
.ws62{word-spacing:0.189000px;}
.ws75{word-spacing:0.252000px;}
.ws57{word-spacing:0.315000px;}
.ws2d{word-spacing:0.378000px;}
.ws34{word-spacing:0.441000px;}
.ws58{word-spacing:0.630000px;}
.ws4b{word-spacing:0.693000px;}
.ws87{word-spacing:0.756000px;}
.ws26{word-spacing:0.819000px;}
.ws4a{word-spacing:0.945000px;}
.ws85{word-spacing:1.008000px;}
.ws45{word-spacing:1.071000px;}
.ws38{word-spacing:1.197000px;}
.wsc{word-spacing:1.386000px;}
.ws3a{word-spacing:1.575000px;}
.wsab{word-spacing:1.953000px;}
.wsba{word-spacing:2.016000px;}
.wsc0{word-spacing:2.205000px;}
.ws84{word-spacing:2.394000px;}
.ws7e{word-spacing:2.457000px;}
.wsa3{word-spacing:2.646000px;}
.ws70{word-spacing:2.709000px;}
.ws19{word-spacing:2.772000px;}
.ws13{word-spacing:2.961000px;}
.ws35{word-spacing:3.024000px;}
.ws43{word-spacing:3.087000px;}
.ws7a{word-spacing:3.213000px;}
.ws89{word-spacing:3.402000px;}
.ws5f{word-spacing:3.465000px;}
.ws8d{word-spacing:3.528000px;}
.ws5a{word-spacing:3.591000px;}
.ws3c{word-spacing:3.654000px;}
.ws99{word-spacing:3.780000px;}
.wsaa{word-spacing:3.906000px;}
.wsad{word-spacing:3.969000px;}
.ws63{word-spacing:4.347000px;}
.ws36{word-spacing:4.410000px;}
.ws17{word-spacing:4.536000px;}
.ws9b{word-spacing:4.599000px;}
.ws2e{word-spacing:4.914000px;}
.ws16{word-spacing:5.040000px;}
.wsc7{word-spacing:5.355000px;}
.ws1b{word-spacing:5.418000px;}
.ws72{word-spacing:5.544000px;}
.wsbb{word-spacing:5.607000px;}
.ws41{word-spacing:5.733000px;}
.wsb8{word-spacing:5.922000px;}
.wscd{word-spacing:5.985000px;}
.ws74{word-spacing:6.174000px;}
.ws4e{word-spacing:6.300000px;}
.ws8a{word-spacing:6.426000px;}
.ws40{word-spacing:6.489000px;}
.wsb3{word-spacing:6.552000px;}
.ws5c{word-spacing:6.615000px;}
.ws14{word-spacing:6.804000px;}
.ws8e{word-spacing:6.867000px;}
.ws76{word-spacing:6.993000px;}
.ws9a{word-spacing:7.308000px;}
.ws46{word-spacing:7.371000px;}
.wsc8{word-spacing:7.560000px;}
.ws54{word-spacing:7.686000px;}
.ws59{word-spacing:7.749000px;}
.ws67{word-spacing:7.812000px;}
.ws94{word-spacing:7.875000px;}
.wsa1{word-spacing:7.938000px;}
.wsb7{word-spacing:8.064000px;}
.ws37{word-spacing:8.127000px;}
.ws97{word-spacing:8.190000px;}
.ws12{word-spacing:8.253000px;}
.ws77{word-spacing:8.316000px;}
.wsc2{word-spacing:8.505000px;}
.ws9f{word-spacing:8.631000px;}
.wsa5{word-spacing:8.694000px;}
.ws1a{word-spacing:8.946000px;}
.wsb0{word-spacing:9.009000px;}
.ws55{word-spacing:9.135000px;}
.ws78{word-spacing:9.198000px;}
.ws18{word-spacing:9.261000px;}
.wsa0{word-spacing:9.387000px;}
.wsa6{word-spacing:9.639000px;}
.ws60{word-spacing:9.765000px;}
.ws2c{word-spacing:9.828000px;}
.ws47{word-spacing:10.647000px;}
.ws23{word-spacing:10.773000px;}
.wsc6{word-spacing:10.962000px;}
.ws39{word-spacing:11.088000px;}
.ws8f{word-spacing:11.151000px;}
.ws5e{word-spacing:11.529000px;}
.ws53{word-spacing:11.655000px;}
.ws4d{word-spacing:11.781000px;}
.ws48{word-spacing:11.844000px;}
.ws32{word-spacing:12.096000px;}
.ws11{word-spacing:12.159000px;}
.ws1c{word-spacing:12.222000px;}
.ws61{word-spacing:12.285000px;}
.wsb4{word-spacing:12.474000px;}
.ws42{word-spacing:12.789000px;}
.ws51{word-spacing:12.852000px;}
.ws9e{word-spacing:13.104000px;}
.ws8c{word-spacing:13.230000px;}
.ws6e{word-spacing:13.545000px;}
.wsbf{word-spacing:13.608000px;}
.wsb2{word-spacing:14.490000px;}
.wsb5{word-spacing:14.553000px;}
.ws5b{word-spacing:14.742000px;}
.ws86{word-spacing:15.057000px;}
.ws3e{word-spacing:15.120000px;}
.ws24{word-spacing:15.183000px;}
.ws96{word-spacing:15.624000px;}
.ws92{word-spacing:15.813000px;}
.ws1f{word-spacing:15.876000px;}
.ws64{word-spacing:16.002000px;}
.ws9c{word-spacing:16.254000px;}
.ws68{word-spacing:16.695000px;}
.ws66{word-spacing:16.758000px;}
.wsa7{word-spacing:17.010000px;}
.ws69{word-spacing:17.073000px;}
.wsc9{word-spacing:17.199000px;}
.wsb{word-spacing:17.388000px;}
.ws65{word-spacing:17.703000px;}
.ws8b{word-spacing:17.766000px;}
.ws6c{word-spacing:17.829000px;}
.wsc3{word-spacing:17.955000px;}
.wsaf{word-spacing:18.018000px;}
.wsbc{word-spacing:18.081000px;}
.wsb9{word-spacing:18.333000px;}
.ws6b{word-spacing:18.459000px;}
.wse{word-spacing:18.522000px;}
.ws5d{word-spacing:19.026000px;}
.wsb6{word-spacing:19.152000px;}
.ws33{word-spacing:19.467000px;}
.ws7d{word-spacing:19.656000px;}
.wsa2{word-spacing:19.782000px;}
.ws6f{word-spacing:19.845000px;}
.ws30{word-spacing:19.908000px;}
.ws4c{word-spacing:20.034000px;}
.ws71{word-spacing:20.286000px;}
.wsd{word-spacing:20.349000px;}
.wsa4{word-spacing:20.790000px;}
.wsa8{word-spacing:20.853000px;}
.ws9d{word-spacing:20.916000px;}
.ws6d{word-spacing:21.042000px;}
.ws3f{word-spacing:21.168000px;}
.ws7c{word-spacing:21.483000px;}
.ws73{word-spacing:21.798000px;}
.ws6a{word-spacing:22.176000px;}
.ws22{word-spacing:22.428000px;}
.wscb{word-spacing:22.554000px;}
.ws49{word-spacing:22.680000px;}
.wsbd{word-spacing:22.743000px;}
.ws9{word-spacing:24.066000px;}
.ws3d{word-spacing:24.129000px;}
.ws88{word-spacing:24.633000px;}
.wsb1{word-spacing:24.822000px;}
.wsa{word-spacing:25.137000px;}
.ws15{word-spacing:25.326000px;}
.ws91{word-spacing:26.019000px;}
.ws20{word-spacing:26.145000px;}
.ws31{word-spacing:26.586000px;}
.wsbe{word-spacing:26.901000px;}
.ws4f{word-spacing:27.027000px;}
.ws52{word-spacing:27.468000px;}
.ws50{word-spacing:28.287000px;}
.wsae{word-spacing:28.917000px;}
.wsc1{word-spacing:29.043000px;}
.ws10{word-spacing:29.421000px;}
.ws1d{word-spacing:29.610000px;}
.ws1e{word-spacing:30.492000px;}
.ws90{word-spacing:31.248000px;}
.wsca{word-spacing:31.311000px;}
.ws25{word-spacing:31.941000px;}
.wsac{word-spacing:33.201000px;}
.ws2b{word-spacing:33.768000px;}
.ws3b{word-spacing:35.532000px;}
.ws98{word-spacing:46.557000px;}
.wscc{word-spacing:50.148000px;}
.ws2f{word-spacing:74.844000px;}
.ws7{word-spacing:249.205800px;}
.ws2a{word-spacing:986.050200px;}
.ws8{word-spacing:986.050800px;}
.ws5{word-spacing:6224.472000px;}
.ws80{word-spacing:6227.856000px;}
.wsc4{word-spacing:6230.880000px;}
.wsce{word-spacing:6231.312000px;}
.ws28{word-spacing:6234.048000px;}
._16{margin-left:-15.258000px;}
._5{margin-left:-13.129195px;}
._14{margin-left:-6.901200px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._4{margin-left:-1.025100px;}
._7{width:1.933805px;}
._8{width:2.987074px;}
._6{width:3.996000px;}
._9{width:5.460000px;}
._f{width:6.984595px;}
._a{width:8.016000px;}
._b{width:9.273902px;}
._17{width:10.685983px;}
._13{width:13.910400px;}
._12{width:14.932198px;}
._19{width:16.065886px;}
._10{width:17.148600px;}
._1b{width:18.356400px;}
._1d{width:19.624795px;}
._18{width:20.720693px;}
._11{width:22.352400px;}
._d{width:23.657402px;}
._c{width:25.030802px;}
._1a{width:27.065998px;}
._1c{width:28.190393px;}
._e{width:31.049986px;}
._1e{width:33.032688px;}
._1f{width:34.290900px;}
._20{width:107.437442px;}
._15{width:677.982010px;}
._21{width:679.266898px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fsa{font-size:29.733000px;}
.fs9{font-size:36.729000px;}
.fs5{font-size:51.000000px;}
.fs6{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.y74{bottom:31.950150px;}
.ya{bottom:41.220000px;}
.y73{bottom:46.950150px;}
.y72{bottom:61.950150px;}
.y14c{bottom:95.839950px;}
.y122{bottom:95.850450px;}
.y1a1{bottom:95.855700px;}
.y110{bottom:95.866200px;}
.y9d{bottom:95.913450px;}
.y5b{bottom:95.934450px;}
.y70{bottom:96.028950px;}
.y179{bottom:96.044700px;}
.ye3{bottom:96.049950px;}
.y14b{bottom:116.834700px;}
.y121{bottom:116.845200px;}
.y1a0{bottom:116.850450px;}
.y10f{bottom:116.860950px;}
.y9c{bottom:116.908200px;}
.y208{bottom:116.914950px;}
.y5a{bottom:116.929200px;}
.y6f{bottom:117.023700px;}
.y178{bottom:117.039450px;}
.ye2{bottom:117.044700px;}
.yca{bottom:117.128700px;}
.y120{bottom:137.839950px;}
.y19f{bottom:137.845200px;}
.y10e{bottom:137.855700px;}
.y2f{bottom:137.868450px;}
.y207{bottom:137.914200px;}
.y59{bottom:137.923950px;}
.y6e{bottom:138.018450px;}
.y177{bottom:138.034200px;}
.ye1{bottom:138.039450px;}
.yc9{bottom:138.123450px;}
.y11f{bottom:158.834700px;}
.y19e{bottom:158.839950px;}
.y10d{bottom:158.850450px;}
.y2e{bottom:158.867700px;}
.y9b{bottom:158.913450px;}
.y58{bottom:158.918700px;}
.y22e{bottom:158.951700px;}
.y6d{bottom:159.013200px;}
.y176{bottom:159.028950px;}
.ye0{bottom:159.034200px;}
.yc8{bottom:159.118200px;}
.y14a{bottom:179.834700px;}
.y10c{bottom:179.845200px;}
.y1e3{bottom:179.874450px;}
.y9a{bottom:179.908200px;}
.y206{bottom:179.912700px;}
.y57{bottom:179.913450px;}
.y22d{bottom:179.950950px;}
.y6c{bottom:180.007950px;}
.y175{bottom:180.023700px;}
.ydf{bottom:180.028950px;}
.yc7{bottom:180.112950px;}
.y11e{bottom:200.834700px;}
.y239{bottom:200.836950px;}
.y10b{bottom:200.839950px;}
.y2d{bottom:200.866200px;}
.y1e2{bottom:200.873700px;}
.y99{bottom:200.902950px;}
.y56{bottom:200.908200px;}
.y205{bottom:200.911950px;}
.y22c{bottom:200.950200px;}
.y6b{bottom:201.002700px;}
.y174{bottom:201.018450px;}
.yde{bottom:201.023700px;}
.yc6{bottom:201.107700px;}
.y10a{bottom:221.834700px;}
.y238{bottom:221.836200px;}
.y2c{bottom:221.865450px;}
.y1e1{bottom:221.872950px;}
.y98{bottom:221.897700px;}
.y55{bottom:221.902950px;}
.y204{bottom:221.911200px;}
.y22b{bottom:221.949450px;}
.y6a{bottom:221.997450px;}
.ydd{bottom:222.018450px;}
.yc5{bottom:222.102450px;}
.y237{bottom:242.835450px;}
.y2b{bottom:242.864700px;}
.y97{bottom:242.892450px;}
.y54{bottom:242.897700px;}
.y22a{bottom:242.948700px;}
.y149{bottom:242.976450px;}
.y69{bottom:242.992200px;}
.ydc{bottom:243.013200px;}
.y173{bottom:243.023700px;}
.yc4{bottom:243.097200px;}
.y109{bottom:263.834700px;}
.y2a{bottom:263.863950px;}
.y1e0{bottom:263.871450px;}
.y96{bottom:263.887200px;}
.y53{bottom:263.892450px;}
.y203{bottom:263.909700px;}
.y148{bottom:263.971200px;}
.y68{bottom:263.986950px;}
.ydb{bottom:264.007950px;}
.y172{bottom:264.018450px;}
.yc3{bottom:264.091950px;}
.y236{bottom:268.080450px;}
.y108{bottom:284.834700px;}
.y1be{bottom:284.845200px;}
.y29{bottom:284.863200px;}
.y1df{bottom:284.870700px;}
.y95{bottom:284.881950px;}
.y52{bottom:284.887200px;}
.y202{bottom:284.908950px;}
.y229{bottom:284.947200px;}
.y147{bottom:284.965950px;}
.y67{bottom:284.981700px;}
.yda{bottom:285.002700px;}
.y171{bottom:285.013200px;}
.yc2{bottom:285.086700px;}
.y19d{bottom:285.202200px;}
.y235{bottom:305.834700px;}
.y1bd{bottom:305.844450px;}
.y1de{bottom:305.869950px;}
.y94{bottom:305.876700px;}
.y51{bottom:305.881950px;}
.y201{bottom:305.908200px;}
.y228{bottom:305.946450px;}
.y146{bottom:305.960700px;}
.y66{bottom:305.976450px;}
.y11d{bottom:305.997450px;}
.y170{bottom:306.007950px;}
.yc1{bottom:306.081450px;}
.y19c{bottom:306.196950px;}
.y1bc{bottom:326.843700px;}
.y28{bottom:326.861700px;}
.y93{bottom:326.871450px;}
.y50{bottom:326.876700px;}
.y200{bottom:326.907450px;}
.y227{bottom:326.945700px;}
.y145{bottom:326.955450px;}
.y65{bottom:326.971200px;}
.y11c{bottom:326.992200px;}
.y16f{bottom:327.002700px;}
.yd9{bottom:327.007950px;}
.yc0{bottom:327.076200px;}
.y19b{bottom:327.191700px;}
.y107{bottom:327.228450px;}
.y1bb{bottom:347.842950px;}
.y27{bottom:347.860950px;}
.y92{bottom:347.866200px;}
.y1dd{bottom:347.868450px;}
.y4f{bottom:347.871450px;}
.y1ff{bottom:347.906700px;}
.y226{bottom:347.944950px;}
.y144{bottom:347.950200px;}
.y64{bottom:347.965950px;}
.y11b{bottom:347.986950px;}
.y16e{bottom:347.997450px;}
.yd8{bottom:348.002700px;}
.ybf{bottom:348.070950px;}
.y19a{bottom:348.186450px;}
.y106{bottom:348.223200px;}
.y7{bottom:352.018200px;}
.y1ba{bottom:368.842200px;}
.y26{bottom:368.860200px;}
.y91{bottom:368.860950px;}
.y4e{bottom:368.866200px;}
.y1dc{bottom:368.867700px;}
.y225{bottom:368.944200px;}
.y143{bottom:368.944950px;}
.y63{bottom:368.960700px;}
.y11a{bottom:368.981700px;}
.y16d{bottom:368.992200px;}
.yd7{bottom:368.997450px;}
.ybe{bottom:369.065700px;}
.y199{bottom:369.181200px;}
.y105{bottom:369.217950px;}
.y9{bottom:381.914100px;}
.y90{bottom:389.855700px;}
.y25{bottom:389.859450px;}
.y4d{bottom:389.860950px;}
.y1db{bottom:389.866950px;}
.y1fe{bottom:389.905200px;}
.y142{bottom:389.939700px;}
.y224{bottom:389.943450px;}
.y62{bottom:389.955450px;}
.y119{bottom:389.976450px;}
.y16c{bottom:389.986950px;}
.yd6{bottom:389.992200px;}
.ybd{bottom:390.060450px;}
.y198{bottom:390.175950px;}
.y104{bottom:390.212700px;}
.y1b9{bottom:410.840700px;}
.y8f{bottom:410.850450px;}
.y4c{bottom:410.855700px;}
.y234{bottom:410.858700px;}
.y1fd{bottom:410.904450px;}
.y141{bottom:410.934450px;}
.y223{bottom:410.942700px;}
.y61{bottom:410.950200px;}
.y118{bottom:410.971200px;}
.y16b{bottom:410.981700px;}
.yd5{bottom:410.986950px;}
.ybc{bottom:411.055200px;}
.y197{bottom:411.170700px;}
.y103{bottom:411.207450px;}
.y1b8{bottom:431.839950px;}
.y8e{bottom:431.845200px;}
.y4b{bottom:431.850450px;}
.y24{bottom:431.857950px;}
.y1da{bottom:431.865450px;}
.y1fc{bottom:431.903700px;}
.y140{bottom:431.929200px;}
.y222{bottom:431.941950px;}
.y117{bottom:431.965950px;}
.y16a{bottom:431.976450px;}
.yd4{bottom:431.981700px;}
.ybb{bottom:432.049950px;}
.y196{bottom:432.165450px;}
.y102{bottom:432.202200px;}
.y6{bottom:445.018200px;}
.y1b7{bottom:452.839200px;}
.y8d{bottom:452.839950px;}
.y4a{bottom:452.845200px;}
.y23{bottom:452.857200px;}
.y1d9{bottom:452.864700px;}
.y13f{bottom:452.923950px;}
.y221{bottom:452.941200px;}
.y60{bottom:452.955450px;}
.y116{bottom:452.960700px;}
.y169{bottom:452.971200px;}
.yd3{bottom:452.976450px;}
.yba{bottom:453.044700px;}
.y195{bottom:453.160200px;}
.y101{bottom:453.196950px;}
.y8c{bottom:473.834700px;}
.y1b6{bottom:473.838450px;}
.y49{bottom:473.839950px;}
.y22{bottom:473.856450px;}
.y1d8{bottom:473.863950px;}
.y1fb{bottom:473.902200px;}
.y13e{bottom:473.918700px;}
.y5f{bottom:473.950200px;}
.y115{bottom:473.955450px;}
.y168{bottom:473.965950px;}
.yd2{bottom:473.971200px;}
.yb9{bottom:474.039450px;}
.y194{bottom:474.154950px;}
.y100{bottom:474.191700px;}
.y48{bottom:494.834700px;}
.y21{bottom:494.855700px;}
.y1d7{bottom:494.863200px;}
.y1fa{bottom:494.901450px;}
.y13d{bottom:494.913450px;}
.y220{bottom:494.939700px;}
.y5e{bottom:494.944950px;}
.y114{bottom:494.950200px;}
.y167{bottom:494.960700px;}
.yd1{bottom:494.965950px;}
.yb8{bottom:495.034200px;}
.y193{bottom:495.149700px;}
.yff{bottom:495.186450px;}
.y8b{bottom:515.834700px;}
.y1b5{bottom:515.836950px;}
.y233{bottom:515.854950px;}
.y1d6{bottom:515.862450px;}
.y1f9{bottom:515.900700px;}
.y13c{bottom:515.908200px;}
.y21f{bottom:515.938950px;}
.y5d{bottom:515.939700px;}
.y113{bottom:515.944950px;}
.y166{bottom:515.955450px;}
.yd0{bottom:515.960700px;}
.yb7{bottom:516.028950px;}
.y192{bottom:516.144450px;}
.yfe{bottom:516.181200px;}
.y47{bottom:536.834700px;}
.y1b4{bottom:536.836200px;}
.y20{bottom:536.854200px;}
.y1d5{bottom:536.861700px;}
.y1f8{bottom:536.899950px;}
.y13b{bottom:536.902950px;}
.y5c{bottom:536.934450px;}
.y21e{bottom:536.938200px;}
.y112{bottom:536.939700px;}
.y165{bottom:536.950200px;}
.ycf{bottom:536.955450px;}
.yb6{bottom:537.023700px;}
.y191{bottom:537.139200px;}
.yfd{bottom:537.175950px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y1b3{bottom:557.835450px;}
.y1f{bottom:557.853450px;}
.y13a{bottom:557.897700px;}
.y111{bottom:557.934450px;}
.y21d{bottom:557.937450px;}
.y164{bottom:557.944950px;}
.yce{bottom:557.950200px;}
.yb5{bottom:558.018450px;}
.yfc{bottom:558.170700px;}
.y1b2{bottom:578.834700px;}
.y1e{bottom:578.852700px;}
.y1d4{bottom:578.860200px;}
.y1f7{bottom:578.898450px;}
.y21c{bottom:578.936700px;}
.y163{bottom:578.939700px;}
.ycd{bottom:578.944950px;}
.yb4{bottom:579.013200px;}
.y190{bottom:579.144450px;}
.yfb{bottom:579.165450px;}
.y1d{bottom:599.851950px;}
.y1d3{bottom:599.859450px;}
.y1f6{bottom:599.897700px;}
.y139{bottom:599.902950px;}
.y21b{bottom:599.935950px;}
.y8a{bottom:599.939700px;}
.yb3{bottom:600.007950px;}
.y18f{bottom:600.139200px;}
.yfa{bottom:600.160200px;}
.y46{bottom:620.834700px;}
.y232{bottom:620.851200px;}
.y1d2{bottom:620.858700px;}
.y1f5{bottom:620.896950px;}
.y138{bottom:620.897700px;}
.y89{bottom:620.934450px;}
.y21a{bottom:620.935200px;}
.y162{bottom:620.944950px;}
.yb2{bottom:621.002700px;}
.y18e{bottom:621.133950px;}
.yf9{bottom:621.154950px;}
.y4{bottom:631.018200px;}
.y45{bottom:641.834700px;}
.y1c{bottom:641.850450px;}
.y1d1{bottom:641.857950px;}
.y137{bottom:641.892450px;}
.y1f4{bottom:641.896200px;}
.y88{bottom:641.929200px;}
.y161{bottom:641.939700px;}
.yb1{bottom:641.997450px;}
.y18d{bottom:642.128700px;}
.yf8{bottom:642.149700px;}
.y44{bottom:662.834700px;}
.y1b{bottom:662.849700px;}
.y1d0{bottom:662.857200px;}
.y136{bottom:662.887200px;}
.y87{bottom:662.923950px;}
.y219{bottom:662.933700px;}
.y160{bottom:662.934450px;}
.yb0{bottom:662.992200px;}
.y18c{bottom:663.123450px;}
.yf7{bottom:663.144450px;}
.y43{bottom:683.834700px;}
.y1a{bottom:683.848950px;}
.y1cf{bottom:683.856450px;}
.y135{bottom:683.881950px;}
.y1f3{bottom:683.894700px;}
.y86{bottom:683.918700px;}
.y15f{bottom:683.929200px;}
.y218{bottom:683.932950px;}
.y1b1{bottom:683.934450px;}
.y18b{bottom:684.118200px;}
.yf6{bottom:684.139200px;}
.y42{bottom:704.834700px;}
.y19{bottom:704.848200px;}
.y1ce{bottom:704.855700px;}
.y134{bottom:704.876700px;}
.y1f2{bottom:704.893950px;}
.y85{bottom:704.913450px;}
.y15e{bottom:704.923950px;}
.y1b0{bottom:704.929200px;}
.y217{bottom:704.932200px;}
.yaf{bottom:704.997450px;}
.yf5{bottom:705.133950px;}
.y41{bottom:725.834700px;}
.y18{bottom:725.847450px;}
.y1cd{bottom:725.854950px;}
.y133{bottom:725.871450px;}
.y1f1{bottom:725.893200px;}
.y84{bottom:725.908200px;}
.y15d{bottom:725.918700px;}
.y1af{bottom:725.923950px;}
.y216{bottom:725.931450px;}
.yae{bottom:725.992200px;}
.y18a{bottom:726.123450px;}
.yf4{bottom:726.128700px;}
.y40{bottom:746.834700px;}
.y1cc{bottom:746.854200px;}
.y132{bottom:746.866200px;}
.y1f0{bottom:746.892450px;}
.y83{bottom:746.902950px;}
.y15c{bottom:746.913450px;}
.y1ae{bottom:746.918700px;}
.y215{bottom:746.930700px;}
.yad{bottom:746.986950px;}
.y189{bottom:747.118200px;}
.yf3{bottom:747.123450px;}
.y3{bottom:751.738650px;}
.y3f{bottom:767.834700px;}
.y17{bottom:767.845950px;}
.y131{bottom:767.860950px;}
.y1ef{bottom:767.891700px;}
.y82{bottom:767.897700px;}
.y15b{bottom:767.908200px;}
.y1ad{bottom:767.913450px;}
.yac{bottom:767.981700px;}
.y188{bottom:768.112950px;}
.y3e{bottom:788.834700px;}
.y16{bottom:788.845200px;}
.y1cb{bottom:788.852700px;}
.y130{bottom:788.855700px;}
.y81{bottom:788.892450px;}
.y15a{bottom:788.902950px;}
.y1ac{bottom:788.908200px;}
.y214{bottom:788.929200px;}
.yab{bottom:788.976450px;}
.y187{bottom:789.107700px;}
.yf2{bottom:789.128700px;}
.y2{bottom:791.931000px;}
.y3d{bottom:809.834700px;}
.y15{bottom:809.844450px;}
.y12f{bottom:809.850450px;}
.y1ca{bottom:809.851950px;}
.y80{bottom:809.887200px;}
.y1ee{bottom:809.890200px;}
.y159{bottom:809.897700px;}
.y1ab{bottom:809.902950px;}
.y213{bottom:809.928450px;}
.yaa{bottom:809.971200px;}
.y186{bottom:810.102450px;}
.yf1{bottom:810.123450px;}
.y3c{bottom:830.834700px;}
.y14{bottom:830.843700px;}
.y12e{bottom:830.845200px;}
.y1c9{bottom:830.851200px;}
.y7f{bottom:830.881950px;}
.y1ed{bottom:830.889450px;}
.y158{bottom:830.892450px;}
.y1aa{bottom:830.897700px;}
.y212{bottom:830.927700px;}
.ya9{bottom:830.965950px;}
.y185{bottom:831.097200px;}
.yf0{bottom:831.118200px;}
.y3b{bottom:851.834700px;}
.y13{bottom:851.842950px;}
.y7e{bottom:851.876700px;}
.y157{bottom:851.887200px;}
.y1ec{bottom:851.888700px;}
.y1a9{bottom:851.892450px;}
.ya8{bottom:851.960700px;}
.y184{bottom:852.091950px;}
.yef{bottom:852.112950px;}
.y1{bottom:859.112850px;}
.y3a{bottom:872.834700px;}
.y231{bottom:872.842200px;}
.y1c8{bottom:872.849700px;}
.y12d{bottom:872.850450px;}
.y7d{bottom:872.871450px;}
.y156{bottom:872.881950px;}
.y1a8{bottom:872.887200px;}
.y211{bottom:872.926200px;}
.ya7{bottom:872.955450px;}
.y183{bottom:873.086700px;}
.yee{bottom:873.107700px;}
.y39{bottom:893.834700px;}
.y12{bottom:893.841450px;}
.y12c{bottom:893.845200px;}
.y1c7{bottom:893.848950px;}
.y7c{bottom:893.866200px;}
.y155{bottom:893.876700px;}
.y1a7{bottom:893.881950px;}
.y1eb{bottom:893.887200px;}
.y210{bottom:893.925450px;}
.ya6{bottom:893.950200px;}
.y182{bottom:894.081450px;}
.yed{bottom:894.102450px;}
.y38{bottom:914.834700px;}
.y12b{bottom:914.839950px;}
.y11{bottom:914.840700px;}
.y7b{bottom:914.860950px;}
.y1a6{bottom:914.876700px;}
.y1ea{bottom:914.886450px;}
.ya5{bottom:914.944950px;}
.y181{bottom:915.076200px;}
.yec{bottom:915.097200px;}
.y37{bottom:935.834700px;}
.y230{bottom:935.839950px;}
.y1c6{bottom:935.847450px;}
.y7a{bottom:935.855700px;}
.y1a5{bottom:935.871450px;}
.y154{bottom:935.881950px;}
.y1e9{bottom:935.885700px;}
.y12a{bottom:935.892450px;}
.y20f{bottom:935.923950px;}
.ya4{bottom:935.939700px;}
.yeb{bottom:936.091950px;}
.y36{bottom:956.834700px;}
.y10{bottom:956.839200px;}
.y1c5{bottom:956.846700px;}
.y79{bottom:956.850450px;}
.y1a4{bottom:956.866200px;}
.y153{bottom:956.876700px;}
.y129{bottom:956.887200px;}
.y20e{bottom:956.923200px;}
.ya3{bottom:956.934450px;}
.y180{bottom:957.081450px;}
.yea{bottom:957.086700px;}
.yf{bottom:977.838450px;}
.y78{bottom:977.845200px;}
.y1c4{bottom:977.845950px;}
.y1a3{bottom:977.860950px;}
.y152{bottom:977.871450px;}
.y128{bottom:977.881950px;}
.y1e8{bottom:977.884200px;}
.y20d{bottom:977.922450px;}
.ya2{bottom:977.929200px;}
.y17f{bottom:978.076200px;}
.ye9{bottom:978.081450px;}
.ye{bottom:998.837700px;}
.ycc{bottom:998.839950px;}
.y1c3{bottom:998.845200px;}
.y1a2{bottom:998.855700px;}
.y151{bottom:998.866200px;}
.y127{bottom:998.876700px;}
.y1e7{bottom:998.883450px;}
.y20c{bottom:998.921700px;}
.y17e{bottom:999.070950px;}
.ye8{bottom:999.076200px;}
.y35{bottom:1007.834700px;}
.ycb{bottom:1019.834700px;}
.y22f{bottom:1019.836950px;}
.y1c2{bottom:1019.844450px;}
.y77{bottom:1019.850450px;}
.y150{bottom:1019.860950px;}
.y126{bottom:1019.871450px;}
.y20b{bottom:1019.920950px;}
.ya1{bottom:1019.934450px;}
.y17d{bottom:1020.065700px;}
.ye7{bottom:1020.070950px;}
.y34{bottom:1034.834700px;}
.yd{bottom:1040.836200px;}
.y1c1{bottom:1040.843700px;}
.y76{bottom:1040.845200px;}
.y14f{bottom:1040.855700px;}
.y125{bottom:1040.866200px;}
.y1e6{bottom:1040.881950px;}
.y20a{bottom:1040.920200px;}
.ya0{bottom:1040.929200px;}
.y17c{bottom:1041.060450px;}
.ye6{bottom:1041.065700px;}
.y33{bottom:1061.834700px;}
.yc{bottom:1061.835450px;}
.y75{bottom:1061.839950px;}
.y1c0{bottom:1061.842950px;}
.y14e{bottom:1061.850450px;}
.y124{bottom:1061.860950px;}
.y31{bottom:1061.873700px;}
.y1e5{bottom:1061.881200px;}
.y209{bottom:1061.919450px;}
.y9f{bottom:1061.923950px;}
.y17b{bottom:1062.055200px;}
.ye5{bottom:1062.060450px;}
.yb{bottom:1082.834700px;}
.y1bf{bottom:1082.842200px;}
.y14d{bottom:1082.845200px;}
.y123{bottom:1082.855700px;}
.y30{bottom:1082.872950px;}
.y1e4{bottom:1082.880450px;}
.y9e{bottom:1082.918700px;}
.y17a{bottom:1083.049950px;}
.ye4{bottom:1083.055200px;}
.y32{bottom:1091.064450px;}
.y71{bottom:1187.834700px;}
.h12{height:22.542000px;}
.h8{height:37.740000px;}
.h9{height:39.525000px;}
.h10{height:43.680000px;}
.ha{height:44.040000px;}
.he{height:45.234000px;}
.hd{height:45.840000px;}
.hc{height:46.500000px;}
.h11{height:47.119422px;}
.h7{height:51.768000px;}
.hb{height:70.080000px;}
.hf{height:70.464000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.xb{left:81.637800px;}
.x4{left:85.039350px;}
.x2{left:223.228350px;}
.x5{left:467.717850px;}
.x6{left:977.952750px;}
.x8{left:982.138200px;}
.x9{left:987.628200px;}
.xa{left:1058.248200px;}
.x7{left:1360.630500px;}
@media print{
.v2{vertical-align:-15.096000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.442667pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls14{letter-spacing:-1.792000pt;}
.lsa{letter-spacing:-1.120000pt;}
.ls13{letter-spacing:-0.840000pt;}
.ls5{letter-spacing:-0.616000pt;}
.lse{letter-spacing:-0.560000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.392000pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.168000pt;}
.ls12{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.112000pt;}
.lsf{letter-spacing:0.168000pt;}
.ls10{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.280000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.672000pt;}
.ls11{letter-spacing:0.982749pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.wsc5{word-spacing:-12.426667pt;}
.ws29{word-spacing:-11.704000pt;}
.ws6{word-spacing:-11.560000pt;}
.ws83{word-spacing:-11.368000pt;}
.ws81{word-spacing:-11.088000pt;}
.ws82{word-spacing:-10.696000pt;}
.wscf{word-spacing:-6.739480pt;}
.ws95{word-spacing:-1.344000pt;}
.wsa9{word-spacing:-0.448000pt;}
.ws44{word-spacing:-0.392000pt;}
.wsf{word-spacing:-0.280000pt;}
.ws7b{word-spacing:-0.266667pt;}
.ws93{word-spacing:-0.224000pt;}
.ws79{word-spacing:-0.168000pt;}
.ws56{word-spacing:-0.112000pt;}
.ws7f{word-spacing:-0.056000pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws27{word-spacing:0.112000pt;}
.ws62{word-spacing:0.168000pt;}
.ws75{word-spacing:0.224000pt;}
.ws57{word-spacing:0.280000pt;}
.ws2d{word-spacing:0.336000pt;}
.ws34{word-spacing:0.392000pt;}
.ws58{word-spacing:0.560000pt;}
.ws4b{word-spacing:0.616000pt;}
.ws87{word-spacing:0.672000pt;}
.ws26{word-spacing:0.728000pt;}
.ws4a{word-spacing:0.840000pt;}
.ws85{word-spacing:0.896000pt;}
.ws45{word-spacing:0.952000pt;}
.ws38{word-spacing:1.064000pt;}
.wsc{word-spacing:1.232000pt;}
.ws3a{word-spacing:1.400000pt;}
.wsab{word-spacing:1.736000pt;}
.wsba{word-spacing:1.792000pt;}
.wsc0{word-spacing:1.960000pt;}
.ws84{word-spacing:2.128000pt;}
.ws7e{word-spacing:2.184000pt;}
.wsa3{word-spacing:2.352000pt;}
.ws70{word-spacing:2.408000pt;}
.ws19{word-spacing:2.464000pt;}
.ws13{word-spacing:2.632000pt;}
.ws35{word-spacing:2.688000pt;}
.ws43{word-spacing:2.744000pt;}
.ws7a{word-spacing:2.856000pt;}
.ws89{word-spacing:3.024000pt;}
.ws5f{word-spacing:3.080000pt;}
.ws8d{word-spacing:3.136000pt;}
.ws5a{word-spacing:3.192000pt;}
.ws3c{word-spacing:3.248000pt;}
.ws99{word-spacing:3.360000pt;}
.wsaa{word-spacing:3.472000pt;}
.wsad{word-spacing:3.528000pt;}
.ws63{word-spacing:3.864000pt;}
.ws36{word-spacing:3.920000pt;}
.ws17{word-spacing:4.032000pt;}
.ws9b{word-spacing:4.088000pt;}
.ws2e{word-spacing:4.368000pt;}
.ws16{word-spacing:4.480000pt;}
.wsc7{word-spacing:4.760000pt;}
.ws1b{word-spacing:4.816000pt;}
.ws72{word-spacing:4.928000pt;}
.wsbb{word-spacing:4.984000pt;}
.ws41{word-spacing:5.096000pt;}
.wsb8{word-spacing:5.264000pt;}
.wscd{word-spacing:5.320000pt;}
.ws74{word-spacing:5.488000pt;}
.ws4e{word-spacing:5.600000pt;}
.ws8a{word-spacing:5.712000pt;}
.ws40{word-spacing:5.768000pt;}
.wsb3{word-spacing:5.824000pt;}
.ws5c{word-spacing:5.880000pt;}
.ws14{word-spacing:6.048000pt;}
.ws8e{word-spacing:6.104000pt;}
.ws76{word-spacing:6.216000pt;}
.ws9a{word-spacing:6.496000pt;}
.ws46{word-spacing:6.552000pt;}
.wsc8{word-spacing:6.720000pt;}
.ws54{word-spacing:6.832000pt;}
.ws59{word-spacing:6.888000pt;}
.ws67{word-spacing:6.944000pt;}
.ws94{word-spacing:7.000000pt;}
.wsa1{word-spacing:7.056000pt;}
.wsb7{word-spacing:7.168000pt;}
.ws37{word-spacing:7.224000pt;}
.ws97{word-spacing:7.280000pt;}
.ws12{word-spacing:7.336000pt;}
.ws77{word-spacing:7.392000pt;}
.wsc2{word-spacing:7.560000pt;}
.ws9f{word-spacing:7.672000pt;}
.wsa5{word-spacing:7.728000pt;}
.ws1a{word-spacing:7.952000pt;}
.wsb0{word-spacing:8.008000pt;}
.ws55{word-spacing:8.120000pt;}
.ws78{word-spacing:8.176000pt;}
.ws18{word-spacing:8.232000pt;}
.wsa0{word-spacing:8.344000pt;}
.wsa6{word-spacing:8.568000pt;}
.ws60{word-spacing:8.680000pt;}
.ws2c{word-spacing:8.736000pt;}
.ws47{word-spacing:9.464000pt;}
.ws23{word-spacing:9.576000pt;}
.wsc6{word-spacing:9.744000pt;}
.ws39{word-spacing:9.856000pt;}
.ws8f{word-spacing:9.912000pt;}
.ws5e{word-spacing:10.248000pt;}
.ws53{word-spacing:10.360000pt;}
.ws4d{word-spacing:10.472000pt;}
.ws48{word-spacing:10.528000pt;}
.ws32{word-spacing:10.752000pt;}
.ws11{word-spacing:10.808000pt;}
.ws1c{word-spacing:10.864000pt;}
.ws61{word-spacing:10.920000pt;}
.wsb4{word-spacing:11.088000pt;}
.ws42{word-spacing:11.368000pt;}
.ws51{word-spacing:11.424000pt;}
.ws9e{word-spacing:11.648000pt;}
.ws8c{word-spacing:11.760000pt;}
.ws6e{word-spacing:12.040000pt;}
.wsbf{word-spacing:12.096000pt;}
.wsb2{word-spacing:12.880000pt;}
.wsb5{word-spacing:12.936000pt;}
.ws5b{word-spacing:13.104000pt;}
.ws86{word-spacing:13.384000pt;}
.ws3e{word-spacing:13.440000pt;}
.ws24{word-spacing:13.496000pt;}
.ws96{word-spacing:13.888000pt;}
.ws92{word-spacing:14.056000pt;}
.ws1f{word-spacing:14.112000pt;}
.ws64{word-spacing:14.224000pt;}
.ws9c{word-spacing:14.448000pt;}
.ws68{word-spacing:14.840000pt;}
.ws66{word-spacing:14.896000pt;}
.wsa7{word-spacing:15.120000pt;}
.ws69{word-spacing:15.176000pt;}
.wsc9{word-spacing:15.288000pt;}
.wsb{word-spacing:15.456000pt;}
.ws65{word-spacing:15.736000pt;}
.ws8b{word-spacing:15.792000pt;}
.ws6c{word-spacing:15.848000pt;}
.wsc3{word-spacing:15.960000pt;}
.wsaf{word-spacing:16.016000pt;}
.wsbc{word-spacing:16.072000pt;}
.wsb9{word-spacing:16.296000pt;}
.ws6b{word-spacing:16.408000pt;}
.wse{word-spacing:16.464000pt;}
.ws5d{word-spacing:16.912000pt;}
.wsb6{word-spacing:17.024000pt;}
.ws33{word-spacing:17.304000pt;}
.ws7d{word-spacing:17.472000pt;}
.wsa2{word-spacing:17.584000pt;}
.ws6f{word-spacing:17.640000pt;}
.ws30{word-spacing:17.696000pt;}
.ws4c{word-spacing:17.808000pt;}
.ws71{word-spacing:18.032000pt;}
.wsd{word-spacing:18.088000pt;}
.wsa4{word-spacing:18.480000pt;}
.wsa8{word-spacing:18.536000pt;}
.ws9d{word-spacing:18.592000pt;}
.ws6d{word-spacing:18.704000pt;}
.ws3f{word-spacing:18.816000pt;}
.ws7c{word-spacing:19.096000pt;}
.ws73{word-spacing:19.376000pt;}
.ws6a{word-spacing:19.712000pt;}
.ws22{word-spacing:19.936000pt;}
.wscb{word-spacing:20.048000pt;}
.ws49{word-spacing:20.160000pt;}
.wsbd{word-spacing:20.216000pt;}
.ws9{word-spacing:21.392000pt;}
.ws3d{word-spacing:21.448000pt;}
.ws88{word-spacing:21.896000pt;}
.wsb1{word-spacing:22.064000pt;}
.wsa{word-spacing:22.344000pt;}
.ws15{word-spacing:22.512000pt;}
.ws91{word-spacing:23.128000pt;}
.ws20{word-spacing:23.240000pt;}
.ws31{word-spacing:23.632000pt;}
.wsbe{word-spacing:23.912000pt;}
.ws4f{word-spacing:24.024000pt;}
.ws52{word-spacing:24.416000pt;}
.ws50{word-spacing:25.144000pt;}
.wsae{word-spacing:25.704000pt;}
.wsc1{word-spacing:25.816000pt;}
.ws10{word-spacing:26.152000pt;}
.ws1d{word-spacing:26.320000pt;}
.ws1e{word-spacing:27.104000pt;}
.ws90{word-spacing:27.776000pt;}
.wsca{word-spacing:27.832000pt;}
.ws25{word-spacing:28.392000pt;}
.wsac{word-spacing:29.512000pt;}
.ws2b{word-spacing:30.016000pt;}
.ws3b{word-spacing:31.584000pt;}
.ws98{word-spacing:41.384000pt;}
.wscc{word-spacing:44.576000pt;}
.ws2f{word-spacing:66.528000pt;}
.ws7{word-spacing:221.516267pt;}
.ws2a{word-spacing:876.489067pt;}
.ws8{word-spacing:876.489600pt;}
.ws5{word-spacing:5532.864000pt;}
.ws80{word-spacing:5535.872000pt;}
.wsc4{word-spacing:5538.560000pt;}
.wsce{word-spacing:5538.944000pt;}
.ws28{word-spacing:5541.376000pt;}
._16{margin-left:-13.562667pt;}
._5{margin-left:-11.670396pt;}
._14{margin-left:-6.134400pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._4{margin-left:-0.911200pt;}
._7{width:1.718938pt;}
._8{width:2.655177pt;}
._6{width:3.552000pt;}
._9{width:4.853333pt;}
._f{width:6.208529pt;}
._a{width:7.125333pt;}
._b{width:8.243469pt;}
._17{width:9.498652pt;}
._13{width:12.364800pt;}
._12{width:13.273065pt;}
._19{width:14.280787pt;}
._10{width:15.243200pt;}
._1b{width:16.316800pt;}
._1d{width:17.444262pt;}
._18{width:18.418394pt;}
._11{width:19.868800pt;}
._d{width:21.028802pt;}
._c{width:22.249602pt;}
._1a{width:24.058665pt;}
._1c{width:25.058127pt;}
._e{width:27.599987pt;}
._1e{width:29.362389pt;}
._1f{width:30.480800pt;}
._20{width:95.499949pt;}
._15{width:602.650675pt;}
._21{width:603.792798pt;}
.fsa{font-size:26.429333pt;}
.fs9{font-size:32.648000pt;}
.fs5{font-size:45.333333pt;}
.fs6{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:28.400133pt;}
.ya{bottom:36.640000pt;}
.y73{bottom:41.733467pt;}
.y72{bottom:55.066800pt;}
.y14c{bottom:85.191067pt;}
.y122{bottom:85.200400pt;}
.y1a1{bottom:85.205067pt;}
.y110{bottom:85.214400pt;}
.y9d{bottom:85.256400pt;}
.y5b{bottom:85.275067pt;}
.y70{bottom:85.359067pt;}
.y179{bottom:85.373067pt;}
.ye3{bottom:85.377733pt;}
.y14b{bottom:103.853067pt;}
.y121{bottom:103.862400pt;}
.y1a0{bottom:103.867067pt;}
.y10f{bottom:103.876400pt;}
.y9c{bottom:103.918400pt;}
.y208{bottom:103.924400pt;}
.y5a{bottom:103.937067pt;}
.y6f{bottom:104.021067pt;}
.y178{bottom:104.035067pt;}
.ye2{bottom:104.039733pt;}
.yca{bottom:104.114400pt;}
.y120{bottom:122.524400pt;}
.y19f{bottom:122.529067pt;}
.y10e{bottom:122.538400pt;}
.y2f{bottom:122.549733pt;}
.y207{bottom:122.590400pt;}
.y59{bottom:122.599067pt;}
.y6e{bottom:122.683067pt;}
.y177{bottom:122.697067pt;}
.ye1{bottom:122.701733pt;}
.yc9{bottom:122.776400pt;}
.y11f{bottom:141.186400pt;}
.y19e{bottom:141.191067pt;}
.y10d{bottom:141.200400pt;}
.y2e{bottom:141.215733pt;}
.y9b{bottom:141.256400pt;}
.y58{bottom:141.261067pt;}
.y22e{bottom:141.290400pt;}
.y6d{bottom:141.345067pt;}
.y176{bottom:141.359067pt;}
.ye0{bottom:141.363733pt;}
.yc8{bottom:141.438400pt;}
.y14a{bottom:159.853067pt;}
.y10c{bottom:159.862400pt;}
.y1e3{bottom:159.888400pt;}
.y9a{bottom:159.918400pt;}
.y206{bottom:159.922400pt;}
.y57{bottom:159.923067pt;}
.y22d{bottom:159.956400pt;}
.y6c{bottom:160.007067pt;}
.y175{bottom:160.021067pt;}
.ydf{bottom:160.025733pt;}
.yc7{bottom:160.100400pt;}
.y11e{bottom:178.519733pt;}
.y239{bottom:178.521733pt;}
.y10b{bottom:178.524400pt;}
.y2d{bottom:178.547733pt;}
.y1e2{bottom:178.554400pt;}
.y99{bottom:178.580400pt;}
.y56{bottom:178.585067pt;}
.y205{bottom:178.588400pt;}
.y22c{bottom:178.622400pt;}
.y6b{bottom:178.669067pt;}
.y174{bottom:178.683067pt;}
.yde{bottom:178.687733pt;}
.yc6{bottom:178.762400pt;}
.y10a{bottom:197.186400pt;}
.y238{bottom:197.187733pt;}
.y2c{bottom:197.213733pt;}
.y1e1{bottom:197.220400pt;}
.y98{bottom:197.242400pt;}
.y55{bottom:197.247067pt;}
.y204{bottom:197.254400pt;}
.y22b{bottom:197.288400pt;}
.y6a{bottom:197.331067pt;}
.ydd{bottom:197.349733pt;}
.yc5{bottom:197.424400pt;}
.y237{bottom:215.853733pt;}
.y2b{bottom:215.879733pt;}
.y97{bottom:215.904400pt;}
.y54{bottom:215.909067pt;}
.y22a{bottom:215.954400pt;}
.y149{bottom:215.979067pt;}
.y69{bottom:215.993067pt;}
.ydc{bottom:216.011733pt;}
.y173{bottom:216.021067pt;}
.yc4{bottom:216.086400pt;}
.y109{bottom:234.519733pt;}
.y2a{bottom:234.545733pt;}
.y1e0{bottom:234.552400pt;}
.y96{bottom:234.566400pt;}
.y53{bottom:234.571067pt;}
.y203{bottom:234.586400pt;}
.y148{bottom:234.641067pt;}
.y68{bottom:234.655067pt;}
.ydb{bottom:234.673733pt;}
.y172{bottom:234.683067pt;}
.yc3{bottom:234.748400pt;}
.y236{bottom:238.293733pt;}
.y108{bottom:253.186400pt;}
.y1be{bottom:253.195733pt;}
.y29{bottom:253.211733pt;}
.y1df{bottom:253.218400pt;}
.y95{bottom:253.228400pt;}
.y52{bottom:253.233067pt;}
.y202{bottom:253.252400pt;}
.y229{bottom:253.286400pt;}
.y147{bottom:253.303067pt;}
.y67{bottom:253.317067pt;}
.yda{bottom:253.335733pt;}
.y171{bottom:253.345067pt;}
.yc2{bottom:253.410400pt;}
.y19d{bottom:253.513067pt;}
.y235{bottom:271.853067pt;}
.y1bd{bottom:271.861733pt;}
.y1de{bottom:271.884400pt;}
.y94{bottom:271.890400pt;}
.y51{bottom:271.895067pt;}
.y201{bottom:271.918400pt;}
.y228{bottom:271.952400pt;}
.y146{bottom:271.965067pt;}
.y66{bottom:271.979067pt;}
.y11d{bottom:271.997733pt;}
.y170{bottom:272.007067pt;}
.yc1{bottom:272.072400pt;}
.y19c{bottom:272.175067pt;}
.y1bc{bottom:290.527733pt;}
.y28{bottom:290.543733pt;}
.y93{bottom:290.552400pt;}
.y50{bottom:290.557067pt;}
.y200{bottom:290.584400pt;}
.y227{bottom:290.618400pt;}
.y145{bottom:290.627067pt;}
.y65{bottom:290.641067pt;}
.y11c{bottom:290.659733pt;}
.y16f{bottom:290.669067pt;}
.yd9{bottom:290.673733pt;}
.yc0{bottom:290.734400pt;}
.y19b{bottom:290.837067pt;}
.y107{bottom:290.869733pt;}
.y1bb{bottom:309.193733pt;}
.y27{bottom:309.209733pt;}
.y92{bottom:309.214400pt;}
.y1dd{bottom:309.216400pt;}
.y4f{bottom:309.219067pt;}
.y1ff{bottom:309.250400pt;}
.y226{bottom:309.284400pt;}
.y144{bottom:309.289067pt;}
.y64{bottom:309.303067pt;}
.y11b{bottom:309.321733pt;}
.y16e{bottom:309.331067pt;}
.yd8{bottom:309.335733pt;}
.ybf{bottom:309.396400pt;}
.y19a{bottom:309.499067pt;}
.y106{bottom:309.531733pt;}
.y7{bottom:312.905067pt;}
.y1ba{bottom:327.859733pt;}
.y26{bottom:327.875733pt;}
.y91{bottom:327.876400pt;}
.y4e{bottom:327.881067pt;}
.y1dc{bottom:327.882400pt;}
.y225{bottom:327.950400pt;}
.y143{bottom:327.951067pt;}
.y63{bottom:327.965067pt;}
.y11a{bottom:327.983733pt;}
.y16d{bottom:327.993067pt;}
.yd7{bottom:327.997733pt;}
.ybe{bottom:328.058400pt;}
.y199{bottom:328.161067pt;}
.y105{bottom:328.193733pt;}
.y9{bottom:339.479200pt;}
.y90{bottom:346.538400pt;}
.y25{bottom:346.541733pt;}
.y4d{bottom:346.543067pt;}
.y1db{bottom:346.548400pt;}
.y1fe{bottom:346.582400pt;}
.y142{bottom:346.613067pt;}
.y224{bottom:346.616400pt;}
.y62{bottom:346.627067pt;}
.y119{bottom:346.645733pt;}
.y16c{bottom:346.655067pt;}
.yd6{bottom:346.659733pt;}
.ybd{bottom:346.720400pt;}
.y198{bottom:346.823067pt;}
.y104{bottom:346.855733pt;}
.y1b9{bottom:365.191733pt;}
.y8f{bottom:365.200400pt;}
.y4c{bottom:365.205067pt;}
.y234{bottom:365.207733pt;}
.y1fd{bottom:365.248400pt;}
.y141{bottom:365.275067pt;}
.y223{bottom:365.282400pt;}
.y61{bottom:365.289067pt;}
.y118{bottom:365.307733pt;}
.y16b{bottom:365.317067pt;}
.yd5{bottom:365.321733pt;}
.ybc{bottom:365.382400pt;}
.y197{bottom:365.485067pt;}
.y103{bottom:365.517733pt;}
.y1b8{bottom:383.857733pt;}
.y8e{bottom:383.862400pt;}
.y4b{bottom:383.867067pt;}
.y24{bottom:383.873733pt;}
.y1da{bottom:383.880400pt;}
.y1fc{bottom:383.914400pt;}
.y140{bottom:383.937067pt;}
.y222{bottom:383.948400pt;}
.y117{bottom:383.969733pt;}
.y16a{bottom:383.979067pt;}
.yd4{bottom:383.983733pt;}
.ybb{bottom:384.044400pt;}
.y196{bottom:384.147067pt;}
.y102{bottom:384.179733pt;}
.y6{bottom:395.571733pt;}
.y1b7{bottom:402.523733pt;}
.y8d{bottom:402.524400pt;}
.y4a{bottom:402.529067pt;}
.y23{bottom:402.539733pt;}
.y1d9{bottom:402.546400pt;}
.y13f{bottom:402.599067pt;}
.y221{bottom:402.614400pt;}
.y60{bottom:402.627067pt;}
.y116{bottom:402.631733pt;}
.y169{bottom:402.641067pt;}
.yd3{bottom:402.645733pt;}
.yba{bottom:402.706400pt;}
.y195{bottom:402.809067pt;}
.y101{bottom:402.841733pt;}
.y8c{bottom:421.186400pt;}
.y1b6{bottom:421.189733pt;}
.y49{bottom:421.191067pt;}
.y22{bottom:421.205733pt;}
.y1d8{bottom:421.212400pt;}
.y1fb{bottom:421.246400pt;}
.y13e{bottom:421.261067pt;}
.y5f{bottom:421.289067pt;}
.y115{bottom:421.293733pt;}
.y168{bottom:421.303067pt;}
.yd2{bottom:421.307733pt;}
.yb9{bottom:421.368400pt;}
.y194{bottom:421.471067pt;}
.y100{bottom:421.503733pt;}
.y48{bottom:439.853067pt;}
.y21{bottom:439.871733pt;}
.y1d7{bottom:439.878400pt;}
.y1fa{bottom:439.912400pt;}
.y13d{bottom:439.923067pt;}
.y220{bottom:439.946400pt;}
.y5e{bottom:439.951067pt;}
.y114{bottom:439.955733pt;}
.y167{bottom:439.965067pt;}
.yd1{bottom:439.969733pt;}
.yb8{bottom:440.030400pt;}
.y193{bottom:440.133067pt;}
.yff{bottom:440.165733pt;}
.y8b{bottom:458.519733pt;}
.y1b5{bottom:458.521733pt;}
.y233{bottom:458.537733pt;}
.y1d6{bottom:458.544400pt;}
.y1f9{bottom:458.578400pt;}
.y13c{bottom:458.585067pt;}
.y21f{bottom:458.612400pt;}
.y5d{bottom:458.613067pt;}
.y113{bottom:458.617733pt;}
.y166{bottom:458.627067pt;}
.yd0{bottom:458.631733pt;}
.yb7{bottom:458.692400pt;}
.y192{bottom:458.795067pt;}
.yfe{bottom:458.827733pt;}
.y47{bottom:477.186400pt;}
.y1b4{bottom:477.187733pt;}
.y20{bottom:477.203733pt;}
.y1d5{bottom:477.210400pt;}
.y1f8{bottom:477.244400pt;}
.y13b{bottom:477.247067pt;}
.y5c{bottom:477.275067pt;}
.y21e{bottom:477.278400pt;}
.y112{bottom:477.279733pt;}
.y165{bottom:477.289067pt;}
.ycf{bottom:477.293733pt;}
.yb6{bottom:477.354400pt;}
.y191{bottom:477.457067pt;}
.yfd{bottom:477.489733pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y1b3{bottom:495.853733pt;}
.y1f{bottom:495.869733pt;}
.y13a{bottom:495.909067pt;}
.y111{bottom:495.941733pt;}
.y21d{bottom:495.944400pt;}
.y164{bottom:495.951067pt;}
.yce{bottom:495.955733pt;}
.yb5{bottom:496.016400pt;}
.yfc{bottom:496.151733pt;}
.y1b2{bottom:514.519733pt;}
.y1e{bottom:514.535733pt;}
.y1d4{bottom:514.542400pt;}
.y1f7{bottom:514.576400pt;}
.y21c{bottom:514.610400pt;}
.y163{bottom:514.613067pt;}
.ycd{bottom:514.617733pt;}
.yb4{bottom:514.678400pt;}
.y190{bottom:514.795067pt;}
.yfb{bottom:514.813733pt;}
.y1d{bottom:533.201733pt;}
.y1d3{bottom:533.208400pt;}
.y1f6{bottom:533.242400pt;}
.y139{bottom:533.247067pt;}
.y21b{bottom:533.276400pt;}
.y8a{bottom:533.279733pt;}
.yb3{bottom:533.340400pt;}
.y18f{bottom:533.457067pt;}
.yfa{bottom:533.475733pt;}
.y46{bottom:551.853067pt;}
.y232{bottom:551.867733pt;}
.y1d2{bottom:551.874400pt;}
.y1f5{bottom:551.908400pt;}
.y138{bottom:551.909067pt;}
.y89{bottom:551.941733pt;}
.y21a{bottom:551.942400pt;}
.y162{bottom:551.951067pt;}
.yb2{bottom:552.002400pt;}
.y18e{bottom:552.119067pt;}
.yf9{bottom:552.137733pt;}
.y4{bottom:560.905067pt;}
.y45{bottom:570.519733pt;}
.y1c{bottom:570.533733pt;}
.y1d1{bottom:570.540400pt;}
.y137{bottom:570.571067pt;}
.y1f4{bottom:570.574400pt;}
.y88{bottom:570.603733pt;}
.y161{bottom:570.613067pt;}
.yb1{bottom:570.664400pt;}
.y18d{bottom:570.781067pt;}
.yf8{bottom:570.799733pt;}
.y44{bottom:589.186400pt;}
.y1b{bottom:589.199733pt;}
.y1d0{bottom:589.206400pt;}
.y136{bottom:589.233067pt;}
.y87{bottom:589.265733pt;}
.y219{bottom:589.274400pt;}
.y160{bottom:589.275067pt;}
.yb0{bottom:589.326400pt;}
.y18c{bottom:589.443067pt;}
.yf7{bottom:589.461733pt;}
.y43{bottom:607.853067pt;}
.y1a{bottom:607.865733pt;}
.y1cf{bottom:607.872400pt;}
.y135{bottom:607.895067pt;}
.y1f3{bottom:607.906400pt;}
.y86{bottom:607.927733pt;}
.y15f{bottom:607.937067pt;}
.y218{bottom:607.940400pt;}
.y1b1{bottom:607.941733pt;}
.y18b{bottom:608.105067pt;}
.yf6{bottom:608.123733pt;}
.y42{bottom:626.519733pt;}
.y19{bottom:626.531733pt;}
.y1ce{bottom:626.538400pt;}
.y134{bottom:626.557067pt;}
.y1f2{bottom:626.572400pt;}
.y85{bottom:626.589733pt;}
.y15e{bottom:626.599067pt;}
.y1b0{bottom:626.603733pt;}
.y217{bottom:626.606400pt;}
.yaf{bottom:626.664400pt;}
.yf5{bottom:626.785733pt;}
.y41{bottom:645.186400pt;}
.y18{bottom:645.197733pt;}
.y1cd{bottom:645.204400pt;}
.y133{bottom:645.219067pt;}
.y1f1{bottom:645.238400pt;}
.y84{bottom:645.251733pt;}
.y15d{bottom:645.261067pt;}
.y1af{bottom:645.265733pt;}
.y216{bottom:645.272400pt;}
.yae{bottom:645.326400pt;}
.y18a{bottom:645.443067pt;}
.yf4{bottom:645.447733pt;}
.y40{bottom:663.853067pt;}
.y1cc{bottom:663.870400pt;}
.y132{bottom:663.881067pt;}
.y1f0{bottom:663.904400pt;}
.y83{bottom:663.913733pt;}
.y15c{bottom:663.923067pt;}
.y1ae{bottom:663.927733pt;}
.y215{bottom:663.938400pt;}
.yad{bottom:663.988400pt;}
.y189{bottom:664.105067pt;}
.yf3{bottom:664.109733pt;}
.y3{bottom:668.212133pt;}
.y3f{bottom:682.519733pt;}
.y17{bottom:682.529733pt;}
.y131{bottom:682.543067pt;}
.y1ef{bottom:682.570400pt;}
.y82{bottom:682.575733pt;}
.y15b{bottom:682.585067pt;}
.y1ad{bottom:682.589733pt;}
.yac{bottom:682.650400pt;}
.y188{bottom:682.767067pt;}
.y3e{bottom:701.186400pt;}
.y16{bottom:701.195733pt;}
.y1cb{bottom:701.202400pt;}
.y130{bottom:701.205067pt;}
.y81{bottom:701.237733pt;}
.y15a{bottom:701.247067pt;}
.y1ac{bottom:701.251733pt;}
.y214{bottom:701.270400pt;}
.yab{bottom:701.312400pt;}
.y187{bottom:701.429067pt;}
.yf2{bottom:701.447733pt;}
.y2{bottom:703.938667pt;}
.y3d{bottom:719.853067pt;}
.y15{bottom:719.861733pt;}
.y12f{bottom:719.867067pt;}
.y1ca{bottom:719.868400pt;}
.y80{bottom:719.899733pt;}
.y1ee{bottom:719.902400pt;}
.y159{bottom:719.909067pt;}
.y1ab{bottom:719.913733pt;}
.y213{bottom:719.936400pt;}
.yaa{bottom:719.974400pt;}
.y186{bottom:720.091067pt;}
.yf1{bottom:720.109733pt;}
.y3c{bottom:738.519733pt;}
.y14{bottom:738.527733pt;}
.y12e{bottom:738.529067pt;}
.y1c9{bottom:738.534400pt;}
.y7f{bottom:738.561733pt;}
.y1ed{bottom:738.568400pt;}
.y158{bottom:738.571067pt;}
.y1aa{bottom:738.575733pt;}
.y212{bottom:738.602400pt;}
.ya9{bottom:738.636400pt;}
.y185{bottom:738.753067pt;}
.yf0{bottom:738.771733pt;}
.y3b{bottom:757.186400pt;}
.y13{bottom:757.193733pt;}
.y7e{bottom:757.223733pt;}
.y157{bottom:757.233067pt;}
.y1ec{bottom:757.234400pt;}
.y1a9{bottom:757.237733pt;}
.ya8{bottom:757.298400pt;}
.y184{bottom:757.415067pt;}
.yef{bottom:757.433733pt;}
.y1{bottom:763.655867pt;}
.y3a{bottom:775.853067pt;}
.y231{bottom:775.859733pt;}
.y1c8{bottom:775.866400pt;}
.y12d{bottom:775.867067pt;}
.y7d{bottom:775.885733pt;}
.y156{bottom:775.895067pt;}
.y1a8{bottom:775.899733pt;}
.y211{bottom:775.934400pt;}
.ya7{bottom:775.960400pt;}
.y183{bottom:776.077067pt;}
.yee{bottom:776.095733pt;}
.y39{bottom:794.519733pt;}
.y12{bottom:794.525733pt;}
.y12c{bottom:794.529067pt;}
.y1c7{bottom:794.532400pt;}
.y7c{bottom:794.547733pt;}
.y155{bottom:794.557067pt;}
.y1a7{bottom:794.561733pt;}
.y1eb{bottom:794.566400pt;}
.y210{bottom:794.600400pt;}
.ya6{bottom:794.622400pt;}
.y182{bottom:794.739067pt;}
.yed{bottom:794.757733pt;}
.y38{bottom:813.186400pt;}
.y12b{bottom:813.191067pt;}
.y11{bottom:813.191733pt;}
.y7b{bottom:813.209733pt;}
.y1a6{bottom:813.223733pt;}
.y1ea{bottom:813.232400pt;}
.ya5{bottom:813.284400pt;}
.y181{bottom:813.401067pt;}
.yec{bottom:813.419733pt;}
.y37{bottom:831.853067pt;}
.y230{bottom:831.857733pt;}
.y1c6{bottom:831.864400pt;}
.y7a{bottom:831.871733pt;}
.y1a5{bottom:831.885733pt;}
.y154{bottom:831.895067pt;}
.y1e9{bottom:831.898400pt;}
.y12a{bottom:831.904400pt;}
.y20f{bottom:831.932400pt;}
.ya4{bottom:831.946400pt;}
.yeb{bottom:832.081733pt;}
.y36{bottom:850.519733pt;}
.y10{bottom:850.523733pt;}
.y1c5{bottom:850.530400pt;}
.y79{bottom:850.533733pt;}
.y1a4{bottom:850.547733pt;}
.y153{bottom:850.557067pt;}
.y129{bottom:850.566400pt;}
.y20e{bottom:850.598400pt;}
.ya3{bottom:850.608400pt;}
.y180{bottom:850.739067pt;}
.yea{bottom:850.743733pt;}
.yf{bottom:869.189733pt;}
.y78{bottom:869.195733pt;}
.y1c4{bottom:869.196400pt;}
.y1a3{bottom:869.209733pt;}
.y152{bottom:869.219067pt;}
.y128{bottom:869.228400pt;}
.y1e8{bottom:869.230400pt;}
.y20d{bottom:869.264400pt;}
.ya2{bottom:869.270400pt;}
.y17f{bottom:869.401067pt;}
.ye9{bottom:869.405733pt;}
.ye{bottom:887.855733pt;}
.ycc{bottom:887.857733pt;}
.y1c3{bottom:887.862400pt;}
.y1a2{bottom:887.871733pt;}
.y151{bottom:887.881067pt;}
.y127{bottom:887.890400pt;}
.y1e7{bottom:887.896400pt;}
.y20c{bottom:887.930400pt;}
.y17e{bottom:888.063067pt;}
.ye8{bottom:888.067733pt;}
.y35{bottom:895.853067pt;}
.ycb{bottom:906.519733pt;}
.y22f{bottom:906.521733pt;}
.y1c2{bottom:906.528400pt;}
.y77{bottom:906.533733pt;}
.y150{bottom:906.543067pt;}
.y126{bottom:906.552400pt;}
.y20b{bottom:906.596400pt;}
.ya1{bottom:906.608400pt;}
.y17d{bottom:906.725067pt;}
.ye7{bottom:906.729733pt;}
.y34{bottom:919.853067pt;}
.yd{bottom:925.187733pt;}
.y1c1{bottom:925.194400pt;}
.y76{bottom:925.195733pt;}
.y14f{bottom:925.205067pt;}
.y125{bottom:925.214400pt;}
.y1e6{bottom:925.228400pt;}
.y20a{bottom:925.262400pt;}
.ya0{bottom:925.270400pt;}
.y17c{bottom:925.387067pt;}
.ye6{bottom:925.391733pt;}
.y33{bottom:943.853067pt;}
.yc{bottom:943.853733pt;}
.y75{bottom:943.857733pt;}
.y1c0{bottom:943.860400pt;}
.y14e{bottom:943.867067pt;}
.y124{bottom:943.876400pt;}
.y31{bottom:943.887733pt;}
.y1e5{bottom:943.894400pt;}
.y209{bottom:943.928400pt;}
.y9f{bottom:943.932400pt;}
.y17b{bottom:944.049067pt;}
.ye5{bottom:944.053733pt;}
.yb{bottom:962.519733pt;}
.y1bf{bottom:962.526400pt;}
.y14d{bottom:962.529067pt;}
.y123{bottom:962.538400pt;}
.y30{bottom:962.553733pt;}
.y1e4{bottom:962.560400pt;}
.y9e{bottom:962.594400pt;}
.y17a{bottom:962.711067pt;}
.ye4{bottom:962.715733pt;}
.y32{bottom:969.835067pt;}
.y71{bottom:1055.853067pt;}
.h12{height:20.037333pt;}
.h8{height:33.546667pt;}
.h9{height:35.133333pt;}
.h10{height:38.826667pt;}
.ha{height:39.146667pt;}
.he{height:40.208000pt;}
.hd{height:40.746667pt;}
.hc{height:41.333333pt;}
.h11{height:41.883931pt;}
.h7{height:46.016000pt;}
.hb{height:62.293333pt;}
.hf{height:62.634667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.xb{left:72.566933pt;}
.x4{left:75.590533pt;}
.x2{left:198.425200pt;}
.x5{left:415.749200pt;}
.x6{left:869.291333pt;}
.x8{left:873.011733pt;}
.x9{left:877.891733pt;}
.xa{left:940.665067pt;}
.x7{left:1209.449333pt;}
}




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