
    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_7cb7762a5fe1161a42813f19.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_4b83d4480507b840c2ced728.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_df4637d829c360241c06a587.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c172bb896c413ae57934fb8e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137667;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_f1f7963e0c2d184dab2c8d0a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.137667;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_d9304d2b64eb1c0ae416f5f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_de85460a093c3b78100c3f17.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;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_f10e9454240cddb616a2c465.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_3c882a93200a9b898c22f847.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;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_94c210ceef16d6a8d8b2a6d3.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d17b556e434be0b77877c5dd.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;}
@font-face{font-family:fff;src:url('chunks/assets/font_4ca7f3a3e8f30177ea280905.woff2')format("woff");}.fff{font-family:fff;line-height:0.882000;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_ff251043bf175b1b33ec7388.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.710000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-8.316864px;}
.lsa{letter-spacing:-1.260000px;}
.ls1a{letter-spacing:-1.134000px;}
.ls9{letter-spacing:-1.071000px;}
.ls15{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.819000px;}
.ls16{letter-spacing:-0.756000px;}
.ls7{letter-spacing:-0.693000px;}
.ls19{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.441000px;}
.ls11{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.378000px;}
.ls18{letter-spacing:-0.252000px;}
.ls13{letter-spacing:-0.189000px;}
.ls2{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.063000px;}
.ls1c{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.063000px;}
.ls5{letter-spacing:0.126000px;}
.lsf{letter-spacing:0.189000px;}
.lsd{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.315000px;}
.ls4{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.693000px;}
.lse{letter-spacing:0.882000px;}
.ls10{letter-spacing:1.008000px;}
.ls12{letter-spacing:1.071000px;}
.ls14{letter-spacing:1.197000px;}
.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;}
.ws5a{word-spacing:-71.568000px;}
.ws2{word-spacing:-57.318000px;}
.ws7{word-spacing:-23.040000px;}
.wsa0{word-spacing:-13.980000px;}
.wsa1{word-spacing:-13.005000px;}
.wsa2{word-spacing:-12.954000px;}
.ws9f{word-spacing:-12.789000px;}
.ws5b{word-spacing:-12.600000px;}
.ws5d{word-spacing:-12.474000px;}
.ws5c{word-spacing:-12.411000px;}
.ws9e{word-spacing:-11.844000px;}
.ws9d{word-spacing:-11.529000px;}
.ws9c{word-spacing:-11.403000px;}
.wsa{word-spacing:-2.220000px;}
.ws12{word-spacing:-1.512000px;}
.wsbd{word-spacing:-1.479000px;}
.wscd{word-spacing:-1.323000px;}
.ws74{word-spacing:-1.197000px;}
.ws6c{word-spacing:-1.071000px;}
.ws58{word-spacing:-1.008000px;}
.wsd{word-spacing:-0.900000px;}
.ws3e{word-spacing:-0.882000px;}
.ws49{word-spacing:-0.819000px;}
.wsb{word-spacing:-0.600000px;}
.wsaf{word-spacing:-0.567000px;}
.wsab{word-spacing:-0.504000px;}
.ws7d{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.315000px;}
.ws38{word-spacing:-0.300000px;}
.ws90{word-spacing:-0.189000px;}
.ws1a{word-spacing:-0.126000px;}
.wsb0{word-spacing:-0.063000px;}
.wsc0{word-spacing:-0.051000px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:0.060000px;}
.ws33{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.wsc6{word-spacing:0.126000px;}
.wsf{word-spacing:0.180000px;}
.ws51{word-spacing:0.189000px;}
.ws7e{word-spacing:0.252000px;}
.ws28{word-spacing:0.315000px;}
.ws64{word-spacing:0.378000px;}
.ws2e{word-spacing:0.441000px;}
.ws1d{word-spacing:0.693000px;}
.ws7c{word-spacing:0.756000px;}
.ws16{word-spacing:0.819000px;}
.wscc{word-spacing:0.882000px;}
.ws1e{word-spacing:0.945000px;}
.ws77{word-spacing:1.008000px;}
.ws19{word-spacing:1.071000px;}
.ws17{word-spacing:1.134000px;}
.ws69{word-spacing:1.323000px;}
.wscb{word-spacing:1.449000px;}
.wsc5{word-spacing:1.512000px;}
.wsc{word-spacing:1.560000px;}
.ws4d{word-spacing:1.701000px;}
.ws1c{word-spacing:2.016000px;}
.ws27{word-spacing:2.079000px;}
.wsc2{word-spacing:2.100000px;}
.ws71{word-spacing:2.268000px;}
.wsbc{word-spacing:2.331000px;}
.ws4b{word-spacing:2.394000px;}
.ws56{word-spacing:2.520000px;}
.wsae{word-spacing:2.772000px;}
.ws2d{word-spacing:2.835000px;}
.ws66{word-spacing:2.961000px;}
.wsc1{word-spacing:3.300000px;}
.ws97{word-spacing:3.465000px;}
.wse{word-spacing:3.480000px;}
.ws3b{word-spacing:3.654000px;}
.ws55{word-spacing:3.717000px;}
.ws70{word-spacing:3.780000px;}
.ws26{word-spacing:3.969000px;}
.ws9a{word-spacing:4.347000px;}
.ws8c{word-spacing:4.473000px;}
.ws9{word-spacing:4.500000px;}
.ws3d{word-spacing:4.536000px;}
.ws35{word-spacing:4.662000px;}
.ws45{word-spacing:4.851000px;}
.ws39{word-spacing:5.166000px;}
.ws7b{word-spacing:5.292000px;}
.wsc8{word-spacing:5.355000px;}
.ws50{word-spacing:5.418000px;}
.wsaa{word-spacing:5.544000px;}
.wsa3{word-spacing:5.670000px;}
.ws89{word-spacing:5.733000px;}
.ws11{word-spacing:6.426000px;}
.ws18{word-spacing:6.489000px;}
.wsca{word-spacing:6.615000px;}
.ws1b{word-spacing:6.678000px;}
.ws3a{word-spacing:6.867000px;}
.ws5e{word-spacing:6.930000px;}
.ws47{word-spacing:7.056000px;}
.wsc4{word-spacing:7.308000px;}
.ws87{word-spacing:7.686000px;}
.wsba{word-spacing:7.749000px;}
.ws8b{word-spacing:7.938000px;}
.wsa8{word-spacing:8.064000px;}
.wsad{word-spacing:8.442000px;}
.ws1f{word-spacing:8.505000px;}
.ws98{word-spacing:8.757000px;}
.ws36{word-spacing:8.820000px;}
.ws48{word-spacing:8.946000px;}
.ws8f{word-spacing:9.072000px;}
.wsc7{word-spacing:9.261000px;}
.ws21{word-spacing:9.387000px;}
.ws15{word-spacing:9.450000px;}
.ws31{word-spacing:9.513000px;}
.wsb9{word-spacing:9.765000px;}
.ws61{word-spacing:9.828000px;}
.ws7f{word-spacing:9.954000px;}
.ws40{word-spacing:10.080000px;}
.ws43{word-spacing:10.206000px;}
.ws95{word-spacing:10.395000px;}
.ws4f{word-spacing:10.836000px;}
.wsd0{word-spacing:11.151000px;}
.wsb7{word-spacing:11.214000px;}
.ws86{word-spacing:11.403000px;}
.ws84{word-spacing:11.592000px;}
.ws46{word-spacing:11.781000px;}
.ws42{word-spacing:12.033000px;}
.ws88{word-spacing:12.096000px;}
.wsb6{word-spacing:12.222000px;}
.ws81{word-spacing:12.411000px;}
.ws76{word-spacing:12.474000px;}
.ws79{word-spacing:12.600000px;}
.ws75{word-spacing:12.663000px;}
.ws73{word-spacing:12.789000px;}
.ws83{word-spacing:12.852000px;}
.ws85{word-spacing:12.978000px;}
.ws54{word-spacing:13.293000px;}
.ws4a{word-spacing:13.356000px;}
.ws62{word-spacing:13.482000px;}
.ws25{word-spacing:13.545000px;}
.ws78{word-spacing:13.797000px;}
.ws4c{word-spacing:14.175000px;}
.ws3c{word-spacing:14.238000px;}
.wsce{word-spacing:14.301000px;}
.wsa5{word-spacing:14.490000px;}
.ws41{word-spacing:14.616000px;}
.ws8e{word-spacing:14.742000px;}
.ws91{word-spacing:15.183000px;}
.wsb8{word-spacing:15.309000px;}
.ws93{word-spacing:15.561000px;}
.ws53{word-spacing:15.750000px;}
.wsac{word-spacing:15.939000px;}
.wsb2{word-spacing:16.191000px;}
.wsa9{word-spacing:16.443000px;}
.wscf{word-spacing:16.884000px;}
.ws30{word-spacing:17.199000px;}
.ws67{word-spacing:17.514000px;}
.wsc3{word-spacing:17.577000px;}
.ws8a{word-spacing:17.703000px;}
.ws14{word-spacing:18.018000px;}
.ws13{word-spacing:18.144000px;}
.ws34{word-spacing:18.396000px;}
.ws7a{word-spacing:18.711000px;}
.ws5f{word-spacing:19.152000px;}
.ws99{word-spacing:19.530000px;}
.ws60{word-spacing:19.593000px;}
.ws24{word-spacing:19.782000px;}
.ws57{word-spacing:19.971000px;}
.wsc9{word-spacing:20.223000px;}
.wsb4{word-spacing:20.475000px;}
.ws96{word-spacing:20.601000px;}
.ws6f{word-spacing:20.664000px;}
.ws44{word-spacing:20.727000px;}
.ws2c{word-spacing:20.790000px;}
.ws3f{word-spacing:21.294000px;}
.ws2f{word-spacing:21.546000px;}
.ws8d{word-spacing:21.735000px;}
.ws6a{word-spacing:22.050000px;}
.ws82{word-spacing:22.365000px;}
.ws94{word-spacing:22.554000px;}
.ws22{word-spacing:22.806000px;}
.ws23{word-spacing:22.932000px;}
.ws6b{word-spacing:23.436000px;}
.ws6d{word-spacing:23.688000px;}
.ws63{word-spacing:24.066000px;}
.ws92{word-spacing:24.570000px;}
.wsa7{word-spacing:24.948000px;}
.ws68{word-spacing:25.578000px;}
.ws72{word-spacing:25.641000px;}
.ws52{word-spacing:25.704000px;}
.wsa6{word-spacing:26.019000px;}
.ws32{word-spacing:26.397000px;}
.wsb5{word-spacing:26.460000px;}
.wsb3{word-spacing:27.531000px;}
.wsbb{word-spacing:28.098000px;}
.ws29{word-spacing:28.350000px;}
.wsa4{word-spacing:28.602000px;}
.ws80{word-spacing:31.815000px;}
.ws65{word-spacing:39.753000px;}
.ws37{word-spacing:41.328000px;}
.wsb1{word-spacing:45.738000px;}
.ws2b{word-spacing:47.880000px;}
.ws6e{word-spacing:53.046000px;}
.ws2a{word-spacing:73.521000px;}
.ws4e{word-spacing:73.773000px;}
.wsbf{word-spacing:1418.209200px;}
.ws6{word-spacing:1989.592200px;}
.ws8{word-spacing:1989.592800px;}
.ws9b{word-spacing:6162.264000px;}
.ws5{word-spacing:6167.520000px;}
.ws59{word-spacing:6168.384000px;}
.wsbe{word-spacing:6186.456000px;}
._24{margin-left:-19.270790px;}
._1d{margin-left:-15.798000px;}
._22{margin-left:-14.296198px;}
._21{margin-left:-13.271098px;}
._25{margin-left:-8.256000px;}
._23{margin-left:-6.591902px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._4{margin-left:-1.028098px;}
._6{width:1.458000px;}
._5{width:2.577902px;}
._8{width:4.573498px;}
._9{width:5.780700px;}
._10{width:6.788102px;}
._11{width:8.046002px;}
._12{width:9.385198px;}
._19{width:10.743302px;}
._16{width:14.652002px;}
._18{width:16.216200px;}
._f{width:17.580600px;}
._a{width:18.774000px;}
._1c{width:19.896602px;}
._b{width:20.979000px;}
._1e{width:22.224602px;}
._e{width:23.398200px;}
._17{width:24.480898px;}
._7{width:25.648200px;}
._26{width:28.307702px;}
._1b{width:29.435405px;}
._c{width:30.710702px;}
._d{width:31.920600px;}
._15{width:34.120800px;}
._1a{width:36.354600px;}
._20{width:45.717302px;}
._14{width:60.291000px;}
._13{width:61.902002px;}
._1f{width:677.988605px;}
.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);}
.fs9{font-size:51.000000px;}
.fs8{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs5{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;}
.y9e{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.y9d{bottom:47.834700px;}
.yfb{bottom:95.834700px;}
.y1ec{bottom:95.845200px;}
.ycc{bottom:95.850450px;}
.y4b{bottom:95.887050px;}
.y76{bottom:95.887200px;}
.y33{bottom:95.934300px;}
.y1d9{bottom:95.944950px;}
.yfa{bottom:96.070950px;}
.y1eb{bottom:116.839950px;}
.ycb{bottom:116.845200px;}
.y4a{bottom:116.881800px;}
.y75{bottom:116.881950px;}
.y32{bottom:116.929050px;}
.y1d8{bottom:116.939700px;}
.yf9{bottom:117.065700px;}
.yca{bottom:137.839950px;}
.y15d{bottom:137.869200px;}
.y74{bottom:137.876700px;}
.y181{bottom:137.907450px;}
.y31{bottom:137.923800px;}
.yf8{bottom:138.060450px;}
.yc9{bottom:158.834700px;}
.y1ea{bottom:158.845200px;}
.y1a4{bottom:158.867700px;}
.y15c{bottom:158.868450px;}
.y73{bottom:158.871450px;}
.y49{bottom:158.887050px;}
.y9c{bottom:158.892450px;}
.y180{bottom:158.906700px;}
.y1d7{bottom:158.944950px;}
.yf7{bottom:159.055200px;}
.y1e9{bottom:179.839950px;}
.y72{bottom:179.866200px;}
.y1a3{bottom:179.866950px;}
.y15b{bottom:179.867700px;}
.y48{bottom:179.881800px;}
.y9b{bottom:179.887200px;}
.y30{bottom:179.929050px;}
.y1d6{bottom:179.939700px;}
.y120{bottom:179.965950px;}
.yf6{bottom:180.049950px;}
.yc8{bottom:200.834700px;}
.y71{bottom:200.860950px;}
.y1a2{bottom:200.866200px;}
.y47{bottom:200.876550px;}
.y9a{bottom:200.881950px;}
.y17f{bottom:200.905200px;}
.y2f{bottom:200.923800px;}
.y1d5{bottom:200.934450px;}
.y11f{bottom:200.960700px;}
.yf5{bottom:201.044700px;}
.y138{bottom:221.840700px;}
.y70{bottom:221.855700px;}
.y15a{bottom:221.866200px;}
.y46{bottom:221.871300px;}
.y99{bottom:221.876700px;}
.y17e{bottom:221.904450px;}
.y2e{bottom:221.918550px;}
.y1d4{bottom:221.929200px;}
.y11e{bottom:221.955450px;}
.yf4{bottom:222.039450px;}
.y1e8{bottom:242.834700px;}
.y137{bottom:242.839950px;}
.y6f{bottom:242.850450px;}
.y1a1{bottom:242.864700px;}
.y159{bottom:242.865450px;}
.y45{bottom:242.866050px;}
.y98{bottom:242.871450px;}
.y17d{bottom:242.903700px;}
.y2d{bottom:242.913300px;}
.y1d3{bottom:242.923950px;}
.yc7{bottom:242.934450px;}
.y11d{bottom:242.950200px;}
.y136{bottom:263.839200px;}
.y6e{bottom:263.845200px;}
.y44{bottom:263.860800px;}
.y1a0{bottom:263.863950px;}
.y158{bottom:263.864700px;}
.y97{bottom:263.866200px;}
.y2c{bottom:263.908050px;}
.y1d2{bottom:263.918700px;}
.yc6{bottom:263.929200px;}
.yf3{bottom:264.044700px;}
.y6d{bottom:284.839950px;}
.y43{bottom:284.855550px;}
.y96{bottom:284.860950px;}
.y157{bottom:284.863950px;}
.y17c{bottom:284.902200px;}
.y2b{bottom:284.902800px;}
.y1d1{bottom:284.913450px;}
.yc5{bottom:284.923950px;}
.y11c{bottom:284.955450px;}
.yf2{bottom:285.039450px;}
.y6c{bottom:305.834700px;}
.y135{bottom:305.837700px;}
.y42{bottom:305.850300px;}
.y95{bottom:305.855700px;}
.y19f{bottom:305.862450px;}
.y2a{bottom:305.897550px;}
.y1c3{bottom:305.900700px;}
.y17b{bottom:305.901450px;}
.y1d0{bottom:305.908200px;}
.y11b{bottom:305.950200px;}
.yf1{bottom:306.034200px;}
.y134{bottom:326.836950px;}
.y41{bottom:326.845050px;}
.y94{bottom:326.850450px;}
.y19e{bottom:326.861700px;}
.y156{bottom:326.862450px;}
.y29{bottom:326.892300px;}
.y1c2{bottom:326.899950px;}
.y17a{bottom:326.900700px;}
.y1cf{bottom:326.902950px;}
.yc4{bottom:326.929200px;}
.y11a{bottom:326.944950px;}
.yf0{bottom:327.028950px;}
.y6b{bottom:347.834700px;}
.y133{bottom:347.836200px;}
.y40{bottom:347.839800px;}
.y93{bottom:347.845200px;}
.y155{bottom:347.861700px;}
.y28{bottom:347.887050px;}
.y179{bottom:347.899950px;}
.yc3{bottom:347.923950px;}
.y119{bottom:347.939700px;}
.yef{bottom:348.023700px;}
.y7{bottom:352.018200px;}
.y3f{bottom:368.834550px;}
.y132{bottom:368.835450px;}
.y92{bottom:368.839950px;}
.y19d{bottom:368.860200px;}
.y154{bottom:368.860950px;}
.y27{bottom:368.881800px;}
.y1c1{bottom:368.898450px;}
.y1ce{bottom:368.908200px;}
.yc2{bottom:368.918700px;}
.y118{bottom:368.934450px;}
.yee{bottom:369.018450px;}
.y9{bottom:381.914100px;}
.y91{bottom:389.834700px;}
.y19c{bottom:389.859450px;}
.y153{bottom:389.860200px;}
.y26{bottom:389.876550px;}
.y1c0{bottom:389.897700px;}
.y178{bottom:389.898450px;}
.y1cd{bottom:389.902950px;}
.y6a{bottom:389.908200px;}
.yc1{bottom:389.913450px;}
.y117{bottom:389.929200px;}
.yed{bottom:390.013200px;}
.y3e{bottom:410.834550px;}
.y19b{bottom:410.858700px;}
.y152{bottom:410.859450px;}
.ybf{bottom:410.871450px;}
.y1bf{bottom:410.896950px;}
.y177{bottom:410.897700px;}
.y69{bottom:410.902950px;}
.yc0{bottom:410.908200px;}
.y116{bottom:410.923950px;}
.yec{bottom:411.007950px;}
.y90{bottom:431.834700px;}
.y19a{bottom:431.857950px;}
.ybe{bottom:431.866200px;}
.y25{bottom:431.881800px;}
.y1cc{bottom:431.892450px;}
.y1be{bottom:431.896200px;}
.y176{bottom:431.896950px;}
.y68{bottom:431.897700px;}
.yb0{bottom:431.902950px;}
.y115{bottom:431.918700px;}
.yeb{bottom:432.002700px;}
.y6{bottom:445.018200px;}
.y199{bottom:452.857200px;}
.y151{bottom:452.857950px;}
.ybd{bottom:452.860950px;}
.y24{bottom:452.876550px;}
.y1cb{bottom:452.887200px;}
.y67{bottom:452.892450px;}
.y1bd{bottom:452.895450px;}
.y175{bottom:452.896200px;}
.yaf{bottom:452.897700px;}
.yea{bottom:452.997450px;}
.y1e7{bottom:453.013200px;}
.ybc{bottom:473.855700px;}
.y150{bottom:473.857200px;}
.y23{bottom:473.871300px;}
.y1ca{bottom:473.881950px;}
.y66{bottom:473.887200px;}
.yae{bottom:473.892450px;}
.y174{bottom:473.895450px;}
.y8f{bottom:473.897700px;}
.y114{bottom:473.923950px;}
.y3d{bottom:473.981550px;}
.ye9{bottom:473.992200px;}
.y1e6{bottom:474.007950px;}
.ybb{bottom:494.850450px;}
.y198{bottom:494.855700px;}
.y14f{bottom:494.856450px;}
.y22{bottom:494.866050px;}
.y1c9{bottom:494.876700px;}
.y65{bottom:494.881950px;}
.yad{bottom:494.887200px;}
.y8e{bottom:494.892450px;}
.y1bc{bottom:494.893950px;}
.y113{bottom:494.918700px;}
.y131{bottom:494.939700px;}
.y3c{bottom:494.976300px;}
.ye8{bottom:494.986950px;}
.y1e5{bottom:495.002700px;}
.yba{bottom:515.845200px;}
.y197{bottom:515.854950px;}
.y14e{bottom:515.855700px;}
.y21{bottom:515.860800px;}
.y64{bottom:515.876700px;}
.yac{bottom:515.881950px;}
.y8d{bottom:515.887200px;}
.y1bb{bottom:515.893200px;}
.y173{bottom:515.893950px;}
.y112{bottom:515.913450px;}
.y130{bottom:515.934450px;}
.y3b{bottom:515.971050px;}
.y1e4{bottom:515.997450px;}
.yb9{bottom:536.839950px;}
.y196{bottom:536.854200px;}
.y14d{bottom:536.854950px;}
.y20{bottom:536.855550px;}
.y63{bottom:536.871450px;}
.yab{bottom:536.876700px;}
.y8c{bottom:536.881950px;}
.y1ba{bottom:536.892450px;}
.y172{bottom:536.893200px;}
.y111{bottom:536.908200px;}
.y12f{bottom:536.929200px;}
.y3a{bottom:536.965800px;}
.ye7{bottom:536.992200px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.yb8{bottom:557.834700px;}
.y1f{bottom:557.850300px;}
.y195{bottom:557.853450px;}
.y14c{bottom:557.854200px;}
.y62{bottom:557.866200px;}
.yaa{bottom:557.871450px;}
.y8b{bottom:557.876700px;}
.y1b9{bottom:557.891700px;}
.y110{bottom:557.902950px;}
.y12e{bottom:557.923950px;}
.y39{bottom:557.960550px;}
.ye6{bottom:557.986950px;}
.y1e{bottom:578.845050px;}
.y194{bottom:578.852700px;}
.y14b{bottom:578.853450px;}
.y61{bottom:578.860950px;}
.ya9{bottom:578.866200px;}
.y8a{bottom:578.871450px;}
.y171{bottom:578.891700px;}
.y10f{bottom:578.897700px;}
.y12d{bottom:578.918700px;}
.y38{bottom:578.955300px;}
.ye5{bottom:578.981700px;}
.yb7{bottom:599.834700px;}
.y1d{bottom:599.839800px;}
.y193{bottom:599.851950px;}
.y60{bottom:599.855700px;}
.ya8{bottom:599.860950px;}
.y89{bottom:599.866200px;}
.y1b8{bottom:599.890200px;}
.y170{bottom:599.890950px;}
.y10e{bottom:599.892450px;}
.y12c{bottom:599.913450px;}
.y37{bottom:599.950050px;}
.ye4{bottom:599.976450px;}
.y1e3{bottom:599.992200px;}
.y1c{bottom:620.834550px;}
.y5f{bottom:620.850450px;}
.y192{bottom:620.851200px;}
.y14a{bottom:620.851950px;}
.ya7{bottom:620.855700px;}
.y88{bottom:620.860950px;}
.y1b7{bottom:620.889450px;}
.y16f{bottom:620.890200px;}
.y12b{bottom:620.908200px;}
.y36{bottom:620.944800px;}
.ye3{bottom:620.971200px;}
.y1e2{bottom:620.986950px;}
.y4{bottom:631.018200px;}
.y5e{bottom:641.845200px;}
.ya6{bottom:641.850450px;}
.y149{bottom:641.851200px;}
.y87{bottom:641.855700px;}
.y1b6{bottom:641.888700px;}
.y16e{bottom:641.889450px;}
.y10d{bottom:641.897700px;}
.y12a{bottom:641.902950px;}
.y35{bottom:641.939550px;}
.ye2{bottom:641.965950px;}
.y1e1{bottom:641.981700px;}
.y1b{bottom:662.834550px;}
.y5d{bottom:662.839950px;}
.ya5{bottom:662.845200px;}
.y191{bottom:662.849700px;}
.y86{bottom:662.850450px;}
.y1b5{bottom:662.887950px;}
.y10c{bottom:662.892450px;}
.y129{bottom:662.897700px;}
.yb6{bottom:662.929200px;}
.y34{bottom:662.934300px;}
.ye1{bottom:662.960700px;}
.y1e0{bottom:662.976450px;}
.y5c{bottom:683.834700px;}
.ya4{bottom:683.839950px;}
.y85{bottom:683.845200px;}
.y10b{bottom:683.887200px;}
.y16d{bottom:683.887950px;}
.yb5{bottom:683.923950px;}
.ye0{bottom:683.955450px;}
.y1df{bottom:683.971200px;}
.ya3{bottom:704.834700px;}
.y84{bottom:704.839950px;}
.y190{bottom:704.848200px;}
.y148{bottom:704.848950px;}
.y10a{bottom:704.881950px;}
.y1b4{bottom:704.886450px;}
.y16c{bottom:704.887200px;}
.y128{bottom:704.902950px;}
.yb4{bottom:704.918700px;}
.ydf{bottom:704.950200px;}
.y1de{bottom:704.965950px;}
.y5b{bottom:725.834700px;}
.y18f{bottom:725.847450px;}
.y147{bottom:725.848200px;}
.y109{bottom:725.876700px;}
.y1b3{bottom:725.885700px;}
.y16b{bottom:725.886450px;}
.y127{bottom:725.897700px;}
.yb3{bottom:725.913450px;}
.yde{bottom:725.944950px;}
.y1dd{bottom:725.960700px;}
.y1a{bottom:746.834550px;}
.ya2{bottom:746.834700px;}
.y18e{bottom:746.846700px;}
.y146{bottom:746.847450px;}
.y108{bottom:746.871450px;}
.y1b2{bottom:746.884950px;}
.y16a{bottom:746.885700px;}
.y126{bottom:746.892450px;}
.yb2{bottom:746.908200px;}
.ydd{bottom:746.939700px;}
.y1dc{bottom:746.955450px;}
.y3{bottom:751.738650px;}
.y19{bottom:767.834550px;}
.y83{bottom:767.834700px;}
.y18d{bottom:767.845950px;}
.y125{bottom:767.887200px;}
.yb1{bottom:767.902950px;}
.ydc{bottom:767.934450px;}
.y1db{bottom:767.950200px;}
.y5a{bottom:767.955300px;}
.y18{bottom:788.834550px;}
.y82{bottom:788.834700px;}
.y145{bottom:788.845950px;}
.y107{bottom:788.876700px;}
.y124{bottom:788.881950px;}
.y1b1{bottom:788.883450px;}
.y169{bottom:788.884200px;}
.ya1{bottom:788.897700px;}
.ydb{bottom:788.929200px;}
.y1da{bottom:788.944950px;}
.y59{bottom:788.950050px;}
.y2{bottom:791.931000px;}
.y17{bottom:809.834550px;}
.y18c{bottom:809.844450px;}
.y144{bottom:809.845200px;}
.y106{bottom:809.871450px;}
.y123{bottom:809.876700px;}
.y1b0{bottom:809.882700px;}
.y168{bottom:809.883450px;}
.ya0{bottom:809.892450px;}
.yda{bottom:809.923950px;}
.y58{bottom:809.944800px;}
.y16{bottom:830.834550px;}
.y18b{bottom:830.843700px;}
.y143{bottom:830.844450px;}
.y105{bottom:830.866200px;}
.y122{bottom:830.871450px;}
.y1af{bottom:830.881950px;}
.y167{bottom:830.882700px;}
.y9f{bottom:830.887200px;}
.yd9{bottom:830.918700px;}
.y57{bottom:830.939550px;}
.y15{bottom:851.834550px;}
.y18a{bottom:851.842950px;}
.y104{bottom:851.860950px;}
.y121{bottom:851.866200px;}
.y1ae{bottom:851.881200px;}
.y81{bottom:851.881950px;}
.yd8{bottom:851.913450px;}
.y56{bottom:851.934300px;}
.y1{bottom:859.112850px;}
.y14{bottom:872.834550px;}
.y1c8{bottom:872.834700px;}
.y189{bottom:872.842200px;}
.y142{bottom:872.842950px;}
.y103{bottom:872.855700px;}
.y80{bottom:872.876700px;}
.y166{bottom:872.881200px;}
.yd7{bottom:872.908200px;}
.y55{bottom:872.929050px;}
.y13{bottom:893.834550px;}
.y1c7{bottom:893.834700px;}
.y188{bottom:893.841450px;}
.y141{bottom:893.842200px;}
.y102{bottom:893.850450px;}
.y7f{bottom:893.871450px;}
.y1ad{bottom:893.879700px;}
.y165{bottom:893.880450px;}
.yd6{bottom:893.902950px;}
.y54{bottom:893.923800px;}
.y12{bottom:914.834550px;}
.y1c6{bottom:914.834700px;}
.y187{bottom:914.840700px;}
.y140{bottom:914.841450px;}
.y101{bottom:914.845200px;}
.y7e{bottom:914.866200px;}
.y1ac{bottom:914.878950px;}
.yd5{bottom:914.897700px;}
.y53{bottom:914.918550px;}
.y11{bottom:935.834550px;}
.y1c5{bottom:935.834700px;}
.y100{bottom:935.839950px;}
.y13f{bottom:935.840700px;}
.y7d{bottom:935.860950px;}
.y1ab{bottom:935.878200px;}
.y164{bottom:935.878950px;}
.yd4{bottom:935.892450px;}
.y10{bottom:956.834550px;}
.yff{bottom:956.834700px;}
.y186{bottom:956.839200px;}
.y13e{bottom:956.839950px;}
.y7c{bottom:956.855700px;}
.y163{bottom:956.878200px;}
.yd3{bottom:956.887200px;}
.y52{bottom:956.923800px;}
.yf{bottom:977.834550px;}
.y1c4{bottom:977.834700px;}
.y185{bottom:977.838450px;}
.y7b{bottom:977.850450px;}
.y1aa{bottom:977.876700px;}
.y162{bottom:977.877450px;}
.yd2{bottom:977.881950px;}
.y51{bottom:977.918550px;}
.yfe{bottom:998.834700px;}
.y184{bottom:998.837700px;}
.y13d{bottom:998.838450px;}
.y7a{bottom:998.845200px;}
.y1a9{bottom:998.875950px;}
.yd1{bottom:998.876700px;}
.y50{bottom:998.913300px;}
.y13c{bottom:1019.837700px;}
.y79{bottom:1019.839950px;}
.yd0{bottom:1019.871450px;}
.y1a8{bottom:1019.875200px;}
.y161{bottom:1019.875950px;}
.y4f{bottom:1019.908050px;}
.ye{bottom:1034.834700px;}
.y78{bottom:1040.834700px;}
.y183{bottom:1040.836200px;}
.y13b{bottom:1040.836950px;}
.ycf{bottom:1040.866200px;}
.y1a7{bottom:1040.874450px;}
.y160{bottom:1040.875200px;}
.y4e{bottom:1040.902800px;}
.yd{bottom:1061.834700px;}
.y182{bottom:1061.835450px;}
.y13a{bottom:1061.836200px;}
.yfd{bottom:1061.839950px;}
.yce{bottom:1061.860950px;}
.y1a6{bottom:1061.873700px;}
.y15f{bottom:1061.874450px;}
.y4d{bottom:1061.897550px;}
.y77{bottom:1082.834700px;}
.y139{bottom:1082.835450px;}
.ycd{bottom:1082.855700px;}
.y1a5{bottom:1082.872950px;}
.y15e{bottom:1082.873700px;}
.y4c{bottom:1082.892300px;}
.yc{bottom:1091.633550px;}
.yfc{bottom:1187.834700px;}
.yb{bottom:1188.056250px;}
.hc{height:43.620000px;}
.h9{height:44.400000px;}
.he{height:46.614000px;}
.hb{height:50.526000px;}
.h7{height:51.768000px;}
.hd{height:52.098000px;}
.ha{height:54.840000px;}
.h8{height:71.040000px;}
.hf{height:71.926200px;}
.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;}
.x4{left:85.039350px;}
.xc{left:102.049350px;}
.x9{left:168.025800px;}
.x2{left:223.228350px;}
.xa{left:247.600800px;}
.x5{left:467.717100px;}
.x6{left:484.711350px;}
.x7{left:977.953500px;}
.xd{left:987.247500px;}
.xb{left:994.962750px;}
.xe{left:999.487500px;}
.x8{left:1360.629900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-7.392768pt;}
.lsa{letter-spacing:-1.120000pt;}
.ls1a{letter-spacing:-1.008000pt;}
.ls9{letter-spacing:-0.952000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.728000pt;}
.ls16{letter-spacing:-0.672000pt;}
.ls7{letter-spacing:-0.616000pt;}
.ls19{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.392000pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls18{letter-spacing:-0.224000pt;}
.ls13{letter-spacing:-0.168000pt;}
.ls2{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.056000pt;}
.ls1c{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.056000pt;}
.ls5{letter-spacing:0.112000pt;}
.lsf{letter-spacing:0.168000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.280000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.616000pt;}
.lse{letter-spacing:0.784000pt;}
.ls10{letter-spacing:0.896000pt;}
.ls12{letter-spacing:0.952000pt;}
.ls14{letter-spacing:1.064000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws5a{word-spacing:-63.616000pt;}
.ws2{word-spacing:-50.949333pt;}
.ws7{word-spacing:-20.480000pt;}
.wsa0{word-spacing:-12.426667pt;}
.wsa1{word-spacing:-11.560000pt;}
.wsa2{word-spacing:-11.514667pt;}
.ws9f{word-spacing:-11.368000pt;}
.ws5b{word-spacing:-11.200000pt;}
.ws5d{word-spacing:-11.088000pt;}
.ws5c{word-spacing:-11.032000pt;}
.ws9e{word-spacing:-10.528000pt;}
.ws9d{word-spacing:-10.248000pt;}
.ws9c{word-spacing:-10.136000pt;}
.wsa{word-spacing:-1.973333pt;}
.ws12{word-spacing:-1.344000pt;}
.wsbd{word-spacing:-1.314667pt;}
.wscd{word-spacing:-1.176000pt;}
.ws74{word-spacing:-1.064000pt;}
.ws6c{word-spacing:-0.952000pt;}
.ws58{word-spacing:-0.896000pt;}
.wsd{word-spacing:-0.800000pt;}
.ws3e{word-spacing:-0.784000pt;}
.ws49{word-spacing:-0.728000pt;}
.wsb{word-spacing:-0.533333pt;}
.wsaf{word-spacing:-0.504000pt;}
.wsab{word-spacing:-0.448000pt;}
.ws7d{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.280000pt;}
.ws38{word-spacing:-0.266667pt;}
.ws90{word-spacing:-0.168000pt;}
.ws1a{word-spacing:-0.112000pt;}
.wsb0{word-spacing:-0.056000pt;}
.wsc0{word-spacing:-0.045333pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:0.053333pt;}
.ws33{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.wsc6{word-spacing:0.112000pt;}
.wsf{word-spacing:0.160000pt;}
.ws51{word-spacing:0.168000pt;}
.ws7e{word-spacing:0.224000pt;}
.ws28{word-spacing:0.280000pt;}
.ws64{word-spacing:0.336000pt;}
.ws2e{word-spacing:0.392000pt;}
.ws1d{word-spacing:0.616000pt;}
.ws7c{word-spacing:0.672000pt;}
.ws16{word-spacing:0.728000pt;}
.wscc{word-spacing:0.784000pt;}
.ws1e{word-spacing:0.840000pt;}
.ws77{word-spacing:0.896000pt;}
.ws19{word-spacing:0.952000pt;}
.ws17{word-spacing:1.008000pt;}
.ws69{word-spacing:1.176000pt;}
.wscb{word-spacing:1.288000pt;}
.wsc5{word-spacing:1.344000pt;}
.wsc{word-spacing:1.386667pt;}
.ws4d{word-spacing:1.512000pt;}
.ws1c{word-spacing:1.792000pt;}
.ws27{word-spacing:1.848000pt;}
.wsc2{word-spacing:1.866667pt;}
.ws71{word-spacing:2.016000pt;}
.wsbc{word-spacing:2.072000pt;}
.ws4b{word-spacing:2.128000pt;}
.ws56{word-spacing:2.240000pt;}
.wsae{word-spacing:2.464000pt;}
.ws2d{word-spacing:2.520000pt;}
.ws66{word-spacing:2.632000pt;}
.wsc1{word-spacing:2.933333pt;}
.ws97{word-spacing:3.080000pt;}
.wse{word-spacing:3.093333pt;}
.ws3b{word-spacing:3.248000pt;}
.ws55{word-spacing:3.304000pt;}
.ws70{word-spacing:3.360000pt;}
.ws26{word-spacing:3.528000pt;}
.ws9a{word-spacing:3.864000pt;}
.ws8c{word-spacing:3.976000pt;}
.ws9{word-spacing:4.000000pt;}
.ws3d{word-spacing:4.032000pt;}
.ws35{word-spacing:4.144000pt;}
.ws45{word-spacing:4.312000pt;}
.ws39{word-spacing:4.592000pt;}
.ws7b{word-spacing:4.704000pt;}
.wsc8{word-spacing:4.760000pt;}
.ws50{word-spacing:4.816000pt;}
.wsaa{word-spacing:4.928000pt;}
.wsa3{word-spacing:5.040000pt;}
.ws89{word-spacing:5.096000pt;}
.ws11{word-spacing:5.712000pt;}
.ws18{word-spacing:5.768000pt;}
.wsca{word-spacing:5.880000pt;}
.ws1b{word-spacing:5.936000pt;}
.ws3a{word-spacing:6.104000pt;}
.ws5e{word-spacing:6.160000pt;}
.ws47{word-spacing:6.272000pt;}
.wsc4{word-spacing:6.496000pt;}
.ws87{word-spacing:6.832000pt;}
.wsba{word-spacing:6.888000pt;}
.ws8b{word-spacing:7.056000pt;}
.wsa8{word-spacing:7.168000pt;}
.wsad{word-spacing:7.504000pt;}
.ws1f{word-spacing:7.560000pt;}
.ws98{word-spacing:7.784000pt;}
.ws36{word-spacing:7.840000pt;}
.ws48{word-spacing:7.952000pt;}
.ws8f{word-spacing:8.064000pt;}
.wsc7{word-spacing:8.232000pt;}
.ws21{word-spacing:8.344000pt;}
.ws15{word-spacing:8.400000pt;}
.ws31{word-spacing:8.456000pt;}
.wsb9{word-spacing:8.680000pt;}
.ws61{word-spacing:8.736000pt;}
.ws7f{word-spacing:8.848000pt;}
.ws40{word-spacing:8.960000pt;}
.ws43{word-spacing:9.072000pt;}
.ws95{word-spacing:9.240000pt;}
.ws4f{word-spacing:9.632000pt;}
.wsd0{word-spacing:9.912000pt;}
.wsb7{word-spacing:9.968000pt;}
.ws86{word-spacing:10.136000pt;}
.ws84{word-spacing:10.304000pt;}
.ws46{word-spacing:10.472000pt;}
.ws42{word-spacing:10.696000pt;}
.ws88{word-spacing:10.752000pt;}
.wsb6{word-spacing:10.864000pt;}
.ws81{word-spacing:11.032000pt;}
.ws76{word-spacing:11.088000pt;}
.ws79{word-spacing:11.200000pt;}
.ws75{word-spacing:11.256000pt;}
.ws73{word-spacing:11.368000pt;}
.ws83{word-spacing:11.424000pt;}
.ws85{word-spacing:11.536000pt;}
.ws54{word-spacing:11.816000pt;}
.ws4a{word-spacing:11.872000pt;}
.ws62{word-spacing:11.984000pt;}
.ws25{word-spacing:12.040000pt;}
.ws78{word-spacing:12.264000pt;}
.ws4c{word-spacing:12.600000pt;}
.ws3c{word-spacing:12.656000pt;}
.wsce{word-spacing:12.712000pt;}
.wsa5{word-spacing:12.880000pt;}
.ws41{word-spacing:12.992000pt;}
.ws8e{word-spacing:13.104000pt;}
.ws91{word-spacing:13.496000pt;}
.wsb8{word-spacing:13.608000pt;}
.ws93{word-spacing:13.832000pt;}
.ws53{word-spacing:14.000000pt;}
.wsac{word-spacing:14.168000pt;}
.wsb2{word-spacing:14.392000pt;}
.wsa9{word-spacing:14.616000pt;}
.wscf{word-spacing:15.008000pt;}
.ws30{word-spacing:15.288000pt;}
.ws67{word-spacing:15.568000pt;}
.wsc3{word-spacing:15.624000pt;}
.ws8a{word-spacing:15.736000pt;}
.ws14{word-spacing:16.016000pt;}
.ws13{word-spacing:16.128000pt;}
.ws34{word-spacing:16.352000pt;}
.ws7a{word-spacing:16.632000pt;}
.ws5f{word-spacing:17.024000pt;}
.ws99{word-spacing:17.360000pt;}
.ws60{word-spacing:17.416000pt;}
.ws24{word-spacing:17.584000pt;}
.ws57{word-spacing:17.752000pt;}
.wsc9{word-spacing:17.976000pt;}
.wsb4{word-spacing:18.200000pt;}
.ws96{word-spacing:18.312000pt;}
.ws6f{word-spacing:18.368000pt;}
.ws44{word-spacing:18.424000pt;}
.ws2c{word-spacing:18.480000pt;}
.ws3f{word-spacing:18.928000pt;}
.ws2f{word-spacing:19.152000pt;}
.ws8d{word-spacing:19.320000pt;}
.ws6a{word-spacing:19.600000pt;}
.ws82{word-spacing:19.880000pt;}
.ws94{word-spacing:20.048000pt;}
.ws22{word-spacing:20.272000pt;}
.ws23{word-spacing:20.384000pt;}
.ws6b{word-spacing:20.832000pt;}
.ws6d{word-spacing:21.056000pt;}
.ws63{word-spacing:21.392000pt;}
.ws92{word-spacing:21.840000pt;}
.wsa7{word-spacing:22.176000pt;}
.ws68{word-spacing:22.736000pt;}
.ws72{word-spacing:22.792000pt;}
.ws52{word-spacing:22.848000pt;}
.wsa6{word-spacing:23.128000pt;}
.ws32{word-spacing:23.464000pt;}
.wsb5{word-spacing:23.520000pt;}
.wsb3{word-spacing:24.472000pt;}
.wsbb{word-spacing:24.976000pt;}
.ws29{word-spacing:25.200000pt;}
.wsa4{word-spacing:25.424000pt;}
.ws80{word-spacing:28.280000pt;}
.ws65{word-spacing:35.336000pt;}
.ws37{word-spacing:36.736000pt;}
.wsb1{word-spacing:40.656000pt;}
.ws2b{word-spacing:42.560000pt;}
.ws6e{word-spacing:47.152000pt;}
.ws2a{word-spacing:65.352000pt;}
.ws4e{word-spacing:65.576000pt;}
.wsbf{word-spacing:1260.630400pt;}
.ws6{word-spacing:1768.526400pt;}
.ws8{word-spacing:1768.526933pt;}
.ws9b{word-spacing:5477.568000pt;}
.ws5{word-spacing:5482.240000pt;}
.ws59{word-spacing:5483.008000pt;}
.wsbe{word-spacing:5499.072000pt;}
._24{margin-left:-17.129591pt;}
._1d{margin-left:-14.042667pt;}
._22{margin-left:-12.707731pt;}
._21{margin-left:-11.796531pt;}
._25{margin-left:-7.338667pt;}
._23{margin-left:-5.859469pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._4{margin-left:-0.913865pt;}
._6{width:1.296000pt;}
._5{width:2.291469pt;}
._8{width:4.065331pt;}
._9{width:5.138400pt;}
._10{width:6.033869pt;}
._11{width:7.152002pt;}
._12{width:8.342398pt;}
._19{width:9.549602pt;}
._16{width:13.024002pt;}
._18{width:14.414400pt;}
._f{width:15.627200pt;}
._a{width:16.688000pt;}
._1c{width:17.685869pt;}
._b{width:18.648000pt;}
._1e{width:19.755202pt;}
._e{width:20.798400pt;}
._17{width:21.760798pt;}
._7{width:22.798400pt;}
._26{width:25.162402pt;}
._1b{width:26.164804pt;}
._c{width:27.298402pt;}
._d{width:28.373867pt;}
._15{width:30.329600pt;}
._1a{width:32.315200pt;}
._20{width:40.637602pt;}
._14{width:53.592000pt;}
._13{width:55.024002pt;}
._1f{width:602.656538pt;}
.fs9{font-size:45.333333pt;}
.fs8{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs5{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;}
.y9e{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.y9d{bottom:42.519733pt;}
.yfb{bottom:85.186400pt;}
.y1ec{bottom:85.195733pt;}
.ycc{bottom:85.200400pt;}
.y4b{bottom:85.232933pt;}
.y76{bottom:85.233067pt;}
.y33{bottom:85.274933pt;}
.y1d9{bottom:85.284400pt;}
.yfa{bottom:85.396400pt;}
.y1eb{bottom:103.857733pt;}
.ycb{bottom:103.862400pt;}
.y4a{bottom:103.894933pt;}
.y75{bottom:103.895067pt;}
.y32{bottom:103.936933pt;}
.y1d8{bottom:103.946400pt;}
.yf9{bottom:104.058400pt;}
.yca{bottom:122.524400pt;}
.y15d{bottom:122.550400pt;}
.y74{bottom:122.557067pt;}
.y181{bottom:122.584400pt;}
.y31{bottom:122.598933pt;}
.yf8{bottom:122.720400pt;}
.yc9{bottom:141.186400pt;}
.y1ea{bottom:141.195733pt;}
.y1a4{bottom:141.215733pt;}
.y15c{bottom:141.216400pt;}
.y73{bottom:141.219067pt;}
.y49{bottom:141.232933pt;}
.y9c{bottom:141.237733pt;}
.y180{bottom:141.250400pt;}
.y1d7{bottom:141.284400pt;}
.yf7{bottom:141.382400pt;}
.y1e9{bottom:159.857733pt;}
.y72{bottom:159.881067pt;}
.y1a3{bottom:159.881733pt;}
.y15b{bottom:159.882400pt;}
.y48{bottom:159.894933pt;}
.y9b{bottom:159.899733pt;}
.y30{bottom:159.936933pt;}
.y1d6{bottom:159.946400pt;}
.y120{bottom:159.969733pt;}
.yf6{bottom:160.044400pt;}
.yc8{bottom:178.519733pt;}
.y71{bottom:178.543067pt;}
.y1a2{bottom:178.547733pt;}
.y47{bottom:178.556933pt;}
.y9a{bottom:178.561733pt;}
.y17f{bottom:178.582400pt;}
.y2f{bottom:178.598933pt;}
.y1d5{bottom:178.608400pt;}
.y11f{bottom:178.631733pt;}
.yf5{bottom:178.706400pt;}
.y138{bottom:197.191733pt;}
.y70{bottom:197.205067pt;}
.y15a{bottom:197.214400pt;}
.y46{bottom:197.218933pt;}
.y99{bottom:197.223733pt;}
.y17e{bottom:197.248400pt;}
.y2e{bottom:197.260933pt;}
.y1d4{bottom:197.270400pt;}
.y11e{bottom:197.293733pt;}
.yf4{bottom:197.368400pt;}
.y1e8{bottom:215.853067pt;}
.y137{bottom:215.857733pt;}
.y6f{bottom:215.867067pt;}
.y1a1{bottom:215.879733pt;}
.y159{bottom:215.880400pt;}
.y45{bottom:215.880933pt;}
.y98{bottom:215.885733pt;}
.y17d{bottom:215.914400pt;}
.y2d{bottom:215.922933pt;}
.y1d3{bottom:215.932400pt;}
.yc7{bottom:215.941733pt;}
.y11d{bottom:215.955733pt;}
.y136{bottom:234.523733pt;}
.y6e{bottom:234.529067pt;}
.y44{bottom:234.542933pt;}
.y1a0{bottom:234.545733pt;}
.y158{bottom:234.546400pt;}
.y97{bottom:234.547733pt;}
.y2c{bottom:234.584933pt;}
.y1d2{bottom:234.594400pt;}
.yc6{bottom:234.603733pt;}
.yf3{bottom:234.706400pt;}
.y6d{bottom:253.191067pt;}
.y43{bottom:253.204933pt;}
.y96{bottom:253.209733pt;}
.y157{bottom:253.212400pt;}
.y17c{bottom:253.246400pt;}
.y2b{bottom:253.246933pt;}
.y1d1{bottom:253.256400pt;}
.yc5{bottom:253.265733pt;}
.y11c{bottom:253.293733pt;}
.yf2{bottom:253.368400pt;}
.y6c{bottom:271.853067pt;}
.y135{bottom:271.855733pt;}
.y42{bottom:271.866933pt;}
.y95{bottom:271.871733pt;}
.y19f{bottom:271.877733pt;}
.y2a{bottom:271.908933pt;}
.y1c3{bottom:271.911733pt;}
.y17b{bottom:271.912400pt;}
.y1d0{bottom:271.918400pt;}
.y11b{bottom:271.955733pt;}
.yf1{bottom:272.030400pt;}
.y134{bottom:290.521733pt;}
.y41{bottom:290.528933pt;}
.y94{bottom:290.533733pt;}
.y19e{bottom:290.543733pt;}
.y156{bottom:290.544400pt;}
.y29{bottom:290.570933pt;}
.y1c2{bottom:290.577733pt;}
.y17a{bottom:290.578400pt;}
.y1cf{bottom:290.580400pt;}
.yc4{bottom:290.603733pt;}
.y11a{bottom:290.617733pt;}
.yf0{bottom:290.692400pt;}
.y6b{bottom:309.186400pt;}
.y133{bottom:309.187733pt;}
.y40{bottom:309.190933pt;}
.y93{bottom:309.195733pt;}
.y155{bottom:309.210400pt;}
.y28{bottom:309.232933pt;}
.y179{bottom:309.244400pt;}
.yc3{bottom:309.265733pt;}
.y119{bottom:309.279733pt;}
.yef{bottom:309.354400pt;}
.y7{bottom:312.905067pt;}
.y3f{bottom:327.852933pt;}
.y132{bottom:327.853733pt;}
.y92{bottom:327.857733pt;}
.y19d{bottom:327.875733pt;}
.y154{bottom:327.876400pt;}
.y27{bottom:327.894933pt;}
.y1c1{bottom:327.909733pt;}
.y1ce{bottom:327.918400pt;}
.yc2{bottom:327.927733pt;}
.y118{bottom:327.941733pt;}
.yee{bottom:328.016400pt;}
.y9{bottom:339.479200pt;}
.y91{bottom:346.519733pt;}
.y19c{bottom:346.541733pt;}
.y153{bottom:346.542400pt;}
.y26{bottom:346.556933pt;}
.y1c0{bottom:346.575733pt;}
.y178{bottom:346.576400pt;}
.y1cd{bottom:346.580400pt;}
.y6a{bottom:346.585067pt;}
.yc1{bottom:346.589733pt;}
.y117{bottom:346.603733pt;}
.yed{bottom:346.678400pt;}
.y3e{bottom:365.186267pt;}
.y19b{bottom:365.207733pt;}
.y152{bottom:365.208400pt;}
.ybf{bottom:365.219067pt;}
.y1bf{bottom:365.241733pt;}
.y177{bottom:365.242400pt;}
.y69{bottom:365.247067pt;}
.yc0{bottom:365.251733pt;}
.y116{bottom:365.265733pt;}
.yec{bottom:365.340400pt;}
.y90{bottom:383.853067pt;}
.y19a{bottom:383.873733pt;}
.ybe{bottom:383.881067pt;}
.y25{bottom:383.894933pt;}
.y1cc{bottom:383.904400pt;}
.y1be{bottom:383.907733pt;}
.y176{bottom:383.908400pt;}
.y68{bottom:383.909067pt;}
.yb0{bottom:383.913733pt;}
.y115{bottom:383.927733pt;}
.yeb{bottom:384.002400pt;}
.y6{bottom:395.571733pt;}
.y199{bottom:402.539733pt;}
.y151{bottom:402.540400pt;}
.ybd{bottom:402.543067pt;}
.y24{bottom:402.556933pt;}
.y1cb{bottom:402.566400pt;}
.y67{bottom:402.571067pt;}
.y1bd{bottom:402.573733pt;}
.y175{bottom:402.574400pt;}
.yaf{bottom:402.575733pt;}
.yea{bottom:402.664400pt;}
.y1e7{bottom:402.678400pt;}
.ybc{bottom:421.205067pt;}
.y150{bottom:421.206400pt;}
.y23{bottom:421.218933pt;}
.y1ca{bottom:421.228400pt;}
.y66{bottom:421.233067pt;}
.yae{bottom:421.237733pt;}
.y174{bottom:421.240400pt;}
.y8f{bottom:421.242400pt;}
.y114{bottom:421.265733pt;}
.y3d{bottom:421.316933pt;}
.ye9{bottom:421.326400pt;}
.y1e6{bottom:421.340400pt;}
.ybb{bottom:439.867067pt;}
.y198{bottom:439.871733pt;}
.y14f{bottom:439.872400pt;}
.y22{bottom:439.880933pt;}
.y1c9{bottom:439.890400pt;}
.y65{bottom:439.895067pt;}
.yad{bottom:439.899733pt;}
.y8e{bottom:439.904400pt;}
.y1bc{bottom:439.905733pt;}
.y113{bottom:439.927733pt;}
.y131{bottom:439.946400pt;}
.y3c{bottom:439.978933pt;}
.ye8{bottom:439.988400pt;}
.y1e5{bottom:440.002400pt;}
.yba{bottom:458.529067pt;}
.y197{bottom:458.537733pt;}
.y14e{bottom:458.538400pt;}
.y21{bottom:458.542933pt;}
.y64{bottom:458.557067pt;}
.yac{bottom:458.561733pt;}
.y8d{bottom:458.566400pt;}
.y1bb{bottom:458.571733pt;}
.y173{bottom:458.572400pt;}
.y112{bottom:458.589733pt;}
.y130{bottom:458.608400pt;}
.y3b{bottom:458.640933pt;}
.y1e4{bottom:458.664400pt;}
.yb9{bottom:477.191067pt;}
.y196{bottom:477.203733pt;}
.y14d{bottom:477.204400pt;}
.y20{bottom:477.204933pt;}
.y63{bottom:477.219067pt;}
.yab{bottom:477.223733pt;}
.y8c{bottom:477.228400pt;}
.y1ba{bottom:477.237733pt;}
.y172{bottom:477.238400pt;}
.y111{bottom:477.251733pt;}
.y12f{bottom:477.270400pt;}
.y3a{bottom:477.302933pt;}
.ye7{bottom:477.326400pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.yb8{bottom:495.853067pt;}
.y1f{bottom:495.866933pt;}
.y195{bottom:495.869733pt;}
.y14c{bottom:495.870400pt;}
.y62{bottom:495.881067pt;}
.yaa{bottom:495.885733pt;}
.y8b{bottom:495.890400pt;}
.y1b9{bottom:495.903733pt;}
.y110{bottom:495.913733pt;}
.y12e{bottom:495.932400pt;}
.y39{bottom:495.964933pt;}
.ye6{bottom:495.988400pt;}
.y1e{bottom:514.528933pt;}
.y194{bottom:514.535733pt;}
.y14b{bottom:514.536400pt;}
.y61{bottom:514.543067pt;}
.ya9{bottom:514.547733pt;}
.y8a{bottom:514.552400pt;}
.y171{bottom:514.570400pt;}
.y10f{bottom:514.575733pt;}
.y12d{bottom:514.594400pt;}
.y38{bottom:514.626933pt;}
.ye5{bottom:514.650400pt;}
.yb7{bottom:533.186400pt;}
.y1d{bottom:533.190933pt;}
.y193{bottom:533.201733pt;}
.y60{bottom:533.205067pt;}
.ya8{bottom:533.209733pt;}
.y89{bottom:533.214400pt;}
.y1b8{bottom:533.235733pt;}
.y170{bottom:533.236400pt;}
.y10e{bottom:533.237733pt;}
.y12c{bottom:533.256400pt;}
.y37{bottom:533.288933pt;}
.ye4{bottom:533.312400pt;}
.y1e3{bottom:533.326400pt;}
.y1c{bottom:551.852933pt;}
.y5f{bottom:551.867067pt;}
.y192{bottom:551.867733pt;}
.y14a{bottom:551.868400pt;}
.ya7{bottom:551.871733pt;}
.y88{bottom:551.876400pt;}
.y1b7{bottom:551.901733pt;}
.y16f{bottom:551.902400pt;}
.y12b{bottom:551.918400pt;}
.y36{bottom:551.950933pt;}
.ye3{bottom:551.974400pt;}
.y1e2{bottom:551.988400pt;}
.y4{bottom:560.905067pt;}
.y5e{bottom:570.529067pt;}
.ya6{bottom:570.533733pt;}
.y149{bottom:570.534400pt;}
.y87{bottom:570.538400pt;}
.y1b6{bottom:570.567733pt;}
.y16e{bottom:570.568400pt;}
.y10d{bottom:570.575733pt;}
.y12a{bottom:570.580400pt;}
.y35{bottom:570.612933pt;}
.ye2{bottom:570.636400pt;}
.y1e1{bottom:570.650400pt;}
.y1b{bottom:589.186267pt;}
.y5d{bottom:589.191067pt;}
.ya5{bottom:589.195733pt;}
.y191{bottom:589.199733pt;}
.y86{bottom:589.200400pt;}
.y1b5{bottom:589.233733pt;}
.y10c{bottom:589.237733pt;}
.y129{bottom:589.242400pt;}
.yb6{bottom:589.270400pt;}
.y34{bottom:589.274933pt;}
.ye1{bottom:589.298400pt;}
.y1e0{bottom:589.312400pt;}
.y5c{bottom:607.853067pt;}
.ya4{bottom:607.857733pt;}
.y85{bottom:607.862400pt;}
.y10b{bottom:607.899733pt;}
.y16d{bottom:607.900400pt;}
.yb5{bottom:607.932400pt;}
.ye0{bottom:607.960400pt;}
.y1df{bottom:607.974400pt;}
.ya3{bottom:626.519733pt;}
.y84{bottom:626.524400pt;}
.y190{bottom:626.531733pt;}
.y148{bottom:626.532400pt;}
.y10a{bottom:626.561733pt;}
.y1b4{bottom:626.565733pt;}
.y16c{bottom:626.566400pt;}
.y128{bottom:626.580400pt;}
.yb4{bottom:626.594400pt;}
.ydf{bottom:626.622400pt;}
.y1de{bottom:626.636400pt;}
.y5b{bottom:645.186400pt;}
.y18f{bottom:645.197733pt;}
.y147{bottom:645.198400pt;}
.y109{bottom:645.223733pt;}
.y1b3{bottom:645.231733pt;}
.y16b{bottom:645.232400pt;}
.y127{bottom:645.242400pt;}
.yb3{bottom:645.256400pt;}
.yde{bottom:645.284400pt;}
.y1dd{bottom:645.298400pt;}
.y1a{bottom:663.852933pt;}
.ya2{bottom:663.853067pt;}
.y18e{bottom:663.863733pt;}
.y146{bottom:663.864400pt;}
.y108{bottom:663.885733pt;}
.y1b2{bottom:663.897733pt;}
.y16a{bottom:663.898400pt;}
.y126{bottom:663.904400pt;}
.yb2{bottom:663.918400pt;}
.ydd{bottom:663.946400pt;}
.y1dc{bottom:663.960400pt;}
.y3{bottom:668.212133pt;}
.y19{bottom:682.519600pt;}
.y83{bottom:682.519733pt;}
.y18d{bottom:682.529733pt;}
.y125{bottom:682.566400pt;}
.yb1{bottom:682.580400pt;}
.ydc{bottom:682.608400pt;}
.y1db{bottom:682.622400pt;}
.y5a{bottom:682.626933pt;}
.y18{bottom:701.186267pt;}
.y82{bottom:701.186400pt;}
.y145{bottom:701.196400pt;}
.y107{bottom:701.223733pt;}
.y124{bottom:701.228400pt;}
.y1b1{bottom:701.229733pt;}
.y169{bottom:701.230400pt;}
.ya1{bottom:701.242400pt;}
.ydb{bottom:701.270400pt;}
.y1da{bottom:701.284400pt;}
.y59{bottom:701.288933pt;}
.y2{bottom:703.938667pt;}
.y17{bottom:719.852933pt;}
.y18c{bottom:719.861733pt;}
.y144{bottom:719.862400pt;}
.y106{bottom:719.885733pt;}
.y123{bottom:719.890400pt;}
.y1b0{bottom:719.895733pt;}
.y168{bottom:719.896400pt;}
.ya0{bottom:719.904400pt;}
.yda{bottom:719.932400pt;}
.y58{bottom:719.950933pt;}
.y16{bottom:738.519600pt;}
.y18b{bottom:738.527733pt;}
.y143{bottom:738.528400pt;}
.y105{bottom:738.547733pt;}
.y122{bottom:738.552400pt;}
.y1af{bottom:738.561733pt;}
.y167{bottom:738.562400pt;}
.y9f{bottom:738.566400pt;}
.yd9{bottom:738.594400pt;}
.y57{bottom:738.612933pt;}
.y15{bottom:757.186267pt;}
.y18a{bottom:757.193733pt;}
.y104{bottom:757.209733pt;}
.y121{bottom:757.214400pt;}
.y1ae{bottom:757.227733pt;}
.y81{bottom:757.228400pt;}
.yd8{bottom:757.256400pt;}
.y56{bottom:757.274933pt;}
.y1{bottom:763.655867pt;}
.y14{bottom:775.852933pt;}
.y1c8{bottom:775.853067pt;}
.y189{bottom:775.859733pt;}
.y142{bottom:775.860400pt;}
.y103{bottom:775.871733pt;}
.y80{bottom:775.890400pt;}
.y166{bottom:775.894400pt;}
.yd7{bottom:775.918400pt;}
.y55{bottom:775.936933pt;}
.y13{bottom:794.519600pt;}
.y1c7{bottom:794.519733pt;}
.y188{bottom:794.525733pt;}
.y141{bottom:794.526400pt;}
.y102{bottom:794.533733pt;}
.y7f{bottom:794.552400pt;}
.y1ad{bottom:794.559733pt;}
.y165{bottom:794.560400pt;}
.yd6{bottom:794.580400pt;}
.y54{bottom:794.598933pt;}
.y12{bottom:813.186267pt;}
.y1c6{bottom:813.186400pt;}
.y187{bottom:813.191733pt;}
.y140{bottom:813.192400pt;}
.y101{bottom:813.195733pt;}
.y7e{bottom:813.214400pt;}
.y1ac{bottom:813.225733pt;}
.yd5{bottom:813.242400pt;}
.y53{bottom:813.260933pt;}
.y11{bottom:831.852933pt;}
.y1c5{bottom:831.853067pt;}
.y100{bottom:831.857733pt;}
.y13f{bottom:831.858400pt;}
.y7d{bottom:831.876400pt;}
.y1ab{bottom:831.891733pt;}
.y164{bottom:831.892400pt;}
.yd4{bottom:831.904400pt;}
.y10{bottom:850.519600pt;}
.yff{bottom:850.519733pt;}
.y186{bottom:850.523733pt;}
.y13e{bottom:850.524400pt;}
.y7c{bottom:850.538400pt;}
.y163{bottom:850.558400pt;}
.yd3{bottom:850.566400pt;}
.y52{bottom:850.598933pt;}
.yf{bottom:869.186267pt;}
.y1c4{bottom:869.186400pt;}
.y185{bottom:869.189733pt;}
.y7b{bottom:869.200400pt;}
.y1aa{bottom:869.223733pt;}
.y162{bottom:869.224400pt;}
.yd2{bottom:869.228400pt;}
.y51{bottom:869.260933pt;}
.yfe{bottom:887.853067pt;}
.y184{bottom:887.855733pt;}
.y13d{bottom:887.856400pt;}
.y7a{bottom:887.862400pt;}
.y1a9{bottom:887.889733pt;}
.yd1{bottom:887.890400pt;}
.y50{bottom:887.922933pt;}
.y13c{bottom:906.522400pt;}
.y79{bottom:906.524400pt;}
.yd0{bottom:906.552400pt;}
.y1a8{bottom:906.555733pt;}
.y161{bottom:906.556400pt;}
.y4f{bottom:906.584933pt;}
.ye{bottom:919.853067pt;}
.y78{bottom:925.186400pt;}
.y183{bottom:925.187733pt;}
.y13b{bottom:925.188400pt;}
.ycf{bottom:925.214400pt;}
.y1a7{bottom:925.221733pt;}
.y160{bottom:925.222400pt;}
.y4e{bottom:925.246933pt;}
.yd{bottom:943.853067pt;}
.y182{bottom:943.853733pt;}
.y13a{bottom:943.854400pt;}
.yfd{bottom:943.857733pt;}
.yce{bottom:943.876400pt;}
.y1a6{bottom:943.887733pt;}
.y15f{bottom:943.888400pt;}
.y4d{bottom:943.908933pt;}
.y77{bottom:962.519733pt;}
.y139{bottom:962.520400pt;}
.ycd{bottom:962.538400pt;}
.y1a5{bottom:962.553733pt;}
.y15e{bottom:962.554400pt;}
.y4c{bottom:962.570933pt;}
.yc{bottom:970.340933pt;}
.yfc{bottom:1055.853067pt;}
.yb{bottom:1056.050000pt;}
.hc{height:38.773333pt;}
.h9{height:39.466667pt;}
.he{height:41.434667pt;}
.hb{height:44.912000pt;}
.h7{height:46.016000pt;}
.hd{height:46.309333pt;}
.ha{height:48.746667pt;}
.h8{height:63.146667pt;}
.hf{height:63.934400pt;}
.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;}
.x4{left:75.590533pt;}
.xc{left:90.710533pt;}
.x9{left:149.356267pt;}
.x2{left:198.425200pt;}
.xa{left:220.089600pt;}
.x5{left:415.748533pt;}
.x6{left:430.854533pt;}
.x7{left:869.292000pt;}
.xd{left:877.553333pt;}
.xb{left:884.411333pt;}
.xe{left:888.433333pt;}
.x8{left:1209.448800pt;}
}




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