
    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_88922f0671fa6f0a967e9f1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_943aabb7f844363a755db682.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901000;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_b6e7bf5ca75dd72a9518b2c2.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_1bda6c104e37c2f17f85e424.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_943f2e4a92f362ef981ed634.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;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_aa02e088bb39f9307d28f41a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.888000;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_decfd59f373e2fb90511bc64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.846000;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_4794cd76ee23a27fad99e20c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728000;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_053b9db59802ef0f33496f16.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.451000;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_51fa7b8c37316dc9e3fe8b22.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.482000;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_c7fb543ab7bb1a25a8e28274.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.390000;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_6106946ec6349ebdc295778b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.688000;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_ee752ad091f7e8f012aa599e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.696000;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_42abf4b628ca541447b0895e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.697000;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_cbf8cba5ef6b635242288aa9.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v3{vertical-align:-16.878000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002338px;}
.lsb{letter-spacing:0.003093px;}
.lsa{letter-spacing:0.003880px;}
.ls1a{letter-spacing:1.176961px;}
.ls19{letter-spacing:1.656589px;}
.lsd{letter-spacing:2.518564px;}
.ls9{letter-spacing:2.986362px;}
.ls22{letter-spacing:2.988532px;}
.lsc{letter-spacing:2.990017px;}
.ls8{letter-spacing:3.215442px;}
.lse{letter-spacing:6.831247px;}
.ls11{letter-spacing:12.648538px;}
.ls15{letter-spacing:14.985093px;}
.ls1c{letter-spacing:15.277380px;}
.lsf{letter-spacing:15.278098px;}
.ls7{letter-spacing:16.602538px;}
.ls14{letter-spacing:18.197442px;}
.ls10{letter-spacing:19.170305px;}
.ls5{letter-spacing:19.905275px;}
.ls1f{letter-spacing:21.548338px;}
.ls13{letter-spacing:21.978305px;}
.ls1e{letter-spacing:22.323880px;}
.ls1d{letter-spacing:22.356074px;}
.ls4{letter-spacing:24.209118px;}
.ls1b{letter-spacing:24.822305px;}
.ls3{letter-spacing:25.285079px;}
.ls16{letter-spacing:25.821247px;}
.ls12{letter-spacing:26.131690px;}
.ls20{letter-spacing:28.059247px;}
.ls18{letter-spacing:29.884178px;}
.ls1{letter-spacing:29.887800px;}
.ls6{letter-spacing:29.890287px;}
.ls21{letter-spacing:36.500098px;}
.ls17{letter-spacing:42.068098px;}
.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;}
}
.ws3{word-spacing:-26.899125px;}
.ws1d{word-spacing:-16.605662px;}
.wsa{word-spacing:-11.644287px;}
.wsc{word-spacing:-11.584511px;}
.ws54{word-spacing:-3.335478px;}
.wsa6{word-spacing:-3.275703px;}
.ws8b{word-spacing:-3.156152px;}
.ws13{word-spacing:-2.917049px;}
.ws30{word-spacing:-2.618171px;}
.ws9c{word-spacing:-2.558396px;}
.ws71{word-spacing:-2.498620px;}
.ws8f{word-spacing:-2.139966px;}
.ws8d{word-spacing:-1.841088px;}
.ws2e{word-spacing:-1.781313px;}
.ws59{word-spacing:-1.601986px;}
.ws2b{word-spacing:-1.482435px;}
.ws6b{word-spacing:-1.422659px;}
.ws32{word-spacing:-1.362884px;}
.wsa0{word-spacing:-1.304428px;}
.ws9e{word-spacing:-1.303108px;}
.ws50{word-spacing:-1.183557px;}
.ws58{word-spacing:-1.123781px;}
.wsb{word-spacing:-0.227147px;}
.wse{word-spacing:-0.103292px;}
.ws55{word-spacing:-0.059776px;}
.wsb7{word-spacing:-0.035866px;}
.ws2{word-spacing:0.000000px;}
.wsc9{word-spacing:0.131506px;}
.ws12{word-spacing:0.191282px;}
.ws44{word-spacing:0.370609px;}
.ws72{word-spacing:0.430384px;}
.wsb9{word-spacing:0.549936px;}
.ws9d{word-spacing:0.609711px;}
.ws20{word-spacing:0.669487px;}
.ws64{word-spacing:0.729262px;}
.ws70{word-spacing:0.789038px;}
.ws83{word-spacing:0.908589px;}
.ws79{word-spacing:0.968365px;}
.ws4a{word-spacing:1.207467px;}
.ws5a{word-spacing:1.267243px;}
.ws80{word-spacing:1.327018px;}
.ws73{word-spacing:1.446570px;}
.ws47{word-spacing:1.506345px;}
.ws3b{word-spacing:1.685672px;}
.ws40{word-spacing:1.745448px;}
.wsaf{word-spacing:1.752996px;}
.ws61{word-spacing:1.805223px;}
.ws7b{word-spacing:1.864999px;}
.wsd{word-spacing:1.984550px;}
.ws68{word-spacing:2.044326px;}
.ws7f{word-spacing:2.283428px;}
.ws5f{word-spacing:2.343204px;}
.ws5c{word-spacing:2.402979px;}
.ws5b{word-spacing:2.547774px;}
.wsa2{word-spacing:2.642082px;}
.wsab{word-spacing:2.761633px;}
.ws45{word-spacing:2.821408px;}
.wsc2{word-spacing:2.881184px;}
.ws10{word-spacing:2.940960px;}
.ws2a{word-spacing:3.000735px;}
.wsc8{word-spacing:3.052587px;}
.ws24{word-spacing:3.060511px;}
.ws3c{word-spacing:3.120286px;}
.ws69{word-spacing:3.239838px;}
.ws6{word-spacing:3.299613px;}
.wsa3{word-spacing:3.315892px;}
.ws89{word-spacing:3.316436px;}
.ws9{word-spacing:3.359389px;}
.ws1f{word-spacing:3.419164px;}
.ws22{word-spacing:3.478940px;}
.ws23{word-spacing:3.538716px;}
.ws3f{word-spacing:3.718042px;}
.ws14{word-spacing:3.777818px;}
.ws18{word-spacing:3.837594px;}
.wsb2{word-spacing:3.897369px;}
.ws85{word-spacing:3.957145px;}
.ws4b{word-spacing:4.016920px;}
.ws6f{word-spacing:4.076696px;}
.wsc3{word-spacing:4.196247px;}
.ws3d{word-spacing:4.256023px;}
.ws74{word-spacing:4.315798px;}
.ws7a{word-spacing:4.435350px;}
.ws25{word-spacing:4.483200px;}
.ws78{word-spacing:4.611892px;}
.ws41{word-spacing:4.614676px;}
.ws19{word-spacing:4.674452px;}
.ws21{word-spacing:4.734228px;}
.wsa8{word-spacing:4.794003px;}
.wsca{word-spacing:4.901748px;}
.wsbb{word-spacing:4.902227px;}
.wsb3{word-spacing:4.904330px;}
.wsbd{word-spacing:4.905141px;}
.wsb6{word-spacing:4.905920px;}
.wsac{word-spacing:4.906189px;}
.wsb4{word-spacing:4.906487px;}
.wsa9{word-spacing:4.906730px;}
.ws95{word-spacing:4.907748px;}
.wsba{word-spacing:4.907753px;}
.ws92{word-spacing:4.908530px;}
.wsc5{word-spacing:4.908589px;}
.wsc4{word-spacing:4.908827px;}
.wsbc{word-spacing:4.909582px;}
.wsc7{word-spacing:4.910148px;}
.ws90{word-spacing:4.910153px;}
.ws91{word-spacing:4.910330px;}
.ws94{word-spacing:4.910843px;}
.wsaa{word-spacing:4.910930px;}
.wsbe{word-spacing:4.911141px;}
.wsa4{word-spacing:4.911715px;}
.wsb5{word-spacing:4.911920px;}
.ws93{word-spacing:4.912189px;}
.wsae{word-spacing:4.912380px;}
.ws8a{word-spacing:4.913554px;}
.ws99{word-spacing:4.914180px;}
.ws97{word-spacing:4.914600px;}
.wsa5{word-spacing:4.915915px;}
.ws98{word-spacing:4.915980px;}
.wsad{word-spacing:4.917780px;}
.ws9b{word-spacing:4.918380px;}
.ws9a{word-spacing:4.920180px;}
.ws16{word-spacing:4.973330px;}
.ws28{word-spacing:5.092881px;}
.ws62{word-spacing:5.152657px;}
.ws49{word-spacing:5.212432px;}
.ws26{word-spacing:5.331984px;}
.ws1{word-spacing:5.379825px;}
.ws27{word-spacing:5.391759px;}
.ws51{word-spacing:5.511310px;}
.ws17{word-spacing:5.571086px;}
.ws76{word-spacing:5.690637px;}
.ws29{word-spacing:5.750413px;}
.ws46{word-spacing:5.869964px;}
.ws86{word-spacing:5.929740px;}
.ws75{word-spacing:6.109066px;}
.ws11{word-spacing:6.348169px;}
.ws7e{word-spacing:6.467720px;}
.ws2f{word-spacing:6.527496px;}
.ws7c{word-spacing:6.706822px;}
.ws65{word-spacing:6.886149px;}
.ws31{word-spacing:7.065476px;}
.ws67{word-spacing:7.125252px;}
.ws33{word-spacing:7.185027px;}
.ws39{word-spacing:7.304578px;}
.ws87{word-spacing:7.424130px;}
.ws3a{word-spacing:7.483905px;}
.ws2c{word-spacing:7.603456px;}
.ws4f{word-spacing:7.723008px;}
.ws3e{word-spacing:8.021886px;}
.ws8c{word-spacing:8.041993px;}
.ws35{word-spacing:8.141437px;}
.ws4c{word-spacing:8.260988px;}
.ws43{word-spacing:8.320764px;}
.ws6a{word-spacing:8.380539px;}
.ws7d{word-spacing:8.679417px;}
.ws5e{word-spacing:8.739193px;}
.ws34{word-spacing:8.798968px;}
.ws48{word-spacing:8.978295px;}
.ws66{word-spacing:9.038071px;}
.ws36{word-spacing:9.396724px;}
.ws6c{word-spacing:9.695602px;}
.ws42{word-spacing:9.755378px;}
.ws56{word-spacing:9.862974px;}
.ws77{word-spacing:9.874929px;}
.ws53{word-spacing:9.875083px;}
.ws52{word-spacing:9.922750px;}
.ws82{word-spacing:9.934705px;}
.wsbf{word-spacing:9.994480px;}
.ws38{word-spacing:10.054256px;}
.ws5d{word-spacing:10.173807px;}
.ws60{word-spacing:10.233583px;}
.wsb0{word-spacing:10.293358px;}
.ws81{word-spacing:10.412910px;}
.ws37{word-spacing:10.472685px;}
.ws6e{word-spacing:10.652012px;}
.wsb8{word-spacing:10.831339px;}
.ws15{word-spacing:11.130217px;}
.ws1e{word-spacing:11.189992px;}
.wsc0{word-spacing:11.668197px;}
.ws1c{word-spacing:11.727973px;}
.ws4e{word-spacing:11.787748px;}
.ws1a{word-spacing:12.146402px;}
.ws1b{word-spacing:12.206178px;}
.ws4d{word-spacing:12.325729px;}
.ws6d{word-spacing:12.803934px;}
.ws63{word-spacing:13.043036px;}
.wsa7{word-spacing:13.282138px;}
.wsc6{word-spacing:14.585283px;}
.ws84{word-spacing:14.776528px;}
.ws96{word-spacing:16.880672px;}
.ws7{word-spacing:18.243513px;}
.ws8{word-spacing:18.303289px;}
.ws88{word-spacing:19.866072px;}
.wsb1{word-spacing:21.932042px;}
.ws9f{word-spacing:21.938042px;}
.wsa1{word-spacing:22.422522px;}
.ws5{word-spacing:22.834279px;}
.ws2d{word-spacing:22.846234px;}
.ws8e{word-spacing:22.894055px;}
.wsc1{word-spacing:26.622522px;}
.ws0{word-spacing:27.975090px;}
.ws4{word-spacing:55.232654px;}
.wsf{word-spacing:69.937725px;}
.ws57{word-spacing:237.918843px;}
._8{margin-left:-29.887800px;}
._1b{margin-left:-10.742410px;}
._2{margin-left:-8.349488px;}
._1c{margin-left:-6.635092px;}
._32{margin-left:-5.379804px;}
._10{margin-left:-4.284706px;}
._1{margin-left:-2.410162px;}
._d{margin-left:-1.355701px;}
._2b{width:1.472890px;}
._0{width:2.496239px;}
._1f{width:4.083878px;}
._30{width:6.516223px;}
._2e{width:14.444895px;}
._1a{width:16.199188px;}
._1d{width:18.164618px;}
._13{width:19.965050px;}
._33{width:21.515577px;}
._25{width:22.654952px;}
._15{width:24.223454px;}
._2d{width:25.304216px;}
._24{width:26.645581px;}
._28{width:27.664138px;}
._2c{width:28.792702px;}
._23{width:30.738995px;}
._31{width:32.118635px;}
._22{width:33.534112px;}
._19{width:36.343565px;}
._26{width:37.658628px;}
._27{width:38.873278px;}
._7{width:41.006062px;}
._17{width:42.101160px;}
._2f{width:43.497499px;}
._29{width:45.357715px;}
._2a{width:47.043397px;}
._a{width:48.776890px;}
._f{width:51.002923px;}
._9{width:52.621666px;}
._1e{width:54.014463px;}
._4{width:55.292430px;}
._16{width:57.045060px;}
._18{width:59.596273px;}
._6{width:61.090663px;}
._12{width:68.383286px;}
._14{width:69.758125px;}
._21{width:80.697600px;}
._20{width:96.836850px;}
._34{width:798.721567px;}
._c{width:832.195903px;}
._5{width:1177.055676px;}
._e{width:1311.675128px;}
._11{width:1436.347892px;}
._b{width:1444.451072px;}
._3{width:1559.160449px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y3{bottom:134.047500px;}
.y2d3{bottom:167.124000px;}
.y89{bottom:178.879500px;}
.y130{bottom:183.099000px;}
.y11b{bottom:183.100500px;}
.y29d{bottom:183.105000px;}
.y2b9{bottom:183.363000px;}
.y160{bottom:187.171500px;}
.ycd{bottom:187.845000px;}
.ye9{bottom:187.924500px;}
.y2a{bottom:194.050500px;}
.y88{bottom:196.812000px;}
.y17b{bottom:197.355000px;}
.y11a{bottom:197.358000px;}
.y29c{bottom:197.361000px;}
.y12f{bottom:202.326000px;}
.y23e{bottom:204.429000px;}
.y15f{bottom:205.104000px;}
.ycc{bottom:205.777500px;}
.y1c8{bottom:206.467500px;}
.y253{bottom:207.393000px;}
.y198{bottom:208.192500px;}
.y1ae{bottom:209.925000px;}
.y1c1{bottom:210.409500px;}
.y2b8{bottom:211.564500px;}
.y17a{bottom:211.611000px;}
.y29{bottom:211.984500px;}
.y2d2{bottom:212.649000px;}
.y20b{bottom:213.132000px;}
.yab{bottom:213.597000px;}
.y87{bottom:214.744500px;}
.y188{bottom:216.583500px;}
.ye8{bottom:217.812000px;}
.y15e{bottom:223.036500px;}
.y252{bottom:225.808500px;}
.y216{bottom:225.868500px;}
.y263{bottom:226.720500px;}
.y28{bottom:229.917000px;}
.y178{bottom:230.839500px;}
.yaa{bottom:231.529500px;}
.y23d{bottom:231.702000px;}
.y12e{bottom:232.000500px;}
.y86{bottom:232.677000px;}
.y1c7{bottom:234.057000px;}
.y119{bottom:235.587000px;}
.ycb{bottom:235.666500px;}
.y197{bottom:237.505500px;}
.y2b7{bottom:239.766000px;}
.y251{bottom:240.064500px;}
.y240{bottom:240.793500px;}
.y15d{bottom:240.969000px;}
.y262{bottom:240.976500px;}
.y2d1{bottom:241.936500px;}
.y1c0{bottom:241.939500px;}
.y200{bottom:243.283500px;}
.y27f{bottom:244.683000px;}
.y1ef{bottom:244.851000px;}
.y319{bottom:244.998000px;}
.y215{bottom:245.095500px;}
.y1dc{bottom:246.339000px;}
.y304{bottom:246.351000px;}
.y2ee{bottom:246.645000px;}
.y272{bottom:246.844500px;}
.y20a{bottom:247.384500px;}
.ye7{bottom:247.699500px;}
.y27{bottom:247.849500px;}
.ya9{bottom:249.462000px;}
.y187{bottom:250.050000px;}
.y85{bottom:250.609500px;}
.yca{bottom:253.599000px;}
.y337{bottom:253.744500px;}
.y250{bottom:254.322000px;}
.y15c{bottom:258.901500px;}
.y23c{bottom:258.975000px;}
.y1ff{bottom:261.216000px;}
.y177{bottom:261.579000px;}
.y1c6{bottom:261.645000px;}
.y12d{bottom:261.676500px;}
.y261{bottom:263.941500px;}
.y118{bottom:265.474500px;}
.ye6{bottom:265.633500px;}
.y26{bottom:265.782000px;}
.y102{bottom:265.845000px;}
.y196{bottom:266.818500px;}
.ya8{bottom:267.394500px;}
.y2b6{bottom:267.969000px;}
.y84{bottom:268.542000px;}
.y2d0{bottom:271.222500px;}
.yc9{bottom:271.531500px;}
.y1ad{bottom:272.014500px;}
.y27e{bottom:272.782500px;}
.y1ee{bottom:273.118500px;}
.y318{bottom:273.412500px;}
.y1bf{bottom:273.469500px;}
.y24f{bottom:273.549000px;}
.y214{bottom:275.613000px;}
.y1db{bottom:276.094500px;}
.y303{bottom:276.120000px;}
.y2ed{bottom:276.706500px;}
.y15b{bottom:276.835500px;}
.y271{bottom:277.105500px;}
.y23f{bottom:277.156500px;}
.y61{bottom:278.530500px;}
.y1fe{bottom:279.148500px;}
.y209{bottom:281.638500px;}
.y186{bottom:283.518000px;}
.y336{bottom:283.632000px;}
.y25{bottom:283.714500px;}
.y101{bottom:283.777500px;}
.ya7{bottom:285.328500px;}
.y23b{bottom:286.248000px;}
.y83{bottom:286.476000px;}
.y1c5{bottom:289.234500px;}
.yc8{bottom:289.464000px;}
.y12c{bottom:291.351000px;}
.y176{bottom:292.317000px;}
.ye5{bottom:293.217000px;}
.y15a{bottom:294.768000px;}
.y117{bottom:295.363500px;}
.y29b{bottom:295.399500px;}
.y195{bottom:296.131500px;}
.y2b5{bottom:296.170500px;}
.y60{bottom:296.463000px;}
.y33e{bottom:296.701500px;}
.y1fd{bottom:297.082500px;}
.y2cf{bottom:300.510000px;}
.y27d{bottom:300.882000px;}
.y1ed{bottom:301.386000px;}
.y24{bottom:301.647000px;}
.y317{bottom:301.828500px;}
.y1ac{bottom:303.060000px;}
.y24e{bottom:303.651000px;}
.y82{bottom:304.408500px;}
.y1be{bottom:304.999500px;}
.y1da{bottom:305.850000px;}
.y302{bottom:305.887500px;}
.y213{bottom:306.130500px;}
.y2ec{bottom:306.769500px;}
.y270{bottom:307.366500px;}
.y1b7{bottom:309.771000px;}
.ya6{bottom:312.226500px;}
.y159{bottom:312.700500px;}
.y23a{bottom:313.521000px;}
.y100{bottom:313.666500px;}
.y1fc{bottom:315.015000px;}
.y208{bottom:315.891000px;}
.y1c4{bottom:316.822500px;}
.y185{bottom:316.984500px;}
.yc7{bottom:319.351500px;}
.y23{bottom:319.581000px;}
.y12b{bottom:321.025500px;}
.y81{bottom:322.341000px;}
.y175{bottom:323.056500px;}
.y2b4{bottom:324.373500px;}
.y116{bottom:325.251000px;}
.y29a{bottom:325.287000px;}
.y194{bottom:325.446000px;}
.y27c{bottom:328.981500px;}
.y1ec{bottom:329.655000px;}
.y2ce{bottom:329.796000px;}
.y316{bottom:330.243000px;}
.y158{bottom:330.633000px;}
.ye4{bottom:332.224500px;}
.y5f{bottom:332.328000px;}
.y1fb{bottom:332.947500px;}
.y24d{bottom:333.754500px;}
.y1d9{bottom:335.605500px;}
.y301{bottom:335.656500px;}
.y1bd{bottom:336.529500px;}
.y212{bottom:336.648000px;}
.y2eb{bottom:336.831000px;}
.yc6{bottom:337.285500px;}
.y22{bottom:337.513500px;}
.y26f{bottom:337.627500px;}
.y80{bottom:340.273500px;}
.y335{bottom:343.408500px;}
.yff{bottom:343.554000px;}
.y1c3{bottom:344.412000px;}
.ya5{bottom:348.093000px;}
.y1ab{bottom:348.576000px;}
.y5e{bottom:350.260500px;}
.y184{bottom:350.452500px;}
.y12a{bottom:350.700000px;}
.y1fa{bottom:350.880000px;}
.y2b3{bottom:352.575000px;}
.y174{bottom:353.796000px;}
.y193{bottom:354.759000px;}
.y115{bottom:355.138500px;}
.y299{bottom:355.174500px;}
.yc5{bottom:355.218000px;}
.y21{bottom:355.446000px;}
.y27b{bottom:357.081000px;}
.y1eb{bottom:357.922500px;}
.y7f{bottom:358.206000px;}
.y157{bottom:358.216500px;}
.y315{bottom:358.659000px;}
.y239{bottom:359.037000px;}
.y2cd{bottom:359.083500px;}
.y207{bottom:361.408500px;}
.y24c{bottom:363.856500px;}
.y1d8{bottom:365.361000px;}
.y300{bottom:365.424000px;}
.ya4{bottom:366.025500px;}
.y2ea{bottom:366.892500px;}
.y211{bottom:367.165500px;}
.y26e{bottom:367.888500px;}
.y1bc{bottom:368.058000px;}
.y5d{bottom:368.194500px;}
.y1f9{bottom:368.812500px;}
.y1c2{bottom:372.000000px;}
.yc4{bottom:373.150500px;}
.y334{bottom:373.296000px;}
.y20{bottom:373.378500px;}
.yfe{bottom:373.441500px;}
.y7e{bottom:376.140000px;}
.y129{bottom:380.374500px;}
.y2b2{bottom:380.776500px;}
.ye3{bottom:381.643500px;}
.ya3{bottom:383.958000px;}
.y241{bottom:384.025500px;}
.y192{bottom:384.072000px;}
.y173{bottom:384.535500px;}
.y114{bottom:385.026000px;}
.y298{bottom:385.063500px;}
.y27a{bottom:385.180500px;}
.y5c{bottom:386.127000px;}
.y1ea{bottom:386.190000px;}
.y1f8{bottom:386.745000px;}
.y314{bottom:387.073500px;}
.y1aa{bottom:387.420000px;}
.y2cc{bottom:388.369500px;}
.yc3{bottom:391.083000px;}
.y1f{bottom:391.311000px;}
.y24b{bottom:393.958500px;}
.y7d{bottom:394.072500px;}
.y1d7{bottom:395.116500px;}
.y2ff{bottom:395.193000px;}
.y183{bottom:395.970000px;}
.y2e9{bottom:396.955500px;}
.y144{bottom:397.060500px;}
.y210{bottom:397.683000px;}
.y238{bottom:397.881000px;}
.y26d{bottom:398.149500px;}
.ye2{bottom:399.576000px;}
.y1bb{bottom:399.588000px;}
.ya2{bottom:401.890500px;}
.y206{bottom:403.158000px;}
.y333{bottom:403.183500px;}
.yfd{bottom:403.329000px;}
.y5b{bottom:404.059500px;}
.y1a9{bottom:405.352500px;}
.y2b1{bottom:408.979500px;}
.y1e{bottom:409.243500px;}
.y128{bottom:410.050500px;}
.y7c{bottom:412.005000px;}
.y279{bottom:413.280000px;}
.y191{bottom:413.385000px;}
.y1f7{bottom:414.330000px;}
.y1e9{bottom:414.457500px;}
.y113{bottom:414.915000px;}
.y297{bottom:414.951000px;}
.y172{bottom:415.273500px;}
.y179{bottom:415.275000px;}
.y313{bottom:415.489500px;}
.y237{bottom:415.813500px;}
.ye1{bottom:417.508500px;}
.y2cb{bottom:417.657000px;}
.ya1{bottom:419.823000px;}
.yc2{bottom:420.970500px;}
.y205{bottom:421.090500px;}
.y5a{bottom:421.992000px;}
.y1a8{bottom:423.285000px;}
.y24a{bottom:424.062000px;}
.y1d6{bottom:424.872000px;}
.y2fe{bottom:424.960500px;}
.y143{bottom:426.501000px;}
.y2e8{bottom:427.017000px;}
.y1d{bottom:427.177500px;}
.y156{bottom:428.050500px;}
.y20f{bottom:428.200500px;}
.y26c{bottom:428.410500px;}
.y7b{bottom:429.937500px;}
.yfc{bottom:430.914000px;}
.y236{bottom:433.746000px;}
.y2b0{bottom:437.181000px;}
.yc1{bottom:438.904500px;}
.y127{bottom:439.725000px;}
.y59{bottom:439.924500px;}
.y1a7{bottom:441.219000px;}
.y278{bottom:441.379500px;}
.y190{bottom:442.698000px;}
.y1e8{bottom:442.726500px;}
.y312{bottom:443.904000px;}
.y112{bottom:444.802500px;}
.y296{bottom:444.838500px;}
.y1ba{bottom:445.105500px;}
.y1c{bottom:445.110000px;}
.y2ca{bottom:446.943000px;}
.ye0{bottom:447.397500px;}
.y7a{bottom:447.870000px;}
.y332{bottom:448.701000px;}
.y235{bottom:451.678500px;}
.y182{bottom:452.746500px;}
.y2{bottom:452.890500px;}
.y1f6{bottom:453.174000px;}
.y249{bottom:454.164000px;}
.ya0{bottom:454.564500px;}
.y1d5{bottom:454.627500px;}
.y2fd{bottom:454.729500px;}
.y142{bottom:455.940000px;}
.yc0{bottom:456.837000px;}
.y2e7{bottom:457.078500px;}
.y58{bottom:457.858500px;}
.y26b{bottom:458.671500px;}
.y20e{bottom:458.718000px;}
.y155{bottom:459.039000px;}
.y1a6{bottom:459.151500px;}
.y171{bottom:460.791000px;}
.y1b{bottom:463.042500px;}
.y2e3{bottom:463.770000px;}
.ydf{bottom:465.330000px;}
.y2af{bottom:465.384000px;}
.y79{bottom:465.802500px;}
.y126{bottom:469.399500px;}
.y277{bottom:469.479000px;}
.y234{bottom:469.612500px;}
.y1e7{bottom:470.994000px;}
.y18f{bottom:472.011000px;}
.y311{bottom:472.320000px;}
.yfb{bottom:472.746000px;}
.y111{bottom:474.690000px;}
.y295{bottom:474.727500px;}
.ybf{bottom:474.769500px;}
.y57{bottom:475.791000px;}
.y2c9{bottom:476.230500px;}
.y1a5{bottom:477.084000px;}
.y1a{bottom:480.975000px;}
.y181{bottom:482.634000px;}
.y1f5{bottom:483.061500px;}
.y78{bottom:483.736500px;}
.y248{bottom:484.266000px;}
.y1d4{bottom:484.384500px;}
.y2fc{bottom:484.497000px;}
.y141{bottom:485.380500px;}
.y233{bottom:487.545000px;}
.y26a{bottom:488.932500px;}
.y154{bottom:490.027500px;}
.yfa{bottom:490.678500px;}
.ybe{bottom:492.702000px;}
.y2ae{bottom:493.585500px;}
.y2e2{bottom:493.657500px;}
.y56{bottom:493.723500px;}
.y1a4{bottom:495.016500px;}
.yde{bottom:495.217500px;}
.y276{bottom:497.578500px;}
.y19{bottom:498.907500px;}
.y125{bottom:499.074000px;}
.y1e6{bottom:499.261500px;}
.y170{bottom:499.635000px;}
.y310{bottom:500.734500px;}
.y18e{bottom:501.325500px;}
.y77{bottom:501.669000px;}
.y1b9{bottom:501.882000px;}
.y2e6{bottom:502.596000px;}
.y9f{bottom:503.983500px;}
.y20d{bottom:504.235500px;}
.y110{bottom:504.579000px;}
.y294{bottom:504.615000px;}
.y232{bottom:505.477500px;}
.y2c8{bottom:505.518000px;}
.yf9{bottom:508.611000px;}
.ybd{bottom:510.634500px;}
.y55{bottom:511.656000px;}
.y180{bottom:512.521500px;}
.y1a3{bottom:512.949000px;}
.ydd{bottom:513.150000px;}
.y1d3{bottom:514.140000px;}
.y2fb{bottom:514.266000px;}
.y247{bottom:514.369500px;}
.y140{bottom:514.819500px;}
.y18{bottom:516.840000px;}
.y16f{bottom:517.567500px;}
.y269{bottom:519.195000px;}
.y76{bottom:519.601500px;}
.y1b8{bottom:519.814500px;}
.y28e{bottom:520.567500px;}
.y153{bottom:521.017500px;}
.y2ad{bottom:521.787000px;}
.y9e{bottom:521.916000px;}
.y231{bottom:523.410000px;}
.y2e1{bottom:523.545000px;}
.y275{bottom:525.679500px;}
.yf8{bottom:526.545000px;}
.y260{bottom:527.388000px;}
.y1e5{bottom:527.529000px;}
.y124{bottom:528.748500px;}
.y30f{bottom:529.149000px;}
.y54{bottom:529.588500px;}
.y18d{bottom:530.638500px;}
.y1a2{bottom:530.881500px;}
.y10f{bottom:534.466500px;}
.y293{bottom:534.502500px;}
.y17{bottom:534.774000px;}
.y2c7{bottom:534.804000px;}
.y28d{bottom:538.500000px;}
.y9d{bottom:539.848500px;}
.ybc{bottom:540.523500px;}
.y230{bottom:541.342500px;}
.y17f{bottom:542.409000px;}
.y1f4{bottom:542.838000px;}
.ydc{bottom:543.039000px;}
.y1d2{bottom:543.895500px;}
.y2fa{bottom:544.033500px;}
.y13f{bottom:544.258500px;}
.y16e{bottom:545.151000px;}
.y20c{bottom:546.814500px;}
.y75{bottom:547.185000px;}
.y53{bottom:547.521000px;}
.y268{bottom:549.456000px;}
.y2ac{bottom:549.990000px;}
.y152{bottom:552.006000px;}
.y16{bottom:552.706500px;}
.y2e0{bottom:553.432500px;}
.y274{bottom:553.779000px;}
.yf7{bottom:554.128500px;}
.y43{bottom:555.466500px;}
.y1e4{bottom:555.798000px;}
.y30e{bottom:557.565000px;}
.y9c{bottom:557.781000px;}
.y123{bottom:558.424500px;}
.ybb{bottom:558.456000px;}
.y1a1{bottom:558.466500px;}
.y331{bottom:559.275000px;}
.y2e5{bottom:559.372500px;}
.y246{bottom:559.885500px;}
.y18c{bottom:559.951500px;}
.ydb{bottom:560.971500px;}
.y2c6{bottom:564.091500px;}
.y10e{bottom:564.354000px;}
.y292{bottom:564.390000px;}
.y52{bottom:565.455000px;}
.y28c{bottom:566.083500px;}
.y22f{bottom:568.927500px;}
.y15{bottom:570.639000px;}
.y17e{bottom:572.298000px;}
.y1f3{bottom:572.725500px;}
.y42{bottom:573.399000px;}
.y1d1{bottom:573.651000px;}
.y13e{bottom:573.699000px;}
.y2f9{bottom:573.802500px;}
.y9b{bottom:575.713500px;}
.yba{bottom:576.388500px;}
.y330{bottom:577.209000px;}
.y2e4{bottom:577.305000px;}
.y2ab{bottom:578.191500px;}
.yda{bottom:578.904000px;}
.y267{bottom:579.717000px;}
.y273{bottom:581.878500px;}
.y151{bottom:582.996000px;}
.y51{bottom:583.387500px;}
.y16d{bottom:583.995000px;}
.y1e3{bottom:584.065500px;}
.y30d{bottom:585.979500px;}
.y2df{bottom:586.309500px;}
.y122{bottom:588.099000px;}
.y74{bottom:588.426000px;}
.y14{bottom:588.571500px;}
.y18b{bottom:589.264500px;}
.y41{bottom:591.333000px;}
.y2c5{bottom:593.377500px;}
.y9a{bottom:593.646000px;}
.yb9{bottom:594.321000px;}
.y32f{bottom:595.141500px;}
.yf6{bottom:595.960500px;}
.yd9{bottom:596.836500px;}
.y1a0{bottom:597.310500px;}
.y50{bottom:601.320000px;}
.y1f2{bottom:602.613000px;}
.y13d{bottom:603.138000px;}
.y1d0{bottom:603.406500px;}
.y2f8{bottom:603.570000px;}
.y2de{bottom:604.242000px;}
.y28b{bottom:604.927500px;}
.y73{bottom:606.360000px;}
.y2aa{bottom:606.394500px;}
.y13{bottom:606.504000px;}
.y223{bottom:607.771500px;}
.y40{bottom:609.265500px;}
.y10d{bottom:609.871500px;}
.y291{bottom:609.907500px;}
.y266{bottom:609.978000px;}
.y99{bottom:611.580000px;}
.y1e2{bottom:612.333000px;}
.y32e{bottom:613.074000px;}
.y16c{bottom:613.884000px;}
.yf5{bottom:613.894500px;}
.y150{bottom:613.984500px;}
.y30c{bottom:614.395500px;}
.yd8{bottom:614.769000px;}
.y245{bottom:616.662000px;}
.y121{bottom:617.773500px;}
.y18a{bottom:618.577500px;}
.y4f{bottom:619.252500px;}
.y17d{bottom:620.035500px;}
.y2c4{bottom:622.665000px;}
.yb8{bottom:624.208500px;}
.y72{bottom:624.292500px;}
.y12{bottom:624.438000px;}
.y3f{bottom:627.198000px;}
.y98{bottom:629.512500px;}
.y32d{bottom:631.006500px;}
.yf4{bottom:631.827000px;}
.y1f1{bottom:632.500500px;}
.y13c{bottom:632.578500px;}
.yd7{bottom:632.701500px;}
.y1cf{bottom:633.162000px;}
.y2f7{bottom:633.339000px;}
.y244{bottom:634.594500px;}
.y2a9{bottom:634.596000px;}
.y28a{bottom:634.815000px;}
.y222{bottom:636.853500px;}
.y4e{bottom:637.185000px;}
.y17c{bottom:637.968000px;}
.y22e{bottom:639.277500px;}
.y1e1{bottom:640.602000px;}
.yb7{bottom:642.142500px;}
.y71{bottom:642.225000px;}
.y30b{bottom:642.810000px;}
.y16b{bottom:643.771500px;}
.y14f{bottom:644.973000px;}
.y3e{bottom:645.130500px;}
.y97{bottom:647.445000px;}
.y120{bottom:647.448000px;}
.yd6{bottom:650.635500px;}
.y10c{bottom:651.621000px;}
.y290{bottom:651.657000px;}
.y2c3{bottom:651.951000px;}
.y4d{bottom:655.117500px;}
.y265{bottom:655.494000px;}
.y19f{bottom:657.085500px;}
.y11{bottom:657.313500px;}
.y32c{bottom:658.590000px;}
.yf3{bottom:659.410500px;}
.yb6{bottom:660.075000px;}
.y70{bottom:660.157500px;}
.y13b{bottom:662.017500px;}
.y2a8{bottom:662.799000px;}
.y1ce{bottom:662.917500px;}
.y3d{bottom:663.063000px;}
.y2f6{bottom:663.106500px;}
.y289{bottom:664.704000px;}
.y96{bottom:665.377500px;}
.y221{bottom:665.937000px;}
.y189{bottom:666.315000px;}
.yd5{bottom:668.568000px;}
.y1e0{bottom:668.869500px;}
.y10b{bottom:669.553500px;}
.y28f{bottom:669.589500px;}
.y2dd{bottom:670.671000px;}
.y22d{bottom:670.785000px;}
.y30a{bottom:671.226000px;}
.y4c{bottom:673.051500px;}
.y16a{bottom:673.659000px;}
.y10{bottom:675.247500px;}
.y14e{bottom:675.963000px;}
.y11f{bottom:677.122500px;}
.yb5{bottom:678.007500px;}
.y1f0{bottom:678.018000px;}
.y3c{bottom:680.995500px;}
.y2c2{bottom:681.238500px;}
.y95{bottom:683.310000px;}
.y1{bottom:685.932000px;}
.yd4{bottom:686.500500px;}
.y19e{bottom:686.974500px;}
.y6f{bottom:688.672500px;}
.y4b{bottom:690.984000px;}
.y2a7{bottom:691.000500px;}
.y13a{bottom:691.456500px;}
.y1cd{bottom:692.673000px;}
.y2f5{bottom:692.875500px;}
.yf{bottom:693.180000px;}
.y1b6{bottom:694.591500px;}
.y220{bottom:695.020500px;}
.yb4{bottom:695.940000px;}
.y1df{bottom:697.137000px;}
.y264{bottom:697.243500px;}
.y323{bottom:697.434000px;}
.y3b{bottom:698.929500px;}
.y309{bottom:699.640500px;}
.y2dc{bottom:700.558500px;}
.y94{bottom:701.242500px;}
.yf2{bottom:701.244000px;}
.y22c{bottom:702.291000px;}
.yd3{bottom:704.433000px;}
.y169{bottom:706.536000px;}
.y6e{bottom:706.605000px;}
.y14d{bottom:706.951500px;}
.y4a{bottom:708.916500px;}
.y288{bottom:710.220000px;}
.y2c1{bottom:710.524500px;}
.ye{bottom:711.112500px;}
.y1b5{bottom:712.524000px;}
.y11e{bottom:712.989000px;}
.y3a{bottom:716.862000px;}
.y93{bottom:719.176500px;}
.y2a6{bottom:719.202000px;}
.y139{bottom:720.897000px;}
.yd2{bottom:722.365500px;}
.y1cc{bottom:722.430000px;}
.y2f4{bottom:722.643000px;}
.y21f{bottom:724.104000px;}
.y168{bottom:724.468500px;}
.y6d{bottom:724.537500px;}
.y1de{bottom:725.404500px;}
.yb3{bottom:725.827500px;}
.y322{bottom:726.276000px;}
.y49{bottom:726.849000px;}
.y308{bottom:728.056500px;}
.yd{bottom:729.045000px;}
.y32b{bottom:729.481500px;}
.y2db{bottom:730.446000px;}
.yf1{bottom:731.131500px;}
.y33d{bottom:733.435500px;}
.y22b{bottom:733.798500px;}
.y39{bottom:734.794500px;}
.y92{bottom:737.109000px;}
.y14c{bottom:737.940000px;}
.y2c0{bottom:739.812000px;}
.y1b4{bottom:740.107500px;}
.yd1{bottom:740.299500px;}
.y11d{bottom:740.572500px;}
.y6c{bottom:742.470000px;}
.yb2{bottom:743.761500px;}
.y48{bottom:744.781500px;}
.y19d{bottom:746.749500px;}
.yc{bottom:746.977500px;}
.y2a5{bottom:747.405000px;}
.yf0{bottom:749.064000px;}
.y138{bottom:750.336000px;}
.y33c{bottom:751.368000px;}
.y167{bottom:752.053500px;}
.y1cb{bottom:752.185500px;}
.y2f3{bottom:752.412000px;}
.y38{bottom:752.727000px;}
.y21e{bottom:753.187500px;}
.y1dd{bottom:753.673500px;}
.y91{bottom:755.041500px;}
.y321{bottom:755.118000px;}
.y307{bottom:756.471000px;}
.yd0{bottom:758.232000px;}
.y6b{bottom:760.404000px;}
.y32a{bottom:761.527500px;}
.yb1{bottom:761.694000px;}
.y47{bottom:762.714000px;}
.y22a{bottom:765.304500px;}
.y204{bottom:766.312500px;}
.y287{bottom:766.996500px;}
.y14b{bottom:768.930000px;}
.y2bf{bottom:769.098000px;}
.y37{bottom:770.659500px;}
.y90{bottom:772.974000px;}
.y2a4{bottom:775.606500px;}
.y2da{bottom:775.963500px;}
.ycf{bottom:776.164500px;}
.y19c{bottom:776.637000px;}
.y6a{bottom:778.336500px;}
.yef{bottom:778.951500px;}
.yb0{bottom:779.626500px;}
.y137{bottom:779.776500px;}
.yb{bottom:779.854500px;}
.y46{bottom:780.648000px;}
.y1ca{bottom:781.941000px;}
.y2f2{bottom:782.179500px;}
.y21d{bottom:782.271000px;}
.y11c{bottom:782.322000px;}
.y320{bottom:783.960000px;}
.y203{bottom:784.245000px;}
.y306{bottom:784.885500px;}
.y286{bottom:784.929000px;}
.y25a{bottom:787.098000px;}
.y36{bottom:788.592000px;}
.y166{bottom:790.896000px;}
.y8f{bottom:790.906500px;}
.y329{bottom:793.573500px;}
.y69{bottom:796.269000px;}
.y229{bottom:796.812000px;}
.yee{bottom:796.884000px;}
.yaf{bottom:797.559000px;}
.y2be{bottom:798.385500px;}
.y14a{bottom:799.918500px;}
.y285{bottom:802.863000px;}
.y2a3{bottom:803.809500px;}
.y35{bottom:806.526000px;}
.y8e{bottom:808.840500px;}
.y136{bottom:809.215500px;}
.yce{bottom:810.904500px;}
.y21c{bottom:811.353000px;}
.y202{bottom:811.828500px;}
.y2f1{bottom:811.948500px;}
.ya{bottom:812.731500px;}
.y31f{bottom:812.802000px;}
.y305{bottom:813.301500px;}
.y2d9{bottom:814.807500px;}
.y45{bottom:815.388000px;}
.y259{bottom:815.491500px;}
.y33b{bottom:817.795500px;}
.y25f{bottom:820.224000px;}
.y165{bottom:820.785000px;}
.y284{bottom:820.795500px;}
.y34{bottom:824.458500px;}
.y328{bottom:825.621000px;}
.y68{bottom:825.712500px;}
.y8d{bottom:826.773000px;}
.yae{bottom:827.446500px;}
.y1c9{bottom:827.457000px;}
.y2bd{bottom:827.671500px;}
.y107{bottom:827.676000px;}
.y228{bottom:828.319500px;}
.y149{bottom:830.908500px;}
.y2a2{bottom:832.011000px;}
.y2d8{bottom:832.740000px;}
.y19b{bottom:836.413500px;}
.y135{bottom:838.654500px;}
.y1b3{bottom:838.728000px;}
.y21b{bottom:840.436500px;}
.y31e{bottom:841.644000px;}
.y2f0{bottom:841.716000px;}
.y33{bottom:842.391000px;}
.y67{bottom:843.645000px;}
.y258{bottom:843.885000px;}
.y8c{bottom:844.705500px;}
.yad{bottom:845.380500px;}
.y9{bottom:845.608500px;}
.y33a{bottom:847.683000px;}
.y164{bottom:850.672500px;}
.y25e{bottom:853.350000px;}
.yed{bottom:856.660500px;}
.y2bc{bottom:856.959000px;}
.y106{bottom:857.563500px;}
.y327{bottom:857.667000px;}
.y227{bottom:859.825500px;}
.y2a1{bottom:860.212500px;}
.y32{bottom:860.323500px;}
.y66{bottom:861.577500px;}
.y148{bottom:861.897000px;}
.y8b{bottom:862.638000px;}
.yac{bottom:863.313000px;}
.y8{bottom:863.541000px;}
.y19a{bottom:866.301000px;}
.y134{bottom:868.095000px;}
.y2d7{bottom:868.605000px;}
.y1b2{bottom:868.615500px;}
.y21a{bottom:869.520000px;}
.y31d{bottom:870.486000px;}
.y257{bottom:872.278500px;}
.y243{bottom:873.909000px;}
.y283{bottom:874.593000px;}
.y339{bottom:877.572000px;}
.y31{bottom:878.256000px;}
.y65{bottom:879.510000px;}
.y163{bottom:880.560000px;}
.y7{bottom:881.473500px;}
.yec{bottom:884.244000px;}
.y2bb{bottom:886.246500px;}
.y25d{bottom:886.476000px;}
.y2d6{bottom:886.537500px;}
.y2ef{bottom:887.233500px;}
.y105{bottom:887.451000px;}
.y2a0{bottom:888.415500px;}
.y326{bottom:889.713000px;}
.y8a{bottom:890.221500px;}
.y226{bottom:891.333000px;}
.y242{bottom:891.841500px;}
.y282{bottom:892.525500px;}
.y147{bottom:892.885500px;}
.y30{bottom:896.188500px;}
.y199{bottom:896.190000px;}
.y64{bottom:897.442500px;}
.y133{bottom:897.534000px;}
.y219{bottom:898.603500px;}
.y31c{bottom:899.328000px;}
.y6{bottom:899.406000px;}
.y256{bottom:900.672000px;}
.y1b1{bottom:901.492500px;}
.y2d5{bottom:904.470000px;}
.y338{bottom:907.459500px;}
.y10a{bottom:910.360500px;}
.y162{bottom:910.449000px;}
.y2f{bottom:914.122500px;}
.y63{bottom:915.376500px;}
.y2ba{bottom:915.532500px;}
.y29f{bottom:916.617000px;}
.y104{bottom:917.338500px;}
.y1b0{bottom:919.425000px;}
.y25c{bottom:919.602000px;}
.y281{bottom:920.110500px;}
.y325{bottom:921.760500px;}
.y2d4{bottom:922.404000px;}
.y225{bottom:922.839000px;}
.y44{bottom:923.088000px;}
.y146{bottom:923.875500px;}
.yeb{bottom:926.077500px;}
.y132{bottom:926.974500px;}
.y218{bottom:927.687000px;}
.y31b{bottom:928.170000px;}
.y109{bottom:928.294500px;}
.y255{bottom:929.065500px;}
.y2e{bottom:932.055000px;}
.y5{bottom:932.283000px;}
.y161{bottom:940.336500px;}
.y62{bottom:942.960000px;}
.y29e{bottom:944.820000px;}
.y1af{bottom:947.008500px;}
.y103{bottom:947.227500px;}
.y2d{bottom:949.987500px;}
.y25b{bottom:952.726500px;}
.y324{bottom:953.806500px;}
.y224{bottom:954.346500px;}
.y145{bottom:954.864000px;}
.y108{bottom:955.878000px;}
.yea{bottom:955.965000px;}
.y131{bottom:956.413500px;}
.y217{bottom:956.770500px;}
.y31a{bottom:957.010500px;}
.y254{bottom:957.459000px;}
.y201{bottom:958.269000px;}
.y280{bottom:958.954500px;}
.y2c{bottom:967.920000px;}
.y4{bottom:981.967500px;}
.y2b{bottom:985.852500px;}
.h9{height:24.245146px;}
.ha{height:35.865450px;}
.h4{height:41.842920px;}
.h3{height:44.831700px;}
.h8{height:49.975733px;}
.h7{height:49.981733px;}
.h6{height:50.211840px;}
.h2{height:60.254040px;}
.h1{height:61.459121px;}
.h5{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:97.519500px;}
.x4{left:200.652000px;}
.xd{left:211.446000px;}
.xf{left:217.290000px;}
.x9{left:218.917500px;}
.x5{left:223.068000px;}
.xa{left:238.012500px;}
.x6{left:257.439000px;}
.x17{left:267.712500px;}
.x13{left:271.449000px;}
.x15{left:279.585000px;}
.xb{left:283.377000px;}
.x2{left:285.360000px;}
.x14{left:292.681500px;}
.x7{left:305.260500px;}
.x12{left:353.226000px;}
.x10{left:356.713500px;}
.x16{left:371.407500px;}
.x8{left:388.155000px;}
.xc{left:450.964500px;}
.x3{left:454.699500px;}
.xe{left:476.700000px;}
.x11{left:484.173000px;}
@media print{
.v3{vertical-align:-15.002667pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002079pt;}
.lsb{letter-spacing:0.002750pt;}
.lsa{letter-spacing:0.003449pt;}
.ls1a{letter-spacing:1.046188pt;}
.ls19{letter-spacing:1.472523pt;}
.lsd{letter-spacing:2.238724pt;}
.ls9{letter-spacing:2.654544pt;}
.ls22{letter-spacing:2.656473pt;}
.lsc{letter-spacing:2.657793pt;}
.ls8{letter-spacing:2.858171pt;}
.lse{letter-spacing:6.072220pt;}
.ls11{letter-spacing:11.243145pt;}
.ls15{letter-spacing:13.320083pt;}
.ls1c{letter-spacing:13.579894pt;}
.lsf{letter-spacing:13.580532pt;}
.ls7{letter-spacing:14.757812pt;}
.ls14{letter-spacing:16.175504pt;}
.ls10{letter-spacing:17.040271pt;}
.ls5{letter-spacing:17.693578pt;}
.ls1f{letter-spacing:19.154079pt;}
.ls13{letter-spacing:19.536271pt;}
.ls1e{letter-spacing:19.843449pt;}
.ls1d{letter-spacing:19.872066pt;}
.ls4{letter-spacing:21.519216pt;}
.ls1b{letter-spacing:22.064271pt;}
.ls3{letter-spacing:22.475626pt;}
.ls16{letter-spacing:22.952220pt;}
.ls12{letter-spacing:23.228169pt;}
.ls20{letter-spacing:24.941553pt;}
.ls18{letter-spacing:26.563713pt;}
.ls1{letter-spacing:26.566933pt;}
.ls6{letter-spacing:26.569144pt;}
.ls21{letter-spacing:32.444532pt;}
.ls17{letter-spacing:37.393865pt;}
.ws3{word-spacing:-23.910333pt;}
.ws1d{word-spacing:-14.760588pt;}
.wsa{word-spacing:-10.350477pt;}
.wsc{word-spacing:-10.297343pt;}
.ws54{word-spacing:-2.964870pt;}
.wsa6{word-spacing:-2.911736pt;}
.ws8b{word-spacing:-2.805468pt;}
.ws13{word-spacing:-2.592933pt;}
.ws30{word-spacing:-2.327263pt;}
.ws9c{word-spacing:-2.274129pt;}
.ws71{word-spacing:-2.220996pt;}
.ws8f{word-spacing:-1.902192pt;}
.ws8d{word-spacing:-1.636523pt;}
.ws2e{word-spacing:-1.583389pt;}
.ws59{word-spacing:-1.423988pt;}
.ws2b{word-spacing:-1.317720pt;}
.ws6b{word-spacing:-1.264586pt;}
.ws32{word-spacing:-1.211452pt;}
.wsa0{word-spacing:-1.159492pt;}
.ws9e{word-spacing:-1.158318pt;}
.ws50{word-spacing:-1.052051pt;}
.ws58{word-spacing:-0.998917pt;}
.wsb{word-spacing:-0.201909pt;}
.wse{word-spacing:-0.091815pt;}
.ws55{word-spacing:-0.053134pt;}
.wsb7{word-spacing:-0.031881pt;}
.ws2{word-spacing:0.000000pt;}
.wsc9{word-spacing:0.116895pt;}
.ws12{word-spacing:0.170028pt;}
.ws44{word-spacing:0.329430pt;}
.ws72{word-spacing:0.382564pt;}
.wsb9{word-spacing:0.488832pt;}
.ws9d{word-spacing:0.541965pt;}
.ws20{word-spacing:0.595099pt;}
.ws64{word-spacing:0.648233pt;}
.ws70{word-spacing:0.701367pt;}
.ws83{word-spacing:0.807635pt;}
.ws79{word-spacing:0.860769pt;}
.ws4a{word-spacing:1.073304pt;}
.ws5a{word-spacing:1.126438pt;}
.ws80{word-spacing:1.179572pt;}
.ws73{word-spacing:1.285840pt;}
.ws47{word-spacing:1.338973pt;}
.ws3b{word-spacing:1.498375pt;}
.ws40{word-spacing:1.551509pt;}
.wsaf{word-spacing:1.558219pt;}
.ws61{word-spacing:1.604643pt;}
.ws7b{word-spacing:1.657777pt;}
.wsd{word-spacing:1.764044pt;}
.ws68{word-spacing:1.817178pt;}
.ws7f{word-spacing:2.029714pt;}
.ws5f{word-spacing:2.082848pt;}
.ws5c{word-spacing:2.135981pt;}
.ws5b{word-spacing:2.264688pt;}
.wsa2{word-spacing:2.348517pt;}
.wsab{word-spacing:2.454785pt;}
.ws45{word-spacing:2.507919pt;}
.wsc2{word-spacing:2.561052pt;}
.ws10{word-spacing:2.614186pt;}
.ws2a{word-spacing:2.667320pt;}
.wsc8{word-spacing:2.713410pt;}
.ws24{word-spacing:2.720454pt;}
.ws3c{word-spacing:2.773588pt;}
.ws69{word-spacing:2.879856pt;}
.ws6{word-spacing:2.932989pt;}
.wsa3{word-spacing:2.947459pt;}
.ws89{word-spacing:2.947943pt;}
.ws9{word-spacing:2.986123pt;}
.ws1f{word-spacing:3.039257pt;}
.ws22{word-spacing:3.092391pt;}
.ws23{word-spacing:3.145525pt;}
.ws3f{word-spacing:3.304927pt;}
.ws14{word-spacing:3.358060pt;}
.ws18{word-spacing:3.411194pt;}
.wsb2{word-spacing:3.464328pt;}
.ws85{word-spacing:3.517462pt;}
.ws4b{word-spacing:3.570596pt;}
.ws6f{word-spacing:3.623730pt;}
.wsc3{word-spacing:3.729997pt;}
.ws3d{word-spacing:3.783131pt;}
.ws74{word-spacing:3.836265pt;}
.ws7a{word-spacing:3.942533pt;}
.ws25{word-spacing:3.985067pt;}
.ws78{word-spacing:4.099459pt;}
.ws41{word-spacing:4.101935pt;}
.ws19{word-spacing:4.155068pt;}
.ws21{word-spacing:4.208202pt;}
.wsa8{word-spacing:4.261336pt;}
.wsca{word-spacing:4.357110pt;}
.wsbb{word-spacing:4.357535pt;}
.wsb3{word-spacing:4.359404pt;}
.wsbd{word-spacing:4.360125pt;}
.wsb6{word-spacing:4.360818pt;}
.wsac{word-spacing:4.361057pt;}
.wsb4{word-spacing:4.361321pt;}
.wsa9{word-spacing:4.361538pt;}
.ws95{word-spacing:4.362443pt;}
.wsba{word-spacing:4.362447pt;}
.ws92{word-spacing:4.363138pt;}
.wsc5{word-spacing:4.363190pt;}
.wsc4{word-spacing:4.363402pt;}
.wsbc{word-spacing:4.364073pt;}
.wsc7{word-spacing:4.364576pt;}
.ws90{word-spacing:4.364581pt;}
.ws91{word-spacing:4.364738pt;}
.ws94{word-spacing:4.365194pt;}
.wsaa{word-spacing:4.365271pt;}
.wsbe{word-spacing:4.365458pt;}
.wsa4{word-spacing:4.365969pt;}
.wsb5{word-spacing:4.366151pt;}
.ws93{word-spacing:4.366390pt;}
.wsae{word-spacing:4.366560pt;}
.ws8a{word-spacing:4.367604pt;}
.ws99{word-spacing:4.368160pt;}
.ws97{word-spacing:4.368533pt;}
.wsa5{word-spacing:4.369702pt;}
.ws98{word-spacing:4.369760pt;}
.wsad{word-spacing:4.371360pt;}
.ws9b{word-spacing:4.371893pt;}
.ws9a{word-spacing:4.373493pt;}
.ws16{word-spacing:4.420738pt;}
.ws28{word-spacing:4.527005pt;}
.ws62{word-spacing:4.580139pt;}
.ws49{word-spacing:4.633273pt;}
.ws26{word-spacing:4.739541pt;}
.ws1{word-spacing:4.782067pt;}
.ws27{word-spacing:4.792675pt;}
.ws51{word-spacing:4.898943pt;}
.ws17{word-spacing:4.952076pt;}
.ws76{word-spacing:5.058344pt;}
.ws29{word-spacing:5.111478pt;}
.ws46{word-spacing:5.217746pt;}
.ws86{word-spacing:5.270880pt;}
.ws75{word-spacing:5.430281pt;}
.ws11{word-spacing:5.642817pt;}
.ws7e{word-spacing:5.749084pt;}
.ws2f{word-spacing:5.802218pt;}
.ws7c{word-spacing:5.961620pt;}
.ws65{word-spacing:6.121021pt;}
.ws31{word-spacing:6.280423pt;}
.ws67{word-spacing:6.333557pt;}
.ws33{word-spacing:6.386691pt;}
.ws39{word-spacing:6.492959pt;}
.ws87{word-spacing:6.599226pt;}
.ws3a{word-spacing:6.652360pt;}
.ws2c{word-spacing:6.758628pt;}
.ws4f{word-spacing:6.864896pt;}
.ws3e{word-spacing:7.130565pt;}
.ws8c{word-spacing:7.148438pt;}
.ws35{word-spacing:7.236833pt;}
.ws4c{word-spacing:7.343100pt;}
.ws43{word-spacing:7.396234pt;}
.ws6a{word-spacing:7.449368pt;}
.ws7d{word-spacing:7.715037pt;}
.ws5e{word-spacing:7.768171pt;}
.ws34{word-spacing:7.821305pt;}
.ws48{word-spacing:7.980707pt;}
.ws66{word-spacing:8.033841pt;}
.ws36{word-spacing:8.352644pt;}
.ws6c{word-spacing:8.618313pt;}
.ws42{word-spacing:8.671447pt;}
.ws56{word-spacing:8.767088pt;}
.ws77{word-spacing:8.777715pt;}
.ws53{word-spacing:8.777851pt;}
.ws52{word-spacing:8.820222pt;}
.ws82{word-spacing:8.830849pt;}
.wsbf{word-spacing:8.883983pt;}
.ws38{word-spacing:8.937116pt;}
.ws5d{word-spacing:9.043384pt;}
.ws60{word-spacing:9.096518pt;}
.wsb0{word-spacing:9.149652pt;}
.ws81{word-spacing:9.255920pt;}
.ws37{word-spacing:9.309053pt;}
.ws6e{word-spacing:9.468455pt;}
.wsb8{word-spacing:9.627857pt;}
.ws15{word-spacing:9.893526pt;}
.ws1e{word-spacing:9.946660pt;}
.wsc0{word-spacing:10.371731pt;}
.ws1c{word-spacing:10.424865pt;}
.ws4e{word-spacing:10.477999pt;}
.ws1a{word-spacing:10.796802pt;}
.ws1b{word-spacing:10.849936pt;}
.ws4d{word-spacing:10.956203pt;}
.ws6d{word-spacing:11.381274pt;}
.ws63{word-spacing:11.593810pt;}
.wsa7{word-spacing:11.806345pt;}
.wsc6{word-spacing:12.964696pt;}
.ws84{word-spacing:13.134692pt;}
.ws96{word-spacing:15.005042pt;}
.ws7{word-spacing:16.216456pt;}
.ws8{word-spacing:16.269590pt;}
.ws88{word-spacing:17.658731pt;}
.wsb1{word-spacing:19.495148pt;}
.ws9f{word-spacing:19.500481pt;}
.wsa1{word-spacing:19.931131pt;}
.ws5{word-spacing:20.297137pt;}
.ws2d{word-spacing:20.307764pt;}
.ws8e{word-spacing:20.350271pt;}
.wsc1{word-spacing:23.664464pt;}
.ws0{word-spacing:24.866747pt;}
.ws4{word-spacing:49.095693pt;}
.wsf{word-spacing:62.166867pt;}
.ws57{word-spacing:211.483416pt;}
._8{margin-left:-26.566933pt;}
._1b{margin-left:-9.548809pt;}
._2{margin-left:-7.421767pt;}
._1c{margin-left:-5.897859pt;}
._32{margin-left:-4.782048pt;}
._10{margin-left:-3.808627pt;}
._1{margin-left:-2.142366pt;}
._d{margin-left:-1.205068pt;}
._2b{width:1.309235pt;}
._0{width:2.218879pt;}
._1f{width:3.630114pt;}
._30{width:5.792199pt;}
._2e{width:12.839907pt;}
._1a{width:14.399278pt;}
._1d{width:16.146327pt;}
._13{width:17.746711pt;}
._33{width:19.124957pt;}
._25{width:20.137735pt;}
._15{width:21.531959pt;}
._2d{width:22.492637pt;}
._24{width:23.684961pt;}
._28{width:24.590345pt;}
._2c{width:25.593513pt;}
._23{width:27.323551pt;}
._31{width:28.549898pt;}
._22{width:29.808099pt;}
._19{width:32.305391pt;}
._26{width:33.474336pt;}
._27{width:34.554025pt;}
._7{width:36.449833pt;}
._17{width:37.423253pt;}
._2f{width:38.664444pt;}
._29{width:40.317969pt;}
._2a{width:41.816353pt;}
._a{width:43.357235pt;}
._f{width:45.335932pt;}
._9{width:46.774814pt;}
._1e{width:48.012856pt;}
._4{width:49.148827pt;}
._16{width:50.706720pt;}
._18{width:52.974465pt;}
._6{width:54.302812pt;}
._12{width:60.785143pt;}
._14{width:62.007222pt;}
._21{width:71.731200pt;}
._20{width:86.077200pt;}
._34{width:709.974726pt;}
._c{width:739.729692pt;}
._5{width:1046.271712pt;}
._e{width:1165.933447pt;}
._11{width:1276.753682pt;}
._b{width:1283.956509pt;}
._3{width:1385.920399pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:119.153333pt;}
.y2d3{bottom:148.554667pt;}
.y89{bottom:159.004000pt;}
.y130{bottom:162.754667pt;}
.y11b{bottom:162.756000pt;}
.y29d{bottom:162.760000pt;}
.y2b9{bottom:162.989333pt;}
.y160{bottom:166.374667pt;}
.ycd{bottom:166.973333pt;}
.ye9{bottom:167.044000pt;}
.y2a{bottom:172.489333pt;}
.y88{bottom:174.944000pt;}
.y17b{bottom:175.426667pt;}
.y11a{bottom:175.429333pt;}
.y29c{bottom:175.432000pt;}
.y12f{bottom:179.845333pt;}
.y23e{bottom:181.714667pt;}
.y15f{bottom:182.314667pt;}
.ycc{bottom:182.913333pt;}
.y1c8{bottom:183.526667pt;}
.y253{bottom:184.349333pt;}
.y198{bottom:185.060000pt;}
.y1ae{bottom:186.600000pt;}
.y1c1{bottom:187.030667pt;}
.y2b8{bottom:188.057333pt;}
.y17a{bottom:188.098667pt;}
.y29{bottom:188.430667pt;}
.y2d2{bottom:189.021333pt;}
.y20b{bottom:189.450667pt;}
.yab{bottom:189.864000pt;}
.y87{bottom:190.884000pt;}
.y188{bottom:192.518667pt;}
.ye8{bottom:193.610667pt;}
.y15e{bottom:198.254667pt;}
.y252{bottom:200.718667pt;}
.y216{bottom:200.772000pt;}
.y263{bottom:201.529333pt;}
.y28{bottom:204.370667pt;}
.y178{bottom:205.190667pt;}
.yaa{bottom:205.804000pt;}
.y23d{bottom:205.957333pt;}
.y12e{bottom:206.222667pt;}
.y86{bottom:206.824000pt;}
.y1c7{bottom:208.050667pt;}
.y119{bottom:209.410667pt;}
.ycb{bottom:209.481333pt;}
.y197{bottom:211.116000pt;}
.y2b7{bottom:213.125333pt;}
.y251{bottom:213.390667pt;}
.y240{bottom:214.038667pt;}
.y15d{bottom:214.194667pt;}
.y262{bottom:214.201333pt;}
.y2d1{bottom:215.054667pt;}
.y1c0{bottom:215.057333pt;}
.y200{bottom:216.252000pt;}
.y27f{bottom:217.496000pt;}
.y1ef{bottom:217.645333pt;}
.y319{bottom:217.776000pt;}
.y215{bottom:217.862667pt;}
.y1dc{bottom:218.968000pt;}
.y304{bottom:218.978667pt;}
.y2ee{bottom:219.240000pt;}
.y272{bottom:219.417333pt;}
.y20a{bottom:219.897333pt;}
.ye7{bottom:220.177333pt;}
.y27{bottom:220.310667pt;}
.ya9{bottom:221.744000pt;}
.y187{bottom:222.266667pt;}
.y85{bottom:222.764000pt;}
.yca{bottom:225.421333pt;}
.y337{bottom:225.550667pt;}
.y250{bottom:226.064000pt;}
.y15c{bottom:230.134667pt;}
.y23c{bottom:230.200000pt;}
.y1ff{bottom:232.192000pt;}
.y177{bottom:232.514667pt;}
.y1c6{bottom:232.573333pt;}
.y12d{bottom:232.601333pt;}
.y261{bottom:234.614667pt;}
.y118{bottom:235.977333pt;}
.ye6{bottom:236.118667pt;}
.y26{bottom:236.250667pt;}
.y102{bottom:236.306667pt;}
.y196{bottom:237.172000pt;}
.ya8{bottom:237.684000pt;}
.y2b6{bottom:238.194667pt;}
.y84{bottom:238.704000pt;}
.y2d0{bottom:241.086667pt;}
.yc9{bottom:241.361333pt;}
.y1ad{bottom:241.790667pt;}
.y27e{bottom:242.473333pt;}
.y1ee{bottom:242.772000pt;}
.y318{bottom:243.033333pt;}
.y1bf{bottom:243.084000pt;}
.y24f{bottom:243.154667pt;}
.y214{bottom:244.989333pt;}
.y1db{bottom:245.417333pt;}
.y303{bottom:245.440000pt;}
.y2ed{bottom:245.961333pt;}
.y15b{bottom:246.076000pt;}
.y271{bottom:246.316000pt;}
.y23f{bottom:246.361333pt;}
.y61{bottom:247.582667pt;}
.y1fe{bottom:248.132000pt;}
.y209{bottom:250.345333pt;}
.y186{bottom:252.016000pt;}
.y336{bottom:252.117333pt;}
.y25{bottom:252.190667pt;}
.y101{bottom:252.246667pt;}
.ya7{bottom:253.625333pt;}
.y23b{bottom:254.442667pt;}
.y83{bottom:254.645333pt;}
.y1c5{bottom:257.097333pt;}
.yc8{bottom:257.301333pt;}
.y12c{bottom:258.978667pt;}
.y176{bottom:259.837333pt;}
.ye5{bottom:260.637333pt;}
.y15a{bottom:262.016000pt;}
.y117{bottom:262.545333pt;}
.y29b{bottom:262.577333pt;}
.y195{bottom:263.228000pt;}
.y2b5{bottom:263.262667pt;}
.y60{bottom:263.522667pt;}
.y33e{bottom:263.734667pt;}
.y1fd{bottom:264.073333pt;}
.y2cf{bottom:267.120000pt;}
.y27d{bottom:267.450667pt;}
.y1ed{bottom:267.898667pt;}
.y24{bottom:268.130667pt;}
.y317{bottom:268.292000pt;}
.y1ac{bottom:269.386667pt;}
.y24e{bottom:269.912000pt;}
.y82{bottom:270.585333pt;}
.y1be{bottom:271.110667pt;}
.y1da{bottom:271.866667pt;}
.y302{bottom:271.900000pt;}
.y213{bottom:272.116000pt;}
.y2ec{bottom:272.684000pt;}
.y270{bottom:273.214667pt;}
.y1b7{bottom:275.352000pt;}
.ya6{bottom:277.534667pt;}
.y159{bottom:277.956000pt;}
.y23a{bottom:278.685333pt;}
.y100{bottom:278.814667pt;}
.y1fc{bottom:280.013333pt;}
.y208{bottom:280.792000pt;}
.y1c4{bottom:281.620000pt;}
.y185{bottom:281.764000pt;}
.yc7{bottom:283.868000pt;}
.y23{bottom:284.072000pt;}
.y12b{bottom:285.356000pt;}
.y81{bottom:286.525333pt;}
.y175{bottom:287.161333pt;}
.y2b4{bottom:288.332000pt;}
.y116{bottom:289.112000pt;}
.y29a{bottom:289.144000pt;}
.y194{bottom:289.285333pt;}
.y27c{bottom:292.428000pt;}
.y1ec{bottom:293.026667pt;}
.y2ce{bottom:293.152000pt;}
.y316{bottom:293.549333pt;}
.y158{bottom:293.896000pt;}
.ye4{bottom:295.310667pt;}
.y5f{bottom:295.402667pt;}
.y1fb{bottom:295.953333pt;}
.y24d{bottom:296.670667pt;}
.y1d9{bottom:298.316000pt;}
.y301{bottom:298.361333pt;}
.y1bd{bottom:299.137333pt;}
.y212{bottom:299.242667pt;}
.y2eb{bottom:299.405333pt;}
.yc6{bottom:299.809333pt;}
.y22{bottom:300.012000pt;}
.y26f{bottom:300.113333pt;}
.y80{bottom:302.465333pt;}
.y335{bottom:305.252000pt;}
.yff{bottom:305.381333pt;}
.y1c3{bottom:306.144000pt;}
.ya5{bottom:309.416000pt;}
.y1ab{bottom:309.845333pt;}
.y5e{bottom:311.342667pt;}
.y184{bottom:311.513333pt;}
.y12a{bottom:311.733333pt;}
.y1fa{bottom:311.893333pt;}
.y2b3{bottom:313.400000pt;}
.y174{bottom:314.485333pt;}
.y193{bottom:315.341333pt;}
.y115{bottom:315.678667pt;}
.y299{bottom:315.710667pt;}
.yc5{bottom:315.749333pt;}
.y21{bottom:315.952000pt;}
.y27b{bottom:317.405333pt;}
.y1eb{bottom:318.153333pt;}
.y7f{bottom:318.405333pt;}
.y157{bottom:318.414667pt;}
.y315{bottom:318.808000pt;}
.y239{bottom:319.144000pt;}
.y2cd{bottom:319.185333pt;}
.y207{bottom:321.252000pt;}
.y24c{bottom:323.428000pt;}
.y1d8{bottom:324.765333pt;}
.y300{bottom:324.821333pt;}
.ya4{bottom:325.356000pt;}
.y2ea{bottom:326.126667pt;}
.y211{bottom:326.369333pt;}
.y26e{bottom:327.012000pt;}
.y1bc{bottom:327.162667pt;}
.y5d{bottom:327.284000pt;}
.y1f9{bottom:327.833333pt;}
.y1c2{bottom:330.666667pt;}
.yc4{bottom:331.689333pt;}
.y334{bottom:331.818667pt;}
.y20{bottom:331.892000pt;}
.yfe{bottom:331.948000pt;}
.y7e{bottom:334.346667pt;}
.y129{bottom:338.110667pt;}
.y2b2{bottom:338.468000pt;}
.ye3{bottom:339.238667pt;}
.ya3{bottom:341.296000pt;}
.y241{bottom:341.356000pt;}
.y192{bottom:341.397333pt;}
.y173{bottom:341.809333pt;}
.y114{bottom:342.245333pt;}
.y298{bottom:342.278667pt;}
.y27a{bottom:342.382667pt;}
.y5c{bottom:343.224000pt;}
.y1ea{bottom:343.280000pt;}
.y1f8{bottom:343.773333pt;}
.y314{bottom:344.065333pt;}
.y1aa{bottom:344.373333pt;}
.y2cc{bottom:345.217333pt;}
.yc3{bottom:347.629333pt;}
.y1f{bottom:347.832000pt;}
.y24b{bottom:350.185333pt;}
.y7d{bottom:350.286667pt;}
.y1d7{bottom:351.214667pt;}
.y2ff{bottom:351.282667pt;}
.y183{bottom:351.973333pt;}
.y2e9{bottom:352.849333pt;}
.y144{bottom:352.942667pt;}
.y210{bottom:353.496000pt;}
.y238{bottom:353.672000pt;}
.y26d{bottom:353.910667pt;}
.ye2{bottom:355.178667pt;}
.y1bb{bottom:355.189333pt;}
.ya2{bottom:357.236000pt;}
.y206{bottom:358.362667pt;}
.y333{bottom:358.385333pt;}
.yfd{bottom:358.514667pt;}
.y5b{bottom:359.164000pt;}
.y1a9{bottom:360.313333pt;}
.y2b1{bottom:363.537333pt;}
.y1e{bottom:363.772000pt;}
.y128{bottom:364.489333pt;}
.y7c{bottom:366.226667pt;}
.y279{bottom:367.360000pt;}
.y191{bottom:367.453333pt;}
.y1f7{bottom:368.293333pt;}
.y1e9{bottom:368.406667pt;}
.y113{bottom:368.813333pt;}
.y297{bottom:368.845333pt;}
.y172{bottom:369.132000pt;}
.y179{bottom:369.133333pt;}
.y313{bottom:369.324000pt;}
.y237{bottom:369.612000pt;}
.ye1{bottom:371.118667pt;}
.y2cb{bottom:371.250667pt;}
.ya1{bottom:373.176000pt;}
.yc2{bottom:374.196000pt;}
.y205{bottom:374.302667pt;}
.y5a{bottom:375.104000pt;}
.y1a8{bottom:376.253333pt;}
.y24a{bottom:376.944000pt;}
.y1d6{bottom:377.664000pt;}
.y2fe{bottom:377.742667pt;}
.y143{bottom:379.112000pt;}
.y2e8{bottom:379.570667pt;}
.y1d{bottom:379.713333pt;}
.y156{bottom:380.489333pt;}
.y20f{bottom:380.622667pt;}
.y26c{bottom:380.809333pt;}
.y7b{bottom:382.166667pt;}
.yfc{bottom:383.034667pt;}
.y236{bottom:385.552000pt;}
.y2b0{bottom:388.605333pt;}
.yc1{bottom:390.137333pt;}
.y127{bottom:390.866667pt;}
.y59{bottom:391.044000pt;}
.y1a7{bottom:392.194667pt;}
.y278{bottom:392.337333pt;}
.y190{bottom:393.509333pt;}
.y1e8{bottom:393.534667pt;}
.y312{bottom:394.581333pt;}
.y112{bottom:395.380000pt;}
.y296{bottom:395.412000pt;}
.y1ba{bottom:395.649333pt;}
.y1c{bottom:395.653333pt;}
.y2ca{bottom:397.282667pt;}
.ye0{bottom:397.686667pt;}
.y7a{bottom:398.106667pt;}
.y332{bottom:398.845333pt;}
.y235{bottom:401.492000pt;}
.y182{bottom:402.441333pt;}
.y2{bottom:402.569333pt;}
.y1f6{bottom:402.821333pt;}
.y249{bottom:403.701333pt;}
.ya0{bottom:404.057333pt;}
.y1d5{bottom:404.113333pt;}
.y2fd{bottom:404.204000pt;}
.y142{bottom:405.280000pt;}
.yc0{bottom:406.077333pt;}
.y2e7{bottom:406.292000pt;}
.y58{bottom:406.985333pt;}
.y26b{bottom:407.708000pt;}
.y20e{bottom:407.749333pt;}
.y155{bottom:408.034667pt;}
.y1a6{bottom:408.134667pt;}
.y171{bottom:409.592000pt;}
.y1b{bottom:411.593333pt;}
.y2e3{bottom:412.240000pt;}
.ydf{bottom:413.626667pt;}
.y2af{bottom:413.674667pt;}
.y79{bottom:414.046667pt;}
.y126{bottom:417.244000pt;}
.y277{bottom:417.314667pt;}
.y234{bottom:417.433333pt;}
.y1e7{bottom:418.661333pt;}
.y18f{bottom:419.565333pt;}
.y311{bottom:419.840000pt;}
.yfb{bottom:420.218667pt;}
.y111{bottom:421.946667pt;}
.y295{bottom:421.980000pt;}
.ybf{bottom:422.017333pt;}
.y57{bottom:422.925333pt;}
.y2c9{bottom:423.316000pt;}
.y1a5{bottom:424.074667pt;}
.y1a{bottom:427.533333pt;}
.y181{bottom:429.008000pt;}
.y1f5{bottom:429.388000pt;}
.y78{bottom:429.988000pt;}
.y248{bottom:430.458667pt;}
.y1d4{bottom:430.564000pt;}
.y2fc{bottom:430.664000pt;}
.y141{bottom:431.449333pt;}
.y233{bottom:433.373333pt;}
.y26a{bottom:434.606667pt;}
.y154{bottom:435.580000pt;}
.yfa{bottom:436.158667pt;}
.ybe{bottom:437.957333pt;}
.y2ae{bottom:438.742667pt;}
.y2e2{bottom:438.806667pt;}
.y56{bottom:438.865333pt;}
.y1a4{bottom:440.014667pt;}
.yde{bottom:440.193333pt;}
.y276{bottom:442.292000pt;}
.y19{bottom:443.473333pt;}
.y125{bottom:443.621333pt;}
.y1e6{bottom:443.788000pt;}
.y170{bottom:444.120000pt;}
.y310{bottom:445.097333pt;}
.y18e{bottom:445.622667pt;}
.y77{bottom:445.928000pt;}
.y1b9{bottom:446.117333pt;}
.y2e6{bottom:446.752000pt;}
.y9f{bottom:447.985333pt;}
.y20d{bottom:448.209333pt;}
.y110{bottom:448.514667pt;}
.y294{bottom:448.546667pt;}
.y232{bottom:449.313333pt;}
.y2c8{bottom:449.349333pt;}
.yf9{bottom:452.098667pt;}
.ybd{bottom:453.897333pt;}
.y55{bottom:454.805333pt;}
.y180{bottom:455.574667pt;}
.y1a3{bottom:455.954667pt;}
.ydd{bottom:456.133333pt;}
.y1d3{bottom:457.013333pt;}
.y2fb{bottom:457.125333pt;}
.y247{bottom:457.217333pt;}
.y140{bottom:457.617333pt;}
.y18{bottom:459.413333pt;}
.y16f{bottom:460.060000pt;}
.y269{bottom:461.506667pt;}
.y76{bottom:461.868000pt;}
.y1b8{bottom:462.057333pt;}
.y28e{bottom:462.726667pt;}
.y153{bottom:463.126667pt;}
.y2ad{bottom:463.810667pt;}
.y9e{bottom:463.925333pt;}
.y231{bottom:465.253333pt;}
.y2e1{bottom:465.373333pt;}
.y275{bottom:467.270667pt;}
.yf8{bottom:468.040000pt;}
.y260{bottom:468.789333pt;}
.y1e5{bottom:468.914667pt;}
.y124{bottom:469.998667pt;}
.y30f{bottom:470.354667pt;}
.y54{bottom:470.745333pt;}
.y18d{bottom:471.678667pt;}
.y1a2{bottom:471.894667pt;}
.y10f{bottom:475.081333pt;}
.y293{bottom:475.113333pt;}
.y17{bottom:475.354667pt;}
.y2c7{bottom:475.381333pt;}
.y28d{bottom:478.666667pt;}
.y9d{bottom:479.865333pt;}
.ybc{bottom:480.465333pt;}
.y230{bottom:481.193333pt;}
.y17f{bottom:482.141333pt;}
.y1f4{bottom:482.522667pt;}
.ydc{bottom:482.701333pt;}
.y1d2{bottom:483.462667pt;}
.y2fa{bottom:483.585333pt;}
.y13f{bottom:483.785333pt;}
.y16e{bottom:484.578667pt;}
.y20c{bottom:486.057333pt;}
.y75{bottom:486.386667pt;}
.y53{bottom:486.685333pt;}
.y268{bottom:488.405333pt;}
.y2ac{bottom:488.880000pt;}
.y152{bottom:490.672000pt;}
.y16{bottom:491.294667pt;}
.y2e0{bottom:491.940000pt;}
.y274{bottom:492.248000pt;}
.yf7{bottom:492.558667pt;}
.y43{bottom:493.748000pt;}
.y1e4{bottom:494.042667pt;}
.y30e{bottom:495.613333pt;}
.y9c{bottom:495.805333pt;}
.y123{bottom:496.377333pt;}
.ybb{bottom:496.405333pt;}
.y1a1{bottom:496.414667pt;}
.y331{bottom:497.133333pt;}
.y2e5{bottom:497.220000pt;}
.y246{bottom:497.676000pt;}
.y18c{bottom:497.734667pt;}
.ydb{bottom:498.641333pt;}
.y2c6{bottom:501.414667pt;}
.y10e{bottom:501.648000pt;}
.y292{bottom:501.680000pt;}
.y52{bottom:502.626667pt;}
.y28c{bottom:503.185333pt;}
.y22f{bottom:505.713333pt;}
.y15{bottom:507.234667pt;}
.y17e{bottom:508.709333pt;}
.y1f3{bottom:509.089333pt;}
.y42{bottom:509.688000pt;}
.y1d1{bottom:509.912000pt;}
.y13e{bottom:509.954667pt;}
.y2f9{bottom:510.046667pt;}
.y9b{bottom:511.745333pt;}
.yba{bottom:512.345333pt;}
.y330{bottom:513.074667pt;}
.y2e4{bottom:513.160000pt;}
.y2ab{bottom:513.948000pt;}
.yda{bottom:514.581333pt;}
.y267{bottom:515.304000pt;}
.y273{bottom:517.225333pt;}
.y151{bottom:518.218667pt;}
.y51{bottom:518.566667pt;}
.y16d{bottom:519.106667pt;}
.y1e3{bottom:519.169333pt;}
.y30d{bottom:520.870667pt;}
.y2df{bottom:521.164000pt;}
.y122{bottom:522.754667pt;}
.y74{bottom:523.045333pt;}
.y14{bottom:523.174667pt;}
.y18b{bottom:523.790667pt;}
.y41{bottom:525.629333pt;}
.y2c5{bottom:527.446667pt;}
.y9a{bottom:527.685333pt;}
.yb9{bottom:528.285333pt;}
.y32f{bottom:529.014667pt;}
.yf6{bottom:529.742667pt;}
.yd9{bottom:530.521333pt;}
.y1a0{bottom:530.942667pt;}
.y50{bottom:534.506667pt;}
.y1f2{bottom:535.656000pt;}
.y13d{bottom:536.122667pt;}
.y1d0{bottom:536.361333pt;}
.y2f8{bottom:536.506667pt;}
.y2de{bottom:537.104000pt;}
.y28b{bottom:537.713333pt;}
.y73{bottom:538.986667pt;}
.y2aa{bottom:539.017333pt;}
.y13{bottom:539.114667pt;}
.y223{bottom:540.241333pt;}
.y40{bottom:541.569333pt;}
.y10d{bottom:542.108000pt;}
.y291{bottom:542.140000pt;}
.y266{bottom:542.202667pt;}
.y99{bottom:543.626667pt;}
.y1e2{bottom:544.296000pt;}
.y32e{bottom:544.954667pt;}
.y16c{bottom:545.674667pt;}
.yf5{bottom:545.684000pt;}
.y150{bottom:545.764000pt;}
.y30c{bottom:546.129333pt;}
.yd8{bottom:546.461333pt;}
.y245{bottom:548.144000pt;}
.y121{bottom:549.132000pt;}
.y18a{bottom:549.846667pt;}
.y4f{bottom:550.446667pt;}
.y17d{bottom:551.142667pt;}
.y2c4{bottom:553.480000pt;}
.yb8{bottom:554.852000pt;}
.y72{bottom:554.926667pt;}
.y12{bottom:555.056000pt;}
.y3f{bottom:557.509333pt;}
.y98{bottom:559.566667pt;}
.y32d{bottom:560.894667pt;}
.yf4{bottom:561.624000pt;}
.y1f1{bottom:562.222667pt;}
.y13c{bottom:562.292000pt;}
.yd7{bottom:562.401333pt;}
.y1cf{bottom:562.810667pt;}
.y2f7{bottom:562.968000pt;}
.y244{bottom:564.084000pt;}
.y2a9{bottom:564.085333pt;}
.y28a{bottom:564.280000pt;}
.y222{bottom:566.092000pt;}
.y4e{bottom:566.386667pt;}
.y17c{bottom:567.082667pt;}
.y22e{bottom:568.246667pt;}
.y1e1{bottom:569.424000pt;}
.yb7{bottom:570.793333pt;}
.y71{bottom:570.866667pt;}
.y30b{bottom:571.386667pt;}
.y16b{bottom:572.241333pt;}
.y14f{bottom:573.309333pt;}
.y3e{bottom:573.449333pt;}
.y97{bottom:575.506667pt;}
.y120{bottom:575.509333pt;}
.yd6{bottom:578.342667pt;}
.y10c{bottom:579.218667pt;}
.y290{bottom:579.250667pt;}
.y2c3{bottom:579.512000pt;}
.y4d{bottom:582.326667pt;}
.y265{bottom:582.661333pt;}
.y19f{bottom:584.076000pt;}
.y11{bottom:584.278667pt;}
.y32c{bottom:585.413333pt;}
.yf3{bottom:586.142667pt;}
.yb6{bottom:586.733333pt;}
.y70{bottom:586.806667pt;}
.y13b{bottom:588.460000pt;}
.y2a8{bottom:589.154667pt;}
.y1ce{bottom:589.260000pt;}
.y3d{bottom:589.389333pt;}
.y2f6{bottom:589.428000pt;}
.y289{bottom:590.848000pt;}
.y96{bottom:591.446667pt;}
.y221{bottom:591.944000pt;}
.y189{bottom:592.280000pt;}
.yd5{bottom:594.282667pt;}
.y1e0{bottom:594.550667pt;}
.y10b{bottom:595.158667pt;}
.y28f{bottom:595.190667pt;}
.y2dd{bottom:596.152000pt;}
.y22d{bottom:596.253333pt;}
.y30a{bottom:596.645333pt;}
.y4c{bottom:598.268000pt;}
.y16a{bottom:598.808000pt;}
.y10{bottom:600.220000pt;}
.y14e{bottom:600.856000pt;}
.y11f{bottom:601.886667pt;}
.yb5{bottom:602.673333pt;}
.y1f0{bottom:602.682667pt;}
.y3c{bottom:605.329333pt;}
.y2c2{bottom:605.545333pt;}
.y95{bottom:607.386667pt;}
.y1{bottom:609.717333pt;}
.yd4{bottom:610.222667pt;}
.y19e{bottom:610.644000pt;}
.y6f{bottom:612.153333pt;}
.y4b{bottom:614.208000pt;}
.y2a7{bottom:614.222667pt;}
.y13a{bottom:614.628000pt;}
.y1cd{bottom:615.709333pt;}
.y2f5{bottom:615.889333pt;}
.yf{bottom:616.160000pt;}
.y1b6{bottom:617.414667pt;}
.y220{bottom:617.796000pt;}
.yb4{bottom:618.613333pt;}
.y1df{bottom:619.677333pt;}
.y264{bottom:619.772000pt;}
.y323{bottom:619.941333pt;}
.y3b{bottom:621.270667pt;}
.y309{bottom:621.902667pt;}
.y2dc{bottom:622.718667pt;}
.y94{bottom:623.326667pt;}
.yf2{bottom:623.328000pt;}
.y22c{bottom:624.258667pt;}
.yd3{bottom:626.162667pt;}
.y169{bottom:628.032000pt;}
.y6e{bottom:628.093333pt;}
.y14d{bottom:628.401333pt;}
.y4a{bottom:630.148000pt;}
.y288{bottom:631.306667pt;}
.y2c1{bottom:631.577333pt;}
.ye{bottom:632.100000pt;}
.y1b5{bottom:633.354667pt;}
.y11e{bottom:633.768000pt;}
.y3a{bottom:637.210667pt;}
.y93{bottom:639.268000pt;}
.y2a6{bottom:639.290667pt;}
.y139{bottom:640.797333pt;}
.yd2{bottom:642.102667pt;}
.y1cc{bottom:642.160000pt;}
.y2f4{bottom:642.349333pt;}
.y21f{bottom:643.648000pt;}
.y168{bottom:643.972000pt;}
.y6d{bottom:644.033333pt;}
.y1de{bottom:644.804000pt;}
.yb3{bottom:645.180000pt;}
.y322{bottom:645.578667pt;}
.y49{bottom:646.088000pt;}
.y308{bottom:647.161333pt;}
.yd{bottom:648.040000pt;}
.y32b{bottom:648.428000pt;}
.y2db{bottom:649.285333pt;}
.yf1{bottom:649.894667pt;}
.y33d{bottom:651.942667pt;}
.y22b{bottom:652.265333pt;}
.y39{bottom:653.150667pt;}
.y92{bottom:655.208000pt;}
.y14c{bottom:655.946667pt;}
.y2c0{bottom:657.610667pt;}
.y1b4{bottom:657.873333pt;}
.yd1{bottom:658.044000pt;}
.y11d{bottom:658.286667pt;}
.y6c{bottom:659.973333pt;}
.yb2{bottom:661.121333pt;}
.y48{bottom:662.028000pt;}
.y19d{bottom:663.777333pt;}
.yc{bottom:663.980000pt;}
.y2a5{bottom:664.360000pt;}
.yf0{bottom:665.834667pt;}
.y138{bottom:666.965333pt;}
.y33c{bottom:667.882667pt;}
.y167{bottom:668.492000pt;}
.y1cb{bottom:668.609333pt;}
.y2f3{bottom:668.810667pt;}
.y38{bottom:669.090667pt;}
.y21e{bottom:669.500000pt;}
.y1dd{bottom:669.932000pt;}
.y91{bottom:671.148000pt;}
.y321{bottom:671.216000pt;}
.y307{bottom:672.418667pt;}
.yd0{bottom:673.984000pt;}
.y6b{bottom:675.914667pt;}
.y32a{bottom:676.913333pt;}
.yb1{bottom:677.061333pt;}
.y47{bottom:677.968000pt;}
.y22a{bottom:680.270667pt;}
.y204{bottom:681.166667pt;}
.y287{bottom:681.774667pt;}
.y14b{bottom:683.493333pt;}
.y2bf{bottom:683.642667pt;}
.y37{bottom:685.030667pt;}
.y90{bottom:687.088000pt;}
.y2a4{bottom:689.428000pt;}
.y2da{bottom:689.745333pt;}
.ycf{bottom:689.924000pt;}
.y19c{bottom:690.344000pt;}
.y6a{bottom:691.854667pt;}
.yef{bottom:692.401333pt;}
.yb0{bottom:693.001333pt;}
.y137{bottom:693.134667pt;}
.yb{bottom:693.204000pt;}
.y46{bottom:693.909333pt;}
.y1ca{bottom:695.058667pt;}
.y2f2{bottom:695.270667pt;}
.y21d{bottom:695.352000pt;}
.y11c{bottom:695.397333pt;}
.y320{bottom:696.853333pt;}
.y203{bottom:697.106667pt;}
.y306{bottom:697.676000pt;}
.y286{bottom:697.714667pt;}
.y25a{bottom:699.642667pt;}
.y36{bottom:700.970667pt;}
.y166{bottom:703.018667pt;}
.y8f{bottom:703.028000pt;}
.y329{bottom:705.398667pt;}
.y69{bottom:707.794667pt;}
.y229{bottom:708.277333pt;}
.yee{bottom:708.341333pt;}
.yaf{bottom:708.941333pt;}
.y2be{bottom:709.676000pt;}
.y14a{bottom:711.038667pt;}
.y285{bottom:713.656000pt;}
.y2a3{bottom:714.497333pt;}
.y35{bottom:716.912000pt;}
.y8e{bottom:718.969333pt;}
.y136{bottom:719.302667pt;}
.yce{bottom:720.804000pt;}
.y21c{bottom:721.202667pt;}
.y202{bottom:721.625333pt;}
.y2f1{bottom:721.732000pt;}
.ya{bottom:722.428000pt;}
.y31f{bottom:722.490667pt;}
.y305{bottom:722.934667pt;}
.y2d9{bottom:724.273333pt;}
.y45{bottom:724.789333pt;}
.y259{bottom:724.881333pt;}
.y33b{bottom:726.929333pt;}
.y25f{bottom:729.088000pt;}
.y165{bottom:729.586667pt;}
.y284{bottom:729.596000pt;}
.y34{bottom:732.852000pt;}
.y328{bottom:733.885333pt;}
.y68{bottom:733.966667pt;}
.y8d{bottom:734.909333pt;}
.yae{bottom:735.508000pt;}
.y1c9{bottom:735.517333pt;}
.y2bd{bottom:735.708000pt;}
.y107{bottom:735.712000pt;}
.y228{bottom:736.284000pt;}
.y149{bottom:738.585333pt;}
.y2a2{bottom:739.565333pt;}
.y2d8{bottom:740.213333pt;}
.y19b{bottom:743.478667pt;}
.y135{bottom:745.470667pt;}
.y1b3{bottom:745.536000pt;}
.y21b{bottom:747.054667pt;}
.y31e{bottom:748.128000pt;}
.y2f0{bottom:748.192000pt;}
.y33{bottom:748.792000pt;}
.y67{bottom:749.906667pt;}
.y258{bottom:750.120000pt;}
.y8c{bottom:750.849333pt;}
.yad{bottom:751.449333pt;}
.y9{bottom:751.652000pt;}
.y33a{bottom:753.496000pt;}
.y164{bottom:756.153333pt;}
.y25e{bottom:758.533333pt;}
.yed{bottom:761.476000pt;}
.y2bc{bottom:761.741333pt;}
.y106{bottom:762.278667pt;}
.y327{bottom:762.370667pt;}
.y227{bottom:764.289333pt;}
.y2a1{bottom:764.633333pt;}
.y32{bottom:764.732000pt;}
.y66{bottom:765.846667pt;}
.y148{bottom:766.130667pt;}
.y8b{bottom:766.789333pt;}
.yac{bottom:767.389333pt;}
.y8{bottom:767.592000pt;}
.y19a{bottom:770.045333pt;}
.y134{bottom:771.640000pt;}
.y2d7{bottom:772.093333pt;}
.y1b2{bottom:772.102667pt;}
.y21a{bottom:772.906667pt;}
.y31d{bottom:773.765333pt;}
.y257{bottom:775.358667pt;}
.y243{bottom:776.808000pt;}
.y283{bottom:777.416000pt;}
.y339{bottom:780.064000pt;}
.y31{bottom:780.672000pt;}
.y65{bottom:781.786667pt;}
.y163{bottom:782.720000pt;}
.y7{bottom:783.532000pt;}
.yec{bottom:785.994667pt;}
.y2bb{bottom:787.774667pt;}
.y25d{bottom:787.978667pt;}
.y2d6{bottom:788.033333pt;}
.y2ef{bottom:788.652000pt;}
.y105{bottom:788.845333pt;}
.y2a0{bottom:789.702667pt;}
.y326{bottom:790.856000pt;}
.y8a{bottom:791.308000pt;}
.y226{bottom:792.296000pt;}
.y242{bottom:792.748000pt;}
.y282{bottom:793.356000pt;}
.y147{bottom:793.676000pt;}
.y30{bottom:796.612000pt;}
.y199{bottom:796.613333pt;}
.y64{bottom:797.726667pt;}
.y133{bottom:797.808000pt;}
.y219{bottom:798.758667pt;}
.y31c{bottom:799.402667pt;}
.y6{bottom:799.472000pt;}
.y256{bottom:800.597333pt;}
.y1b1{bottom:801.326667pt;}
.y2d5{bottom:803.973333pt;}
.y338{bottom:806.630667pt;}
.y10a{bottom:809.209333pt;}
.y162{bottom:809.288000pt;}
.y2f{bottom:812.553333pt;}
.y63{bottom:813.668000pt;}
.y2ba{bottom:813.806667pt;}
.y29f{bottom:814.770667pt;}
.y104{bottom:815.412000pt;}
.y1b0{bottom:817.266667pt;}
.y25c{bottom:817.424000pt;}
.y281{bottom:817.876000pt;}
.y325{bottom:819.342667pt;}
.y2d4{bottom:819.914667pt;}
.y225{bottom:820.301333pt;}
.y44{bottom:820.522667pt;}
.y146{bottom:821.222667pt;}
.yeb{bottom:823.180000pt;}
.y132{bottom:823.977333pt;}
.y218{bottom:824.610667pt;}
.y31b{bottom:825.040000pt;}
.y109{bottom:825.150667pt;}
.y255{bottom:825.836000pt;}
.y2e{bottom:828.493333pt;}
.y5{bottom:828.696000pt;}
.y161{bottom:835.854667pt;}
.y62{bottom:838.186667pt;}
.y29e{bottom:839.840000pt;}
.y1af{bottom:841.785333pt;}
.y103{bottom:841.980000pt;}
.y2d{bottom:844.433333pt;}
.y25b{bottom:846.868000pt;}
.y324{bottom:847.828000pt;}
.y224{bottom:848.308000pt;}
.y145{bottom:848.768000pt;}
.y108{bottom:849.669333pt;}
.yea{bottom:849.746667pt;}
.y131{bottom:850.145333pt;}
.y217{bottom:850.462667pt;}
.y31a{bottom:850.676000pt;}
.y254{bottom:851.074667pt;}
.y201{bottom:851.794667pt;}
.y280{bottom:852.404000pt;}
.y2c{bottom:860.373333pt;}
.y4{bottom:872.860000pt;}
.y2b{bottom:876.313333pt;}
.h9{height:21.551241pt;}
.ha{height:31.880400pt;}
.h4{height:37.193707pt;}
.h3{height:39.850400pt;}
.h8{height:44.422874pt;}
.h7{height:44.428207pt;}
.h6{height:44.632747pt;}
.h2{height:53.559147pt;}
.h1{height:54.630330pt;}
.h5{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:86.684000pt;}
.x4{left:178.357333pt;}
.xd{left:187.952000pt;}
.xf{left:193.146667pt;}
.x9{left:194.593333pt;}
.x5{left:198.282667pt;}
.xa{left:211.566667pt;}
.x6{left:228.834667pt;}
.x17{left:237.966667pt;}
.x13{left:241.288000pt;}
.x15{left:248.520000pt;}
.xb{left:251.890667pt;}
.x2{left:253.653333pt;}
.x14{left:260.161333pt;}
.x7{left:271.342667pt;}
.x12{left:313.978667pt;}
.x10{left:317.078667pt;}
.x16{left:330.140000pt;}
.x8{left:345.026667pt;}
.xc{left:400.857333pt;}
.x3{left:404.177333pt;}
.xe{left:423.733333pt;}
.x11{left:430.376000pt;}
}




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