
    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_be638ebda3fe3facf6f29623.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.068987;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_549201e9624016ec66095cdf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.111816;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_9f5a0eb6604a9df40d671893.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_0f4839ce9885399b361ce16b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111816;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_159770c487e1646fe1700bf1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093347;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_d83bb008cf104f12a0d87714.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_b1fc34c0536cb397bef4d352.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.105469;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_37b8bedfc1ebf88caeab621f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068987;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_2a2bd5d9fa467256e2d79428.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.111816;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_324ba65e9253f8e2444098ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.057214;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_68a114cf6e4f2c41f1575035.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093347;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_252b122c2312c034db53b311.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.087402;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_6164d78b3b87bbeaf07877d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_5061ab3acebaef568f49ece4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.068987;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_2a2bd5d9fa467256e2d79428.woff2')format("woff");}.fff{font-family:fff;line-height:1.111816;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_1f43fd8984e3ff5e049c1397.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.920898;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_fec77b11c276415da5f5f7ff.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.116699;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_7364cdd041d9376f28a75a0c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910645;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_ea5f872ad66e55aa3dca4090.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.104004;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_4a348b393f9d170fc171a35f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.983887;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_bfb74111ec5a052b85007841.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.843750;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_7be448eca8e41a9cb5ee9b59.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.912598;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_0dc4649c77fd56b52b7cbdb4.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.087891;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);}
