
    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_12679495df72d748cbe8093e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_d6268f82b1add8240a880d76.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_60c1d4163fb78f0efd8fba33.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_928ddd345bd0f4c0c30fb065.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675000;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_4932174e6d83bcf1c699d084.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_3ff7e1d0b17f58eee378bc64.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_2b555b7a19444e62a0dee8d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.467000;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_9ff495fc88d29a36104004aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967773;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_1474bb0f02c2b6ff3c6a746a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.887000;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_94ad5e18375ce5b245c3d0a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975586;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_e264389491e01ac178932873.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.975586;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_a5b4eb17b018b73edb9fa43f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.975586;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_6faa89213b696d28c8ba92fb.woff2')format("woff");}.fff{font-family:fff;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1dc3182e8827ea7d432e0687.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.967773;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_117e321eaf9909742ab8776d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.967773;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_240172925dd89d8971cfea5c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.967773;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_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.979980;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_45a94ba599db34310c01cdb6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936523;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_8359a713f0715b4ef54beeec.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.967773;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_240172925dd89d8971cfea5c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.967773;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_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.979980;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_45a94ba599db34310c01cdb6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.936523;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_e1c16746a12040172dee8d71.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_978adf2e9fe6a678ac7a44f5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.967773;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:ff1b;src:url('chunks/assets/font_77900faa1c0cf467b68344b1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.979980;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:ff1c;src:url('chunks/assets/font_7d30ff701c32f27a36ef7c54.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.936523;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);}
.m3{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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);}
.v3{vertical-align:-8.400000px;}
.v1{vertical-align:-5.304000px;}
.v6{vertical-align:-1.025145px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.234945px;}
.v2{vertical-align:4.254000px;}
.v4{vertical-align:14.136000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:6.428819px;}
.ls4{letter-spacing:8.181825px;}
.ls5{letter-spacing:14.943900px;}
.ls6{letter-spacing:16.363650px;}
.ls1{letter-spacing:52.499421px;}
.ls2{letter-spacing:52.505421px;}
.ls8{letter-spacing:231.235351px;}
.ls3{letter-spacing:475.687485px;}
.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;}
}
.ws2a{word-spacing:-37.180650px;}
.wsc{word-spacing:-24.545475px;}
.ws15{word-spacing:-21.519300px;}
.ws1{word-spacing:-16.363650px;}
.ws29{word-spacing:-13.449600px;}
.ws35{word-spacing:-13.165589px;}
.ws2{word-spacing:-12.981900px;}
.ws2c{word-spacing:-12.622966px;}
.ws2d{word-spacing:-11.045078px;}
.ws30{word-spacing:-10.866286px;}
.ws19{word-spacing:-8.777238px;}
.ws2f{word-spacing:-8.149715px;}
.ws1a{word-spacing:-7.680071px;}
.ws34{word-spacing:-6.847958px;}
.ws33{word-spacing:-5.869709px;}
.ws27{word-spacing:-3.118266px;}
.ws12{word-spacing:-2.814548px;}
.ws14{word-spacing:-1.898183px;}
.ws9{word-spacing:-1.701820px;}
.ws17{word-spacing:-1.505456px;}
.ws13{word-spacing:-0.654546px;}
.ws4{word-spacing:-0.196364px;}
.wsd{word-spacing:-0.065455px;}
.ws1b{word-spacing:-0.029769px;}
.ws2e{word-spacing:-0.029316px;}
.ws36{word-spacing:-0.021870px;}
.ws1d{word-spacing:-0.005366px;}
.ws8{word-spacing:-0.002694px;}
.wsa{word-spacing:-0.002560px;}
.wsb{word-spacing:-0.002341px;}
.ws3{word-spacing:-0.001761px;}
.ws1e{word-spacing:-0.000038px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:0.001568px;}
.ws10{word-spacing:0.523637px;}
.ws1f{word-spacing:2.241158px;}
.ws20{word-spacing:2.492964px;}
.ws1c{word-spacing:2.510575px;}
.ws5{word-spacing:2.749093px;}
.wsf{word-spacing:3.796367px;}
.ws6{word-spacing:7.134551px;}
.ws21{word-spacing:8.164273px;}
.ws22{word-spacing:8.169160px;}
.ws23{word-spacing:10.210918px;}
.ws25{word-spacing:12.305465px;}
.ws11{word-spacing:15.578195px;}
.ws28{word-spacing:16.363650px;}
.ws18{word-spacing:31.509075px;}
.ws37{word-spacing:31.581317px;}
.ws38{word-spacing:31.581324px;}
.ws7{word-spacing:41.825489px;}
.ws2b{word-spacing:69.236131px;}
.ws31{word-spacing:82.427008px;}
.ws24{word-spacing:106.101907px;}
.ws26{word-spacing:119.389190px;}
.wse{word-spacing:234.642706px;}
.ws32{word-spacing:240.947204px;}
._24{margin-left:-577.085783px;}
._1c{margin-left:-145.510721px;}
._1b{margin-left:-123.481684px;}
._10{margin-left:-8.770916px;}
._b{margin-left:-7.527279px;}
._d{margin-left:-5.236368px;}
._1{margin-left:-4.123640px;}
._0{margin-left:-2.343209px;}
._8{margin-left:-1.047274px;}
._f{width:1.112728px;}
._4{width:2.117686px;}
._5{width:3.547123px;}
._2{width:4.658908px;}
._19{width:5.724659px;}
._3{width:7.094247px;}
._a{width:8.624892px;}
._1f{width:15.224947px;}
._1d{width:16.916495px;}
._9{width:18.589106px;}
._16{width:20.950552px;}
._13{width:25.737083px;}
._23{width:27.939079px;}
._15{width:31.483663px;}
._17{width:35.869121px;}
._7{width:80.374810px;}
._e{width:183.171131px;}
._12{width:184.176088px;}
._1a{width:305.676836px;}
._21{width:441.408116px;}
._20{width:521.216571px;}
._18{width:582.312258px;}
._1e{width:603.683895px;}
._14{width:808.964688px;}
._6{width:825.644688px;}
._22{width:842.318688px;}
._c{width:862.757083px;}
._11{width:1153.048234px;}
.fc13{color:rgb(210,32,39);}
.fc12{color:rgb(81,87,109);}
.fc11{color:rgb(81,86,109);}
.fc10{color:rgb(82,87,109);}
.fcd{color:rgb(218,147,13);}
.fc0{color:rgb(255,255,255);}
.fcb{color:rgb(96,96,96);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc8{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fcf{color:rgb(232,103,88);}
.fc4{color:rgb(252,230,223);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fc14{color:rgb(180,68,57);}
.fce{color:rgb(245,245,245);}
.fc9{color:rgb(0,173,239);}
.fc6{color:rgb(254,250,248);}
.fca{color:rgb(240,81,51);}
.fcc{color:rgb(215,7,81);}
.fs12{font-size:9.836801px;}
.fs11{font-size:11.075400px;}
.fsb{font-size:16.970979px;}
.fsa{font-size:16.970982px;}
.fs1e{font-size:18.516433px;}
.fs1d{font-size:21.602392px;}
.fs1f{font-size:21.869749px;}
.fs8{font-size:22.069169px;}
.fsc{font-size:22.627880px;}
.fs13{font-size:23.530320px;}
.fs9{font-size:25.221947px;}
.fs1c{font-size:26.058240px;}
.fs21{font-size:26.742241px;}
.fs15{font-size:27.204766px;}
.fse{font-size:29.170412px;}
.fs18{font-size:29.315520px;}
.fsd{font-size:29.768969px;}
.fs20{font-size:30.562561px;}
.fs17{font-size:31.738730px;}
.fs10{font-size:31.987601px;}
.fs1b{font-size:32.572800px;}
.fs4{font-size:35.865600px;}
.fs16{font-size:36.272891px;}
.fs19{font-size:39.087360px;}
.fs6{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fsf{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs5{font-size:75.476160px;}
.fs0{font-size:86.077200px;}
.fs1a{font-size:124.069189px;}
.fs14{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y162{bottom:2.023260px;}
.y163{bottom:2.162779px;}
.ya{bottom:3.873000px;}
.y160{bottom:11.746846px;}
.y161{bottom:11.886365px;}
.y240{bottom:12.574588px;}
.y252{bottom:15.374646px;}
.y94{bottom:16.317131px;}
.y24e{bottom:16.324967px;}
.y207{bottom:19.451197px;}
.y9{bottom:20.397402px;}
.y8{bottom:21.102000px;}
.y15e{bottom:21.483661px;}
.y15f{bottom:21.623180px;}
.y253{bottom:21.876000px;}
.y23f{bottom:22.125389px;}
.y1df{bottom:22.466975px;}
.yeb{bottom:22.974308px;}
.y24d{bottom:23.159264px;}
.y11c{bottom:23.559000px;}
.y20b{bottom:24.084000px;}
.y186{bottom:24.663452px;}
.ya2{bottom:25.428000px;}
.ya5{bottom:25.753500px;}
.ya8{bottom:26.850000px;}
.y206{bottom:27.594397px;}
.y17{bottom:28.083000px;}
.yf2{bottom:28.922167px;}
.y1b0{bottom:29.184000px;}
.y1ed{bottom:29.488500px;}
.y24c{bottom:29.993561px;}
.y6a{bottom:31.236000px;}
.yfa{bottom:31.894500px;}
.y178{bottom:32.238000px;}
.y61{bottom:32.433000px;}
.y1a2{bottom:32.491500px;}
.y56{bottom:32.883000px;}
.y20a{bottom:33.450000px;}
.y18a{bottom:34.612500px;}
.y1af{bottom:35.367000px;}
.y205{bottom:35.737597px;}
.y13e{bottom:35.949000px;}
.y24b{bottom:36.827857px;}
.y247{bottom:37.365091px;}
.y8a{bottom:37.839000px;}
.y17c{bottom:38.599500px;}
.y182{bottom:39.003000px;}
.y195{bottom:39.813000px;}
.yea{bottom:40.429232px;}
.ycb{bottom:41.928263px;}
.y11b{bottom:42.987000px;}
.y24a{bottom:43.662154px;}
.y204{bottom:43.880797px;}
.y246{bottom:44.199388px;}
.y243{bottom:44.272207px;}
.ya1{bottom:45.751500px;}
.ya4{bottom:46.077000px;}
.y105{bottom:46.177500px;}
.y17e{bottom:46.345307px;}
.y108{bottom:46.372500px;}
.ya7{bottom:47.173500px;}
.y1fc{bottom:47.472090px;}
.y1de{bottom:47.569738px;}
.y131{bottom:47.860500px;}
.y1f6{bottom:47.926426px;}
.y59{bottom:48.217500px;}
.y1a1{bottom:48.930000px;}
.y1e1{bottom:49.750663px;}
.yca{bottom:49.810210px;}
.yf9{bottom:49.828500px;}
.y114{bottom:50.404500px;}
.y69{bottom:51.559500px;}
.y202{bottom:51.805554px;}
.y203{bottom:52.023997px;}
.y249{bottom:52.546740px;}
.y177{bottom:52.561500px;}
.y46{bottom:52.617000px;}
.y245{bottom:53.083973px;}
.y242{bottom:53.156793px;}
.y180{bottom:53.329500px;}
.y4d{bottom:53.599500px;}
.y209{bottom:53.775000px;}
.y1ec{bottom:54.295500px;}
.y1f9{bottom:56.079133px;}
.y60{bottom:57.634500px;}
.y55{bottom:58.518000px;}
.y1fb{bottom:58.934837px;}
.y248{bottom:59.381036px;}
.y244{bottom:59.918270px;}
.y241{bottom:59.991090px;}
.y1ae{bottom:60.174000px;}
.y184{bottom:60.666000px;}
.y13d{bottom:60.754500px;}
.y1e0{bottom:61.086068px;}
.ybb{bottom:61.779000px;}
.y1c1{bottom:61.984248px;}
.y11a{bottom:62.413500px;}
.y17b{bottom:63.406500px;}
.y1f5{bottom:63.408013px;}
.yb5{bottom:63.427500px;}
.yb8{bottom:63.453000px;}
.y200{bottom:63.741727px;}
.ydc{bottom:64.416135px;}
.y194{bottom:64.620000px;}
.y1a0{bottom:65.368500px;}
.yf8{bottom:67.761000px;}
.y130{bottom:70.276500px;}
.y104{bottom:70.984500px;}
.y107{bottom:71.179500px;}
.y68{bottom:71.884500px;}
.ydb{bottom:72.298094px;}
.y176{bottom:72.886500px;}
.y45{bottom:72.942000px;}
.y58{bottom:73.024500px;}
.y1c0{bottom:73.319653px;}
.y4c{bottom:73.923000px;}
.y201{bottom:74.017330px;}
.y208{bottom:74.098500px;}
.y113{bottom:75.211500px;}
.y76{bottom:75.705000px;}
.y1f8{bottom:76.233553px;}
.y188{bottom:76.787670px;}
.y17f{bottom:78.136500px;}
.y1eb{bottom:79.102500px;}
.y29{bottom:79.245000px;}
.yf1{bottom:79.662750px;}
.y89{bottom:80.754000px;}
.y11{bottom:80.974500px;}
.y238{bottom:83.193698px;}
.y216{bottom:84.089086px;}
.y13c{bottom:84.321000px;}
.y1ad{bottom:84.981000px;}
.yf7{bottom:85.693500px;}
.ye5{bottom:86.125179px;}
.yba{bottom:86.586000px;}
.yd8{bottom:88.195653px;}
.y17a{bottom:88.213500px;}
.yb4{bottom:88.234500px;}
.yb7{bottom:88.260000px;}
.y21f{bottom:89.041583px;}
.y193{bottom:89.428500px;}
.y125{bottom:90.007500px;}
.y237{bottom:90.027994px;}
.y19f{bottom:90.225000px;}
.y21c{bottom:90.565228px;}
.y1fd{bottom:90.673358px;}
.y215{bottom:90.923383px;}
.y12f{bottom:92.692500px;}
.ye4{bottom:93.021981px;}
.y175{bottom:93.210000px;}
.y44{bottom:93.265500px;}
.y20{bottom:93.795000px;}
.yc4{bottom:94.155716px;}
.y4b{bottom:94.246500px;}
.y112{bottom:95.535000px;}
.y106{bottom:95.907000px;}
.y75{bottom:96.028500px;}
.y103{bottom:96.186000px;}
.y236{bottom:96.862291px;}
.y21b{bottom:97.399525px;}
.y214{bottom:97.757680px;}
.y57{bottom:97.831500px;}
.y21e{bottom:97.926169px;}
.yd7{bottom:99.815746px;}
.y17d{bottom:100.275000px;}
.yc3{bottom:101.052331px;}
.y88{bottom:101.077500px;}
.y5d{bottom:101.178000px;}
.y92{bottom:101.950500px;}
.y187{bottom:103.695571px;}
.y235{bottom:103.696588px;}
.y119{bottom:103.875000px;}
.y1ea{bottom:103.911000px;}
.y21a{bottom:104.233822px;}
.y213{bottom:104.591976px;}
.y21d{bottom:104.760466px;}
.y1ee{bottom:105.456000px;}
.y19e{bottom:106.663500px;}
.yec{bottom:108.745269px;}
.y1ac{bottom:109.788000px;}
.y234{bottom:110.530885px;}
.y219{bottom:111.068118px;}
.yb9{bottom:111.396000px;}
.y212{bottom:111.426273px;}
.y63{bottom:111.637500px;}
.yb6{bottom:112.545000px;}
.yb3{bottom:113.044500px;}
.y1f1{bottom:113.299486px;}
.y1d2{bottom:113.299818px;}
.ycd{bottom:113.496636px;}
.y43{bottom:113.589000px;}
.ye3{bottom:114.053057px;}
.y1f{bottom:114.118500px;}
.yf0{bottom:114.490052px;}
.y4a{bottom:114.570000px;}
.y28{bottom:114.595500px;}
.y124{bottom:114.814500px;}
.ybc{bottom:114.889500px;}
.yc2{bottom:115.100352px;}
.y179{bottom:115.330500px;}
.y12e{bottom:116.983500px;}
.y174{bottom:118.174500px;}
.y233{bottom:119.415470px;}
.ycc{bottom:119.760516px;}
.y218{bottom:119.952704px;}
.y211{bottom:120.310859px;}
.y111{bottom:120.342000px;}
.y74{bottom:120.837000px;}
.ye2{bottom:120.949860px;}
.y1f7{bottom:121.428313px;}
.yc1{bottom:121.997155px;}
.y91{bottom:122.274000px;}
.y13b{bottom:122.388000px;}
.y19d{bottom:123.102000px;}
.y1d1{bottom:123.218425px;}
.yd6{bottom:123.618504px;}
.y10{bottom:124.179000px;}
.y118{bottom:124.198500px;}
.y87{bottom:124.405500px;}
.y5c{bottom:125.985000px;}
.y232{bottom:126.249767px;}
.y1bd{bottom:126.668534px;}
.y217{bottom:126.787001px;}
.y1d3{bottom:126.880404px;}
.y210{bottom:127.145155px;}
.y7{bottom:129.162000px;}
.y62{bottom:131.961000px;}
.ycf{bottom:133.309047px;}
.y42{bottom:133.912500px;}
.ye8{bottom:134.449140px;}
.y1ab{bottom:134.598000px;}
.y27{bottom:134.919000px;}
.yc7{bottom:134.963018px;}
.y123{bottom:135.138000px;}
.yd4{bottom:136.146266px;}
.y192{bottom:136.617000px;}
.y1bc{bottom:136.709636px;}
.yef{bottom:137.007480px;}
.ye9{bottom:138.176812px;}
.yd0{bottom:139.339664px;}
.ye7{bottom:142.331087px;}
.yd5{bottom:142.410147px;}
.y90{bottom:142.597500px;}
.yc6{bottom:142.844965px;}
.y22e{bottom:144.336036px;}
.y13a{bottom:147.195000px;}
.y117{bottom:149.005500px;}
.y16{bottom:149.025000px;}
.y6{bottom:149.485500px;}
.ye6{bottom:150.213034px;}
.yc5{bottom:150.726912px;}
.y5b{bottom:150.792000px;}
.y22d{bottom:151.170333px;}
.y226{bottom:151.243152px;}
.y1fa{bottom:152.190612px;}
.y110{bottom:152.622000px;}
.ya9{bottom:152.842500px;}
.yce{bottom:153.232094px;}
.y1ca{bottom:153.464239px;}
.y1e{bottom:154.035000px;}
.y41{bottom:154.236000px;}
.y1d0{bottom:154.970405px;}
.y1ff{bottom:155.013419px;}
.y49{bottom:155.218500px;}
.y26{bottom:155.242500px;}
.y19c{bottom:156.177000px;}
.y18{bottom:156.408421px;}
.yee{bottom:157.524499px;}
.y22c{bottom:158.004629px;}
.y23e{bottom:158.077445px;}
.y225{bottom:158.077449px;}
.yd1{bottom:158.155082px;}
.y1b2{bottom:158.640324px;}
.y169{bottom:158.691000px;}
.yc0{bottom:158.903093px;}
.y173{bottom:159.624000px;}
.y122{bottom:159.945000px;}
.ya6{bottom:161.064000px;}
.y16d{bottom:161.194500px;}
.y191{bottom:161.424000px;}
.y189{bottom:162.139347px;}
.ya3{bottom:162.159000px;}
.y86{bottom:162.160500px;}
.ya0{bottom:162.484500px;}
.yd2{bottom:162.776370px;}
.y171{bottom:163.158000px;}
.y1c9{bottom:163.382846px;}
.y12d{bottom:164.254500px;}
.y22b{bottom:164.838926px;}
.y1cf{bottom:164.889012px;}
.y23d{bottom:164.911742px;}
.y224{bottom:164.911745px;}
.ybf{bottom:165.799885px;}
.y172{bottom:166.054500px;}
.y70{bottom:167.206500px;}
.yf{bottom:167.383500px;}
.y8f{bottom:167.404500px;}
.y7e{bottom:168.118500px;}
.y1d6{bottom:168.468162px;}
.y1b1{bottom:168.681426px;}
.y116{bottom:169.329000px;}
.y1f2{bottom:169.676773px;}
.y5{bottom:169.809000px;}
.ye1{bottom:169.908825px;}
.y10f{bottom:170.554500px;}
.y22a{bottom:171.673223px;}
.y23c{bottom:171.746039px;}
.y223{bottom:171.746042px;}
.y139{bottom:172.002000px;}
.y15{bottom:173.832000px;}
.y40{bottom:174.559500px;}
.y1bb{bottom:174.865838px;}
.y5a{bottom:175.600500px;}
.ye0{bottom:176.805606px;}
.yed{bottom:177.165991px;}
.y231{bottom:177.684950px;}
.y1aa{bottom:177.777000px;}
.y1d5{bottom:178.386753px;}
.y229{bottom:178.507519px;}
.y23b{bottom:178.580335px;}
.y222{bottom:178.580339px;}
.y1d{bottom:178.842000px;}
.y25{bottom:179.529000px;}
.y1f3{bottom:182.502313px;}
.ybe{bottom:182.561844px;}
.y1d9{bottom:182.784260px;}
.y170{bottom:183.481500px;}
.y168{bottom:183.498000px;}
.y1dc{bottom:183.523293px;}
.yd3{bottom:184.199535px;}
.y12c{bottom:184.578000px;}
.y121{bottom:184.755000px;}
.y16c{bottom:186.001500px;}
.y190{bottom:186.232500px;}
.y230{bottom:186.569536px;}
.y1b4{bottom:186.915169px;}
.y228{bottom:187.392105px;}
.y23a{bottom:187.464921px;}
.y221{bottom:187.464925px;}
.y6f{bottom:187.530000px;}
.y1dd{bottom:188.145212px;}
.y1d4{bottom:188.304860px;}
.y7d{bottom:188.442000px;}
.ybd{bottom:189.458636px;}
.y10e{bottom:191.476500px;}
.y8e{bottom:192.606000px;}
.y22f{bottom:193.403833px;}
.y185{bottom:193.670368px;}
.y1d8{bottom:194.119665px;}
.y115{bottom:194.137500px;}
.y227{bottom:194.226402px;}
.y239{bottom:194.299218px;}
.y220{bottom:194.299221px;}
.y1db{bottom:194.858698px;}
.y3f{bottom:194.884500px;}
.y1b9{bottom:194.948050px;}
.y138{bottom:195.175500px;}
.y48{bottom:195.865500px;}
.y1b5{bottom:196.956272px;}
.yda{bottom:197.845503px;}
.y14{bottom:198.639000px;}
.y1f4{bottom:200.213773px;}
.yc9{bottom:200.501486px;}
.y1fe{bottom:202.491472px;}
.y1a9{bottom:202.584000px;}
.y1e5{bottom:203.017500px;}
.y19b{bottom:203.446500px;}
.y1c{bottom:203.649000px;}
.ydf{bottom:204.818674px;}
.yd9{bottom:204.916789px;}
.y1ba{bottom:204.989152px;}
.y1d7{bottom:205.455071px;}
.y1da{bottom:206.194104px;}
.y96{bottom:206.229000px;}
.y16b{bottom:206.325000px;}
.y1b3{bottom:206.997381px;}
.y6e{bottom:207.855000px;}
.y16f{bottom:208.288500px;}
.y167{bottom:208.305000px;}
.yc8{bottom:208.383281px;}
.y7c{bottom:208.767000px;}
.y4{bottom:209.235000px;}
.y12b{bottom:209.385000px;}
.y1a3{bottom:209.694000px;}
.ye{bottom:210.589500px;}
.yde{bottom:211.715454px;}
.y10d{bottom:213.892500px;}
.ydd{bottom:218.818564px;}
.y1c3{bottom:219.047717px;}
.y1f0{bottom:219.146715px;}
.y3e{bottom:219.267000px;}
.y47{bottom:221.550000px;}
.y24{bottom:222.708000px;}
.y3{bottom:223.431000px;}
.y13{bottom:223.446000px;}
.y1ce{bottom:223.751976px;}
.y26a{bottom:224.950263px;}
.y263{bottom:225.487496px;}
.y25c{bottom:225.560316px;}
.y1b6{bottom:227.079586px;}
.y1a8{bottom:227.391000px;}
.y120{bottom:227.460000px;}
.y1e4{bottom:227.824500px;}
.y19a{bottom:228.253500px;}
.y137{bottom:228.385500px;}
.y1b{bottom:228.456000px;}
.y7b{bottom:229.090500px;}
.y12a{bottom:229.708500px;}
.y18f{bottom:229.740000px;}
.y1c2{bottom:230.383123px;}
.y95{bottom:230.956500px;}
.y269{bottom:231.784559px;}
.y262{bottom:232.321793px;}
.y25b{bottom:232.394613px;}
.y16e{bottom:232.575000px;}
.y16a{bottom:232.756500px;}
.y26b{bottom:232.799164px;}
.y166{bottom:233.506500px;}
.y1cd{bottom:233.670575px;}
.y1c8{bottom:233.793081px;}
.y1ef{bottom:234.415213px;}
.y1b7{bottom:235.112976px;}
.y268{bottom:238.618856px;}
.y10c{bottom:238.699500px;}
.y261{bottom:239.156090px;}
.y25a{bottom:239.228909px;}
.y8d{bottom:239.875500px;}
.y23{bottom:243.031500px;}
.y1c7{bottom:243.711680px;}
.y267{bottom:245.453153px;}
.y260{bottom:245.990386px;}
.y259{bottom:246.063206px;}
.y136{bottom:246.319500px;}
.y11f{bottom:247.783500px;}
.y12{bottom:248.253000px;}
.y6d{bottom:248.502000px;}
.y18e{bottom:250.063500px;}
.y1a7{bottom:252.198000px;}
.y266{bottom:252.287449px;}
.y1e3{bottom:252.631500px;}
.y25f{bottom:252.824683px;}
.y258{bottom:252.897503px;}
.y199{bottom:253.060500px;}
.y1a{bottom:253.263000px;}
.yd{bottom:253.794000px;}
.y129{bottom:254.515500px;}
.y1b8{bottom:255.194685px;}
.y53{bottom:256.530000px;}
.y2{bottom:257.146500px;}
.y8c{bottom:260.200500px;}
.y265{bottom:261.172035px;}
.y25e{bottom:261.709269px;}
.y257{bottom:261.782088px;}
.y3d{bottom:262.461000px;}
.y7a{bottom:262.902000px;}
.y22{bottom:263.355000px;}
.y10b{bottom:263.506500px;}
.y135{bottom:264.252000px;}
.y26d{bottom:266.515769px;}
.y1cc{bottom:267.932839px;}
.y264{bottom:268.006332px;}
.y11e{bottom:268.107000px;}
.y93{bottom:268.480500px;}
.y25d{bottom:268.543566px;}
.y256{bottom:268.616385px;}
.y6c{bottom:268.825500px;}
.y128{bottom:274.839000px;}
.y18d{bottom:274.870500px;}
.y26c{bottom:274.872720px;}
.y144{bottom:275.365500px;}
.y141{bottom:275.406000px;}
.y1a6{bottom:277.005000px;}
.y1cb{bottom:277.851438px;}
.y198{bottom:277.867500px;}
.y19{bottom:277.941000px;}
.y134{bottom:282.184500px;}
.y79{bottom:283.225500px;}
.y8b{bottom:283.372500px;}
.y1c6{bottom:283.998607px;}
.y21{bottom:287.640000px;}
.y10a{bottom:288.313500px;}
.y11d{bottom:291.279000px;}
.y1bf{bottom:293.827843px;}
.y1c5{bottom:293.917206px;}
.y127{bottom:295.162500px;}
.y143{bottom:295.689000px;}
.y140{bottom:295.729500px;}
.yc{bottom:297.000000px;}
.y6b{bottom:297.880500px;}
.y255{bottom:298.627115px;}
.y254{bottom:298.883404px;}
.y18c{bottom:299.677500px;}
.y1a5{bottom:300.570000px;}
.y4f{bottom:301.474500px;}
.y197{bottom:302.674500px;}
.y2b{bottom:302.710500px;}
.y78{bottom:303.549000px;}
.y1c4{bottom:304.119976px;}
.y1be{bottom:305.163249px;}
.y251{bottom:305.461453px;}
.y24f{bottom:305.717739px;}
.y250{bottom:305.717741px;}
.y20f{bottom:312.295708px;}
.y20e{bottom:312.295710px;}
.y20d{bottom:312.551994px;}
.y109{bottom:313.120500px;}
.y181{bottom:315.219000px;}
.y133{bottom:317.182500px;}
.y20c{bottom:319.130005px;}
.y183{bottom:319.608000px;}
.y126{bottom:319.972500px;}
.y13f{bottom:320.611500px;}
.y1{bottom:321.871500px;}
.y142{bottom:322.320000px;}
.y2a{bottom:323.034000px;}
.y18b{bottom:324.796500px;}
.y196{bottom:325.848000px;}
.y4e{bottom:327.109500px;}
.y77{bottom:328.432500px;}
.y85{bottom:329.424000px;}
.y1a4{bottom:332.125500px;}
.y1e2{bottom:337.000500px;}
.y132{bottom:337.506000px;}
.yb{bottom:362.751000px;}
.y99{bottom:3025.466685px;}
.y9c{bottom:3025.792185px;}
.y9f{bottom:3026.888685px;}
.y1e9{bottom:3029.527185px;}
.y67{bottom:3031.274685px;}
.yf6{bottom:3031.933185px;}
.y157{bottom:3032.276685px;}
.y5f{bottom:3032.471685px;}
.y52{bottom:3032.921685px;}
.y84{bottom:3037.877685px;}
.y15b{bottom:3038.638185px;}
.y98{bottom:3045.790185px;}
.y9b{bottom:3046.115685px;}
.yfd{bottom:3046.216185px;}
.y15d{bottom:3046.383992px;}
.y102{bottom:3046.411185px;}
.y100{bottom:3046.412685px;}
.y9e{bottom:3047.212185px;}
.yf5{bottom:3049.867185px;}
.y66{bottom:3051.598185px;}
.y156{bottom:3052.600185px;}
.y35{bottom:3052.655685px;}
.y165{bottom:3053.368185px;}
.y1e8{bottom:3054.334185px;}
.y5e{bottom:3057.673185px;}
.y51{bottom:3058.556685px;}
.yb2{bottom:3061.817685px;}
.y15a{bottom:3063.445185px;}
.yac{bottom:3063.466185px;}
.yaf{bottom:3063.491685px;}
.yf4{bottom:3067.799685px;}
.yfc{bottom:3071.023185px;}
.y101{bottom:3071.218185px;}
.yff{bottom:3071.219685px;}
.y65{bottom:3071.923185px;}
.y155{bottom:3072.925185px;}
.y34{bottom:3072.980685px;}
.y73{bottom:3075.743685px;}
.y164{bottom:3078.175185px;}
.y1e7{bottom:3079.141185px;}
.y83{bottom:3080.792685px;}
.yf3{bottom:3085.732185px;}
.yb1{bottom:3086.624685px;}
.y159{bottom:3088.252185px;}
.yab{bottom:3088.273185px;}
.yae{bottom:3088.298685px;}
.y154{bottom:3093.248685px;}
.y33{bottom:3093.304185px;}
.yfe{bottom:3095.945685px;}
.y72{bottom:3096.067185px;}
.yfb{bottom:3096.224685px;}
.y15c{bottom:3100.313685px;}
.y82{bottom:3101.116185px;}
.y1e6{bottom:3103.949685px;}
.y64{bottom:3109.576185px;}
.yb0{bottom:3111.434685px;}
.yad{bottom:3112.583685px;}
.yaa{bottom:3113.083185px;}
.y32{bottom:3113.627685px;}
.y158{bottom:3115.369185px;}
.y153{bottom:3118.213185px;}
.y71{bottom:3120.875685px;}
.y81{bottom:3124.444185px;}
.y31{bottom:3133.951185px;}
.y30{bottom:3154.274685px;}
.y148{bottom:3158.729685px;}
.y152{bottom:3159.662685px;}
.y9d{bottom:3161.102685px;}
.y14c{bottom:3161.233185px;}
.y9a{bottom:3162.197685px;}
.y80{bottom:3162.199185px;}
.y97{bottom:3162.523185px;}
.y150{bottom:3163.196685px;}
.y151{bottom:3166.093185px;}
.y2f{bottom:3174.598185px;}
.y14f{bottom:3183.520185px;}
.y147{bottom:3183.536685px;}
.y14b{bottom:3186.040185px;}
.y2e{bottom:3194.923185px;}
.y14a{bottom:3206.363685px;}
.y14e{bottom:3208.327185px;}
.y146{bottom:3208.343685px;}
.y2d{bottom:3219.305685px;}
.y14d{bottom:3232.613685px;}
.y149{bottom:3232.795185px;}
.y145{bottom:3233.545185px;}
.y50{bottom:3256.568685px;}
.y54{bottom:3257.632185px;}
.y2c{bottom:3262.499685px;}
.y7f{bottom:3329.462685px;}
.y3c{bottom:6053.676870px;}
.y3b{bottom:6074.000370px;}
.y3a{bottom:6094.323870px;}
.y39{bottom:6114.647370px;}
.y38{bottom:6155.295870px;}
.y37{bottom:6195.942870px;}
.y36{bottom:6221.627370px;}
.h1c{height:-2663.706992px;}
.h1e{height:7.473663px;}
.h15{height:12.893967px;}
.h14{height:12.893969px;}
.h31{height:14.068149px;}
.h36{height:15.387598px;}
.h35{height:15.387610px;}
.h30{height:16.412755px;}
.h22{height:16.518285px;}
.h33{height:16.615884px;}
.h32{height:16.733348px;}
.h12{height:16.767396px;}
.h16{height:17.191885px;}
.h13{height:19.162769px;}
.h2e{height:19.798155px;}
.h37{height:20.317835px;}
.h25{height:20.669246px;}
.h2a{height:21.722800px;}
.h29{height:22.272924px;}
.h34{height:23.220383px;}
.h27{height:24.113996px;}
.h1d{height:24.303080px;}
.h20{height:26.074291px;}
.h8{height:26.791603px;}
.h2d{height:27.371390px;}
.h26{height:27.558896px;}
.h10{height:28.206206px;}
.h2b{height:28.963734px;}
.h18{height:33.108418px;}
.h17{height:33.787780px;}
.h5{height:34.765576px;}
.h7{height:35.259465px;}
.h4{height:35.721988px;}
.h1a{height:40.187405px;}
.h1f{height:41.972997px;}
.h9{height:43.590586px;}
.h19{height:44.652373px;}
.hd{height:47.585494px;}
.hc{height:48.174586px;}
.h3{height:48.894586px;}
.he{height:53.148586px;}
.hb{height:53.210693px;}
.h1b{height:63.030586px;}
.h2{height:64.299668px;}
.hf{height:72.840146px;}
.h6{height:91.054594px;}
.h2c{height:91.935269px;}
.h23{height:111.095782px;}
.h21{height:205.400085px;}
.h11{height:229.881170px;}
.h28{height:246.630013px;}
.h24{height:312.275865px;}
.ha{height:314.484000px;}
.h2f{height:328.001922px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w6{width:-2770.432185px;}
.w7{width:87.491199px;}
.w8{width:291.677925px;}
.w4{width:333.363113px;}
.w3{width:416.691300px;}
.w2{width:416.724081px;}
.w5{width:476.187229px;}
.w9{width:583.333957px;}
.wb{width:595.267192px;}
.wa{width:595.276717px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x89{left:4.184426px;}
.x55{left:6.421714px;}
.x56{left:11.270905px;}
.xb0{left:14.106881px;}
.x27{left:16.441500px;}
.xa{left:18.136500px;}
.x80{left:21.258000px;}
.x1b{left:22.393500px;}
.xbb{left:23.520573px;}
.x1f{left:24.661500px;}
.x69{left:28.347000px;}
.x20{left:32.908500px;}
.x35{left:36.141000px;}
.xbc{left:37.465116px;}
.xbd{left:39.189710px;}
.x16{left:42.237000px;}
.xb{left:43.275000px;}
.xa5{left:45.470220px;}
.x86{left:48.049500px;}
.x3f{left:55.474500px;}
.x5d{left:57.458391px;}
.x8d{left:58.537500px;}
.x1{left:60.171000px;}
.x6c{left:71.623500px;}
.xc{left:75.247500px;}
.xba{left:76.922058px;}
.x8b{left:78.910500px;}
.x58{left:80.960340px;}
.x59{left:82.999692px;}
.x5a{left:87.158359px;}
.x5b{left:89.981662px;}
.x5f{left:91.420871px;}
.x57{left:94.270987px;}
.x30{left:96.786303px;}
.x8c{left:98.841000px;}
.x5c{left:99.923978px;}
.x44{left:102.046500px;}
.x6b{left:107.974500px;}
.xae{left:108.998260px;}
.x5e{left:110.446631px;}
.x81{left:112.855500px;}
.x8{left:120.988740px;}
.x9b{left:126.453163px;}
.x9c{left:129.382179px;}
.xab{left:130.472405px;}
.x7{left:131.812500px;}
.x9d{left:135.362956px;}
.x9{left:136.401000px;}
.x9e{left:139.423284px;}
.x31{left:141.831000px;}
.x52{left:143.539962px;}
.x99{left:145.590030px;}
.x9a{left:149.464385px;}
.x50{left:152.068736px;}
.x54{left:153.310417px;}
.x51{left:156.654094px;}
.x28{left:159.931500px;}
.xa2{left:161.186963px;}
.x53{left:162.203270px;}
.x29{left:163.222500px;}
.x4d{left:165.425903px;}
.xa6{left:168.848572px;}
.x21{left:171.619500px;}
.xd{left:174.376661px;}
.x2f{left:178.338000px;}
.x4e{left:183.825576px;}
.x4f{left:187.057053px;}
.xb1{left:191.216674px;}
.x1a{left:193.065000px;}
.xb4{left:203.041017px;}
.xad{left:204.346681px;}
.x4{left:206.259000px;}
.x94{left:208.656567px;}
.x4c{left:213.039276px;}
.x46{left:219.661719px;}
.x48{left:221.345250px;}
.x47{left:224.442204px;}
.x3{left:227.187000px;}
.x93{left:230.173402px;}
.x45{left:231.605629px;}
.x97{left:233.964587px;}
.x49{left:239.334398px;}
.x95{left:245.218740px;}
.x40{left:247.885500px;}
.x36{left:250.866000px;}
.x8e{left:252.216513px;}
.x18{left:253.971000px;}
.x96{left:255.259842px;}
.x92{left:258.288494px;}
.x91{left:263.680989px;}
.x8f{left:265.269952px;}
.x22{left:267.222000px;}
.x5{left:272.739000px;}
.x2{left:278.695500px;}
.x41{left:280.614000px;}
.x90{left:283.763201px;}
.xac{left:293.478826px;}
.x62{left:295.968523px;}
.x6{left:299.542500px;}
.x24{left:302.353500px;}
.x82{left:304.959000px;}
.xa8{left:316.363173px;}
.xa1{left:324.531684px;}
.xa0{left:326.910541px;}
.x4b{left:331.171096px;}
.x4a{left:332.313348px;}
.x12{left:334.486500px;}
.xa7{left:336.545283px;}
.x83{left:337.686000px;}
.x64{left:338.929389px;}
.x63{left:340.865817px;}
.x9f{left:344.865230px;}
.x61{left:352.209978px;}
.x87{left:354.331500px;}
.x88{left:358.813500px;}
.xaf{left:362.978784px;}
.x65{left:366.191595px;}
.xa9{left:371.020500px;}
.x13{left:376.377000px;}
.x6d{left:384.096000px;}
.x8a{left:385.510500px;}
.x2e{left:391.294500px;}
.xb6{left:403.703647px;}
.xbf{left:406.091375px;}
.x38{left:407.652000px;}
.xb5{left:411.392232px;}
.x2d{left:413.859000px;}
.x23{left:424.509000px;}
.x60{left:441.645933px;}
.x6a{left:446.589000px;}
.x84{left:450.708000px;}
.x42{left:461.125500px;}
.xa3{left:462.785210px;}
.x37{left:465.589500px;}
.x26{left:468.202500px;}
.x98{left:469.815476px;}
.xa4{left:485.752395px;}
.xb3{left:487.238394px;}
.xb8{left:492.609352px;}
.x43{left:493.852500px;}
.x7c{left:498.318000px;}
.xbe{left:508.178734px;}
.xb9{left:513.123337px;}
.xc0{left:514.190183px;}
.xb7{left:516.420894px;}
.xb2{left:517.763165px;}
.x6e{left:519.444000px;}
.x7d{left:552.988500px;}
.x7e{left:558.054000px;}
.x7f{left:564.162000px;}
.x85{left:575.032500px;}
.xf{left:3018.463185px;}
.x76{left:3021.296685px;}
.x39{left:3022.786185px;}
.x1d{left:3024.700185px;}
.x66{left:3028.385685px;}
.x1e{left:3032.947185px;}
.x32{left:3036.179685px;}
.x14{left:3042.275685px;}
.x3a{left:3055.513185px;}
.x67{left:3061.112685px;}
.xaa{left:3075.286185px;}
.x6f{left:3097.642185px;}
.x77{left:3112.894185px;}
.x2c{left:3178.376685px;}
.x19{left:3193.103685px;}
.x70{left:3238.996185px;}
.x3b{left:3247.924185px;}
.x33{left:3250.904685px;}
.x15{left:3254.009685px;}
.x3c{left:3280.652685px;}
.xe{left:3299.770185px;}
.x78{left:3304.997685px;}
.x79{left:3337.724685px;}
.x71{left:3341.443185px;}
.x1c{left:3360.322185px;}
.x17{left:3370.243185px;}
.x2b{left:3391.333185px;}
.x2a{left:3413.897685px;}
.x68{left:3446.627685px;}
.x7a{left:3450.746685px;}
.x3d{left:3461.164185px;}
.x34{left:3465.628185px;}
.x25{left:3468.241185px;}
.x3e{left:3493.891185px;}
.x72{left:3498.356685px;}
.x73{left:3553.027185px;}
.x74{left:3558.092685px;}
.x75{left:3564.200685px;}
.x7b{left:3575.071185px;}
.x10{left:6334.563870px;}
.x11{left:6376.454370px;}
@media print{
.v3{vertical-align:-7.466667pt;}
.v1{vertical-align:-4.714667pt;}
.v6{vertical-align:-0.911240pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.875507pt;}
.v2{vertical-align:3.781333pt;}
.v4{vertical-align:12.565333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:5.714506pt;}
.ls4{letter-spacing:7.272733pt;}
.ls5{letter-spacing:13.283467pt;}
.ls6{letter-spacing:14.545467pt;}
.ls1{letter-spacing:46.666152pt;}
.ls2{letter-spacing:46.671485pt;}
.ls8{letter-spacing:205.542534pt;}
.ls3{letter-spacing:422.833320pt;}
.ws2a{word-spacing:-33.049467pt;}
.wsc{word-spacing:-21.818200pt;}
.ws15{word-spacing:-19.128267pt;}
.ws1{word-spacing:-14.545467pt;}
.ws29{word-spacing:-11.955200pt;}
.ws35{word-spacing:-11.702746pt;}
.ws2{word-spacing:-11.539466pt;}
.ws2c{word-spacing:-11.220414pt;}
.ws2d{word-spacing:-9.817847pt;}
.ws30{word-spacing:-9.658921pt;}
.ws19{word-spacing:-7.801989pt;}
.ws2f{word-spacing:-7.244191pt;}
.ws1a{word-spacing:-6.826730pt;}
.ws34{word-spacing:-6.087074pt;}
.ws33{word-spacing:-5.217519pt;}
.ws27{word-spacing:-2.771792pt;}
.ws12{word-spacing:-2.501820pt;}
.ws14{word-spacing:-1.687274pt;}
.ws9{word-spacing:-1.512729pt;}
.ws17{word-spacing:-1.338183pt;}
.ws13{word-spacing:-0.581819pt;}
.ws4{word-spacing:-0.174546pt;}
.wsd{word-spacing:-0.058182pt;}
.ws1b{word-spacing:-0.026461pt;}
.ws2e{word-spacing:-0.026058pt;}
.ws36{word-spacing:-0.019440pt;}
.ws1d{word-spacing:-0.004770pt;}
.ws8{word-spacing:-0.002395pt;}
.wsa{word-spacing:-0.002275pt;}
.wsb{word-spacing:-0.002081pt;}
.ws3{word-spacing:-0.001565pt;}
.ws1e{word-spacing:-0.000034pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:0.001394pt;}
.ws10{word-spacing:0.465455pt;}
.ws1f{word-spacing:1.992141pt;}
.ws20{word-spacing:2.215968pt;}
.ws1c{word-spacing:2.231622pt;}
.ws5{word-spacing:2.443638pt;}
.wsf{word-spacing:3.374548pt;}
.ws6{word-spacing:6.341823pt;}
.ws21{word-spacing:7.257131pt;}
.ws22{word-spacing:7.261476pt;}
.ws23{word-spacing:9.076371pt;}
.ws25{word-spacing:10.938191pt;}
.ws11{word-spacing:13.847284pt;}
.ws28{word-spacing:14.545467pt;}
.ws18{word-spacing:28.008067pt;}
.ws37{word-spacing:28.072282pt;}
.ws38{word-spacing:28.072288pt;}
.ws7{word-spacing:37.178213pt;}
.ws2b{word-spacing:61.543227pt;}
.ws31{word-spacing:73.268451pt;}
.ws24{word-spacing:94.312806pt;}
.ws26{word-spacing:106.123725pt;}
.wse{word-spacing:208.571294pt;}
.ws32{word-spacing:214.175293pt;}
._24{margin-left:-512.965140pt;}
._1c{margin-left:-129.342863pt;}
._1b{margin-left:-109.761497pt;}
._10{margin-left:-7.796370pt;}
._b{margin-left:-6.690915pt;}
._d{margin-left:-4.654549pt;}
._1{margin-left:-3.665458pt;}
._0{margin-left:-2.082853pt;}
._8{margin-left:-0.930910pt;}
._f{width:0.989092pt;}
._4{width:1.882387pt;}
._5{width:3.152999pt;}
._2{width:4.141252pt;}
._19{width:5.088586pt;}
._3{width:6.305997pt;}
._a{width:7.666571pt;}
._1f{width:13.533286pt;}
._1d{width:15.036884pt;}
._9{width:16.523650pt;}
._16{width:18.622713pt;}
._13{width:22.877407pt;}
._23{width:24.834737pt;}
._15{width:27.985478pt;}
._17{width:31.883663pt;}
._7{width:71.444275pt;}
._e{width:162.818783pt;}
._12{width:163.712078pt;}
._1a{width:271.712743pt;}
._21{width:392.362770pt;}
._20{width:463.303619pt;}
._18{width:517.610896pt;}
._1e{width:536.607907pt;}
._14{width:719.079723pt;}
._6{width:733.906389pt;}
._22{width:748.727723pt;}
._c{width:766.895185pt;}
._11{width:1024.931763pt;}
.fs12{font-size:8.743823pt;}
.fs11{font-size:9.844800pt;}
.fsb{font-size:15.085315pt;}
.fsa{font-size:15.085318pt;}
.fs1e{font-size:16.459052pt;}
.fs1d{font-size:19.202126pt;}
.fs1f{font-size:19.439777pt;}
.fs8{font-size:19.617039pt;}
.fsc{font-size:20.113671pt;}
.fs13{font-size:20.915840pt;}
.fs9{font-size:22.419509pt;}
.fs1c{font-size:23.162880pt;}
.fs21{font-size:23.770881pt;}
.fs15{font-size:24.182015pt;}
.fse{font-size:25.929256pt;}
.fs18{font-size:26.058240pt;}
.fsd{font-size:26.461306pt;}
.fs20{font-size:27.166721pt;}
.fs17{font-size:28.212204pt;}
.fs10{font-size:28.433423pt;}
.fs1b{font-size:28.953600pt;}
.fs4{font-size:31.880533pt;}
.fs16{font-size:32.242570pt;}
.fs19{font-size:34.744320pt;}
.fs6{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fsf{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs5{font-size:67.089920pt;}
.fs0{font-size:76.513067pt;}
.fs1a{font-size:110.283724pt;}
.fs14{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y162{bottom:1.798454pt;}
.y163{bottom:1.922471pt;}
.ya{bottom:3.442667pt;}
.y160{bottom:10.441641pt;}
.y161{bottom:10.565658pt;}
.y240{bottom:11.177412pt;}
.y252{bottom:13.666352pt;}
.y94{bottom:14.504117pt;}
.y24e{bottom:14.511082pt;}
.y207{bottom:17.289953pt;}
.y9{bottom:18.131024pt;}
.y8{bottom:18.757333pt;}
.y15e{bottom:19.096588pt;}
.y15f{bottom:19.220605pt;}
.y253{bottom:19.445333pt;}
.y23f{bottom:19.667012pt;}
.y1df{bottom:19.970645pt;}
.yeb{bottom:20.421607pt;}
.y24d{bottom:20.586012pt;}
.y11c{bottom:20.941333pt;}
.y20b{bottom:21.408000pt;}
.y186{bottom:21.923068pt;}
.ya2{bottom:22.602667pt;}
.ya5{bottom:22.892000pt;}
.ya8{bottom:23.866667pt;}
.y206{bottom:24.528353pt;}
.y17{bottom:24.962667pt;}
.yf2{bottom:25.708593pt;}
.y1b0{bottom:25.941333pt;}
.y1ed{bottom:26.212000pt;}
.y24c{bottom:26.660943pt;}
.y6a{bottom:27.765333pt;}
.yfa{bottom:28.350667pt;}
.y178{bottom:28.656000pt;}
.y61{bottom:28.829333pt;}
.y1a2{bottom:28.881333pt;}
.y56{bottom:29.229333pt;}
.y20a{bottom:29.733333pt;}
.y18a{bottom:30.766667pt;}
.y1af{bottom:31.437333pt;}
.y205{bottom:31.766753pt;}
.y13e{bottom:31.954667pt;}
.y24b{bottom:32.735873pt;}
.y247{bottom:33.213415pt;}
.y8a{bottom:33.634667pt;}
.y17c{bottom:34.310667pt;}
.y182{bottom:34.669333pt;}
.y195{bottom:35.389333pt;}
.yea{bottom:35.937095pt;}
.ycb{bottom:37.269567pt;}
.y11b{bottom:38.210667pt;}
.y24a{bottom:38.810804pt;}
.y204{bottom:39.005153pt;}
.y246{bottom:39.288345pt;}
.y243{bottom:39.353073pt;}
.ya1{bottom:40.668000pt;}
.ya4{bottom:40.957333pt;}
.y105{bottom:41.046667pt;}
.y17e{bottom:41.195829pt;}
.y108{bottom:41.220000pt;}
.ya7{bottom:41.932000pt;}
.y1fc{bottom:42.197413pt;}
.y1de{bottom:42.284212pt;}
.y131{bottom:42.542667pt;}
.y1f6{bottom:42.601267pt;}
.y59{bottom:42.860000pt;}
.y1a1{bottom:43.493333pt;}
.y1e1{bottom:44.222812pt;}
.yca{bottom:44.275742pt;}
.yf9{bottom:44.292000pt;}
.y114{bottom:44.804000pt;}
.y69{bottom:45.830667pt;}
.y202{bottom:46.049381pt;}
.y203{bottom:46.243553pt;}
.y249{bottom:46.708213pt;}
.y177{bottom:46.721333pt;}
.y46{bottom:46.770667pt;}
.y245{bottom:47.185754pt;}
.y242{bottom:47.250483pt;}
.y180{bottom:47.404000pt;}
.y4d{bottom:47.644000pt;}
.y209{bottom:47.800000pt;}
.y1ec{bottom:48.262667pt;}
.y1f9{bottom:49.848118pt;}
.y60{bottom:51.230667pt;}
.y55{bottom:52.016000pt;}
.y1fb{bottom:52.386522pt;}
.y248{bottom:52.783144pt;}
.y244{bottom:53.260685pt;}
.y241{bottom:53.325413pt;}
.y1ae{bottom:53.488000pt;}
.y184{bottom:53.925333pt;}
.y13d{bottom:54.004000pt;}
.y1e0{bottom:54.298728pt;}
.ybb{bottom:54.914667pt;}
.y1c1{bottom:55.097109pt;}
.y11a{bottom:55.478667pt;}
.y17b{bottom:56.361333pt;}
.y1f5{bottom:56.362678pt;}
.yb5{bottom:56.380000pt;}
.yb8{bottom:56.402667pt;}
.y200{bottom:56.659313pt;}
.ydc{bottom:57.258787pt;}
.y194{bottom:57.440000pt;}
.y1a0{bottom:58.105333pt;}
.yf8{bottom:60.232000pt;}
.y130{bottom:62.468000pt;}
.y104{bottom:63.097333pt;}
.y107{bottom:63.270667pt;}
.y68{bottom:63.897333pt;}
.ydb{bottom:64.264973pt;}
.y176{bottom:64.788000pt;}
.y45{bottom:64.837333pt;}
.y58{bottom:64.910667pt;}
.y1c0{bottom:65.173025pt;}
.y4c{bottom:65.709333pt;}
.y201{bottom:65.793182pt;}
.y208{bottom:65.865333pt;}
.y113{bottom:66.854667pt;}
.y76{bottom:67.293333pt;}
.y1f8{bottom:67.763158pt;}
.y188{bottom:68.255706pt;}
.y17f{bottom:69.454667pt;}
.y1eb{bottom:70.313333pt;}
.y29{bottom:70.440000pt;}
.yf1{bottom:70.811333pt;}
.y89{bottom:71.781333pt;}
.y11{bottom:71.977333pt;}
.y238{bottom:73.949954pt;}
.y216{bottom:74.745854pt;}
.y13c{bottom:74.952000pt;}
.y1ad{bottom:75.538667pt;}
.yf7{bottom:76.172000pt;}
.ye5{bottom:76.555714pt;}
.yba{bottom:76.965333pt;}
.yd8{bottom:78.396136pt;}
.y17a{bottom:78.412000pt;}
.yb4{bottom:78.430667pt;}
.yb7{bottom:78.453333pt;}
.y21f{bottom:79.148074pt;}
.y193{bottom:79.492000pt;}
.y125{bottom:80.006667pt;}
.y237{bottom:80.024884pt;}
.y19f{bottom:80.200000pt;}
.y21c{bottom:80.502425pt;}
.y1fd{bottom:80.598540pt;}
.y215{bottom:80.820785pt;}
.y12f{bottom:82.393333pt;}
.ye4{bottom:82.686206pt;}
.y175{bottom:82.853333pt;}
.y44{bottom:82.902667pt;}
.y20{bottom:83.373333pt;}
.yc4{bottom:83.693970pt;}
.y4b{bottom:83.774667pt;}
.y112{bottom:84.920000pt;}
.y106{bottom:85.250667pt;}
.y75{bottom:85.358667pt;}
.y103{bottom:85.498667pt;}
.y236{bottom:86.099814pt;}
.y21b{bottom:86.577356pt;}
.y214{bottom:86.895715pt;}
.y57{bottom:86.961333pt;}
.y21e{bottom:87.045484pt;}
.yd7{bottom:88.725108pt;}
.y17d{bottom:89.133333pt;}
.yc3{bottom:89.824294pt;}
.y88{bottom:89.846667pt;}
.y5d{bottom:89.936000pt;}
.y92{bottom:90.622667pt;}
.y187{bottom:92.173841pt;}
.y235{bottom:92.174745pt;}
.y119{bottom:92.333333pt;}
.y1ea{bottom:92.365333pt;}
.y21a{bottom:92.652286pt;}
.y213{bottom:92.970646pt;}
.y21d{bottom:93.120414pt;}
.y1ee{bottom:93.738667pt;}
.y19e{bottom:94.812000pt;}
.yec{bottom:96.662461pt;}
.y1ac{bottom:97.589333pt;}
.y234{bottom:98.249675pt;}
.y219{bottom:98.727216pt;}
.yb9{bottom:99.018667pt;}
.y212{bottom:99.045576pt;}
.y63{bottom:99.233333pt;}
.yb6{bottom:100.040000pt;}
.yb3{bottom:100.484000pt;}
.y1f1{bottom:100.710654pt;}
.y1d2{bottom:100.710950pt;}
.ycd{bottom:100.885898pt;}
.y43{bottom:100.968000pt;}
.ye3{bottom:101.380495pt;}
.y1f{bottom:101.438667pt;}
.yf0{bottom:101.768935pt;}
.y4a{bottom:101.840000pt;}
.y28{bottom:101.862667pt;}
.y124{bottom:102.057333pt;}
.ybc{bottom:102.124000pt;}
.yc2{bottom:102.311424pt;}
.y179{bottom:102.516000pt;}
.y12e{bottom:103.985333pt;}
.y174{bottom:105.044000pt;}
.y233{bottom:106.147085pt;}
.ycc{bottom:106.453792pt;}
.y218{bottom:106.624626pt;}
.y211{bottom:106.942985pt;}
.y111{bottom:106.970667pt;}
.y74{bottom:107.410667pt;}
.ye2{bottom:107.510987pt;}
.y1f7{bottom:107.936278pt;}
.yc1{bottom:108.441916pt;}
.y91{bottom:108.688000pt;}
.y13b{bottom:108.789333pt;}
.y19d{bottom:109.424000pt;}
.y1d1{bottom:109.527489pt;}
.yd6{bottom:109.883114pt;}
.y10{bottom:110.381333pt;}
.y118{bottom:110.398667pt;}
.y87{bottom:110.582667pt;}
.y5c{bottom:111.986667pt;}
.y232{bottom:112.222015pt;}
.y1bd{bottom:112.594252pt;}
.y217{bottom:112.699556pt;}
.y1d3{bottom:112.782581pt;}
.y210{bottom:113.017916pt;}
.y7{bottom:114.810667pt;}
.y62{bottom:117.298667pt;}
.ycf{bottom:118.496931pt;}
.y42{bottom:119.033333pt;}
.ye8{bottom:119.510347pt;}
.y1ab{bottom:119.642667pt;}
.y27{bottom:119.928000pt;}
.yc7{bottom:119.967127pt;}
.y123{bottom:120.122667pt;}
.yd4{bottom:121.018903pt;}
.y192{bottom:121.437333pt;}
.y1bc{bottom:121.519677pt;}
.yef{bottom:121.784427pt;}
.ye9{bottom:122.823832pt;}
.yd0{bottom:123.857479pt;}
.ye7{bottom:126.516522pt;}
.yd5{bottom:126.586797pt;}
.y90{bottom:126.753333pt;}
.yc6{bottom:126.973302pt;}
.y22e{bottom:128.298699pt;}
.y13a{bottom:130.840000pt;}
.y117{bottom:132.449333pt;}
.y16{bottom:132.466667pt;}
.y6{bottom:132.876000pt;}
.ye6{bottom:133.522697pt;}
.yc5{bottom:133.979477pt;}
.y5b{bottom:134.037333pt;}
.y22d{bottom:134.373629pt;}
.y226{bottom:134.438357pt;}
.y1fa{bottom:135.280544pt;}
.y110{bottom:135.664000pt;}
.ya9{bottom:135.860000pt;}
.yce{bottom:136.206305pt;}
.y1ca{bottom:136.412657pt;}
.y1e{bottom:136.920000pt;}
.y41{bottom:137.098667pt;}
.y1d0{bottom:137.751471pt;}
.y1ff{bottom:137.789706pt;}
.y49{bottom:137.972000pt;}
.y26{bottom:137.993333pt;}
.y19c{bottom:138.824000pt;}
.y18{bottom:139.029707pt;}
.yee{bottom:140.021777pt;}
.y22c{bottom:140.448559pt;}
.y23e{bottom:140.513285pt;}
.y225{bottom:140.513288pt;}
.yd1{bottom:140.582295pt;}
.y1b2{bottom:141.013621pt;}
.y169{bottom:141.058667pt;}
.yc0{bottom:141.247194pt;}
.y173{bottom:141.888000pt;}
.y122{bottom:142.173333pt;}
.ya6{bottom:143.168000pt;}
.y16d{bottom:143.284000pt;}
.y191{bottom:143.488000pt;}
.y189{bottom:144.123864pt;}
.ya3{bottom:144.141333pt;}
.y86{bottom:144.142667pt;}
.ya0{bottom:144.430667pt;}
.yd2{bottom:144.690107pt;}
.y171{bottom:145.029333pt;}
.y1c9{bottom:145.229197pt;}
.y12d{bottom:146.004000pt;}
.y22b{bottom:146.523490pt;}
.y1cf{bottom:146.568011pt;}
.y23d{bottom:146.588215pt;}
.y224{bottom:146.588218pt;}
.ybf{bottom:147.377675pt;}
.y172{bottom:147.604000pt;}
.y70{bottom:148.628000pt;}
.yf{bottom:148.785333pt;}
.y8f{bottom:148.804000pt;}
.y7e{bottom:149.438667pt;}
.y1d6{bottom:149.749477pt;}
.y1b1{bottom:149.939045pt;}
.y116{bottom:150.514667pt;}
.y1f2{bottom:150.823798pt;}
.y5{bottom:150.941333pt;}
.ye1{bottom:151.030067pt;}
.y10f{bottom:151.604000pt;}
.y22a{bottom:152.598420pt;}
.y23c{bottom:152.663146pt;}
.y223{bottom:152.663149pt;}
.y139{bottom:152.890667pt;}
.y15{bottom:154.517333pt;}
.y40{bottom:155.164000pt;}
.y1bb{bottom:155.436300pt;}
.y5a{bottom:156.089333pt;}
.ye0{bottom:157.160539pt;}
.yed{bottom:157.480880pt;}
.y231{bottom:157.942178pt;}
.y1aa{bottom:158.024000pt;}
.y1d5{bottom:158.566003pt;}
.y229{bottom:158.673351pt;}
.y23b{bottom:158.738076pt;}
.y222{bottom:158.738079pt;}
.y1d{bottom:158.970667pt;}
.y25{bottom:159.581333pt;}
.y1f3{bottom:162.224278pt;}
.ybe{bottom:162.277195pt;}
.y1d9{bottom:162.474898pt;}
.y170{bottom:163.094667pt;}
.y168{bottom:163.109333pt;}
.y1dc{bottom:163.131816pt;}
.yd3{bottom:163.732920pt;}
.y12c{bottom:164.069333pt;}
.y121{bottom:164.226667pt;}
.y16c{bottom:165.334667pt;}
.y190{bottom:165.540000pt;}
.y230{bottom:165.839588pt;}
.y1b4{bottom:166.146817pt;}
.y228{bottom:166.570760pt;}
.y23a{bottom:166.635485pt;}
.y221{bottom:166.635488pt;}
.y6f{bottom:166.693333pt;}
.y1dd{bottom:167.240188pt;}
.y1d4{bottom:167.382098pt;}
.y7d{bottom:167.504000pt;}
.ybd{bottom:168.407677pt;}
.y10e{bottom:170.201333pt;}
.y8e{bottom:171.205333pt;}
.y22f{bottom:171.914518pt;}
.y185{bottom:172.151438pt;}
.y1d8{bottom:172.550814pt;}
.y115{bottom:172.566667pt;}
.y227{bottom:172.645691pt;}
.y239{bottom:172.710416pt;}
.y220{bottom:172.710419pt;}
.y1db{bottom:173.207732pt;}
.y3f{bottom:173.230667pt;}
.y1b9{bottom:173.287155pt;}
.y138{bottom:173.489333pt;}
.y48{bottom:174.102667pt;}
.y1b5{bottom:175.072241pt;}
.yda{bottom:175.862669pt;}
.y14{bottom:176.568000pt;}
.y1f4{bottom:177.967798pt;}
.yc9{bottom:178.223543pt;}
.y1fe{bottom:179.992420pt;}
.y1a9{bottom:180.074667pt;}
.y1e5{bottom:180.460000pt;}
.y19b{bottom:180.841333pt;}
.y1c{bottom:181.021333pt;}
.ydf{bottom:182.061043pt;}
.yd9{bottom:182.148257pt;}
.y1ba{bottom:182.212580pt;}
.y1d7{bottom:182.626729pt;}
.y1da{bottom:183.283648pt;}
.y96{bottom:183.314667pt;}
.y16b{bottom:183.400000pt;}
.y1b3{bottom:183.997672pt;}
.y6e{bottom:184.760000pt;}
.y16f{bottom:185.145333pt;}
.y167{bottom:185.160000pt;}
.yc8{bottom:185.229583pt;}
.y7c{bottom:185.570667pt;}
.y4{bottom:185.986667pt;}
.y12b{bottom:186.120000pt;}
.y1a3{bottom:186.394667pt;}
.ye{bottom:187.190667pt;}
.yde{bottom:188.191515pt;}
.y10d{bottom:190.126667pt;}
.ydd{bottom:194.505390pt;}
.y1c3{bottom:194.709082pt;}
.y1f0{bottom:194.797080pt;}
.y3e{bottom:194.904000pt;}
.y47{bottom:196.933333pt;}
.y24{bottom:197.962667pt;}
.y3{bottom:198.605333pt;}
.y13{bottom:198.618667pt;}
.y1ce{bottom:198.890645pt;}
.y26a{bottom:199.955789pt;}
.y263{bottom:200.433330pt;}
.y25c{bottom:200.498059pt;}
.y1b6{bottom:201.848521pt;}
.y1a8{bottom:202.125333pt;}
.y120{bottom:202.186667pt;}
.y1e4{bottom:202.510667pt;}
.y19a{bottom:202.892000pt;}
.y137{bottom:203.009333pt;}
.y1b{bottom:203.072000pt;}
.y7b{bottom:203.636000pt;}
.y12a{bottom:204.185333pt;}
.y18f{bottom:204.213333pt;}
.y1c2{bottom:204.784998pt;}
.y95{bottom:205.294667pt;}
.y269{bottom:206.030719pt;}
.y262{bottom:206.508261pt;}
.y25b{bottom:206.572989pt;}
.y16e{bottom:206.733333pt;}
.y16a{bottom:206.894667pt;}
.y26b{bottom:206.932591pt;}
.y166{bottom:207.561333pt;}
.y1cd{bottom:207.707178pt;}
.y1c8{bottom:207.816072pt;}
.y1ef{bottom:208.369078pt;}
.y1b7{bottom:208.989312pt;}
.y268{bottom:212.105650pt;}
.y10c{bottom:212.177333pt;}
.y261{bottom:212.583191pt;}
.y25a{bottom:212.647919pt;}
.y8d{bottom:213.222667pt;}
.y23{bottom:216.028000pt;}
.y1c7{bottom:216.632605pt;}
.y267{bottom:218.180580pt;}
.y260{bottom:218.658121pt;}
.y259{bottom:218.722850pt;}
.y136{bottom:218.950667pt;}
.y11f{bottom:220.252000pt;}
.y12{bottom:220.669333pt;}
.y6d{bottom:220.890667pt;}
.y18e{bottom:222.278667pt;}
.y1a7{bottom:224.176000pt;}
.y266{bottom:224.255511pt;}
.y1e3{bottom:224.561333pt;}
.y25f{bottom:224.733052pt;}
.y258{bottom:224.797780pt;}
.y199{bottom:224.942667pt;}
.y1a{bottom:225.122667pt;}
.yd{bottom:225.594667pt;}
.y129{bottom:226.236000pt;}
.y1b8{bottom:226.839720pt;}
.y53{bottom:228.026667pt;}
.y2{bottom:228.574667pt;}
.y8c{bottom:231.289333pt;}
.y265{bottom:232.152920pt;}
.y25e{bottom:232.630461pt;}
.y257{bottom:232.695190pt;}
.y3d{bottom:233.298667pt;}
.y7a{bottom:233.690667pt;}
.y22{bottom:234.093333pt;}
.y10b{bottom:234.228000pt;}
.y135{bottom:234.890667pt;}
.y26d{bottom:236.902906pt;}
.y1cc{bottom:238.162523pt;}
.y264{bottom:238.227851pt;}
.y11e{bottom:238.317333pt;}
.y93{bottom:238.649333pt;}
.y25d{bottom:238.705392pt;}
.y256{bottom:238.770120pt;}
.y6c{bottom:238.956000pt;}
.y128{bottom:244.301333pt;}
.y18d{bottom:244.329333pt;}
.y26c{bottom:244.331306pt;}
.y144{bottom:244.769333pt;}
.y141{bottom:244.805333pt;}
.y1a6{bottom:246.226667pt;}
.y1cb{bottom:246.979056pt;}
.y198{bottom:246.993333pt;}
.y19{bottom:247.058667pt;}
.y134{bottom:250.830667pt;}
.y79{bottom:251.756000pt;}
.y8b{bottom:251.886667pt;}
.y1c6{bottom:252.443206pt;}
.y21{bottom:255.680000pt;}
.y10a{bottom:256.278667pt;}
.y11d{bottom:258.914667pt;}
.y1bf{bottom:261.180305pt;}
.y1c5{bottom:261.259739pt;}
.y127{bottom:262.366667pt;}
.y143{bottom:262.834667pt;}
.y140{bottom:262.870667pt;}
.yc{bottom:264.000000pt;}
.y6b{bottom:264.782667pt;}
.y255{bottom:265.446324pt;}
.y254{bottom:265.674137pt;}
.y18c{bottom:266.380000pt;}
.y1a5{bottom:267.173333pt;}
.y4f{bottom:267.977333pt;}
.y197{bottom:269.044000pt;}
.y2b{bottom:269.076000pt;}
.y78{bottom:269.821333pt;}
.y1c4{bottom:270.328868pt;}
.y1be{bottom:271.256221pt;}
.y251{bottom:271.521292pt;}
.y24f{bottom:271.749102pt;}
.y250{bottom:271.749103pt;}
.y20f{bottom:277.596185pt;}
.y20e{bottom:277.596187pt;}
.y20d{bottom:277.823995pt;}
.y109{bottom:278.329333pt;}
.y181{bottom:280.194667pt;}
.y133{bottom:281.940000pt;}
.y20c{bottom:283.671116pt;}
.y183{bottom:284.096000pt;}
.y126{bottom:284.420000pt;}
.y13f{bottom:284.988000pt;}
.y1{bottom:286.108000pt;}
.y142{bottom:286.506667pt;}
.y2a{bottom:287.141333pt;}
.y18b{bottom:288.708000pt;}
.y196{bottom:289.642667pt;}
.y4e{bottom:290.764000pt;}
.y77{bottom:291.940000pt;}
.y85{bottom:292.821333pt;}
.y1a4{bottom:295.222667pt;}
.y1e2{bottom:299.556000pt;}
.y132{bottom:300.005333pt;}
.yb{bottom:322.445333pt;}
.y99{bottom:2689.303720pt;}
.y9c{bottom:2689.593053pt;}
.y9f{bottom:2690.567720pt;}
.y1e9{bottom:2692.913053pt;}
.y67{bottom:2694.466387pt;}
.yf6{bottom:2695.051720pt;}
.y157{bottom:2695.357053pt;}
.y5f{bottom:2695.530387pt;}
.y52{bottom:2695.930387pt;}
.y84{bottom:2700.335720pt;}
.y15b{bottom:2701.011720pt;}
.y98{bottom:2707.369053pt;}
.y9b{bottom:2707.658387pt;}
.yfd{bottom:2707.747720pt;}
.y15d{bottom:2707.896882pt;}
.y102{bottom:2707.921053pt;}
.y100{bottom:2707.922387pt;}
.y9e{bottom:2708.633053pt;}
.yf5{bottom:2710.993053pt;}
.y66{bottom:2712.531720pt;}
.y156{bottom:2713.422387pt;}
.y35{bottom:2713.471720pt;}
.y165{bottom:2714.105053pt;}
.y1e8{bottom:2714.963720pt;}
.y5e{bottom:2717.931720pt;}
.y51{bottom:2718.717053pt;}
.yb2{bottom:2721.615720pt;}
.y15a{bottom:2723.062387pt;}
.yac{bottom:2723.081053pt;}
.yaf{bottom:2723.103720pt;}
.yf4{bottom:2726.933053pt;}
.yfc{bottom:2729.798387pt;}
.y101{bottom:2729.971720pt;}
.yff{bottom:2729.973053pt;}
.y65{bottom:2730.598387pt;}
.y155{bottom:2731.489053pt;}
.y34{bottom:2731.538387pt;}
.y73{bottom:2733.994387pt;}
.y164{bottom:2736.155720pt;}
.y1e7{bottom:2737.014387pt;}
.y83{bottom:2738.482387pt;}
.yf3{bottom:2742.873053pt;}
.yb1{bottom:2743.666387pt;}
.y159{bottom:2745.113053pt;}
.yab{bottom:2745.131720pt;}
.yae{bottom:2745.154387pt;}
.y154{bottom:2749.554387pt;}
.y33{bottom:2749.603720pt;}
.yfe{bottom:2751.951720pt;}
.y72{bottom:2752.059720pt;}
.yfb{bottom:2752.199720pt;}
.y15c{bottom:2755.834387pt;}
.y82{bottom:2756.547720pt;}
.y1e6{bottom:2759.066387pt;}
.y64{bottom:2764.067720pt;}
.yb0{bottom:2765.719720pt;}
.yad{bottom:2766.741053pt;}
.yaa{bottom:2767.185053pt;}
.y32{bottom:2767.669053pt;}
.y158{bottom:2769.217053pt;}
.y153{bottom:2771.745053pt;}
.y71{bottom:2774.111720pt;}
.y81{bottom:2777.283720pt;}
.y31{bottom:2785.734387pt;}
.y30{bottom:2803.799720pt;}
.y148{bottom:2807.759720pt;}
.y152{bottom:2808.589053pt;}
.y9d{bottom:2809.869053pt;}
.y14c{bottom:2809.985053pt;}
.y9a{bottom:2810.842387pt;}
.y80{bottom:2810.843720pt;}
.y97{bottom:2811.131720pt;}
.y150{bottom:2811.730387pt;}
.y151{bottom:2814.305053pt;}
.y2f{bottom:2821.865053pt;}
.y14f{bottom:2829.795720pt;}
.y147{bottom:2829.810387pt;}
.y14b{bottom:2832.035720pt;}
.y2e{bottom:2839.931720pt;}
.y14a{bottom:2850.101053pt;}
.y14e{bottom:2851.846387pt;}
.y146{bottom:2851.861053pt;}
.y2d{bottom:2861.605053pt;}
.y14d{bottom:2873.434387pt;}
.y149{bottom:2873.595720pt;}
.y145{bottom:2874.262387pt;}
.y50{bottom:2894.727720pt;}
.y54{bottom:2895.673053pt;}
.y2c{bottom:2899.999720pt;}
.y7f{bottom:2959.522387pt;}
.y3c{bottom:5381.046107pt;}
.y3b{bottom:5399.111440pt;}
.y3a{bottom:5417.176773pt;}
.y39{bottom:5435.242107pt;}
.y38{bottom:5471.374107pt;}
.y37{bottom:5507.504773pt;}
.y36{bottom:5530.335440pt;}
.h1c{height:-2367.739549pt;}
.h1e{height:6.643256pt;}
.h15{height:11.461304pt;}
.h14{height:11.461306pt;}
.h31{height:12.505022pt;}
.h36{height:13.677864pt;}
.h35{height:13.677876pt;}
.h30{height:14.589115pt;}
.h22{height:14.682920pt;}
.h33{height:14.769675pt;}
.h32{height:14.874087pt;}
.h12{height:14.904352pt;}
.h16{height:15.281676pt;}
.h13{height:17.033572pt;}
.h2e{height:17.598360pt;}
.h37{height:18.060298pt;}
.h25{height:18.372663pt;}
.h2a{height:19.309156pt;}
.h29{height:19.798155pt;}
.h34{height:20.640341pt;}
.h27{height:21.434663pt;}
.h1d{height:21.602738pt;}
.h20{height:23.177148pt;}
.h8{height:23.814758pt;}
.h2d{height:24.330124pt;}
.h26{height:24.496796pt;}
.h10{height:25.072183pt;}
.h2b{height:25.745541pt;}
.h18{height:29.429705pt;}
.h17{height:30.033582pt;}
.h5{height:30.902734pt;}
.h7{height:31.341747pt;}
.h4{height:31.752878pt;}
.h1a{height:35.722138pt;}
.h1f{height:37.309331pt;}
.h9{height:38.747188pt;}
.h19{height:39.690998pt;}
.hd{height:42.298217pt;}
.hc{height:42.821854pt;}
.h3{height:43.461854pt;}
.he{height:47.243188pt;}
.hb{height:47.298394pt;}
.h1b{height:56.027188pt;}
.h2{height:57.155261pt;}
.hf{height:64.746796pt;}
.h6{height:80.937417pt;}
.h2c{height:81.720239pt;}
.h23{height:98.751806pt;}
.h21{height:182.577853pt;}
.h11{height:204.338818pt;}
.h28{height:219.226678pt;}
.h24{height:277.578546pt;}
.ha{height:279.541333pt;}
.h2f{height:291.557264pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w6{width:-2462.606387pt;}
.w7{width:77.769955pt;}
.w8{width:259.269267pt;}
.w4{width:296.322767pt;}
.w3{width:370.392267pt;}
.w2{width:370.421406pt;}
.w5{width:423.277537pt;}
.w9{width:518.519073pt;}
.wb{width:529.126393pt;}
.wa{width:529.134860pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x89{left:3.719490pt;}
.x55{left:5.708191pt;}
.x56{left:10.018582pt;}
.xb0{left:12.539450pt;}
.x27{left:14.614667pt;}
.xa{left:16.121333pt;}
.x80{left:18.896000pt;}
.x1b{left:19.905333pt;}
.xbb{left:20.907176pt;}
.x1f{left:21.921333pt;}
.x69{left:25.197333pt;}
.x20{left:29.252000pt;}
.x35{left:32.125333pt;}
.xbc{left:33.302325pt;}
.xbd{left:34.835297pt;}
.x16{left:37.544000pt;}
.xb{left:38.466667pt;}
.xa5{left:40.417973pt;}
.x86{left:42.710667pt;}
.x3f{left:49.310667pt;}
.x5d{left:51.074125pt;}
.x8d{left:52.033333pt;}
.x1{left:53.485333pt;}
.x6c{left:63.665333pt;}
.xc{left:66.886667pt;}
.xba{left:68.375163pt;}
.x8b{left:70.142667pt;}
.x58{left:71.964747pt;}
.x59{left:73.777504pt;}
.x5a{left:77.474097pt;}
.x5b{left:79.983700pt;}
.x5f{left:81.262997pt;}
.x57{left:83.796433pt;}
.x30{left:86.032269pt;}
.x8c{left:87.858667pt;}
.x5c{left:88.821314pt;}
.x44{left:90.708000pt;}
.x6b{left:95.977333pt;}
.xae{left:96.887342pt;}
.x5e{left:98.174783pt;}
.x81{left:100.316000pt;}
.x8{left:107.545547pt;}
.x9b{left:112.402811pt;}
.x9c{left:115.006382pt;}
.xab{left:115.975471pt;}
.x7{left:117.166667pt;}
.x9d{left:120.322627pt;}
.x9{left:121.245333pt;}
.x9e{left:123.931808pt;}
.x31{left:126.072000pt;}
.x52{left:127.591078pt;}
.x99{left:129.413360pt;}
.x9a{left:132.857231pt;}
.x50{left:135.172210pt;}
.x54{left:136.275926pt;}
.x51{left:139.248084pt;}
.x28{left:142.161333pt;}
.xa2{left:143.277300pt;}
.x53{left:144.180684pt;}
.x29{left:145.086667pt;}
.x4d{left:147.045248pt;}
.xa6{left:150.087619pt;}
.x21{left:152.550667pt;}
.xd{left:155.001476pt;}
.x2f{left:158.522667pt;}
.x4e{left:163.400512pt;}
.x4f{left:166.272936pt;}
.xb1{left:169.970377pt;}
.x1a{left:171.613333pt;}
.xb4{left:180.480904pt;}
.xad{left:181.641495pt;}
.x4{left:183.341333pt;}
.x94{left:185.472504pt;}
.x4c{left:189.368245pt;}
.x46{left:195.254861pt;}
.x48{left:196.751333pt;}
.x47{left:199.504181pt;}
.x3{left:201.944000pt;}
.x93{left:204.598580pt;}
.x45{left:205.871670pt;}
.x97{left:207.968522pt;}
.x49{left:212.741687pt;}
.x95{left:217.972213pt;}
.x40{left:220.342667pt;}
.x36{left:222.992000pt;}
.x8e{left:224.192456pt;}
.x18{left:225.752000pt;}
.x96{left:226.897637pt;}
.x92{left:229.589773pt;}
.x91{left:234.383102pt;}
.x8f{left:235.795513pt;}
.x22{left:237.530667pt;}
.x5{left:242.434667pt;}
.x2{left:247.729333pt;}
.x41{left:249.434667pt;}
.x90{left:252.233956pt;}
.xac{left:260.870068pt;}
.x62{left:263.083132pt;}
.x6{left:266.260000pt;}
.x24{left:268.758667pt;}
.x82{left:271.074667pt;}
.xa8{left:281.211709pt;}
.xa1{left:288.472608pt;}
.xa0{left:290.587148pt;}
.x4b{left:294.374308pt;}
.x4a{left:295.389642pt;}
.x12{left:297.321333pt;}
.xa7{left:299.151362pt;}
.x83{left:300.165333pt;}
.x64{left:301.270568pt;}
.x63{left:302.991837pt;}
.x9f{left:306.546871pt;}
.x61{left:313.075536pt;}
.x87{left:314.961333pt;}
.x88{left:318.945333pt;}
.xaf{left:322.647808pt;}
.x65{left:325.503640pt;}
.xa9{left:329.796000pt;}
.x13{left:334.557333pt;}
.x6d{left:341.418667pt;}
.x8a{left:342.676000pt;}
.x2e{left:347.817333pt;}
.xb6{left:358.847686pt;}
.xbf{left:360.970111pt;}
.x38{left:362.357333pt;}
.xb5{left:365.681984pt;}
.x2d{left:367.874667pt;}
.x23{left:377.341333pt;}
.x60{left:392.574163pt;}
.x6a{left:396.968000pt;}
.x84{left:400.629333pt;}
.x42{left:409.889333pt;}
.xa3{left:411.364631pt;}
.x37{left:413.857333pt;}
.x26{left:416.180000pt;}
.x98{left:417.613756pt;}
.xa4{left:431.779906pt;}
.xb3{left:433.100795pt;}
.xb8{left:437.874979pt;}
.x43{left:438.980000pt;}
.x7c{left:442.949333pt;}
.xbe{left:451.714430pt;}
.xb9{left:456.109633pt;}
.xc0{left:457.057940pt;}
.xb7{left:459.040795pt;}
.xb2{left:460.233924pt;}
.x6e{left:461.728000pt;}
.x7d{left:491.545333pt;}
.x7e{left:496.048000pt;}
.x7f{left:501.477333pt;}
.x85{left:511.140000pt;}
.xf{left:2683.078387pt;}
.x76{left:2685.597053pt;}
.x39{left:2686.921053pt;}
.x1d{left:2688.622387pt;}
.x66{left:2691.898387pt;}
.x1e{left:2695.953053pt;}
.x32{left:2698.826387pt;}
.x14{left:2704.245053pt;}
.x3a{left:2716.011720pt;}
.x67{left:2720.989053pt;}
.xaa{left:2733.587720pt;}
.x6f{left:2753.459720pt;}
.x77{left:2767.017053pt;}
.x2c{left:2825.223720pt;}
.x19{left:2838.314387pt;}
.x70{left:2879.107720pt;}
.x3b{left:2887.043720pt;}
.x33{left:2889.693053pt;}
.x15{left:2892.453053pt;}
.x3c{left:2916.135720pt;}
.xe{left:2933.129053pt;}
.x78{left:2937.775720pt;}
.x79{left:2966.866387pt;}
.x71{left:2970.171720pt;}
.x1c{left:2986.953053pt;}
.x17{left:2995.771720pt;}
.x2b{left:3014.518387pt;}
.x2a{left:3034.575720pt;}
.x68{left:3063.669053pt;}
.x7a{left:3067.330387pt;}
.x3d{left:3076.590387pt;}
.x34{left:3080.558387pt;}
.x25{left:3082.881053pt;}
.x3e{left:3105.681053pt;}
.x72{left:3109.650387pt;}
.x73{left:3158.246387pt;}
.x74{left:3162.749053pt;}
.x75{left:3168.178387pt;}
.x7b{left:3177.841053pt;}
.x10{left:5630.723440pt;}
.x11{left:5667.959440pt;}
}




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