
    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_9603574b8f10075b1beef9f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_73bd107e690e12f98056924d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909668;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_913baabf58239a5dda60e0d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911621;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_2edd1cbd07b045dcf8d18178.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_2cd7ff94048672b000aa76da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_8c1a78ea319d02a7496cf2bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_0c400bc6107e54d85368ae28.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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_9e9cbb0ded37486f7fc32078.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.991211;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_016717cf5fa3c991831cc118.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884766;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_639fef8d9365a2967d8f3d87.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;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_482cf939a215a552f45d651d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.755859;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_47c34369acdff7f8e86e3768.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.585840;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_7f760785ff69cc5e0d1ce248.woff2')format("woff");}.fff{font-family:fff;line-height:0.706543;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_fbfad45a82f9162c04008a58.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.911621;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_200988130c9a3bba9df89a1d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712402;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_e89125e23ba57c08cdae59e6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.887971;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_a4375296115221eb1cefd62b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.908691;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_117b807a68e3ed4649561d60.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909668;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_c6d50d186367f09843166da1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.897461;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_5ace406311712e93c17fa8c2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.906250;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_446edbd8839c1e4c5d08c5f9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_6cc97e1849936ddd4c4485d5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.906738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_42b096827c6dcc1a70522a40.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.909668;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:ff1a;src:url('chunks/assets/font_61240687c1ffd815f2a5d564.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.984863;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:ff1b;src:url('chunks/assets/font_c2d7983a97fe7b6315bf8dcb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.984863;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:ff1c;src:url('chunks/assets/font_f5d2bef52f9b45e05c93e596.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.908691;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;}
