
    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_5823855981f867379096a2df.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921000;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_da1004343e0753fc0da45d34.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_282339440b5dd5533e32eb0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_3a2b6b048ed81764fe5c827b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677734;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_d246b98c94e6d0c3e0dc1ff4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_9b1a9d6df68f9037caceada7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079590;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_220516a4899330bc55f21887.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_914e063d925e99ac9cd7ae17.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928000;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_9b347993ae4338fc83258131.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_4015f9dda49ae452bd018a04.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_0efb65425ba5059fa9690434.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.119629;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_c1687b268808f5a1379f223b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975098;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_e6fb03677fee68b259760296.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.975098;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_9a8cb144d8ce05dca320a899.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.158691;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_f643bc1d673fc0e5f77bd306.woff2')format("woff");}.fff{font-family:fff;line-height:1.159668;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_ed44c330b265774f5c27e8a2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_18c7c36ee4ffe082044cb6a2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_204206b15343d6ace4de8159.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_59db73913e601e7aebb8f64d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_935a308f611f28a3d5a6d724.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_329b8e419c2e82352328265e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_97a7a5732f55a84b9d830f39.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.955000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f1b235d8fde7cc58efa7177a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.886719;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_5c05cf82ac9fbb110f541bd3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_bf47035bc0514e5a2f03d3f6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.106000;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(0.286675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v3{vertical-align:-13.985400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:30.000000px;}
