
    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_2f1a43f88997100a965f8348.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_527f04ca8f8b3c66e4e2597a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4ccca3e99325096ead27c2c2.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_d02fe513f1761962cebc6d30.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_de01f4e32d7534c0e8fb91d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.949000;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_6d8051c592b37504c077eb47.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_f2270fdf95a07a7ececb9351.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.824000;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_f8c67822d571798cf27504d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.879000;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_8c1edad49051900d4d5878dc.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-16.272000px;}
.v6{vertical-align:-15.270000px;}
.v3{vertical-align:-9.816000px;}
.v7{vertical-align:-6.738000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:19.530000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:26.040000px;}
.lsc{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.001610px;}
.ls41{letter-spacing:0.001618px;}
.ls53{letter-spacing:0.001932px;}
.ls50{letter-spacing:0.002592px;}
.ls4a{letter-spacing:0.002832px;}
.ls84{letter-spacing:0.003246px;}
.ls86{letter-spacing:0.003792px;}
.ls40{letter-spacing:0.004323px;}
.ls4e{letter-spacing:0.005040px;}
.ls25{letter-spacing:0.005412px;}
.ls3c{letter-spacing:2.984112px;}
.ls5b{letter-spacing:2.986598px;}
.ls0{letter-spacing:2.987028px;}
.ls4f{letter-spacing:2.987856px;}
.ls3{letter-spacing:2.988716px;}
.ls6{letter-spacing:2.990112px;}
.ls51{letter-spacing:2.990448px;}
.ls13{letter-spacing:2.990690px;}
.ls5c{letter-spacing:2.991216px;}
.ls29{letter-spacing:2.993700px;}
.ls42{letter-spacing:7.277412px;}
.ls48{letter-spacing:8.246832px;}
.ls49{letter-spacing:8.252832px;}
.ls2{letter-spacing:8.969856px;}
.ls52{letter-spacing:10.307040px;}
.ls4d{letter-spacing:10.313040px;}
.ls3f{letter-spacing:10.907412px;}
.ls46{letter-spacing:10.907974px;}
.ls47{letter-spacing:10.913412px;}
.ls75{letter-spacing:10.991412px;}
.ls74{letter-spacing:10.991974px;}
.ls2b{letter-spacing:11.633412px;}
.ls2a{letter-spacing:11.636699px;}
.ls2e{letter-spacing:11.996699px;}
.ls2f{letter-spacing:11.999412px;}
.ls5a{letter-spacing:12.373248px;}
.ls70{letter-spacing:12.755412px;}
.ls6f{letter-spacing:12.755974px;}
.ls7e{letter-spacing:13.078896px;}
.ls1a{letter-spacing:13.798896px;}
.ls66{letter-spacing:13.954896px;}
.ls68{letter-spacing:14.094716px;}
.ls58{letter-spacing:15.198716px;}
.lsb{letter-spacing:15.312716px;}
.ls28{letter-spacing:15.582716px;}
.ls1d{letter-spacing:15.720716px;}
.ls5{letter-spacing:15.739594px;}
.ls33{letter-spacing:15.805594px;}
.ls77{letter-spacing:16.235412px;}
.ls24{letter-spacing:16.314716px;}
.lsf{letter-spacing:16.360896px;}
.ls8{letter-spacing:16.361412px;}
.ls26{letter-spacing:16.365798px;}
.ls37{letter-spacing:16.367412px;}
.ls7f{letter-spacing:16.408896px;}
.ls7a{letter-spacing:16.421412px;}
.ls73{letter-spacing:16.511412px;}
.ls85{letter-spacing:16.511974px;}
.ls11{letter-spacing:17.248896px;}
.lsd{letter-spacing:17.293594px;}
.ls45{letter-spacing:17.453412px;}
.ls21{letter-spacing:17.494896px;}
.ls2c{letter-spacing:17.669412px;}
.ls36{letter-spacing:17.675412px;}
.ls69{letter-spacing:17.714112px;}
.ls19{letter-spacing:17.806896px;}
.lse{letter-spacing:17.820716px;}
.ls63{letter-spacing:17.910716px;}
.ls22{letter-spacing:18.006716px;}
.ls5e{letter-spacing:18.186716px;}
.ls16{letter-spacing:18.240716px;}
.ls7{letter-spacing:18.311412px;}
.ls30{letter-spacing:18.323412px;}
.ls2d{letter-spacing:18.329412px;}
.ls35{letter-spacing:18.506112px;}
.lsa{letter-spacing:18.548112px;}
.ls62{letter-spacing:18.607594px;}
.ls61{letter-spacing:18.613594px;}
.ls6d{letter-spacing:18.868896px;}
.ls31{letter-spacing:18.923412px;}
.ls5d{letter-spacing:18.952896px;}
.ls78{letter-spacing:18.997594px;}
.ls76{letter-spacing:19.214112px;}
.ls54{letter-spacing:19.274112px;}
.ls9{letter-spacing:19.352112px;}
.ls80{letter-spacing:19.356716px;}
.ls20{letter-spacing:19.384896px;}
.ls67{letter-spacing:19.414896px;}
.ls79{letter-spacing:19.418112px;}
.ls1{letter-spacing:19.487028px;}
.ls6e{letter-spacing:19.546896px;}
.ls1b{letter-spacing:19.682112px;}
.ls38{letter-spacing:19.700112px;}
.ls15{letter-spacing:19.750896px;}
.ls7c{letter-spacing:19.903594px;}
.ls7b{letter-spacing:19.906896px;}
.ls3d{letter-spacing:19.928112px;}
.ls6b{letter-spacing:19.966896px;}
.ls34{letter-spacing:20.072112px;}
.ls14{letter-spacing:20.158896px;}
.ls23{letter-spacing:20.244716px;}
.ls81{letter-spacing:20.298716px;}
.ls71{letter-spacing:20.330112px;}
.ls6a{letter-spacing:20.370716px;}
.ls55{letter-spacing:20.372112px;}
.ls83{letter-spacing:20.393425px;}
.ls57{letter-spacing:20.526716px;}
.ls17{letter-spacing:20.554896px;}
.ls1c{letter-spacing:20.604716px;}
.ls4{letter-spacing:20.628716px;}
.ls3e{letter-spacing:20.654112px;}
.ls39{letter-spacing:20.744112px;}
.ls64{letter-spacing:20.760716px;}
.ls3a{letter-spacing:21.020112px;}
.ls72{letter-spacing:21.026112px;}
.ls1e{letter-spacing:21.034896px;}
.ls7d{letter-spacing:21.170112px;}
.ls5f{letter-spacing:21.408716px;}
.ls12{letter-spacing:21.670896px;}
.ls6c{letter-spacing:21.854112px;}
.ls32{letter-spacing:22.026716px;}
.ls3b{letter-spacing:22.100112px;}
.ls56{letter-spacing:22.346112px;}
.ls18{letter-spacing:22.372896px;}
.ls60{letter-spacing:22.542716px;}
.ls65{letter-spacing:22.886112px;}
.ls1f{letter-spacing:23.058716px;}
.ls43{letter-spacing:23.522112px;}
.ls59{letter-spacing:23.646716px;}
.ls27{letter-spacing:24.516716px;}
.ls10{letter-spacing:25.890716px;}
.ls82{letter-spacing:32.726700px;}
.ls4b{letter-spacing:374.851200px;}
.ls4c{letter-spacing:402.823200px;}
.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;}
}
.ws74{word-spacing:-71.934605px;}
.wsdd{word-spacing:-53.607317px;}
.wsf2{word-spacing:-52.232771px;}
.wsb4{word-spacing:-39.416294px;}
.wsa{word-spacing:-0.083686px;}
.ws80{word-spacing:-0.071731px;}
.wsb{word-spacing:-0.065455px;}
.ws6{word-spacing:-0.053798px;}
.ws96{word-spacing:-0.047821px;}
.ws2d{word-spacing:-0.041843px;}
.wsb8{word-spacing:-0.035866px;}
.ws2e{word-spacing:0.000000px;}
.wsd6{word-spacing:7.121741px;}
.wsc0{word-spacing:7.129190px;}
.wsd5{word-spacing:7.130410px;}
.wsd7{word-spacing:7.131197px;}
.wsbc{word-spacing:7.133558px;}
.wsc7{word-spacing:7.133846px;}
.wsd8{word-spacing:7.134595px;}
.wsb0{word-spacing:7.137254px;}
.wsbb{word-spacing:7.139558px;}
.wsd9{word-spacing:7.139846px;}
.wsbe{word-spacing:7.140173px;}
.wsbf{word-spacing:7.140595px;}
.wsb6{word-spacing:8.196547px;}
.wscb{word-spacing:8.197018px;}
.wsb2{word-spacing:8.199379px;}
.wsb1{word-spacing:8.205235px;}
.wsc4{word-spacing:8.210438px;}
.wsca{word-spacing:8.211926px;}
.wsc1{word-spacing:8.213222px;}
.wsd2{word-spacing:8.213414px;}
.wsb5{word-spacing:8.214950px;}
.wsc2{word-spacing:8.226883px;}
.wsd0{word-spacing:8.232883px;}
.ws2c{word-spacing:9.578086px;}
.ws2b{word-spacing:9.580372px;}
.ws2a{word-spacing:9.582001px;}
.ws20{word-spacing:9.818190px;}
.wsbd{word-spacing:10.266528px;}
.wsa9{word-spacing:10.407281px;}
.ws62{word-spacing:10.538191px;}
.ws71{word-spacing:10.705882px;}
.wsf9{word-spacing:10.734554px;}
.ws9c{word-spacing:10.842459px;}
.wsc{word-spacing:10.865464px;}
.wsed{word-spacing:11.061827px;}
.wsde{word-spacing:11.192737px;}
.ws29{word-spacing:11.590456px;}
.ws1d{word-spacing:11.781828px;}
.wsf6{word-spacing:11.972686px;}
.ws99{word-spacing:11.978192px;}
.wsd{word-spacing:12.043646px;}
.ws7a{word-spacing:12.109101px;}
.wse4{word-spacing:12.174556px;}
.ws27{word-spacing:12.240010px;}
.ws1{word-spacing:12.319834px;}
.ws72{word-spacing:12.436374px;}
.ws7b{word-spacing:12.501829px;}
.ws7c{word-spacing:12.567283px;}
.wsaa{word-spacing:12.632738px;}
.ws53{word-spacing:12.698192px;}
.wse7{word-spacing:12.763647px;}
.ws105{word-spacing:13.020765px;}
.ws28{word-spacing:13.025465px;}
.ws18{word-spacing:13.090920px;}
.wsa3{word-spacing:13.221829px;}
.ws73{word-spacing:13.287284px;}
.ws5f{word-spacing:13.352738px;}
.wse9{word-spacing:13.418193px;}
.wsf7{word-spacing:13.483648px;}
.ws63{word-spacing:13.549102px;}
.ws64{word-spacing:13.556686px;}
.ws8d{word-spacing:13.614557px;}
.ws5e{word-spacing:13.680011px;}
.ws7e{word-spacing:13.688129px;}
.ws30{word-spacing:13.688612px;}
.ws4e{word-spacing:13.745466px;}
.wseb{word-spacing:13.876375px;}
.ws8b{word-spacing:14.007284px;}
.wse1{word-spacing:14.334557px;}
.ws1e{word-spacing:14.400012px;}
.wsf5{word-spacing:14.465467px;}
.ws1c{word-spacing:14.530921px;}
.ws51{word-spacing:14.596376px;}
.ws56{word-spacing:14.661830px;}
.wsa6{word-spacing:14.700751px;}
.wsa5{word-spacing:14.702480px;}
.wsa4{word-spacing:14.727285px;}
.ws3e{word-spacing:14.792740px;}
.wse8{word-spacing:14.858194px;}
.ws3{word-spacing:14.901427px;}
.ws4{word-spacing:14.902157px;}
.ws5{word-spacing:14.902646px;}
.ws0{word-spacing:14.902781px;}
.ws5d{word-spacing:14.923649px;}
.ws112{word-spacing:14.984349px;}
.ws10c{word-spacing:14.984795px;}
.ws10a{word-spacing:14.984825px;}
.ws107{word-spacing:14.984975px;}
.ws113{word-spacing:14.985572px;}
.ws110{word-spacing:14.985630px;}
.ws10f{word-spacing:14.985952px;}
.ws106{word-spacing:14.986562px;}
.ws111{word-spacing:14.987036px;}
.ws10d{word-spacing:14.987557px;}
.ws109{word-spacing:14.987845px;}
.ws10e{word-spacing:14.988847px;}
.ws102{word-spacing:14.988956px;}
.ws37{word-spacing:14.989103px;}
.ws101{word-spacing:14.990540px;}
.ws104{word-spacing:14.991152px;}
.ws2f{word-spacing:15.000470px;}
.ws7f{word-spacing:15.014129px;}
.wsec{word-spacing:15.054558px;}
.ws95{word-spacing:15.057529px;}
.wse3{word-spacing:15.120013px;}
.ws49{word-spacing:15.185467px;}
.wse2{word-spacing:15.250922px;}
.ws91{word-spacing:15.447286px;}
.ws26{word-spacing:15.512740px;}
.ws94{word-spacing:15.578195px;}
.ws1b{word-spacing:15.643649px;}
.ws1a{word-spacing:15.669759px;}
.ws19{word-spacing:15.673522px;}
.ws90{word-spacing:15.709104px;}
.ws24{word-spacing:15.774559px;}
.ws6e{word-spacing:15.812686px;}
.ws54{word-spacing:15.840013px;}
.ws36{word-spacing:15.905468px;}
.wsac{word-spacing:15.970922px;}
.ws100{word-spacing:16.036377px;}
.ws6f{word-spacing:16.101832px;}
.ws70{word-spacing:16.124686px;}
.ws1f{word-spacing:16.167286px;}
.wsdc{word-spacing:16.232741px;}
.wsae{word-spacing:16.293713px;}
.ws92{word-spacing:16.294721px;}
.ws23{word-spacing:16.298105px;}
.ws12{word-spacing:16.298195px;}
.ws6a{word-spacing:16.363650px;}
.ws9{word-spacing:16.426445px;}
.ws68{word-spacing:16.429105px;}
.wsf4{word-spacing:16.449713px;}
.ws21{word-spacing:16.494559px;}
.ws75{word-spacing:16.560014px;}
.ws52{word-spacing:16.625468px;}
.wsfc{word-spacing:16.690923px;}
.ws8c{word-spacing:16.756378px;}
.ws82{word-spacing:16.821832px;}
.ws9b{word-spacing:16.887287px;}
.ws61{word-spacing:16.952741px;}
.ws3f{word-spacing:17.018196px;}
.ws5b{word-spacing:17.083651px;}
.ws43{word-spacing:17.149105px;}
.ws3a{word-spacing:17.214560px;}
.ws39{word-spacing:17.221402px;}
.ws25{word-spacing:17.280014px;}
.ws8e{word-spacing:17.345469px;}
.ws8f{word-spacing:17.352470px;}
.ws5a{word-spacing:17.410924px;}
.wsdb{word-spacing:17.476378px;}
.ws17{word-spacing:17.541833px;}
.ws79{word-spacing:17.607287px;}
.ws66{word-spacing:17.660686px;}
.ws65{word-spacing:17.672742px;}
.ws4d{word-spacing:17.738197px;}
.ws77{word-spacing:17.803651px;}
.ws60{word-spacing:17.869106px;}
.ws4f{word-spacing:17.934560px;}
.ws38{word-spacing:18.000015px;}
.wsdf{word-spacing:18.002686px;}
.wse5{word-spacing:18.065470px;}
.ws84{word-spacing:18.130924px;}
.ws55{word-spacing:18.196379px;}
.ws87{word-spacing:18.213692px;}
.ws22{word-spacing:18.261833px;}
.wsa2{word-spacing:18.294470px;}
.wsa0{word-spacing:18.327288px;}
.wsad{word-spacing:18.392743px;}
.ws5c{word-spacing:18.458197px;}
.ws88{word-spacing:18.523652px;}
.ws3d{word-spacing:18.589106px;}
.ws69{word-spacing:18.654561px;}
.ws98{word-spacing:18.708481px;}
.ws97{word-spacing:18.720016px;}
.ws8a{word-spacing:18.785470px;}
.ws81{word-spacing:18.850925px;}
.ws35{word-spacing:18.916379px;}
.ws34{word-spacing:18.981834px;}
.ws33{word-spacing:19.026481px;}
.ws32{word-spacing:19.047289px;}
.ws83{word-spacing:19.112743px;}
.ws9a{word-spacing:19.178198px;}
.wse{word-spacing:19.243652px;}
.wsf{word-spacing:19.274686px;}
.wsa1{word-spacing:19.292686px;}
.ws59{word-spacing:19.309107px;}
.ws103{word-spacing:19.338395px;}
.ws10b{word-spacing:19.340560px;}
.ws93{word-spacing:19.374562px;}
.ws11{word-spacing:19.436686px;}
.ws10{word-spacing:19.440016px;}
.ws9f{word-spacing:19.505471px;}
.wsda{word-spacing:19.570925px;}
.wsf3{word-spacing:19.629713px;}
.ws67{word-spacing:19.636380px;}
.ws48{word-spacing:19.680470px;}
.ws47{word-spacing:19.701835px;}
.wsa8{word-spacing:19.767289px;}
.wsea{word-spacing:19.832744px;}
.ws6c{word-spacing:19.869542px;}
.ws7d{word-spacing:19.898198px;}
.ws50{word-spacing:19.963653px;}
.ws58{word-spacing:20.029108px;}
.ws15{word-spacing:20.090686px;}
.ws14{word-spacing:20.094562px;}
.ws9e{word-spacing:20.148481px;}
.ws9d{word-spacing:20.160017px;}
.ws3b{word-spacing:20.225471px;}
.ws108{word-spacing:20.256323px;}
.ws3c{word-spacing:20.290926px;}
.ws41{word-spacing:20.466481px;}
.ws40{word-spacing:20.487290px;}
.ws86{word-spacing:20.552744px;}
.ws4a{word-spacing:20.618199px;}
.wsee{word-spacing:20.683654px;}
.ws85{word-spacing:20.749108px;}
.wsfe{word-spacing:20.814563px;}
.ws4c{word-spacing:20.880017px;}
.ws57{word-spacing:20.945472px;}
.ws78{word-spacing:21.010927px;}
.wsf8{word-spacing:21.076381px;}
.wsfd{word-spacing:21.141836px;}
.wsef{word-spacing:21.207290px;}
.ws89{word-spacing:21.272745px;}
.wsaf{word-spacing:21.338200px;}
.wse0{word-spacing:21.403654px;}
.ws76{word-spacing:21.469109px;}
.wsab{word-spacing:21.534563px;}
.ws44{word-spacing:21.600018px;}
.ws45{word-spacing:21.730927px;}
.ws42{word-spacing:21.861836px;}
.wsa7{word-spacing:21.927291px;}
.ws46{word-spacing:21.992746px;}
.wsfa{word-spacing:22.254564px;}
.ws4b{word-spacing:22.320019px;}
.wsf0{word-spacing:22.385473px;}
.wsf1{word-spacing:22.516382px;}
.ws13{word-spacing:22.843655px;}
.ws6b{word-spacing:23.181077px;}
.ws6d{word-spacing:23.301838px;}
.wsff{word-spacing:23.498201px;}
.wsfb{word-spacing:23.694565px;}
.wse6{word-spacing:25.854567px;}
.ws16{word-spacing:26.050931px;}
.ws31{word-spacing:28.649568px;}
.ws2{word-spacing:29.856624px;}
.ws7{word-spacing:43.660258px;}
.ws8{word-spacing:43.700506px;}
.wsc9{word-spacing:102.177062px;}
.wsc8{word-spacing:103.185062px;}
.wsba{word-spacing:168.950438px;}
.wsc5{word-spacing:169.875926px;}
.wsb7{word-spacing:176.120438px;}
.wsc3{word-spacing:177.051926px;}
.wscf{word-spacing:186.867226px;}
.wscc{word-spacing:187.089926px;}
.wsd4{word-spacing:194.265926px;}
.wsb3{word-spacing:196.928438px;}
.wsb9{word-spacing:204.098438px;}
.wsce{word-spacing:204.305414px;}
.wscd{word-spacing:211.481414px;}
.wsd3{word-spacing:221.519414px;}
.wsc6{word-spacing:228.256128px;}
.wsd1{word-spacing:228.695414px;}
._2d{margin-left:-9.621826px;}
._f{margin-left:-7.950189px;}
._8{margin-left:-6.694896px;}
._b{margin-left:-4.931505px;}
._3{margin-left:-3.347448px;}
._0{margin-left:-1.613952px;}
._4{width:1.404738px;}
._d{width:2.976286px;}
._e{width:7.268410px;}
._21{width:9.154445px;}
._5{width:12.845740px;}
._2e{width:15.054558px;}
._6{width:19.152230px;}
._19{width:20.622720px;}
._30{width:23.005318px;}
._31{width:28.139578px;}
._2f{width:30.112191px;}
._2{width:31.556688px;}
._c{width:35.863694px;}
._1{width:38.730739px;}
._9{width:43.038720px;}
._a{width:72.464602px;}
._22{width:99.622224px;}
._18{width:168.998707px;}
._23{width:187.146701px;}
._17{width:196.973875px;}
._20{width:198.587827px;}
._24{width:204.375226px;}
._16{width:214.197350px;}
._1f{width:215.803315px;}
._25{width:221.556336px;}
._2b{width:231.476582px;}
._1d{width:296.967168px;}
._1e{width:298.365926px;}
._1c{width:325.910707px;}
._15{width:331.828531px;}
._13{width:358.404941px;}
._14{width:359.445043px;}
._12{width:387.420211px;}
._29{width:393.624960px;}
._2a{width:395.059584px;}
._28{width:422.604365px;}
._27{width:829.678925px;}
._11{width:884.409830px;}
._1b{width:898.827802px;}
._1a{width:1109.179546px;}
._26{width:1154.908186px;}
._10{width:1156.020019px;}
._2c{width:1727.110099px;}
._7{width:1757.026099px;}
.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);}
.fsb{font-size:29.887800px;}
.fsc{font-size:31.382400px;}
.fs4{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fsa{font-size:44.832000px;}
.fs7{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fs2{font-size:71.731200px;}
.fs5{font-size:83.686200px;}
.fs1{font-size:131.506800px;}
.y0{bottom:0.000000px;}
.y3c{bottom:29.871000px;}
.y3b{bottom:41.826000px;}
.y66{bottom:48.877500px;}
.y3a{bottom:53.781000px;}
.y15a{bottom:80.997000px;}
.y159{bottom:102.997500px;}
.yd7{bottom:115.434000px;}
.y65{bottom:115.435500px;}
.y158{bottom:116.448000px;}
.yfa{bottom:117.267000px;}
.y10{bottom:117.420000px;}
.y8f{bottom:123.394500px;}
.yae{bottom:125.118000px;}
.y157{bottom:127.078500px;}
.y19c{bottom:128.349000px;}
.y23a{bottom:129.522000px;}
.y17b{bottom:130.867500px;}
.y10a{bottom:132.211500px;}
.y1c5{bottom:137.652000px;}
.yd6{bottom:137.673000px;}
.y234{bottom:137.832000px;}
.y64{bottom:137.835000px;}
.y1e8{bottom:137.842500px;}
.yf9{bottom:139.683000px;}
.y156{bottom:139.759500px;}
.y39{bottom:140.143500px;}
.y8e{bottom:145.810500px;}
.yad{bottom:147.534000px;}
.yf{bottom:149.548500px;}
.y19b{bottom:150.765000px;}
.y239{bottom:151.938000px;}
.y155{bottom:153.210000px;}
.y17a{bottom:153.283500px;}
.y109{bottom:154.627500px;}
.y1c4{bottom:159.870000px;}
.yd5{bottom:159.912000px;}
.y233{bottom:160.230000px;}
.y63{bottom:160.234500px;}
.y1e7{bottom:160.249500px;}
.y38{bottom:160.318500px;}
.yf8{bottom:162.249000px;}
.ye{bottom:165.240000px;}
.y8d{bottom:168.226500px;}
.yac{bottom:170.098500px;}
.y19a{bottom:173.181000px;}
.y20b{bottom:173.607000px;}
.y238{bottom:174.354000px;}
.y179{bottom:175.699500px;}
.y154{bottom:176.521500px;}
.y108{bottom:177.043500px;}
.y37{bottom:180.492000px;}
.y1c3{bottom:182.088000px;}
.yd4{bottom:182.151000px;}
.y232{bottom:182.626500px;}
.y62{bottom:182.634000px;}
.y1e6{bottom:182.806500px;}
.y153{bottom:189.972000px;}
.y8c{bottom:190.792500px;}
.yd{bottom:192.886500px;}
.y199{bottom:195.597000px;}
.y20a{bottom:196.023000px;}
.y237{bottom:196.770000px;}
.yf7{bottom:198.114000px;}
.y178{bottom:198.115500px;}
.y107{bottom:199.459500px;}
.y36{bottom:200.667000px;}
.y1c2{bottom:204.304500px;}
.y23b{bottom:204.306000px;}
.yd3{bottom:204.390000px;}
.y231{bottom:205.024500px;}
.y61{bottom:205.033500px;}
.yab{bottom:205.965000px;}
.yc{bottom:208.578000px;}
.y129{bottom:210.372000px;}
.y152{bottom:213.283500px;}
.y8b{bottom:217.692000px;}
.y198{bottom:218.011500px;}
.y209{bottom:218.587500px;}
.y1e5{bottom:218.589000px;}
.y236{bottom:219.186000px;}
.yf6{bottom:220.530000px;}
.y35{bottom:220.840500px;}
.y106{bottom:221.875500px;}
.y128{bottom:224.568000px;}
.y1c1{bottom:226.522500px;}
.y151{bottom:226.734000px;}
.yd2{bottom:226.777500px;}
.y230{bottom:227.421000px;}
.y60{bottom:227.434500px;}
.yaa{bottom:228.381000px;}
.y150{bottom:236.577000px;}
.y127{bottom:238.765500px;}
.yb{bottom:239.113500px;}
.y197{bottom:240.427500px;}
.y1e4{bottom:240.997500px;}
.y34{bottom:241.015500px;}
.y235{bottom:241.602000px;}
.yf5{bottom:242.946000px;}
.y105{bottom:244.441500px;}
.y1c0{bottom:248.740500px;}
.y22f{bottom:249.819000px;}
.y5f{bottom:249.834000px;}
.y14f{bottom:250.047000px;}
.ya9{bottom:250.797000px;}
.y126{bottom:252.961500px;}
.y208{bottom:254.454000px;}
.yd1{bottom:260.883000px;}
.y33{bottom:261.190500px;}
.y196{bottom:262.843500px;}
.y1e3{bottom:263.404500px;}
.y14e{bottom:263.496000px;}
.ya{bottom:263.772000px;}
.y8a{bottom:264.018000px;}
.yf4{bottom:265.362000px;}
.y125{bottom:267.159000px;}
.y1bf{bottom:270.958500px;}
.y22e{bottom:272.215500px;}
.y5e{bottom:272.233500px;}
.ya8{bottom:273.213000px;}
.y207{bottom:276.870000px;}
.y9{bottom:279.462000px;}
.y104{bottom:280.306500px;}
.y124{bottom:281.355000px;}
.y32{bottom:281.364000px;}
.yd0{bottom:283.120500px;}
.y195{bottom:285.259500px;}
.y1e2{bottom:285.813000px;}
.y89{bottom:286.434000px;}
.y14d{bottom:286.809000px;}
.yf3{bottom:287.778000px;}
.y1be{bottom:293.176500px;}
.y22d{bottom:294.613500px;}
.y5d{bottom:294.633000px;}
.y8{bottom:295.153500px;}
.ya7{bottom:295.629000px;}
.y206{bottom:299.434500px;}
.y14c{bottom:300.258000px;}
.y31{bottom:301.539000px;}
.y103{bottom:302.722500px;}
.ycf{bottom:305.359500px;}
.y194{bottom:307.675500px;}
.y123{bottom:307.797000px;}
.y1e1{bottom:308.220000px;}
.y88{bottom:308.850000px;}
.yf2{bottom:310.194000px;}
.y1bd{bottom:315.393000px;}
.y22c{bottom:317.010000px;}
.y5c{bottom:317.032500px;}
.ya6{bottom:318.045000px;}
.y7{bottom:319.812000px;}
.y122{bottom:321.246000px;}
.y30{bottom:321.712500px;}
.y14a{bottom:323.571000px;}
.y102{bottom:325.138500px;}
.yce{bottom:327.598500px;}
.y193{bottom:330.091500px;}
.y1e0{bottom:330.777000px;}
.y87{bottom:331.266000px;}
.yf1{bottom:332.610000px;}
.y121{bottom:334.696500px;}
.y205{bottom:335.301000px;}
.y6{bottom:335.502000px;}
.y14b{bottom:337.020000px;}
.y1bc{bottom:337.611000px;}
.y22b{bottom:339.408000px;}
.y5b{bottom:339.432000px;}
.ya5{bottom:340.459500px;}
.y149{bottom:340.837500px;}
.y169{bottom:341.463000px;}
.y2f{bottom:341.887500px;}
.y101{bottom:347.554500px;}
.y120{bottom:347.814000px;}
.ycd{bottom:349.837500px;}
.y192{bottom:352.507500px;}
.y86{bottom:353.682000px;}
.y148{bottom:354.286500px;}
.yf0{bottom:355.026000px;}
.y168{bottom:355.659000px;}
.y204{bottom:357.717000px;}
.y11e{bottom:358.008000px;}
.y1bb{bottom:359.829000px;}
.y5{bottom:360.160500px;}
.y147{bottom:360.333000px;}
.y11f{bottom:361.263000px;}
.y22a{bottom:361.806000px;}
.y5a{bottom:361.833000px;}
.y2e{bottom:362.061000px;}
.ya4{bottom:362.875500px;}
.y167{bottom:369.856500px;}
.y100{bottom:369.970500px;}
.y11d{bottom:371.458500px;}
.ycc{bottom:372.075000px;}
.y146{bottom:373.782000px;}
.y191{bottom:374.923500px;}
.y1df{bottom:375.526500px;}
.y4{bottom:375.850500px;}
.y85{bottom:376.098000px;}
.yef{bottom:377.442000px;}
.y203{bottom:380.133000px;}
.y1ba{bottom:382.047000px;}
.y2d{bottom:382.236000px;}
.y166{bottom:384.052500px;}
.y229{bottom:384.202500px;}
.y59{bottom:384.232500px;}
.ya3{bottom:385.291500px;}
.yff{bottom:392.386500px;}
.ycb{bottom:394.314000px;}
.y11c{bottom:394.770000px;}
.y145{bottom:397.095000px;}
.y190{bottom:397.339500px;}
.y165{bottom:398.250000px;}
.y84{bottom:398.514000px;}
.yee{bottom:399.858000px;}
.y3{bottom:400.509000px;}
.y2c{bottom:402.411000px;}
.y202{bottom:402.547500px;}
.y1b9{bottom:404.263500px;}
.y228{bottom:406.600500px;}
.y58{bottom:406.632000px;}
.ya2{bottom:407.707500px;}
.y11b{bottom:408.220500px;}
.y144{bottom:410.544000px;}
.y164{bottom:412.446000px;}
.yfe{bottom:414.802500px;}
.y2{bottom:416.200500px;}
.yca{bottom:416.553000px;}
.y18f{bottom:419.755500px;}
.y83{bottom:420.930000px;}
.yed{bottom:422.274000px;}
.y2b{bottom:422.584500px;}
.y201{bottom:425.113500px;}
.y1b8{bottom:426.481500px;}
.y163{bottom:426.643500px;}
.y1de{bottom:428.841000px;}
.y227{bottom:428.997000px;}
.y57{bottom:429.031500px;}
.ya1{bottom:430.123500px;}
.y1{bottom:431.890500px;}
.y143{bottom:433.857000px;}
.y11a{bottom:434.521500px;}
.yfd{bottom:437.218500px;}
.yc9{bottom:438.792000px;}
.y18e{bottom:442.171500px;}
.y2a{bottom:442.759500px;}
.y82{bottom:443.346000px;}
.y177{bottom:444.690000px;}
.y162{bottom:445.612500px;}
.y142{bottom:447.306000px;}
.y119{bottom:447.970500px;}
.y1b7{bottom:448.699500px;}
.y1dd{bottom:451.248000px;}
.y226{bottom:451.395000px;}
.y56{bottom:451.431000px;}
.ya0{bottom:452.539500px;}
.yec{bottom:456.645000px;}
.y141{bottom:458.100000px;}
.y161{bottom:459.061500px;}
.yfc{bottom:459.783000px;}
.y200{bottom:460.978500px;}
.yc8{bottom:461.029500px;}
.y118{bottom:461.421000px;}
.y29{bottom:462.933000px;}
.y18d{bottom:464.587500px;}
.y81{bottom:465.760500px;}
.y176{bottom:467.106000px;}
.y140{bottom:470.619000px;}
.y1b6{bottom:470.917500px;}
.y1dc{bottom:473.656500px;}
.y225{bottom:473.791500px;}
.y55{bottom:473.832000px;}
.y117{bottom:474.538500px;}
.y9f{bottom:474.955500px;}
.y160{bottom:482.823000px;}
.y28{bottom:483.108000px;}
.yc7{bottom:483.268500px;}
.y1ff{bottom:483.394500px;}
.y13f{bottom:484.069500px;}
.y115{bottom:484.732500px;}
.yfb{bottom:486.682500px;}
.y18c{bottom:487.003500px;}
.y116{bottom:487.989000px;}
.y80{bottom:488.176500px;}
.y175{bottom:489.522000px;}
.yeb{bottom:491.016000px;}
.y1b5{bottom:493.134000px;}
.y1db{bottom:496.063500px;}
.y224{bottom:496.189500px;}
.y54{bottom:496.231500px;}
.y15f{bottom:496.272000px;}
.y9e{bottom:497.371500px;}
.y114{bottom:498.183000px;}
.y27{bottom:503.281500px;}
.yc6{bottom:505.507500px;}
.y1fe{bottom:505.810500px;}
.y13e{bottom:507.381000px;}
.y18b{bottom:509.419500px;}
.y15e{bottom:509.722500px;}
.y7f{bottom:510.592500px;}
.y174{bottom:511.938000px;}
.yea{bottom:513.432000px;}
.y1b4{bottom:515.352000px;}
.y223{bottom:518.586000px;}
.y53{bottom:518.631000px;}
.y9d{bottom:519.787500px;}
.y13d{bottom:520.831500px;}
.y113{bottom:521.496000px;}
.y15d{bottom:523.171500px;}
.y26{bottom:523.456500px;}
.y1da{bottom:524.449500px;}
.yc5{bottom:527.746500px;}
.y1fd{bottom:528.226500px;}
.y18a{bottom:531.835500px;}
.y7e{bottom:533.008500px;}
.y112{bottom:534.945000px;}
.ye9{bottom:535.848000px;}
.y1b3{bottom:537.570000px;}
.y173{bottom:540.331500px;}
.y15c{bottom:540.535500px;}
.y222{bottom:540.984000px;}
.y52{bottom:541.030500px;}
.y13c{bottom:541.155000px;}
.y9c{bottom:542.203500px;}
.y25{bottom:543.631500px;}
.yc4{bottom:549.984000px;}
.y1fc{bottom:550.642500px;}
.y13b{bottom:551.947500px;}
.y189{bottom:554.251500px;}
.y7d{bottom:555.424500px;}
.y111{bottom:555.717000px;}
.ye8{bottom:558.264000px;}
.y1b2{bottom:559.788000px;}
.y15b{bottom:559.831500px;}
.y221{bottom:563.380500px;}
.y51{bottom:563.430000px;}
.y24{bottom:563.805000px;}
.y13a{bottom:564.468000px;}
.y9b{bottom:564.619500px;}
.y110{bottom:569.166000px;}
.y1d9{bottom:570.651000px;}
.yc3{bottom:572.223000px;}
.y1fb{bottom:573.058500px;}
.y188{bottom:576.667500px;}
.y7c{bottom:577.840500px;}
.y139{bottom:577.917000px;}
.ye7{bottom:580.680000px;}
.y1b1{bottom:582.004500px;}
.y10f{bottom:582.616500px;}
.y23{bottom:583.980000px;}
.y220{bottom:585.778500px;}
.y50{bottom:585.829500px;}
.y172{bottom:586.657500px;}
.y9a{bottom:587.035500px;}
.y1d8{bottom:593.058000px;}
.yc2{bottom:594.462000px;}
.y1fa{bottom:595.474500px;}
.y10e{bottom:596.065500px;}
.y187{bottom:599.083500px;}
.y7b{bottom:600.256500px;}
.y138{bottom:601.230000px;}
.ye6{bottom:603.096000px;}
.y22{bottom:604.153500px;}
.y1b0{bottom:604.222500px;}
.y21f{bottom:608.176500px;}
.y4f{bottom:608.230500px;}
.y171{bottom:609.073500px;}
.y99{bottom:609.451500px;}
.y137{bottom:614.679000px;}
.y1d7{bottom:615.466500px;}
.y10d{bottom:616.419000px;}
.yc1{bottom:616.701000px;}
.y1f9{bottom:617.890500px;}
.y186{bottom:621.499500px;}
.y7a{bottom:622.672500px;}
.y21{bottom:624.328500px;}
.ye5{bottom:625.512000px;}
.y1af{bottom:626.440500px;}
.y21e{bottom:630.573000px;}
.y4e{bottom:630.630000px;}
.y170{bottom:631.489500px;}
.y98{bottom:631.867500px;}
.y10c{bottom:636.772500px;}
.y1d6{bottom:637.873500px;}
.y135{bottom:637.992000px;}
.yc0{bottom:638.938500px;}
.y1f8{bottom:640.306500px;}
.y185{bottom:643.915500px;}
.y20{bottom:644.502000px;}
.y79{bottom:645.088500px;}
.ye4{bottom:647.928000px;}
.y1ae{bottom:648.658500px;}
.y136{bottom:651.441000px;}
.y21d{bottom:652.971000px;}
.y4d{bottom:653.029500px;}
.y16f{bottom:653.905500px;}
.y97{bottom:654.283500px;}
.y134{bottom:655.509000px;}
.y1d5{bottom:660.282000px;}
.ybf{bottom:661.177500px;}
.y1f7{bottom:662.722500px;}
.y184{bottom:666.331500px;}
.y78{bottom:667.504500px;}
.y133{bottom:668.958000px;}
.ye3{bottom:670.344000px;}
.y1ad{bottom:670.876500px;}
.y10b{bottom:670.912500px;}
.y1f{bottom:674.382000px;}
.y132{bottom:674.754000px;}
.y21c{bottom:675.367500px;}
.y4c{bottom:675.429000px;}
.y16e{bottom:676.321500px;}
.y96{bottom:676.699500px;}
.y1d4{bottom:682.689000px;}
.ybe{bottom:683.416500px;}
.y1f6{bottom:685.138500px;}
.y131{bottom:688.203000px;}
.y183{bottom:688.747500px;}
.y77{bottom:689.920500px;}
.y1ac{bottom:693.093000px;}
.y21b{bottom:697.765500px;}
.y4b{bottom:697.828500px;}
.y16d{bottom:698.737500px;}
.y95{bottom:699.115500px;}
.y1d3{bottom:705.097500px;}
.ybd{bottom:705.655500px;}
.y1f5{bottom:707.554500px;}
.ye2{bottom:707.704500px;}
.y182{bottom:711.163500px;}
.y76{bottom:712.336500px;}
.y130{bottom:714.952500px;}
.y1ab{bottom:715.311000px;}
.y21a{bottom:720.162000px;}
.y4a{bottom:720.229500px;}
.y16c{bottom:721.153500px;}
.y94{bottom:721.531500px;}
.y1e{bottom:725.283000px;}
.y1d2{bottom:727.504500px;}
.ybc{bottom:727.893000px;}
.y12f{bottom:728.403000px;}
.y1f4{bottom:729.970500px;}
.ye1{bottom:730.120500px;}
.y181{bottom:733.579500px;}
.y75{bottom:734.752500px;}
.y1aa{bottom:737.529000px;}
.y12e{bottom:741.852000px;}
.y219{bottom:742.560000px;}
.y49{bottom:742.629000px;}
.y16b{bottom:743.569500px;}
.y93{bottom:743.947500px;}
.y1d{bottom:745.108500px;}
.y1d1{bottom:749.911500px;}
.ybb{bottom:750.132000px;}
.y1f3{bottom:752.386500px;}
.ye0{bottom:752.536500px;}
.y12d{bottom:755.302500px;}
.y180{bottom:755.995500px;}
.y74{bottom:757.168500px;}
.y1a9{bottom:759.747000px;}
.y1c{bottom:763.042500px;}
.y218{bottom:764.956500px;}
.y48{bottom:765.028500px;}
.y16a{bottom:766.135500px;}
.y92{bottom:766.363500px;}
.y1d0{bottom:772.320000px;}
.yba{bottom:772.371000px;}
.y1f2{bottom:774.802500px;}
.y12c{bottom:775.654500px;}
.y73{bottom:779.584500px;}
.y1b{bottom:780.975000px;}
.y1a8{bottom:781.963500px;}
.y217{bottom:787.354500px;}
.y47{bottom:787.428000px;}
.ydf{bottom:789.895500px;}
.y1a{bottom:794.025000px;}
.y1cf{bottom:794.727000px;}
.yb9{bottom:794.758500px;}
.y1f1{bottom:797.218500px;}
.y17f{bottom:800.871000px;}
.y72{bottom:802.000500px;}
.y1a7{bottom:804.181500px;}
.y216{bottom:809.751000px;}
.y12b{bottom:809.794500px;}
.y46{bottom:809.827500px;}
.y91{bottom:811.240500px;}
.yde{bottom:812.311500px;}
.y19{bottom:813.852000px;}
.yb8{bottom:814.335000px;}
.y1ce{bottom:817.135500px;}
.y17e{bottom:817.309500px;}
.y1f0{bottom:819.634500px;}
.y71{bottom:824.416500px;}
.y1a6{bottom:826.399500px;}
.y90{bottom:827.679000px;}
.y215{bottom:832.149000px;}
.y45{bottom:832.227000px;}
.y17d{bottom:833.748000px;}
.ydd{bottom:834.727500px;}
.y18{bottom:835.869000px;}
.y1cd{bottom:839.542500px;}
.y1ef{bottom:842.050500px;}
.y70{bottom:846.832500px;}
.yb7{bottom:848.428500px;}
.y1a5{bottom:848.617500px;}
.y17c{bottom:850.186500px;}
.y214{bottom:854.547000px;}
.y44{bottom:854.628000px;}
.y17{bottom:856.789500px;}
.ydc{bottom:857.143500px;}
.y1cc{bottom:861.951000px;}
.y1ee{bottom:864.466500px;}
.y12a{bottom:866.976000px;}
.y6f{bottom:869.248500px;}
.yb6{bottom:870.666000px;}
.y1a4{bottom:870.834000px;}
.y213{bottom:876.943500px;}
.y43{bottom:877.027500px;}
.y16{bottom:877.711500px;}
.ydb{bottom:879.559500px;}
.y1cb{bottom:884.358000px;}
.y1ed{bottom:886.882500px;}
.y6e{bottom:891.664500px;}
.yb5{bottom:892.905000px;}
.y1a3{bottom:893.052000px;}
.y212{bottom:899.341500px;}
.y42{bottom:899.427000px;}
.yda{bottom:901.975500px;}
.y1ca{bottom:906.766500px;}
.y1ec{bottom:909.447000px;}
.y6d{bottom:914.080500px;}
.yb4{bottom:915.144000px;}
.y1a2{bottom:915.270000px;}
.y15{bottom:921.552000px;}
.y211{bottom:921.738000px;}
.y41{bottom:921.826500px;}
.yd9{bottom:924.391500px;}
.y1c9{bottom:935.151000px;}
.y6c{bottom:936.496500px;}
.yb3{bottom:937.383000px;}
.y1a1{bottom:937.488000px;}
.y210{bottom:944.136000px;}
.y40{bottom:944.226000px;}
.y1eb{bottom:945.313500px;}
.yd8{bottom:946.957500px;}
.y14{bottom:957.717000px;}
.y6b{bottom:958.912500px;}
.yb2{bottom:959.622000px;}
.y1a0{bottom:959.704500px;}
.y20f{bottom:966.532500px;}
.y1ea{bottom:967.729500px;}
.y3f{bottom:972.604500px;}
.y6a{bottom:981.328500px;}
.y1c8{bottom:981.352500px;}
.yb1{bottom:981.859500px;}
.y19f{bottom:981.922500px;}
.y20e{bottom:988.930500px;}
.y1e9{bottom:990.294000px;}
.y13{bottom:993.880500px;}
.y69{bottom:1003.744500px;}
.y1c7{bottom:1003.761000px;}
.yb0{bottom:1004.098500px;}
.y19e{bottom:1004.140500px;}
.y20d{bottom:1011.327000px;}
.y68{bottom:1026.160500px;}
.y1c6{bottom:1026.168000px;}
.yaf{bottom:1026.337500px;}
.y19d{bottom:1026.358500px;}
.y3e{bottom:1027.056000px;}
.y12{bottom:1030.045500px;}
.y20c{bottom:1044.093000px;}
.y3d{bottom:1047.828000px;}
.y67{bottom:1048.576500px;}
.y11{bottom:1066.209000px;}
.h7{height:25.464576px;}
.hb{height:29.708388px;}
.ha{height:31.172886px;}
.h13{height:31.830720px;}
.h2{height:38.196864px;}
.h3{height:40.079808px;}
.h1{height:40.187405px;}
.hc{height:42.440676px;}
.h14{height:44.994576px;}
.h9{height:46.472766px;}
.h11{height:46.684914px;}
.h10{height:48.723269px;}
.he{height:53.439744px;}
.hf{height:55.704161px;}
.h6{height:55.742388px;}
.h5{height:55.748388px;}
.hd{height:57.712626px;}
.h8{height:62.346219px;}
.h4{height:93.369828px;}
.h12{height:918.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.w1{width:1188.000000px;}
.x0{left:0.000000px;}
.x1f{left:48.877500px;}
.x7{left:51.024000px;}
.x1{left:52.303500px;}
.x3{left:56.787000px;}
.x37{left:59.758500px;}
.x2{left:75.843000px;}
.x1d{left:109.456500px;}
.xb{left:118.191000px;}
.x16{left:120.858000px;}
.x1e{left:131.872500px;}
.x14{left:186.058500px;}
.x27{left:201.415500px;}
.x31{left:216.421500px;}
.xe{left:253.456500px;}
.x1a{left:255.249000px;}
.x21{left:269.223000px;}
.x5{left:270.574500px;}
.x4{left:276.463500px;}
.x3a{left:279.736500px;}
.x38{left:282.441000px;}
.xa{left:283.935000px;}
.x8{left:285.198000px;}
.x39{left:292.827000px;}
.x6{left:294.165000px;}
.x2b{left:299.611500px;}
.x32{left:301.404000px;}
.x3b{left:309.190500px;}
.x17{left:356.853000px;}
.x1b{left:358.647000px;}
.xd{left:393.109500px;}
.x20{left:397.632000px;}
.x34{left:411.805500px;}
.x33{left:413.599500px;}
.x2a{left:429.927000px;}
.x22{left:445.276500px;}
.xf{left:460.251000px;}
.x2c{left:524.001000px;}
.x23{left:557.338500px;}
.x10{left:563.647500px;}
.xc{left:600.592500px;}
.x2d{left:606.921000px;}
.x9{left:626.170500px;}
.x28{left:645.366000px;}
.x18{left:660.051000px;}
.x1c{left:661.843500px;}
.x36{left:703.336500px;}
.x35{left:705.129000px;}
.x24{left:733.392000px;}
.x11{left:756.454500px;}
.x2e{left:815.532000px;}
.x25{left:845.202000px;}
.x12{left:852.858000px;}
.x19{left:854.650500px;}
.x2f{left:898.452000px;}
.x29{left:911.848500px;}
.x26{left:944.347500px;}
.x13{left:958.693500px;}
.x15{left:960.486000px;}
.x30{left:998.874000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v5{vertical-align:-14.464000pt;}
.v6{vertical-align:-13.573333pt;}
.v3{vertical-align:-8.725333pt;}
.v7{vertical-align:-5.989333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:17.360000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:23.146667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.001431pt;}
.ls41{letter-spacing:0.001438pt;}
.ls53{letter-spacing:0.001717pt;}
.ls50{letter-spacing:0.002304pt;}
.ls4a{letter-spacing:0.002517pt;}
.ls84{letter-spacing:0.002885pt;}
.ls86{letter-spacing:0.003371pt;}
.ls40{letter-spacing:0.003843pt;}
.ls4e{letter-spacing:0.004480pt;}
.ls25{letter-spacing:0.004811pt;}
.ls3c{letter-spacing:2.652544pt;}
.ls5b{letter-spacing:2.654754pt;}
.ls0{letter-spacing:2.655136pt;}
.ls4f{letter-spacing:2.655872pt;}
.ls3{letter-spacing:2.656637pt;}
.ls6{letter-spacing:2.657877pt;}
.ls51{letter-spacing:2.658176pt;}
.ls13{letter-spacing:2.658391pt;}
.ls5c{letter-spacing:2.658859pt;}
.ls29{letter-spacing:2.661067pt;}
.ls42{letter-spacing:6.468811pt;}
.ls48{letter-spacing:7.330517pt;}
.ls49{letter-spacing:7.335851pt;}
.ls2{letter-spacing:7.973205pt;}
.ls52{letter-spacing:9.161813pt;}
.ls4d{letter-spacing:9.167147pt;}
.ls3f{letter-spacing:9.695477pt;}
.ls46{letter-spacing:9.695977pt;}
.ls47{letter-spacing:9.700811pt;}
.ls75{letter-spacing:9.770144pt;}
.ls74{letter-spacing:9.770643pt;}
.ls2b{letter-spacing:10.340811pt;}
.ls2a{letter-spacing:10.343732pt;}
.ls2e{letter-spacing:10.663732pt;}
.ls2f{letter-spacing:10.666144pt;}
.ls5a{letter-spacing:10.998443pt;}
.ls70{letter-spacing:11.338144pt;}
.ls6f{letter-spacing:11.338643pt;}
.ls7e{letter-spacing:11.625685pt;}
.ls1a{letter-spacing:12.265685pt;}
.ls66{letter-spacing:12.404352pt;}
.ls68{letter-spacing:12.528637pt;}
.ls58{letter-spacing:13.509970pt;}
.lsb{letter-spacing:13.611303pt;}
.ls28{letter-spacing:13.851303pt;}
.ls1d{letter-spacing:13.973970pt;}
.ls5{letter-spacing:13.990750pt;}
.ls33{letter-spacing:14.049417pt;}
.ls77{letter-spacing:14.431477pt;}
.ls24{letter-spacing:14.501970pt;}
.lsf{letter-spacing:14.543019pt;}
.ls8{letter-spacing:14.543477pt;}
.ls26{letter-spacing:14.547376pt;}
.ls37{letter-spacing:14.548811pt;}
.ls7f{letter-spacing:14.585685pt;}
.ls7a{letter-spacing:14.596811pt;}
.ls73{letter-spacing:14.676811pt;}
.ls85{letter-spacing:14.677310pt;}
.ls11{letter-spacing:15.332352pt;}
.lsd{letter-spacing:15.372083pt;}
.ls45{letter-spacing:15.514144pt;}
.ls21{letter-spacing:15.551019pt;}
.ls2c{letter-spacing:15.706144pt;}
.ls36{letter-spacing:15.711477pt;}
.ls69{letter-spacing:15.745877pt;}
.ls19{letter-spacing:15.828352pt;}
.lse{letter-spacing:15.840637pt;}
.ls63{letter-spacing:15.920637pt;}
.ls22{letter-spacing:16.005970pt;}
.ls5e{letter-spacing:16.165970pt;}
.ls16{letter-spacing:16.213970pt;}
.ls7{letter-spacing:16.276811pt;}
.ls30{letter-spacing:16.287477pt;}
.ls2d{letter-spacing:16.292811pt;}
.ls35{letter-spacing:16.449877pt;}
.lsa{letter-spacing:16.487211pt;}
.ls62{letter-spacing:16.540083pt;}
.ls61{letter-spacing:16.545417pt;}
.ls6d{letter-spacing:16.772352pt;}
.ls31{letter-spacing:16.820811pt;}
.ls5d{letter-spacing:16.847019pt;}
.ls78{letter-spacing:16.886750pt;}
.ls76{letter-spacing:17.079211pt;}
.ls54{letter-spacing:17.132544pt;}
.ls9{letter-spacing:17.201877pt;}
.ls80{letter-spacing:17.205970pt;}
.ls20{letter-spacing:17.231019pt;}
.ls67{letter-spacing:17.257685pt;}
.ls79{letter-spacing:17.260544pt;}
.ls1{letter-spacing:17.321803pt;}
.ls6e{letter-spacing:17.375019pt;}
.ls1b{letter-spacing:17.495211pt;}
.ls38{letter-spacing:17.511211pt;}
.ls15{letter-spacing:17.556352pt;}
.ls7c{letter-spacing:17.692083pt;}
.ls7b{letter-spacing:17.695019pt;}
.ls3d{letter-spacing:17.713877pt;}
.ls6b{letter-spacing:17.748352pt;}
.ls34{letter-spacing:17.841877pt;}
.ls14{letter-spacing:17.919019pt;}
.ls23{letter-spacing:17.995303pt;}
.ls81{letter-spacing:18.043303pt;}
.ls71{letter-spacing:18.071211pt;}
.ls6a{letter-spacing:18.107303pt;}
.ls55{letter-spacing:18.108544pt;}
.ls83{letter-spacing:18.127489pt;}
.ls57{letter-spacing:18.245970pt;}
.ls17{letter-spacing:18.271019pt;}
.ls1c{letter-spacing:18.315303pt;}
.ls4{letter-spacing:18.336637pt;}
.ls3e{letter-spacing:18.359211pt;}
.ls39{letter-spacing:18.439211pt;}
.ls64{letter-spacing:18.453970pt;}
.ls3a{letter-spacing:18.684544pt;}
.ls72{letter-spacing:18.689877pt;}
.ls1e{letter-spacing:18.697685pt;}
.ls7d{letter-spacing:18.817877pt;}
.ls5f{letter-spacing:19.029970pt;}
.ls12{letter-spacing:19.263019pt;}
.ls6c{letter-spacing:19.425877pt;}
.ls32{letter-spacing:19.579303pt;}
.ls3b{letter-spacing:19.644544pt;}
.ls56{letter-spacing:19.863211pt;}
.ls18{letter-spacing:19.887019pt;}
.ls60{letter-spacing:20.037970pt;}
.ls65{letter-spacing:20.343211pt;}
.ls1f{letter-spacing:20.496637pt;}
.ls43{letter-spacing:20.908544pt;}
.ls59{letter-spacing:21.019303pt;}
.ls27{letter-spacing:21.792637pt;}
.ls10{letter-spacing:23.013970pt;}
.ls82{letter-spacing:29.090400pt;}
.ls4b{letter-spacing:333.201067pt;}
.ls4c{letter-spacing:358.065067pt;}
.ws74{word-spacing:-63.941871pt;}
.wsdd{word-spacing:-47.650949pt;}
.wsf2{word-spacing:-46.429130pt;}
.wsb4{word-spacing:-35.036706pt;}
.wsa{word-spacing:-0.074388pt;}
.ws80{word-spacing:-0.063761pt;}
.wsb{word-spacing:-0.058182pt;}
.ws6{word-spacing:-0.047821pt;}
.ws96{word-spacing:-0.042507pt;}
.ws2d{word-spacing:-0.037194pt;}
.wsb8{word-spacing:-0.031881pt;}
.ws2e{word-spacing:0.000000pt;}
.wsd6{word-spacing:6.330436pt;}
.wsc0{word-spacing:6.337058pt;}
.wsd5{word-spacing:6.338142pt;}
.wsd7{word-spacing:6.338842pt;}
.wsbc{word-spacing:6.340941pt;}
.wsc7{word-spacing:6.341197pt;}
.wsd8{word-spacing:6.341862pt;}
.wsb0{word-spacing:6.344226pt;}
.wsbb{word-spacing:6.346274pt;}
.wsd9{word-spacing:6.346530pt;}
.wsbe{word-spacing:6.346820pt;}
.wsbf{word-spacing:6.347196pt;}
.wsb6{word-spacing:7.285820pt;}
.wscb{word-spacing:7.286238pt;}
.wsb2{word-spacing:7.288337pt;}
.wsb1{word-spacing:7.293542pt;}
.wsc4{word-spacing:7.298167pt;}
.wsca{word-spacing:7.299490pt;}
.wsc1{word-spacing:7.300642pt;}
.wsd2{word-spacing:7.300813pt;}
.wsb5{word-spacing:7.302178pt;}
.wsc2{word-spacing:7.312785pt;}
.wsd0{word-spacing:7.318118pt;}
.ws2c{word-spacing:8.513854pt;}
.ws2b{word-spacing:8.515886pt;}
.ws2a{word-spacing:8.517334pt;}
.ws20{word-spacing:8.727280pt;}
.wsbd{word-spacing:9.125803pt;}
.wsa9{word-spacing:9.250917pt;}
.ws62{word-spacing:9.367281pt;}
.ws71{word-spacing:9.516339pt;}
.wsf9{word-spacing:9.541826pt;}
.ws9c{word-spacing:9.637741pt;}
.wsc{word-spacing:9.658190pt;}
.wsed{word-spacing:9.832735pt;}
.wsde{word-spacing:9.949099pt;}
.ws29{word-spacing:10.302627pt;}
.ws1d{word-spacing:10.472736pt;}
.wsf6{word-spacing:10.642388pt;}
.ws99{word-spacing:10.647282pt;}
.wsd{word-spacing:10.705463pt;}
.ws7a{word-spacing:10.763645pt;}
.wse4{word-spacing:10.821827pt;}
.ws27{word-spacing:10.880009pt;}
.ws1{word-spacing:10.950963pt;}
.ws72{word-spacing:11.054555pt;}
.ws7b{word-spacing:11.112737pt;}
.ws7c{word-spacing:11.170918pt;}
.wsaa{word-spacing:11.229100pt;}
.ws53{word-spacing:11.287282pt;}
.wse7{word-spacing:11.345464pt;}
.ws105{word-spacing:11.574013pt;}
.ws28{word-spacing:11.578191pt;}
.ws18{word-spacing:11.636373pt;}
.wsa3{word-spacing:11.752737pt;}
.ws73{word-spacing:11.810919pt;}
.ws5f{word-spacing:11.869101pt;}
.wse9{word-spacing:11.927283pt;}
.wsf7{word-spacing:11.985465pt;}
.ws63{word-spacing:12.043646pt;}
.ws64{word-spacing:12.050388pt;}
.ws8d{word-spacing:12.101828pt;}
.ws5e{word-spacing:12.160010pt;}
.ws7e{word-spacing:12.167226pt;}
.ws30{word-spacing:12.167655pt;}
.ws4e{word-spacing:12.218192pt;}
.wseb{word-spacing:12.334556pt;}
.ws8b{word-spacing:12.450919pt;}
.wse1{word-spacing:12.741829pt;}
.ws1e{word-spacing:12.800011pt;}
.wsf5{word-spacing:12.858193pt;}
.ws1c{word-spacing:12.916374pt;}
.ws51{word-spacing:12.974556pt;}
.ws56{word-spacing:13.032738pt;}
.wsa6{word-spacing:13.067334pt;}
.wsa5{word-spacing:13.068871pt;}
.wsa4{word-spacing:13.090920pt;}
.ws3e{word-spacing:13.149102pt;}
.wse8{word-spacing:13.207284pt;}
.ws3{word-spacing:13.245713pt;}
.ws4{word-spacing:13.246362pt;}
.ws5{word-spacing:13.246797pt;}
.ws0{word-spacing:13.246916pt;}
.ws5d{word-spacing:13.265466pt;}
.ws112{word-spacing:13.319421pt;}
.ws10c{word-spacing:13.319818pt;}
.ws10a{word-spacing:13.319844pt;}
.ws107{word-spacing:13.319978pt;}
.ws113{word-spacing:13.320508pt;}
.ws110{word-spacing:13.320560pt;}
.ws10f{word-spacing:13.320846pt;}
.ws106{word-spacing:13.321388pt;}
.ws111{word-spacing:13.321810pt;}
.ws10d{word-spacing:13.322273pt;}
.ws109{word-spacing:13.322529pt;}
.ws10e{word-spacing:13.323419pt;}
.ws102{word-spacing:13.323516pt;}
.ws37{word-spacing:13.323647pt;}
.ws101{word-spacing:13.324924pt;}
.ws104{word-spacing:13.325468pt;}
.ws2f{word-spacing:13.333751pt;}
.ws7f{word-spacing:13.345893pt;}
.wsec{word-spacing:13.381829pt;}
.ws95{word-spacing:13.384470pt;}
.wse3{word-spacing:13.440011pt;}
.ws49{word-spacing:13.498193pt;}
.wse2{word-spacing:13.556375pt;}
.ws91{word-spacing:13.730921pt;}
.ws26{word-spacing:13.789102pt;}
.ws94{word-spacing:13.847284pt;}
.ws1b{word-spacing:13.905466pt;}
.ws1a{word-spacing:13.928675pt;}
.ws19{word-spacing:13.932019pt;}
.ws90{word-spacing:13.963648pt;}
.ws24{word-spacing:14.021830pt;}
.ws6e{word-spacing:14.055721pt;}
.ws54{word-spacing:14.080012pt;}
.ws36{word-spacing:14.138194pt;}
.wsac{word-spacing:14.196375pt;}
.ws100{word-spacing:14.254557pt;}
.ws6f{word-spacing:14.312739pt;}
.ws70{word-spacing:14.333054pt;}
.ws1f{word-spacing:14.370921pt;}
.wsdc{word-spacing:14.429103pt;}
.wsae{word-spacing:14.483301pt;}
.ws92{word-spacing:14.484197pt;}
.ws23{word-spacing:14.487205pt;}
.ws12{word-spacing:14.487285pt;}
.ws6a{word-spacing:14.545467pt;}
.ws9{word-spacing:14.601284pt;}
.ws68{word-spacing:14.603649pt;}
.wsf4{word-spacing:14.621967pt;}
.ws21{word-spacing:14.661830pt;}
.ws75{word-spacing:14.720012pt;}
.ws52{word-spacing:14.778194pt;}
.wsfc{word-spacing:14.836376pt;}
.ws8c{word-spacing:14.894558pt;}
.ws82{word-spacing:14.952740pt;}
.ws9b{word-spacing:15.010922pt;}
.ws61{word-spacing:15.069103pt;}
.ws3f{word-spacing:15.127285pt;}
.ws5b{word-spacing:15.185467pt;}
.ws43{word-spacing:15.243649pt;}
.ws3a{word-spacing:15.301831pt;}
.ws39{word-spacing:15.307913pt;}
.ws25{word-spacing:15.360013pt;}
.ws8e{word-spacing:15.418195pt;}
.ws8f{word-spacing:15.424418pt;}
.ws5a{word-spacing:15.476377pt;}
.wsdb{word-spacing:15.534558pt;}
.ws17{word-spacing:15.592740pt;}
.ws79{word-spacing:15.650922pt;}
.ws66{word-spacing:15.698388pt;}
.ws65{word-spacing:15.709104pt;}
.ws4d{word-spacing:15.767286pt;}
.ws77{word-spacing:15.825468pt;}
.ws60{word-spacing:15.883650pt;}
.ws4f{word-spacing:15.941831pt;}
.ws38{word-spacing:16.000013pt;}
.wsdf{word-spacing:16.002388pt;}
.wse5{word-spacing:16.058195pt;}
.ws84{word-spacing:16.116377pt;}
.ws55{word-spacing:16.174559pt;}
.ws87{word-spacing:16.189948pt;}
.ws22{word-spacing:16.232741pt;}
.wsa2{word-spacing:16.261751pt;}
.wsa0{word-spacing:16.290923pt;}
.wsad{word-spacing:16.349105pt;}
.ws5c{word-spacing:16.407286pt;}
.ws88{word-spacing:16.465468pt;}
.ws3d{word-spacing:16.523650pt;}
.ws69{word-spacing:16.581832pt;}
.ws98{word-spacing:16.629761pt;}
.ws97{word-spacing:16.640014pt;}
.ws8a{word-spacing:16.698196pt;}
.ws81{word-spacing:16.756378pt;}
.ws35{word-spacing:16.814559pt;}
.ws34{word-spacing:16.872741pt;}
.ws33{word-spacing:16.912428pt;}
.ws32{word-spacing:16.930923pt;}
.ws83{word-spacing:16.989105pt;}
.ws9a{word-spacing:17.047287pt;}
.wse{word-spacing:17.105469pt;}
.wsf{word-spacing:17.133054pt;}
.wsa1{word-spacing:17.149054pt;}
.ws59{word-spacing:17.163651pt;}
.ws103{word-spacing:17.189684pt;}
.ws10b{word-spacing:17.191609pt;}
.ws93{word-spacing:17.221833pt;}
.ws11{word-spacing:17.277054pt;}
.ws10{word-spacing:17.280014pt;}
.ws9f{word-spacing:17.338196pt;}
.wsda{word-spacing:17.396378pt;}
.wsf3{word-spacing:17.448634pt;}
.ws67{word-spacing:17.454560pt;}
.ws48{word-spacing:17.493751pt;}
.ws47{word-spacing:17.512742pt;}
.wsa8{word-spacing:17.570924pt;}
.wsea{word-spacing:17.629106pt;}
.ws6c{word-spacing:17.661815pt;}
.ws7d{word-spacing:17.687287pt;}
.ws50{word-spacing:17.745469pt;}
.ws58{word-spacing:17.803651pt;}
.ws15{word-spacing:17.858388pt;}
.ws14{word-spacing:17.861833pt;}
.ws9e{word-spacing:17.909761pt;}
.ws9d{word-spacing:17.920015pt;}
.ws3b{word-spacing:17.978197pt;}
.ws108{word-spacing:18.005621pt;}
.ws3c{word-spacing:18.036379pt;}
.ws41{word-spacing:18.192428pt;}
.ws40{word-spacing:18.210924pt;}
.ws86{word-spacing:18.269106pt;}
.ws4a{word-spacing:18.327288pt;}
.wsee{word-spacing:18.385470pt;}
.ws85{word-spacing:18.443652pt;}
.wsfe{word-spacing:18.501834pt;}
.ws4c{word-spacing:18.560015pt;}
.ws57{word-spacing:18.618197pt;}
.ws78{word-spacing:18.676379pt;}
.wsf8{word-spacing:18.734561pt;}
.wsfd{word-spacing:18.792743pt;}
.wsef{word-spacing:18.850925pt;}
.ws89{word-spacing:18.909107pt;}
.wsaf{word-spacing:18.967289pt;}
.wse0{word-spacing:19.025470pt;}
.ws76{word-spacing:19.083652pt;}
.wsab{word-spacing:19.141834pt;}
.ws44{word-spacing:19.200016pt;}
.ws45{word-spacing:19.316380pt;}
.ws42{word-spacing:19.432743pt;}
.wsa7{word-spacing:19.490925pt;}
.ws46{word-spacing:19.549107pt;}
.wsfa{word-spacing:19.781835pt;}
.ws4b{word-spacing:19.840017pt;}
.wsf0{word-spacing:19.898198pt;}
.wsf1{word-spacing:20.014562pt;}
.ws13{word-spacing:20.305471pt;}
.ws6b{word-spacing:20.605402pt;}
.ws6d{word-spacing:20.712745pt;}
.wsff{word-spacing:20.887290pt;}
.wsfb{word-spacing:21.061836pt;}
.wse6{word-spacing:22.981837pt;}
.ws16{word-spacing:23.156383pt;}
.ws31{word-spacing:25.466283pt;}
.ws2{word-spacing:26.539221pt;}
.ws7{word-spacing:38.809118pt;}
.ws8{word-spacing:38.844894pt;}
.wsc9{word-spacing:90.824055pt;}
.wsc8{word-spacing:91.720055pt;}
.wsba{word-spacing:150.178167pt;}
.wsc5{word-spacing:151.000823pt;}
.wsb7{word-spacing:156.551501pt;}
.wsc3{word-spacing:157.379490pt;}
.wscf{word-spacing:166.104201pt;}
.wscc{word-spacing:166.302157pt;}
.wsd4{word-spacing:172.680823pt;}
.wsb3{word-spacing:175.047501pt;}
.wsb9{word-spacing:181.420834pt;}
.wsce{word-spacing:181.604813pt;}
.wscd{word-spacing:187.983479pt;}
.wsd3{word-spacing:196.906146pt;}
.wsc6{word-spacing:202.894336pt;}
.wsd1{word-spacing:203.284813pt;}
._2d{margin-left:-8.552734pt;}
._f{margin-left:-7.066835pt;}
._8{margin-left:-5.951019pt;}
._b{margin-left:-4.383560pt;}
._3{margin-left:-2.975509pt;}
._0{margin-left:-1.434624pt;}
._4{width:1.248656pt;}
._d{width:2.645587pt;}
._e{width:6.460809pt;}
._21{width:8.137284pt;}
._5{width:11.418435pt;}
._2e{width:13.381829pt;}
._6{width:17.024205pt;}
._19{width:18.331307pt;}
._30{width:20.449171pt;}
._31{width:25.012958pt;}
._2f{width:26.766392pt;}
._2{width:28.050389pt;}
._c{width:31.878839pt;}
._1{width:34.427324pt;}
._9{width:38.256640pt;}
._a{width:64.412979pt;}
._22{width:88.553088pt;}
._18{width:150.221073pt;}
._23{width:166.352623pt;}
._17{width:175.087889pt;}
._20{width:176.522513pt;}
._24{width:181.666867pt;}
._16{width:190.397645pt;}
._1f{width:191.825169pt;}
._25{width:196.938965pt;}
._2b{width:205.756962pt;}
._1d{width:263.970816pt;}
._1e{width:265.214157pt;}
._1c{width:289.698406pt;}
._15{width:294.958694pt;}
._13{width:318.582170pt;}
._14{width:319.506705pt;}
._12{width:344.373521pt;}
._29{width:349.888853pt;}
._2a{width:351.164075pt;}
._28{width:375.648324pt;}
._27{width:737.492378pt;}
._11{width:786.142071pt;}
._1b{width:798.958046pt;}
._1a{width:985.937374pt;}
._26{width:1026.585054pt;}
._10{width:1027.573350pt;}
._2c{width:1535.208977pt;}
._7{width:1561.800977pt;}
.fsb{font-size:26.566933pt;}
.fsc{font-size:27.895467pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fsa{font-size:39.850667pt;}
.fs7{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fs2{font-size:63.761067pt;}
.fs5{font-size:74.387733pt;}
.fs1{font-size:116.894933pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:26.552000pt;}
.y3b{bottom:37.178667pt;}
.y66{bottom:43.446667pt;}
.y3a{bottom:47.805333pt;}
.y15a{bottom:71.997333pt;}
.y159{bottom:91.553333pt;}
.yd7{bottom:102.608000pt;}
.y65{bottom:102.609333pt;}
.y158{bottom:103.509333pt;}
.yfa{bottom:104.237333pt;}
.y10{bottom:104.373333pt;}
.y8f{bottom:109.684000pt;}
.yae{bottom:111.216000pt;}
.y157{bottom:112.958667pt;}
.y19c{bottom:114.088000pt;}
.y23a{bottom:115.130667pt;}
.y17b{bottom:116.326667pt;}
.y10a{bottom:117.521333pt;}
.y1c5{bottom:122.357333pt;}
.yd6{bottom:122.376000pt;}
.y234{bottom:122.517333pt;}
.y64{bottom:122.520000pt;}
.y1e8{bottom:122.526667pt;}
.yf9{bottom:124.162667pt;}
.y156{bottom:124.230667pt;}
.y39{bottom:124.572000pt;}
.y8e{bottom:129.609333pt;}
.yad{bottom:131.141333pt;}
.yf{bottom:132.932000pt;}
.y19b{bottom:134.013333pt;}
.y239{bottom:135.056000pt;}
.y155{bottom:136.186667pt;}
.y17a{bottom:136.252000pt;}
.y109{bottom:137.446667pt;}
.y1c4{bottom:142.106667pt;}
.yd5{bottom:142.144000pt;}
.y233{bottom:142.426667pt;}
.y63{bottom:142.430667pt;}
.y1e7{bottom:142.444000pt;}
.y38{bottom:142.505333pt;}
.yf8{bottom:144.221333pt;}
.ye{bottom:146.880000pt;}
.y8d{bottom:149.534667pt;}
.yac{bottom:151.198667pt;}
.y19a{bottom:153.938667pt;}
.y20b{bottom:154.317333pt;}
.y238{bottom:154.981333pt;}
.y179{bottom:156.177333pt;}
.y154{bottom:156.908000pt;}
.y108{bottom:157.372000pt;}
.y37{bottom:160.437333pt;}
.y1c3{bottom:161.856000pt;}
.yd4{bottom:161.912000pt;}
.y232{bottom:162.334667pt;}
.y62{bottom:162.341333pt;}
.y1e6{bottom:162.494667pt;}
.y153{bottom:168.864000pt;}
.y8c{bottom:169.593333pt;}
.yd{bottom:171.454667pt;}
.y199{bottom:173.864000pt;}
.y20a{bottom:174.242667pt;}
.y237{bottom:174.906667pt;}
.yf7{bottom:176.101333pt;}
.y178{bottom:176.102667pt;}
.y107{bottom:177.297333pt;}
.y36{bottom:178.370667pt;}
.y1c2{bottom:181.604000pt;}
.y23b{bottom:181.605333pt;}
.yd3{bottom:181.680000pt;}
.y231{bottom:182.244000pt;}
.y61{bottom:182.252000pt;}
.yab{bottom:183.080000pt;}
.yc{bottom:185.402667pt;}
.y129{bottom:186.997333pt;}
.y152{bottom:189.585333pt;}
.y8b{bottom:193.504000pt;}
.y198{bottom:193.788000pt;}
.y209{bottom:194.300000pt;}
.y1e5{bottom:194.301333pt;}
.y236{bottom:194.832000pt;}
.yf6{bottom:196.026667pt;}
.y35{bottom:196.302667pt;}
.y106{bottom:197.222667pt;}
.y128{bottom:199.616000pt;}
.y1c1{bottom:201.353333pt;}
.y151{bottom:201.541333pt;}
.yd2{bottom:201.580000pt;}
.y230{bottom:202.152000pt;}
.y60{bottom:202.164000pt;}
.yaa{bottom:203.005333pt;}
.y150{bottom:210.290667pt;}
.y127{bottom:212.236000pt;}
.yb{bottom:212.545333pt;}
.y197{bottom:213.713333pt;}
.y1e4{bottom:214.220000pt;}
.y34{bottom:214.236000pt;}
.y235{bottom:214.757333pt;}
.yf5{bottom:215.952000pt;}
.y105{bottom:217.281333pt;}
.y1c0{bottom:221.102667pt;}
.y22f{bottom:222.061333pt;}
.y5f{bottom:222.074667pt;}
.y14f{bottom:222.264000pt;}
.ya9{bottom:222.930667pt;}
.y126{bottom:224.854667pt;}
.y208{bottom:226.181333pt;}
.yd1{bottom:231.896000pt;}
.y33{bottom:232.169333pt;}
.y196{bottom:233.638667pt;}
.y1e3{bottom:234.137333pt;}
.y14e{bottom:234.218667pt;}
.ya{bottom:234.464000pt;}
.y8a{bottom:234.682667pt;}
.yf4{bottom:235.877333pt;}
.y125{bottom:237.474667pt;}
.y1bf{bottom:240.852000pt;}
.y22e{bottom:241.969333pt;}
.y5e{bottom:241.985333pt;}
.ya8{bottom:242.856000pt;}
.y207{bottom:246.106667pt;}
.y9{bottom:248.410667pt;}
.y104{bottom:249.161333pt;}
.y124{bottom:250.093333pt;}
.y32{bottom:250.101333pt;}
.yd0{bottom:251.662667pt;}
.y195{bottom:253.564000pt;}
.y1e2{bottom:254.056000pt;}
.y89{bottom:254.608000pt;}
.y14d{bottom:254.941333pt;}
.yf3{bottom:255.802667pt;}
.y1be{bottom:260.601333pt;}
.y22d{bottom:261.878667pt;}
.y5d{bottom:261.896000pt;}
.y8{bottom:262.358667pt;}
.ya7{bottom:262.781333pt;}
.y206{bottom:266.164000pt;}
.y14c{bottom:266.896000pt;}
.y31{bottom:268.034667pt;}
.y103{bottom:269.086667pt;}
.ycf{bottom:271.430667pt;}
.y194{bottom:273.489333pt;}
.y123{bottom:273.597333pt;}
.y1e1{bottom:273.973333pt;}
.y88{bottom:274.533333pt;}
.yf2{bottom:275.728000pt;}
.y1bd{bottom:280.349333pt;}
.y22c{bottom:281.786667pt;}
.y5c{bottom:281.806667pt;}
.ya6{bottom:282.706667pt;}
.y7{bottom:284.277333pt;}
.y122{bottom:285.552000pt;}
.y30{bottom:285.966667pt;}
.y14a{bottom:287.618667pt;}
.y102{bottom:289.012000pt;}
.yce{bottom:291.198667pt;}
.y193{bottom:293.414667pt;}
.y1e0{bottom:294.024000pt;}
.y87{bottom:294.458667pt;}
.yf1{bottom:295.653333pt;}
.y121{bottom:297.508000pt;}
.y205{bottom:298.045333pt;}
.y6{bottom:298.224000pt;}
.y14b{bottom:299.573333pt;}
.y1bc{bottom:300.098667pt;}
.y22b{bottom:301.696000pt;}
.y5b{bottom:301.717333pt;}
.ya5{bottom:302.630667pt;}
.y149{bottom:302.966667pt;}
.y169{bottom:303.522667pt;}
.y2f{bottom:303.900000pt;}
.y101{bottom:308.937333pt;}
.y120{bottom:309.168000pt;}
.ycd{bottom:310.966667pt;}
.y192{bottom:313.340000pt;}
.y86{bottom:314.384000pt;}
.y148{bottom:314.921333pt;}
.yf0{bottom:315.578667pt;}
.y168{bottom:316.141333pt;}
.y204{bottom:317.970667pt;}
.y11e{bottom:318.229333pt;}
.y1bb{bottom:319.848000pt;}
.y5{bottom:320.142667pt;}
.y147{bottom:320.296000pt;}
.y11f{bottom:321.122667pt;}
.y22a{bottom:321.605333pt;}
.y5a{bottom:321.629333pt;}
.y2e{bottom:321.832000pt;}
.ya4{bottom:322.556000pt;}
.y167{bottom:328.761333pt;}
.y100{bottom:328.862667pt;}
.y11d{bottom:330.185333pt;}
.ycc{bottom:330.733333pt;}
.y146{bottom:332.250667pt;}
.y191{bottom:333.265333pt;}
.y1df{bottom:333.801333pt;}
.y4{bottom:334.089333pt;}
.y85{bottom:334.309333pt;}
.yef{bottom:335.504000pt;}
.y203{bottom:337.896000pt;}
.y1ba{bottom:339.597333pt;}
.y2d{bottom:339.765333pt;}
.y166{bottom:341.380000pt;}
.y229{bottom:341.513333pt;}
.y59{bottom:341.540000pt;}
.ya3{bottom:342.481333pt;}
.yff{bottom:348.788000pt;}
.ycb{bottom:350.501333pt;}
.y11c{bottom:350.906667pt;}
.y145{bottom:352.973333pt;}
.y190{bottom:353.190667pt;}
.y165{bottom:354.000000pt;}
.y84{bottom:354.234667pt;}
.yee{bottom:355.429333pt;}
.y3{bottom:356.008000pt;}
.y2c{bottom:357.698667pt;}
.y202{bottom:357.820000pt;}
.y1b9{bottom:359.345333pt;}
.y228{bottom:361.422667pt;}
.y58{bottom:361.450667pt;}
.ya2{bottom:362.406667pt;}
.y11b{bottom:362.862667pt;}
.y144{bottom:364.928000pt;}
.y164{bottom:366.618667pt;}
.yfe{bottom:368.713333pt;}
.y2{bottom:369.956000pt;}
.yca{bottom:370.269333pt;}
.y18f{bottom:373.116000pt;}
.y83{bottom:374.160000pt;}
.yed{bottom:375.354667pt;}
.y2b{bottom:375.630667pt;}
.y201{bottom:377.878667pt;}
.y1b8{bottom:379.094667pt;}
.y163{bottom:379.238667pt;}
.y1de{bottom:381.192000pt;}
.y227{bottom:381.330667pt;}
.y57{bottom:381.361333pt;}
.ya1{bottom:382.332000pt;}
.y1{bottom:383.902667pt;}
.y143{bottom:385.650667pt;}
.y11a{bottom:386.241333pt;}
.yfd{bottom:388.638667pt;}
.yc9{bottom:390.037333pt;}
.y18e{bottom:393.041333pt;}
.y2a{bottom:393.564000pt;}
.y82{bottom:394.085333pt;}
.y177{bottom:395.280000pt;}
.y162{bottom:396.100000pt;}
.y142{bottom:397.605333pt;}
.y119{bottom:398.196000pt;}
.y1b7{bottom:398.844000pt;}
.y1dd{bottom:401.109333pt;}
.y226{bottom:401.240000pt;}
.y56{bottom:401.272000pt;}
.ya0{bottom:402.257333pt;}
.yec{bottom:405.906667pt;}
.y141{bottom:407.200000pt;}
.y161{bottom:408.054667pt;}
.yfc{bottom:408.696000pt;}
.y200{bottom:409.758667pt;}
.yc8{bottom:409.804000pt;}
.y118{bottom:410.152000pt;}
.y29{bottom:411.496000pt;}
.y18d{bottom:412.966667pt;}
.y81{bottom:414.009333pt;}
.y176{bottom:415.205333pt;}
.y140{bottom:418.328000pt;}
.y1b6{bottom:418.593333pt;}
.y1dc{bottom:421.028000pt;}
.y225{bottom:421.148000pt;}
.y55{bottom:421.184000pt;}
.y117{bottom:421.812000pt;}
.y9f{bottom:422.182667pt;}
.y160{bottom:429.176000pt;}
.y28{bottom:429.429333pt;}
.yc7{bottom:429.572000pt;}
.y1ff{bottom:429.684000pt;}
.y13f{bottom:430.284000pt;}
.y115{bottom:430.873333pt;}
.yfb{bottom:432.606667pt;}
.y18c{bottom:432.892000pt;}
.y116{bottom:433.768000pt;}
.y80{bottom:433.934667pt;}
.y175{bottom:435.130667pt;}
.yeb{bottom:436.458667pt;}
.y1b5{bottom:438.341333pt;}
.y1db{bottom:440.945333pt;}
.y224{bottom:441.057333pt;}
.y54{bottom:441.094667pt;}
.y15f{bottom:441.130667pt;}
.y9e{bottom:442.108000pt;}
.y114{bottom:442.829333pt;}
.y27{bottom:447.361333pt;}
.yc6{bottom:449.340000pt;}
.y1fe{bottom:449.609333pt;}
.y13e{bottom:451.005333pt;}
.y18b{bottom:452.817333pt;}
.y15e{bottom:453.086667pt;}
.y7f{bottom:453.860000pt;}
.y174{bottom:455.056000pt;}
.yea{bottom:456.384000pt;}
.y1b4{bottom:458.090667pt;}
.y223{bottom:460.965333pt;}
.y53{bottom:461.005333pt;}
.y9d{bottom:462.033333pt;}
.y13d{bottom:462.961333pt;}
.y113{bottom:463.552000pt;}
.y15d{bottom:465.041333pt;}
.y26{bottom:465.294667pt;}
.y1da{bottom:466.177333pt;}
.yc5{bottom:469.108000pt;}
.y1fd{bottom:469.534667pt;}
.y18a{bottom:472.742667pt;}
.y7e{bottom:473.785333pt;}
.y112{bottom:475.506667pt;}
.ye9{bottom:476.309333pt;}
.y1b3{bottom:477.840000pt;}
.y173{bottom:480.294667pt;}
.y15c{bottom:480.476000pt;}
.y222{bottom:480.874667pt;}
.y52{bottom:480.916000pt;}
.y13c{bottom:481.026667pt;}
.y9c{bottom:481.958667pt;}
.y25{bottom:483.228000pt;}
.yc4{bottom:488.874667pt;}
.y1fc{bottom:489.460000pt;}
.y13b{bottom:490.620000pt;}
.y189{bottom:492.668000pt;}
.y7d{bottom:493.710667pt;}
.y111{bottom:493.970667pt;}
.ye8{bottom:496.234667pt;}
.y1b2{bottom:497.589333pt;}
.y15b{bottom:497.628000pt;}
.y221{bottom:500.782667pt;}
.y51{bottom:500.826667pt;}
.y24{bottom:501.160000pt;}
.y13a{bottom:501.749333pt;}
.y9b{bottom:501.884000pt;}
.y110{bottom:505.925333pt;}
.y1d9{bottom:507.245333pt;}
.yc3{bottom:508.642667pt;}
.y1fb{bottom:509.385333pt;}
.y188{bottom:512.593333pt;}
.y7c{bottom:513.636000pt;}
.y139{bottom:513.704000pt;}
.ye7{bottom:516.160000pt;}
.y1b1{bottom:517.337333pt;}
.y10f{bottom:517.881333pt;}
.y23{bottom:519.093333pt;}
.y220{bottom:520.692000pt;}
.y50{bottom:520.737333pt;}
.y172{bottom:521.473333pt;}
.y9a{bottom:521.809333pt;}
.y1d8{bottom:527.162667pt;}
.yc2{bottom:528.410667pt;}
.y1fa{bottom:529.310667pt;}
.y10e{bottom:529.836000pt;}
.y187{bottom:532.518667pt;}
.y7b{bottom:533.561333pt;}
.y138{bottom:534.426667pt;}
.ye6{bottom:536.085333pt;}
.y22{bottom:537.025333pt;}
.y1b0{bottom:537.086667pt;}
.y21f{bottom:540.601333pt;}
.y4f{bottom:540.649333pt;}
.y171{bottom:541.398667pt;}
.y99{bottom:541.734667pt;}
.y137{bottom:546.381333pt;}
.y1d7{bottom:547.081333pt;}
.y10d{bottom:547.928000pt;}
.yc1{bottom:548.178667pt;}
.y1f9{bottom:549.236000pt;}
.y186{bottom:552.444000pt;}
.y7a{bottom:553.486667pt;}
.y21{bottom:554.958667pt;}
.ye5{bottom:556.010667pt;}
.y1af{bottom:556.836000pt;}
.y21e{bottom:560.509333pt;}
.y4e{bottom:560.560000pt;}
.y170{bottom:561.324000pt;}
.y98{bottom:561.660000pt;}
.y10c{bottom:566.020000pt;}
.y1d6{bottom:566.998667pt;}
.y135{bottom:567.104000pt;}
.yc0{bottom:567.945333pt;}
.y1f8{bottom:569.161333pt;}
.y185{bottom:572.369333pt;}
.y20{bottom:572.890667pt;}
.y79{bottom:573.412000pt;}
.ye4{bottom:575.936000pt;}
.y1ae{bottom:576.585333pt;}
.y136{bottom:579.058667pt;}
.y21d{bottom:580.418667pt;}
.y4d{bottom:580.470667pt;}
.y16f{bottom:581.249333pt;}
.y97{bottom:581.585333pt;}
.y134{bottom:582.674667pt;}
.y1d5{bottom:586.917333pt;}
.ybf{bottom:587.713333pt;}
.y1f7{bottom:589.086667pt;}
.y184{bottom:592.294667pt;}
.y78{bottom:593.337333pt;}
.y133{bottom:594.629333pt;}
.ye3{bottom:595.861333pt;}
.y1ad{bottom:596.334667pt;}
.y10b{bottom:596.366667pt;}
.y1f{bottom:599.450667pt;}
.y132{bottom:599.781333pt;}
.y21c{bottom:600.326667pt;}
.y4c{bottom:600.381333pt;}
.y16e{bottom:601.174667pt;}
.y96{bottom:601.510667pt;}
.y1d4{bottom:606.834667pt;}
.ybe{bottom:607.481333pt;}
.y1f6{bottom:609.012000pt;}
.y131{bottom:611.736000pt;}
.y183{bottom:612.220000pt;}
.y77{bottom:613.262667pt;}
.y1ac{bottom:616.082667pt;}
.y21b{bottom:620.236000pt;}
.y4b{bottom:620.292000pt;}
.y16d{bottom:621.100000pt;}
.y95{bottom:621.436000pt;}
.y1d3{bottom:626.753333pt;}
.ybd{bottom:627.249333pt;}
.y1f5{bottom:628.937333pt;}
.ye2{bottom:629.070667pt;}
.y182{bottom:632.145333pt;}
.y76{bottom:633.188000pt;}
.y130{bottom:635.513333pt;}
.y1ab{bottom:635.832000pt;}
.y21a{bottom:640.144000pt;}
.y4a{bottom:640.204000pt;}
.y16c{bottom:641.025333pt;}
.y94{bottom:641.361333pt;}
.y1e{bottom:644.696000pt;}
.y1d2{bottom:646.670667pt;}
.ybc{bottom:647.016000pt;}
.y12f{bottom:647.469333pt;}
.y1f4{bottom:648.862667pt;}
.ye1{bottom:648.996000pt;}
.y181{bottom:652.070667pt;}
.y75{bottom:653.113333pt;}
.y1aa{bottom:655.581333pt;}
.y12e{bottom:659.424000pt;}
.y219{bottom:660.053333pt;}
.y49{bottom:660.114667pt;}
.y16b{bottom:660.950667pt;}
.y93{bottom:661.286667pt;}
.y1d{bottom:662.318667pt;}
.y1d1{bottom:666.588000pt;}
.ybb{bottom:666.784000pt;}
.y1f3{bottom:668.788000pt;}
.ye0{bottom:668.921333pt;}
.y12d{bottom:671.380000pt;}
.y180{bottom:671.996000pt;}
.y74{bottom:673.038667pt;}
.y1a9{bottom:675.330667pt;}
.y1c{bottom:678.260000pt;}
.y218{bottom:679.961333pt;}
.y48{bottom:680.025333pt;}
.y16a{bottom:681.009333pt;}
.y92{bottom:681.212000pt;}
.y1d0{bottom:686.506667pt;}
.yba{bottom:686.552000pt;}
.y1f2{bottom:688.713333pt;}
.y12c{bottom:689.470667pt;}
.y73{bottom:692.964000pt;}
.y1b{bottom:694.200000pt;}
.y1a8{bottom:695.078667pt;}
.y217{bottom:699.870667pt;}
.y47{bottom:699.936000pt;}
.ydf{bottom:702.129333pt;}
.y1a{bottom:705.800000pt;}
.y1cf{bottom:706.424000pt;}
.yb9{bottom:706.452000pt;}
.y1f1{bottom:708.638667pt;}
.y17f{bottom:711.885333pt;}
.y72{bottom:712.889333pt;}
.y1a7{bottom:714.828000pt;}
.y216{bottom:719.778667pt;}
.y12b{bottom:719.817333pt;}
.y46{bottom:719.846667pt;}
.y91{bottom:721.102667pt;}
.yde{bottom:722.054667pt;}
.y19{bottom:723.424000pt;}
.yb8{bottom:723.853333pt;}
.y1ce{bottom:726.342667pt;}
.y17e{bottom:726.497333pt;}
.y1f0{bottom:728.564000pt;}
.y71{bottom:732.814667pt;}
.y1a6{bottom:734.577333pt;}
.y90{bottom:735.714667pt;}
.y215{bottom:739.688000pt;}
.y45{bottom:739.757333pt;}
.y17d{bottom:741.109333pt;}
.ydd{bottom:741.980000pt;}
.y18{bottom:742.994667pt;}
.y1cd{bottom:746.260000pt;}
.y1ef{bottom:748.489333pt;}
.y70{bottom:752.740000pt;}
.yb7{bottom:754.158667pt;}
.y1a5{bottom:754.326667pt;}
.y17c{bottom:755.721333pt;}
.y214{bottom:759.597333pt;}
.y44{bottom:759.669333pt;}
.y17{bottom:761.590667pt;}
.ydc{bottom:761.905333pt;}
.y1cc{bottom:766.178667pt;}
.y1ee{bottom:768.414667pt;}
.y12a{bottom:770.645333pt;}
.y6f{bottom:772.665333pt;}
.yb6{bottom:773.925333pt;}
.y1a4{bottom:774.074667pt;}
.y213{bottom:779.505333pt;}
.y43{bottom:779.580000pt;}
.y16{bottom:780.188000pt;}
.ydb{bottom:781.830667pt;}
.y1cb{bottom:786.096000pt;}
.y1ed{bottom:788.340000pt;}
.y6e{bottom:792.590667pt;}
.yb5{bottom:793.693333pt;}
.y1a3{bottom:793.824000pt;}
.y212{bottom:799.414667pt;}
.y42{bottom:799.490667pt;}
.yda{bottom:801.756000pt;}
.y1ca{bottom:806.014667pt;}
.y1ec{bottom:808.397333pt;}
.y6d{bottom:812.516000pt;}
.yb4{bottom:813.461333pt;}
.y1a2{bottom:813.573333pt;}
.y15{bottom:819.157333pt;}
.y211{bottom:819.322667pt;}
.y41{bottom:819.401333pt;}
.yd9{bottom:821.681333pt;}
.y1c9{bottom:831.245333pt;}
.y6c{bottom:832.441333pt;}
.yb3{bottom:833.229333pt;}
.y1a1{bottom:833.322667pt;}
.y210{bottom:839.232000pt;}
.y40{bottom:839.312000pt;}
.y1eb{bottom:840.278667pt;}
.yd8{bottom:841.740000pt;}
.y14{bottom:851.304000pt;}
.y6b{bottom:852.366667pt;}
.yb2{bottom:852.997333pt;}
.y1a0{bottom:853.070667pt;}
.y20f{bottom:859.140000pt;}
.y1ea{bottom:860.204000pt;}
.y3f{bottom:864.537333pt;}
.y6a{bottom:872.292000pt;}
.y1c8{bottom:872.313333pt;}
.yb1{bottom:872.764000pt;}
.y19f{bottom:872.820000pt;}
.y20e{bottom:879.049333pt;}
.y1e9{bottom:880.261333pt;}
.y13{bottom:883.449333pt;}
.y69{bottom:892.217333pt;}
.y1c7{bottom:892.232000pt;}
.yb0{bottom:892.532000pt;}
.y19e{bottom:892.569333pt;}
.y20d{bottom:898.957333pt;}
.y68{bottom:912.142667pt;}
.y1c6{bottom:912.149333pt;}
.yaf{bottom:912.300000pt;}
.y19d{bottom:912.318667pt;}
.y3e{bottom:912.938667pt;}
.y12{bottom:915.596000pt;}
.y20c{bottom:928.082667pt;}
.y3d{bottom:931.402667pt;}
.y67{bottom:932.068000pt;}
.y11{bottom:947.741333pt;}
.h7{height:22.635179pt;}
.hb{height:26.407456pt;}
.ha{height:27.709232pt;}
.h13{height:28.293973pt;}
.h2{height:33.952768pt;}
.h3{height:35.626496pt;}
.h1{height:35.722138pt;}
.hc{height:37.725045pt;}
.h14{height:39.995179pt;}
.h9{height:41.309125pt;}
.h11{height:41.497701pt;}
.h10{height:43.309573pt;}
.he{height:47.501995pt;}
.hf{height:49.514810pt;}
.h6{height:49.548789pt;}
.h5{height:49.554123pt;}
.hd{height:51.300112pt;}
.h8{height:55.418861pt;}
.h4{height:82.995403pt;}
.h12{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.w1{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:43.446667pt;}
.x7{left:45.354667pt;}
.x1{left:46.492000pt;}
.x3{left:50.477333pt;}
.x37{left:53.118667pt;}
.x2{left:67.416000pt;}
.x1d{left:97.294667pt;}
.xb{left:105.058667pt;}
.x16{left:107.429333pt;}
.x1e{left:117.220000pt;}
.x14{left:165.385333pt;}
.x27{left:179.036000pt;}
.x31{left:192.374667pt;}
.xe{left:225.294667pt;}
.x1a{left:226.888000pt;}
.x21{left:239.309333pt;}
.x5{left:240.510667pt;}
.x4{left:245.745333pt;}
.x3a{left:248.654667pt;}
.x38{left:251.058667pt;}
.xa{left:252.386667pt;}
.x8{left:253.509333pt;}
.x39{left:260.290667pt;}
.x6{left:261.480000pt;}
.x2b{left:266.321333pt;}
.x32{left:267.914667pt;}
.x3b{left:274.836000pt;}
.x17{left:317.202667pt;}
.x1b{left:318.797333pt;}
.xd{left:349.430667pt;}
.x20{left:353.450667pt;}
.x34{left:366.049333pt;}
.x33{left:367.644000pt;}
.x2a{left:382.157333pt;}
.x22{left:395.801333pt;}
.xf{left:409.112000pt;}
.x2c{left:465.778667pt;}
.x23{left:495.412000pt;}
.x10{left:501.020000pt;}
.xc{left:533.860000pt;}
.x2d{left:539.485333pt;}
.x9{left:556.596000pt;}
.x28{left:573.658667pt;}
.x18{left:586.712000pt;}
.x1c{left:588.305333pt;}
.x36{left:625.188000pt;}
.x35{left:626.781333pt;}
.x24{left:651.904000pt;}
.x11{left:672.404000pt;}
.x2e{left:724.917333pt;}
.x25{left:751.290667pt;}
.x12{left:758.096000pt;}
.x19{left:759.689333pt;}
.x2f{left:798.624000pt;}
.x29{left:810.532000pt;}
.x26{left:839.420000pt;}
.x13{left:852.172000pt;}
.x15{left:853.765333pt;}
.x30{left:887.888000pt;}
}




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