
    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_34e6da425cd75890381914e4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0be5d13863f3e23d5d37549f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_627aa7e7c32ce09c7d6b047b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_141595a7533def2d1f84f39b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_97bfdf03ae7fa9e3fad4db16.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8259f23f34d78d72388b85b5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b5680ce8ec0a91b6065a6d5d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_cefb50865dc417ea649f4e64.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_5b3f0b777c2585e2d22e6f7b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.m6{transform:matrix(0.212883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212883,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.227948,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.227948,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227948,0.000001,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.228652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228652,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.228652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228652,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237453,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237456,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.239116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239116,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247576,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247784,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);}
.m11{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252784,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253398,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254148,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.255298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255298,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.256762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256762,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.263492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263492,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.263493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263493,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-57.103944px;}
.v8{vertical-align:-53.738459px;}
.v3{vertical-align:-52.286185px;}
.va{vertical-align:-36.492100px;}
.vb{vertical-align:-34.572184px;}
.v1{vertical-align:-18.849297px;}
.v7{vertical-align:-17.132391px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.428603px;}
.v2{vertical-align:18.849297px;}
.v4{vertical-align:50.860353px;}
.v5{vertical-align:52.421976px;}
.lsc{letter-spacing:-3.000000px;}
.lse{letter-spacing:-2.994000px;}
.lsb{letter-spacing:-2.988000px;}
.lsd{letter-spacing:-2.700000px;}
.lsf{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.168000px;}
.ls24{letter-spacing:-0.120000px;}
.ls22{letter-spacing:-0.024000px;}
.lsa{letter-spacing:-0.012000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls12{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.204000px;}
.ls14{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.384000px;}
.ls5{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.624000px;}
.ls19{letter-spacing:1.013401px;}
.ls20{letter-spacing:2.330897px;}
.ls2a{letter-spacing:3.540000px;}
.ls2b{letter-spacing:3.600000px;}
.ls29{letter-spacing:6.000000px;}
.ls27{letter-spacing:7.200000px;}
.ls23{letter-spacing:7.800000px;}
.ls26{letter-spacing:8.784000px;}
.ls10{letter-spacing:13.200000px;}
.ls25{letter-spacing:25.800000px;}
.ls6{letter-spacing:25.860000px;}
.ls7{letter-spacing:42.660000px;}
.ls1a{letter-spacing:91.763968px;}
.ls1e{letter-spacing:98.750468px;}
.ls1f{letter-spacing:115.837102px;}
.ls1d{letter-spacing:124.761015px;}
.ls1c{letter-spacing:128.218803px;}
.ls2c{letter-spacing:185.334000px;}
.ls16{letter-spacing:234.451017px;}
.ls1b{letter-spacing:289.690670px;}
.ls17{letter-spacing:303.888865px;}
.ls21{letter-spacing:707.306325px;}
.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;}
}
.ws2b{word-spacing:-43.767758px;}
.ws21{word-spacing:-41.892344px;}
.ws2f{word-spacing:-41.607066px;}
.ws11{word-spacing:-41.203224px;}
.ws14{word-spacing:-39.426958px;}
.wsd{word-spacing:-37.740041px;}
.ws27{word-spacing:-30.815960px;}
.ws1a{word-spacing:-29.923019px;}
.ws2a{word-spacing:-23.733352px;}
.ws13{word-spacing:-22.998897px;}
.ws39{word-spacing:-18.800167px;}
.ws37{word-spacing:-18.600000px;}
.ws26{word-spacing:-18.512282px;}
.ws1c{word-spacing:-18.024000px;}
.wsa{word-spacing:-18.000000px;}
.ws38{word-spacing:-17.976000px;}
.ws1b{word-spacing:-17.953988px;}
.ws3c{word-spacing:-17.846161px;}
.ws48{word-spacing:-17.832000px;}
.ws9{word-spacing:-17.784000px;}
.ws3b{word-spacing:-17.775402px;}
.wse{word-spacing:-17.185811px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws15{word-spacing:-11.486487px;}
.ws2c{word-spacing:-10.941939px;}
.ws23{word-spacing:-10.807537px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws19{word-spacing:-10.473086px;}
.wsb{word-spacing:0.000000px;}
.ws36{word-spacing:28.246221px;}
.ws35{word-spacing:37.861681px;}
.ws2e{word-spacing:38.970612px;}
.ws30{word-spacing:39.736288px;}
.ws3a{word-spacing:52.683832px;}
.wsc{word-spacing:84.196388px;}
.ws16{word-spacing:128.170197px;}
.ws1e{word-spacing:128.588519px;}
.ws34{word-spacing:142.705410px;}
.ws20{word-spacing:142.850349px;}
.ws24{word-spacing:145.900397px;}
.ws29{word-spacing:150.280962px;}
.ws18{word-spacing:151.534960px;}
.ws33{word-spacing:151.682256px;}
.wsf{word-spacing:151.751511px;}
.ws31{word-spacing:154.122985px;}
.ws22{word-spacing:155.272787px;}
.ws10{word-spacing:155.747203px;}
.ws17{word-spacing:163.513123px;}
.ws1f{word-spacing:164.249606px;}
.ws32{word-spacing:205.961876px;}
.ws46{word-spacing:229.201535px;}
.ws40{word-spacing:229.613966px;}
.ws43{word-spacing:237.768037px;}
.ws3d{word-spacing:238.645925px;}
.ws1d{word-spacing:241.750938px;}
.ws2d{word-spacing:242.984198px;}
.ws12{word-spacing:249.734417px;}
.ws45{word-spacing:261.860148px;}
.ws3f{word-spacing:262.584847px;}
.ws44{word-spacing:289.750101px;}
.ws3e{word-spacing:290.457124px;}
.ws28{word-spacing:436.736015px;}
.ws47{word-spacing:593.614710px;}
.ws25{word-spacing:802.442358px;}
.ws42{word-spacing:869.766462px;}
.ws41{word-spacing:931.386696px;}
._79{margin-left:-441.551768px;}
._3a{margin-left:-437.409787px;}
._49{margin-left:-429.455768px;}
._86{margin-left:-406.631605px;}
._7b{margin-left:-404.045076px;}
._7a{margin-left:-394.528602px;}
._85{margin-left:-392.790502px;}
._7e{margin-left:-377.699905px;}
._5e{margin-left:-358.311779px;}
._66{margin-left:-356.622290px;}
._46{margin-left:-326.583425px;}
._3d{margin-left:-325.123533px;}
._51{margin-left:-322.211661px;}
._4b{margin-left:-314.011474px;}
._3c{margin-left:-312.572748px;}
._5f{margin-left:-310.905379px;}
._45{margin-left:-309.615741px;}
._4a{margin-left:-304.589270px;}
._50{margin-left:-301.384805px;}
._5c{margin-left:-293.995506px;}
._5d{margin-left:-292.832024px;}
._89{margin-left:-286.447898px;}
._58{margin-left:-281.197843px;}
._83{margin-left:-278.759602px;}
._82{margin-left:-276.708533px;}
._88{margin-left:-275.293780px;}
._87{margin-left:-272.206995px;}
._61{margin-left:-266.644181px;}
._7f{margin-left:-262.647442px;}
._64{margin-left:-258.775348px;}
._47{margin-left:-253.824225px;}
._52{margin-left:-248.590510px;}
._44{margin-left:-242.234637px;}
._4e{margin-left:-234.543985px;}
._35{margin-left:-222.040328px;}
._34{margin-left:-219.178324px;}
._37{margin-left:-217.177260px;}
._5a{margin-left:-207.664098px;}
._36{margin-left:-188.887488px;}
._6a{margin-left:-185.361731px;}
._30{margin-left:-182.558679px;}
._62{margin-left:-179.854189px;}
._7d{margin-left:-176.642622px;}
._53{margin-left:-175.583400px;}
._84{margin-left:-173.875348px;}
._4c{margin-left:-172.371019px;}
._7c{margin-left:-170.090867px;}
._80{margin-left:-167.403089px;}
._69{margin-left:-165.069878px;}
._4f{margin-left:-157.168467px;}
._59{margin-left:-151.303712px;}
._3f{margin-left:-147.453939px;}
._70{margin-left:-142.881564px;}
._73{margin-left:-139.423776px;}
._63{margin-left:-128.218006px;}
._3b{margin-left:-124.793452px;}
._78{margin-left:-117.187259px;}
._81{margin-left:-114.902545px;}
._31{margin-left:-113.606716px;}
._41{margin-left:-112.319964px;}
._6f{margin-left:-103.477709px;}
._77{margin-left:-98.236392px;}
._42{margin-left:-97.071815px;}
._72{margin-left:-94.990196px;}
._74{margin-left:-92.356933px;}
._33{margin-left:-90.396180px;}
._57{margin-left:-89.250880px;}
._5b{margin-left:-88.133851px;}
._43{margin-left:-86.285840px;}
._6e{margin-left:-84.689887px;}
._56{margin-left:-83.032065px;}
._32{margin-left:-81.176685px;}
._75{margin-left:-79.756583px;}
._4d{margin-left:-78.308254px;}
._71{margin-left:-76.260253px;}
._3e{margin-left:-75.117714px;}
._40{margin-left:-73.224698px;}
._54{margin-left:-14.340000px;}
._d{margin-left:-4.476000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._16{width:2.880000px;}
._6{width:4.680000px;}
._7{width:5.832000px;}
._8{width:7.128000px;}
._11{width:8.208000px;}
._96{width:9.216000px;}
._15{width:10.224000px;}
._2f{width:11.442000px;}
._f{width:12.702000px;}
._21{width:13.866000px;}
._22{width:15.150000px;}
._25{width:16.632000px;}
._9{width:19.296000px;}
._b{width:20.376000px;}
._19{width:22.248000px;}
._1a{width:23.400000px;}
._1e{width:24.624000px;}
._5{width:25.848000px;}
._4{width:27.606000px;}
._23{width:29.160000px;}
._17{width:30.744000px;}
._18{width:31.824000px;}
._2b{width:32.904000px;}
._2c{width:33.984000px;}
._2d{width:35.280000px;}
._24{width:36.360000px;}
._1f{width:37.944000px;}
._20{width:39.024000px;}
._68{width:40.338000px;}
._10{width:41.598000px;}
._a{width:42.864000px;}
._c{width:44.208000px;}
._26{width:45.216000px;}
._6c{width:46.824000px;}
._60{width:48.000000px;}
._2e{width:49.608000px;}
._38{width:50.976000px;}
._39{width:52.200000px;}
._6d{width:53.736000px;}
._2a{width:55.728000px;}
._13{width:56.952000px;}
._14{width:57.960000px;}
._8f{width:59.040000px;}
._55{width:66.000000px;}
._12{width:67.392000px;}
._95{width:68.400000px;}
._29{width:71.784000px;}
._28{width:73.152000px;}
._98{width:74.952000px;}
._67{width:76.140000px;}
._27{width:82.728000px;}
._1c{width:83.952000px;}
._1d{width:85.428000px;}
._97{width:87.156000px;}
._90{width:90.072000px;}
._91{width:91.080000px;}
._1b{width:98.568000px;}
._48{width:108.660000px;}
._92{width:109.728000px;}
._93{width:110.736000px;}
._8d{width:113.016000px;}
._8e{width:114.480000px;}
._e{width:115.632000px;}
._94{width:134.496000px;}
._76{width:136.872000px;}
._8a{width:156.000000px;}
._65{width:169.380000px;}
._6b{width:172.830000px;}
._99{width:249.552000px;}
._8b{width:756.180000px;}
._8c{width:813.720000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:29.923019px;}
.fs11{font-size:30.815960px;}
.fs13{font-size:41.607066px;}
.fsc{font-size:41.892344px;}
.fsf{font-size:43.230150px;}
.fsa{font-size:43.767758px;}
.fs7{font-size:43.918259px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:68.743245px;}
.fs15{font-size:71.101606px;}
.fs14{font-size:71.384643px;}
.fsd{font-size:71.815953px;}
.fs5{font-size:72.000000px;}
.fs10{font-size:74.049129px;}
.fs9{font-size:75.051409px;}
.fs8{font-size:75.200666px;}
.fs0{font-size:84.000000px;}
.fsb{font-size:107.868280px;}
.fs12{font-size:110.995188px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y1c{bottom:3.900000px;}
.y8c{bottom:4.143021px;}
.y118{bottom:4.143025px;}
.y103{bottom:4.143031px;}
.y76{bottom:4.143033px;}
.ybb{bottom:4.143036px;}
.yae{bottom:4.938542px;}
.y92{bottom:4.938559px;}
.y67{bottom:4.938568px;}
.y69{bottom:4.938570px;}
.y81{bottom:4.938577px;}
.y7d{bottom:4.938586px;}
.ya8{bottom:4.976169px;}
.yc3{bottom:4.976181px;}
.y10c{bottom:4.976182px;}
.y94{bottom:4.976187px;}
.ya0{bottom:5.307901px;}
.y7{bottom:5.400000px;}
.y9c{bottom:5.490880px;}
.yb{bottom:6.000000px;}
.yb5{bottom:6.142915px;}
.yc{bottom:6.750000px;}
.y8a{bottom:6.750165px;}
.y74{bottom:6.750168px;}
.y8b{bottom:6.750188px;}
.y119{bottom:6.750195px;}
.y104{bottom:6.750210px;}
.y75{bottom:6.750222px;}
.ybc{bottom:6.750235px;}
.ye3{bottom:7.473202px;}
.ydd{bottom:7.473205px;}
.y62{bottom:7.473207px;}
.yee{bottom:7.678580px;}
.y9b{bottom:8.199785px;}
.yf7{bottom:9.142855px;}
.yaf{bottom:9.650711px;}
.yd9{bottom:9.650713px;}
.ye9{bottom:9.650723px;}
.y109{bottom:9.650743px;}
.y93{bottom:9.650748px;}
.y68{bottom:9.650781px;}
.y7e{bottom:9.650782px;}
.y6b{bottom:9.688505px;}
.y10d{bottom:9.688525px;}
.y95{bottom:9.688527px;}
.yef{bottom:16.321686px;}
.y9e{bottom:17.204858px;}
.yf8{bottom:18.357346px;}
.ye0{bottom:18.773736px;}
.yda{bottom:18.773754px;}
.yea{bottom:18.773810px;}
.y88{bottom:19.821718px;}
.y116{bottom:19.821725px;}
.y72{bottom:19.821730px;}
.y101{bottom:19.821733px;}
.yb9{bottom:19.821744px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y9a{bottom:21.305279px;}
.y8d{bottom:23.965169px;}
.y77{bottom:23.965176px;}
.y89{bottom:23.965180px;}
.y117{bottom:23.965183px;}
.y102{bottom:23.965193px;}
.y73{bottom:23.965202px;}
.yba{bottom:23.965209px;}
.y1b{bottom:24.600000px;}
.y9d{bottom:25.917497px;}
.y9f{bottom:28.296828px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.ya1{bottom:40.193483px;}
.y1a{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y19{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y18{bottom:86.700000px;}
.y17{bottom:107.400000px;}
.y3a{bottom:109.537500px;}
.ye8{bottom:121.387500px;}
.ye7{bottom:121.425000px;}
.yb2{bottom:125.737500px;}
.y156{bottom:128.587500px;}
.y39{bottom:134.437500px;}
.y64{bottom:150.345000px;}
.yb1{bottom:150.495000px;}
.y155{bottom:153.345000px;}
.ye5{bottom:157.995000px;}
.ye6{bottom:158.025000px;}
.y38{bottom:159.330000px;}
.y63{bottom:175.095000px;}
.yb0{bottom:175.380000px;}
.y154{bottom:178.245000px;}
.y158{bottom:182.580000px;}
.y37{bottom:184.095000px;}
.ye4{bottom:194.445000px;}
.y60{bottom:199.995000px;}
.y61{bottom:200.024980px;}
.yac{bottom:200.295000px;}
.yad{bottom:200.325000px;}
.y153{bottom:202.995000px;}
.y157{bottom:206.445000px;}
.y36{bottom:208.995000px;}
.y134{bottom:209.445000px;}
.y121{bottom:210.045000px;}
.ye1{bottom:219.330000px;}
.ye2{bottom:219.375000px;}
.y152{bottom:227.895000px;}
.y5f{bottom:231.195000px;}
.y35{bottom:233.745000px;}
.y133{bottom:234.345000px;}
.y120{bottom:234.795000px;}
.yab{bottom:236.745000px;}
.yde{bottom:250.695000px;}
.ydf{bottom:250.725000px;}
.y151{bottom:252.795000px;}
.y132{bottom:255.345000px;}
.y5e{bottom:256.095000px;}
.y34{bottom:258.645000px;}
.y11f{bottom:259.695000px;}
.yaa{bottom:261.645000px;}
.y150{bottom:277.545000px;}
.y5d{bottom:280.830000px;}
.y33{bottom:283.545000px;}
.y11e{bottom:284.445000px;}
.ya9{bottom:286.380000px;}
.ya7{bottom:286.424980px;}
.ydb{bottom:287.130000px;}
.ydc{bottom:287.174980px;}
.y14f{bottom:302.445000px;}
.y5c{bottom:305.745000px;}
.y32{bottom:308.295000px;}
.y11d{bottom:309.345000px;}
.yd7{bottom:318.495000px;}
.yd8{bottom:318.524980px;}
.ya6{bottom:322.995000px;}
.y14e{bottom:327.195000px;}
.y5b{bottom:330.630000px;}
.y31{bottom:333.195000px;}
.y11c{bottom:334.245000px;}
.ya5{bottom:347.880000px;}
.y14d{bottom:352.095000px;}
.yd6{bottom:354.945000px;}
.y5a{bottom:355.395000px;}
.y30{bottom:357.945000px;}
.y11b{bottom:358.995000px;}
.ya4{bottom:372.645000px;}
.y14c{bottom:376.995000px;}
.yd5{bottom:379.875000px;}
.y59{bottom:380.325000px;}
.y2f{bottom:382.875000px;}
.y115{bottom:383.924959px;}
.y11a{bottom:383.925000px;}
.ya3{bottom:397.575000px;}
.y14b{bottom:401.775000px;}
.yd4{bottom:404.775000px;}
.y58{bottom:405.075000px;}
.y2e{bottom:407.775000px;}
.ya2{bottom:422.325000px;}
.y14a{bottom:426.675000px;}
.yd3{bottom:429.525000px;}
.y57{bottom:429.975000px;}
.y2d{bottom:432.525000px;}
.y114{bottom:435.375000px;}
.y99{bottom:447.225000px;}
.y149{bottom:451.425000px;}
.yd2{bottom:454.425000px;}
.y56{bottom:454.875000px;}
.y2c{bottom:457.425000px;}
.y113{bottom:460.275000px;}
.y148{bottom:476.325000px;}
.yd1{bottom:479.175000px;}
.y55{bottom:479.625000px;}
.y2b{bottom:482.175000px;}
.y112{bottom:485.025000px;}
.y131{bottom:488.325000px;}
.y147{bottom:501.075000px;}
.yd0{bottom:504.075000px;}
.y54{bottom:504.525000px;}
.y2a{bottom:507.075000px;}
.y111{bottom:509.925000px;}
.y130{bottom:513.225000px;}
.y98{bottom:516.825000px;}
.y146{bottom:525.975000px;}
.ycf{bottom:528.975000px;}
.y53{bottom:529.275000px;}
.y29{bottom:531.825000px;}
.y110{bottom:534.824959px;}
.y10f{bottom:534.825000px;}
.y12f{bottom:537.975000px;}
.y97{bottom:541.575000px;}
.y145{bottom:550.875000px;}
.yce{bottom:553.725000px;}
.y52{bottom:554.175000px;}
.y28{bottom:556.725000px;}
.y12e{bottom:562.875000px;}
.y96{bottom:566.475000px;}
.y10e{bottom:571.275000px;}
.y144{bottom:575.625000px;}
.ycd{bottom:578.625000px;}
.y51{bottom:579.075000px;}
.y27{bottom:581.625000px;}
.y12d{bottom:587.775000px;}
.y91{bottom:591.224959px;}
.y90{bottom:591.225000px;}
.y10b{bottom:596.174959px;}
.y10a{bottom:596.175000px;}
.y143{bottom:600.525000px;}
.ycc{bottom:603.375000px;}
.y50{bottom:603.825000px;}
.y26{bottom:606.375000px;}
.y12c{bottom:612.525000px;}
.y142{bottom:625.275000px;}
.y8f{bottom:627.825000px;}
.ycb{bottom:628.275000px;}
.y4f{bottom:628.725000px;}
.y25{bottom:631.275000px;}
.y108{bottom:632.624959px;}
.y107{bottom:632.625000px;}
.y12b{bottom:637.425000px;}
.y141{bottom:650.175000px;}
.y87{bottom:652.574959px;}
.y8e{bottom:652.575000px;}
.yca{bottom:653.025000px;}
.y4e{bottom:653.475000px;}
.y24{bottom:656.025000px;}
.y12a{bottom:662.175000px;}
.y106{bottom:669.225000px;}
.y140{bottom:675.075000px;}
.yc9{bottom:677.925000px;}
.y4d{bottom:678.375000px;}
.y23{bottom:680.925000px;}
.y129{bottom:687.075000px;}
.y100{bottom:694.124919px;}
.y105{bottom:694.125000px;}
.y13f{bottom:699.825000px;}
.yc8{bottom:702.825000px;}
.y4c{bottom:703.125000px;}
.y86{bottom:704.175000px;}
.y22{bottom:705.825000px;}
.y128{bottom:711.825000px;}
.y13e{bottom:724.725000px;}
.yc7{bottom:727.575000px;}
.y4b{bottom:728.025000px;}
.y85{bottom:729.075000px;}
.y21{bottom:730.575000px;}
.y127{bottom:736.725000px;}
.yff{bottom:745.620000px;}
.y13d{bottom:749.520000px;}
.yc6{bottom:752.520000px;}
.y4a{bottom:752.970000px;}
.y84{bottom:753.870000px;}
.y20{bottom:755.520000px;}
.y126{bottom:761.670000px;}
.yfe{bottom:770.520000px;}
.y13c{bottom:774.420000px;}
.yc5{bottom:777.270000px;}
.y49{bottom:777.720000px;}
.y83{bottom:778.770000px;}
.y125{bottom:786.420000px;}
.y1f{bottom:788.220000px;}
.yfd{bottom:795.270000px;}
.y13b{bottom:799.170000px;}
.yc2{bottom:802.124919px;}
.yc4{bottom:802.170000px;}
.y48{bottom:802.620000px;}
.y82{bottom:803.520000px;}
.y1e{bottom:805.020000px;}
.y124{bottom:807.420000px;}
.yfc{bottom:820.170000px;}
.y13a{bottom:824.070000px;}
.y47{bottom:827.370000px;}
.y80{bottom:828.374919px;}
.y7f{bottom:828.420000px;}
.yc1{bottom:838.770000px;}
.yfb{bottom:845.070000px;}
.y1d{bottom:846.420000px;}
.y139{bottom:848.970000px;}
.y46{bottom:852.270000px;}
.yc0{bottom:863.520000px;}
.y7c{bottom:864.974919px;}
.y7b{bottom:865.020000px;}
.y16{bottom:867.120000px;}
.yfa{bottom:869.820000px;}
.y138{bottom:873.705000px;}
.y45{bottom:877.170000px;}
.ybf{bottom:888.420000px;}
.yf9{bottom:894.720000px;}
.y137{bottom:898.620000px;}
.y7a{bottom:901.470000px;}
.y44{bottom:901.920000px;}
.ybe{bottom:913.170000px;}
.yf6{bottom:919.424919px;}
.yf5{bottom:919.470000px;}
.y136{bottom:923.370000px;}
.y79{bottom:926.370000px;}
.y43{bottom:926.820000px;}
.yb8{bottom:938.024919px;}
.ybd{bottom:938.070000px;}
.y135{bottom:944.370000px;}
.y71{bottom:951.074919px;}
.y78{bottom:951.120000px;}
.y42{bottom:951.570000px;}
.yf4{bottom:956.070000px;}
.y41{bottom:976.470000px;}
.y123{bottom:979.620000px;}
.yf3{bottom:980.820000px;}
.yb7{bottom:989.670000px;}
.y15{bottom:994.920000px;}
.y122{bottom:1000.620000px;}
.y40{bottom:1001.220000px;}
.y70{bottom:1002.720000px;}
.yf2{bottom:1005.720000px;}
.y14{bottom:1014.120000px;}
.yb6{bottom:1014.420000px;}
.y3f{bottom:1026.120000px;}
.y6f{bottom:1027.620000px;}
.yf1{bottom:1030.620000px;}
.y13{bottom:1034.820000px;}
.yb4{bottom:1039.274919px;}
.yb3{bottom:1039.320000px;}
.y3e{bottom:1051.020000px;}
.y6e{bottom:1052.370000px;}
.yf0{bottom:1055.370000px;}
.y12{bottom:1055.520000px;}
.y3d{bottom:1075.770000px;}
.y11{bottom:1076.220000px;}
.y6d{bottom:1077.270000px;}
.yed{bottom:1080.224919px;}
.yec{bottom:1080.270000px;}
.y10{bottom:1096.950000px;}
.y3c{bottom:1100.700000px;}
.y6a{bottom:1101.974919px;}
.y6c{bottom:1102.050000px;}
.yeb{bottom:1113.750000px;}
.y3b{bottom:1125.450000px;}
.yf{bottom:1129.650000px;}
.y66{bottom:1138.574919px;}
.y65{bottom:1138.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.he{height:20.700000px;}
.h1b{height:22.807536px;}
.h30{height:23.250216px;}
.h11{height:23.250237px;}
.h25{height:23.488141px;}
.h31{height:25.499564px;}
.h2a{height:28.500029px;}
.h29{height:28.500319px;}
.h27{height:28.500339px;}
.h1f{height:28.500359px;}
.h13{height:28.500400px;}
.h22{height:32.950324px;}
.h20{height:33.360093px;}
.h14{height:33.474806px;}
.hf{height:41.400000px;}
.h35{height:42.934290px;}
.h1d{height:43.081925px;}
.h1e{height:43.501159px;}
.h17{height:43.501200px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h10{height:50.484375px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h21{height:61.498762px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h19{height:66.520929px;}
.h12{height:67.467735px;}
.h26{height:68.589452px;}
.h32{height:69.782338px;}
.h33{height:70.060123px;}
.h1c{height:70.448364px;}
.h37{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h16{height:73.622207px;}
.h36{height:73.658854px;}
.h15{height:73.768622px;}
.h2f{height:73.805341px;}
.h38{height:74.004654px;}
.h2{height:82.441406px;}
.h2b{height:87.882622px;}
.h1a{height:91.954943px;}
.h2e{height:92.471504px;}
.h28{height:92.508151px;}
.h23{height:94.828896px;}
.h18{height:99.915101px;}
.h2c{height:102.383546px;}
.hd{height:124.185000px;}
.h2d{height:139.308367px;}
.h34{height:139.343434px;}
.h24{height:143.509864px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wd{width:17.999581px;}
.w11{width:18.000278px;}
.we{width:19.498893px;}
.w10{width:19.499841px;}
.w1f{width:23.250155px;}
.wa{width:23.250196px;}
.w20{width:28.499678px;}
.w21{width:28.499718px;}
.w16{width:54.000327px;}
.w18{width:55.500687px;}
.w14{width:61.498212px;}
.w1c{width:61.498273px;}
.w1b{width:62.998738px;}
.w1a{width:62.998744px;}
.w19{width:62.998749px;}
.w17{width:62.998759px;}
.w1d{width:63.001229px;}
.w9{width:73.500421px;}
.wb{width:99.001680px;}
.w13{width:107.999987px;}
.w15{width:131.253032px;}
.wc{width:176.237176px;}
.w6{width:178.350000px;}
.wf{width:207.002371px;}
.w22{width:217.498137px;}
.w12{width:244.507203px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w1e{width:288.005156px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:1.616407px;}
.x21{left:3.148519px;}
.x66{left:4.740035px;}
.x52{left:5.821421px;}
.x4{left:6.900000px;}
.x2f{left:8.296820px;}
.x31{left:11.110471px;}
.x9{left:12.435000px;}
.x65{left:14.081574px;}
.x24{left:15.154415px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x19{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x4e{left:45.071895px;}
.x55{left:47.468484px;}
.x2a{left:49.959457px;}
.x6d{left:51.133425px;}
.x48{left:52.149439px;}
.x51{left:54.677384px;}
.x1e{left:57.554860px;}
.x4b{left:59.196796px;}
.x43{left:68.917739px;}
.x75{left:74.999987px;}
.x4a{left:76.295188px;}
.x26{left:82.914569px;}
.x3f{left:90.865679px;}
.x4c{left:93.895602px;}
.x1a{left:95.699987px;}
.x18{left:100.200000px;}
.x17{left:104.700000px;}
.xd{left:106.980000px;}
.x6f{left:109.049987px;}
.x6c{left:116.718256px;}
.x6{left:121.687500px;}
.x34{left:126.158720px;}
.xa{left:128.130000px;}
.x28{left:131.255209px;}
.x2b{left:133.055871px;}
.x70{left:135.487487px;}
.x10{left:142.387487px;}
.x4f{left:149.737487px;}
.x2c{left:151.960424px;}
.x3e{left:160.064465px;}
.x33{left:162.451689px;}
.x36{left:164.258215px;}
.x29{left:166.124348px;}
.x40{left:167.883792px;}
.x37{left:183.248962px;}
.x62{left:187.631282px;}
.x5b{left:193.244987px;}
.x35{left:197.506982px;}
.x42{left:203.900523px;}
.x41{left:213.872774px;}
.x57{left:220.874980px;}
.x63{left:222.708750px;}
.x50{left:224.624980px;}
.x71{left:225.629987px;}
.x4d{left:226.994987px;}
.x47{left:234.224980px;}
.x3d{left:235.491791px;}
.x59{left:272.624980px;}
.x58{left:283.829987px;}
.x53{left:287.594987px;}
.x49{left:295.694987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x5a{left:328.094987px;}
.x54{left:340.424980px;}
.x1d{left:362.474959px;}
.x11{left:372.494987px;}
.x56{left:395.924987px;}
.x13{left:433.274987px;}
.x1f{left:435.974987px;}
.x1b{left:457.274987px;}
.x74{left:462.824987px;}
.x73{left:489.674987px;}
.x1c{left:510.374987px;}
.x5c{left:533.925000px;}
.x27{left:556.274987px;}
.x60{left:566.474959px;}
.x39{left:575.324959px;}
.x64{left:587.624959px;}
.x3b{left:594.824987px;}
.x5d{left:596.924987px;}
.x46{left:599.474959px;}
.x15{left:605.624987px;}
.x67{left:610.874987px;}
.x68{left:615.974959px;}
.x45{left:618.374987px;}
.xc{left:625.425000px;}
.x61{left:629.474987px;}
.x72{left:635.024987px;}
.x69{left:644.504987px;}
.x14{left:682.004987px;}
.x2d{left:686.654987px;}
.xf{left:713.655000px;}
.x38{left:717.404987px;}
.x5e{left:722.924919px;}
.x6e{left:727.904987px;}
.x12{left:734.654987px;}
.x44{left:754.904987px;}
.x2e{left:756.524919px;}
.x20{left:774.374919px;}
.x6a{left:780.524919px;}
.x5f{left:784.454987px;}
.x22{left:797.669987px;}
.x6b{left:803.819987px;}
.x2{left:819.119987px;}
.x23{left:822.824919px;}
.x30{left:825.074919px;}
.x3c{left:826.424919px;}
.x32{left:844.619987px;}
.x25{left:846.119987px;}
.x16{left:850.619987px;}
@media print{
.v6{vertical-align:-50.759062pt;}
.v8{vertical-align:-47.767519pt;}
.v3{vertical-align:-46.476609pt;}
.va{vertical-align:-32.437422pt;}
.vb{vertical-align:-30.730830pt;}
.v1{vertical-align:-16.754931pt;}
.v7{vertical-align:-15.228792pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:9.269869pt;}
.v2{vertical-align:16.754931pt;}
.v4{vertical-align:45.209203pt;}
.v5{vertical-align:46.597312pt;}
.lsc{letter-spacing:-2.666667pt;}
.lse{letter-spacing:-2.661333pt;}
.lsb{letter-spacing:-2.656000pt;}
.lsd{letter-spacing:-2.400000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.149333pt;}
.ls24{letter-spacing:-0.106667pt;}
.ls22{letter-spacing:-0.021333pt;}
.lsa{letter-spacing:-0.010667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls12{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.181333pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.341333pt;}
.ls5{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.554667pt;}
.ls19{letter-spacing:0.900801pt;}
.ls20{letter-spacing:2.071909pt;}
.ls2a{letter-spacing:3.146667pt;}
.ls2b{letter-spacing:3.200000pt;}
.ls29{letter-spacing:5.333333pt;}
.ls27{letter-spacing:6.400000pt;}
.ls23{letter-spacing:6.933333pt;}
.ls26{letter-spacing:7.808000pt;}
.ls10{letter-spacing:11.733333pt;}
.ls25{letter-spacing:22.933333pt;}
.ls6{letter-spacing:22.986667pt;}
.ls7{letter-spacing:37.920000pt;}
.ls1a{letter-spacing:81.567972pt;}
.ls1e{letter-spacing:87.778194pt;}
.ls1f{letter-spacing:102.966312pt;}
.ls1d{letter-spacing:110.898680pt;}
.ls1c{letter-spacing:113.972269pt;}
.ls2c{letter-spacing:164.741333pt;}
.ls16{letter-spacing:208.400904pt;}
.ls1b{letter-spacing:257.502818pt;}
.ls17{letter-spacing:270.123435pt;}
.ls21{letter-spacing:628.716733pt;}
.ws2b{word-spacing:-38.904674pt;}
.ws21{word-spacing:-37.237640pt;}
.ws2f{word-spacing:-36.984058pt;}
.ws11{word-spacing:-36.625088pt;}
.ws14{word-spacing:-35.046185pt;}
.wsd{word-spacing:-33.546703pt;}
.ws27{word-spacing:-27.391964pt;}
.ws1a{word-spacing:-26.598239pt;}
.ws2a{word-spacing:-21.096313pt;}
.ws13{word-spacing:-20.443464pt;}
.ws39{word-spacing:-16.711259pt;}
.ws37{word-spacing:-16.533333pt;}
.ws26{word-spacing:-16.455362pt;}
.ws1c{word-spacing:-16.021333pt;}
.wsa{word-spacing:-16.000000pt;}
.ws38{word-spacing:-15.978667pt;}
.ws1b{word-spacing:-15.959101pt;}
.ws3c{word-spacing:-15.863254pt;}
.ws48{word-spacing:-15.850667pt;}
.ws9{word-spacing:-15.808000pt;}
.ws3b{word-spacing:-15.800357pt;}
.wse{word-spacing:-15.276277pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws15{word-spacing:-10.210211pt;}
.ws2c{word-spacing:-9.726168pt;}
.ws23{word-spacing:-9.606700pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws19{word-spacing:-9.309410pt;}
.wsb{word-spacing:0.000000pt;}
.ws36{word-spacing:25.107752pt;}
.ws35{word-spacing:33.654827pt;}
.ws2e{word-spacing:34.640544pt;}
.ws30{word-spacing:35.321145pt;}
.ws3a{word-spacing:46.830073pt;}
.wsc{word-spacing:74.841234pt;}
.ws16{word-spacing:113.929064pt;}
.ws1e{word-spacing:114.300906pt;}
.ws34{word-spacing:126.849253pt;}
.ws20{word-spacing:126.978088pt;}
.ws24{word-spacing:129.689241pt;}
.ws29{word-spacing:133.583078pt;}
.ws18{word-spacing:134.697742pt;}
.ws33{word-spacing:134.828672pt;}
.wsf{word-spacing:134.890232pt;}
.ws31{word-spacing:136.998209pt;}
.ws22{word-spacing:138.020255pt;}
.ws10{word-spacing:138.441958pt;}
.ws17{word-spacing:145.344998pt;}
.ws1f{word-spacing:145.999650pt;}
.ws32{word-spacing:183.077223pt;}
.ws46{word-spacing:203.734698pt;}
.ws40{word-spacing:204.101303pt;}
.ws43{word-spacing:211.349366pt;}
.ws3d{word-spacing:212.129711pt;}
.ws1d{word-spacing:214.889723pt;}
.ws2d{word-spacing:215.985954pt;}
.ws12{word-spacing:221.986148pt;}
.ws45{word-spacing:232.764576pt;}
.ws3f{word-spacing:233.408753pt;}
.ws44{word-spacing:257.555645pt;}
.ws3e{word-spacing:258.184111pt;}
.ws28{word-spacing:388.209791pt;}
.ws47{word-spacing:527.657520pt;}
.ws25{word-spacing:713.282096pt;}
.ws42{word-spacing:773.125744pt;}
.ws41{word-spacing:827.899286pt;}
._79{margin-left:-392.490461pt;}
._3a{margin-left:-388.808699pt;}
._49{margin-left:-381.738460pt;}
._86{margin-left:-361.450315pt;}
._7b{margin-left:-359.151178pt;}
._7a{margin-left:-350.692091pt;}
._85{margin-left:-349.147113pt;}
._7e{margin-left:-335.733249pt;}
._5e{margin-left:-318.499359pt;}
._66{margin-left:-316.997591pt;}
._46{margin-left:-290.296378pt;}
._3d{margin-left:-288.998696pt;}
._51{margin-left:-286.410365pt;}
._4b{margin-left:-279.121310pt;}
._3c{margin-left:-277.842443pt;}
._5f{margin-left:-276.360337pt;}
._45{margin-left:-275.213992pt;}
._4a{margin-left:-270.746018pt;}
._50{margin-left:-267.897604pt;}
._5c{margin-left:-261.329338pt;}
._5d{margin-left:-260.295133pt;}
._89{margin-left:-254.620353pt;}
._58{margin-left:-249.953639pt;}
._83{margin-left:-247.786313pt;}
._82{margin-left:-245.963141pt;}
._88{margin-left:-244.705582pt;}
._87{margin-left:-241.961773pt;}
._61{margin-left:-237.017050pt;}
._7f{margin-left:-233.464393pt;}
._64{margin-left:-230.022531pt;}
._47{margin-left:-225.621533pt;}
._52{margin-left:-220.969342pt;}
._44{margin-left:-215.319677pt;}
._4e{margin-left:-208.483542pt;}
._35{margin-left:-197.369180pt;}
._34{margin-left:-194.825177pt;}
._37{margin-left:-193.046453pt;}
._5a{margin-left:-184.590309pt;}
._36{margin-left:-167.899990pt;}
._6a{margin-left:-164.765984pt;}
._30{margin-left:-162.274382pt;}
._62{margin-left:-159.870390pt;}
._7d{margin-left:-157.015664pt;}
._53{margin-left:-156.074133pt;}
._84{margin-left:-154.555865pt;}
._4c{margin-left:-153.218683pt;}
._7c{margin-left:-151.191882pt;}
._80{margin-left:-148.802746pt;}
._69{margin-left:-146.728780pt;}
._4f{margin-left:-139.705304pt;}
._59{margin-left:-134.492189pt;}
._3f{margin-left:-131.070168pt;}
._70{margin-left:-127.005835pt;}
._73{margin-left:-123.932246pt;}
._63{margin-left:-113.971561pt;}
._3b{margin-left:-110.927513pt;}
._78{margin-left:-104.166452pt;}
._81{margin-left:-102.135595pt;}
._31{margin-left:-100.983748pt;}
._41{margin-left:-99.839968pt;}
._6f{margin-left:-91.980186pt;}
._77{margin-left:-87.321237pt;}
._42{margin-left:-86.286058pt;}
._72{margin-left:-84.435730pt;}
._74{margin-left:-82.095051pt;}
._33{margin-left:-80.352160pt;}
._57{margin-left:-79.334116pt;}
._5b{margin-left:-78.341201pt;}
._43{margin-left:-76.698524pt;}
._6e{margin-left:-75.279899pt;}
._56{margin-left:-73.806280pt;}
._32{margin-left:-72.157054pt;}
._75{margin-left:-70.894740pt;}
._4d{margin-left:-69.607337pt;}
._71{margin-left:-67.786892pt;}
._3e{margin-left:-66.771302pt;}
._40{margin-left:-65.088620pt;}
._54{margin-left:-12.746667pt;}
._d{margin-left:-3.978667pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._16{width:2.560000pt;}
._6{width:4.160000pt;}
._7{width:5.184000pt;}
._8{width:6.336000pt;}
._11{width:7.296000pt;}
._96{width:8.192000pt;}
._15{width:9.088000pt;}
._2f{width:10.170667pt;}
._f{width:11.290667pt;}
._21{width:12.325333pt;}
._22{width:13.466667pt;}
._25{width:14.784000pt;}
._9{width:17.152000pt;}
._b{width:18.112000pt;}
._19{width:19.776000pt;}
._1a{width:20.800000pt;}
._1e{width:21.888000pt;}
._5{width:22.976000pt;}
._4{width:24.538667pt;}
._23{width:25.920000pt;}
._17{width:27.328000pt;}
._18{width:28.288000pt;}
._2b{width:29.248000pt;}
._2c{width:30.208000pt;}
._2d{width:31.360000pt;}
._24{width:32.320000pt;}
._1f{width:33.728000pt;}
._20{width:34.688000pt;}
._68{width:35.856000pt;}
._10{width:36.976000pt;}
._a{width:38.101333pt;}
._c{width:39.296000pt;}
._26{width:40.192000pt;}
._6c{width:41.621333pt;}
._60{width:42.666667pt;}
._2e{width:44.096000pt;}
._38{width:45.312000pt;}
._39{width:46.400000pt;}
._6d{width:47.765333pt;}
._2a{width:49.536000pt;}
._13{width:50.624000pt;}
._14{width:51.520000pt;}
._8f{width:52.480000pt;}
._55{width:58.666667pt;}
._12{width:59.904000pt;}
._95{width:60.800000pt;}
._29{width:63.808000pt;}
._28{width:65.024000pt;}
._98{width:66.624000pt;}
._67{width:67.680000pt;}
._27{width:73.536000pt;}
._1c{width:74.624000pt;}
._1d{width:75.936000pt;}
._97{width:77.472000pt;}
._90{width:80.064000pt;}
._91{width:80.960000pt;}
._1b{width:87.616000pt;}
._48{width:96.586667pt;}
._92{width:97.536000pt;}
._93{width:98.432000pt;}
._8d{width:100.458667pt;}
._8e{width:101.760000pt;}
._e{width:102.784000pt;}
._94{width:119.552000pt;}
._76{width:121.664000pt;}
._8a{width:138.666667pt;}
._65{width:150.560000pt;}
._6b{width:153.626667pt;}
._99{width:221.824000pt;}
._8b{width:672.160000pt;}
._8c{width:723.306667pt;}
.fse{font-size:26.598239pt;}
.fs11{font-size:27.391964pt;}
.fs13{font-size:36.984058pt;}
.fsc{font-size:37.237640pt;}
.fsf{font-size:38.426800pt;}
.fsa{font-size:38.904674pt;}
.fs7{font-size:39.038452pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:61.105106pt;}
.fs15{font-size:63.201428pt;}
.fs14{font-size:63.453016pt;}
.fsd{font-size:63.836402pt;}
.fs5{font-size:64.000000pt;}
.fs10{font-size:65.821448pt;}
.fs9{font-size:66.712364pt;}
.fs8{font-size:66.845037pt;}
.fs0{font-size:74.666667pt;}
.fsb{font-size:95.882915pt;}
.fs12{font-size:98.662389pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y1c{bottom:3.466667pt;}
.y8c{bottom:3.682685pt;}
.y118{bottom:3.682689pt;}
.y103{bottom:3.682694pt;}
.y76{bottom:3.682696pt;}
.ybb{bottom:3.682699pt;}
.yae{bottom:4.389815pt;}
.y92{bottom:4.389830pt;}
.y67{bottom:4.389838pt;}
.y69{bottom:4.389840pt;}
.y81{bottom:4.389846pt;}
.y7d{bottom:4.389854pt;}
.ya8{bottom:4.423261pt;}
.yc3{bottom:4.423272pt;}
.y10c{bottom:4.423273pt;}
.y94{bottom:4.423278pt;}
.ya0{bottom:4.718134pt;}
.y7{bottom:4.800000pt;}
.y9c{bottom:4.880782pt;}
.yb{bottom:5.333333pt;}
.yb5{bottom:5.460369pt;}
.yc{bottom:6.000000pt;}
.y8a{bottom:6.000147pt;}
.y74{bottom:6.000149pt;}
.y8b{bottom:6.000167pt;}
.y119{bottom:6.000173pt;}
.y104{bottom:6.000187pt;}
.y75{bottom:6.000197pt;}
.ybc{bottom:6.000209pt;}
.ye3{bottom:6.642847pt;}
.ydd{bottom:6.642849pt;}
.y62{bottom:6.642850pt;}
.yee{bottom:6.825405pt;}
.y9b{bottom:7.288697pt;}
.yf7{bottom:8.126982pt;}
.yaf{bottom:8.578410pt;}
.yd9{bottom:8.578412pt;}
.ye9{bottom:8.578420pt;}
.y109{bottom:8.578438pt;}
.y93{bottom:8.578443pt;}
.y68{bottom:8.578472pt;}
.y7e{bottom:8.578473pt;}
.y6b{bottom:8.612004pt;}
.y10d{bottom:8.612022pt;}
.y95{bottom:8.612024pt;}
.yef{bottom:14.508165pt;}
.y9e{bottom:15.293207pt;}
.yf8{bottom:16.317640pt;}
.ye0{bottom:16.687765pt;}
.yda{bottom:16.687781pt;}
.yea{bottom:16.687831pt;}
.y88{bottom:17.619305pt;}
.y116{bottom:17.619311pt;}
.y72{bottom:17.619316pt;}
.y101{bottom:17.619318pt;}
.yb9{bottom:17.619328pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y9a{bottom:18.938026pt;}
.y8d{bottom:21.302372pt;}
.y77{bottom:21.302378pt;}
.y89{bottom:21.302382pt;}
.y117{bottom:21.302385pt;}
.y102{bottom:21.302393pt;}
.y73{bottom:21.302402pt;}
.yba{bottom:21.302408pt;}
.y1b{bottom:21.866667pt;}
.y9d{bottom:23.037775pt;}
.y9f{bottom:25.152736pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.ya1{bottom:35.727541pt;}
.y1a{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y19{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y18{bottom:77.066667pt;}
.y17{bottom:95.466667pt;}
.y3a{bottom:97.366667pt;}
.ye8{bottom:107.900000pt;}
.ye7{bottom:107.933333pt;}
.yb2{bottom:111.766667pt;}
.y156{bottom:114.300000pt;}
.y39{bottom:119.500000pt;}
.y64{bottom:133.640000pt;}
.yb1{bottom:133.773333pt;}
.y155{bottom:136.306667pt;}
.ye5{bottom:140.440000pt;}
.ye6{bottom:140.466667pt;}
.y38{bottom:141.626667pt;}
.y63{bottom:155.640000pt;}
.yb0{bottom:155.893333pt;}
.y154{bottom:158.440000pt;}
.y158{bottom:162.293333pt;}
.y37{bottom:163.640000pt;}
.ye4{bottom:172.840000pt;}
.y60{bottom:177.773333pt;}
.y61{bottom:177.799982pt;}
.yac{bottom:178.040000pt;}
.yad{bottom:178.066667pt;}
.y153{bottom:180.440000pt;}
.y157{bottom:183.506667pt;}
.y36{bottom:185.773333pt;}
.y134{bottom:186.173333pt;}
.y121{bottom:186.706667pt;}
.ye1{bottom:194.960000pt;}
.ye2{bottom:195.000000pt;}
.y152{bottom:202.573333pt;}
.y5f{bottom:205.506667pt;}
.y35{bottom:207.773333pt;}
.y133{bottom:208.306667pt;}
.y120{bottom:208.706667pt;}
.yab{bottom:210.440000pt;}
.yde{bottom:222.840000pt;}
.ydf{bottom:222.866667pt;}
.y151{bottom:224.706667pt;}
.y132{bottom:226.973333pt;}
.y5e{bottom:227.640000pt;}
.y34{bottom:229.906667pt;}
.y11f{bottom:230.840000pt;}
.yaa{bottom:232.573333pt;}
.y150{bottom:246.706667pt;}
.y5d{bottom:249.626667pt;}
.y33{bottom:252.040000pt;}
.y11e{bottom:252.840000pt;}
.ya9{bottom:254.560000pt;}
.ya7{bottom:254.599982pt;}
.ydb{bottom:255.226667pt;}
.ydc{bottom:255.266649pt;}
.y14f{bottom:268.840000pt;}
.y5c{bottom:271.773333pt;}
.y32{bottom:274.040000pt;}
.y11d{bottom:274.973333pt;}
.yd7{bottom:283.106667pt;}
.yd8{bottom:283.133315pt;}
.ya6{bottom:287.106667pt;}
.y14e{bottom:290.840000pt;}
.y5b{bottom:293.893333pt;}
.y31{bottom:296.173333pt;}
.y11c{bottom:297.106667pt;}
.ya5{bottom:309.226667pt;}
.y14d{bottom:312.973333pt;}
.yd6{bottom:315.506667pt;}
.y5a{bottom:315.906667pt;}
.y30{bottom:318.173333pt;}
.y11b{bottom:319.106667pt;}
.ya4{bottom:331.240000pt;}
.y14c{bottom:335.106667pt;}
.yd5{bottom:337.666667pt;}
.y59{bottom:338.066667pt;}
.y2f{bottom:340.333333pt;}
.y115{bottom:341.266630pt;}
.y11a{bottom:341.266667pt;}
.ya3{bottom:353.400000pt;}
.y14b{bottom:357.133333pt;}
.yd4{bottom:359.800000pt;}
.y58{bottom:360.066667pt;}
.y2e{bottom:362.466667pt;}
.ya2{bottom:375.400000pt;}
.y14a{bottom:379.266667pt;}
.yd3{bottom:381.800000pt;}
.y57{bottom:382.200000pt;}
.y2d{bottom:384.466667pt;}
.y114{bottom:387.000000pt;}
.y99{bottom:397.533333pt;}
.y149{bottom:401.266667pt;}
.yd2{bottom:403.933333pt;}
.y56{bottom:404.333333pt;}
.y2c{bottom:406.600000pt;}
.y113{bottom:409.133333pt;}
.y148{bottom:423.400000pt;}
.yd1{bottom:425.933333pt;}
.y55{bottom:426.333333pt;}
.y2b{bottom:428.600000pt;}
.y112{bottom:431.133333pt;}
.y131{bottom:434.066667pt;}
.y147{bottom:445.400000pt;}
.yd0{bottom:448.066667pt;}
.y54{bottom:448.466667pt;}
.y2a{bottom:450.733333pt;}
.y111{bottom:453.266667pt;}
.y130{bottom:456.200000pt;}
.y98{bottom:459.400000pt;}
.y146{bottom:467.533333pt;}
.ycf{bottom:470.200000pt;}
.y53{bottom:470.466667pt;}
.y29{bottom:472.733333pt;}
.y110{bottom:475.399964pt;}
.y10f{bottom:475.400000pt;}
.y12f{bottom:478.200000pt;}
.y97{bottom:481.400000pt;}
.y145{bottom:489.666667pt;}
.yce{bottom:492.200000pt;}
.y52{bottom:492.600000pt;}
.y28{bottom:494.866667pt;}
.y12e{bottom:500.333333pt;}
.y96{bottom:503.533333pt;}
.y10e{bottom:507.800000pt;}
.y144{bottom:511.666667pt;}
.ycd{bottom:514.333333pt;}
.y51{bottom:514.733333pt;}
.y27{bottom:517.000000pt;}
.y12d{bottom:522.466667pt;}
.y91{bottom:525.533297pt;}
.y90{bottom:525.533333pt;}
.y10b{bottom:529.933297pt;}
.y10a{bottom:529.933333pt;}
.y143{bottom:533.800000pt;}
.ycc{bottom:536.333333pt;}
.y50{bottom:536.733333pt;}
.y26{bottom:539.000000pt;}
.y12c{bottom:544.466667pt;}
.y142{bottom:555.800000pt;}
.y8f{bottom:558.066667pt;}
.ycb{bottom:558.466667pt;}
.y4f{bottom:558.866667pt;}
.y25{bottom:561.133333pt;}
.y108{bottom:562.333297pt;}
.y107{bottom:562.333333pt;}
.y12b{bottom:566.600000pt;}
.y141{bottom:577.933333pt;}
.y87{bottom:580.066630pt;}
.y8e{bottom:580.066667pt;}
.yca{bottom:580.466667pt;}
.y4e{bottom:580.866667pt;}
.y24{bottom:583.133333pt;}
.y12a{bottom:588.600000pt;}
.y106{bottom:594.866667pt;}
.y140{bottom:600.066667pt;}
.yc9{bottom:602.600000pt;}
.y4d{bottom:603.000000pt;}
.y23{bottom:605.266667pt;}
.y129{bottom:610.733333pt;}
.y100{bottom:616.999928pt;}
.y105{bottom:617.000000pt;}
.y13f{bottom:622.066667pt;}
.yc8{bottom:624.733333pt;}
.y4c{bottom:625.000000pt;}
.y86{bottom:625.933333pt;}
.y22{bottom:627.400000pt;}
.y128{bottom:632.733333pt;}
.y13e{bottom:644.200000pt;}
.yc7{bottom:646.733333pt;}
.y4b{bottom:647.133333pt;}
.y85{bottom:648.066667pt;}
.y21{bottom:649.400000pt;}
.y127{bottom:654.866667pt;}
.yff{bottom:662.773333pt;}
.y13d{bottom:666.240000pt;}
.yc6{bottom:668.906667pt;}
.y4a{bottom:669.306667pt;}
.y84{bottom:670.106667pt;}
.y20{bottom:671.573333pt;}
.y126{bottom:677.040000pt;}
.yfe{bottom:684.906667pt;}
.y13c{bottom:688.373333pt;}
.yc5{bottom:690.906667pt;}
.y49{bottom:691.306667pt;}
.y83{bottom:692.240000pt;}
.y125{bottom:699.040000pt;}
.y1f{bottom:700.640000pt;}
.yfd{bottom:706.906667pt;}
.y13b{bottom:710.373333pt;}
.yc2{bottom:712.999928pt;}
.yc4{bottom:713.040000pt;}
.y48{bottom:713.440000pt;}
.y82{bottom:714.240000pt;}
.y1e{bottom:715.573333pt;}
.y124{bottom:717.706667pt;}
.yfc{bottom:729.040000pt;}
.y13a{bottom:732.506667pt;}
.y47{bottom:735.440000pt;}
.y80{bottom:736.333261pt;}
.y7f{bottom:736.373333pt;}
.yc1{bottom:745.573333pt;}
.yfb{bottom:751.173333pt;}
.y1d{bottom:752.373333pt;}
.y139{bottom:754.640000pt;}
.y46{bottom:757.573333pt;}
.yc0{bottom:767.573333pt;}
.y7c{bottom:768.866594pt;}
.y7b{bottom:768.906667pt;}
.y16{bottom:770.773333pt;}
.yfa{bottom:773.173333pt;}
.y138{bottom:776.626667pt;}
.y45{bottom:779.706667pt;}
.ybf{bottom:789.706667pt;}
.yf9{bottom:795.306667pt;}
.y137{bottom:798.773333pt;}
.y7a{bottom:801.306667pt;}
.y44{bottom:801.706667pt;}
.ybe{bottom:811.706667pt;}
.yf6{bottom:817.266594pt;}
.yf5{bottom:817.306667pt;}
.y136{bottom:820.773333pt;}
.y79{bottom:823.440000pt;}
.y43{bottom:823.840000pt;}
.yb8{bottom:833.799928pt;}
.ybd{bottom:833.840000pt;}
.y135{bottom:839.440000pt;}
.y71{bottom:845.399928pt;}
.y78{bottom:845.440000pt;}
.y42{bottom:845.840000pt;}
.yf4{bottom:849.840000pt;}
.y41{bottom:867.973333pt;}
.y123{bottom:870.773333pt;}
.yf3{bottom:871.840000pt;}
.yb7{bottom:879.706667pt;}
.y15{bottom:884.373333pt;}
.y122{bottom:889.440000pt;}
.y40{bottom:889.973333pt;}
.y70{bottom:891.306667pt;}
.yf2{bottom:893.973333pt;}
.y14{bottom:901.440000pt;}
.yb6{bottom:901.706667pt;}
.y3f{bottom:912.106667pt;}
.y6f{bottom:913.440000pt;}
.yf1{bottom:916.106667pt;}
.y13{bottom:919.840000pt;}
.yb4{bottom:923.799928pt;}
.yb3{bottom:923.840000pt;}
.y3e{bottom:934.240000pt;}
.y6e{bottom:935.440000pt;}
.yf0{bottom:938.106667pt;}
.y12{bottom:938.240000pt;}
.y3d{bottom:956.240000pt;}
.y11{bottom:956.640000pt;}
.y6d{bottom:957.573333pt;}
.yed{bottom:960.199928pt;}
.yec{bottom:960.240000pt;}
.y10{bottom:975.066667pt;}
.y3c{bottom:978.400000pt;}
.y6a{bottom:979.533261pt;}
.y6c{bottom:979.600000pt;}
.yeb{bottom:990.000000pt;}
.y3b{bottom:1000.400000pt;}
.yf{bottom:1004.133333pt;}
.y66{bottom:1012.066594pt;}
.y65{bottom:1012.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.he{height:18.400000pt;}
.h1b{height:20.273365pt;}
.h30{height:20.666859pt;}
.h11{height:20.666877pt;}
.h25{height:20.878348pt;}
.h31{height:22.666279pt;}
.h2a{height:25.333359pt;}
.h29{height:25.333617pt;}
.h27{height:25.333635pt;}
.h1f{height:25.333653pt;}
.h13{height:25.333689pt;}
.h22{height:29.289177pt;}
.h20{height:29.653416pt;}
.h14{height:29.755383pt;}
.hf{height:36.800000pt;}
.h35{height:38.163813pt;}
.h1d{height:38.295044pt;}
.h1e{height:38.667697pt;}
.h17{height:38.667733pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h10{height:44.875000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h21{height:54.665566pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h19{height:59.129715pt;}
.h12{height:59.971320pt;}
.h26{height:60.968402pt;}
.h32{height:62.028745pt;}
.h33{height:62.275665pt;}
.h1c{height:62.620768pt;}
.h37{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h16{height:65.441962pt;}
.h36{height:65.474537pt;}
.h15{height:65.572109pt;}
.h2f{height:65.604748pt;}
.h38{height:65.781915pt;}
.h2{height:73.281250pt;}
.h2b{height:78.117886pt;}
.h1a{height:81.737727pt;}
.h2e{height:82.196893pt;}
.h28{height:82.229467pt;}
.h23{height:84.292352pt;}
.h18{height:88.813423pt;}
.h2c{height:91.007596pt;}
.hd{height:110.386667pt;}
.h2d{height:123.829660pt;}
.h34{height:123.860830pt;}
.h24{height:127.564324pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wd{width:15.999627pt;}
.w11{width:16.000247pt;}
.we{width:17.332350pt;}
.w10{width:17.333192pt;}
.w1f{width:20.666804pt;}
.wa{width:20.666841pt;}
.w20{width:25.333047pt;}
.w21{width:25.333083pt;}
.w16{width:48.000291pt;}
.w18{width:49.333944pt;}
.w14{width:54.665077pt;}
.w1c{width:54.665132pt;}
.w1b{width:55.998879pt;}
.w1a{width:55.998883pt;}
.w19{width:55.998888pt;}
.w17{width:55.998897pt;}
.w1d{width:56.001092pt;}
.w9{width:65.333707pt;}
.wb{width:88.001493pt;}
.w13{width:95.999988pt;}
.w15{width:116.669362pt;}
.wc{width:156.655267pt;}
.w6{width:158.533333pt;}
.wf{width:184.002108pt;}
.w22{width:193.331677pt;}
.w12{width:217.339736pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w1e{width:256.004583pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:1.436806pt;}
.x21{left:2.798683pt;}
.x66{left:4.213364pt;}
.x52{left:5.174596pt;}
.x4{left:6.133333pt;}
.x2f{left:7.374951pt;}
.x31{left:9.875974pt;}
.x9{left:11.053333pt;}
.x65{left:12.516955pt;}
.x24{left:13.470591pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x19{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x4e{left:40.063907pt;}
.x55{left:42.194208pt;}
.x2a{left:44.408406pt;}
.x6d{left:45.451933pt;}
.x48{left:46.355057pt;}
.x51{left:48.602119pt;}
.x1e{left:51.159875pt;}
.x4b{left:52.619374pt;}
.x43{left:61.260212pt;}
.x75{left:66.666655pt;}
.x4a{left:67.817944pt;}
.x26{left:73.701839pt;}
.x3f{left:80.769492pt;}
.x4c{left:83.462757pt;}
.x1a{left:85.066655pt;}
.x18{left:89.066667pt;}
.x17{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6f{left:96.933322pt;}
.x6c{left:103.749561pt;}
.x6{left:108.166667pt;}
.x34{left:112.141084pt;}
.xa{left:113.893333pt;}
.x28{left:116.671297pt;}
.x2b{left:118.271886pt;}
.x70{left:120.433322pt;}
.x10{left:126.566655pt;}
.x4f{left:133.099988pt;}
.x2c{left:135.075933pt;}
.x3e{left:142.279524pt;}
.x33{left:144.401501pt;}
.x36{left:146.007302pt;}
.x29{left:147.666087pt;}
.x40{left:149.230037pt;}
.x37{left:162.887966pt;}
.x62{left:166.783362pt;}
.x5b{left:171.773322pt;}
.x35{left:175.561762pt;}
.x42{left:181.244910pt;}
.x41{left:190.109132pt;}
.x57{left:196.333315pt;}
.x63{left:197.963334pt;}
.x50{left:199.666649pt;}
.x71{left:200.559988pt;}
.x4d{left:201.773322pt;}
.x47{left:208.199982pt;}
.x3d{left:209.326036pt;}
.x59{left:242.333315pt;}
.x58{left:252.293322pt;}
.x53{left:255.639988pt;}
.x49{left:262.839988pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x5a{left:291.639988pt;}
.x54{left:302.599982pt;}
.x1d{left:322.199964pt;}
.x11{left:331.106655pt;}
.x56{left:351.933322pt;}
.x13{left:385.133322pt;}
.x1f{left:387.533322pt;}
.x1b{left:406.466655pt;}
.x74{left:411.399988pt;}
.x73{left:435.266655pt;}
.x1c{left:453.666655pt;}
.x5c{left:474.600000pt;}
.x27{left:494.466655pt;}
.x60{left:503.533297pt;}
.x39{left:511.399964pt;}
.x64{left:522.333297pt;}
.x3b{left:528.733322pt;}
.x5d{left:530.599988pt;}
.x46{left:532.866630pt;}
.x15{left:538.333322pt;}
.x67{left:542.999988pt;}
.x68{left:547.533297pt;}
.x45{left:549.666655pt;}
.xc{left:555.933333pt;}
.x61{left:559.533322pt;}
.x72{left:564.466655pt;}
.x69{left:572.893322pt;}
.x14{left:606.226655pt;}
.x2d{left:610.359988pt;}
.xf{left:634.360000pt;}
.x38{left:637.693322pt;}
.x5e{left:642.599928pt;}
.x6e{left:647.026655pt;}
.x12{left:653.026655pt;}
.x44{left:671.026655pt;}
.x2e{left:672.466594pt;}
.x20{left:688.333261pt;}
.x6a{left:693.799928pt;}
.x5f{left:697.293322pt;}
.x22{left:709.039988pt;}
.x6b{left:714.506655pt;}
.x2{left:728.106655pt;}
.x23{left:731.399928pt;}
.x30{left:733.399928pt;}
.x3c{left:734.599928pt;}
.x32{left:750.773322pt;}
.x25{left:752.106655pt;}
.x16{left:756.106655pt;}
}




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