.m8{transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-18.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440000px;}
.v6{vertical-align:28.799820px;}
.v2{vertical-align:30.240000px;}
.v5{vertical-align:33.119640px;}
.ls77{letter-spacing:-5.398272px;}
.ls72{letter-spacing:-4.682592px;}
.ls26{letter-spacing:-4.355208px;}
.ls1b{letter-spacing:-3.966912px;}
.ls6{letter-spacing:-3.960000px;}
.ls68{letter-spacing:-3.603960px;}
.ls67{letter-spacing:-3.598848px;}
.ls7{letter-spacing:-3.595500px;}
.ls44{letter-spacing:-3.316104px;}
.ls28{letter-spacing:-3.297996px;}
.ls76{letter-spacing:-3.251232px;}
.ls69{letter-spacing:-3.246120px;}
.ls70{letter-spacing:-3.241008px;}
.ls43{letter-spacing:-2.952072px;}
.ls5{letter-spacing:-2.946384px;}
.ls37{letter-spacing:-2.940696px;}
.ls2a{letter-spacing:-2.931552px;}
.ls74{letter-spacing:-2.893392px;}
.ls79{letter-spacing:-2.878056px;}
.ls2b{letter-spacing:-2.582352px;}
.ls32{letter-spacing:-2.576664px;}
.ls27{letter-spacing:-2.565108px;}
.ls71{letter-spacing:-2.530440px;}
.ls6b{letter-spacing:-2.525328px;}
.ls62{letter-spacing:-2.520216px;}
.ls11{letter-spacing:-2.519100px;}
.ls49{letter-spacing:-2.518488px;}
.ls58{letter-spacing:-2.513700px;}
.ls25{letter-spacing:-2.221632px;}
.ls3b{letter-spacing:-2.218320px;}
.ls31{letter-spacing:-2.212632px;}
.lsc{letter-spacing:-2.206944px;}
.ls78{letter-spacing:-2.172600px;}
.ls8{letter-spacing:-2.169000px;}
.ls22{letter-spacing:-2.167488px;}
.ls61{letter-spacing:-2.162376px;}
.ls4e{letter-spacing:-2.159388px;}
.ls66{letter-spacing:-2.157264px;}
.ls54{letter-spacing:-1.950984px;}
.ls2e{letter-spacing:-1.848600px;}
.ls2d{letter-spacing:-1.842912px;}
.ls34{letter-spacing:-1.837224px;}
.ls29{letter-spacing:-1.832220px;}
.ls6e{letter-spacing:-1.809648px;}
.ls23{letter-spacing:-1.804536px;}
.ls6c{letter-spacing:-1.799424px;}
.ls14{letter-spacing:-1.797120px;}
.ls39{letter-spacing:-1.672272px;}
.ls3a{letter-spacing:-1.638144px;}
.ls56{letter-spacing:-1.575576px;}
.ls3c{letter-spacing:-1.569888px;}
.ls3{letter-spacing:-1.478880px;}
.ls4{letter-spacing:-1.473192px;}
.ls1c{letter-spacing:-1.451808px;}
.ls20{letter-spacing:-1.446696px;}
.ls1e{letter-spacing:-1.441584px;}
.ls48{letter-spacing:-1.441188px;}
.ls16{letter-spacing:-1.435500px;}
.ls15{letter-spacing:-1.264896px;}
.ls55{letter-spacing:-1.177416px;}
.ls2f{letter-spacing:-1.114848px;}
.lse{letter-spacing:-1.109160px;}
.ls30{letter-spacing:-1.103472px;}
.ls75{letter-spacing:-1.088856px;}
.ls18{letter-spacing:-1.084500px;}
.ls1f{letter-spacing:-1.083744px;}
.ls19{letter-spacing:-1.080000px;}
.ls63{letter-spacing:-1.078632px;}
.ls65{letter-spacing:-1.073520px;}
.ls17{letter-spacing:-1.071000px;}
.ls5d{letter-spacing:-0.984024px;}
.ls5f{letter-spacing:-0.893016px;}
.ls5e{letter-spacing:-0.853200px;}
.ls4d{letter-spacing:-0.784944px;}
.ls9{letter-spacing:-0.745128px;}
.lsb{letter-spacing:-0.739440px;}
.ls38{letter-spacing:-0.733752px;}
.ls1d{letter-spacing:-0.731016px;}
.ls4c{letter-spacing:-0.727776px;}
.ls64{letter-spacing:-0.725904px;}
.ls73{letter-spacing:-0.720792px;}
.ls3d{letter-spacing:-0.392472px;}
.ls51{letter-spacing:-0.381096px;}
.ls3f{letter-spacing:-0.375516px;}
.ls33{letter-spacing:-0.375408px;}
.lsa{letter-spacing:-0.369720px;}
.ls12{letter-spacing:-0.359424px;}
.ls4b{letter-spacing:-0.359100px;}
.ls10{letter-spacing:-0.358020px;}
.ls6a{letter-spacing:-0.352728px;}
.ls46{letter-spacing:-0.230400px;}
.ls3e{letter-spacing:-0.093600px;}
.ls1{letter-spacing:-0.072000px;}
.ls45{letter-spacing:-0.043200px;}
.ls60{letter-spacing:-0.028800px;}
.ls2c{letter-spacing:-0.014400px;}
.ls40{letter-spacing:-0.013176px;}
.lsd{letter-spacing:-0.011376px;}
.ls21{letter-spacing:-0.010224px;}
.ls4a{letter-spacing:-0.009576px;}
.ls36{letter-spacing:-0.008424px;}
.ls42{letter-spacing:-0.006588px;}
.ls2{letter-spacing:-0.005688px;}
.ls47{letter-spacing:-0.004788px;}
.lsf{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.004788px;}
.ls5a{letter-spacing:0.009576px;}
.ls5b{letter-spacing:0.349524px;}
.ls5c{letter-spacing:0.359100px;}
.ls35{letter-spacing:0.392472px;}
.ls50{letter-spacing:0.398160px;}
.ls57{letter-spacing:0.727776px;}
.ls6d{letter-spacing:6.124176px;}
.ls41{letter-spacing:8.469432px;}
.ls1a{letter-spacing:9.499392px;}
.ls6f{letter-spacing:9.723024px;}
.ls24{letter-spacing:10.085976px;}
.ls53{letter-spacing:12.149568px;}
.ls4f{letter-spacing:12.242916px;}
.ls52{letter-spacing:14.077800px;}
.ls13{letter-spacing:20.857500px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-25.166700px;}
.ws18{word-spacing:-16.522704px;}
.ws17{word-spacing:-14.498712px;}
.ws12{word-spacing:-14.328072px;}
.ws1{word-spacing:-14.025960px;}
.ws16{word-spacing:-13.713768px;}
.ws7{word-spacing:-12.933360px;}
.ws21{word-spacing:-12.602016px;}
.ws2e{word-spacing:-12.223764px;}
.ws38{word-spacing:-12.212568px;}
.ws28{word-spacing:-11.883816px;}
.ws2f{word-spacing:-11.874240px;}
.ws22{word-spacing:-11.869452px;}
.ws36{word-spacing:-11.854728px;}
.ws6{word-spacing:-11.491776px;}
.ws37{word-spacing:-11.486664px;}
.ws3f{word-spacing:-11.154384px;}
.ws35{word-spacing:-10.770984px;}
.ws8{word-spacing:-10.765872px;}
.ws2{word-spacing:-10.441548px;}
.ws3e{word-spacing:-8.992008px;}
.ws5{word-spacing:-8.966448px;}
.ws9{word-spacing:-8.824140px;}
.ws42{word-spacing:-8.276328px;}
.ws11{word-spacing:-1.465776px;}
.ws15{word-spacing:-1.092096px;}
.ws40{word-spacing:-1.058184px;}
.ws1b{word-spacing:-0.728064px;}
.ws3a{word-spacing:-0.710568px;}
.ws3d{word-spacing:-0.700344px;}
.ws2d{word-spacing:-0.403848px;}
.wsc{word-spacing:-0.364500px;}
.ws1a{word-spacing:-0.364032px;}
.wsa{word-spacing:-0.358344px;}
.ws39{word-spacing:-0.357840px;}
.wsf{word-spacing:-0.347616px;}
.ws3b{word-spacing:-0.342504px;}
.ws3{word-spacing:-0.044280px;}
.ws4{word-spacing:-0.027000px;}
.ws1c{word-spacing:-0.006588px;}
.wsd{word-spacing:-0.004212px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.005688px;}
.ws41{word-spacing:0.010224px;}
.ws13{word-spacing:0.012636px;}
.ws20{word-spacing:0.014364px;}
.ws10{word-spacing:0.015336px;}
.ws19{word-spacing:0.016848px;}
.ws1f{word-spacing:0.355752px;}
.ws1e{word-spacing:0.590400px;}
.wsb{word-spacing:1.062000px;}
.ws3c{word-spacing:1.436472px;}
.ws30{word-spacing:148.246056px;}
.ws26{word-spacing:171.338580px;}
.ws25{word-spacing:200.526228px;}
.ws23{word-spacing:236.517624px;}
.ws31{word-spacing:241.559388px;}
.ws24{word-spacing:248.406228px;}
.ws33{word-spacing:253.438416px;}
.ws32{word-spacing:253.447992px;}
.ws34{word-spacing:316.438920px;}
.ws1d{word-spacing:353.890656px;}
.ws27{word-spacing:665.996436px;}
.ws2a{word-spacing:671.397300px;}
.ws29{word-spacing:675.356976px;}
.ws2c{word-spacing:685.799604px;}
.ws2b{word-spacing:695.519244px;}
._46{margin-left:-303.836904px;}
._10{margin-left:-25.920000px;}
._f{margin-left:-24.437700px;}
._12{margin-left:-22.599000px;}
._2a{margin-left:-16.813728px;}
._29{margin-left:-14.983056px;}
._16{margin-left:-12.774384px;}
._18{margin-left:-11.537784px;}
._19{margin-left:-10.423368px;}
._48{margin-left:-9.375408px;}
._1f{margin-left:-7.899480px;}
._49{margin-left:-6.139008px;}
._d{margin-left:-4.729212px;}
._c{margin-left:-2.575440px;}
._3{margin-left:-1.052280px;}
._2{width:1.092096px;}
._a{width:2.137500px;}
._9{width:3.321792px;}
._2b{width:4.419576px;}
._4a{width:5.738544px;}
._15{width:6.978276px;}
._6{width:8.071272px;}
._4{width:9.578592px;}
._b{width:10.629864px;}
._8{width:12.160944px;}
._17{width:13.255704px;}
._27{width:14.722236px;}
._5{width:15.892272px;}
._14{width:17.273088px;}
._1d{width:18.416160px;}
._7{width:19.509840px;}
._1e{width:20.607624px;}
._0{width:21.733848px;}
._1{width:23.155848px;}
._11{width:25.134300px;}
._13{width:26.154900px;}
._1b{width:27.962208px;}
._1a{width:29.782368px;}
._e{width:30.902904px;}
._37{width:34.588728px;}
._47{width:36.425952px;}
._1c{width:41.232312px;}
._23{width:129.635100px;}
._34{width:132.692472px;}
._3f{width:149.313780px;}
._33{width:181.106100px;}
._24{width:198.417780px;}
._38{width:204.763176px;}
._31{width:206.645292px;}
._2f{width:224.997696px;}
._35{width:234.707760px;}
._36{width:242.277588px;}
._32{width:248.396652px;}
._28{width:255.969612px;}
._39{width:265.307868px;}
._45{width:270.009684px;}
._21{width:271.110492px;}
._2d{width:272.868120px;}
._2c{width:275.410548px;}
._3b{width:277.589088px;}
._3e{width:282.228660px;}
._3d{width:289.832004px;}
._20{width:292.801140px;}
._3a{width:294.792372px;}
._2e{width:300.605004px;}
._30{width:303.817752px;}
._3c{width:307.064016px;}
._42{width:316.060668px;}
._44{width:320.786424px;}
._41{width:328.308372px;}
._22{width:344.611656px;}
._40{width:358.185492px;}
._43{width:384.462036px;}
._25{width:701.002080px;}
._26{width:710.309376px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:4.680000px;}
.fsc{font-size:27.000000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.120000px;}
.fsb{font-size:44.280000px;}
.fs6{font-size:45.000000px;}
.fsd{font-size:47.880000px;}
.fse{font-size:51.120000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsf{font-size:65.880000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.519850px;}
.y47{bottom:2.699850px;}
.y21d{bottom:3.239700px;}
.y4a{bottom:3.239850px;}
.y41{bottom:4.679850px;}
.y5e{bottom:66.167850px;}
.y60{bottom:73.817448px;}
.y5c{bottom:74.178000px;}
.y5b{bottom:76.697355px;}
.y5a{bottom:87.137850px;}
.y4{bottom:97.125005px;}
.y2b{bottom:116.387850px;}
.y159{bottom:117.016554px;}
.y241{bottom:117.465906px;}
.y193{bottom:117.737850px;}
.y204{bottom:118.453908px;}
.y1b3{bottom:120.167418px;}
.y1ec{bottom:120.616770px;}
.y17a{bottom:120.796527px;}
.y38{bottom:122.326554px;}
.yb3{bottom:124.030380px;}
.yd6{bottom:124.033206px;}
.y87{bottom:124.304826px;}
.y13a{bottom:125.924934px;}
.y111{bottom:125.925690px;}
.yfb{bottom:128.086446px;}
.y278{bottom:128.619012px;}
.y2a{bottom:131.597850px;}
.y240{bottom:136.635906px;}
.y158{bottom:137.086662px;}
.y203{bottom:138.524016px;}
.y20{bottom:139.264499px;}
.y1b2{bottom:140.237526px;}
.y1eb{bottom:140.686878px;}
.y179{bottom:141.316698px;}
.y37{bottom:142.396662px;}
.yb2{bottom:144.100488px;}
.yd5{bottom:144.103314px;}
.y1ad{bottom:144.106986px;}
.y86{bottom:144.374934px;}
.y139{bottom:145.995042px;}
.y110{bottom:145.995798px;}
.y277{bottom:147.789012px;}
.yfa{bottom:148.156554px;}
.y29{bottom:149.687850px;}
.y23f{bottom:151.306068px;}
.y157{bottom:157.156770px;}
.y202{bottom:158.594124px;}
.y1b1{bottom:160.307634px;}
.y1ea{bottom:160.756986px;}
.y178{bottom:161.747094px;}
.y276{bottom:162.459174px;}
.y36{bottom:162.466770px;}
.yb1{bottom:164.170596px;}
.yd4{bottom:164.173422px;}
.y1ac{bottom:164.177094px;}
.y85{bottom:164.445042px;}
.y23e{bottom:165.976230px;}
.y138{bottom:166.065150px;}
.y10f{bottom:166.065906px;}
.yf9{bottom:168.226662px;}
.y275{bottom:177.129336px;}
.y156{bottom:177.226878px;}
.y201{bottom:178.664232px;}
.y1b0{bottom:180.377742px;}
.y23d{bottom:180.646392px;}
.y1e9{bottom:180.827094px;}
.y177{bottom:182.267265px;}
.y35{bottom:182.536878px;}
.yb0{bottom:184.240704px;}
.yd3{bottom:184.243530px;}
.y28{bottom:184.247202px;}
.y84{bottom:184.515150px;}
.y137{bottom:186.135258px;}
.y10e{bottom:186.136014px;}
.yf8{bottom:188.296770px;}
.y23c{bottom:195.316554px;}
.y274{bottom:196.299336px;}
.y17{bottom:196.933500px;}
.y155{bottom:197.296986px;}
.y200{bottom:198.734340px;}
.y1af{bottom:200.447850px;}
.y1e8{bottom:200.897202px;}
.y34{bottom:202.606986px;}
.yaf{bottom:204.310812px;}
.yd2{bottom:204.313638px;}
.y27{bottom:204.317310px;}
.y83{bottom:204.585258px;}
.y136{bottom:206.205366px;}
.y10d{bottom:206.206122px;}
.y17b{bottom:208.187850px;}
.yf7{bottom:208.366878px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y23b{bottom:209.986716px;}
.y273{bottom:210.969498px;}
.y154{bottom:217.367094px;}
.y1ff{bottom:218.804448px;}
.y1e7{bottom:220.967310px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y33{bottom:222.677094px;}
.yae{bottom:224.380920px;}
.yd1{bottom:224.383746px;}
.y26{bottom:224.387418px;}
.y82{bottom:224.655366px;}
.y23a{bottom:224.656878px;}
.y272{bottom:225.639660px;}
.y135{bottom:226.275474px;}
.y10c{bottom:226.276230px;}
.yf6{bottom:228.436986px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y1ae{bottom:236.807850px;}
.y153{bottom:237.437202px;}
.y1fe{bottom:238.874556px;}
.y239{bottom:239.327040px;}
.y271{bottom:240.309822px;}
.y1e6{bottom:241.037418px;}
.y32{bottom:242.747202px;}
.yad{bottom:244.451028px;}
.yd0{bottom:244.453854px;}
.y25{bottom:244.457526px;}
.y81{bottom:244.725474px;}
.y134{bottom:246.345582px;}
.y10b{bottom:246.346338px;}
.yf5{bottom:248.507094px;}
.y175{bottom:252.557112px;}
.y152{bottom:257.507310px;}
.y238{bottom:258.497040px;}
.y1fd{bottom:258.944664px;}
.y270{bottom:259.479822px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1e5{bottom:261.107526px;}
.y31{bottom:262.817310px;}
.yac{bottom:264.521136px;}
.ycf{bottom:264.523962px;}
.y24{bottom:264.527634px;}
.y80{bottom:264.795582px;}
.y133{bottom:266.415690px;}
.y10a{bottom:266.416446px;}
.yf4{bottom:268.577202px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y174{bottom:273.077283px;}
.y237{bottom:273.167202px;}
.y26f{bottom:274.149984px;}
.y151{bottom:277.577418px;}
.y1fc{bottom:279.014772px;}
.y1e4{bottom:281.177634px;}
.y30{bottom:282.887418px;}
.yab{bottom:284.591244px;}
.yce{bottom:284.594070px;}
.y23{bottom:284.597742px;}
.y7f{bottom:284.865690px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y132{bottom:286.485798px;}
.y109{bottom:286.486554px;}
.y236{bottom:287.837364px;}
.yf3{bottom:288.647310px;}
.y26e{bottom:288.820146px;}
.y1bf{bottom:290.805816px;}
.y173{bottom:293.597454px;}
.y150{bottom:297.647526px;}
.y1fb{bottom:299.084880px;}
.y1e3{bottom:301.247742px;}
.y2f{bottom:302.957526px;}
.y26d{bottom:303.490308px;}
.yaa{bottom:304.661352px;}
.ycd{bottom:304.664178px;}
.y22{bottom:304.667850px;}
.y7e{bottom:304.935798px;}
.y131{bottom:306.555906px;}
.y108{bottom:306.556662px;}
.y235{bottom:307.007364px;}
.yf2{bottom:308.717418px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y1be{bottom:311.325987px;}
.y172{bottom:314.027850px;}
.y14f{bottom:317.717634px;}
.y26c{bottom:318.160470px;}
.y1fa{bottom:319.154988px;}
.y1e2{bottom:321.317850px;}
.y234{bottom:321.677526px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y2e{bottom:323.027634px;}
.ya9{bottom:324.731460px;}
.ycc{bottom:324.734286px;}
.y1ab{bottom:324.737094px;}
.y7d{bottom:325.005906px;}
.y130{bottom:326.626014px;}
.y107{bottom:326.626770px;}
.yf1{bottom:328.787526px;}
.y1bd{bottom:331.846158px;}
.y233{bottom:336.347688px;}
.y26b{bottom:337.330470px;}
.y14e{bottom:337.787742px;}
.y1f9{bottom:339.225096px;}
.y176{bottom:340.037850px;}
.y2d{bottom:343.097742px;}
.ya8{bottom:344.801568px;}
.ycb{bottom:344.804394px;}
.y1aa{bottom:344.807202px;}
.y7c{bottom:345.076014px;}
.y12f{bottom:346.696122px;}
.y106{bottom:346.696878px;}
.ye{bottom:348.133500px;}
.yf0{bottom:348.857634px;}
.y232{bottom:351.017850px;}
.y26a{bottom:352.000632px;}
.y1bc{bottom:352.276554px;}
.y1e1{bottom:357.677850px;}
.y14d{bottom:357.857850px;}
.y1f8{bottom:359.295204px;}
.y1bb{bottom:359.476509px;}
.y21{bottom:360.017850px;}
.y2c{bottom:363.167850px;}
.ya7{bottom:364.871676px;}
.yca{bottom:364.874502px;}
.y1a9{bottom:364.877310px;}
.y7b{bottom:365.146122px;}
.y12e{bottom:366.766230px;}
.y105{bottom:366.766986px;}
.yef{bottom:368.927742px;}
.y269{bottom:371.170632px;}
.y1f7{bottom:379.365312px;}
.y171{bottom:381.077094px;}
.ya6{bottom:384.941784px;}
.yc9{bottom:384.944610px;}
.y1a8{bottom:384.947418px;}
.y7a{bottom:385.216230px;}
.y268{bottom:385.840794px;}
.yd{bottom:386.785499px;}
.y12d{bottom:386.836338px;}
.y104{bottom:386.837094px;}
.y1ba{bottom:387.196635px;}
.yee{bottom:388.997850px;}
.y1e0{bottom:396.287850px;}
.y1f6{bottom:399.435420px;}
.y267{bottom:400.510956px;}
.y170{bottom:401.147202px;}
.ya5{bottom:405.011892px;}
.yc8{bottom:405.014718px;}
.y1a7{bottom:405.017526px;}
.y79{bottom:405.286338px;}
.y231{bottom:405.647850px;}
.y12c{bottom:406.906446px;}
.y103{bottom:406.907202px;}
.y1b9{bottom:407.716806px;}
.yc{bottom:408.044999px;}
.y14c{bottom:414.647850px;}
.y266{bottom:415.181118px;}
.y1f5{bottom:419.505528px;}
.y16f{bottom:421.217310px;}
.ya4{bottom:425.082000px;}
.yc7{bottom:425.084826px;}
.y1a6{bottom:425.087634px;}
.y78{bottom:425.356446px;}
.yed{bottom:425.358264px;}
.y12b{bottom:426.976554px;}
.y102{bottom:426.977310px;}
.y1b8{bottom:428.147202px;}
.y265{bottom:429.851280px;}
.y1f4{bottom:439.575636px;}
.y16e{bottom:441.287418px;}
.yec{bottom:443.537850px;}
.ya3{bottom:445.152108px;}
.yc6{bottom:445.154934px;}
.y1a5{bottom:445.157742px;}
.y77{bottom:445.426554px;}
.y12a{bottom:447.046662px;}
.y101{bottom:447.047418px;}
.y1b7{bottom:448.667373px;}
.y264{bottom:449.021280px;}
.y59{bottom:449.387850px;}
.y1f3{bottom:459.645744px;}
.y16d{bottom:461.357526px;}
.y263{bottom:463.691442px;}
.ya2{bottom:465.222216px;}
.yc5{bottom:465.225042px;}
.y1a4{bottom:465.227850px;}
.y76{bottom:465.496662px;}
.y129{bottom:467.116770px;}
.y100{bottom:467.117526px;}
.y1b6{bottom:469.187544px;}
.y262{bottom:478.361604px;}
.y1f2{bottom:479.715852px;}
.y1df{bottom:479.717310px;}
.y192{bottom:481.067850px;}
.y16c{bottom:481.427634px;}
.yeb{bottom:482.147850px;}
.ya1{bottom:485.292324px;}
.yc4{bottom:485.295150px;}
.y1a3{bottom:485.297094px;}
.y75{bottom:485.566770px;}
.y128{bottom:487.186878px;}
.yff{bottom:487.187634px;}
.y230{bottom:489.077202px;}
.y1b5{bottom:489.617940px;}
.y261{bottom:493.031766px;}
.y58{bottom:495.468210px;}
.y14b{bottom:496.636122px;}
.y1f1{bottom:499.785960px;}
.y1de{bottom:499.787418px;}
.y16b{bottom:501.497742px;}
.yb{bottom:502.864502px;}
.y1b4{bottom:504.017850px;}
.ya0{bottom:505.362432px;}
.yc3{bottom:505.365258px;}
.y1a2{bottom:505.367202px;}
.y74{bottom:505.636878px;}
.y127{bottom:507.256986px;}
.yfe{bottom:507.257742px;}
.y22f{bottom:509.147310px;}
.y57{bottom:510.768426px;}
.y260{bottom:512.201766px;}
.y14a{bottom:516.706230px;}
.y1f0{bottom:519.856068px;}
.y1dd{bottom:519.857526px;}
.ya{bottom:520.864502px;}
.y16a{bottom:521.567850px;}
.y9f{bottom:525.432540px;}
.yc2{bottom:525.435366px;}
.y1a1{bottom:525.437310px;}
.y73{bottom:525.706986px;}
.y56{bottom:526.068642px;}
.y25f{bottom:526.871928px;}
.y126{bottom:527.327094px;}
.yfd{bottom:527.327850px;}
.y22e{bottom:529.217418px;}
.y1c0{bottom:530.027850px;}
.y149{bottom:536.776338px;}
.y9{bottom:538.864499px;}
.y1ef{bottom:539.926176px;}
.y1dc{bottom:539.927634px;}
.y55{bottom:541.278120px;}
.y25e{bottom:541.542090px;}
.y9e{bottom:545.502648px;}
.yc1{bottom:545.505474px;}
.y1a0{bottom:545.507418px;}
.y72{bottom:545.777094px;}
.y125{bottom:547.397202px;}
.y22d{bottom:549.287526px;}
.y169{bottom:556.487850px;}
.y54{bottom:556.578336px;}
.y148{bottom:556.846446px;}
.y8{bottom:556.864499px;}
.y1ee{bottom:559.996284px;}
.y1db{bottom:559.997742px;}
.y25d{bottom:560.712090px;}
.yfc{bottom:563.687850px;}
.y9d{bottom:565.572756px;}
.yc0{bottom:565.575582px;}
.yea{bottom:565.577310px;}
.y19f{bottom:565.577526px;}
.y71{bottom:565.847202px;}
.y124{bottom:567.467310px;}
.y22c{bottom:569.357634px;}
.y53{bottom:571.878552px;}
.y1d8{bottom:574.933305px;}
.y25c{bottom:575.382252px;}
.y147{bottom:576.916554px;}
.y1ed{bottom:580.066392px;}
.y1da{bottom:580.067850px;}
.y9c{bottom:585.642864px;}
.ybf{bottom:585.645690px;}
.ye9{bottom:585.647418px;}
.y19e{bottom:585.647634px;}
.y70{bottom:585.917310px;}
.y52{bottom:587.088030px;}
.y123{bottom:587.537418px;}
.y22b{bottom:589.427742px;}
.y25b{bottom:590.052414px;}
.y1d7{bottom:595.453476px;}
.y146{bottom:596.986662px;}
.y51{bottom:602.388246px;}
.y25a{bottom:604.722576px;}
.y9b{bottom:605.712972px;}
.ybe{bottom:605.715798px;}
.ye8{bottom:605.717526px;}
.y19d{bottom:605.717742px;}
.y6f{bottom:605.987418px;}
.y122{bottom:607.607526px;}
.y22a{bottom:609.497850px;}
.y168{bottom:615.077202px;}
.y1d6{bottom:615.883872px;}
.y145{bottom:617.056770px;}
.y50{bottom:617.688462px;}
.y259{bottom:623.892576px;}
.y9a{bottom:625.783080px;}
.ybd{bottom:625.785906px;}
.y19c{bottom:625.787850px;}
.y6e{bottom:626.057526px;}
.y121{bottom:627.677634px;}
.y213{bottom:627.952062px;}
.y1d2{bottom:629.205285px;}
.y4f{bottom:632.897940px;}
.y167{bottom:635.147310px;}
.y1d5{bottom:636.404043px;}
.y144{bottom:637.126878px;}
.y258{bottom:638.562738px;}
.y212{bottom:641.991675px;}
.y1d1{bottom:643.605195px;}
.y7{bottom:645.510000px;}
.y99{bottom:645.853188px;}
.ybc{bottom:645.856014px;}
.y19b{bottom:645.857310px;}
.ye7{bottom:645.857742px;}
.y229{bottom:645.857850px;}
.y6d{bottom:646.127634px;}
.y120{bottom:647.747742px;}
.y4e{bottom:648.198156px;}
.y257{bottom:653.232900px;}
.y166{bottom:655.217418px;}
.y1d4{bottom:656.924214px;}
.y143{bottom:657.196986px;}
.y211{bottom:662.511846px;}
.y4d{bottom:663.498372px;}
.y98{bottom:665.923296px;}
.ybb{bottom:665.926122px;}
.y19a{bottom:665.927418px;}
.ye6{bottom:665.927850px;}
.y6c{bottom:666.197742px;}
.y6{bottom:666.771000px;}
.y11f{bottom:667.817850px;}
.y256{bottom:667.903062px;}
.y165{bottom:675.287526px;}
.y210{bottom:676.551459px;}
.y142{bottom:677.267094px;}
.y1d3{bottom:677.354610px;}
.y4c{bottom:678.707850px;}
.y97{bottom:685.993404px;}
.yba{bottom:685.996230px;}
.y199{bottom:685.997526px;}
.ye5{bottom:685.997742px;}
.y6b{bottom:686.267850px;}
.y255{bottom:687.073062px;}
.y164{bottom:695.357634px;}
.y20f{bottom:697.071630px;}
.y141{bottom:697.337202px;}
.y1d0{bottom:697.874781px;}
.y254{bottom:701.743224px;}
.y49{bottom:703.008000px;}
.y11e{bottom:704.177850px;}
.y96{bottom:706.063512px;}
.yb9{bottom:706.066338px;}
.y198{bottom:706.067634px;}
.ye4{bottom:706.067850px;}
.y4b{bottom:706.247850px;}
.y228{bottom:707.956554px;}
.y20e{bottom:711.111243px;}
.y163{bottom:715.427742px;}
.y253{bottom:716.413386px;}
.y140{bottom:717.407310px;}
.y1cf{bottom:718.394952px;}
.y95{bottom:726.133620px;}
.yb8{bottom:726.136446px;}
.ye3{bottom:726.137742px;}
.y5{bottom:726.298500px;}
.y227{bottom:728.026662px;}
.y20d{bottom:731.540442px;}
.y162{bottom:735.497850px;}
.y252{bottom:735.583386px;}
.y13f{bottom:737.477418px;}
.y1ce{bottom:738.825348px;}
.y6a{bottom:743.057850px;}
.y20c{bottom:745.580055px;}
.y94{bottom:746.203728px;}
.yb7{bottom:746.206554px;}
.ye2{bottom:746.207850px;}
.y226{bottom:748.096770px;}
.y251{bottom:750.253548px;}
.y3{bottom:752.599495px;}
.y48{bottom:756.377850px;}
.y13e{bottom:757.547526px;}
.y1cd{bottom:759.345519px;}
.y1ca{bottom:762.406248px;}
.y250{bottom:764.923710px;}
.y46{bottom:765.648000px;}
.y209{bottom:766.099029px;}
.y93{bottom:766.273836px;}
.y11d{bottom:766.275042px;}
.yb6{bottom:766.276662px;}
.y197{bottom:766.277526px;}
.ye1{bottom:766.277742px;}
.y225{bottom:768.166878px;}
.y161{bottom:770.327850px;}
.y45{bottom:773.027850px;}
.y206{bottom:773.118237px;}
.y20b{bottom:773.119434px;}
.y1c9{bottom:776.806158px;}
.y13d{bottom:777.617634px;}
.y1cc{bottom:779.865690px;}
.y208{bottom:780.138642px;}
.y44{bottom:780.407850px;}
.y24f{bottom:784.093710px;}
.y92{bottom:786.343944px;}
.y11c{bottom:786.345150px;}
.yb5{bottom:786.346770px;}
.y196{bottom:786.347634px;}
.ye0{bottom:786.347850px;}
.y205{bottom:787.157850px;}
.y20a{bottom:787.159047px;}
.y224{bottom:788.236986px;}
.y207{bottom:794.178255px;}
.y43{bottom:796.967850px;}
.y13c{bottom:797.687742px;}
.y24e{bottom:798.763872px;}
.y1cb{bottom:800.296086px;}
.ydf{bottom:806.412612px;}
.y91{bottom:806.414052px;}
.y11b{bottom:806.415258px;}
.yb4{bottom:806.416878px;}
.y195{bottom:806.417742px;}
.y160{bottom:807.497850px;}
.y223{bottom:808.307094px;}
.y191{bottom:808.307268px;}
.y24d{bottom:813.434034px;}
.y40{bottom:817.668000px;}
.y13b{bottom:817.757850px;}
.y214{bottom:820.097850px;}
.y1c8{bottom:820.816257px;}
.y42{bottom:822.347850px;}
.yde{bottom:826.482720px;}
.y90{bottom:826.484160px;}
.y11a{bottom:826.485366px;}
.y69{bottom:826.486986px;}
.y194{bottom:826.487850px;}
.y24c{bottom:828.104196px;}
.y222{bottom:828.377202px;}
.y190{bottom:828.377376px;}
.y18a{bottom:830.267310px;}
.y1c7{bottom:841.336428px;}
.y8f{bottom:846.554268px;}
.y119{bottom:846.555474px;}
.y68{bottom:846.557094px;}
.y24b{bottom:847.274196px;}
.y221{bottom:848.447310px;}
.y18f{bottom:848.447484px;}
.y189{bottom:850.337418px;}
.y3f{bottom:861.047850px;}
.y1c6{bottom:861.766824px;}
.y24a{bottom:861.944358px;}
.y28a{bottom:861.945450px;}
.y281{bottom:861.946728px;}
.y182{bottom:862.667850px;}
.ydd{bottom:866.622936px;}
.y8e{bottom:866.624376px;}
.y118{bottom:866.625582px;}
.y67{bottom:866.627202px;}
.y21b{bottom:867.886878px;}
.y220{bottom:868.517418px;}
.y18e{bottom:868.517592px;}
.y188{bottom:870.407526px;}
.y249{bottom:876.614520px;}
.y289{bottom:876.615612px;}
.y280{bottom:876.616890px;}
.y2{bottom:879.369000px;}
.y1c5{bottom:882.286995px;}
.ydc{bottom:886.693044px;}
.y8d{bottom:886.694484px;}
.y15f{bottom:886.695384px;}
.y117{bottom:886.695690px;}
.y66{bottom:886.697310px;}
.y21a{bottom:888.407049px;}
.y21f{bottom:888.587526px;}
.y18d{bottom:888.587700px;}
.y17f{bottom:889.667940px;}
.y187{bottom:890.477634px;}
.y248{bottom:891.284682px;}
.y288{bottom:891.285774px;}
.y27f{bottom:895.786890px;}
.y1c4{bottom:902.807166px;}
.y17e{bottom:904.067850px;}
.y287{bottom:905.955936px;}
.ydb{bottom:906.763152px;}
.y8c{bottom:906.764592px;}
.y15e{bottom:906.765492px;}
.y116{bottom:906.765798px;}
.y65{bottom:906.767418px;}
.y21e{bottom:908.657634px;}
.y219{bottom:908.837445px;}
.y247{bottom:910.454682px;}
.y27e{bottom:910.457052px;}
.y186{bottom:910.547742px;}
.y286{bottom:920.626098px;}
.y1c3{bottom:923.237562px;}
.y246{bottom:925.124844px;}
.y27d{bottom:925.127214px;}
.y3e{bottom:926.567850px;}
.yda{bottom:926.833260px;}
.y8b{bottom:926.834700px;}
.y15d{bottom:926.835600px;}
.y115{bottom:926.835906px;}
.y64{bottom:926.837526px;}
.y18c{bottom:928.727742px;}
.y181{bottom:928.907940px;}
.y218{bottom:929.357616px;}
.y185{bottom:930.617850px;}
.y3d{bottom:939.167850px;}
.y245{bottom:939.795006px;}
.y285{bottom:939.796098px;}
.y27c{bottom:939.797376px;}
.y180{bottom:943.307850px;}
.y1c2{bottom:943.757733px;}
.yd9{bottom:946.903368px;}
.y8a{bottom:946.904808px;}
.y15c{bottom:946.905708px;}
.y114{bottom:946.906014px;}
.y63{bottom:946.907634px;}
.y18b{bottom:948.797850px;}
.y216{bottom:949.877787px;}
.y284{bottom:954.466260px;}
.y215{bottom:957.077742px;}
.y244{bottom:958.965006px;}
.y27b{bottom:958.967376px;}
.y3c{bottom:963.287850px;}
.y217{bottom:964.277697px;}
.y1c1{bottom:964.277904px;}
.y1{bottom:966.726000px;}
.yd8{bottom:966.973476px;}
.y89{bottom:966.974916px;}
.y15b{bottom:966.975816px;}
.y113{bottom:966.976122px;}
.y62{bottom:966.977742px;}
.y184{bottom:966.978264px;}
.y17d{bottom:969.047790px;}
.y283{bottom:969.136422px;}
.y243{bottom:973.635168px;}
.y27a{bottom:973.637538px;}
.y17c{bottom:983.447700px;}
.y183{bottom:985.157850px;}
.y21c{bottom:986.958000px;}
.yd7{bottom:987.043584px;}
.y88{bottom:987.045024px;}
.y15a{bottom:987.045924px;}
.y112{bottom:987.046230px;}
.y61{bottom:987.047850px;}
.y242{bottom:988.305330px;}
.y282{bottom:988.306422px;}
.y279{bottom:988.307700px;}
.y1d9{bottom:990.197700px;}
.y3b{bottom:1000.637304px;}
.y3a{bottom:1013.237502px;}
.y39{bottom:1025.837700px;}
.y5f{bottom:1032.767700px;}
.h18{height:11.880000px;}
.h1f{height:12.240000px;}
.h13{height:12.780000px;}
.h14{height:14.670000px;}
.h12{height:18.720703px;}
.hf{height:21.150000px;}
.hc{height:29.163164px;}
.hb{height:31.311035px;}
.h7{height:32.130000px;}
.h15{height:33.244805px;}
.h17{height:33.478594px;}
.hd{height:33.852305px;}
.h1b{height:35.278770px;}
.h16{height:35.644219px;}
.h19{height:38.521758px;}
.ha{height:39.604922px;}
.h1a{height:45.710684px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:50.027344px;}
.h10{height:50.760000px;}
.h2{height:55.080000px;}
.he{height:59.761230px;}
.h1e{height:61.560214px;}
.h1d{height:62.278414px;}
.h11{height:62.995957px;}
.h1c{height:66.598234px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:12.420000px;}
.w9{width:18.720000px;}
.w7{width:41.760000px;}
.w8{width:44.730000px;}
.w4{width:45.360000px;}
.w5{width:57.780000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:39.870000px;}
.xf{left:52.380000px;}
.x5{left:89.280000px;}
.xd{left:92.880000px;}
.x10{left:96.840000px;}
.x7{left:99.810266px;}
.x1{left:102.045000px;}
.x6{left:104.310000px;}
.x2{left:106.297500px;}
.x25{left:108.540018px;}
.x47{left:117.360675px;}
.x2b{left:118.889601px;}
.x2d{left:120.060181px;}
.x29{left:121.229581px;}
.x16{left:122.850809px;}
.x46{left:125.819874px;}
.x4e{left:129.870198px;}
.x11{left:132.300000px;}
.x4d{left:136.259784px;}
.x48{left:149.580000px;}
.x2a{left:159.750000px;}
.x9{left:183.240000px;}
.x28{left:190.080000px;}
.x4f{left:200.790000px;}
.x4{left:203.484001px;}
.x50{left:206.730000px;}
.x23{left:219.330000px;}
.x24{left:225.360486px;}
.x40{left:249.300000px;}
.xa{left:252.180000px;}
.x2e{left:261.000000px;}
.x41{left:281.069577px;}
.x2c{left:301.320000px;}
.xc{left:305.730000px;}
.x42{left:348.749154px;}
.x2f{left:361.080000px;}
.x49{left:366.119694px;}
.x43{left:373.408551px;}
.xb{left:401.130000px;}
.x8{left:416.610000px;}
.x20{left:418.410000px;}
.x3f{left:421.020000px;}
.x22{left:422.459451px;}
.x51{left:426.960000px;}
.x17{left:431.640170px;}
.x37{left:434.790954px;}
.x1c{left:435.870018px;}
.x21{left:440.999784px;}
.x27{left:445.229966px;}
.x18{left:447.030851px;}
.x35{left:448.830567px;}
.x3c{left:450.809649px;}
.x1a{left:451.890000px;}
.x1e{left:453.149928px;}
.x3{left:454.959000px;}
.x19{left:456.570000px;}
.x1b{left:458.280324px;}
.x34{left:464.850018px;}
.x1f{left:466.109847px;}
.x4a{left:472.319928px;}
.x1d{left:489.510000px;}
.x39{left:514.259028px;}
.x3b{left:518.669973px;}
.x26{left:521.280000px;}
.x3d{left:529.650054px;}
.x3a{left:532.259514px;}
.x12{left:536.220000px;}
.x45{left:537.839244px;}
.x44{left:542.159217px;}
.x30{left:551.520000px;}
.x31{left:559.170027px;}
.x4b{left:595.979604px;}
.x4c{left:598.319739px;}
.x14{left:616.230000px;}
.x32{left:639.359451px;}
.x36{left:643.320324px;}
.x38{left:646.558650px;}
.x33{left:648.359694px;}
.x3e{left:649.529604px;}
.xe{left:651.960000px;}
.x15{left:699.480180px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-16.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280000pt;}
.v6{vertical-align:25.599840pt;}
.v2{vertical-align:26.880000pt;}
.v5{vertical-align:29.439680pt;}
.ls77{letter-spacing:-4.798464pt;}
.ls72{letter-spacing:-4.162304pt;}
.ls26{letter-spacing:-3.871296pt;}
.ls1b{letter-spacing:-3.526144pt;}
.ls6{letter-spacing:-3.520000pt;}
.ls68{letter-spacing:-3.203520pt;}
.ls67{letter-spacing:-3.198976pt;}
.ls7{letter-spacing:-3.196000pt;}
.ls44{letter-spacing:-2.947648pt;}
.ls28{letter-spacing:-2.931552pt;}
.ls76{letter-spacing:-2.889984pt;}
.ls69{letter-spacing:-2.885440pt;}
.ls70{letter-spacing:-2.880896pt;}
.ls43{letter-spacing:-2.624064pt;}
.ls5{letter-spacing:-2.619008pt;}
.ls37{letter-spacing:-2.613952pt;}
.ls2a{letter-spacing:-2.605824pt;}
.ls74{letter-spacing:-2.571904pt;}
.ls79{letter-spacing:-2.558272pt;}
.ls2b{letter-spacing:-2.295424pt;}
.ls32{letter-spacing:-2.290368pt;}
.ls27{letter-spacing:-2.280096pt;}
.ls71{letter-spacing:-2.249280pt;}
.ls6b{letter-spacing:-2.244736pt;}
.ls62{letter-spacing:-2.240192pt;}
.ls11{letter-spacing:-2.239200pt;}
.ls49{letter-spacing:-2.238656pt;}
.ls58{letter-spacing:-2.234400pt;}
.ls25{letter-spacing:-1.974784pt;}
.ls3b{letter-spacing:-1.971840pt;}
.ls31{letter-spacing:-1.966784pt;}
.lsc{letter-spacing:-1.961728pt;}
.ls78{letter-spacing:-1.931200pt;}
.ls8{letter-spacing:-1.928000pt;}
.ls22{letter-spacing:-1.926656pt;}
.ls61{letter-spacing:-1.922112pt;}
.ls4e{letter-spacing:-1.919456pt;}
.ls66{letter-spacing:-1.917568pt;}
.ls54{letter-spacing:-1.734208pt;}
.ls2e{letter-spacing:-1.643200pt;}
.ls2d{letter-spacing:-1.638144pt;}
.ls34{letter-spacing:-1.633088pt;}
.ls29{letter-spacing:-1.628640pt;}
.ls6e{letter-spacing:-1.608576pt;}
.ls23{letter-spacing:-1.604032pt;}
.ls6c{letter-spacing:-1.599488pt;}
.ls14{letter-spacing:-1.597440pt;}
.ls39{letter-spacing:-1.486464pt;}
.ls3a{letter-spacing:-1.456128pt;}
.ls56{letter-spacing:-1.400512pt;}
.ls3c{letter-spacing:-1.395456pt;}
.ls3{letter-spacing:-1.314560pt;}
.ls4{letter-spacing:-1.309504pt;}
.ls1c{letter-spacing:-1.290496pt;}
.ls20{letter-spacing:-1.285952pt;}
.ls1e{letter-spacing:-1.281408pt;}
.ls48{letter-spacing:-1.281056pt;}
.ls16{letter-spacing:-1.276000pt;}
.ls15{letter-spacing:-1.124352pt;}
.ls55{letter-spacing:-1.046592pt;}
.ls2f{letter-spacing:-0.990976pt;}
.lse{letter-spacing:-0.985920pt;}
.ls30{letter-spacing:-0.980864pt;}
.ls75{letter-spacing:-0.967872pt;}
.ls18{letter-spacing:-0.964000pt;}
.ls1f{letter-spacing:-0.963328pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls63{letter-spacing:-0.958784pt;}
.ls65{letter-spacing:-0.954240pt;}
.ls17{letter-spacing:-0.952000pt;}
.ls5d{letter-spacing:-0.874688pt;}
.ls5f{letter-spacing:-0.793792pt;}
.ls5e{letter-spacing:-0.758400pt;}
.ls4d{letter-spacing:-0.697728pt;}
.ls9{letter-spacing:-0.662336pt;}
.lsb{letter-spacing:-0.657280pt;}
.ls38{letter-spacing:-0.652224pt;}
.ls1d{letter-spacing:-0.649792pt;}
.ls4c{letter-spacing:-0.646912pt;}
.ls64{letter-spacing:-0.645248pt;}
.ls73{letter-spacing:-0.640704pt;}
.ls3d{letter-spacing:-0.348864pt;}
.ls51{letter-spacing:-0.338752pt;}
.ls3f{letter-spacing:-0.333792pt;}
.ls33{letter-spacing:-0.333696pt;}
.lsa{letter-spacing:-0.328640pt;}
.ls12{letter-spacing:-0.319488pt;}
.ls4b{letter-spacing:-0.319200pt;}
.ls10{letter-spacing:-0.318240pt;}
.ls6a{letter-spacing:-0.313536pt;}
.ls46{letter-spacing:-0.204800pt;}
.ls3e{letter-spacing:-0.083200pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls45{letter-spacing:-0.038400pt;}
.ls60{letter-spacing:-0.025600pt;}
.ls2c{letter-spacing:-0.012800pt;}
.ls40{letter-spacing:-0.011712pt;}
.lsd{letter-spacing:-0.010112pt;}
.ls21{letter-spacing:-0.009088pt;}
.ls4a{letter-spacing:-0.008512pt;}
.ls36{letter-spacing:-0.007488pt;}
.ls42{letter-spacing:-0.005856pt;}
.ls2{letter-spacing:-0.005056pt;}
.ls47{letter-spacing:-0.004256pt;}
.lsf{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.004256pt;}
.ls5a{letter-spacing:0.008512pt;}
.ls5b{letter-spacing:0.310688pt;}
.ls5c{letter-spacing:0.319200pt;}
.ls35{letter-spacing:0.348864pt;}
.ls50{letter-spacing:0.353920pt;}
.ls57{letter-spacing:0.646912pt;}
.ls6d{letter-spacing:5.443712pt;}
.ls41{letter-spacing:7.528384pt;}
.ls1a{letter-spacing:8.443904pt;}
.ls6f{letter-spacing:8.642688pt;}
.ls24{letter-spacing:8.965312pt;}
.ls53{letter-spacing:10.799616pt;}
.ls4f{letter-spacing:10.882592pt;}
.ls52{letter-spacing:12.513600pt;}
.ls13{letter-spacing:18.540000pt;}
.wse{word-spacing:-22.370400pt;}
.ws18{word-spacing:-14.686848pt;}
.ws17{word-spacing:-12.887744pt;}
.ws12{word-spacing:-12.736064pt;}
.ws1{word-spacing:-12.467520pt;}
.ws16{word-spacing:-12.190016pt;}
.ws7{word-spacing:-11.496320pt;}
.ws21{word-spacing:-11.201792pt;}
.ws2e{word-spacing:-10.865568pt;}
.ws38{word-spacing:-10.855616pt;}
.ws28{word-spacing:-10.563392pt;}
.ws2f{word-spacing:-10.554880pt;}
.ws22{word-spacing:-10.550624pt;}
.ws36{word-spacing:-10.537536pt;}
.ws6{word-spacing:-10.214912pt;}
.ws37{word-spacing:-10.210368pt;}
.ws3f{word-spacing:-9.915008pt;}
.ws35{word-spacing:-9.574208pt;}
.ws8{word-spacing:-9.569664pt;}
.ws2{word-spacing:-9.281376pt;}
.ws3e{word-spacing:-7.992896pt;}
.ws5{word-spacing:-7.970176pt;}
.ws9{word-spacing:-7.843680pt;}
.ws42{word-spacing:-7.356736pt;}
.ws11{word-spacing:-1.302912pt;}
.ws15{word-spacing:-0.970752pt;}
.ws40{word-spacing:-0.940608pt;}
.ws1b{word-spacing:-0.647168pt;}
.ws3a{word-spacing:-0.631616pt;}
.ws3d{word-spacing:-0.622528pt;}
.ws2d{word-spacing:-0.358976pt;}
.wsc{word-spacing:-0.324000pt;}
.ws1a{word-spacing:-0.323584pt;}
.wsa{word-spacing:-0.318528pt;}
.ws39{word-spacing:-0.318080pt;}
.wsf{word-spacing:-0.308992pt;}
.ws3b{word-spacing:-0.304448pt;}
.ws3{word-spacing:-0.039360pt;}
.ws4{word-spacing:-0.024000pt;}
.ws1c{word-spacing:-0.005856pt;}
.wsd{word-spacing:-0.003744pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.005056pt;}
.ws41{word-spacing:0.009088pt;}
.ws13{word-spacing:0.011232pt;}
.ws20{word-spacing:0.012768pt;}
.ws10{word-spacing:0.013632pt;}
.ws19{word-spacing:0.014976pt;}
.ws1f{word-spacing:0.316224pt;}
.ws1e{word-spacing:0.524800pt;}
.wsb{word-spacing:0.944000pt;}
.ws3c{word-spacing:1.276864pt;}
.ws30{word-spacing:131.774272pt;}
.ws26{word-spacing:152.300960pt;}
.ws25{word-spacing:178.245536pt;}
.ws23{word-spacing:210.237888pt;}
.ws31{word-spacing:214.719456pt;}
.ws24{word-spacing:220.805536pt;}
.ws33{word-spacing:225.278592pt;}
.ws32{word-spacing:225.287104pt;}
.ws34{word-spacing:281.279040pt;}
.ws1d{word-spacing:314.569472pt;}
.ws27{word-spacing:591.996832pt;}
.ws2a{word-spacing:596.797600pt;}
.ws29{word-spacing:600.317312pt;}
.ws2c{word-spacing:609.599648pt;}
.ws2b{word-spacing:618.239328pt;}
._46{margin-left:-270.077248pt;}
._10{margin-left:-23.040000pt;}
._f{margin-left:-21.722400pt;}
._12{margin-left:-20.088000pt;}
._2a{margin-left:-14.945536pt;}
._29{margin-left:-13.318272pt;}
._16{margin-left:-11.355008pt;}
._18{margin-left:-10.255808pt;}
._19{margin-left:-9.265216pt;}
._48{margin-left:-8.333696pt;}
._1f{margin-left:-7.021760pt;}
._49{margin-left:-5.456896pt;}
._d{margin-left:-4.203744pt;}
._c{margin-left:-2.289280pt;}
._3{margin-left:-0.935360pt;}
._2{width:0.970752pt;}
._a{width:1.900000pt;}
._9{width:2.952704pt;}
._2b{width:3.928512pt;}
._4a{width:5.100928pt;}
._15{width:6.202912pt;}
._6{width:7.174464pt;}
._4{width:8.514304pt;}
._b{width:9.448768pt;}
._8{width:10.809728pt;}
._17{width:11.782848pt;}
._27{width:13.086432pt;}
._5{width:14.126464pt;}
._14{width:15.353856pt;}
._1d{width:16.369920pt;}
._7{width:17.342080pt;}
._1e{width:18.317888pt;}
._0{width:19.318976pt;}
._1{width:20.582976pt;}
._11{width:22.341600pt;}
._13{width:23.248800pt;}
._1b{width:24.855296pt;}
._1a{width:26.473216pt;}
._e{width:27.469248pt;}
._37{width:30.745536pt;}
._47{width:32.378624pt;}
._1c{width:36.650944pt;}
._23{width:115.231200pt;}
._34{width:117.948864pt;}
._3f{width:132.723360pt;}
._33{width:160.983200pt;}
._24{width:176.371360pt;}
._38{width:182.011712pt;}
._31{width:183.684704pt;}
._2f{width:199.997952pt;}
._35{width:208.629120pt;}
._36{width:215.357856pt;}
._32{width:220.797024pt;}
._28{width:227.528544pt;}
._39{width:235.829216pt;}
._45{width:240.008608pt;}
._21{width:240.987104pt;}
._2d{width:242.549440pt;}
._2c{width:244.809376pt;}
._3b{width:246.745856pt;}
._3e{width:250.869920pt;}
._3d{width:257.628448pt;}
._20{width:260.267680pt;}
._3a{width:262.037664pt;}
._2e{width:267.204448pt;}
._30{width:270.060224pt;}
._3c{width:272.945792pt;}
._42{width:280.942816pt;}
._44{width:285.143488pt;}
._41{width:291.829664pt;}
._22{width:306.321472pt;}
._40{width:318.387104pt;}
._43{width:341.744032pt;}
._25{width:623.112960pt;}
._26{width:631.386112pt;}
.fs9{font-size:4.160000pt;}
.fsc{font-size:24.000000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.440000pt;}
.fsb{font-size:39.360000pt;}
.fs6{font-size:40.000000pt;}
.fsd{font-size:42.560000pt;}
.fse{font-size:45.440000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsf{font-size:58.560000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.239867pt;}
.y47{bottom:2.399867pt;}
.y21d{bottom:2.879733pt;}
.y4a{bottom:2.879867pt;}
.y41{bottom:4.159867pt;}
.y5e{bottom:58.815867pt;}
.y60{bottom:65.615509pt;}
.y5c{bottom:65.936000pt;}
.y5b{bottom:68.175427pt;}
.y5a{bottom:77.455867pt;}
.y4{bottom:86.333337pt;}
.y2b{bottom:103.455867pt;}
.y159{bottom:104.014715pt;}
.y241{bottom:104.414139pt;}
.y193{bottom:104.655867pt;}
.y204{bottom:105.292363pt;}
.y1b3{bottom:106.815483pt;}
.y1ec{bottom:107.214907pt;}
.y17a{bottom:107.374691pt;}
.y38{bottom:108.734715pt;}
.yb3{bottom:110.249227pt;}
.yd6{bottom:110.251739pt;}
.y87{bottom:110.493179pt;}
.y13a{bottom:111.933275pt;}
.y111{bottom:111.933947pt;}
.yfb{bottom:113.854619pt;}
.y278{bottom:114.328011pt;}
.y2a{bottom:116.975867pt;}
.y240{bottom:121.454139pt;}
.y158{bottom:121.854811pt;}
.y203{bottom:123.132459pt;}
.y20{bottom:123.790666pt;}
.y1b2{bottom:124.655579pt;}
.y1eb{bottom:125.055003pt;}
.y179{bottom:125.614843pt;}
.y37{bottom:126.574811pt;}
.yb2{bottom:128.089323pt;}
.yd5{bottom:128.091835pt;}
.y1ad{bottom:128.095099pt;}
.y86{bottom:128.333275pt;}
.y139{bottom:129.773371pt;}
.y110{bottom:129.774043pt;}
.y277{bottom:131.368011pt;}
.yfa{bottom:131.694715pt;}
.y29{bottom:133.055867pt;}
.y23f{bottom:134.494283pt;}
.y157{bottom:139.694907pt;}
.y202{bottom:140.972555pt;}
.y1b1{bottom:142.495675pt;}
.y1ea{bottom:142.895099pt;}
.y178{bottom:143.775195pt;}
.y276{bottom:144.408155pt;}
.y36{bottom:144.414907pt;}
.yb1{bottom:145.929419pt;}
.yd4{bottom:145.931931pt;}
.y1ac{bottom:145.935195pt;}
.y85{bottom:146.173371pt;}
.y23e{bottom:147.534427pt;}
.y138{bottom:147.613467pt;}
.y10f{bottom:147.614139pt;}
.yf9{bottom:149.534811pt;}
.y275{bottom:157.448299pt;}
.y156{bottom:157.535003pt;}
.y201{bottom:158.812651pt;}
.y1b0{bottom:160.335771pt;}
.y23d{bottom:160.574571pt;}
.y1e9{bottom:160.735195pt;}
.y177{bottom:162.015347pt;}
.y35{bottom:162.255003pt;}
.yb0{bottom:163.769515pt;}
.yd3{bottom:163.772027pt;}
.y28{bottom:163.775291pt;}
.y84{bottom:164.013467pt;}
.y137{bottom:165.453563pt;}
.y10e{bottom:165.454235pt;}
.yf8{bottom:167.374907pt;}
.y23c{bottom:173.614715pt;}
.y274{bottom:174.488299pt;}
.y17{bottom:175.052000pt;}
.y155{bottom:175.375099pt;}
.y200{bottom:176.652747pt;}
.y1af{bottom:178.175867pt;}
.y1e8{bottom:178.575291pt;}
.y34{bottom:180.095099pt;}
.yaf{bottom:181.609611pt;}
.yd2{bottom:181.612123pt;}
.y27{bottom:181.615387pt;}
.y83{bottom:181.853563pt;}
.y136{bottom:183.293659pt;}
.y10d{bottom:183.294331pt;}
.y17b{bottom:185.055867pt;}
.yf7{bottom:185.215003pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y23b{bottom:186.654859pt;}
.y273{bottom:187.528443pt;}
.y154{bottom:193.215195pt;}
.y1ff{bottom:194.492843pt;}
.y1e7{bottom:196.415387pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y33{bottom:197.935195pt;}
.yae{bottom:199.449707pt;}
.yd1{bottom:199.452219pt;}
.y26{bottom:199.455483pt;}
.y82{bottom:199.693659pt;}
.y23a{bottom:199.695003pt;}
.y272{bottom:200.568587pt;}
.y135{bottom:201.133755pt;}
.y10c{bottom:201.134427pt;}
.yf6{bottom:203.055099pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y1ae{bottom:210.495867pt;}
.y153{bottom:211.055291pt;}
.y1fe{bottom:212.332939pt;}
.y239{bottom:212.735147pt;}
.y271{bottom:213.608731pt;}
.y1e6{bottom:214.255483pt;}
.y32{bottom:215.775291pt;}
.yad{bottom:217.289803pt;}
.yd0{bottom:217.292315pt;}
.y25{bottom:217.295579pt;}
.y81{bottom:217.533755pt;}
.y134{bottom:218.973851pt;}
.y10b{bottom:218.974523pt;}
.yf5{bottom:220.895195pt;}
.y175{bottom:224.495211pt;}
.y152{bottom:228.895387pt;}
.y238{bottom:229.775147pt;}
.y1fd{bottom:230.173035pt;}
.y270{bottom:230.648731pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1e5{bottom:232.095579pt;}
.y31{bottom:233.615387pt;}
.yac{bottom:235.129899pt;}
.ycf{bottom:235.132411pt;}
.y24{bottom:235.135675pt;}
.y80{bottom:235.373851pt;}
.y133{bottom:236.813947pt;}
.y10a{bottom:236.814619pt;}
.yf4{bottom:238.735291pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y174{bottom:242.735363pt;}
.y237{bottom:242.815291pt;}
.y26f{bottom:243.688875pt;}
.y151{bottom:246.735483pt;}
.y1fc{bottom:248.013131pt;}
.y1e4{bottom:249.935675pt;}
.y30{bottom:251.455483pt;}
.yab{bottom:252.969995pt;}
.yce{bottom:252.972507pt;}
.y23{bottom:252.975771pt;}
.y7f{bottom:253.213947pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y132{bottom:254.654043pt;}
.y109{bottom:254.654715pt;}
.y236{bottom:255.855435pt;}
.yf3{bottom:256.575387pt;}
.y26e{bottom:256.729019pt;}
.y1bf{bottom:258.494059pt;}
.y173{bottom:260.975515pt;}
.y150{bottom:264.575579pt;}
.y1fb{bottom:265.853227pt;}
.y1e3{bottom:267.775771pt;}
.y2f{bottom:269.295579pt;}
.y26d{bottom:269.769163pt;}
.yaa{bottom:270.810091pt;}
.ycd{bottom:270.812603pt;}
.y22{bottom:270.815867pt;}
.y7e{bottom:271.054043pt;}
.y131{bottom:272.494139pt;}
.y108{bottom:272.494811pt;}
.y235{bottom:272.895435pt;}
.yf2{bottom:274.415483pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y1be{bottom:276.734211pt;}
.y172{bottom:279.135867pt;}
.y14f{bottom:282.415675pt;}
.y26c{bottom:282.809307pt;}
.y1fa{bottom:283.693323pt;}
.y1e2{bottom:285.615867pt;}
.y234{bottom:285.935579pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y2e{bottom:287.135675pt;}
.ya9{bottom:288.650187pt;}
.ycc{bottom:288.652699pt;}
.y1ab{bottom:288.655195pt;}
.y7d{bottom:288.894139pt;}
.y130{bottom:290.334235pt;}
.y107{bottom:290.334907pt;}
.yf1{bottom:292.255579pt;}
.y1bd{bottom:294.974363pt;}
.y233{bottom:298.975723pt;}
.y26b{bottom:299.849307pt;}
.y14e{bottom:300.255771pt;}
.y1f9{bottom:301.533419pt;}
.y176{bottom:302.255867pt;}
.y2d{bottom:304.975771pt;}
.ya8{bottom:306.490283pt;}
.ycb{bottom:306.492795pt;}
.y1aa{bottom:306.495291pt;}
.y7c{bottom:306.734235pt;}
.y12f{bottom:308.174331pt;}
.y106{bottom:308.175003pt;}
.ye{bottom:309.452000pt;}
.yf0{bottom:310.095675pt;}
.y232{bottom:312.015867pt;}
.y26a{bottom:312.889451pt;}
.y1bc{bottom:313.134715pt;}
.y1e1{bottom:317.935867pt;}
.y14d{bottom:318.095867pt;}
.y1f8{bottom:319.373515pt;}
.y1bb{bottom:319.534675pt;}
.y21{bottom:320.015867pt;}
.y2c{bottom:322.815867pt;}
.ya7{bottom:324.330379pt;}
.yca{bottom:324.332891pt;}
.y1a9{bottom:324.335387pt;}
.y7b{bottom:324.574331pt;}
.y12e{bottom:326.014427pt;}
.y105{bottom:326.015099pt;}
.yef{bottom:327.935771pt;}
.y269{bottom:329.929451pt;}
.y1f7{bottom:337.213611pt;}
.y171{bottom:338.735195pt;}
.ya6{bottom:342.170475pt;}
.yc9{bottom:342.172987pt;}
.y1a8{bottom:342.175483pt;}
.y7a{bottom:342.414427pt;}
.y268{bottom:342.969595pt;}
.yd{bottom:343.809333pt;}
.y12d{bottom:343.854523pt;}
.y104{bottom:343.855195pt;}
.y1ba{bottom:344.174787pt;}
.yee{bottom:345.775867pt;}
.y1e0{bottom:352.255867pt;}
.y1f6{bottom:355.053707pt;}
.y267{bottom:356.009739pt;}
.y170{bottom:356.575291pt;}
.ya5{bottom:360.010571pt;}
.yc8{bottom:360.013083pt;}
.y1a7{bottom:360.015579pt;}
.y79{bottom:360.254523pt;}
.y231{bottom:360.575867pt;}
.y12c{bottom:361.694619pt;}
.y103{bottom:361.695291pt;}
.y1b9{bottom:362.414939pt;}
.yc{bottom:362.706666pt;}
.y14c{bottom:368.575867pt;}
.y266{bottom:369.049883pt;}
.y1f5{bottom:372.893803pt;}
.y16f{bottom:374.415387pt;}
.ya4{bottom:377.850667pt;}
.yc7{bottom:377.853179pt;}
.y1a6{bottom:377.855675pt;}
.y78{bottom:378.094619pt;}
.yed{bottom:378.096235pt;}
.y12b{bottom:379.534715pt;}
.y102{bottom:379.535387pt;}
.y1b8{bottom:380.575291pt;}
.y265{bottom:382.090027pt;}
.y1f4{bottom:390.733899pt;}
.y16e{bottom:392.255483pt;}
.yec{bottom:394.255867pt;}
.ya3{bottom:395.690763pt;}
.yc6{bottom:395.693275pt;}
.y1a5{bottom:395.695771pt;}
.y77{bottom:395.934715pt;}
.y12a{bottom:397.374811pt;}
.y101{bottom:397.375483pt;}
.y1b7{bottom:398.815443pt;}
.y264{bottom:399.130027pt;}
.y59{bottom:399.455867pt;}
.y1f3{bottom:408.573995pt;}
.y16d{bottom:410.095579pt;}
.y263{bottom:412.170171pt;}
.ya2{bottom:413.530859pt;}
.yc5{bottom:413.533371pt;}
.y1a4{bottom:413.535867pt;}
.y76{bottom:413.774811pt;}
.y129{bottom:415.214907pt;}
.y100{bottom:415.215579pt;}
.y1b6{bottom:417.055595pt;}
.y262{bottom:425.210315pt;}
.y1f2{bottom:426.414091pt;}
.y1df{bottom:426.415387pt;}
.y192{bottom:427.615867pt;}
.y16c{bottom:427.935675pt;}
.yeb{bottom:428.575867pt;}
.ya1{bottom:431.370955pt;}
.yc4{bottom:431.373467pt;}
.y1a3{bottom:431.375195pt;}
.y75{bottom:431.614907pt;}
.y128{bottom:433.055003pt;}
.yff{bottom:433.055675pt;}
.y230{bottom:434.735291pt;}
.y1b5{bottom:435.215947pt;}
.y261{bottom:438.250459pt;}
.y58{bottom:440.416187pt;}
.y14b{bottom:441.454331pt;}
.y1f1{bottom:444.254187pt;}
.y1de{bottom:444.255483pt;}
.y16b{bottom:445.775771pt;}
.yb{bottom:446.990669pt;}
.y1b4{bottom:448.015867pt;}
.ya0{bottom:449.211051pt;}
.yc3{bottom:449.213563pt;}
.y1a2{bottom:449.215291pt;}
.y74{bottom:449.455003pt;}
.y127{bottom:450.895099pt;}
.yfe{bottom:450.895771pt;}
.y22f{bottom:452.575387pt;}
.y57{bottom:454.016379pt;}
.y260{bottom:455.290459pt;}
.y14a{bottom:459.294427pt;}
.y1f0{bottom:462.094283pt;}
.y1dd{bottom:462.095579pt;}
.ya{bottom:462.990669pt;}
.y16a{bottom:463.615867pt;}
.y9f{bottom:467.051147pt;}
.yc2{bottom:467.053659pt;}
.y1a1{bottom:467.055387pt;}
.y73{bottom:467.295099pt;}
.y56{bottom:467.616571pt;}
.y25f{bottom:468.330603pt;}
.y126{bottom:468.735195pt;}
.yfd{bottom:468.735867pt;}
.y22e{bottom:470.415483pt;}
.y1c0{bottom:471.135867pt;}
.y149{bottom:477.134523pt;}
.y9{bottom:478.990666pt;}
.y1ef{bottom:479.934379pt;}
.y1dc{bottom:479.935675pt;}
.y55{bottom:481.136107pt;}
.y25e{bottom:481.370747pt;}
.y9e{bottom:484.891243pt;}
.yc1{bottom:484.893755pt;}
.y1a0{bottom:484.895483pt;}
.y72{bottom:485.135195pt;}
.y125{bottom:486.575291pt;}
.y22d{bottom:488.255579pt;}
.y169{bottom:494.655867pt;}
.y54{bottom:494.736299pt;}
.y148{bottom:494.974619pt;}
.y8{bottom:494.990666pt;}
.y1ee{bottom:497.774475pt;}
.y1db{bottom:497.775771pt;}
.y25d{bottom:498.410747pt;}
.yfc{bottom:501.055867pt;}
.y9d{bottom:502.731339pt;}
.yc0{bottom:502.733851pt;}
.yea{bottom:502.735387pt;}
.y19f{bottom:502.735579pt;}
.y71{bottom:502.975291pt;}
.y124{bottom:504.415387pt;}
.y22c{bottom:506.095675pt;}
.y53{bottom:508.336491pt;}
.y1d8{bottom:511.051827pt;}
.y25c{bottom:511.450891pt;}
.y147{bottom:512.814715pt;}
.y1ed{bottom:515.614571pt;}
.y1da{bottom:515.615867pt;}
.y9c{bottom:520.571435pt;}
.ybf{bottom:520.573947pt;}
.ye9{bottom:520.575483pt;}
.y19e{bottom:520.575675pt;}
.y70{bottom:520.815387pt;}
.y52{bottom:521.856027pt;}
.y123{bottom:522.255483pt;}
.y22b{bottom:523.935771pt;}
.y25b{bottom:524.491035pt;}
.y1d7{bottom:529.291979pt;}
.y146{bottom:530.654811pt;}
.y51{bottom:535.456219pt;}
.y25a{bottom:537.531179pt;}
.y9b{bottom:538.411531pt;}
.ybe{bottom:538.414043pt;}
.ye8{bottom:538.415579pt;}
.y19d{bottom:538.415771pt;}
.y6f{bottom:538.655483pt;}
.y122{bottom:540.095579pt;}
.y22a{bottom:541.775867pt;}
.y168{bottom:546.735291pt;}
.y1d6{bottom:547.452331pt;}
.y145{bottom:548.494907pt;}
.y50{bottom:549.056411pt;}
.y259{bottom:554.571179pt;}
.y9a{bottom:556.251627pt;}
.ybd{bottom:556.254139pt;}
.y19c{bottom:556.255867pt;}
.y6e{bottom:556.495579pt;}
.y121{bottom:557.935675pt;}
.y213{bottom:558.179611pt;}
.y1d2{bottom:559.293587pt;}
.y4f{bottom:562.575947pt;}
.y167{bottom:564.575387pt;}
.y1d5{bottom:565.692483pt;}
.y144{bottom:566.335003pt;}
.y258{bottom:567.611323pt;}
.y212{bottom:570.659267pt;}
.y1d1{bottom:572.093507pt;}
.y7{bottom:573.786667pt;}
.y99{bottom:574.091723pt;}
.ybc{bottom:574.094235pt;}
.y19b{bottom:574.095387pt;}
.ye7{bottom:574.095771pt;}
.y229{bottom:574.095867pt;}
.y6d{bottom:574.335675pt;}
.y120{bottom:575.775771pt;}
.y4e{bottom:576.176139pt;}
.y257{bottom:580.651467pt;}
.y166{bottom:582.415483pt;}
.y1d4{bottom:583.932635pt;}
.y143{bottom:584.175099pt;}
.y211{bottom:588.899419pt;}
.y4d{bottom:589.776331pt;}
.y98{bottom:591.931819pt;}
.ybb{bottom:591.934331pt;}
.y19a{bottom:591.935483pt;}
.ye6{bottom:591.935867pt;}
.y6c{bottom:592.175771pt;}
.y6{bottom:592.685334pt;}
.y11f{bottom:593.615867pt;}
.y256{bottom:593.691611pt;}
.y165{bottom:600.255579pt;}
.y210{bottom:601.379075pt;}
.y142{bottom:602.015195pt;}
.y1d3{bottom:602.092987pt;}
.y4c{bottom:603.295867pt;}
.y97{bottom:609.771915pt;}
.yba{bottom:609.774427pt;}
.y199{bottom:609.775579pt;}
.ye5{bottom:609.775771pt;}
.y6b{bottom:610.015867pt;}
.y255{bottom:610.731611pt;}
.y164{bottom:618.095675pt;}
.y20f{bottom:619.619227pt;}
.y141{bottom:619.855291pt;}
.y1d0{bottom:620.333139pt;}
.y254{bottom:623.771755pt;}
.y49{bottom:624.896000pt;}
.y11e{bottom:625.935867pt;}
.y96{bottom:627.612011pt;}
.yb9{bottom:627.614523pt;}
.y198{bottom:627.615675pt;}
.ye4{bottom:627.615867pt;}
.y4b{bottom:627.775867pt;}
.y228{bottom:629.294715pt;}
.y20e{bottom:632.098883pt;}
.y163{bottom:635.935771pt;}
.y253{bottom:636.811899pt;}
.y140{bottom:637.695387pt;}
.y1cf{bottom:638.573291pt;}
.y95{bottom:645.452107pt;}
.yb8{bottom:645.454619pt;}
.ye3{bottom:645.455771pt;}
.y5{bottom:645.598667pt;}
.y227{bottom:647.134811pt;}
.y20d{bottom:650.258171pt;}
.y162{bottom:653.775867pt;}
.y252{bottom:653.851899pt;}
.y13f{bottom:655.535483pt;}
.y1ce{bottom:656.733643pt;}
.y6a{bottom:660.495867pt;}
.y20c{bottom:662.737827pt;}
.y94{bottom:663.292203pt;}
.yb7{bottom:663.294715pt;}
.ye2{bottom:663.295867pt;}
.y226{bottom:664.974907pt;}
.y251{bottom:666.892043pt;}
.y3{bottom:668.977329pt;}
.y48{bottom:672.335867pt;}
.y13e{bottom:673.375579pt;}
.y1cd{bottom:674.973795pt;}
.y1ca{bottom:677.694443pt;}
.y250{bottom:679.932187pt;}
.y46{bottom:680.576000pt;}
.y209{bottom:680.976915pt;}
.y93{bottom:681.132299pt;}
.y11d{bottom:681.133371pt;}
.yb6{bottom:681.134811pt;}
.y197{bottom:681.135579pt;}
.ye1{bottom:681.135771pt;}
.y225{bottom:682.815003pt;}
.y161{bottom:684.735867pt;}
.y45{bottom:687.135867pt;}
.y206{bottom:687.216211pt;}
.y20b{bottom:687.217275pt;}
.y1c9{bottom:690.494363pt;}
.y13d{bottom:691.215675pt;}
.y1cc{bottom:693.213947pt;}
.y208{bottom:693.456571pt;}
.y44{bottom:693.695867pt;}
.y24f{bottom:696.972187pt;}
.y92{bottom:698.972395pt;}
.y11c{bottom:698.973467pt;}
.yb5{bottom:698.974907pt;}
.y196{bottom:698.975675pt;}
.ye0{bottom:698.975867pt;}
.y205{bottom:699.695867pt;}
.y20a{bottom:699.696931pt;}
.y224{bottom:700.655099pt;}
.y207{bottom:705.936227pt;}
.y43{bottom:708.415867pt;}
.y13c{bottom:709.055771pt;}
.y24e{bottom:710.012331pt;}
.y1cb{bottom:711.374299pt;}
.ydf{bottom:716.811211pt;}
.y91{bottom:716.812491pt;}
.y11b{bottom:716.813563pt;}
.yb4{bottom:716.815003pt;}
.y195{bottom:716.815771pt;}
.y160{bottom:717.775867pt;}
.y223{bottom:718.495195pt;}
.y191{bottom:718.495349pt;}
.y24d{bottom:723.052475pt;}
.y40{bottom:726.816000pt;}
.y13b{bottom:726.895867pt;}
.y214{bottom:728.975867pt;}
.y1c8{bottom:729.614451pt;}
.y42{bottom:730.975867pt;}
.yde{bottom:734.651307pt;}
.y90{bottom:734.652587pt;}
.y11a{bottom:734.653659pt;}
.y69{bottom:734.655099pt;}
.y194{bottom:734.655867pt;}
.y24c{bottom:736.092619pt;}
.y222{bottom:736.335291pt;}
.y190{bottom:736.335445pt;}
.y18a{bottom:738.015387pt;}
.y1c7{bottom:747.854603pt;}
.y8f{bottom:752.492683pt;}
.y119{bottom:752.493755pt;}
.y68{bottom:752.495195pt;}
.y24b{bottom:753.132619pt;}
.y221{bottom:754.175387pt;}
.y18f{bottom:754.175541pt;}
.y189{bottom:755.855483pt;}
.y3f{bottom:765.375867pt;}
.y1c6{bottom:766.014955pt;}
.y24a{bottom:766.172763pt;}
.y28a{bottom:766.173733pt;}
.y281{bottom:766.174869pt;}
.y182{bottom:766.815867pt;}
.ydd{bottom:770.331499pt;}
.y8e{bottom:770.332779pt;}
.y118{bottom:770.333851pt;}
.y67{bottom:770.335291pt;}
.y21b{bottom:771.455003pt;}
.y220{bottom:772.015483pt;}
.y18e{bottom:772.015637pt;}
.y188{bottom:773.695579pt;}
.y249{bottom:779.212907pt;}
.y289{bottom:779.213877pt;}
.y280{bottom:779.215013pt;}
.y2{bottom:781.661334pt;}
.y1c5{bottom:784.255107pt;}
.ydc{bottom:788.171595pt;}
.y8d{bottom:788.172875pt;}
.y15f{bottom:788.173675pt;}
.y117{bottom:788.173947pt;}
.y66{bottom:788.175387pt;}
.y21a{bottom:789.695155pt;}
.y21f{bottom:789.855579pt;}
.y18d{bottom:789.855733pt;}
.y17f{bottom:790.815947pt;}
.y187{bottom:791.535675pt;}
.y248{bottom:792.253051pt;}
.y288{bottom:792.254021pt;}
.y27f{bottom:796.255013pt;}
.y1c4{bottom:802.495259pt;}
.y17e{bottom:803.615867pt;}
.y287{bottom:805.294165pt;}
.ydb{bottom:806.011691pt;}
.y8c{bottom:806.012971pt;}
.y15e{bottom:806.013771pt;}
.y116{bottom:806.014043pt;}
.y65{bottom:806.015483pt;}
.y21e{bottom:807.695675pt;}
.y219{bottom:807.855507pt;}
.y247{bottom:809.293051pt;}
.y27e{bottom:809.295157pt;}
.y186{bottom:809.375771pt;}
.y286{bottom:818.334309pt;}
.y1c3{bottom:820.655611pt;}
.y246{bottom:822.333195pt;}
.y27d{bottom:822.335301pt;}
.y3e{bottom:823.615867pt;}
.yda{bottom:823.851787pt;}
.y8b{bottom:823.853067pt;}
.y15d{bottom:823.853867pt;}
.y115{bottom:823.854139pt;}
.y64{bottom:823.855579pt;}
.y18c{bottom:825.535771pt;}
.y181{bottom:825.695947pt;}
.y218{bottom:826.095659pt;}
.y185{bottom:827.215867pt;}
.y3d{bottom:834.815867pt;}
.y245{bottom:835.373339pt;}
.y285{bottom:835.374309pt;}
.y27c{bottom:835.375445pt;}
.y180{bottom:838.495867pt;}
.y1c2{bottom:838.895763pt;}
.yd9{bottom:841.691883pt;}
.y8a{bottom:841.693163pt;}
.y15c{bottom:841.693963pt;}
.y114{bottom:841.694235pt;}
.y63{bottom:841.695675pt;}
.y18b{bottom:843.375867pt;}
.y216{bottom:844.335811pt;}
.y284{bottom:848.414453pt;}
.y215{bottom:850.735771pt;}
.y244{bottom:852.413339pt;}
.y27b{bottom:852.415445pt;}
.y3c{bottom:856.255867pt;}
.y217{bottom:857.135731pt;}
.y1c1{bottom:857.135915pt;}
.y1{bottom:859.312000pt;}
.yd8{bottom:859.531979pt;}
.y89{bottom:859.533259pt;}
.y15b{bottom:859.534059pt;}
.y113{bottom:859.534331pt;}
.y62{bottom:859.535771pt;}
.y184{bottom:859.536235pt;}
.y17d{bottom:861.375813pt;}
.y283{bottom:861.454597pt;}
.y243{bottom:865.453483pt;}
.y27a{bottom:865.455589pt;}
.y17c{bottom:874.175733pt;}
.y183{bottom:875.695867pt;}
.y21c{bottom:877.296000pt;}
.yd7{bottom:877.372075pt;}
.y88{bottom:877.373355pt;}
.y15a{bottom:877.374155pt;}
.y112{bottom:877.374427pt;}
.y61{bottom:877.375867pt;}
.y242{bottom:878.493627pt;}
.y282{bottom:878.494597pt;}
.y279{bottom:878.495733pt;}
.y1d9{bottom:880.175733pt;}
.y3b{bottom:889.455381pt;}
.y3a{bottom:900.655557pt;}
.y39{bottom:911.855733pt;}
.y5f{bottom:918.015733pt;}
.h18{height:10.560000pt;}
.h1f{height:10.880000pt;}
.h13{height:11.360000pt;}
.h14{height:13.040000pt;}
.h12{height:16.640625pt;}
.hf{height:18.800000pt;}
.hc{height:25.922812pt;}
.hb{height:27.832031pt;}
.h7{height:28.560000pt;}
.h15{height:29.550937pt;}
.h17{height:29.758750pt;}
.hd{height:30.090937pt;}
.h1b{height:31.358906pt;}
.h16{height:31.683750pt;}
.h19{height:34.241563pt;}
.ha{height:35.204375pt;}
.h1a{height:40.631719pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:44.468750pt;}
.h10{height:45.120000pt;}
.h2{height:48.960000pt;}
.he{height:53.121094pt;}
.h1e{height:54.720190pt;}
.h1d{height:55.358590pt;}
.h11{height:55.996406pt;}
.h1c{height:59.198430pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:11.040000pt;}
.w9{width:16.640000pt;}
.w7{width:37.120000pt;}
.w8{width:39.760000pt;}
.w4{width:40.320000pt;}
.w5{width:51.360000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:35.440000pt;}
.xf{left:46.560000pt;}
.x5{left:79.360000pt;}
.xd{left:82.560000pt;}
.x10{left:86.080000pt;}
.x7{left:88.720237pt;}
.x1{left:90.706667pt;}
.x6{left:92.720000pt;}
.x2{left:94.486667pt;}
.x25{left:96.480016pt;}
.x47{left:104.320600pt;}
.x2b{left:105.679646pt;}
.x2d{left:106.720161pt;}
.x29{left:107.759628pt;}
.x16{left:109.200719pt;}
.x46{left:111.839888pt;}
.x4e{left:115.440176pt;}
.x11{left:117.600000pt;}
.x4d{left:121.119808pt;}
.x48{left:132.960000pt;}
.x2a{left:142.000000pt;}
.x9{left:162.880000pt;}
.x28{left:168.960000pt;}
.x4f{left:178.480000pt;}
.x4{left:180.874667pt;}
.x50{left:183.760000pt;}
.x23{left:194.960000pt;}
.x24{left:200.320432pt;}
.x40{left:221.600000pt;}
.xa{left:224.160000pt;}
.x2e{left:232.000000pt;}
.x41{left:249.839624pt;}
.x2c{left:267.840000pt;}
.xc{left:271.760000pt;}
.x42{left:309.999248pt;}
.x2f{left:320.960000pt;}
.x49{left:325.439728pt;}
.x43{left:331.918712pt;}
.xb{left:356.560000pt;}
.x8{left:370.320000pt;}
.x20{left:371.920000pt;}
.x3f{left:374.240000pt;}
.x22{left:375.519512pt;}
.x51{left:379.520000pt;}
.x17{left:383.680152pt;}
.x37{left:386.480848pt;}
.x1c{left:387.440016pt;}
.x21{left:391.999808pt;}
.x27{left:395.759970pt;}
.x18{left:397.360756pt;}
.x35{left:398.960504pt;}
.x3c{left:400.719688pt;}
.x1a{left:401.680000pt;}
.x1e{left:402.799936pt;}
.x3{left:404.408000pt;}
.x19{left:405.840000pt;}
.x1b{left:407.360288pt;}
.x34{left:413.200016pt;}
.x1f{left:414.319864pt;}
.x4a{left:419.839936pt;}
.x1d{left:435.120000pt;}
.x39{left:457.119136pt;}
.x3b{left:461.039976pt;}
.x26{left:463.360000pt;}
.x3d{left:470.800048pt;}
.x3a{left:473.119568pt;}
.x12{left:476.640000pt;}
.x45{left:478.079328pt;}
.x44{left:481.919304pt;}
.x30{left:490.240000pt;}
.x31{left:497.040024pt;}
.x4b{left:529.759648pt;}
.x4c{left:531.839768pt;}
.x14{left:547.760000pt;}
.x32{left:568.319512pt;}
.x36{left:571.840288pt;}
.x38{left:574.718800pt;}
.x33{left:576.319728pt;}
.x3e{left:577.359648pt;}
.xe{left:579.520000pt;}
.x15{left:621.760160pt;}
}




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