
    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_fb01d1b7dd8d9af37a922d69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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_b7baa15ed7965b63351c1455.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8cf1f9ae55ce6a324ea7e62d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896484;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_93e4a1ebf08eba1a5f7d1497.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bf602369aac480dd5ea56bf1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.fff{font-family:fff;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.132000;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:ff1d;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.121000;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:ff1e;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.132000;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:ff1f;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.121000;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:ff20;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.132000;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:ff21;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,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);}
.v3{vertical-align:-25.255376px;}
.v2{vertical-align:-20.863136px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.255376px;}
.ls22{letter-spacing:-4.611851px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000446px;}
.ls25{letter-spacing:0.000558px;}
.ls12{letter-spacing:0.008146px;}
.ls1b{letter-spacing:0.008593px;}
.ls35{letter-spacing:0.008704px;}
.ls1{letter-spacing:0.009039px;}
.ls1e{letter-spacing:0.009150px;}
.lsb{letter-spacing:0.009597px;}
.ls20{letter-spacing:0.009708px;}
.ls21{letter-spacing:0.014061px;}
.ls13{letter-spacing:0.015623px;}
.ls1f{letter-spacing:0.025443px;}
.ls1c{letter-spacing:0.027451px;}
.ls1d{letter-spacing:0.042516px;}
.ls2b{letter-spacing:0.045752px;}
.ls46{letter-spacing:0.109806px;}
.ls0{letter-spacing:0.160134px;}
.ls2f{letter-spacing:0.180082px;}
.ls40{letter-spacing:0.209792px;}
.ls19{letter-spacing:0.214122px;}
.ls41{letter-spacing:0.225102px;}
.ls8{letter-spacing:0.247063px;}
.ls3d{letter-spacing:0.270123px;}
.ls2e{letter-spacing:0.315143px;}
.ls23{letter-spacing:0.325026px;}
.ls18{letter-spacing:0.342595px;}
.lsf{letter-spacing:0.345889px;}
.ls3b{letter-spacing:0.360164px;}
.ls1a{letter-spacing:0.385419px;}
.ls6{letter-spacing:0.395302px;}
.ls3e{letter-spacing:0.405184px;}
.ls10{letter-spacing:0.428243px;}
.lse{letter-spacing:0.439001px;}
.lsc{letter-spacing:0.439224px;}
.lsd{letter-spacing:0.439559px;}
.ls5{letter-spacing:0.444714px;}
.ls2d{letter-spacing:0.450205px;}
.ls37{letter-spacing:0.471059px;}
.ls2{letter-spacing:0.471068px;}
.ls16{letter-spacing:0.494127px;}
.ls3f{letter-spacing:0.495225px;}
.ls30{letter-spacing:0.502719px;}
.ls3c{letter-spacing:0.540245px;}
.ls9{letter-spacing:0.543540px;}
.ls17{letter-spacing:0.556716px;}
.ls4{letter-spacing:0.592952px;}
.ls31{letter-spacing:0.613753px;}
.ls7{letter-spacing:0.691778px;}
.ls32{letter-spacing:2.369644px;}
.ls28{letter-spacing:2.954879px;}
.ls26{letter-spacing:2.967774px;}
.ls38{letter-spacing:3.334352px;}
.ls47{letter-spacing:3.403985px;}
.ls42{letter-spacing:3.651830px;}
.ls43{letter-spacing:3.652388px;}
.ls44{letter-spacing:4.117724px;}
.ls24{letter-spacing:4.556948px;}
.ls34{letter-spacing:5.363085px;}
.ls33{letter-spacing:5.364201px;}
.ls48{letter-spacing:9.480251px;}
.ls36{letter-spacing:10.359034px;}
.ls4a{letter-spacing:10.737887px;}
.ls49{letter-spacing:10.738445px;}
.ls45{letter-spacing:12.798981px;}
.ls29{letter-spacing:14.253017px;}
.ls2a{letter-spacing:14.253575px;}
.ls15{letter-spacing:17.253711px;}
.ls39{letter-spacing:19.298624px;}
.ls3a{letter-spacing:19.299740px;}
.ls27{letter-spacing:21.452897px;}
.lsa{letter-spacing:22.186298px;}
.ls2c{letter-spacing:38.852626px;}
.ls11{letter-spacing:710.280099px;}
.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;}
}
.ws5{word-spacing:-14.164972px;}
.ws0{word-spacing:-13.725748px;}
.wse{word-spacing:-12.797887px;}
.ws2{word-spacing:-12.600236px;}
.wsd{word-spacing:-11.615277px;}
.ws1{word-spacing:-11.177151px;}
.ws4{word-spacing:-11.134326px;}
.ws8{word-spacing:-11.091502px;}
.ws6{word-spacing:-11.048678px;}
.ws7{word-spacing:-10.920205px;}
.wsa{word-spacing:-10.706083px;}
.wsb{word-spacing:-10.482079px;}
.ws9{word-spacing:-9.113896px;}
.wsc{word-spacing:-9.058993px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-22.702119px;}
._12{margin-left:-20.978700px;}
._18{margin-left:-5.451928px;}
._c{margin-left:-1.136492px;}
._b{width:1.262769px;}
._6{width:2.360829px;}
._5{width:3.898112px;}
._a{width:5.050852px;}
._d{width:6.621301px;}
._e{width:7.697622px;}
._10{width:9.152105px;}
._7{width:10.760986px;}
._8{width:11.859046px;}
._20{width:13.174522px;}
._1f{width:14.353838px;}
._16{width:15.629783px;}
._3{width:16.690509px;}
._9{width:18.721920px;}
._14{width:19.929786px;}
._f{width:21.000394px;}
._11{width:22.186298px;}
._1b{width:23.438310px;}
._21{width:24.442365px;}
._19{width:25.529891px;}
._1a{width:26.554037px;}
._1c{width:28.308165px;}
._17{width:29.559587px;}
._15{width:31.184899px;}
._4{width:33.326115px;}
._1d{width:37.883063px;}
._1e{width:42.732270px;}
._2{width:710.280099px;}
._1{width:759.582873px;}
._0{width:835.019359px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.647615px;}
.fs6{font-size:36.235974px;}
.fs5{font-size:40.628213px;}
.fs3{font-size:42.824333px;}
.fs2{font-size:45.020452px;}
.fs4{font-size:49.412691px;}
.fs0{font-size:50.216150px;}
.fs1{font-size:54.902990px;}
.ye7{bottom:-0.274877px;}
.y0{bottom:0.000000px;}
.y2{bottom:28.856153px;}
.y4{bottom:47.292175px;}
.y171{bottom:103.010480px;}
.y131{bottom:103.019533px;}
.ye4{bottom:106.861780px;}
.y92{bottom:107.685464px;}
.y1cb{bottom:110.705129px;}
.y110{bottom:112.626594px;}
.y63{bottom:112.901249px;}
.y1b6{bottom:113.450278px;}
.y19a{bottom:115.371883px;}
.y32{bottom:115.860514px;}
.y170{bottom:115.908833px;}
.y130{bottom:115.917900px;}
.ye3{bottom:122.783647px;}
.y91{bottom:123.607332px;}
.y1ca{bottom:126.352481px;}
.y10f{bottom:128.548461px;}
.y62{bottom:128.548601px;}
.y16f{bottom:129.088578px;}
.y1b5{bottom:129.097631px;}
.y31{bottom:130.412555px;}
.y199{bottom:131.293750px;}
.y12f{bottom:134.313415px;}
.ye2{bottom:138.431000px;}
.y14d{bottom:142.265282px;}
.y16e{bottom:142.268350px;}
.y1c9{bottom:142.274348px;}
.y12e{bottom:142.823239px;}
.y10e{bottom:144.195814px;}
.yba{bottom:144.195953px;}
.y61{bottom:144.470468px;}
.y30{bottom:144.692814px;}
.y1b4{bottom:145.019498px;}
.y90{bottom:146.117558px;}
.y198{bottom:146.941103px;}
.y1{bottom:148.500000px;}
.ye9{bottom:149.408947px;}
.ye1{bottom:154.352867px;}
.y14c{bottom:155.445068px;}
.y16d{bottom:155.447997px;}
.y1c8{bottom:157.921701px;}
.y2f{bottom:159.244896px;}
.y60{bottom:160.117820px;}
.y1b3{bottom:160.666850px;}
.y8f{bottom:161.764771px;}
.y197{bottom:162.862970px;}
.y93{bottom:165.184350px;}
.y12d{bottom:165.607980px;}
.y14b{bottom:168.624715px;}
.ye0{bottom:170.000219px;}
.y2e{bottom:173.796839px;}
.y10d{bottom:173.843428px;}
.y16c{bottom:173.843568px;}
.yb9{bottom:175.765173px;}
.y5f{bottom:176.039688px;}
.y1b2{bottom:176.588717px;}
.y196{bottom:178.510322px;}
.y12c{bottom:181.255332px;}
.y1aa{bottom:181.529987px;}
.y16b{bottom:182.353531px;}
.y8e{bottom:184.549512px;}
.y112{bottom:184.818726px;}
.ydf{bottom:185.922086px;}
.y14a{bottom:187.020286px;}
.y2d{bottom:188.077196px;}
.y1c7{bottom:189.490920px;}
.y5e{bottom:191.687040px;}
.y195{bottom:194.432189px;}
.y149{bottom:194.975082px;}
.yb8{bottom:198.549914px;}
.y8d{bottom:200.197003px;}
.yde{bottom:201.569439px;}
.y2c{bottom:202.629139px;}
.y10c{bottom:203.216528px;}
.ybc{bottom:205.134088px;}
.y1c6{bottom:205.412787px;}
.y1b1{bottom:205.961817px;}
.y5d{bottom:207.608907px;}
.y148{bottom:208.154729px;}
.y194{bottom:210.079542px;}
.y12b{bottom:210.903087px;}
.y16a{bottom:212.824691px;}
.y2b{bottom:217.181221px;}
.yb7{bottom:221.060140px;}
.y8c{bottom:222.981744px;}
.y5c{bottom:223.256259px;}
.y193{bottom:226.001409px;}
.y12a{bottom:226.550439px;}
.y169{bottom:228.746558px;}
.y19b{bottom:230.942678px;}
.ydd{bottom:231.217054px;}
.y2a{bottom:231.461578px;}
.y147{bottom:234.785887px;}
.yb6{bottom:236.982007px;}
.y8b{bottom:238.629097px;}
.y5b{bottom:239.178127px;}
.y1a7{bottom:241.648761px;}
.y129{bottom:242.472306px;}
.y168{bottom:244.393911px;}
.y29{bottom:246.013521px;}
.y10b{bottom:246.589891px;}
.ydc{bottom:246.864406px;}
.yb5{bottom:252.629359px;}
.y8a{bottom:254.550964px;}
.y5a{bottom:254.825479px;}
.y192{bottom:255.374509px;}
.y1a6{bottom:257.570628px;}
.y128{bottom:258.119658px;}
.y167{bottom:260.315778px;}
.y28{bottom:260.565603px;}
.y10a{bottom:262.237243px;}
.ydb{bottom:262.786273px;}
.yb4{bottom:268.551226px;}
.y89{bottom:270.198177px;}
.y59{bottom:270.747346px;}
.y191{bottom:271.296376px;}
.y1a5{bottom:273.217981px;}
.y127{bottom:274.041526px;}
.y27{bottom:275.117686px;}
.y166{bottom:275.963130px;}
.y109{bottom:278.159110px;}
.yda{bottom:278.433625px;}
.y1c5{bottom:284.198579px;}
.y58{bottom:286.394698px;}
.y190{bottom:286.943728px;}
.y1a4{bottom:289.139848px;}
.y26{bottom:289.397903px;}
.y126{bottom:289.688878px;}
.yb3{bottom:291.061453px;}
.y165{bottom:291.884997px;}
.y88{bottom:292.982918px;}
.y108{bottom:293.806463px;}
.yd9{bottom:294.080978px;}
.y1c4{bottom:300.120446px;}
.y57{bottom:302.316566px;}
.y18f{bottom:302.865596px;}
.y1cf{bottom:303.694580px;}
.y25{bottom:303.949985px;}
.y1a3{bottom:304.787200px;}
.y125{bottom:305.610745px;}
.yb2{bottom:306.983320px;}
.y1a9{bottom:307.532210px;}
.y164{bottom:307.532350px;}
.y87{bottom:308.630270px;}
.y107{bottom:309.728330px;}
.yd8{bottom:310.002845px;}
.ye8{bottom:314.669738px;}
.y56{bottom:317.963918px;}
.y24{bottom:318.501928px;}
.y18e{bottom:318.512948px;}
.y146{bottom:321.257958px;}
.y124{bottom:321.258097px;}
.y163{bottom:323.454217px;}
.y86{bottom:324.552137px;}
.yd7{bottom:325.650197px;}
.yb1{bottom:329.493546px;}
.y23{bottom:332.782285px;}
.y55{bottom:333.611270px;}
.y18d{bottom:334.434815px;}
.y145{bottom:337.179825px;}
.y123{bottom:337.179965px;}
.y106{bottom:339.101430px;}
.y162{bottom:339.101569px;}
.y85{bottom:340.199490px;}
.yd6{bottom:341.572064px;}
.yb0{bottom:345.415413px;}
.y22{bottom:347.334228px;}
.y54{bottom:349.533137px;}
.y18c{bottom:350.082167px;}
.y144{bottom:352.827177px;}
.y122{bottom:352.827317px;}
.y105{bottom:355.023297px;}
.y161{bottom:355.023436px;}
.y84{bottom:356.121357px;}
.yd5{bottom:357.219417px;}
.yaf{bottom:361.062626px;}
.y1c3{bottom:361.062765px;}
.y21{bottom:361.886310px;}
.y53{bottom:365.180490px;}
.y18b{bottom:366.004035px;}
.y143{bottom:368.749045px;}
.y121{bottom:368.749184px;}
.y104{bottom:370.670649px;}
.y160{bottom:370.670789px;}
.y83{bottom:371.768709px;}
.yd4{bottom:373.141284px;}
.y20{bottom:376.435603px;}
.y1c2{bottom:376.984633px;}
.y52{bottom:381.102357px;}
.y18a{bottom:381.651387px;}
.yae{bottom:383.847367px;}
.y142{bottom:384.396397px;}
.y120{bottom:384.396536px;}
.y103{bottom:386.592516px;}
.y15f{bottom:386.592656px;}
.y82{bottom:387.690576px;}
.yd3{bottom:388.788636px;}
.y1f{bottom:392.357470px;}
.y1c1{bottom:392.631985px;}
.y51{bottom:396.749709px;}
.y189{bottom:397.573254px;}
.yad{bottom:399.494859px;}
.y141{bottom:400.318264px;}
.y11f{bottom:400.318404px;}
.y102{bottom:402.239869px;}
.y15e{bottom:402.240008px;}
.y81{bottom:403.337929px;}
.yd2{bottom:404.710503px;}
.y1e{bottom:408.004822px;}
.y1c0{bottom:408.553852px;}
.y50{bottom:412.671576px;}
.y188{bottom:413.220606px;}
.y11e{bottom:415.965616px;}
.y1b0{bottom:415.965756px;}
.y101{bottom:418.161736px;}
.y15d{bottom:418.161875px;}
.y80{bottom:419.259796px;}
.yd1{bottom:420.357856px;}
.yac{bottom:422.279600px;}
.y1d{bottom:423.926689px;}
.y1bf{bottom:424.201204px;}
.y1ce{bottom:427.769899px;}
.y4f{bottom:428.318929px;}
.y187{bottom:429.142474px;}
.y11d{bottom:431.887484px;}
.y1af{bottom:431.887623px;}
.y100{bottom:433.809088px;}
.y15c{bottom:433.809228px;}
.y7f{bottom:434.907148px;}
.yd0{bottom:436.279723px;}
.yab{bottom:437.926952px;}
.y1c{bottom:439.574042px;}
.y4e{bottom:444.240796px;}
.y186{bottom:444.789826px;}
.y11c{bottom:447.534836px;}
.y140{bottom:447.534975px;}
.yff{bottom:449.730955px;}
.y15b{bottom:449.731095px;}
.y7e{bottom:450.829015px;}
.ycf{bottom:451.927075px;}
.y14e{bottom:453.302579px;}
.yaa{bottom:453.848819px;}
.y1b{bottom:455.495909px;}
.y4d{bottom:459.888148px;}
.y185{bottom:460.711693px;}
.y11b{bottom:463.456703px;}
.y13f{bottom:463.456843px;}
.yfe{bottom:465.378308px;}
.y7d{bottom:466.476368px;}
.yce{bottom:467.848942px;}
.y1be{bottom:469.496172px;}
.y1a{bottom:471.143261px;}
.y1a2{bottom:475.596423px;}
.y4c{bottom:475.810015px;}
.ya9{bottom:476.359045px;}
.y11a{bottom:479.104055px;}
.y13e{bottom:479.104195px;}
.yfd{bottom:481.300175px;}
.y7c{bottom:482.398235px;}
.ycd{bottom:483.496295px;}
.y1bd{bottom:485.418039px;}
.y19{bottom:487.065128px;}
.y1a1{bottom:491.243775px;}
.y4b{bottom:491.457368px;}
.ya8{bottom:492.280913px;}
.y119{bottom:495.025923px;}
.y13d{bottom:495.026062px;}
.yfc{bottom:496.947527px;}
.y7b{bottom:498.045587px;}
.ycc{bottom:499.418162px;}
.y1bc{bottom:501.065391px;}
.y18{bottom:502.712481px;}
.y1cd{bottom:504.631296px;}
.y1a0{bottom:507.165643px;}
.y4a{bottom:507.379235px;}
.y184{bottom:507.928265px;}
.y118{bottom:510.673275px;}
.y13c{bottom:510.673414px;}
.yfb{bottom:512.869394px;}
.y173{bottom:513.139725px;}
.y7a{bottom:513.967454px;}
.ya7{bottom:514.791139px;}
.ycb{bottom:515.065514px;}
.y17{bottom:518.634348px;}
.y19f{bottom:522.812995px;}
.y49{bottom:523.026587px;}
.y117{bottom:526.595142px;}
.y13b{bottom:526.595282px;}
.yfa{bottom:528.516747px;}
.y79{bottom:529.614807px;}
.ya6{bottom:530.713006px;}
.yca{bottom:530.987381px;}
.y16{bottom:534.281561px;}
.ybb{bottom:534.556215px;}
.y183{bottom:537.575880px;}
.y19e{bottom:538.734862px;}
.y48{bottom:538.948315px;}
.y116{bottom:542.242494px;}
.y13a{bottom:542.242634px;}
.yf9{bottom:544.438614px;}
.y78{bottom:545.536674px;}
.ya5{bottom:546.360219px;}
.y132{bottom:547.458418px;}
.y15{bottom:550.203428px;}
.y182{bottom:553.223232px;}
.y19d{bottom:554.382214px;}
.y47{bottom:554.595667px;}
.y1ae{bottom:557.127364px;}
.y115{bottom:558.164362px;}
.y15a{bottom:558.164501px;}
.yc9{bottom:560.360481px;}
.y77{bottom:561.184026px;}
.y14{bottom:565.850780px;}
.ya4{bottom:569.144960px;}
.y181{bottom:569.145099px;}
.y46{bottom:570.517534px;}
.y139{bottom:571.890249px;}
.yf8{bottom:573.811714px;}
.y159{bottom:573.811853px;}
.y19c{bottom:574.635398px;}
.y76{bottom:577.105893px;}
.y1b7{bottom:579.027498px;}
.ya3{bottom:584.792312px;}
.y180{bottom:584.792451px;}
.y45{bottom:586.132107px;}
.y138{bottom:587.537601px;}
.yf7{bottom:589.733581px;}
.y158{bottom:589.733721px;}
.y75{bottom:592.753246px;}
.y44{bottom:600.412324px;}
.ya2{bottom:600.714179px;}
.y17f{bottom:600.714319px;}
.y13{bottom:602.361269px;}
.y1ad{bottom:603.459329px;}
.y137{bottom:603.459468px;}
.yc8{bottom:604.005569px;}
.yf6{bottom:605.380933px;}
.y157{bottom:605.381073px;}
.y74{bottom:608.675113px;}
.y43{bottom:614.964407px;}
.y17e{bottom:616.361531px;}
.y1ac{bottom:619.106681px;}
.y136{bottom:619.106821px;}
.yc7{bottom:621.028286px;}
.yf5{bottom:621.302801px;}
.y156{bottom:621.302940px;}
.ya1{bottom:623.224405px;}
.y73{bottom:624.322465px;}
.y42{bottom:629.516489px;}
.y12{bottom:631.456785px;}
.y17d{bottom:632.283399px;}
.y1ab{bottom:635.028548px;}
.y135{bottom:635.028688px;}
.yf4{bottom:636.950153px;}
.y155{bottom:636.950292px;}
.yc6{bottom:638.322728px;}
.ya0{bottom:639.146273px;}
.y72{bottom:640.244332px;}
.y41{bottom:643.796706px;}
.y11{bottom:644.636572px;}
.y17c{bottom:647.930751px;}
.y134{bottom:650.675901px;}
.yf3{bottom:652.872020px;}
.y154{bottom:652.872160px;}
.y9f{bottom:654.793625px;}
.yc5{bottom:655.346839px;}
.y71{bottom:655.891685px;}
.y111{bottom:656.166339px;}
.y40{bottom:658.348789px;}
.y10{bottom:659.461913px;}
.y17b{bottom:663.852618px;}
.y133{bottom:666.597768px;}
.yf2{bottom:668.519372px;}
.y1bb{bottom:668.519512px;}
.y9e{bottom:670.715492px;}
.y70{bottom:671.813552px;}
.yc4{bottom:672.637097px;}
.y3f{bottom:672.900731px;}
.yf{bottom:672.911751px;}
.y17a{bottom:679.499971px;}
.y114{bottom:682.245120px;}
.y153{bottom:682.245260px;}
.y1a8{bottom:683.068665px;}
.yf1{bottom:684.441240px;}
.y1ba{bottom:684.441379px;}
.ye{bottom:686.362984px;}
.y3e{bottom:687.452814px;}
.y6f{bottom:687.460904px;}
.ye5{bottom:689.382509px;}
.y9d{bottom:693.225718px;}
.y179{bottom:695.421838px;}
.ye6{bottom:698.154900px;}
.y113{bottom:698.166987px;}
.y152{bottom:698.167127px;}
.y1b9{bottom:700.088731px;}
.y3d{bottom:701.733031px;}
.yd{bottom:702.284851px;}
.y6e{bottom:703.097237px;}
.yc3{bottom:704.206316px;}
.y9c{bottom:709.147585px;}
.y178{bottom:711.069190px;}
.yf0{bottom:713.814340px;}
.y151{bottom:713.814479px;}
.y1b8{bottom:716.010599px;}
.y3c{bottom:716.285114px;}
.y6d{bottom:717.649319px;}
.yc{bottom:717.932203px;}
.y1cc{bottom:719.304778px;}
.y9b{bottom:724.794938px;}
.y177{bottom:726.991057px;}
.yef{bottom:729.736207px;}
.y150{bottom:729.736346px;}
.y3b{bottom:730.834406px;}
.y1d3{bottom:731.657951px;}
.y6c{bottom:731.929537px;}
.yb{bottom:733.854071px;}
.y176{bottom:742.638410px;}
.yee{bottom:745.383559px;}
.y14f{bottom:745.383699px;}
.y6b{bottom:746.481619px;}
.y3a{bottom:746.756273px;}
.y9a{bottom:747.579679px;}
.y1d2{bottom:747.579818px;}
.ya{bottom:749.501423px;}
.y175{bottom:758.560277px;}
.yed{bottom:761.305426px;}
.y6a{bottom:761.305566px;}
.y39{bottom:762.403626px;}
.y99{bottom:763.227031px;}
.y1d1{bottom:763.227170px;}
.y172{bottom:763.501546px;}
.y9{bottom:765.423290px;}
.yc2{bottom:770.089905px;}
.yec{bottom:776.952779px;}
.y69{bottom:776.952918px;}
.y38{bottom:778.325493px;}
.y98{bottom:779.149038px;}
.y8{bottom:781.070642px;}
.yc1{bottom:786.011772px;}
.y174{bottom:787.933377px;}
.yeb{bottom:792.874646px;}
.y68{bottom:792.874785px;}
.y37{bottom:793.972845px;}
.y1d0{bottom:794.796390px;}
.y7{bottom:796.992510px;}
.y1d4{bottom:800.012174px;}
.yc0{bottom:801.659124px;}
.y97{bottom:801.659264px;}
.yea{bottom:808.521998px;}
.y67{bottom:808.522138px;}
.y36{bottom:809.894712px;}
.y6{bottom:812.639862px;}
.y96{bottom:817.581131px;}
.y95{bottom:823.406868px;}
.ybf{bottom:824.443865px;}
.y66{bottom:824.444005px;}
.y35{bottom:825.542065px;}
.y5{bottom:835.424603px;}
.y94{bottom:839.328735px;}
.ybe{bottom:840.091218px;}
.y65{bottom:840.091357px;}
.y34{bottom:841.463932px;}
.ybd{bottom:856.013085px;}
.y64{bottom:856.013224px;}
.y33{bottom:857.111145px;}
.y3{bottom:904.602371px;}
.h13{height:11.255393px;}
.h15{height:26.014045px;}
.h8{height:31.259318px;}
.hc{height:33.633443px;}
.hd{height:34.309007px;}
.h6{height:37.370493px;}
.h7{height:38.121119px;}
.h9{height:39.502809px;}
.h10{height:43.887542px;}
.h3{height:44.061729px;}
.h4{height:47.381281px;}
.h11{height:48.157418px;}
.hb{height:48.174157px;}
.he{height:48.174715px;}
.h12{height:48.185316px;}
.h5{height:48.763935px;}
.ha{height:48.764493px;}
.h14{height:57.050319px;}
.h16{height:57.050877px;}
.hf{height:935.133600px;}
.h2{height:967.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:30.196650px;}
.w3{width:653.208900px;}
.w2{width:670.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x10{left:11.850182px;}
.x2{left:41.327891px;}
.x11{left:69.944401px;}
.xb{left:76.561216px;}
.xa{left:83.452410px;}
.x3{left:92.986500px;}
.x12{left:99.694405px;}
.x7{left:109.228495px;}
.x1{left:111.000000px;}
.x9{left:120.534090px;}
.x4{left:125.420442px;}
.xd{left:128.682929px;}
.x6{left:272.459717px;}
.xc{left:287.338901px;}
.x5{left:336.189590px;}
.x13{left:575.846723px;}
.x14{left:579.278160px;}
.xe{left:589.080632px;}
.x15{left:590.150236px;}
.x8{left:612.025785px;}
.xf{left:688.230450px;}
@media print{
.v3{vertical-align:-22.449223pt;}
.v2{vertical-align:-18.545010pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.449223pt;}
.ls22{letter-spacing:-4.099423pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000397pt;}
.ls25{letter-spacing:0.000496pt;}
.ls12{letter-spacing:0.007241pt;}
.ls1b{letter-spacing:0.007638pt;}
.ls35{letter-spacing:0.007737pt;}
.ls1{letter-spacing:0.008035pt;}
.ls1e{letter-spacing:0.008134pt;}
.lsb{letter-spacing:0.008531pt;}
.ls20{letter-spacing:0.008630pt;}
.ls21{letter-spacing:0.012498pt;}
.ls13{letter-spacing:0.013887pt;}
.ls1f{letter-spacing:0.022616pt;}
.ls1c{letter-spacing:0.024401pt;}
.ls1d{letter-spacing:0.037792pt;}
.ls2b{letter-spacing:0.040669pt;}
.ls46{letter-spacing:0.097605pt;}
.ls0{letter-spacing:0.142341pt;}
.ls2f{letter-spacing:0.160073pt;}
.ls40{letter-spacing:0.186482pt;}
.ls19{letter-spacing:0.190330pt;}
.ls41{letter-spacing:0.200091pt;}
.ls8{letter-spacing:0.219612pt;}
.ls3d{letter-spacing:0.240109pt;}
.ls2e{letter-spacing:0.280127pt;}
.ls23{letter-spacing:0.288912pt;}
.ls18{letter-spacing:0.304529pt;}
.lsf{letter-spacing:0.307457pt;}
.ls3b{letter-spacing:0.320145pt;}
.ls1a{letter-spacing:0.342595pt;}
.ls6{letter-spacing:0.351379pt;}
.ls3e{letter-spacing:0.360164pt;}
.ls10{letter-spacing:0.380661pt;}
.lse{letter-spacing:0.390223pt;}
.lsc{letter-spacing:0.390421pt;}
.lsd{letter-spacing:0.390719pt;}
.ls5{letter-spacing:0.395302pt;}
.ls2d{letter-spacing:0.400182pt;}
.ls37{letter-spacing:0.418719pt;}
.ls2{letter-spacing:0.418727pt;}
.ls16{letter-spacing:0.439224pt;}
.ls3f{letter-spacing:0.440200pt;}
.ls30{letter-spacing:0.446862pt;}
.ls3c{letter-spacing:0.480218pt;}
.ls9{letter-spacing:0.483146pt;}
.ls17{letter-spacing:0.494859pt;}
.ls4{letter-spacing:0.527069pt;}
.ls31{letter-spacing:0.545558pt;}
.ls7{letter-spacing:0.614913pt;}
.ls32{letter-spacing:2.106351pt;}
.ls28{letter-spacing:2.626559pt;}
.ls26{letter-spacing:2.638022pt;}
.ls38{letter-spacing:2.963869pt;}
.ls47{letter-spacing:3.025765pt;}
.ls42{letter-spacing:3.246071pt;}
.ls43{letter-spacing:3.246567pt;}
.ls44{letter-spacing:3.660199pt;}
.ls24{letter-spacing:4.050621pt;}
.ls34{letter-spacing:4.767186pt;}
.ls33{letter-spacing:4.768178pt;}
.ls48{letter-spacing:8.426890pt;}
.ls36{letter-spacing:9.208030pt;}
.ls4a{letter-spacing:9.544788pt;}
.ls49{letter-spacing:9.545284pt;}
.ls45{letter-spacing:11.376872pt;}
.ls29{letter-spacing:12.669349pt;}
.ls2a{letter-spacing:12.669845pt;}
.ls15{letter-spacing:15.336632pt;}
.ls39{letter-spacing:17.154333pt;}
.ls3a{letter-spacing:17.155325pt;}
.ls27{letter-spacing:19.069242pt;}
.lsa{letter-spacing:19.721154pt;}
.ls2c{letter-spacing:34.535667pt;}
.ls11{letter-spacing:631.360088pt;}
.ws5{word-spacing:-12.591086pt;}
.ws0{word-spacing:-12.200665pt;}
.wse{word-spacing:-11.375900pt;}
.ws2{word-spacing:-11.200210pt;}
.wsd{word-spacing:-10.324690pt;}
.ws1{word-spacing:-9.935245pt;}
.ws4{word-spacing:-9.897179pt;}
.ws8{word-spacing:-9.859113pt;}
.ws6{word-spacing:-9.821047pt;}
.ws7{word-spacing:-9.706849pt;}
.wsa{word-spacing:-9.516518pt;}
.wsb{word-spacing:-9.317403pt;}
.ws9{word-spacing:-8.101241pt;}
.wsc{word-spacing:-8.052439pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-20.179661pt;}
._12{margin-left:-18.647734pt;}
._18{margin-left:-4.846159pt;}
._c{margin-left:-1.010215pt;}
._b{width:1.122461pt;}
._6{width:2.098514pt;}
._5{width:3.464989pt;}
._a{width:4.489646pt;}
._d{width:5.885601pt;}
._e{width:6.842331pt;}
._10{width:8.135205pt;}
._7{width:9.565321pt;}
._8{width:10.541374pt;}
._20{width:11.710686pt;}
._1f{width:12.758967pt;}
._16{width:13.893141pt;}
._3{width:14.836008pt;}
._9{width:16.641706pt;}
._14{width:17.715365pt;}
._f{width:18.667017pt;}
._11{width:19.721154pt;}
._1b{width:20.834053pt;}
._21{width:21.726547pt;}
._19{width:22.693236pt;}
._1a{width:23.603588pt;}
._1c{width:25.162813pt;}
._17{width:26.275188pt;}
._15{width:27.719910pt;}
._4{width:29.623214pt;}
._1d{width:33.673834pt;}
._1e{width:37.984240pt;}
._2{width:631.360088pt;}
._1{width:675.184776pt;}
._0{width:742.239430pt;}
.fs7{font-size:26.353435pt;}
.fs6{font-size:32.209754pt;}
.fs5{font-size:36.113967pt;}
.fs3{font-size:38.066073pt;}
.fs2{font-size:40.018180pt;}
.fs4{font-size:43.922392pt;}
.fs0{font-size:44.636578pt;}
.fs1{font-size:48.802658pt;}
.ye7{bottom:-0.244335pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:25.649913pt;}
.y4{bottom:42.037489pt;}
.y171{bottom:91.564871pt;}
.y131{bottom:91.572918pt;}
.ye4{bottom:94.988249pt;}
.y92{bottom:95.720413pt;}
.y1cb{bottom:98.404559pt;}
.y110{bottom:100.112528pt;}
.y63{bottom:100.356665pt;}
.y1b6{bottom:100.844692pt;}
.y19a{bottom:102.552785pt;}
.y32{bottom:102.987124pt;}
.y170{bottom:103.030074pt;}
.y130{bottom:103.038133pt;}
.ye3{bottom:109.141020pt;}
.y91{bottom:109.873184pt;}
.y1ca{bottom:112.313317pt;}
.y10f{bottom:114.265299pt;}
.y62{bottom:114.265423pt;}
.y16f{bottom:114.745403pt;}
.y1b5{bottom:114.753450pt;}
.y31{bottom:115.922271pt;}
.y199{bottom:116.705556pt;}
.y12f{bottom:119.389702pt;}
.ye2{bottom:123.049777pt;}
.y14d{bottom:126.458028pt;}
.y16e{bottom:126.460756pt;}
.y1c9{bottom:126.466088pt;}
.y12e{bottom:126.953990pt;}
.y10e{bottom:128.174057pt;}
.yba{bottom:128.174181pt;}
.y61{bottom:128.418194pt;}
.y30{bottom:128.615835pt;}
.y1b4{bottom:128.906220pt;}
.y90{bottom:129.882274pt;}
.y198{bottom:130.614313pt;}
.y1{bottom:132.000000pt;}
.ye9{bottom:132.807953pt;}
.ye1{bottom:137.202548pt;}
.y14c{bottom:138.173394pt;}
.y16d{bottom:138.175998pt;}
.y1c8{bottom:140.374845pt;}
.y2f{bottom:141.551019pt;}
.y60{bottom:142.326951pt;}
.y1b3{bottom:142.814978pt;}
.y8f{bottom:143.790907pt;}
.y197{bottom:144.767084pt;}
.y93{bottom:146.830533pt;}
.y12d{bottom:147.207093pt;}
.y14b{bottom:149.888636pt;}
.ye0{bottom:151.111306pt;}
.y2e{bottom:154.486079pt;}
.y10d{bottom:154.527492pt;}
.y16c{bottom:154.527616pt;}
.yb9{bottom:156.235709pt;}
.y5f{bottom:156.479722pt;}
.y1b2{bottom:156.967749pt;}
.y196{bottom:158.675842pt;}
.y12c{bottom:161.115851pt;}
.y1aa{bottom:161.359988pt;}
.y16b{bottom:162.092028pt;}
.y8e{bottom:164.044010pt;}
.y112{bottom:164.283312pt;}
.ydf{bottom:165.264077pt;}
.y14a{bottom:166.240254pt;}
.y2d{bottom:167.179730pt;}
.y1c7{bottom:168.436374pt;}
.y5e{bottom:170.388480pt;}
.y195{bottom:172.828613pt;}
.y149{bottom:173.311184pt;}
.yb8{bottom:176.488812pt;}
.y8d{bottom:177.952892pt;}
.yde{bottom:179.172834pt;}
.y2c{bottom:180.114790pt;}
.y10c{bottom:180.636914pt;}
.ybc{bottom:182.341411pt;}
.y1c6{bottom:182.589144pt;}
.y1b1{bottom:183.077171pt;}
.y5d{bottom:184.541251pt;}
.y148{bottom:185.026426pt;}
.y194{bottom:186.737370pt;}
.y12b{bottom:187.469410pt;}
.y16a{bottom:189.177503pt;}
.y2b{bottom:193.049974pt;}
.yb7{bottom:196.497902pt;}
.y8c{bottom:198.205995pt;}
.y5c{bottom:198.450008pt;}
.y193{bottom:200.890141pt;}
.y12a{bottom:201.378168pt;}
.y169{bottom:203.330274pt;}
.y19b{bottom:205.282380pt;}
.ydd{bottom:205.526270pt;}
.y2a{bottom:205.743625pt;}
.y147{bottom:208.698567pt;}
.yb6{bottom:210.650673pt;}
.y8b{bottom:212.114753pt;}
.y5b{bottom:212.602779pt;}
.y1a7{bottom:214.798899pt;}
.y129{bottom:215.530939pt;}
.y168{bottom:217.239032pt;}
.y29{bottom:218.678685pt;}
.y10b{bottom:219.191014pt;}
.ydc{bottom:219.435027pt;}
.yb5{bottom:224.559430pt;}
.y8a{bottom:226.267523pt;}
.y5a{bottom:226.511537pt;}
.y192{bottom:226.999563pt;}
.y1a6{bottom:228.951670pt;}
.y128{bottom:229.439696pt;}
.y167{bottom:231.391803pt;}
.y28{bottom:231.613870pt;}
.y10a{bottom:233.099772pt;}
.ydb{bottom:233.587798pt;}
.yb4{bottom:238.712201pt;}
.y89{bottom:240.176157pt;}
.y59{bottom:240.664308pt;}
.y191{bottom:241.152334pt;}
.y1a5{bottom:242.860427pt;}
.y127{bottom:243.592467pt;}
.y27{bottom:244.549054pt;}
.y166{bottom:245.300560pt;}
.y109{bottom:247.252543pt;}
.yda{bottom:247.496556pt;}
.y1c5{bottom:252.620959pt;}
.y58{bottom:254.573065pt;}
.y190{bottom:255.061092pt;}
.y1a4{bottom:257.013198pt;}
.y26{bottom:257.242581pt;}
.y126{bottom:257.501225pt;}
.yb3{bottom:258.721291pt;}
.y165{bottom:259.453331pt;}
.y88{bottom:260.429260pt;}
.y108{bottom:261.161300pt;}
.yd9{bottom:261.405313pt;}
.y1c4{bottom:266.773730pt;}
.y57{bottom:268.725836pt;}
.y18f{bottom:269.213863pt;}
.y1cf{bottom:269.950738pt;}
.y25{bottom:270.177765pt;}
.y1a3{bottom:270.921956pt;}
.y125{bottom:271.653996pt;}
.yb2{bottom:272.874062pt;}
.y1a9{bottom:273.361965pt;}
.y164{bottom:273.362089pt;}
.y87{bottom:274.338018pt;}
.y107{bottom:275.314071pt;}
.yd8{bottom:275.558084pt;}
.ye8{bottom:279.706434pt;}
.y56{bottom:282.634594pt;}
.y24{bottom:283.112825pt;}
.y18e{bottom:283.122620pt;}
.y146{bottom:285.562629pt;}
.y124{bottom:285.562753pt;}
.y163{bottom:287.514860pt;}
.y86{bottom:288.490789pt;}
.yd7{bottom:289.466842pt;}
.yb1{bottom:292.883152pt;}
.y23{bottom:295.806476pt;}
.y55{bottom:296.543351pt;}
.y18d{bottom:297.275391pt;}
.y145{bottom:299.715400pt;}
.y123{bottom:299.715524pt;}
.y106{bottom:301.423493pt;}
.y162{bottom:301.423617pt;}
.y85{bottom:302.399546pt;}
.yd6{bottom:303.619613pt;}
.yb0{bottom:307.035923pt;}
.y22{bottom:308.741536pt;}
.y54{bottom:310.696122pt;}
.y18c{bottom:311.184149pt;}
.y144{bottom:313.624158pt;}
.y122{bottom:313.624282pt;}
.y105{bottom:315.576264pt;}
.y161{bottom:315.576388pt;}
.y84{bottom:316.552317pt;}
.yd5{bottom:317.528370pt;}
.yaf{bottom:320.944556pt;}
.y1c3{bottom:320.944680pt;}
.y21{bottom:321.676720pt;}
.y53{bottom:324.604880pt;}
.y18b{bottom:325.336920pt;}
.y143{bottom:327.776929pt;}
.y121{bottom:327.777052pt;}
.y104{bottom:329.485022pt;}
.y160{bottom:329.485146pt;}
.y83{bottom:330.461075pt;}
.yd4{bottom:331.681141pt;}
.y20{bottom:334.609425pt;}
.y1c2{bottom:335.097451pt;}
.y52{bottom:338.757651pt;}
.y18a{bottom:339.245677pt;}
.yae{bottom:341.197660pt;}
.y142{bottom:341.685686pt;}
.y120{bottom:341.685810pt;}
.y103{bottom:343.637792pt;}
.y15f{bottom:343.637916pt;}
.y82{bottom:344.613846pt;}
.yd3{bottom:345.589899pt;}
.y1f{bottom:348.762196pt;}
.y1c1{bottom:349.006209pt;}
.y51{bottom:352.666408pt;}
.y189{bottom:353.398448pt;}
.yad{bottom:355.106541pt;}
.y141{bottom:355.838457pt;}
.y11f{bottom:355.838581pt;}
.y102{bottom:357.546550pt;}
.y15e{bottom:357.546674pt;}
.y81{bottom:358.522603pt;}
.yd2{bottom:359.742670pt;}
.y1e{bottom:362.670953pt;}
.y1c0{bottom:363.158980pt;}
.y50{bottom:366.819179pt;}
.y188{bottom:367.307206pt;}
.y11e{bottom:369.747215pt;}
.y1b0{bottom:369.747339pt;}
.y101{bottom:371.699321pt;}
.y15d{bottom:371.699445pt;}
.y80{bottom:372.675374pt;}
.yd1{bottom:373.651427pt;}
.yac{bottom:375.359644pt;}
.y1d{bottom:376.823724pt;}
.y1bf{bottom:377.067737pt;}
.y1ce{bottom:380.239910pt;}
.y4f{bottom:380.727937pt;}
.y187{bottom:381.459976pt;}
.y11d{bottom:383.899985pt;}
.y1af{bottom:383.900109pt;}
.y100{bottom:385.608078pt;}
.y15c{bottom:385.608202pt;}
.y7f{bottom:386.584132pt;}
.yd0{bottom:387.804198pt;}
.yab{bottom:389.268402pt;}
.y1c{bottom:390.732482pt;}
.y4e{bottom:394.880707pt;}
.y186{bottom:395.368734pt;}
.y11c{bottom:397.808743pt;}
.y140{bottom:397.808867pt;}
.yff{bottom:399.760849pt;}
.y15b{bottom:399.760973pt;}
.y7e{bottom:400.736902pt;}
.ycf{bottom:401.712956pt;}
.y14e{bottom:402.935626pt;}
.yaa{bottom:403.421173pt;}
.y1b{bottom:404.885252pt;}
.y4d{bottom:408.789465pt;}
.y185{bottom:409.521505pt;}
.y11b{bottom:411.961514pt;}
.y13f{bottom:411.961638pt;}
.yfe{bottom:413.669607pt;}
.y7d{bottom:414.645660pt;}
.yce{bottom:415.865727pt;}
.y1be{bottom:417.329930pt;}
.y1a{bottom:418.794010pt;}
.y1a2{bottom:422.752376pt;}
.y4c{bottom:422.942236pt;}
.ya9{bottom:423.430263pt;}
.y11a{bottom:425.870271pt;}
.y13e{bottom:425.870395pt;}
.yfd{bottom:427.822378pt;}
.y7c{bottom:428.798431pt;}
.ycd{bottom:429.774484pt;}
.y1bd{bottom:431.482701pt;}
.y19{bottom:432.946781pt;}
.y1a1{bottom:436.661134pt;}
.y4b{bottom:436.850994pt;}
.ya8{bottom:437.583033pt;}
.y119{bottom:440.023042pt;}
.y13d{bottom:440.023166pt;}
.yfc{bottom:441.731135pt;}
.y7b{bottom:442.707189pt;}
.ycc{bottom:443.927255pt;}
.y1bc{bottom:445.391459pt;}
.y18{bottom:446.855538pt;}
.y1cd{bottom:448.561152pt;}
.y1a0{bottom:450.813905pt;}
.y4a{bottom:451.003764pt;}
.y184{bottom:451.491791pt;}
.y118{bottom:453.931800pt;}
.y13c{bottom:453.931924pt;}
.yfb{bottom:455.883906pt;}
.y173{bottom:456.124200pt;}
.y7a{bottom:456.859959pt;}
.ya7{bottom:457.592123pt;}
.ycb{bottom:457.836013pt;}
.y17{bottom:461.008309pt;}
.y19f{bottom:464.722662pt;}
.y49{bottom:464.912522pt;}
.y117{bottom:468.084571pt;}
.y13b{bottom:468.084695pt;}
.yfa{bottom:469.792664pt;}
.y79{bottom:470.768717pt;}
.ya6{bottom:471.744894pt;}
.yca{bottom:471.988783pt;}
.y16{bottom:474.916943pt;}
.ybb{bottom:475.161080pt;}
.y183{bottom:477.845226pt;}
.y19e{bottom:478.875433pt;}
.y48{bottom:479.065169pt;}
.y116{bottom:481.993328pt;}
.y13a{bottom:481.993452pt;}
.yf9{bottom:483.945435pt;}
.y78{bottom:484.921488pt;}
.ya5{bottom:485.653528pt;}
.y132{bottom:486.629705pt;}
.y15{bottom:489.069714pt;}
.y182{bottom:491.753984pt;}
.y19d{bottom:492.784191pt;}
.y47{bottom:492.973926pt;}
.y1ae{bottom:495.224323pt;}
.y115{bottom:496.146099pt;}
.y15a{bottom:496.146223pt;}
.yc9{bottom:498.098206pt;}
.y77{bottom:498.830245pt;}
.y14{bottom:502.978471pt;}
.ya4{bottom:505.906631pt;}
.y181{bottom:505.906755pt;}
.y46{bottom:507.126697pt;}
.y139{bottom:508.346888pt;}
.yf8{bottom:510.054857pt;}
.y159{bottom:510.054981pt;}
.y19c{bottom:510.787021pt;}
.y76{bottom:512.983016pt;}
.y1b7{bottom:514.691109pt;}
.ya3{bottom:519.815388pt;}
.y180{bottom:519.815512pt;}
.y45{bottom:521.006317pt;}
.y138{bottom:522.255645pt;}
.yf7{bottom:524.207628pt;}
.y158{bottom:524.207752pt;}
.y75{bottom:526.891774pt;}
.y44{bottom:533.699844pt;}
.ya2{bottom:533.968159pt;}
.y17f{bottom:533.968283pt;}
.y13{bottom:535.432239pt;}
.y1ad{bottom:536.408292pt;}
.y137{bottom:536.408416pt;}
.yc8{bottom:536.893839pt;}
.yf6{bottom:538.116385pt;}
.y157{bottom:538.116509pt;}
.y74{bottom:541.044545pt;}
.y43{bottom:546.635028pt;}
.y17e{bottom:547.876917pt;}
.y1ac{bottom:550.317050pt;}
.y136{bottom:550.317174pt;}
.yc7{bottom:552.025143pt;}
.yf5{bottom:552.269156pt;}
.y156{bottom:552.269280pt;}
.ya1{bottom:553.977249pt;}
.y73{bottom:554.953302pt;}
.y42{bottom:559.570212pt;}
.y12{bottom:561.294920pt;}
.y17d{bottom:562.029688pt;}
.y1ab{bottom:564.469821pt;}
.y135{bottom:564.469945pt;}
.yf4{bottom:566.177914pt;}
.y155{bottom:566.178038pt;}
.yc6{bottom:567.397980pt;}
.ya0{bottom:568.130020pt;}
.y72{bottom:569.106073pt;}
.y41{bottom:572.263739pt;}
.y11{bottom:573.010286pt;}
.y17c{bottom:575.938445pt;}
.y134{bottom:578.378578pt;}
.yf3{bottom:580.330685pt;}
.y154{bottom:580.330809pt;}
.y9f{bottom:582.038778pt;}
.yc5{bottom:582.530524pt;}
.y71{bottom:583.014831pt;}
.y111{bottom:583.258968pt;}
.y40{bottom:585.198923pt;}
.y10{bottom:586.188367pt;}
.y17b{bottom:590.091216pt;}
.y133{bottom:592.531349pt;}
.yf2{bottom:594.239442pt;}
.y1bb{bottom:594.239566pt;}
.y9e{bottom:596.191548pt;}
.y70{bottom:597.167602pt;}
.yc4{bottom:597.899642pt;}
.y3f{bottom:598.133984pt;}
.yf{bottom:598.143779pt;}
.y17a{bottom:603.999974pt;}
.y114{bottom:606.440107pt;}
.y153{bottom:606.440231pt;}
.y1a8{bottom:607.172147pt;}
.yf1{bottom:608.392213pt;}
.y1ba{bottom:608.392337pt;}
.ye{bottom:610.100430pt;}
.y3e{bottom:611.069168pt;}
.y6f{bottom:611.076359pt;}
.ye5{bottom:612.784452pt;}
.y9d{bottom:616.200638pt;}
.y179{bottom:618.152745pt;}
.ye6{bottom:620.582133pt;}
.y113{bottom:620.592878pt;}
.y152{bottom:620.593002pt;}
.y1b9{bottom:622.301095pt;}
.y3d{bottom:623.762695pt;}
.yd{bottom:624.253201pt;}
.y6e{bottom:624.975322pt;}
.yc3{bottom:625.961170pt;}
.y9c{bottom:630.353409pt;}
.y178{bottom:632.061502pt;}
.yf0{bottom:634.501635pt;}
.y151{bottom:634.501759pt;}
.y1b8{bottom:636.453865pt;}
.y3c{bottom:636.697879pt;}
.y6d{bottom:637.910506pt;}
.yc{bottom:638.161958pt;}
.y1cc{bottom:639.382025pt;}
.y9b{bottom:644.262167pt;}
.y177{bottom:646.214273pt;}
.yef{bottom:648.654406pt;}
.y150{bottom:648.654530pt;}
.y3b{bottom:649.630583pt;}
.y1d3{bottom:650.362623pt;}
.y6c{bottom:650.604033pt;}
.yb{bottom:652.314729pt;}
.y176{bottom:660.123031pt;}
.yee{bottom:662.563164pt;}
.y14f{bottom:662.563288pt;}
.y6b{bottom:663.539217pt;}
.y3a{bottom:663.783354pt;}
.y9a{bottom:664.515270pt;}
.y1d2{bottom:664.515394pt;}
.ya{bottom:666.223487pt;}
.y175{bottom:674.275802pt;}
.yed{bottom:676.715934pt;}
.y6a{bottom:676.716058pt;}
.y39{bottom:677.692112pt;}
.y99{bottom:678.424028pt;}
.y1d1{bottom:678.424151pt;}
.y172{bottom:678.668041pt;}
.y9{bottom:680.376258pt;}
.yc2{bottom:684.524360pt;}
.yec{bottom:690.624692pt;}
.y69{bottom:690.624816pt;}
.y38{bottom:691.844882pt;}
.y98{bottom:692.576922pt;}
.y8{bottom:694.285015pt;}
.yc1{bottom:698.677131pt;}
.y174{bottom:700.385224pt;}
.yeb{bottom:704.777463pt;}
.y68{bottom:704.777587pt;}
.y37{bottom:705.753640pt;}
.y1d0{bottom:706.485680pt;}
.y7{bottom:708.437786pt;}
.y1d4{bottom:711.121932pt;}
.yc0{bottom:712.585888pt;}
.y97{bottom:712.586012pt;}
.yea{bottom:718.686220pt;}
.y67{bottom:718.686344pt;}
.y36{bottom:719.906411pt;}
.y6{bottom:722.346544pt;}
.y96{bottom:726.738783pt;}
.y95{bottom:731.917216pt;}
.ybf{bottom:732.838991pt;}
.y66{bottom:732.839115pt;}
.y35{bottom:733.815169pt;}
.y5{bottom:742.599647pt;}
.y94{bottom:746.069986pt;}
.ybe{bottom:746.747749pt;}
.y65{bottom:746.747873pt;}
.y34{bottom:747.967939pt;}
.ybd{bottom:760.900520pt;}
.y64{bottom:760.900644pt;}
.y33{bottom:761.876573pt;}
.y3{bottom:804.090996pt;}
.h13{height:10.004793pt;}
.h15{height:23.123595pt;}
.h8{height:27.786060pt;}
.hc{height:29.896394pt;}
.hd{height:30.496895pt;}
.h6{height:33.218216pt;}
.h7{height:33.885439pt;}
.h9{height:35.113608pt;}
.h10{height:39.011148pt;}
.h3{height:39.165981pt;}
.h4{height:42.116694pt;}
.h11{height:42.806594pt;}
.hb{height:42.821473pt;}
.he{height:42.821969pt;}
.h12{height:42.831392pt;}
.h5{height:43.345720pt;}
.ha{height:43.346216pt;}
.h14{height:50.711395pt;}
.h16{height:50.711891pt;}
.hf{height:831.229867pt;}
.h2{height:860.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:26.841467pt;}
.w3{width:580.630133pt;}
.w2{width:596.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x10{left:10.533495pt;}
.x2{left:36.735903pt;}
.x11{left:62.172801pt;}
.xb{left:68.054414pt;}
.xa{left:74.179920pt;}
.x3{left:82.654667pt;}
.x12{left:88.617249pt;}
.x7{left:97.091996pt;}
.x1{left:98.666667pt;}
.x9{left:107.141413pt;}
.x4{left:111.484837pt;}
.xd{left:114.384826pt;}
.x6{left:242.186415pt;}
.xc{left:255.412357pt;}
.x5{left:298.835192pt;}
.x13{left:511.863754pt;}
.x14{left:514.913920pt;}
.xe{left:523.627228pt;}
.x15{left:524.577987pt;}
.x8{left:544.022920pt;}
.xf{left:611.760400pt;}
}




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