
    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_102a0f6e8d885ce3b1fd9f2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_980585d70a33597edcd586df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_1b7acbbd923acf1a94818ec9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_1e953a2fc920002e649a4c8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.783203;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_dd9f0b87fec89d135afc1791.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.783203;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_cb769b95d2e91dbb360f1249.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_4697790766ecd662a4bd46d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_e0d97fd8d4db74b9cbb1438d.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.549805;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_1c016555cec4b1ec37f17ce4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_09058dbf564aaae5520f4b9a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_45300f9d82440b293a9a094d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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;}
.m16{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.216668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216668,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,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);}
.m7{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.263900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263900,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.277775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277775,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.291675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291675,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.305550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305550,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.308825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308825,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.365375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365375,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.593750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593750,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v8{vertical-align:-14.400000px;}
.v7{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v2{vertical-align:2.880000px;}
.v1{vertical-align:21.600000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.ls2b{letter-spacing:-2.094000px;}
.ls40{letter-spacing:-1.908000px;}
.ls29{letter-spacing:-1.440000px;}
.ls4a{letter-spacing:-1.422000px;}
.ls5f{letter-spacing:-0.972000px;}
.ls5e{letter-spacing:-0.936000px;}
.ls7c{letter-spacing:-0.900000px;}
.ls2a{letter-spacing:-0.852000px;}
.ls3e{letter-spacing:-0.720000px;}
.ls4f{letter-spacing:-0.606000px;}
.ls49{letter-spacing:-0.563400px;}
.ls2c{letter-spacing:-0.498000px;}
.ls28{letter-spacing:-0.486600px;}
.ls33{letter-spacing:-0.466800px;}
.ls3b{letter-spacing:-0.360000px;}
.ls57{letter-spacing:-0.322800px;}
.ls83{letter-spacing:-0.234600px;}
.ls84{letter-spacing:-0.219000px;}
.ls37{letter-spacing:-0.208200px;}
.ls2f{letter-spacing:-0.198600px;}
.ls2e{letter-spacing:-0.184200px;}
.ls70{letter-spacing:-0.146400px;}
.ls38{letter-spacing:-0.048600px;}
.ls41{letter-spacing:-0.020400px;}
.ls4c{letter-spacing:-0.020160px;}
.ls3c{letter-spacing:-0.015600px;}
.ls27{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.015840px;}
.ls0{letter-spacing:0.020160px;}
.ls3f{letter-spacing:0.020400px;}
.lsf{letter-spacing:0.033203px;}
.ls51{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.123190px;}
.ls4d{letter-spacing:0.139800px;}
.ls5{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.204000px;}
.ls5c{letter-spacing:0.204861px;}
.ls3d{letter-spacing:0.250800px;}
.ls6c{letter-spacing:0.260613px;}
.ls65{letter-spacing:0.341704px;}
.ls1c{letter-spacing:0.347484px;}
.ls75{letter-spacing:0.351360px;}
.ls1f{letter-spacing:0.360165px;}
.ls6e{letter-spacing:0.430617px;}
.ls45{letter-spacing:0.445800px;}
.ls4{letter-spacing:0.446781px;}
.ls55{letter-spacing:0.449280px;}
.ls6b{letter-spacing:0.460820px;}
.ls6{letter-spacing:0.466560px;}
.ls34{letter-spacing:0.466800px;}
.ls44{letter-spacing:0.470551px;}
.ls3a{letter-spacing:0.486600px;}
.ls74{letter-spacing:0.495360px;}
.ls73{letter-spacing:0.506880px;}
.ls30{letter-spacing:0.507000px;}
.ls72{letter-spacing:0.606720px;}
.ls36{letter-spacing:0.624000px;}
.ls56{letter-spacing:0.629280px;}
.ls2d{letter-spacing:0.630000px;}
.ls50{letter-spacing:0.665280px;}
.ls6a{letter-spacing:0.666720px;}
.ls32{letter-spacing:0.714000px;}
.ls67{letter-spacing:0.715680px;}
.ls1{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.748800px;}
.ls7b{letter-spacing:0.858000px;}
.ls71{letter-spacing:0.864000px;}
.ls7a{letter-spacing:0.936000px;}
.ls78{letter-spacing:0.938880px;}
.ls39{letter-spacing:0.972000px;}
.ls11{letter-spacing:0.973440px;}
.ls16{letter-spacing:0.978023px;}
.ls1e{letter-spacing:1.052029px;}
.ls22{letter-spacing:1.080000px;}
.ls6f{letter-spacing:1.086000px;}
.ls7e{letter-spacing:1.224000px;}
.ls17{letter-spacing:1.246491px;}
.ls4b{letter-spacing:1.422000px;}
.ls20{letter-spacing:1.440000px;}
.ls60{letter-spacing:1.458000px;}
.ls26{letter-spacing:1.460160px;}
.ls5d{letter-spacing:1.493337px;}
.ls1d{letter-spacing:1.620644px;}
.ls53{letter-spacing:1.630179px;}
.ls81{letter-spacing:1.692000px;}
.ls48{letter-spacing:1.735257px;}
.ls7d{letter-spacing:1.770000px;}
.ls35{letter-spacing:1.908000px;}
.ls68{letter-spacing:1.926720px;}
.ls31{letter-spacing:1.944000px;}
.lse{letter-spacing:2.066663px;}
.ls9{letter-spacing:2.109444px;}
.ls66{letter-spacing:2.160000px;}
.ls52{letter-spacing:2.365631px;}
.lsd{letter-spacing:2.490023px;}
.ls23{letter-spacing:2.520000px;}
.ls12{letter-spacing:2.718669px;}
.ls69{letter-spacing:3.600000px;}
.ls64{letter-spacing:3.780000px;}
.ls47{letter-spacing:4.207130px;}
.ls5b{letter-spacing:5.040000px;}
.ls59{letter-spacing:5.862000px;}
.ls46{letter-spacing:6.784080px;}
.ls42{letter-spacing:7.920000px;}
.ls5a{letter-spacing:8.040000px;}
.ls3{letter-spacing:8.072555px;}
.ls43{letter-spacing:9.360000px;}
.ls21{letter-spacing:9.720000px;}
.ls15{letter-spacing:9.933515px;}
.ls54{letter-spacing:10.980000px;}
.lsc{letter-spacing:11.320130px;}
.ls25{letter-spacing:12.240000px;}
.ls19{letter-spacing:13.059283px;}
.ls1a{letter-spacing:13.174834px;}
.ls82{letter-spacing:13.200000px;}
.ls58{letter-spacing:13.680000px;}
.ls61{letter-spacing:15.120000px;}
.lsb{letter-spacing:15.832514px;}
.lsa{letter-spacing:16.499259px;}
.ls13{letter-spacing:16.614811px;}
.ls63{letter-spacing:17.091883px;}
.ls2{letter-spacing:18.000000px;}
.ls79{letter-spacing:18.360000px;}
.ls14{letter-spacing:18.605744px;}
.ls62{letter-spacing:19.440000px;}
.ls80{letter-spacing:24.720000px;}
.ls7f{letter-spacing:25.560000px;}
.ls6d{letter-spacing:25.680907px;}
.ls77{letter-spacing:31.320000px;}
.ls76{letter-spacing:40.786560px;}
.ls10{letter-spacing:42.278507px;}
.ls1b{letter-spacing:192.148512px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws2e{word-spacing:-60.480000px;}
.ws30{word-spacing:-36.600000px;}
.ws9{word-spacing:-17.064000px;}
.wsd{word-spacing:-17.028000px;}
.ws2d{word-spacing:-16.578000px;}
.ws13{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.542000px;}
.ws27{word-spacing:-16.206000px;}
.ws11{word-spacing:-16.092000px;}
.ws2c{word-spacing:-16.056000px;}
.ws1b{word-spacing:-15.996600px;}
.ws2a{word-spacing:-15.984000px;}
.ws8{word-spacing:-15.627000px;}
.ws12{word-spacing:-15.606600px;}
.wsc{word-spacing:-15.586800px;}
.ws21{word-spacing:-15.324000px;}
.ws20{word-spacing:-15.259800px;}
.ws17{word-spacing:-15.140400px;}
.ws1e{word-spacing:-15.140160px;}
.ws7{word-spacing:-15.120000px;}
.ws1f{word-spacing:-15.099840px;}
.ws19{word-spacing:-15.099600px;}
.ws29{word-spacing:-14.973600px;}
.ws24{word-spacing:-14.797200px;}
.wsb{word-spacing:-14.653200px;}
.ws0{word-spacing:-14.633400px;}
.ws22{word-spacing:-14.514000px;}
.ws5{word-spacing:-14.310000px;}
.ws25{word-spacing:-14.184000px;}
.ws26{word-spacing:-14.148000px;}
.ws32{word-spacing:-14.040000px;}
.ws1c{word-spacing:-13.698000px;}
.ws1{word-spacing:-13.680000px;}
.ws34{word-spacing:-13.572000px;}
.ws6{word-spacing:-13.495800px;}
.wse{word-spacing:-13.305600px;}
.ws33{word-spacing:-13.302000px;}
.ws18{word-spacing:-13.212000px;}
.ws4{word-spacing:-13.182000px;}
.ws2f{word-spacing:-13.104000px;}
.ws31{word-spacing:-12.600000px;}
.ws23{word-spacing:-12.545280px;}
.ws15{word-spacing:-12.130800px;}
.ws2{word-spacing:-11.880000px;}
.ws14{word-spacing:-11.864400px;}
.ws36{word-spacing:-11.661000px;}
.ws35{word-spacing:-11.645400px;}
.ws16{word-spacing:-11.160000px;}
.ws28{word-spacing:-10.440000px;}
.wsa{word-spacing:-10.434000px;}
.ws10{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.187200px;}
.ws2b{word-spacing:-8.553600px;}
.ws1a{word-spacing:0.000000px;}
._2a{margin-left:-12.686880px;}
._26{margin-left:-7.606080px;}
._3{margin-left:-5.400000px;}
._19{margin-left:-4.340995px;}
._4{margin-left:-3.339753px;}
._0{margin-left:-1.451399px;}
._1{width:1.501678px;}
._2{width:2.744521px;}
._8{width:3.927491px;}
._9{width:4.984566px;}
._1f{width:5.986935px;}
._25{width:7.378802px;}
._1a{width:8.639992px;}
._1b{width:9.683107px;}
._15{width:10.800000px;}
._5{width:12.531044px;}
._28{width:14.097826px;}
._13{width:15.154040px;}
._6{width:16.458805px;}
._7{width:17.529186px;}
._24{width:18.609780px;}
._23{width:19.983089px;}
._16{width:21.566408px;}
._18{width:23.280383px;}
._1c{width:24.523079px;}
._12{width:26.199075px;}
._c{width:27.663368px;}
._d{width:28.880160px;}
._1e{width:30.591063px;}
._30{width:31.599337px;}
._27{width:32.652726px;}
._17{width:34.572000px;}
._1d{width:36.026396px;}
._2e{width:37.226880px;}
._2c{width:38.834279px;}
._2b{width:40.127040px;}
._a{width:46.260726px;}
._b{width:47.600642px;}
._2f{width:48.603237px;}
._2d{width:52.904519px;}
._11{width:55.170752px;}
._10{width:56.632704px;}
._e{width:57.687532px;}
._20{width:62.719442px;}
._21{width:63.874923px;}
._f{width:70.431684px;}
._22{width:74.835165px;}
._14{width:91.566839px;}
._29{width:93.063918px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(51,51,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:119.520000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:0.395970px;}
.y4{bottom:0.396000px;}
.yb{bottom:2.520000px;}
.yd{bottom:13.320000px;}
.y8{bottom:13.356000px;}
.y7{bottom:15.120000px;}
.y5b{bottom:15.120030px;}
.ya{bottom:16.560000px;}
.y3{bottom:19.116000px;}
.y6{bottom:28.800000px;}
.y5a{bottom:28.800030px;}
.y9{bottom:30.240000px;}
.y5{bottom:42.480000px;}
.y59{bottom:42.480030px;}
.y6f{bottom:48.990000px;}
.yc2{bottom:81.396000px;}
.y91{bottom:82.116000px;}
.y6d{bottom:83.916000px;}
.y9e{bottom:84.636000px;}
.yaa{bottom:91.116000px;}
.ye3{bottom:96.516000px;}
.yc1{bottom:99.756000px;}
.y44{bottom:100.116000px;}
.y6c{bottom:101.916000px;}
.y9d{bottom:102.636000px;}
.ya9{bottom:109.476000px;}
.y43{bottom:113.796000px;}
.ye2{bottom:114.516000px;}
.y6b{bottom:116.676000px;}
.yc0{bottom:117.756000px;}
.y9c{bottom:120.636000px;}
.y90{bottom:124.596000px;}
.ya8{bottom:127.476000px;}
.y42{bottom:127.836000px;}
.ye1{bottom:132.552000px;}
.ybf{bottom:136.152000px;}
.y9b{bottom:139.032000px;}
.y8f{bottom:142.632000px;}
.ya7{bottom:145.512000px;}
.y11c{bottom:147.312000px;}
.ye0{bottom:150.555000px;}
.ybe{bottom:150.915000px;}
.y41{bottom:153.795000px;}
.y8e{bottom:157.755000px;}
.y11b{bottom:161.715000px;}
.ya6{bottom:163.875000px;}
.y40{bottom:167.475000px;}
.ydf{bottom:168.915000px;}
.y11a{bottom:178.995000px;}
.y3f{bottom:181.155000px;}
.ya5{bottom:186.915000px;}
.y3e{bottom:195.195000px;}
.y119{bottom:196.275000px;}
.yde{bottom:204.915000px;}
.ya4{bottom:207.795000px;}
.y3d{bottom:209.595000px;}
.y6a{bottom:213.195000px;}
.y118{bottom:213.555000px;}
.ydd{bottom:223.275000px;}
.y3c{bottom:226.515000px;}
.y117{bottom:230.835000px;}
.y69{bottom:231.195000px;}
.ydc{bottom:241.275000px;}
.y3b{bottom:241.995000px;}
.y68{bottom:246.315000px;}
.y116{bottom:248.115000px;}
.y3a{bottom:257.475000px;}
.ydb{bottom:259.275000px;}
.y115{bottom:265.065000px;}
.y39{bottom:272.985000px;}
.ybd{bottom:280.185000px;}
.y114{bottom:282.345000px;}
.yda{bottom:285.585000px;}
.y38{bottom:288.465000px;}
.y113{bottom:296.745000px;}
.y112{bottom:312.945000px;}
.y55{bottom:316.185000px;}
.y37{bottom:320.505000px;}
.yd9{bottom:321.945000px;}
.y111{bottom:326.625000px;}
.y54{bottom:334.545000px;}
.y36{bottom:338.865000px;}
.yd8{bottom:339.945000px;}
.ybc{bottom:340.665000px;}
.y8d{bottom:350.745000px;}
.y53{bottom:352.545000px;}
.y110{bottom:354.345000px;}
.y35{bottom:356.865000px;}
.ybb{bottom:358.665000px;}
.y7c{bottom:360.825000px;}
.yd7{bottom:366.225000px;}
.y10f{bottom:368.025000px;}
.y8a{bottom:368.745000px;}
.y52{bottom:370.545000px;}
.y8c{bottom:375.585000px;}
.yba{bottom:377.025000px;}
.y10e{bottom:382.065000px;}
.y51{bottom:388.545000px;}
.y89{bottom:390.345000px;}
.y7b{bottom:392.145000px;}
.y8b{bottom:394.305000px;}
.y10d{bottom:395.745000px;}
.yd6{bottom:402.270000px;}
.yb9{bottom:403.350000px;}
.y7a{bottom:406.590000px;}
.y10c{bottom:409.470000px;}
.y50{bottom:414.870000px;}
.yd5{bottom:420.270000px;}
.yb8{bottom:420.630000px;}
.y10b{bottom:423.510000px;}
.y34{bottom:434.310000px;}
.y10a{bottom:437.190000px;}
.yd4{bottom:438.630000px;}
.y109{bottom:450.870000px;}
.y33{bottom:452.670000px;}
.ya3{bottom:453.390000px;}
.yd3{bottom:456.630000px;}
.yb7{bottom:456.990000px;}
.y108{bottom:464.910000px;}
.y88{bottom:468.870000px;}
.y32{bottom:470.670000px;}
.yb6{bottom:471.750000px;}
.ya2{bottom:474.270000px;}
.yd2{bottom:474.630000px;}
.y9a{bottom:476.430000px;}
.y107{bottom:478.590000px;}
.y79{bottom:486.510000px;}
.y87{bottom:487.230000px;}
.y30{bottom:488.670000px;}
.y106{bottom:492.270000px;}
.yd1{bottom:492.990000px;}
.y31{bottom:494.070000px;}
.y6e{bottom:500.910000px;}
.y78{bottom:501.270000px;}
.y86{bottom:501.990000px;}
.y2c{bottom:503.790000px;}
.yd0{bottom:510.990000px;}
.y2f{bottom:512.430000px;}
.y105{bottom:515.670000px;}
.y2a{bottom:522.510000px;}
.ycf{bottom:528.990000px;}
.y2e{bottom:534.060000px;}
.y4f{bottom:535.500000px;}
.y2d{bottom:539.460000px;}
.y2b{bottom:547.020000px;}
.y104{bottom:550.260000px;}
.y4e{bottom:553.500000px;}
.yce{bottom:555.300000px;}
.y29{bottom:559.980000px;}
.y103{bottom:564.300000px;}
.y85{bottom:568.980000px;}
.y4d{bottom:571.500000px;}
.y28{bottom:577.980000px;}
.ycd{bottom:588.060000px;}
.y4c{bottom:589.860000px;}
.y102{bottom:591.660000px;}
.y77{bottom:593.100000px;}
.y27{bottom:596.340000px;}
.y101{bottom:605.700000px;}
.y67{bottom:606.780000px;}
.yb5{bottom:608.580000px;}
.y76{bottom:611.100000px;}
.y24{bottom:611.460000px;}
.y100{bottom:619.380000px;}
.y26{bottom:620.100000px;}
.yb4{bottom:623.340000px;}
.y75{bottom:625.860000px;}
.y22{bottom:630.180000px;}
.yff{bottom:633.060000px;}
.y25{bottom:647.100000px;}
.y23{bottom:654.660000px;}
.yfe{bottom:660.780000px;}
.yfd{bottom:674.490000px;}
.y21{bottom:684.210000px;}
.yfc{bottom:688.530000px;}
.y4b{bottom:692.130000px;}
.yfb{bottom:702.210000px;}
.y20{bottom:702.570000px;}
.yb3{bottom:706.170000px;}
.y74{bottom:706.890000px;}
.yc{bottom:707.970000px;}
.y4a{bottom:710.130000px;}
.yfa{bottom:715.890000px;}
.y73{bottom:721.290000px;}
.y1f{bottom:724.530000px;}
.yf9{bottom:729.930000px;}
.yf8{bottom:743.610000px;}
.ya1{bottom:749.010000px;}
.y99{bottom:750.450000px;}
.yf7{bottom:757.290000px;}
.y1e{bottom:764.850000px;}
.y98{bottom:765.570000px;}
.ya0{bottom:769.890000px;}
.yf6{bottom:771.330000px;}
.yf5{bottom:785.010000px;}
.yb2{bottom:792.930000px;}
.yf4{bottom:798.690000px;}
.y1d{bottom:800.535000px;}
.yb1{bottom:807.735000px;}
.yf3{bottom:812.775000px;}
.y1c{bottom:816.015000px;}
.yf2{bottom:826.455000px;}
.y1b{bottom:831.495000px;}
.y49{bottom:839.775000px;}
.yf1{bottom:840.135000px;}
.ycc{bottom:846.615000px;}
.y1a{bottom:853.095000px;}
.yf0{bottom:854.175000px;}
.y48{bottom:857.775000px;}
.ycb{bottom:864.615000px;}
.yef{bottom:867.855000px;}
.y19{bottom:868.575000px;}
.y66{bottom:874.695000px;}
.y47{bottom:875.775000px;}
.yca{bottom:879.375000px;}
.yee{bottom:881.535000px;}
.yb0{bottom:881.895000px;}
.y18{bottom:884.415000px;}
.y65{bottom:889.095000px;}
.y46{bottom:894.135000px;}
.yed{bottom:895.575000px;}
.y17{bottom:899.895000px;}
.yec{bottom:909.255000px;}
.y45{bottom:912.135000px;}
.y84{bottom:914.295000px;}
.yaf{bottom:914.655000px;}
.y16{bottom:915.375000px;}
.yeb{bottom:922.935000px;}
.y15{bottom:930.855000px;}
.y72{bottom:931.935000px;}
.y83{bottom:932.295000px;}
.yea{bottom:937.005000px;}
.y14{bottom:946.365000px;}
.y82{bottom:947.085000px;}
.ye9{bottom:950.685000px;}
.y97{bottom:958.605000px;}
.y64{bottom:958.965000px;}
.y13{bottom:961.845000px;}
.ye8{bottom:974.085000px;}
.y96{bottom:976.605000px;}
.y63{bottom:976.965000px;}
.y12{bottom:977.325000px;}
.y71{bottom:980.925000px;}
.yae{bottom:989.205000px;}
.y81{bottom:989.565000px;}
.y62{bottom:994.965000px;}
.yc9{bottom:995.325000px;}
.y70{bottom:995.685000px;}
.yad{bottom:1007.565000px;}
.y80{bottom:1007.925000px;}
.yc8{bottom:1010.085000px;}
.y11{bottom:1011.525000px;}
.y61{bottom:1012.965000px;}
.y9f{bottom:1013.685000px;}
.yac{bottom:1025.565000px;}
.y7f{bottom:1025.925000px;}
.ye7{bottom:1028.445000px;}
.yab{bottom:1039.965000px;}
.y7e{bottom:1043.925000px;}
.ye6{bottom:1046.445000px;}
.y10{bottom:1052.925000px;}
.y7d{bottom:1058.685000px;}
.ye5{bottom:1064.445000px;}
.yc7{bottom:1074.930000px;}
.ye4{bottom:1082.490000px;}
.y95{bottom:1092.570000px;}
.yc6{bottom:1093.290000px;}
.yf{bottom:1094.370000px;}
.y60{bottom:1100.850000px;}
.y94{bottom:1110.570000px;}
.yc4{bottom:1111.290000px;}
.yc5{bottom:1114.890000px;}
.y5f{bottom:1118.850000px;}
.yc3{bottom:1126.410000px;}
.y93{bottom:1128.930000px;}
.ye{bottom:1135.770000px;}
.y5e{bottom:1136.850000px;}
.y92{bottom:1146.930000px;}
.y5d{bottom:1155.210000px;}
.y5c{bottom:1173.210000px;}
.y57{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y56{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.h1b{height:11.880000px;}
.h15{height:29.577656px;}
.h7{height:30.600000px;}
.h18{height:33.180469px;}
.h19{height:33.528516px;}
.h21{height:34.595859px;}
.h1c{height:36.034453px;}
.h5{height:36.150469px;}
.h17{height:38.207812px;}
.h16{height:38.608594px;}
.hb{height:39.650625px;}
.h6{height:41.400000px;}
.h3{height:42.229688px;}
.h2{height:42.672656px;}
.h1e{height:43.824375px;}
.h1d{height:44.031094px;}
.h20{height:44.798906px;}
.hd{height:46.009688px;}
.ha{height:46.736719px;}
.he{height:51.177656px;}
.h4{height:53.640000px;}
.h8{height:55.511719px;}
.h1f{height:60.693047px;}
.h10{height:65.188828px;}
.h1a{height:66.276000px;}
.hc{height:83.453906px;}
.h14{height:94.411406px;}
.hf{height:97.291406px;}
.h9{height:100.546875px;}
.h12{height:134.731406px;}
.h11{height:140.491406px;}
.h13{height:140.611406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:1.800000px;}
.w7{width:5.760000px;}
.w4{width:24.480000px;}
.w3{width:186.585000px;}
.w2{width:274.785000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:4.680000px;}
.x6{left:10.830000px;}
.xf{left:70.236000px;}
.x34{left:74.555987px;}
.x4{left:77.436000px;}
.xd{left:81.036000px;}
.x24{left:86.436000px;}
.x8d{left:91.475987px;}
.x1c{left:92.556000px;}
.x10{left:97.236000px;}
.x9{left:100.476000px;}
.x55{left:103.355987px;}
.x3f{left:104.435987px;}
.x8{left:121.716000px;}
.x4d{left:123.155987px;}
.x36{left:124.595987px;}
.x48{left:129.671987px;}
.x7{left:133.992000px;}
.x6c{left:135.071987px;}
.x4e{left:138.311987px;}
.x37{left:140.831987px;}
.xe{left:150.915000px;}
.x16{left:154.155000px;}
.x40{left:156.674987px;}
.x5c{left:158.834987px;}
.x25{left:160.275000px;}
.x88{left:162.434987px;}
.x51{left:164.594987px;}
.x12{left:165.675000px;}
.x8b{left:171.074987px;}
.x26{left:173.235000px;}
.x68{left:174.314987px;}
.x49{left:176.114987px;}
.x89{left:178.274987px;}
.x27{left:180.435000px;}
.x52{left:181.514987px;}
.x11{left:182.595000px;}
.x13{left:187.275000px;}
.x63{left:195.914987px;}
.x8c{left:198.074987px;}
.x28{left:199.155000px;}
.x84{left:200.954987px;}
.x29{left:203.115000px;}
.x6d{left:209.594987px;}
.x85{left:210.674987px;}
.x43{left:216.824987px;}
.x69{left:232.664987px;}
.x1d{left:235.545000px;}
.x6a{left:237.704987px;}
.x18{left:252.465000px;}
.x64{left:254.984987px;}
.x17{left:259.305000px;}
.x65{left:260.384987px;}
.x66{left:275.864987px;}
.x14{left:281.985000px;}
.x41{left:285.585000px;}
.x1e{left:300.705000px;}
.x15{left:302.505000px;}
.x86{left:311.189987px;}
.x87{left:315.149987px;}
.x56{left:316.589987px;}
.x19{left:317.670000px;}
.xb{left:328.470000px;}
.x57{left:329.549987px;}
.x1f{left:332.070000px;}
.x1b{left:336.390000px;}
.x38{left:338.909987px;}
.x20{left:343.230000px;}
.x58{left:344.309987px;}
.x1a{left:348.630000px;}
.x5b{left:350.069987px;}
.x23{left:358.710000px;}
.x4a{left:363.030000px;}
.x5a{left:371.669987px;}
.x21{left:374.550000px;}
.x22{left:383.910000px;}
.x5d{left:391.829987px;}
.xa{left:401.580000px;}
.x83{left:405.899987px;}
.x8a{left:415.979987px;}
.x62{left:419.579987px;}
.x6b{left:421.379987px;}
.x3d{left:422.459987px;}
.x67{left:428.579987px;}
.x3e{left:433.259987px;}
.x61{left:439.379987px;}
.x3{left:441.900000px;}
.x2{left:442.980000px;}
.x33{left:447.659987px;}
.x4f{left:451.979987px;}
.x2b{left:457.380000px;}
.x8f{left:465.659987px;}
.x2a{left:468.180000px;}
.x32{left:473.580000px;}
.x5{left:478.260000px;}
.x91{left:490.529987px;}
.x77{left:497.009987px;}
.x1{left:499.890000px;}
.x92{left:504.929987px;}
.x9e{left:508.529987px;}
.x30{left:510.690000px;}
.x82{left:512.489987px;}
.x2c{left:520.050000px;}
.x9f{left:521.849987px;}
.x78{left:530.489987px;}
.xa0{left:531.929987px;}
.x93{left:534.449987px;}
.xa3{left:535.889987px;}
.x31{left:538.770000px;}
.x74{left:539.849987px;}
.xa1{left:545.609987px;}
.x90{left:551.369987px;}
.x94{left:552.449987px;}
.x75{left:556.409987px;}
.x2d{left:558.570000px;}
.xa2{left:560.729987px;}
.xc{left:566.850000px;}
.x8e{left:571.934987px;}
.x4c{left:573.734987px;}
.x79{left:574.814987px;}
.x95{left:578.414987px;}
.x96{left:592.814987px;}
.x50{left:598.574987px;}
.x7a{left:603.254987px;}
.x80{left:615.494987px;}
.x7b{left:618.374987px;}
.x81{left:619.814987px;}
.x3c{left:623.774987px;}
.x47{left:629.534987px;}
.x2e{left:639.255000px;}
.x39{left:641.414987px;}
.x6e{left:651.494987px;}
.x71{left:652.574987px;}
.x54{left:656.204987px;}
.x97{left:659.084987px;}
.x2f{left:665.565000px;}
.x6f{left:669.164987px;}
.x72{left:671.684987px;}
.x98{left:673.484987px;}
.x99{left:688.604987px;}
.x9a{left:703.004987px;}
.x5e{left:710.924987px;}
.x46{left:712.364987px;}
.x7c{left:723.524987px;}
.x7e{left:724.964987px;}
.x9b{left:729.644987px;}
.x7d{left:733.244987px;}
.x53{left:735.044987px;}
.x9c{left:744.089987px;}
.x44{left:745.889987px;}
.x60{left:747.689987px;}
.x70{left:750.929987px;}
.x3a{left:759.569987px;}
.x3b{left:769.649987px;}
.x45{left:776.489987px;}
.x42{left:778.649987px;}
.x5f{left:790.889987px;}
.x76{left:795.209987px;}
.x59{left:798.809987px;}
.x9d{left:818.969987px;}
.x35{left:820.769987px;}
.x73{left:822.209987px;}
.x7f{left:833.039987px;}
@media print{
.v8{vertical-align:-12.800000pt;}
.v7{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v2{vertical-align:2.560000pt;}
.v1{vertical-align:19.200000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.ls2b{letter-spacing:-1.861333pt;}
.ls40{letter-spacing:-1.696000pt;}
.ls29{letter-spacing:-1.280000pt;}
.ls4a{letter-spacing:-1.264000pt;}
.ls5f{letter-spacing:-0.864000pt;}
.ls5e{letter-spacing:-0.832000pt;}
.ls7c{letter-spacing:-0.800000pt;}
.ls2a{letter-spacing:-0.757333pt;}
.ls3e{letter-spacing:-0.640000pt;}
.ls4f{letter-spacing:-0.538667pt;}
.ls49{letter-spacing:-0.500800pt;}
.ls2c{letter-spacing:-0.442667pt;}
.ls28{letter-spacing:-0.432533pt;}
.ls33{letter-spacing:-0.414933pt;}
.ls3b{letter-spacing:-0.320000pt;}
.ls57{letter-spacing:-0.286933pt;}
.ls83{letter-spacing:-0.208533pt;}
.ls84{letter-spacing:-0.194667pt;}
.ls37{letter-spacing:-0.185067pt;}
.ls2f{letter-spacing:-0.176533pt;}
.ls2e{letter-spacing:-0.163733pt;}
.ls70{letter-spacing:-0.130133pt;}
.ls38{letter-spacing:-0.043200pt;}
.ls41{letter-spacing:-0.018133pt;}
.ls4c{letter-spacing:-0.017920pt;}
.ls3c{letter-spacing:-0.013867pt;}
.ls27{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.014080pt;}
.ls0{letter-spacing:0.017920pt;}
.ls3f{letter-spacing:0.018133pt;}
.lsf{letter-spacing:0.029513pt;}
.ls51{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.109502pt;}
.ls4d{letter-spacing:0.124267pt;}
.ls5{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.181333pt;}
.ls5c{letter-spacing:0.182099pt;}
.ls3d{letter-spacing:0.222933pt;}
.ls6c{letter-spacing:0.231656pt;}
.ls65{letter-spacing:0.303737pt;}
.ls1c{letter-spacing:0.308875pt;}
.ls75{letter-spacing:0.312320pt;}
.ls1f{letter-spacing:0.320147pt;}
.ls6e{letter-spacing:0.382771pt;}
.ls45{letter-spacing:0.396267pt;}
.ls4{letter-spacing:0.397139pt;}
.ls55{letter-spacing:0.399360pt;}
.ls6b{letter-spacing:0.409618pt;}
.ls6{letter-spacing:0.414720pt;}
.ls34{letter-spacing:0.414933pt;}
.ls44{letter-spacing:0.418268pt;}
.ls3a{letter-spacing:0.432533pt;}
.ls74{letter-spacing:0.440320pt;}
.ls73{letter-spacing:0.450560pt;}
.ls30{letter-spacing:0.450667pt;}
.ls72{letter-spacing:0.539307pt;}
.ls36{letter-spacing:0.554667pt;}
.ls56{letter-spacing:0.559360pt;}
.ls2d{letter-spacing:0.560000pt;}
.ls50{letter-spacing:0.591360pt;}
.ls6a{letter-spacing:0.592640pt;}
.ls32{letter-spacing:0.634667pt;}
.ls67{letter-spacing:0.636160pt;}
.ls1{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.665600pt;}
.ls7b{letter-spacing:0.762667pt;}
.ls71{letter-spacing:0.768000pt;}
.ls7a{letter-spacing:0.832000pt;}
.ls78{letter-spacing:0.834560pt;}
.ls39{letter-spacing:0.864000pt;}
.ls11{letter-spacing:0.865280pt;}
.ls16{letter-spacing:0.869354pt;}
.ls1e{letter-spacing:0.935137pt;}
.ls22{letter-spacing:0.960000pt;}
.ls6f{letter-spacing:0.965333pt;}
.ls7e{letter-spacing:1.088000pt;}
.ls17{letter-spacing:1.107992pt;}
.ls4b{letter-spacing:1.264000pt;}
.ls20{letter-spacing:1.280000pt;}
.ls60{letter-spacing:1.296000pt;}
.ls26{letter-spacing:1.297920pt;}
.ls5d{letter-spacing:1.327410pt;}
.ls1d{letter-spacing:1.440572pt;}
.ls53{letter-spacing:1.449048pt;}
.ls81{letter-spacing:1.504000pt;}
.ls48{letter-spacing:1.542450pt;}
.ls7d{letter-spacing:1.573333pt;}
.ls35{letter-spacing:1.696000pt;}
.ls68{letter-spacing:1.712640pt;}
.ls31{letter-spacing:1.728000pt;}
.lse{letter-spacing:1.837034pt;}
.ls9{letter-spacing:1.875061pt;}
.ls66{letter-spacing:1.920000pt;}
.ls52{letter-spacing:2.102783pt;}
.lsd{letter-spacing:2.213354pt;}
.ls23{letter-spacing:2.240000pt;}
.ls12{letter-spacing:2.416594pt;}
.ls69{letter-spacing:3.200000pt;}
.ls64{letter-spacing:3.360000pt;}
.ls47{letter-spacing:3.739671pt;}
.ls5b{letter-spacing:4.480000pt;}
.ls59{letter-spacing:5.210667pt;}
.ls46{letter-spacing:6.030293pt;}
.ls42{letter-spacing:7.040000pt;}
.ls5a{letter-spacing:7.146667pt;}
.ls3{letter-spacing:7.175605pt;}
.ls43{letter-spacing:8.320000pt;}
.ls21{letter-spacing:8.640000pt;}
.ls15{letter-spacing:8.829791pt;}
.ls54{letter-spacing:9.760000pt;}
.lsc{letter-spacing:10.062338pt;}
.ls25{letter-spacing:10.880000pt;}
.ls19{letter-spacing:11.608252pt;}
.ls1a{letter-spacing:11.710964pt;}
.ls82{letter-spacing:11.733333pt;}
.ls58{letter-spacing:12.160000pt;}
.ls61{letter-spacing:13.440000pt;}
.lsb{letter-spacing:14.073345pt;}
.lsa{letter-spacing:14.666008pt;}
.ls13{letter-spacing:14.768721pt;}
.ls63{letter-spacing:15.192785pt;}
.ls2{letter-spacing:16.000000pt;}
.ls79{letter-spacing:16.320000pt;}
.ls14{letter-spacing:16.538439pt;}
.ls62{letter-spacing:17.280000pt;}
.ls80{letter-spacing:21.973333pt;}
.ls7f{letter-spacing:22.720000pt;}
.ls6d{letter-spacing:22.827473pt;}
.ls77{letter-spacing:27.840000pt;}
.ls76{letter-spacing:36.254720pt;}
.ls10{letter-spacing:37.580895pt;}
.ls1b{letter-spacing:170.798677pt;}
.ws3{word-spacing:-64.000000pt;}
.ws2e{word-spacing:-53.760000pt;}
.ws30{word-spacing:-32.533333pt;}
.ws9{word-spacing:-15.168000pt;}
.wsd{word-spacing:-15.136000pt;}
.ws2d{word-spacing:-14.736000pt;}
.ws13{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.704000pt;}
.ws27{word-spacing:-14.405333pt;}
.ws11{word-spacing:-14.304000pt;}
.ws2c{word-spacing:-14.272000pt;}
.ws1b{word-spacing:-14.219200pt;}
.ws2a{word-spacing:-14.208000pt;}
.ws8{word-spacing:-13.890667pt;}
.ws12{word-spacing:-13.872533pt;}
.wsc{word-spacing:-13.854933pt;}
.ws21{word-spacing:-13.621333pt;}
.ws20{word-spacing:-13.564267pt;}
.ws17{word-spacing:-13.458133pt;}
.ws1e{word-spacing:-13.457920pt;}
.ws7{word-spacing:-13.440000pt;}
.ws1f{word-spacing:-13.422080pt;}
.ws19{word-spacing:-13.421867pt;}
.ws29{word-spacing:-13.309867pt;}
.ws24{word-spacing:-13.153067pt;}
.wsb{word-spacing:-13.025067pt;}
.ws0{word-spacing:-13.007467pt;}
.ws22{word-spacing:-12.901333pt;}
.ws5{word-spacing:-12.720000pt;}
.ws25{word-spacing:-12.608000pt;}
.ws26{word-spacing:-12.576000pt;}
.ws32{word-spacing:-12.480000pt;}
.ws1c{word-spacing:-12.176000pt;}
.ws1{word-spacing:-12.160000pt;}
.ws34{word-spacing:-12.064000pt;}
.ws6{word-spacing:-11.996267pt;}
.wse{word-spacing:-11.827200pt;}
.ws33{word-spacing:-11.824000pt;}
.ws18{word-spacing:-11.744000pt;}
.ws4{word-spacing:-11.717333pt;}
.ws2f{word-spacing:-11.648000pt;}
.ws31{word-spacing:-11.200000pt;}
.ws23{word-spacing:-11.151360pt;}
.ws15{word-spacing:-10.782933pt;}
.ws2{word-spacing:-10.560000pt;}
.ws14{word-spacing:-10.546133pt;}
.ws36{word-spacing:-10.365333pt;}
.ws35{word-spacing:-10.351467pt;}
.ws16{word-spacing:-9.920000pt;}
.ws28{word-spacing:-9.280000pt;}
.wsa{word-spacing:-9.274667pt;}
.ws10{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.166400pt;}
.ws2b{word-spacing:-7.603200pt;}
.ws1a{word-spacing:0.000000pt;}
._2a{margin-left:-11.277227pt;}
._26{margin-left:-6.760960pt;}
._3{margin-left:-4.800000pt;}
._19{margin-left:-3.858662pt;}
._4{margin-left:-2.968669pt;}
._0{margin-left:-1.290132pt;}
._1{width:1.334825pt;}
._2{width:2.439574pt;}
._8{width:3.491103pt;}
._9{width:4.430725pt;}
._1f{width:5.321720pt;}
._25{width:6.558935pt;}
._1a{width:7.679993pt;}
._1b{width:8.607206pt;}
._15{width:9.600000pt;}
._5{width:11.138706pt;}
._28{width:12.531401pt;}
._13{width:13.470257pt;}
._6{width:14.630049pt;}
._7{width:15.581499pt;}
._24{width:16.542026pt;}
._23{width:17.762746pt;}
._16{width:19.170140pt;}
._18{width:20.693674pt;}
._1c{width:21.798292pt;}
._12{width:23.288067pt;}
._c{width:24.589660pt;}
._d{width:25.671253pt;}
._1e{width:27.192056pt;}
._30{width:28.088300pt;}
._27{width:29.024645pt;}
._17{width:30.730667pt;}
._1d{width:32.023463pt;}
._2e{width:33.090560pt;}
._2c{width:34.519359pt;}
._2b{width:35.668480pt;}
._a{width:41.120645pt;}
._b{width:42.311682pt;}
._2f{width:43.202877pt;}
._2d{width:47.026239pt;}
._11{width:49.040668pt;}
._10{width:50.340181pt;}
._e{width:51.277806pt;}
._20{width:55.750615pt;}
._21{width:56.777709pt;}
._f{width:62.605941pt;}
._22{width:66.520147pt;}
._14{width:81.392746pt;}
._29{width:82.723482pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:106.240000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:0.351973pt;}
.y4{bottom:0.352000pt;}
.yb{bottom:2.240000pt;}
.yd{bottom:11.840000pt;}
.y8{bottom:11.872000pt;}
.y7{bottom:13.440000pt;}
.y5b{bottom:13.440027pt;}
.ya{bottom:14.720000pt;}
.y3{bottom:16.992000pt;}
.y6{bottom:25.600000pt;}
.y5a{bottom:25.600027pt;}
.y9{bottom:26.880000pt;}
.y5{bottom:37.760000pt;}
.y59{bottom:37.760027pt;}
.y6f{bottom:43.546667pt;}
.yc2{bottom:72.352000pt;}
.y91{bottom:72.992000pt;}
.y6d{bottom:74.592000pt;}
.y9e{bottom:75.232000pt;}
.yaa{bottom:80.992000pt;}
.ye3{bottom:85.792000pt;}
.yc1{bottom:88.672000pt;}
.y44{bottom:88.992000pt;}
.y6c{bottom:90.592000pt;}
.y9d{bottom:91.232000pt;}
.ya9{bottom:97.312000pt;}
.y43{bottom:101.152000pt;}
.ye2{bottom:101.792000pt;}
.y6b{bottom:103.712000pt;}
.yc0{bottom:104.672000pt;}
.y9c{bottom:107.232000pt;}
.y90{bottom:110.752000pt;}
.ya8{bottom:113.312000pt;}
.y42{bottom:113.632000pt;}
.ye1{bottom:117.824000pt;}
.ybf{bottom:121.024000pt;}
.y9b{bottom:123.584000pt;}
.y8f{bottom:126.784000pt;}
.ya7{bottom:129.344000pt;}
.y11c{bottom:130.944000pt;}
.ye0{bottom:133.826667pt;}
.ybe{bottom:134.146667pt;}
.y41{bottom:136.706667pt;}
.y8e{bottom:140.226667pt;}
.y11b{bottom:143.746667pt;}
.ya6{bottom:145.666667pt;}
.y40{bottom:148.866667pt;}
.ydf{bottom:150.146667pt;}
.y11a{bottom:159.106667pt;}
.y3f{bottom:161.026667pt;}
.ya5{bottom:166.146667pt;}
.y3e{bottom:173.506667pt;}
.y119{bottom:174.466667pt;}
.yde{bottom:182.146667pt;}
.ya4{bottom:184.706667pt;}
.y3d{bottom:186.306667pt;}
.y6a{bottom:189.506667pt;}
.y118{bottom:189.826667pt;}
.ydd{bottom:198.466667pt;}
.y3c{bottom:201.346667pt;}
.y117{bottom:205.186667pt;}
.y69{bottom:205.506667pt;}
.ydc{bottom:214.466667pt;}
.y3b{bottom:215.106667pt;}
.y68{bottom:218.946667pt;}
.y116{bottom:220.546667pt;}
.y3a{bottom:228.866667pt;}
.ydb{bottom:230.466667pt;}
.y115{bottom:235.613333pt;}
.y39{bottom:242.653333pt;}
.ybd{bottom:249.053333pt;}
.y114{bottom:250.973333pt;}
.yda{bottom:253.853333pt;}
.y38{bottom:256.413333pt;}
.y113{bottom:263.773333pt;}
.y112{bottom:278.173333pt;}
.y55{bottom:281.053333pt;}
.y37{bottom:284.893333pt;}
.yd9{bottom:286.173333pt;}
.y111{bottom:290.333333pt;}
.y54{bottom:297.373333pt;}
.y36{bottom:301.213333pt;}
.yd8{bottom:302.173333pt;}
.ybc{bottom:302.813333pt;}
.y8d{bottom:311.773333pt;}
.y53{bottom:313.373333pt;}
.y110{bottom:314.973333pt;}
.y35{bottom:317.213333pt;}
.ybb{bottom:318.813333pt;}
.y7c{bottom:320.733333pt;}
.yd7{bottom:325.533333pt;}
.y10f{bottom:327.133333pt;}
.y8a{bottom:327.773333pt;}
.y52{bottom:329.373333pt;}
.y8c{bottom:333.853333pt;}
.yba{bottom:335.133333pt;}
.y10e{bottom:339.613333pt;}
.y51{bottom:345.373333pt;}
.y89{bottom:346.973333pt;}
.y7b{bottom:348.573333pt;}
.y8b{bottom:350.493333pt;}
.y10d{bottom:351.773333pt;}
.yd6{bottom:357.573333pt;}
.yb9{bottom:358.533333pt;}
.y7a{bottom:361.413333pt;}
.y10c{bottom:363.973333pt;}
.y50{bottom:368.773333pt;}
.yd5{bottom:373.573333pt;}
.yb8{bottom:373.893333pt;}
.y10b{bottom:376.453333pt;}
.y34{bottom:386.053333pt;}
.y10a{bottom:388.613333pt;}
.yd4{bottom:389.893333pt;}
.y109{bottom:400.773333pt;}
.y33{bottom:402.373333pt;}
.ya3{bottom:403.013333pt;}
.yd3{bottom:405.893333pt;}
.yb7{bottom:406.213333pt;}
.y108{bottom:413.253333pt;}
.y88{bottom:416.773333pt;}
.y32{bottom:418.373333pt;}
.yb6{bottom:419.333333pt;}
.ya2{bottom:421.573333pt;}
.yd2{bottom:421.893333pt;}
.y9a{bottom:423.493333pt;}
.y107{bottom:425.413333pt;}
.y79{bottom:432.453333pt;}
.y87{bottom:433.093333pt;}
.y30{bottom:434.373333pt;}
.y106{bottom:437.573333pt;}
.yd1{bottom:438.213333pt;}
.y31{bottom:439.173333pt;}
.y6e{bottom:445.253333pt;}
.y78{bottom:445.573333pt;}
.y86{bottom:446.213333pt;}
.y2c{bottom:447.813333pt;}
.yd0{bottom:454.213333pt;}
.y2f{bottom:455.493333pt;}
.y105{bottom:458.373333pt;}
.y2a{bottom:464.453333pt;}
.ycf{bottom:470.213333pt;}
.y2e{bottom:474.720000pt;}
.y4f{bottom:476.000000pt;}
.y2d{bottom:479.520000pt;}
.y2b{bottom:486.240000pt;}
.y104{bottom:489.120000pt;}
.y4e{bottom:492.000000pt;}
.yce{bottom:493.600000pt;}
.y29{bottom:497.760000pt;}
.y103{bottom:501.600000pt;}
.y85{bottom:505.760000pt;}
.y4d{bottom:508.000000pt;}
.y28{bottom:513.760000pt;}
.ycd{bottom:522.720000pt;}
.y4c{bottom:524.320000pt;}
.y102{bottom:525.920000pt;}
.y77{bottom:527.200000pt;}
.y27{bottom:530.080000pt;}
.y101{bottom:538.400000pt;}
.y67{bottom:539.360000pt;}
.yb5{bottom:540.960000pt;}
.y76{bottom:543.200000pt;}
.y24{bottom:543.520000pt;}
.y100{bottom:550.560000pt;}
.y26{bottom:551.200000pt;}
.yb4{bottom:554.080000pt;}
.y75{bottom:556.320000pt;}
.y22{bottom:560.160000pt;}
.yff{bottom:562.720000pt;}
.y25{bottom:575.200000pt;}
.y23{bottom:581.920000pt;}
.yfe{bottom:587.360000pt;}
.yfd{bottom:599.546667pt;}
.y21{bottom:608.186667pt;}
.yfc{bottom:612.026667pt;}
.y4b{bottom:615.226667pt;}
.yfb{bottom:624.186667pt;}
.y20{bottom:624.506667pt;}
.yb3{bottom:627.706667pt;}
.y74{bottom:628.346667pt;}
.yc{bottom:629.306667pt;}
.y4a{bottom:631.226667pt;}
.yfa{bottom:636.346667pt;}
.y73{bottom:641.146667pt;}
.y1f{bottom:644.026667pt;}
.yf9{bottom:648.826667pt;}
.yf8{bottom:660.986667pt;}
.ya1{bottom:665.786667pt;}
.y99{bottom:667.066667pt;}
.yf7{bottom:673.146667pt;}
.y1e{bottom:679.866667pt;}
.y98{bottom:680.506667pt;}
.ya0{bottom:684.346667pt;}
.yf6{bottom:685.626667pt;}
.yf5{bottom:697.786667pt;}
.yb2{bottom:704.826667pt;}
.yf4{bottom:709.946667pt;}
.y1d{bottom:711.586667pt;}
.yb1{bottom:717.986667pt;}
.yf3{bottom:722.466667pt;}
.y1c{bottom:725.346667pt;}
.yf2{bottom:734.626667pt;}
.y1b{bottom:739.106667pt;}
.y49{bottom:746.466667pt;}
.yf1{bottom:746.786667pt;}
.ycc{bottom:752.546667pt;}
.y1a{bottom:758.306667pt;}
.yf0{bottom:759.266667pt;}
.y48{bottom:762.466667pt;}
.ycb{bottom:768.546667pt;}
.yef{bottom:771.426667pt;}
.y19{bottom:772.066667pt;}
.y66{bottom:777.506667pt;}
.y47{bottom:778.466667pt;}
.yca{bottom:781.666667pt;}
.yee{bottom:783.586667pt;}
.yb0{bottom:783.906667pt;}
.y18{bottom:786.146667pt;}
.y65{bottom:790.306667pt;}
.y46{bottom:794.786667pt;}
.yed{bottom:796.066667pt;}
.y17{bottom:799.906667pt;}
.yec{bottom:808.226667pt;}
.y45{bottom:810.786667pt;}
.y84{bottom:812.706667pt;}
.yaf{bottom:813.026667pt;}
.y16{bottom:813.666667pt;}
.yeb{bottom:820.386667pt;}
.y15{bottom:827.426667pt;}
.y72{bottom:828.386667pt;}
.y83{bottom:828.706667pt;}
.yea{bottom:832.893333pt;}
.y14{bottom:841.213333pt;}
.y82{bottom:841.853333pt;}
.ye9{bottom:845.053333pt;}
.y97{bottom:852.093333pt;}
.y64{bottom:852.413333pt;}
.y13{bottom:854.973333pt;}
.ye8{bottom:865.853333pt;}
.y96{bottom:868.093333pt;}
.y63{bottom:868.413333pt;}
.y12{bottom:868.733333pt;}
.y71{bottom:871.933333pt;}
.yae{bottom:879.293333pt;}
.y81{bottom:879.613333pt;}
.y62{bottom:884.413333pt;}
.yc9{bottom:884.733333pt;}
.y70{bottom:885.053333pt;}
.yad{bottom:895.613333pt;}
.y80{bottom:895.933333pt;}
.yc8{bottom:897.853333pt;}
.y11{bottom:899.133333pt;}
.y61{bottom:900.413333pt;}
.y9f{bottom:901.053333pt;}
.yac{bottom:911.613333pt;}
.y7f{bottom:911.933333pt;}
.ye7{bottom:914.173333pt;}
.yab{bottom:924.413333pt;}
.y7e{bottom:927.933333pt;}
.ye6{bottom:930.173333pt;}
.y10{bottom:935.933333pt;}
.y7d{bottom:941.053333pt;}
.ye5{bottom:946.173333pt;}
.yc7{bottom:955.493333pt;}
.ye4{bottom:962.213333pt;}
.y95{bottom:971.173333pt;}
.yc6{bottom:971.813333pt;}
.yf{bottom:972.773333pt;}
.y60{bottom:978.533333pt;}
.y94{bottom:987.173333pt;}
.yc4{bottom:987.813333pt;}
.yc5{bottom:991.013333pt;}
.y5f{bottom:994.533333pt;}
.yc3{bottom:1001.253333pt;}
.y93{bottom:1003.493333pt;}
.ye{bottom:1009.573333pt;}
.y5e{bottom:1010.533333pt;}
.y92{bottom:1019.493333pt;}
.y5d{bottom:1026.853333pt;}
.y5c{bottom:1042.853333pt;}
.y57{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y56{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.h1b{height:10.560000pt;}
.h15{height:26.291250pt;}
.h7{height:27.200000pt;}
.h18{height:29.493750pt;}
.h19{height:29.803125pt;}
.h21{height:30.751875pt;}
.h1c{height:32.030625pt;}
.h5{height:32.133750pt;}
.h17{height:33.962500pt;}
.h16{height:34.318750pt;}
.hb{height:35.245000pt;}
.h6{height:36.800000pt;}
.h3{height:37.537500pt;}
.h2{height:37.931250pt;}
.h1e{height:38.955000pt;}
.h1d{height:39.138750pt;}
.h20{height:39.821250pt;}
.hd{height:40.897500pt;}
.ha{height:41.543750pt;}
.he{height:45.491250pt;}
.h4{height:47.680000pt;}
.h8{height:49.343750pt;}
.h1f{height:53.949375pt;}
.h10{height:57.945625pt;}
.h1a{height:58.912000pt;}
.hc{height:74.181250pt;}
.h14{height:83.921250pt;}
.hf{height:86.481250pt;}
.h9{height:89.375000pt;}
.h12{height:119.761250pt;}
.h11{height:124.881250pt;}
.h13{height:124.987917pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:1.600000pt;}
.w7{width:5.120000pt;}
.w4{width:21.760000pt;}
.w3{width:165.853333pt;}
.w2{width:244.253333pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:4.160000pt;}
.x6{left:9.626667pt;}
.xf{left:62.432000pt;}
.x34{left:66.271988pt;}
.x4{left:68.832000pt;}
.xd{left:72.032000pt;}
.x24{left:76.832000pt;}
.x8d{left:81.311988pt;}
.x1c{left:82.272000pt;}
.x10{left:86.432000pt;}
.x9{left:89.312000pt;}
.x55{left:91.871988pt;}
.x3f{left:92.831988pt;}
.x8{left:108.192000pt;}
.x4d{left:109.471988pt;}
.x36{left:110.751988pt;}
.x48{left:115.263988pt;}
.x7{left:119.104000pt;}
.x6c{left:120.063988pt;}
.x4e{left:122.943988pt;}
.x37{left:125.183988pt;}
.xe{left:134.146667pt;}
.x16{left:137.026667pt;}
.x40{left:139.266655pt;}
.x5c{left:141.186655pt;}
.x25{left:142.466667pt;}
.x88{left:144.386655pt;}
.x51{left:146.306655pt;}
.x12{left:147.266667pt;}
.x8b{left:152.066655pt;}
.x26{left:153.986667pt;}
.x68{left:154.946655pt;}
.x49{left:156.546655pt;}
.x89{left:158.466655pt;}
.x27{left:160.386667pt;}
.x52{left:161.346655pt;}
.x11{left:162.306667pt;}
.x13{left:166.466667pt;}
.x63{left:174.146655pt;}
.x8c{left:176.066655pt;}
.x28{left:177.026667pt;}
.x84{left:178.626655pt;}
.x29{left:180.546667pt;}
.x6d{left:186.306655pt;}
.x85{left:187.266655pt;}
.x43{left:192.733322pt;}
.x69{left:206.813322pt;}
.x1d{left:209.373333pt;}
.x6a{left:211.293322pt;}
.x18{left:224.413333pt;}
.x64{left:226.653322pt;}
.x17{left:230.493333pt;}
.x65{left:231.453322pt;}
.x66{left:245.213322pt;}
.x14{left:250.653333pt;}
.x41{left:253.853333pt;}
.x1e{left:267.293333pt;}
.x15{left:268.893333pt;}
.x86{left:276.613322pt;}
.x87{left:280.133322pt;}
.x56{left:281.413322pt;}
.x19{left:282.373333pt;}
.xb{left:291.973333pt;}
.x57{left:292.933322pt;}
.x1f{left:295.173333pt;}
.x1b{left:299.013333pt;}
.x38{left:301.253322pt;}
.x20{left:305.093333pt;}
.x58{left:306.053322pt;}
.x1a{left:309.893333pt;}
.x5b{left:311.173322pt;}
.x23{left:318.853333pt;}
.x4a{left:322.693333pt;}
.x5a{left:330.373322pt;}
.x21{left:332.933333pt;}
.x22{left:341.253333pt;}
.x5d{left:348.293322pt;}
.xa{left:356.960000pt;}
.x83{left:360.799988pt;}
.x8a{left:369.759988pt;}
.x62{left:372.959988pt;}
.x6b{left:374.559988pt;}
.x3d{left:375.519988pt;}
.x67{left:380.959988pt;}
.x3e{left:385.119988pt;}
.x61{left:390.559988pt;}
.x3{left:392.800000pt;}
.x2{left:393.760000pt;}
.x33{left:397.919988pt;}
.x4f{left:401.759988pt;}
.x2b{left:406.560000pt;}
.x8f{left:413.919988pt;}
.x2a{left:416.160000pt;}
.x32{left:420.960000pt;}
.x5{left:425.120000pt;}
.x91{left:436.026655pt;}
.x77{left:441.786655pt;}
.x1{left:444.346667pt;}
.x92{left:448.826655pt;}
.x9e{left:452.026655pt;}
.x30{left:453.946667pt;}
.x82{left:455.546655pt;}
.x2c{left:462.266667pt;}
.x9f{left:463.866655pt;}
.x78{left:471.546655pt;}
.xa0{left:472.826655pt;}
.x93{left:475.066655pt;}
.xa3{left:476.346655pt;}
.x31{left:478.906667pt;}
.x74{left:479.866655pt;}
.xa1{left:484.986655pt;}
.x90{left:490.106655pt;}
.x94{left:491.066655pt;}
.x75{left:494.586655pt;}
.x2d{left:496.506667pt;}
.xa2{left:498.426655pt;}
.xc{left:503.866667pt;}
.x8e{left:508.386655pt;}
.x4c{left:509.986655pt;}
.x79{left:510.946655pt;}
.x95{left:514.146655pt;}
.x96{left:526.946655pt;}
.x50{left:532.066655pt;}
.x7a{left:536.226655pt;}
.x80{left:547.106655pt;}
.x7b{left:549.666655pt;}
.x81{left:550.946655pt;}
.x3c{left:554.466655pt;}
.x47{left:559.586655pt;}
.x2e{left:568.226667pt;}
.x39{left:570.146655pt;}
.x6e{left:579.106655pt;}
.x71{left:580.066655pt;}
.x54{left:583.293322pt;}
.x97{left:585.853322pt;}
.x2f{left:591.613333pt;}
.x6f{left:594.813322pt;}
.x72{left:597.053322pt;}
.x98{left:598.653322pt;}
.x99{left:612.093322pt;}
.x9a{left:624.893322pt;}
.x5e{left:631.933322pt;}
.x46{left:633.213322pt;}
.x7c{left:643.133322pt;}
.x7e{left:644.413322pt;}
.x9b{left:648.573322pt;}
.x7d{left:651.773322pt;}
.x53{left:653.373322pt;}
.x9c{left:661.413322pt;}
.x44{left:663.013322pt;}
.x60{left:664.613322pt;}
.x70{left:667.493322pt;}
.x3a{left:675.173322pt;}
.x3b{left:684.133322pt;}
.x45{left:690.213322pt;}
.x42{left:692.133322pt;}
.x5f{left:703.013322pt;}
.x76{left:706.853322pt;}
.x59{left:710.053322pt;}
.x9d{left:727.973322pt;}
.x35{left:729.573322pt;}
.x73{left:730.853322pt;}
.x7f{left:740.479988pt;}
}




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