
    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_2d156b014c642aa10d604a36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cb3941624185a7a9ed9e9aff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7e21217b1c0d3d6b48b29ff9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5a202543cc8efb847e24ae71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_14ff940c8202df19fa2aab32.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_974c4be25b526d12cf4780e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_4a27a2842287d72f032dfc51.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5b42baff8fc2f942ef1ed928.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_bdef1b548bc7374160790278.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_66013be26ca698f7e3a8a8fc.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_26686f11d636dbb6196e2e48.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.840332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d22ffa3326acb028d8ed0e93.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1dbd53932b69eae9878db7b8.woff2')format("woff");}.fff{font-family:fff;line-height:0.925293;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_6534bad1cfb9070a1a4e7a75.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_442ca9a36afc0ad356a962c1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf{transform:matrix(0.000000,-0.259837,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.259837,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.259837,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.236477,0.000000,-0.081134,0.236468,0,0);-ms-transform:matrix(0.236477,0.000000,-0.081134,0.236468,0,0);-webkit-transform:matrix(0.236477,0.000000,-0.081134,0.236468,0,0);}
.md{transform:matrix(0.236575,0.000000,-0.080848,0.236566,0,0);-ms-transform:matrix(0.236575,0.000000,-0.080848,0.236566,0,0);-webkit-transform:matrix(0.236575,0.000000,-0.080848,0.236566,0,0);}
.me{transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m8{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.359988px;}
.v3{vertical-align:-13.743528px;}
.v4{vertical-align:-9.359982px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.486516px;}
.v6{vertical-align:34.337040px;}
.v1{vertical-align:38.879886px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005071px;}
.lsc{letter-spacing:0.005167px;}
.lsf{letter-spacing:0.005257px;}
.ls19{letter-spacing:0.029331px;}
.ls8{letter-spacing:0.029421px;}
.ls13{letter-spacing:0.029511px;}
.ls11{letter-spacing:0.050004px;}
.lsa{letter-spacing:0.054803px;}
.ls15{letter-spacing:0.054851px;}
.lsd{letter-spacing:0.164220px;}
.lsb{letter-spacing:0.164268px;}
.ls18{letter-spacing:0.212665px;}
.ls5{letter-spacing:0.258454px;}
.ls14{letter-spacing:0.263524px;}
.ls1{letter-spacing:0.357862px;}
.ls2{letter-spacing:0.357868px;}
.ls1a{letter-spacing:0.358560px;}
.ls16{letter-spacing:0.359177px;}
.ls9{letter-spacing:0.359225px;}
.ls7{letter-spacing:13.569132px;}
.ls3{letter-spacing:15.117334px;}
.ls17{letter-spacing:15.148273px;}
.ls4{letter-spacing:19.443690px;}
.lse{letter-spacing:20.907779px;}
.ls12{letter-spacing:29.547031px;}
.ls10{letter-spacing:29.547127px;}
.ls1b{letter-spacing:303.452326px;}
.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;}
}
.ws26{word-spacing:-32.036448px;}
.ws27{word-spacing:-26.029614px;}
.ws3{word-spacing:-21.060000px;}
.ws11{word-spacing:-15.298560px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.500000px;}
.ws1{word-spacing:-9.720000px;}
.ws1b{word-spacing:-8.804029px;}
.ws23{word-spacing:-0.187555px;}
.ws24{word-spacing:-0.187549px;}
.ws20{word-spacing:-0.180973px;}
.ws22{word-spacing:-0.078730px;}
.ws21{word-spacing:-0.010593px;}
.ws0{word-spacing:0.000000px;}
.ws2c{word-spacing:0.333750px;}
.ws12{word-spacing:0.463747px;}
.ws2d{word-spacing:0.617121px;}
.ws2e{word-spacing:0.627171px;}
.ws2f{word-spacing:0.736845px;}
.ws1c{word-spacing:1.827431px;}
.ws9{word-spacing:1.893248px;}
.wsd{word-spacing:1.905178px;}
.wse{word-spacing:3.904393px;}
.ws7{word-spacing:4.195146px;}
.ws17{word-spacing:4.712565px;}
.wsb{word-spacing:5.070080px;}
.wsf{word-spacing:5.223652px;}
.ws18{word-spacing:5.956565px;}
.ws1d{word-spacing:8.580787px;}
.ws10{word-spacing:15.036185px;}
.ws5{word-spacing:17.813790px;}
.ws13{word-spacing:21.025291px;}
.ws4{word-spacing:23.414670px;}
.wsa{word-spacing:33.893134px;}
.ws14{word-spacing:40.363021px;}
.ws19{word-spacing:76.935499px;}
.ws1e{word-spacing:80.768821px;}
.ws1a{word-spacing:87.613637px;}
.ws2a{word-spacing:95.682628px;}
.wsc{word-spacing:117.792532px;}
.ws28{word-spacing:127.719007px;}
.ws29{word-spacing:129.721354px;}
.ws8{word-spacing:137.513081px;}
.ws2b{word-spacing:213.816862px;}
.ws15{word-spacing:665.302543px;}
.ws1f{word-spacing:825.484732px;}
.ws16{word-spacing:1131.123751px;}
.ws25{word-spacing:1194.948492px;}
._2f{margin-left:-2.197781px;}
._1{margin-left:-1.183669px;}
._0{width:1.155899px;}
._3{width:2.769674px;}
._4{width:3.783468px;}
._7{width:5.247605px;}
._e{width:6.286075px;}
._f{width:7.445228px;}
._c{width:8.465461px;}
._9{width:10.039680px;}
._a{width:11.871781px;}
._14{width:13.195429px;}
._2{width:16.812602px;}
._8{width:17.996586px;}
._6{width:19.900535px;}
._5{width:21.066047px;}
._d{width:23.076134px;}
._10{width:24.542216px;}
._b{width:25.743887px;}
._13{width:27.296026px;}
._17{width:28.993518px;}
._12{width:30.432297px;}
._11{width:32.460802px;}
._16{width:34.893987px;}
._52{width:36.871466px;}
._19{width:37.944492px;}
._1a{width:39.250934px;}
._50{width:40.886948px;}
._15{width:44.811630px;}
._22{width:53.131655px;}
._51{width:56.846164px;}
._39{width:64.782934px;}
._31{width:66.368628px;}
._23{width:89.212563px;}
._3a{width:101.219959px;}
._1c{width:107.585886px;}
._45{width:110.800449px;}
._46{width:114.549336px;}
._3f{width:117.093584px;}
._1e{width:119.071737px;}
._4d{width:124.026900px;}
._36{width:125.275695px;}
._4e{width:126.692484px;}
._33{width:128.795292px;}
._37{width:130.365591px;}
._44{width:132.377378px;}
._3e{width:139.896019px;}
._30{width:143.491572px;}
._25{width:147.766257px;}
._4c{width:154.105945px;}
._4b{width:156.063323px;}
._3b{width:158.355407px;}
._2c{width:160.500584px;}
._18{width:162.709257px;}
._2d{width:164.705315px;}
._28{width:169.687883px;}
._3c{width:176.452135px;}
._20{width:183.807746px;}
._2a{width:184.865803px;}
._21{width:188.079114px;}
._48{width:191.582779px;}
._49{width:196.626328px;}
._40{width:198.706932px;}
._2b{width:200.025055px;}
._42{width:202.464128px;}
._32{width:208.347210px;}
._27{width:211.474794px;}
._1b{width:219.437208px;}
._24{width:224.052088px;}
._47{width:238.848031px;}
._4f{width:244.475886px;}
._43{width:246.892954px;}
._26{width:249.100271px;}
._41{width:252.413910px;}
._2e{width:262.495342px;}
._29{width:271.551417px;}
._1d{width:287.546468px;}
._3d{width:297.425240px;}
._1f{width:324.103096px;}
._4a{width:338.205929px;}
._34{width:342.313817px;}
._38{width:463.695712px;}
._35{width:1061.883040px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.879999px;}
.fs22{font-size:26.029614px;}
.fs19{font-size:30.208752px;}
.fs21{font-size:30.823584px;}
.fs20{font-size:32.036448px;}
.fs12{font-size:34.670628px;}
.fs15{font-size:34.726572px;}
.fs1f{font-size:38.043282px;}
.fsf{font-size:38.880000px;}
.fs1a{font-size:41.654304px;}
.fs11{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs1c{font-size:44.020144px;}
.fse{font-size:54.000000px;}
.fs9{font-size:59.759976px;}
.fs10{font-size:59.760000px;}
.fs13{font-size:59.970816px;}
.fs3{font-size:60.000000px;}
.fs16{font-size:60.067584px;}
.fs1{font-size:63.000000px;}
.fs17{font-size:63.505944px;}
.fs23{font-size:65.880000px;}
.fs5{font-size:66.239974px;}
.fsb{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.fs1b{font-size:72.050688px;}
.fs1d{font-size:76.142959px;}
.fsd{font-size:84.240000px;}
.fs14{font-size:89.956224px;}
.fs18{font-size:90.101376px;}
.fsa{font-size:95.759962px;}
.fsc{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.999957px;}
.fs1e{font-size:108.076032px;}
.fs8{font-size:120.239952px;}
.y28{bottom:-8.280995px;}
.y0{bottom:0.000000px;}
.yd2{bottom:3.459698px;}
.yea{bottom:3.973396px;}
.y14b{bottom:4.073397px;}
.y2b{bottom:4.499005px;}
.y2d{bottom:4.499013px;}
.y34{bottom:4.499021px;}
.y37{bottom:4.499058px;}
.y3d{bottom:4.499066px;}
.y40{bottom:4.499107px;}
.y42{bottom:4.499116px;}
.y44{bottom:4.499124px;}
.y32{bottom:6.119049px;}
.ye9{bottom:6.319801px;}
.yec{bottom:6.750009px;}
.y14c{bottom:9.655517px;}
.yeb{bottom:10.191430px;}
.y18c{bottom:10.869510px;}
.y17b{bottom:10.869528px;}
.y14f{bottom:12.188574px;}
.y145{bottom:12.657657px;}
.yd1{bottom:13.806393px;}
.y147{bottom:15.378353px;}
.yd3{bottom:17.671749px;}
.y14e{bottom:18.521220px;}
.y14a{bottom:23.165153px;}
.yd0{bottom:24.387370px;}
.y182{bottom:25.386038px;}
.y195{bottom:25.386043px;}
.ycf{bottom:32.898983px;}
.y149{bottom:34.517004px;}
.y196{bottom:53.417957px;}
.y14d{bottom:57.455256px;}
.y46{bottom:57.600026px;}
.y183{bottom:59.925360px;}
.y146{bottom:60.269770px;}
.y150{bottom:60.785761px;}
.y148{bottom:64.913714px;}
.y18e{bottom:65.431622px;}
.y5{bottom:66.525004px;}
.y17d{bottom:74.441916px;}
.y4{bottom:97.125005px;}
.y83{bottom:109.980022px;}
.y129{bottom:112.140026px;}
.y18f{bottom:116.489757px;}
.y1a2{bottom:117.360032px;}
.y197{bottom:117.991497px;}
.y184{bottom:123.497748px;}
.ya7{bottom:123.660027px;}
.y82{bottom:127.260029px;}
.y175{bottom:127.620025px;}
.y17e{bottom:129.504613px;}
.y144{bottom:133.560025px;}
.y177{bottom:134.100026px;}
.y128{bottom:138.060024px;}
.y1c3{bottom:139.140026px;}
.y22{bottom:139.264499px;}
.ydf{bottom:142.740028px;}
.y1a1{bottom:143.280030px;}
.y81{bottom:144.540024px;}
.ya6{bottom:149.580024px;}
.ya3{bottom:151.380020px;}
.y174{bottom:153.540024px;}
.y1c2{bottom:156.420021px;}
.y190{bottom:159.538815px;}
.y80{bottom:161.640026px;}
.y127{bottom:163.980022px;}
.y7f{bottom:168.480022px;}
.yde{bottom:168.660027px;}
.y198{bottom:169.049632px;}
.y1a0{bottom:169.200027px;}
.y17c{bottom:170.050756px;}
.y18d{bottom:170.050762px;}
.y151{bottom:171.180027px;}
.y185{bottom:173.054144px;}
.y1c1{bottom:173.700027px;}
.ya5{bottom:175.320020px;}
.ya2{bottom:178.920021px;}
.y173{bottom:179.280030px;}
.y115{bottom:182.160027px;}
.y17f{bottom:182.565009px;}
.yf8{bottom:185.760029px;}
.y126{bottom:189.720029px;}
.y1c0{bottom:190.980022px;}
.ydd{bottom:194.580024px;}
.y19f{bottom:195.120026px;}
.ya1{bottom:196.200027px;}
.y19{bottom:196.933500px;}
.y191{bottom:198.082698px;}
.y7e{bottom:201.240028px;}
.ye5{bottom:203.040024px;}
.y172{bottom:205.200027px;}
.y1bf{bottom:208.080024px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y199{bottom:210.596951px;}
.yac{bottom:211.680015px;}
.ya0{bottom:213.480035px;}
.y186{bottom:214.601508px;}
.y125{bottom:215.640015px;}
.ydc{bottom:220.320030px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1be{bottom:225.360031px;}
.y7d{bottom:227.160027px;}
.y180{bottom:230.119146px;}
.y9f{bottom:230.760018px;}
.y171{bottom:231.120026px;}
.y192{bottom:231.620845px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yab{bottom:237.420021px;}
.ye4{bottom:237.600014px;}
.y1bd{bottom:242.640015px;}
.ydb{bottom:246.240028px;}
.y19e{bottom:246.780030px;}
.y19a{bottom:247.639095px;}
.y9e{bottom:248.040024px;}
.y187{bottom:249.641394px;}
.y7c{bottom:253.080024px;}
.y143{bottom:255.780030px;}
.y170{bottom:257.040024px;}
.y1e{bottom:259.918497px;}
.y1bc{bottom:259.920021px;}
.y15{bottom:259.933500px;}
.yaa{bottom:263.340019px;}
.y193{bottom:263.657344px;}
.y9d{bottom:265.140015px;}
.y124{bottom:267.480011px;}
.y122{bottom:270.540024px;}
.y9c{bottom:271.980011px;}
.yda{bottom:272.160027px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y19d{bottom:272.700027px;}
.y181{bottom:276.171638px;}
.y1bb{bottom:277.200027px;}
.y7b{bottom:278.820030px;}
.y19b{bottom:279.675594px;}
.y188{bottom:280.676764px;}
.y142{bottom:281.700027px;}
.yfc{bottom:282.420021px;}
.y16f{bottom:282.780030px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.ya9{bottom:289.260018px;}
.y194{bottom:291.689281px;}
.y1ba{bottom:294.480011px;}
.yf7{bottom:295.740028px;}
.y121{bottom:296.460022px;}
.yd9{bottom:297.900032px;}
.y19c{bottom:298.620026px;}
.y7a{bottom:304.740028px;}
.y141{bottom:307.620026px;}
.y16e{bottom:308.700027px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1b9{bottom:311.580024px;}
.y9b{bottom:315.180015px;}
.y18a{bottom:320.580021px;}
.yf5{bottom:321.480011px;}
.y120{bottom:322.380020px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yd8{bottom:323.820030px;}
.y17a{bottom:324.226294px;}
.y18b{bottom:324.226299px;}
.yf6{bottom:328.320030px;}
.y1b8{bottom:328.860031px;}
.y79{bottom:330.660027px;}
.y140{bottom:333.540024px;}
.y16d{bottom:334.620026px;}
.y9a{bottom:340.920021px;}
.y1b7{bottom:346.140015px;}
.yf4{bottom:347.400009px;}
.y11f{bottom:348.120026px;}
.y10{bottom:348.133500px;}
.yd7{bottom:349.740028px;}
.y78{bottom:356.580024px;}
.y13f{bottom:359.280030px;}
.y16c{bottom:360.540024px;}
.y1b6{bottom:363.420021px;}
.ya8{bottom:366.480011px;}
.y99{bottom:366.840019px;}
.yf3{bottom:373.320030px;}
.y11e{bottom:374.040024px;}
.yd6{bottom:375.660027px;}
.y1b5{bottom:380.700027px;}
.y77{bottom:382.320030px;}
.y13e{bottom:385.200027px;}
.y16b{bottom:386.280030px;}
.yf{bottom:386.785499px;}
.y98{bottom:392.760041px;}
.y1b4{bottom:397.980010px;}
.yf2{bottom:399.240006px;}
.y11d{bottom:399.960023px;}
.yd5{bottom:401.400009px;}
.ye{bottom:408.044999px;}
.y76{bottom:408.240006px;}
.y13d{bottom:411.120025px;}
.y16a{bottom:412.200027px;}
.y1b3{bottom:415.080001px;}
.y97{bottom:418.680039px;}
.y11c{bottom:425.880019px;}
.y1b2{bottom:432.360031px;}
.y75{bottom:434.160003px;}
.y13c{bottom:437.040024px;}
.y169{bottom:438.120025px;}
.y96{bottom:444.419998px;}
.yce{bottom:449.280018px;}
.y1b1{bottom:449.640015px;}
.y11b{bottom:451.620025px;}
.yf1{bottom:455.400009px;}
.y74{bottom:459.900009px;}
.y13b{bottom:462.780030px;}
.y1b0{bottom:466.919998px;}
.y59{bottom:470.339997px;}
.yd4{bottom:470.520035px;}
.y95{bottom:477.180039px;}
.y11a{bottom:477.540024px;}
.y1af{bottom:484.200027px;}
.yd{bottom:484.864502px;}
.y73{bottom:485.820007px;}
.y13a{bottom:488.700027px;}
.y168{bottom:489.780030px;}
.y58{bottom:496.259994px;}
.y1ae{bottom:501.300018px;}
.yc{bottom:502.864502px;}
.y94{bottom:503.100036px;}
.y119{bottom:503.460023px;}
.y167{bottom:509.400009px;}
.y72{bottom:511.740006px;}
.y139{bottom:514.620025px;}
.y1ad{bottom:518.580001px;}
.yb{bottom:520.864502px;}
.y93{bottom:522.000000px;}
.y166{bottom:526.500000px;}
.y176{bottom:528.839997px;}
.y118{bottom:529.200027px;}
.ycd{bottom:530.280030px;}
.y1ac{bottom:535.860031px;}
.y71{bottom:537.660003px;}
.ya{bottom:538.864499px;}
.yf0{bottom:538.919999px;}
.y138{bottom:540.540024px;}
.y178{bottom:541.980010px;}
.y165{bottom:543.780030px;}
.y57{bottom:547.919999px;}
.y1ab{bottom:553.140015px;}
.ye3{bottom:554.759994px;}
.y117{bottom:555.120025px;}
.ycc{bottom:556.200027px;}
.y1d3{bottom:556.560013px;}
.y9{bottom:556.864499px;}
.y164{bottom:561.780030px;}
.y70{bottom:563.400009px;}
.yef{bottom:564.660003px;}
.y137{bottom:566.280030px;}
.ya4{bottom:567.900009px;}
.y1aa{bottom:570.419999px;}
.y56{bottom:573.839997px;}
.y163{bottom:579.060013px;}
.ycb{bottom:581.940033px;}
.y1a9{bottom:587.700027px;}
.y6f{bottom:589.320007px;}
.yee{bottom:590.580001px;}
.y1d2{bottom:591.120025px;}
.y136{bottom:592.200027px;}
.y162{bottom:596.339997px;}
.y55{bottom:599.759994px;}
.y116{bottom:601.740006px;}
.y1a8{bottom:604.800018px;}
.ye2{bottom:606.600036px;}
.y1d1{bottom:608.400009px;}
.y161{bottom:613.620025px;}
.y6e{bottom:615.240006px;}
.y1a7{bottom:622.080001px;}
.y54{bottom:625.500000px;}
.ye8{bottom:638.460014px;}
.y114{bottom:639.360031px;}
.y6d{bottom:641.160003px;}
.y1d0{bottom:642.780030px;}
.y8{bottom:645.510000px;}
.y160{bottom:648.000000px;}
.y135{bottom:648.360031px;}
.yed{bottom:650.700027px;}
.y53{bottom:651.419999px;}
.yca{bottom:652.860031px;}
.y113{bottom:656.640015px;}
.y1cf{bottom:660.060013px;}
.y15f{bottom:665.280030px;}
.y7{bottom:666.771000px;}
.y6c{bottom:666.900009px;}
.yc9{bottom:668.339997px;}
.y189{bottom:669.060013px;}
.y45{bottom:670.439732px;}
.y112{bottom:673.919999px;}
.y52{bottom:677.339997px;}
.y15e{bottom:682.560013px;}
.yc8{bottom:683.820007px;}
.y43{bottom:686.280600px;}
.y179{bottom:691.020014px;}
.y111{bottom:691.200027px;}
.y6b{bottom:692.820007px;}
.y1ce{bottom:694.620025px;}
.yc7{bottom:699.300018px;}
.y15d{bottom:699.839997px;}
.y51{bottom:703.259994px;}
.y41{bottom:706.260600px;}
.y1a6{bottom:708.300018px;}
.y110{bottom:708.480010px;}
.y1cd{bottom:711.900009px;}
.y15c{bottom:717.120025px;}
.y6a{bottom:718.740006px;}
.y134{bottom:721.620025px;}
.y1a5{bottom:725.580001px;}
.y10f{bottom:725.759994px;}
.y6{bottom:726.298500px;}
.y3f{bottom:726.960600px;}
.y50{bottom:729.000000px;}
.yc6{bottom:729.720016px;}
.y3e{bottom:730.739708px;}
.y123{bottom:731.160003px;}
.y15b{bottom:734.400009px;}
.ye1{bottom:735.839997px;}
.yc5{bottom:742.500000px;}
.y10e{bottom:742.860031px;}
.y69{bottom:744.660003px;}
.y133{bottom:746.280030px;}
.y3b{bottom:751.439699px;}
.y15a{bottom:751.500000px;}
.y3{bottom:752.599495px;}
.y4f{bottom:754.919999px;}
.yc4{bottom:757.259994px;}
.y10d{bottom:760.140015px;}
.y132{bottom:763.560013px;}
.y159{bottom:768.780030px;}
.yc3{bottom:770.039977px;}
.y68{bottom:770.400056px;}
.y3a{bottom:773.579691px;}
.y10c{bottom:777.420044px;}
.y92{bottom:780.839997px;}
.yc2{bottom:784.800018px;}
.y4e{bottom:785.160003px;}
.y158{bottom:786.059967px;}
.y10b{bottom:794.699982px;}
.y67{bottom:796.320007px;}
.yc1{bottom:797.580048px;}
.y131{bottom:798.120025px;}
.y39{bottom:801.119680px;}
.y157{bottom:803.339997px;}
.y91{bottom:806.760040px;}
.y10a{bottom:811.980010px;}
.yc0{bottom:812.519990px;}
.y130{bottom:815.219970px;}
.y1a4{bottom:816.300018px;}
.y156{bottom:820.620025px;}
.y66{bottom:822.240051px;}
.ybf{bottom:825.300018px;}
.y38{bottom:828.659669px;}
.y109{bottom:829.260040px;}
.y3c{bottom:830.460600px;}
.y90{bottom:832.500000px;}
.ybe{bottom:840.059967px;}
.y108{bottom:846.359985px;}
.y65{bottom:848.160003px;}
.y12f{bottom:849.780030px;}
.y36{bottom:850.620600px;}
.ybd{bottom:852.839997px;}
.y155{bottom:855.000000px;}
.y35{bottom:857.099657px;}
.y8f{bottom:858.420044px;}
.y107{bottom:863.640015px;}
.y12e{bottom:867.059967px;}
.ybc{bottom:867.600036px;}
.y31{bottom:870.600600px;}
.y154{bottom:872.280030px;}
.y64{bottom:873.899964px;}
.y30{bottom:876.719649px;}
.y4d{bottom:879.120025px;}
.y2{bottom:879.369000px;}
.ybb{bottom:880.379975px;}
.y106{bottom:880.920044px;}
.y8e{bottom:884.339997px;}
.y153{bottom:889.559967px;}
.yba{bottom:895.320007px;}
.y105{bottom:898.199982px;}
.y63{bottom:899.820007px;}
.y12d{bottom:901.620025px;}
.y2f{bottom:907.679637px;}
.y152{bottom:907.920044px;}
.yb9{bottom:908.100036px;}
.y8d{bottom:910.260040px;}
.y4c{bottom:911.879975px;}
.y104{bottom:915.480010px;}
.yfb{bottom:917.100036px;}
.y1cc{bottom:918.719970px;}
.yb8{bottom:922.859985px;}
.y12c{bottom:924.120025px;}
.y62{bottom:925.740051px;}
.y4b{bottom:930.960022px;}
.y103{bottom:932.760040px;}
.yb7{bottom:935.640015px;}
.y8c{bottom:936.000000px;}
.y2e{bottom:938.819624px;}
.y12b{bottom:942.300018px;}
.y33{bottom:943.860600px;}
.y102{bottom:949.859985px;}
.yb6{bottom:950.399964px;}
.y61{bottom:951.660003px;}
.y1cb{bottom:953.280030px;}
.y12a{bottom:959.580048px;}
.ye7{bottom:961.559967px;}
.y8b{bottom:961.920044px;}
.yb5{bottom:963.179993px;}
.y2c{bottom:964.020600px;}
.y4a{bottom:965.879975px;}
.y1{bottom:966.726000px;}
.y101{bottom:967.140015px;}
.y1ca{bottom:970.559967px;}
.y60{bottom:977.399964px;}
.yb4{bottom:978.839997px;}
.y2a{bottom:984.180600px;}
.y100{bottom:984.420044px;}
.y8a{bottom:987.839997px;}
.y29{bottom:996.959601px;}
.y27{bottom:996.960600px;}
.yff{bottom:1001.699982px;}
.y5f{bottom:1003.320007px;}
.y1c9{bottom:1005.120025px;}
.yb3{bottom:1009.800018px;}
.y89{bottom:1013.580048px;}
.yfe{bottom:1018.980010px;}
.yfa{bottom:1020.420044px;}
.y1c8{bottom:1022.219970px;}
.y49{bottom:1023.300018px;}
.yb2{bottom:1025.280030px;}
.y26{bottom:1026.659589px;}
.y5d{bottom:1029.239960px;}
.y1a3{bottom:1033.559967px;}
.y5e{bottom:1036.080048px;}
.yfd{bottom:1036.800018px;}
.y88{bottom:1039.500000px;}
.yb1{bottom:1040.940033px;}
.y5c{bottom:1054.980010px;}
.yb0{bottom:1056.420044px;}
.y1c7{bottom:1056.780030px;}
.y25{bottom:1064.819574px;}
.ye0{bottom:1065.059967px;}
.y87{bottom:1065.420044px;}
.y1c6{bottom:1074.059967px;}
.y5b{bottom:1080.899964px;}
.yaf{bottom:1086.660003px;}
.y86{bottom:1091.339997px;}
.y48{bottom:1092.960022px;}
.ye6{bottom:1098.179993px;}
.yae{bottom:1099.620025px;}
.y24{bottom:1102.979559px;}
.y1c5{bottom:1108.620025px;}
.yad{bottom:1115.640015px;}
.y85{bottom:1117.080048px;}
.yf9{bottom:1123.920044px;}
.y1c4{bottom:1125.719970px;}
.y47{bottom:1134.359985px;}
.y5a{bottom:1137.059967px;}
.y1d4{bottom:1140.960450px;}
.y23{bottom:1141.139544px;}
.y84{bottom:1143.000000px;}
.hc{height:1.919530px;}
.hb{height:7.200000px;}
.h40{height:18.962981px;}
.hd{height:19.980000px;}
.h34{height:20.975022px;}
.h30{height:20.989773px;}
.h3f{height:22.455463px;}
.h3e{height:23.339053px;}
.h23{height:24.073063px;}
.h21{height:24.089992px;}
.h2a{height:24.111907px;}
.h25{height:25.681320px;}
.h28{height:26.460000px;}
.h18{height:27.014766px;}
.h3d{height:27.696550px;}
.h35{height:28.922080px;}
.h31{height:28.942419px;}
.h1e{height:29.015859px;}
.h37{height:30.564768px;}
.h39{height:30.854287px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hf{height:33.660000px;}
.h1c{height:36.597656px;}
.h1f{height:37.494141px;}
.h1d{height:37.520508px;}
.h27{height:40.472227px;}
.h1b{height:40.501406px;}
.h19{height:41.522695px;}
.h24{height:41.639893px;}
.h22{height:41.669175px;}
.h2b{height:41.707082px;}
.h20{height:42.659999px;}
.h41{height:43.909277px;}
.h2c{height:44.094459px;}
.ha{height:44.149201px;}
.h2d{height:44.493420px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h15{height:50.027344px;}
.h36{height:50.027382px;}
.h32{height:50.062563px;}
.h38{height:52.868793px;}
.h26{height:52.889085px;}
.h3a{height:53.369577px;}
.h2{height:55.152000px;}
.h33{height:55.312062px;}
.h1a{height:57.092344px;}
.h29{height:57.222928px;}
.h11{height:58.651148px;}
.h16{height:64.899844px;}
.h2e{height:66.740131px;}
.h13{height:70.664034px;}
.h17{height:75.477542px;}
.h5{height:78.132000px;}
.h3b{height:80.054366px;}
.h2f{height:84.239999px;}
.h12{height:93.983166px;}
.he{height:108.843706px;}
.h4{height:119.055004px;}
.h10{height:121.179327px;}
.h3c{height:336.239992px;}
.h0{height:1262.833500px;}
.h14{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:8.280000px;}
.w5{width:15.120000px;}
.we{width:58.500000px;}
.wf{width:71.639997px;}
.w10{width:72.539999px;}
.wc{width:84.779999px;}
.wa{width:91.439998px;}
.wd{width:92.339997px;}
.w15{width:122.399997px;}
.w16{width:124.739997px;}
.w12{width:127.439997px;}
.w19{width:132.119997px;}
.w13{width:158.039995px;}
.w14{width:169.379997px;}
.w9{width:198.899995px;}
.w11{width:239.579994px;}
.wb{width:300.239994px;}
.w1a{width:323.999992px;}
.w17{width:378.179991px;}
.w18{width:435.599989px;}
.w8{width:497.699988px;}
.w2{width:637.794021px;}
.w3{width:892.500000px;}
.w1b{width:892.830000px;}
.w0{width:892.912500px;}
.w7{width:892.979981px;}
.w6{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:2.734666px;}
.x51{left:4.406246px;}
.x1e{left:7.559991px;}
.x1c{left:9.179998px;}
.x33{left:10.200780px;}
.x4e{left:12.187495px;}
.x61{left:13.966919px;}
.x5c{left:16.739988px;}
.x36{left:17.890615px;}
.x48{left:19.800001px;}
.x56{left:21.374995px;}
.x65{left:22.636038px;}
.x62{left:25.044124px;}
.x35{left:28.483725px;}
.x25{left:29.886096px;}
.x4d{left:34.874995px;}
.x28{left:37.543153px;}
.x58{left:45.281246px;}
.x4b{left:48.093746px;}
.x26{left:50.708665px;}
.x53{left:53.156246px;}
.x20{left:54.888826px;}
.x52{left:58.218746px;}
.x23{left:60.045625px;}
.x32{left:61.479353px;}
.x55{left:66.796871px;}
.x21{left:74.109682px;}
.x22{left:76.023958px;}
.x24{left:84.657702px;}
.x66{left:90.062530px;}
.x4a{left:92.578121px;}
.x1b{left:97.199999px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x13{left:107.459999px;}
.x5f{left:110.290489px;}
.x68{left:112.698568px;}
.x16{left:127.620003px;}
.x67{left:132.926514px;}
.x4c{left:139.265598px;}
.x64{left:149.783148px;}
.x60{left:151.227997px;}
.x10{left:160.560001px;}
.x3d{left:166.319995px;}
.x5d{left:170.099991px;}
.x3e{left:179.819995px;}
.x57{left:197.999973px;}
.x4{left:203.484001px;}
.x38{left:206.639992px;}
.x37{left:209.155309px;}
.x17{left:211.319985px;}
.x18{left:216.179992px;}
.x2a{left:223.919998px;}
.x12{left:225.359985px;}
.x34{left:226.457403px;}
.x2b{left:232.559989px;}
.x3b{left:242.639992px;}
.x3c{left:252.359985px;}
.xa{left:258.479909px;}
.x49{left:259.559994px;}
.x8{left:264.779894px;}
.x5e{left:265.859985px;}
.x54{left:267.937473px;}
.x59{left:269.015598px;}
.x50{left:277.031223px;}
.x11{left:279.899986px;}
.x4f{left:289.687473px;}
.x31{left:296.639994px;}
.xe{left:302.399879px;}
.x9{left:308.519849px;}
.x40{left:335.699992px;}
.xc{left:367.559853px;}
.x2c{left:374.759994px;}
.x2d{left:379.620003px;}
.xd{left:388.979885px;}
.x1f{left:401.039991px;}
.x41{left:419.399991px;}
.x63{left:430.199991px;}
.x3f{left:437.580001px;}
.xf{left:442.080001px;}
.x5{left:446.399821px;}
.x3{left:454.959000px;}
.x6{left:459.900000px;}
.x2e{left:464.039978px;}
.x39{left:477.539978px;}
.x3a{left:482.400009px;}
.x42{left:510.659988px;}
.x5a{left:531.719988px;}
.x46{left:548.819988px;}
.x43{left:568.079988px;}
.x1d{left:595.979986px;}
.xb{left:633.420000px;}
.x44{left:638.639985px;}
.x14{left:655.019990px;}
.x15{left:659.879975px;}
.x5b{left:662.759985px;}
.x47{left:670.139985px;}
.x7{left:677.520000px;}
.x19{left:693.719970px;}
.x1a{left:698.580001px;}
.x45{left:710.099984px;}
.x2f{left:719.639969px;}
.x30{left:724.859985px;}
.x29{left:769.140015px;}
@media print{
.v2{vertical-align:-24.319989pt;}
.v3{vertical-align:-12.216469pt;}
.v4{vertical-align:-8.319984pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.765792pt;}
.v6{vertical-align:30.521813pt;}
.v1{vertical-align:34.559899pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.004507pt;}
.lsc{letter-spacing:0.004593pt;}
.lsf{letter-spacing:0.004673pt;}
.ls19{letter-spacing:0.026072pt;}
.ls8{letter-spacing:0.026152pt;}
.ls13{letter-spacing:0.026232pt;}
.ls11{letter-spacing:0.044448pt;}
.lsa{letter-spacing:0.048714pt;}
.ls15{letter-spacing:0.048756pt;}
.lsd{letter-spacing:0.145973pt;}
.lsb{letter-spacing:0.146016pt;}
.ls18{letter-spacing:0.189035pt;}
.ls5{letter-spacing:0.229737pt;}
.ls14{letter-spacing:0.234244pt;}
.ls1{letter-spacing:0.318099pt;}
.ls2{letter-spacing:0.318105pt;}
.ls1a{letter-spacing:0.318720pt;}
.ls16{letter-spacing:0.319268pt;}
.ls9{letter-spacing:0.319311pt;}
.ls7{letter-spacing:12.061451pt;}
.ls3{letter-spacing:13.437630pt;}
.ls17{letter-spacing:13.465132pt;}
.ls4{letter-spacing:17.283280pt;}
.lse{letter-spacing:18.584692pt;}
.ls12{letter-spacing:26.264028pt;}
.ls10{letter-spacing:26.264113pt;}
.ls1b{letter-spacing:269.735401pt;}
.ws26{word-spacing:-28.476843pt;}
.ws27{word-spacing:-23.137435pt;}
.ws3{word-spacing:-18.720000pt;}
.ws11{word-spacing:-13.598720pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws1b{word-spacing:-7.825803pt;}
.ws23{word-spacing:-0.166716pt;}
.ws24{word-spacing:-0.166710pt;}
.ws20{word-spacing:-0.160865pt;}
.ws22{word-spacing:-0.069982pt;}
.ws21{word-spacing:-0.009416pt;}
.ws0{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.296666pt;}
.ws12{word-spacing:0.412219pt;}
.ws2d{word-spacing:0.548552pt;}
.ws2e{word-spacing:0.557485pt;}
.ws2f{word-spacing:0.654973pt;}
.ws1c{word-spacing:1.624383pt;}
.ws9{word-spacing:1.682887pt;}
.wsd{word-spacing:1.693492pt;}
.wse{word-spacing:3.470572pt;}
.ws7{word-spacing:3.729019pt;}
.ws17{word-spacing:4.188947pt;}
.wsb{word-spacing:4.506737pt;}
.wsf{word-spacing:4.643247pt;}
.ws18{word-spacing:5.294725pt;}
.ws1d{word-spacing:7.627366pt;}
.ws10{word-spacing:13.365498pt;}
.ws5{word-spacing:15.834480pt;}
.ws13{word-spacing:18.689148pt;}
.ws4{word-spacing:20.813040pt;}
.wsa{word-spacing:30.127230pt;}
.ws14{word-spacing:35.878241pt;}
.ws19{word-spacing:68.387111pt;}
.ws1e{word-spacing:71.794508pt;}
.ws1a{word-spacing:77.878788pt;}
.ws2a{word-spacing:85.051225pt;}
.wsc{word-spacing:104.704473pt;}
.ws28{word-spacing:113.528007pt;}
.ws29{word-spacing:115.307870pt;}
.ws8{word-spacing:122.233850pt;}
.ws2b{word-spacing:190.059433pt;}
.ws15{word-spacing:591.380039pt;}
.ws1f{word-spacing:733.764207pt;}
.ws16{word-spacing:1005.443334pt;}
.ws25{word-spacing:1062.176438pt;}
._2f{margin-left:-1.953583pt;}
._1{margin-left:-1.052151pt;}
._0{width:1.027465pt;}
._3{width:2.461932pt;}
._4{width:3.363082pt;}
._7{width:4.664537pt;}
._e{width:5.587623pt;}
._f{width:6.617980pt;}
._c{width:7.524855pt;}
._9{width:8.924160pt;}
._a{width:10.552695pt;}
._14{width:11.729271pt;}
._2{width:14.944535pt;}
._8{width:15.996965pt;}
._6{width:17.689364pt;}
._5{width:18.725375pt;}
._d{width:20.512120pt;}
._10{width:21.815303pt;}
._b{width:22.883455pt;}
._13{width:24.263134pt;}
._17{width:25.772016pt;}
._12{width:27.050930pt;}
._11{width:28.854046pt;}
._16{width:31.016877pt;}
._52{width:32.774637pt;}
._19{width:33.728437pt;}
._1a{width:34.889720pt;}
._50{width:36.343954pt;}
._15{width:39.832560pt;}
._22{width:47.228138pt;}
._51{width:50.529923pt;}
._39{width:57.584830pt;}
._31{width:58.994336pt;}
._23{width:79.300056pt;}
._3a{width:89.973297pt;}
._1c{width:95.631899pt;}
._45{width:98.489288pt;}
._46{width:101.821632pt;}
._3f{width:104.083186pt;}
._1e{width:105.841544pt;}
._4d{width:110.246134pt;}
._36{width:111.356173pt;}
._4e{width:112.615542pt;}
._33{width:114.484704pt;}
._37{width:115.880525pt;}
._44{width:117.668781pt;}
._3e{width:124.352017pt;}
._30{width:127.548064pt;}
._25{width:131.347784pt;}
._4c{width:136.983062pt;}
._4b{width:138.722954pt;}
._3b{width:140.760362pt;}
._2c{width:142.667186pt;}
._18{width:144.630451pt;}
._2d{width:146.404725pt;}
._28{width:150.833674pt;}
._3c{width:156.846342pt;}
._20{width:163.384663pt;}
._2a{width:164.325159pt;}
._21{width:167.181435pt;}
._48{width:170.295804pt;}
._49{width:174.778958pt;}
._40{width:176.628384pt;}
._2b{width:177.800049pt;}
._42{width:179.968114pt;}
._32{width:185.197520pt;}
._27{width:187.977595pt;}
._1b{width:195.055296pt;}
._24{width:199.157412pt;}
._47{width:212.309361pt;}
._4f{width:217.311899pt;}
._43{width:219.460404pt;}
._26{width:221.422463pt;}
._41{width:224.367920pt;}
._2e{width:233.329193pt;}
._29{width:241.379037pt;}
._1d{width:255.596861pt;}
._3d{width:264.377991pt;}
._1f{width:288.091641pt;}
._4a{width:300.627493pt;}
._34{width:304.278949pt;}
._38{width:412.173966pt;}
._35{width:943.896035pt;}
.fs6{font-size:2.559999pt;}
.fs22{font-size:23.137435pt;}
.fs19{font-size:26.852224pt;}
.fs21{font-size:27.398741pt;}
.fs20{font-size:28.476843pt;}
.fs12{font-size:30.818336pt;}
.fs15{font-size:30.868064pt;}
.fs1f{font-size:33.816251pt;}
.fsf{font-size:34.560000pt;}
.fs1a{font-size:37.026048pt;}
.fs11{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs1c{font-size:39.129017pt;}
.fse{font-size:48.000000pt;}
.fs9{font-size:53.119979pt;}
.fs10{font-size:53.120000pt;}
.fs13{font-size:53.307392pt;}
.fs3{font-size:53.333333pt;}
.fs16{font-size:53.393408pt;}
.fs1{font-size:56.000000pt;}
.fs17{font-size:56.449728pt;}
.fs23{font-size:58.560000pt;}
.fs5{font-size:58.879976pt;}
.fsb{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.fs1b{font-size:64.045056pt;}
.fs1d{font-size:67.682630pt;}
.fsd{font-size:74.880000pt;}
.fs14{font-size:79.961088pt;}
.fs18{font-size:80.090112pt;}
.fsa{font-size:85.119966pt;}
.fsc{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.999962pt;}
.fs1e{font-size:96.067584pt;}
.fs8{font-size:106.879957pt;}
.y28{bottom:-7.360885pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:3.075287pt;}
.yea{bottom:3.531908pt;}
.y14b{bottom:3.620797pt;}
.y2b{bottom:3.999115pt;}
.y2d{bottom:3.999122pt;}
.y34{bottom:3.999129pt;}
.y37{bottom:3.999163pt;}
.y3d{bottom:3.999170pt;}
.y40{bottom:3.999207pt;}
.y42{bottom:3.999214pt;}
.y44{bottom:3.999221pt;}
.y32{bottom:5.439155pt;}
.ye9{bottom:5.617601pt;}
.yec{bottom:6.000008pt;}
.y14c{bottom:8.582681pt;}
.yeb{bottom:9.059049pt;}
.y18c{bottom:9.661787pt;}
.y17b{bottom:9.661803pt;}
.y14f{bottom:10.834288pt;}
.y145{bottom:11.251251pt;}
.yd1{bottom:12.272349pt;}
.y147{bottom:13.669647pt;}
.yd3{bottom:15.708221pt;}
.y14e{bottom:16.463307pt;}
.y14a{bottom:20.591247pt;}
.yd0{bottom:21.677663pt;}
.y182{bottom:22.565367pt;}
.y195{bottom:22.565372pt;}
.ycf{bottom:29.243540pt;}
.y149{bottom:30.681781pt;}
.y196{bottom:47.482628pt;}
.y14d{bottom:51.071339pt;}
.y46{bottom:51.200023pt;}
.y183{bottom:53.266987pt;}
.y146{bottom:53.573129pt;}
.y150{bottom:54.031788pt;}
.y148{bottom:57.701079pt;}
.y18e{bottom:58.161441pt;}
.y5{bottom:59.133337pt;}
.y17d{bottom:66.170592pt;}
.y4{bottom:86.333337pt;}
.y83{bottom:97.760020pt;}
.y129{bottom:99.680023pt;}
.y18f{bottom:103.546451pt;}
.y1a2{bottom:104.320028pt;}
.y197{bottom:104.881331pt;}
.y184{bottom:109.775776pt;}
.ya7{bottom:109.920024pt;}
.y82{bottom:113.120025pt;}
.y175{bottom:113.440023pt;}
.y17e{bottom:115.115212pt;}
.y144{bottom:118.720023pt;}
.y177{bottom:119.200023pt;}
.y128{bottom:122.720021pt;}
.y1c3{bottom:123.680023pt;}
.y22{bottom:123.790666pt;}
.ydf{bottom:126.880025pt;}
.y1a1{bottom:127.360027pt;}
.y81{bottom:128.480021pt;}
.ya6{bottom:132.960021pt;}
.ya3{bottom:134.560017pt;}
.y174{bottom:136.480021pt;}
.y1c2{bottom:139.040019pt;}
.y190{bottom:141.812280pt;}
.y80{bottom:143.680023pt;}
.y127{bottom:145.760020pt;}
.y7f{bottom:149.760020pt;}
.yde{bottom:149.920024pt;}
.y198{bottom:150.266340pt;}
.y1a0{bottom:150.400024pt;}
.y17c{bottom:151.156228pt;}
.y18d{bottom:151.156233pt;}
.y151{bottom:152.160024pt;}
.y185{bottom:153.825905pt;}
.y1c1{bottom:154.400024pt;}
.ya5{bottom:155.840017pt;}
.ya2{bottom:159.040019pt;}
.y173{bottom:159.360027pt;}
.y115{bottom:161.920024pt;}
.y17f{bottom:162.280008pt;}
.yf8{bottom:165.120025pt;}
.y126{bottom:168.640025pt;}
.y1c0{bottom:169.760020pt;}
.ydd{bottom:172.960021pt;}
.y19f{bottom:173.440023pt;}
.ya1{bottom:174.400024pt;}
.y19{bottom:175.052000pt;}
.y191{bottom:176.073509pt;}
.y7e{bottom:178.880025pt;}
.ye5{bottom:180.480021pt;}
.y172{bottom:182.400024pt;}
.y1bf{bottom:184.960021pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y199{bottom:187.197289pt;}
.yac{bottom:188.160013pt;}
.ya0{bottom:189.760031pt;}
.y186{bottom:190.756896pt;}
.y125{bottom:191.680013pt;}
.ydc{bottom:195.840027pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1be{bottom:200.320028pt;}
.y7d{bottom:201.920024pt;}
.y180{bottom:204.550352pt;}
.y9f{bottom:205.120016pt;}
.y171{bottom:205.440023pt;}
.y192{bottom:205.885196pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yab{bottom:211.040019pt;}
.ye4{bottom:211.200012pt;}
.y1bd{bottom:215.680013pt;}
.ydb{bottom:218.880025pt;}
.y19e{bottom:219.360027pt;}
.y19a{bottom:220.123640pt;}
.y9e{bottom:220.480021pt;}
.y187{bottom:221.903461pt;}
.y7c{bottom:224.960021pt;}
.y143{bottom:227.360027pt;}
.y170{bottom:228.480021pt;}
.y1e{bottom:231.038664pt;}
.y1bc{bottom:231.040019pt;}
.y15{bottom:231.052000pt;}
.yaa{bottom:234.080017pt;}
.y193{bottom:234.362084pt;}
.y9d{bottom:235.680013pt;}
.y124{bottom:237.760009pt;}
.y122{bottom:240.480021pt;}
.y9c{bottom:241.760009pt;}
.yda{bottom:241.920024pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y19d{bottom:242.400024pt;}
.y181{bottom:245.485900pt;}
.y1bb{bottom:246.400024pt;}
.y7b{bottom:247.840027pt;}
.y19b{bottom:248.600528pt;}
.y188{bottom:249.490457pt;}
.y142{bottom:250.400024pt;}
.yfc{bottom:251.040019pt;}
.y16f{bottom:251.360027pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.ya9{bottom:257.120016pt;}
.y194{bottom:259.279361pt;}
.y1ba{bottom:261.760009pt;}
.yf7{bottom:262.880025pt;}
.y121{bottom:263.520020pt;}
.yd9{bottom:264.800028pt;}
.y19c{bottom:265.440023pt;}
.y7a{bottom:270.880025pt;}
.y141{bottom:273.440023pt;}
.y16e{bottom:274.400024pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1b9{bottom:276.960021pt;}
.y9b{bottom:280.160013pt;}
.y18a{bottom:284.960019pt;}
.yf5{bottom:285.760009pt;}
.y120{bottom:286.560017pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yd8{bottom:287.840027pt;}
.y17a{bottom:288.201151pt;}
.y18b{bottom:288.201155pt;}
.yf6{bottom:291.840027pt;}
.y1b8{bottom:292.320028pt;}
.y79{bottom:293.920024pt;}
.y140{bottom:296.480021pt;}
.y16d{bottom:297.440023pt;}
.y9a{bottom:303.040019pt;}
.y1b7{bottom:307.680013pt;}
.yf4{bottom:308.800008pt;}
.y11f{bottom:309.440023pt;}
.y10{bottom:309.452000pt;}
.yd7{bottom:310.880025pt;}
.y78{bottom:316.960021pt;}
.y13f{bottom:319.360027pt;}
.y16c{bottom:320.480021pt;}
.y1b6{bottom:323.040019pt;}
.ya8{bottom:325.760009pt;}
.y99{bottom:326.080017pt;}
.yf3{bottom:331.840027pt;}
.y11e{bottom:332.480021pt;}
.yd6{bottom:333.920024pt;}
.y1b5{bottom:338.400024pt;}
.y77{bottom:339.840027pt;}
.y13e{bottom:342.400024pt;}
.y16b{bottom:343.360027pt;}
.yf{bottom:343.809333pt;}
.y98{bottom:349.120036pt;}
.y1b4{bottom:353.760009pt;}
.yf2{bottom:354.880005pt;}
.y11d{bottom:355.520020pt;}
.yd5{bottom:356.800008pt;}
.ye{bottom:362.706666pt;}
.y76{bottom:362.880005pt;}
.y13d{bottom:365.440023pt;}
.y16a{bottom:366.400024pt;}
.y1b3{bottom:368.960001pt;}
.y97{bottom:372.160035pt;}
.y11c{bottom:378.560017pt;}
.y1b2{bottom:384.320028pt;}
.y75{bottom:385.920003pt;}
.y13c{bottom:388.480021pt;}
.y169{bottom:389.440023pt;}
.y96{bottom:395.039999pt;}
.yce{bottom:399.360016pt;}
.y1b1{bottom:399.680013pt;}
.y11b{bottom:401.440023pt;}
.yf1{bottom:404.800008pt;}
.y74{bottom:408.800008pt;}
.y13b{bottom:411.360027pt;}
.y1b0{bottom:415.039999pt;}
.y59{bottom:418.079997pt;}
.yd4{bottom:418.240031pt;}
.y95{bottom:424.160035pt;}
.y11a{bottom:424.480021pt;}
.y1af{bottom:430.400024pt;}
.yd{bottom:430.990669pt;}
.y73{bottom:431.840007pt;}
.y13a{bottom:434.400024pt;}
.y168{bottom:435.360027pt;}
.y58{bottom:441.119995pt;}
.y1ae{bottom:445.600016pt;}
.yc{bottom:446.990669pt;}
.y94{bottom:447.200032pt;}
.y119{bottom:447.520020pt;}
.y167{bottom:452.800008pt;}
.y72{bottom:454.880005pt;}
.y139{bottom:457.440023pt;}
.y1ad{bottom:460.960001pt;}
.yb{bottom:462.990669pt;}
.y93{bottom:464.000000pt;}
.y166{bottom:468.000000pt;}
.y176{bottom:470.079997pt;}
.y118{bottom:470.400024pt;}
.ycd{bottom:471.360027pt;}
.y1ac{bottom:476.320028pt;}
.y71{bottom:477.920003pt;}
.ya{bottom:478.990666pt;}
.yf0{bottom:479.039999pt;}
.y138{bottom:480.480021pt;}
.y178{bottom:481.760009pt;}
.y165{bottom:483.360027pt;}
.y57{bottom:487.039999pt;}
.y1ab{bottom:491.680013pt;}
.ye3{bottom:493.119995pt;}
.y117{bottom:493.440023pt;}
.ycc{bottom:494.400024pt;}
.y1d3{bottom:494.720012pt;}
.y9{bottom:494.990666pt;}
.y164{bottom:499.360027pt;}
.y70{bottom:500.800008pt;}
.yef{bottom:501.920003pt;}
.y137{bottom:503.360027pt;}
.ya4{bottom:504.800008pt;}
.y1aa{bottom:507.039999pt;}
.y56{bottom:510.079997pt;}
.y163{bottom:514.720012pt;}
.ycb{bottom:517.280029pt;}
.y1a9{bottom:522.400024pt;}
.y6f{bottom:523.840007pt;}
.yee{bottom:524.960001pt;}
.y1d2{bottom:525.440023pt;}
.y136{bottom:526.400024pt;}
.y162{bottom:530.079997pt;}
.y55{bottom:533.119995pt;}
.y116{bottom:534.880005pt;}
.y1a8{bottom:537.600016pt;}
.ye2{bottom:539.200032pt;}
.y1d1{bottom:540.800008pt;}
.y161{bottom:545.440023pt;}
.y6e{bottom:546.880005pt;}
.y1a7{bottom:552.960001pt;}
.y54{bottom:556.000000pt;}
.ye8{bottom:567.520012pt;}
.y114{bottom:568.320028pt;}
.y6d{bottom:569.920003pt;}
.y1d0{bottom:571.360027pt;}
.y8{bottom:573.786667pt;}
.y160{bottom:576.000000pt;}
.y135{bottom:576.320028pt;}
.yed{bottom:578.400024pt;}
.y53{bottom:579.039999pt;}
.yca{bottom:580.320028pt;}
.y113{bottom:583.680013pt;}
.y1cf{bottom:586.720012pt;}
.y15f{bottom:591.360027pt;}
.y7{bottom:592.685334pt;}
.y6c{bottom:592.800008pt;}
.yc9{bottom:594.079997pt;}
.y189{bottom:594.720012pt;}
.y45{bottom:595.946428pt;}
.y112{bottom:599.039999pt;}
.y52{bottom:602.079997pt;}
.y15e{bottom:606.720012pt;}
.yc8{bottom:607.840007pt;}
.y43{bottom:610.027200pt;}
.y179{bottom:614.240012pt;}
.y111{bottom:614.400024pt;}
.y6b{bottom:615.840007pt;}
.y1ce{bottom:617.440023pt;}
.yc7{bottom:621.600016pt;}
.y15d{bottom:622.079997pt;}
.y51{bottom:625.119995pt;}
.y41{bottom:627.787200pt;}
.y1a6{bottom:629.600016pt;}
.y110{bottom:629.760009pt;}
.y1cd{bottom:632.800008pt;}
.y15c{bottom:637.440023pt;}
.y6a{bottom:638.880005pt;}
.y134{bottom:641.440023pt;}
.y1a5{bottom:644.960001pt;}
.y10f{bottom:645.119995pt;}
.y6{bottom:645.598667pt;}
.y3f{bottom:646.187200pt;}
.y50{bottom:648.000000pt;}
.yc6{bottom:648.640015pt;}
.y3e{bottom:649.546407pt;}
.y123{bottom:649.920003pt;}
.y15b{bottom:652.800008pt;}
.ye1{bottom:654.079997pt;}
.yc5{bottom:660.000000pt;}
.y10e{bottom:660.320028pt;}
.y69{bottom:661.920003pt;}
.y133{bottom:663.360027pt;}
.y3b{bottom:667.946399pt;}
.y15a{bottom:668.000000pt;}
.y3{bottom:668.977329pt;}
.y4f{bottom:671.039999pt;}
.yc4{bottom:673.119995pt;}
.y10d{bottom:675.680013pt;}
.y132{bottom:678.720012pt;}
.y159{bottom:683.360027pt;}
.yc3{bottom:684.479980pt;}
.y68{bottom:684.800049pt;}
.y3a{bottom:687.626392pt;}
.y10c{bottom:691.040039pt;}
.y92{bottom:694.079997pt;}
.yc2{bottom:697.600016pt;}
.y4e{bottom:697.920003pt;}
.y158{bottom:698.719971pt;}
.y10b{bottom:706.399984pt;}
.y67{bottom:707.840007pt;}
.yc1{bottom:708.960043pt;}
.y131{bottom:709.440023pt;}
.y39{bottom:712.106382pt;}
.y157{bottom:714.079997pt;}
.y91{bottom:717.120036pt;}
.y10a{bottom:721.760009pt;}
.yc0{bottom:722.239991pt;}
.y130{bottom:724.639973pt;}
.y1a4{bottom:725.600016pt;}
.y156{bottom:729.440023pt;}
.y66{bottom:730.880045pt;}
.ybf{bottom:733.600016pt;}
.y38{bottom:736.586372pt;}
.y109{bottom:737.120036pt;}
.y3c{bottom:738.187200pt;}
.y90{bottom:740.000000pt;}
.ybe{bottom:746.719971pt;}
.y108{bottom:752.319987pt;}
.y65{bottom:753.920003pt;}
.y12f{bottom:755.360027pt;}
.y36{bottom:756.107200pt;}
.ybd{bottom:758.079997pt;}
.y155{bottom:760.000000pt;}
.y35{bottom:761.866362pt;}
.y8f{bottom:763.040039pt;}
.y107{bottom:767.680013pt;}
.y12e{bottom:770.719971pt;}
.ybc{bottom:771.200032pt;}
.y31{bottom:773.867200pt;}
.y154{bottom:775.360027pt;}
.y64{bottom:776.799968pt;}
.y30{bottom:779.306355pt;}
.y4d{bottom:781.440023pt;}
.y2{bottom:781.661334pt;}
.ybb{bottom:782.559977pt;}
.y106{bottom:783.040039pt;}
.y8e{bottom:786.079997pt;}
.y153{bottom:790.719971pt;}
.yba{bottom:795.840007pt;}
.y105{bottom:798.399984pt;}
.y63{bottom:799.840007pt;}
.y12d{bottom:801.440023pt;}
.y2f{bottom:806.826344pt;}
.y152{bottom:807.040039pt;}
.yb9{bottom:807.200032pt;}
.y8d{bottom:809.120036pt;}
.y4c{bottom:810.559977pt;}
.y104{bottom:813.760009pt;}
.yfb{bottom:815.200032pt;}
.y1cc{bottom:816.639973pt;}
.yb8{bottom:820.319987pt;}
.y12c{bottom:821.440023pt;}
.y62{bottom:822.880045pt;}
.y4b{bottom:827.520020pt;}
.y103{bottom:829.120036pt;}
.yb7{bottom:831.680013pt;}
.y8c{bottom:832.000000pt;}
.y2e{bottom:834.506333pt;}
.y12b{bottom:837.600016pt;}
.y33{bottom:838.987200pt;}
.y102{bottom:844.319987pt;}
.yb6{bottom:844.799968pt;}
.y61{bottom:845.920003pt;}
.y1cb{bottom:847.360027pt;}
.y12a{bottom:852.960043pt;}
.ye7{bottom:854.719971pt;}
.y8b{bottom:855.040039pt;}
.yb5{bottom:856.159993pt;}
.y2c{bottom:856.907200pt;}
.y4a{bottom:858.559977pt;}
.y1{bottom:859.312000pt;}
.y101{bottom:859.680013pt;}
.y1ca{bottom:862.719971pt;}
.y60{bottom:868.799968pt;}
.yb4{bottom:870.079997pt;}
.y2a{bottom:874.827200pt;}
.y100{bottom:875.040039pt;}
.y8a{bottom:878.079997pt;}
.y29{bottom:886.186312pt;}
.y27{bottom:886.187200pt;}
.yff{bottom:890.399984pt;}
.y5f{bottom:891.840007pt;}
.y1c9{bottom:893.440023pt;}
.yb3{bottom:897.600016pt;}
.y89{bottom:900.960043pt;}
.yfe{bottom:905.760009pt;}
.yfa{bottom:907.040039pt;}
.y1c8{bottom:908.639973pt;}
.y49{bottom:909.600016pt;}
.yb2{bottom:911.360027pt;}
.y26{bottom:912.586302pt;}
.y5d{bottom:914.879964pt;}
.y1a3{bottom:918.719971pt;}
.y5e{bottom:920.960043pt;}
.yfd{bottom:921.600016pt;}
.y88{bottom:924.000000pt;}
.yb1{bottom:925.280029pt;}
.y5c{bottom:937.760009pt;}
.yb0{bottom:939.040039pt;}
.y1c7{bottom:939.360027pt;}
.y25{bottom:946.506288pt;}
.ye0{bottom:946.719971pt;}
.y87{bottom:947.040039pt;}
.y1c6{bottom:954.719971pt;}
.y5b{bottom:960.799968pt;}
.yaf{bottom:965.920003pt;}
.y86{bottom:970.079997pt;}
.y48{bottom:971.520020pt;}
.ye6{bottom:976.159993pt;}
.yae{bottom:977.440023pt;}
.y24{bottom:980.426274pt;}
.y1c5{bottom:985.440023pt;}
.yad{bottom:991.680013pt;}
.y85{bottom:992.960043pt;}
.yf9{bottom:999.040039pt;}
.y1c4{bottom:1000.639973pt;}
.y47{bottom:1008.319987pt;}
.y5a{bottom:1010.719971pt;}
.y1d4{bottom:1014.187067pt;}
.y23{bottom:1014.346261pt;}
.y84{bottom:1016.000000pt;}
.hc{height:1.706249pt;}
.hb{height:6.400000pt;}
.h40{height:16.855983pt;}
.hd{height:17.760000pt;}
.h34{height:18.644464pt;}
.h30{height:18.657576pt;}
.h3f{height:19.960411pt;}
.h3e{height:20.745825pt;}
.h23{height:21.398278pt;}
.h21{height:21.413326pt;}
.h2a{height:21.432806pt;}
.h25{height:22.827840pt;}
.h28{height:23.520000pt;}
.h18{height:24.013125pt;}
.h3d{height:24.619155pt;}
.h35{height:25.708516pt;}
.h31{height:25.726595pt;}
.h1e{height:25.791875pt;}
.h37{height:27.168683pt;}
.h39{height:27.426033pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hf{height:29.920000pt;}
.h1c{height:32.531250pt;}
.h1f{height:33.328125pt;}
.h1d{height:33.351563pt;}
.h27{height:35.975313pt;}
.h1b{height:36.001250pt;}
.h19{height:36.909063pt;}
.h24{height:37.013238pt;}
.h22{height:37.039267pt;}
.h2b{height:37.072962pt;}
.h20{height:37.919999pt;}
.h41{height:39.030469pt;}
.h2c{height:39.195075pt;}
.ha{height:39.243734pt;}
.h2d{height:39.549707pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h15{height:44.468750pt;}
.h36{height:44.468784pt;}
.h32{height:44.500056pt;}
.h38{height:46.994483pt;}
.h26{height:47.012520pt;}
.h3a{height:47.439624pt;}
.h2{height:49.024000pt;}
.h33{height:49.166277pt;}
.h1a{height:50.748750pt;}
.h29{height:50.864825pt;}
.h11{height:52.134354pt;}
.h16{height:57.688750pt;}
.h2e{height:59.324561pt;}
.h13{height:62.812475pt;}
.h17{height:67.091149pt;}
.h5{height:69.450667pt;}
.h3b{height:71.159436pt;}
.h2f{height:74.879999pt;}
.h12{height:83.540592pt;}
.he{height:96.749961pt;}
.h4{height:105.826671pt;}
.h10{height:107.714957pt;}
.h3c{height:298.879993pt;}
.h0{height:1122.518667pt;}
.h14{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:7.360000pt;}
.w5{width:13.440000pt;}
.we{width:52.000000pt;}
.wf{width:63.679997pt;}
.w10{width:64.479999pt;}
.wc{width:75.359999pt;}
.wa{width:81.279999pt;}
.wd{width:82.079997pt;}
.w15{width:108.799997pt;}
.w16{width:110.879997pt;}
.w12{width:113.279997pt;}
.w19{width:117.439997pt;}
.w13{width:140.479996pt;}
.w14{width:150.559997pt;}
.w9{width:176.799996pt;}
.w11{width:212.959995pt;}
.wb{width:266.879995pt;}
.w1a{width:287.999993pt;}
.w17{width:336.159992pt;}
.w18{width:387.199991pt;}
.w8{width:442.399989pt;}
.w2{width:566.928019pt;}
.w3{width:793.333333pt;}
.w1b{width:793.626667pt;}
.w0{width:793.700000pt;}
.w7{width:793.759983pt;}
.w6{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:2.430815pt;}
.x51{left:3.916663pt;}
.x1e{left:6.719992pt;}
.x1c{left:8.159999pt;}
.x33{left:9.067360pt;}
.x4e{left:10.833329pt;}
.x61{left:12.415039pt;}
.x5c{left:14.879989pt;}
.x36{left:15.902769pt;}
.x48{left:17.600001pt;}
.x56{left:18.999996pt;}
.x65{left:20.120923pt;}
.x62{left:22.261444pt;}
.x35{left:25.318867pt;}
.x25{left:26.565419pt;}
.x4d{left:30.999996pt;}
.x28{left:33.371692pt;}
.x58{left:40.249996pt;}
.x4b{left:42.749996pt;}
.x26{left:45.074369pt;}
.x53{left:47.249996pt;}
.x20{left:48.790068pt;}
.x52{left:51.749996pt;}
.x23{left:53.373889pt;}
.x32{left:54.648313pt;}
.x55{left:59.374996pt;}
.x21{left:65.875273pt;}
.x22{left:67.576852pt;}
.x24{left:75.251291pt;}
.x66{left:80.055583pt;}
.x4a{left:82.291663pt;}
.x1b{left:86.399999pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x13{left:95.519999pt;}
.x5f{left:98.035991pt;}
.x68{left:100.176505pt;}
.x16{left:113.440003pt;}
.x67{left:118.156901pt;}
.x4c{left:123.791643pt;}
.x64{left:133.140576pt;}
.x60{left:134.424887pt;}
.x10{left:142.720001pt;}
.x3d{left:147.839996pt;}
.x5d{left:151.199992pt;}
.x3e{left:159.839996pt;}
.x57{left:175.999976pt;}
.x4{left:180.874667pt;}
.x38{left:183.679993pt;}
.x37{left:185.915831pt;}
.x17{left:187.839987pt;}
.x18{left:192.159993pt;}
.x2a{left:199.039999pt;}
.x12{left:200.319987pt;}
.x34{left:201.295469pt;}
.x2b{left:206.719991pt;}
.x3b{left:215.679993pt;}
.x3c{left:224.319987pt;}
.xa{left:229.759919pt;}
.x49{left:230.719995pt;}
.x8{left:235.359906pt;}
.x5e{left:236.319987pt;}
.x54{left:238.166643pt;}
.x59{left:239.124976pt;}
.x50{left:246.249976pt;}
.x11{left:248.799988pt;}
.x4f{left:257.499976pt;}
.x31{left:263.679995pt;}
.xe{left:268.799892pt;}
.x9{left:274.239866pt;}
.x40{left:298.399993pt;}
.xc{left:326.719869pt;}
.x2c{left:333.119995pt;}
.x2d{left:337.440003pt;}
.xd{left:345.759898pt;}
.x1f{left:356.479992pt;}
.x41{left:372.799992pt;}
.x63{left:382.399992pt;}
.x3f{left:388.960001pt;}
.xf{left:392.960001pt;}
.x5{left:396.799841pt;}
.x3{left:404.408000pt;}
.x6{left:408.800000pt;}
.x2e{left:412.479980pt;}
.x39{left:424.479980pt;}
.x3a{left:428.800008pt;}
.x42{left:453.919989pt;}
.x5a{left:472.639989pt;}
.x46{left:487.839989pt;}
.x43{left:504.959989pt;}
.x1d{left:529.759988pt;}
.xb{left:563.040000pt;}
.x44{left:567.679987pt;}
.x14{left:582.239991pt;}
.x15{left:586.559977pt;}
.x5b{left:589.119987pt;}
.x47{left:595.679987pt;}
.x7{left:602.240000pt;}
.x19{left:616.639973pt;}
.x1a{left:620.960001pt;}
.x45{left:631.199985pt;}
.x2f{left:639.679972pt;}
.x30{left:644.319987pt;}
.x29{left:683.680013pt;}
}




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