.v6{vertical-align:-35.982000px;}
.vd{vertical-align:-33.984000px;}
.v9{vertical-align:-23.976000px;}
.vb{vertical-align:-19.980000px;}
.v5{vertical-align:-17.982000px;}
.v8{vertical-align:-1.998000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:10.008000px;}
.v3{vertical-align:17.958000px;}
.vc{vertical-align:19.979400px;}
.v7{vertical-align:21.978000px;}
.v1{vertical-align:27.996000px;}
.v4{vertical-align:33.984000px;}
.v2{vertical-align:35.982600px;}
.ls31{letter-spacing:-2.220000px;}
.ls35{letter-spacing:-1.923900px;}
.ls17{letter-spacing:-1.080000px;}
.ls37{letter-spacing:-0.660000px;}
.ls30{letter-spacing:-0.594000px;}
.ls16{letter-spacing:-0.540000px;}
.ls3c{letter-spacing:-0.314820px;}
.ls8{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000600px;}
.ls46{letter-spacing:0.002400px;}
.lsa{letter-spacing:0.003000px;}
.ls34{letter-spacing:0.004200px;}
.ls18{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.lsc{letter-spacing:0.007800px;}
.ls19{letter-spacing:0.008400px;}
.ls32{letter-spacing:0.009000px;}
.ls41{letter-spacing:0.010200px;}
.ls3f{letter-spacing:0.011400px;}
.ls47{letter-spacing:0.012000px;}
.ls33{letter-spacing:0.015000px;}
.ls42{letter-spacing:0.018600px;}
.ls36{letter-spacing:0.023400px;}
.ls3e{letter-spacing:0.029400px;}
.ls44{letter-spacing:0.030000px;}
.ls2f{letter-spacing:0.031200px;}
.ls2{letter-spacing:0.042000px;}
.ls28{letter-spacing:0.045000px;}
.ls3a{letter-spacing:0.048600px;}
.ls6{letter-spacing:0.050400px;}
.ls45{letter-spacing:0.054000px;}
.ls40{letter-spacing:0.066000px;}
.ls39{letter-spacing:0.069000px;}
.ls22{letter-spacing:0.076200px;}
.ls1e{letter-spacing:0.279840px;}
.ls9{letter-spacing:0.450000px;}
.ls1d{letter-spacing:0.483000px;}
.ls12{letter-spacing:0.529200px;}
.ls1c{letter-spacing:0.535800px;}
.ls10{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.548400px;}
.ls11{letter-spacing:0.552000px;}
.ls29{letter-spacing:0.559680px;}
.ls14{letter-spacing:0.577200px;}
.ls2e{letter-spacing:0.594000px;}
.ls2a{letter-spacing:0.629640px;}
.ls2d{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.840000px;}
.ls43{letter-spacing:0.846900px;}
.ls25{letter-spacing:1.060200px;}
.ls24{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.088400px;}
.ls26{letter-spacing:1.096200px;}
.ls21{letter-spacing:1.188000px;}
.ls1f{letter-spacing:1.320000px;}
.ls38{letter-spacing:1.341300px;}
.ls4c{letter-spacing:2.400000px;}
.ls27{letter-spacing:2.484000px;}
.ls3d{letter-spacing:2.700000px;}
.ls5{letter-spacing:3.628200px;}
.ls4{letter-spacing:3.628800px;}
.ls13{letter-spacing:4.158000px;}
.ls49{letter-spacing:4.620000px;}
.ls48{letter-spacing:4.680000px;}
.ls4a{letter-spacing:5.040000px;}
.ls4d{letter-spacing:5.760000px;}
.lsf{letter-spacing:5.778000px;}
.lsb{letter-spacing:6.372000px;}
.lse{letter-spacing:7.241100px;}
.ls4b{letter-spacing:7.500000px;}
.lsd{letter-spacing:7.555500px;}
.ls3b{letter-spacing:7.556100px;}
.ls7{letter-spacing:7.870500px;}
.ls1b{letter-spacing:8.185500px;}
.ls23{letter-spacing:8.500500px;}
.ls20{letter-spacing:9.882000px;}
.ls2b{letter-spacing:15.000000px;}
.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;}
}
.ws106{word-spacing:-60.000000px;}
.ws20{word-spacing:-54.000000px;}
.wsb6{word-spacing:-18.000000px;}
.ws1e{word-spacing:-16.500000px;}
.ws44{word-spacing:-15.000000px;}
.ws46{word-spacing:-14.040000px;}
.ws3{word-spacing:-13.500000px;}
.ws105{word-spacing:-13.260000px;}
.ws9f{word-spacing:-12.906000px;}
.wsa3{word-spacing:-12.780000px;}
.ws45{word-spacing:-12.600000px;}
.ws21{word-spacing:-12.420000px;}
.ws1f{word-spacing:-12.000000px;}
.ws98{word-spacing:-11.934000px;}
.ws1{word-spacing:-11.700000px;}
.ws8c{word-spacing:-10.546200px;}
.ws8a{word-spacing:-10.494000px;}
.ws22{word-spacing:-9.979200px;}
.ws8b{word-spacing:-9.619500px;}
.ws2{word-spacing:-9.450000px;}
.ws97{word-spacing:-8.745000px;}
.ws4{word-spacing:-7.870500px;}
.ws0{word-spacing:-7.350000px;}
.ws96{word-spacing:-6.996000px;}
.wsb2{word-spacing:-6.821100px;}
.ws39{word-spacing:-4.564890px;}
.wsed{word-spacing:-4.554000px;}
.ws30{word-spacing:-4.250070px;}
.ws1a{word-spacing:-3.935250px;}
.wsdd{word-spacing:-3.900000px;}
.ws76{word-spacing:-3.777840px;}
.ws72{word-spacing:-3.672000px;}
.ws6e{word-spacing:-3.620430px;}
.ws18{word-spacing:-3.498000px;}
.ws83{word-spacing:-3.300000px;}
.ws65{word-spacing:-3.234000px;}
.ws6b{word-spacing:-3.218160px;}
.wsf8{word-spacing:-3.036000px;}
.wsda{word-spacing:-3.000000px;}
.wse2{word-spacing:-2.940000px;}
.wsa6{word-spacing:-2.916000px;}
.ws7c{word-spacing:-2.904000px;}
.ws79{word-spacing:-2.838000px;}
.wsf6{word-spacing:-2.772000px;}
.wsdc{word-spacing:-2.700000px;}
.ws12a{word-spacing:-2.580000px;}
.ws19{word-spacing:-2.574000px;}
.ws29{word-spacing:-2.508000px;}
.ws52{word-spacing:-2.442000px;}
.ws3f{word-spacing:-2.430000px;}
.ws127{word-spacing:-2.340000px;}
.ws9c{word-spacing:-2.322000px;}
.ws8e{word-spacing:-2.310000px;}
.wsc4{word-spacing:-2.244000px;}
.ws13d{word-spacing:-2.220000px;}
.ws80{word-spacing:-2.178000px;}
.ws33{word-spacing:-2.106000px;}
.ws4c{word-spacing:-2.100000px;}
.wsd2{word-spacing:-2.052000px;}
.ws137{word-spacing:-2.040000px;}
.ws43{word-spacing:-1.998000px;}
.ws126{word-spacing:-1.980000px;}
.wsfb{word-spacing:-1.914000px;}
.ws13a{word-spacing:-1.860000px;}
.ws40{word-spacing:-1.836000px;}
.wsde{word-spacing:-1.800000px;}
.ws10{word-spacing:-1.782000px;}
.ws48{word-spacing:-1.716000px;}
.ws4d{word-spacing:-1.650000px;}
.wsaf{word-spacing:-1.620000px;}
.ws4f{word-spacing:-1.584000px;}
.wsc3{word-spacing:-1.518000px;}
.wsa9{word-spacing:-1.512000px;}
.wse4{word-spacing:-1.452000px;}
.wsfd{word-spacing:-1.440000px;}
.ws15{word-spacing:-1.404000px;}
.wse9{word-spacing:-1.386000px;}
.ws3e{word-spacing:-1.350000px;}
.ws78{word-spacing:-1.320000px;}
.wsf1{word-spacing:-1.254000px;}
.ws3b{word-spacing:-1.242000px;}
.ws56{word-spacing:-1.188000px;}
.wsf5{word-spacing:-1.122000px;}
.ws31{word-spacing:-1.080000px;}
.wscc{word-spacing:-1.056000px;}
.ws12c{word-spacing:-0.960000px;}
.ws6{word-spacing:-0.840000px;}
.ws27{word-spacing:-0.792000px;}
.ws85{word-spacing:-0.756000px;}
.wsbf{word-spacing:-0.726000px;}
.wseb{word-spacing:-0.720000px;}
.ws9d{word-spacing:-0.702000px;}
.ws24{word-spacing:-0.660000px;}
.wsa2{word-spacing:-0.594000px;}
.ws42{word-spacing:-0.540000px;}
.wsf9{word-spacing:-0.462000px;}
.wsd{word-spacing:-0.432000px;}
.wsd7{word-spacing:-0.396000px;}
.wsb5{word-spacing:-0.378000px;}
.ws38{word-spacing:-0.324000px;}
.ws34{word-spacing:-0.270000px;}
.ws71{word-spacing:-0.216000px;}
.ws28{word-spacing:-0.198000px;}
.ws37{word-spacing:-0.162000px;}
.ws84{word-spacing:-0.132000px;}
.ws10d{word-spacing:-0.120000px;}
.ws69{word-spacing:-0.066000px;}
.ws13c{word-spacing:-0.060000px;}
.wsb{word-spacing:-0.054000px;}
.ws1d{word-spacing:-0.029400px;}
.ws5{word-spacing:0.000000px;}
.ws104{word-spacing:0.054000px;}
.ws7f{word-spacing:0.066000px;}
.ws1c{word-spacing:0.108000px;}
.wsc0{word-spacing:0.132000px;}
.ws36{word-spacing:0.216000px;}
.ws138{word-spacing:0.240000px;}
.ws6d{word-spacing:0.264000px;}
.wsdb{word-spacing:0.300000px;}
.ws12b{word-spacing:0.360000px;}
.ws86{word-spacing:0.378000px;}
.ws103{word-spacing:0.396000px;}
.ws2e{word-spacing:0.432000px;}
.ws32{word-spacing:0.540000px;}
.wsa1{word-spacing:0.594000px;}
.ws9a{word-spacing:0.648000px;}
.ws77{word-spacing:0.660000px;}
.ws70{word-spacing:0.702000px;}
.ws128{word-spacing:0.720000px;}
.ws135{word-spacing:0.780000px;}
.wsf4{word-spacing:0.792000px;}
.ws11e{word-spacing:0.840000px;}
.ws54{word-spacing:0.858000px;}
.ws136{word-spacing:0.900000px;}
.ws14{word-spacing:0.918000px;}
.ws25{word-spacing:0.924000px;}
.ws12e{word-spacing:1.020000px;}
.ws49{word-spacing:1.056000px;}
.wse{word-spacing:1.080000px;}
.ws6c{word-spacing:1.122000px;}
.ws88{word-spacing:1.134000px;}
.ws114{word-spacing:1.140000px;}
.ws17{word-spacing:1.188000px;}
.ws35{word-spacing:1.296000px;}
.ws53{word-spacing:1.320000px;}
.ws13{word-spacing:1.350000px;}
.ws124{word-spacing:1.380000px;}
.wsa0{word-spacing:1.458000px;}
.ws129{word-spacing:1.560000px;}
.ws7b{word-spacing:1.584000px;}
.ws67{word-spacing:1.650000px;}
.ws81{word-spacing:1.716000px;}
.ws9{word-spacing:1.728000px;}
.wsbb{word-spacing:1.782000px;}
.ws12d{word-spacing:1.860000px;}
.wsca{word-spacing:1.914000px;}
.ws41{word-spacing:1.944000px;}
.wsd4{word-spacing:1.980000px;}
.ws74{word-spacing:1.998000px;}
.ws47{word-spacing:2.046000px;}
.ws75{word-spacing:2.052000px;}
.wsd3{word-spacing:2.112000px;}
.ws8{word-spacing:2.160000px;}
.ws102{word-spacing:2.178000px;}
.ws118{word-spacing:2.220000px;}
.wsfa{word-spacing:2.244000px;}
.wsfe{word-spacing:2.268000px;}
.ws4b{word-spacing:2.280000px;}
.wsc5{word-spacing:2.376000px;}
.ws123{word-spacing:2.400000px;}
.wsa4{word-spacing:2.430000px;}
.wscb{word-spacing:2.442000px;}
.wsb9{word-spacing:2.508000px;}
.ws116{word-spacing:2.520000px;}
.ws94{word-spacing:2.538000px;}
.ws51{word-spacing:2.574000px;}
.wsdf{word-spacing:2.580000px;}
.ws101{word-spacing:2.640000px;}
.wsa7{word-spacing:2.646000px;}
.ws6f{word-spacing:2.700000px;}
.ws9e{word-spacing:2.754000px;}
.ws90{word-spacing:2.772000px;}
.ws11f{word-spacing:2.820000px;}
.wsc8{word-spacing:2.838000px;}
.wsea{word-spacing:2.880000px;}
.ws7{word-spacing:2.916000px;}
.wsbd{word-spacing:2.970000px;}
.ws1b{word-spacing:3.024000px;}
.wscf{word-spacing:3.036000px;}
.ws57{word-spacing:3.060000px;}
.ws2f{word-spacing:3.078000px;}
.ws4a{word-spacing:3.102000px;}
.wsff{word-spacing:3.168000px;}
.wsc{word-spacing:3.186000px;}
.wsc2{word-spacing:3.234000px;}
.wse6{word-spacing:3.240000px;}
.ws93{word-spacing:3.294000px;}
.wsf2{word-spacing:3.300000px;}
.wsb1{word-spacing:3.348000px;}
.ws64{word-spacing:3.366000px;}
.wsb0{word-spacing:3.402000px;}
.ws13b{word-spacing:3.420000px;}
.wsba{word-spacing:3.432000px;}
.wsa{word-spacing:3.564000px;}
.ws117{word-spacing:3.600000px;}
.wsf{word-spacing:3.618000px;}
.wsb8{word-spacing:3.630000px;}
.ws2c{word-spacing:3.672000px;}
.wsd5{word-spacing:3.696000px;}
.ws11a{word-spacing:3.720000px;}
.wse7{word-spacing:3.726000px;}
.ws60{word-spacing:3.762000px;}
.wsf0{word-spacing:3.828000px;}
.ws12{word-spacing:3.888000px;}
.ws58{word-spacing:3.900000px;}
.ws73{word-spacing:3.942000px;}
.wsc9{word-spacing:3.960000px;}
.ws82{word-spacing:4.092000px;}
.ws50{word-spacing:4.158000px;}
.wsc6{word-spacing:4.290000px;}
.wse0{word-spacing:4.320000px;}
.ws63{word-spacing:4.356000px;}
.ws134{word-spacing:4.380000px;}
.ws68{word-spacing:4.422000px;}
.wsfc{word-spacing:4.440000px;}
.ws7d{word-spacing:4.488000px;}
.ws132{word-spacing:4.500000px;}
.ws7a{word-spacing:4.554000px;}
.ws9b{word-spacing:4.590000px;}
.ws55{word-spacing:4.620000px;}
.ws109{word-spacing:4.680000px;}
.ws8f{word-spacing:4.686000px;}
.wsd6{word-spacing:4.752000px;}
.ws119{word-spacing:4.800000px;}
.ws12f{word-spacing:4.860000px;}
.ws6a{word-spacing:4.884000px;}
.ws59{word-spacing:4.914000px;}
.ws125{word-spacing:4.920000px;}
.wse8{word-spacing:5.016000px;}
.ws2d{word-spacing:5.076000px;}
.wsef{word-spacing:5.082000px;}
.ws11d{word-spacing:5.100000px;}
.ws8d{word-spacing:5.214000px;}
.wsad{word-spacing:5.238000px;}
.wsf7{word-spacing:5.280000px;}
.wsec{word-spacing:5.346000px;}
.ws2a{word-spacing:5.400000px;}
.ws5d{word-spacing:5.478000px;}
.ws10a{word-spacing:5.520000px;}
.ws23{word-spacing:5.544000px;}
.wsac{word-spacing:5.562000px;}
.ws62{word-spacing:5.610000px;}
.wse5{word-spacing:5.670000px;}
.ws11c{word-spacing:5.700000px;}
.wscd{word-spacing:5.742000px;}
.ws139{word-spacing:5.760000px;}
.ws7e{word-spacing:5.874000px;}
.ws10f{word-spacing:5.940000px;}
.ws11{word-spacing:6.048000px;}
.ws111{word-spacing:6.060000px;}
.ws133{word-spacing:6.120000px;}
.ws131{word-spacing:6.180000px;}
.ws26{word-spacing:6.204000px;}
.wse1{word-spacing:6.240000px;}
.ws89{word-spacing:6.264000px;}
.ws4e{word-spacing:6.270000px;}
.ws112{word-spacing:6.300000px;}
.wsaa{word-spacing:6.318000px;}
.wsbe{word-spacing:6.336000px;}
.ws2b{word-spacing:6.372000px;}
.ws5f{word-spacing:6.402000px;}
.ws108{word-spacing:6.420000px;}
.ws10b{word-spacing:6.480000px;}
.wsb7{word-spacing:6.732000px;}
.ws92{word-spacing:6.750000px;}
.ws3a{word-spacing:6.858000px;}
.ws121{word-spacing:6.900000px;}
.ws66{word-spacing:6.996000px;}
.ws115{word-spacing:7.020000px;}
.wsc7{word-spacing:7.062000px;}
.wsee{word-spacing:7.260000px;}
.ws130{word-spacing:7.320000px;}
.ws95{word-spacing:7.452000px;}
.ws122{word-spacing:7.500000px;}
.ws10e{word-spacing:7.680000px;}
.wsc1{word-spacing:7.788000px;}
.ws10c{word-spacing:8.040000px;}
.ws91{word-spacing:8.100000px;}
.ws16{word-spacing:8.154000px;}
.ws5c{word-spacing:8.184000px;}
.ws11b{word-spacing:8.340000px;}
.ws61{word-spacing:8.382000px;}
.wse3{word-spacing:8.448000px;}
.ws99{word-spacing:8.478000px;}
.ws100{word-spacing:8.514000px;}
.ws5e{word-spacing:8.580000px;}
.wsa5{word-spacing:8.640000px;}
.wsd9{word-spacing:8.646000px;}
.wsce{word-spacing:8.712000px;}
.ws113{word-spacing:8.880000px;}
.wsf3{word-spacing:9.072000px;}
.wsd8{word-spacing:9.108000px;}
.ws3c{word-spacing:9.288000px;}
.ws110{word-spacing:9.780000px;}
.ws87{word-spacing:9.936000px;}
.ws5b{word-spacing:9.990000px;}
.ws107{word-spacing:10.080000px;}
.wsbc{word-spacing:10.230000px;}
.ws3d{word-spacing:11.232000px;}
.wsb3{word-spacing:11.340000px;}
.ws5a{word-spacing:12.312000px;}
.wsab{word-spacing:12.366000px;}
.wsd0{word-spacing:12.474000px;}
.ws120{word-spacing:13.680000px;}
.wsae{word-spacing:14.202000px;}
.wsb4{word-spacing:15.228000px;}
.wsa8{word-spacing:15.282000px;}
.wsd1{word-spacing:16.686000px;}
._e{margin-left:-16.962000px;}
._b{margin-left:-6.610200px;}
._5{margin-left:-4.266000px;}
._9{margin-left:-3.120000px;}
._2{margin-left:-1.728000px;}
._f{width:1.020000px;}
._0{width:2.031000px;}
._1{width:3.622200px;}
._a{width:4.673400px;}
._3{width:5.690004px;}
._4{width:6.905988px;}
._7{width:8.208000px;}
._8{width:9.990000px;}
._d{width:11.502000px;}
._c{width:15.282150px;}
._6{width:2133.370800px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fs1{font-size:29.400000px;}
.fs5{font-size:31.482000px;}
.fs11{font-size:34.980000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:37.800000px;}
.fsc{font-size:38.478000px;}
.fs10{font-size:41.976000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsb{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fsf{font-size:50.400000px;}
.fs4{font-size:54.000000px;}
.fse{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y24{bottom:-25.015800px;}
.y0{bottom:0.000000px;}
.y25{bottom:96.503100px;}
.y1f{bottom:103.784850px;}
.y1e{bottom:123.278850px;}
.y129{bottom:125.044800px;}
.yac{bottom:125.046150px;}
.y1b8{bottom:125.046300px;}
.yea{bottom:125.047650px;}
.y51{bottom:125.049300px;}
.y89{bottom:125.052300px;}
.y26c{bottom:125.091150px;}
.y210{bottom:129.204750px;}
.yc4{bottom:129.538800px;}
.y1ee{bottom:133.790850px;}
.y247{bottom:136.197300px;}
.ye9{bottom:140.046150px;}
.y50{bottom:141.546300px;}
.yab{bottom:141.549150px;}
.y88{bottom:141.549300px;}
.y128{bottom:144.538800px;}
.y164{bottom:144.552300px;}
.yc3{bottom:144.555300px;}
.y14d{bottom:144.558300px;}
.y26b{bottom:145.446150px;}
.y1b7{bottom:146.038800px;}
.y20f{bottom:148.698750px;}
.y170{bottom:149.038800px;}
.y23{bottom:149.458050px;}
.y1ed{bottom:153.290850px;}
.ye8{bottom:155.044650px;}
.y246{bottom:156.447300px;}
.yaa{bottom:158.046150px;}
.y4f{bottom:158.046300px;}
.y15a{bottom:159.546300px;}
.y22{bottom:159.717450px;}
.y1b6{bottom:161.046300px;}
.y163{bottom:161.049300px;}
.yc2{bottom:161.052300px;}
.y14c{bottom:161.055300px;}
.y6d{bottom:162.538650px;}
.y127{bottom:164.038650px;}
.y26a{bottom:165.801150px;}
.y20e{bottom:168.198750px;}
.y16f{bottom:168.538650px;}
.y1ec{bottom:172.790850px;}
.ye7{bottom:174.538650px;}
.y159{bottom:174.544800px;}
.y1ce{bottom:174.546300px;}
.y1a4{bottom:174.549300px;}
.y87{bottom:174.555300px;}
.y21{bottom:174.715950px;}
.y18f{bottom:175.554900px;}
.y245{bottom:176.697300px;}
.y162{bottom:177.546300px;}
.yc1{bottom:177.549300px;}
.y14b{bottom:177.552300px;}
.ya9{bottom:179.038650px;}
.y4e{bottom:179.038800px;}
.y126{bottom:179.044800px;}
.y6c{bottom:179.046300px;}
.y1b5{bottom:182.038650px;}
.y224{bottom:183.544800px;}
.y269{bottom:186.156150px;}
.y20d{bottom:187.698750px;}
.y1eb{bottom:187.798350px;}
.y16e{bottom:188.038800px;}
.y1a3{bottom:191.046300px;}
.y86{bottom:191.052300px;}
.ye6{bottom:194.038650px;}
.y158{bottom:194.038800px;}
.yc0{bottom:194.046300px;}
.y14a{bottom:194.049300px;}
.y1cd{bottom:195.538650px;}
.y6b{bottom:195.543300px;}
.y106{bottom:195.544800px;}
.y4d{bottom:195.546300px;}
.ya8{bottom:195.552150px;}
.y18e{bottom:195.800400px;}
.y244{bottom:196.947300px;}
.y125{bottom:198.538650px;}
.y161{bottom:198.538800px;}
.y20{bottom:198.709950px;}
.y1b4{bottom:203.038650px;}
.y268{bottom:206.511150px;}
.y20c{bottom:207.198750px;}
.y16d{bottom:207.538800px;}
.y85{bottom:207.549300px;}
.y1ea{bottom:208.790850px;}
.y157{bottom:209.044800px;}
.ye5{bottom:209.047650px;}
.y4c{bottom:210.544800px;}
.y149{bottom:210.546300px;}
.y1a2{bottom:212.038650px;}
.y1cc{bottom:212.044800px;}
.ya7{bottom:212.049150px;}
.ybf{bottom:215.038650px;}
.y160{bottom:215.046300px;}
.y18d{bottom:216.045900px;}
.y243{bottom:217.197300px;}
.y124{bottom:218.038650px;}
.ye4{bottom:224.046150px;}
.y84{bottom:224.046300px;}
.y4b{bottom:225.546300px;}
.y177{bottom:226.498500px;}
.y267{bottom:226.866150px;}
.y16c{bottom:227.038800px;}
.y156{bottom:228.538650px;}
.ya6{bottom:228.546150px;}
.y1d{bottom:229.670550px;}
.y148{bottom:231.538650px;}
.ybe{bottom:231.549300px;}
.y15f{bottom:236.038650px;}
.y242{bottom:237.447300px;}
.y123{bottom:237.538650px;}
.y20b{bottom:238.949250px;}
.ye3{bottom:239.044650px;}
.y4a{bottom:240.544800px;}
.y83{bottom:240.546300px;}
.y18c{bottom:240.795900px;}
.y1b3{bottom:241.442550px;}
.y16b{bottom:242.046300px;}
.y1e9{bottom:242.061150px;}
.ya5{bottom:245.049150px;}
.y266{bottom:247.221150px;}
.y1a1{bottom:248.005800px;}
.y155{bottom:248.038650px;}
.ybd{bottom:248.046300px;}
.y147{bottom:248.049300px;}
.y1c{bottom:249.173550px;}
.y176{bottom:249.493500px;}
.y1cb{bottom:251.038650px;}
.y49{bottom:255.544800px;}
.y15e{bottom:257.038650px;}
.y16a{bottom:257.044800px;}
.y20a{bottom:257.369250px;}
.y241{bottom:257.697300px;}
.ye2{bottom:258.538650px;}
.y6a{bottom:259.681500px;}
.y18b{bottom:261.041400px;}
.y82{bottom:261.538650px;}
.ya4{bottom:261.546150px;}
.y1b2{bottom:261.688050px;}
.y175{bottom:262.498500px;}
.y154{bottom:263.046300px;}
.y1e8{bottom:263.824650px;}
.y146{bottom:264.546300px;}
.y265{bottom:267.576150px;}
.y1a0{bottom:268.251300px;}
.ybc{bottom:269.038650px;}
.y48{bottom:270.546300px;}
.y209{bottom:275.789250px;}
.y15d{bottom:276.538650px;}
.y69{bottom:277.681500px;}
.y240{bottom:277.947300px;}
.ye1{bottom:278.038650px;}
.y174{bottom:280.498500px;}
.y18a{bottom:281.286900px;}
.y1b1{bottom:281.938050px;}
.ya3{bottom:282.538650px;}
.y105{bottom:282.737400px;}
.y153{bottom:284.038650px;}
.y145{bottom:285.538800px;}
.y47{bottom:285.544800px;}
.y1e7{bottom:285.588150px;}
.y122{bottom:287.722650px;}
.y264{bottom:287.931150px;}
.y19f{bottom:288.496800px;}
.y169{bottom:291.552300px;}
.ye0{bottom:293.044650px;}
.y68{bottom:295.681500px;}
.y1b{bottom:297.932550px;}
.y23f{bottom:298.197300px;}
.y173{bottom:298.498500px;}
.y104{bottom:300.737400px;}
.y189{bottom:301.532400px;}
.y144{bottom:302.046300px;}
.y1b0{bottom:302.219550px;}
.y81{bottom:304.960800px;}
.y46{bottom:305.038650px;}
.y121{bottom:306.142650px;}
.y1e6{bottom:307.351650px;}
.y168{bottom:308.049300px;}
.y263{bottom:308.286150px;}
.y208{bottom:311.488950px;}
.ydf{bottom:312.538650px;}
.y19e{bottom:313.246800px;}
.y1ca{bottom:314.189700px;}
.y1a{bottom:314.449500px;}
.ya2{bottom:315.727500px;}
.y172{bottom:316.498500px;}
.y143{bottom:317.044800px;}
.y223{bottom:317.728800px;}
.y23e{bottom:318.447300px;}
.y15c{bottom:318.737400px;}
.y45{bottom:320.047800px;}
.y188{bottom:321.777900px;}
.ybb{bottom:324.441450px;}
.y167{bottom:324.546300px;}
.y120{bottom:324.562050px;}
.y80{bottom:325.206300px;}
.y1af{bottom:326.969550px;}
.yde{bottom:327.544650px;}
.y262{bottom:328.641150px;}
.y1e5{bottom:329.115150px;}
.y67{bottom:330.982500px;}
.y207{bottom:332.146950px;}
.y19d{bottom:333.492300px;}
.y1c9{bottom:334.435200px;}
.y44{bottom:335.046300px;}
.y142{bottom:336.538650px;}
.y103{bottom:336.737400px;}
.ya1{bottom:337.227000px;}
.y222{bottom:337.974300px;}
.y23d{bottom:338.697300px;}
.y19{bottom:339.451500px;}
.y187{bottom:342.023400px;}
.yba{bottom:342.441450px;}
.ydd{bottom:342.544650px;}
.y171{bottom:342.977400px;}
.y11f{bottom:342.982050px;}
.y7f{bottom:345.451800px;}
.y166{bottom:345.538800px;}
.y1ae{bottom:347.215050px;}
.y261{bottom:348.996150px;}
.y43{bottom:350.044800px;}
.y1e4{bottom:350.878650px;}
.y66{bottom:351.228000px;}
.y141{bottom:351.549300px;}
.y206{bottom:352.804950px;}
.y19c{bottom:353.737800px;}
.y1c8{bottom:354.680700px;}
.y102{bottom:354.737400px;}
.y18{bottom:355.948500px;}
.y221{bottom:358.219800px;}
.ya0{bottom:358.726500px;}
.y23c{bottom:358.947300px;}
.yb9{bottom:360.441450px;}
.y11e{bottom:361.402050px;}
.ydc{bottom:362.038650px;}
.y186{bottom:362.268900px;}
.y7e{bottom:365.706300px;}
.y1ad{bottom:367.460550px;}
.y140{bottom:368.046300px;}
.y260{bottom:369.351150px;}
.y42{bottom:369.538800px;}
.y65{bottom:371.473500px;}
.y17{bottom:372.445500px;}
.y1e3{bottom:372.642150px;}
.y101{bottom:372.737400px;}
.y205{bottom:373.462950px;}
.y19b{bottom:373.983300px;}
.y1c7{bottom:374.926200px;}
.yb8{bottom:378.441450px;}
.y220{bottom:378.465300px;}
.y23b{bottom:379.197300px;}
.y11d{bottom:379.822050px;}
.y9f{bottom:380.226000px;}
.ydb{bottom:381.538650px;}
.y41{bottom:384.552300px;}
.y7d{bottom:385.951800px;}
.y185{bottom:387.018900px;}
.y1ac{bottom:387.706050px;}
.y16{bottom:388.942500px;}
.y13f{bottom:389.038800px;}
.y25f{bottom:389.706150px;}
.y100{bottom:390.737400px;}
.y204{bottom:394.120950px;}
.y19a{bottom:394.228800px;}
.y1e2{bottom:394.405650px;}
.y1c6{bottom:395.180700px;}
.y64{bottom:396.223500px;}
.yb7{bottom:396.441450px;}
.y21f{bottom:398.710800px;}
.y23a{bottom:399.447300px;}
.y40{bottom:401.049300px;}
.y9e{bottom:401.725500px;}
.y15{bottom:405.439500px;}
.y7c{bottom:406.197300px;}
.y184{bottom:407.264400px;}
.y1ab{bottom:407.951550px;}
.yff{bottom:408.737400px;}
.y13e{bottom:410.038800px;}
.y25e{bottom:410.091900px;}
.yda{bottom:413.316600px;}
.yb6{bottom:414.441450px;}
.y199{bottom:414.474300px;}
.y1c5{bottom:415.426200px;}
.y1e1{bottom:416.169150px;}
.y63{bottom:416.469000px;}
.y11c{bottom:416.661450px;}
.y3f{bottom:417.546300px;}
.y203{bottom:419.283450px;}
.y239{bottom:419.697300px;}
.y14{bottom:421.936500px;}
.y9d{bottom:423.225000px;}
.y21e{bottom:423.460800px;}
.yfe{bottom:426.737400px;}
.y183{bottom:427.509900px;}
.y1aa{bottom:428.197050px;}
.y25d{bottom:430.446900px;}
.y165{bottom:431.732250px;}
.yd9{bottom:431.871600px;}
.y3e{bottom:434.058300px;}
.y1c4{bottom:435.671700px;}
.y62{bottom:436.714500px;}
.y1e0{bottom:437.932050px;}
.y13{bottom:438.439500px;}
.y198{bottom:439.224300px;}
.y202{bottom:439.941450px;}
.y238{bottom:439.947300px;}
.y11b{bottom:440.076450px;}
.y21d{bottom:443.706300px;}
.y7b{bottom:444.447300px;}
.y9c{bottom:444.724500px;}
.y152{bottom:444.737400px;}
.y182{bottom:447.755400px;}
.y1a9{bottom:448.442550px;}
.yd8{bottom:450.426600px;}
.y3d{bottom:450.555300px;}
.y25c{bottom:450.801900px;}
.yb5{bottom:451.191300px;}
.y11a{bottom:453.500700px;}
.y12{bottom:454.936500px;}
.y61{bottom:456.960000px;}
.y197{bottom:459.469800px;}
.y1df{bottom:459.695550px;}
.y237{bottom:460.197300px;}
.y201{bottom:460.619700px;}
.y13d{bottom:460.657200px;}
.yfd{bottom:462.737400px;}
.y21c{bottom:463.951800px;}
.y1c3{bottom:464.421450px;}
.y9b{bottom:466.224000px;}
.y3c{bottom:467.052300px;}
.yd7{bottom:468.981600px;}
.y25b{bottom:471.156900px;}
.y11{bottom:471.438300px;}
.y119{bottom:471.920700px;}
.y181{bottom:472.505400px;}
.y1a8{bottom:473.192550px;}
.y60{bottom:477.205500px;}
.y13c{bottom:478.657200px;}
.y196{bottom:479.715300px;}
.y236{bottom:480.447300px;}
.yfc{bottom:480.737400px;}
.y200{bottom:481.277700px;}
.y1de{bottom:481.459050px;}
.y1c2{bottom:482.421450px;}
.yb4{bottom:482.715300px;}
.y3b{bottom:483.549300px;}
.y21b{bottom:484.228800px;}
.y9a{bottom:487.723500px;}
.y118{bottom:490.340700px;}
.y25a{bottom:491.511900px;}
.y180{bottom:492.750900px;}
.y1a7{bottom:493.438050px;}
.y10{bottom:496.440300px;}
.y5f{bottom:497.451000px;}
.yfb{bottom:498.737400px;}
.y3a{bottom:500.046300px;}
.y1c1{bottom:500.421450px;}
.y235{bottom:500.697300px;}
.y1ff{bottom:501.935700px;}
.y1dd{bottom:503.222550px;}
.y195{bottom:504.465300px;}
.y21a{bottom:504.474300px;}
.y7a{bottom:504.514800px;}
.yd6{bottom:506.106600px;}
.y117{bottom:508.759500px;}
.y99{bottom:509.223000px;}
.y259{bottom:511.866900px;}
.yf{bottom:512.957250px;}
.y17f{bottom:512.996400px;}
.y1a6{bottom:513.683550px;}
.y13b{bottom:514.657200px;}
.yfa{bottom:516.737400px;}
.y5e{bottom:517.696500px;}
.y234{bottom:520.947300px;}
.y39{bottom:521.038800px;}
.y1fe{bottom:522.593700px;}
.yd5{bottom:524.666400px;}
.y194{bottom:524.710800px;}
.y219{bottom:524.719800px;}
.y79{bottom:524.760300px;}
.y1dc{bottom:524.986050px;}
.y1c0{bottom:526.926450px;}
.y98{bottom:530.722500px;}
.yb3{bottom:532.215300px;}
.y258{bottom:532.221900px;}
.y13a{bottom:532.657200px;}
.y17e{bottom:533.241900px;}
.yf9{bottom:534.737400px;}
.y38{bottom:537.549300px;}
.y5d{bottom:537.942000px;}
.ye{bottom:537.959250px;}
.y233{bottom:541.197300px;}
.yd4{bottom:543.226050px;}
.y1fd{bottom:543.286950px;}
.y1bf{bottom:544.926450px;}
.y193{bottom:544.956300px;}
.y218{bottom:544.965300px;}
.y78{bottom:545.005800px;}
.y116{bottom:545.599500px;}
.y1db{bottom:546.749550px;}
.y139{bottom:550.657200px;}
.y1a5{bottom:551.933550px;}
.yb2{bottom:552.460800px;}
.y257{bottom:552.576900px;}
.yf8{bottom:552.737400px;}
.y17d{bottom:553.487400px;}
.y37{bottom:554.046300px;}
.yd{bottom:554.456250px;}
.y97{bottom:556.726500px;}
.y5c{bottom:558.187500px;}
.y232{bottom:561.447300px;}
.yd3{bottom:561.785850px;}
.y1fc{bottom:563.944950px;}
.y115{bottom:564.019500px;}
.y192{bottom:565.201800px;}
.y217{bottom:565.210800px;}
.y77{bottom:565.251300px;}
.y138{bottom:568.657200px;}
.y36{bottom:570.549300px;}
.y151{bottom:570.737400px;}
.yc{bottom:570.953250px;}
.y1be{bottom:571.431450px;}
.yb1{bottom:572.706300px;}
.y256{bottom:572.931900px;}
.y1da{bottom:573.018900px;}
.y96{bottom:578.226000px;}
.y17c{bottom:578.250900px;}
.yd2{bottom:580.344900px;}
.y231{bottom:581.697300px;}
.y114{bottom:582.439500px;}
.y1fb{bottom:584.602950px;}
.y216{bottom:585.456300px;}
.y76{bottom:585.496800px;}
.y137{bottom:586.657200px;}
.y35{bottom:587.046300px;}
.yb{bottom:587.450250px;}
.yf7{bottom:588.737400px;}
.y1bd{bottom:589.431450px;}
.yb0{bottom:592.951800px;}
.y255{bottom:593.286900px;}
.y1d9{bottom:594.782400px;}
.y5b{bottom:596.437500px;}
.y17b{bottom:598.496400px;}
.yd1{bottom:598.899900px;}
.y95{bottom:599.725500px;}
.y113{bottom:600.859500px;}
.y230{bottom:601.947300px;}
.y34{bottom:603.546300px;}
.ya{bottom:603.947250px;}
.y136{bottom:604.657200px;}
.y1fa{bottom:605.260950px;}
.y215{bottom:605.701800px;}
.y75{bottom:605.742300px;}
.yf6{bottom:606.737400px;}
.y1bc{bottom:607.431450px;}
.y150{bottom:611.732250px;}
.yaf{bottom:613.197300px;}
.y254{bottom:613.686300px;}
.y1d8{bottom:616.545900px;}
.y17a{bottom:618.741900px;}
.y112{bottom:619.279500px;}
.y9{bottom:620.444250px;}
.y94{bottom:621.225000px;}
.y22f{bottom:622.197300px;}
.y33{bottom:624.538800px;}
.yf5{bottom:624.737400px;}
.y1f9{bottom:625.918950px;}
.y214{bottom:625.947300px;}
.y74{bottom:625.987800px;}
.y1bb{bottom:633.936450px;}
.y253{bottom:634.041300px;}
.yd0{bottom:636.024900px;}
.y8{bottom:636.950250px;}
.y111{bottom:637.698150px;}
.y179{bottom:638.987400px;}
.y135{bottom:640.657200px;}
.y32{bottom:641.044800px;}
.y22e{bottom:642.447300px;}
.y93{bottom:642.724500px;}
.yf4{bottom:642.737400px;}
.y73{bottom:646.233300px;}
.y1f8{bottom:646.576950px;}
.y1d7{bottom:646.812300px;}
.y213{bottom:650.706300px;}
.yae{bottom:651.447300px;}
.y1ba{bottom:651.936450px;}
.y7{bottom:653.447250px;}
.y252{bottom:654.396300px;}
.y134{bottom:658.657200px;}
.ycf{bottom:659.574900px;}
.y5a{bottom:660.441450px;}
.y31{bottom:660.538800px;}
.yf3{bottom:660.737400px;}
.y22d{bottom:662.697300px;}
.y92{bottom:664.224000px;}
.y1d6{bottom:666.327300px;}
.y72{bottom:666.478800px;}
.y1f7{bottom:667.234950px;}
.y1b9{bottom:669.936450px;}
.y212{bottom:670.951800px;}
.yce{bottom:673.153350px;}
.y110{bottom:674.538150px;}
.y251{bottom:674.751300px;}
.y133{bottom:676.657200px;}
.y178{bottom:677.237400px;}
.y59{bottom:678.441450px;}
.yf2{bottom:678.737400px;}
.y22c{bottom:682.947300px;}
.y91{bottom:685.723500px;}
.y1d5{bottom:685.842300px;}
.y6{bottom:686.441250px;}
.y71{bottom:686.724300px;}
.y1f6{bottom:687.928800px;}
.y211{bottom:691.228800px;}
.ycd{bottom:691.708350px;}
.y10f{bottom:692.958150px;}
.y132{bottom:694.657200px;}
.y250{bottom:695.106300px;}
.y58{bottom:696.441450px;}
.y30{bottom:696.451800px;}
.y14f{bottom:696.737400px;}
.y22b{bottom:703.197300px;}
.y5{bottom:705.941250px;}
.y191{bottom:706.969800px;}
.y90{bottom:707.223000px;}
.y1f5{bottom:708.586800px;}
.ycc{bottom:710.263350px;}
.y10e{bottom:711.378150px;}
.y70{bottom:711.474300px;}
.y131{bottom:712.657200px;}
.y272{bottom:712.727400px;}
.yf1{bottom:714.737400px;}
.y24f{bottom:715.461300px;}
.y2f{bottom:716.691300px;}
.y15b{bottom:719.732250px;}
.y1d4{bottom:722.611050px;}
.y22a{bottom:723.447300px;}
.y190{bottom:727.215300px;}
.y8f{bottom:728.700300px;}
.ycb{bottom:728.818350px;}
.y1f4{bottom:729.244800px;}
.y10d{bottom:729.798150px;}
.y130{bottom:730.657200px;}
.y57{bottom:731.719800px;}
.yf0{bottom:732.737400px;}
.y271{bottom:732.857400px;}
.y24e{bottom:735.816300px;}
.y2e{bottom:736.194300px;}
.y229{bottom:743.697300px;}
.y1d3{bottom:744.374550px;}
.y10c{bottom:748.218150px;}
.y4{bottom:750.185250px;}
.y8e{bottom:750.199800px;}
.yef{bottom:750.737400px;}
.y56{bottom:751.965300px;}
.y1f3{bottom:754.407300px;}
.y2d{bottom:755.677800px;}
.y24d{bottom:756.171300px;}
.y228{bottom:763.947300px;}
.yca{bottom:765.943350px;}
.y1d2{bottom:766.138050px;}
.y10b{bottom:766.637400px;}
.y12f{bottom:766.657200px;}
.yee{bottom:768.737400px;}
.y8d{bottom:771.699300px;}
.y6f{bottom:772.210800px;}
.y1f2{bottom:775.065300px;}
.y2c{bottom:775.180800px;}
.y24c{bottom:776.526300px;}
.y55{bottom:776.715300px;}
.y3{bottom:777.191250px;}
.y270{bottom:777.737400px;}
.y227{bottom:784.197300px;}
.yc9{bottom:784.498350px;}
.y12e{bottom:784.657200px;}
.yed{bottom:786.737400px;}
.y1d1{bottom:787.901550px;}
.y6e{bottom:792.456300px;}
.y8c{bottom:793.198800px;}
.y1f1{bottom:795.723300px;}
.y24b{bottom:796.881300px;}
.y54{bottom:796.960800px;}
.y26f{bottom:797.987400px;}
.y2b{bottom:799.188300px;}
.y12d{bottom:802.657200px;}
.yc8{bottom:803.062800px;}
.y10a{bottom:803.477400px;}
.y226{bottom:804.447300px;}
.yec{bottom:804.737400px;}
.y1d0{bottom:809.665050px;}
.yad{bottom:812.701800px;}
.y8b{bottom:814.698300px;}
.y1f0{bottom:816.381300px;}
.y53{bottom:817.206300px;}
.y24a{bottom:817.236300px;}
.y26e{bottom:818.237400px;}
.y2a{bottom:818.691300px;}
.y12c{bottom:820.657200px;}
.yc7{bottom:821.627400px;}
.y109{bottom:821.897400px;}
.y14e{bottom:822.737400px;}
.y225{bottom:824.697300px;}
.y1cf{bottom:835.933800px;}
.y8a{bottom:836.197800px;}
.y1ef{bottom:837.039300px;}
.y52{bottom:837.451800px;}
.y249{bottom:837.591300px;}
.y29{bottom:838.194300px;}
.y26d{bottom:838.487400px;}
.y12b{bottom:838.657200px;}
.yc6{bottom:840.182400px;}
.y108{bottom:840.317400px;}
.yeb{bottom:840.737400px;}
.y12a{bottom:856.657200px;}
.y28{bottom:857.697300px;}
.y248{bottom:857.946300px;}
.yc5{bottom:858.737400px;}
.y107{bottom:863.732400px;}
.y2{bottom:867.011700px;}
.y1{bottom:884.111700px;}
.y26{bottom:890.397600px;}
.y27{bottom:890.697000px;}
.hb{height:25.013672px;}
.h9{height:28.054028px;}
.h17{height:29.971195px;}
.h8{height:30.138117px;}
.h10{height:30.138717px;}
.h1d{height:31.068662px;}
.h2b{height:33.398906px;}
.h29{height:33.399506px;}
.h2{height:37.426758px;}
.h21{height:38.899922px;}
.h28{height:38.900522px;}
.h19{height:41.689453px;}
.h1a{height:47.333687px;}
.ha{height:48.041016px;}
.hf{height:48.108117px;}
.h5{height:48.120117px;}
.h18{height:53.378906px;}
.h2a{height:53.451197px;}
.h13{height:53.466797px;}
.h24{height:53.471597px;}
.h23{height:53.472197px;}
.h12{height:54.550781px;}
.h33{height:58.779914px;}
.h7{height:58.813477px;}
.h34{height:58.839914px;}
.h1b{height:58.841522px;}
.h2e{height:58.848914px;}
.h1f{height:58.860722px;}
.h1c{height:58.861322px;}
.h1e{height:58.863722px;}
.h2c{height:58.866914px;}
.h20{height:58.879922px;}
.h25{height:58.880522px;}
.h22{height:58.882922px;}
.h15{height:58.884914px;}
.he{height:58.902914px;}
.h31{height:58.915514px;}
.h2f{height:58.917914px;}
.h6{height:58.920914px;}
.h32{height:58.923314px;}
.h30{height:58.927514px;}
.hd{height:58.944914px;}
.h35{height:58.976714px;}
.hc{height:58.998914px;}
.h16{height:59.009714px;}
.h2d{height:63.838028px;}
.h36{height:63.910028px;}
.h4{height:64.036628px;}
.h27{height:64.055887px;}
.h26{height:64.056488px;}
.h11{height:64.070156px;}
.h14{height:64.160156px;}
.h3{height:74.853516px;}
.h0{height:1015.441200px;}
.h1{height:1015.500000px;}
.w1{width:717.750000px;}
.w0{width:717.803700px;}
.x0{left:0.000000px;}
.x7{left:12.484200px;}
.x3{left:118.665300px;}
.x6{left:139.921800px;}
.xd{left:161.189850px;}
.xa{left:162.432150px;}
.xc{left:182.444850px;}
.xe{left:185.663100px;}
.x9{left:192.095100px;}
.x12{left:220.705200px;}
.x10{left:229.215300px;}
.x11{left:246.240300px;}
.xf{left:274.351050px;}
.x13{left:317.192250px;}
.x8{left:321.515850px;}
.x1{left:360.339150px;}
.x2{left:403.855650px;}
.x4{left:513.668550px;}
.x5{left:539.508300px;}
.xb{left:578.887800px;}
@media print{
.v6{vertical-align:-31.984000pt;}
.vd{vertical-align:-30.208000pt;}
.v9{vertical-align:-21.312000pt;}
.vb{vertical-align:-17.760000pt;}
.v5{vertical-align:-15.984000pt;}
.v8{vertical-align:-1.776000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:8.896000pt;}
.v3{vertical-align:15.962667pt;}
.vc{vertical-align:17.759467pt;}
.v7{vertical-align:19.536000pt;}
.v1{vertical-align:24.885333pt;}
.v4{vertical-align:30.208000pt;}
.v2{vertical-align:31.984533pt;}
.ls31{letter-spacing:-1.973333pt;}
.ls35{letter-spacing:-1.710133pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls37{letter-spacing:-0.586667pt;}
.ls30{letter-spacing:-0.528000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls3c{letter-spacing:-0.279840pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000533pt;}
.ls46{letter-spacing:0.002133pt;}
.lsa{letter-spacing:0.002667pt;}
.ls34{letter-spacing:0.003733pt;}
.ls18{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.lsc{letter-spacing:0.006933pt;}
.ls19{letter-spacing:0.007467pt;}
.ls32{letter-spacing:0.008000pt;}
.ls41{letter-spacing:0.009067pt;}
.ls3f{letter-spacing:0.010133pt;}
.ls47{letter-spacing:0.010667pt;}
.ls33{letter-spacing:0.013333pt;}
.ls42{letter-spacing:0.016533pt;}
.ls36{letter-spacing:0.020800pt;}
.ls3e{letter-spacing:0.026133pt;}
.ls44{letter-spacing:0.026667pt;}
.ls2f{letter-spacing:0.027733pt;}
.ls2{letter-spacing:0.037333pt;}
.ls28{letter-spacing:0.040000pt;}
.ls3a{letter-spacing:0.043200pt;}
.ls6{letter-spacing:0.044800pt;}
.ls45{letter-spacing:0.048000pt;}
.ls40{letter-spacing:0.058667pt;}
.ls39{letter-spacing:0.061333pt;}
.ls22{letter-spacing:0.067733pt;}
.ls1e{letter-spacing:0.248747pt;}
.ls9{letter-spacing:0.400000pt;}
.ls1d{letter-spacing:0.429333pt;}
.ls12{letter-spacing:0.470400pt;}
.ls1c{letter-spacing:0.476267pt;}
.ls10{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.487467pt;}
.ls11{letter-spacing:0.490667pt;}
.ls29{letter-spacing:0.497493pt;}
.ls14{letter-spacing:0.513067pt;}
.ls2e{letter-spacing:0.528000pt;}
.ls2a{letter-spacing:0.559680pt;}
.ls2d{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.746667pt;}
.ls43{letter-spacing:0.752800pt;}
.ls25{letter-spacing:0.942400pt;}
.ls24{letter-spacing:0.960000pt;}
.ls3{letter-spacing:0.967467pt;}
.ls26{letter-spacing:0.974400pt;}
.ls21{letter-spacing:1.056000pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls38{letter-spacing:1.192267pt;}
.ls4c{letter-spacing:2.133333pt;}
.ls27{letter-spacing:2.208000pt;}
.ls3d{letter-spacing:2.400000pt;}
.ls5{letter-spacing:3.225067pt;}
.ls4{letter-spacing:3.225600pt;}
.ls13{letter-spacing:3.696000pt;}
.ls49{letter-spacing:4.106667pt;}
.ls48{letter-spacing:4.160000pt;}
.ls4a{letter-spacing:4.480000pt;}
.ls4d{letter-spacing:5.120000pt;}
.lsf{letter-spacing:5.136000pt;}
.lsb{letter-spacing:5.664000pt;}
.lse{letter-spacing:6.436533pt;}
.ls4b{letter-spacing:6.666667pt;}
.lsd{letter-spacing:6.716000pt;}
.ls3b{letter-spacing:6.716533pt;}
.ls7{letter-spacing:6.996000pt;}
.ls1b{letter-spacing:7.276000pt;}
.ls23{letter-spacing:7.556000pt;}
.ls20{letter-spacing:8.784000pt;}
.ls2b{letter-spacing:13.333333pt;}
.ws106{word-spacing:-53.333333pt;}
.ws20{word-spacing:-48.000000pt;}
.wsb6{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-14.666667pt;}
.ws44{word-spacing:-13.333333pt;}
.ws46{word-spacing:-12.480000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws105{word-spacing:-11.786667pt;}
.ws9f{word-spacing:-11.472000pt;}
.wsa3{word-spacing:-11.360000pt;}
.ws45{word-spacing:-11.200000pt;}
.ws21{word-spacing:-11.040000pt;}
.ws1f{word-spacing:-10.666667pt;}
.ws98{word-spacing:-10.608000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws8c{word-spacing:-9.374400pt;}
.ws8a{word-spacing:-9.328000pt;}
.ws22{word-spacing:-8.870400pt;}
.ws8b{word-spacing:-8.550667pt;}
.ws2{word-spacing:-8.400000pt;}
.ws97{word-spacing:-7.773333pt;}
.ws4{word-spacing:-6.996000pt;}
.ws0{word-spacing:-6.533333pt;}
.ws96{word-spacing:-6.218667pt;}
.wsb2{word-spacing:-6.063200pt;}
.ws39{word-spacing:-4.057680pt;}
.wsed{word-spacing:-4.048000pt;}
.ws30{word-spacing:-3.777840pt;}
.ws1a{word-spacing:-3.498000pt;}
.wsdd{word-spacing:-3.466667pt;}
.ws76{word-spacing:-3.358080pt;}
.ws72{word-spacing:-3.264000pt;}
.ws6e{word-spacing:-3.218160pt;}
.ws18{word-spacing:-3.109333pt;}
.ws83{word-spacing:-2.933333pt;}
.ws65{word-spacing:-2.874667pt;}
.ws6b{word-spacing:-2.860587pt;}
.wsf8{word-spacing:-2.698667pt;}
.wsda{word-spacing:-2.666667pt;}
.wse2{word-spacing:-2.613333pt;}
.wsa6{word-spacing:-2.592000pt;}
.ws7c{word-spacing:-2.581333pt;}
.ws79{word-spacing:-2.522667pt;}
.wsf6{word-spacing:-2.464000pt;}
.wsdc{word-spacing:-2.400000pt;}
.ws12a{word-spacing:-2.293333pt;}
.ws19{word-spacing:-2.288000pt;}
.ws29{word-spacing:-2.229333pt;}
.ws52{word-spacing:-2.170667pt;}
.ws3f{word-spacing:-2.160000pt;}
.ws127{word-spacing:-2.080000pt;}
.ws9c{word-spacing:-2.064000pt;}
.ws8e{word-spacing:-2.053333pt;}
.wsc4{word-spacing:-1.994667pt;}
.ws13d{word-spacing:-1.973333pt;}
.ws80{word-spacing:-1.936000pt;}
.ws33{word-spacing:-1.872000pt;}
.ws4c{word-spacing:-1.866667pt;}
.wsd2{word-spacing:-1.824000pt;}
.ws137{word-spacing:-1.813333pt;}
.ws43{word-spacing:-1.776000pt;}
.ws126{word-spacing:-1.760000pt;}
.wsfb{word-spacing:-1.701333pt;}
.ws13a{word-spacing:-1.653333pt;}
.ws40{word-spacing:-1.632000pt;}
.wsde{word-spacing:-1.600000pt;}
.ws10{word-spacing:-1.584000pt;}
.ws48{word-spacing:-1.525333pt;}
.ws4d{word-spacing:-1.466667pt;}
.wsaf{word-spacing:-1.440000pt;}
.ws4f{word-spacing:-1.408000pt;}
.wsc3{word-spacing:-1.349333pt;}
.wsa9{word-spacing:-1.344000pt;}
.wse4{word-spacing:-1.290667pt;}
.wsfd{word-spacing:-1.280000pt;}
.ws15{word-spacing:-1.248000pt;}
.wse9{word-spacing:-1.232000pt;}
.ws3e{word-spacing:-1.200000pt;}
.ws78{word-spacing:-1.173333pt;}
.wsf1{word-spacing:-1.114667pt;}
.ws3b{word-spacing:-1.104000pt;}
.ws56{word-spacing:-1.056000pt;}
.wsf5{word-spacing:-0.997333pt;}
.ws31{word-spacing:-0.960000pt;}
.wscc{word-spacing:-0.938667pt;}
.ws12c{word-spacing:-0.853333pt;}
.ws6{word-spacing:-0.746667pt;}
.ws27{word-spacing:-0.704000pt;}
.ws85{word-spacing:-0.672000pt;}
.wsbf{word-spacing:-0.645333pt;}
.wseb{word-spacing:-0.640000pt;}
.ws9d{word-spacing:-0.624000pt;}
.ws24{word-spacing:-0.586667pt;}
.wsa2{word-spacing:-0.528000pt;}
.ws42{word-spacing:-0.480000pt;}
.wsf9{word-spacing:-0.410667pt;}
.wsd{word-spacing:-0.384000pt;}
.wsd7{word-spacing:-0.352000pt;}
.wsb5{word-spacing:-0.336000pt;}
.ws38{word-spacing:-0.288000pt;}
.ws34{word-spacing:-0.240000pt;}
.ws71{word-spacing:-0.192000pt;}
.ws28{word-spacing:-0.176000pt;}
.ws37{word-spacing:-0.144000pt;}
.ws84{word-spacing:-0.117333pt;}
.ws10d{word-spacing:-0.106667pt;}
.ws69{word-spacing:-0.058667pt;}
.ws13c{word-spacing:-0.053333pt;}
.wsb{word-spacing:-0.048000pt;}
.ws1d{word-spacing:-0.026133pt;}
.ws5{word-spacing:0.000000pt;}
.ws104{word-spacing:0.048000pt;}
.ws7f{word-spacing:0.058667pt;}
.ws1c{word-spacing:0.096000pt;}
.wsc0{word-spacing:0.117333pt;}
.ws36{word-spacing:0.192000pt;}
.ws138{word-spacing:0.213333pt;}
.ws6d{word-spacing:0.234667pt;}
.wsdb{word-spacing:0.266667pt;}
.ws12b{word-spacing:0.320000pt;}
.ws86{word-spacing:0.336000pt;}
.ws103{word-spacing:0.352000pt;}
.ws2e{word-spacing:0.384000pt;}
.ws32{word-spacing:0.480000pt;}
.wsa1{word-spacing:0.528000pt;}
.ws9a{word-spacing:0.576000pt;}
.ws77{word-spacing:0.586667pt;}
.ws70{word-spacing:0.624000pt;}
.ws128{word-spacing:0.640000pt;}
.ws135{word-spacing:0.693333pt;}
.wsf4{word-spacing:0.704000pt;}
.ws11e{word-spacing:0.746667pt;}
.ws54{word-spacing:0.762667pt;}
.ws136{word-spacing:0.800000pt;}
.ws14{word-spacing:0.816000pt;}
.ws25{word-spacing:0.821333pt;}
.ws12e{word-spacing:0.906667pt;}
.ws49{word-spacing:0.938667pt;}
.wse{word-spacing:0.960000pt;}
.ws6c{word-spacing:0.997333pt;}
.ws88{word-spacing:1.008000pt;}
.ws114{word-spacing:1.013333pt;}
.ws17{word-spacing:1.056000pt;}
.ws35{word-spacing:1.152000pt;}
.ws53{word-spacing:1.173333pt;}
.ws13{word-spacing:1.200000pt;}
.ws124{word-spacing:1.226667pt;}
.wsa0{word-spacing:1.296000pt;}
.ws129{word-spacing:1.386667pt;}
.ws7b{word-spacing:1.408000pt;}
.ws67{word-spacing:1.466667pt;}
.ws81{word-spacing:1.525333pt;}
.ws9{word-spacing:1.536000pt;}
.wsbb{word-spacing:1.584000pt;}
.ws12d{word-spacing:1.653333pt;}
.wsca{word-spacing:1.701333pt;}
.ws41{word-spacing:1.728000pt;}
.wsd4{word-spacing:1.760000pt;}
.ws74{word-spacing:1.776000pt;}
.ws47{word-spacing:1.818667pt;}
.ws75{word-spacing:1.824000pt;}
.wsd3{word-spacing:1.877333pt;}
.ws8{word-spacing:1.920000pt;}
.ws102{word-spacing:1.936000pt;}
.ws118{word-spacing:1.973333pt;}
.wsfa{word-spacing:1.994667pt;}
.wsfe{word-spacing:2.016000pt;}
.ws4b{word-spacing:2.026667pt;}
.wsc5{word-spacing:2.112000pt;}
.ws123{word-spacing:2.133333pt;}
.wsa4{word-spacing:2.160000pt;}
.wscb{word-spacing:2.170667pt;}
.wsb9{word-spacing:2.229333pt;}
.ws116{word-spacing:2.240000pt;}
.ws94{word-spacing:2.256000pt;}
.ws51{word-spacing:2.288000pt;}
.wsdf{word-spacing:2.293333pt;}
.ws101{word-spacing:2.346667pt;}
.wsa7{word-spacing:2.352000pt;}
.ws6f{word-spacing:2.400000pt;}
.ws9e{word-spacing:2.448000pt;}
.ws90{word-spacing:2.464000pt;}
.ws11f{word-spacing:2.506667pt;}
.wsc8{word-spacing:2.522667pt;}
.wsea{word-spacing:2.560000pt;}
.ws7{word-spacing:2.592000pt;}
.wsbd{word-spacing:2.640000pt;}
.ws1b{word-spacing:2.688000pt;}
.wscf{word-spacing:2.698667pt;}
.ws57{word-spacing:2.720000pt;}
.ws2f{word-spacing:2.736000pt;}
.ws4a{word-spacing:2.757333pt;}
.wsff{word-spacing:2.816000pt;}
.wsc{word-spacing:2.832000pt;}
.wsc2{word-spacing:2.874667pt;}
.wse6{word-spacing:2.880000pt;}
.ws93{word-spacing:2.928000pt;}
.wsf2{word-spacing:2.933333pt;}
.wsb1{word-spacing:2.976000pt;}
.ws64{word-spacing:2.992000pt;}
.wsb0{word-spacing:3.024000pt;}
.ws13b{word-spacing:3.040000pt;}
.wsba{word-spacing:3.050667pt;}
.wsa{word-spacing:3.168000pt;}
.ws117{word-spacing:3.200000pt;}
.wsf{word-spacing:3.216000pt;}
.wsb8{word-spacing:3.226667pt;}
.ws2c{word-spacing:3.264000pt;}
.wsd5{word-spacing:3.285333pt;}
.ws11a{word-spacing:3.306667pt;}
.wse7{word-spacing:3.312000pt;}
.ws60{word-spacing:3.344000pt;}
.wsf0{word-spacing:3.402667pt;}
.ws12{word-spacing:3.456000pt;}
.ws58{word-spacing:3.466667pt;}
.ws73{word-spacing:3.504000pt;}
.wsc9{word-spacing:3.520000pt;}
.ws82{word-spacing:3.637333pt;}
.ws50{word-spacing:3.696000pt;}
.wsc6{word-spacing:3.813333pt;}
.wse0{word-spacing:3.840000pt;}
.ws63{word-spacing:3.872000pt;}
.ws134{word-spacing:3.893333pt;}
.ws68{word-spacing:3.930667pt;}
.wsfc{word-spacing:3.946667pt;}
.ws7d{word-spacing:3.989333pt;}
.ws132{word-spacing:4.000000pt;}
.ws7a{word-spacing:4.048000pt;}
.ws9b{word-spacing:4.080000pt;}
.ws55{word-spacing:4.106667pt;}
.ws109{word-spacing:4.160000pt;}
.ws8f{word-spacing:4.165333pt;}
.wsd6{word-spacing:4.224000pt;}
.ws119{word-spacing:4.266667pt;}
.ws12f{word-spacing:4.320000pt;}
.ws6a{word-spacing:4.341333pt;}
.ws59{word-spacing:4.368000pt;}
.ws125{word-spacing:4.373333pt;}
.wse8{word-spacing:4.458667pt;}
.ws2d{word-spacing:4.512000pt;}
.wsef{word-spacing:4.517333pt;}
.ws11d{word-spacing:4.533333pt;}
.ws8d{word-spacing:4.634667pt;}
.wsad{word-spacing:4.656000pt;}
.wsf7{word-spacing:4.693333pt;}
.wsec{word-spacing:4.752000pt;}
.ws2a{word-spacing:4.800000pt;}
.ws5d{word-spacing:4.869333pt;}
.ws10a{word-spacing:4.906667pt;}
.ws23{word-spacing:4.928000pt;}
.wsac{word-spacing:4.944000pt;}
.ws62{word-spacing:4.986667pt;}
.wse5{word-spacing:5.040000pt;}
.ws11c{word-spacing:5.066667pt;}
.wscd{word-spacing:5.104000pt;}
.ws139{word-spacing:5.120000pt;}
.ws7e{word-spacing:5.221333pt;}
.ws10f{word-spacing:5.280000pt;}
.ws11{word-spacing:5.376000pt;}
.ws111{word-spacing:5.386667pt;}
.ws133{word-spacing:5.440000pt;}
.ws131{word-spacing:5.493333pt;}
.ws26{word-spacing:5.514667pt;}
.wse1{word-spacing:5.546667pt;}
.ws89{word-spacing:5.568000pt;}
.ws4e{word-spacing:5.573333pt;}
.ws112{word-spacing:5.600000pt;}
.wsaa{word-spacing:5.616000pt;}
.wsbe{word-spacing:5.632000pt;}
.ws2b{word-spacing:5.664000pt;}
.ws5f{word-spacing:5.690667pt;}
.ws108{word-spacing:5.706667pt;}
.ws10b{word-spacing:5.760000pt;}
.wsb7{word-spacing:5.984000pt;}
.ws92{word-spacing:6.000000pt;}
.ws3a{word-spacing:6.096000pt;}
.ws121{word-spacing:6.133333pt;}
.ws66{word-spacing:6.218667pt;}
.ws115{word-spacing:6.240000pt;}
.wsc7{word-spacing:6.277333pt;}
.wsee{word-spacing:6.453333pt;}
.ws130{word-spacing:6.506667pt;}
.ws95{word-spacing:6.624000pt;}
.ws122{word-spacing:6.666667pt;}
.ws10e{word-spacing:6.826667pt;}
.wsc1{word-spacing:6.922667pt;}
.ws10c{word-spacing:7.146667pt;}
.ws91{word-spacing:7.200000pt;}
.ws16{word-spacing:7.248000pt;}
.ws5c{word-spacing:7.274667pt;}
.ws11b{word-spacing:7.413333pt;}
.ws61{word-spacing:7.450667pt;}
.wse3{word-spacing:7.509333pt;}
.ws99{word-spacing:7.536000pt;}
.ws100{word-spacing:7.568000pt;}
.ws5e{word-spacing:7.626667pt;}
.wsa5{word-spacing:7.680000pt;}
.wsd9{word-spacing:7.685333pt;}
.wsce{word-spacing:7.744000pt;}
.ws113{word-spacing:7.893333pt;}
.wsf3{word-spacing:8.064000pt;}
.wsd8{word-spacing:8.096000pt;}
.ws3c{word-spacing:8.256000pt;}
.ws110{word-spacing:8.693333pt;}
.ws87{word-spacing:8.832000pt;}
.ws5b{word-spacing:8.880000pt;}
.ws107{word-spacing:8.960000pt;}
.wsbc{word-spacing:9.093333pt;}
.ws3d{word-spacing:9.984000pt;}
.wsb3{word-spacing:10.080000pt;}
.ws5a{word-spacing:10.944000pt;}
.wsab{word-spacing:10.992000pt;}
.wsd0{word-spacing:11.088000pt;}
.ws120{word-spacing:12.160000pt;}
.wsae{word-spacing:12.624000pt;}
.wsb4{word-spacing:13.536000pt;}
.wsa8{word-spacing:13.584000pt;}
.wsd1{word-spacing:14.832000pt;}
._e{margin-left:-15.077333pt;}
._b{margin-left:-5.875733pt;}
._5{margin-left:-3.792000pt;}
._9{margin-left:-2.773333pt;}
._2{margin-left:-1.536000pt;}
._f{width:0.906667pt;}
._0{width:1.805333pt;}
._1{width:3.219733pt;}
._a{width:4.154133pt;}
._3{width:5.057781pt;}
._4{width:6.138656pt;}
._7{width:7.296000pt;}
._8{width:8.880000pt;}
._d{width:10.224000pt;}
._c{width:13.584133pt;}
._6{width:1896.329600pt;}
.fs9{font-size:24.874667pt;}
.fs1{font-size:26.133333pt;}
.fs5{font-size:27.984000pt;}
.fs11{font-size:31.093333pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:33.600000pt;}
.fsc{font-size:34.202667pt;}
.fs10{font-size:37.312000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsb{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fsf{font-size:44.800000pt;}
.fs4{font-size:48.000000pt;}
.fse{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y24{bottom:-22.236267pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:85.780533pt;}
.y1f{bottom:92.253200pt;}
.y1e{bottom:109.581200pt;}
.y129{bottom:111.150933pt;}
.yac{bottom:111.152133pt;}
.y1b8{bottom:111.152267pt;}
.yea{bottom:111.153467pt;}
.y51{bottom:111.154933pt;}
.y89{bottom:111.157600pt;}
.y26c{bottom:111.192133pt;}
.y210{bottom:114.848667pt;}
.yc4{bottom:115.145600pt;}
.y1ee{bottom:118.925200pt;}
.y247{bottom:121.064267pt;}
.ye9{bottom:124.485467pt;}
.y50{bottom:125.818933pt;}
.yab{bottom:125.821467pt;}
.y88{bottom:125.821600pt;}
.y128{bottom:128.478933pt;}
.y164{bottom:128.490933pt;}
.yc3{bottom:128.493600pt;}
.y14d{bottom:128.496267pt;}
.y26b{bottom:129.285467pt;}
.y1b7{bottom:129.812267pt;}
.y20f{bottom:132.176667pt;}
.y170{bottom:132.478933pt;}
.y23{bottom:132.851600pt;}
.y1ed{bottom:136.258533pt;}
.ye8{bottom:137.817467pt;}
.y246{bottom:139.064267pt;}
.yaa{bottom:140.485467pt;}
.y4f{bottom:140.485600pt;}
.y15a{bottom:141.818933pt;}
.y22{bottom:141.971067pt;}
.y1b6{bottom:143.152267pt;}
.y163{bottom:143.154933pt;}
.yc2{bottom:143.157600pt;}
.y14c{bottom:143.160267pt;}
.y6d{bottom:144.478800pt;}
.y127{bottom:145.812133pt;}
.y26a{bottom:147.378800pt;}
.y20e{bottom:149.510000pt;}
.y16f{bottom:149.812133pt;}
.y1ec{bottom:153.591867pt;}
.ye7{bottom:155.145467pt;}
.y159{bottom:155.150933pt;}
.y1ce{bottom:155.152267pt;}
.y1a4{bottom:155.154933pt;}
.y87{bottom:155.160267pt;}
.y21{bottom:155.303067pt;}
.y18f{bottom:156.048800pt;}
.y245{bottom:157.064267pt;}
.y162{bottom:157.818933pt;}
.yc1{bottom:157.821600pt;}
.y14b{bottom:157.824267pt;}
.ya9{bottom:159.145467pt;}
.y4e{bottom:159.145600pt;}
.y126{bottom:159.150933pt;}
.y6c{bottom:159.152267pt;}
.y1b5{bottom:161.812133pt;}
.y224{bottom:163.150933pt;}
.y269{bottom:165.472133pt;}
.y20d{bottom:166.843333pt;}
.y1eb{bottom:166.931867pt;}
.y16e{bottom:167.145600pt;}
.y1a3{bottom:169.818933pt;}
.y86{bottom:169.824267pt;}
.ye6{bottom:172.478800pt;}
.y158{bottom:172.478933pt;}
.yc0{bottom:172.485600pt;}
.y14a{bottom:172.488267pt;}
.y1cd{bottom:173.812133pt;}
.y6b{bottom:173.816267pt;}
.y106{bottom:173.817600pt;}
.y4d{bottom:173.818933pt;}
.ya8{bottom:173.824133pt;}
.y18e{bottom:174.044800pt;}
.y244{bottom:175.064267pt;}
.y125{bottom:176.478800pt;}
.y161{bottom:176.478933pt;}
.y20{bottom:176.631067pt;}
.y1b4{bottom:180.478800pt;}
.y268{bottom:183.565467pt;}
.y20c{bottom:184.176667pt;}
.y16d{bottom:184.478933pt;}
.y85{bottom:184.488267pt;}
.y1ea{bottom:185.591867pt;}
.y157{bottom:185.817600pt;}
.ye5{bottom:185.820133pt;}
.y4c{bottom:187.150933pt;}
.y149{bottom:187.152267pt;}
.y1a2{bottom:188.478800pt;}
.y1cc{bottom:188.484267pt;}
.ya7{bottom:188.488133pt;}
.ybf{bottom:191.145467pt;}
.y160{bottom:191.152267pt;}
.y18d{bottom:192.040800pt;}
.y243{bottom:193.064267pt;}
.y124{bottom:193.812133pt;}
.ye4{bottom:199.152133pt;}
.y84{bottom:199.152267pt;}
.y4b{bottom:200.485600pt;}
.y177{bottom:201.332000pt;}
.y267{bottom:201.658800pt;}
.y16c{bottom:201.812267pt;}
.y156{bottom:203.145467pt;}
.ya6{bottom:203.152133pt;}
.y1d{bottom:204.151600pt;}
.y148{bottom:205.812133pt;}
.ybe{bottom:205.821600pt;}
.y15f{bottom:209.812133pt;}
.y242{bottom:211.064267pt;}
.y123{bottom:211.145467pt;}
.y20b{bottom:212.399333pt;}
.ye3{bottom:212.484133pt;}
.y4a{bottom:213.817600pt;}
.y83{bottom:213.818933pt;}
.y18c{bottom:214.040800pt;}
.y1b3{bottom:214.615600pt;}
.y16b{bottom:215.152267pt;}
.y1e9{bottom:215.165467pt;}
.ya5{bottom:217.821467pt;}
.y266{bottom:219.752133pt;}
.y1a1{bottom:220.449600pt;}
.y155{bottom:220.478800pt;}
.ybd{bottom:220.485600pt;}
.y147{bottom:220.488267pt;}
.y1c{bottom:221.487600pt;}
.y176{bottom:221.772000pt;}
.y1cb{bottom:223.145467pt;}
.y49{bottom:227.150933pt;}
.y15e{bottom:228.478800pt;}
.y16a{bottom:228.484267pt;}
.y20a{bottom:228.772667pt;}
.y241{bottom:229.064267pt;}
.ye2{bottom:229.812133pt;}
.y6a{bottom:230.828000pt;}
.y18b{bottom:232.036800pt;}
.y82{bottom:232.478800pt;}
.ya4{bottom:232.485467pt;}
.y1b2{bottom:232.611600pt;}
.y175{bottom:233.332000pt;}
.y154{bottom:233.818933pt;}
.y1e8{bottom:234.510800pt;}
.y146{bottom:235.152267pt;}
.y265{bottom:237.845467pt;}
.y1a0{bottom:238.445600pt;}
.ybc{bottom:239.145467pt;}
.y48{bottom:240.485600pt;}
.y209{bottom:245.146000pt;}
.y15d{bottom:245.812133pt;}
.y69{bottom:246.828000pt;}
.y240{bottom:247.064267pt;}
.ye1{bottom:247.145467pt;}
.y174{bottom:249.332000pt;}
.y18a{bottom:250.032800pt;}
.y1b1{bottom:250.611600pt;}
.ya3{bottom:251.145467pt;}
.y105{bottom:251.322133pt;}
.y153{bottom:252.478800pt;}
.y145{bottom:253.812267pt;}
.y47{bottom:253.817600pt;}
.y1e7{bottom:253.856133pt;}
.y122{bottom:255.753467pt;}
.y264{bottom:255.938800pt;}
.y19f{bottom:256.441600pt;}
.y169{bottom:259.157600pt;}
.ye0{bottom:260.484133pt;}
.y68{bottom:262.828000pt;}
.y1b{bottom:264.828933pt;}
.y23f{bottom:265.064267pt;}
.y173{bottom:265.332000pt;}
.y104{bottom:267.322133pt;}
.y189{bottom:268.028800pt;}
.y144{bottom:268.485600pt;}
.y1b0{bottom:268.639600pt;}
.y81{bottom:271.076267pt;}
.y46{bottom:271.145467pt;}
.y121{bottom:272.126800pt;}
.y1e6{bottom:273.201467pt;}
.y168{bottom:273.821600pt;}
.y263{bottom:274.032133pt;}
.y208{bottom:276.879067pt;}
.ydf{bottom:277.812133pt;}
.y19e{bottom:278.441600pt;}
.y1ca{bottom:279.279733pt;}
.y1a{bottom:279.510667pt;}
.ya2{bottom:280.646667pt;}
.y172{bottom:281.332000pt;}
.y143{bottom:281.817600pt;}
.y223{bottom:282.425600pt;}
.y23e{bottom:283.064267pt;}
.y15c{bottom:283.322133pt;}
.y45{bottom:284.486933pt;}
.y188{bottom:286.024800pt;}
.ybb{bottom:288.392400pt;}
.y167{bottom:288.485600pt;}
.y120{bottom:288.499600pt;}
.y80{bottom:289.072267pt;}
.y1af{bottom:290.639600pt;}
.yde{bottom:291.150800pt;}
.y262{bottom:292.125467pt;}
.y1e5{bottom:292.546800pt;}
.y67{bottom:294.206667pt;}
.y207{bottom:295.241733pt;}
.y19d{bottom:296.437600pt;}
.y1c9{bottom:297.275733pt;}
.y44{bottom:297.818933pt;}
.y142{bottom:299.145467pt;}
.y103{bottom:299.322133pt;}
.ya1{bottom:299.757333pt;}
.y222{bottom:300.421600pt;}
.y23d{bottom:301.064267pt;}
.y19{bottom:301.734667pt;}
.y187{bottom:304.020800pt;}
.yba{bottom:304.392400pt;}
.ydd{bottom:304.484133pt;}
.y171{bottom:304.868800pt;}
.y11f{bottom:304.872933pt;}
.y7f{bottom:307.068267pt;}
.y166{bottom:307.145600pt;}
.y1ae{bottom:308.635600pt;}
.y261{bottom:310.218800pt;}
.y43{bottom:311.150933pt;}
.y1e4{bottom:311.892133pt;}
.y66{bottom:312.202667pt;}
.y141{bottom:312.488267pt;}
.y206{bottom:313.604400pt;}
.y19c{bottom:314.433600pt;}
.y1c8{bottom:315.271733pt;}
.y102{bottom:315.322133pt;}
.y18{bottom:316.398667pt;}
.y221{bottom:318.417600pt;}
.ya0{bottom:318.868000pt;}
.y23c{bottom:319.064267pt;}
.yb9{bottom:320.392400pt;}
.y11e{bottom:321.246267pt;}
.ydc{bottom:321.812133pt;}
.y186{bottom:322.016800pt;}
.y7e{bottom:325.072267pt;}
.y1ad{bottom:326.631600pt;}
.y140{bottom:327.152267pt;}
.y260{bottom:328.312133pt;}
.y42{bottom:328.478933pt;}
.y65{bottom:330.198667pt;}
.y17{bottom:331.062667pt;}
.y1e3{bottom:331.237467pt;}
.y101{bottom:331.322133pt;}
.y205{bottom:331.967067pt;}
.y19b{bottom:332.429600pt;}
.y1c7{bottom:333.267733pt;}
.yb8{bottom:336.392400pt;}
.y220{bottom:336.413600pt;}
.y23b{bottom:337.064267pt;}
.y11d{bottom:337.619600pt;}
.y9f{bottom:337.978667pt;}
.ydb{bottom:339.145467pt;}
.y41{bottom:341.824267pt;}
.y7d{bottom:343.068267pt;}
.y185{bottom:344.016800pt;}
.y1ac{bottom:344.627600pt;}
.y16{bottom:345.726667pt;}
.y13f{bottom:345.812267pt;}
.y25f{bottom:346.405467pt;}
.y100{bottom:347.322133pt;}
.y204{bottom:350.329733pt;}
.y19a{bottom:350.425600pt;}
.y1e2{bottom:350.582800pt;}
.y1c6{bottom:351.271733pt;}
.y64{bottom:352.198667pt;}
.yb7{bottom:352.392400pt;}
.y21f{bottom:354.409600pt;}
.y23a{bottom:355.064267pt;}
.y40{bottom:356.488267pt;}
.y9e{bottom:357.089333pt;}
.y15{bottom:360.390667pt;}
.y7c{bottom:361.064267pt;}
.y184{bottom:362.012800pt;}
.y1ab{bottom:362.623600pt;}
.yff{bottom:363.322133pt;}
.y13e{bottom:364.478933pt;}
.y25e{bottom:364.526133pt;}
.yda{bottom:367.392533pt;}
.yb6{bottom:368.392400pt;}
.y199{bottom:368.421600pt;}
.y1c5{bottom:369.267733pt;}
.y1e1{bottom:369.928133pt;}
.y63{bottom:370.194667pt;}
.y11c{bottom:370.365733pt;}
.y3f{bottom:371.152267pt;}
.y203{bottom:372.696400pt;}
.y239{bottom:373.064267pt;}
.y14{bottom:375.054667pt;}
.y9d{bottom:376.200000pt;}
.y21e{bottom:376.409600pt;}
.yfe{bottom:379.322133pt;}
.y183{bottom:380.008800pt;}
.y1aa{bottom:380.619600pt;}
.y25d{bottom:382.619467pt;}
.y165{bottom:383.762000pt;}
.yd9{bottom:383.885867pt;}
.y3e{bottom:385.829600pt;}
.y1c4{bottom:387.263733pt;}
.y62{bottom:388.190667pt;}
.y1e0{bottom:389.272933pt;}
.y13{bottom:389.724000pt;}
.y198{bottom:390.421600pt;}
.y202{bottom:391.059067pt;}
.y238{bottom:391.064267pt;}
.y11b{bottom:391.179067pt;}
.y21d{bottom:394.405600pt;}
.y7b{bottom:395.064267pt;}
.y9c{bottom:395.310667pt;}
.y152{bottom:395.322133pt;}
.y182{bottom:398.004800pt;}
.y1a9{bottom:398.615600pt;}
.yd8{bottom:400.379200pt;}
.y3d{bottom:400.493600pt;}
.y25c{bottom:400.712800pt;}
.yb5{bottom:401.058933pt;}
.y11a{bottom:403.111733pt;}
.y12{bottom:404.388000pt;}
.y61{bottom:406.186667pt;}
.y197{bottom:408.417600pt;}
.y1df{bottom:408.618267pt;}
.y237{bottom:409.064267pt;}
.y201{bottom:409.439733pt;}
.y13d{bottom:409.473067pt;}
.yfd{bottom:411.322133pt;}
.y21c{bottom:412.401600pt;}
.y1c3{bottom:412.819067pt;}
.y9b{bottom:414.421333pt;}
.y3c{bottom:415.157600pt;}
.yd7{bottom:416.872533pt;}
.y25b{bottom:418.806133pt;}
.y11{bottom:419.056267pt;}
.y119{bottom:419.485067pt;}
.y181{bottom:420.004800pt;}
.y1a8{bottom:420.615600pt;}
.y60{bottom:424.182667pt;}
.y13c{bottom:425.473067pt;}
.y196{bottom:426.413600pt;}
.y236{bottom:427.064267pt;}
.yfc{bottom:427.322133pt;}
.y200{bottom:427.802400pt;}
.y1de{bottom:427.963600pt;}
.y1c2{bottom:428.819067pt;}
.yb4{bottom:429.080267pt;}
.y3b{bottom:429.821600pt;}
.y21b{bottom:430.425600pt;}
.y9a{bottom:433.532000pt;}
.y118{bottom:435.858400pt;}
.y25a{bottom:436.899467pt;}
.y180{bottom:438.000800pt;}
.y1a7{bottom:438.611600pt;}
.y10{bottom:441.280267pt;}
.y5f{bottom:442.178667pt;}
.yfb{bottom:443.322133pt;}
.y3a{bottom:444.485600pt;}
.y1c1{bottom:444.819067pt;}
.y235{bottom:445.064267pt;}
.y1ff{bottom:446.165067pt;}
.y1dd{bottom:447.308933pt;}
.y195{bottom:448.413600pt;}
.y21a{bottom:448.421600pt;}
.y7a{bottom:448.457600pt;}
.yd6{bottom:449.872533pt;}
.y117{bottom:452.230667pt;}
.y99{bottom:452.642667pt;}
.y259{bottom:454.992800pt;}
.yf{bottom:455.962000pt;}
.y17f{bottom:455.996800pt;}
.y1a6{bottom:456.607600pt;}
.y13b{bottom:457.473067pt;}
.yfa{bottom:459.322133pt;}
.y5e{bottom:460.174667pt;}
.y234{bottom:463.064267pt;}
.y39{bottom:463.145600pt;}
.y1fe{bottom:464.527733pt;}
.yd5{bottom:466.370133pt;}
.y194{bottom:466.409600pt;}
.y219{bottom:466.417600pt;}
.y79{bottom:466.453600pt;}
.y1dc{bottom:466.654267pt;}
.y1c0{bottom:468.379067pt;}
.y98{bottom:471.753333pt;}
.yb3{bottom:473.080267pt;}
.y258{bottom:473.086133pt;}
.y13a{bottom:473.473067pt;}
.y17e{bottom:473.992800pt;}
.yf9{bottom:475.322133pt;}
.y38{bottom:477.821600pt;}
.y5d{bottom:478.170667pt;}
.ye{bottom:478.186000pt;}
.y233{bottom:481.064267pt;}
.yd4{bottom:482.867600pt;}
.y1fd{bottom:482.921733pt;}
.y1bf{bottom:484.379067pt;}
.y193{bottom:484.405600pt;}
.y218{bottom:484.413600pt;}
.y78{bottom:484.449600pt;}
.y116{bottom:484.977333pt;}
.y1db{bottom:485.999600pt;}
.y139{bottom:489.473067pt;}
.y1a5{bottom:490.607600pt;}
.yb2{bottom:491.076267pt;}
.y257{bottom:491.179467pt;}
.yf8{bottom:491.322133pt;}
.y17d{bottom:491.988800pt;}
.y37{bottom:492.485600pt;}
.yd{bottom:492.850000pt;}
.y97{bottom:494.868000pt;}
.y5c{bottom:496.166667pt;}
.y232{bottom:499.064267pt;}
.yd3{bottom:499.365200pt;}
.y1fc{bottom:501.284400pt;}
.y115{bottom:501.350667pt;}
.y192{bottom:502.401600pt;}
.y217{bottom:502.409600pt;}
.y77{bottom:502.445600pt;}
.y138{bottom:505.473067pt;}
.y36{bottom:507.154933pt;}
.y151{bottom:507.322133pt;}
.yc{bottom:507.514000pt;}
.y1be{bottom:507.939067pt;}
.yb1{bottom:509.072267pt;}
.y256{bottom:509.272800pt;}
.y1da{bottom:509.350133pt;}
.y96{bottom:513.978667pt;}
.y17c{bottom:514.000800pt;}
.yd2{bottom:515.862133pt;}
.y231{bottom:517.064267pt;}
.y114{bottom:517.724000pt;}
.y1fb{bottom:519.647067pt;}
.y216{bottom:520.405600pt;}
.y76{bottom:520.441600pt;}
.y137{bottom:521.473067pt;}
.y35{bottom:521.818933pt;}
.yb{bottom:522.178000pt;}
.yf7{bottom:523.322133pt;}
.y1bd{bottom:523.939067pt;}
.yb0{bottom:527.068267pt;}
.y255{bottom:527.366133pt;}
.y1d9{bottom:528.695467pt;}
.y5b{bottom:530.166667pt;}
.y17b{bottom:531.996800pt;}
.yd1{bottom:532.355467pt;}
.y95{bottom:533.089333pt;}
.y113{bottom:534.097333pt;}
.y230{bottom:535.064267pt;}
.y34{bottom:536.485600pt;}
.ya{bottom:536.842000pt;}
.y136{bottom:537.473067pt;}
.y1fa{bottom:538.009733pt;}
.y215{bottom:538.401600pt;}
.y75{bottom:538.437600pt;}
.yf6{bottom:539.322133pt;}
.y1bc{bottom:539.939067pt;}
.y150{bottom:543.762000pt;}
.yaf{bottom:545.064267pt;}
.y254{bottom:545.498933pt;}
.y1d8{bottom:548.040800pt;}
.y17a{bottom:549.992800pt;}
.y112{bottom:550.470667pt;}
.y9{bottom:551.506000pt;}
.y94{bottom:552.200000pt;}
.y22f{bottom:553.064267pt;}
.y33{bottom:555.145600pt;}
.yf5{bottom:555.322133pt;}
.y1f9{bottom:556.372400pt;}
.y214{bottom:556.397600pt;}
.y74{bottom:556.433600pt;}
.y1bb{bottom:563.499067pt;}
.y253{bottom:563.592267pt;}
.yd0{bottom:565.355467pt;}
.y8{bottom:566.178000pt;}
.y111{bottom:566.842800pt;}
.y179{bottom:567.988800pt;}
.y135{bottom:569.473067pt;}
.y32{bottom:569.817600pt;}
.y22e{bottom:571.064267pt;}
.y93{bottom:571.310667pt;}
.yf4{bottom:571.322133pt;}
.y73{bottom:574.429600pt;}
.y1f8{bottom:574.735067pt;}
.y1d7{bottom:574.944267pt;}
.y213{bottom:578.405600pt;}
.yae{bottom:579.064267pt;}
.y1ba{bottom:579.499067pt;}
.y7{bottom:580.842000pt;}
.y252{bottom:581.685600pt;}
.y134{bottom:585.473067pt;}
.ycf{bottom:586.288800pt;}
.y5a{bottom:587.059067pt;}
.y31{bottom:587.145600pt;}
.yf3{bottom:587.322133pt;}
.y22d{bottom:589.064267pt;}
.y92{bottom:590.421333pt;}
.y1d6{bottom:592.290933pt;}
.y72{bottom:592.425600pt;}
.y1f7{bottom:593.097733pt;}
.y1b9{bottom:595.499067pt;}
.y212{bottom:596.401600pt;}
.yce{bottom:598.358533pt;}
.y110{bottom:599.589467pt;}
.y251{bottom:599.778933pt;}
.y133{bottom:601.473067pt;}
.y178{bottom:601.988800pt;}
.y59{bottom:603.059067pt;}
.yf2{bottom:603.322133pt;}
.y22c{bottom:607.064267pt;}
.y91{bottom:609.532000pt;}
.y1d5{bottom:609.637600pt;}
.y6{bottom:610.170000pt;}
.y71{bottom:610.421600pt;}
.y1f6{bottom:611.492267pt;}
.y211{bottom:614.425600pt;}
.ycd{bottom:614.851867pt;}
.y10f{bottom:615.962800pt;}
.y132{bottom:617.473067pt;}
.y250{bottom:617.872267pt;}
.y58{bottom:619.059067pt;}
.y30{bottom:619.068267pt;}
.y14f{bottom:619.322133pt;}
.y22b{bottom:625.064267pt;}
.y5{bottom:627.503333pt;}
.y191{bottom:628.417600pt;}
.y90{bottom:628.642667pt;}
.y1f5{bottom:629.854933pt;}
.ycc{bottom:631.345200pt;}
.y10e{bottom:632.336133pt;}
.y70{bottom:632.421600pt;}
.y131{bottom:633.473067pt;}
.y272{bottom:633.535467pt;}
.yf1{bottom:635.322133pt;}
.y24f{bottom:635.965600pt;}
.y2f{bottom:637.058933pt;}
.y15b{bottom:639.762000pt;}
.y1d4{bottom:642.320933pt;}
.y22a{bottom:643.064267pt;}
.y190{bottom:646.413600pt;}
.y8f{bottom:647.733600pt;}
.ycb{bottom:647.838533pt;}
.y1f4{bottom:648.217600pt;}
.y10d{bottom:648.709467pt;}
.y130{bottom:649.473067pt;}
.y57{bottom:650.417600pt;}
.yf0{bottom:651.322133pt;}
.y271{bottom:651.428800pt;}
.y24e{bottom:654.058933pt;}
.y2e{bottom:654.394933pt;}
.y229{bottom:661.064267pt;}
.y1d3{bottom:661.666267pt;}
.y10c{bottom:665.082800pt;}
.y4{bottom:666.831333pt;}
.y8e{bottom:666.844267pt;}
.yef{bottom:667.322133pt;}
.y56{bottom:668.413600pt;}
.y1f3{bottom:670.584267pt;}
.y2d{bottom:671.713600pt;}
.y24d{bottom:672.152267pt;}
.y228{bottom:679.064267pt;}
.yca{bottom:680.838533pt;}
.y1d2{bottom:681.011600pt;}
.y10b{bottom:681.455467pt;}
.y12f{bottom:681.473067pt;}
.yee{bottom:683.322133pt;}
.y8d{bottom:685.954933pt;}
.y6f{bottom:686.409600pt;}
.y1f2{bottom:688.946933pt;}
.y2c{bottom:689.049600pt;}
.y24c{bottom:690.245600pt;}
.y55{bottom:690.413600pt;}
.y3{bottom:690.836667pt;}
.y270{bottom:691.322133pt;}
.y227{bottom:697.064267pt;}
.yc9{bottom:697.331867pt;}
.y12e{bottom:697.473067pt;}
.yed{bottom:699.322133pt;}
.y1d1{bottom:700.356933pt;}
.y6e{bottom:704.405600pt;}
.y8c{bottom:705.065600pt;}
.y1f1{bottom:707.309600pt;}
.y24b{bottom:708.338933pt;}
.y54{bottom:708.409600pt;}
.y26f{bottom:709.322133pt;}
.y2b{bottom:710.389600pt;}
.y12d{bottom:713.473067pt;}
.yc8{bottom:713.833600pt;}
.y10a{bottom:714.202133pt;}
.y226{bottom:715.064267pt;}
.yec{bottom:715.322133pt;}
.y1d0{bottom:719.702267pt;}
.yad{bottom:722.401600pt;}
.y8b{bottom:724.176267pt;}
.y1f0{bottom:725.672267pt;}
.y53{bottom:726.405600pt;}
.y24a{bottom:726.432267pt;}
.y26e{bottom:727.322133pt;}
.y2a{bottom:727.725600pt;}
.y12c{bottom:729.473067pt;}
.yc7{bottom:730.335467pt;}
.y109{bottom:730.575467pt;}
.y14e{bottom:731.322133pt;}
.y225{bottom:733.064267pt;}
.y1cf{bottom:743.052267pt;}
.y8a{bottom:743.286933pt;}
.y1ef{bottom:744.034933pt;}
.y52{bottom:744.401600pt;}
.y249{bottom:744.525600pt;}
.y29{bottom:745.061600pt;}
.y26d{bottom:745.322133pt;}
.y12b{bottom:745.473067pt;}
.yc6{bottom:746.828800pt;}
.y108{bottom:746.948800pt;}
.yeb{bottom:747.322133pt;}
.y12a{bottom:761.473067pt;}
.y28{bottom:762.397600pt;}
.y248{bottom:762.618933pt;}
.yc5{bottom:763.322133pt;}
.y107{bottom:767.762133pt;}
.y2{bottom:770.677067pt;}
.y1{bottom:785.877067pt;}
.y26{bottom:791.464533pt;}
.y27{bottom:791.730667pt;}
.hb{height:22.234375pt;}
.h9{height:24.936914pt;}
.h17{height:26.641063pt;}
.h8{height:26.789438pt;}
.h10{height:26.789971pt;}
.h1d{height:27.616589pt;}
.h2b{height:29.687917pt;}
.h29{height:29.688450pt;}
.h2{height:33.268229pt;}
.h21{height:34.577708pt;}
.h28{height:34.578242pt;}
.h19{height:37.057292pt;}
.h1a{height:42.074389pt;}
.ha{height:42.703125pt;}
.hf{height:42.762771pt;}
.h5{height:42.773438pt;}
.h18{height:47.447917pt;}
.h2a{height:47.512175pt;}
.h13{height:47.526042pt;}
.h24{height:47.530308pt;}
.h23{height:47.530842pt;}
.h12{height:48.489583pt;}
.h33{height:52.248813pt;}
.h7{height:52.278646pt;}
.h34{height:52.302146pt;}
.h1b{height:52.303575pt;}
.h2e{height:52.310146pt;}
.h1f{height:52.320642pt;}
.h1c{height:52.321175pt;}
.h1e{height:52.323308pt;}
.h2c{height:52.326146pt;}
.h20{height:52.337708pt;}
.h25{height:52.338242pt;}
.h22{height:52.340375pt;}
.h15{height:52.342146pt;}
.he{height:52.358146pt;}
.h31{height:52.369346pt;}
.h2f{height:52.371479pt;}
.h6{height:52.374146pt;}
.h32{height:52.376279pt;}
.h30{height:52.380013pt;}
.hd{height:52.395479pt;}
.h35{height:52.423746pt;}
.hc{height:52.443479pt;}
.h16{height:52.453079pt;}
.h2d{height:56.744914pt;}
.h36{height:56.808914pt;}
.h4{height:56.921447pt;}
.h27{height:56.938567pt;}
.h26{height:56.939100pt;}
.h11{height:56.951250pt;}
.h14{height:57.031250pt;}
.h3{height:66.536458pt;}
.h0{height:902.614400pt;}
.h1{height:902.666667pt;}
.w1{width:638.000000pt;}
.w0{width:638.047733pt;}
.x0{left:0.000000pt;}
.x7{left:11.097067pt;}
.x3{left:105.480267pt;}
.x6{left:124.374933pt;}
.xd{left:143.279867pt;}
.xa{left:144.384133pt;}
.xc{left:162.173200pt;}
.xe{left:165.033867pt;}
.x9{left:170.751200pt;}
.x12{left:196.182400pt;}
.x10{left:203.746933pt;}
.x11{left:218.880267pt;}
.xf{left:243.867600pt;}
.x13{left:281.948667pt;}
.x8{left:285.791867pt;}
.x1{left:320.301467pt;}
.x2{left:358.982800pt;}
.x4{left:456.594267pt;}
.x5{left:479.562933pt;}
.xb{left:514.566933pt;}
}




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