
    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_bd60e3dd7461253ae425dac2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965000;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_65d6fdeb110985dc3118e179.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.046600;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_439060b78f6785ccfbc356a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952000;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_4febd5255368a47cf0b50552.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_329efca2dd4c1f9e26d4e767.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926000;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_278c7f0d74875e2db356082b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_717ebbf844b4a3319c0b3977.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_074084d9d6a1839223cf71a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.801000;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_36fb2b5e6b43fb90fb1694a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.638000;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_ee784cc1cf81be2b5db0975e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.599000;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_dca39bb146871ae43800058d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.668000;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;}
.m3{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v5{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:26.040000px;}
.ls5{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000768px;}
.ls1{letter-spacing:0.001056px;}
.ls51{letter-spacing:0.001063px;}
.ls34{letter-spacing:0.001248px;}
.ls4f{letter-spacing:0.002112px;}
.ls7e{letter-spacing:0.003246px;}
.ls3b{letter-spacing:0.003437px;}
.ls40{letter-spacing:0.003792px;}
.ls6e{letter-spacing:0.003798px;}
.ls0{letter-spacing:2.987028px;}
.ls14{letter-spacing:2.987700px;}
.ls22{letter-spacing:2.988438px;}
.ls39{letter-spacing:2.989200px;}
.ls2b{letter-spacing:2.990112px;}
.ls1e{letter-spacing:2.993700px;}
.ls59{letter-spacing:6.216077px;}
.ls2e{letter-spacing:7.560529px;}
.ls33{letter-spacing:8.965248px;}
.ls32{letter-spacing:8.966880px;}
.ls47{letter-spacing:8.967235px;}
.ls3{letter-spacing:8.969856px;}
.ls57{letter-spacing:9.805248px;}
.ls56{letter-spacing:9.807235px;}
.ls2a{letter-spacing:10.181412px;}
.ls46{letter-spacing:10.759248px;}
.ls1c{letter-spacing:10.904699px;}
.ls1b{letter-spacing:10.907412px;}
.ls41{letter-spacing:10.907974px;}
.ls1a{letter-spacing:10.910699px;}
.ls3e{letter-spacing:11.411974px;}
.ls3f{letter-spacing:11.417412px;}
.ls17{letter-spacing:11.750699px;}
.ls18{letter-spacing:11.753412px;}
.lsb{letter-spacing:11.902896px;}
.ls6b{letter-spacing:11.933412px;}
.ls6a{letter-spacing:11.933974px;}
.ls23{letter-spacing:12.038699px;}
.ls24{letter-spacing:12.041412px;}
.ls31{letter-spacing:12.373248px;}
.ls58{letter-spacing:12.373574px;}
.ls4b{letter-spacing:12.379248px;}
.ls20{letter-spacing:12.398699px;}
.ls21{letter-spacing:12.401412px;}
.ls12{letter-spacing:12.436896px;}
.ls52{letter-spacing:12.443412px;}
.ls28{letter-spacing:12.467412px;}
.ls38{letter-spacing:12.757248px;}
.ls37{letter-spacing:12.759235px;}
.ls29{letter-spacing:13.164438px;}
.ls35{letter-spacing:13.810921px;}
.ls2d{letter-spacing:14.531412px;}
.ls26{letter-spacing:14.549974px;}
.ls6{letter-spacing:14.578896px;}
.ls6c{letter-spacing:14.897974px;}
.ls27{letter-spacing:15.456438px;}
.ls72{letter-spacing:16.306896px;}
.ls8{letter-spacing:16.360896px;}
.ls63{letter-spacing:16.361412px;}
.ls62{letter-spacing:16.361974px;}
.ls55{letter-spacing:16.363650px;}
.ls1d{letter-spacing:16.365232px;}
.ls4{letter-spacing:16.594896px;}
.ls25{letter-spacing:16.800526px;}
.ls53{letter-spacing:16.952741px;}
.ls7b{letter-spacing:17.032896px;}
.ls70{letter-spacing:17.068896px;}
.ls3a{letter-spacing:17.213165px;}
.ls3d{letter-spacing:17.273412px;}
.ls3c{letter-spacing:17.279974px;}
.ls42{letter-spacing:17.297412px;}
.ls43{letter-spacing:17.303412px;}
.lsf{letter-spacing:17.404896px;}
.ls60{letter-spacing:17.519412px;}
.ls5f{letter-spacing:17.519974px;}
.ls2c{letter-spacing:17.520438px;}
.ls78{letter-spacing:17.554896px;}
.ls13{letter-spacing:17.578896px;}
.ls1f{letter-spacing:17.621412px;}
.ls7c{letter-spacing:17.638896px;}
.ls5c{letter-spacing:17.747412px;}
.ls5d{letter-spacing:17.747974px;}
.lsa{letter-spacing:18.034896px;}
.ls54{letter-spacing:18.130924px;}
.ls10{letter-spacing:18.172896px;}
.ls4e{letter-spacing:18.269412px;}
.ls4d{letter-spacing:18.275412px;}
.ls7{letter-spacing:18.334896px;}
.ls64{letter-spacing:18.468529px;}
.ls44{letter-spacing:18.485412px;}
.ls45{letter-spacing:18.523652px;}
.ls6d{letter-spacing:18.574896px;}
.ls5a{letter-spacing:18.916379px;}
.ls67{letter-spacing:18.935412px;}
.ls69{letter-spacing:18.941412px;}
.ls66{letter-spacing:18.941974px;}
.ls5e{letter-spacing:19.110529px;}
.ls61{letter-spacing:19.116529px;}
.ls50{letter-spacing:19.127974px;}
.ls71{letter-spacing:19.456896px;}
.ls11{letter-spacing:19.474896px;}
.ls2{letter-spacing:19.487028px;}
.ls30{letter-spacing:19.493412px;}
.ls77{letter-spacing:19.846896px;}
.ls65{letter-spacing:19.896529px;}
.ls73{letter-spacing:19.996896px;}
.ls76{letter-spacing:20.032896px;}
.ls75{letter-spacing:20.038896px;}
.lse{letter-spacing:20.086896px;}
.ls19{letter-spacing:20.120112px;}
.ls9{letter-spacing:20.218896px;}
.ls36{letter-spacing:20.552744px;}
.ls6f{letter-spacing:20.866896px;}
.lsd{letter-spacing:21.112896px;}
.lsc{letter-spacing:21.118896px;}
.ls7a{letter-spacing:21.244896px;}
.ls74{letter-spacing:21.592896px;}
.ls16{letter-spacing:21.845412px;}
.ls79{letter-spacing:22.234896px;}
.ls2f{letter-spacing:22.476438px;}
.ls15{letter-spacing:23.850438px;}
.ls5b{letter-spacing:25.308529px;}
.ls68{letter-spacing:26.496529px;}
.ls7d{letter-spacing:32.726700px;}
.ls49{letter-spacing:99.088560px;}
.ls4a{letter-spacing:149.068560px;}
.ls4c{letter-spacing:244.348560px;}
.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;}
}
.ws76{word-spacing:-71.934605px;}
.wsc4{word-spacing:-61.003687px;}
.wsc3{word-spacing:-60.414596px;}
.wsc1{word-spacing:-60.349141px;}
.wsc6{word-spacing:-59.563686px;}
.wsc{word-spacing:-41.843100px;}
.wse7{word-spacing:-35.865600px;}
.ws56{word-spacing:-18.578336px;}
.ws57{word-spacing:-15.924326px;}
.ws7{word-spacing:-11.943245px;}
.ws1f{word-spacing:-11.844931px;}
.ws25{word-spacing:-9.289102px;}
.wsd{word-spacing:-0.065455px;}
.ws6e{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.wsb9{word-spacing:-0.047821px;}
.ws28{word-spacing:-0.041843px;}
.ws29{word-spacing:0.000000px;}
.ws21{word-spacing:1.804166px;}
.ws26{word-spacing:9.582001px;}
.ws27{word-spacing:9.584086px;}
.ws17{word-spacing:10.472736px;}
.wsab{word-spacing:10.690118px;}
.ws90{word-spacing:10.701034px;}
.wsbe{word-spacing:10.703942px;}
.ws7d{word-spacing:10.705882px;}
.wsaa{word-spacing:10.707341px;}
.ws1a{word-spacing:11.389100px;}
.ws1b{word-spacing:11.395453px;}
.ws7e{word-spacing:11.650919px;}
.wsa9{word-spacing:11.716373px;}
.ws36{word-spacing:11.847283px;}
.wsc8{word-spacing:11.875025px;}
.wsd3{word-spacing:12.109101px;}
.wsdb{word-spacing:12.240010px;}
.wsdd{word-spacing:12.254099px;}
.wsdc{word-spacing:12.256000px;}
.wsb3{word-spacing:12.302611px;}
.wsaf{word-spacing:12.307075px;}
.wsb2{word-spacing:12.307843px;}
.wsae{word-spacing:12.309254px;}
.wsb0{word-spacing:12.309379px;}
.wsbf{word-spacing:12.317414px;}
.wsa3{word-spacing:12.319738px;}
.ws1{word-spacing:12.319834px;}
.wsad{word-spacing:12.320506px;}
.wsa4{word-spacing:12.322618px;}
.ws4b{word-spacing:12.370919px;}
.ws97{word-spacing:12.436374px;}
.wsea{word-spacing:12.567283px;}
.ws2c{word-spacing:12.632738px;}
.ws18{word-spacing:12.829102px;}
.ws6f{word-spacing:12.894556px;}
.wsa0{word-spacing:12.960011px;}
.wsec{word-spacing:13.019104px;}
.wsf6{word-spacing:13.024493px;}
.wsd8{word-spacing:13.025465px;}
.wse3{word-spacing:13.156375px;}
.wsda{word-spacing:13.221829px;}
.ws4e{word-spacing:13.287284px;}
.wse0{word-spacing:13.302258px;}
.ws1e{word-spacing:13.352738px;}
.wseb{word-spacing:13.418193px;}
.ws79{word-spacing:13.483648px;}
.ws8a{word-spacing:13.549102px;}
.wsa1{word-spacing:13.680011px;}
.ws20{word-spacing:13.688612px;}
.ws98{word-spacing:13.745466px;}
.wscc{word-spacing:13.854515px;}
.wsa2{word-spacing:13.941830px;}
.ws3c{word-spacing:14.007284px;}
.ws93{word-spacing:14.072739px;}
.ws92{word-spacing:14.114129px;}
.wsd0{word-spacing:14.137453px;}
.ws8f{word-spacing:14.138194px;}
.wscf{word-spacing:14.144095px;}
.ws9b{word-spacing:14.334557px;}
.wsbd{word-spacing:14.400012px;}
.ws87{word-spacing:14.465467px;}
.ws95{word-spacing:14.491997px;}
.ws2b{word-spacing:14.530921px;}
.ws81{word-spacing:14.596376px;}
.ws33{word-spacing:14.723410px;}
.ws34{word-spacing:14.727285px;}
.ws88{word-spacing:14.792740px;}
.wsca{word-spacing:14.814368px;}
.wsc9{word-spacing:14.858194px;}
.ws3{word-spacing:14.901427px;}
.ws4{word-spacing:14.902157px;}
.ws5{word-spacing:14.902646px;}
.ws0{word-spacing:14.902781px;}
.ws51{word-spacing:14.923649px;}
.wsf1{word-spacing:14.983381px;}
.ws100{word-spacing:14.984276px;}
.ws105{word-spacing:14.985080px;}
.ws10b{word-spacing:14.985332px;}
.wsfc{word-spacing:14.985566px;}
.wsfa{word-spacing:14.985590px;}
.wsed{word-spacing:14.985646px;}
.wsf0{word-spacing:14.985991px;}
.wsfd{word-spacing:14.986153px;}
.ws103{word-spacing:14.986237px;}
.wsfe{word-spacing:14.986512px;}
.wsf7{word-spacing:14.987113px;}
.ws109{word-spacing:14.987125px;}
.ws10d{word-spacing:14.987236px;}
.wsff{word-spacing:14.987501px;}
.ws101{word-spacing:14.987599px;}
.ws102{word-spacing:14.987639px;}
.wsf4{word-spacing:14.987693px;}
.ws108{word-spacing:14.987717px;}
.ws10c{word-spacing:14.987723px;}
.ws10a{word-spacing:14.987729px;}
.wsee{word-spacing:14.988135px;}
.wsf3{word-spacing:14.988172px;}
.ws106{word-spacing:14.988284px;}
.wsf2{word-spacing:14.988367px;}
.ws107{word-spacing:14.988726px;}
.ws13{word-spacing:14.989103px;}
.ws104{word-spacing:14.989348px;}
.wsfb{word-spacing:14.989381px;}
.wsf8{word-spacing:14.989489px;}
.wsf9{word-spacing:14.990000px;}
.ws64{word-spacing:15.120013px;}
.ws80{word-spacing:15.185467px;}
.ws55{word-spacing:15.316376px;}
.ws10{word-spacing:15.381831px;}
.wsbb{word-spacing:15.384515px;}
.ws66{word-spacing:15.447286px;}
.ws65{word-spacing:15.578195px;}
.ws63{word-spacing:15.709104px;}
.ws61{word-spacing:15.774559px;}
.ws89{word-spacing:15.840013px;}
.ws84{word-spacing:15.905468px;}
.ws6d{word-spacing:15.970922px;}
.ws9a{word-spacing:16.036377px;}
.wsd9{word-spacing:16.101832px;}
.ws59{word-spacing:16.167286px;}
.ws99{word-spacing:16.232741px;}
.ws86{word-spacing:16.295789px;}
.wscb{word-spacing:16.296821px;}
.wsc5{word-spacing:16.297025px;}
.ws16{word-spacing:16.298195px;}
.wscd{word-spacing:16.303025px;}
.ws5d{word-spacing:16.363650px;}
.wsa{word-spacing:16.426445px;}
.ws8d{word-spacing:16.429105px;}
.ws24{word-spacing:16.494559px;}
.ws2d{word-spacing:16.560014px;}
.ws53{word-spacing:16.625468px;}
.ws78{word-spacing:16.690923px;}
.ws8c{word-spacing:16.756378px;}
.wse{word-spacing:16.821832px;}
.ws1d{word-spacing:16.887287px;}
.ws7a{word-spacing:16.952741px;}
.ws8b{word-spacing:17.018196px;}
.ws2a{word-spacing:17.083651px;}
.ws6a{word-spacing:17.149105px;}
.ws3d{word-spacing:17.214560px;}
.ws4c{word-spacing:17.280014px;}
.ws3b{word-spacing:17.345469px;}
.ws54{word-spacing:17.410924px;}
.wsc2{word-spacing:17.455025px;}
.ws7c{word-spacing:17.468552px;}
.ws45{word-spacing:17.476378px;}
.ws4d{word-spacing:17.541833px;}
.ws83{word-spacing:17.607287px;}
.wsb7{word-spacing:17.672742px;}
.wsc0{word-spacing:17.685713px;}
.ws42{word-spacing:17.738197px;}
.ws62{word-spacing:17.803651px;}
.ws85{word-spacing:17.869106px;}
.ws35{word-spacing:17.934560px;}
.ws72{word-spacing:18.000015px;}
.ws19{word-spacing:18.065470px;}
.ws7f{word-spacing:18.130924px;}
.ws77{word-spacing:18.176129px;}
.ws75{word-spacing:18.196379px;}
.ws68{word-spacing:18.213692px;}
.ws2e{word-spacing:18.261833px;}
.ws94{word-spacing:18.327288px;}
.ws37{word-spacing:18.392743px;}
.ws6c{word-spacing:18.458197px;}
.ws7b{word-spacing:18.523652px;}
.wse2{word-spacing:18.558395px;}
.ws6b{word-spacing:18.589106px;}
.ws4a{word-spacing:18.654561px;}
.ws5e{word-spacing:18.720016px;}
.ws91{word-spacing:18.746129px;}
.wsb8{word-spacing:18.785470px;}
.ws8e{word-spacing:18.850925px;}
.wsc7{word-spacing:18.877025px;}
.ws2f{word-spacing:18.916379px;}
.ws73{word-spacing:18.981834px;}
.ws5c{word-spacing:19.047289px;}
.wsbc{word-spacing:19.063025px;}
.ws71{word-spacing:19.112743px;}
.ws3a{word-spacing:19.243652px;}
.ws50{word-spacing:19.374562px;}
.ws43{word-spacing:19.379323px;}
.ws9d{word-spacing:19.440016px;}
.ws82{word-spacing:19.505471px;}
.wsf5{word-spacing:19.567037px;}
.ws11{word-spacing:19.570925px;}
.ws49{word-spacing:19.636380px;}
.wsd2{word-spacing:19.701835px;}
.ws67{word-spacing:19.767289px;}
.ws3f{word-spacing:19.832744px;}
.ws22{word-spacing:19.898198px;}
.ws38{word-spacing:20.029108px;}
.ws32{word-spacing:20.160017px;}
.ws31{word-spacing:20.225471px;}
.ws44{word-spacing:20.247239px;}
.wsef{word-spacing:20.257490px;}
.ws74{word-spacing:20.290926px;}
.ws58{word-spacing:20.356381px;}
.ws9c{word-spacing:20.421835px;}
.ws47{word-spacing:20.487290px;}
.wsd1{word-spacing:20.552744px;}
.ws48{word-spacing:20.618199px;}
.ws40{word-spacing:20.683654px;}
.ws39{word-spacing:20.749108px;}
.ws5a{word-spacing:20.814563px;}
.ws41{word-spacing:20.880017px;}
.wsd5{word-spacing:20.945472px;}
.ws30{word-spacing:21.010927px;}
.ws3e{word-spacing:21.076381px;}
.wse1{word-spacing:21.141836px;}
.wsd6{word-spacing:21.207290px;}
.wsd4{word-spacing:21.306721px;}
.ws4f{word-spacing:21.338200px;}
.wsf{word-spacing:21.403654px;}
.wsde{word-spacing:21.518099px;}
.wsdf{word-spacing:21.534563px;}
.ws5b{word-spacing:21.665473px;}
.ws15{word-spacing:21.730927px;}
.ws5f{word-spacing:21.776135px;}
.ws60{word-spacing:21.796382px;}
.ws69{word-spacing:21.861836px;}
.wsd7{word-spacing:21.927291px;}
.ws52{word-spacing:21.992746px;}
.wsba{word-spacing:22.068515px;}
.wse4{word-spacing:22.135930px;}
.ws23{word-spacing:22.254564px;}
.ws70{word-spacing:22.385473px;}
.wse6{word-spacing:22.516382px;}
.ws46{word-spacing:22.581837px;}
.ws12{word-spacing:23.105474px;}
.ws1c{word-spacing:23.367292px;}
.wsce{word-spacing:23.498201px;}
.ws96{word-spacing:23.694565px;}
.ws14{word-spacing:23.956384px;}
.wse5{word-spacing:24.741839px;}
.wse9{word-spacing:26.770931px;}
.wse8{word-spacing:28.734569px;}
.ws9{word-spacing:28.799989px;}
.ws2{word-spacing:29.856624px;}
.wsb{word-spacing:32.924621px;}
.ws8{word-spacing:43.660258px;}
.wsac{word-spacing:95.814950px;}
.wsa7{word-spacing:98.666266px;}
.wsa6{word-spacing:98.720064px;}
.wsb1{word-spacing:99.042854px;}
.wsa8{word-spacing:101.947968px;}
.wsb4{word-spacing:153.755827px;}
.wsa5{word-spacing:171.616896px;}
.wsb5{word-spacing:309.563933px;}
.wsb6{word-spacing:520.666032px;}
.ws9f{word-spacing:750.918067px;}
.ws9e{word-spacing:862.603546px;}
._1a{margin-left:-7.950189px;}
._d{margin-left:-6.694896px;}
._3{margin-left:-3.347448px;}
._0{margin-left:-1.613952px;}
._5{width:1.404738px;}
._3d{width:2.755610px;}
._e{width:5.005492px;}
._3e{width:8.967280px;}
._13{width:10.210918px;}
._32{width:11.284558px;}
._7{width:12.845740px;}
._4{width:15.109357px;}
._9{width:17.372040px;}
._6{width:19.249124px;}
._a{width:20.288704px;}
._11{width:21.515376px;}
._b{width:22.670808px;}
._40{width:28.088673px;}
._3f{width:30.058504px;}
._1b{width:32.727300px;}
._f{width:34.167301px;}
._2{width:38.732074px;}
._8{width:40.368723px;}
._1{width:43.831464px;}
._10{width:69.234470px;}
._12{width:72.464602px;}
._30{width:95.868749px;}
._3b{width:99.376349px;}
._36{width:103.830912px;}
._38{width:112.381219px;}
._25{width:114.429197px;}
._26{width:119.540045px;}
._27{width:127.299092px;}
._2c{width:128.500222px;}
._39{width:129.654144px;}
._34{width:138.364310px;}
._33{width:142.769347px;}
._28{width:147.676608px;}
._29{width:153.648230px;}
._31{width:155.692570px;}
._3a{width:157.058134px;}
._21{width:171.668131px;}
._2a{width:173.553638px;}
._23{width:176.878560px;}
._3c{width:181.892390px;}
._2e{width:185.227891px;}
._20{width:189.302506px;}
._2f{width:192.383078px;}
._35{width:207.715622px;}
._22{width:215.134214px;}
._37{width:233.538854px;}
._1e{width:253.282867px;}
._2b{width:262.536192px;}
._1c{width:269.691379px;}
._1d{width:319.670093px;}
._24{width:329.246208px;}
._1f{width:337.961549px;}
._15{width:750.971866px;}
._18{width:764.346394px;}
._16{width:792.880819px;}
._19{width:800.875507px;}
._17{width:824.460480px;}
._14{width:873.933734px;}
._2d{width:1844.939298px;}
._c{width:1874.855298px;}
.fc4{color:rgb(0,139,191);}
.fc3{color:rgb(0,166,252);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(51,51,51);}
.fs5{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fs7{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fs2{font-size:71.731200px;}
.fs6{font-size:83.686200px;}
.fs1{font-size:131.506800px;}
.y0{bottom:0.000000px;}
.y3b{bottom:29.871000px;}
.y3a{bottom:41.826000px;}
.y66{bottom:48.877500px;}
.y39{bottom:53.781000px;}
.y188{bottom:115.434000px;}
.y1cc{bottom:115.435500px;}
.y10c{bottom:115.923000px;}
.yee{bottom:116.100000px;}
.y38{bottom:116.632500px;}
.y11{bottom:117.420000px;}
.y12c{bottom:118.690500px;}
.ya1{bottom:118.762500px;}
.y1f2{bottom:122.371500px;}
.y7d{bottom:123.394500px;}
.y166{bottom:124.138500px;}
.ye5{bottom:124.740000px;}
.ybf{bottom:127.972500px;}
.y144{bottom:129.183000px;}
.y65{bottom:129.522000px;}
.y219{bottom:130.867500px;}
.yed{bottom:132.538500px;}
.y1a0{bottom:135.198000px;}
.y187{bottom:137.761500px;}
.y10b{bottom:138.339000px;}
.y37{bottom:139.048500px;}
.y12b{bottom:141.106500px;}
.ya0{bottom:141.178500px;}
.y1cb{bottom:143.542500px;}
.y1f1{bottom:144.787500px;}
.y7c{bottom:145.810500px;}
.y165{bottom:146.554500px;}
.ye4{bottom:147.156000px;}
.yec{bottom:148.977000px;}
.y10{bottom:149.548500px;}
.ybe{bottom:150.388500px;}
.y143{bottom:151.599000px;}
.y64{bottom:151.938000px;}
.y218{bottom:153.283500px;}
.y19f{bottom:157.614000px;}
.y10a{bottom:160.755000px;}
.y36{bottom:161.464500px;}
.y171{bottom:161.734500px;}
.y12a{bottom:163.522500px;}
.y9f{bottom:163.594500px;}
.yf{bottom:165.240000px;}
.yeb{bottom:165.415500px;}
.y186{bottom:166.065000px;}
.y1f0{bottom:167.352000px;}
.y7b{bottom:168.226500px;}
.y164{bottom:168.970500px;}
.ye3{bottom:169.572000px;}
.ybd{bottom:172.804500px;}
.y142{bottom:174.015000px;}
.y63{bottom:174.354000px;}
.y217{bottom:175.699500px;}
.y19e{bottom:180.030000px;}
.yea{bottom:181.854000px;}
.y109{bottom:183.171000px;}
.y170{bottom:184.150500px;}
.y1ca{bottom:185.581500px;}
.y129{bottom:185.938500px;}
.y9e{bottom:186.010500px;}
.y35{bottom:189.858000px;}
.y7a{bottom:190.642500px;}
.y163{bottom:191.386500px;}
.ye2{bottom:191.988000px;}
.ye{bottom:192.886500px;}
.ybc{bottom:195.220500px;}
.y141{bottom:196.431000px;}
.y62{bottom:196.770000px;}
.y216{bottom:198.115500px;}
.ye9{bottom:198.292500px;}
.y19d{bottom:202.446000px;}
.y1ef{bottom:203.218500px;}
.y108{bottom:205.587000px;}
.y16f{bottom:206.565000px;}
.y1c9{bottom:207.711000px;}
.y128{bottom:208.354500px;}
.y9d{bottom:208.426500px;}
.yd{bottom:208.578000px;}
.y185{bottom:211.051500px;}
.y79{bottom:213.058500px;}
.y162{bottom:213.802500px;}
.ye1{bottom:214.404000px;}
.ye8{bottom:214.731000px;}
.ybb{bottom:217.636500px;}
.y140{bottom:218.847000px;}
.y61{bottom:219.186000px;}
.y215{bottom:220.530000px;}
.y19c{bottom:224.862000px;}
.y1ee{bottom:225.634500px;}
.y107{bottom:228.003000px;}
.y16e{bottom:228.981000px;}
.y1c8{bottom:229.840500px;}
.y127{bottom:230.770500px;}
.y9c{bottom:230.842500px;}
.ye7{bottom:231.169500px;}
.y184{bottom:233.377500px;}
.y78{bottom:235.474500px;}
.y161{bottom:236.218500px;}
.ye0{bottom:236.820000px;}
.yc{bottom:239.136000px;}
.yba{bottom:240.052500px;}
.y13f{bottom:241.263000px;}
.y60{bottom:241.602000px;}
.y34{bottom:242.163000px;}
.y214{bottom:242.946000px;}
.y19b{bottom:247.278000px;}
.ye6{bottom:247.608000px;}
.y1ed{bottom:248.050500px;}
.y106{bottom:250.419000px;}
.y16d{bottom:251.397000px;}
.y1c7{bottom:251.971500px;}
.y126{bottom:253.186500px;}
.y9b{bottom:253.258500px;}
.y183{bottom:255.705000px;}
.y77{bottom:257.890500px;}
.y160{bottom:258.634500px;}
.ydf{bottom:259.236000px;}
.y33{bottom:260.095500px;}
.yb9{bottom:262.468500px;}
.y13e{bottom:263.679000px;}
.yb{bottom:263.793000px;}
.y5f{bottom:264.018000px;}
.y213{bottom:265.362000px;}
.y19a{bottom:269.694000px;}
.y1ec{bottom:270.466500px;}
.y105{bottom:272.835000px;}
.y1c6{bottom:274.101000px;}
.y125{bottom:275.602500px;}
.y9a{bottom:275.674500px;}
.y182{bottom:278.031000px;}
.ya{bottom:279.484500px;}
.y76{bottom:280.306500px;}
.y32{bottom:280.867500px;}
.y15f{bottom:281.050500px;}
.yde{bottom:281.652000px;}
.yb8{bottom:284.884500px;}
.y13d{bottom:286.095000px;}
.y5e{bottom:286.434000px;}
.y212{bottom:287.778000px;}
.y199{bottom:292.110000px;}
.y1eb{bottom:292.882500px;}
.y9{bottom:295.174500px;}
.y104{bottom:295.251000px;}
.y1c5{bottom:296.230500px;}
.y16c{bottom:296.295000px;}
.y124{bottom:298.018500px;}
.y99{bottom:298.090500px;}
.y181{bottom:300.357000px;}
.y75{bottom:302.722500px;}
.y15e{bottom:303.466500px;}
.ydd{bottom:304.068000px;}
.yb7{bottom:307.300500px;}
.y13c{bottom:308.511000px;}
.y5d{bottom:308.850000px;}
.y211{bottom:310.194000px;}
.y16b{bottom:312.733500px;}
.y198{bottom:314.526000px;}
.y1ea{bottom:315.447000px;}
.y103{bottom:317.667000px;}
.y1c4{bottom:318.361500px;}
.y8{bottom:319.833000px;}
.y123{bottom:320.434500px;}
.y98{bottom:320.506500px;}
.y180{bottom:322.684500px;}
.y74{bottom:325.138500px;}
.y15d{bottom:325.882500px;}
.ydc{bottom:326.484000px;}
.y14f{bottom:326.496000px;}
.y16a{bottom:329.172000px;}
.yb6{bottom:329.866500px;}
.y13b{bottom:330.927000px;}
.y5c{bottom:331.266000px;}
.y210{bottom:332.610000px;}
.y7{bottom:335.524500px;}
.y31{bottom:335.989500px;}
.y197{bottom:336.942000px;}
.y102{bottom:340.083000px;}
.y1c3{bottom:340.491000px;}
.y122{bottom:342.850500px;}
.y97{bottom:342.922500px;}
.y17f{bottom:345.160500px;}
.y169{bottom:345.610500px;}
.y14e{bottom:346.821000px;}
.y73{bottom:347.554500px;}
.y15c{bottom:348.298500px;}
.ydb{bottom:348.900000px;}
.y1e9{bottom:351.313500px;}
.y5b{bottom:353.682000px;}
.y20f{bottom:355.026000px;}
.y30{bottom:356.163000px;}
.y196{bottom:359.358000px;}
.y6{bottom:360.181500px;}
.y168{bottom:362.049000px;}
.y101{bottom:362.499000px;}
.y1c2{bottom:362.622000px;}
.y121{bottom:365.266500px;}
.y96{bottom:365.338500px;}
.y14d{bottom:367.144500px;}
.yb5{bottom:367.225500px;}
.y72{bottom:369.970500px;}
.y15b{bottom:370.714500px;}
.yda{bottom:371.316000px;}
.y1e8{bottom:373.729500px;}
.y13a{bottom:373.849500px;}
.y5{bottom:375.873000px;}
.y5a{bottom:376.098000px;}
.y2f{bottom:376.338000px;}
.y20e{bottom:377.442000px;}
.y167{bottom:378.487500px;}
.y17e{bottom:380.131500px;}
.y195{bottom:381.774000px;}
.y1c1{bottom:384.751500px;}
.y100{bottom:384.915000px;}
.y14c{bottom:387.468000px;}
.y120{bottom:387.682500px;}
.y95{bottom:387.753000px;}
.yb4{bottom:389.641500px;}
.y4{bottom:391.563000px;}
.y71{bottom:392.386500px;}
.y15a{bottom:393.130500px;}
.yd9{bottom:393.732000px;}
.y139{bottom:394.173000px;}
.y1e7{bottom:396.144000px;}
.y2e{bottom:396.511500px;}
.y59{bottom:398.514000px;}
.y20d{bottom:399.858000px;}
.y17d{bottom:402.459000px;}
.y194{bottom:404.188500px;}
.y1c0{bottom:406.881000px;}
.yff{bottom:407.331000px;}
.y14b{bottom:407.791500px;}
.y11f{bottom:410.098500px;}
.y94{bottom:410.169000px;}
.yb3{bottom:412.057500px;}
.y138{bottom:414.496500px;}
.y70{bottom:414.802500px;}
.y159{bottom:415.546500px;}
.yd8{bottom:416.148000px;}
.y3{bottom:416.221500px;}
.y2d{bottom:416.686500px;}
.y1e6{bottom:418.560000px;}
.y58{bottom:420.930000px;}
.y20c{bottom:422.274000px;}
.y17c{bottom:424.785000px;}
.y193{bottom:426.604500px;}
.y14a{bottom:428.115000px;}
.y1bf{bottom:429.012000px;}
.yfe{bottom:429.745500px;}
.y1a4{bottom:429.747000px;}
.y2{bottom:431.913000px;}
.y11e{bottom:432.514500px;}
.y93{bottom:432.585000px;}
.yb2{bottom:434.473500px;}
.y137{bottom:436.165500px;}
.y2c{bottom:436.860000px;}
.y6f{bottom:437.218500px;}
.y158{bottom:437.962500px;}
.yd7{bottom:438.562500px;}
.y1e5{bottom:440.976000px;}
.y57{bottom:443.346000px;}
.y20b{bottom:444.690000px;}
.y17b{bottom:447.111000px;}
.y1{bottom:447.603000px;}
.y149{bottom:448.440000px;}
.y192{bottom:449.020500px;}
.y1be{bottom:451.291500px;}
.yfd{bottom:452.161500px;}
.y92{bottom:455.001000px;}
.y11d{bottom:455.079000px;}
.yb1{bottom:456.889500px;}
.y2b{bottom:457.035000px;}
.y136{bottom:459.507000px;}
.y6e{bottom:459.634500px;}
.y157{bottom:460.378500px;}
.yd6{bottom:460.978500px;}
.y1e4{bottom:463.392000px;}
.y56{bottom:465.760500px;}
.y20a{bottom:467.106000px;}
.y148{bottom:468.763500px;}
.y17a{bottom:469.438500px;}
.y191{bottom:471.436500px;}
.yfc{bottom:474.577500px;}
.y2a{bottom:477.210000px;}
.y91{bottom:477.417000px;}
.yb0{bottom:479.305500px;}
.y11c{bottom:481.978500px;}
.y6d{bottom:482.050500px;}
.yd5{bottom:483.394500px;}
.y1bd{bottom:484.297500px;}
.y1e3{bottom:485.808000px;}
.y55{bottom:488.176500px;}
.y135{bottom:489.162000px;}
.y209{bottom:489.522000px;}
.y147{bottom:490.432500px;}
.y179{bottom:491.764500px;}
.y190{bottom:493.852500px;}
.yfb{bottom:496.993500px;}
.y29{bottom:497.383500px;}
.y90{bottom:499.833000px;}
.yaf{bottom:501.721500px;}
.y6c{bottom:504.466500px;}
.y156{bottom:505.276500px;}
.y134{bottom:505.600500px;}
.yd4{bottom:505.810500px;}
.y1bc{bottom:506.428500px;}
.y1e2{bottom:508.224000px;}
.y54{bottom:510.592500px;}
.y208{bottom:511.938000px;}
.y146{bottom:513.774000px;}
.y178{bottom:514.240500px;}
.y18f{bottom:516.268500px;}
.y28{bottom:517.558500px;}
.yfa{bottom:519.409500px;}
.y155{bottom:521.713500px;}
.y133{bottom:522.039000px;}
.y8f{bottom:522.249000px;}
.yae{bottom:524.137500px;}
.y6b{bottom:526.882500px;}
.y11b{bottom:527.889000px;}
.yd3{bottom:528.226500px;}
.y1bb{bottom:528.558000px;}
.y1e1{bottom:530.640000px;}
.y53{bottom:533.008500px;}
.y207{bottom:534.354000px;}
.y27{bottom:537.732000px;}
.y154{bottom:538.152000px;}
.yf9{bottom:541.825500px;}
.y8e{bottom:544.665000px;}
.yad{bottom:546.553500px;}
.y11a{bottom:548.212500px;}
.y6a{bottom:549.298500px;}
.yd2{bottom:550.642500px;}
.y1ba{bottom:550.687500px;}
.y1e0{bottom:553.056000px;}
.y153{bottom:554.590500px;}
.y52{bottom:555.424500px;}
.y206{bottom:556.770000px;}
.y26{bottom:557.907000px;}
.y177{bottom:559.138500px;}
.y18e{bottom:561.166500px;}
.yf8{bottom:564.241500px;}
.y1a3{bottom:564.391500px;}
.y145{bottom:566.593500px;}
.y8d{bottom:567.081000px;}
.y119{bottom:568.537500px;}
.yac{bottom:568.969500px;}
.y152{bottom:571.029000px;}
.y69{bottom:571.714500px;}
.y1b9{bottom:572.818500px;}
.yd1{bottom:573.058500px;}
.y132{bottom:574.992000px;}
.y176{bottom:575.577000px;}
.y1df{bottom:575.622000px;}
.y18d{bottom:577.605000px;}
.y51{bottom:577.840500px;}
.y25{bottom:578.080500px;}
.y205{bottom:579.186000px;}
.yf7{bottom:586.657500px;}
.y151{bottom:587.467500px;}
.y118{bottom:588.861000px;}
.y8c{bottom:589.497000px;}
.yab{bottom:591.385500px;}
.y131{bottom:591.430500px;}
.y175{bottom:592.015500px;}
.y18c{bottom:594.043500px;}
.y68{bottom:594.279000px;}
.y1b8{bottom:594.948000px;}
.yd0{bottom:595.474500px;}
.y24{bottom:598.255500px;}
.y50{bottom:600.256500px;}
.y204{bottom:601.602000px;}
.y130{bottom:607.869000px;}
.y174{bottom:608.454000px;}
.yf6{bottom:609.073500px;}
.y117{bottom:609.184500px;}
.y18b{bottom:610.482000px;}
.y1de{bottom:611.487000px;}
.y8b{bottom:611.913000px;}
.yaa{bottom:613.801500px;}
.y1b7{bottom:617.079000px;}
.ycf{bottom:617.890500px;}
.y23{bottom:618.430500px;}
.y67{bottom:621.178500px;}
.y4f{bottom:622.672500px;}
.y203{bottom:624.018000px;}
.y12f{bottom:624.307500px;}
.y173{bottom:624.892500px;}
.y18a{bottom:626.920500px;}
.y116{bottom:629.508000px;}
.yf5{bottom:631.489500px;}
.y1dd{bottom:634.053000px;}
.y8a{bottom:634.329000px;}
.ya9{bottom:636.217500px;}
.y22{bottom:638.604000px;}
.y1b6{bottom:639.208500px;}
.yce{bottom:640.306500px;}
.y12e{bottom:640.746000px;}
.y172{bottom:641.331000px;}
.y189{bottom:643.359000px;}
.y4e{bottom:645.088500px;}
.y202{bottom:646.434000px;}
.y115{bottom:651.177000px;}
.yf4{bottom:653.905500px;}
.y89{bottom:656.745000px;}
.y12d{bottom:657.184500px;}
.ya8{bottom:658.633500px;}
.y21{bottom:658.779000px;}
.y1b5{bottom:661.338000px;}
.ycd{bottom:662.722500px;}
.y4d{bottom:667.504500px;}
.y201{bottom:668.850000px;}
.y1dc{bottom:669.918000px;}
.yf3{bottom:676.321500px;}
.y20{bottom:678.952500px;}
.y88{bottom:679.161000px;}
.y114{bottom:680.832000px;}
.ya7{bottom:681.049500px;}
.y1b4{bottom:683.469000px;}
.ycc{bottom:685.138500px;}
.y4c{bottom:689.920500px;}
.y200{bottom:691.266000px;}
.y1db{bottom:692.334000px;}
.y113{bottom:697.270500px;}
.yf2{bottom:698.737500px;}
.y87{bottom:701.577000px;}
.ya6{bottom:703.465500px;}
.y1b3{bottom:705.598500px;}
.ycb{bottom:707.554500px;}
.y1f{bottom:708.834000px;}
.y4b{bottom:712.336500px;}
.y1ff{bottom:713.682000px;}
.y1da{bottom:714.750000px;}
.yf1{bottom:721.153500px;}
.y86{bottom:723.993000px;}
.ya5{bottom:725.881500px;}
.y1b2{bottom:727.728000px;}
.yca{bottom:730.120500px;}
.y4a{bottom:734.752500px;}
.y1fe{bottom:736.098000px;}
.y1d9{bottom:737.166000px;}
.yf0{bottom:743.569500px;}
.y85{bottom:746.409000px;}
.y1b1{bottom:749.859000px;}
.y112{bottom:750.223500px;}
.y49{bottom:757.168500px;}
.y1fd{bottom:758.514000px;}
.y1d8{bottom:759.582000px;}
.y1e{bottom:765.339000px;}
.yc9{bottom:765.985500px;}
.y111{bottom:766.662000px;}
.y84{bottom:768.825000px;}
.ya4{bottom:770.779500px;}
.y1b0{bottom:772.138500px;}
.y48{bottom:779.584500px;}
.y1fc{bottom:780.930000px;}
.y1d7{bottom:781.998000px;}
.y110{bottom:783.100500px;}
.y1d{bottom:783.271500px;}
.ya3{bottom:787.218000px;}
.yc8{bottom:788.401500px;}
.y83{bottom:791.241000px;}
.y1c{bottom:796.321500px;}
.y10f{bottom:799.539000px;}
.y47{bottom:802.000500px;}
.y1fb{bottom:803.346000px;}
.ya2{bottom:803.656500px;}
.y1d6{bottom:804.414000px;}
.y1af{bottom:805.144500px;}
.yc7{bottom:810.817500px;}
.y82{bottom:813.657000px;}
.y10e{bottom:815.977500px;}
.y1b{bottom:816.148500px;}
.y46{bottom:824.416500px;}
.y1fa{bottom:825.762000px;}
.y1d5{bottom:826.980000px;}
.y1ae{bottom:827.275500px;}
.y10d{bottom:832.416000px;}
.yc6{bottom:833.233500px;}
.y1a{bottom:834.081000px;}
.y81{bottom:836.073000px;}
.y45{bottom:846.832500px;}
.y1f9{bottom:848.176500px;}
.y1ad{bottom:849.405000px;}
.y19{bottom:852.013500px;}
.yc5{bottom:855.649500px;}
.y80{bottom:858.489000px;}
.y1d4{bottom:862.845000px;}
.y150{bottom:866.976000px;}
.y44{bottom:869.248500px;}
.y1f8{bottom:870.592500px;}
.y1ac{bottom:871.534500px;}
.y18{bottom:874.030500px;}
.yc4{bottom:878.065500px;}
.y7f{bottom:881.053500px;}
.y1d3{bottom:885.261000px;}
.y43{bottom:891.664500px;}
.y1f7{bottom:893.008500px;}
.y1ab{bottom:893.665500px;}
.y17{bottom:894.952500px;}
.yc3{bottom:900.481500px;}
.y7e{bottom:900.630000px;}
.y1d2{bottom:907.677000px;}
.y42{bottom:914.080500px;}
.y1f6{bottom:915.424500px;}
.y1aa{bottom:915.795000px;}
.y16{bottom:915.873000px;}
.yc2{bottom:922.897500px;}
.yef{bottom:923.046000px;}
.y1d1{bottom:930.093000px;}
.y41{bottom:936.496500px;}
.y1a9{bottom:937.926000px;}
.yc1{bottom:945.313500px;}
.y1f5{bottom:948.301500px;}
.y1d0{bottom:952.509000px;}
.y15{bottom:957.717000px;}
.y40{bottom:958.912500px;}
.y1a8{bottom:960.055500px;}
.y1a2{bottom:967.729500px;}
.yc0{bottom:967.878000px;}
.y1cf{bottom:974.925000px;}
.y3f{bottom:981.328500px;}
.y1a7{bottom:982.185000px;}
.y1a1{bottom:990.294000px;}
.y14{bottom:993.880500px;}
.y1ce{bottom:997.489500px;}
.y1f4{bottom:1003.594500px;}
.y3e{bottom:1003.744500px;}
.y1a6{bottom:1004.316000px;}
.y1f3{bottom:1026.010500px;}
.y3d{bottom:1026.160500px;}
.y1a5{bottom:1026.445500px;}
.y13{bottom:1030.045500px;}
.y1cd{bottom:1042.321500px;}
.y3c{bottom:1048.576500px;}
.y12{bottom:1066.209000px;}
.h7{height:25.464576px;}
.hb{height:33.583031px;}
.h11{height:38.196864px;}
.h3{height:40.079808px;}
.h2{height:40.187405px;}
.h1{height:43.178596px;}
.h12{height:43.488221px;}
.h14{height:46.472766px;}
.ha{height:47.975897px;}
.h10{height:48.723269px;}
.h9{height:52.533862px;}
.hd{height:52.959862px;}
.hc{height:53.439744px;}
.he{height:55.704161px;}
.h6{height:57.571461px;}
.hf{height:62.140814px;}
.h8{height:62.346219px;}
.h5{height:64.420814px;}
.h4{height:93.369828px;}
.h13{height:918.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.w1{width:1188.000000px;}
.x0{left:0.000000px;}
.x16{left:48.877500px;}
.x7{left:51.024000px;}
.x1{left:52.303500px;}
.x3{left:56.787000px;}
.xd{left:59.758500px;}
.xf{left:63.457500px;}
.x2{left:75.843000px;}
.x10{left:118.191000px;}
.x13{left:121.890000px;}
.xe{left:208.276500px;}
.x14{left:215.712000px;}
.x5{left:270.574500px;}
.x4{left:276.463500px;}
.x1b{left:279.736500px;}
.x17{left:282.441000px;}
.x9{left:285.198000px;}
.xc{left:288.897000px;}
.x15{left:291.177000px;}
.x1a{left:292.827000px;}
.x6{left:294.165000px;}
.x1c{left:309.190500px;}
.x19{left:318.436500px;}
.x8{left:319.893000px;}
.x12{left:396.583500px;}
.x11{left:409.210500px;}
.x18{left:505.419000px;}
.x1d{left:618.201000px;}
.xa{left:627.259500px;}
.xb{left:632.625000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v5{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:23.146667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000683pt;}
.ls1{letter-spacing:0.000939pt;}
.ls51{letter-spacing:0.000945pt;}
.ls34{letter-spacing:0.001109pt;}
.ls4f{letter-spacing:0.001877pt;}
.ls7e{letter-spacing:0.002885pt;}
.ls3b{letter-spacing:0.003055pt;}
.ls40{letter-spacing:0.003371pt;}
.ls6e{letter-spacing:0.003376pt;}
.ls0{letter-spacing:2.655136pt;}
.ls14{letter-spacing:2.655733pt;}
.ls22{letter-spacing:2.656389pt;}
.ls39{letter-spacing:2.657067pt;}
.ls2b{letter-spacing:2.657877pt;}
.ls1e{letter-spacing:2.661067pt;}
.ls59{letter-spacing:5.525402pt;}
.ls2e{letter-spacing:6.720470pt;}
.ls33{letter-spacing:7.969109pt;}
.ls32{letter-spacing:7.970560pt;}
.ls47{letter-spacing:7.970876pt;}
.ls3{letter-spacing:7.973205pt;}
.ls57{letter-spacing:8.715776pt;}
.ls56{letter-spacing:8.717542pt;}
.ls2a{letter-spacing:9.050144pt;}
.ls46{letter-spacing:9.563776pt;}
.ls1c{letter-spacing:9.693066pt;}
.ls1b{letter-spacing:9.695477pt;}
.ls41{letter-spacing:9.695977pt;}
.ls1a{letter-spacing:9.698399pt;}
.ls3e{letter-spacing:10.143977pt;}
.ls3f{letter-spacing:10.148811pt;}
.ls17{letter-spacing:10.445066pt;}
.ls18{letter-spacing:10.447477pt;}
.lsb{letter-spacing:10.580352pt;}
.ls6b{letter-spacing:10.607477pt;}
.ls6a{letter-spacing:10.607977pt;}
.ls23{letter-spacing:10.701066pt;}
.ls24{letter-spacing:10.703477pt;}
.ls31{letter-spacing:10.998443pt;}
.ls58{letter-spacing:10.998733pt;}
.ls4b{letter-spacing:11.003776pt;}
.ls20{letter-spacing:11.021066pt;}
.ls21{letter-spacing:11.023477pt;}
.ls12{letter-spacing:11.055019pt;}
.ls52{letter-spacing:11.060811pt;}
.ls28{letter-spacing:11.082144pt;}
.ls38{letter-spacing:11.339776pt;}
.ls37{letter-spacing:11.341542pt;}
.ls29{letter-spacing:11.701723pt;}
.ls35{letter-spacing:12.276374pt;}
.ls2d{letter-spacing:12.916811pt;}
.ls26{letter-spacing:12.933310pt;}
.ls6{letter-spacing:12.959019pt;}
.ls6c{letter-spacing:13.242643pt;}
.ls27{letter-spacing:13.739056pt;}
.ls72{letter-spacing:14.495019pt;}
.ls8{letter-spacing:14.543019pt;}
.ls63{letter-spacing:14.543477pt;}
.ls62{letter-spacing:14.543977pt;}
.ls55{letter-spacing:14.545467pt;}
.ls1d{letter-spacing:14.546873pt;}
.ls4{letter-spacing:14.751019pt;}
.ls25{letter-spacing:14.933801pt;}
.ls53{letter-spacing:15.069103pt;}
.ls7b{letter-spacing:15.140352pt;}
.ls70{letter-spacing:15.172352pt;}
.ls3a{letter-spacing:15.300591pt;}
.ls3d{letter-spacing:15.354144pt;}
.ls3c{letter-spacing:15.359977pt;}
.ls42{letter-spacing:15.375477pt;}
.ls43{letter-spacing:15.380811pt;}
.lsf{letter-spacing:15.471019pt;}
.ls60{letter-spacing:15.572811pt;}
.ls5f{letter-spacing:15.573310pt;}
.ls2c{letter-spacing:15.573723pt;}
.ls78{letter-spacing:15.604352pt;}
.ls13{letter-spacing:15.625685pt;}
.ls1f{letter-spacing:15.663477pt;}
.ls7c{letter-spacing:15.679019pt;}
.ls5c{letter-spacing:15.775477pt;}
.ls5d{letter-spacing:15.775977pt;}
.lsa{letter-spacing:16.031019pt;}
.ls54{letter-spacing:16.116377pt;}
.ls10{letter-spacing:16.153685pt;}
.ls4e{letter-spacing:16.239477pt;}
.ls4d{letter-spacing:16.244811pt;}
.ls7{letter-spacing:16.297685pt;}
.ls64{letter-spacing:16.416470pt;}
.ls44{letter-spacing:16.431477pt;}
.ls45{letter-spacing:16.465468pt;}
.ls6d{letter-spacing:16.511019pt;}
.ls5a{letter-spacing:16.814559pt;}
.ls67{letter-spacing:16.831477pt;}
.ls69{letter-spacing:16.836811pt;}
.ls66{letter-spacing:16.837310pt;}
.ls5e{letter-spacing:16.987137pt;}
.ls61{letter-spacing:16.992470pt;}
.ls50{letter-spacing:17.002643pt;}
.ls71{letter-spacing:17.295019pt;}
.ls11{letter-spacing:17.311019pt;}
.ls2{letter-spacing:17.321803pt;}
.ls30{letter-spacing:17.327477pt;}
.ls77{letter-spacing:17.641685pt;}
.ls65{letter-spacing:17.685804pt;}
.ls73{letter-spacing:17.775019pt;}
.ls76{letter-spacing:17.807019pt;}
.ls75{letter-spacing:17.812352pt;}
.lse{letter-spacing:17.855019pt;}
.ls19{letter-spacing:17.884544pt;}
.ls9{letter-spacing:17.972352pt;}
.ls36{letter-spacing:18.269106pt;}
.ls6f{letter-spacing:18.548352pt;}
.lsd{letter-spacing:18.767019pt;}
.lsc{letter-spacing:18.772352pt;}
.ls7a{letter-spacing:18.884352pt;}
.ls74{letter-spacing:19.193685pt;}
.ls16{letter-spacing:19.418144pt;}
.ls79{letter-spacing:19.764352pt;}
.ls2f{letter-spacing:19.979056pt;}
.ls15{letter-spacing:21.200389pt;}
.ls5b{letter-spacing:22.496470pt;}
.ls68{letter-spacing:23.552470pt;}
.ls7d{letter-spacing:29.090400pt;}
.ls49{letter-spacing:88.078720pt;}
.ls4a{letter-spacing:132.505387pt;}
.ls4c{letter-spacing:217.198720pt;}
.ws76{word-spacing:-63.941871pt;}
.wsc4{word-spacing:-54.225500pt;}
.wsc3{word-spacing:-53.701863pt;}
.wsc1{word-spacing:-53.643681pt;}
.wsc6{word-spacing:-52.945499pt;}
.wsc{word-spacing:-37.193867pt;}
.wse7{word-spacing:-31.880533pt;}
.ws56{word-spacing:-16.514077pt;}
.ws57{word-spacing:-14.154957pt;}
.ws7{word-spacing:-10.616218pt;}
.ws1f{word-spacing:-10.528828pt;}
.ws25{word-spacing:-8.256979pt;}
.wsd{word-spacing:-0.058182pt;}
.ws6e{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.wsb9{word-spacing:-0.042507pt;}
.ws28{word-spacing:-0.037194pt;}
.ws29{word-spacing:0.000000pt;}
.ws21{word-spacing:1.603703pt;}
.ws26{word-spacing:8.517334pt;}
.ws27{word-spacing:8.519187pt;}
.ws17{word-spacing:9.309099pt;}
.wsab{word-spacing:9.502327pt;}
.ws90{word-spacing:9.512030pt;}
.wsbe{word-spacing:9.514615pt;}
.ws7d{word-spacing:9.516339pt;}
.wsaa{word-spacing:9.517636pt;}
.ws1a{word-spacing:10.123645pt;}
.ws1b{word-spacing:10.129291pt;}
.ws7e{word-spacing:10.356372pt;}
.wsa9{word-spacing:10.414554pt;}
.ws36{word-spacing:10.530918pt;}
.wsc8{word-spacing:10.555578pt;}
.wsd3{word-spacing:10.763645pt;}
.wsdb{word-spacing:10.880009pt;}
.wsdd{word-spacing:10.892533pt;}
.wsdc{word-spacing:10.894222pt;}
.wsb3{word-spacing:10.935654pt;}
.wsaf{word-spacing:10.939622pt;}
.wsb2{word-spacing:10.940305pt;}
.wsae{word-spacing:10.941559pt;}
.wsb0{word-spacing:10.941670pt;}
.wsbf{word-spacing:10.948813pt;}
.wsa3{word-spacing:10.950878pt;}
.ws1{word-spacing:10.950963pt;}
.wsad{word-spacing:10.951561pt;}
.wsa4{word-spacing:10.953438pt;}
.ws4b{word-spacing:10.996373pt;}
.ws97{word-spacing:11.054555pt;}
.wsea{word-spacing:11.170918pt;}
.ws2c{word-spacing:11.229100pt;}
.ws18{word-spacing:11.403646pt;}
.ws6f{word-spacing:11.461828pt;}
.wsa0{word-spacing:11.520010pt;}
.wsec{word-spacing:11.572537pt;}
.wsf6{word-spacing:11.577327pt;}
.wsd8{word-spacing:11.578191pt;}
.wse3{word-spacing:11.694555pt;}
.wsda{word-spacing:11.752737pt;}
.ws4e{word-spacing:11.810919pt;}
.wse0{word-spacing:11.824229pt;}
.ws1e{word-spacing:11.869101pt;}
.wseb{word-spacing:11.927283pt;}
.ws79{word-spacing:11.985465pt;}
.ws8a{word-spacing:12.043646pt;}
.wsa1{word-spacing:12.160010pt;}
.ws20{word-spacing:12.167655pt;}
.ws98{word-spacing:12.218192pt;}
.wscc{word-spacing:12.315125pt;}
.wsa2{word-spacing:12.392738pt;}
.ws3c{word-spacing:12.450919pt;}
.ws93{word-spacing:12.509101pt;}
.ws92{word-spacing:12.545893pt;}
.wsd0{word-spacing:12.566625pt;}
.ws8f{word-spacing:12.567283pt;}
.wscf{word-spacing:12.572529pt;}
.ws9b{word-spacing:12.741829pt;}
.wsbd{word-spacing:12.800011pt;}
.ws87{word-spacing:12.858193pt;}
.ws95{word-spacing:12.881775pt;}
.ws2b{word-spacing:12.916374pt;}
.ws81{word-spacing:12.974556pt;}
.ws33{word-spacing:13.087476pt;}
.ws34{word-spacing:13.090920pt;}
.ws88{word-spacing:13.149102pt;}
.wsca{word-spacing:13.168327pt;}
.wsc9{word-spacing:13.207284pt;}
.ws3{word-spacing:13.245713pt;}
.ws4{word-spacing:13.246362pt;}
.ws5{word-spacing:13.246797pt;}
.ws0{word-spacing:13.246916pt;}
.ws51{word-spacing:13.265466pt;}
.wsf1{word-spacing:13.318561pt;}
.ws100{word-spacing:13.319356pt;}
.ws105{word-spacing:13.320071pt;}
.ws10b{word-spacing:13.320295pt;}
.wsfc{word-spacing:13.320503pt;}
.wsfa{word-spacing:13.320525pt;}
.wsed{word-spacing:13.320574pt;}
.wsf0{word-spacing:13.320881pt;}
.wsfd{word-spacing:13.321025pt;}
.ws103{word-spacing:13.321100pt;}
.wsfe{word-spacing:13.321344pt;}
.wsf7{word-spacing:13.321878pt;}
.ws109{word-spacing:13.321889pt;}
.ws10d{word-spacing:13.321988pt;}
.wsff{word-spacing:13.322223pt;}
.ws101{word-spacing:13.322310pt;}
.ws102{word-spacing:13.322346pt;}
.wsf4{word-spacing:13.322394pt;}
.ws108{word-spacing:13.322415pt;}
.ws10c{word-spacing:13.322421pt;}
.ws10a{word-spacing:13.322426pt;}
.wsee{word-spacing:13.322787pt;}
.wsf3{word-spacing:13.322820pt;}
.ws106{word-spacing:13.322919pt;}
.wsf2{word-spacing:13.322993pt;}
.ws107{word-spacing:13.323312pt;}
.ws13{word-spacing:13.323647pt;}
.ws104{word-spacing:13.323865pt;}
.wsfb{word-spacing:13.323894pt;}
.wsf8{word-spacing:13.323990pt;}
.wsf9{word-spacing:13.324445pt;}
.ws64{word-spacing:13.440011pt;}
.ws80{word-spacing:13.498193pt;}
.ws55{word-spacing:13.614557pt;}
.ws10{word-spacing:13.672739pt;}
.wsbb{word-spacing:13.675125pt;}
.ws66{word-spacing:13.730921pt;}
.ws65{word-spacing:13.847284pt;}
.ws63{word-spacing:13.963648pt;}
.ws61{word-spacing:14.021830pt;}
.ws89{word-spacing:14.080012pt;}
.ws84{word-spacing:14.138194pt;}
.ws6d{word-spacing:14.196375pt;}
.ws9a{word-spacing:14.254557pt;}
.wsd9{word-spacing:14.312739pt;}
.ws59{word-spacing:14.370921pt;}
.ws99{word-spacing:14.429103pt;}
.ws86{word-spacing:14.485146pt;}
.wscb{word-spacing:14.486063pt;}
.wsc5{word-spacing:14.486245pt;}
.ws16{word-spacing:14.487285pt;}
.wscd{word-spacing:14.491578pt;}
.ws5d{word-spacing:14.545467pt;}
.wsa{word-spacing:14.601284pt;}
.ws8d{word-spacing:14.603649pt;}
.ws24{word-spacing:14.661830pt;}
.ws2d{word-spacing:14.720012pt;}
.ws53{word-spacing:14.778194pt;}
.ws78{word-spacing:14.836376pt;}
.ws8c{word-spacing:14.894558pt;}
.wse{word-spacing:14.952740pt;}
.ws1d{word-spacing:15.010922pt;}
.ws7a{word-spacing:15.069103pt;}
.ws8b{word-spacing:15.127285pt;}
.ws2a{word-spacing:15.185467pt;}
.ws6a{word-spacing:15.243649pt;}
.ws3d{word-spacing:15.301831pt;}
.ws4c{word-spacing:15.360013pt;}
.ws3b{word-spacing:15.418195pt;}
.ws54{word-spacing:15.476377pt;}
.wsc2{word-spacing:15.515578pt;}
.ws7c{word-spacing:15.527602pt;}
.ws45{word-spacing:15.534558pt;}
.ws4d{word-spacing:15.592740pt;}
.ws83{word-spacing:15.650922pt;}
.wsb7{word-spacing:15.709104pt;}
.wsc0{word-spacing:15.720634pt;}
.ws42{word-spacing:15.767286pt;}
.ws62{word-spacing:15.825468pt;}
.ws85{word-spacing:15.883650pt;}
.ws35{word-spacing:15.941831pt;}
.ws72{word-spacing:16.000013pt;}
.ws19{word-spacing:16.058195pt;}
.ws7f{word-spacing:16.116377pt;}
.ws77{word-spacing:16.156559pt;}
.ws75{word-spacing:16.174559pt;}
.ws68{word-spacing:16.189948pt;}
.ws2e{word-spacing:16.232741pt;}
.ws94{word-spacing:16.290923pt;}
.ws37{word-spacing:16.349105pt;}
.ws6c{word-spacing:16.407286pt;}
.ws7b{word-spacing:16.465468pt;}
.wse2{word-spacing:16.496351pt;}
.ws6b{word-spacing:16.523650pt;}
.ws4a{word-spacing:16.581832pt;}
.ws5e{word-spacing:16.640014pt;}
.ws91{word-spacing:16.663226pt;}
.wsb8{word-spacing:16.698196pt;}
.ws8e{word-spacing:16.756378pt;}
.wsc7{word-spacing:16.779578pt;}
.ws2f{word-spacing:16.814559pt;}
.ws73{word-spacing:16.872741pt;}
.ws5c{word-spacing:16.930923pt;}
.wsbc{word-spacing:16.944911pt;}
.ws71{word-spacing:16.989105pt;}
.ws3a{word-spacing:17.105469pt;}
.ws50{word-spacing:17.221833pt;}
.ws43{word-spacing:17.226065pt;}
.ws9d{word-spacing:17.280014pt;}
.ws82{word-spacing:17.338196pt;}
.wsf5{word-spacing:17.392922pt;}
.ws11{word-spacing:17.396378pt;}
.ws49{word-spacing:17.454560pt;}
.wsd2{word-spacing:17.512742pt;}
.ws67{word-spacing:17.570924pt;}
.ws3f{word-spacing:17.629106pt;}
.ws22{word-spacing:17.687287pt;}
.ws38{word-spacing:17.803651pt;}
.ws32{word-spacing:17.920015pt;}
.ws31{word-spacing:17.978197pt;}
.ws44{word-spacing:17.997546pt;}
.wsef{word-spacing:18.006658pt;}
.ws74{word-spacing:18.036379pt;}
.ws58{word-spacing:18.094561pt;}
.ws9c{word-spacing:18.152742pt;}
.ws47{word-spacing:18.210924pt;}
.wsd1{word-spacing:18.269106pt;}
.ws48{word-spacing:18.327288pt;}
.ws40{word-spacing:18.385470pt;}
.ws39{word-spacing:18.443652pt;}
.ws5a{word-spacing:18.501834pt;}
.ws41{word-spacing:18.560015pt;}
.wsd5{word-spacing:18.618197pt;}
.ws30{word-spacing:18.676379pt;}
.ws3e{word-spacing:18.734561pt;}
.wse1{word-spacing:18.792743pt;}
.wsd6{word-spacing:18.850925pt;}
.wsd4{word-spacing:18.939308pt;}
.ws4f{word-spacing:18.967289pt;}
.wsf{word-spacing:19.025470pt;}
.wsde{word-spacing:19.127199pt;}
.wsdf{word-spacing:19.141834pt;}
.ws5b{word-spacing:19.258198pt;}
.ws15{word-spacing:19.316380pt;}
.ws5f{word-spacing:19.356565pt;}
.ws60{word-spacing:19.374562pt;}
.ws69{word-spacing:19.432743pt;}
.wsd7{word-spacing:19.490925pt;}
.ws52{word-spacing:19.549107pt;}
.wsba{word-spacing:19.616458pt;}
.wse4{word-spacing:19.676382pt;}
.ws23{word-spacing:19.781835pt;}
.ws70{word-spacing:19.898198pt;}
.wse6{word-spacing:20.014562pt;}
.ws46{word-spacing:20.072744pt;}
.ws12{word-spacing:20.538199pt;}
.ws1c{word-spacing:20.770926pt;}
.wsce{word-spacing:20.887290pt;}
.ws96{word-spacing:21.061836pt;}
.ws14{word-spacing:21.294563pt;}
.wse5{word-spacing:21.992746pt;}
.wse9{word-spacing:23.796383pt;}
.wse8{word-spacing:25.541839pt;}
.ws9{word-spacing:25.599990pt;}
.ws2{word-spacing:26.539221pt;}
.wsb{word-spacing:29.266330pt;}
.ws8{word-spacing:38.809118pt;}
.wsac{word-spacing:85.168845pt;}
.wsa7{word-spacing:87.703347pt;}
.wsa6{word-spacing:87.751168pt;}
.wsb1{word-spacing:88.038093pt;}
.wsa8{word-spacing:90.620416pt;}
.wsb4{word-spacing:136.671846pt;}
.wsa5{word-spacing:152.548352pt;}
.wsb5{word-spacing:275.167940pt;}
.wsb6{word-spacing:462.814251pt;}
.ws9f{word-spacing:667.482726pt;}
.ws9e{word-spacing:766.758707pt;}
._1a{margin-left:-7.066835pt;}
._d{margin-left:-5.951019pt;}
._3{margin-left:-2.975509pt;}
._0{margin-left:-1.434624pt;}
._5{width:1.248656pt;}
._3d{width:2.449431pt;}
._e{width:4.449326pt;}
._3e{width:7.970916pt;}
._13{width:9.076371pt;}
._32{width:10.030718pt;}
._7{width:11.418435pt;}
._4{width:13.430539pt;}
._9{width:15.441813pt;}
._6{width:17.110333pt;}
._a{width:18.034404pt;}
._11{width:19.124779pt;}
._b{width:20.151829pt;}
._40{width:24.967709pt;}
._3f{width:26.718670pt;}
._1b{width:29.090933pt;}
._f{width:30.370934pt;}
._2{width:34.428510pt;}
._8{width:35.883309pt;}
._1{width:38.961301pt;}
._10{width:61.541751pt;}
._12{width:64.412979pt;}
._30{width:85.216666pt;}
._3b{width:88.334532pt;}
._36{width:92.294144pt;}
._38{width:99.894417pt;}
._25{width:101.714842pt;}
._26{width:106.257818pt;}
._27{width:113.154749pt;}
._2c{width:114.222419pt;}
._39{width:115.248128pt;}
._34{width:122.990498pt;}
._33{width:126.906086pt;}
._28{width:131.268096pt;}
._29{width:136.576205pt;}
._31{width:138.393395pt;}
._3a{width:139.607230pt;}
._21{width:152.593894pt;}
._2a{width:154.269901pt;}
._23{width:157.225387pt;}
._3c{width:161.682125pt;}
._2e{width:164.647014pt;}
._20{width:168.268894pt;}
._2f{width:171.007181pt;}
._35{width:184.636109pt;}
._22{width:191.230413pt;}
._37{width:207.590093pt;}
._1e{width:225.140326pt;}
._2b{width:233.365504pt;}
._1c{width:239.725670pt;}
._1d{width:284.151194pt;}
._24{width:292.663296pt;}
._1f{width:300.410266pt;}
._15{width:667.530547pt;}
._18{width:679.419017pt;}
._16{width:704.782950pt;}
._19{width:711.889340pt;}
._17{width:732.853760pt;}
._14{width:776.829986pt;}
._2d{width:1639.946043pt;}
._c{width:1666.538043pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fs7{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fs2{font-size:63.761067pt;}
.fs6{font-size:74.387733pt;}
.fs1{font-size:116.894933pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:26.552000pt;}
.y3a{bottom:37.178667pt;}
.y66{bottom:43.446667pt;}
.y39{bottom:47.805333pt;}
.y188{bottom:102.608000pt;}
.y1cc{bottom:102.609333pt;}
.y10c{bottom:103.042667pt;}
.yee{bottom:103.200000pt;}
.y38{bottom:103.673333pt;}
.y11{bottom:104.373333pt;}
.y12c{bottom:105.502667pt;}
.ya1{bottom:105.566667pt;}
.y1f2{bottom:108.774667pt;}
.y7d{bottom:109.684000pt;}
.y166{bottom:110.345333pt;}
.ye5{bottom:110.880000pt;}
.ybf{bottom:113.753333pt;}
.y144{bottom:114.829333pt;}
.y65{bottom:115.130667pt;}
.y219{bottom:116.326667pt;}
.yed{bottom:117.812000pt;}
.y1a0{bottom:120.176000pt;}
.y187{bottom:122.454667pt;}
.y10b{bottom:122.968000pt;}
.y37{bottom:123.598667pt;}
.y12b{bottom:125.428000pt;}
.ya0{bottom:125.492000pt;}
.y1cb{bottom:127.593333pt;}
.y1f1{bottom:128.700000pt;}
.y7c{bottom:129.609333pt;}
.y165{bottom:130.270667pt;}
.ye4{bottom:130.805333pt;}
.yec{bottom:132.424000pt;}
.y10{bottom:132.932000pt;}
.ybe{bottom:133.678667pt;}
.y143{bottom:134.754667pt;}
.y64{bottom:135.056000pt;}
.y218{bottom:136.252000pt;}
.y19f{bottom:140.101333pt;}
.y10a{bottom:142.893333pt;}
.y36{bottom:143.524000pt;}
.y171{bottom:143.764000pt;}
.y12a{bottom:145.353333pt;}
.y9f{bottom:145.417333pt;}
.yf{bottom:146.880000pt;}
.yeb{bottom:147.036000pt;}
.y186{bottom:147.613333pt;}
.y1f0{bottom:148.757333pt;}
.y7b{bottom:149.534667pt;}
.y164{bottom:150.196000pt;}
.ye3{bottom:150.730667pt;}
.ybd{bottom:153.604000pt;}
.y142{bottom:154.680000pt;}
.y63{bottom:154.981333pt;}
.y217{bottom:156.177333pt;}
.y19e{bottom:160.026667pt;}
.yea{bottom:161.648000pt;}
.y109{bottom:162.818667pt;}
.y170{bottom:163.689333pt;}
.y1ca{bottom:164.961333pt;}
.y129{bottom:165.278667pt;}
.y9e{bottom:165.342667pt;}
.y35{bottom:168.762667pt;}
.y7a{bottom:169.460000pt;}
.y163{bottom:170.121333pt;}
.ye2{bottom:170.656000pt;}
.ye{bottom:171.454667pt;}
.ybc{bottom:173.529333pt;}
.y141{bottom:174.605333pt;}
.y62{bottom:174.906667pt;}
.y216{bottom:176.102667pt;}
.ye9{bottom:176.260000pt;}
.y19d{bottom:179.952000pt;}
.y1ef{bottom:180.638667pt;}
.y108{bottom:182.744000pt;}
.y16f{bottom:183.613333pt;}
.y1c9{bottom:184.632000pt;}
.y128{bottom:185.204000pt;}
.y9d{bottom:185.268000pt;}
.yd{bottom:185.402667pt;}
.y185{bottom:187.601333pt;}
.y79{bottom:189.385333pt;}
.y162{bottom:190.046667pt;}
.ye1{bottom:190.581333pt;}
.ye8{bottom:190.872000pt;}
.ybb{bottom:193.454667pt;}
.y140{bottom:194.530667pt;}
.y61{bottom:194.832000pt;}
.y215{bottom:196.026667pt;}
.y19c{bottom:199.877333pt;}
.y1ee{bottom:200.564000pt;}
.y107{bottom:202.669333pt;}
.y16e{bottom:203.538667pt;}
.y1c8{bottom:204.302667pt;}
.y127{bottom:205.129333pt;}
.y9c{bottom:205.193333pt;}
.ye7{bottom:205.484000pt;}
.y184{bottom:207.446667pt;}
.y78{bottom:209.310667pt;}
.y161{bottom:209.972000pt;}
.ye0{bottom:210.506667pt;}
.yc{bottom:212.565333pt;}
.yba{bottom:213.380000pt;}
.y13f{bottom:214.456000pt;}
.y60{bottom:214.757333pt;}
.y34{bottom:215.256000pt;}
.y214{bottom:215.952000pt;}
.y19b{bottom:219.802667pt;}
.ye6{bottom:220.096000pt;}
.y1ed{bottom:220.489333pt;}
.y106{bottom:222.594667pt;}
.y16d{bottom:223.464000pt;}
.y1c7{bottom:223.974667pt;}
.y126{bottom:225.054667pt;}
.y9b{bottom:225.118667pt;}
.y183{bottom:227.293333pt;}
.y77{bottom:229.236000pt;}
.y160{bottom:229.897333pt;}
.ydf{bottom:230.432000pt;}
.y33{bottom:231.196000pt;}
.yb9{bottom:233.305333pt;}
.y13e{bottom:234.381333pt;}
.yb{bottom:234.482667pt;}
.y5f{bottom:234.682667pt;}
.y213{bottom:235.877333pt;}
.y19a{bottom:239.728000pt;}
.y1ec{bottom:240.414667pt;}
.y105{bottom:242.520000pt;}
.y1c6{bottom:243.645333pt;}
.y125{bottom:244.980000pt;}
.y9a{bottom:245.044000pt;}
.y182{bottom:247.138667pt;}
.ya{bottom:248.430667pt;}
.y76{bottom:249.161333pt;}
.y32{bottom:249.660000pt;}
.y15f{bottom:249.822667pt;}
.yde{bottom:250.357333pt;}
.yb8{bottom:253.230667pt;}
.y13d{bottom:254.306667pt;}
.y5e{bottom:254.608000pt;}
.y212{bottom:255.802667pt;}
.y199{bottom:259.653333pt;}
.y1eb{bottom:260.340000pt;}
.y9{bottom:262.377333pt;}
.y104{bottom:262.445333pt;}
.y1c5{bottom:263.316000pt;}
.y16c{bottom:263.373333pt;}
.y124{bottom:264.905333pt;}
.y99{bottom:264.969333pt;}
.y181{bottom:266.984000pt;}
.y75{bottom:269.086667pt;}
.y15e{bottom:269.748000pt;}
.ydd{bottom:270.282667pt;}
.yb7{bottom:273.156000pt;}
.y13c{bottom:274.232000pt;}
.y5d{bottom:274.533333pt;}
.y211{bottom:275.728000pt;}
.y16b{bottom:277.985333pt;}
.y198{bottom:279.578667pt;}
.y1ea{bottom:280.397333pt;}
.y103{bottom:282.370667pt;}
.y1c4{bottom:282.988000pt;}
.y8{bottom:284.296000pt;}
.y123{bottom:284.830667pt;}
.y98{bottom:284.894667pt;}
.y180{bottom:286.830667pt;}
.y74{bottom:289.012000pt;}
.y15d{bottom:289.673333pt;}
.ydc{bottom:290.208000pt;}
.y14f{bottom:290.218667pt;}
.y16a{bottom:292.597333pt;}
.yb6{bottom:293.214667pt;}
.y13b{bottom:294.157333pt;}
.y5c{bottom:294.458667pt;}
.y210{bottom:295.653333pt;}
.y7{bottom:298.244000pt;}
.y31{bottom:298.657333pt;}
.y197{bottom:299.504000pt;}
.y102{bottom:302.296000pt;}
.y1c3{bottom:302.658667pt;}
.y122{bottom:304.756000pt;}
.y97{bottom:304.820000pt;}
.y17f{bottom:306.809333pt;}
.y169{bottom:307.209333pt;}
.y14e{bottom:308.285333pt;}
.y73{bottom:308.937333pt;}
.y15c{bottom:309.598667pt;}
.ydb{bottom:310.133333pt;}
.y1e9{bottom:312.278667pt;}
.y5b{bottom:314.384000pt;}
.y20f{bottom:315.578667pt;}
.y30{bottom:316.589333pt;}
.y196{bottom:319.429333pt;}
.y6{bottom:320.161333pt;}
.y168{bottom:321.821333pt;}
.y101{bottom:322.221333pt;}
.y1c2{bottom:322.330667pt;}
.y121{bottom:324.681333pt;}
.y96{bottom:324.745333pt;}
.y14d{bottom:326.350667pt;}
.yb5{bottom:326.422667pt;}
.y72{bottom:328.862667pt;}
.y15b{bottom:329.524000pt;}
.yda{bottom:330.058667pt;}
.y1e8{bottom:332.204000pt;}
.y13a{bottom:332.310667pt;}
.y5{bottom:334.109333pt;}
.y5a{bottom:334.309333pt;}
.y2f{bottom:334.522667pt;}
.y20e{bottom:335.504000pt;}
.y167{bottom:336.433333pt;}
.y17e{bottom:337.894667pt;}
.y195{bottom:339.354667pt;}
.y1c1{bottom:342.001333pt;}
.y100{bottom:342.146667pt;}
.y14c{bottom:344.416000pt;}
.y120{bottom:344.606667pt;}
.y95{bottom:344.669333pt;}
.yb4{bottom:346.348000pt;}
.y4{bottom:348.056000pt;}
.y71{bottom:348.788000pt;}
.y15a{bottom:349.449333pt;}
.yd9{bottom:349.984000pt;}
.y139{bottom:350.376000pt;}
.y1e7{bottom:352.128000pt;}
.y2e{bottom:352.454667pt;}
.y59{bottom:354.234667pt;}
.y20d{bottom:355.429333pt;}
.y17d{bottom:357.741333pt;}
.y194{bottom:359.278667pt;}
.y1c0{bottom:361.672000pt;}
.yff{bottom:362.072000pt;}
.y14b{bottom:362.481333pt;}
.y11f{bottom:364.532000pt;}
.y94{bottom:364.594667pt;}
.yb3{bottom:366.273333pt;}
.y138{bottom:368.441333pt;}
.y70{bottom:368.713333pt;}
.y159{bottom:369.374667pt;}
.yd8{bottom:369.909333pt;}
.y3{bottom:369.974667pt;}
.y2d{bottom:370.388000pt;}
.y1e6{bottom:372.053333pt;}
.y58{bottom:374.160000pt;}
.y20c{bottom:375.354667pt;}
.y17c{bottom:377.586667pt;}
.y193{bottom:379.204000pt;}
.y14a{bottom:380.546667pt;}
.y1bf{bottom:381.344000pt;}
.yfe{bottom:381.996000pt;}
.y1a4{bottom:381.997333pt;}
.y2{bottom:383.922667pt;}
.y11e{bottom:384.457333pt;}
.y93{bottom:384.520000pt;}
.yb2{bottom:386.198667pt;}
.y137{bottom:387.702667pt;}
.y2c{bottom:388.320000pt;}
.y6f{bottom:388.638667pt;}
.y158{bottom:389.300000pt;}
.yd7{bottom:389.833333pt;}
.y1e5{bottom:391.978667pt;}
.y57{bottom:394.085333pt;}
.y20b{bottom:395.280000pt;}
.y17b{bottom:397.432000pt;}
.y1{bottom:397.869333pt;}
.y149{bottom:398.613333pt;}
.y192{bottom:399.129333pt;}
.y1be{bottom:401.148000pt;}
.yfd{bottom:401.921333pt;}
.y92{bottom:404.445333pt;}
.y11d{bottom:404.514667pt;}
.yb1{bottom:406.124000pt;}
.y2b{bottom:406.253333pt;}
.y136{bottom:408.450667pt;}
.y6e{bottom:408.564000pt;}
.y157{bottom:409.225333pt;}
.yd6{bottom:409.758667pt;}
.y1e4{bottom:411.904000pt;}
.y56{bottom:414.009333pt;}
.y20a{bottom:415.205333pt;}
.y148{bottom:416.678667pt;}
.y17a{bottom:417.278667pt;}
.y191{bottom:419.054667pt;}
.yfc{bottom:421.846667pt;}
.y2a{bottom:424.186667pt;}
.y91{bottom:424.370667pt;}
.yb0{bottom:426.049333pt;}
.y11c{bottom:428.425333pt;}
.y6d{bottom:428.489333pt;}
.yd5{bottom:429.684000pt;}
.y1bd{bottom:430.486667pt;}
.y1e3{bottom:431.829333pt;}
.y55{bottom:433.934667pt;}
.y135{bottom:434.810667pt;}
.y209{bottom:435.130667pt;}
.y147{bottom:435.940000pt;}
.y179{bottom:437.124000pt;}
.y190{bottom:438.980000pt;}
.yfb{bottom:441.772000pt;}
.y29{bottom:442.118667pt;}
.y90{bottom:444.296000pt;}
.yaf{bottom:445.974667pt;}
.y6c{bottom:448.414667pt;}
.y156{bottom:449.134667pt;}
.y134{bottom:449.422667pt;}
.yd4{bottom:449.609333pt;}
.y1bc{bottom:450.158667pt;}
.y1e2{bottom:451.754667pt;}
.y54{bottom:453.860000pt;}
.y208{bottom:455.056000pt;}
.y146{bottom:456.688000pt;}
.y178{bottom:457.102667pt;}
.y18f{bottom:458.905333pt;}
.y28{bottom:460.052000pt;}
.yfa{bottom:461.697333pt;}
.y155{bottom:463.745333pt;}
.y133{bottom:464.034667pt;}
.y8f{bottom:464.221333pt;}
.yae{bottom:465.900000pt;}
.y6b{bottom:468.340000pt;}
.y11b{bottom:469.234667pt;}
.yd3{bottom:469.534667pt;}
.y1bb{bottom:469.829333pt;}
.y1e1{bottom:471.680000pt;}
.y53{bottom:473.785333pt;}
.y207{bottom:474.981333pt;}
.y27{bottom:477.984000pt;}
.y154{bottom:478.357333pt;}
.yf9{bottom:481.622667pt;}
.y8e{bottom:484.146667pt;}
.yad{bottom:485.825333pt;}
.y11a{bottom:487.300000pt;}
.y6a{bottom:488.265333pt;}
.yd2{bottom:489.460000pt;}
.y1ba{bottom:489.500000pt;}
.y1e0{bottom:491.605333pt;}
.y153{bottom:492.969333pt;}
.y52{bottom:493.710667pt;}
.y206{bottom:494.906667pt;}
.y26{bottom:495.917333pt;}
.y177{bottom:497.012000pt;}
.y18e{bottom:498.814667pt;}
.yf8{bottom:501.548000pt;}
.y1a3{bottom:501.681333pt;}
.y145{bottom:503.638667pt;}
.y8d{bottom:504.072000pt;}
.y119{bottom:505.366667pt;}
.yac{bottom:505.750667pt;}
.y152{bottom:507.581333pt;}
.y69{bottom:508.190667pt;}
.y1b9{bottom:509.172000pt;}
.yd1{bottom:509.385333pt;}
.y132{bottom:511.104000pt;}
.y176{bottom:511.624000pt;}
.y1df{bottom:511.664000pt;}
.y18d{bottom:513.426667pt;}
.y51{bottom:513.636000pt;}
.y25{bottom:513.849333pt;}
.y205{bottom:514.832000pt;}
.yf7{bottom:521.473333pt;}
.y151{bottom:522.193333pt;}
.y118{bottom:523.432000pt;}
.y8c{bottom:523.997333pt;}
.yab{bottom:525.676000pt;}
.y131{bottom:525.716000pt;}
.y175{bottom:526.236000pt;}
.y18c{bottom:528.038667pt;}
.y68{bottom:528.248000pt;}
.y1b8{bottom:528.842667pt;}
.yd0{bottom:529.310667pt;}
.y24{bottom:531.782667pt;}
.y50{bottom:533.561333pt;}
.y204{bottom:534.757333pt;}
.y130{bottom:540.328000pt;}
.y174{bottom:540.848000pt;}
.yf6{bottom:541.398667pt;}
.y117{bottom:541.497333pt;}
.y18b{bottom:542.650667pt;}
.y1de{bottom:543.544000pt;}
.y8b{bottom:543.922667pt;}
.yaa{bottom:545.601333pt;}
.y1b7{bottom:548.514667pt;}
.ycf{bottom:549.236000pt;}
.y23{bottom:549.716000pt;}
.y67{bottom:552.158667pt;}
.y4f{bottom:553.486667pt;}
.y203{bottom:554.682667pt;}
.y12f{bottom:554.940000pt;}
.y173{bottom:555.460000pt;}
.y18a{bottom:557.262667pt;}
.y116{bottom:559.562667pt;}
.yf5{bottom:561.324000pt;}
.y1dd{bottom:563.602667pt;}
.y8a{bottom:563.848000pt;}
.ya9{bottom:565.526667pt;}
.y22{bottom:567.648000pt;}
.y1b6{bottom:568.185333pt;}
.yce{bottom:569.161333pt;}
.y12e{bottom:569.552000pt;}
.y172{bottom:570.072000pt;}
.y189{bottom:571.874667pt;}
.y4e{bottom:573.412000pt;}
.y202{bottom:574.608000pt;}
.y115{bottom:578.824000pt;}
.yf4{bottom:581.249333pt;}
.y89{bottom:583.773333pt;}
.y12d{bottom:584.164000pt;}
.ya8{bottom:585.452000pt;}
.y21{bottom:585.581333pt;}
.y1b5{bottom:587.856000pt;}
.ycd{bottom:589.086667pt;}
.y4d{bottom:593.337333pt;}
.y201{bottom:594.533333pt;}
.y1dc{bottom:595.482667pt;}
.yf3{bottom:601.174667pt;}
.y20{bottom:603.513333pt;}
.y88{bottom:603.698667pt;}
.y114{bottom:605.184000pt;}
.ya7{bottom:605.377333pt;}
.y1b4{bottom:607.528000pt;}
.ycc{bottom:609.012000pt;}
.y4c{bottom:613.262667pt;}
.y200{bottom:614.458667pt;}
.y1db{bottom:615.408000pt;}
.y113{bottom:619.796000pt;}
.yf2{bottom:621.100000pt;}
.y87{bottom:623.624000pt;}
.ya6{bottom:625.302667pt;}
.y1b3{bottom:627.198667pt;}
.ycb{bottom:628.937333pt;}
.y1f{bottom:630.074667pt;}
.y4b{bottom:633.188000pt;}
.y1ff{bottom:634.384000pt;}
.y1da{bottom:635.333333pt;}
.yf1{bottom:641.025333pt;}
.y86{bottom:643.549333pt;}
.ya5{bottom:645.228000pt;}
.y1b2{bottom:646.869333pt;}
.yca{bottom:648.996000pt;}
.y4a{bottom:653.113333pt;}
.y1fe{bottom:654.309333pt;}
.y1d9{bottom:655.258667pt;}
.yf0{bottom:660.950667pt;}
.y85{bottom:663.474667pt;}
.y1b1{bottom:666.541333pt;}
.y112{bottom:666.865333pt;}
.y49{bottom:673.038667pt;}
.y1fd{bottom:674.234667pt;}
.y1d8{bottom:675.184000pt;}
.y1e{bottom:680.301333pt;}
.yc9{bottom:680.876000pt;}
.y111{bottom:681.477333pt;}
.y84{bottom:683.400000pt;}
.ya4{bottom:685.137333pt;}
.y1b0{bottom:686.345333pt;}
.y48{bottom:692.964000pt;}
.y1fc{bottom:694.160000pt;}
.y1d7{bottom:695.109333pt;}
.y110{bottom:696.089333pt;}
.y1d{bottom:696.241333pt;}
.ya3{bottom:699.749333pt;}
.yc8{bottom:700.801333pt;}
.y83{bottom:703.325333pt;}
.y1c{bottom:707.841333pt;}
.y10f{bottom:710.701333pt;}
.y47{bottom:712.889333pt;}
.y1fb{bottom:714.085333pt;}
.ya2{bottom:714.361333pt;}
.y1d6{bottom:715.034667pt;}
.y1af{bottom:715.684000pt;}
.yc7{bottom:720.726667pt;}
.y82{bottom:723.250667pt;}
.y10e{bottom:725.313333pt;}
.y1b{bottom:725.465333pt;}
.y46{bottom:732.814667pt;}
.y1fa{bottom:734.010667pt;}
.y1d5{bottom:735.093333pt;}
.y1ae{bottom:735.356000pt;}
.y10d{bottom:739.925333pt;}
.yc6{bottom:740.652000pt;}
.y1a{bottom:741.405333pt;}
.y81{bottom:743.176000pt;}
.y45{bottom:752.740000pt;}
.y1f9{bottom:753.934667pt;}
.y1ad{bottom:755.026667pt;}
.y19{bottom:757.345333pt;}
.yc5{bottom:760.577333pt;}
.y80{bottom:763.101333pt;}
.y1d4{bottom:766.973333pt;}
.y150{bottom:770.645333pt;}
.y44{bottom:772.665333pt;}
.y1f8{bottom:773.860000pt;}
.y1ac{bottom:774.697333pt;}
.y18{bottom:776.916000pt;}
.yc4{bottom:780.502667pt;}
.y7f{bottom:783.158667pt;}
.y1d3{bottom:786.898667pt;}
.y43{bottom:792.590667pt;}
.y1f7{bottom:793.785333pt;}
.y1ab{bottom:794.369333pt;}
.y17{bottom:795.513333pt;}
.yc3{bottom:800.428000pt;}
.y7e{bottom:800.560000pt;}
.y1d2{bottom:806.824000pt;}
.y42{bottom:812.516000pt;}
.y1f6{bottom:813.710667pt;}
.y1aa{bottom:814.040000pt;}
.y16{bottom:814.109333pt;}
.yc2{bottom:820.353333pt;}
.yef{bottom:820.485333pt;}
.y1d1{bottom:826.749333pt;}
.y41{bottom:832.441333pt;}
.y1a9{bottom:833.712000pt;}
.yc1{bottom:840.278667pt;}
.y1f5{bottom:842.934667pt;}
.y1d0{bottom:846.674667pt;}
.y15{bottom:851.304000pt;}
.y40{bottom:852.366667pt;}
.y1a8{bottom:853.382667pt;}
.y1a2{bottom:860.204000pt;}
.yc0{bottom:860.336000pt;}
.y1cf{bottom:866.600000pt;}
.y3f{bottom:872.292000pt;}
.y1a7{bottom:873.053333pt;}
.y1a1{bottom:880.261333pt;}
.y14{bottom:883.449333pt;}
.y1ce{bottom:886.657333pt;}
.y1f4{bottom:892.084000pt;}
.y3e{bottom:892.217333pt;}
.y1a6{bottom:892.725333pt;}
.y1f3{bottom:912.009333pt;}
.y3d{bottom:912.142667pt;}
.y1a5{bottom:912.396000pt;}
.y13{bottom:915.596000pt;}
.y1cd{bottom:926.508000pt;}
.y3c{bottom:932.068000pt;}
.y12{bottom:947.741333pt;}
.h7{height:22.635179pt;}
.hb{height:29.851583pt;}
.h11{height:33.952768pt;}
.h3{height:35.626496pt;}
.h2{height:35.722138pt;}
.h1{height:38.380974pt;}
.h12{height:38.656196pt;}
.h14{height:41.309125pt;}
.ha{height:42.645241pt;}
.h10{height:43.309573pt;}
.h9{height:46.696766pt;}
.hd{height:47.075433pt;}
.hc{height:47.501995pt;}
.he{height:49.514810pt;}
.h6{height:51.174632pt;}
.hf{height:55.236279pt;}
.h8{height:55.418861pt;}
.h5{height:57.262945pt;}
.h4{height:82.995403pt;}
.h13{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.w1{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x16{left:43.446667pt;}
.x7{left:45.354667pt;}
.x1{left:46.492000pt;}
.x3{left:50.477333pt;}
.xd{left:53.118667pt;}
.xf{left:56.406667pt;}
.x2{left:67.416000pt;}
.x10{left:105.058667pt;}
.x13{left:108.346667pt;}
.xe{left:185.134667pt;}
.x14{left:191.744000pt;}
.x5{left:240.510667pt;}
.x4{left:245.745333pt;}
.x1b{left:248.654667pt;}
.x17{left:251.058667pt;}
.x9{left:253.509333pt;}
.xc{left:256.797333pt;}
.x15{left:258.824000pt;}
.x1a{left:260.290667pt;}
.x6{left:261.480000pt;}
.x1c{left:274.836000pt;}
.x19{left:283.054667pt;}
.x8{left:284.349333pt;}
.x12{left:352.518667pt;}
.x11{left:363.742667pt;}
.x18{left:449.261333pt;}
.x1d{left:549.512000pt;}
.xa{left:557.564000pt;}
.xb{left:562.333333pt;}
}




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