
    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_e86810cfe0e23fb26fb59a5a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_9e3abd5817a3992ecb3afb2b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_f7b168b0b8daede121b800fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_21d1424962103969696146da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.908000;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_e3b10fc54b7662972cba8501.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_582c52dc90fc1abdc581c898.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.683000;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_5ca504eef93f8cb93e5c7ccf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.840332;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_0ab8212b8e171087a6dc5649.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.806571;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_1844be80fcff6c7c277cb05b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912000;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_dc99e11ad043a3e14fb65100.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.883000;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_95fdf6a88a2d9b1321c9475b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.717000;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_ba007ae6045edb081c7e57cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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;}
.mf{transform:matrix(0.136154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136154,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.136588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136588,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.151518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151518,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.152001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152001,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.156801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156801,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.157349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157349,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206660,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-34.559986px;}
.v6{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759990px;}
.v2{vertical-align:29.519988px;}
.v3{vertical-align:30.959988px;}
.v4{vertical-align:45.359982px;}
.v5{vertical-align:52.559979px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.222237px;}
.lsa{letter-spacing:0.407340px;}
.lsc{letter-spacing:0.523043px;}
.lsb{letter-spacing:0.720876px;}
.ls1{letter-spacing:56.101518px;}
.ls3{letter-spacing:56.112251px;}
.ls7{letter-spacing:85.454869px;}
.ls4{letter-spacing:239.200164px;}
.ls6{letter-spacing:337.264786px;}
.ls5{letter-spacing:524.223240px;}
.ls9{letter-spacing:654.290186px;}
.ls8{letter-spacing:835.304592px;}
.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;}
}
.ws2e{word-spacing:-39.434384px;}
.ws7{word-spacing:-18.217193px;}
.ws4{word-spacing:-18.216593px;}
.ws22{word-spacing:-16.881293px;}
.ws6{word-spacing:-16.815893px;}
.ws2{word-spacing:-16.815293px;}
.ws16{word-spacing:-16.769543px;}
.ws5{word-spacing:-14.324754px;}
.ws1{word-spacing:-14.324034px;}
.ws0{word-spacing:-11.677495px;}
.ws18{word-spacing:-10.302116px;}
.ws13{word-spacing:-0.045877px;}
.ws3{word-spacing:0.000000px;}
.ws20{word-spacing:3.966496px;}
.ws26{word-spacing:4.686855px;}
.ws32{word-spacing:16.059351px;}
.wsd{word-spacing:26.379589px;}
.wsa{word-spacing:27.820178px;}
.ws24{word-spacing:35.550383px;}
.ws1e{word-spacing:36.270742px;}
.ws19{word-spacing:37.440515px;}
.ws1b{word-spacing:38.160885px;}
.wsc{word-spacing:39.109106px;}
.ws9{word-spacing:40.549898px;}
.ws31{word-spacing:47.727422px;}
.ws17{word-spacing:49.433351px;}
.ws28{word-spacing:50.291588px;}
.wsb{word-spacing:51.310578px;}
.ws8{word-spacing:52.750938px;}
.ws11{word-spacing:71.027736px;}
.ws10{word-spacing:75.034986px;}
.ws14{word-spacing:78.927884px;}
.ws2b{word-spacing:85.162055px;}
.ws1a{word-spacing:90.832665px;}
.ws1c{word-spacing:91.558570px;}
.ws12{word-spacing:98.041407px;}
.ws15{word-spacing:98.179874px;}
.wse{word-spacing:99.081176px;}
.ws2c{word-spacing:104.679929px;}
.ws29{word-spacing:115.352793px;}
.ws30{word-spacing:165.329445px;}
.ws1f{word-spacing:170.240126px;}
.ws25{word-spacing:174.561996px;}
.ws21{word-spacing:221.945790px;}
.ws27{word-spacing:223.386102px;}
.ws2a{word-spacing:240.724732px;}
.ws2f{word-spacing:243.810179px;}
.ws33{word-spacing:245.632785px;}
.ws2d{word-spacing:316.669219px;}
.ws1d{word-spacing:391.360516px;}
.ws23{word-spacing:398.934535px;}
.wsf{word-spacing:431.615176px;}
._3d{margin-left:-391.600036px;}
._1b{margin-left:-8.988869px;}
._4d{margin-left:-7.794463px;}
._51{margin-left:-5.668448px;}
._45{margin-left:-4.197791px;}
._48{margin-left:-2.459859px;}
._0{margin-left:-1.323997px;}
._1{width:1.255052px;}
._5{width:2.333987px;}
._12{width:3.424018px;}
._13{width:4.543482px;}
._11{width:6.091189px;}
._4{width:7.103121px;}
._1a{width:8.288881px;}
._7{width:9.306545px;}
._10{width:10.454592px;}
._f{width:11.856102px;}
._c{width:12.915109px;}
._d{width:14.489333px;}
._e{width:15.651204px;}
._6{width:18.378543px;}
._8{width:19.956588px;}
._9{width:21.477038px;}
._30{width:22.571351px;}
._16{width:23.653089px;}
._15{width:24.858540px;}
._17{width:26.635412px;}
._1e{width:27.837748px;}
._18{width:29.387379px;}
._1f{width:30.392339px;}
._19{width:31.558149px;}
._14{width:32.804148px;}
._20{width:33.915090px;}
._b{width:34.935679px;}
._a{width:36.814403px;}
._1d{width:42.113148px;}
._1c{width:43.132254px;}
._80{width:44.417445px;}
._7f{width:45.419576px;}
._76{width:47.118209px;}
._75{width:48.725442px;}
._33{width:50.482668px;}
._77{width:52.880601px;}
._81{width:53.980074px;}
._7c{width:55.814797px;}
._7a{width:56.818262px;}
._7b{width:57.827177px;}
._2{width:61.433451px;}
._34{width:63.469785px;}
._31{width:64.702637px;}
._32{width:66.136060px;}
._52{width:67.457584px;}
._3{width:68.628530px;}
._7d{width:70.960775px;}
._7e{width:72.077386px;}
._6b{width:81.721969px;}
._70{width:86.778682px;}
._47{width:88.106753px;}
._38{width:92.119126px;}
._5d{width:93.449437px;}
._37{width:95.000804px;}
._36{width:97.567215px;}
._55{width:105.987512px;}
._35{width:111.677821px;}
._59{width:116.385713px;}
._74{width:119.806165px;}
._3c{width:122.733484px;}
._3e{width:126.137179px;}
._3b{width:132.735922px;}
._28{width:135.692446px;}
._4c{width:138.011222px;}
._39{width:140.280667px;}
._6c{width:142.046944px;}
._69{width:144.368287px;}
._78{width:147.214210px;}
._26{width:148.697149px;}
._25{width:150.138292px;}
._2f{width:152.112987px;}
._5e{width:154.323653px;}
._6d{width:161.157354px;}
._71{width:165.166680px;}
._21{width:167.402720px;}
._24{width:170.617732px;}
._23{width:175.263109px;}
._22{width:176.305748px;}
._79{width:182.792582px;}
._44{width:185.224440px;}
._73{width:187.002824px;}
._2a{width:188.229936px;}
._29{width:189.583024px;}
._6a{width:194.626078px;}
._68{width:198.813639px;}
._2d{width:200.388069px;}
._2c{width:201.829125px;}
._72{width:205.182906px;}
._64{width:212.354831px;}
._66{width:217.640527px;}
._67{width:219.998835px;}
._40{width:223.489912px;}
._3a{width:228.625090px;}
._2e{width:230.643088px;}
._6f{width:231.706777px;}
._6e{width:236.176316px;}
._56{width:239.413821px;}
._5c{width:240.675111px;}
._49{width:241.787418px;}
._2b{width:242.889083px;}
._53{width:250.614856px;}
._4a{width:256.220343px;}
._4e{width:257.314063px;}
._46{width:259.767684px;}
._63{width:272.578796px;}
._4f{width:300.227775px;}
._58{width:302.218365px;}
._60{width:307.261145px;}
._4b{width:311.753547px;}
._57{width:358.406737px;}
._5f{width:363.449517px;}
._61{width:364.688681px;}
._3f{width:365.791294px;}
._54{width:409.095021px;}
._5b{width:414.137463px;}
._43{width:436.663647px;}
._42{width:449.629802px;}
._41{width:462.595957px;}
._65{width:545.407582px;}
._62{width:597.995161px;}
._50{width:678.090525px;}
._5a{width:684.907830px;}
._27{width:730.920442px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.629027px;}
.fs11{font-size:36.407505px;}
.fse{font-size:38.860544px;}
.fs18{font-size:39.119024px;}
.fsc{font-size:39.161504px;}
.fs1c{font-size:39.383264px;}
.fs1e{font-size:39.434384px;}
.fs16{font-size:41.208464px;}
.fs5{font-size:44.218062px;}
.fs1{font-size:46.709981px;}
.fs7{font-size:51.690939px;}
.fs1f{font-size:51.693819px;}
.fs0{font-size:57.296137px;}
.fs8{font-size:57.299017px;}
.fsa{font-size:62.279975px;}
.fs12{font-size:62.845175px;}
.fsf{font-size:67.078173px;}
.fs2{font-size:67.261173px;}
.fs9{font-size:67.263573px;}
.fs19{font-size:67.525173px;}
.fsd{font-size:67.598373px;}
.fs1b{font-size:67.981173px;}
.fs1d{font-size:68.071173px;}
.fs15{font-size:71.133572px;}
.fs4{font-size:72.866371px;}
.fsb{font-size:72.868771px;}
.fs10{font-size:81.880767px;}
.fs3{font-size:82.831167px;}
.fs1a{font-size:101.286559px;}
.fs17{font-size:106.481357px;}
.fs13{font-size:110.635156px;}
.fs14{font-size:123.119951px;}
.y0{bottom:0.000000px;}
.y108{bottom:2.339682px;}
.y10f{bottom:2.339700px;}
.y1b6{bottom:3.059653px;}
.y1be{bottom:3.059689px;}
.y1c3{bottom:3.059705px;}
.y1f0{bottom:3.059853px;}
.y117{bottom:3.599707px;}
.y129{bottom:3.779817px;}
.y6{bottom:3.959591px;}
.y188{bottom:3.959624px;}
.y286{bottom:3.959668px;}
.y114{bottom:3.959707px;}
.y28d{bottom:3.959715px;}
.y1a3{bottom:3.959761px;}
.y14f{bottom:3.959799px;}
.y14d{bottom:3.959803px;}
.y15b{bottom:3.959828px;}
.y16c{bottom:3.959911px;}
.y17a{bottom:3.959940px;}
.y17e{bottom:4.139623px;}
.y10a{bottom:4.139681px;}
.y111{bottom:4.139698px;}
.y166{bottom:4.139911px;}
.y173{bottom:4.139940px;}
.y149{bottom:4.319798px;}
.y156{bottom:4.319828px;}
.y126{bottom:4.499818px;}
.y19b{bottom:5.039768px;}
.y145{bottom:6.119799px;}
.y152{bottom:6.119829px;}
.y147{bottom:6.839800px;}
.y154{bottom:6.839829px;}
.y19d{bottom:8.639755px;}
.y1a0{bottom:8.639766px;}
.y3{bottom:67.499973px;}
.y271{bottom:97.559961px;}
.y92{bottom:97.919961px;}
.y76{bottom:101.879959px;}
.yab{bottom:103.139959px;}
.y26{bottom:103.859958px;}
.y4b{bottom:104.039958px;}
.y4a{bottom:108.539957px;}
.y1fa{bottom:108.719957px;}
.y208{bottom:113.039955px;}
.y270{bottom:117.179953px;}
.y91{bottom:117.359953px;}
.y251{bottom:117.539953px;}
.y105{bottom:118.979952px;}
.y49{bottom:119.699952px;}
.y75{bottom:121.139952px;}
.yaa{bottom:122.399951px;}
.ybd{bottom:123.299951px;}
.y214{bottom:124.559950px;}
.y236{bottom:127.439949px;}
.y1f9{bottom:127.979949px;}
.yde{bottom:128.339949px;}
.y25{bottom:132.299947px;}
.y207{bottom:132.479947px;}
.y171{bottom:133.379947px;}
.y104{bottom:133.919946px;}
.y26f{bottom:136.439945px;}
.y90{bottom:136.799945px;}
.y103{bottom:138.419945px;}
.y283{bottom:138.959944px;}
.y74{bottom:140.579944px;}
.y48{bottom:141.479943px;}
.ya9{bottom:141.839943px;}
.y17c{bottom:143.820000px;}
.y213{bottom:143.999942px;}
.y175{bottom:145.259942px;}
.y172{bottom:145.440000px;}
.y178{bottom:145.619942px;}
.y179{bottom:145.620000px;}
.y235{bottom:146.699941px;}
.y16f{bottom:147.419941px;}
.y17b{bottom:147.779941px;}
.y102{bottom:149.399940px;}
.y177{bottom:149.579940px;}
.y24{bottom:151.739939px;}
.y8f{bottom:156.059938px;}
.ydd{bottom:156.779937px;}
.y176{bottom:157.139937px;}
.y73{bottom:159.839936px;}
.y47{bottom:160.919936px;}
.y170{bottom:161.819935px;}
.y212{bottom:163.259935px;}
.y26e{bottom:164.879934px;}
.y250{bottom:165.419934px;}
.y174{bottom:166.859933px;}
.y282{bottom:167.399933px;}
.ya8{bottom:170.279932px;}
.y23{bottom:171.179932px;}
.ybc{bottom:171.359931px;}
.y234{bottom:175.139930px;}
.ydc{bottom:176.219930px;}
.y1b1{bottom:179.279928px;}
.y72{bottom:179.459928px;}
.y46{bottom:180.359928px;}
.y26d{bottom:184.319926px;}
.y8e{bottom:184.499926px;}
.y24f{bottom:184.859926px;}
.y1f8{bottom:186.299925px;}
.ya7{bottom:189.719924px;}
.ybb{bottom:190.619924px;}
.y211{bottom:191.879923px;}
.y233{bottom:194.579922px;}
.ydb{bottom:195.659922px;}
.y281{bottom:195.839922px;}
.y101{bottom:196.559921px;}
.y71{bottom:198.899920px;}
.y22{bottom:199.619920px;}
.y45{bottom:199.799920px;}
.y26c{bottom:203.579919px;}
.y8d{bottom:203.939918px;}
.y1f7{bottom:205.739918px;}
.y164{bottom:206.819917px;}
.y1b0{bottom:207.719917px;}
.ya6{bottom:209.159916px;}
.yba{bottom:210.059916px;}
.y135{bottom:210.239916px;}
.y210{bottom:211.319915px;}
.y24e{bottom:213.299915px;}
.y232{bottom:214.019914px;}
.yda{bottom:215.099914px;}
.y100{bottom:215.819914px;}
.y16e{bottom:217.260000px;}
.y70{bottom:218.159913px;}
.y168{bottom:218.699913px;}
.y165{bottom:218.880000px;}
.y21{bottom:219.059912px;}
.y16b{bottom:219.240000px;}
.y1de{bottom:220.139912px;}
.y163{bottom:220.859912px;}
.y16d{bottom:221.219912px;}
.y16a{bottom:223.019911px;}
.y8c{bottom:223.559911px;}
.y280{bottom:224.459910px;}
.y1f6{bottom:224.999910px;}
.y1af{bottom:227.159909px;}
.ya5{bottom:228.419909px;}
.yb9{bottom:229.499908px;}
.y169{bottom:230.579908px;}
.y26b{bottom:232.199907px;}
.y24d{bottom:232.559907px;}
.y231{bottom:233.459907px;}
.yd9{bottom:234.539906px;}
.yff{bottom:235.259906px;}
.y6f{bottom:237.599905px;}
.y20{bottom:238.319905px;}
.y44{bottom:238.499905px;}
.y1dd{bottom:239.399904px;}
.y167{bottom:240.299904px;}
.y8b{bottom:242.819903px;}
.y27f{bottom:243.719903px;}
.y162{bottom:243.899902px;}
.y1f5{bottom:244.439902px;}
.y1ae{bottom:246.419901px;}
.ya4{bottom:247.859901px;}
.yb8{bottom:248.759900px;}
.y134{bottom:248.939900px;}
.y26a{bottom:251.639899px;}
.yd8{bottom:253.799898px;}
.yfe{bottom:254.519898px;}
.y6e{bottom:256.859897px;}
.y1f{bottom:257.939897px;}
.y1dc{bottom:259.019896px;}
.y24c{bottom:261.179896px;}
.y230{bottom:261.899895px;}
.y8a{bottom:262.259895px;}
.y27e{bottom:263.159895px;}
.y1f4{bottom:263.879894px;}
.y1ad{bottom:265.859894px;}
.ya3{bottom:267.119893px;}
.yb7{bottom:268.199893px;}
.y161{bottom:272.339891px;}
.yd7{bottom:273.239891px;}
.yfd{bottom:273.959890px;}
.y1e{bottom:277.379889px;}
.y1db{bottom:278.279889px;}
.y20f{bottom:278.639889px;}
.y269{bottom:280.079888px;}
.y24b{bottom:280.619888px;}
.y22f{bottom:281.159888px;}
.y89{bottom:281.519887px;}
.y1f3{bottom:283.319887px;}
.y6d{bottom:285.479886px;}
.y43{bottom:286.379885px;}
.ya2{bottom:286.739885px;}
.yb6{bottom:287.639885px;}
.y133{bottom:287.819885px;}
.y27d{bottom:291.599883px;}
.y160{bottom:291.779883px;}
.yd6{bottom:292.499883px;}
.yfb{bottom:293.579883px;}
.y1da{bottom:297.719881px;}
.y20e{bottom:298.079881px;}
.yfc{bottom:299.339880px;}
.y24a{bottom:299.879880px;}
.y22e{bottom:300.599880px;}
.y88{bottom:300.959880px;}
.y1ac{bottom:304.739878px;}
.y6c{bottom:304.919878px;}
.y1d{bottom:305.639878px;}
.y42{bottom:305.819878px;}
.yb5{bottom:307.079877px;}
.y27c{bottom:310.859876px;}
.y15f{bottom:311.039876px;}
.y1f2{bottom:311.759875px;}
.yd5{bottom:312.119875px;}
.yfa{bottom:312.839875px;}
.ya1{bottom:315.179874px;}
.y206{bottom:316.079874px;}
.y1d9{bottom:316.979873px;}
.y268{bottom:318.959872px;}
.y249{bottom:319.319872px;}
.y22d{bottom:320.219872px;}
.y87{bottom:320.399872px;}
.y6b{bottom:324.179870px;}
.y1c{bottom:325.079870px;}
.y41{bottom:325.259870px;}
.y20d{bottom:326.339869px;}
.y132{bottom:326.519869px;}
.yd4{bottom:331.379867px;}
.yf9{bottom:332.279867px;}
.ya0{bottom:334.619866px;}
.yb4{bottom:335.519866px;}
.y1d8{bottom:336.419865px;}
.y1f1{bottom:339.119864px;}
.y27b{bottom:339.479864px;}
.y15e{bottom:339.659864px;}
.y86{bottom:339.839864px;}
.y1ab{bottom:343.439863px;}
.y6a{bottom:343.619863px;}
.y1b{bottom:344.519862px;}
.y20c{bottom:345.779862px;}
.y131{bottom:345.959862px;}
.y267{bottom:347.399861px;}
.y248{bottom:347.759861px;}
.y22c{bottom:348.479861px;}
.yd3{bottom:350.819860px;}
.y9f{bottom:353.879858px;}
.yb3{bottom:354.779858px;}
.y1d7{bottom:355.859858px;}
.y27a{bottom:358.919856px;}
.y15d{bottom:359.099856px;}
.y85{bottom:359.279856px;}
.yf8{bottom:360.719856px;}
.y69{bottom:362.879855px;}
.y1ef{bottom:363.420000px;}
.y1a{bottom:363.959854px;}
.y130{bottom:365.219854px;}
.y1ee{bottom:366.479853px;}
.y266{bottom:366.659853px;}
.y247{bottom:367.199853px;}
.y22b{bottom:367.919853px;}
.yd2{bottom:370.259852px;}
.y9e{bottom:373.319851px;}
.yb2{bottom:374.399850px;}
.y1d6{bottom:375.299850px;}
.y15c{bottom:378.359849px;}
.y84{bottom:378.539849px;}
.yf7{bottom:380.159848px;}
.y68{bottom:382.499847px;}
.y19{bottom:383.399847px;}
.y20b{bottom:384.659846px;}
.y265{bottom:386.099846px;}
.y246{bottom:386.639845px;}
.y279{bottom:387.359845px;}
.y1ed{bottom:389.339844px;}
.yd1{bottom:389.519844px;}
.y1aa{bottom:391.319843px;}
.y9d{bottom:392.759843px;}
.yb1{bottom:393.659843px;}
.y12f{bottom:393.839842px;}
.y1d5{bottom:394.739842px;}
.y22a{bottom:396.359841px;}
.y83{bottom:397.979841px;}
.yf6{bottom:399.599840px;}
.y67{bottom:401.939839px;}
.y18{bottom:402.659839px;}
.y40{bottom:402.839839px;}
.y20a{bottom:404.099838px;}
.y278{bottom:406.619837px;}
.yd0{bottom:408.959836px;}
.y1ec{bottom:411.839835px;}
.y9c{bottom:412.199835px;}
.y205{bottom:413.099835px;}
.y12e{bottom:413.279835px;}
.y1d4{bottom:413.999834px;}
.y264{bottom:414.719834px;}
.y245{bottom:415.079834px;}
.y229{bottom:415.799834px;}
.y159{bottom:418.139833px;}
.yf5{bottom:418.859832px;}
.y153{bottom:420.480000px;}
.y66{bottom:421.199832px;}
.y3f{bottom:422.099831px;}
.y151{bottom:422.100000px;}
.y209{bottom:423.359831px;}
.y15a{bottom:425.520000px;}
.y157{bottom:425.699830px;}
.y155{bottom:425.880000px;}
.y82{bottom:426.419829px;}
.ycf{bottom:428.399829px;}
.y158{bottom:430.199828px;}
.y17{bottom:431.099828px;}
.y9b{bottom:431.459827px;}
.y12d{bottom:432.539827px;}
.y1d3{bottom:433.439827px;}
.y263{bottom:433.979826px;}
.y244{bottom:434.339826px;}
.y1eb{bottom:434.699826px;}
.y228{bottom:435.239826px;}
.yf4{bottom:438.299825px;}
.y65{bottom:440.639824px;}
.y3e{bottom:441.539823px;}
.yce{bottom:447.839821px;}
.y1a9{bottom:448.559821px;}
.y16{bottom:450.539820px;}
.y9a{bottom:450.899820px;}
.y125{bottom:451.080000px;}
.y12a{bottom:451.259819px;}
.y204{bottom:451.799819px;}
.y150{bottom:451.979819px;}
.y127{bottom:452.519819px;}
.y1d2{bottom:452.699819px;}
.y128{bottom:452.700000px;}
.y12c{bottom:453.599819px;}
.y243{bottom:453.959818px;}
.y227{bottom:454.679818px;}
.y12b{bottom:456.479817px;}
.y124{bottom:457.199817px;}
.y1ea{bottom:457.379817px;}
.yf3{bottom:457.739817px;}
.y64{bottom:459.899816px;}
.y3d{bottom:460.979816px;}
.y262{bottom:462.419815px;}
.y277{bottom:463.679815px;}
.ycd{bottom:467.099813px;}
.y1a8{bottom:467.999813px;}
.y15{bottom:469.979812px;}
.y99{bottom:470.339812px;}
.y203{bottom:471.239812px;}
.y226{bottom:473.939810px;}
.yf2{bottom:476.999809px;}
.y63{bottom:479.339808px;}
.y1e9{bottom:480.059808px;}
.y3c{bottom:480.419808px;}
.y1d1{bottom:481.319807px;}
.y261{bottom:481.859807px;}
.y242{bottom:482.399807px;}
.y81{bottom:483.659807px;}
.y123{bottom:486.359805px;}
.y1a7{bottom:487.439805px;}
.y14c{bottom:487.800000px;}
.y14{bottom:489.419804px;}
.y202{bottom:490.679804px;}
.y276{bottom:492.119803px;}
.y146{bottom:494.100000px;}
.ycc{bottom:495.539802px;}
.y144{bottom:495.720000px;}
.yf1{bottom:496.619801px;}
.y62{bottom:498.779800px;}
.y14e{bottom:499.140000px;}
.y14a{bottom:499.319800px;}
.y148{bottom:499.500000px;}
.yb0{bottom:499.859800px;}
.y1d0{bottom:500.759800px;}
.y260{bottom:501.299799px;}
.y241{bottom:501.659799px;}
.y225{bottom:502.379799px;}
.y1e8{bottom:502.739799px;}
.y80{bottom:503.099799px;}
.y14b{bottom:503.819798px;}
.y122{bottom:505.799798px;}
.y1a6{bottom:506.879797px;}
.y13{bottom:508.679797px;}
.y3b{bottom:508.859796px;}
.y201{bottom:510.119796px;}
.y275{bottom:511.559795px;}
.ycb{bottom:515.699794px;}
.yf0{bottom:515.879794px;}
.y61{bottom:518.219793px;}
.yaf{bottom:519.119792px;}
.y1cf{bottom:520.019792px;}
.y25f{bottom:520.739792px;}
.y240{bottom:521.099792px;}
.y224{bottom:521.999791px;}
.y7f{bottom:522.359791px;}
.y121{bottom:525.239790px;}
.y143{bottom:525.419790px;}
.y1e7{bottom:525.599790px;}
.y1a5{bottom:526.319789px;}
.y12{bottom:528.119789px;}
.y3a{bottom:528.299789px;}
.yca{bottom:530.639788px;}
.y60{bottom:537.659785px;}
.yae{bottom:538.559785px;}
.y1ce{bottom:539.459784px;}
.y25e{bottom:539.999784px;}
.y223{bottom:541.259783px;}
.y7e{bottom:541.979783px;}
.yef{bottom:544.319782px;}
.y120{bottom:544.499782px;}
.y1e5{bottom:545.219782px;}
.y1a4{bottom:545.579782px;}
.y11{bottom:547.559781px;}
.yc9{bottom:548.999780px;}
.y23f{bottom:549.719780px;}
.y1e4{bottom:552.599779px;}
.y142{bottom:554.039778px;}
.y5f{bottom:556.919777px;}
.yad{bottom:557.819777px;}
.y1cd{bottom:558.899776px;}
.y274{bottom:559.439776px;}
.y1e6{bottom:560.159776px;}
.y7d{bottom:561.239776px;}
.y11f{bottom:563.939774px;}
.y39{bottom:566.999773px;}
.y25d{bottom:568.439773px;}
.y23e{bottom:568.979772px;}
.yc8{bottom:569.159772px;}
.y222{bottom:569.699772px;}
.y19a{bottom:574.020000px;}
.y10{bottom:576.179770px;}
.y5e{bottom:576.359769px;}
.y19f{bottom:576.360000px;}
.y200{bottom:577.259769px;}
.y1cc{bottom:578.339769px;}
.y273{bottom:578.879768px;}
.y7c{bottom:580.679768px;}
.y141{bottom:582.479767px;}
.y197{bottom:584.999766px;}
.y1e3{bottom:586.259765px;}
.y38{bottom:586.439765px;}
.y25c{bottom:587.879765px;}
.yc7{bottom:589.139764px;}
.y11e{bottom:592.379763px;}
.y1a2{bottom:592.740000px;}
.yf{bottom:595.439762px;}
.y5d{bottom:595.799762px;}
.y1ff{bottom:596.879761px;}
.y23d{bottom:597.419761px;}
.y1cb{bottom:597.779761px;}
.y1a1{bottom:598.319761px;}
.y7b{bottom:600.119760px;}
.yee{bottom:602.279759px;}
.y297{bottom:602.999759px;}
.y19c{bottom:603.900000px;}
.y199{bottom:604.619758px;}
.y37{bottom:605.879758px;}
.y198{bottom:606.599757px;}
.y25b{bottom:607.319757px;}
.y221{bottom:608.399757px;}
.yc6{bottom:609.299756px;}
.y140{bottom:610.019756px;}
.y19e{bottom:610.559756px;}
.y11d{bottom:611.819755px;}
.ye{bottom:614.879754px;}
.y98{bottom:615.239754px;}
.y1fe{bottom:616.139754px;}
.y23c{bottom:616.859753px;}
.yed{bottom:617.039753px;}
.y196{bottom:619.199752px;}
.y1e2{bottom:621.359751px;}
.y5c{bottom:624.239750px;}
.y36{bottom:625.139750px;}
.y1ca{bottom:626.219750px;}
.y25a{bottom:626.759749px;}
.y296{bottom:629.279748px;}
.yc5{bottom:629.459748px;}
.y11c{bottom:631.259747px;}
.y97{bottom:634.499746px;}
.y1fd{bottom:635.579746px;}
.yec{bottom:636.839745px;}
.y220{bottom:637.019745px;}
.y1e1{bottom:640.799744px;}
.yd{bottom:641.879743px;}
.y7a{bottom:642.779743px;}
.y295{bottom:643.499743px;}
.y5b{bottom:643.679743px;}
.y35{bottom:644.579742px;}
.y23b{bottom:645.299742px;}
.y195{bottom:647.639741px;}
.yc4{bottom:649.619740px;}
.y11b{bottom:650.699740px;}
.y1c9{bottom:653.579739px;}
.y1fc{bottom:654.839738px;}
.y259{bottom:655.199738px;}
.yeb{bottom:655.919738px;}
.y21f{bottom:656.459737px;}
.y294{bottom:657.719737px;}
.y1e0{bottom:660.059736px;}
.y5a{bottom:662.939735px;}
.y34{bottom:664.019734px;}
.y23a{bottom:664.739734px;}
.y194{bottom:667.079733px;}
.y79{bottom:667.259733px;}
.y13f{bottom:669.239732px;}
.yc3{bottom:669.599732px;}
.y11a{bottom:669.959732px;}
.yea{bottom:670.859732px;}
.y258{bottom:674.459730px;}
.y1c8{bottom:677.519729px;}
.y59{bottom:682.379727px;}
.y33{bottom:683.459727px;}
.y239{bottom:684.179726px;}
.y21e{bottom:684.899726px;}
.y193{bottom:686.519725px;}
.y293{bottom:688.499725px;}
.y119{bottom:689.399724px;}
.yc2{bottom:689.759724px;}
.ye9{bottom:690.119724px;}
.y13e{bottom:691.919723px;}
.y1c7{bottom:692.279723px;}
.y272{bottom:693.899722px;}
.yc{bottom:698.759720px;}
.y58{bottom:701.819719px;}
.y32{bottom:702.899719px;}
.y257{bottom:703.079719px;}
.y21d{bottom:704.159718px;}
.y192{bottom:705.779718px;}
.y1c6{bottom:707.759717px;}
.y118{bottom:708.839716px;}
.y28c{bottom:709.200000px;}
.yc1{bottom:709.919716px;}
.ye8{bottom:712.619715px;}
.y13d{bottom:714.599714px;}
.yb{bottom:715.139714px;}
.y1c5{bottom:715.319714px;}
.y292{bottom:718.019713px;}
.y57{bottom:721.259711px;}
.y31{bottom:722.159711px;}
.y256{bottom:722.519711px;}
.y191{bottom:725.219710px;}
.y112{bottom:727.739709px;}
.y113{bottom:728.100000px;}
.y116{bottom:728.460000px;}
.yc0{bottom:731.339707px;}
.y238{bottom:731.879707px;}
.y115{bottom:732.059707px;}
.y21c{bottom:732.779707px;}
.ye7{bottom:735.299706px;}
.y1c2{bottom:735.300000px;}
.y13c{bottom:737.459705px;}
.y1c1{bottom:738.359705px;}
.y56{bottom:740.699704px;}
.y30{bottom:741.599703px;}
.y255{bottom:741.959703px;}
.y1c4{bottom:745.739702px;}
.y291{bottom:746.459701px;}
.y1df{bottom:746.819701px;}
.y10e{bottom:748.800000px;}
.ybf{bottom:751.319699px;}
.y110{bottom:751.320000px;}
.y237{bottom:751.679699px;}
.y21b{bottom:752.219699px;}
.y1c0{bottom:753.299699px;}
.y190{bottom:753.839698px;}
.y10c{bottom:755.639698px;}
.ye6{bottom:758.159697px;}
.y55{bottom:759.959696px;}
.y2f{bottom:760.859696px;}
.y254{bottom:761.219696px;}
.y10d{bottom:761.579695px;}
.y290{bottom:765.899694px;}
.y1bf{bottom:768.779692px;}
.yac{bottom:769.859692px;}
.ya{bottom:771.299691px;}
.y18f{bottom:773.099691px;}
.y1bd{bottom:773.280000px;}
.y10b{bottom:775.259690px;}
.y1bc{bottom:776.339689px;}
.y54{bottom:779.399688px;}
.y2e{bottom:780.299688px;}
.y21a{bottom:780.659688px;}
.ye5{bottom:780.839688px;}
.y13b{bottom:782.639687px;}
.y28f{bottom:785.159686px;}
.y107{bottom:791.640000px;}
.ybe{bottom:792.179683px;}
.y18e{bottom:792.539683px;}
.y109{bottom:794.160000px;}
.y106{bottom:798.479681px;}
.y53{bottom:798.839680px;}
.y1bb{bottom:799.379680px;}
.y2d{bottom:799.919680px;}
.ye4{bottom:803.519679px;}
.y28e{bottom:804.599678px;}
.y13a{bottom:805.499678px;}
.y253{bottom:809.099676px;}
.y18d{bottom:811.799675px;}
.y1ba{bottom:814.319674px;}
.y96{bottom:818.279673px;}
.y2c{bottom:819.179672px;}
.y219{bottom:819.539672px;}
.y285{bottom:825.300000px;}
.ye3{bottom:826.379669px;}
.y52{bottom:827.279669px;}
.y139{bottom:828.179669px;}
.y252{bottom:828.539669px;}
.y1b9{bottom:829.979668px;}
.y9{bottom:831.059668px;}
.y18c{bottom:831.239668px;}
.y95{bottom:837.539665px;}
.y2b{bottom:838.619665px;}
.y1b8{bottom:844.919662px;}
.y28b{bottom:845.819662px;}
.y51{bottom:846.719661px;}
.y1fb{bottom:847.619661px;}
.y218{bottom:847.979661px;}
.ye2{bottom:848.879660px;}
.y18b{bottom:850.679660px;}
.y138{bottom:850.859660px;}
.y94{bottom:856.979657px;}
.y2a{bottom:857.879657px;}
.y1b7{bottom:860.399656px;}
.y1b5{bottom:864.720000px;}
.y50{bottom:865.979654px;}
.y217{bottom:867.239653px;}
.y1b4{bottom:867.779653px;}
.y18a{bottom:870.119652px;}
.y8{bottom:870.479652px;}
.ye1{bottom:871.559651px;}
.y28a{bottom:874.259650px;}
.y93{bottom:876.419649px;}
.y29{bottom:877.319649px;}
.y137{bottom:878.219649px;}
.y4f{bottom:885.419646px;}
.y189{bottom:889.559644px;}
.ye0{bottom:890.819644px;}
.y289{bottom:893.519643px;}
.y7{bottom:894.419642px;}
.y216{bottom:895.679642px;}
.y1b3{bottom:898.199641px;}
.y4e{bottom:904.859638px;}
.y28{bottom:905.759638px;}
.y136{bottom:910.079636px;}
.y288{bottom:912.959635px;}
.y215{bottom:915.299634px;}
.ydf{bottom:921.959631px;}
.y78{bottom:924.119630px;}
.y4d{bottom:924.299630px;}
.y181{bottom:924.839630px;}
.y183{bottom:929.159628px;}
.y1b2{bottom:929.339628px;}
.y287{bottom:932.579627px;}
.y187{bottom:936.540000px;}
.y185{bottom:936.899625px;}
.y180{bottom:937.979625px;}
.y17d{bottom:938.160000px;}
.y186{bottom:942.299623px;}
.y77{bottom:943.559623px;}
.y4c{bottom:943.739623px;}
.y17f{bottom:948.779620px;}
.y182{bottom:953.099619px;}
.y284{bottom:959.579616px;}
.y184{bottom:960.839616px;}
.y27{bottom:962.999615px;}
.y2{bottom:990.179604px;}
.y5{bottom:1018.800000px;}
.y4{bottom:1022.759591px;}
.y1{bottom:1025.279590px;}
.h1a{height:10.980000px;}
.h4f{height:14.580000px;}
.h47{height:16.380000px;}
.h27{height:17.640000px;}
.h6{height:18.900000px;}
.h22{height:19.080000px;}
.h1c{height:19.260000px;}
.h30{height:20.160000px;}
.h24{height:22.320000px;}
.h2b{height:24.247399px;}
.h29{height:25.339624px;}
.h48{height:27.180000px;}
.h39{height:27.226841px;}
.h40{height:27.410752px;}
.h46{height:27.840675px;}
.h4a{height:28.260000px;}
.h32{height:28.681091px;}
.hb{height:29.929834px;}
.h2c{height:30.060000px;}
.h2e{height:31.680000px;}
.h26{height:32.402680px;}
.h4{height:32.603567px;}
.h1f{height:34.585885px;}
.h37{height:34.815932px;}
.h1b{height:34.853739px;}
.h16{height:36.080276px;}
.h53{height:36.082286px;}
.h3b{height:36.234760px;}
.h42{height:36.479518px;}
.h19{height:39.354075px;}
.h1{height:39.992704px;}
.hd{height:39.994714px;}
.h2{height:41.571883px;}
.h3e{height:44.971765px;}
.h4b{height:45.335401px;}
.hc{height:46.004936px;}
.h54{height:46.007499px;}
.h21{height:46.686409px;}
.h15{height:46.724936px;}
.h13{height:46.813776px;}
.h10{height:46.815447px;}
.h3a{height:46.997520px;}
.h1e{height:47.048468px;}
.h41{height:47.314896px;}
.h49{height:48.058248px;}
.h4c{height:48.807031px;}
.h33{height:49.508966px;}
.h9{height:50.860727px;}
.h12{height:50.862402px;}
.h3{height:50.993562px;}
.he{height:50.996125px;}
.h45{height:51.092277px;}
.h11{height:55.429178px;}
.h28{height:55.932206px;}
.h7{height:57.816154px;}
.h2a{height:58.211571px;}
.h20{height:59.699574px;}
.h5{height:59.862444px;}
.hf{height:59.864580px;}
.h38{height:60.097404px;}
.h1d{height:60.162552px;}
.h3f{height:60.503244px;}
.h23{height:62.132468px;}
.h3c{height:62.546510px;}
.h43{height:62.968889px;}
.ha{height:63.114066px;}
.h31{height:63.308879px;}
.h8{height:64.851070px;}
.h14{height:65.600264px;}
.h34{height:65.888860px;}
.h52{height:66.322274px;}
.h3d{height:75.025249px;}
.h4e{height:75.524924px;}
.h25{height:75.843660px;}
.h17{height:76.244924px;}
.h18{height:76.964924px;}
.h36{height:98.630437px;}
.h2d{height:102.477974px;}
.h50{height:105.044912px;}
.h35{height:105.059556px;}
.h51{height:105.764912px;}
.h44{height:111.937383px;}
.h4d{height:112.657383px;}
.h2f{height:114.042259px;}
.h0{height:1093.500000px;}
.w1{width:0.180000px;}
.w23{width:4.140000px;}
.w21{width:4.320000px;}
.w22{width:4.680000px;}
.wc{width:4.860000px;}
.we{width:5.220000px;}
.wb{width:5.580000px;}
.w20{width:5.760000px;}
.wf{width:6.480000px;}
.w13{width:7.020000px;}
.w12{width:7.560000px;}
.w18{width:8.280000px;}
.w2{width:16.740000px;}
.w1e{width:33.660000px;}
.w6{width:56.160000px;}
.w3{width:57.060000px;}
.w1b{width:63.360000px;}
.w8{width:63.900000px;}
.w5{width:64.800000px;}
.w7{width:70.020000px;}
.w4{width:71.100000px;}
.wd{width:84.420000px;}
.wa{width:130.500000px;}
.w1d{width:141.480000px;}
.w9{width:148.680000px;}
.w1f{width:153.360000px;}
.w14{width:186.840000px;}
.w10{width:189.720000px;}
.w1c{width:209.520000px;}
.w15{width:243.900000px;}
.w11{width:245.520000px;}
.w16{width:289.260000px;}
.w19{width:291.600000px;}
.w17{width:349.020000px;}
.w1a{width:351.540000px;}
.w0{width:774.000000px;}
.x0{left:0.000000px;}
.x14{left:110.879956px;}
.x30{left:113.040000px;}
.x1d{left:115.379954px;}
.x24{left:116.819953px;}
.x23{left:117.899953px;}
.x26{left:124.019953px;}
.x32{left:125.280000px;}
.x22{left:127.979949px;}
.x1c{left:131.219948px;}
.x63{left:132.839947px;}
.x31{left:138.599945px;}
.x67{left:142.380000px;}
.x25{left:143.459943px;}
.x1{left:145.259942px;}
.x21{left:146.699941px;}
.x78{left:147.959941px;}
.x77{left:153.359939px;}
.x18{left:154.439938px;}
.x2{left:156.419937px;}
.x3{left:202.499919px;}
.x79{left:206.280000px;}
.x4{left:208.079917px;}
.x54{left:215.819967px;}
.x4d{left:216.899940px;}
.x4e{left:218.699913px;}
.x7a{left:220.319912px;}
.x6c{left:224.459504px;}
.x7b{left:227.519909px;}
.x55{left:228.779908px;}
.x4f{left:230.039908px;}
.x1b{left:231.479906px;}
.x64{left:233.640000px;}
.x68{left:235.080000px;}
.x15{left:237.419905px;}
.x39{left:239.760016px;}
.x3d{left:242.279903px;}
.x3b{left:249.659900px;}
.x3c{left:252.899899px;}
.x65{left:257.219897px;}
.x33{left:261.719895px;}
.x43{left:263.340000px;}
.x53{left:267.120000px;}
.x4c{left:268.200000px;}
.x19{left:272.159470px;}
.x1a{left:273.419891px;}
.x3a{left:275.579890px;}
.x29{left:277.560000px;}
.x5{left:281.339887px;}
.x2a{left:283.860000px;}
.x6{left:289.799884px;}
.x28{left:291.600000px;}
.x44{left:293.039883px;}
.x1f{left:295.739882px;}
.x3f{left:305.100000px;}
.x47{left:307.080000px;}
.x58{left:308.159892px;}
.x62{left:310.139869px;}
.x20{left:311.399875px;}
.x46{left:314.280000px;}
.x5b{left:317.159873px;}
.x41{left:319.140000px;}
.x48{left:321.120000px;}
.x6d{left:322.199522px;}
.x6e{left:329.039966px;}
.x5a{left:332.099867px;}
.x5c{left:334.259865px;}
.x60{left:335.339866px;}
.x59{left:340.739826px;}
.x2c{left:343.079863px;}
.x61{left:345.060000px;}
.x2b{left:348.479861px;}
.x27{left:350.639860px;}
.x50{left:353.519859px;}
.x7{left:356.399857px;}
.x42{left:358.199857px;}
.x8{left:360.359856px;}
.x9{left:363.239855px;}
.x4b{left:365.039861px;}
.x5e{left:370.799759px;}
.x49{left:372.599851px;}
.xa{left:374.399850px;}
.x3e{left:406.620000px;}
.x6f{left:417.599933px;}
.x69{left:418.680000px;}
.xb{left:420.839832px;}
.xc{left:426.419829px;}
.x6a{left:439.739824px;}
.x4a{left:449.819820px;}
.x52{left:451.439819px;}
.x5f{left:462.780000px;}
.x5d{left:474.479810px;}
.xd{left:483.299807px;}
.xe{left:491.759803px;}
.x70{left:495.539770px;}
.x40{left:499.500000px;}
.x71{left:506.339773px;}
.x38{left:508.319797px;}
.x66{left:510.119874px;}
.x37{left:516.779793px;}
.x1e{left:518.579439px;}
.x56{left:520.919792px;}
.x2e{left:527.220000px;}
.x2f{left:533.340000px;}
.x2d{left:541.080000px;}
.x72{left:550.799711px;}
.x35{left:556.199778px;}
.x51{left:557.280000px;}
.x57{left:558.540000px;}
.xf{left:561.239776px;}
.x6b{left:570.779772px;}
.x36{left:578.340000px;}
.x73{left:584.459632px;}
.x10{left:586.799765px;}
.x11{left:589.499764px;}
.x74{left:595.259634px;}
.x12{left:596.699761px;}
.x13{left:599.579760px;}
.x75{left:629.999687px;}
.x34{left:634.500000px;}
.x76{left:640.799689px;}
.x45{left:642.959743px;}
.x16{left:645.839742px;}
.x17{left:662.580000px;}
@media print{
.v7{vertical-align:-30.719988pt;}
.v6{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119992pt;}
.v2{vertical-align:26.239990pt;}
.v3{vertical-align:27.519989pt;}
.v4{vertical-align:40.319984pt;}
.v5{vertical-align:46.719981pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.197544pt;}
.lsa{letter-spacing:0.362080pt;}
.lsc{letter-spacing:0.464927pt;}
.lsb{letter-spacing:0.640779pt;}
.ls1{letter-spacing:49.868016pt;}
.ls3{letter-spacing:49.877557pt;}
.ls7{letter-spacing:75.959884pt;}
.ls4{letter-spacing:212.622368pt;}
.ls6{letter-spacing:299.790921pt;}
.ls5{letter-spacing:465.976214pt;}
.ls9{letter-spacing:581.591276pt;}
.ls8{letter-spacing:742.492970pt;}
.ws2e{word-spacing:-35.052786pt;}
.ws7{word-spacing:-16.193060pt;}
.ws4{word-spacing:-16.192527pt;}
.ws22{word-spacing:-15.005594pt;}
.ws6{word-spacing:-14.947461pt;}
.ws2{word-spacing:-14.946927pt;}
.ws16{word-spacing:-14.906261pt;}
.ws5{word-spacing:-12.733115pt;}
.ws1{word-spacing:-12.732475pt;}
.ws0{word-spacing:-10.379996pt;}
.ws18{word-spacing:-9.157436pt;}
.ws13{word-spacing:-0.040780pt;}
.ws3{word-spacing:0.000000pt;}
.ws20{word-spacing:3.525774pt;}
.ws26{word-spacing:4.166093pt;}
.ws32{word-spacing:14.274979pt;}
.wsd{word-spacing:23.448524pt;}
.wsa{word-spacing:24.729047pt;}
.ws24{word-spacing:31.600340pt;}
.ws1e{word-spacing:32.240659pt;}
.ws19{word-spacing:33.280458pt;}
.ws1b{word-spacing:33.920787pt;}
.wsc{word-spacing:34.763650pt;}
.ws9{word-spacing:36.044354pt;}
.ws31{word-spacing:42.424375pt;}
.ws17{word-spacing:43.940756pt;}
.ws28{word-spacing:44.703634pt;}
.wsb{word-spacing:45.609403pt;}
.ws8{word-spacing:46.889723pt;}
.ws11{word-spacing:63.135765pt;}
.ws10{word-spacing:66.697765pt;}
.ws14{word-spacing:70.158119pt;}
.ws2b{word-spacing:75.699604pt;}
.ws1a{word-spacing:80.740147pt;}
.ws1c{word-spacing:81.385396pt;}
.ws12{word-spacing:87.147918pt;}
.ws15{word-spacing:87.270999pt;}
.wse{word-spacing:88.072156pt;}
.ws2c{word-spacing:93.048826pt;}
.ws29{word-spacing:102.535816pt;}
.ws30{word-spacing:146.959506pt;}
.ws1f{word-spacing:151.324557pt;}
.ws25{word-spacing:155.166219pt;}
.ws21{word-spacing:197.285147pt;}
.ws27{word-spacing:198.565424pt;}
.ws2a{word-spacing:213.977540pt;}
.ws2f{word-spacing:216.720159pt;}
.ws33{word-spacing:218.340253pt;}
.ws2d{word-spacing:281.483751pt;}
.ws1d{word-spacing:347.876014pt;}
.ws23{word-spacing:354.608476pt;}
.wsf{word-spacing:383.657934pt;}
._3d{margin-left:-348.088921pt;}
._1b{margin-left:-7.990106pt;}
._4d{margin-left:-6.928411pt;}
._51{margin-left:-5.038620pt;}
._45{margin-left:-3.731370pt;}
._48{margin-left:-2.186541pt;}
._0{margin-left:-1.176886pt;}
._1{width:1.115602pt;}
._5{width:2.074655pt;}
._12{width:3.043572pt;}
._13{width:4.038651pt;}
._11{width:5.414391pt;}
._4{width:6.313885pt;}
._1a{width:7.367894pt;}
._7{width:8.272485pt;}
._10{width:9.292970pt;}
._f{width:10.538757pt;}
._c{width:11.480097pt;}
._d{width:12.879407pt;}
._e{width:13.912181pt;}
._6{width:16.336483pt;}
._8{width:17.739189pt;}
._9{width:19.090700pt;}
._30{width:20.063423pt;}
._16{width:21.024968pt;}
._15{width:22.096480pt;}
._17{width:23.675922pt;}
._1e{width:24.744665pt;}
._18{width:26.122114pt;}
._1f{width:27.015413pt;}
._19{width:28.051688pt;}
._14{width:29.159242pt;}
._20{width:30.146746pt;}
._b{width:31.053937pt;}
._a{width:32.723914pt;}
._1d{width:37.433909pt;}
._1c{width:38.339782pt;}
._80{width:39.482173pt;}
._7f{width:40.372956pt;}
._76{width:41.882852pt;}
._75{width:43.311504pt;}
._33{width:44.873482pt;}
._77{width:47.004979pt;}
._81{width:47.982288pt;}
._7c{width:49.613153pt;}
._7a{width:50.505122pt;}
._7b{width:51.401935pt;}
._2{width:54.607512pt;}
._34{width:56.417586pt;}
._31{width:57.513456pt;}
._32{width:58.787609pt;}
._52{width:59.962297pt;}
._3{width:61.003137pt;}
._7d{width:63.076244pt;}
._7e{width:64.068787pt;}
._6b{width:72.641750pt;}
._70{width:77.136606pt;}
._47{width:78.317114pt;}
._38{width:81.883668pt;}
._5d{width:83.066167pt;}
._37{width:84.445159pt;}
._36{width:86.726414pt;}
._55{width:94.211121pt;}
._35{width:99.269174pt;}
._59{width:103.453967pt;}
._74{width:106.494369pt;}
._3c{width:109.096430pt;}
._3e{width:112.121937pt;}
._3b{width:117.987486pt;}
._28{width:120.615507pt;}
._4c{width:122.676641pt;}
._39{width:124.693926pt;}
._6c{width:126.263950pt;}
._69{width:128.327366pt;}
._78{width:130.857076pt;}
._26{width:132.175244pt;}
._25{width:133.456260pt;}
._2f{width:135.211544pt;}
._5e{width:137.176580pt;}
._6d{width:143.250981pt;}
._71{width:146.814826pt;}
._21{width:148.802418pt;}
._24{width:151.660207pt;}
._23{width:155.789430pt;}
._22{width:156.716220pt;}
._79{width:162.482295pt;}
._44{width:164.643947pt;}
._73{width:166.224732pt;}
._2a{width:167.315499pt;}
._29{width:168.518244pt;}
._6a{width:173.000958pt;}
._68{width:176.723234pt;}
._2d{width:178.122728pt;}
._2c{width:179.403666pt;}
._72{width:182.384805pt;}
._64{width:188.759849pt;}
._66{width:193.458246pt;}
._67{width:195.554520pt;}
._40{width:198.657700pt;}
._3a{width:203.222302pt;}
._2e{width:205.016078pt;}
._6f{width:205.961579pt;}
._6e{width:209.934503pt;}
._56{width:212.812286pt;}
._5c{width:213.933432pt;}
._49{width:214.922149pt;}
._2b{width:215.901407pt;}
._53{width:222.768761pt;}
._4a{width:227.751416pt;}
._4e{width:228.723612pt;}
._46{width:230.904608pt;}
._63{width:242.292263pt;}
._4f{width:266.869133pt;}
._58{width:268.638547pt;}
._60{width:273.121018pt;}
._4b{width:277.114264pt;}
._57{width:318.583766pt;}
._5f{width:323.066237pt;}
._61{width:324.167716pt;}
._3f{width:325.147817pt;}
._54{width:363.640019pt;}
._5b{width:368.122190pt;}
._43{width:388.145464pt;}
._42{width:399.670935pt;}
._41{width:411.196406pt;}
._65{width:484.806739pt;}
._62{width:531.551254pt;}
._50{width:602.747133pt;}
._5a{width:608.806960pt;}
._27{width:649.707059pt;}
.fs6{font-size:29.892468pt;}
.fs11{font-size:32.362227pt;}
.fse{font-size:34.542706pt;}
.fs18{font-size:34.772466pt;}
.fsc{font-size:34.810226pt;}
.fs1c{font-size:35.007346pt;}
.fs1e{font-size:35.052786pt;}
.fs16{font-size:36.629745pt;}
.fs5{font-size:39.304944pt;}
.fs1{font-size:41.519983pt;}
.fs7{font-size:45.947502pt;}
.fs1f{font-size:45.950062pt;}
.fs0{font-size:50.929900pt;}
.fs8{font-size:50.932460pt;}
.fsa{font-size:55.359978pt;}
.fs12{font-size:55.862378pt;}
.fsf{font-size:59.625043pt;}
.fs2{font-size:59.787709pt;}
.fs9{font-size:59.789843pt;}
.fs19{font-size:60.022376pt;}
.fsd{font-size:60.087443pt;}
.fs1b{font-size:60.427709pt;}
.fs1d{font-size:60.507709pt;}
.fs15{font-size:63.229841pt;}
.fs4{font-size:64.770107pt;}
.fsb{font-size:64.772241pt;}
.fs10{font-size:72.782904pt;}
.fs3{font-size:73.627704pt;}
.fs1a{font-size:90.032497pt;}
.fs17{font-size:94.650095pt;}
.fs13{font-size:98.342361pt;}
.fs14{font-size:109.439956pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:2.079718pt;}
.y10f{bottom:2.079733pt;}
.y1b6{bottom:2.719691pt;}
.y1be{bottom:2.719724pt;}
.y1c3{bottom:2.719737pt;}
.y1f0{bottom:2.719870pt;}
.y117{bottom:3.199740pt;}
.y129{bottom:3.359838pt;}
.y6{bottom:3.519636pt;}
.y188{bottom:3.519666pt;}
.y286{bottom:3.519705pt;}
.y114{bottom:3.519740pt;}
.y28d{bottom:3.519746pt;}
.y1a3{bottom:3.519788pt;}
.y14f{bottom:3.519821pt;}
.y14d{bottom:3.519825pt;}
.y15b{bottom:3.519847pt;}
.y16c{bottom:3.519921pt;}
.y17a{bottom:3.519947pt;}
.y17e{bottom:3.679665pt;}
.y10a{bottom:3.679716pt;}
.y111{bottom:3.679731pt;}
.y166{bottom:3.679921pt;}
.y173{bottom:3.679947pt;}
.y149{bottom:3.839821pt;}
.y156{bottom:3.839847pt;}
.y126{bottom:3.999838pt;}
.y19b{bottom:4.479794pt;}
.y145{bottom:5.439822pt;}
.y152{bottom:5.439848pt;}
.y147{bottom:6.079822pt;}
.y154{bottom:6.079848pt;}
.y19d{bottom:7.679782pt;}
.y1a0{bottom:7.679792pt;}
.y3{bottom:59.999976pt;}
.y271{bottom:86.719965pt;}
.y92{bottom:87.039965pt;}
.y76{bottom:90.559964pt;}
.yab{bottom:91.679963pt;}
.y26{bottom:92.319963pt;}
.y4b{bottom:92.479963pt;}
.y4a{bottom:96.479961pt;}
.y1fa{bottom:96.639961pt;}
.y208{bottom:100.479960pt;}
.y270{bottom:104.159958pt;}
.y91{bottom:104.319958pt;}
.y251{bottom:104.479958pt;}
.y105{bottom:105.759958pt;}
.y49{bottom:106.399957pt;}
.y75{bottom:107.679957pt;}
.yaa{bottom:108.799956pt;}
.ybd{bottom:109.599956pt;}
.y214{bottom:110.719956pt;}
.y236{bottom:113.279955pt;}
.y1f9{bottom:113.759954pt;}
.yde{bottom:114.079954pt;}
.y25{bottom:117.599953pt;}
.y207{bottom:117.759953pt;}
.y171{bottom:118.559953pt;}
.y104{bottom:119.039952pt;}
.y26f{bottom:121.279951pt;}
.y90{bottom:121.599951pt;}
.y103{bottom:123.039951pt;}
.y283{bottom:123.519951pt;}
.y74{bottom:124.959950pt;}
.y48{bottom:125.759950pt;}
.ya9{bottom:126.079950pt;}
.y17c{bottom:127.840000pt;}
.y213{bottom:127.999949pt;}
.y175{bottom:129.119948pt;}
.y172{bottom:129.280000pt;}
.y178{bottom:129.439948pt;}
.y179{bottom:129.440000pt;}
.y235{bottom:130.399948pt;}
.y16f{bottom:131.039948pt;}
.y17b{bottom:131.359947pt;}
.y102{bottom:132.799947pt;}
.y177{bottom:132.959947pt;}
.y24{bottom:134.879946pt;}
.y8f{bottom:138.719945pt;}
.ydd{bottom:139.359944pt;}
.y176{bottom:139.679944pt;}
.y73{bottom:142.079943pt;}
.y47{bottom:143.039943pt;}
.y170{bottom:143.839942pt;}
.y212{bottom:145.119942pt;}
.y26e{bottom:146.559941pt;}
.y250{bottom:147.039941pt;}
.y174{bottom:148.319941pt;}
.y282{bottom:148.799940pt;}
.ya8{bottom:151.359939pt;}
.y23{bottom:152.159939pt;}
.ybc{bottom:152.319939pt;}
.y234{bottom:155.679938pt;}
.ydc{bottom:156.639937pt;}
.y1b1{bottom:159.359936pt;}
.y72{bottom:159.519936pt;}
.y46{bottom:160.319936pt;}
.y26d{bottom:163.839934pt;}
.y8e{bottom:163.999934pt;}
.y24f{bottom:164.319934pt;}
.y1f8{bottom:165.599934pt;}
.ya7{bottom:168.639933pt;}
.ybb{bottom:169.439932pt;}
.y211{bottom:170.559932pt;}
.y233{bottom:172.959931pt;}
.ydb{bottom:173.919930pt;}
.y281{bottom:174.079930pt;}
.y101{bottom:174.719930pt;}
.y71{bottom:176.799929pt;}
.y22{bottom:177.439929pt;}
.y45{bottom:177.599929pt;}
.y26c{bottom:180.959928pt;}
.y8d{bottom:181.279927pt;}
.y1f7{bottom:182.879927pt;}
.y164{bottom:183.839926pt;}
.y1b0{bottom:184.639926pt;}
.ya6{bottom:185.919926pt;}
.yba{bottom:186.719925pt;}
.y135{bottom:186.879925pt;}
.y210{bottom:187.839925pt;}
.y24e{bottom:189.599924pt;}
.y232{bottom:190.239924pt;}
.yda{bottom:191.199924pt;}
.y100{bottom:191.839923pt;}
.y16e{bottom:193.120000pt;}
.y70{bottom:193.919922pt;}
.y168{bottom:194.399922pt;}
.y165{bottom:194.560000pt;}
.y21{bottom:194.719922pt;}
.y16b{bottom:194.880000pt;}
.y1de{bottom:195.679922pt;}
.y163{bottom:196.319921pt;}
.y16d{bottom:196.639921pt;}
.y16a{bottom:198.239921pt;}
.y8c{bottom:198.719921pt;}
.y280{bottom:199.519920pt;}
.y1f6{bottom:199.999920pt;}
.y1af{bottom:201.919919pt;}
.ya5{bottom:203.039919pt;}
.yb9{bottom:203.999918pt;}
.y169{bottom:204.959918pt;}
.y26b{bottom:206.399917pt;}
.y24d{bottom:206.719917pt;}
.y231{bottom:207.519917pt;}
.yd9{bottom:208.479917pt;}
.yff{bottom:209.119916pt;}
.y6f{bottom:211.199916pt;}
.y20{bottom:211.839915pt;}
.y44{bottom:211.999915pt;}
.y1dd{bottom:212.799915pt;}
.y167{bottom:213.599915pt;}
.y8b{bottom:215.839914pt;}
.y27f{bottom:216.639913pt;}
.y162{bottom:216.799913pt;}
.y1f5{bottom:217.279913pt;}
.y1ae{bottom:219.039912pt;}
.ya4{bottom:220.319912pt;}
.yb8{bottom:221.119912pt;}
.y134{bottom:221.279911pt;}
.y26a{bottom:223.679911pt;}
.yd8{bottom:225.599910pt;}
.yfe{bottom:226.239910pt;}
.y6e{bottom:228.319909pt;}
.y1f{bottom:229.279908pt;}
.y1dc{bottom:230.239908pt;}
.y24c{bottom:232.159907pt;}
.y230{bottom:232.799907pt;}
.y8a{bottom:233.119907pt;}
.y27e{bottom:233.919906pt;}
.y1f4{bottom:234.559906pt;}
.y1ad{bottom:236.319905pt;}
.ya3{bottom:237.439905pt;}
.yb7{bottom:238.399905pt;}
.y161{bottom:242.079903pt;}
.yd7{bottom:242.879903pt;}
.yfd{bottom:243.519903pt;}
.y1e{bottom:246.559901pt;}
.y1db{bottom:247.359901pt;}
.y20f{bottom:247.679901pt;}
.y269{bottom:248.959900pt;}
.y24b{bottom:249.439900pt;}
.y22f{bottom:249.919900pt;}
.y89{bottom:250.239900pt;}
.y1f3{bottom:251.839899pt;}
.y6d{bottom:253.759898pt;}
.y43{bottom:254.559898pt;}
.ya2{bottom:254.879898pt;}
.yb6{bottom:255.679898pt;}
.y133{bottom:255.839898pt;}
.y27d{bottom:259.199896pt;}
.y160{bottom:259.359896pt;}
.yd6{bottom:259.999896pt;}
.yfb{bottom:260.959896pt;}
.y1da{bottom:264.639894pt;}
.y20e{bottom:264.959894pt;}
.yfc{bottom:266.079894pt;}
.y24a{bottom:266.559893pt;}
.y22e{bottom:267.199893pt;}
.y88{bottom:267.519893pt;}
.y1ac{bottom:270.879892pt;}
.y6c{bottom:271.039892pt;}
.y1d{bottom:271.679891pt;}
.y42{bottom:271.839891pt;}
.yb5{bottom:272.959891pt;}
.y27c{bottom:276.319889pt;}
.y15f{bottom:276.479889pt;}
.y1f2{bottom:277.119889pt;}
.yd5{bottom:277.439889pt;}
.yfa{bottom:278.079889pt;}
.ya1{bottom:280.159888pt;}
.y206{bottom:280.959888pt;}
.y1d9{bottom:281.759887pt;}
.y268{bottom:283.519887pt;}
.y249{bottom:283.839886pt;}
.y22d{bottom:284.639886pt;}
.y87{bottom:284.799886pt;}
.y6b{bottom:288.159885pt;}
.y1c{bottom:288.959884pt;}
.y41{bottom:289.119884pt;}
.y20d{bottom:290.079884pt;}
.y132{bottom:290.239884pt;}
.yd4{bottom:294.559882pt;}
.yf9{bottom:295.359882pt;}
.ya0{bottom:297.439881pt;}
.yb4{bottom:298.239881pt;}
.y1d8{bottom:299.039880pt;}
.y1f1{bottom:301.439879pt;}
.y27b{bottom:301.759879pt;}
.y15e{bottom:301.919879pt;}
.y86{bottom:302.079879pt;}
.y1ab{bottom:305.279878pt;}
.y6a{bottom:305.439878pt;}
.y1b{bottom:306.239878pt;}
.y20c{bottom:307.359877pt;}
.y131{bottom:307.519877pt;}
.y267{bottom:308.799876pt;}
.y248{bottom:309.119876pt;}
.y22c{bottom:309.759876pt;}
.yd3{bottom:311.839875pt;}
.y9f{bottom:314.559874pt;}
.yb3{bottom:315.359874pt;}
.y1d7{bottom:316.319873pt;}
.y27a{bottom:319.039872pt;}
.y15d{bottom:319.199872pt;}
.y85{bottom:319.359872pt;}
.yf8{bottom:320.639872pt;}
.y69{bottom:322.559871pt;}
.y1ef{bottom:323.040000pt;}
.y1a{bottom:323.519871pt;}
.y130{bottom:324.639870pt;}
.y1ee{bottom:325.759870pt;}
.y266{bottom:325.919870pt;}
.y247{bottom:326.399869pt;}
.y22b{bottom:327.039869pt;}
.yd2{bottom:329.119868pt;}
.y9e{bottom:331.839867pt;}
.yb2{bottom:332.799867pt;}
.y1d6{bottom:333.599867pt;}
.y15c{bottom:336.319865pt;}
.y84{bottom:336.479865pt;}
.yf7{bottom:337.919865pt;}
.y68{bottom:339.999864pt;}
.y19{bottom:340.799864pt;}
.y20b{bottom:341.919863pt;}
.y265{bottom:343.199863pt;}
.y246{bottom:343.679863pt;}
.y279{bottom:344.319862pt;}
.y1ed{bottom:346.079862pt;}
.yd1{bottom:346.239862pt;}
.y1aa{bottom:347.839861pt;}
.y9d{bottom:349.119860pt;}
.yb1{bottom:349.919860pt;}
.y12f{bottom:350.079860pt;}
.y1d5{bottom:350.879860pt;}
.y22a{bottom:352.319859pt;}
.y83{bottom:353.759858pt;}
.yf6{bottom:355.199858pt;}
.y67{bottom:357.279857pt;}
.y18{bottom:357.919857pt;}
.y40{bottom:358.079857pt;}
.y20a{bottom:359.199856pt;}
.y278{bottom:361.439855pt;}
.yd0{bottom:363.519855pt;}
.y1ec{bottom:366.079854pt;}
.y9c{bottom:366.399853pt;}
.y205{bottom:367.199853pt;}
.y12e{bottom:367.359853pt;}
.y1d4{bottom:367.999853pt;}
.y264{bottom:368.639853pt;}
.y245{bottom:368.959852pt;}
.y229{bottom:369.599852pt;}
.y159{bottom:371.679851pt;}
.yf5{bottom:372.319851pt;}
.y153{bottom:373.760000pt;}
.y66{bottom:374.399850pt;}
.y3f{bottom:375.199850pt;}
.y151{bottom:375.200000pt;}
.y209{bottom:376.319849pt;}
.y15a{bottom:378.240000pt;}
.y157{bottom:378.399849pt;}
.y155{bottom:378.560000pt;}
.y82{bottom:379.039848pt;}
.ycf{bottom:380.799848pt;}
.y158{bottom:382.399847pt;}
.y17{bottom:383.199847pt;}
.y9b{bottom:383.519847pt;}
.y12d{bottom:384.479846pt;}
.y1d3{bottom:385.279846pt;}
.y263{bottom:385.759846pt;}
.y244{bottom:386.079846pt;}
.y1eb{bottom:386.399845pt;}
.y228{bottom:386.879845pt;}
.yf4{bottom:389.599844pt;}
.y65{bottom:391.679843pt;}
.y3e{bottom:392.479843pt;}
.yce{bottom:398.079841pt;}
.y1a9{bottom:398.719841pt;}
.y16{bottom:400.479840pt;}
.y9a{bottom:400.799840pt;}
.y125{bottom:400.960000pt;}
.y12a{bottom:401.119840pt;}
.y204{bottom:401.599839pt;}
.y150{bottom:401.759839pt;}
.y127{bottom:402.239839pt;}
.y1d2{bottom:402.399839pt;}
.y128{bottom:402.400000pt;}
.y12c{bottom:403.199839pt;}
.y243{bottom:403.519839pt;}
.y227{bottom:404.159838pt;}
.y12b{bottom:405.759838pt;}
.y124{bottom:406.399837pt;}
.y1ea{bottom:406.559837pt;}
.yf3{bottom:406.879837pt;}
.y64{bottom:408.799836pt;}
.y3d{bottom:409.759836pt;}
.y262{bottom:411.039836pt;}
.y277{bottom:412.159835pt;}
.ycd{bottom:415.199834pt;}
.y1a8{bottom:415.999834pt;}
.y15{bottom:417.759833pt;}
.y99{bottom:418.079833pt;}
.y203{bottom:418.879832pt;}
.y226{bottom:421.279831pt;}
.yf2{bottom:423.999830pt;}
.y63{bottom:426.079830pt;}
.y1e9{bottom:426.719829pt;}
.y3c{bottom:427.039829pt;}
.y1d1{bottom:427.839829pt;}
.y261{bottom:428.319829pt;}
.y242{bottom:428.799828pt;}
.y81{bottom:429.919828pt;}
.y123{bottom:432.319827pt;}
.y1a7{bottom:433.279827pt;}
.y14c{bottom:433.600000pt;}
.y14{bottom:435.039826pt;}
.y202{bottom:436.159826pt;}
.y276{bottom:437.439825pt;}
.y146{bottom:439.200000pt;}
.ycc{bottom:440.479824pt;}
.y144{bottom:440.640000pt;}
.yf1{bottom:441.439823pt;}
.y62{bottom:443.359823pt;}
.y14e{bottom:443.680000pt;}
.y14a{bottom:443.839822pt;}
.y148{bottom:444.000000pt;}
.yb0{bottom:444.319822pt;}
.y1d0{bottom:445.119822pt;}
.y260{bottom:445.599822pt;}
.y241{bottom:445.919822pt;}
.y225{bottom:446.559821pt;}
.y1e8{bottom:446.879821pt;}
.y80{bottom:447.199821pt;}
.y14b{bottom:447.839821pt;}
.y122{bottom:449.599820pt;}
.y1a6{bottom:450.559820pt;}
.y13{bottom:452.159819pt;}
.y3b{bottom:452.319819pt;}
.y201{bottom:453.439819pt;}
.y275{bottom:454.719818pt;}
.ycb{bottom:458.399817pt;}
.yf0{bottom:458.559817pt;}
.y61{bottom:460.639816pt;}
.yaf{bottom:461.439815pt;}
.y1cf{bottom:462.239815pt;}
.y25f{bottom:462.879815pt;}
.y240{bottom:463.199815pt;}
.y224{bottom:463.999814pt;}
.y7f{bottom:464.319814pt;}
.y121{bottom:466.879813pt;}
.y143{bottom:467.039813pt;}
.y1e7{bottom:467.199813pt;}
.y1a5{bottom:467.839813pt;}
.y12{bottom:469.439812pt;}
.y3a{bottom:469.599812pt;}
.yca{bottom:471.679811pt;}
.y60{bottom:477.919809pt;}
.yae{bottom:478.719809pt;}
.y1ce{bottom:479.519808pt;}
.y25e{bottom:479.999808pt;}
.y223{bottom:481.119808pt;}
.y7e{bottom:481.759807pt;}
.yef{bottom:483.839806pt;}
.y120{bottom:483.999806pt;}
.y1e5{bottom:484.639806pt;}
.y1a4{bottom:484.959806pt;}
.y11{bottom:486.719805pt;}
.yc9{bottom:487.999805pt;}
.y23f{bottom:488.639805pt;}
.y1e4{bottom:491.199804pt;}
.y142{bottom:492.479803pt;}
.y5f{bottom:495.039802pt;}
.yad{bottom:495.839802pt;}
.y1cd{bottom:496.799801pt;}
.y274{bottom:497.279801pt;}
.y1e6{bottom:497.919801pt;}
.y7d{bottom:498.879800pt;}
.y11f{bottom:501.279799pt;}
.y39{bottom:503.999798pt;}
.y25d{bottom:505.279798pt;}
.y23e{bottom:505.759798pt;}
.yc8{bottom:505.919798pt;}
.y222{bottom:506.399797pt;}
.y19a{bottom:510.240000pt;}
.y10{bottom:512.159795pt;}
.y5e{bottom:512.319795pt;}
.y19f{bottom:512.320000pt;}
.y200{bottom:513.119795pt;}
.y1cc{bottom:514.079794pt;}
.y273{bottom:514.559794pt;}
.y7c{bottom:516.159794pt;}
.y141{bottom:517.759793pt;}
.y197{bottom:519.999792pt;}
.y1e3{bottom:521.119792pt;}
.y38{bottom:521.279791pt;}
.y25c{bottom:522.559791pt;}
.yc7{bottom:523.679791pt;}
.y11e{bottom:526.559789pt;}
.y1a2{bottom:526.880000pt;}
.yf{bottom:529.279788pt;}
.y5d{bottom:529.599788pt;}
.y1ff{bottom:530.559788pt;}
.y23d{bottom:531.039788pt;}
.y1cb{bottom:531.359787pt;}
.y1a1{bottom:531.839787pt;}
.y7b{bottom:533.439787pt;}
.yee{bottom:535.359786pt;}
.y297{bottom:535.999786pt;}
.y19c{bottom:536.800000pt;}
.y199{bottom:537.439785pt;}
.y37{bottom:538.559785pt;}
.y198{bottom:539.199784pt;}
.y25b{bottom:539.839784pt;}
.y221{bottom:540.799784pt;}
.yc6{bottom:541.599783pt;}
.y140{bottom:542.239783pt;}
.y19e{bottom:542.719783pt;}
.y11d{bottom:543.839782pt;}
.ye{bottom:546.559781pt;}
.y98{bottom:546.879781pt;}
.y1fe{bottom:547.679781pt;}
.y23c{bottom:548.319781pt;}
.yed{bottom:548.479781pt;}
.y196{bottom:550.399780pt;}
.y1e2{bottom:552.319779pt;}
.y5c{bottom:554.879778pt;}
.y36{bottom:555.679778pt;}
.y1ca{bottom:556.639777pt;}
.y25a{bottom:557.119777pt;}
.y296{bottom:559.359776pt;}
.yc5{bottom:559.519776pt;}
.y11c{bottom:561.119776pt;}
.y97{bottom:563.999774pt;}
.y1fd{bottom:564.959774pt;}
.yec{bottom:566.079774pt;}
.y220{bottom:566.239774pt;}
.y1e1{bottom:569.599772pt;}
.yd{bottom:570.559772pt;}
.y7a{bottom:571.359771pt;}
.y295{bottom:571.999771pt;}
.y5b{bottom:572.159771pt;}
.y35{bottom:572.959771pt;}
.y23b{bottom:573.599771pt;}
.y195{bottom:575.679770pt;}
.yc4{bottom:577.439769pt;}
.y11b{bottom:578.399769pt;}
.y1c9{bottom:580.959768pt;}
.y1fc{bottom:582.079767pt;}
.y259{bottom:582.399767pt;}
.yeb{bottom:583.039767pt;}
.y21f{bottom:583.519767pt;}
.y294{bottom:584.639766pt;}
.y1e0{bottom:586.719765pt;}
.y5a{bottom:589.279764pt;}
.y34{bottom:590.239764pt;}
.y23a{bottom:590.879764pt;}
.y194{bottom:592.959763pt;}
.y79{bottom:593.119763pt;}
.y13f{bottom:594.879762pt;}
.yc3{bottom:595.199762pt;}
.y11a{bottom:595.519762pt;}
.yea{bottom:596.319761pt;}
.y258{bottom:599.519760pt;}
.y1c8{bottom:602.239759pt;}
.y59{bottom:606.559757pt;}
.y33{bottom:607.519757pt;}
.y239{bottom:608.159757pt;}
.y21e{bottom:608.799756pt;}
.y193{bottom:610.239756pt;}
.y293{bottom:611.999755pt;}
.y119{bottom:612.799755pt;}
.yc2{bottom:613.119755pt;}
.ye9{bottom:613.439755pt;}
.y13e{bottom:615.039754pt;}
.y1c7{bottom:615.359754pt;}
.y272{bottom:616.799753pt;}
.yc{bottom:621.119752pt;}
.y58{bottom:623.839750pt;}
.y32{bottom:624.799750pt;}
.y257{bottom:624.959750pt;}
.y21d{bottom:625.919750pt;}
.y192{bottom:627.359749pt;}
.y1c6{bottom:629.119748pt;}
.y118{bottom:630.079748pt;}
.y28c{bottom:630.400000pt;}
.yc1{bottom:631.039748pt;}
.ye8{bottom:633.439747pt;}
.y13d{bottom:635.199746pt;}
.yb{bottom:635.679746pt;}
.y1c5{bottom:635.839746pt;}
.y292{bottom:638.239745pt;}
.y57{bottom:641.119744pt;}
.y31{bottom:641.919743pt;}
.y256{bottom:642.239743pt;}
.y191{bottom:644.639742pt;}
.y112{bottom:646.879741pt;}
.y113{bottom:647.200000pt;}
.y116{bottom:647.520000pt;}
.yc0{bottom:650.079740pt;}
.y238{bottom:650.559740pt;}
.y115{bottom:650.719740pt;}
.y21c{bottom:651.359739pt;}
.ye7{bottom:653.599739pt;}
.y1c2{bottom:653.600000pt;}
.y13c{bottom:655.519738pt;}
.y1c1{bottom:656.319737pt;}
.y56{bottom:658.399737pt;}
.y30{bottom:659.199736pt;}
.y255{bottom:659.519736pt;}
.y1c4{bottom:662.879735pt;}
.y291{bottom:663.519735pt;}
.y1df{bottom:663.839734pt;}
.y10e{bottom:665.600000pt;}
.ybf{bottom:667.839733pt;}
.y110{bottom:667.840000pt;}
.y237{bottom:668.159733pt;}
.y21b{bottom:668.639733pt;}
.y1c0{bottom:669.599732pt;}
.y190{bottom:670.079732pt;}
.y10c{bottom:671.679731pt;}
.ye6{bottom:673.919730pt;}
.y55{bottom:675.519730pt;}
.y2f{bottom:676.319729pt;}
.y254{bottom:676.639729pt;}
.y10d{bottom:676.959729pt;}
.y290{bottom:680.799728pt;}
.y1bf{bottom:683.359727pt;}
.yac{bottom:684.319726pt;}
.ya{bottom:685.599726pt;}
.y18f{bottom:687.199725pt;}
.y1bd{bottom:687.360000pt;}
.y10b{bottom:689.119724pt;}
.y1bc{bottom:690.079724pt;}
.y54{bottom:692.799723pt;}
.y2e{bottom:693.599723pt;}
.y21a{bottom:693.919722pt;}
.ye5{bottom:694.079722pt;}
.y13b{bottom:695.679722pt;}
.y28f{bottom:697.919721pt;}
.y107{bottom:703.680000pt;}
.ybe{bottom:704.159718pt;}
.y18e{bottom:704.479718pt;}
.y109{bottom:705.920000pt;}
.y106{bottom:709.759716pt;}
.y53{bottom:710.079716pt;}
.y1bb{bottom:710.559716pt;}
.y2d{bottom:711.039716pt;}
.ye4{bottom:714.239714pt;}
.y28e{bottom:715.199714pt;}
.y13a{bottom:715.999714pt;}
.y253{bottom:719.199712pt;}
.y18d{bottom:721.599711pt;}
.y1ba{bottom:723.839710pt;}
.y96{bottom:727.359709pt;}
.y2c{bottom:728.159709pt;}
.y219{bottom:728.479709pt;}
.y285{bottom:733.600000pt;}
.ye3{bottom:734.559706pt;}
.y52{bottom:735.359706pt;}
.y139{bottom:736.159706pt;}
.y252{bottom:736.479705pt;}
.y1b9{bottom:737.759705pt;}
.y9{bottom:738.719705pt;}
.y18c{bottom:738.879704pt;}
.y95{bottom:744.479702pt;}
.y2b{bottom:745.439702pt;}
.y1b8{bottom:751.039700pt;}
.y28b{bottom:751.839699pt;}
.y51{bottom:752.639699pt;}
.y1fb{bottom:753.439699pt;}
.y218{bottom:753.759698pt;}
.ye2{bottom:754.559698pt;}
.y18b{bottom:756.159698pt;}
.y138{bottom:756.319697pt;}
.y94{bottom:761.759695pt;}
.y2a{bottom:762.559695pt;}
.y1b7{bottom:764.799694pt;}
.y1b5{bottom:768.640000pt;}
.y50{bottom:769.759692pt;}
.y217{bottom:770.879692pt;}
.y1b4{bottom:771.359691pt;}
.y18a{bottom:773.439691pt;}
.y8{bottom:773.759690pt;}
.ye1{bottom:774.719690pt;}
.y28a{bottom:777.119689pt;}
.y93{bottom:779.039688pt;}
.y29{bottom:779.839688pt;}
.y137{bottom:780.639688pt;}
.y4f{bottom:787.039685pt;}
.y189{bottom:790.719684pt;}
.ye0{bottom:791.839683pt;}
.y289{bottom:794.239682pt;}
.y7{bottom:795.039682pt;}
.y216{bottom:796.159682pt;}
.y1b3{bottom:798.399681pt;}
.y4e{bottom:804.319678pt;}
.y28{bottom:805.119678pt;}
.y136{bottom:808.959676pt;}
.y288{bottom:811.519675pt;}
.y215{bottom:813.599675pt;}
.ydf{bottom:819.519672pt;}
.y78{bottom:821.439671pt;}
.y4d{bottom:821.599671pt;}
.y181{bottom:822.079671pt;}
.y183{bottom:825.919670pt;}
.y1b2{bottom:826.079670pt;}
.y287{bottom:828.959668pt;}
.y187{bottom:832.480000pt;}
.y185{bottom:832.799667pt;}
.y180{bottom:833.759666pt;}
.y17d{bottom:833.920000pt;}
.y186{bottom:837.599665pt;}
.y77{bottom:838.719665pt;}
.y4c{bottom:838.879664pt;}
.y17f{bottom:843.359663pt;}
.y182{bottom:847.199661pt;}
.y284{bottom:852.959659pt;}
.y184{bottom:854.079658pt;}
.y27{bottom:855.999658pt;}
.y2{bottom:880.159648pt;}
.y5{bottom:905.600000pt;}
.y4{bottom:909.119636pt;}
.y1{bottom:911.359635pt;}
.h1a{height:9.760000pt;}
.h4f{height:12.960000pt;}
.h47{height:14.560000pt;}
.h27{height:15.680000pt;}
.h6{height:16.800000pt;}
.h22{height:16.960000pt;}
.h1c{height:17.120000pt;}
.h30{height:17.920000pt;}
.h24{height:19.840000pt;}
.h2b{height:21.553243pt;}
.h29{height:22.524110pt;}
.h48{height:24.160000pt;}
.h39{height:24.201636pt;}
.h40{height:24.365113pt;}
.h46{height:24.747267pt;}
.h4a{height:25.120000pt;}
.h32{height:25.494303pt;}
.hb{height:26.604297pt;}
.h2c{height:26.720000pt;}
.h2e{height:28.160000pt;}
.h26{height:28.802382pt;}
.h4{height:28.980948pt;}
.h1f{height:30.743009pt;}
.h37{height:30.947495pt;}
.h1b{height:30.981101pt;}
.h16{height:32.071356pt;}
.h53{height:32.073143pt;}
.h3b{height:32.208676pt;}
.h42{height:32.426238pt;}
.h19{height:34.981400pt;}
.h1{height:35.549070pt;}
.hd{height:35.550857pt;}
.h2{height:36.952785pt;}
.h3e{height:39.974902pt;}
.h4b{height:40.298134pt;}
.hc{height:40.893276pt;}
.h54{height:40.895555pt;}
.h21{height:41.499030pt;}
.h15{height:41.533276pt;}
.h13{height:41.612246pt;}
.h10{height:41.613731pt;}
.h3a{height:41.775574pt;}
.h1e{height:41.820860pt;}
.h41{height:42.057686pt;}
.h49{height:42.718443pt;}
.h4c{height:43.384027pt;}
.h33{height:44.007970pt;}
.h9{height:45.209535pt;}
.h12{height:45.211024pt;}
.h3{height:45.327611pt;}
.he{height:45.329889pt;}
.h45{height:45.415358pt;}
.h11{height:49.270380pt;}
.h28{height:49.717516pt;}
.h7{height:51.392137pt;}
.h2a{height:51.743618pt;}
.h20{height:53.066288pt;}
.h5{height:53.211061pt;}
.hf{height:53.212960pt;}
.h38{height:53.419915pt;}
.h1d{height:53.477824pt;}
.h3f{height:53.780661pt;}
.h23{height:55.228860pt;}
.h3c{height:55.596898pt;}
.h43{height:55.972346pt;}
.ha{height:56.101392pt;}
.h31{height:56.274559pt;}
.h8{height:57.645396pt;}
.h14{height:58.311346pt;}
.h34{height:58.567876pt;}
.h52{height:58.953132pt;}
.h3d{height:66.689111pt;}
.h4e{height:67.133266pt;}
.h25{height:67.416587pt;}
.h17{height:67.773266pt;}
.h18{height:68.413265pt;}
.h36{height:87.671500pt;}
.h2d{height:91.091532pt;}
.h50{height:93.373255pt;}
.h35{height:93.386272pt;}
.h51{height:94.013255pt;}
.h44{height:99.499896pt;}
.h4d{height:100.139896pt;}
.h2f{height:101.370897pt;}
.h0{height:972.000000pt;}
.w1{width:0.160000pt;}
.w23{width:3.680000pt;}
.w21{width:3.840000pt;}
.w22{width:4.160000pt;}
.wc{width:4.320000pt;}
.we{width:4.640000pt;}
.wb{width:4.960000pt;}
.w20{width:5.120000pt;}
.wf{width:5.760000pt;}
.w13{width:6.240000pt;}
.w12{width:6.720000pt;}
.w18{width:7.360000pt;}
.w2{width:14.880000pt;}
.w1e{width:29.920000pt;}
.w6{width:49.920000pt;}
.w3{width:50.720000pt;}
.w1b{width:56.320000pt;}
.w8{width:56.800000pt;}
.w5{width:57.600000pt;}
.w7{width:62.240000pt;}
.w4{width:63.200000pt;}
.wd{width:75.040000pt;}
.wa{width:116.000000pt;}
.w1d{width:125.760000pt;}
.w9{width:132.160000pt;}
.w1f{width:136.320000pt;}
.w14{width:166.080000pt;}
.w10{width:168.640000pt;}
.w1c{width:186.240000pt;}
.w15{width:216.800000pt;}
.w11{width:218.240000pt;}
.w16{width:257.120000pt;}
.w19{width:259.200000pt;}
.w17{width:310.240000pt;}
.w1a{width:312.480000pt;}
.w0{width:688.000000pt;}
.x0{left:0.000000pt;}
.x14{left:98.559961pt;}
.x30{left:100.480000pt;}
.x1d{left:102.559959pt;}
.x24{left:103.839958pt;}
.x23{left:104.799958pt;}
.x26{left:110.239959pt;}
.x32{left:111.360000pt;}
.x22{left:113.759954pt;}
.x1c{left:116.639953pt;}
.x63{left:118.079953pt;}
.x31{left:123.199951pt;}
.x67{left:126.560000pt;}
.x25{left:127.519949pt;}
.x1{left:129.119948pt;}
.x21{left:130.399948pt;}
.x78{left:131.519947pt;}
.x77{left:136.319945pt;}
.x18{left:137.279945pt;}
.x2{left:139.039944pt;}
.x3{left:179.999928pt;}
.x79{left:183.360000pt;}
.x4{left:184.959926pt;}
.x54{left:191.839971pt;}
.x4d{left:192.799947pt;}
.x4e{left:194.399922pt;}
.x7a{left:195.839922pt;}
.x6c{left:199.519559pt;}
.x7b{left:202.239919pt;}
.x55{left:203.359919pt;}
.x4f{left:204.479918pt;}
.x1b{left:205.759916pt;}
.x64{left:207.680000pt;}
.x68{left:208.960000pt;}
.x15{left:211.039916pt;}
.x39{left:213.120014pt;}
.x3d{left:215.359914pt;}
.x3b{left:221.919911pt;}
.x3c{left:224.799910pt;}
.x65{left:228.639909pt;}
.x33{left:232.639907pt;}
.x43{left:234.080000pt;}
.x53{left:237.440000pt;}
.x4c{left:238.400000pt;}
.x19{left:241.919529pt;}
.x1a{left:243.039903pt;}
.x3a{left:244.959902pt;}
.x29{left:246.720000pt;}
.x5{left:250.079900pt;}
.x2a{left:252.320000pt;}
.x6{left:257.599897pt;}
.x28{left:259.200000pt;}
.x44{left:260.479896pt;}
.x1f{left:262.879895pt;}
.x3f{left:271.200000pt;}
.x47{left:272.960000pt;}
.x58{left:273.919904pt;}
.x62{left:275.679883pt;}
.x20{left:276.799889pt;}
.x46{left:279.360000pt;}
.x5b{left:281.919887pt;}
.x41{left:283.680000pt;}
.x48{left:285.440000pt;}
.x6d{left:286.399575pt;}
.x6e{left:292.479970pt;}
.x5a{left:295.199882pt;}
.x5c{left:297.119880pt;}
.x60{left:298.079881pt;}
.x59{left:302.879846pt;}
.x2c{left:304.959878pt;}
.x61{left:306.720000pt;}
.x2b{left:309.759876pt;}
.x27{left:311.679875pt;}
.x50{left:314.239874pt;}
.x7{left:316.799873pt;}
.x42{left:318.399873pt;}
.x8{left:320.319872pt;}
.x9{left:322.879871pt;}
.x4b{left:324.479876pt;}
.x5e{left:329.599786pt;}
.x49{left:331.199868pt;}
.xa{left:332.799867pt;}
.x3e{left:361.440000pt;}
.x6f{left:371.199941pt;}
.x69{left:372.160000pt;}
.xb{left:374.079850pt;}
.xc{left:379.039848pt;}
.x6a{left:390.879844pt;}
.x4a{left:399.839840pt;}
.x52{left:401.279839pt;}
.x5f{left:411.360000pt;}
.x5d{left:421.759831pt;}
.xd{left:429.599828pt;}
.xe{left:437.119825pt;}
.x70{left:440.479796pt;}
.x40{left:444.000000pt;}
.x71{left:450.079798pt;}
.x38{left:451.839819pt;}
.x66{left:453.439888pt;}
.x37{left:459.359816pt;}
.x1e{left:460.959501pt;}
.x56{left:463.039815pt;}
.x2e{left:468.640000pt;}
.x2f{left:474.080000pt;}
.x2d{left:480.960000pt;}
.x72{left:489.599743pt;}
.x35{left:494.399802pt;}
.x51{left:495.360000pt;}
.x57{left:496.480000pt;}
.xf{left:498.879800pt;}
.x6b{left:507.359797pt;}
.x36{left:514.080000pt;}
.x73{left:519.519673pt;}
.x10{left:521.599791pt;}
.x11{left:523.999790pt;}
.x74{left:529.119675pt;}
.x12{left:530.399788pt;}
.x13{left:532.959787pt;}
.x75{left:559.999722pt;}
.x34{left:564.000000pt;}
.x76{left:569.599724pt;}
.x45{left:571.519771pt;}
.x16{left:574.079770pt;}
.x17{left:588.960000pt;}
}




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