
    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_13ba18a1dff9976ce61311ad.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_25679e19d2e288b875d58d61.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_42e572247a0833b96bf76b0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e11efa3d638c16df22278258.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9172b2e9c8704fbe9955215c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1ca6b9fe6712d9927437f727.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_8055ea642c9f61f228f2ea56.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_e3ffb04dd78d8a860c6f70bc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e3ac4c1d03c37a13a63d85fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999512;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_5ecd7b790b75571088267ae0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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_d89f4ff15ce18614ae564a96.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.149414;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_64112c4b1a29e69a01b08297.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_48b3e6a1ad27335d03b5b7b6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_d1686efd3c4a1b349a45d21b.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_54ca1d1a4734d73196458d6d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919434;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_f95d1e33ca2704ad8fd759c9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_78b95cb63756c5724514d2e6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_134003eae3fc4740fabc3e78.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_059d94495cba3adaf00220eb.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_b604ad517f97476702919383.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_1371c80704b64ee8ce171f71.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a9e13fed45f2bdb0944ececc.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_ed6b847ad72397434272b697.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_19e5a527d0bd53aaf8629072.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.172363;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,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);}
.m2{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);}
.v7{vertical-align:-64.827968px;}
.v8{vertical-align:-43.208336px;}
.v2{vertical-align:-25.199955px;}
.v9{vertical-align:-15.846584px;}
.vb{vertical-align:-8.651711px;}
.v4{vertical-align:-5.760180px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760180px;}
.v1{vertical-align:22.320000px;}
.v3{vertical-align:25.200180px;}
.va{vertical-align:43.934310px;}
.v6{vertical-align:60.000000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.004833px;}
.ls11{letter-spacing:0.232263px;}
.ls10{letter-spacing:0.232308px;}
.ls13{letter-spacing:0.232353px;}
.lsf{letter-spacing:0.232398px;}
.ls5{letter-spacing:0.260815px;}
.ls14{letter-spacing:0.354123px;}
.lsc{letter-spacing:0.569205px;}
.ls0{letter-spacing:0.569250px;}
.ls9{letter-spacing:0.569295px;}
.ls16{letter-spacing:0.569947px;}
.ls15{letter-spacing:0.952083px;}
.ls3{letter-spacing:0.980815px;}
.ls12{letter-spacing:1.074483px;}
.ls1{letter-spacing:1.289205px;}
.lsb{letter-spacing:1.289295px;}
.lse{letter-spacing:5.394303px;}
.ls7{letter-spacing:9.662535px;}
.ls6{letter-spacing:9.662625px;}
.lsd{letter-spacing:9.662805px;}
.ls2{letter-spacing:25.207587px;}
.ls8{letter-spacing:36.064589px;}
.ls17{letter-spacing:82.887827px;}
.ls1a{letter-spacing:96.354131px;}
.ls18{letter-spacing:115.758581px;}
.ls19{letter-spacing:197.155660px;}
.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;}
}
.ws20{word-spacing:-52.925906px;}
.ws25{word-spacing:-52.528465px;}
.ws43{word-spacing:-52.131024px;}
.ws2f{word-spacing:-51.866063px;}
.ws3f{word-spacing:-51.667343px;}
.ws47{word-spacing:-50.475019px;}
.ws2b{word-spacing:-50.342539px;}
.ws2e{word-spacing:-49.680137px;}
.ws32{word-spacing:-49.017735px;}
.ws31{word-spacing:-48.752775px;}
.ws1f{word-spacing:-48.554054px;}
.ws24{word-spacing:-48.355334px;}
.ws37{word-spacing:-48.014422px;}
.ws46{word-spacing:-47.891652px;}
.ws38{word-spacing:-47.699484px;}
.ws36{word-spacing:-47.687245px;}
.ws2d{word-spacing:-46.368128px;}
.ws35{word-spacing:-46.103167px;}
.ws41{word-spacing:-45.904447px;}
.ws1b{word-spacing:-45.705726px;}
.ws11{word-spacing:-45.440765px;}
.ws23{word-spacing:-45.242045px;}
.ws12{word-spacing:-45.043324px;}
.ws2a{word-spacing:-44.579643px;}
.ws19{word-spacing:-44.380923px;}
.ws1a{word-spacing:-44.064750px;}
.ws1e{word-spacing:-43.718521px;}
.ws1c{word-spacing:-43.056119px;}
.ws1d{word-spacing:-42.641614px;}
.ws3e{word-spacing:-41.731315px;}
.ws13{word-spacing:-40.480254px;}
.ws15{word-spacing:-40.406512px;}
.ws16{word-spacing:-39.996152px;}
.ws17{word-spacing:-39.744110px;}
.ws14{word-spacing:-39.051445px;}
.ws18{word-spacing:-37.756904px;}
.ws42{word-spacing:-37.094502px;}
.ws3b{word-spacing:-35.769699px;}
.ws3c{word-spacing:-35.461179px;}
.ws39{word-spacing:-35.423212px;}
.ws3d{word-spacing:-35.107297px;}
.ws0{word-spacing:-18.348000px;}
.ws6{word-spacing:-16.680000px;}
.ws28{word-spacing:-16.271958px;}
.ws3{word-spacing:-15.537375px;}
.ws8{word-spacing:-15.536925px;}
.ws27{word-spacing:-14.957961px;}
.ws5{word-spacing:-14.045787px;}
.ws9{word-spacing:-14.045380px;}
.wsa{word-spacing:-13.362544px;}
.wsb{word-spacing:-12.891597px;}
.wse{word-spacing:-12.743329px;}
.ws1{word-spacing:-12.000000px;}
.ws4{word-spacing:-9.795375px;}
.ws7{word-spacing:-9.795015px;}
.ws3a{word-spacing:-4.025672px;}
.ws33{word-spacing:-0.820084px;}
.ws40{word-spacing:-0.627123px;}
.ws22{word-spacing:-0.337682px;}
.ws29{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws45{word-spacing:0.627123px;}
.wsf{word-spacing:121.131216px;}
.ws34{word-spacing:289.103695px;}
.ws30{word-spacing:310.522356px;}
.wsd{word-spacing:350.561747px;}
.wsc{word-spacing:378.058678px;}
.ws21{word-spacing:404.590804px;}
.ws44{word-spacing:553.170710px;}
.ws2c{word-spacing:793.752872px;}
.ws26{word-spacing:938.715195px;}
.ws10{word-spacing:1421.215342px;}
._21{margin-left:-2369.594759px;}
._4a{margin-left:-2161.138800px;}
._22{margin-left:-2103.695573px;}
._20{margin-left:-1657.980101px;}
._52{margin-left:-1338.480000px;}
._47{margin-left:-1320.660600px;}
._4e{margin-left:-1171.440600px;}
._4d{margin-left:-1133.758200px;}
._49{margin-left:-743.820600px;}
._23{margin-left:-741.263539px;}
._51{margin-left:-701.220600px;}
._50{margin-left:-663.539400px;}
._4b{margin-left:-201.720600px;}
._30{margin-left:-4.696215px;}
._b{margin-left:-3.667494px;}
._3{margin-left:-2.218501px;}
._0{margin-left:-1.008900px;}
._1{width:1.283850px;}
._e{width:2.328744px;}
._5{width:4.217850px;}
._6{width:5.948099px;}
._15{width:7.127548px;}
._10{width:8.249848px;}
._4{width:9.322647px;}
._f{width:10.865697px;}
._1a{width:11.931295px;}
._d{width:12.958195px;}
._12{width:14.404495px;}
._55{width:15.583873px;}
._16{width:16.586744px;}
._17{width:18.378446px;}
._a{width:19.666343px;}
._11{width:21.280943px;}
._2{width:22.585042px;}
._7{width:23.988451px;}
._1b{width:25.186183px;}
._1e{width:26.283758px;}
._1c{width:27.631790px;}
._8{width:29.024091px;}
._1d{width:30.250790px;}
._2d{width:31.831640px;}
._25{width:33.043489px;}
._26{width:34.557737px;}
._37{width:35.776340px;}
._31{width:36.907637px;}
._2f{width:38.846239px;}
._2a{width:39.895187px;}
._2c{width:41.744686px;}
._35{width:43.401585px;}
._9{width:44.423085px;}
._27{width:46.168636px;}
._34{width:47.534385px;}
._1f{width:49.589083px;}
._13{width:51.066883px;}
._2b{width:52.178381px;}
._32{width:53.780381px;}
._33{width:54.829781px;}
._28{width:56.042982px;}
._29{width:57.080679px;}
._3b{width:59.570079px;}
._3c{width:60.765730px;}
._42{width:61.960479px;}
._38{width:65.178879px;}
._3e{width:66.289926px;}
._39{width:67.478378px;}
._c{width:69.277027px;}
._45{width:71.905926px;}
._19{width:74.247725px;}
._18{width:75.327726px;}
._3d{width:77.485024px;}
._14{width:79.514975px;}
._5b{width:80.802384px;}
._43{width:85.336621px;}
._2e{width:86.381072px;}
._44{width:89.558070px;}
._5c{width:93.251886px;}
._5a{width:94.469483px;}
._36{width:95.719918px;}
._3a{width:97.684169px;}
._5e{width:107.816913px;}
._41{width:109.685213px;}
._40{width:110.733713px;}
._3f{width:121.837010px;}
._46{width:142.028503px;}
._5d{width:162.280132px;}
._59{width:175.289880px;}
._53{width:183.957192px;}
._57{width:188.474576px;}
._58{width:202.434638px;}
._56{width:229.382291px;}
._54{width:329.759149px;}
._24{width:378.670989px;}
._4f{width:646.860000px;}
._4c{width:1141.438800px;}
._48{width:2131.139400px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(46,117,182);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:39.180060px;}
.fs2{font-size:39.181500px;}
.fs14{font-size:41.759538px;}
.fs10{font-size:46.004796px;}
.fsf{font-size:46.540062px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:48.000001px;}
.fse{font-size:48.240229px;}
.fs15{font-size:53.999861px;}
.fsa{font-size:60.000000px;}
.fsc{font-size:62.147700px;}
.fs4{font-size:62.149498px;}
.fs0{font-size:62.149500px;}
.fs6{font-size:66.000002px;}
.fs13{font-size:66.240183px;}
.fsb{font-size:67.551750px;}
.fs5{font-size:67.553998px;}
.fs1{font-size:67.554000px;}
.fs11{font-size:71.999814px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:76.333500px;}
.fs12{font-size:84.240136px;}
.y167{bottom:-9.356854px;}
.y171{bottom:-9.176231px;}
.y0{bottom:0.000000px;}
.y198{bottom:26.815675px;}
.y1f8{bottom:30.600934px;}
.y1af{bottom:32.571887px;}
.y1c9{bottom:34.022366px;}
.y5{bottom:37.260000px;}
.y197{bottom:46.616209px;}
.y1f7{bottom:50.396435px;}
.y1ae{bottom:52.377455px;}
.y1be{bottom:52.554336px;}
.y1c8{bottom:53.812733px;}
.ya1{bottom:55.260000px;}
.y4{bottom:56.159989px;}
.y196{bottom:66.421777px;}
.y203{bottom:67.675041px;}
.y1f6{bottom:70.196870px;}
.y1ad{bottom:72.177989px;}
.y1bd{bottom:72.354870px;}
.y1c7{bottom:73.618301px;}
.ya0{bottom:74.159989px;}
.y195{bottom:86.217178px;}
.y75{bottom:86.220011px;}
.y202{bottom:87.475575px;}
.y1f5{bottom:89.997404px;}
.y1ac{bottom:91.978425px;}
.y1bc{bottom:92.160339px;}
.y1c6{bottom:93.418736px;}
.y39{bottom:94.320001px;}
.y11f{bottom:100.980011px;}
.y8a{bottom:103.860011px;}
.y74{bottom:104.039966px;}
.y194{bottom:106.017712px;}
.y201{bottom:107.281143px;}
.y1f4{bottom:109.792805px;}
.y38{bottom:112.139956px;}
.ybc{bottom:112.139989px;}
.y139{bottom:118.799966px;}
.y11e{bottom:120.059966px;}
.yed{bottom:120.779989px;}
.y9e{bottom:121.500000px;}
.y73{bottom:121.860011px;}
.y193{bottom:125.818147px;}
.y37{bottom:129.960001px;}
.y138{bottom:136.620000px;}
.y11d{bottom:138.960034px;}
.y8f{bottom:139.500000px;}
.y89{bottom:139.679966px;}
.y72{bottom:139.860011px;}
.ybb{bottom:141.299966px;}
.y192{bottom:145.613648px;}
.y36{bottom:147.779955px;}
.y137{bottom:155.340011px;}
.y8e{bottom:157.139989px;}
.y71{bottom:157.500000px;}
.y11c{bottom:157.860011px;}
.yec{bottom:158.760000px;}
.y35{bottom:165.599977px;}
.yba{bottom:170.460034px;}
.y9a{bottom:175.139989px;}
.y88{bottom:175.320034px;}
.y70{bottom:175.500000px;}
.y11b{bottom:176.940034px;}
.yeb{bottom:177.659989px;}
.y1e9{bottom:178.194697px;}
.y200{bottom:181.974478px;}
.y34{bottom:183.419932px;}
.y136{bottom:188.279989px;}
.y98{bottom:192.960034px;}
.y6f{bottom:193.320034px;}
.y11a{bottom:195.840011px;}
.y1ff{bottom:196.372392px;}
.yea{bottom:196.740000px;}
.yb9{bottom:199.620000px;}
.y161{bottom:201.059967px;}
.y33{bottom:201.239965px;}
.y1e8{bottom:202.135943px;}
.y1fe{bottom:209.691838px;}
.y6e{bottom:210.960034px;}
.y119{bottom:214.559966px;}
.ye9{bottom:215.639989px;}
.y1e7{bottom:216.533786px;}
.y32{bottom:219.239965px;}
.y135{bottom:221.399989px;}
.y87{bottom:228.779989px;}
.y6d{bottom:228.960034px;}
.y160{bottom:231.659981px;}
.y1ed{bottom:233.276110px;}
.y118{bottom:233.460034px;}
.ye8{bottom:234.360011px;}
.y31{bottom:236.879964px;}
.y95{bottom:246.419966px;}
.y6c{bottom:246.779989px;}
.y1fd{bottom:250.195053px;}
.y1ee{bottom:250.555764px;}
.y117{bottom:252.539966px;}
.ye7{bottom:253.260000px;}
.y134{bottom:254.340011px;}
.y30{bottom:254.879964px;}
.y1f9{bottom:255.417608px;}
.yb8{bottom:258.120000px;}
.y1ef{bottom:262.079200px;}
.y15f{bottom:262.080025px;}
.y86{bottom:264.419966px;}
.y6b{bottom:264.600011px;}
.y116{bottom:271.440034px;}
.ye6{bottom:272.340011px;}
.y2f{bottom:272.699997px;}
.y6a{bottom:282.419966px;}
.y1ec{bottom:282.777995px;}
.yb7{bottom:287.100011px;}
.y133{bottom:287.279989px;}
.y15e{bottom:288.899986px;}
.y2e{bottom:290.339974px;}
.y115{bottom:290.340011px;}
.y1fc{bottom:290.698267px;}
.ye5{bottom:291.240000px;}
.y69{bottom:300.240000px;}
.y2d{bottom:308.339974px;}
.y114{bottom:309.419966px;}
.ye4{bottom:310.139989px;}
.y15d{bottom:315.899986px;}
.yb6{bottom:316.440034px;}
.y85{bottom:317.880000px;}
.y68{bottom:318.059966px;}
.y132{bottom:320.580034px;}
.y2c{bottom:326.159951px;}
.y113{bottom:328.320034px;}
.ye3{bottom:329.220011px;}
.y1fb{bottom:331.194150px;}
.y1eb{bottom:332.276213px;}
.y67{bottom:335.880000px;}
.y15c{bottom:343.799973px;}
.y2b{bottom:343.979973px;}
.yb5{bottom:345.600011px;}
.y112{bottom:347.220011px;}
.ye2{bottom:348.120000px;}
.y1f2{bottom:349.204203px;}
.y131{bottom:353.519989px;}
.y84{bottom:353.700034px;}
.y66{bottom:353.880000px;}
.y1f0{bottom:358.741684px;}
.y2a{bottom:361.799927px;}
.y111{bottom:366.120000px;}
.y1b8{bottom:366.477423px;}
.ye1{bottom:367.019989px;}
.y65{bottom:371.519989px;}
.y1fa{bottom:371.697365px;}
.y15b{bottom:372.240006px;}
.y1f1{bottom:372.242522px;}
.yb4{bottom:374.760000px;}
.y29{bottom:379.619961px;}
.y1ea{bottom:381.778097px;}
.y110{bottom:385.200034px;}
.ye0{bottom:385.919966px;}
.y130{bottom:386.460034px;}
.y64{bottom:389.340011px;}
.y1f3{bottom:391.140453px;}
.y28{bottom:397.439994px;}
.y15a{bottom:400.679970px;}
.yb3{bottom:403.919966px;}
.ydf{bottom:405.000000px;}
.y9d{bottom:406.980011px;}
.y83{bottom:407.159989px;}
.y63{bottom:407.340011px;}
.y27{bottom:415.259960px;}
.y12f{bottom:419.399989px;}
.y10f{bottom:422.820034px;}
.yde{bottom:423.720011px;}
.y62{bottom:425.159989px;}
.y159{bottom:429.120002px;}
.y26{bottom:433.259959px;}
.yb2{bottom:433.260000px;}
.y10e{bottom:441.899989px;}
.ydd{bottom:442.620000px;}
.y82{bottom:442.799966px;}
.y61{bottom:442.980011px;}
.y25{bottom:450.899947px;}
.y12e{bottom:452.519989px;}
.y158{bottom:456.299973px;}
.y60{bottom:460.799966px;}
.ydc{bottom:461.700034px;}
.yb1{bottom:462.240000px;}
.y24{bottom:468.899947px;}
.y5f{bottom:478.620000px;}
.y1e5{bottom:479.158808px;}
.y10d{bottom:479.700034px;}
.y1d6{bottom:480.597844px;}
.ydb{bottom:480.600011px;}
.y157{bottom:483.120002px;}
.y12d{bottom:485.639989px;}
.y23{bottom:486.719969px;}
.yb0{bottom:491.580034px;}
.y1e4{bottom:493.556650px;}
.y1d5{bottom:494.995687px;}
.y81{bottom:496.260000px;}
.y5e{bottom:496.440034px;}
.y10c{bottom:498.600011px;}
.yda{bottom:499.500000px;}
.y1b7{bottom:500.757475px;}
.y22{bottom:504.359969px;}
.y1e3{bottom:508.495561px;}
.y156{bottom:509.759994px;}
.y1db{bottom:512.996692px;}
.y5d{bottom:514.260000px;}
.y1d7{bottom:514.439467px;}
.y10b{bottom:517.679966px;}
.yd9{bottom:518.399989px;}
.y12c{bottom:518.580034px;}
.yaf{bottom:520.740000px;}
.y21{bottom:522.359968px;}
.y9c{bottom:531.899989px;}
.y80{bottom:532.080034px;}
.y5c{bottom:532.260000px;}
.y1de{bottom:533.875843px;}
.y155{bottom:536.580025px;}
.y10a{bottom:536.580034px;}
.yd8{bottom:537.480011px;}
.y20{bottom:540.179923px;}
.y1df{bottom:545.395612px;}
.y184{bottom:545.756324px;}
.y18d{bottom:547.199027px;}
.y5b{bottom:549.899989px;}
.y12b{bottom:551.700034px;}
.y109{bottom:555.480011px;}
.y18c{bottom:555.660367px;}
.yd7{bottom:556.380000px;}
.y17b{bottom:556.919048px;}
.y180{bottom:557.813423px;}
.y1e2{bottom:557.997445px;}
.y1f{bottom:557.999956px;}
.y1da{bottom:562.494911px;}
.y154{bottom:563.039977px;}
.y5a{bottom:567.720011px;}
.y108{bottom:574.559966px;}
.yd6{bottom:575.279989px;}
.y1e{bottom:575.819989px;}
.yae{bottom:579.059966px;}
.y12a{bottom:584.639989px;}
.y7f{bottom:585.179966px;}
.y99{bottom:585.360011px;}
.y59{bottom:585.720011px;}
.y153{bottom:589.679970px;}
.y18b{bottom:591.658712px;}
.y107{bottom:593.279989px;}
.y1d{bottom:593.639944px;}
.yd5{bottom:594.360011px;}
.y17f{bottom:596.873899px;}
.y7e{bottom:603.000000px;}
.y58{bottom:603.360011px;}
.y1e1{bottom:607.499329px;}
.yad{bottom:608.399989px;}
.y1c{bottom:611.459988px;}
.y1d9{bottom:611.996795px;}
.y106{bottom:612.180000px;}
.y1dc{bottom:612.900146px;}
.yd4{bottom:613.079989px;}
.y152{bottom:616.860008px;}
.y129{bottom:617.760000px;}
.y7d{bottom:620.820000px;}
.y91{bottom:621.000000px;}
.y187{bottom:621.359583px;}
.y57{bottom:621.360011px;}
.y185{bottom:625.501440px;}
.y18a{bottom:627.653391px;}
.y1b6{bottom:627.841500px;}
.y1b{bottom:629.279943px;}
.y105{bottom:631.079989px;}
.yd3{bottom:631.980011px;}
.y17e{bottom:635.757721px;}
.yac{bottom:637.380000px;}
.y1c3{bottom:638.278821px;}
.y90{bottom:638.820000px;}
.y56{bottom:639.180000px;}
.y151{bottom:643.500000px;}
.y1a{bottom:647.279943px;}
.y104{bottom:650.160011px;}
.y128{bottom:650.700000px;}
.yd2{bottom:650.880000px;}
.y7c{bottom:656.820000px;}
.y1e0{bottom:656.997512px;}
.y55{bottom:657.000000px;}
.y1d8{bottom:661.498679px;}
.y189{bottom:663.659104px;}
.y19{bottom:664.919965px;}
.yab{bottom:666.720011px;}
.y103{bottom:669.060000px;}
.yd1{bottom:669.959989px;}
.y150{bottom:670.500000px;}
.y17d{bottom:674.818197px;}
.y54{bottom:674.820000px;}
.y1dd{bottom:678.960055px;}
.y1e6{bottom:679.134852px;}
.y186{bottom:680.222012px;}
.y18{bottom:682.379953px;}
.y3a{bottom:682.739953px;}
.y1a8{bottom:683.279537px;}
.y127{bottom:683.820000px;}
.y18e{bottom:686.699530px;}
.y102{bottom:687.959989px;}
.yd0{bottom:688.860011px;}
.y8d{bottom:692.279989px;}
.y53{bottom:692.639989px;}
.y1c5{bottom:693.179914px;}
.y183{bottom:694.615285px;}
.yaa{bottom:695.880000px;}
.y1a7{bottom:696.418699px;}
.y216{bottom:696.422146px;}
.y14f{bottom:697.139992px;}
.y188{bottom:699.657484px;}
.y101{bottom:707.040011px;}
.ycf{bottom:707.760000px;}
.y8c{bottom:710.100011px;}
.y7b{bottom:710.279989px;}
.y52{bottom:710.459989px;}
.y182{bottom:711.714583px;}
.y17c{bottom:713.878673px;}
.y215{bottom:716.216560px;}
.y126{bottom:716.760000px;}
.y3d{bottom:716.969583px;}
.y8b{bottom:716.969610px;}
.y17{bottom:718.379952px;}
.y1a9{bottom:722.340013px;}
.y14e{bottom:723.959988px;}
.ya9{bottom:725.040011px;}
.y100{bottom:725.940000px;}
.yce{bottom:726.839989px;}
.y9b{bottom:727.920011px;}
.y51{bottom:728.279989px;}
.y181{bottom:728.640930px;}
.y214{bottom:736.019118px;}
.y16{bottom:736.379952px;}
.y1a6{bottom:736.918212px;}
.yff{bottom:744.839989px;}
.ycd{bottom:745.740000px;}
.y190{bottom:745.924378px;}
.y7a{bottom:746.100011px;}
.y50{bottom:746.279989px;}
.y125{bottom:749.880000px;}
.y14d{bottom:750.240006px;}
.y15{bottom:754.199951px;}
.ya8{bottom:754.200000px;}
.y1b5{bottom:762.302842px;}
.yfe{bottom:763.740000px;}
.y4f{bottom:763.920011px;}
.y1c1{bottom:764.278599px;}
.ycc{bottom:764.639989px;}
.y14c{bottom:777.060001px;}
.y1a5{bottom:777.417761px;}
.y140{bottom:780.000000px;}
.y4e{bottom:781.740000px;}
.yfd{bottom:782.639989px;}
.y124{bottom:783.000000px;}
.ya7{bottom:783.360011px;}
.ycb{bottom:783.540011px;}
.y14{bottom:786.060000px;}
.y79{bottom:799.560000px;}
.y4d{bottom:799.740000px;}
.yfc{bottom:801.540011px;}
.yca{bottom:802.440000px;}
.y13f{bottom:802.499910px;}
.y13{bottom:803.880000px;}
.y14b{bottom:804.060001px;}
.y204{bottom:809.098959px;}
.ya6{bottom:812.519989px;}
.y123{bottom:815.940000px;}
.y4c{bottom:817.380000px;}
.y1a4{bottom:817.917273px;}
.yfb{bottom:820.440000px;}
.y213{bottom:820.980878px;}
.yc9{bottom:821.339989px;}
.y12{bottom:821.880000px;}
.y1d4{bottom:822.959326px;}
.y20a{bottom:822.959473px;}
.y14a{bottom:830.879998px;}
.y97{bottom:835.019989px;}
.y78{bottom:835.200000px;}
.y4b{bottom:835.380000px;}
.yfa{bottom:839.519989px;}
.y11{bottom:839.700000px;}
.yc8{bottom:840.240000px;}
.ya5{bottom:841.860011px;}
.y1d3{bottom:842.761859px;}
.y1ab{bottom:845.636862px;}
.y13e{bottom:847.500000px;}
.y122{bottom:848.880000px;}
.y212{bottom:850.135837px;}
.y96{bottom:852.839989px;}
.y4a{bottom:853.200000px;}
.y149{bottom:857.519989px;}
.yf9{bottom:858.420011px;}
.y1a3{bottom:858.421243px;}
.yc7{bottom:859.320000px;}
.y168{bottom:860.217289px;}
.y1aa{bottom:860.399837px;}
.y16e{bottom:862.019230px;}
.y209{bottom:866.335657px;}
.y169{bottom:867.778396px;}
.y16d{bottom:868.856002px;}
.y13d{bottom:869.999955px;}
.y49{bottom:870.839989px;}
.y166{bottom:871.559388px;}
.y10{bottom:871.560000px;}
.y170{bottom:871.919172px;}
.y178{bottom:873.360872px;}
.y165{bottom:874.079276px;}
.yf8{bottom:877.320000px;}
.yc6{bottom:878.220011px;}
.y20c{bottom:879.479240px;}
.y121{bottom:882.000000px;}
.y148{bottom:884.339985px;}
.y77{bottom:888.660011px;}
.y48{bottom:888.839989px;}
.y1c2{bottom:889.018923px;}
.yf{bottom:889.380000px;}
.yf7{bottom:896.220011px;}
.y20b{bottom:896.756683px;}
.yc5{bottom:897.120000px;}
.y1b0{bottom:899.642576px;}
.ya4{bottom:900.000000px;}
.y1b4{bottom:905.942117px;}
.y47{bottom:906.660000px;}
.ye{bottom:907.380000px;}
.y211{bottom:907.556557px;}
.y208{bottom:909.900248px;}
.y147{bottom:911.159998px;}
.y177{bottom:912.420611px;}
.y120{bottom:915.120000px;}
.yf6{bottom:915.300000px;}
.yc4{bottom:916.020000px;}
.y1d1{bottom:922.136966px;}
.y76{bottom:924.300000px;}
.y46{bottom:924.480000px;}
.y164{bottom:925.016549px;}
.ya3{bottom:929.340000px;}
.yd{bottom:931.500000px;}
.y1c4{bottom:933.478608px;}
.y1d0{bottom:933.661156px;}
.yf5{bottom:934.200000px;}
.yc3{bottom:935.100000px;}
.y210{bottom:937.800912px;}
.y146{bottom:937.979994px;}
.y94{bottom:941.940000px;}
.y45{bottom:942.300000px;}
.yc{bottom:942.840000px;}
.y176{bottom:951.297820px;}
.yf4{bottom:953.100000px;}
.y207{bottom:953.458963px;}
.yc2{bottom:954.000000px;}
.ya2{bottom:958.320000px;}
.y93{bottom:959.760000px;}
.y44{bottom:960.120000px;}
.y17a{bottom:962.104104px;}
.y145{bottom:964.620002px;}
.y20f{bottom:966.237449px;}
.yb{bottom:967.139989px;}
.yf3{bottom:972.000000px;}
.yc1{bottom:972.720000px;}
.y1cf{bottom:974.157740px;}
.y163{bottom:975.959698px;}
.y1b2{bottom:977.224430px;}
.y92{bottom:977.760000px;}
.y43{bottom:977.940000px;}
.ya{bottom:978.480000px;}
.y1d2{bottom:979.381032px;}
.y19d{bottom:988.378964px;}
.y175{bottom:990.357559px;}
.yf2{bottom:990.900000px;}
.y144{bottom:991.439999px;}
.yc0{bottom:991.800000px;}
.y179{bottom:992.522958px;}
.y20e{bottom:994.856534px;}
.y1b1{bottom:995.224054px;}
.y42{bottom:995.760000px;}
.y9{bottom:996.120000px;}
.y206{bottom:996.841023px;}
.y13a{bottom:998.999910px;}
.y16c{bottom:1007.458349px;}
.y1a2{bottom:1008.544085px;}
.y173{bottom:1008.718521px;}
.yf1{bottom:1009.800000px;}
.ybf{bottom:1010.700000px;}
.y9f{bottom:1013.400000px;}
.y41{bottom:1013.760000px;}
.y8{bottom:1013.940000px;}
.y1ce{bottom:1014.660235px;}
.y13b{bottom:1016.999910px;}
.y143{bottom:1017.719999px;}
.y19c{bottom:1023.658168px;}
.y20d{bottom:1024.017370px;}
.y16b{bottom:1024.376590px;}
.y162{bottom:1027.079502px;}
.y172{bottom:1027.980472px;}
.yf0{bottom:1028.700000px;}
.y174{bottom:1029.417316px;}
.y40{bottom:1031.400000px;}
.y1a1{bottom:1032.660830px;}
.y13c{bottom:1035.000090px;}
.ybe{bottom:1037.520000px;}
.y1b3{bottom:1040.221082px;}
.y205{bottom:1040.399738px;}
.y1a0{bottom:1041.479687px;}
.y16a{bottom:1043.461860px;}
.y19b{bottom:1044.539493px;}
.y142{bottom:1044.540003px;}
.y16f{bottom:1044.898705px;}
.y7{bottom:1045.980000px;}
.yef{bottom:1047.780000px;}
.y3f{bottom:1049.220000px;}
.y1cd{bottom:1055.156819px;}
.y19a{bottom:1058.937363px;}
.y1bb{bottom:1064.883126px;}
.ybd{bottom:1065.420000px;}
.y6{bottom:1065.600000px;}
.y19f{bottom:1065.601526px;}
.yee{bottom:1066.680000px;}
.y3e{bottom:1067.220000px;}
.y1cb{bottom:1072.080937px;}
.y141{bottom:1072.439999px;}
.y19e{bottom:1073.517781px;}
.y1bf{bottom:1084.141001px;}
.y1c0{bottom:1084.317655px;}
.y191{bottom:1084.684487px;}
.y18f{bottom:1084.859300px;}
.y3{bottom:1085.580000px;}
.y199{bottom:1086.119605px;}
.y1ba{bottom:1086.477797px;}
.y1ca{bottom:1090.441908px;}
.y1cc{bottom:1095.659297px;}
.y2{bottom:1104.660000px;}
.y1b9{bottom:1119.243337px;}
.y1{bottom:1123.560000px;}
.y3b{bottom:1136.999894px;}
.y3c{bottom:1153.499894px;}
.h24{height:1.619117px;}
.h27{height:1.622980px;}
.h6{height:27.358176px;}
.h2d{height:30.524428px;}
.h28{height:34.593450px;}
.h25{height:34.995945px;}
.h23{height:35.261535px;}
.h30{height:35.991764px;}
.h26{height:36.274391px;}
.h2e{height:39.471578px;}
.h1f{height:43.394146px;}
.h9{height:43.395402px;}
.h5{height:43.395403px;}
.ha{height:43.850598px;}
.h10{height:43.850599px;}
.h1e{height:44.881078px;}
.h1d{height:45.245225px;}
.h3{height:45.246535px;}
.h2c{height:46.251690px;}
.h2b{height:46.736848px;}
.h11{height:46.824550px;}
.h12{height:47.109375px;}
.hd{height:47.109376px;}
.hf{height:47.370786px;}
.h1c{height:47.662245px;}
.h2{height:47.663833px;}
.h8{height:49.181158px;}
.h4{height:49.965150px;}
.hb{height:52.558356px;}
.h29{height:52.628770px;}
.h21{height:53.276941px;}
.h20{height:53.277148px;}
.he{height:53.278086px;}
.h13{height:53.278221px;}
.h7{height:55.572875px;}
.h22{height:61.813899px;}
.h1{height:61.815689px;}
.h19{height:62.578125px;}
.h2a{height:63.344634px;}
.h14{height:63.636475px;}
.hc{height:68.835939px;}
.h17{height:70.664062px;}
.h2f{height:71.613096px;}
.h18{height:72.562500px;}
.h31{height:83.405888px;}
.h1a{height:122.578125px;}
.h1b{height:182.578725px;}
.h0{height:1188.000000px;}
.h15{height:1262.880060px;}
.h16{height:1263.000000px;}
.w5{width:13.677608px;}
.w3{width:13.678173px;}
.w6{width:57.060708px;}
.w4{width:57.782663px;}
.w1{width:892.980015px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:67.857375px;}
.x2d{left:89.998130px;}
.x36{left:96.120344px;}
.x2a{left:99.181654px;}
.x4e{left:102.595682px;}
.x32{left:104.400758px;}
.x31{left:114.658882px;}
.x48{left:119.157848px;}
.x40{left:121.501548px;}
.x4f{left:124.922881px;}
.x52{left:126.359726px;}
.x18{left:127.443244px;}
.x3f{left:132.301422px;}
.x10{left:133.500000px;}
.x15{left:137.342148px;}
.x1{left:138.780000px;}
.xe{left:141.525615px;}
.x41{left:144.720688px;}
.x14{left:147.423608px;}
.x4b{left:148.677895px;}
.x42{left:154.077832px;}
.x4a{left:155.161351px;}
.x3{left:160.020000px;}
.x12{left:163.500000px;}
.x3d{left:170.283546px;}
.x3e{left:173.163111px;}
.x11{left:180.180090px;}
.x38{left:182.697770px;}
.x30{left:186.300799px;}
.x6{left:188.819995px;}
.x21{left:194.403656px;}
.x13{left:200.174970px;}
.x22{left:203.943339px;}
.x16{left:211.316850px;}
.x4c{left:215.636902px;}
.xd{left:219.491895px;}
.x49{left:223.022742px;}
.xf{left:231.030075px;}
.x51{left:233.999269px;}
.x4{left:235.440000px;}
.x3b{left:239.758417px;}
.x2c{left:241.018607px;}
.xc{left:255.546255px;}
.x5{left:274.500000px;}
.x23{left:297.895724px;}
.x17{left:304.556553px;}
.x43{left:309.418149px;}
.x24{left:326.697398px;}
.x50{left:350.819303px;}
.x4d{left:355.138746px;}
.x25{left:356.395572px;}
.x3a{left:359.640564px;}
.x33{left:392.941910px;}
.x2f{left:397.439411px;}
.x37{left:400.859322px;}
.x2e{left:407.704130px;}
.x34{left:460.801809px;}
.x47{left:463.865767px;}
.x29{left:475.382986px;}
.x35{left:480.065233px;}
.x46{left:487.260489px;}
.x7{left:491.579976px;}
.x44{left:498.783924px;}
.x19{left:505.979179px;}
.x27{left:510.480347px;}
.x45{left:513.181803px;}
.x1e{left:515.161871px;}
.x26{left:520.561080px;}
.x39{left:523.615856px;}
.x8{left:541.439986px;}
.x53{left:556.022095px;}
.x3c{left:567.541865px;}
.x1b{left:569.702289px;}
.x1c{left:580.313753px;}
.x1a{left:585.001875px;}
.x28{left:598.324895px;}
.x1f{left:669.603988px;}
.x1d{left:672.296420px;}
.x20{left:697.135667px;}
.x9{left:755.198554px;}
.xb{left:762.480011px;}
.x2{left:770.580034px;}
.xa{left:894.000037px;}
@media print{
.v7{vertical-align:-57.624860pt;}
.v8{vertical-align:-38.407410pt;}
.v2{vertical-align:-22.399960pt;}
.v9{vertical-align:-14.085853pt;}
.vb{vertical-align:-7.690410pt;}
.v4{vertical-align:-5.120160pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120160pt;}
.v1{vertical-align:19.840000pt;}
.v3{vertical-align:22.400160pt;}
.va{vertical-align:39.052720pt;}
.v6{vertical-align:53.333333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.004296pt;}
.ls11{letter-spacing:0.206456pt;}
.ls10{letter-spacing:0.206496pt;}
.ls13{letter-spacing:0.206536pt;}
.lsf{letter-spacing:0.206576pt;}
.ls5{letter-spacing:0.231836pt;}
.ls14{letter-spacing:0.314776pt;}
.lsc{letter-spacing:0.505960pt;}
.ls0{letter-spacing:0.506000pt;}
.ls9{letter-spacing:0.506040pt;}
.ls16{letter-spacing:0.506620pt;}
.ls15{letter-spacing:0.846296pt;}
.ls3{letter-spacing:0.871836pt;}
.ls12{letter-spacing:0.955096pt;}
.ls1{letter-spacing:1.145960pt;}
.lsb{letter-spacing:1.146040pt;}
.lse{letter-spacing:4.794936pt;}
.ls7{letter-spacing:8.588920pt;}
.ls6{letter-spacing:8.589000pt;}
.lsd{letter-spacing:8.589160pt;}
.ls2{letter-spacing:22.406744pt;}
.ls8{letter-spacing:32.057412pt;}
.ls17{letter-spacing:73.678069pt;}
.ls1a{letter-spacing:85.648117pt;}
.ls18{letter-spacing:102.896517pt;}
.ls19{letter-spacing:175.249475pt;}
.ws20{word-spacing:-47.045250pt;}
.ws25{word-spacing:-46.691969pt;}
.ws43{word-spacing:-46.338688pt;}
.ws2f{word-spacing:-46.103167pt;}
.ws3f{word-spacing:-45.926527pt;}
.ws47{word-spacing:-44.866684pt;}
.ws2b{word-spacing:-44.748924pt;}
.ws2e{word-spacing:-44.160122pt;}
.ws32{word-spacing:-43.571320pt;}
.ws31{word-spacing:-43.335800pt;}
.ws1f{word-spacing:-43.159159pt;}
.ws24{word-spacing:-42.982519pt;}
.ws37{word-spacing:-42.679487pt;}
.ws46{word-spacing:-42.570358pt;}
.ws38{word-spacing:-42.399542pt;}
.ws36{word-spacing:-42.388662pt;}
.ws2d{word-spacing:-41.216114pt;}
.ws35{word-spacing:-40.980593pt;}
.ws41{word-spacing:-40.803953pt;}
.ws1b{word-spacing:-40.627312pt;}
.ws11{word-spacing:-40.391792pt;}
.ws23{word-spacing:-40.215151pt;}
.ws12{word-spacing:-40.038511pt;}
.ws2a{word-spacing:-39.626349pt;}
.ws19{word-spacing:-39.449709pt;}
.ws1a{word-spacing:-39.168667pt;}
.ws1e{word-spacing:-38.860907pt;}
.ws1c{word-spacing:-38.272106pt;}
.ws1d{word-spacing:-37.903656pt;}
.ws3e{word-spacing:-37.094502pt;}
.ws13{word-spacing:-35.982448pt;}
.ws15{word-spacing:-35.916899pt;}
.ws16{word-spacing:-35.552135pt;}
.ws17{word-spacing:-35.328098pt;}
.ws14{word-spacing:-34.712396pt;}
.ws18{word-spacing:-33.561693pt;}
.ws42{word-spacing:-32.972891pt;}
.ws3b{word-spacing:-31.795288pt;}
.ws3c{word-spacing:-31.521048pt;}
.ws39{word-spacing:-31.487299pt;}
.ws3d{word-spacing:-31.206486pt;}
.ws0{word-spacing:-16.309334pt;}
.ws6{word-spacing:-14.826667pt;}
.ws28{word-spacing:-14.463963pt;}
.ws3{word-spacing:-13.811000pt;}
.ws8{word-spacing:-13.810600pt;}
.ws27{word-spacing:-13.295966pt;}
.ws5{word-spacing:-12.485144pt;}
.ws9{word-spacing:-12.484782pt;}
.wsa{word-spacing:-11.877816pt;}
.wsb{word-spacing:-11.459197pt;}
.wse{word-spacing:-11.327403pt;}
.ws1{word-spacing:-10.666667pt;}
.ws4{word-spacing:-8.707000pt;}
.ws7{word-spacing:-8.706680pt;}
.ws3a{word-spacing:-3.578375pt;}
.ws33{word-spacing:-0.728963pt;}
.ws40{word-spacing:-0.557443pt;}
.ws22{word-spacing:-0.300161pt;}
.ws29{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws45{word-spacing:0.557443pt;}
.wsf{word-spacing:107.672192pt;}
.ws34{word-spacing:256.981062pt;}
.ws30{word-spacing:276.019872pt;}
.wsd{word-spacing:311.610442pt;}
.wsc{word-spacing:336.052158pt;}
.ws21{word-spacing:359.636270pt;}
.ws44{word-spacing:491.707298pt;}
.ws2c{word-spacing:705.558108pt;}
.ws26{word-spacing:834.413507pt;}
.ws10{word-spacing:1263.302526pt;}
._21{margin-left:-2106.306453pt;}
._4a{margin-left:-1921.012267pt;}
._22{margin-left:-1869.951620pt;}
._20{margin-left:-1473.760090pt;}
._52{margin-left:-1189.760000pt;}
._47{margin-left:-1173.920533pt;}
._4e{margin-left:-1041.280533pt;}
._4d{margin-left:-1007.785067pt;}
._49{margin-left:-661.173867pt;}
._23{margin-left:-658.900923pt;}
._51{margin-left:-623.307200pt;}
._50{margin-left:-589.812800pt;}
._4b{margin-left:-179.307200pt;}
._30{margin-left:-4.174413pt;}
._b{margin-left:-3.259994pt;}
._3{margin-left:-1.972001pt;}
._0{margin-left:-0.896800pt;}
._1{width:1.141200pt;}
._e{width:2.069995pt;}
._5{width:3.749200pt;}
._6{width:5.287199pt;}
._15{width:6.335598pt;}
._10{width:7.333198pt;}
._4{width:8.286797pt;}
._f{width:9.658397pt;}
._1a{width:10.605596pt;}
._d{width:11.518396pt;}
._12{width:12.803996pt;}
._55{width:13.852332pt;}
._16{width:14.743772pt;}
._17{width:16.336397pt;}
._a{width:17.481194pt;}
._11{width:18.916394pt;}
._2{width:20.075593pt;}
._7{width:21.323068pt;}
._1b{width:22.387719pt;}
._1e{width:23.363341pt;}
._1c{width:24.561591pt;}
._8{width:25.799192pt;}
._1d{width:26.889591pt;}
._2d{width:28.294791pt;}
._25{width:29.371990pt;}
._26{width:30.717988pt;}
._37{width:31.801191pt;}
._31{width:32.806789pt;}
._2f{width:34.529990pt;}
._2a{width:35.462388pt;}
._2c{width:37.106388pt;}
._35{width:38.579187pt;}
._9{width:39.487187pt;}
._27{width:41.038788pt;}
._34{width:42.252787pt;}
._1f{width:44.079185pt;}
._13{width:45.392785pt;}
._2b{width:46.380783pt;}
._32{width:47.804783pt;}
._33{width:48.737583pt;}
._28{width:49.815984pt;}
._29{width:50.738382pt;}
._3b{width:52.951182pt;}
._3c{width:54.013982pt;}
._42{width:55.075981pt;}
._38{width:57.936781pt;}
._3e{width:58.924379pt;}
._39{width:59.980780pt;}
._c{width:61.579580pt;}
._45{width:63.916379pt;}
._19{width:65.997978pt;}
._18{width:66.957979pt;}
._3d{width:68.875577pt;}
._14{width:70.679977pt;}
._5b{width:71.824342pt;}
._43{width:75.854774pt;}
._2e{width:76.783175pt;}
._44{width:79.607173pt;}
._5c{width:82.890565pt;}
._5a{width:83.972874pt;}
._36{width:85.084371pt;}
._3a{width:86.830372pt;}
._5e{width:95.837256pt;}
._41{width:97.497967pt;}
._40{width:98.429967pt;}
._3f{width:108.299564pt;}
._46{width:126.247558pt;}
._5d{width:144.249006pt;}
._59{width:155.813227pt;}
._53{width:163.517504pt;}
._57{width:167.532957pt;}
._58{width:179.941901pt;}
._56{width:203.895369pt;}
._54{width:293.119243pt;}
._24{width:336.596435pt;}
._4f{width:574.986667pt;}
._4c{width:1014.612267pt;}
._48{width:1894.346133pt;}
.fsd{font-size:34.826720pt;}
.fs2{font-size:34.828000pt;}
.fs14{font-size:37.119590pt;}
.fs10{font-size:40.893152pt;}
.fsf{font-size:41.368944pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:42.666668pt;}
.fse{font-size:42.880204pt;}
.fs15{font-size:47.999876pt;}
.fsa{font-size:53.333333pt;}
.fsc{font-size:55.242400pt;}
.fs4{font-size:55.243999pt;}
.fs0{font-size:55.244000pt;}
.fs6{font-size:58.666668pt;}
.fs13{font-size:58.880163pt;}
.fsb{font-size:60.046000pt;}
.fs5{font-size:60.047998pt;}
.fs1{font-size:60.048000pt;}
.fs11{font-size:63.999835pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:67.852000pt;}
.fs12{font-size:74.880121pt;}
.y167{bottom:-8.317203pt;}
.y171{bottom:-8.156649pt;}
.y0{bottom:0.000000pt;}
.y198{bottom:23.836155pt;}
.y1f8{bottom:27.200831pt;}
.y1af{bottom:28.952789pt;}
.y1c9{bottom:30.242103pt;}
.y5{bottom:33.120000pt;}
.y197{bottom:41.436630pt;}
.y1f7{bottom:44.796831pt;}
.y1ae{bottom:46.557738pt;}
.y1be{bottom:46.714965pt;}
.y1c8{bottom:47.833540pt;}
.ya1{bottom:49.120000pt;}
.y4{bottom:49.919990pt;}
.y196{bottom:59.041579pt;}
.y203{bottom:60.155592pt;}
.y1f6{bottom:62.397218pt;}
.y1ad{bottom:64.158213pt;}
.y1bd{bottom:64.315440pt;}
.y1c7{bottom:65.438490pt;}
.ya0{bottom:65.919990pt;}
.y195{bottom:76.637492pt;}
.y75{bottom:76.640010pt;}
.y202{bottom:77.756067pt;}
.y1f5{bottom:79.997692pt;}
.y1ac{bottom:81.758600pt;}
.y1bc{bottom:81.920301pt;}
.y1c6{bottom:83.038877pt;}
.y39{bottom:83.840001pt;}
.y11f{bottom:89.760010pt;}
.y8a{bottom:92.320010pt;}
.y74{bottom:92.479970pt;}
.y194{bottom:94.237966pt;}
.y201{bottom:95.361016pt;}
.y1f4{bottom:97.593605pt;}
.y38{bottom:99.679961pt;}
.ybc{bottom:99.679990pt;}
.y139{bottom:105.599970pt;}
.y11e{bottom:106.719970pt;}
.yed{bottom:107.359990pt;}
.y9e{bottom:108.000000pt;}
.y73{bottom:108.320010pt;}
.y193{bottom:111.838353pt;}
.y37{bottom:115.520000pt;}
.y138{bottom:121.440000pt;}
.y11d{bottom:123.520030pt;}
.y8f{bottom:124.000000pt;}
.y89{bottom:124.159970pt;}
.y72{bottom:124.320010pt;}
.ybb{bottom:125.599970pt;}
.y192{bottom:129.434353pt;}
.y36{bottom:131.359960pt;}
.y137{bottom:138.080010pt;}
.y8e{bottom:139.679990pt;}
.y71{bottom:140.000000pt;}
.y11c{bottom:140.320010pt;}
.yec{bottom:141.120000pt;}
.y35{bottom:147.199980pt;}
.yba{bottom:151.520030pt;}
.y9a{bottom:155.679990pt;}
.y88{bottom:155.840030pt;}
.y70{bottom:156.000000pt;}
.y11b{bottom:157.280030pt;}
.yeb{bottom:157.919990pt;}
.y1e9{bottom:158.395286pt;}
.y200{bottom:161.755091pt;}
.y34{bottom:163.039939pt;}
.y136{bottom:167.359990pt;}
.y98{bottom:171.520030pt;}
.y6f{bottom:171.840030pt;}
.y11a{bottom:174.080010pt;}
.y1ff{bottom:174.553238pt;}
.yea{bottom:174.880000pt;}
.yb9{bottom:177.440000pt;}
.y161{bottom:178.719971pt;}
.y33{bottom:178.879969pt;}
.y1e8{bottom:179.676394pt;}
.y1fe{bottom:186.392745pt;}
.y6e{bottom:187.520030pt;}
.y119{bottom:190.719970pt;}
.ye9{bottom:191.679990pt;}
.y1e7{bottom:192.474476pt;}
.y32{bottom:194.879968pt;}
.y135{bottom:196.799990pt;}
.y87{bottom:203.359990pt;}
.y6d{bottom:203.520030pt;}
.y160{bottom:205.919983pt;}
.y1ed{bottom:207.356542pt;}
.y118{bottom:207.520030pt;}
.ye8{bottom:208.320010pt;}
.y31{bottom:210.559968pt;}
.y95{bottom:219.039970pt;}
.y6c{bottom:219.359990pt;}
.y1fd{bottom:222.395602pt;}
.y1ee{bottom:222.716235pt;}
.y117{bottom:224.479970pt;}
.ye7{bottom:225.120000pt;}
.y134{bottom:226.080010pt;}
.y30{bottom:226.559968pt;}
.y1f9{bottom:227.037874pt;}
.yb8{bottom:229.440000pt;}
.y1ef{bottom:232.959289pt;}
.y15f{bottom:232.960022pt;}
.y86{bottom:235.039970pt;}
.y6b{bottom:235.200010pt;}
.y116{bottom:241.280030pt;}
.ye6{bottom:242.080010pt;}
.y2f{bottom:242.399997pt;}
.y6a{bottom:251.039970pt;}
.y1ec{bottom:251.358217pt;}
.yb7{bottom:255.200010pt;}
.y133{bottom:255.359990pt;}
.y15e{bottom:256.799988pt;}
.y2e{bottom:258.079977pt;}
.y115{bottom:258.080010pt;}
.y1fc{bottom:258.398460pt;}
.ye5{bottom:258.880000pt;}
.y69{bottom:266.880000pt;}
.y2d{bottom:274.079976pt;}
.y114{bottom:275.039970pt;}
.ye4{bottom:275.679990pt;}
.y15d{bottom:280.799988pt;}
.yb6{bottom:281.280030pt;}
.y85{bottom:282.560000pt;}
.y68{bottom:282.719970pt;}
.y132{bottom:284.960030pt;}
.y2c{bottom:289.919956pt;}
.y113{bottom:291.840030pt;}
.ye3{bottom:292.640010pt;}
.y1fb{bottom:294.394800pt;}
.y1eb{bottom:295.356634pt;}
.y67{bottom:298.560000pt;}
.y15c{bottom:305.599976pt;}
.y2b{bottom:305.759976pt;}
.yb5{bottom:307.200010pt;}
.y112{bottom:308.640010pt;}
.ye2{bottom:309.440000pt;}
.y1f2{bottom:310.403736pt;}
.y131{bottom:314.239990pt;}
.y84{bottom:314.400030pt;}
.y66{bottom:314.560000pt;}
.y1f0{bottom:318.881497pt;}
.y2a{bottom:321.599935pt;}
.y111{bottom:325.440000pt;}
.y1b8{bottom:325.757710pt;}
.ye1{bottom:326.239990pt;}
.y65{bottom:330.239990pt;}
.y1fa{bottom:330.397657pt;}
.y15b{bottom:330.880005pt;}
.y1f1{bottom:330.882242pt;}
.yb4{bottom:333.120000pt;}
.y29{bottom:337.439965pt;}
.y1ea{bottom:339.358309pt;}
.y110{bottom:342.400030pt;}
.ye0{bottom:343.039970pt;}
.y130{bottom:343.520030pt;}
.y64{bottom:346.080010pt;}
.y1f3{bottom:347.680403pt;}
.y28{bottom:353.279995pt;}
.y15a{bottom:356.159973pt;}
.yb3{bottom:359.039970pt;}
.ydf{bottom:360.000000pt;}
.y9d{bottom:361.760010pt;}
.y83{bottom:361.919990pt;}
.y63{bottom:362.080010pt;}
.y27{bottom:369.119964pt;}
.y12f{bottom:372.799990pt;}
.y10f{bottom:375.840030pt;}
.yde{bottom:376.640010pt;}
.y62{bottom:377.919990pt;}
.y159{bottom:381.440002pt;}
.y26{bottom:385.119964pt;}
.yb2{bottom:385.120000pt;}
.y10e{bottom:392.799990pt;}
.ydd{bottom:393.440000pt;}
.y82{bottom:393.599970pt;}
.y61{bottom:393.760010pt;}
.y25{bottom:400.799953pt;}
.y12e{bottom:402.239990pt;}
.y158{bottom:405.599976pt;}
.y60{bottom:409.599970pt;}
.ydc{bottom:410.400030pt;}
.yb1{bottom:410.880000pt;}
.y24{bottom:416.799953pt;}
.y5f{bottom:425.440000pt;}
.y1e5{bottom:425.918940pt;}
.y10d{bottom:426.400030pt;}
.y1d6{bottom:427.198084pt;}
.ydb{bottom:427.200010pt;}
.y157{bottom:429.440002pt;}
.y12d{bottom:431.679990pt;}
.y23{bottom:432.639973pt;}
.yb0{bottom:436.960030pt;}
.y1e4{bottom:438.717022pt;}
.y1d5{bottom:439.996166pt;}
.y81{bottom:441.120000pt;}
.y5e{bottom:441.280030pt;}
.y10c{bottom:443.200010pt;}
.yda{bottom:444.000000pt;}
.y1b7{bottom:445.117756pt;}
.y22{bottom:448.319972pt;}
.y1e3{bottom:451.996054pt;}
.y156{bottom:453.119995pt;}
.y1db{bottom:455.997060pt;}
.y5d{bottom:457.120000pt;}
.y1d7{bottom:457.279526pt;}
.y10b{bottom:460.159970pt;}
.yd9{bottom:460.799990pt;}
.y12c{bottom:460.960030pt;}
.yaf{bottom:462.880000pt;}
.y21{bottom:464.319972pt;}
.y9c{bottom:472.799990pt;}
.y80{bottom:472.960030pt;}
.y5c{bottom:473.120000pt;}
.y1de{bottom:474.556305pt;}
.y155{bottom:476.960022pt;}
.y10a{bottom:476.960030pt;}
.yd8{bottom:477.760010pt;}
.y20{bottom:480.159931pt;}
.y1df{bottom:484.796100pt;}
.y184{bottom:485.116733pt;}
.y18d{bottom:486.399135pt;}
.y5b{bottom:488.799990pt;}
.y12b{bottom:490.400030pt;}
.y109{bottom:493.760010pt;}
.y18c{bottom:493.920326pt;}
.yd7{bottom:494.560000pt;}
.y17b{bottom:495.039154pt;}
.y180{bottom:495.834154pt;}
.y1e2{bottom:495.997729pt;}
.y1f{bottom:495.999961pt;}
.y1da{bottom:499.995476pt;}
.y154{bottom:500.479980pt;}
.y5a{bottom:504.640010pt;}
.y108{bottom:510.719970pt;}
.yd6{bottom:511.359990pt;}
.y1e{bottom:511.839991pt;}
.yae{bottom:514.719970pt;}
.y12a{bottom:519.679990pt;}
.y7f{bottom:520.159970pt;}
.y99{bottom:520.320010pt;}
.y59{bottom:520.640010pt;}
.y153{bottom:524.159973pt;}
.y18b{bottom:525.918855pt;}
.y107{bottom:527.359990pt;}
.y1d{bottom:527.679950pt;}
.yd5{bottom:528.320010pt;}
.y17f{bottom:530.554577pt;}
.y7e{bottom:536.000000pt;}
.y58{bottom:536.320010pt;}
.y1e1{bottom:539.999404pt;}
.yad{bottom:540.799990pt;}
.y1c{bottom:543.519990pt;}
.y1d9{bottom:543.997151pt;}
.y106{bottom:544.160000pt;}
.y1dc{bottom:544.800130pt;}
.yd4{bottom:544.959990pt;}
.y152{bottom:548.320007pt;}
.y129{bottom:549.120000pt;}
.y7d{bottom:551.840000pt;}
.y91{bottom:552.000000pt;}
.y187{bottom:552.319630pt;}
.y57{bottom:552.320010pt;}
.y185{bottom:556.001280pt;}
.y18a{bottom:557.914125pt;}
.y1b6{bottom:558.081334pt;}
.y1b{bottom:559.359949pt;}
.y105{bottom:560.959990pt;}
.yd3{bottom:561.760010pt;}
.y17e{bottom:565.117974pt;}
.yac{bottom:566.560000pt;}
.y1c3{bottom:567.358952pt;}
.y90{bottom:567.840000pt;}
.y56{bottom:568.160000pt;}
.y151{bottom:572.000000pt;}
.y1a{bottom:575.359949pt;}
.y104{bottom:577.920010pt;}
.y128{bottom:578.400000pt;}
.yd2{bottom:578.560000pt;}
.y7c{bottom:583.840000pt;}
.y1e0{bottom:583.997788pt;}
.y55{bottom:584.000000pt;}
.y1d8{bottom:587.998826pt;}
.y189{bottom:589.919203pt;}
.y19{bottom:591.039969pt;}
.yab{bottom:592.640010pt;}
.y103{bottom:594.720000pt;}
.yd1{bottom:595.519990pt;}
.y150{bottom:596.000000pt;}
.y17d{bottom:599.838397pt;}
.y54{bottom:599.840000pt;}
.y1dd{bottom:603.520049pt;}
.y1e6{bottom:603.675424pt;}
.y186{bottom:604.641788pt;}
.y18{bottom:606.559958pt;}
.y3a{bottom:606.879958pt;}
.y1a8{bottom:607.359589pt;}
.y127{bottom:607.840000pt;}
.y18e{bottom:610.399582pt;}
.y102{bottom:611.519990pt;}
.yd0{bottom:612.320010pt;}
.y8d{bottom:615.359990pt;}
.y53{bottom:615.679990pt;}
.y1c5{bottom:616.159924pt;}
.y183{bottom:617.435809pt;}
.yaa{bottom:618.560000pt;}
.y1a7{bottom:619.038844pt;}
.y216{bottom:619.041907pt;}
.y14f{bottom:619.679993pt;}
.y188{bottom:621.917764pt;}
.y101{bottom:628.480010pt;}
.ycf{bottom:629.120000pt;}
.y8c{bottom:631.200010pt;}
.y7b{bottom:631.359990pt;}
.y52{bottom:631.519990pt;}
.y182{bottom:632.635185pt;}
.y17c{bottom:634.558821pt;}
.y215{bottom:636.636942pt;}
.y126{bottom:637.120000pt;}
.y3d{bottom:637.306296pt;}
.y8b{bottom:637.306320pt;}
.y17{bottom:638.559957pt;}
.y1a9{bottom:642.080012pt;}
.y14e{bottom:643.519989pt;}
.ya9{bottom:644.480010pt;}
.y100{bottom:645.280000pt;}
.yce{bottom:646.079990pt;}
.y9b{bottom:647.040010pt;}
.y51{bottom:647.359990pt;}
.y181{bottom:647.680826pt;}
.y214{bottom:654.239216pt;}
.y16{bottom:654.559957pt;}
.y1a6{bottom:655.038411pt;}
.yff{bottom:662.079990pt;}
.ycd{bottom:662.880000pt;}
.y190{bottom:663.043892pt;}
.y7a{bottom:663.200010pt;}
.y50{bottom:663.359990pt;}
.y125{bottom:666.560000pt;}
.y14d{bottom:666.880005pt;}
.y15{bottom:670.399957pt;}
.ya8{bottom:670.400000pt;}
.y1b5{bottom:677.602526pt;}
.yfe{bottom:678.880000pt;}
.y4f{bottom:679.040010pt;}
.y1c1{bottom:679.358754pt;}
.ycc{bottom:679.679990pt;}
.y14c{bottom:690.720001pt;}
.y1a5{bottom:691.038009pt;}
.y140{bottom:693.333333pt;}
.y4e{bottom:694.880000pt;}
.yfd{bottom:695.679990pt;}
.y124{bottom:696.000000pt;}
.ya7{bottom:696.320010pt;}
.ycb{bottom:696.480010pt;}
.y14{bottom:698.720000pt;}
.y79{bottom:710.720000pt;}
.y4d{bottom:710.880000pt;}
.yfc{bottom:712.480010pt;}
.yca{bottom:713.280000pt;}
.y13f{bottom:713.333253pt;}
.y13{bottom:714.560000pt;}
.y14b{bottom:714.720001pt;}
.y204{bottom:719.199075pt;}
.ya6{bottom:722.239990pt;}
.y123{bottom:725.280000pt;}
.y4c{bottom:726.560000pt;}
.y1a4{bottom:727.037576pt;}
.yfb{bottom:729.280000pt;}
.y213{bottom:729.760780pt;}
.yc9{bottom:730.079990pt;}
.y12{bottom:730.560000pt;}
.y1d4{bottom:731.519401pt;}
.y20a{bottom:731.519531pt;}
.y14a{bottom:738.559998pt;}
.y97{bottom:742.239990pt;}
.y78{bottom:742.400000pt;}
.y4b{bottom:742.560000pt;}
.yfa{bottom:746.239990pt;}
.y11{bottom:746.400000pt;}
.yc8{bottom:746.880000pt;}
.ya5{bottom:748.320010pt;}
.y1d3{bottom:749.121652pt;}
.y1ab{bottom:751.677211pt;}
.y13e{bottom:753.333333pt;}
.y122{bottom:754.560000pt;}
.y212{bottom:755.676300pt;}
.y96{bottom:758.079990pt;}
.y4a{bottom:758.400000pt;}
.y149{bottom:762.239990pt;}
.yf9{bottom:763.040010pt;}
.y1a3{bottom:763.041105pt;}
.yc7{bottom:763.840000pt;}
.y168{bottom:764.637590pt;}
.y1aa{bottom:764.799855pt;}
.y16e{bottom:766.239315pt;}
.y209{bottom:770.076140pt;}
.y169{bottom:771.358574pt;}
.y16d{bottom:772.316446pt;}
.y13d{bottom:773.333293pt;}
.y49{bottom:774.079990pt;}
.y166{bottom:774.719456pt;}
.y10{bottom:774.720000pt;}
.y170{bottom:775.039264pt;}
.y178{bottom:776.320775pt;}
.y165{bottom:776.959356pt;}
.yf8{bottom:779.840000pt;}
.yc6{bottom:780.640010pt;}
.y20c{bottom:781.759324pt;}
.y121{bottom:784.000000pt;}
.y148{bottom:786.079987pt;}
.y77{bottom:789.920010pt;}
.y48{bottom:790.079990pt;}
.y1c2{bottom:790.239043pt;}
.yf{bottom:790.560000pt;}
.yf7{bottom:796.640010pt;}
.y20b{bottom:797.117052pt;}
.yc5{bottom:797.440000pt;}
.y1b0{bottom:799.682290pt;}
.ya4{bottom:800.000000pt;}
.y1b4{bottom:805.281881pt;}
.y47{bottom:805.920000pt;}
.ye{bottom:806.560000pt;}
.y211{bottom:806.716940pt;}
.y208{bottom:808.800220pt;}
.y147{bottom:809.919998pt;}
.y177{bottom:811.040543pt;}
.y120{bottom:813.440000pt;}
.yf6{bottom:813.600000pt;}
.yc4{bottom:814.240000pt;}
.y1d1{bottom:819.677303pt;}
.y76{bottom:821.600000pt;}
.y46{bottom:821.760000pt;}
.y164{bottom:822.236932pt;}
.ya3{bottom:826.080000pt;}
.yd{bottom:828.000000pt;}
.y1c4{bottom:829.758763pt;}
.y1d0{bottom:829.921028pt;}
.yf5{bottom:830.400000pt;}
.yc3{bottom:831.200000pt;}
.y210{bottom:833.600810pt;}
.y146{bottom:833.759995pt;}
.y94{bottom:837.280000pt;}
.y45{bottom:837.600000pt;}
.yc{bottom:838.080000pt;}
.y176{bottom:845.598062pt;}
.yf4{bottom:847.200000pt;}
.y207{bottom:847.519078pt;}
.yc2{bottom:848.000000pt;}
.ya2{bottom:851.840000pt;}
.y93{bottom:853.120000pt;}
.y44{bottom:853.440000pt;}
.y17a{bottom:855.203648pt;}
.y145{bottom:857.440002pt;}
.y20f{bottom:858.877732pt;}
.yb{bottom:859.679990pt;}
.yf3{bottom:864.000000pt;}
.yc1{bottom:864.640000pt;}
.y1cf{bottom:865.917991pt;}
.y163{bottom:867.519732pt;}
.y1b2{bottom:868.643937pt;}
.y92{bottom:869.120000pt;}
.y43{bottom:869.280000pt;}
.ya{bottom:869.760000pt;}
.y1d2{bottom:870.560917pt;}
.y19d{bottom:878.559080pt;}
.y175{bottom:880.317830pt;}
.yf2{bottom:880.800000pt;}
.y144{bottom:881.279999pt;}
.yc0{bottom:881.600000pt;}
.y179{bottom:882.242629pt;}
.y20e{bottom:884.316920pt;}
.y1b1{bottom:884.643604pt;}
.y42{bottom:885.120000pt;}
.y9{bottom:885.440000pt;}
.y206{bottom:886.080910pt;}
.y13a{bottom:887.999920pt;}
.y16c{bottom:895.518532pt;}
.y1a2{bottom:896.483631pt;}
.y173{bottom:896.638686pt;}
.yf1{bottom:897.600000pt;}
.ybf{bottom:898.400000pt;}
.y9f{bottom:900.800000pt;}
.y41{bottom:901.120000pt;}
.y8{bottom:901.280000pt;}
.y1ce{bottom:901.920209pt;}
.y13b{bottom:903.999920pt;}
.y143{bottom:904.639999pt;}
.y19c{bottom:909.918372pt;}
.y20d{bottom:910.237663pt;}
.y16b{bottom:910.556969pt;}
.y162{bottom:912.959557pt;}
.y172{bottom:913.760420pt;}
.yf0{bottom:914.400000pt;}
.y174{bottom:915.037614pt;}
.y40{bottom:916.800000pt;}
.y1a1{bottom:917.920737pt;}
.y13c{bottom:920.000080pt;}
.ybe{bottom:922.240000pt;}
.y1b3{bottom:924.640962pt;}
.y205{bottom:924.799767pt;}
.y1a0{bottom:925.759722pt;}
.y16a{bottom:927.521654pt;}
.y19b{bottom:928.479550pt;}
.y142{bottom:928.480003pt;}
.y16f{bottom:928.798848pt;}
.y7{bottom:929.760000pt;}
.yef{bottom:931.360000pt;}
.y3f{bottom:932.640000pt;}
.y1cd{bottom:937.917172pt;}
.y19a{bottom:941.277656pt;}
.y1bb{bottom:946.562779pt;}
.ybd{bottom:947.040000pt;}
.y6{bottom:947.200000pt;}
.y19f{bottom:947.201357pt;}
.yee{bottom:948.160000pt;}
.y3e{bottom:948.640000pt;}
.y1cb{bottom:952.960833pt;}
.y141{bottom:953.279999pt;}
.y19e{bottom:954.238028pt;}
.y1bf{bottom:963.680890pt;}
.y1c0{bottom:963.837915pt;}
.y191{bottom:964.163989pt;}
.y18f{bottom:964.319378pt;}
.y3{bottom:964.960000pt;}
.y199{bottom:965.439648pt;}
.y1ba{bottom:965.758042pt;}
.y1ca{bottom:969.281696pt;}
.y1cc{bottom:973.919375pt;}
.y2{bottom:981.920000pt;}
.y1b9{bottom:994.882966pt;}
.y1{bottom:998.720000pt;}
.y3b{bottom:1010.666572pt;}
.y3c{bottom:1025.333239pt;}
.h24{height:1.439215pt;}
.h27{height:1.442649pt;}
.h6{height:24.318379pt;}
.h2d{height:27.132825pt;}
.h28{height:30.749734pt;}
.h25{height:31.107507pt;}
.h23{height:31.343587pt;}
.h30{height:31.992679pt;}
.h26{height:32.243903pt;}
.h2e{height:35.085847pt;}
.h1f{height:38.572574pt;}
.h9{height:38.573690pt;}
.h5{height:38.573691pt;}
.ha{height:38.978310pt;}
.h10{height:38.978311pt;}
.h1e{height:39.894292pt;}
.h1d{height:40.217978pt;}
.h3{height:40.219143pt;}
.h2c{height:41.112614pt;}
.h2b{height:41.543865pt;}
.h11{height:41.621822pt;}
.h12{height:41.875000pt;}
.hd{height:41.875001pt;}
.hf{height:42.107365pt;}
.h1c{height:42.366440pt;}
.h2{height:42.367852pt;}
.h8{height:43.716585pt;}
.h4{height:44.413467pt;}
.hb{height:46.718538pt;}
.h29{height:46.781129pt;}
.h21{height:47.357281pt;}
.h20{height:47.357465pt;}
.he{height:47.358299pt;}
.h13{height:47.358419pt;}
.h7{height:49.398111pt;}
.h22{height:54.945688pt;}
.h1{height:54.947279pt;}
.h19{height:55.625000pt;}
.h2a{height:56.306341pt;}
.h14{height:56.565756pt;}
.hc{height:61.187502pt;}
.h17{height:62.812500pt;}
.h2f{height:63.656086pt;}
.h18{height:64.500000pt;}
.h31{height:74.138567pt;}
.h1a{height:108.958333pt;}
.h1b{height:162.292200pt;}
.h0{height:1056.000000pt;}
.h15{height:1122.560053pt;}
.h16{height:1122.666667pt;}
.w5{width:12.157874pt;}
.w3{width:12.158376pt;}
.w6{width:50.720629pt;}
.w4{width:51.362367pt;}
.w1{width:793.760013pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:60.317667pt;}
.x2d{left:79.998337pt;}
.x36{left:85.440306pt;}
.x2a{left:88.161470pt;}
.x4e{left:91.196162pt;}
.x32{left:92.800674pt;}
.x31{left:101.919006pt;}
.x48{left:105.918087pt;}
.x40{left:108.001376pt;}
.x4f{left:111.042561pt;}
.x52{left:112.319756pt;}
.x18{left:113.282884pt;}
.x3f{left:117.601264pt;}
.x10{left:118.666667pt;}
.x15{left:122.081909pt;}
.x1{left:123.360000pt;}
.xe{left:125.800547pt;}
.x41{left:128.640612pt;}
.x14{left:131.043207pt;}
.x4b{left:132.158129pt;}
.x42{left:136.958073pt;}
.x4a{left:137.921200pt;}
.x3{left:142.240000pt;}
.x12{left:145.333333pt;}
.x3d{left:151.363152pt;}
.x3e{left:153.922765pt;}
.x11{left:160.160080pt;}
.x38{left:162.398018pt;}
.x30{left:165.600710pt;}
.x6{left:167.839996pt;}
.x21{left:172.803250pt;}
.x13{left:177.933307pt;}
.x22{left:181.282968pt;}
.x16{left:187.837200pt;}
.x4c{left:191.677247pt;}
.xd{left:195.103907pt;}
.x49{left:198.242437pt;}
.xf{left:205.360067pt;}
.x51{left:207.999350pt;}
.x4{left:209.280000pt;}
.x3b{left:213.118593pt;}
.x2c{left:214.238762pt;}
.xc{left:227.152227pt;}
.x5{left:244.000000pt;}
.x23{left:264.796199pt;}
.x17{left:270.716936pt;}
.x43{left:275.038355pt;}
.x24{left:290.397687pt;}
.x50{left:311.839380pt;}
.x4d{left:315.678885pt;}
.x25{left:316.796064pt;}
.x3a{left:319.680501pt;}
.x33{left:349.281698pt;}
.x2f{left:353.279477pt;}
.x37{left:356.319397pt;}
.x2e{left:362.403671pt;}
.x34{left:409.601608pt;}
.x47{left:412.325126pt;}
.x29{left:422.562654pt;}
.x35{left:426.724652pt;}
.x46{left:433.120434pt;}
.x7{left:436.959979pt;}
.x44{left:443.363488pt;}
.x19{left:449.759271pt;}
.x27{left:453.760309pt;}
.x45{left:456.161603pt;}
.x1e{left:457.921663pt;}
.x26{left:462.720960pt;}
.x39{left:465.436316pt;}
.x8{left:481.279988pt;}
.x53{left:494.241863pt;}
.x3c{left:504.481658pt;}
.x1b{left:506.402034pt;}
.x1c{left:515.834447pt;}
.x1a{left:520.001666pt;}
.x28{left:531.844351pt;}
.x1f{left:595.203545pt;}
.x1d{left:597.596818pt;}
.x20{left:619.676148pt;}
.x9{left:671.287603pt;}
.xb{left:677.760010pt;}
.x2{left:684.960030pt;}
.xa{left:794.666700pt;}
}




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