.ls14{letter-spacing:-4.440000px;}
.lsc{letter-spacing:-2.940000px;}
.ls19{letter-spacing:-2.376000px;}
.lsa{letter-spacing:-1.680000px;}
.lsb{letter-spacing:-1.260000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.384000px;}
.ls1e{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.192000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.048000px;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.003984px;}
.ls20{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.144000px;}
.lse{letter-spacing:0.234000px;}
.ls17{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.780000px;}
.ls11{letter-spacing:0.912000px;}
.ls7{letter-spacing:1.104000px;}
.ls2{letter-spacing:1.260000px;}
.ls6{letter-spacing:1.296000px;}
.ls4{letter-spacing:1.440000px;}
.ls8{letter-spacing:1.488000px;}
.ls5{letter-spacing:1.584000px;}
.ls3{letter-spacing:2.520000px;}
.ls1b{letter-spacing:6.021000px;}
.lsf{letter-spacing:34.848000px;}
.ls1{letter-spacing:617.794800px;}
.ls16{letter-spacing:1843.606200px;}
.ls15{letter-spacing:1864.152000px;}
.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;}
}
.ws17{word-spacing:-48.000000px;}
.ws37{word-spacing:-16.680000px;}
.ws14{word-spacing:-16.512000px;}
.ws2d{word-spacing:-16.080000px;}
.ws19{word-spacing:-15.600000px;}
.ws15{word-spacing:-15.360000px;}
.ws32{word-spacing:-15.012000px;}
.ws1{word-spacing:-9.576000px;}
.ws3c{word-spacing:-3.780000px;}
.ws9{word-spacing:-2.520000px;}
.wsb{word-spacing:-1.584000px;}
.ws10{word-spacing:-1.488000px;}
.wsa{word-spacing:-1.440000px;}
.wsc{word-spacing:-1.296000px;}
.ws8{word-spacing:-1.260000px;}
.wsd{word-spacing:-1.104000px;}
.wsf{word-spacing:-0.480000px;}
.ws7{word-spacing:-0.234000px;}
.ws41{word-spacing:-0.144000px;}
.ws0{word-spacing:-0.038478px;}
.ws2{word-spacing:0.000000px;}
.ws40{word-spacing:0.048000px;}
.ws45{word-spacing:0.144000px;}
.ws47{word-spacing:0.192000px;}
.ws42{word-spacing:0.240000px;}
.ws44{word-spacing:0.288000px;}
.ws46{word-spacing:0.384000px;}
.ws18{word-spacing:0.480000px;}
.ws43{word-spacing:0.576000px;}
.ws4{word-spacing:1.260000px;}
.ws3{word-spacing:1.680000px;}
.ws12{word-spacing:2.064000px;}
.ws3d{word-spacing:2.376000px;}
.ws5{word-spacing:2.940000px;}
.ws11{word-spacing:4.512000px;}
.wse{word-spacing:5.760000px;}
.ws39{word-spacing:72.659400px;}
.ws38{word-spacing:72.660000px;}
.ws3a{word-spacing:72.660600px;}
.ws3b{word-spacing:95.999400px;}
.ws36{word-spacing:143.952000px;}
.ws16{word-spacing:144.624000px;}
.ws3f{word-spacing:145.296000px;}
.ws1a{word-spacing:145.584000px;}
.ws22{word-spacing:146.304000px;}
.ws3e{word-spacing:146.928000px;}
.ws6{word-spacing:197.064000px;}
.ws13{word-spacing:202.848000px;}
.ws2e{word-spacing:290.812800px;}
.ws25{word-spacing:320.554800px;}
.ws1e{word-spacing:320.854800px;}
.ws30{word-spacing:329.724000px;}
.ws27{word-spacing:331.636200px;}
.ws21{word-spacing:334.161600px;}
.ws24{word-spacing:337.230000px;}
.ws1f{word-spacing:337.530600px;}
.ws34{word-spacing:340.222200px;}
.ws31{word-spacing:340.231200px;}
.ws35{word-spacing:341.739000px;}
.ws2f{word-spacing:350.729400px;}
.ws33{word-spacing:351.490200px;}
.ws23{word-spacing:385.619400px;}
.ws1d{word-spacing:385.920000px;}
.ws1b{word-spacing:1547.390400px;}
.ws26{word-spacing:1737.562800px;}
.ws28{word-spacing:1783.030800px;}
.ws1c{word-spacing:1799.127000px;}
.ws29{word-spacing:1814.182800px;}
.ws2b{word-spacing:1820.902800px;}
.ws2a{word-spacing:1837.522800px;}
.ws2c{word-spacing:1844.182800px;}
.ws20{word-spacing:1898.399400px;}
._6c{margin-left:-13.537200px;}
._1a{margin-left:-9.757200px;}
._f{margin-left:-8.485800px;}
._10{margin-left:-7.302000px;}
._11{margin-left:-6.292800px;}
._e{margin-left:-5.271600px;}
._3{margin-left:-4.270200px;}
._1{margin-left:-3.172200px;}
._0{margin-left:-1.440000px;}
._2{width:1.402800px;}
._4{width:2.520000px;}
._8{width:3.758400px;}
._5{width:4.944000px;}
._7{width:6.203400px;}
._6{width:7.314600px;}
._b{width:8.391600px;}
._d{width:9.818400px;}
._c{width:11.160000px;}
._17{width:12.444600px;}
._16{width:14.094000px;}
._13{width:15.126000px;}
._15{width:18.630000px;}
._19{width:20.226000px;}
._6a{width:21.486000px;}
._18{width:23.148000px;}
._14{width:24.372000px;}
._6b{width:38.824200px;}
._68{width:112.680000px;}
._62{width:119.340000px;}
._64{width:152.700000px;}
._5e{width:166.140000px;}
._4f{width:170.963400px;}
._54{width:172.967400px;}
._5f{width:189.480000px;}
._60{width:217.080000px;}
._1c{width:219.941400px;}
._36{width:269.049000px;}
._65{width:319.079400px;}
._38{width:320.550000px;}
._3a{width:328.899600px;}
._22{width:337.534800px;}
._3c{width:345.574800px;}
._25{width:354.154800px;}
._2f{width:356.437200px;}
._20{width:370.900200px;}
._63{width:385.739400px;}
._66{width:449.159400px;}
._35{width:665.046600px;}
._67{width:717.719400px;}
._61{width:791.099400px;}
._5d{width:824.279400px;}
._58{width:1013.410800px;}
._2c{width:1173.646200px;}
._69{width:1232.116800px;}
._a{width:1233.508800px;}
._4c{width:1234.612800px;}
._41{width:1318.678200px;}
._57{width:1436.853600px;}
._46{width:1468.576200px;}
._31{width:1477.130400px;}
._59{width:1502.650800px;}
._12{width:1521.056400px;}
._1b{width:1522.688400px;}
._5c{width:1528.352400px;}
._9{width:1531.254600px;}
._2e{width:1540.490400px;}
._47{width:1548.616200px;}
._30{width:1560.526200px;}
._34{width:1562.120400px;}
._52{width:1568.584800px;}
._53{width:1571.608800px;}
._55{width:1577.656800px;}
._29{width:1597.190400px;}
._40{width:1605.201000px;}
._3d{width:1628.541000px;}
._50{width:1646.722800px;}
._37{width:1651.876200px;}
._5b{width:1655.740800px;}
._45{width:1658.596200px;}
._5a{width:1676.692800px;}
._2b{width:1677.817200px;}
._4e{width:1706.716800px;}
._44{width:1711.936200px;}
._39{width:1718.656200px;}
._24{width:1727.215200px;}
._42{width:1744.809000px;}
._2d{width:1747.255200px;}
._3f{width:1761.916200px;}
._43{width:1762.951200px;}
._3e{width:1778.601000px;}
._21{width:1807.246200px;}
._28{width:1810.606200px;}
._49{width:1812.016200px;}
._48{width:1815.316200px;}
._26{width:1817.270400px;}
._1d{width:1823.866200px;}
._2a{width:1827.290400px;}
._3b{width:1835.943000px;}
._33{width:1837.306200px;}
._4d{width:1841.602200px;}
._1e{width:1843.970400px;}
._56{width:1849.140000px;}
._4b{width:1852.041000px;}
._4a{width:1858.636200px;}
._51{width:1867.122000px;}
._32{width:1877.270400px;}
._23{width:1887.290400px;}
._27{width:1891.560600px;}
._1f{width:1917.355200px;}
.fc6{color:rgb(254,0,0);}
.fc5{color:rgb(26,102,186);}
.fc4{color:rgb(238,37,43);}
.fc7{color:rgb(32,33,36);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(45,99,183);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(238,39,44);}
.fs5{font-size:24.486000px;}
.fs4{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.357700px;}
.y41{bottom:98.610300px;}
.y3f{bottom:121.468500px;}
.y3e{bottom:135.868500px;}
.y1a5{bottom:163.213950px;}
.yfd{bottom:165.407550px;}
.y129{bottom:167.149800px;}
.y17d{bottom:167.447850px;}
.y1cc{bottom:167.694150px;}
.y155{bottom:168.654900px;}
.yda{bottom:170.480850px;}
.y6b{bottom:172.151400px;}
.y8e{bottom:172.925250px;}
.yb4{bottom:173.150850px;}
.y1fa{bottom:174.345000px;}
.y17c{bottom:179.447850px;}
.y128{bottom:183.401700px;}
.y1a4{bottom:184.663950px;}
.yfc{bottom:186.407550px;}
.y1f9{bottom:187.095000px;}
.y1cb{bottom:188.844150px;}
.y154{bottom:190.483350px;}
.yd9{bottom:192.403650px;}
.y6a{bottom:193.151400px;}
.y8d{bottom:193.925250px;}
.yb3{bottom:194.150850px;}
.y127{bottom:201.899550px;}
.yfb{bottom:207.407550px;}
.y17b{bottom:208.187850px;}
.y1f8{bottom:208.348800px;}
.y1ca{bottom:209.994150px;}
.y153{bottom:211.814850px;}
.yb2{bottom:213.200850px;}
.y69{bottom:214.151400px;}
.yd8{bottom:214.513800px;}
.y8c{bottom:214.925250px;}
.y1f7{bottom:221.098800px;}
.y1a3{bottom:223.121850px;}
.y126{bottom:226.737600px;}
.yfa{bottom:228.407550px;}
.y1c9{bottom:231.144150px;}
.y152{bottom:232.649550px;}
.y68{bottom:235.151400px;}
.yd7{bottom:236.624100px;}
.y17a{bottom:237.764250px;}
.y1f6{bottom:242.352750px;}
.y1a2{bottom:244.571850px;}
.y125{bottom:247.997550px;}
.yb1{bottom:249.258750px;}
.yf9{bottom:249.407550px;}
.y8b{bottom:251.583150px;}
.y1c8{bottom:252.294150px;}
.y151{bottom:253.484100px;}
.y1f5{bottom:255.102750px;}
.y67{bottom:256.151400px;}
.yd6{bottom:258.734250px;}
.y1a1{bottom:266.021850px;}
.y179{bottom:267.528000px;}
.y150{bottom:268.815600px;}
.y124{bottom:269.257350px;}
.yf8{bottom:270.407550px;}
.y1c7{bottom:273.444150px;}
.y14f{bottom:276.315600px;}
.y1f4{bottom:276.356850px;}
.y66{bottom:277.151400px;}
.yd5{bottom:280.844550px;}
.y1a0{bottom:287.471850px;}
.y1f3{bottom:289.106850px;}
.yb0{bottom:289.568550px;}
.y123{bottom:290.517150px;}
.yf7{bottom:291.407550px;}
.y8a{bottom:292.492950px;}
.y178{bottom:297.291750px;}
.y65{bottom:298.151400px;}
.y14e{bottom:299.147100px;}
.y19{bottom:300.003750px;}
.y1f2{bottom:301.856850px;}
.yd4{bottom:302.954700px;}
.y3d{bottom:307.180500px;}
.yaf{bottom:308.618550px;}
.y19f{bottom:308.921850px;}
.y122{bottom:311.776950px;}
.y89{bottom:312.142950px;}
.yf6{bottom:312.407550px;}
.y1c6{bottom:315.853950px;}
.y64{bottom:319.151400px;}
.y14d{bottom:319.981800px;}
.y18{bottom:321.263550px;}
.y1f1{bottom:323.110650px;}
.yd3{bottom:325.065000px;}
.y177{bottom:327.055500px;}
.y3c{bottom:327.113400px;}
.yae{bottom:327.668550px;}
.y19e{bottom:330.371850px;}
.y88{bottom:331.792950px;}
.y121{bottom:333.036900px;}
.y1f0{bottom:335.860650px;}
.y63{bottom:340.151400px;}
.y14c{bottom:340.816500px;}
.y17{bottom:342.523350px;}
.yad{bottom:346.718550px;}
.yd2{bottom:347.175300px;}
.y1ef{bottom:348.610650px;}
.y87{bottom:351.442950px;}
.y19d{bottom:351.821850px;}
.y120{bottom:354.296700px;}
.y3b{bottom:356.069250px;}
.yf5{bottom:358.919250px;}
.y176{bottom:359.626800px;}
.y62{bottom:361.151400px;}
.y14b{bottom:361.651050px;}
.y16{bottom:363.783300px;}
.y3a{bottom:368.069250px;}
.yd1{bottom:369.285450px;}
.y1ee{bottom:369.864600px;}
.y86{bottom:371.092950px;}
.y19c{bottom:373.271850px;}
.y1c5{bottom:375.271650px;}
.y11f{bottom:375.556500px;}
.y39{bottom:380.069250px;}
.y61{bottom:382.151400px;}
.y14a{bottom:382.485750px;}
.y1ed{bottom:382.614600px;}
.yac{bottom:382.776450px;}
.y15{bottom:385.043100px;}
.yf4{bottom:386.915250px;}
.y85{bottom:390.742950px;}
.yd0{bottom:391.395750px;}
.y38{bottom:392.069250px;}
.y19b{bottom:394.721850px;}
.y1c4{bottom:396.421650px;}
.y11e{bottom:396.816450px;}
.y149{bottom:397.817250px;}
.y175{bottom:398.030400px;}
.y60{bottom:403.151400px;}
.y1ec{bottom:403.868550px;}
.y37{bottom:404.069250px;}
.y148{bottom:405.317250px;}
.y14{bottom:406.302900px;}
.y84{bottom:410.392950px;}
.ycf{bottom:413.505900px;}
.yf3{bottom:415.003350px;}
.y36{bottom:416.069250px;}
.y19a{bottom:416.171850px;}
.y1eb{bottom:416.618550px;}
.y1c3{bottom:417.571650px;}
.y11d{bottom:418.076250px;}
.yab{bottom:423.086250px;}
.y5f{bottom:424.151400px;}
.y13{bottom:427.562850px;}
.y35{bottom:428.069250px;}
.y147{bottom:428.148750px;}
.yce{bottom:435.616200px;}
.y199{bottom:437.621850px;}
.y1ea{bottom:437.872500px;}
.y1c2{bottom:438.721650px;}
.y11c{bottom:439.336050px;}
.y34{bottom:440.069250px;}
.yaa{bottom:442.136250px;}
.yf2{bottom:443.278950px;}
.y174{bottom:444.046050px;}
.y5e{bottom:445.151400px;}
.y83{bottom:447.050850px;}
.y12{bottom:448.822650px;}
.y146{bottom:448.983450px;}
.y1e9{bottom:450.622500px;}
.y33{bottom:452.069250px;}
.ycd{bottom:457.726500px;}
.y1c1{bottom:459.871650px;}
.y11b{bottom:460.595850px;}
.ya9{bottom:461.186250px;}
.y32{bottom:464.069250px;}
.y173{bottom:465.046050px;}
.y5d{bottom:466.151400px;}
.y145{bottom:469.818000px;}
.y11{bottom:471.393000px;}
.yf1{bottom:471.554550px;}
.y1e8{bottom:471.876450px;}
.y31{bottom:476.069250px;}
.y198{bottom:476.079750px;}
.y82{bottom:479.456700px;}
.ycc{bottom:479.836650px;}
.ya8{bottom:480.236250px;}
.y1c0{bottom:481.021650px;}
.y11a{bottom:481.855800px;}
.y10{bottom:481.857900px;}
.y1e7{bottom:484.626450px;}
.y172{bottom:486.046050px;}
.y30{bottom:488.069250px;}
.y144{bottom:490.652700px;}
.yf{bottom:492.322800px;}
.y197{bottom:497.529750px;}
.y81{bottom:499.106700px;}
.ya7{bottom:499.286250px;}
.yf0{bottom:499.830150px;}
.y2f{bottom:500.069250px;}
.ycb{bottom:501.946950px;}
.y1bf{bottom:502.171650px;}
.ye{bottom:502.787700px;}
.y119{bottom:503.115600px;}
.y1e6{bottom:505.880400px;}
.y171{bottom:507.046050px;}
.y5c{bottom:508.411350px;}
.y143{bottom:511.487400px;}
.y2e{bottom:512.069250px;}
.ya6{bottom:518.336250px;}
.y1e5{bottom:518.630400px;}
.y196{bottom:518.979750px;}
.y2d{bottom:524.069250px;}
.y118{bottom:524.375400px;}
.yca{bottom:524.462250px;}
.yd{bottom:525.358050px;}
.y80{bottom:527.260650px;}
.y21e{bottom:527.749950px;}
.y170{bottom:528.046050px;}
.yef{bottom:528.105750px;}
.y5b{bottom:529.411350px;}
.y142{bottom:532.321950px;}
.ya5{bottom:537.386250px;}
.y1e4{bottom:539.884350px;}
.y2c{bottom:540.321300px;}
.y195{bottom:540.429750px;}
.y21d{bottom:540.499950px;}
.y1be{bottom:544.581600px;}
.y117{bottom:545.635200px;}
.yc9{bottom:547.382700px;}
.y16f{bottom:549.046050px;}
.y5a{bottom:550.411350px;}
.y1e3{bottom:552.634350px;}
.y141{bottom:553.156650px;}
.y21c{bottom:553.249950px;}
.y7f{bottom:555.414600px;}
.yee{bottom:556.381350px;}
.ya4{bottom:556.436250px;}
.y2b{bottom:561.383100px;}
.y194{bottom:561.879750px;}
.y1bd{bottom:565.731600px;}
.y116{bottom:566.895150px;}
.yc8{bottom:569.710500px;}
.y59{bottom:571.411350px;}
.y1e2{bottom:573.888300px;}
.y140{bottom:573.991350px;}
.y21b{bottom:574.503900px;}
.ya3{bottom:575.486250px;}
.y2a{bottom:581.296950px;}
.y193{bottom:583.329750px;}
.y7e{bottom:583.568550px;}
.yed{bottom:584.656950px;}
.y1e1{bottom:586.638300px;}
.y1bc{bottom:586.881600px;}
.y21a{bottom:587.253900px;}
.y115{bottom:588.154950px;}
.y16e{bottom:591.306000px;}
.y58{bottom:592.411350px;}
.y13f{bottom:594.825900px;}
.y1e0{bottom:599.388300px;}
.yc7{bottom:601.292250px;}
.y16d{bottom:603.306000px;}
.y192{bottom:604.779750px;}
.y1bb{bottom:608.031600px;}
.y219{bottom:608.507850px;}
.y114{bottom:609.414900px;}
.y29{bottom:610.252950px;}
.ya2{bottom:611.544150px;}
.y1df{bottom:612.138300px;}
.yec{bottom:612.932550px;}
.y57{bottom:613.411350px;}
.y13e{bottom:615.660600px;}
.y7d{bottom:615.974400px;}
.y218{bottom:621.257850px;}
.y28{bottom:622.252950px;}
.y191{bottom:626.229750px;}
.y16c{bottom:628.127400px;}
.y1ba{bottom:629.181600px;}
.y113{bottom:630.674700px;}
.y1de{bottom:633.392100px;}
.y217{bottom:634.007850px;}
.y27{bottom:634.252950px;}
.y56{bottom:634.411350px;}
.y13d{bottom:636.495150px;}
.yc6{bottom:638.803950px;}
.yeb{bottom:641.208000px;}
.y1dd{bottom:646.142100px;}
.y26{bottom:646.252950px;}
.y16b{bottom:648.774600px;}
.y1b9{bottom:650.331600px;}
.ya1{bottom:651.853950px;}
.y112{bottom:651.934500px;}
.y216{bottom:655.261800px;}
.y55{bottom:655.411350px;}
.y7c{bottom:656.884350px;}
.y13c{bottom:657.329850px;}
.y25{bottom:658.252950px;}
.y1dc{bottom:658.892100px;}
.yc5{bottom:659.803950px;}
.y190{bottom:664.687650px;}
.y215{bottom:668.011800px;}
.yea{bottom:669.483600px;}
.y16a{bottom:669.609300px;}
.y24{bottom:670.252950px;}
.ya0{bottom:670.903950px;}
.y1b8{bottom:671.481600px;}
.y111{bottom:673.194300px;}
.y54{bottom:676.411350px;}
.y7b{bottom:676.534350px;}
.y13b{bottom:678.164550px;}
.y1db{bottom:680.146050px;}
.yc4{bottom:680.803950px;}
.y23{bottom:682.252950px;}
.y18f{bottom:686.137650px;}
.y214{bottom:689.265750px;}
.y9f{bottom:689.953950px;}
.y169{bottom:690.444000px;}
.y1b7{bottom:692.631600px;}
.y1da{bottom:692.896050px;}
.y22{bottom:694.252950px;}
.y110{bottom:694.454250px;}
.y53{bottom:697.411350px;}
.ye9{bottom:697.759200px;}
.y13a{bottom:698.999250px;}
.yc3{bottom:701.803950px;}
.y213{bottom:702.015750px;}
.y21{bottom:706.252950px;}
.y18e{bottom:707.587650px;}
.y9e{bottom:709.003950px;}
.y168{bottom:711.278550px;}
.y7a{bottom:713.192250px;}
.y1b6{bottom:713.781600px;}
.y10f{bottom:715.714050px;}
.y20{bottom:718.252950px;}
.y1d9{bottom:718.402050px;}
.y52{bottom:718.411350px;}
.yc2{bottom:722.803950px;}
.y212{bottom:723.269550px;}
.y139{bottom:724.308150px;}
.ye8{bottom:726.034800px;}
.y9d{bottom:728.053950px;}
.y18d{bottom:729.037650px;}
.y1f{bottom:730.252950px;}
.y167{bottom:732.113250px;}
.y1b5{bottom:734.931450px;}
.y211{bottom:736.019550px;}
.y10e{bottom:736.973850px;}
.y51{bottom:739.411350px;}
.y1e{bottom:742.252950px;}
.yc1{bottom:743.803950px;}
.y9c{bottom:747.103950px;}
.y210{bottom:748.769550px;}
.y138{bottom:749.429700px;}
.y18c{bottom:750.487650px;}
.y166{bottom:752.947950px;}
.y79{bottom:754.102050px;}
.y1d{bottom:754.252950px;}
.ye7{bottom:754.310400px;}
.y1b4{bottom:756.081600px;}
.y10d{bottom:758.233650px;}
.y50{bottom:760.411350px;}
.yc0{bottom:764.803950px;}
.y9b{bottom:766.153950px;}
.y1c{bottom:766.252950px;}
.y20f{bottom:770.023650px;}
.y18b{bottom:771.937650px;}
.y165{bottom:773.782500px;}
.y1d8{bottom:774.669750px;}
.y1b3{bottom:777.231600px;}
.y1b{bottom:778.252950px;}
.y10c{bottom:779.493600px;}
.y137{bottom:779.827650px;}
.y4f{bottom:781.411350px;}
.ye6{bottom:782.586150px;}
.y20e{bottom:782.773650px;}
.y9a{bottom:785.204100px;}
.ybf{bottom:785.803950px;}
.y18a{bottom:793.387500px;}
.y1a{bottom:794.504850px;}
.y164{bottom:794.617200px;}
.y78{bottom:795.011850px;}
.y20d{bottom:795.523650px;}
.y1d7{bottom:795.669750px;}
.y1b2{bottom:798.381600px;}
.y10b{bottom:800.753400px;}
.y4e{bottom:802.411350px;}
.y99{bottom:804.253950px;}
.ybe{bottom:806.803950px;}
.ye5{bottom:810.861750px;}
.y163{bottom:815.451750px;}
.y1d6{bottom:816.669750px;}
.y20c{bottom:816.777450px;}
.y136{bottom:817.339350px;}
.y1b1{bottom:819.531600px;}
.y10a{bottom:822.013350px;}
.y4d{bottom:823.411350px;}
.yb{bottom:827.493000px;}
.ybd{bottom:827.803950px;}
.y20b{bottom:829.527450px;}
.y189{bottom:831.845550px;}
.y162{bottom:836.286450px;}
.y135{bottom:838.339350px;}
.ye4{bottom:839.137200px;}
.y98{bottom:840.311850px;}
.y1b0{bottom:840.681450px;}
.y109{bottom:843.273150px;}
.ya{bottom:844.345050px;}
.y20a{bottom:850.781400px;}
.y77{bottom:852.929700px;}
.y188{bottom:853.295400px;}
.y161{bottom:857.121150px;}
.y1d5{bottom:858.929700px;}
.y134{bottom:859.339350px;}
.y9{bottom:861.197100px;}
.y1af{bottom:861.831600px;}
.y209{bottom:863.531400px;}
.y108{bottom:864.532950px;}
.y4c{bottom:865.671150px;}
.ye3{bottom:867.412950px;}
.ybc{bottom:870.063750px;}
.y76{bottom:872.579550px;}
.y187{bottom:874.745550px;}
.y160{bottom:877.955700px;}
.y8{bottom:878.049000px;}
.y1d4{bottom:879.929700px;}
.y133{bottom:880.339350px;}
.y97{bottom:880.621650px;}
.y1ae{bottom:882.981600px;}
.y208{bottom:884.785350px;}
.y107{bottom:885.792750px;}
.y4b{bottom:886.671150px;}
.y75{bottom:892.229550px;}
.y7{bottom:894.900900px;}
.ye2{bottom:895.688400px;}
.y186{bottom:896.195550px;}
.y207{bottom:897.535350px;}
.y15f{bottom:898.790400px;}
.y96{bottom:899.671650px;}
.y1d3{bottom:900.929700px;}
.y132{bottom:901.339350px;}
.y1ad{bottom:904.131600px;}
.y106{bottom:907.052550px;}
.y4a{bottom:907.671150px;}
.y6{bottom:908.256450px;}
.y74{bottom:911.879550px;}
.y185{bottom:917.645550px;}
.y95{bottom:918.721650px;}
.y206{bottom:918.789300px;}
.y15e{bottom:919.625100px;}
.y1d2{bottom:921.929550px;}
.y131{bottom:922.339350px;}
.ye1{bottom:923.964000px;}
.y1ac{bottom:925.281600px;}
.ybb{bottom:926.331600px;}
.y105{bottom:928.312350px;}
.y5{bottom:928.604850px;}
.y49{bottom:928.671150px;}
.y73{bottom:931.529550px;}
.y205{bottom:931.539300px;}
.y94{bottom:937.771800px;}
.y184{bottom:939.095550px;}
.y15d{bottom:940.459650px;}
.y1d1{bottom:942.929550px;}
.y130{bottom:943.339350px;}
.y1ab{bottom:946.431450px;}
.yba{bottom:947.331600px;}
.y104{bottom:949.572300px;}
.y48{bottom:949.671150px;}
.y72{bottom:951.179550px;}
.ye0{bottom:952.239600px;}
.y204{bottom:952.793250px;}
.y4{bottom:959.008500px;}
.y183{bottom:960.545400px;}
.y15c{bottom:961.294350px;}
.y1d0{bottom:963.929550px;}
.y12f{bottom:964.339350px;}
.y203{bottom:965.543250px;}
.y1aa{bottom:967.581600px;}
.yb9{bottom:968.331600px;}
.y47{bottom:970.671150px;}
.y71{bottom:970.829550px;}
.y103{bottom:970.832100px;}
.y93{bottom:973.829550px;}
.y202{bottom:978.293250px;}
.ydf{bottom:980.515200px;}
.y182{bottom:981.995400px;}
.y15b{bottom:982.128900px;}
.y1cf{bottom:984.929550px;}
.y12e{bottom:985.339350px;}
.y1a9{bottom:988.731600px;}
.yb8{bottom:989.331600px;}
.y70{bottom:990.479550px;}
.y46{bottom:991.671150px;}
.y102{bottom:992.092050px;}
.y201{bottom:999.547200px;}
.y3{bottom:1002.520350px;}
.y15a{bottom:1002.963600px;}
.y181{bottom:1003.445550px;}
.y1ce{bottom:1005.929550px;}
.y12d{bottom:1006.339350px;}
.yde{bottom:1008.790800px;}
.y1a8{bottom:1009.881450px;}
.y6f{bottom:1010.129550px;}
.yb7{bottom:1010.331600px;}
.y200{bottom:1012.297200px;}
.y45{bottom:1012.671150px;}
.y92{bottom:1014.139500px;}
.y101{bottom:1014.182100px;}
.y159{bottom:1023.798300px;}
.y180{bottom:1024.895550px;}
.y1cd{bottom:1026.929550px;}
.y12c{bottom:1027.339350px;}
.yb6{bottom:1031.331600px;}
.y91{bottom:1033.189500px;}
.y1ff{bottom:1033.551150px;}
.y44{bottom:1033.671150px;}
.ydd{bottom:1037.066400px;}
.y100{bottom:1041.769500px;}
.y158{bottom:1044.445350px;}
.y17f{bottom:1045.895550px;}
.y1fe{bottom:1046.301150px;}
.y1a7{bottom:1048.039350px;}
.y12b{bottom:1048.339350px;}
.y6e{bottom:1051.039350px;}
.y2{bottom:1051.432050px;}
.y90{bottom:1052.239350px;}
.yb5{bottom:1052.331600px;}
.y1fd{bottom:1059.051150px;}
.ydc{bottom:1062.071850px;}
.y157{bottom:1065.964350px;}
.yff{bottom:1068.339000px;}
.y1a6{bottom:1069.189500px;}
.y12a{bottom:1069.339350px;}
.y6d{bottom:1070.689500px;}
.y8f{bottom:1071.289350px;}
.y1fc{bottom:1080.305100px;}
.y156{bottom:1083.964350px;}
.ydb{bottom:1084.429800px;}
.yc{bottom:1084.650750px;}
.y17e{bottom:1088.155350px;}
.y43{bottom:1088.686950px;}
.y6c{bottom:1090.339350px;}
.yfe{bottom:1090.991550px;}
.y1fb{bottom:1093.055100px;}
.y40{bottom:1111.393800px;}
.y42{bottom:1154.834700px;}
.h8{height:22.517906px;}
.h6{height:22.518506px;}
.ha{height:30.577148px;}
.h11{height:35.088000px;}
.h7{height:36.503906px;}
.hb{height:37.877930px;}
.h10{height:38.016000px;}
.hc{height:38.185547px;}
.h2{height:38.556000px;}
.h1a{height:41.718750px;}
.h1b{height:42.304950px;}
.he{height:43.289062px;}
.hf{height:43.640625px;}
.hd{height:46.218750px;}
.h18{height:46.933594px;}
.h17{height:47.882812px;}
.h16{height:48.384000px;}
.h13{height:52.148438px;}
.h4{height:53.053711px;}
.h15{height:53.203125px;}
.h5{height:53.367188px;}
.h9{height:58.800000px;}
.h14{height:62.964844px;}
.h12{height:63.843750px;}
.h3{height:72.773438px;}
.h19{height:76.933594px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:63.779550px;}
.x5{left:68.031450px;}
.x4{left:80.903100px;}
.x2{left:81.924900px;}
.x8{left:92.916900px;}
.x10{left:98.301600px;}
.x7{left:99.319200px;}
.xa{left:105.868350px;}
.x18{left:107.362200px;}
.x1e{left:112.299150px;}
.x1d{left:114.399300px;}
.x9{left:116.632800px;}
.x3{left:122.807100px;}
.xd{left:129.250500px;}
.x22{left:137.349300px;}
.x16{left:140.314950px;}
.x17{left:148.818900px;}
.xf{left:151.204800px;}
.x1b{left:157.322850px;}
.x19{left:159.448800px;}
.x1c{left:170.078700px;}
.xc{left:174.035700px;}
.xe{left:242.120700px;}
.xb{left:269.614950px;}
.x11{left:318.147600px;}
.x1{left:380.019750px;}
.x1a{left:458.990400px;}
.x13{left:462.653400px;}
.x15{left:467.382900px;}
.x20{left:585.120600px;}
.x1f{left:617.903100px;}
.x21{left:710.333100px;}
.x12{left:715.491450px;}
.x14{left:751.480050px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v3{vertical-align:-12.431467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:26.666667pt;}
.ls14{letter-spacing:-3.946667pt;}
.lsc{letter-spacing:-2.613333pt;}
.ls19{letter-spacing:-2.112000pt;}
.lsa{letter-spacing:-1.493333pt;}
.lsb{letter-spacing:-1.120000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.341333pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.170667pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.042667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.003541pt;}
.ls20{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.208000pt;}
.ls17{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.693333pt;}
.ls11{letter-spacing:0.810667pt;}
.ls7{letter-spacing:0.981333pt;}
.ls2{letter-spacing:1.120000pt;}
.ls6{letter-spacing:1.152000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.322667pt;}
.ls5{letter-spacing:1.408000pt;}
.ls3{letter-spacing:2.240000pt;}
.ls1b{letter-spacing:5.352000pt;}
.lsf{letter-spacing:30.976000pt;}
.ls1{letter-spacing:549.150933pt;}
.ls16{letter-spacing:1638.761067pt;}
.ls15{letter-spacing:1657.024000pt;}
.ws17{word-spacing:-42.666667pt;}
.ws37{word-spacing:-14.826667pt;}
.ws14{word-spacing:-14.677333pt;}
.ws2d{word-spacing:-14.293333pt;}
.ws19{word-spacing:-13.866667pt;}
.ws15{word-spacing:-13.653333pt;}
.ws32{word-spacing:-13.344000pt;}
.ws1{word-spacing:-8.512000pt;}
.ws3c{word-spacing:-3.360000pt;}
.ws9{word-spacing:-2.240000pt;}
.wsb{word-spacing:-1.408000pt;}
.ws10{word-spacing:-1.322667pt;}
.wsa{word-spacing:-1.280000pt;}
.wsc{word-spacing:-1.152000pt;}
.ws8{word-spacing:-1.120000pt;}
.wsd{word-spacing:-0.981333pt;}
.wsf{word-spacing:-0.426667pt;}
.ws7{word-spacing:-0.208000pt;}
.ws41{word-spacing:-0.128000pt;}
.ws0{word-spacing:-0.034203pt;}
.ws2{word-spacing:0.000000pt;}
.ws40{word-spacing:0.042667pt;}
.ws45{word-spacing:0.128000pt;}
.ws47{word-spacing:0.170667pt;}
.ws42{word-spacing:0.213333pt;}
.ws44{word-spacing:0.256000pt;}
.ws46{word-spacing:0.341333pt;}
.ws18{word-spacing:0.426667pt;}
.ws43{word-spacing:0.512000pt;}
.ws4{word-spacing:1.120000pt;}
.ws3{word-spacing:1.493333pt;}
.ws12{word-spacing:1.834667pt;}
.ws3d{word-spacing:2.112000pt;}
.ws5{word-spacing:2.613333pt;}
.ws11{word-spacing:4.010667pt;}
.wse{word-spacing:5.120000pt;}
.ws39{word-spacing:64.586133pt;}
.ws38{word-spacing:64.586667pt;}
.ws3a{word-spacing:64.587200pt;}
.ws3b{word-spacing:85.332800pt;}
.ws36{word-spacing:127.957333pt;}
.ws16{word-spacing:128.554667pt;}
.ws3f{word-spacing:129.152000pt;}
.ws1a{word-spacing:129.408000pt;}
.ws22{word-spacing:130.048000pt;}
.ws3e{word-spacing:130.602667pt;}
.ws6{word-spacing:175.168000pt;}
.ws13{word-spacing:180.309333pt;}
.ws2e{word-spacing:258.500267pt;}
.ws25{word-spacing:284.937600pt;}
.ws1e{word-spacing:285.204267pt;}
.ws30{word-spacing:293.088000pt;}
.ws27{word-spacing:294.787733pt;}
.ws21{word-spacing:297.032533pt;}
.ws24{word-spacing:299.760000pt;}
.ws1f{word-spacing:300.027200pt;}
.ws34{word-spacing:302.419733pt;}
.ws31{word-spacing:302.427733pt;}
.ws35{word-spacing:303.768000pt;}
.ws2f{word-spacing:311.759467pt;}
.ws33{word-spacing:312.435733pt;}
.ws23{word-spacing:342.772800pt;}
.ws1d{word-spacing:343.040000pt;}
.ws1b{word-spacing:1375.458133pt;}
.ws26{word-spacing:1544.500267pt;}
.ws28{word-spacing:1584.916267pt;}
.ws1c{word-spacing:1599.224000pt;}
.ws29{word-spacing:1612.606933pt;}
.ws2b{word-spacing:1618.580267pt;}
.ws2a{word-spacing:1633.353600pt;}
.ws2c{word-spacing:1639.273600pt;}
.ws20{word-spacing:1687.466133pt;}
._6c{margin-left:-12.033067pt;}
._1a{margin-left:-8.673067pt;}
._f{margin-left:-7.542933pt;}
._10{margin-left:-6.490667pt;}
._11{margin-left:-5.593600pt;}
._e{margin-left:-4.685867pt;}
._3{margin-left:-3.795733pt;}
._1{margin-left:-2.819733pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.246933pt;}
._4{width:2.240000pt;}
._8{width:3.340800pt;}
._5{width:4.394667pt;}
._7{width:5.514133pt;}
._6{width:6.501867pt;}
._b{width:7.459200pt;}
._d{width:8.727467pt;}
._c{width:9.920000pt;}
._17{width:11.061867pt;}
._16{width:12.528000pt;}
._13{width:13.445333pt;}
._15{width:16.560000pt;}
._19{width:17.978667pt;}
._6a{width:19.098667pt;}
._18{width:20.576000pt;}
._14{width:21.664000pt;}
._6b{width:34.510400pt;}
._68{width:100.160000pt;}
._62{width:106.080000pt;}
._64{width:135.733333pt;}
._5e{width:147.680000pt;}
._4f{width:151.967467pt;}
._54{width:153.748800pt;}
._5f{width:168.426667pt;}
._60{width:192.960000pt;}
._1c{width:195.503467pt;}
._36{width:239.154667pt;}
._65{width:283.626133pt;}
._38{width:284.933333pt;}
._3a{width:292.355200pt;}
._22{width:300.030933pt;}
._3c{width:307.177600pt;}
._25{width:314.804267pt;}
._2f{width:316.833067pt;}
._20{width:329.689067pt;}
._63{width:342.879467pt;}
._66{width:399.252800pt;}
._35{width:591.152533pt;}
._67{width:637.972800pt;}
._61{width:703.199467pt;}
._5d{width:732.692800pt;}
._58{width:900.809600pt;}
._2c{width:1043.241067pt;}
._69{width:1095.214933pt;}
._a{width:1096.452267pt;}
._4c{width:1097.433600pt;}
._41{width:1172.158400pt;}
._57{width:1277.203200pt;}
._46{width:1305.401067pt;}
._31{width:1313.004800pt;}
._59{width:1335.689600pt;}
._12{width:1352.050133pt;}
._1b{width:1353.500800pt;}
._5c{width:1358.535467pt;}
._9{width:1361.115200pt;}
._2e{width:1369.324800pt;}
._47{width:1376.547733pt;}
._30{width:1387.134400pt;}
._34{width:1388.551467pt;}
._52{width:1394.297600pt;}
._53{width:1396.985600pt;}
._55{width:1402.361600pt;}
._29{width:1419.724800pt;}
._40{width:1426.845333pt;}
._3d{width:1447.592000pt;}
._50{width:1463.753600pt;}
._37{width:1468.334400pt;}
._5b{width:1471.769600pt;}
._45{width:1474.307733pt;}
._5a{width:1490.393600pt;}
._2b{width:1491.393067pt;}
._4e{width:1517.081600pt;}
._44{width:1521.721067pt;}
._39{width:1527.694400pt;}
._24{width:1535.302400pt;}
._42{width:1550.941333pt;}
._2d{width:1553.115733pt;}
._3f{width:1566.147733pt;}
._43{width:1567.067733pt;}
._3e{width:1580.978667pt;}
._21{width:1606.441067pt;}
._28{width:1609.427733pt;}
._49{width:1610.681067pt;}
._48{width:1613.614400pt;}
._26{width:1615.351467pt;}
._1d{width:1621.214400pt;}
._2a{width:1624.258133pt;}
._3b{width:1631.949333pt;}
._33{width:1633.161067pt;}
._4d{width:1636.979733pt;}
._1e{width:1639.084800pt;}
._56{width:1643.680000pt;}
._4b{width:1646.258667pt;}
._4a{width:1652.121067pt;}
._51{width:1659.664000pt;}
._32{width:1668.684800pt;}
._23{width:1677.591467pt;}
._27{width:1681.387200pt;}
._1f{width:1704.315733pt;}
.fs5{font-size:21.765333pt;}
.fs4{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:52.762400pt;}
.y41{bottom:87.653600pt;}
.y3f{bottom:107.972000pt;}
.y3e{bottom:120.772000pt;}
.y1a5{bottom:145.079067pt;}
.yfd{bottom:147.028933pt;}
.y129{bottom:148.577600pt;}
.y17d{bottom:148.842533pt;}
.y1cc{bottom:149.061467pt;}
.y155{bottom:149.915467pt;}
.yda{bottom:151.538533pt;}
.y6b{bottom:153.023467pt;}
.y8e{bottom:153.711333pt;}
.yb4{bottom:153.911867pt;}
.y1fa{bottom:154.973333pt;}
.y17c{bottom:159.509200pt;}
.y128{bottom:163.023733pt;}
.y1a4{bottom:164.145733pt;}
.yfc{bottom:165.695600pt;}
.y1f9{bottom:166.306667pt;}
.y1cb{bottom:167.861467pt;}
.y154{bottom:169.318533pt;}
.yd9{bottom:171.025467pt;}
.y6a{bottom:171.690133pt;}
.y8d{bottom:172.378000pt;}
.yb3{bottom:172.578533pt;}
.y127{bottom:179.466267pt;}
.yfb{bottom:184.362267pt;}
.y17b{bottom:185.055867pt;}
.y1f8{bottom:185.198933pt;}
.y1ca{bottom:186.661467pt;}
.y153{bottom:188.279867pt;}
.yb2{bottom:189.511867pt;}
.y69{bottom:190.356800pt;}
.yd8{bottom:190.678933pt;}
.y8c{bottom:191.044667pt;}
.y1f7{bottom:196.532267pt;}
.y1a3{bottom:198.330533pt;}
.y126{bottom:201.544533pt;}
.yfa{bottom:203.028933pt;}
.y1c9{bottom:205.461467pt;}
.y152{bottom:206.799600pt;}
.y68{bottom:209.023467pt;}
.yd7{bottom:210.332533pt;}
.y17a{bottom:211.346000pt;}
.y1f6{bottom:215.424667pt;}
.y1a2{bottom:217.397200pt;}
.y125{bottom:220.442267pt;}
.yb1{bottom:221.563333pt;}
.yf9{bottom:221.695600pt;}
.y8b{bottom:223.629467pt;}
.y1c8{bottom:224.261467pt;}
.y151{bottom:225.319200pt;}
.y1f5{bottom:226.758000pt;}
.y67{bottom:227.690133pt;}
.yd6{bottom:229.986000pt;}
.y1a1{bottom:236.463867pt;}
.y179{bottom:237.802667pt;}
.y150{bottom:238.947200pt;}
.y124{bottom:239.339867pt;}
.yf8{bottom:240.362267pt;}
.y1c7{bottom:243.061467pt;}
.y14f{bottom:245.613867pt;}
.y1f4{bottom:245.650533pt;}
.y66{bottom:246.356800pt;}
.yd5{bottom:249.639600pt;}
.y1a0{bottom:255.530533pt;}
.y1f3{bottom:256.983867pt;}
.yb0{bottom:257.394267pt;}
.y123{bottom:258.237467pt;}
.yf7{bottom:259.028933pt;}
.y8a{bottom:259.993733pt;}
.y178{bottom:264.259333pt;}
.y65{bottom:265.023467pt;}
.y14e{bottom:265.908533pt;}
.y19{bottom:266.670000pt;}
.y1f2{bottom:268.317200pt;}
.yd4{bottom:269.293067pt;}
.y3d{bottom:273.049333pt;}
.yaf{bottom:274.327600pt;}
.y19f{bottom:274.597200pt;}
.y122{bottom:277.135067pt;}
.y89{bottom:277.460400pt;}
.yf6{bottom:277.695600pt;}
.y1c6{bottom:280.759067pt;}
.y64{bottom:283.690133pt;}
.y14d{bottom:284.428267pt;}
.y18{bottom:285.567600pt;}
.y1f1{bottom:287.209467pt;}
.yd3{bottom:288.946667pt;}
.y177{bottom:290.716000pt;}
.y3c{bottom:290.767467pt;}
.yae{bottom:291.260933pt;}
.y19e{bottom:293.663867pt;}
.y88{bottom:294.927067pt;}
.y121{bottom:296.032800pt;}
.y1f0{bottom:298.542800pt;}
.y63{bottom:302.356800pt;}
.y14c{bottom:302.948000pt;}
.y17{bottom:304.465200pt;}
.yad{bottom:308.194267pt;}
.yd2{bottom:308.600267pt;}
.y1ef{bottom:309.876133pt;}
.y87{bottom:312.393733pt;}
.y19d{bottom:312.730533pt;}
.y120{bottom:314.930400pt;}
.y3b{bottom:316.506000pt;}
.yf5{bottom:319.039333pt;}
.y176{bottom:319.668267pt;}
.y62{bottom:321.023467pt;}
.y14b{bottom:321.467600pt;}
.y16{bottom:323.362933pt;}
.y3a{bottom:327.172667pt;}
.yd1{bottom:328.253733pt;}
.y1ee{bottom:328.768533pt;}
.y86{bottom:329.860400pt;}
.y19c{bottom:331.797200pt;}
.y1c5{bottom:333.574800pt;}
.y11f{bottom:333.828000pt;}
.y39{bottom:337.839333pt;}
.y61{bottom:339.690133pt;}
.y14a{bottom:339.987333pt;}
.y1ed{bottom:340.101867pt;}
.yac{bottom:340.245733pt;}
.y15{bottom:342.260533pt;}
.yf4{bottom:343.924667pt;}
.y85{bottom:347.327067pt;}
.yd0{bottom:347.907333pt;}
.y38{bottom:348.506000pt;}
.y19b{bottom:350.863867pt;}
.y1c4{bottom:352.374800pt;}
.y11e{bottom:352.725733pt;}
.y149{bottom:353.615333pt;}
.y175{bottom:353.804800pt;}
.y60{bottom:358.356800pt;}
.y1ec{bottom:358.994267pt;}
.y37{bottom:359.172667pt;}
.y148{bottom:360.282000pt;}
.y14{bottom:361.158133pt;}
.y84{bottom:364.793733pt;}
.ycf{bottom:367.560800pt;}
.yf3{bottom:368.891867pt;}
.y36{bottom:369.839333pt;}
.y19a{bottom:369.930533pt;}
.y1eb{bottom:370.327600pt;}
.y1c3{bottom:371.174800pt;}
.y11d{bottom:371.623333pt;}
.yab{bottom:376.076667pt;}
.y5f{bottom:377.023467pt;}
.y13{bottom:380.055867pt;}
.y35{bottom:380.506000pt;}
.y147{bottom:380.576667pt;}
.yce{bottom:387.214400pt;}
.y199{bottom:388.997200pt;}
.y1ea{bottom:389.220000pt;}
.y1c2{bottom:389.974800pt;}
.y11c{bottom:390.520933pt;}
.y34{bottom:391.172667pt;}
.yaa{bottom:393.010000pt;}
.yf2{bottom:394.025733pt;}
.y174{bottom:394.707600pt;}
.y5e{bottom:395.690133pt;}
.y83{bottom:397.378533pt;}
.y12{bottom:398.953467pt;}
.y146{bottom:399.096400pt;}
.y1e9{bottom:400.553333pt;}
.y33{bottom:401.839333pt;}
.ycd{bottom:406.868000pt;}
.y1c1{bottom:408.774800pt;}
.y11b{bottom:409.418533pt;}
.ya9{bottom:409.943333pt;}
.y32{bottom:412.506000pt;}
.y173{bottom:413.374267pt;}
.y5d{bottom:414.356800pt;}
.y145{bottom:417.616000pt;}
.y11{bottom:419.016000pt;}
.yf1{bottom:419.159600pt;}
.y1e8{bottom:419.445733pt;}
.y31{bottom:423.172667pt;}
.y198{bottom:423.182000pt;}
.y82{bottom:426.183733pt;}
.ycc{bottom:426.521467pt;}
.ya8{bottom:426.876667pt;}
.y1c0{bottom:427.574800pt;}
.y11a{bottom:428.316267pt;}
.y10{bottom:428.318133pt;}
.y1e7{bottom:430.779067pt;}
.y172{bottom:432.040933pt;}
.y30{bottom:433.839333pt;}
.y144{bottom:436.135733pt;}
.yf{bottom:437.620267pt;}
.y197{bottom:442.248667pt;}
.y81{bottom:443.650400pt;}
.ya7{bottom:443.810000pt;}
.yf0{bottom:444.293467pt;}
.y2f{bottom:444.506000pt;}
.ycb{bottom:446.175067pt;}
.y1bf{bottom:446.374800pt;}
.ye{bottom:446.922400pt;}
.y119{bottom:447.213867pt;}
.y1e6{bottom:449.671467pt;}
.y171{bottom:450.707600pt;}
.y5c{bottom:451.921200pt;}
.y143{bottom:454.655467pt;}
.y2e{bottom:455.172667pt;}
.ya6{bottom:460.743333pt;}
.y1e5{bottom:461.004800pt;}
.y196{bottom:461.315333pt;}
.y2d{bottom:465.839333pt;}
.y118{bottom:466.111467pt;}
.yca{bottom:466.188667pt;}
.yd{bottom:466.984933pt;}
.y80{bottom:468.676133pt;}
.y21e{bottom:469.111067pt;}
.y170{bottom:469.374267pt;}
.yef{bottom:469.427333pt;}
.y5b{bottom:470.587867pt;}
.y142{bottom:473.175067pt;}
.ya5{bottom:477.676667pt;}
.y1e4{bottom:479.897200pt;}
.y2c{bottom:480.285600pt;}
.y195{bottom:480.382000pt;}
.y21d{bottom:480.444400pt;}
.y1be{bottom:484.072533pt;}
.y117{bottom:485.009067pt;}
.yc9{bottom:486.562400pt;}
.y16f{bottom:488.040933pt;}
.y5a{bottom:489.254533pt;}
.y1e3{bottom:491.230533pt;}
.y141{bottom:491.694800pt;}
.y21c{bottom:491.777733pt;}
.y7f{bottom:493.701867pt;}
.yee{bottom:494.561200pt;}
.ya4{bottom:494.610000pt;}
.y2b{bottom:499.007200pt;}
.y194{bottom:499.448667pt;}
.y1bd{bottom:502.872533pt;}
.y116{bottom:503.906800pt;}
.yc8{bottom:506.409333pt;}
.y59{bottom:507.921200pt;}
.y1e2{bottom:510.122933pt;}
.y140{bottom:510.214533pt;}
.y21b{bottom:510.670133pt;}
.ya3{bottom:511.543333pt;}
.y2a{bottom:516.708400pt;}
.y193{bottom:518.515333pt;}
.y7e{bottom:518.727600pt;}
.yed{bottom:519.695067pt;}
.y1e1{bottom:521.456267pt;}
.y1bc{bottom:521.672533pt;}
.y21a{bottom:522.003467pt;}
.y115{bottom:522.804400pt;}
.y16e{bottom:525.605333pt;}
.y58{bottom:526.587867pt;}
.y13f{bottom:528.734133pt;}
.y1e0{bottom:532.789600pt;}
.yc7{bottom:534.482000pt;}
.y16d{bottom:536.272000pt;}
.y192{bottom:537.582000pt;}
.y1bb{bottom:540.472533pt;}
.y219{bottom:540.895867pt;}
.y114{bottom:541.702133pt;}
.y29{bottom:542.447067pt;}
.ya2{bottom:543.594800pt;}
.y1df{bottom:544.122933pt;}
.yec{bottom:544.828933pt;}
.y57{bottom:545.254533pt;}
.y13e{bottom:547.253867pt;}
.y7d{bottom:547.532800pt;}
.y218{bottom:552.229200pt;}
.y28{bottom:553.113733pt;}
.y191{bottom:556.648667pt;}
.y16c{bottom:558.335467pt;}
.y1ba{bottom:559.272533pt;}
.y113{bottom:560.599733pt;}
.y1de{bottom:563.015200pt;}
.y217{bottom:563.562533pt;}
.y27{bottom:563.780400pt;}
.y56{bottom:563.921200pt;}
.y13d{bottom:565.773467pt;}
.yc6{bottom:567.825733pt;}
.yeb{bottom:569.962667pt;}
.y1dd{bottom:574.348533pt;}
.y26{bottom:574.447067pt;}
.y16b{bottom:576.688533pt;}
.y1b9{bottom:578.072533pt;}
.ya1{bottom:579.425733pt;}
.y112{bottom:579.497333pt;}
.y216{bottom:582.454933pt;}
.y55{bottom:582.587867pt;}
.y7c{bottom:583.897200pt;}
.y13c{bottom:584.293200pt;}
.y25{bottom:585.113733pt;}
.y1dc{bottom:585.681867pt;}
.yc5{bottom:586.492400pt;}
.y190{bottom:590.833467pt;}
.y215{bottom:593.788267pt;}
.yea{bottom:595.096533pt;}
.y16a{bottom:595.208267pt;}
.y24{bottom:595.780400pt;}
.ya0{bottom:596.359067pt;}
.y1b8{bottom:596.872533pt;}
.y111{bottom:598.394933pt;}
.y54{bottom:601.254533pt;}
.y7b{bottom:601.363867pt;}
.y13b{bottom:602.812933pt;}
.y1db{bottom:604.574267pt;}
.yc4{bottom:605.159067pt;}
.y23{bottom:606.447067pt;}
.y18f{bottom:609.900133pt;}
.y214{bottom:612.680667pt;}
.y9f{bottom:613.292400pt;}
.y169{bottom:613.728000pt;}
.y1b7{bottom:615.672533pt;}
.y1da{bottom:615.907600pt;}
.y22{bottom:617.113733pt;}
.y110{bottom:617.292667pt;}
.y53{bottom:619.921200pt;}
.ye9{bottom:620.230400pt;}
.y13a{bottom:621.332667pt;}
.yc3{bottom:623.825733pt;}
.y213{bottom:624.014000pt;}
.y21{bottom:627.780400pt;}
.y18e{bottom:628.966800pt;}
.y9e{bottom:630.225733pt;}
.y168{bottom:632.247600pt;}
.y7a{bottom:633.948667pt;}
.y1b6{bottom:634.472533pt;}
.y10f{bottom:636.190267pt;}
.y20{bottom:638.447067pt;}
.y1d9{bottom:638.579600pt;}
.y52{bottom:638.587867pt;}
.yc2{bottom:642.492400pt;}
.y212{bottom:642.906267pt;}
.y139{bottom:643.829467pt;}
.ye8{bottom:645.364267pt;}
.y9d{bottom:647.159067pt;}
.y18d{bottom:648.033467pt;}
.y1f{bottom:649.113733pt;}
.y167{bottom:650.767333pt;}
.y1b5{bottom:653.272400pt;}
.y211{bottom:654.239600pt;}
.y10e{bottom:655.087867pt;}
.y51{bottom:657.254533pt;}
.y1e{bottom:659.780400pt;}
.yc1{bottom:661.159067pt;}
.y9c{bottom:664.092400pt;}
.y210{bottom:665.572933pt;}
.y138{bottom:666.159733pt;}
.y18c{bottom:667.100133pt;}
.y166{bottom:669.287067pt;}
.y79{bottom:670.312933pt;}
.y1d{bottom:670.447067pt;}
.ye7{bottom:670.498133pt;}
.y1b4{bottom:672.072533pt;}
.y10d{bottom:673.985467pt;}
.y50{bottom:675.921200pt;}
.yc0{bottom:679.825733pt;}
.y9b{bottom:681.025733pt;}
.y1c{bottom:681.113733pt;}
.y20f{bottom:684.465467pt;}
.y18b{bottom:686.166800pt;}
.y165{bottom:687.806667pt;}
.y1d8{bottom:688.595333pt;}
.y1b3{bottom:690.872533pt;}
.y1b{bottom:691.780400pt;}
.y10c{bottom:692.883200pt;}
.y137{bottom:693.180133pt;}
.y4f{bottom:694.587867pt;}
.ye6{bottom:695.632133pt;}
.y20e{bottom:695.798800pt;}
.y9a{bottom:697.959200pt;}
.ybf{bottom:698.492400pt;}
.y18a{bottom:705.233333pt;}
.y1a{bottom:706.226533pt;}
.y164{bottom:706.326400pt;}
.y78{bottom:706.677200pt;}
.y20d{bottom:707.132133pt;}
.y1d7{bottom:707.262000pt;}
.y1b2{bottom:709.672533pt;}
.y10b{bottom:711.780800pt;}
.y4e{bottom:713.254533pt;}
.y99{bottom:714.892400pt;}
.ybe{bottom:717.159067pt;}
.ye5{bottom:720.766000pt;}
.y163{bottom:724.846000pt;}
.y1d6{bottom:725.928667pt;}
.y20c{bottom:726.024400pt;}
.y136{bottom:726.523867pt;}
.y1b1{bottom:728.472533pt;}
.y10a{bottom:730.678533pt;}
.y4d{bottom:731.921200pt;}
.yb{bottom:735.549333pt;}
.ybd{bottom:735.825733pt;}
.y20b{bottom:737.357733pt;}
.y189{bottom:739.418267pt;}
.y162{bottom:743.365733pt;}
.y135{bottom:745.190533pt;}
.ye4{bottom:745.899733pt;}
.y98{bottom:746.943867pt;}
.y1b0{bottom:747.272400pt;}
.y109{bottom:749.576133pt;}
.ya{bottom:750.528933pt;}
.y20a{bottom:756.250133pt;}
.y77{bottom:758.159733pt;}
.y188{bottom:758.484800pt;}
.y161{bottom:761.885467pt;}
.y1d5{bottom:763.493067pt;}
.y134{bottom:763.857200pt;}
.y9{bottom:765.508533pt;}
.y1af{bottom:766.072533pt;}
.y209{bottom:767.583467pt;}
.y108{bottom:768.473733pt;}
.y4c{bottom:769.485467pt;}
.ye3{bottom:771.033733pt;}
.ybc{bottom:773.390000pt;}
.y76{bottom:775.626267pt;}
.y187{bottom:777.551600pt;}
.y160{bottom:780.405067pt;}
.y8{bottom:780.488000pt;}
.y1d4{bottom:782.159733pt;}
.y133{bottom:782.523867pt;}
.y97{bottom:782.774800pt;}
.y1ae{bottom:784.872533pt;}
.y208{bottom:786.475867pt;}
.y107{bottom:787.371333pt;}
.y4b{bottom:788.152133pt;}
.y75{bottom:793.092933pt;}
.y7{bottom:795.467467pt;}
.ye2{bottom:796.167467pt;}
.y186{bottom:796.618267pt;}
.y207{bottom:797.809200pt;}
.y15f{bottom:798.924800pt;}
.y96{bottom:799.708133pt;}
.y1d3{bottom:800.826400pt;}
.y132{bottom:801.190533pt;}
.y1ad{bottom:803.672533pt;}
.y106{bottom:806.268933pt;}
.y4a{bottom:806.818800pt;}
.y6{bottom:807.339067pt;}
.y74{bottom:810.559600pt;}
.y185{bottom:815.684933pt;}
.y95{bottom:816.641467pt;}
.y206{bottom:816.701600pt;}
.y15e{bottom:817.444533pt;}
.y1d2{bottom:819.492933pt;}
.y131{bottom:819.857200pt;}
.ye1{bottom:821.301333pt;}
.y1ac{bottom:822.472533pt;}
.ybb{bottom:823.405867pt;}
.y105{bottom:825.166533pt;}
.y5{bottom:825.426533pt;}
.y49{bottom:825.485467pt;}
.y73{bottom:828.026267pt;}
.y205{bottom:828.034933pt;}
.y94{bottom:833.574933pt;}
.y184{bottom:834.751600pt;}
.y15d{bottom:835.964133pt;}
.y1d1{bottom:838.159600pt;}
.y130{bottom:838.523867pt;}
.y1ab{bottom:841.272400pt;}
.yba{bottom:842.072533pt;}
.y104{bottom:844.064267pt;}
.y48{bottom:844.152133pt;}
.y72{bottom:845.492933pt;}
.ye0{bottom:846.435200pt;}
.y204{bottom:846.927333pt;}
.y4{bottom:852.452000pt;}
.y183{bottom:853.818133pt;}
.y15c{bottom:854.483867pt;}
.y1d0{bottom:856.826267pt;}
.y12f{bottom:857.190533pt;}
.y203{bottom:858.260667pt;}
.y1aa{bottom:860.072533pt;}
.yb9{bottom:860.739200pt;}
.y47{bottom:862.818800pt;}
.y71{bottom:862.959600pt;}
.y103{bottom:862.961867pt;}
.y93{bottom:865.626267pt;}
.y202{bottom:869.594000pt;}
.ydf{bottom:871.569067pt;}
.y182{bottom:872.884800pt;}
.y15b{bottom:873.003467pt;}
.y1cf{bottom:875.492933pt;}
.y12e{bottom:875.857200pt;}
.y1a9{bottom:878.872533pt;}
.yb8{bottom:879.405867pt;}
.y70{bottom:880.426267pt;}
.y46{bottom:881.485467pt;}
.y102{bottom:881.859600pt;}
.y201{bottom:888.486400pt;}
.y3{bottom:891.129200pt;}
.y15a{bottom:891.523200pt;}
.y181{bottom:891.951600pt;}
.y1ce{bottom:894.159600pt;}
.y12d{bottom:894.523867pt;}
.yde{bottom:896.702933pt;}
.y1a8{bottom:897.672400pt;}
.y6f{bottom:897.892933pt;}
.yb7{bottom:898.072533pt;}
.y200{bottom:899.819733pt;}
.y45{bottom:900.152133pt;}
.y92{bottom:901.457333pt;}
.y101{bottom:901.495200pt;}
.y159{bottom:910.042933pt;}
.y180{bottom:911.018267pt;}
.y1cd{bottom:912.826267pt;}
.y12c{bottom:913.190533pt;}
.yb6{bottom:916.739200pt;}
.y91{bottom:918.390667pt;}
.y1ff{bottom:918.712133pt;}
.y44{bottom:918.818800pt;}
.ydd{bottom:921.836800pt;}
.y100{bottom:926.017333pt;}
.y158{bottom:928.395867pt;}
.y17f{bottom:929.684933pt;}
.y1fe{bottom:930.045467pt;}
.y1a7{bottom:931.590533pt;}
.y12b{bottom:931.857200pt;}
.y6e{bottom:934.257200pt;}
.y2{bottom:934.606267pt;}
.y90{bottom:935.323867pt;}
.yb5{bottom:935.405867pt;}
.y1fd{bottom:941.378800pt;}
.ydc{bottom:944.063867pt;}
.y157{bottom:947.523867pt;}
.yff{bottom:949.634667pt;}
.y1a6{bottom:950.390667pt;}
.y12a{bottom:950.523867pt;}
.y6d{bottom:951.724000pt;}
.y8f{bottom:952.257200pt;}
.y1fc{bottom:960.271200pt;}
.y156{bottom:963.523867pt;}
.ydb{bottom:963.937600pt;}
.yc{bottom:964.134000pt;}
.y17e{bottom:967.249200pt;}
.y43{bottom:967.721733pt;}
.y6c{bottom:969.190533pt;}
.yfe{bottom:969.770267pt;}
.y1fb{bottom:971.604533pt;}
.y40{bottom:987.905600pt;}
.y42{bottom:1026.519733pt;}
.h8{height:20.015917pt;}
.h6{height:20.016450pt;}
.ha{height:27.179688pt;}
.h11{height:31.189333pt;}
.h7{height:32.447917pt;}
.hb{height:33.669271pt;}
.h10{height:33.792000pt;}
.hc{height:33.942708pt;}
.h2{height:34.272000pt;}
.h1a{height:37.083333pt;}
.h1b{height:37.604400pt;}
.he{height:38.479167pt;}
.hf{height:38.791667pt;}
.hd{height:41.083333pt;}
.h18{height:41.718750pt;}
.h17{height:42.562500pt;}
.h16{height:43.008000pt;}
.h13{height:46.354167pt;}
.h4{height:47.158854pt;}
.h15{height:47.291667pt;}
.h5{height:47.437500pt;}
.h9{height:52.266667pt;}
.h14{height:55.968750pt;}
.h12{height:56.750000pt;}
.h3{height:64.687500pt;}
.h19{height:68.385417pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.692933pt;}
.x5{left:60.472400pt;}
.x4{left:71.913867pt;}
.x2{left:72.822133pt;}
.x8{left:82.592800pt;}
.x10{left:87.379200pt;}
.x7{left:88.283733pt;}
.xa{left:94.105200pt;}
.x18{left:95.433067pt;}
.x1e{left:99.821467pt;}
.x1d{left:101.688267pt;}
.x9{left:103.673600pt;}
.x3{left:109.161867pt;}
.xd{left:114.889333pt;}
.x22{left:122.088267pt;}
.x16{left:124.724400pt;}
.x17{left:132.283467pt;}
.xf{left:134.404267pt;}
.x1b{left:139.842533pt;}
.x19{left:141.732267pt;}
.x1c{left:151.181067pt;}
.xc{left:154.698400pt;}
.xe{left:215.218400pt;}
.xb{left:239.657733pt;}
.x11{left:282.797867pt;}
.x1{left:337.795333pt;}
.x1a{left:407.991467pt;}
.x13{left:411.247467pt;}
.x15{left:415.451467pt;}
.x20{left:520.107200pt;}
.x1f{left:549.247200pt;}
.x21{left:631.407200pt;}
.x12{left:635.992400pt;}
.x14{left:667.982267pt;}
}




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