
    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_648ff08fd34b3cde47f6d217.woff')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_6b68057f3022b83c986f4107.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_bdfe4ecad440ca5d9c7c03d5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.998000;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_890015dc847bbfaf2b3c2edd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.944000;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_9cec24723c8abd07bfcf22a4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.089000;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_6f0c53f107607e0b6c136f32.woff')format("woff");}.ff6{font-family:ff6;line-height:1.002000;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_fdb2f7a015ae29e274d9ab54.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_c037e848e4be73c700b7f725.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_021190abac95e337506b4a3c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.968000;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_79f6376aee8f7f198fec7b6d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_12e88ee3dff37503b82bbeef.woff')format("woff");}.ffb{font-family:ffb;line-height:0.722000;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_9b8a97a0b17ff76549b6c608.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_726b572bb87a53bb3e3902ff.woff')format("woff");}.ffd{font-family:ffd;line-height:0.554000;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_32dd4180250f1cedd80cd50e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916000;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_1c5c3eafae1382c63761d257.woff')format("woff");}.fff{font-family:fff;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_552d034c60715d7041dde31f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b94b8631fd398749869ff51d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fb91afb6ff6ef2fd9c204642.woff')format("woff");}.ff12{font-family:ff12;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1ea98ec053459271769afd01.woff')format("woff");}.ff13{font-family:ff13;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_43b2fe66e9f9001eeadc95c8.woff')format("woff");}.ff14{font-family:ff14;line-height:0.774069;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_009a63be02090f5a38beca36.woff')format("woff");}.ff15{font-family:ff15;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e8d6399680ca00623068f51c.woff')format("woff");}.ff16{font-family:ff16;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_66ec4567c57039947284c95b.woff')format("woff");}.ff17{font-family:ff17;line-height:0.457000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_94e6199f924c329486cab7fd.woff')format("woff");}.ff18{font-family:ff18;line-height:0.469000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_0bf780b0b0bded6dac4e231d.woff')format("woff");}.ff19{font-family:ff19;line-height:1.001000;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);}
.ve{vertical-align:-32.364000px;}
.v8{vertical-align:-30.126000px;}
.vb{vertical-align:-19.530000px;}
.vd{vertical-align:-17.358000px;}
.vf{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.234000px;}
.v1{vertical-align:18.024000px;}
.va{vertical-align:19.530000px;}
.v3{vertical-align:45.324000px;}
.v5{vertical-align:48.108000px;}
.v6{vertical-align:49.602000px;}
.v4{vertical-align:50.856000px;}
.v9{vertical-align:52.824000px;}
.vc{vertical-align:83.754000px;}
.v2{vertical-align:85.230000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.005400px;}
.ls17{letter-spacing:2.979921px;}
.ls23{letter-spacing:2.991815px;}
.lsa{letter-spacing:3.512204px;}
.ls29{letter-spacing:4.608048px;}
.ls25{letter-spacing:15.224947px;}
.ls2d{letter-spacing:15.378141px;}
.lsf{letter-spacing:15.492141px;}
.ls2e{letter-spacing:16.752141px;}
.ls2b{letter-spacing:18.452851px;}
.ls2a{letter-spacing:19.558019px;}
.ls20{letter-spacing:23.051937px;}
.ls2c{letter-spacing:23.075400px;}
.lsc{letter-spacing:23.090550px;}
.ls10{letter-spacing:23.237400px;}
.lse{letter-spacing:23.240550px;}
.ls18{letter-spacing:23.721825px;}
.ls26{letter-spacing:24.104550px;}
.ls27{letter-spacing:24.411825px;}
.ls32{letter-spacing:24.725400px;}
.ls30{letter-spacing:24.728550px;}
.ls8{letter-spacing:25.400550px;}
.lsd{letter-spacing:25.401825px;}
.ls15{letter-spacing:25.403400px;}
.ls1a{letter-spacing:26.411400px;}
.ls11{letter-spacing:27.638400px;}
.ls13{letter-spacing:27.639600px;}
.ls21{letter-spacing:27.645600px;}
.ls22{letter-spacing:27.819825px;}
.ls31{letter-spacing:32.525400px;}
.ls7{letter-spacing:32.709427px;}
.ls6{letter-spacing:32.718704px;}
.lsb{letter-spacing:32.724704px;}
.ls12{letter-spacing:32.726208px;}
.ls1d{letter-spacing:32.726400px;}
.ls1e{letter-spacing:32.727714px;}
.ls1f{letter-spacing:32.731919px;}
.ls2f{letter-spacing:33.779400px;}
.ls14{letter-spacing:38.700704px;}
.ls16{letter-spacing:41.013150px;}
.ls1c{letter-spacing:47.823149px;}
.ls2{letter-spacing:62.479500px;}
.ls4{letter-spacing:73.239150px;}
.ls3{letter-spacing:86.753270px;}
.ls1{letter-spacing:110.940964px;}
.ls5{letter-spacing:120.633256px;}
.ls1b{letter-spacing:247.617149px;}
.ls33{letter-spacing:403.013400px;}
.ls28{letter-spacing:440.234400px;}
.ls9{letter-spacing:468.773400px;}
.ls24{letter-spacing:728.430141px;}
.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;}
}
.wse{word-spacing:-67.248000px;}
.ws55{word-spacing:-59.775750px;}
.ws8b{word-spacing:-47.876947px;}
.ws114{word-spacing:-41.007178px;}
.ws6{word-spacing:-28.384036px;}
.wsb{word-spacing:-27.641618px;}
.ws44{word-spacing:-21.053107px;}
.ws5f{word-spacing:-15.638736px;}
.ws5d{word-spacing:-15.635839px;}
.wsaf{word-spacing:-15.633815px;}
.wse4{word-spacing:-15.472420px;}
.wsae{word-spacing:-15.214188px;}
.wse5{word-spacing:-15.106591px;}
.ws5c{word-spacing:-14.903576px;}
.ws60{word-spacing:-14.891397px;}
.ws5e{word-spacing:-14.889510px;}
.ws52{word-spacing:-14.622405px;}
.wsec{word-spacing:-14.568607px;}
.ws6c{word-spacing:-14.353413px;}
.ws8{word-spacing:-14.059315px;}
.ws40{word-spacing:-14.023450px;}
.wsf9{word-spacing:-13.966065px;}
.ws72{word-spacing:-13.761631px;}
.wsf{word-spacing:-13.720706px;}
.ws3{word-spacing:-13.634628px;}
.wsc7{word-spacing:-13.630620px;}
.wsfa{word-spacing:-13.600236px;}
.wsb5{word-spacing:-13.589476px;}
.wse6{word-spacing:-13.575583px;}
.wsb3{word-spacing:-13.535677px;}
.wsd6{word-spacing:-13.320484px;}
.wsb2{word-spacing:-13.233531px;}
.ws8c{word-spacing:-13.223647px;}
.wsb4{word-spacing:-13.203510px;}
.ws2f{word-spacing:-13.190172px;}
.ws4{word-spacing:-13.169848px;}
.wse2{word-spacing:-13.151881px;}
.wsd4{word-spacing:-13.008453px;}
.wsd5{word-spacing:-12.954655px;}
.wsa8{word-spacing:-12.578066px;}
.ws30{word-spacing:-12.470469px;}
.wse1{word-spacing:-12.416671px;}
.ws90{word-spacing:-12.244516px;}
.ws3f{word-spacing:-11.986284px;}
.ws8f{word-spacing:-11.932485px;}
.ws3e{word-spacing:-11.878687px;}
.ws6f{word-spacing:-11.717292px;}
.ws94{word-spacing:-11.502098px;}
.ws95{word-spacing:-11.448300px;}
.wsd7{word-spacing:-11.276145px;}
.wsa5{word-spacing:-11.233106px;}
.ws38{word-spacing:-11.179308px;}
.ws105{word-spacing:-11.125509px;}
.ws7f{word-spacing:-11.017912px;}
.ws49{word-spacing:-10.899556px;}
.ws69{word-spacing:-10.856517px;}
.ws56{word-spacing:-10.812238px;}
.wsaa{word-spacing:-10.802719px;}
.ws54{word-spacing:-10.764417px;}
.wsa6{word-spacing:-10.748920px;}
.ws96{word-spacing:-10.695122px;}
.ws48{word-spacing:-10.641324px;}
.ws66{word-spacing:-10.620955px;}
.wsc6{word-spacing:-10.479928px;}
.ws4c{word-spacing:-10.415370px;}
.wsc0{word-spacing:-10.318533px;}
.ws68{word-spacing:-10.210936px;}
.ws4b{word-spacing:-10.157138px;}
.ws82{word-spacing:-10.142749px;}
.wsfe{word-spacing:-10.103340px;}
.wsb9{word-spacing:-9.979031px;}
.ws63{word-spacing:-9.970884px;}
.ws11f{word-spacing:-9.961889px;}
.ws61{word-spacing:-9.961630px;}
.ws23{word-spacing:-9.959543px;}
.wsce{word-spacing:-9.954346px;}
.ws62{word-spacing:-9.952476px;}
.ws21{word-spacing:-9.950323px;}
.wsf1{word-spacing:-9.760184px;}
.ws34{word-spacing:-9.500797px;}
.wsf4{word-spacing:-9.473261px;}
.ws71{word-spacing:-9.457759px;}
.ws14{word-spacing:-9.446999px;}
.wsb0{word-spacing:-9.393201px;}
.wsf2{word-spacing:-9.329799px;}
.ws3b{word-spacing:-9.296364px;}
.ws2{word-spacing:-9.242565px;}
.ws5b{word-spacing:-9.241091px;}
.ws45{word-spacing:-9.238470px;}
.ws11a{word-spacing:-9.237805px;}
.ws121{word-spacing:-9.224790px;}
.ws5a{word-spacing:-9.221220px;}
.wsbd{word-spacing:-9.218310px;}
.ws108{word-spacing:-9.214746px;}
.ws22{word-spacing:-9.213510px;}
.wsd3{word-spacing:-9.210394px;}
.ws59{word-spacing:-9.209545px;}
.wsd2{word-spacing:-9.197151px;}
.wsbf{word-spacing:-9.193215px;}
.wsbe{word-spacing:-9.190794px;}
.ws7{word-spacing:-9.188767px;}
.ws11d{word-spacing:-9.156077px;}
.ws11c{word-spacing:-9.138517px;}
.wsb1{word-spacing:-9.138472px;}
.wsa2{word-spacing:-9.027372px;}
.wsdb{word-spacing:-8.973573px;}
.wsde{word-spacing:-8.947234px;}
.wsa4{word-spacing:-8.865976px;}
.ws111{word-spacing:-8.755952px;}
.ws1f{word-spacing:-8.664981px;}
.ws42{word-spacing:-8.596984px;}
.wsd1{word-spacing:-8.489532px;}
.ws107{word-spacing:-8.489388px;}
.wsd9{word-spacing:-8.488932px;}
.wsa3{word-spacing:-8.486969px;}
.ws9e{word-spacing:-8.482955px;}
.wscf{word-spacing:-8.479934px;}
.ws18{word-spacing:-8.469028px;}
.wsd0{word-spacing:-8.467597px;}
.wsf5{word-spacing:-8.465371px;}
.wsba{word-spacing:-8.446281px;}
.ws117{word-spacing:-8.441153px;}
.wsd8{word-spacing:-8.440993px;}
.ws64{word-spacing:-8.424321px;}
.wsf8{word-spacing:-8.327992px;}
.ws10b{word-spacing:-8.317233px;}
.wsa{word-spacing:-8.220396px;}
.ws9b{word-spacing:-8.213222px;}
.wsfb{word-spacing:-8.166597px;}
.ws1c{word-spacing:-8.047870px;}
.ws10e{word-spacing:-8.005202px;}
.ws20{word-spacing:-7.951404px;}
.wsa9{word-spacing:-7.897605px;}
.wsdc{word-spacing:-7.843807px;}
.wsa1{word-spacing:-7.736210px;}
.ws91{word-spacing:-7.725450px;}
.ws92{word-spacing:-7.574815px;}
.ws1e{word-spacing:-7.510257px;}
.ws10{word-spacing:-7.467218px;}
.ws89{word-spacing:-7.464796px;}
.ws35{word-spacing:-7.348861px;}
.ws1d{word-spacing:-7.305823px;}
.wsbb{word-spacing:-7.252024px;}
.wsfd{word-spacing:-7.133668px;}
.wsc3{word-spacing:-7.036831px;}
.ws43{word-spacing:-7.030404px;}
.ws1b{word-spacing:-7.029658px;}
.ws4d{word-spacing:-6.991941px;}
.wse3{word-spacing:-6.929234px;}
.ws97{word-spacing:-6.814464px;}
.ws51{word-spacing:-6.767839px;}
.ws85{word-spacing:-6.606444px;}
.ws84{word-spacing:-6.552645px;}
.wseb{word-spacing:-6.489615px;}
.ws9c{word-spacing:-6.455808px;}
.wsad{word-spacing:-6.445048px;}
.wsca{word-spacing:-6.434289px;}
.ws26{word-spacing:-6.343811px;}
.ws118{word-spacing:-6.263526px;}
.wsc9{word-spacing:-6.257245px;}
.wscb{word-spacing:-6.228751px;}
.ws9a{word-spacing:-6.204749px;}
.ws15{word-spacing:-6.176056px;}
.ws8d{word-spacing:-6.068460px;}
.wsc5{word-spacing:-6.030178px;}
.ws102{word-spacing:-6.014661px;}
.wsa0{word-spacing:-5.960863px;}
.wsfc{word-spacing:-5.907064px;}
.ws12{word-spacing:-5.896305px;}
.ws13{word-spacing:-5.745669px;}
.ws11{word-spacing:-5.691871px;}
.wsab{word-spacing:-5.681111px;}
.ws27{word-spacing:-5.638072px;}
.wsb7{word-spacing:-5.627313px;}
.wsac{word-spacing:-5.584274px;}
.wsb8{word-spacing:-5.533087px;}
.wsb6{word-spacing:-5.530476px;}
.wsbc{word-spacing:-5.369080px;}
.wsc2{word-spacing:-5.207685px;}
.ws77{word-spacing:-5.046290px;}
.ws93{word-spacing:-4.938693px;}
.wsdf{word-spacing:-4.884895px;}
.wsed{word-spacing:-4.831734px;}
.wsee{word-spacing:-4.831096px;}
.ws8e{word-spacing:-4.777298px;}
.ws7b{word-spacing:-4.669701px;}
.ws41{word-spacing:-4.454508px;}
.ws7e{word-spacing:-4.414418px;}
.ws99{word-spacing:-4.303872px;}
.ws86{word-spacing:-4.024120px;}
.ws3a{word-spacing:-3.970322px;}
.wse0{word-spacing:-3.862725px;}
.ws7d{word-spacing:-3.819900px;}
.ws7c{word-spacing:-3.819047px;}
.wsef{word-spacing:-3.816004px;}
.wscd{word-spacing:-3.812429px;}
.wscc{word-spacing:-3.809750px;}
.ws2e{word-spacing:-3.744369px;}
.ws17{word-spacing:-3.432338px;}
.ws119{word-spacing:-3.324741px;}
.ws75{word-spacing:-3.217144px;}
.ws100{word-spacing:-3.163346px;}
.wsda{word-spacing:-3.109548px;}
.ws74{word-spacing:-2.948152px;}
.wsd{word-spacing:-2.786757px;}
.wsea{word-spacing:-2.679160px;}
.wsf6{word-spacing:-2.668401px;}
.ws10d{word-spacing:-2.640123px;}
.wsf7{word-spacing:-2.625362px;}
.wse9{word-spacing:-2.571564px;}
.ws106{word-spacing:-2.349615px;}
.ws101{word-spacing:-2.302572px;}
.ws87{word-spacing:-2.141176px;}
.ws4e{word-spacing:-2.087378px;}
.wsa7{word-spacing:-1.979781px;}
.ws98{word-spacing:-1.865011px;}
.ws16{word-spacing:-1.603192px;}
.ws37{word-spacing:-1.549394px;}
.wsc1{word-spacing:-1.441797px;}
.ws76{word-spacing:-1.172805px;}
.ws6a{word-spacing:-1.011410px;}
.ws122{word-spacing:-0.796216px;}
.ws36{word-spacing:-0.688620px;}
.wsc{word-spacing:-0.527224px;}
.wse7{word-spacing:-0.258232px;}
.ws116{word-spacing:-0.100423px;}
.ws58{word-spacing:-0.071731px;}
.ws9{word-spacing:0.000000px;}
.ws6d{word-spacing:0.010760px;}
.ws29{word-spacing:0.236713px;}
.ws28{word-spacing:0.240799px;}
.ws109{word-spacing:1.109996px;}
.ws79{word-spacing:1.194324px;}
.ws104{word-spacing:1.301921px;}
.ws31{word-spacing:1.409518px;}
.ws10c{word-spacing:1.513532px;}
.ws78{word-spacing:1.570913px;}
.ws2b{word-spacing:1.678510px;}
.ws2a{word-spacing:1.743068px;}
.ws33{word-spacing:3.292462px;}
.ws6b{word-spacing:4.529825px;}
.ws19{word-spacing:5.451571px;}
.ws70{word-spacing:5.551995px;}
.ws1a{word-spacing:5.917824px;}
.wsff{word-spacing:8.321877px;}
.ws2c{word-spacing:9.384799px;}
.ws6e{word-spacing:9.425480px;}
.wse8{word-spacing:9.455877px;}
.ws2d{word-spacing:9.651433px;}
.ws3c{word-spacing:10.071060px;}
.ws103{word-spacing:11.200827px;}
.ws73{word-spacing:12.169198px;}
.ws3d{word-spacing:12.448950px;}
.ws4a{word-spacing:13.700659px;}
.ws53{word-spacing:14.564719px;}
.ws10f{word-spacing:14.567594px;}
.ws110{word-spacing:14.576678px;}
.ws65{word-spacing:14.720719px;}
.ws67{word-spacing:14.724312px;}
.ws120{word-spacing:14.912916px;}
.ws81{word-spacing:15.222662px;}
.wsf0{word-spacing:15.590719px;}
.wsf3{word-spacing:15.892844px;}
.ws11b{word-spacing:16.208719px;}
.ws11e{word-spacing:16.236232px;}
.ws32{word-spacing:16.879172px;}
.ws83{word-spacing:16.880672px;}
.ws10a{word-spacing:16.880719px;}
.ws57{word-spacing:16.891479px;}
.ws7a{word-spacing:16.904923px;}
.ws112{word-spacing:17.371367px;}
.ws113{word-spacing:17.372779px;}
.ws88{word-spacing:17.881049px;}
.ws80{word-spacing:18.028366px;}
.ws9f{word-spacing:18.373832px;}
.ws47{word-spacing:18.829440px;}
.ws46{word-spacing:18.883238px;}
.ws4f{word-spacing:19.274490px;}
.ws50{word-spacing:19.819331px;}
.wsc4{word-spacing:20.610679px;}
.wsdd{word-spacing:21.818094px;}
.ws9d{word-spacing:21.877870px;}
.ws39{word-spacing:22.616847px;}
.ws123{word-spacing:23.312640px;}
.ws115{word-spacing:25.236650px;}
.ws5{word-spacing:26.827469px;}
.wsc8{word-spacing:33.806655px;}
.ws0{word-spacing:38.060325px;}
.ws1{word-spacing:38.184300px;}
.ws24{word-spacing:39.270134px;}
.ws25{word-spacing:40.370319px;}
.ws8a{word-spacing:47.763350px;}
._4{margin-left:-6.800099px;}
._a{margin-left:-4.465267px;}
._1{margin-left:-3.223350px;}
._2{margin-left:-1.560154px;}
._3{width:1.506355px;}
._0{width:3.223350px;}
._23{width:5.923955px;}
._22{width:9.199526px;}
._12{width:14.471770px;}
._13{width:15.863209px;}
._6{width:18.399053px;}
._21{width:20.586854px;}
._b{width:23.025715px;}
._10{width:25.016256px;}
._c{width:26.092224px;}
._18{width:27.275789px;}
._7{width:28.357892px;}
._8{width:30.073306px;}
._9{width:31.418193px;}
._e{width:34.000589px;}
._15{width:35.122908px;}
._14{width:36.851904px;}
._25{width:39.667421px;}
._17{width:45.836237px;}
._20{width:47.830744px;}
._24{width:50.774223px;}
._1e{width:59.246765px;}
._d{width:76.634425px;}
._11{width:109.058721px;}
._5{width:129.600346px;}
._1f{width:140.676643px;}
._1d{width:145.324825px;}
._1b{width:147.723149px;}
._1c{width:152.092664px;}
._f{width:183.881535px;}
._1a{width:238.164724px;}
._19{width:302.755083px;}
._16{width:683.173778px;}
.fc14{color:rgb(0,0,255);}
.fc11{color:rgb(204,0,0);}
.fc16{color:rgb(0,128,128);}
.fc10{color:rgb(64,64,64);}
.fcf{color:rgb(229,115,0);}
.fc12{color:rgb(249,249,253);}
.fce{color:rgb(217,108,0);}
.fcd{color:rgb(0,166,89);}
.fc0{color:rgb(0,0,166);}
.fc15{color:rgb(217,217,242);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(255,255,255);}
.fcb{color:rgb(217,217,217);}
.fc5{color:rgb(128,13,128);}
.fc3{color:rgb(23,165,220);}
.fc2{color:rgb(128,0,128);}
.fc7{color:rgb(255,128,0);}
.fc13{color:rgb(249,249,249);}
.fcc{color:rgb(51,51,178);}
.fc4{color:rgb(0,178,0);}
.fc6{color:rgb(236,0,140);}
.fc8{color:rgb(0,128,0);}
.fca{color:rgb(224,224,244);}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.795400px;}
.fs9{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs6{font-size:49.494600px;}
.fs1{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y10{bottom:5.230500px;}
.y1d2{bottom:6.724500px;}
.y192{bottom:10.293000px;}
.y3d{bottom:12.762000px;}
.y13f{bottom:13.321500px;}
.y141{bottom:14.364000px;}
.ya8{bottom:14.871000px;}
.y169{bottom:16.822500px;}
.y71{bottom:18.924000px;}
.y3e{bottom:20.274000px;}
.y18a{bottom:20.854500px;}
.y1d1{bottom:20.920500px;}
.y72{bottom:22.551000px;}
.yd1{bottom:24.550500px;}
.y1c1{bottom:25.792500px;}
.ye0{bottom:26.203500px;}
.ye2{bottom:27.568500px;}
.ya7{bottom:28.437000px;}
.y140{bottom:28.560000px;}
.y2e{bottom:30.186000px;}
.y13e{bottom:30.796500px;}
.y125{bottom:30.978000px;}
.y158{bottom:31.087500px;}
.y58{bottom:31.800000px;}
.ye9{bottom:33.430500px;}
.y168{bottom:34.297500px;}
.y189{bottom:35.050500px;}
.y69{bottom:35.058000px;}
.y1b8{bottom:35.199000px;}
.y5b{bottom:37.030500px;}
.y9d{bottom:37.714500px;}
.y1df{bottom:38.821500px;}
.y1c0{bottom:39.988500px;}
.ydf{bottom:40.399500px;}
.y2d{bottom:40.647000px;}
.y19f{bottom:40.786500px;}
.y75{bottom:41.298000px;}
.ye1{bottom:41.764500px;}
.y57{bottom:42.261000px;}
.y115{bottom:42.612000px;}
.ya6{bottom:42.634500px;}
.y13d{bottom:44.992500px;}
.y157{bottom:45.283500px;}
.y18{bottom:45.361500px;}
.y70{bottom:45.877500px;}
.y92{bottom:46.467000px;}
.y124{bottom:47.416500px;}
.y4c{bottom:48.469500px;}
.y17{bottom:49.086000px;}
.y188{bottom:49.248000px;}
.y68{bottom:49.255500px;}
.y2c{bottom:51.108000px;}
.yf{bottom:51.432000px;}
.ycf{bottom:51.966000px;}
.yb3{bottom:51.978000px;}
.y52{bottom:52.180500px;}
.yfe{bottom:52.495500px;}
.y1bf{bottom:54.186000px;}
.y1de{bottom:55.258500px;}
.y1ed{bottom:55.656000px;}
.y1ac{bottom:55.903500px;}
.y1b7{bottom:57.615000px;}
.y114{bottom:59.050500px;}
.y1d0{bottom:59.344500px;}
.y156{bottom:59.481000px;}
.y166{bottom:60.075000px;}
.yf3{bottom:60.334500px;}
.ya5{bottom:61.083000px;}
.y108{bottom:61.711500px;}
.yce{bottom:62.427000px;}
.y51{bottom:62.641500px;}
.y91{bottom:62.905500px;}
.y187{bottom:63.444000px;}
.y67{bottom:63.451500px;}
.yc0{bottom:64.119000px;}
.y4b{bottom:64.908000px;}
.yb2{bottom:66.174000px;}
.y3c{bottom:66.714000px;}
.y6f{bottom:68.293500px;}
.y1ab{bottom:70.099500px;}
.y1dd{bottom:71.697000px;}
.y1ec{bottom:72.094500px;}
.y16b{bottom:72.825000px;}
.ycd{bottom:72.888000px;}
.y1b6{bottom:74.053500px;}
.y123{bottom:74.608500px;}
.y1cf{bottom:75.783000px;}
.y165{bottom:76.513500px;}
.y1be{bottom:76.887000px;}
.y155{bottom:76.956000px;}
.y23{bottom:77.554500px;}
.y12f{bottom:79.518000px;}
.y9c{bottom:79.644000px;}
.ybf{bottom:80.557500px;}
.y15a{bottom:80.764500px;}
.y4a{bottom:81.346500px;}
.y13c{bottom:81.618000px;}
.y19e{bottom:82.219500px;}
.y3b{bottom:83.152500px;}
.ycc{bottom:83.347500px;}
.y1aa{bottom:84.297000px;}
.yb1{bottom:84.624000px;}
.y90{bottom:85.321500px;}
.yde{bottom:86.580000px;}
.y16a{bottom:87.022500px;}
.yd{bottom:87.208500px;}
.y122{bottom:88.804500px;}
.y1a8{bottom:89.187000px;}
.y186{bottom:89.467500px;}
.y6e{bottom:90.709500px;}
.y1f3{bottom:92.185500px;}
.y1ce{bottom:92.221500px;}
.ycb{bottom:93.808500px;}
.y1dc{bottom:94.113000px;}
.y1eb{bottom:94.510500px;}
.y159{bottom:94.960500px;}
.y13b{bottom:95.815500px;}
.y12e{bottom:95.956500px;}
.y9b{bottom:96.082500px;}
.y113{bottom:96.273000px;}
.y1b5{bottom:96.469500px;}
.yf2{bottom:97.449000px;}
.y167{bottom:97.686000px;}
.y61{bottom:97.750500px;}
.yfd{bottom:98.566500px;}
.y19d{bottom:98.658000px;}
.y3a{bottom:99.591000px;}
.y8f{bottom:101.760000px;}
.yfc{bottom:102.285000px;}
.ybe{bottom:102.973500px;}
.ydd{bottom:103.018500px;}
.y107{bottom:103.146000px;}
.y1f6{bottom:103.948500px;}
.yca{bottom:104.269500px;}
.y14a{bottom:104.484000px;}
.y49{bottom:106.602000px;}
.y174{bottom:108.087000px;}
.y1f2{bottom:108.624000px;}
.y185{bottom:109.230000px;}
.yf0{bottom:109.386000px;}
.y1ea{bottom:110.949000px;}
.y1a9{bottom:111.249000px;}
.y6d{bottom:113.125500px;}
.yf1{bottom:113.886000px;}
.y60{bottom:114.187500px;}
.y13a{bottom:114.351000px;}
.y1cd{bottom:114.637500px;}
.yc9{bottom:114.730500px;}
.y39{bottom:116.029500px;}
.y1db{bottom:116.529000px;}
.yc{bottom:116.797500px;}
.y5{bottom:118.008000px;}
.y12d{bottom:118.372500px;}
.y112{bottom:118.689000px;}
.y1b4{bottom:118.885500px;}
.ybd{bottom:119.412000px;}
.y106{bottom:119.583000px;}
.y16{bottom:121.791000px;}
.y48{bottom:123.039000px;}
.y173{bottom:124.525500px;}
.ydc{bottom:125.434500px;}
.y184{bottom:125.667000px;}
.y1a7{bottom:126.369000px;}
.y15{bottom:126.897000px;}
.y149{bottom:126.900000px;}
.y154{bottom:127.387500px;}
.y2b{bottom:128.278500px;}
.y5f{bottom:130.626000px;}
.yb0{bottom:130.810500px;}
.y1cc{bottom:131.076000px;}
.y191{bottom:132.267000px;}
.y38{bottom:132.468000px;}
.yd0{bottom:132.844500px;}
.y1e9{bottom:133.365000px;}
.y22{bottom:133.438500px;}
.y6c{bottom:133.533000px;}
.y19c{bottom:133.830000px;}
.y12c{bottom:134.809500px;}
.y111{bottom:135.127500px;}
.ybc{bottom:135.850500px;}
.y164{bottom:136.735500px;}
.y21{bottom:137.475000px;}
.y1da{bottom:138.945000px;}
.y17a{bottom:139.807500px;}
.y139{bottom:140.050500px;}
.y83{bottom:140.386500px;}
.ydb{bottom:141.873000px;}
.y8e{bottom:142.033500px;}
.y1c{bottom:142.039500px;}
.y183{bottom:142.105500px;}
.y1a6{bottom:142.807500px;}
.y121{bottom:143.380500px;}
.y153{bottom:143.826000px;}
.y105{bottom:143.832000px;}
.y1b{bottom:145.764000px;}
.yb{bottom:146.386500px;}
.y172{bottom:146.941500px;}
.y5e{bottom:147.064500px;}
.yaf{bottom:147.247500px;}
.y47{bottom:148.294500px;}
.y9a{bottom:148.348500px;}
.y190{bottom:148.705500px;}
.y148{bottom:149.316000px;}
.y1e8{bottom:149.802000px;}
.y19b{bottom:150.268500px;}
.y110{bottom:151.566000px;}
.yfb{bottom:152.682000px;}
.y56{bottom:153.181500px;}
.y1cb{bottom:153.492000px;}
.y1b3{bottom:154.057500px;}
.y37{bottom:154.884000px;}
.y1d9{bottom:155.383500px;}
.y179{bottom:156.246000px;}
.y138{bottom:156.489000px;}
.y82{bottom:156.825000px;}
.y12b{bottom:157.225500px;}
.y119{bottom:158.023500px;}
.y8d{bottom:158.472000px;}
.y182{bottom:158.544000px;}
.y163{bottom:159.151500px;}
.y1a5{bottom:159.246000px;}
.y120{bottom:159.819000px;}
.y104{bottom:160.270500px;}
.y171{bottom:163.380000px;}
.y5d{bottom:163.503000px;}
.yae{bottom:163.686000px;}
.yda{bottom:164.289000px;}
.y46{bottom:164.733000px;}
.y99{bottom:164.787000px;}
.y18f{bottom:165.144000px;}
.y147{bottom:165.754500px;}
.yc8{bottom:165.799500px;}
.y152{bottom:166.242000px;}
.y2a{bottom:166.440000px;}
.y10f{bottom:168.004500px;}
.yfa{bottom:169.120500px;}
.y55{bottom:169.618500px;}
.y1ca{bottom:169.930500px;}
.y36{bottom:171.322500px;}
.y1e7{bottom:172.218000px;}
.y178{bottom:172.684500px;}
.y1f1{bottom:173.082000px;}
.y81{bottom:173.262000px;}
.y12a{bottom:173.664000px;}
.y8c{bottom:174.910500px;}
.y162{bottom:175.590000px;}
.ya{bottom:175.975500px;}
.y11f{bottom:176.257500px;}
.y1b2{bottom:176.473500px;}
.y103{bottom:176.707500px;}
.y1d8{bottom:177.799500px;}
.y181{bottom:178.305000px;}
.y137{bottom:178.905000px;}
.y5c{bottom:179.941500px;}
.yd9{bottom:180.727500px;}
.y45{bottom:181.171500px;}
.y4{bottom:181.185000px;}
.y1a4{bottom:181.662000px;}
.yc7{bottom:182.238000px;}
.y151{bottom:182.680500px;}
.y29{bottom:182.878500px;}
.y98{bottom:183.132000px;}
.y18e{bottom:184.570500px;}
.y118{bottom:185.247000px;}
.y19a{bottom:185.440500px;}
.ya4{bottom:185.718000px;}
.y170{bottom:185.796000px;}
.y54{bottom:186.057000px;}
.y1c9{bottom:186.367500px;}
.ybb{bottom:187.086000px;}
.y35{bottom:187.761000px;}
.y146{bottom:188.170500px;}
.y1f5{bottom:188.634000px;}
.y1e6{bottom:188.656500px;}
.y177{bottom:189.123000px;}
.y1f0{bottom:189.520500px;}
.y10e{bottom:190.420500px;}
.yef{bottom:190.987500px;}
.y8b{bottom:191.349000px;}
.y9{bottom:192.414000px;}
.y11e{bottom:192.696000px;}
.y77{bottom:192.700500px;}
.y102{bottom:193.146000px;}
.y180{bottom:194.743500px;}
.y136{bottom:195.343500px;}
.y80{bottom:195.678000px;}
.yad{bottom:195.934500px;}
.yd8{bottom:197.166000px;}
.y161{bottom:198.006000px;}
.y1a3{bottom:198.100500px;}
.y1b1{bottom:198.889500px;}
.y28{bottom:199.317000px;}
.y20{bottom:200.010000px;}
.y18d{bottom:201.009000px;}
.y14{bottom:201.580500px;}
.y199{bottom:201.879000px;}
.y16f{bottom:202.234500px;}
.y53{bottom:202.495500px;}
.yf9{bottom:203.029500px;}
.yba{bottom:203.523000px;}
.y1f{bottom:204.420000px;}
.y145{bottom:204.609000px;}
.y1e5{bottom:205.095000px;}
.y150{bottom:205.096500px;}
.ya3{bottom:205.146000px;}
.y1bd{bottom:205.147500px;}
.y129{bottom:205.165500px;}
.y44{bottom:206.427000px;}
.yee{bottom:207.426000px;}
.y8a{bottom:207.787500px;}
.y1c8{bottom:208.783500px;}
.y1d7{bottom:209.256000px;}
.y34{bottom:210.177000px;}
.y17f{bottom:211.182000px;}
.y7f{bottom:212.116500px;}
.y12{bottom:213.150000px;}
.y24{bottom:213.456000px;}
.y10d{bottom:214.330500px;}
.y160{bottom:214.444500px;}
.y1a2{bottom:214.539000px;}
.y27{bottom:215.754000px;}
.y97{bottom:216.189000px;}
.y117{bottom:216.397500px;}
.y18c{bottom:217.447500px;}
.y135{bottom:217.759500px;}
.y13{bottom:218.019000px;}
.y198{bottom:218.317500px;}
.y101{bottom:218.469000px;}
.ye8{bottom:219.382500px;}
.yf8{bottom:219.468000px;}
.yb9{bottom:219.961500px;}
.y144{bottom:221.047500px;}
.y1b0{bottom:221.305500px;}
.y14f{bottom:221.535000px;}
.y1bc{bottom:221.586000px;}
.y11d{bottom:221.890500px;}
.y8{bottom:222.003000px;}
.y43{bottom:222.865500px;}
.yed{bottom:223.863000px;}
.yc6{bottom:224.460000px;}
.ya2{bottom:224.572500px;}
.y16e{bottom:224.650500px;}
.y1c7{bottom:225.222000px;}
.y1a{bottom:225.334500px;}
.y33{bottom:226.614000px;}
.y176{bottom:226.821000px;}
.y1e4{bottom:227.511000px;}
.y17e{bottom:227.620500px;}
.y7e{bottom:228.555000px;}
.y19{bottom:229.047000px;}
.y76{bottom:230.061000px;}
.y89{bottom:230.203500px;}
.y18b{bottom:233.886000px;}
.y134{bottom:234.198000px;}
.y100{bottom:234.907500px;}
.y66{bottom:235.123500px;}
.ye7{bottom:235.821000px;}
.yf7{bottom:235.906500px;}
.yd3{bottom:236.014500px;}
.y50{bottom:236.208000px;}
.yb8{bottom:236.400000px;}
.y10c{bottom:236.746500px;}
.y15f{bottom:236.860500px;}
.y26{bottom:238.170000px;}
.y11c{bottom:238.327500px;}
.yac{bottom:238.813500px;}
.y197{bottom:239.008500px;}
.y42{bottom:239.304000px;}
.yc5{bottom:240.898500px;}
.y16d{bottom:241.089000px;}
.y1c6{bottom:241.660500px;}
.y3{bottom:242.937000px;}
.y32{bottom:243.052500px;}
.y175{bottom:243.259500px;}
.y143{bottom:243.463500px;}
.y1e3{bottom:243.949500px;}
.y14e{bottom:243.951000px;}
.ya1{bottom:244.000500px;}
.y1bb{bottom:244.002000px;}
.y7d{bottom:244.993500px;}
.y96{bottom:245.511000px;}
.yec{bottom:246.279000px;}
.yd2{bottom:246.475500px;}
.y88{bottom:246.640500px;}
.y128{bottom:247.011000px;}
.y116{bottom:247.549500px;}
.y1d6{bottom:251.103000px;}
.yff{bottom:251.346000px;}
.y65{bottom:251.562000px;}
.y7{bottom:251.592000px;}
.y4f{bottom:252.646500px;}
.yb7{bottom:252.838500px;}
.y15e{bottom:253.299000px;}
.y11b{bottom:254.766000px;}
.yab{bottom:255.252000px;}
.y196{bottom:255.447000px;}
.y133{bottom:256.614000px;}
.yc4{bottom:257.337000px;}
.y1a1{bottom:257.739000px;}
.ye6{bottom:258.237000px;}
.yf6{bottom:258.322500px;}
.y1ef{bottom:258.534000px;}
.yd7{bottom:258.738000px;}
.y1e2{bottom:260.388000px;}
.y14d{bottom:260.389500px;}
.yeb{bottom:262.717500px;}
.y87{bottom:263.079000px;}
.y127{bottom:263.449500px;}
.y1c5{bottom:264.076500px;}
.y95{bottom:264.141000px;}
.y41{bottom:264.559500px;}
.y31{bottom:265.468500px;}
.y1e{bottom:266.580000px;}
.y1af{bottom:266.989500px;}
.y7c{bottom:267.409500px;}
.y1d5{bottom:267.541500px;}
.y10b{bottom:268.248000px;}
.yb6{bottom:269.277000px;}
.y1f4{bottom:270.589500px;}
.y1d{bottom:270.991500px;}
.y11a{bottom:271.204500px;}
.yaa{bottom:271.690500px;}
.y195{bottom:271.884000px;}
.y16c{bottom:272.875500px;}
.y132{bottom:273.052500px;}
.yc3{bottom:273.775500px;}
.y64{bottom:273.978000px;}
.y17d{bottom:274.054500px;}
.y1a0{bottom:274.177500px;}
.ye5{bottom:274.675500px;}
.y1ee{bottom:274.972500px;}
.yd6{bottom:275.176500px;}
.y142{bottom:275.250000px;}
.y15d{bottom:275.715000px;}
.yf5{bottom:276.255000px;}
.y1e1{bottom:276.826500px;}
.y14c{bottom:276.828000px;}
.y5a{bottom:279.316500px;}
.y2{bottom:280.297500px;}
.y30{bottom:281.907000px;}
.y1ae{bottom:283.428000px;}
.y7b{bottom:283.848000px;}
.y1d4{bottom:283.978500px;}
.y1c4{bottom:284.767500px;}
.ye{bottom:285.217500px;}
.y86{bottom:285.495000px;}
.yb5{bottom:285.715500px;}
.y4e{bottom:286.092000px;}
.y1ba{bottom:287.202000px;}
.y40{bottom:289.813500px;}
.yc2{bottom:290.214000px;}
.y17c{bottom:290.493000px;}
.ya0{bottom:290.590500px;}
.yd5{bottom:291.615000px;}
.y74{bottom:291.846000px;}
.y15c{bottom:292.153500px;}
.y126{bottom:292.336500px;}
.y194{bottom:292.575000px;}
.y94{bottom:292.716000px;}
.y9f{bottom:293.823000px;}
.y131{bottom:295.468500px;}
.y59{bottom:295.755000px;}
.y63{bottom:296.394000px;}
.ye4{bottom:297.091500px;}
.y11{bottom:297.136500px;}
.y10a{bottom:297.529500px;}
.y2f{bottom:298.345500px;}
.y1ad{bottom:299.866500px;}
.y7a{bottom:300.286500px;}
.y1c3{bottom:301.206000px;}
.y85{bottom:301.933500px;}
.yea{bottom:302.142000px;}
.y4d{bottom:302.530500px;}
.ya9{bottom:303.190500px;}
.y1b9{bottom:303.640500px;}
.y3f{bottom:306.252000px;}
.yc1{bottom:306.651000px;}
.y17b{bottom:306.931500px;}
.yf4{bottom:307.174500px;}
.yd4{bottom:308.053500px;}
.y73{bottom:308.284500px;}
.y1e0{bottom:308.328000px;}
.y14b{bottom:308.614500px;}
.y193{bottom:309.013500px;}
.y93{bottom:311.061000px;}
.y62{bottom:312.832500px;}
.ye3{bottom:313.530000px;}
.y109{bottom:313.966500px;}
.y1d3{bottom:315.435000px;}
.yb4{bottom:315.528000px;}
.y1{bottom:317.656500px;}
.y1c2{bottom:319.402500px;}
.y6b{bottom:320.170500px;}
.y79{bottom:322.702500px;}
.y15b{bottom:323.940000px;}
.y84{bottom:324.349500px;}
.y130{bottom:324.354000px;}
.y6a{bottom:336.609000px;}
.y78{bottom:356.178000px;}
.y9e{bottom:361.543500px;}
.y6{bottom:361.554000px;}
.y25{bottom:394.909500px;}
.h1d{height:19.247688px;}
.h16{height:23.363629px;}
.h6{height:26.970931px;}
.h11{height:31.418266px;}
.h10{height:35.913271px;}
.h13{height:39.649421px;}
.h3{height:40.402598px;}
.h12{height:41.890846px;}
.h15{height:42.893629px;}
.h18{height:43.277534px;}
.h17{height:46.212826px;}
.hb{height:47.127398px;}
.h5{height:53.081088px;}
.h1c{height:53.626088px;}
.h1e{height:53.870131px;}
.hf{height:60.684426px;}
.h1b{height:60.690362px;}
.h4{height:64.557900px;}
.h7{height:75.403627px;}
.h9{height:85.726598px;}
.hd{height:88.510598px;}
.he{height:90.004598px;}
.h2{height:90.129825px;}
.ha{height:91.258598px;}
.h1a{height:91.282598px;}
.hc{height:91.306598px;}
.h14{height:93.226598px;}
.h19{height:124.156598px;}
.h8{height:125.632598px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x6{left:12.756000px;}
.x31{left:40.852500px;}
.x10{left:42.519000px;}
.x20{left:45.010500px;}
.x9{left:49.180500px;}
.x1f{left:50.862000px;}
.x30{left:55.297500px;}
.x27{left:57.754500px;}
.x15{left:58.765500px;}
.x2c{left:62.713500px;}
.x28{left:64.237500px;}
.xb{left:65.797500px;}
.x4{left:70.446000px;}
.x37{left:72.259500px;}
.x18{left:73.843500px;}
.x19{left:75.894000px;}
.x2b{left:79.077000px;}
.x7{left:82.869000px;}
.x21{left:88.209000px;}
.x14{left:91.752000px;}
.x33{left:98.632500px;}
.x2{left:103.095000px;}
.xd{left:106.632000px;}
.xc{left:108.316500px;}
.xf{left:114.691500px;}
.x36{left:122.737500px;}
.x32{left:124.984500px;}
.x38{left:142.978500px;}
.x35{left:150.414000px;}
.x3{left:163.632000px;}
.x1{left:167.947500px;}
.x1a{left:176.274000px;}
.x39{left:190.878000px;}
.x8{left:194.344500px;}
.x25{left:198.667500px;}
.x2e{left:205.029000px;}
.x5{left:214.144500px;}
.x22{left:215.511000px;}
.x11{left:234.471000px;}
.x12{left:238.351500px;}
.x2d{left:245.061000px;}
.x13{left:251.139000px;}
.x23{left:261.709500px;}
.x2f{left:266.529000px;}
.x34{left:275.422500px;}
.x26{left:276.636000px;}
.x16{left:281.391000px;}
.x2a{left:286.953000px;}
.x29{left:288.621000px;}
.x1c{left:291.093000px;}
.x1b{left:306.115500px;}
.x24{left:331.836000px;}
.xe{left:380.664000px;}
.x1e{left:402.555000px;}
.x3a{left:423.825000px;}
.x1d{left:426.838500px;}
.x17{left:503.896500px;}
.xa{left:509.161500px;}
@media print{
.ve{vertical-align:-28.768000pt;}
.v8{vertical-align:-26.778667pt;}
.vb{vertical-align:-17.360000pt;}
.vd{vertical-align:-15.429333pt;}
.vf{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.541333pt;}
.v1{vertical-align:16.021333pt;}
.va{vertical-align:17.360000pt;}
.v3{vertical-align:40.288000pt;}
.v5{vertical-align:42.762667pt;}
.v6{vertical-align:44.090667pt;}
.v4{vertical-align:45.205333pt;}
.v9{vertical-align:46.954667pt;}
.vc{vertical-align:74.448000pt;}
.v2{vertical-align:75.760000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.004800pt;}
.ls17{letter-spacing:2.648819pt;}
.ls23{letter-spacing:2.659391pt;}
.lsa{letter-spacing:3.121959pt;}
.ls29{letter-spacing:4.096043pt;}
.ls25{letter-spacing:13.533286pt;}
.ls2d{letter-spacing:13.669459pt;}
.lsf{letter-spacing:13.770792pt;}
.ls2e{letter-spacing:14.890792pt;}
.ls2b{letter-spacing:16.402534pt;}
.ls2a{letter-spacing:17.384905pt;}
.ls20{letter-spacing:20.490610pt;}
.ls2c{letter-spacing:20.511467pt;}
.lsc{letter-spacing:20.524933pt;}
.ls10{letter-spacing:20.655467pt;}
.lse{letter-spacing:20.658267pt;}
.ls18{letter-spacing:21.086067pt;}
.ls26{letter-spacing:21.426267pt;}
.ls27{letter-spacing:21.699400pt;}
.ls32{letter-spacing:21.978133pt;}
.ls30{letter-spacing:21.980933pt;}
.ls8{letter-spacing:22.578267pt;}
.lsd{letter-spacing:22.579400pt;}
.ls15{letter-spacing:22.580800pt;}
.ls1a{letter-spacing:23.476800pt;}
.ls11{letter-spacing:24.567467pt;}
.ls13{letter-spacing:24.568533pt;}
.ls21{letter-spacing:24.573867pt;}
.ls22{letter-spacing:24.728733pt;}
.ls31{letter-spacing:28.911467pt;}
.ls7{letter-spacing:29.075046pt;}
.ls6{letter-spacing:29.083293pt;}
.lsb{letter-spacing:29.088626pt;}
.ls12{letter-spacing:29.089963pt;}
.ls1d{letter-spacing:29.090133pt;}
.ls1e{letter-spacing:29.091301pt;}
.ls1f{letter-spacing:29.095039pt;}
.ls2f{letter-spacing:30.026133pt;}
.ls14{letter-spacing:34.400626pt;}
.ls16{letter-spacing:36.456133pt;}
.ls1c{letter-spacing:42.509466pt;}
.ls2{letter-spacing:55.537333pt;}
.ls4{letter-spacing:65.101467pt;}
.ls3{letter-spacing:77.114018pt;}
.ls1{letter-spacing:98.614190pt;}
.ls5{letter-spacing:107.229561pt;}
.ls1b{letter-spacing:220.104132pt;}
.ls33{letter-spacing:358.234133pt;}
.ls28{letter-spacing:391.319467pt;}
.ls9{letter-spacing:416.687467pt;}
.ls24{letter-spacing:647.493459pt;}
.wse{word-spacing:-59.776000pt;}
.ws55{word-spacing:-53.134000pt;}
.ws8b{word-spacing:-42.557286pt;}
.ws114{word-spacing:-36.450825pt;}
.ws6{word-spacing:-25.230254pt;}
.wsb{word-spacing:-24.570327pt;}
.ws44{word-spacing:-18.713873pt;}
.ws5f{word-spacing:-13.901099pt;}
.ws5d{word-spacing:-13.898523pt;}
.wsaf{word-spacing:-13.896724pt;}
.wse4{word-spacing:-13.753262pt;}
.wsae{word-spacing:-13.523722pt;}
.wse5{word-spacing:-13.428081pt;}
.ws5c{word-spacing:-13.247623pt;}
.ws60{word-spacing:-13.236797pt;}
.ws5e{word-spacing:-13.235120pt;}
.ws52{word-spacing:-12.997693pt;}
.wsec{word-spacing:-12.949873pt;}
.ws6c{word-spacing:-12.758589pt;}
.ws8{word-spacing:-12.497169pt;}
.ws40{word-spacing:-12.465289pt;}
.wsf9{word-spacing:-12.414280pt;}
.ws72{word-spacing:-12.232561pt;}
.wsf{word-spacing:-12.196183pt;}
.ws3{word-spacing:-12.119670pt;}
.wsc7{word-spacing:-12.116107pt;}
.wsfa{word-spacing:-12.089098pt;}
.wsb5{word-spacing:-12.079534pt;}
.wse6{word-spacing:-12.067185pt;}
.wsb3{word-spacing:-12.031713pt;}
.wsd6{word-spacing:-11.840430pt;}
.wsb2{word-spacing:-11.763139pt;}
.ws8c{word-spacing:-11.754353pt;}
.wsb4{word-spacing:-11.736453pt;}
.ws2f{word-spacing:-11.724597pt;}
.ws4{word-spacing:-11.706532pt;}
.wse2{word-spacing:-11.690561pt;}
.wsd4{word-spacing:-11.563069pt;}
.wsd5{word-spacing:-11.515249pt;}
.wsa8{word-spacing:-11.180503pt;}
.ws30{word-spacing:-11.084861pt;}
.wse1{word-spacing:-11.037041pt;}
.ws90{word-spacing:-10.884014pt;}
.ws3f{word-spacing:-10.654474pt;}
.ws8f{word-spacing:-10.606653pt;}
.ws3e{word-spacing:-10.558833pt;}
.ws6f{word-spacing:-10.415370pt;}
.ws94{word-spacing:-10.224087pt;}
.ws95{word-spacing:-10.176266pt;}
.wsd7{word-spacing:-10.023240pt;}
.wsa5{word-spacing:-9.984983pt;}
.ws38{word-spacing:-9.937162pt;}
.ws105{word-spacing:-9.889341pt;}
.ws7f{word-spacing:-9.793700pt;}
.ws49{word-spacing:-9.688494pt;}
.ws69{word-spacing:-9.650237pt;}
.ws56{word-spacing:-9.610878pt;}
.wsaa{word-spacing:-9.602417pt;}
.ws54{word-spacing:-9.568371pt;}
.wsa6{word-spacing:-9.554596pt;}
.ws96{word-spacing:-9.506775pt;}
.ws48{word-spacing:-9.458954pt;}
.ws66{word-spacing:-9.440849pt;}
.wsc6{word-spacing:-9.315492pt;}
.ws4c{word-spacing:-9.258107pt;}
.wsc0{word-spacing:-9.172029pt;}
.ws68{word-spacing:-9.076388pt;}
.ws4b{word-spacing:-9.028567pt;}
.ws82{word-spacing:-9.015777pt;}
.wsfe{word-spacing:-8.980746pt;}
.wsb9{word-spacing:-8.870250pt;}
.ws63{word-spacing:-8.863008pt;}
.ws11f{word-spacing:-8.855013pt;}
.ws61{word-spacing:-8.854782pt;}
.ws23{word-spacing:-8.852927pt;}
.wsce{word-spacing:-8.848307pt;}
.ws62{word-spacing:-8.846645pt;}
.ws21{word-spacing:-8.844732pt;}
.wsf1{word-spacing:-8.675720pt;}
.ws34{word-spacing:-8.445153pt;}
.wsf4{word-spacing:-8.420676pt;}
.ws71{word-spacing:-8.406897pt;}
.ws14{word-spacing:-8.397332pt;}
.wsb0{word-spacing:-8.349512pt;}
.wsf2{word-spacing:-8.293155pt;}
.ws3b{word-spacing:-8.263434pt;}
.ws2{word-spacing:-8.215613pt;}
.ws5b{word-spacing:-8.214303pt;}
.ws45{word-spacing:-8.211973pt;}
.ws11a{word-spacing:-8.211383pt;}
.ws121{word-spacing:-8.199813pt;}
.ws5a{word-spacing:-8.196640pt;}
.wsbd{word-spacing:-8.194053pt;}
.ws108{word-spacing:-8.190886pt;}
.ws22{word-spacing:-8.189786pt;}
.wsd3{word-spacing:-8.187017pt;}
.ws59{word-spacing:-8.186262pt;}
.wsd2{word-spacing:-8.175246pt;}
.wsbf{word-spacing:-8.171747pt;}
.wsbe{word-spacing:-8.169595pt;}
.ws7{word-spacing:-8.167793pt;}
.ws11d{word-spacing:-8.138735pt;}
.ws11c{word-spacing:-8.123126pt;}
.wsb1{word-spacing:-8.123087pt;}
.wsa2{word-spacing:-8.024330pt;}
.wsdb{word-spacing:-7.976509pt;}
.wsde{word-spacing:-7.953097pt;}
.wsa4{word-spacing:-7.880868pt;}
.ws111{word-spacing:-7.783068pt;}
.ws1f{word-spacing:-7.702205pt;}
.ws42{word-spacing:-7.641764pt;}
.wsd1{word-spacing:-7.546250pt;}
.ws107{word-spacing:-7.546122pt;}
.wsd9{word-spacing:-7.545717pt;}
.wsa3{word-spacing:-7.543972pt;}
.ws9e{word-spacing:-7.540404pt;}
.wscf{word-spacing:-7.537719pt;}
.ws18{word-spacing:-7.528025pt;}
.wsd0{word-spacing:-7.526753pt;}
.wsf5{word-spacing:-7.524774pt;}
.wsba{word-spacing:-7.507805pt;}
.ws117{word-spacing:-7.503247pt;}
.wsd8{word-spacing:-7.503105pt;}
.ws64{word-spacing:-7.488285pt;}
.wsf8{word-spacing:-7.402660pt;}
.ws10b{word-spacing:-7.393096pt;}
.wsa{word-spacing:-7.307018pt;}
.ws9b{word-spacing:-7.300642pt;}
.wsfb{word-spacing:-7.259197pt;}
.ws1c{word-spacing:-7.153662pt;}
.ws10e{word-spacing:-7.115735pt;}
.ws20{word-spacing:-7.067914pt;}
.wsa9{word-spacing:-7.020093pt;}
.wsdc{word-spacing:-6.972273pt;}
.wsa1{word-spacing:-6.876631pt;}
.ws91{word-spacing:-6.867067pt;}
.ws92{word-spacing:-6.733169pt;}
.ws1e{word-spacing:-6.675784pt;}
.ws10{word-spacing:-6.637527pt;}
.ws89{word-spacing:-6.635374pt;}
.ws35{word-spacing:-6.532321pt;}
.ws1d{word-spacing:-6.494065pt;}
.wsbb{word-spacing:-6.446244pt;}
.wsfd{word-spacing:-6.341038pt;}
.wsc3{word-spacing:-6.254961pt;}
.ws43{word-spacing:-6.249248pt;}
.ws1b{word-spacing:-6.248585pt;}
.ws4d{word-spacing:-6.215059pt;}
.wse3{word-spacing:-6.159319pt;}
.ws97{word-spacing:-6.057301pt;}
.ws51{word-spacing:-6.015857pt;}
.ws85{word-spacing:-5.872394pt;}
.ws84{word-spacing:-5.824573pt;}
.wseb{word-spacing:-5.768547pt;}
.ws9c{word-spacing:-5.738496pt;}
.wsad{word-spacing:-5.728932pt;}
.wsca{word-spacing:-5.719368pt;}
.ws26{word-spacing:-5.638943pt;}
.ws118{word-spacing:-5.567578pt;}
.wsc9{word-spacing:-5.561996pt;}
.wscb{word-spacing:-5.536667pt;}
.ws9a{word-spacing:-5.515332pt;}
.ws15{word-spacing:-5.489828pt;}
.ws8d{word-spacing:-5.394186pt;}
.wsc5{word-spacing:-5.360158pt;}
.ws102{word-spacing:-5.346365pt;}
.wsa0{word-spacing:-5.298545pt;}
.wsfc{word-spacing:-5.250724pt;}
.ws12{word-spacing:-5.241160pt;}
.ws13{word-spacing:-5.107261pt;}
.ws11{word-spacing:-5.059441pt;}
.wsab{word-spacing:-5.049876pt;}
.ws27{word-spacing:-5.011620pt;}
.wsb7{word-spacing:-5.002056pt;}
.wsac{word-spacing:-4.963799pt;}
.wsb8{word-spacing:-4.918299pt;}
.wsb6{word-spacing:-4.915978pt;}
.wsbc{word-spacing:-4.772516pt;}
.wsc2{word-spacing:-4.629053pt;}
.ws77{word-spacing:-4.485591pt;}
.ws93{word-spacing:-4.389949pt;}
.wsdf{word-spacing:-4.342129pt;}
.wsed{word-spacing:-4.294874pt;}
.wsee{word-spacing:-4.294308pt;}
.ws8e{word-spacing:-4.246487pt;}
.ws7b{word-spacing:-4.150845pt;}
.ws41{word-spacing:-3.959562pt;}
.ws7e{word-spacing:-3.923927pt;}
.ws99{word-spacing:-3.825664pt;}
.ws86{word-spacing:-3.576996pt;}
.ws3a{word-spacing:-3.529175pt;}
.wse0{word-spacing:-3.433533pt;}
.ws7d{word-spacing:-3.395466pt;}
.ws7c{word-spacing:-3.394708pt;}
.wsef{word-spacing:-3.392003pt;}
.wscd{word-spacing:-3.388826pt;}
.wscc{word-spacing:-3.386445pt;}
.ws2e{word-spacing:-3.328328pt;}
.ws17{word-spacing:-3.050967pt;}
.ws119{word-spacing:-2.955325pt;}
.ws75{word-spacing:-2.859684pt;}
.ws100{word-spacing:-2.811863pt;}
.wsda{word-spacing:-2.764042pt;}
.ws74{word-spacing:-2.620580pt;}
.wsd{word-spacing:-2.477117pt;}
.wsea{word-spacing:-2.381476pt;}
.wsf6{word-spacing:-2.371912pt;}
.ws10d{word-spacing:-2.346776pt;}
.wsf7{word-spacing:-2.333655pt;}
.wse9{word-spacing:-2.285834pt;}
.ws106{word-spacing:-2.088547pt;}
.ws101{word-spacing:-2.046730pt;}
.ws87{word-spacing:-1.903268pt;}
.ws4e{word-spacing:-1.855447pt;}
.wsa7{word-spacing:-1.759805pt;}
.ws98{word-spacing:-1.657788pt;}
.ws16{word-spacing:-1.425060pt;}
.ws37{word-spacing:-1.377239pt;}
.wsc1{word-spacing:-1.281597pt;}
.ws76{word-spacing:-1.042493pt;}
.ws6a{word-spacing:-0.899031pt;}
.ws122{word-spacing:-0.707748pt;}
.ws36{word-spacing:-0.612106pt;}
.wsc{word-spacing:-0.468644pt;}
.wse7{word-spacing:-0.229540pt;}
.ws116{word-spacing:-0.089265pt;}
.ws58{word-spacing:-0.063761pt;}
.ws9{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.009564pt;}
.ws29{word-spacing:0.210412pt;}
.ws28{word-spacing:0.214043pt;}
.ws109{word-spacing:0.986663pt;}
.ws79{word-spacing:1.061622pt;}
.ws104{word-spacing:1.157263pt;}
.ws31{word-spacing:1.252905pt;}
.ws10c{word-spacing:1.345362pt;}
.ws78{word-spacing:1.396367pt;}
.ws2b{word-spacing:1.492009pt;}
.ws2a{word-spacing:1.549394pt;}
.ws33{word-spacing:2.926633pt;}
.ws6b{word-spacing:4.026511pt;}
.ws19{word-spacing:4.845841pt;}
.ws70{word-spacing:4.935107pt;}
.ws1a{word-spacing:5.260288pt;}
.wsff{word-spacing:7.397224pt;}
.ws2c{word-spacing:8.342043pt;}
.ws6e{word-spacing:8.378204pt;}
.wse8{word-spacing:8.405224pt;}
.ws2d{word-spacing:8.579052pt;}
.ws3c{word-spacing:8.952054pt;}
.ws103{word-spacing:9.956291pt;}
.ws73{word-spacing:10.817065pt;}
.ws3d{word-spacing:11.065733pt;}
.ws4a{word-spacing:12.178364pt;}
.ws53{word-spacing:12.946417pt;}
.ws10f{word-spacing:12.948973pt;}
.ws110{word-spacing:12.957047pt;}
.ws65{word-spacing:13.085084pt;}
.ws67{word-spacing:13.088277pt;}
.ws120{word-spacing:13.255926pt;}
.ws81{word-spacing:13.531255pt;}
.wsf0{word-spacing:13.858417pt;}
.wsf3{word-spacing:14.126973pt;}
.ws11b{word-spacing:14.407750pt;}
.ws11e{word-spacing:14.432206pt;}
.ws32{word-spacing:15.003708pt;}
.ws83{word-spacing:15.005042pt;}
.ws10a{word-spacing:15.005084pt;}
.ws57{word-spacing:15.014648pt;}
.ws7a{word-spacing:15.026598pt;}
.ws112{word-spacing:15.441215pt;}
.ws113{word-spacing:15.442471pt;}
.ws88{word-spacing:15.894266pt;}
.ws80{word-spacing:16.025214pt;}
.ws9f{word-spacing:16.332295pt;}
.ws47{word-spacing:16.737280pt;}
.ws46{word-spacing:16.785101pt;}
.ws4f{word-spacing:17.132880pt;}
.ws50{word-spacing:17.617183pt;}
.wsc4{word-spacing:18.320603pt;}
.wsdd{word-spacing:19.393861pt;}
.ws9d{word-spacing:19.446995pt;}
.ws39{word-spacing:20.103864pt;}
.ws123{word-spacing:20.722347pt;}
.ws115{word-spacing:22.432578pt;}
.ws5{word-spacing:23.846639pt;}
.wsc8{word-spacing:30.050360pt;}
.ws0{word-spacing:33.831400pt;}
.ws1{word-spacing:33.941600pt;}
.ws24{word-spacing:34.906786pt;}
.ws25{word-spacing:35.884728pt;}
.ws8a{word-spacing:42.456311pt;}
._4{margin-left:-6.044532pt;}
._a{margin-left:-3.969126pt;}
._1{margin-left:-2.865200pt;}
._2{margin-left:-1.386803pt;}
._3{width:1.338982pt;}
._0{width:2.865200pt;}
._23{width:5.265737pt;}
._22{width:8.177357pt;}
._12{width:12.863795pt;}
._13{width:14.100630pt;}
._6{width:16.354714pt;}
._21{width:18.299426pt;}
._b{width:20.467302pt;}
._10{width:22.236672pt;}
._c{width:23.193088pt;}
._18{width:24.245146pt;}
._7{width:25.207015pt;}
._8{width:26.731827pt;}
._9{width:27.927282pt;}
._e{width:30.222746pt;}
._15{width:31.220362pt;}
._14{width:32.757248pt;}
._25{width:35.259930pt;}
._17{width:40.743322pt;}
._20{width:42.516217pt;}
._24{width:45.132643pt;}
._1e{width:52.663791pt;}
._d{width:68.119489pt;}
._11{width:96.941085pt;}
._5{width:115.200307pt;}
._1f{width:125.045905pt;}
._1d{width:129.177622pt;}
._1b{width:131.309466pt;}
._1c{width:135.193479pt;}
._f{width:163.450254pt;}
._1a{width:211.701977pt;}
._19{width:269.115629pt;}
._16{width:607.265581pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.151467pt;}
.fs9{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:43.995200pt;}
.fs1{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:4.649333pt;}
.y1d2{bottom:5.977333pt;}
.y192{bottom:9.149333pt;}
.y3d{bottom:11.344000pt;}
.y13f{bottom:11.841333pt;}
.y141{bottom:12.768000pt;}
.ya8{bottom:13.218667pt;}
.y169{bottom:14.953333pt;}
.y71{bottom:16.821333pt;}
.y3e{bottom:18.021333pt;}
.y18a{bottom:18.537333pt;}
.y1d1{bottom:18.596000pt;}
.y72{bottom:20.045333pt;}
.yd1{bottom:21.822667pt;}
.y1c1{bottom:22.926667pt;}
.ye0{bottom:23.292000pt;}
.ye2{bottom:24.505333pt;}
.ya7{bottom:25.277333pt;}
.y140{bottom:25.386667pt;}
.y2e{bottom:26.832000pt;}
.y13e{bottom:27.374667pt;}
.y125{bottom:27.536000pt;}
.y158{bottom:27.633333pt;}
.y58{bottom:28.266667pt;}
.ye9{bottom:29.716000pt;}
.y168{bottom:30.486667pt;}
.y189{bottom:31.156000pt;}
.y69{bottom:31.162667pt;}
.y1b8{bottom:31.288000pt;}
.y5b{bottom:32.916000pt;}
.y9d{bottom:33.524000pt;}
.y1df{bottom:34.508000pt;}
.y1c0{bottom:35.545333pt;}
.ydf{bottom:35.910667pt;}
.y2d{bottom:36.130667pt;}
.y19f{bottom:36.254667pt;}
.y75{bottom:36.709333pt;}
.ye1{bottom:37.124000pt;}
.y57{bottom:37.565333pt;}
.y115{bottom:37.877333pt;}
.ya6{bottom:37.897333pt;}
.y13d{bottom:39.993333pt;}
.y157{bottom:40.252000pt;}
.y18{bottom:40.321333pt;}
.y70{bottom:40.780000pt;}
.y92{bottom:41.304000pt;}
.y124{bottom:42.148000pt;}
.y4c{bottom:43.084000pt;}
.y17{bottom:43.632000pt;}
.y188{bottom:43.776000pt;}
.y68{bottom:43.782667pt;}
.y2c{bottom:45.429333pt;}
.yf{bottom:45.717333pt;}
.ycf{bottom:46.192000pt;}
.yb3{bottom:46.202667pt;}
.y52{bottom:46.382667pt;}
.yfe{bottom:46.662667pt;}
.y1bf{bottom:48.165333pt;}
.y1de{bottom:49.118667pt;}
.y1ed{bottom:49.472000pt;}
.y1ac{bottom:49.692000pt;}
.y1b7{bottom:51.213333pt;}
.y114{bottom:52.489333pt;}
.y1d0{bottom:52.750667pt;}
.y156{bottom:52.872000pt;}
.y166{bottom:53.400000pt;}
.yf3{bottom:53.630667pt;}
.ya5{bottom:54.296000pt;}
.y108{bottom:54.854667pt;}
.yce{bottom:55.490667pt;}
.y51{bottom:55.681333pt;}
.y91{bottom:55.916000pt;}
.y187{bottom:56.394667pt;}
.y67{bottom:56.401333pt;}
.yc0{bottom:56.994667pt;}
.y4b{bottom:57.696000pt;}
.yb2{bottom:58.821333pt;}
.y3c{bottom:59.301333pt;}
.y6f{bottom:60.705333pt;}
.y1ab{bottom:62.310667pt;}
.y1dd{bottom:63.730667pt;}
.y1ec{bottom:64.084000pt;}
.y16b{bottom:64.733333pt;}
.ycd{bottom:64.789333pt;}
.y1b6{bottom:65.825333pt;}
.y123{bottom:66.318667pt;}
.y1cf{bottom:67.362667pt;}
.y165{bottom:68.012000pt;}
.y1be{bottom:68.344000pt;}
.y155{bottom:68.405333pt;}
.y23{bottom:68.937333pt;}
.y12f{bottom:70.682667pt;}
.y9c{bottom:70.794667pt;}
.ybf{bottom:71.606667pt;}
.y15a{bottom:71.790667pt;}
.y4a{bottom:72.308000pt;}
.y13c{bottom:72.549333pt;}
.y19e{bottom:73.084000pt;}
.y3b{bottom:73.913333pt;}
.ycc{bottom:74.086667pt;}
.y1aa{bottom:74.930667pt;}
.yb1{bottom:75.221333pt;}
.y90{bottom:75.841333pt;}
.yde{bottom:76.960000pt;}
.y16a{bottom:77.353333pt;}
.yd{bottom:77.518667pt;}
.y122{bottom:78.937333pt;}
.y1a8{bottom:79.277333pt;}
.y186{bottom:79.526667pt;}
.y6e{bottom:80.630667pt;}
.y1f3{bottom:81.942667pt;}
.y1ce{bottom:81.974667pt;}
.ycb{bottom:83.385333pt;}
.y1dc{bottom:83.656000pt;}
.y1eb{bottom:84.009333pt;}
.y159{bottom:84.409333pt;}
.y13b{bottom:85.169333pt;}
.y12e{bottom:85.294667pt;}
.y9b{bottom:85.406667pt;}
.y113{bottom:85.576000pt;}
.y1b5{bottom:85.750667pt;}
.yf2{bottom:86.621333pt;}
.y167{bottom:86.832000pt;}
.y61{bottom:86.889333pt;}
.yfd{bottom:87.614667pt;}
.y19d{bottom:87.696000pt;}
.y3a{bottom:88.525333pt;}
.y8f{bottom:90.453333pt;}
.yfc{bottom:90.920000pt;}
.ybe{bottom:91.532000pt;}
.ydd{bottom:91.572000pt;}
.y107{bottom:91.685333pt;}
.y1f6{bottom:92.398667pt;}
.yca{bottom:92.684000pt;}
.y14a{bottom:92.874667pt;}
.y49{bottom:94.757333pt;}
.y174{bottom:96.077333pt;}
.y1f2{bottom:96.554667pt;}
.y185{bottom:97.093333pt;}
.yf0{bottom:97.232000pt;}
.y1ea{bottom:98.621333pt;}
.y1a9{bottom:98.888000pt;}
.y6d{bottom:100.556000pt;}
.yf1{bottom:101.232000pt;}
.y60{bottom:101.500000pt;}
.y13a{bottom:101.645333pt;}
.y1cd{bottom:101.900000pt;}
.yc9{bottom:101.982667pt;}
.y39{bottom:103.137333pt;}
.y1db{bottom:103.581333pt;}
.yc{bottom:103.820000pt;}
.y5{bottom:104.896000pt;}
.y12d{bottom:105.220000pt;}
.y112{bottom:105.501333pt;}
.y1b4{bottom:105.676000pt;}
.ybd{bottom:106.144000pt;}
.y106{bottom:106.296000pt;}
.y16{bottom:108.258667pt;}
.y48{bottom:109.368000pt;}
.y173{bottom:110.689333pt;}
.ydc{bottom:111.497333pt;}
.y184{bottom:111.704000pt;}
.y1a7{bottom:112.328000pt;}
.y15{bottom:112.797333pt;}
.y149{bottom:112.800000pt;}
.y154{bottom:113.233333pt;}
.y2b{bottom:114.025333pt;}
.y5f{bottom:116.112000pt;}
.yb0{bottom:116.276000pt;}
.y1cc{bottom:116.512000pt;}
.y191{bottom:117.570667pt;}
.y38{bottom:117.749333pt;}
.yd0{bottom:118.084000pt;}
.y1e9{bottom:118.546667pt;}
.y22{bottom:118.612000pt;}
.y6c{bottom:118.696000pt;}
.y19c{bottom:118.960000pt;}
.y12c{bottom:119.830667pt;}
.y111{bottom:120.113333pt;}
.ybc{bottom:120.756000pt;}
.y164{bottom:121.542667pt;}
.y21{bottom:122.200000pt;}
.y1da{bottom:123.506667pt;}
.y17a{bottom:124.273333pt;}
.y139{bottom:124.489333pt;}
.y83{bottom:124.788000pt;}
.ydb{bottom:126.109333pt;}
.y8e{bottom:126.252000pt;}
.y1c{bottom:126.257333pt;}
.y183{bottom:126.316000pt;}
.y1a6{bottom:126.940000pt;}
.y121{bottom:127.449333pt;}
.y153{bottom:127.845333pt;}
.y105{bottom:127.850667pt;}
.y1b{bottom:129.568000pt;}
.yb{bottom:130.121333pt;}
.y172{bottom:130.614667pt;}
.y5e{bottom:130.724000pt;}
.yaf{bottom:130.886667pt;}
.y47{bottom:131.817333pt;}
.y9a{bottom:131.865333pt;}
.y190{bottom:132.182667pt;}
.y148{bottom:132.725333pt;}
.y1e8{bottom:133.157333pt;}
.y19b{bottom:133.572000pt;}
.y110{bottom:134.725333pt;}
.yfb{bottom:135.717333pt;}
.y56{bottom:136.161333pt;}
.y1cb{bottom:136.437333pt;}
.y1b3{bottom:136.940000pt;}
.y37{bottom:137.674667pt;}
.y1d9{bottom:138.118667pt;}
.y179{bottom:138.885333pt;}
.y138{bottom:139.101333pt;}
.y82{bottom:139.400000pt;}
.y12b{bottom:139.756000pt;}
.y119{bottom:140.465333pt;}
.y8d{bottom:140.864000pt;}
.y182{bottom:140.928000pt;}
.y163{bottom:141.468000pt;}
.y1a5{bottom:141.552000pt;}
.y120{bottom:142.061333pt;}
.y104{bottom:142.462667pt;}
.y171{bottom:145.226667pt;}
.y5d{bottom:145.336000pt;}
.yae{bottom:145.498667pt;}
.yda{bottom:146.034667pt;}
.y46{bottom:146.429333pt;}
.y99{bottom:146.477333pt;}
.y18f{bottom:146.794667pt;}
.y147{bottom:147.337333pt;}
.yc8{bottom:147.377333pt;}
.y152{bottom:147.770667pt;}
.y2a{bottom:147.946667pt;}
.y10f{bottom:149.337333pt;}
.yfa{bottom:150.329333pt;}
.y55{bottom:150.772000pt;}
.y1ca{bottom:151.049333pt;}
.y36{bottom:152.286667pt;}
.y1e7{bottom:153.082667pt;}
.y178{bottom:153.497333pt;}
.y1f1{bottom:153.850667pt;}
.y81{bottom:154.010667pt;}
.y12a{bottom:154.368000pt;}
.y8c{bottom:155.476000pt;}
.y162{bottom:156.080000pt;}
.ya{bottom:156.422667pt;}
.y11f{bottom:156.673333pt;}
.y1b2{bottom:156.865333pt;}
.y103{bottom:157.073333pt;}
.y1d8{bottom:158.044000pt;}
.y181{bottom:158.493333pt;}
.y137{bottom:159.026667pt;}
.y5c{bottom:159.948000pt;}
.yd9{bottom:160.646667pt;}
.y45{bottom:161.041333pt;}
.y4{bottom:161.053333pt;}
.y1a4{bottom:161.477333pt;}
.yc7{bottom:161.989333pt;}
.y151{bottom:162.382667pt;}
.y29{bottom:162.558667pt;}
.y98{bottom:162.784000pt;}
.y18e{bottom:164.062667pt;}
.y118{bottom:164.664000pt;}
.y19a{bottom:164.836000pt;}
.ya4{bottom:165.082667pt;}
.y170{bottom:165.152000pt;}
.y54{bottom:165.384000pt;}
.y1c9{bottom:165.660000pt;}
.ybb{bottom:166.298667pt;}
.y35{bottom:166.898667pt;}
.y146{bottom:167.262667pt;}
.y1f5{bottom:167.674667pt;}
.y1e6{bottom:167.694667pt;}
.y177{bottom:168.109333pt;}
.y1f0{bottom:168.462667pt;}
.y10e{bottom:169.262667pt;}
.yef{bottom:169.766667pt;}
.y8b{bottom:170.088000pt;}
.y9{bottom:171.034667pt;}
.y11e{bottom:171.285333pt;}
.y77{bottom:171.289333pt;}
.y102{bottom:171.685333pt;}
.y180{bottom:173.105333pt;}
.y136{bottom:173.638667pt;}
.y80{bottom:173.936000pt;}
.yad{bottom:174.164000pt;}
.yd8{bottom:175.258667pt;}
.y161{bottom:176.005333pt;}
.y1a3{bottom:176.089333pt;}
.y1b1{bottom:176.790667pt;}
.y28{bottom:177.170667pt;}
.y20{bottom:177.786667pt;}
.y18d{bottom:178.674667pt;}
.y14{bottom:179.182667pt;}
.y199{bottom:179.448000pt;}
.y16f{bottom:179.764000pt;}
.y53{bottom:179.996000pt;}
.yf9{bottom:180.470667pt;}
.yba{bottom:180.909333pt;}
.y1f{bottom:181.706667pt;}
.y145{bottom:181.874667pt;}
.y1e5{bottom:182.306667pt;}
.y150{bottom:182.308000pt;}
.ya3{bottom:182.352000pt;}
.y1bd{bottom:182.353333pt;}
.y129{bottom:182.369333pt;}
.y44{bottom:183.490667pt;}
.yee{bottom:184.378667pt;}
.y8a{bottom:184.700000pt;}
.y1c8{bottom:185.585333pt;}
.y1d7{bottom:186.005333pt;}
.y34{bottom:186.824000pt;}
.y17f{bottom:187.717333pt;}
.y7f{bottom:188.548000pt;}
.y12{bottom:189.466667pt;}
.y24{bottom:189.738667pt;}
.y10d{bottom:190.516000pt;}
.y160{bottom:190.617333pt;}
.y1a2{bottom:190.701333pt;}
.y27{bottom:191.781333pt;}
.y97{bottom:192.168000pt;}
.y117{bottom:192.353333pt;}
.y18c{bottom:193.286667pt;}
.y135{bottom:193.564000pt;}
.y13{bottom:193.794667pt;}
.y198{bottom:194.060000pt;}
.y101{bottom:194.194667pt;}
.ye8{bottom:195.006667pt;}
.yf8{bottom:195.082667pt;}
.yb9{bottom:195.521333pt;}
.y144{bottom:196.486667pt;}
.y1b0{bottom:196.716000pt;}
.y14f{bottom:196.920000pt;}
.y1bc{bottom:196.965333pt;}
.y11d{bottom:197.236000pt;}
.y8{bottom:197.336000pt;}
.y43{bottom:198.102667pt;}
.yed{bottom:198.989333pt;}
.yc6{bottom:199.520000pt;}
.ya2{bottom:199.620000pt;}
.y16e{bottom:199.689333pt;}
.y1c7{bottom:200.197333pt;}
.y1a{bottom:200.297333pt;}
.y33{bottom:201.434667pt;}
.y176{bottom:201.618667pt;}
.y1e4{bottom:202.232000pt;}
.y17e{bottom:202.329333pt;}
.y7e{bottom:203.160000pt;}
.y19{bottom:203.597333pt;}
.y76{bottom:204.498667pt;}
.y89{bottom:204.625333pt;}
.y18b{bottom:207.898667pt;}
.y134{bottom:208.176000pt;}
.y100{bottom:208.806667pt;}
.y66{bottom:208.998667pt;}
.ye7{bottom:209.618667pt;}
.yf7{bottom:209.694667pt;}
.yd3{bottom:209.790667pt;}
.y50{bottom:209.962667pt;}
.yb8{bottom:210.133333pt;}
.y10c{bottom:210.441333pt;}
.y15f{bottom:210.542667pt;}
.y26{bottom:211.706667pt;}
.y11c{bottom:211.846667pt;}
.yac{bottom:212.278667pt;}
.y197{bottom:212.452000pt;}
.y42{bottom:212.714667pt;}
.yc5{bottom:214.132000pt;}
.y16d{bottom:214.301333pt;}
.y1c6{bottom:214.809333pt;}
.y3{bottom:215.944000pt;}
.y32{bottom:216.046667pt;}
.y175{bottom:216.230667pt;}
.y143{bottom:216.412000pt;}
.y1e3{bottom:216.844000pt;}
.y14e{bottom:216.845333pt;}
.ya1{bottom:216.889333pt;}
.y1bb{bottom:216.890667pt;}
.y7d{bottom:217.772000pt;}
.y96{bottom:218.232000pt;}
.yec{bottom:218.914667pt;}
.yd2{bottom:219.089333pt;}
.y88{bottom:219.236000pt;}
.y128{bottom:219.565333pt;}
.y116{bottom:220.044000pt;}
.y1d6{bottom:223.202667pt;}
.yff{bottom:223.418667pt;}
.y65{bottom:223.610667pt;}
.y7{bottom:223.637333pt;}
.y4f{bottom:224.574667pt;}
.yb7{bottom:224.745333pt;}
.y15e{bottom:225.154667pt;}
.y11b{bottom:226.458667pt;}
.yab{bottom:226.890667pt;}
.y196{bottom:227.064000pt;}
.y133{bottom:228.101333pt;}
.yc4{bottom:228.744000pt;}
.y1a1{bottom:229.101333pt;}
.ye6{bottom:229.544000pt;}
.yf6{bottom:229.620000pt;}
.y1ef{bottom:229.808000pt;}
.yd7{bottom:229.989333pt;}
.y1e2{bottom:231.456000pt;}
.y14d{bottom:231.457333pt;}
.yeb{bottom:233.526667pt;}
.y87{bottom:233.848000pt;}
.y127{bottom:234.177333pt;}
.y1c5{bottom:234.734667pt;}
.y95{bottom:234.792000pt;}
.y41{bottom:235.164000pt;}
.y31{bottom:235.972000pt;}
.y1e{bottom:236.960000pt;}
.y1af{bottom:237.324000pt;}
.y7c{bottom:237.697333pt;}
.y1d5{bottom:237.814667pt;}
.y10b{bottom:238.442667pt;}
.yb6{bottom:239.357333pt;}
.y1f4{bottom:240.524000pt;}
.y1d{bottom:240.881333pt;}
.y11a{bottom:241.070667pt;}
.yaa{bottom:241.502667pt;}
.y195{bottom:241.674667pt;}
.y16c{bottom:242.556000pt;}
.y132{bottom:242.713333pt;}
.yc3{bottom:243.356000pt;}
.y64{bottom:243.536000pt;}
.y17d{bottom:243.604000pt;}
.y1a0{bottom:243.713333pt;}
.ye5{bottom:244.156000pt;}
.y1ee{bottom:244.420000pt;}
.yd6{bottom:244.601333pt;}
.y142{bottom:244.666667pt;}
.y15d{bottom:245.080000pt;}
.yf5{bottom:245.560000pt;}
.y1e1{bottom:246.068000pt;}
.y14c{bottom:246.069333pt;}
.y5a{bottom:248.281333pt;}
.y2{bottom:249.153333pt;}
.y30{bottom:250.584000pt;}
.y1ae{bottom:251.936000pt;}
.y7b{bottom:252.309333pt;}
.y1d4{bottom:252.425333pt;}
.y1c4{bottom:253.126667pt;}
.ye{bottom:253.526667pt;}
.y86{bottom:253.773333pt;}
.yb5{bottom:253.969333pt;}
.y4e{bottom:254.304000pt;}
.y1ba{bottom:255.290667pt;}
.y40{bottom:257.612000pt;}
.yc2{bottom:257.968000pt;}
.y17c{bottom:258.216000pt;}
.ya0{bottom:258.302667pt;}
.yd5{bottom:259.213333pt;}
.y74{bottom:259.418667pt;}
.y15c{bottom:259.692000pt;}
.y126{bottom:259.854667pt;}
.y194{bottom:260.066667pt;}
.y94{bottom:260.192000pt;}
.y9f{bottom:261.176000pt;}
.y131{bottom:262.638667pt;}
.y59{bottom:262.893333pt;}
.y63{bottom:263.461333pt;}
.ye4{bottom:264.081333pt;}
.y11{bottom:264.121333pt;}
.y10a{bottom:264.470667pt;}
.y2f{bottom:265.196000pt;}
.y1ad{bottom:266.548000pt;}
.y7a{bottom:266.921333pt;}
.y1c3{bottom:267.738667pt;}
.y85{bottom:268.385333pt;}
.yea{bottom:268.570667pt;}
.y4d{bottom:268.916000pt;}
.ya9{bottom:269.502667pt;}
.y1b9{bottom:269.902667pt;}
.y3f{bottom:272.224000pt;}
.yc1{bottom:272.578667pt;}
.y17b{bottom:272.828000pt;}
.yf4{bottom:273.044000pt;}
.yd4{bottom:273.825333pt;}
.y73{bottom:274.030667pt;}
.y1e0{bottom:274.069333pt;}
.y14b{bottom:274.324000pt;}
.y193{bottom:274.678667pt;}
.y93{bottom:276.498667pt;}
.y62{bottom:278.073333pt;}
.ye3{bottom:278.693333pt;}
.y109{bottom:279.081333pt;}
.y1d3{bottom:280.386667pt;}
.yb4{bottom:280.469333pt;}
.y1{bottom:282.361333pt;}
.y1c2{bottom:283.913333pt;}
.y6b{bottom:284.596000pt;}
.y79{bottom:286.846667pt;}
.y15b{bottom:287.946667pt;}
.y84{bottom:288.310667pt;}
.y130{bottom:288.314667pt;}
.y6a{bottom:299.208000pt;}
.y78{bottom:316.602667pt;}
.y9e{bottom:321.372000pt;}
.y6{bottom:321.381333pt;}
.y25{bottom:351.030667pt;}
.h1d{height:17.109056pt;}
.h16{height:20.767670pt;}
.h6{height:23.974161pt;}
.h11{height:27.927347pt;}
.h10{height:31.922907pt;}
.h13{height:35.243930pt;}
.h3{height:35.913421pt;}
.h12{height:37.236307pt;}
.h15{height:38.127670pt;}
.h18{height:38.468919pt;}
.h17{height:41.078067pt;}
.hb{height:41.891021pt;}
.h5{height:47.183189pt;}
.h1c{height:47.667634pt;}
.h1e{height:47.884561pt;}
.hf{height:53.941712pt;}
.h1b{height:53.946989pt;}
.h4{height:57.384800pt;}
.h7{height:67.025446pt;}
.h9{height:76.201421pt;}
.hd{height:78.676087pt;}
.he{height:80.004087pt;}
.h2{height:80.115400pt;}
.ha{height:81.118754pt;}
.h1a{height:81.140087pt;}
.hc{height:81.161421pt;}
.h14{height:82.868087pt;}
.h19{height:110.361421pt;}
.h8{height:111.673421pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x6{left:11.338667pt;}
.x31{left:36.313333pt;}
.x10{left:37.794667pt;}
.x20{left:40.009333pt;}
.x9{left:43.716000pt;}
.x1f{left:45.210667pt;}
.x30{left:49.153333pt;}
.x27{left:51.337333pt;}
.x15{left:52.236000pt;}
.x2c{left:55.745333pt;}
.x28{left:57.100000pt;}
.xb{left:58.486667pt;}
.x4{left:62.618667pt;}
.x37{left:64.230667pt;}
.x18{left:65.638667pt;}
.x19{left:67.461333pt;}
.x2b{left:70.290667pt;}
.x7{left:73.661333pt;}
.x21{left:78.408000pt;}
.x14{left:81.557333pt;}
.x33{left:87.673333pt;}
.x2{left:91.640000pt;}
.xd{left:94.784000pt;}
.xc{left:96.281333pt;}
.xf{left:101.948000pt;}
.x36{left:109.100000pt;}
.x32{left:111.097333pt;}
.x38{left:127.092000pt;}
.x35{left:133.701333pt;}
.x3{left:145.450667pt;}
.x1{left:149.286667pt;}
.x1a{left:156.688000pt;}
.x39{left:169.669333pt;}
.x8{left:172.750667pt;}
.x25{left:176.593333pt;}
.x2e{left:182.248000pt;}
.x5{left:190.350667pt;}
.x22{left:191.565333pt;}
.x11{left:208.418667pt;}
.x12{left:211.868000pt;}
.x2d{left:217.832000pt;}
.x13{left:223.234667pt;}
.x23{left:232.630667pt;}
.x2f{left:236.914667pt;}
.x34{left:244.820000pt;}
.x26{left:245.898667pt;}
.x16{left:250.125333pt;}
.x2a{left:255.069333pt;}
.x29{left:256.552000pt;}
.x1c{left:258.749333pt;}
.x1b{left:272.102667pt;}
.x24{left:294.965333pt;}
.xe{left:338.368000pt;}
.x1e{left:357.826667pt;}
.x3a{left:376.733333pt;}
.x1d{left:379.412000pt;}
.x17{left:447.908000pt;}
.xa{left:452.588000pt;}
}




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