
    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_1198d2739668b7e67364a7d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_609ac7bf6a39036f0156fb3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_315299fb1ca1ae1f87f34b9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_edbc212b2e951645c511c7b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854000;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_afd43eab2327e672e0c08064.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_c54a3854d4344387ae52dfff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854000;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_bb00546757a17f03e35004ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cc4d5a7ddaaed6f702646d8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.704000;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_ce4410bef538989914b2ffd2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_9a4fa7ed432f7335bb7da5ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0538db01706d38c2b7bf8712.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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_a6b61bc4ab3b3e177092dbdd.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_99d9a0cd9d5faba7cbd7486a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.684000;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_12b6f143ce44d876fab6dc1c.woff2')format("woff");}.fff{font-family:fff;line-height:2.999000;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_3abcd67180ef056269618f6d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.694000;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_3da83208780700b7abc83414.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.774069;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-102.216000px;}
.v18{vertical-align:-55.428000px;}
.va{vertical-align:-48.420000px;}
.v17{vertical-align:-46.464000px;}
.v15{vertical-align:-34.878000px;}
.v14{vertical-align:-25.914000px;}
.v1b{vertical-align:-10.764000px;}
.v1{vertical-align:-8.964000px;}
.v16{vertical-align:-4.224000px;}
.v1a{vertical-align:-1.794000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.742000px;}
.v10{vertical-align:7.698000px;}
.v3{vertical-align:14.832000px;}
.vf{vertical-align:16.662000px;}
.v2{vertical-align:21.696000px;}
.v6{vertical-align:24.684000px;}
.v4{vertical-align:29.646000px;}
.v13{vertical-align:37.254000px;}
.v12{vertical-align:38.358000px;}
.v7{vertical-align:39.456000px;}
.v11{vertical-align:41.346000px;}
.v8{vertical-align:48.414000px;}
.v9{vertical-align:63.192000px;}
.v19{vertical-align:64.554000px;}
.vd{vertical-align:139.890000px;}
.ve{vertical-align:153.822000px;}
.vb{vertical-align:172.020000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000062px;}
.ls7{letter-spacing:0.000648px;}
.lsd{letter-spacing:0.000691px;}
.ls5{letter-spacing:0.000767px;}
.ls32{letter-spacing:0.000843px;}
.ls4c{letter-spacing:0.000993px;}
.ls0{letter-spacing:0.001002px;}
.ls3e{letter-spacing:0.001708px;}
.ls2e{letter-spacing:0.002023px;}
.ls55{letter-spacing:0.002338px;}
.lsf{letter-spacing:0.003269px;}
.lsb{letter-spacing:0.004200px;}
.ls22{letter-spacing:0.004769px;}
.ls24{letter-spacing:0.004893px;}
.ls1e{letter-spacing:0.006843px;}
.ls2d{letter-spacing:1.012868px;}
.ls37{letter-spacing:1.880823px;}
.ls4f{letter-spacing:2.984525px;}
.ls6{letter-spacing:2.988648px;}
.ls4a{letter-spacing:2.989140px;}
.ls31{letter-spacing:4.000868px;}
.ls30{letter-spacing:4.110843px;}
.ls52{letter-spacing:4.274791px;}
.ls4b{letter-spacing:4.276583px;}
.ls51{letter-spacing:6.193876px;}
.ls49{letter-spacing:7.172012px;}
.ls29{letter-spacing:7.174200px;}
.ls42{letter-spacing:8.305923px;}
.ls17{letter-spacing:9.962338px;}
.ls2a{letter-spacing:9.964893px;}
.ls50{letter-spacing:9.982525px;}
.ls1b{letter-spacing:13.278538px;}
.ls1d{letter-spacing:13.280338px;}
.ls25{letter-spacing:13.282200px;}
.ls3c{letter-spacing:13.284538px;}
.ls62{letter-spacing:13.449600px;}
.ls1c{letter-spacing:13.505549px;}
.ls28{letter-spacing:13.616338px;}
.ls2f{letter-spacing:13.960868px;}
.ls48{letter-spacing:14.945306px;}
.ls19{letter-spacing:16.602538px;}
.ls40{letter-spacing:16.607306px;}
.ls39{letter-spacing:17.225607px;}
.lsa{letter-spacing:17.388538px;}
.ls16{letter-spacing:17.933607px;}
.ls15{letter-spacing:18.161549px;}
.ls34{letter-spacing:18.746023px;}
.ls35{letter-spacing:19.205096px;}
.ls36{letter-spacing:19.366868px;}
.ls38{letter-spacing:19.370023px;}
.ls41{letter-spacing:19.591140px;}
.ls46{letter-spacing:19.748100px;}
.ls2c{letter-spacing:19.752538px;}
.ls54{letter-spacing:20.503031px;}
.ls3a{letter-spacing:21.203096px;}
.ls4e{letter-spacing:21.304868px;}
.ls56{letter-spacing:21.520200px;}
.ls9{letter-spacing:23.910854px;}
.ls8{letter-spacing:25.013139px;}
.ls53{letter-spacing:28.610791px;}
.ls23{letter-spacing:30.450538px;}
.ls43{letter-spacing:32.023140px;}
.ls45{letter-spacing:32.899140px;}
.ls4{letter-spacing:33.024538px;}
.ls3{letter-spacing:33.976188px;}
.ls4d{letter-spacing:37.282868px;}
.ls44{letter-spacing:37.477140px;}
.ls2{letter-spacing:48.179134px;}
.ls47{letter-spacing:51.685140px;}
.ls26{letter-spacing:63.624538px;}
.ls14{letter-spacing:87.192648px;}
.ls27{letter-spacing:100.476648px;}
.ls1f{letter-spacing:103.506648px;}
.ls3f{letter-spacing:103.512648px;}
.lse{letter-spacing:103.794648px;}
.ls5f{letter-spacing:105.942312px;}
.ls1a{letter-spacing:116.796648px;}
.ls13{letter-spacing:119.190648px;}
.ls18{letter-spacing:120.114648px;}
.ls11{letter-spacing:120.120648px;}
.ls60{letter-spacing:122.236496px;}
.ls5e{letter-spacing:123.625205px;}
.ls21{letter-spacing:123.732648px;}
.ls3b{letter-spacing:123.984648px;}
.ls2b{letter-spacing:131.972338px;}
.ls5d{letter-spacing:140.521163px;}
.ls61{letter-spacing:212.317411px;}
.ls20{letter-spacing:240.752338px;}
.ls5b{letter-spacing:251.571581px;}
.ls33{letter-spacing:304.472338px;}
.ls59{letter-spacing:365.816030px;}
.ls5c{letter-spacing:369.148931px;}
.ls12{letter-spacing:382.916338px;}
.ls10{letter-spacing:391.262338px;}
.ls3d{letter-spacing:392.708338px;}
.ls5a{letter-spacing:446.314854px;}
.ls57{letter-spacing:464.321779px;}
.ls58{letter-spacing:495.744406px;}
.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;}
}
.ws7b{word-spacing:-59.775600px;}
.wsab{word-spacing:-48.920351px;}
.wsa8{word-spacing:-47.324343px;}
.ws90{word-spacing:-43.157983px;}
.ws7f{word-spacing:-38.937826px;}
.wsa2{word-spacing:-28.955301px;}
.ws84{word-spacing:-16.605662px;}
.wsa7{word-spacing:-14.943900px;}
.wsbc{word-spacing:-13.449600px;}
.ws41{word-spacing:-12.779277px;}
.ws82{word-spacing:-10.460700px;}
.wsaf{word-spacing:-3.526760px;}
.wsad{word-spacing:-3.504883px;}
.ws74{word-spacing:-3.287658px;}
.wsbb{word-spacing:-3.174106px;}
.ws8{word-spacing:-2.988780px;}
.ws10d{word-spacing:-2.958912px;}
.ws6e{word-spacing:-2.749678px;}
.wsfc{word-spacing:-2.689902px;}
.wsb0{word-spacing:-2.630126px;}
.ws9f{word-spacing:-2.510575px;}
.ws42{word-spacing:-2.420928px;}
.ws44{word-spacing:-2.367130px;}
.ws123{word-spacing:-2.313331px;}
.wsc2{word-spacing:-2.032370px;}
.wsdd{word-spacing:-1.882944px;}
.wsd4{word-spacing:-1.733492px;}
.ws119{word-spacing:-1.721549px;}
.ws87{word-spacing:-1.673717px;}
.ws8f{word-spacing:-1.657691px;}
.ws66{word-spacing:-1.554166px;}
.wsb{word-spacing:-1.494390px;}
.ws10b{word-spacing:-1.452557px;}
.wse5{word-spacing:-1.374839px;}
.wsa1{word-spacing:-1.135736px;}
.wsed{word-spacing:-1.075968px;}
.ws72{word-spacing:-1.075961px;}
.ws5d{word-spacing:-1.016185px;}
.ws60{word-spacing:-0.956410px;}
.ws43{word-spacing:-0.947078px;}
.ws15{word-spacing:-0.836858px;}
.ws8d{word-spacing:-0.777083px;}
.ws1b{word-spacing:-0.717307px;}
.wsba{word-spacing:-0.484186px;}
.ws2d{word-spacing:-0.478205px;}
.ws26{word-spacing:-0.418429px;}
.ws20{word-spacing:-0.358654px;}
.wsb5{word-spacing:-0.298878px;}
.ws49{word-spacing:-0.239102px;}
.wsdc{word-spacing:-0.107597px;}
.wsff{word-spacing:-0.071731px;}
.ws19{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws9e{word-spacing:-0.041843px;}
.ws94{word-spacing:-0.003654px;}
.ws1{word-spacing:0.000000px;}
.ws83{word-spacing:0.011955px;}
.wsd3{word-spacing:0.059776px;}
.ws2f{word-spacing:0.119551px;}
.wsbe{word-spacing:0.179327px;}
.ws39{word-spacing:0.239102px;}
.ws81{word-spacing:0.295200px;}
.ws54{word-spacing:0.298878px;}
.ws75{word-spacing:0.358654px;}
.ws7e{word-spacing:0.418429px;}
.wsa{word-spacing:0.657532px;}
.ws10c{word-spacing:0.699379px;}
.ws23{word-spacing:0.717307px;}
.ws86{word-spacing:0.725083px;}
.ws127{word-spacing:0.753178px;}
.ws24{word-spacing:0.777083px;}
.wsc1{word-spacing:0.896634px;}
.ws46{word-spacing:0.968371px;}
.wsf5{word-spacing:1.016185px;}
.ws70{word-spacing:1.075961px;}
.ws114{word-spacing:1.129766px;}
.wsce{word-spacing:1.255288px;}
.ws10f{word-spacing:1.398758px;}
.wsb6{word-spacing:1.554166px;}
.ws124{word-spacing:1.560154px;}
.ws6{word-spacing:1.613941px;}
.ws1f{word-spacing:1.673717px;}
.ws58{word-spacing:1.733492px;}
.ws7d{word-spacing:1.764317px;}
.ws47{word-spacing:1.775347px;}
.ws93{word-spacing:1.853044px;}
.wsec{word-spacing:1.882944px;}
.wsf{word-spacing:1.912819px;}
.ws56{word-spacing:1.972595px;}
.ws102{word-spacing:1.990541px;}
.ws117{word-spacing:2.044339px;}
.ws55{word-spacing:2.092146px;}
.ws6f{word-spacing:2.271473px;}
.ws69{word-spacing:2.331248px;}
.wsa9{word-spacing:2.357083px;}
.ws4e{word-spacing:2.450800px;}
.wseb{word-spacing:2.474726px;}
.wsfe{word-spacing:2.510575px;}
.ws5b{word-spacing:2.570351px;}
.ws109{word-spacing:2.636122px;}
.ws9{word-spacing:2.689902px;}
.ws5{word-spacing:2.749678px;}
.wsd2{word-spacing:2.809453px;}
.ws85{word-spacing:2.869229px;}
.ws99{word-spacing:2.929004px;}
.ws59{word-spacing:3.108331px;}
.wsbf{word-spacing:3.168107px;}
.ws126{word-spacing:3.174106px;}
.ws35{word-spacing:3.227882px;}
.ws129{word-spacing:3.227904px;}
.ws30{word-spacing:3.347434px;}
.ws18{word-spacing:3.355991px;}
.ws118{word-spacing:3.389299px;}
.ws28{word-spacing:3.407209px;}
.ws38{word-spacing:3.466985px;}
.ws45{word-spacing:3.496896px;}
.wscf{word-spacing:3.526760px;}
.wsb1{word-spacing:3.586536px;}
.wsd1{word-spacing:3.646312px;}
.ws5c{word-spacing:3.765863px;}
.ws11e{word-spacing:3.765888px;}
.ws120{word-spacing:3.819686px;}
.wsa6{word-spacing:3.825638px;}
.wsa4{word-spacing:3.844309px;}
.wsa5{word-spacing:3.864286px;}
.wsae{word-spacing:3.960300px;}
.ws36{word-spacing:4.004965px;}
.ws65{word-spacing:4.124516px;}
.wsc8{word-spacing:4.184292px;}
.ws25{word-spacing:4.303843px;}
.ws108{word-spacing:4.303872px;}
.ws107{word-spacing:4.357670px;}
.ws68{word-spacing:4.363619px;}
.ws4{word-spacing:4.423394px;}
.ws10e{word-spacing:4.519066px;}
.wsc5{word-spacing:4.542946px;}
.wsf8{word-spacing:4.602721px;}
.ws53{word-spacing:4.662497px;}
.ws89{word-spacing:4.722272px;}
.wsb9{word-spacing:4.782048px;}
.wsc7{word-spacing:4.841824px;}
.ws1c{word-spacing:4.901599px;}
.wsd5{word-spacing:4.912738px;}
.ws71{word-spacing:4.961375px;}
.ws116{word-spacing:5.003251px;}
.ws7{word-spacing:5.021150px;}
.wsd0{word-spacing:5.140702px;}
.ws98{word-spacing:5.200477px;}
.ws111{word-spacing:5.218445px;}
.ws16{word-spacing:5.260253px;}
.ws2c{word-spacing:5.320028px;}
.ws76{word-spacing:5.379804px;}
.ws112{word-spacing:5.433638px;}
.ws48{word-spacing:5.439580px;}
.ws91{word-spacing:5.499355px;}
.wsd6{word-spacing:5.521531px;}
.ws92{word-spacing:5.559131px;}
.ws88{word-spacing:5.608326px;}
.ws11{word-spacing:5.618906px;}
.wsc6{word-spacing:5.678682px;}
.ws64{word-spacing:5.798233px;}
.ws96{word-spacing:5.811949px;}
.ws104{word-spacing:5.864026px;}
.wsde{word-spacing:5.977560px;}
.ws34{word-spacing:6.037336px;}
.wsa0{word-spacing:6.156887px;}
.wscd{word-spacing:6.216662px;}
.wse{word-spacing:6.336214px;}
.ws110{word-spacing:6.348211px;}
.ws2e{word-spacing:6.395989px;}
.ws5a{word-spacing:6.575316px;}
.wsd8{word-spacing:6.694867px;}
.ws17{word-spacing:6.814418px;}
.ws50{word-spacing:6.874194px;}
.ws4b{word-spacing:6.933970px;}
.ws63{word-spacing:6.993745px;}
.wsd{word-spacing:7.173072px;}
.ws11f{word-spacing:7.208986px;}
.ws3a{word-spacing:7.232848px;}
.ws105{word-spacing:7.316582px;}
.wsea{word-spacing:7.412174px;}
.ws101{word-spacing:7.477978px;}
.ws6d{word-spacing:7.651277px;}
.wsd7{word-spacing:7.770828px;}
.wsb8{word-spacing:7.830604px;}
.ws11d{word-spacing:7.908365px;}
.ws4f{word-spacing:8.129482px;}
.ws3d{word-spacing:8.189257px;}
.ws3e{word-spacing:8.249033px;}
.wse0{word-spacing:8.308808px;}
.ws79{word-spacing:8.368584px;}
.ws4a{word-spacing:8.428360px;}
.ws29{word-spacing:8.547911px;}
.ws51{word-spacing:8.607686px;}
.wse6{word-spacing:8.667462px;}
.ws103{word-spacing:8.715341px;}
.ws5e{word-spacing:8.727238px;}
.ws7a{word-spacing:8.846789px;}
.ws57{word-spacing:9.026116px;}
.ws12{word-spacing:9.085891px;}
.ws100{word-spacing:9.091930px;}
.ws8a{word-spacing:9.127559px;}
.ws9a{word-spacing:9.129497px;}
.ws8e{word-spacing:9.129949px;}
.ws9d{word-spacing:9.130805px;}
.wsaa{word-spacing:9.132300px;}
.ws95{word-spacing:9.132752px;}
.ws125{word-spacing:9.145728px;}
.ws52{word-spacing:9.384769px;}
.wsac{word-spacing:9.394309px;}
.ws3f{word-spacing:9.504320px;}
.wscb{word-spacing:9.564096px;}
.ws2b{word-spacing:9.683647px;}
.ws113{word-spacing:9.791309px;}
.wsf9{word-spacing:9.862974px;}
.ws31{word-spacing:9.922750px;}
.ws67{word-spacing:9.982525px;}
.wse8{word-spacing:10.042301px;}
.ws2a{word-spacing:10.161852px;}
.ws32{word-spacing:10.281403px;}
.ws73{word-spacing:10.460730px;}
.wsf7{word-spacing:10.520506px;}
.ws128{word-spacing:10.544486px;}
.ws106{word-spacing:10.705882px;}
.ws5f{word-spacing:10.759608px;}
.wse3{word-spacing:10.805442px;}
.wse2{word-spacing:10.806388px;}
.ws33{word-spacing:10.819384px;}
.wsc9{word-spacing:10.879159px;}
.ws8c{word-spacing:11.237813px;}
.ws10{word-spacing:11.297588px;}
.ws121{word-spacing:11.405261px;}
.ws1e{word-spacing:11.536691px;}
.wsf6{word-spacing:11.596466px;}
.ws4c{word-spacing:11.656242px;}
.ws13{word-spacing:11.835569px;}
.ws10a{word-spacing:11.889446px;}
.wsc0{word-spacing:11.955120px;}
.ws3b{word-spacing:12.014896px;}
.wse1{word-spacing:12.253998px;}
.ws1d{word-spacing:12.373549px;}
.wsc{word-spacing:12.433325px;}
.wsb7{word-spacing:12.612652px;}
.wse9{word-spacing:12.791978px;}
.ws122{word-spacing:12.965414px;}
.ws62{word-spacing:12.971305px;}
.wse7{word-spacing:13.090856px;}
.ws61{word-spacing:13.210408px;}
.wse4{word-spacing:13.270183px;}
.wscc{word-spacing:13.329959px;}
.ws115{word-spacing:13.718592px;}
.ws8b{word-spacing:13.796547px;}
.ws27{word-spacing:13.867939px;}
.ws11b{word-spacing:14.095181px;}
.ws6a{word-spacing:14.346144px;}
.ws11c{word-spacing:15.655334px;}
.ws4d{word-spacing:15.720983px;}
.wsdf{word-spacing:15.840534px;}
.ws37{word-spacing:16.199188px;}
.ws22{word-spacing:17.095822px;}
.ws11a{word-spacing:17.430682px;}
.ws78{word-spacing:17.454475px;}
.ws3c{word-spacing:17.633802px;}
.ws14{word-spacing:17.693578px;}
.ws1a{word-spacing:17.861069px;}
.ws80{word-spacing:18.314547px;}
.wsfd{word-spacing:18.649987px;}
.ws40{word-spacing:19.008641px;}
.ws21{word-spacing:19.666172px;}
.wsb4{word-spacing:19.845499px;}
.ws97{word-spacing:20.084602px;}
.ws0{word-spacing:21.433223px;}
.wsbd{word-spacing:24.687323px;}
.wsfb{word-spacing:24.926425px;}
.ws7c{word-spacing:26.750547px;}
.wsc3{word-spacing:27.377225px;}
.wsb3{word-spacing:28.393410px;}
.wsc4{word-spacing:28.512961px;}
.wsa3{word-spacing:30.820299px;}
.wsfa{word-spacing:31.143088px;}
.ws2{word-spacing:32.225242px;}
.ws77{word-spacing:32.338600px;}
.ws6c{word-spacing:33.295009px;}
.wsca{word-spacing:36.283789px;}
.wsb2{word-spacing:43.337310px;}
.ws9c{word-spacing:44.828134px;}
.ws6b{word-spacing:48.179134px;}
.wsd9{word-spacing:61.658673px;}
.ws9b{word-spacing:62.720547px;}
.wsee{word-spacing:71.659469px;}
.wsf2{word-spacing:115.020979px;}
.wsda{word-spacing:131.279277px;}
.wsf3{word-spacing:138.961267px;}
.wsdb{word-spacing:152.825898px;}
.wsf1{word-spacing:186.465254px;}
.wsef{word-spacing:191.414707px;}
.wsf4{word-spacing:225.605866px;}
.wsf0{word-spacing:225.630490px;}
._25{margin-left:-33.165062px;}
._1b{margin-left:-6.993792px;}
._4{margin-left:-5.499355px;}
._1{margin-left:-4.303860px;}
._0{margin-left:-3.184856px;}
._2{margin-left:-1.549390px;}
._e{width:1.306506px;}
._f{width:2.988780px;}
._3{width:4.646466px;}
._37{width:5.780795px;}
._24{width:9.982525px;}
._21{width:13.218211px;}
._7{width:14.750270px;}
._1a{width:15.924326px;}
._1c{width:17.267345px;}
._6{width:18.922564px;}
._5{width:20.400229px;}
._23{width:21.519216px;}
._16{width:22.535401px;}
._8{width:23.730930px;}
._19{width:25.344854px;}
._c{width:26.655142px;}
._13{width:27.735878px;}
._b{width:29.443094px;}
._1f{width:30.485556px;}
._12{width:31.860395px;}
._10{width:33.572362px;}
._d{width:34.741597px;}
._11{width:36.283789px;}
._1e{width:37.892954px;}
._9{width:39.681446px;}
._26{width:42.137022px;}
._1d{width:44.826941px;}
._14{width:46.565192px;}
._38{width:47.703811px;}
._22{width:49.972402px;}
._15{width:51.048362px;}
._a{width:52.695803px;}
._27{width:54.276245px;}
._39{width:56.154766px;}
._20{width:59.690970px;}
._17{width:67.187774px;}
._18{width:71.312291px;}
._2c{width:141.648304px;}
._2d{width:152.872189px;}
._33{width:156.177302px;}
._34{width:180.063792px;}
._35{width:188.893363px;}
._32{width:205.326816px;}
._30{width:210.276816px;}
._36{width:250.323955px;}
._31{width:266.732467px;}
._2e{width:272.022718px;}
._2f{width:307.923044px;}
._29{width:328.775311px;}
._2a{width:329.877104px;}
._2b{width:341.039141px;}
._28{width:403.327343px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(54,125,189);}
.fc1{color:rgb(236,0,140);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.542682px;}
.fs7{font-size:41.814920px;}
.fs8{font-size:41.842800px;}
.fs4{font-size:45.996412px;}
.fs9{font-size:46.290295px;}
.fs2{font-size:53.798400px;}
.fs5{font-size:54.359396px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y53{bottom:5.545814px;}
.y56{bottom:34.293572px;}
.y57{bottom:51.542226px;}
.y59{bottom:64.086702px;}
.y5b{bottom:76.631178px;}
.y5a{bottom:89.175654px;}
.y5e{bottom:105.901622px;}
.yce{bottom:117.805500px;}
.y58{bottom:120.536844px;}
.y29{bottom:121.500000px;}
.y5c{bottom:134.649380px;}
.y15b{bottom:137.938500px;}
.y4b{bottom:139.432500px;}
.y28{bottom:139.954500px;}
.y51{bottom:144.057737px;}
.y55{bottom:149.284602px;}
.y5d{bottom:152.420721px;}
.y15a{bottom:156.558000px;}
.y4a{bottom:157.365000px;}
.y27{bottom:157.887000px;}
.y159{bottom:172.996500px;}
.y49{bottom:175.297500px;}
.ycd{bottom:175.299000px;}
.y26{bottom:175.819500px;}
.y158{bottom:189.435000px;}
.y48{bottom:193.230000px;}
.ycc{bottom:193.231500px;}
.y25{bottom:193.752000px;}
.y7c{bottom:198.837000px;}
.y12d{bottom:203.691000px;}
.y90{bottom:203.880000px;}
.y157{bottom:208.054500px;}
.y52{bottom:209.393549px;}
.y47{bottom:211.162500px;}
.yf3{bottom:211.164000px;}
.y24{bottom:211.684500px;}
.y7b{bottom:216.769500px;}
.ycb{bottom:223.398000px;}
.y156{bottom:224.493000px;}
.y50{bottom:225.596831px;}
.y46{bottom:229.096500px;}
.y23{bottom:229.618500px;}
.yc8{bottom:231.121500px;}
.y4d{bottom:232.914442px;}
.y7a{bottom:234.702000px;}
.y12c{bottom:237.216000px;}
.y4f{bottom:239.709366px;}
.y8f{bottom:240.309000px;}
.yc7{bottom:241.372500px;}
.y155{bottom:243.112500px;}
.y45{bottom:247.029000px;}
.y22{bottom:247.551000px;}
.y4e{bottom:250.163096px;}
.y79{bottom:252.636000px;}
.y12b{bottom:255.150000px;}
.yca{bottom:255.568500px;}
.y8e{bottom:258.241500px;}
.y154{bottom:259.549500px;}
.yc9{bottom:260.052000px;}
.y44{bottom:264.961500px;}
.y21{bottom:265.483500px;}
.y78{bottom:270.568500px;}
.y12a{bottom:273.082500px;}
.y54{bottom:275.252048px;}
.y153{bottom:275.988000px;}
.y8d{bottom:276.174000px;}
.y43{bottom:282.894000px;}
.yc6{bottom:288.031500px;}
.y77{bottom:288.501000px;}
.y129{bottom:291.015000px;}
.y152{bottom:292.426500px;}
.y8c{bottom:294.106500px;}
.y20{bottom:294.399000px;}
.y42{bottom:300.826500px;}
.yf2{bottom:300.828000px;}
.yc5{bottom:305.964000px;}
.y76{bottom:306.433500px;}
.y128{bottom:308.947500px;}
.y151{bottom:311.046000px;}
.y8b{bottom:312.040500px;}
.y41{bottom:318.759000px;}
.yf1{bottom:318.760500px;}
.yc4{bottom:323.896500px;}
.y75{bottom:324.366000px;}
.y127{bottom:326.880000px;}
.y150{bottom:327.484500px;}
.y8a{bottom:329.973000px;}
.y40{bottom:336.693000px;}
.y74{bottom:342.300000px;}
.y14f{bottom:343.923000px;}
.y126{bottom:344.812500px;}
.y89{bottom:347.905500px;}
.y1f{bottom:349.762500px;}
.ybe{bottom:351.684000px;}
.yc3{bottom:352.555500px;}
.y3f{bottom:354.625500px;}
.yc2{bottom:356.233500px;}
.ybb{bottom:358.884000px;}
.y73{bottom:360.232500px;}
.y14e{bottom:360.361500px;}
.y125{bottom:362.746500px;}
.y88{bottom:365.838000px;}
.y1e{bottom:367.695000px;}
.yba{bottom:369.135000px;}
.y3e{bottom:372.558000px;}
.yc1{bottom:375.550500px;}
.ybf{bottom:375.567000px;}
.y72{bottom:378.165000px;}
.y14d{bottom:378.981000px;}
.yc0{bottom:379.245000px;}
.y124{bottom:380.679000px;}
.ybd{bottom:383.332500px;}
.y87{bottom:383.770500px;}
.y1d{bottom:385.627500px;}
.ybc{bottom:387.814500px;}
.y3d{bottom:390.490500px;}
.y183{bottom:394.072500px;}
.y14c{bottom:395.419500px;}
.y71{bottom:396.097500px;}
.y123{bottom:398.611500px;}
.y86{bottom:401.703000px;}
.y1c{bottom:403.560000px;}
.y3c{bottom:408.423000px;}
.y106{bottom:408.424500px;}
.y182{bottom:410.511000px;}
.yf0{bottom:411.619500px;}
.y14b{bottom:411.858000px;}
.y70{bottom:414.030000px;}
.yb9{bottom:415.794000px;}
.y122{bottom:416.544000px;}
.y85{bottom:419.637000px;}
.y1b{bottom:421.494000px;}
.y3b{bottom:426.357000px;}
.y181{bottom:426.948000px;}
.yef{bottom:429.553500px;}
.y6f{bottom:431.962500px;}
.yb8{bottom:433.726500px;}
.y121{bottom:434.476500px;}
.y84{bottom:437.569500px;}
.y14a{bottom:438.757500px;}
.y1a{bottom:439.426500px;}
.y180{bottom:443.386500px;}
.y3a{bottom:444.289500px;}
.yee{bottom:447.486000px;}
.yb6{bottom:447.964500px;}
.yb7{bottom:447.981000px;}
.y6e{bottom:449.896500px;}
.yb5{bottom:451.659000px;}
.y120{bottom:452.410500px;}
.y83{bottom:455.502000px;}
.y19{bottom:457.359000px;}
.y17f{bottom:459.825000px;}
.y39{bottom:462.222000px;}
.yed{bottom:465.418500px;}
.y6d{bottom:467.829000px;}
.yb4{bottom:469.591500px;}
.y11f{bottom:470.343000px;}
.y82{bottom:473.434500px;}
.y18{bottom:475.291500px;}
.y149{bottom:476.682000px;}
.y17e{bottom:477.757500px;}
.y38{bottom:480.154500px;}
.yec{bottom:483.351000px;}
.y6c{bottom:485.761500px;}
.y11e{bottom:488.275500px;}
.y81{bottom:491.367000px;}
.y17{bottom:493.224000px;}
.y17d{bottom:494.196000px;}
.y148{bottom:494.616000px;}
.y105{bottom:498.087000px;}
.yb3{bottom:498.438000px;}
.yb2{bottom:502.132500px;}
.yb1{bottom:502.339500px;}
.y6b{bottom:503.694000px;}
.y11d{bottom:506.208000px;}
.y80{bottom:509.301000px;}
.y17c{bottom:510.634500px;}
.y16{bottom:511.158000px;}
.y37{bottom:511.678500px;}
.yeb{bottom:512.191500px;}
.y147{bottom:512.548500px;}
.y104{bottom:516.021000px;}
.y6a{bottom:521.626500px;}
.y11c{bottom:524.140500px;}
.y7f{bottom:527.233500px;}
.y17b{bottom:528.567000px;}
.y15{bottom:529.090500px;}
.y36{bottom:529.611000px;}
.y146{bottom:530.481000px;}
.y103{bottom:533.953500px;}
.yb0{bottom:534.672000px;}
.y69{bottom:539.559000px;}
.yea{bottom:541.032000px;}
.y11b{bottom:542.073000px;}
.y17a{bottom:545.005500px;}
.y7e{bottom:545.166000px;}
.y14{bottom:547.023000px;}
.y35{bottom:547.545000px;}
.y145{bottom:548.413500px;}
.y102{bottom:551.886000px;}
.yaf{bottom:552.604500px;}
.ye9{bottom:558.964500px;}
.y11a{bottom:560.007000px;}
.y179{bottom:561.444000px;}
.y68{bottom:563.098500px;}
.y13{bottom:564.955500px;}
.y34{bottom:565.477500px;}
.y144{bottom:566.346000px;}
.yae{bottom:570.537000px;}
.y101{bottom:573.706500px;}
.y178{bottom:577.882500px;}
.y119{bottom:577.939500px;}
.y67{bottom:581.031000px;}
.y12{bottom:582.888000px;}
.y33{bottom:583.410000px;}
.y143{bottom:584.280000px;}
.yac{bottom:584.775000px;}
.yad{bottom:584.791500px;}
.yab{bottom:588.469500px;}
.y100{bottom:591.640500px;}
.y177{bottom:594.321000px;}
.ye5{bottom:595.641000px;}
.ye8{bottom:596.091000px;}
.y7d{bottom:598.963500px;}
.y66{bottom:598.965000px;}
.y11{bottom:600.820500px;}
.y32{bottom:601.342500px;}
.ye7{bottom:601.861500px;}
.yff{bottom:609.573000px;}
.ye6{bottom:612.229500px;}
.y176{bottom:612.253500px;}
.y142{bottom:613.359000px;}
.y118{bottom:616.186500px;}
.y65{bottom:616.897500px;}
.y10{bottom:618.754500px;}
.yaa{bottom:619.158000px;}
.y31{bottom:619.275000px;}
.ya9{bottom:622.852500px;}
.yfe{bottom:627.505500px;}
.y175{bottom:628.692000px;}
.y117{bottom:632.625000px;}
.ye4{bottom:634.075500px;}
.y64{bottom:634.830000px;}
.yf{bottom:636.687000px;}
.y30{bottom:637.207500px;}
.yfd{bottom:645.438000px;}
.y174{bottom:646.624500px;}
.ye2{bottom:647.842500px;}
.ye3{bottom:648.118500px;}
.y116{bottom:649.063500px;}
.y141{bottom:651.285000px;}
.ye1{bottom:652.008000px;}
.ye{bottom:654.619500px;}
.y2f{bottom:655.141500px;}
.ya8{bottom:655.392000px;}
.y173{bottom:663.063000px;}
.yfc{bottom:663.370500px;}
.y140{bottom:669.217500px;}
.yd{bottom:672.552000px;}
.y2e{bottom:673.074000px;}
.ya7{bottom:673.326000px;}
.ydf{bottom:678.739500px;}
.ye0{bottom:679.210500px;}
.y172{bottom:679.501500px;}
.yfb{bottom:681.303000px;}
.yde{bottom:682.905000px;}
.y115{bottom:683.001215px;}
.y63{bottom:684.594000px;}
.y13f{bottom:687.151500px;}
.yc{bottom:690.484500px;}
.y2d{bottom:691.006500px;}
.ya6{bottom:691.258500px;}
.y171{bottom:695.940000px;}
.y114{bottom:697.145558px;}
.yfa{bottom:699.237000px;}
.y62{bottom:701.031000px;}
.y13e{bottom:705.084000px;}
.yb{bottom:708.417000px;}
.y2c{bottom:708.939000px;}
.y113{bottom:711.288610px;}
.y170{bottom:712.378500px;}
.ydd{bottom:713.373000px;}
.yf9{bottom:717.169500px;}
.y61{bottom:717.469500px;}
.ya5{bottom:720.120000px;}
.y13d{bottom:723.016500px;}
.ya4{bottom:723.798000px;}
.y112{bottom:725.432953px;}
.ya{bottom:726.351000px;}
.y2b{bottom:726.871500px;}
.y16f{bottom:730.311000px;}
.ydc{bottom:731.305500px;}
.y60{bottom:733.908000px;}
.yf8{bottom:735.102000px;}
.y111{bottom:739.577296px;}
.y13c{bottom:740.949000px;}
.y2a{bottom:744.804000px;}
.y16e{bottom:746.749500px;}
.ydb{bottom:749.238000px;}
.y5f{bottom:750.346500px;}
.y110{bottom:753.721639px;}
.ya3{bottom:756.337500px;}
.y13b{bottom:758.881500px;}
.y9{bottom:762.738000px;}
.y16d{bottom:763.188000px;}
.yda{bottom:767.172000px;}
.yf7{bottom:767.383500px;}
.y10f{bottom:767.865982px;}
.ya2{bottom:774.270000px;}
.y13a{bottom:776.815500px;}
.y16c{bottom:779.626500px;}
.y10e{bottom:782.010325px;}
.y4c{bottom:782.309065px;}
.ya1{bottom:788.493000px;}
.ya0{bottom:792.202500px;}
.yd9{bottom:792.316500px;}
.yd8{bottom:792.334500px;}
.y139{bottom:794.748000px;}
.yd7{bottom:796.011000px;}
.y10d{bottom:796.154668px;}
.y16b{bottom:797.559000px;}
.y9f{bottom:810.135000px;}
.y10c{bottom:810.299011px;}
.y138{bottom:812.680500px;}
.y16a{bottom:813.997500px;}
.y8{bottom:824.307000px;}
.y9e{bottom:824.359500px;}
.y10b{bottom:824.443354px;}
.yd6{bottom:824.851500px;}
.yf6{bottom:824.923500px;}
.y9d{bottom:828.067500px;}
.y169{bottom:830.436000px;}
.y137{bottom:830.613000px;}
.y10a{bottom:838.587696px;}
.yf5{bottom:841.362000px;}
.yd5{bottom:842.784000px;}
.y7{bottom:845.229000px;}
.y9c{bottom:846.001500px;}
.y168{bottom:846.874500px;}
.y109{bottom:852.732039px;}
.yf4{bottom:857.800500px;}
.yd4{bottom:860.718000px;}
.y9b{bottom:863.934000px;}
.y167{bottom:864.807000px;}
.y6{bottom:866.149500px;}
.y108{bottom:873.330973px;}
.yd3{bottom:878.650500px;}
.y166{bottom:881.245500px;}
.y136{bottom:885.519000px;}
.y5{bottom:887.071500px;}
.yd2{bottom:896.583000px;}
.y165{bottom:897.684000px;}
.y135{bottom:901.957500px;}
.y9a{bottom:903.661500px;}
.y4{bottom:907.993500px;}
.y164{bottom:914.122500px;}
.y134{bottom:918.396000px;}
.y99{bottom:921.594000px;}
.y3{bottom:928.914000px;}
.y163{bottom:930.561000px;}
.yd1{bottom:935.644500px;}
.y98{bottom:939.526500px;}
.y133{bottom:942.039000px;}
.y162{bottom:948.493500px;}
.yd0{bottom:953.577000px;}
.y97{bottom:957.459000px;}
.y132{bottom:958.476000px;}
.y161{bottom:964.932000px;}
.y96{bottom:975.391500px;}
.y160{bottom:981.369000px;}
.ycf{bottom:982.417500px;}
.y2{bottom:985.701000px;}
.y107{bottom:993.324000px;}
.y95{bottom:993.325500px;}
.y15f{bottom:997.807500px;}
.y94{bottom:1011.258000px;}
.y1{bottom:1012.600500px;}
.y15e{bottom:1014.246000px;}
.y131{bottom:1019.178000px;}
.y93{bottom:1029.190500px;}
.y15d{bottom:1030.684500px;}
.y130{bottom:1035.616500px;}
.y92{bottom:1047.123000px;}
.y15c{bottom:1048.617000px;}
.y12f{bottom:1052.055000px;}
.y91{bottom:1065.055500px;}
.y12e{bottom:1068.493500px;}
.h24{height:2.391024px;}
.h35{height:24.814903px;}
.hb{height:25.893399px;}
.h23{height:29.415488px;}
.hc{height:30.462823px;}
.h39{height:32.125465px;}
.h3a{height:32.637851px;}
.h9{height:33.509105px;}
.h3e{height:36.744307px;}
.hd{height:37.013299px;}
.h3b{height:37.336090px;}
.h3c{height:37.931582px;}
.h4{height:40.348800px;}
.h6{height:40.826735px;}
.h7{height:41.125613px;}
.h3d{height:41.425613px;}
.he{height:41.484266px;}
.h38{height:41.842920px;}
.h11{height:42.141798px;}
.h14{height:44.831700px;}
.h1f{height:45.665700px;}
.h2{height:49.351066px;}
.h3{height:49.711066px;}
.h5{height:49.781453px;}
.h27{height:49.853846px;}
.h19{height:50.477846px;}
.h20{height:50.483846px;}
.h29{height:50.811024px;}
.h12{height:51.105488px;}
.hf{height:51.111488px;}
.ha{height:51.641426px;}
.h1c{height:53.465846px;}
.h17{height:53.471846px;}
.h37{height:54.093488px;}
.h1b{height:55.837613px;}
.h2a{height:55.903613px;}
.h10{height:55.957613px;}
.h13{height:55.963613px;}
.h34{height:56.683613px;}
.h2f{height:56.919798px;}
.h30{height:58.143488px;}
.h15{height:58.433846px;}
.h2b{height:58.439846px;}
.h16{height:59.543700px;}
.h18{height:59.609700px;}
.h1{height:59.737577px;}
.h26{height:60.371700px;}
.h1e{height:65.583024px;}
.h33{height:66.669488px;}
.h36{height:66.945024px;}
.h32{height:67.773488px;}
.h1d{height:68.243846px;}
.h2d{height:68.249846px;}
.h2c{height:68.805488px;}
.h2e{height:68.877488px;}
.h31{height:70.761488px;}
.h1a{height:73.211846px;}
.h21{height:73.217846px;}
.h22{height:85.271700px;}
.h28{height:170.925024px;}
.h25{height:174.411024px;}
.h8{height:292.022369px;}
.h0{height:1188.000000px;}
.w1{width:714.462495px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:20.493906px;}
.x19{left:24.969409px;}
.x16{left:39.024776px;}
.xf{left:75.168000px;}
.x53{left:81.892500px;}
.x1{left:84.531000px;}
.x6{left:88.143000px;}
.x12{left:89.343843px;}
.x4e{left:91.168500px;}
.xe{left:93.100500px;}
.x4f{left:104.019000px;}
.x50{left:105.256500px;}
.x31{left:125.584500px;}
.x2e{left:127.519500px;}
.x2f{left:135.157500px;}
.x2d{left:152.863500px;}
.x2b{left:153.870000px;}
.x22{left:156.653739px;}
.x51{left:159.540000px;}
.x21{left:161.129242px;}
.x39{left:168.709500px;}
.x15{left:170.104752px;}
.x32{left:182.197500px;}
.xb{left:184.731000px;}
.x52{left:185.821500px;}
.x2a{left:188.320500px;}
.x28{left:190.408500px;}
.x3{left:195.577500px;}
.x29{left:198.046500px;}
.x33{left:203.749500px;}
.x8{left:205.350000px;}
.xd{left:218.992500px;}
.x3a{left:224.727000px;}
.x2c{left:226.308000px;}
.x3c{left:242.847000px;}
.x3b{left:248.253000px;}
.x36{left:257.613000px;}
.x17{left:259.018623px;}
.xc{left:265.428000px;}
.x3d{left:266.998500px;}
.x37{left:272.722500px;}
.x1f{left:276.316279px;}
.x1e{left:284.303582px;}
.x7{left:292.699500px;}
.x30{left:293.923500px;}
.x2{left:305.328000px;}
.x4{left:310.972500px;}
.x34{left:313.150500px;}
.x1a{left:315.999621px;}
.x20{left:319.127570px;}
.x35{left:320.788500px;}
.x38{left:324.109500px;}
.x27{left:348.429000px;}
.x9{left:360.969000px;}
.x13{left:397.408043px;}
.x23{left:416.012416px;}
.x14{left:457.639493px;}
.x10{left:463.293000px;}
.x55{left:470.017500px;}
.x4d{left:479.869275px;}
.x11{left:481.225500px;}
.x3f{left:482.563500px;}
.x54{left:493.171500px;}
.xa{left:513.181500px;}
.x4c{left:515.104500px;}
.x46{left:518.611500px;}
.x48{left:549.432000px;}
.x43{left:550.936500px;}
.x40{left:554.415000px;}
.x1b{left:555.920889px;}
.x5{left:568.915500px;}
.x1c{left:576.044319px;}
.x3e{left:578.893500px;}
.x25{left:580.250314px;}
.x26{left:584.325633px;}
.x24{left:587.518924px;}
.x1d{left:614.445443px;}
.x47{left:616.293000px;}
.x49{left:651.612000px;}
.x4b{left:668.857500px;}
.x44{left:677.356500px;}
.x4a{left:691.812000px;}
.x41{left:735.988500px;}
.x42{left:773.853000px;}
.x45{left:801.166500px;}
@media print{
.vc{vertical-align:-90.858667pt;}
.v18{vertical-align:-49.269333pt;}
.va{vertical-align:-43.040000pt;}
.v17{vertical-align:-41.301333pt;}
.v15{vertical-align:-31.002667pt;}
.v14{vertical-align:-23.034667pt;}
.v1b{vertical-align:-9.568000pt;}
.v1{vertical-align:-7.968000pt;}
.v16{vertical-align:-3.754667pt;}
.v1a{vertical-align:-1.594667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.104000pt;}
.v10{vertical-align:6.842667pt;}
.v3{vertical-align:13.184000pt;}
.vf{vertical-align:14.810667pt;}
.v2{vertical-align:19.285333pt;}
.v6{vertical-align:21.941333pt;}
.v4{vertical-align:26.352000pt;}
.v13{vertical-align:33.114667pt;}
.v12{vertical-align:34.096000pt;}
.v7{vertical-align:35.072000pt;}
.v11{vertical-align:36.752000pt;}
.v8{vertical-align:43.034667pt;}
.v9{vertical-align:56.170667pt;}
.v19{vertical-align:57.381333pt;}
.vd{vertical-align:124.346667pt;}
.ve{vertical-align:136.730667pt;}
.vb{vertical-align:152.906667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000055pt;}
.ls7{letter-spacing:0.000576pt;}
.lsd{letter-spacing:0.000614pt;}
.ls5{letter-spacing:0.000681pt;}
.ls32{letter-spacing:0.000749pt;}
.ls4c{letter-spacing:0.000882pt;}
.ls0{letter-spacing:0.000891pt;}
.ls3e{letter-spacing:0.001519pt;}
.ls2e{letter-spacing:0.001799pt;}
.ls55{letter-spacing:0.002079pt;}
.lsf{letter-spacing:0.002906pt;}
.lsb{letter-spacing:0.003733pt;}
.ls22{letter-spacing:0.004239pt;}
.ls24{letter-spacing:0.004349pt;}
.ls1e{letter-spacing:0.006082pt;}
.ls2d{letter-spacing:0.900327pt;}
.ls37{letter-spacing:1.671842pt;}
.ls4f{letter-spacing:2.652911pt;}
.ls6{letter-spacing:2.656576pt;}
.ls4a{letter-spacing:2.657014pt;}
.ls31{letter-spacing:3.556327pt;}
.ls30{letter-spacing:3.654082pt;}
.ls52{letter-spacing:3.799814pt;}
.ls4b{letter-spacing:3.801407pt;}
.ls51{letter-spacing:5.505668pt;}
.ls49{letter-spacing:6.375121pt;}
.ls29{letter-spacing:6.377067pt;}
.ls42{letter-spacing:7.383043pt;}
.ls17{letter-spacing:8.855412pt;}
.ls2a{letter-spacing:8.857682pt;}
.ls50{letter-spacing:8.873356pt;}
.ls1b{letter-spacing:11.803145pt;}
.ls1d{letter-spacing:11.804745pt;}
.ls25{letter-spacing:11.806400pt;}
.ls3c{letter-spacing:11.808479pt;}
.ls62{letter-spacing:11.955200pt;}
.ls1c{letter-spacing:12.004932pt;}
.ls28{letter-spacing:12.103412pt;}
.ls2f{letter-spacing:12.409660pt;}
.ls48{letter-spacing:13.284716pt;}
.ls19{letter-spacing:14.757812pt;}
.ls40{letter-spacing:14.762050pt;}
.ls39{letter-spacing:15.311651pt;}
.lsa{letter-spacing:15.456479pt;}
.ls16{letter-spacing:15.940984pt;}
.ls15{letter-spacing:16.143599pt;}
.ls34{letter-spacing:16.663132pt;}
.ls35{letter-spacing:17.071197pt;}
.ls36{letter-spacing:17.214993pt;}
.ls38{letter-spacing:17.217799pt;}
.ls41{letter-spacing:17.414347pt;}
.ls46{letter-spacing:17.553867pt;}
.ls2c{letter-spacing:17.557812pt;}
.ls54{letter-spacing:18.224916pt;}
.ls3a{letter-spacing:18.847197pt;}
.ls4e{letter-spacing:18.937660pt;}
.ls56{letter-spacing:19.129067pt;}
.ls9{letter-spacing:21.254093pt;}
.ls8{letter-spacing:22.233902pt;}
.ls53{letter-spacing:25.431814pt;}
.ls23{letter-spacing:27.067145pt;}
.ls43{letter-spacing:28.465014pt;}
.ls45{letter-spacing:29.243680pt;}
.ls4{letter-spacing:29.355145pt;}
.ls3{letter-spacing:30.201056pt;}
.ls4d{letter-spacing:33.140327pt;}
.ls44{letter-spacing:33.313014pt;}
.ls2{letter-spacing:42.825897pt;}
.ls47{letter-spacing:45.942347pt;}
.ls26{letter-spacing:56.555145pt;}
.ls14{letter-spacing:77.504576pt;}
.ls27{letter-spacing:89.312576pt;}
.ls1f{letter-spacing:92.005909pt;}
.ls3f{letter-spacing:92.011242pt;}
.lse{letter-spacing:92.261909pt;}
.ls5f{letter-spacing:94.170944pt;}
.ls1a{letter-spacing:103.819242pt;}
.ls13{letter-spacing:105.947242pt;}
.ls18{letter-spacing:106.768576pt;}
.ls11{letter-spacing:106.773909pt;}
.ls60{letter-spacing:108.654663pt;}
.ls5e{letter-spacing:109.889071pt;}
.ls21{letter-spacing:109.984576pt;}
.ls3b{letter-spacing:110.208576pt;}
.ls2b{letter-spacing:117.308745pt;}
.ls5d{letter-spacing:124.907700pt;}
.ls61{letter-spacing:188.726588pt;}
.ls20{letter-spacing:214.002079pt;}
.ls5b{letter-spacing:223.619183pt;}
.ls33{letter-spacing:270.642079pt;}
.ls59{letter-spacing:325.169805pt;}
.ls5c{letter-spacing:328.132384pt;}
.ls12{letter-spacing:340.370079pt;}
.ls10{letter-spacing:347.788745pt;}
.ls3d{letter-spacing:349.074079pt;}
.ls5a{letter-spacing:396.724314pt;}
.ls57{letter-spacing:412.730470pt;}
.ls58{letter-spacing:440.661694pt;}
.ws7b{word-spacing:-53.133867pt;}
.wsab{word-spacing:-43.484756pt;}
.wsa8{word-spacing:-42.066082pt;}
.ws90{word-spacing:-38.362652pt;}
.ws7f{word-spacing:-34.611401pt;}
.wsa2{word-spacing:-25.738045pt;}
.ws84{word-spacing:-14.760588pt;}
.wsa7{word-spacing:-13.283467pt;}
.wsbc{word-spacing:-11.955200pt;}
.ws41{word-spacing:-11.359357pt;}
.ws82{word-spacing:-9.298400pt;}
.wsaf{word-spacing:-3.134898pt;}
.wsad{word-spacing:-3.115452pt;}
.ws74{word-spacing:-2.922363pt;}
.wsbb{word-spacing:-2.821427pt;}
.ws8{word-spacing:-2.656693pt;}
.ws10d{word-spacing:-2.630144pt;}
.ws6e{word-spacing:-2.444158pt;}
.wsfc{word-spacing:-2.391024pt;}
.wsb0{word-spacing:-2.337890pt;}
.ws9f{word-spacing:-2.231622pt;}
.ws42{word-spacing:-2.151936pt;}
.ws44{word-spacing:-2.104115pt;}
.ws123{word-spacing:-2.056294pt;}
.wsc2{word-spacing:-1.806551pt;}
.wsdd{word-spacing:-1.673728pt;}
.wsd4{word-spacing:-1.540882pt;}
.ws119{word-spacing:-1.530266pt;}
.ws87{word-spacing:-1.487748pt;}
.ws8f{word-spacing:-1.473503pt;}
.ws66{word-spacing:-1.381481pt;}
.wsb{word-spacing:-1.328347pt;}
.ws10b{word-spacing:-1.291162pt;}
.wse5{word-spacing:-1.222079pt;}
.wsa1{word-spacing:-1.009543pt;}
.wsed{word-spacing:-0.956416pt;}
.ws72{word-spacing:-0.956410pt;}
.ws5d{word-spacing:-0.903276pt;}
.ws60{word-spacing:-0.850142pt;}
.ws43{word-spacing:-0.841847pt;}
.ws15{word-spacing:-0.743874pt;}
.ws8d{word-spacing:-0.690740pt;}
.ws1b{word-spacing:-0.637606pt;}
.wsba{word-spacing:-0.430387pt;}
.ws2d{word-spacing:-0.425071pt;}
.ws26{word-spacing:-0.371937pt;}
.ws20{word-spacing:-0.318803pt;}
.wsb5{word-spacing:-0.265669pt;}
.ws49{word-spacing:-0.212535pt;}
.wsdc{word-spacing:-0.095642pt;}
.wsff{word-spacing:-0.063761pt;}
.ws19{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws9e{word-spacing:-0.037194pt;}
.ws94{word-spacing:-0.003248pt;}
.ws1{word-spacing:0.000000pt;}
.ws83{word-spacing:0.010627pt;}
.wsd3{word-spacing:0.053134pt;}
.ws2f{word-spacing:0.106268pt;}
.wsbe{word-spacing:0.159402pt;}
.ws39{word-spacing:0.212535pt;}
.ws81{word-spacing:0.262400pt;}
.ws54{word-spacing:0.265669pt;}
.ws75{word-spacing:0.318803pt;}
.ws7e{word-spacing:0.371937pt;}
.wsa{word-spacing:0.584473pt;}
.ws10c{word-spacing:0.621670pt;}
.ws23{word-spacing:0.637606pt;}
.ws86{word-spacing:0.644518pt;}
.ws127{word-spacing:0.669491pt;}
.ws24{word-spacing:0.690740pt;}
.wsc1{word-spacing:0.797008pt;}
.ws46{word-spacing:0.860774pt;}
.wsf5{word-spacing:0.903276pt;}
.ws70{word-spacing:0.956410pt;}
.ws114{word-spacing:1.004237pt;}
.wsce{word-spacing:1.115811pt;}
.ws10f{word-spacing:1.243341pt;}
.wsb6{word-spacing:1.381481pt;}
.ws124{word-spacing:1.386803pt;}
.ws6{word-spacing:1.434614pt;}
.ws1f{word-spacing:1.487748pt;}
.ws58{word-spacing:1.540882pt;}
.ws7d{word-spacing:1.568282pt;}
.ws47{word-spacing:1.578086pt;}
.ws93{word-spacing:1.647150pt;}
.wsec{word-spacing:1.673728pt;}
.wsf{word-spacing:1.700284pt;}
.ws56{word-spacing:1.753418pt;}
.ws102{word-spacing:1.769370pt;}
.ws117{word-spacing:1.817190pt;}
.ws55{word-spacing:1.859685pt;}
.ws6f{word-spacing:2.019087pt;}
.ws69{word-spacing:2.072221pt;}
.wsa9{word-spacing:2.095185pt;}
.ws4e{word-spacing:2.178489pt;}
.wseb{word-spacing:2.199757pt;}
.wsfe{word-spacing:2.231622pt;}
.ws5b{word-spacing:2.284756pt;}
.ws109{word-spacing:2.343219pt;}
.ws9{word-spacing:2.391024pt;}
.ws5{word-spacing:2.444158pt;}
.wsd2{word-spacing:2.497292pt;}
.ws85{word-spacing:2.550426pt;}
.ws99{word-spacing:2.603559pt;}
.ws59{word-spacing:2.762961pt;}
.wsbf{word-spacing:2.816095pt;}
.ws126{word-spacing:2.821427pt;}
.ws35{word-spacing:2.869229pt;}
.ws129{word-spacing:2.869248pt;}
.ws30{word-spacing:2.975497pt;}
.ws18{word-spacing:2.983103pt;}
.ws118{word-spacing:3.012710pt;}
.ws28{word-spacing:3.028630pt;}
.ws38{word-spacing:3.081764pt;}
.ws45{word-spacing:3.108352pt;}
.wscf{word-spacing:3.134898pt;}
.wsb1{word-spacing:3.188032pt;}
.wsd1{word-spacing:3.241166pt;}
.ws5c{word-spacing:3.347434pt;}
.ws11e{word-spacing:3.347456pt;}
.ws120{word-spacing:3.395277pt;}
.wsa6{word-spacing:3.400567pt;}
.wsa4{word-spacing:3.417164pt;}
.wsa5{word-spacing:3.434921pt;}
.wsae{word-spacing:3.520267pt;}
.ws36{word-spacing:3.559969pt;}
.ws65{word-spacing:3.666237pt;}
.wsc8{word-spacing:3.719371pt;}
.ws25{word-spacing:3.825638pt;}
.ws108{word-spacing:3.825664pt;}
.ws107{word-spacing:3.873485pt;}
.ws68{word-spacing:3.878772pt;}
.ws4{word-spacing:3.931906pt;}
.ws10e{word-spacing:4.016947pt;}
.wsc5{word-spacing:4.038174pt;}
.wsf8{word-spacing:4.091308pt;}
.ws53{word-spacing:4.144442pt;}
.ws89{word-spacing:4.197575pt;}
.wsb9{word-spacing:4.250709pt;}
.wsc7{word-spacing:4.303843pt;}
.ws1c{word-spacing:4.356977pt;}
.wsd5{word-spacing:4.366879pt;}
.ws71{word-spacing:4.410111pt;}
.ws116{word-spacing:4.447334pt;}
.ws7{word-spacing:4.463245pt;}
.wsd0{word-spacing:4.569513pt;}
.ws98{word-spacing:4.622646pt;}
.ws111{word-spacing:4.638618pt;}
.ws16{word-spacing:4.675780pt;}
.ws2c{word-spacing:4.728914pt;}
.ws76{word-spacing:4.782048pt;}
.ws112{word-spacing:4.829901pt;}
.ws48{word-spacing:4.835182pt;}
.ws91{word-spacing:4.888316pt;}
.wsd6{word-spacing:4.908027pt;}
.ws92{word-spacing:4.941450pt;}
.ws88{word-spacing:4.985179pt;}
.ws11{word-spacing:4.994583pt;}
.wsc6{word-spacing:5.047717pt;}
.ws64{word-spacing:5.153985pt;}
.ws96{word-spacing:5.166177pt;}
.ws104{word-spacing:5.212467pt;}
.wsde{word-spacing:5.313387pt;}
.ws34{word-spacing:5.366521pt;}
.wsa0{word-spacing:5.472788pt;}
.wscd{word-spacing:5.525922pt;}
.wse{word-spacing:5.632190pt;}
.ws110{word-spacing:5.642854pt;}
.ws2e{word-spacing:5.685324pt;}
.ws5a{word-spacing:5.844725pt;}
.wsd8{word-spacing:5.950993pt;}
.ws17{word-spacing:6.057261pt;}
.ws50{word-spacing:6.110395pt;}
.ws4b{word-spacing:6.163529pt;}
.ws63{word-spacing:6.216662pt;}
.wsd{word-spacing:6.376064pt;}
.ws11f{word-spacing:6.407987pt;}
.ws3a{word-spacing:6.429198pt;}
.ws105{word-spacing:6.503629pt;}
.wsea{word-spacing:6.588599pt;}
.ws101{word-spacing:6.647091pt;}
.ws6d{word-spacing:6.801135pt;}
.wsd7{word-spacing:6.907403pt;}
.wsb8{word-spacing:6.960537pt;}
.ws11d{word-spacing:7.029658pt;}
.ws4f{word-spacing:7.226206pt;}
.ws3d{word-spacing:7.279340pt;}
.ws3e{word-spacing:7.332474pt;}
.wse0{word-spacing:7.385607pt;}
.ws79{word-spacing:7.438741pt;}
.ws4a{word-spacing:7.491875pt;}
.ws29{word-spacing:7.598143pt;}
.ws51{word-spacing:7.651277pt;}
.wse6{word-spacing:7.704411pt;}
.ws103{word-spacing:7.746970pt;}
.ws5e{word-spacing:7.757545pt;}
.ws7a{word-spacing:7.863812pt;}
.ws57{word-spacing:8.023214pt;}
.ws12{word-spacing:8.076348pt;}
.ws100{word-spacing:8.081715pt;}
.ws8a{word-spacing:8.113386pt;}
.ws9a{word-spacing:8.115108pt;}
.ws8e{word-spacing:8.115510pt;}
.ws9d{word-spacing:8.116271pt;}
.wsaa{word-spacing:8.117600pt;}
.ws95{word-spacing:8.118002pt;}
.ws125{word-spacing:8.129536pt;}
.ws52{word-spacing:8.342017pt;}
.wsac{word-spacing:8.350497pt;}
.ws3f{word-spacing:8.448285pt;}
.wscb{word-spacing:8.501419pt;}
.ws2b{word-spacing:8.607686pt;}
.ws113{word-spacing:8.703386pt;}
.wsf9{word-spacing:8.767088pt;}
.ws31{word-spacing:8.820222pt;}
.ws67{word-spacing:8.873356pt;}
.wse8{word-spacing:8.926490pt;}
.ws2a{word-spacing:9.032757pt;}
.ws32{word-spacing:9.139025pt;}
.ws73{word-spacing:9.298427pt;}
.wsf7{word-spacing:9.351561pt;}
.ws128{word-spacing:9.372877pt;}
.ws106{word-spacing:9.516339pt;}
.ws5f{word-spacing:9.564096pt;}
.wse3{word-spacing:9.604837pt;}
.wse2{word-spacing:9.605678pt;}
.ws33{word-spacing:9.617230pt;}
.wsc9{word-spacing:9.670364pt;}
.ws8c{word-spacing:9.989167pt;}
.ws10{word-spacing:10.042301pt;}
.ws121{word-spacing:10.138010pt;}
.ws1e{word-spacing:10.254836pt;}
.wsf6{word-spacing:10.307970pt;}
.ws4c{word-spacing:10.361104pt;}
.ws13{word-spacing:10.520506pt;}
.ws10a{word-spacing:10.568397pt;}
.wsc0{word-spacing:10.626773pt;}
.ws3b{word-spacing:10.679907pt;}
.wse1{word-spacing:10.892443pt;}
.ws1d{word-spacing:10.998710pt;}
.wsc{word-spacing:11.051844pt;}
.wsb7{word-spacing:11.211246pt;}
.wse9{word-spacing:11.370647pt;}
.ws122{word-spacing:11.524813pt;}
.ws62{word-spacing:11.530049pt;}
.wse7{word-spacing:11.636317pt;}
.ws61{word-spacing:11.742585pt;}
.wse4{word-spacing:11.795718pt;}
.wscc{word-spacing:11.848852pt;}
.ws115{word-spacing:12.194304pt;}
.ws8b{word-spacing:12.263597pt;}
.ws27{word-spacing:12.327057pt;}
.ws11b{word-spacing:12.529050pt;}
.ws6a{word-spacing:12.752128pt;}
.ws11c{word-spacing:13.915853pt;}
.ws4d{word-spacing:13.974207pt;}
.wsdf{word-spacing:14.080475pt;}
.ws37{word-spacing:14.399278pt;}
.ws22{word-spacing:15.196286pt;}
.ws11a{word-spacing:15.493939pt;}
.ws78{word-spacing:15.515089pt;}
.ws3c{word-spacing:15.674491pt;}
.ws14{word-spacing:15.727625pt;}
.ws1a{word-spacing:15.876506pt;}
.ws80{word-spacing:16.279597pt;}
.wsfd{word-spacing:16.577766pt;}
.ws40{word-spacing:16.896570pt;}
.ws21{word-spacing:17.481042pt;}
.wsb4{word-spacing:17.640444pt;}
.ws97{word-spacing:17.852979pt;}
.ws0{word-spacing:19.051754pt;}
.wsbd{word-spacing:21.944287pt;}
.wsfb{word-spacing:22.156822pt;}
.ws7c{word-spacing:23.778264pt;}
.wsc3{word-spacing:24.335311pt;}
.wsb3{word-spacing:25.238587pt;}
.wsc4{word-spacing:25.344854pt;}
.wsa3{word-spacing:27.395822pt;}
.wsfa{word-spacing:27.682745pt;}
.ws2{word-spacing:28.644659pt;}
.ws77{word-spacing:28.745422pt;}
.ws6c{word-spacing:29.595564pt;}
.wsca{word-spacing:32.252257pt;}
.wsb2{word-spacing:38.522053pt;}
.ws9c{word-spacing:39.847230pt;}
.ws6b{word-spacing:42.825897pt;}
.wsd9{word-spacing:54.807710pt;}
.ws9b{word-spacing:55.751597pt;}
.wsee{word-spacing:63.697306pt;}
.wsf2{word-spacing:102.240870pt;}
.wsda{word-spacing:116.692691pt;}
.wsf3{word-spacing:123.521126pt;}
.wsdb{word-spacing:135.845243pt;}
.wsf1{word-spacing:165.746893pt;}
.wsef{word-spacing:170.146406pt;}
.wsf4{word-spacing:200.538547pt;}
.wsf0{word-spacing:200.560435pt;}
._25{margin-left:-29.480055pt;}
._1b{margin-left:-6.216704pt;}
._4{margin-left:-4.888316pt;}
._1{margin-left:-3.825653pt;}
._0{margin-left:-2.830983pt;}
._2{margin-left:-1.377235pt;}
._e{width:1.161339pt;}
._f{width:2.656693pt;}
._3{width:4.130192pt;}
._37{width:5.138484pt;}
._24{width:8.873356pt;}
._21{width:11.749521pt;}
._7{width:13.111351pt;}
._1a{width:14.154957pt;}
._1c{width:15.348751pt;}
._6{width:16.820057pt;}
._5{width:18.133537pt;}
._23{width:19.128192pt;}
._16{width:20.031468pt;}
._8{width:21.094160pt;}
._19{width:22.528759pt;}
._c{width:23.693459pt;}
._13{width:24.654114pt;}
._b{width:26.171639pt;}
._1f{width:27.098272pt;}
._12{width:28.320351pt;}
._10{width:29.842099pt;}
._d{width:30.881420pt;}
._11{width:32.252257pt;}
._1e{width:33.682626pt;}
._9{width:35.272397pt;}
._26{width:37.455131pt;}
._1d{width:39.846170pt;}
._14{width:41.391282pt;}
._38{width:42.403388pt;}
._22{width:44.419913pt;}
._15{width:45.376322pt;}
._a{width:46.840714pt;}
._27{width:48.245551pt;}
._39{width:49.915347pt;}
._20{width:53.058640pt;}
._17{width:59.722466pt;}
._18{width:63.388703pt;}
._2c{width:125.909603pt;}
._2d{width:135.886390pt;}
._33{width:138.824269pt;}
._34{width:160.056704pt;}
._35{width:167.905212pt;}
._32{width:182.512725pt;}
._30{width:186.912725pt;}
._36{width:222.510182pt;}
._31{width:237.095526pt;}
._2e{width:241.797972pt;}
._2f{width:273.709373pt;}
._29{width:292.244721pt;}
._2a{width:293.224092pt;}
._2b{width:303.145903pt;}
._28{width:358.513194pt;}
.fs6{font-size:31.593495pt;}
.fs7{font-size:37.168818pt;}
.fs8{font-size:37.193600pt;}
.fs4{font-size:40.885700pt;}
.fs9{font-size:41.146929pt;}
.fs2{font-size:47.820800pt;}
.fs5{font-size:48.319463pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:4.929613pt;}
.y56{bottom:30.483175pt;}
.y57{bottom:45.815312pt;}
.y59{bottom:56.965958pt;}
.y5b{bottom:68.116603pt;}
.y5a{bottom:79.267248pt;}
.y5e{bottom:94.134775pt;}
.yce{bottom:104.716000pt;}
.y58{bottom:107.143862pt;}
.y29{bottom:108.000000pt;}
.y5c{bottom:119.688338pt;}
.y15b{bottom:122.612000pt;}
.y4b{bottom:123.940000pt;}
.y28{bottom:124.404000pt;}
.y51{bottom:128.051322pt;}
.y55{bottom:132.697424pt;}
.y5d{bottom:135.485085pt;}
.y15a{bottom:139.162667pt;}
.y4a{bottom:139.880000pt;}
.y27{bottom:140.344000pt;}
.y159{bottom:153.774667pt;}
.y49{bottom:155.820000pt;}
.ycd{bottom:155.821333pt;}
.y26{bottom:156.284000pt;}
.y158{bottom:168.386667pt;}
.y48{bottom:171.760000pt;}
.ycc{bottom:171.761333pt;}
.y25{bottom:172.224000pt;}
.y7c{bottom:176.744000pt;}
.y12d{bottom:181.058667pt;}
.y90{bottom:181.226667pt;}
.y157{bottom:184.937333pt;}
.y52{bottom:186.127599pt;}
.y47{bottom:187.700000pt;}
.yf3{bottom:187.701333pt;}
.y24{bottom:188.164000pt;}
.y7b{bottom:192.684000pt;}
.ycb{bottom:198.576000pt;}
.y156{bottom:199.549333pt;}
.y50{bottom:200.530516pt;}
.y46{bottom:203.641333pt;}
.y23{bottom:204.105333pt;}
.yc8{bottom:205.441333pt;}
.y4d{bottom:207.035059pt;}
.y7a{bottom:208.624000pt;}
.y12c{bottom:210.858667pt;}
.y4f{bottom:213.074992pt;}
.y8f{bottom:213.608000pt;}
.yc7{bottom:214.553333pt;}
.y155{bottom:216.100000pt;}
.y45{bottom:219.581333pt;}
.y22{bottom:220.045333pt;}
.y4e{bottom:222.367197pt;}
.y79{bottom:224.565333pt;}
.y12b{bottom:226.800000pt;}
.yca{bottom:227.172000pt;}
.y8e{bottom:229.548000pt;}
.y154{bottom:230.710667pt;}
.yc9{bottom:231.157333pt;}
.y44{bottom:235.521333pt;}
.y21{bottom:235.985333pt;}
.y78{bottom:240.505333pt;}
.y12a{bottom:242.740000pt;}
.y54{bottom:244.668487pt;}
.y153{bottom:245.322667pt;}
.y8d{bottom:245.488000pt;}
.y43{bottom:251.461333pt;}
.yc6{bottom:256.028000pt;}
.y77{bottom:256.445333pt;}
.y129{bottom:258.680000pt;}
.y152{bottom:259.934667pt;}
.y8c{bottom:261.428000pt;}
.y20{bottom:261.688000pt;}
.y42{bottom:267.401333pt;}
.yf2{bottom:267.402667pt;}
.yc5{bottom:271.968000pt;}
.y76{bottom:272.385333pt;}
.y128{bottom:274.620000pt;}
.y151{bottom:276.485333pt;}
.y8b{bottom:277.369333pt;}
.y41{bottom:283.341333pt;}
.yf1{bottom:283.342667pt;}
.yc4{bottom:287.908000pt;}
.y75{bottom:288.325333pt;}
.y127{bottom:290.560000pt;}
.y150{bottom:291.097333pt;}
.y8a{bottom:293.309333pt;}
.y40{bottom:299.282667pt;}
.y74{bottom:304.266667pt;}
.y14f{bottom:305.709333pt;}
.y126{bottom:306.500000pt;}
.y89{bottom:309.249333pt;}
.y1f{bottom:310.900000pt;}
.ybe{bottom:312.608000pt;}
.yc3{bottom:313.382667pt;}
.y3f{bottom:315.222667pt;}
.yc2{bottom:316.652000pt;}
.ybb{bottom:319.008000pt;}
.y73{bottom:320.206667pt;}
.y14e{bottom:320.321333pt;}
.y125{bottom:322.441333pt;}
.y88{bottom:325.189333pt;}
.y1e{bottom:326.840000pt;}
.yba{bottom:328.120000pt;}
.y3e{bottom:331.162667pt;}
.yc1{bottom:333.822667pt;}
.ybf{bottom:333.837333pt;}
.y72{bottom:336.146667pt;}
.y14d{bottom:336.872000pt;}
.yc0{bottom:337.106667pt;}
.y124{bottom:338.381333pt;}
.ybd{bottom:340.740000pt;}
.y87{bottom:341.129333pt;}
.y1d{bottom:342.780000pt;}
.ybc{bottom:344.724000pt;}
.y3d{bottom:347.102667pt;}
.y183{bottom:350.286667pt;}
.y14c{bottom:351.484000pt;}
.y71{bottom:352.086667pt;}
.y123{bottom:354.321333pt;}
.y86{bottom:357.069333pt;}
.y1c{bottom:358.720000pt;}
.y3c{bottom:363.042667pt;}
.y106{bottom:363.044000pt;}
.y182{bottom:364.898667pt;}
.yf0{bottom:365.884000pt;}
.y14b{bottom:366.096000pt;}
.y70{bottom:368.026667pt;}
.yb9{bottom:369.594667pt;}
.y122{bottom:370.261333pt;}
.y85{bottom:373.010667pt;}
.y1b{bottom:374.661333pt;}
.y3b{bottom:378.984000pt;}
.y181{bottom:379.509333pt;}
.yef{bottom:381.825333pt;}
.y6f{bottom:383.966667pt;}
.yb8{bottom:385.534667pt;}
.y121{bottom:386.201333pt;}
.y84{bottom:388.950667pt;}
.y14a{bottom:390.006667pt;}
.y1a{bottom:390.601333pt;}
.y180{bottom:394.121333pt;}
.y3a{bottom:394.924000pt;}
.yee{bottom:397.765333pt;}
.yb6{bottom:398.190667pt;}
.yb7{bottom:398.205333pt;}
.y6e{bottom:399.908000pt;}
.yb5{bottom:401.474667pt;}
.y120{bottom:402.142667pt;}
.y83{bottom:404.890667pt;}
.y19{bottom:406.541333pt;}
.y17f{bottom:408.733333pt;}
.y39{bottom:410.864000pt;}
.yed{bottom:413.705333pt;}
.y6d{bottom:415.848000pt;}
.yb4{bottom:417.414667pt;}
.y11f{bottom:418.082667pt;}
.y82{bottom:420.830667pt;}
.y18{bottom:422.481333pt;}
.y149{bottom:423.717333pt;}
.y17e{bottom:424.673333pt;}
.y38{bottom:426.804000pt;}
.yec{bottom:429.645333pt;}
.y6c{bottom:431.788000pt;}
.y11e{bottom:434.022667pt;}
.y81{bottom:436.770667pt;}
.y17{bottom:438.421333pt;}
.y17d{bottom:439.285333pt;}
.y148{bottom:439.658667pt;}
.y105{bottom:442.744000pt;}
.yb3{bottom:443.056000pt;}
.yb2{bottom:446.340000pt;}
.yb1{bottom:446.524000pt;}
.y6b{bottom:447.728000pt;}
.y11d{bottom:449.962667pt;}
.y80{bottom:452.712000pt;}
.y17c{bottom:453.897333pt;}
.y16{bottom:454.362667pt;}
.y37{bottom:454.825333pt;}
.yeb{bottom:455.281333pt;}
.y147{bottom:455.598667pt;}
.y104{bottom:458.685333pt;}
.y6a{bottom:463.668000pt;}
.y11c{bottom:465.902667pt;}
.y7f{bottom:468.652000pt;}
.y17b{bottom:469.837333pt;}
.y15{bottom:470.302667pt;}
.y36{bottom:470.765333pt;}
.y146{bottom:471.538667pt;}
.y103{bottom:474.625333pt;}
.yb0{bottom:475.264000pt;}
.y69{bottom:479.608000pt;}
.yea{bottom:480.917333pt;}
.y11b{bottom:481.842667pt;}
.y17a{bottom:484.449333pt;}
.y7e{bottom:484.592000pt;}
.y14{bottom:486.242667pt;}
.y35{bottom:486.706667pt;}
.y145{bottom:487.478667pt;}
.y102{bottom:490.565333pt;}
.yaf{bottom:491.204000pt;}
.ye9{bottom:496.857333pt;}
.y11a{bottom:497.784000pt;}
.y179{bottom:499.061333pt;}
.y68{bottom:500.532000pt;}
.y13{bottom:502.182667pt;}
.y34{bottom:502.646667pt;}
.y144{bottom:503.418667pt;}
.yae{bottom:507.144000pt;}
.y101{bottom:509.961333pt;}
.y178{bottom:513.673333pt;}
.y119{bottom:513.724000pt;}
.y67{bottom:516.472000pt;}
.y12{bottom:518.122667pt;}
.y33{bottom:518.586667pt;}
.y143{bottom:519.360000pt;}
.yac{bottom:519.800000pt;}
.yad{bottom:519.814667pt;}
.yab{bottom:523.084000pt;}
.y100{bottom:525.902667pt;}
.y177{bottom:528.285333pt;}
.ye5{bottom:529.458667pt;}
.ye8{bottom:529.858667pt;}
.y7d{bottom:532.412000pt;}
.y66{bottom:532.413333pt;}
.y11{bottom:534.062667pt;}
.y32{bottom:534.526667pt;}
.ye7{bottom:534.988000pt;}
.yff{bottom:541.842667pt;}
.ye6{bottom:544.204000pt;}
.y176{bottom:544.225333pt;}
.y142{bottom:545.208000pt;}
.y118{bottom:547.721333pt;}
.y65{bottom:548.353333pt;}
.y10{bottom:550.004000pt;}
.yaa{bottom:550.362667pt;}
.y31{bottom:550.466667pt;}
.ya9{bottom:553.646667pt;}
.yfe{bottom:557.782667pt;}
.y175{bottom:558.837333pt;}
.y117{bottom:562.333333pt;}
.ye4{bottom:563.622667pt;}
.y64{bottom:564.293333pt;}
.yf{bottom:565.944000pt;}
.y30{bottom:566.406667pt;}
.yfd{bottom:573.722667pt;}
.y174{bottom:574.777333pt;}
.ye2{bottom:575.860000pt;}
.ye3{bottom:576.105333pt;}
.y116{bottom:576.945333pt;}
.y141{bottom:578.920000pt;}
.ye1{bottom:579.562667pt;}
.ye{bottom:581.884000pt;}
.y2f{bottom:582.348000pt;}
.ya8{bottom:582.570667pt;}
.y173{bottom:589.389333pt;}
.yfc{bottom:589.662667pt;}
.y140{bottom:594.860000pt;}
.yd{bottom:597.824000pt;}
.y2e{bottom:598.288000pt;}
.ya7{bottom:598.512000pt;}
.ydf{bottom:603.324000pt;}
.ye0{bottom:603.742667pt;}
.y172{bottom:604.001333pt;}
.yfb{bottom:605.602667pt;}
.yde{bottom:607.026667pt;}
.y115{bottom:607.112191pt;}
.y63{bottom:608.528000pt;}
.y13f{bottom:610.801333pt;}
.yc{bottom:613.764000pt;}
.y2d{bottom:614.228000pt;}
.ya6{bottom:614.452000pt;}
.y171{bottom:618.613333pt;}
.y114{bottom:619.684940pt;}
.yfa{bottom:621.544000pt;}
.y62{bottom:623.138667pt;}
.y13e{bottom:626.741333pt;}
.yb{bottom:629.704000pt;}
.y2c{bottom:630.168000pt;}
.y113{bottom:632.256542pt;}
.y170{bottom:633.225333pt;}
.ydd{bottom:634.109333pt;}
.yf9{bottom:637.484000pt;}
.y61{bottom:637.750667pt;}
.ya5{bottom:640.106667pt;}
.y13d{bottom:642.681333pt;}
.ya4{bottom:643.376000pt;}
.y112{bottom:644.829292pt;}
.ya{bottom:645.645333pt;}
.y2b{bottom:646.108000pt;}
.y16f{bottom:649.165333pt;}
.ydc{bottom:650.049333pt;}
.y60{bottom:652.362667pt;}
.yf8{bottom:653.424000pt;}
.y111{bottom:657.402041pt;}
.y13c{bottom:658.621333pt;}
.y2a{bottom:662.048000pt;}
.y16e{bottom:663.777333pt;}
.ydb{bottom:665.989333pt;}
.y5f{bottom:666.974667pt;}
.y110{bottom:669.974790pt;}
.ya3{bottom:672.300000pt;}
.y13b{bottom:674.561333pt;}
.y9{bottom:677.989333pt;}
.y16d{bottom:678.389333pt;}
.yda{bottom:681.930667pt;}
.yf7{bottom:682.118667pt;}
.y10f{bottom:682.547539pt;}
.ya2{bottom:688.240000pt;}
.y13a{bottom:690.502667pt;}
.y16c{bottom:693.001333pt;}
.y10e{bottom:695.120289pt;}
.y4c{bottom:695.385836pt;}
.ya1{bottom:700.882667pt;}
.ya0{bottom:704.180000pt;}
.yd9{bottom:704.281333pt;}
.yd8{bottom:704.297333pt;}
.y139{bottom:706.442667pt;}
.yd7{bottom:707.565333pt;}
.y10d{bottom:707.693038pt;}
.y16b{bottom:708.941333pt;}
.y9f{bottom:720.120000pt;}
.y10c{bottom:720.265787pt;}
.y138{bottom:722.382667pt;}
.y16a{bottom:723.553333pt;}
.y8{bottom:732.717333pt;}
.y9e{bottom:732.764000pt;}
.y10b{bottom:732.838536pt;}
.yd6{bottom:733.201333pt;}
.yf6{bottom:733.265333pt;}
.y9d{bottom:736.060000pt;}
.y169{bottom:738.165333pt;}
.y137{bottom:738.322667pt;}
.y10a{bottom:745.411286pt;}
.yf5{bottom:747.877333pt;}
.yd5{bottom:749.141333pt;}
.y7{bottom:751.314667pt;}
.y9c{bottom:752.001333pt;}
.y168{bottom:752.777333pt;}
.y109{bottom:757.984035pt;}
.yf4{bottom:762.489333pt;}
.yd4{bottom:765.082667pt;}
.y9b{bottom:767.941333pt;}
.y167{bottom:768.717333pt;}
.y6{bottom:769.910667pt;}
.y108{bottom:776.294198pt;}
.yd3{bottom:781.022667pt;}
.y166{bottom:783.329333pt;}
.y136{bottom:787.128000pt;}
.y5{bottom:788.508000pt;}
.yd2{bottom:796.962667pt;}
.y165{bottom:797.941333pt;}
.y135{bottom:801.740000pt;}
.y9a{bottom:803.254667pt;}
.y4{bottom:807.105333pt;}
.y164{bottom:812.553333pt;}
.y134{bottom:816.352000pt;}
.y99{bottom:819.194667pt;}
.y3{bottom:825.701333pt;}
.y163{bottom:827.165333pt;}
.yd1{bottom:831.684000pt;}
.y98{bottom:835.134667pt;}
.y133{bottom:837.368000pt;}
.y162{bottom:843.105333pt;}
.yd0{bottom:847.624000pt;}
.y97{bottom:851.074667pt;}
.y132{bottom:851.978667pt;}
.y161{bottom:857.717333pt;}
.y96{bottom:867.014667pt;}
.y160{bottom:872.328000pt;}
.ycf{bottom:873.260000pt;}
.y2{bottom:876.178667pt;}
.y107{bottom:882.954667pt;}
.y95{bottom:882.956000pt;}
.y15f{bottom:886.940000pt;}
.y94{bottom:898.896000pt;}
.y1{bottom:900.089333pt;}
.y15e{bottom:901.552000pt;}
.y131{bottom:905.936000pt;}
.y93{bottom:914.836000pt;}
.y15d{bottom:916.164000pt;}
.y130{bottom:920.548000pt;}
.y92{bottom:930.776000pt;}
.y15c{bottom:932.104000pt;}
.y12f{bottom:935.160000pt;}
.y91{bottom:946.716000pt;}
.y12e{bottom:949.772000pt;}
.h24{height:2.125355pt;}
.h35{height:22.057692pt;}
.hb{height:23.016355pt;}
.h23{height:26.147101pt;}
.hc{height:27.078064pt;}
.h39{height:28.555969pt;}
.h3a{height:29.011423pt;}
.h9{height:29.785871pt;}
.h3e{height:32.661606pt;}
.hd{height:32.900710pt;}
.h3b{height:33.187635pt;}
.h3c{height:33.716962pt;}
.h4{height:35.865600pt;}
.h6{height:36.290431pt;}
.h7{height:36.556100pt;}
.h3d{height:36.822767pt;}
.he{height:36.874903pt;}
.h38{height:37.193707pt;}
.h11{height:37.459376pt;}
.h14{height:39.850400pt;}
.h1f{height:40.591733pt;}
.h2{height:43.867614pt;}
.h3{height:44.187614pt;}
.h5{height:44.250180pt;}
.h27{height:44.314530pt;}
.h19{height:44.869197pt;}
.h20{height:44.874530pt;}
.h29{height:45.165355pt;}
.h12{height:45.427101pt;}
.hf{height:45.432434pt;}
.ha{height:45.903490pt;}
.h1c{height:47.525197pt;}
.h17{height:47.530530pt;}
.h37{height:48.083101pt;}
.h1b{height:49.633434pt;}
.h2a{height:49.692100pt;}
.h10{height:49.740100pt;}
.h13{height:49.745434pt;}
.h34{height:50.385434pt;}
.h2f{height:50.595376pt;}
.h30{height:51.683101pt;}
.h15{height:51.941197pt;}
.h2b{height:51.946530pt;}
.h16{height:52.927733pt;}
.h18{height:52.986400pt;}
.h1{height:53.100068pt;}
.h26{height:53.663733pt;}
.h1e{height:58.296021pt;}
.h33{height:59.261767pt;}
.h36{height:59.506688pt;}
.h32{height:60.243101pt;}
.h1d{height:60.661197pt;}
.h2d{height:60.666530pt;}
.h2c{height:61.160434pt;}
.h2e{height:61.224434pt;}
.h31{height:62.899101pt;}
.h1a{height:65.077197pt;}
.h21{height:65.082530pt;}
.h22{height:75.797067pt;}
.h28{height:151.933355pt;}
.h25{height:155.032021pt;}
.h8{height:259.575439pt;}
.h0{height:1056.000000pt;}
.w1{width:635.077774pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:18.216805pt;}
.x19{left:22.195030pt;}
.x16{left:34.688689pt;}
.xf{left:66.816000pt;}
.x53{left:72.793333pt;}
.x1{left:75.138667pt;}
.x6{left:78.349333pt;}
.x12{left:79.416749pt;}
.x4e{left:81.038667pt;}
.xe{left:82.756000pt;}
.x4f{left:92.461333pt;}
.x50{left:93.561333pt;}
.x31{left:111.630667pt;}
.x2e{left:113.350667pt;}
.x2f{left:120.140000pt;}
.x2d{left:135.878667pt;}
.x2b{left:136.773333pt;}
.x22{left:139.247768pt;}
.x51{left:141.813333pt;}
.x21{left:143.225993pt;}
.x39{left:149.964000pt;}
.x15{left:151.204224pt;}
.x32{left:161.953333pt;}
.xb{left:164.205333pt;}
.x52{left:165.174667pt;}
.x2a{left:167.396000pt;}
.x28{left:169.252000pt;}
.x3{left:173.846667pt;}
.x29{left:176.041333pt;}
.x33{left:181.110667pt;}
.x8{left:182.533333pt;}
.xd{left:194.660000pt;}
.x3a{left:199.757333pt;}
.x2c{left:201.162667pt;}
.x3c{left:215.864000pt;}
.x3b{left:220.669333pt;}
.x36{left:228.989333pt;}
.x17{left:230.238776pt;}
.xc{left:235.936000pt;}
.x3d{left:237.332000pt;}
.x37{left:242.420000pt;}
.x1f{left:245.614471pt;}
.x1e{left:252.714296pt;}
.x7{left:260.177333pt;}
.x30{left:261.265333pt;}
.x2{left:271.402667pt;}
.x4{left:276.420000pt;}
.x34{left:278.356000pt;}
.x1a{left:280.888552pt;}
.x20{left:283.668952pt;}
.x35{left:285.145333pt;}
.x38{left:288.097333pt;}
.x27{left:309.714667pt;}
.x9{left:320.861333pt;}
.x13{left:353.251594pt;}
.x23{left:369.788814pt;}
.x14{left:406.790660pt;}
.x10{left:411.816000pt;}
.x55{left:417.793333pt;}
.x4d{left:426.550467pt;}
.x11{left:427.756000pt;}
.x3f{left:428.945333pt;}
.x54{left:438.374667pt;}
.xa{left:456.161333pt;}
.x4c{left:457.870667pt;}
.x46{left:460.988000pt;}
.x48{left:488.384000pt;}
.x43{left:489.721333pt;}
.x40{left:492.813333pt;}
.x1b{left:494.151901pt;}
.x5{left:505.702667pt;}
.x1c{left:512.039395pt;}
.x3e{left:514.572000pt;}
.x25{left:515.778057pt;}
.x26{left:519.400563pt;}
.x24{left:522.239043pt;}
.x1d{left:546.173727pt;}
.x47{left:547.816000pt;}
.x49{left:579.210667pt;}
.x4b{left:594.540000pt;}
.x44{left:602.094667pt;}
.x4a{left:614.944000pt;}
.x41{left:654.212000pt;}
.x42{left:687.869333pt;}
.x45{left:712.148000pt;}
}




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