
    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_f38ee31e12ff892f0d54dce3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_24e7ce41ad443edcf65a5b56.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_2d10c435b1f17ecd580c1d2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_e280666a583fc494b7ae5961.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;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_b393832fe00d911a7e1f55b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951172;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_ba7a473b71bab38da047aa48.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.392000;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_ec07c9d284af1235f56ca26b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_181f77f720a157ef5346e43e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;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_337c40c0f46cea1871aa614e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064000;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_a5b86876a7d9f8b0d2383511.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736816;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_a54af6ed2f7ba66b0c058844.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_f2976ced77fc1fa7ee5fc631.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_f7736e5767098fb4fe6bec18.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_f47a8b5cc701b8bd776812e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.998000;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_33122d0abd5dd65a3af364a8.woff2')format("woff");}.fff{font-family:fff;line-height:0.954000;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_3d7e42ec24e305a78a87aa9e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.734000;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_fadbc93992a9c14fb7091555.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.676000;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;}
.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);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,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);}
.v4{vertical-align:-10.545468px;}
.v2{vertical-align:-7.479600px;}
.v3{vertical-align:-3.060000px;}
.v1{vertical-align:-1.695600px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.263600px;}
.ls16{letter-spacing:-1.200600px;}
.ls1b{letter-spacing:-1.199985px;}
.ls24{letter-spacing:-0.600000px;}
.ls17{letter-spacing:-0.241496px;}
.ls1a{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.239997px;}
.ls18{letter-spacing:-0.239400px;}
.ls15{letter-spacing:-0.238497px;}
.ls13{letter-spacing:-0.237600px;}
.ls1c{letter-spacing:-0.237598px;}
.ls25{letter-spacing:-0.214367px;}
.ls19{letter-spacing:-0.212772px;}
.ls14{letter-spacing:-0.212372px;}
.ls22{letter-spacing:-0.211976px;}
.ls1d{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.792000px;}
.ls26{letter-spacing:1.128000px;}
.ls27{letter-spacing:1.134000px;}
.lse{letter-spacing:1.363183px;}
.lsc{letter-spacing:1.367983px;}
.lsd{letter-spacing:1.703979px;}
.ls10{letter-spacing:3.067162px;}
.ls29{letter-spacing:3.743953px;}
.ls6{letter-spacing:4.761540px;}
.ls5{letter-spacing:4.766340px;}
.ls2c{letter-spacing:5.102336px;}
.ls7{letter-spacing:5.107136px;}
.ls0{letter-spacing:5.486400px;}
.ls2{letter-spacing:5.826600px;}
.ls1{letter-spacing:5.832000px;}
.lsf{letter-spacing:9.446282px;}
.ls2b{letter-spacing:9.859077px;}
.ls8{letter-spacing:10.175873px;}
.ls9{letter-spacing:10.387070px;}
.ls2a{letter-spacing:10.550268px;}
.lsb{letter-spacing:12.260700px;}
.lsa{letter-spacing:12.294900px;}
.ls21{letter-spacing:12.942000px;}
.ls1e{letter-spacing:12.990000px;}
.ls23{letter-spacing:13.014000px;}
.ls20{letter-spacing:13.026000px;}
.ls1f{letter-spacing:13.326000px;}
.ls2d{letter-spacing:15.652604px;}
.ls3{letter-spacing:20.783740px;}
.ls4{letter-spacing:20.788540px;}
.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;}
}
.ws34{word-spacing:-25.247684px;}
.ws85{word-spacing:-16.776000px;}
.wsaf{word-spacing:-16.770000px;}
.wsa1{word-spacing:-16.566000px;}
.wsa6{word-spacing:-16.494000px;}
.ws9f{word-spacing:-16.446000px;}
.wsa8{word-spacing:-16.410000px;}
.wsb{word-spacing:-14.936400px;}
.ws10b{word-spacing:-13.487831px;}
.ws1f{word-spacing:-13.247834px;}
.ws94{word-spacing:-13.027037px;}
.ws9a{word-spacing:-13.007837px;}
.ws93{word-spacing:-12.969438px;}
.ws91{word-spacing:-12.935838px;}
.ws92{word-spacing:-12.835040px;}
.ws3d{word-spacing:-10.799865px;}
.ws72{word-spacing:-4.456763px;}
.wsca{word-spacing:-4.233565px;}
.wsc8{word-spacing:-4.082366px;}
.ws115{word-spacing:-3.503956px;}
.ws117{word-spacing:-3.499156px;}
.wse5{word-spacing:-3.470357px;}
.ws2c{word-spacing:-3.465600px;}
.wsfc{word-spacing:-3.436757px;}
.ws110{word-spacing:-3.407957px;}
.ws1b{word-spacing:-3.374358px;}
.ws113{word-spacing:-3.345558px;}
.ws8{word-spacing:-3.342600px;}
.ws108{word-spacing:-3.340758px;}
.ws4{word-spacing:-3.326400px;}
.ws10a{word-spacing:-3.326358px;}
.ws25{word-spacing:-3.323100px;}
.wsec{word-spacing:-3.321558px;}
.wsc{word-spacing:-3.321000px;}
.ws2f{word-spacing:-3.317400px;}
.ws17{word-spacing:-3.316759px;}
.wsf0{word-spacing:-3.311959px;}
.ws11a{word-spacing:-3.307159px;}
.wsea{word-spacing:-3.297559px;}
.ws10{word-spacing:-3.292759px;}
.ws21{word-spacing:-3.288900px;}
.ws19{word-spacing:-3.287959px;}
.wsfa{word-spacing:-3.283159px;}
.wsdd{word-spacing:-3.278359px;}
.ws12{word-spacing:-3.273559px;}
.ws2e{word-spacing:-3.266100px;}
.wsf1{word-spacing:-3.263959px;}
.wsde{word-spacing:-3.259159px;}
.ws29{word-spacing:-3.254700px;}
.wsee{word-spacing:-3.254359px;}
.ws79{word-spacing:-3.249559px;}
.wsff{word-spacing:-3.239960px;}
.wseb{word-spacing:-3.235160px;}
.ws1a{word-spacing:-3.230360px;}
.ws6{word-spacing:-3.229200px;}
.wsa{word-spacing:-3.223800px;}
.wsf7{word-spacing:-3.215960px;}
.ws100{word-spacing:-3.211160px;}
.wsed{word-spacing:-3.191960px;}
.ws30{word-spacing:-3.186300px;}
.wse2{word-spacing:-3.182360px;}
.ws20{word-spacing:-3.180600px;}
.ws114{word-spacing:-3.177560px;}
.ws1c{word-spacing:-3.172760px;}
.wsef{word-spacing:-3.167960px;}
.ws11{word-spacing:-3.163160px;}
.ws106{word-spacing:-3.153561px;}
.ws2a{word-spacing:-3.152100px;}
.wsf{word-spacing:-3.134361px;}
.ws13{word-spacing:-3.129561px;}
.ws31{word-spacing:-3.124761px;}
.ws23{word-spacing:-3.123600px;}
.ws10f{word-spacing:-3.119961px;}
.ws27{word-spacing:-3.117900px;}
.ws101{word-spacing:-3.115161px;}
.ws15{word-spacing:-3.100761px;}
.wsdf{word-spacing:-3.095961px;}
.ws111{word-spacing:-3.086361px;}
.ws22{word-spacing:-3.083700px;}
.ws26{word-spacing:-3.072300px;}
.ws109{word-spacing:-3.071962px;}
.ws24{word-spacing:-3.060900px;}
.ws10d{word-spacing:-3.052762px;}
.ws1d{word-spacing:-3.038362px;}
.ws2b{word-spacing:-3.038100px;}
.ws119{word-spacing:-3.033562px;}
.wse6{word-spacing:-3.023962px;}
.wsf3{word-spacing:-3.019162px;}
.wsd{word-spacing:-3.018600px;}
.wsfb{word-spacing:-3.014362px;}
.ws2{word-spacing:-3.013200px;}
.ws58{word-spacing:-3.009600px;}
.ws9{word-spacing:-3.007800px;}
.wsfe{word-spacing:-3.004762px;}
.ws5{word-spacing:-3.002400px;}
.wsf5{word-spacing:-2.999962px;}
.wsf4{word-spacing:-2.990363px;}
.wse7{word-spacing:-2.985563px;}
.ws7{word-spacing:-2.970000px;}
.wsf8{word-spacing:-2.961563px;}
.ws18{word-spacing:-2.956763px;}
.ws118{word-spacing:-2.951963px;}
.ws103{word-spacing:-2.942363px;}
.wse8{word-spacing:-2.937563px;}
.ws33{word-spacing:-2.918364px;}
.wse1{word-spacing:-2.913564px;}
.wse9{word-spacing:-2.908764px;}
.ws1{word-spacing:-2.905200px;}
.wsfd{word-spacing:-2.903964px;}
.wsf6{word-spacing:-2.894364px;}
.ws112{word-spacing:-2.889564px;}
.ws3{word-spacing:-2.883600px;}
.ws107{word-spacing:-2.875164px;}
.ws116{word-spacing:-2.841564px;}
.ws16{word-spacing:-2.831965px;}
.ws1e{word-spacing:-2.812765px;}
.ws10c{word-spacing:-2.807965px;}
.wsf9{word-spacing:-2.779165px;}
.wse3{word-spacing:-2.769565px;}
.wse0{word-spacing:-2.764765px;}
.ws102{word-spacing:-2.759965px;}
.wse4{word-spacing:-2.755166px;}
.ws14{word-spacing:-2.750366px;}
.wse{word-spacing:-2.745566px;}
.ws105{word-spacing:-2.687966px;}
.ws0{word-spacing:-2.649567px;}
.ws104{word-spacing:-2.615967px;}
.ws28{word-spacing:-2.576400px;}
.ws2d{word-spacing:-2.536500px;}
.wscd{word-spacing:-0.966000px;}
.wsce{word-spacing:-0.954000px;}
.ws3f{word-spacing:-0.950388px;}
.ws4b{word-spacing:-0.916789px;}
.ws45{word-spacing:-0.892789px;}
.ws42{word-spacing:-0.878389px;}
.ws7a{word-spacing:-0.859189px;}
.ws9e{word-spacing:-0.858000px;}
.ws3c{word-spacing:-0.849589px;}
.ws4d{word-spacing:-0.815990px;}
.ws40{word-spacing:-0.791990px;}
.ws52{word-spacing:-0.767990px;}
.ws44{word-spacing:-0.743991px;}
.ws50{word-spacing:-0.739191px;}
.ws38{word-spacing:-0.729591px;}
.ws48{word-spacing:-0.715191px;}
.ws7b{word-spacing:-0.676792px;}
.ws4c{word-spacing:-0.671992px;}
.ws3a{word-spacing:-0.667192px;}
.ws51{word-spacing:-0.647992px;}
.ws53{word-spacing:-0.643192px;}
.ws43{word-spacing:-0.638392px;}
.ws80{word-spacing:-0.636000px;}
.ws46{word-spacing:-0.633592px;}
.ws35{word-spacing:-0.623992px;}
.ws71{word-spacing:-0.618000px;}
.ws39{word-spacing:-0.609592px;}
.ws54{word-spacing:-0.604792px;}
.ws4f{word-spacing:-0.575993px;}
.ws3e{word-spacing:-0.571193px;}
.ws68{word-spacing:-0.528000px;}
.ws41{word-spacing:-0.527993px;}
.ws78{word-spacing:-0.510000px;}
.wsc7{word-spacing:-0.498000px;}
.ws47{word-spacing:-0.494394px;}
.ws4e{word-spacing:-0.489594px;}
.wsd3{word-spacing:-0.474000px;}
.ws4a{word-spacing:-0.470394px;}
.ws55{word-spacing:-0.460794px;}
.ws62{word-spacing:-0.432000px;}
.wsa5{word-spacing:-0.426000px;}
.wsc5{word-spacing:-0.420000px;}
.ws65{word-spacing:-0.414000px;}
.ws36{word-spacing:-0.403195px;}
.wsa4{word-spacing:-0.402000px;}
.ws37{word-spacing:-0.398395px;}
.ws74{word-spacing:-0.396000px;}
.ws5e{word-spacing:-0.384000px;}
.ws66{word-spacing:-0.378000px;}
.ws75{word-spacing:-0.366000px;}
.ws60{word-spacing:-0.360000px;}
.ws8d{word-spacing:-0.354000px;}
.ws6a{word-spacing:-0.348000px;}
.wsa3{word-spacing:-0.342000px;}
.ws56{word-spacing:-0.340796px;}
.ws6d{word-spacing:-0.336000px;}
.ws49{word-spacing:-0.335996px;}
.wsc0{word-spacing:-0.330000px;}
.wsa7{word-spacing:-0.324000px;}
.wsab{word-spacing:-0.318000px;}
.ws77{word-spacing:-0.312000px;}
.ws3b{word-spacing:-0.307196px;}
.ws86{word-spacing:-0.306000px;}
.ws8a{word-spacing:-0.300000px;}
.ws59{word-spacing:-0.294000px;}
.ws84{word-spacing:-0.288000px;}
.ws5c{word-spacing:-0.282000px;}
.ws6c{word-spacing:-0.276000px;}
.ws5f{word-spacing:-0.258000px;}
.ws9d{word-spacing:-0.252000px;}
.ws64{word-spacing:-0.234000px;}
.ws6b{word-spacing:-0.228000px;}
.ws61{word-spacing:-0.222000px;}
.ws76{word-spacing:-0.216000px;}
.ws5d{word-spacing:-0.210000px;}
.wsd4{word-spacing:-0.204000px;}
.ws83{word-spacing:-0.198000px;}
.wsbb{word-spacing:-0.196798px;}
.ws5b{word-spacing:-0.192000px;}
.ws7c{word-spacing:-0.186000px;}
.ws89{word-spacing:-0.180000px;}
.wsac{word-spacing:-0.174000px;}
.ws63{word-spacing:-0.168000px;}
.ws95{word-spacing:-0.167998px;}
.ws87{word-spacing:-0.150000px;}
.wsbe{word-spacing:-0.144000px;}
.ws99{word-spacing:-0.139198px;}
.wsd1{word-spacing:-0.138000px;}
.ws97{word-spacing:-0.134398px;}
.wsc6{word-spacing:-0.132000px;}
.wsad{word-spacing:-0.120000px;}
.ws9c{word-spacing:-0.114000px;}
.ws82{word-spacing:-0.090000px;}
.wsb2{word-spacing:-0.086399px;}
.wsbd{word-spacing:-0.084000px;}
.ws81{word-spacing:-0.072000px;}
.ws6e{word-spacing:-0.054000px;}
.wsbf{word-spacing:-0.036000px;}
.wsaa{word-spacing:-0.030000px;}
.ws8f{word-spacing:-0.028800px;}
.ws67{word-spacing:-0.024000px;}
.wsa0{word-spacing:-0.012000px;}
.ws57{word-spacing:0.000000px;}
.ws9b{word-spacing:0.033600px;}
.ws8e{word-spacing:0.036000px;}
.ws5a{word-spacing:0.048000px;}
.wsae{word-spacing:0.054000px;}
.wsda{word-spacing:0.066000px;}
.ws69{word-spacing:0.084000px;}
.ws8b{word-spacing:0.108000px;}
.ws6f{word-spacing:0.114000px;}
.wsb4{word-spacing:0.143998px;}
.ws70{word-spacing:0.144000px;}
.ws88{word-spacing:0.150000px;}
.ws8c{word-spacing:0.156000px;}
.wsc4{word-spacing:0.180000px;}
.wsc2{word-spacing:0.186000px;}
.wsa9{word-spacing:0.198000px;}
.wsc1{word-spacing:0.204000px;}
.wsb1{word-spacing:0.240000px;}
.ws7f{word-spacing:0.273598px;}
.wsc3{word-spacing:0.288000px;}
.ws73{word-spacing:0.295198px;}
.wsa2{word-spacing:0.316797px;}
.wsb3{word-spacing:0.331196px;}
.wsdb{word-spacing:0.342000px;}
.wsb0{word-spacing:0.348000px;}
.ws7e{word-spacing:0.367197px;}
.wscc{word-spacing:0.480000px;}
.wsd0{word-spacing:0.642000px;}
.wsc9{word-spacing:0.684000px;}
.wsd5{word-spacing:0.708000px;}
.ws7d{word-spacing:0.726000px;}
.wscf{word-spacing:0.762000px;}
.wsd6{word-spacing:0.846000px;}
.wsd2{word-spacing:0.900000px;}
.wsd8{word-spacing:1.014000px;}
.wsd9{word-spacing:1.020000px;}
.wsd7{word-spacing:1.026000px;}
.wscb{word-spacing:1.158000px;}
.ws32{word-spacing:34.588368px;}
.wsf2{word-spacing:46.842614px;}
.ws10e{word-spacing:46.847414px;}
.wsdc{word-spacing:46.909814px;}
.ws90{word-spacing:560.095399px;}
.ws98{word-spacing:921.602880px;}
.ws96{word-spacing:967.058312px;}
.wsb9{word-spacing:1446.020325px;}
.wsb8{word-spacing:1455.956200px;}
.wsb6{word-spacing:1478.419920px;}
.wsbc{word-spacing:1483.939851px;}
.wsba{word-spacing:1485.427832px;}
.wsb7{word-spacing:1537.459182px;}
.wsb5{word-spacing:1553.394982px;}
._11{margin-left:-19.559755px;}
._0{margin-left:-1.113586px;}
._6{width:1.168500px;}
._2{width:3.913800px;}
._3{width:9.268684px;}
._4{width:11.270259px;}
._8{width:12.396000px;}
._5{width:13.976400px;}
._e{width:16.300596px;}
._10{width:19.919751px;}
._9{width:21.028537px;}
._1{width:25.110000px;}
._d{width:512.542393px;}
._c{width:524.100649px;}
._b{width:529.342183px;}
._a{width:738.096374px;}
._f{width:1362.794165px;}
._7{width:1553.922976px;}
.fc3{color:transparent;}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:37.995000px;}
.fsb{font-size:39.995400px;}
.fs4{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:68.998800px;}
.fsa{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:54.000000px;}
.yf0{bottom:108.937469px;}
.yad{bottom:115.484922px;}
.y2c{bottom:124.498500px;}
.yda{bottom:124.498650px;}
.y13b{bottom:124.499644px;}
.y52{bottom:124.500157px;}
.yef{bottom:131.473187px;}
.y109{bottom:131.898000px;}
.y17b{bottom:136.832578px;}
.y13a{bottom:138.786665px;}
.yac{bottom:140.996603px;}
.y51{bottom:140.997550px;}
.yd9{bottom:141.505500px;}
.yd8{bottom:143.971650px;}
.y7a{bottom:143.973000px;}
.y2b{bottom:145.503000px;}
.yee{bottom:150.182154px;}
.y17a{bottom:151.119600px;}
.y108{bottom:151.372500px;}
.yab{bottom:155.282424px;}
.y50{bottom:157.494944px;}
.y139{bottom:158.260022px;}
.y79{bottom:163.531500px;}
.y177{bottom:165.321422px;}
.y178{bottom:165.575819px;}
.y179{bottom:165.746217px;}
.y2a{bottom:166.507500px;}
.yed{bottom:168.975119px;}
.yd7{bottom:169.483500px;}
.yaa{bottom:169.484247px;}
.y107{bottom:170.931000px;}
.y138{bottom:172.461844px;}
.y4e{bottom:173.993538px;}
.y4f{bottom:174.418333px;}
.y78{bottom:183.006000px;}
.ya9{bottom:183.771268px;}
.y176{bottom:184.794779px;}
.y29{bottom:185.130000px;}
.y137{bottom:186.747666px;}
.y28{bottom:187.512000px;}
.yec{bottom:187.684085px;}
.y106{bottom:190.404000px;}
.y4d{bottom:190.490932px;}
.y175{bottom:199.081800px;}
.y77{bottom:202.479000px;}
.ya8{bottom:202.479034px;}
.y136{bottom:206.222222px;}
.yeb{bottom:206.477050px;}
.y4c{bottom:206.988326px;}
.y27{bottom:208.516500px;}
.y105{bottom:209.878500px;}
.yd6{bottom:213.196500px;}
.y174{bottom:213.367621px;}
.y135{bottom:220.509244px;}
.ya7{bottom:221.273199px;}
.y76{bottom:222.039000px;}
.yea{bottom:225.186016px;}
.y104{bottom:229.437000px;}
.y26{bottom:229.521000px;}
.y4b{bottom:232.500007px;}
.yd5{bottom:232.671000px;}
.y173{bottom:232.842178px;}
.ya6{bottom:239.980965px;}
.y134{bottom:239.982600px;}
.y75{bottom:241.512000px;}
.ye9{bottom:243.980181px;}
.y103{bottom:248.911500px;}
.y4a{bottom:248.997400px;}
.yd4{bottom:252.229500px;}
.y171{bottom:252.315535px;}
.y172{bottom:252.741529px;}
.y133{bottom:254.269622px;}
.y25{bottom:255.033000px;}
.y74{bottom:260.986500px;}
.ya5{bottom:261.751093px;}
.ye8{bottom:262.687947px;}
.y49{bottom:265.494794px;}
.y16f{bottom:266.602556px;}
.y170{bottom:266.942152px;}
.y102{bottom:268.386000px;}
.yd3{bottom:271.702500px;}
.y132{bottom:273.742978px;}
.ya4{bottom:276.038115px;}
.y73{bottom:280.459500px;}
.ye7{bottom:281.482112px;}
.y16e{bottom:286.075913px;}
.y101{bottom:287.859000px;}
.y131{bottom:288.030000px;}
.y48{bottom:291.006475px;}
.yd2{bottom:291.177000px;}
.ye6{bottom:300.189879px;}
.y16d{bottom:300.362934px;}
.ya3{bottom:301.209000px;}
.y72{bottom:305.972325px;}
.y100{bottom:307.417500px;}
.y130{bottom:307.503356px;}
.y47{bottom:307.503869px;}
.yd1{bottom:310.735500px;}
.y24{bottom:313.966500px;}
.y16c{bottom:314.564757px;}
.y12f{bottom:321.790378px;}
.ye5{bottom:322.470000px;}
.y46{bottom:324.001263px;}
.yff{bottom:326.892000px;}
.y16b{bottom:328.850578px;}
.yd0{bottom:330.210000px;}
.y71{bottom:333.013500px;}
.y23{bottom:334.971000px;}
.y12e{bottom:335.991000px;}
.ya2{bottom:336.165000px;}
.y45{bottom:340.499857px;}
.yfe{bottom:346.366500px;}
.y16a{bottom:348.325135px;}
.ycf{bottom:349.683000px;}
.ye2{bottom:354.868500px;}
.ya1{bottom:355.638000px;}
.y22{bottom:355.975500px;}
.y12d{bottom:356.230500px;}
.y44{bottom:356.997250px;}
.ye1{bottom:357.336000px;}
.y169{bottom:362.610956px;}
.yfd{bottom:365.925000px;}
.yce{bottom:369.243000px;}
.y43{bottom:373.494644px;}
.ya0{bottom:375.198000px;}
.y168{bottom:376.812778px;}
.y21{bottom:376.980000px;}
.ye0{bottom:382.846500px;}
.yfb{bottom:382.932000px;}
.yfc{bottom:385.398000px;}
.yfa{bottom:385.399500px;}
.y70{bottom:387.699000px;}
.ycd{bottom:388.716000px;}
.y9f{bottom:394.671000px;}
.y167{bottom:396.372534px;}
.y20{bottom:397.984500px;}
.y42{bottom:399.006325px;}
.yf9{bottom:404.874000px;}
.y6f{bottom:407.172000px;}
.ycc{bottom:408.190500px;}
.y12b{bottom:409.723500px;}
.y12c{bottom:410.490000px;}
.y166{bottom:410.573156px;}
.y9e{bottom:414.145500px;}
.y1f{bottom:418.989000px;}
.yf8{bottom:424.432500px;}
.ydf{bottom:424.516500px;}
.y41{bottom:424.518006px;}
.y6e{bottom:426.646500px;}
.ycb{bottom:427.665000px;}
.y12a{bottom:429.198000px;}
.y165{bottom:430.047713px;}
.y9d{bottom:433.704000px;}
.yf7{bottom:443.907000px;}
.yde{bottom:444.075000px;}
.y164{bottom:444.333534px;}
.y1e{bottom:444.501000px;}
.y6d{bottom:446.205000px;}
.yca{bottom:447.223500px;}
.y40{bottom:450.029687px;}
.y9c{bottom:453.178500px;}
.y128{bottom:456.240000px;}
.y129{bottom:457.005000px;}
.yf6{bottom:463.380000px;}
.y163{bottom:463.808091px;}
.y6c{bottom:465.679500px;}
.yc9{bottom:466.696500px;}
.ydd{bottom:469.587000px;}
.y9b{bottom:472.651500px;}
.y3f{bottom:475.541369px;}
.y162{bottom:478.093912px;}
.yf5{bottom:482.854500px;}
.y127{bottom:483.198000px;}
.y6b{bottom:485.152500px;}
.yc8{bottom:486.171000px;}
.y3d{bottom:492.038762px;}
.y9a{bottom:492.211500px;}
.y161{bottom:492.295735px;}
.y3e{bottom:492.379558px;}
.yf4{bottom:502.413000px;}
.y1d{bottom:503.433000px;}
.y6a{bottom:504.712500px;}
.yc7{bottom:505.729500px;}
.y160{bottom:506.582756px;}
.y126{bottom:510.240000px;}
.ydc{bottom:511.257000px;}
.y99{bottom:511.684500px;}
.y3c{bottom:517.465245px;}
.yf3{bottom:521.887500px;}
.y69{bottom:524.185500px;}
.y1c{bottom:524.437500px;}
.yc6{bottom:525.204000px;}
.y15f{bottom:526.056113px;}
.y196{bottom:529.797666px;}
.ydb{bottom:530.730000px;}
.y98{bottom:531.159000px;}
.y3b{bottom:533.962638px;}
.y125{bottom:537.196500px;}
.y15e{bottom:540.343134px;}
.yf2{bottom:541.360500px;}
.y68{bottom:543.660000px;}
.y195{bottom:544.084687px;}
.yc5{bottom:544.677000px;}
.y1b{bottom:545.442000px;}
.y3a{bottom:550.545231px;}
.y97{bottom:550.633500px;}
.y15d{bottom:554.544957px;}
.y123{bottom:556.671000px;}
.y124{bottom:557.521500px;}
.y194{bottom:558.371709px;}
.ye4{bottom:562.706391px;}
.y67{bottom:563.218500px;}
.yf1{bottom:566.872500px;}
.y39{bottom:567.042625px;}
.yc4{bottom:570.189825px;}
.y96{bottom:570.192000px;}
.y1a{bottom:570.954000px;}
.y15c{bottom:574.103512px;}
.y193{bottom:577.845065px;}
.y66{bottom:582.693000px;}
.y37{bottom:583.541219px;}
.y122{bottom:583.713000px;}
.y38{bottom:583.880814px;}
.ye3{bottom:586.006500px;}
.y15b{bottom:588.305335px;}
.y95{bottom:589.665000px;}
.y192{bottom:592.046888px;}
.yc3{bottom:597.231000px;}
.y35{bottom:600.038612px;}
.y36{bottom:600.378208px;}
.y10c{bottom:600.888891px;}
.y65{bottom:602.166000px;}
.y15a{bottom:602.591156px;}
.y94{bottom:609.139500px;}
.y121{bottom:610.671000px;}
.y191{bottom:611.605443px;}
.y34{bottom:616.536006px;}
.y159{bottom:616.792979px;}
.y64{bottom:621.726000px;}
.y10a{bottom:624.189000px;}
.y190{bottom:625.807266px;}
.y93{bottom:628.698000px;}
.y10b{bottom:629.461500px;}
.y11f{bottom:630.229500px;}
.y120{bottom:630.994500px;}
.y158{bottom:636.351534px;}
.y18f{bottom:640.094287px;}
.yc2{bottom:640.942500px;}
.y33{bottom:641.026500px;}
.y63{bottom:641.199000px;}
.y19{bottom:641.877000px;}
.y92{bottom:648.172500px;}
.y157{bottom:650.553357px;}
.y18e{bottom:654.294910px;}
.y11e{bottom:657.187500px;}
.yc1{bottom:660.417000px;}
.y62{bottom:660.673500px;}
.y155{bottom:664.840378px;}
.y156{bottom:667.476745px;}
.y91{bottom:667.645500px;}
.y18d{bottom:673.854665px;}
.y11c{bottom:676.660500px;}
.y11d{bottom:677.511000px;}
.yc0{bottom:679.891500px;}
.y61{bottom:680.146500px;}
.y154{bottom:684.313735px;}
.y90{bottom:687.205500px;}
.y18a{bottom:688.055288px;}
.y18b{bottom:688.310885px;}
.y18c{bottom:688.481283px;}
.y153{bottom:698.600756px;}
.ybf{bottom:699.364500px;}
.y60{bottom:699.706500px;}
.y18{bottom:702.171488px;}
.y11a{bottom:703.702500px;}
.y11b{bottom:704.469000px;}
.y8f{bottom:706.678500px;}
.y189{bottom:707.615043px;}
.y152{bottom:712.802578px;}
.ybe{bottom:718.924500px;}
.y5f{bottom:719.179500px;}
.y188{bottom:721.815666px;}
.y118{bottom:723.177000px;}
.y119{bottom:723.942000px;}
.y8e{bottom:726.153000px;}
.y32{bottom:728.023500px;}
.y17{bottom:732.190313px;}
.y151{bottom:732.361134px;}
.ybd{bottom:738.397500px;}
.y5e{bottom:738.654000px;}
.y187{bottom:741.290222px;}
.y31{bottom:745.285500px;}
.y8d{bottom:745.711500px;}
.y150{bottom:746.562956px;}
.y16{bottom:747.242925px;}
.y117{bottom:750.219000px;}
.y186{bottom:755.577244px;}
.ybc{bottom:757.872000px;}
.y5d{bottom:758.212500px;}
.y14f{bottom:760.848778px;}
.y15{bottom:762.209138px;}
.y30{bottom:762.463500px;}
.y8c{bottom:765.186000px;}
.y185{bottom:775.050600px;}
.y13{bottom:777.176550px;}
.y116{bottom:777.177000px;}
.ybb{bottom:777.430500px;}
.y14{bottom:777.601345px;}
.y5c{bottom:777.687000px;}
.y2f{bottom:779.727000px;}
.y14e{bottom:780.323334px;}
.y8b{bottom:784.659000px;}
.y184{bottom:789.337622px;}
.y11{bottom:792.227962px;}
.y12{bottom:792.567558px;}
.y14d{bottom:794.609156px;}
.y114{bottom:796.735500px;}
.yba{bottom:796.905000px;}
.y2e{bottom:796.989000px;}
.y5b{bottom:797.160000px;}
.y115{bottom:797.500500px;}
.y183{bottom:803.623443px;}
.y8a{bottom:804.133500px;}
.y10{bottom:807.195375px;}
.y14c{bottom:808.810978px;}
.yb9{bottom:816.378000px;}
.y5a{bottom:816.720000px;}
.yf{bottom:822.246787px;}
.y182{bottom:823.098000px;}
.y89{bottom:823.692000px;}
.y113{bottom:823.693500px;}
.y14b{bottom:828.369534px;}
.yb8{bottom:835.936500px;}
.y59{bottom:836.193000px;}
.ye{bottom:837.213000px;}
.y181{bottom:837.298622px;}
.y14a{bottom:842.571356px;}
.y88{bottom:843.166500px;}
.y112{bottom:850.735500px;}
.y58{bottom:855.667500px;}
.y149{bottom:856.858378px;}
.yb7{bottom:861.363000px;}
.y87{bottom:862.639500px;}
.yd{bottom:864.169500px;}
.yb{bottom:864.171000px;}
.yc{bottom:870.208500px;}
.y111{bottom:870.973500px;}
.y180{bottom:871.059000px;}
.y57{bottom:875.140500px;}
.y148{bottom:876.331734px;}
.y9{bottom:880.668000px;}
.y7{bottom:880.668450px;}
.ya{bottom:881.091900px;}
.y8{bottom:886.705500px;}
.y86{bottom:888.151500px;}
.y147{bottom:890.618756px;}
.y110{bottom:895.719000px;}
.y5{bottom:897.250500px;}
.y56{bottom:900.652500px;}
.y6{bottom:903.202500px;}
.y146{bottom:904.820578px;}
.yb6{bottom:905.074500px;}
.yb4{bottom:922.081500px;}
.y145{bottom:924.293935px;}
.yb5{bottom:924.633000px;}
.yb3{bottom:924.634500px;}
.y85{bottom:932.628000px;}
.y4{bottom:934.670100px;}
.y144{bottom:938.580956px;}
.yb2{bottom:944.109000px;}
.y10f{bottom:950.656500px;}
.y84{bottom:952.101000px;}
.y143{bottom:952.866778px;}
.yb1{bottom:963.582000px;}
.y17f{bottom:967.068600px;}
.y3{bottom:968.430900px;}
.y10e{bottom:970.129500px;}
.y83{bottom:971.659500px;}
.y142{bottom:972.341334px;}
.yb0{bottom:983.140500px;}
.y141{bottom:986.541957px;}
.y10d{bottom:995.641500px;}
.y82{bottom:997.171500px;}
.y17e{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.yaf{bottom:1002.615000px;}
.y7f{bottom:1004.564518px;}
.y140{bottom:1006.101712px;}
.y55{bottom:1013.074500px;}
.y17d{bottom:1015.116000px;}
.y13f{bottom:1020.303535px;}
.y7e{bottom:1021.063112px;}
.yae{bottom:1022.089500px;}
.y54{bottom:1034.079000px;}
.y13e{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y81{bottom:1041.562500px;}
.y7d{bottom:1046.574793px;}
.y13d{bottom:1048.791179px;}
.y53{bottom:1059.591000px;}
.y80{bottom:1061.121000px;}
.y7c{bottom:1063.072186px;}
.y13c{bottom:1063.077000px;}
.y17c{bottom:1063.416596px;}
.y7b{bottom:1118.692500px;}
.h16{height:23.996250px;}
.h4{height:27.932275px;}
.ha{height:29.446125px;}
.h14{height:29.996550px;}
.h12{height:34.079574px;}
.h13{height:34.175573px;}
.hc{height:35.554243px;}
.h11{height:35.999550px;}
.h1{height:37.199535px;}
.h6{height:37.247534px;}
.h5{height:38.416992px;}
.he{height:39.119511px;}
.hd{height:40.559493px;}
.h3{height:41.904000px;}
.h9{height:44.175000px;}
.hb{height:45.000000px;}
.h15{height:46.500000px;}
.h8{height:53.543069px;}
.h10{height:53.999550px;}
.hf{height:55.871534px;}
.h7{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:54.000000px;}
.x19{left:71.433000px;}
.x1b{left:74.153366px;}
.x1d{left:93.542724px;}
.x1c{left:142.014918px;}
.x1e{left:169.736971px;}
.x1a{left:241.169678px;}
.x2c{left:285.817500px;}
.x1{left:300.018000px;}
.x3c{left:307.332000px;}
.x1f{left:317.961000px;}
.x3d{left:332.247289px;}
.x44{left:355.634614px;}
.x41{left:357.674971px;}
.x30{left:358.951500px;}
.x21{left:365.582780px;}
.x8{left:403.767000px;}
.x12{left:408.444000px;}
.x45{left:411.760313px;}
.x13{left:413.971500px;}
.x15{left:416.691342px;}
.x9{left:417.714000px;}
.x34{left:426.555000px;}
.x2{left:447.732000px;}
.xa{left:457.086750px;}
.x46{left:467.630414px;}
.x3{left:469.927500px;}
.x3b{left:489.568500px;}
.x3e{left:495.692445px;}
.x29{left:512.362500px;}
.xb{left:517.889400px;}
.x42{left:522.394512px;}
.x2b{left:527.244000px;}
.x2a{left:528.859500px;}
.x16{left:531.408708px;}
.x2d{left:544.930139px;}
.x43{left:550.968555px;}
.x25{left:570.696216px;}
.x26{left:576.393745px;}
.x22{left:581.241685px;}
.x2f{left:587.452500px;}
.xc{left:589.238250px;}
.x4{left:606.670500px;}
.x5{left:612.198000px;}
.x39{left:618.487500px;}
.x17{left:622.063500px;}
.xd{left:625.719000px;}
.xe{left:631.246500px;}
.x3f{left:651.739695px;}
.x20{left:667.219500px;}
.x3a{left:673.338000px;}
.x47{left:680.482554px;}
.x38{left:686.689500px;}
.x2e{left:688.475944px;}
.x14{left:708.800090px;}
.x35{left:712.795500px;}
.x40{left:720.450836px;}
.xf{left:722.748150px;}
.x27{left:741.373500px;}
.x23{left:746.557618px;}
.x24{left:749.108786px;}
.x28{left:752.088000px;}
.x32{left:753.699000px;}
.x6{left:755.914500px;}
.x10{left:758.466000px;}
.x11{left:763.993500px;}
.x36{left:767.646000px;}
.x7{left:769.776000px;}
.x31{left:812.716500px;}
.x37{left:836.187000px;}
.x33{left:852.429000px;}
@media print{
.v4{vertical-align:-9.373749pt;}
.v2{vertical-align:-6.648533pt;}
.v3{vertical-align:-2.720000pt;}
.v1{vertical-align:-1.507200pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.123200pt;}
.ls16{letter-spacing:-1.067200pt;}
.ls1b{letter-spacing:-1.066653pt;}
.ls24{letter-spacing:-0.533333pt;}
.ls17{letter-spacing:-0.214663pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.213331pt;}
.ls18{letter-spacing:-0.212800pt;}
.ls15{letter-spacing:-0.211997pt;}
.ls13{letter-spacing:-0.211200pt;}
.ls1c{letter-spacing:-0.211198pt;}
.ls25{letter-spacing:-0.190548pt;}
.ls19{letter-spacing:-0.189131pt;}
.ls14{letter-spacing:-0.188775pt;}
.ls22{letter-spacing:-0.188423pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.704000pt;}
.ls26{letter-spacing:1.002667pt;}
.ls27{letter-spacing:1.008000pt;}
.lse{letter-spacing:1.211718pt;}
.lsc{letter-spacing:1.215985pt;}
.lsd{letter-spacing:1.514648pt;}
.ls10{letter-spacing:2.726366pt;}
.ls29{letter-spacing:3.327958pt;}
.ls6{letter-spacing:4.232480pt;}
.ls5{letter-spacing:4.236747pt;}
.ls2c{letter-spacing:4.535410pt;}
.ls7{letter-spacing:4.539677pt;}
.ls0{letter-spacing:4.876800pt;}
.ls2{letter-spacing:5.179200pt;}
.ls1{letter-spacing:5.184000pt;}
.lsf{letter-spacing:8.396695pt;}
.ls2b{letter-spacing:8.763624pt;}
.ls8{letter-spacing:9.045220pt;}
.ls9{letter-spacing:9.232951pt;}
.ls2a{letter-spacing:9.378016pt;}
.lsb{letter-spacing:10.898400pt;}
.lsa{letter-spacing:10.928800pt;}
.ls21{letter-spacing:11.504000pt;}
.ls1e{letter-spacing:11.546667pt;}
.ls23{letter-spacing:11.568000pt;}
.ls20{letter-spacing:11.578667pt;}
.ls1f{letter-spacing:11.845333pt;}
.ls2d{letter-spacing:13.913426pt;}
.ls3{letter-spacing:18.474436pt;}
.ls4{letter-spacing:18.478702pt;}
.ws34{word-spacing:-22.442386pt;}
.ws85{word-spacing:-14.912000pt;}
.wsaf{word-spacing:-14.906667pt;}
.wsa1{word-spacing:-14.725333pt;}
.wsa6{word-spacing:-14.661333pt;}
.ws9f{word-spacing:-14.618667pt;}
.wsa8{word-spacing:-14.586667pt;}
.wsb{word-spacing:-13.276800pt;}
.ws10b{word-spacing:-11.989183pt;}
.ws1f{word-spacing:-11.775853pt;}
.ws94{word-spacing:-11.579589pt;}
.ws9a{word-spacing:-11.562522pt;}
.ws93{word-spacing:-11.528389pt;}
.ws91{word-spacing:-11.498523pt;}
.ws92{word-spacing:-11.408924pt;}
.ws3d{word-spacing:-9.599880pt;}
.ws72{word-spacing:-3.961567pt;}
.wsca{word-spacing:-3.763169pt;}
.wsc8{word-spacing:-3.628770pt;}
.ws115{word-spacing:-3.114628pt;}
.ws117{word-spacing:-3.110361pt;}
.wse5{word-spacing:-3.084761pt;}
.ws2c{word-spacing:-3.080533pt;}
.wsfc{word-spacing:-3.054895pt;}
.ws110{word-spacing:-3.029295pt;}
.ws1b{word-spacing:-2.999429pt;}
.ws113{word-spacing:-2.973829pt;}
.ws8{word-spacing:-2.971200pt;}
.ws108{word-spacing:-2.969563pt;}
.ws4{word-spacing:-2.956800pt;}
.ws10a{word-spacing:-2.956763pt;}
.ws25{word-spacing:-2.953867pt;}
.wsec{word-spacing:-2.952496pt;}
.wsc{word-spacing:-2.952000pt;}
.ws2f{word-spacing:-2.948800pt;}
.ws17{word-spacing:-2.948230pt;}
.wsf0{word-spacing:-2.943963pt;}
.ws11a{word-spacing:-2.939697pt;}
.wsea{word-spacing:-2.931163pt;}
.ws10{word-spacing:-2.926897pt;}
.ws21{word-spacing:-2.923467pt;}
.ws19{word-spacing:-2.922630pt;}
.wsfa{word-spacing:-2.918364pt;}
.wsdd{word-spacing:-2.914097pt;}
.ws12{word-spacing:-2.909830pt;}
.ws2e{word-spacing:-2.903200pt;}
.wsf1{word-spacing:-2.901297pt;}
.wsde{word-spacing:-2.897030pt;}
.ws29{word-spacing:-2.893067pt;}
.wsee{word-spacing:-2.892764pt;}
.ws79{word-spacing:-2.888497pt;}
.wsff{word-spacing:-2.879964pt;}
.wseb{word-spacing:-2.875697pt;}
.ws1a{word-spacing:-2.871431pt;}
.ws6{word-spacing:-2.870400pt;}
.wsa{word-spacing:-2.865600pt;}
.wsf7{word-spacing:-2.858631pt;}
.ws100{word-spacing:-2.854364pt;}
.wsed{word-spacing:-2.837298pt;}
.ws30{word-spacing:-2.832267pt;}
.wse2{word-spacing:-2.828765pt;}
.ws20{word-spacing:-2.827200pt;}
.ws114{word-spacing:-2.824498pt;}
.ws1c{word-spacing:-2.820231pt;}
.wsef{word-spacing:-2.815965pt;}
.ws11{word-spacing:-2.811698pt;}
.ws106{word-spacing:-2.803165pt;}
.ws2a{word-spacing:-2.801867pt;}
.wsf{word-spacing:-2.786099pt;}
.ws13{word-spacing:-2.781832pt;}
.ws31{word-spacing:-2.777565pt;}
.ws23{word-spacing:-2.776533pt;}
.ws10f{word-spacing:-2.773299pt;}
.ws27{word-spacing:-2.771467pt;}
.ws101{word-spacing:-2.769032pt;}
.ws15{word-spacing:-2.756232pt;}
.wsdf{word-spacing:-2.751966pt;}
.ws111{word-spacing:-2.743432pt;}
.ws22{word-spacing:-2.741067pt;}
.ws26{word-spacing:-2.730933pt;}
.ws109{word-spacing:-2.730633pt;}
.ws24{word-spacing:-2.720800pt;}
.ws10d{word-spacing:-2.713566pt;}
.ws1d{word-spacing:-2.700766pt;}
.ws2b{word-spacing:-2.700533pt;}
.ws119{word-spacing:-2.696500pt;}
.wse6{word-spacing:-2.687966pt;}
.wsf3{word-spacing:-2.683700pt;}
.wsd{word-spacing:-2.683200pt;}
.wsfb{word-spacing:-2.679433pt;}
.ws2{word-spacing:-2.678400pt;}
.ws58{word-spacing:-2.675200pt;}
.ws9{word-spacing:-2.673600pt;}
.wsfe{word-spacing:-2.670900pt;}
.ws5{word-spacing:-2.668800pt;}
.wsf5{word-spacing:-2.666633pt;}
.wsf4{word-spacing:-2.658100pt;}
.wse7{word-spacing:-2.653833pt;}
.ws7{word-spacing:-2.640000pt;}
.wsf8{word-spacing:-2.632500pt;}
.ws18{word-spacing:-2.628234pt;}
.ws118{word-spacing:-2.623967pt;}
.ws103{word-spacing:-2.615434pt;}
.wse8{word-spacing:-2.611167pt;}
.ws33{word-spacing:-2.594101pt;}
.wse1{word-spacing:-2.589834pt;}
.wse9{word-spacing:-2.585568pt;}
.ws1{word-spacing:-2.582400pt;}
.wsfd{word-spacing:-2.581301pt;}
.wsf6{word-spacing:-2.572768pt;}
.ws112{word-spacing:-2.568501pt;}
.ws3{word-spacing:-2.563200pt;}
.ws107{word-spacing:-2.555701pt;}
.ws116{word-spacing:-2.525835pt;}
.ws16{word-spacing:-2.517302pt;}
.ws1e{word-spacing:-2.500235pt;}
.ws10c{word-spacing:-2.495969pt;}
.wsf9{word-spacing:-2.470369pt;}
.wse3{word-spacing:-2.461836pt;}
.wse0{word-spacing:-2.457569pt;}
.ws102{word-spacing:-2.453303pt;}
.wse4{word-spacing:-2.449036pt;}
.ws14{word-spacing:-2.444769pt;}
.wse{word-spacing:-2.440503pt;}
.ws105{word-spacing:-2.389303pt;}
.ws0{word-spacing:-2.355171pt;}
.ws104{word-spacing:-2.325304pt;}
.ws28{word-spacing:-2.290133pt;}
.ws2d{word-spacing:-2.254667pt;}
.wscd{word-spacing:-0.858667pt;}
.wsce{word-spacing:-0.848000pt;}
.ws3f{word-spacing:-0.844789pt;}
.ws4b{word-spacing:-0.814923pt;}
.ws45{word-spacing:-0.793590pt;}
.ws42{word-spacing:-0.780790pt;}
.ws7a{word-spacing:-0.763724pt;}
.ws9e{word-spacing:-0.762667pt;}
.ws3c{word-spacing:-0.755191pt;}
.ws4d{word-spacing:-0.725324pt;}
.ws40{word-spacing:-0.703991pt;}
.ws52{word-spacing:-0.682658pt;}
.ws44{word-spacing:-0.661325pt;}
.ws50{word-spacing:-0.657058pt;}
.ws38{word-spacing:-0.648525pt;}
.ws48{word-spacing:-0.635725pt;}
.ws7b{word-spacing:-0.601592pt;}
.ws4c{word-spacing:-0.597326pt;}
.ws3a{word-spacing:-0.593059pt;}
.ws51{word-spacing:-0.575993pt;}
.ws53{word-spacing:-0.571726pt;}
.ws43{word-spacing:-0.567460pt;}
.ws80{word-spacing:-0.565333pt;}
.ws46{word-spacing:-0.563193pt;}
.ws35{word-spacing:-0.554660pt;}
.ws71{word-spacing:-0.549333pt;}
.ws39{word-spacing:-0.541860pt;}
.ws54{word-spacing:-0.537593pt;}
.ws4f{word-spacing:-0.511994pt;}
.ws3e{word-spacing:-0.507727pt;}
.ws68{word-spacing:-0.469333pt;}
.ws41{word-spacing:-0.469327pt;}
.ws78{word-spacing:-0.453333pt;}
.wsc7{word-spacing:-0.442667pt;}
.ws47{word-spacing:-0.439461pt;}
.ws4e{word-spacing:-0.435195pt;}
.wsd3{word-spacing:-0.421333pt;}
.ws4a{word-spacing:-0.418128pt;}
.ws55{word-spacing:-0.409595pt;}
.ws62{word-spacing:-0.384000pt;}
.wsa5{word-spacing:-0.378667pt;}
.wsc5{word-spacing:-0.373333pt;}
.ws65{word-spacing:-0.368000pt;}
.ws36{word-spacing:-0.358396pt;}
.wsa4{word-spacing:-0.357333pt;}
.ws37{word-spacing:-0.354129pt;}
.ws74{word-spacing:-0.352000pt;}
.ws5e{word-spacing:-0.341333pt;}
.ws66{word-spacing:-0.336000pt;}
.ws75{word-spacing:-0.325333pt;}
.ws60{word-spacing:-0.320000pt;}
.ws8d{word-spacing:-0.314667pt;}
.ws6a{word-spacing:-0.309333pt;}
.wsa3{word-spacing:-0.304000pt;}
.ws56{word-spacing:-0.302930pt;}
.ws6d{word-spacing:-0.298667pt;}
.ws49{word-spacing:-0.298663pt;}
.wsc0{word-spacing:-0.293333pt;}
.wsa7{word-spacing:-0.288000pt;}
.wsab{word-spacing:-0.282667pt;}
.ws77{word-spacing:-0.277333pt;}
.ws3b{word-spacing:-0.273063pt;}
.ws86{word-spacing:-0.272000pt;}
.ws8a{word-spacing:-0.266667pt;}
.ws59{word-spacing:-0.261333pt;}
.ws84{word-spacing:-0.256000pt;}
.ws5c{word-spacing:-0.250667pt;}
.ws6c{word-spacing:-0.245333pt;}
.ws5f{word-spacing:-0.229333pt;}
.ws9d{word-spacing:-0.224000pt;}
.ws64{word-spacing:-0.208000pt;}
.ws6b{word-spacing:-0.202667pt;}
.ws61{word-spacing:-0.197333pt;}
.ws76{word-spacing:-0.192000pt;}
.ws5d{word-spacing:-0.186667pt;}
.wsd4{word-spacing:-0.181333pt;}
.ws83{word-spacing:-0.176000pt;}
.wsbb{word-spacing:-0.174931pt;}
.ws5b{word-spacing:-0.170667pt;}
.ws7c{word-spacing:-0.165333pt;}
.ws89{word-spacing:-0.160000pt;}
.wsac{word-spacing:-0.154667pt;}
.ws63{word-spacing:-0.149333pt;}
.ws95{word-spacing:-0.149331pt;}
.ws87{word-spacing:-0.133333pt;}
.wsbe{word-spacing:-0.128000pt;}
.ws99{word-spacing:-0.123732pt;}
.wsd1{word-spacing:-0.122667pt;}
.ws97{word-spacing:-0.119465pt;}
.wsc6{word-spacing:-0.117333pt;}
.wsad{word-spacing:-0.106667pt;}
.ws9c{word-spacing:-0.101333pt;}
.ws82{word-spacing:-0.080000pt;}
.wsb2{word-spacing:-0.076799pt;}
.wsbd{word-spacing:-0.074667pt;}
.ws81{word-spacing:-0.064000pt;}
.ws6e{word-spacing:-0.048000pt;}
.wsbf{word-spacing:-0.032000pt;}
.wsaa{word-spacing:-0.026667pt;}
.ws8f{word-spacing:-0.025600pt;}
.ws67{word-spacing:-0.021333pt;}
.wsa0{word-spacing:-0.010667pt;}
.ws57{word-spacing:0.000000pt;}
.ws9b{word-spacing:0.029866pt;}
.ws8e{word-spacing:0.032000pt;}
.ws5a{word-spacing:0.042667pt;}
.wsae{word-spacing:0.048000pt;}
.wsda{word-spacing:0.058667pt;}
.ws69{word-spacing:0.074667pt;}
.ws8b{word-spacing:0.096000pt;}
.ws6f{word-spacing:0.101333pt;}
.wsb4{word-spacing:0.127998pt;}
.ws70{word-spacing:0.128000pt;}
.ws88{word-spacing:0.133333pt;}
.ws8c{word-spacing:0.138667pt;}
.wsc4{word-spacing:0.160000pt;}
.wsc2{word-spacing:0.165333pt;}
.wsa9{word-spacing:0.176000pt;}
.wsc1{word-spacing:0.181333pt;}
.wsb1{word-spacing:0.213333pt;}
.ws7f{word-spacing:0.243198pt;}
.wsc3{word-spacing:0.256000pt;}
.ws73{word-spacing:0.262398pt;}
.wsa2{word-spacing:0.281598pt;}
.wsb3{word-spacing:0.294396pt;}
.wsdb{word-spacing:0.304000pt;}
.wsb0{word-spacing:0.309333pt;}
.ws7e{word-spacing:0.326397pt;}
.wscc{word-spacing:0.426667pt;}
.wsd0{word-spacing:0.570667pt;}
.wsc9{word-spacing:0.608000pt;}
.wsd5{word-spacing:0.629333pt;}
.ws7d{word-spacing:0.645333pt;}
.wscf{word-spacing:0.677333pt;}
.wsd6{word-spacing:0.752000pt;}
.wsd2{word-spacing:0.800000pt;}
.wsd8{word-spacing:0.901333pt;}
.wsd9{word-spacing:0.906667pt;}
.wsd7{word-spacing:0.912000pt;}
.wscb{word-spacing:1.029333pt;}
.ws32{word-spacing:30.745216pt;}
.wsf2{word-spacing:41.637880pt;}
.ws10e{word-spacing:41.642146pt;}
.wsdc{word-spacing:41.697612pt;}
.ws90{word-spacing:497.862577pt;}
.ws98{word-spacing:819.202560pt;}
.ws96{word-spacing:859.607388pt;}
.wsb9{word-spacing:1285.351400pt;}
.wsb8{word-spacing:1294.183289pt;}
.wsb6{word-spacing:1314.151040pt;}
.wsbc{word-spacing:1319.057645pt;}
.wsba{word-spacing:1320.380295pt;}
.wsb7{word-spacing:1366.630384pt;}
.wsb5{word-spacing:1380.795540pt;}
._11{margin-left:-17.386449pt;}
._0{margin-left:-0.989854pt;}
._6{width:1.038667pt;}
._2{width:3.478933pt;}
._3{width:8.238830pt;}
._4{width:10.018008pt;}
._8{width:11.018667pt;}
._5{width:12.423467pt;}
._e{width:14.489419pt;}
._10{width:17.706445pt;}
._9{width:18.692033pt;}
._1{width:22.320000pt;}
._d{width:455.593238pt;}
._c{width:465.867243pt;}
._b{width:470.526385pt;}
._a{width:656.085665pt;}
._f{width:1211.372591pt;}
._7{width:1381.264867pt;}
.fsc{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:33.773333pt;}
.fsb{font-size:35.551467pt;}
.fs4{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:61.332267pt;}
.fsa{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:48.000000pt;}
.yf0{bottom:96.833306pt;}
.yad{bottom:102.653264pt;}
.y2c{bottom:110.665333pt;}
.yda{bottom:110.665467pt;}
.y13b{bottom:110.666350pt;}
.y52{bottom:110.666806pt;}
.yef{bottom:116.865056pt;}
.y109{bottom:117.242667pt;}
.y17b{bottom:121.628958pt;}
.y13a{bottom:123.365925pt;}
.yac{bottom:125.330313pt;}
.y51{bottom:125.331156pt;}
.yd9{bottom:125.782667pt;}
.yd8{bottom:127.974800pt;}
.y7a{bottom:127.976000pt;}
.y2b{bottom:129.336000pt;}
.yee{bottom:133.495248pt;}
.y17a{bottom:134.328533pt;}
.y108{bottom:134.553333pt;}
.yab{bottom:138.028821pt;}
.y50{bottom:139.995506pt;}
.y139{bottom:140.675575pt;}
.y79{bottom:145.361333pt;}
.y177{bottom:146.952375pt;}
.y178{bottom:147.178506pt;}
.y179{bottom:147.329970pt;}
.y2a{bottom:148.006667pt;}
.yed{bottom:150.200106pt;}
.yd7{bottom:150.652000pt;}
.yaa{bottom:150.652664pt;}
.y107{bottom:151.938667pt;}
.y138{bottom:153.299417pt;}
.y4e{bottom:154.660923pt;}
.y4f{bottom:155.038518pt;}
.y78{bottom:162.672000pt;}
.ya9{bottom:163.352238pt;}
.y176{bottom:164.262025pt;}
.y29{bottom:164.560000pt;}
.y137{bottom:165.997925pt;}
.y28{bottom:166.677333pt;}
.yec{bottom:166.830298pt;}
.y106{bottom:169.248000pt;}
.y4d{bottom:169.325273pt;}
.y175{bottom:176.961600pt;}
.y77{bottom:179.981333pt;}
.ya8{bottom:179.981364pt;}
.y136{bottom:183.308642pt;}
.yeb{bottom:183.535155pt;}
.y4c{bottom:183.989623pt;}
.y27{bottom:185.348000pt;}
.y105{bottom:186.558667pt;}
.yd6{bottom:189.508000pt;}
.y174{bottom:189.660108pt;}
.y135{bottom:196.008216pt;}
.ya7{bottom:196.687288pt;}
.y76{bottom:197.368000pt;}
.yea{bottom:200.165348pt;}
.y104{bottom:203.944000pt;}
.y26{bottom:204.018667pt;}
.y4b{bottom:206.666673pt;}
.yd5{bottom:206.818667pt;}
.y173{bottom:206.970825pt;}
.ya6{bottom:213.316414pt;}
.y134{bottom:213.317867pt;}
.y75{bottom:214.677333pt;}
.ye9{bottom:216.871272pt;}
.y103{bottom:221.254667pt;}
.y4a{bottom:221.331023pt;}
.yd4{bottom:224.204000pt;}
.y171{bottom:224.280475pt;}
.y172{bottom:224.659137pt;}
.y133{bottom:226.017441pt;}
.y25{bottom:226.696000pt;}
.y74{bottom:231.988000pt;}
.ya5{bottom:232.667638pt;}
.ye8{bottom:233.500398pt;}
.y49{bottom:235.995373pt;}
.y16f{bottom:236.980050pt;}
.y170{bottom:237.281913pt;}
.y102{bottom:238.565333pt;}
.yd3{bottom:241.513333pt;}
.y132{bottom:243.327092pt;}
.ya4{bottom:245.367213pt;}
.y73{bottom:249.297333pt;}
.ye7{bottom:250.206322pt;}
.y16e{bottom:254.289700pt;}
.y101{bottom:255.874667pt;}
.y131{bottom:256.026666pt;}
.y48{bottom:258.672422pt;}
.yd2{bottom:258.824000pt;}
.ye6{bottom:266.835448pt;}
.y16d{bottom:266.989275pt;}
.ya3{bottom:267.741333pt;}
.y72{bottom:271.975400pt;}
.y100{bottom:273.260000pt;}
.y130{bottom:273.336317pt;}
.y47{bottom:273.336773pt;}
.yd1{bottom:276.209333pt;}
.y24{bottom:279.081333pt;}
.y16c{bottom:279.613117pt;}
.y12f{bottom:286.035891pt;}
.ye5{bottom:286.640000pt;}
.y46{bottom:288.001123pt;}
.yff{bottom:290.570667pt;}
.y16b{bottom:292.311625pt;}
.yd0{bottom:293.520000pt;}
.y71{bottom:296.012000pt;}
.y23{bottom:297.752000pt;}
.y12e{bottom:298.658667pt;}
.ya2{bottom:298.813333pt;}
.y45{bottom:302.666539pt;}
.yfe{bottom:307.881333pt;}
.y16a{bottom:309.622342pt;}
.ycf{bottom:310.829333pt;}
.ye2{bottom:315.438667pt;}
.ya1{bottom:316.122667pt;}
.y22{bottom:316.422667pt;}
.y12d{bottom:316.649333pt;}
.y44{bottom:317.330889pt;}
.ye1{bottom:317.632000pt;}
.y169{bottom:322.320850pt;}
.yfd{bottom:325.266667pt;}
.yce{bottom:328.216000pt;}
.y43{bottom:331.995239pt;}
.ya0{bottom:333.509333pt;}
.y168{bottom:334.944692pt;}
.y21{bottom:335.093333pt;}
.ye0{bottom:340.308000pt;}
.yfb{bottom:340.384000pt;}
.yfc{bottom:342.576000pt;}
.yfa{bottom:342.577333pt;}
.y70{bottom:344.621333pt;}
.ycd{bottom:345.525333pt;}
.y9f{bottom:350.818667pt;}
.y167{bottom:352.331141pt;}
.y20{bottom:353.764000pt;}
.y42{bottom:354.672289pt;}
.yf9{bottom:359.888000pt;}
.y6f{bottom:361.930667pt;}
.ycc{bottom:362.836000pt;}
.y12b{bottom:364.198667pt;}
.y12c{bottom:364.880000pt;}
.y166{bottom:364.953917pt;}
.y9e{bottom:368.129333pt;}
.y1f{bottom:372.434667pt;}
.yf8{bottom:377.273333pt;}
.ydf{bottom:377.348000pt;}
.y41{bottom:377.349339pt;}
.y6e{bottom:379.241333pt;}
.ycb{bottom:380.146667pt;}
.y12a{bottom:381.509333pt;}
.y165{bottom:382.264634pt;}
.y9d{bottom:385.514667pt;}
.yf7{bottom:394.584000pt;}
.yde{bottom:394.733333pt;}
.y164{bottom:394.963142pt;}
.y1e{bottom:395.112000pt;}
.y6d{bottom:396.626667pt;}
.yca{bottom:397.532000pt;}
.y40{bottom:400.026389pt;}
.y9c{bottom:402.825333pt;}
.y128{bottom:405.546667pt;}
.y129{bottom:406.226667pt;}
.yf6{bottom:411.893333pt;}
.y163{bottom:412.273859pt;}
.y6c{bottom:413.937333pt;}
.yc9{bottom:414.841333pt;}
.ydd{bottom:417.410667pt;}
.y9b{bottom:420.134667pt;}
.y3f{bottom:422.703439pt;}
.y162{bottom:424.972367pt;}
.yf5{bottom:429.204000pt;}
.y127{bottom:429.509333pt;}
.y6b{bottom:431.246667pt;}
.yc8{bottom:432.152000pt;}
.y3d{bottom:437.367789pt;}
.y9a{bottom:437.521333pt;}
.y161{bottom:437.596209pt;}
.y3e{bottom:437.670718pt;}
.yf4{bottom:446.589333pt;}
.y1d{bottom:447.496000pt;}
.y6a{bottom:448.633333pt;}
.yc7{bottom:449.537333pt;}
.y160{bottom:450.295783pt;}
.y126{bottom:453.546667pt;}
.ydc{bottom:454.450667pt;}
.y99{bottom:454.830667pt;}
.y3c{bottom:459.969106pt;}
.yf3{bottom:463.900000pt;}
.y69{bottom:465.942667pt;}
.y1c{bottom:466.166667pt;}
.yc6{bottom:466.848000pt;}
.y15f{bottom:467.605434pt;}
.y196{bottom:470.931259pt;}
.ydb{bottom:471.760000pt;}
.y98{bottom:472.141333pt;}
.y3b{bottom:474.633456pt;}
.y125{bottom:477.508000pt;}
.y15e{bottom:480.305008pt;}
.yf2{bottom:481.209333pt;}
.y68{bottom:483.253333pt;}
.y195{bottom:483.630833pt;}
.yc5{bottom:484.157333pt;}
.y1b{bottom:484.837333pt;}
.y3a{bottom:489.373539pt;}
.y97{bottom:489.452000pt;}
.y15d{bottom:492.928850pt;}
.y123{bottom:494.818667pt;}
.y124{bottom:495.574667pt;}
.y194{bottom:496.330408pt;}
.ye4{bottom:500.183459pt;}
.y67{bottom:500.638667pt;}
.yf1{bottom:503.886667pt;}
.y39{bottom:504.037889pt;}
.yc4{bottom:506.835400pt;}
.y96{bottom:506.837333pt;}
.y1a{bottom:507.514667pt;}
.y15c{bottom:510.314233pt;}
.y193{bottom:513.640058pt;}
.y66{bottom:517.949333pt;}
.y37{bottom:518.703305pt;}
.y122{bottom:518.856000pt;}
.y38{bottom:519.005168pt;}
.ye3{bottom:520.894667pt;}
.y15b{bottom:522.938075pt;}
.y95{bottom:524.146667pt;}
.y192{bottom:526.263900pt;}
.yc3{bottom:530.872000pt;}
.y35{bottom:533.367655pt;}
.y36{bottom:533.669518pt;}
.y10c{bottom:534.123459pt;}
.y65{bottom:535.258667pt;}
.y15a{bottom:535.636583pt;}
.y94{bottom:541.457333pt;}
.y121{bottom:542.818667pt;}
.y191{bottom:543.649283pt;}
.y34{bottom:548.032005pt;}
.y159{bottom:548.260425pt;}
.y64{bottom:552.645333pt;}
.y10a{bottom:554.834667pt;}
.y190{bottom:556.273125pt;}
.y93{bottom:558.842667pt;}
.y10b{bottom:559.521333pt;}
.y11f{bottom:560.204000pt;}
.y120{bottom:560.884000pt;}
.y158{bottom:565.645808pt;}
.y18f{bottom:568.972700pt;}
.yc2{bottom:569.726667pt;}
.y33{bottom:569.801333pt;}
.y63{bottom:569.954667pt;}
.y19{bottom:570.557333pt;}
.y92{bottom:576.153333pt;}
.y157{bottom:578.269650pt;}
.y18e{bottom:581.595475pt;}
.y11e{bottom:584.166667pt;}
.yc1{bottom:587.037333pt;}
.y62{bottom:587.265333pt;}
.y155{bottom:590.969225pt;}
.y156{bottom:593.312662pt;}
.y91{bottom:593.462667pt;}
.y18d{bottom:598.981925pt;}
.y11c{bottom:601.476000pt;}
.y11d{bottom:602.232000pt;}
.yc0{bottom:604.348000pt;}
.y61{bottom:604.574667pt;}
.y154{bottom:608.278875pt;}
.y90{bottom:610.849333pt;}
.y18a{bottom:611.604700pt;}
.y18b{bottom:611.831897pt;}
.y18c{bottom:611.983362pt;}
.y153{bottom:620.978450pt;}
.ybf{bottom:621.657333pt;}
.y60{bottom:621.961333pt;}
.y18{bottom:624.152434pt;}
.y11a{bottom:625.513333pt;}
.y11b{bottom:626.194667pt;}
.y8f{bottom:628.158667pt;}
.y189{bottom:628.991150pt;}
.y152{bottom:633.602292pt;}
.ybe{bottom:639.044000pt;}
.y5f{bottom:639.270667pt;}
.y188{bottom:641.613925pt;}
.y118{bottom:642.824000pt;}
.y119{bottom:643.504000pt;}
.y8e{bottom:645.469333pt;}
.y32{bottom:647.132000pt;}
.y17{bottom:650.835834pt;}
.y151{bottom:650.987675pt;}
.ybd{bottom:656.353333pt;}
.y5e{bottom:656.581333pt;}
.y187{bottom:658.924642pt;}
.y31{bottom:662.476000pt;}
.y8d{bottom:662.854667pt;}
.y150{bottom:663.611517pt;}
.y16{bottom:664.215933pt;}
.y117{bottom:666.861333pt;}
.y186{bottom:671.624217pt;}
.ybc{bottom:673.664000pt;}
.y5d{bottom:673.966667pt;}
.y14f{bottom:676.310025pt;}
.y15{bottom:677.519233pt;}
.y30{bottom:677.745333pt;}
.y8c{bottom:680.165333pt;}
.y185{bottom:688.933867pt;}
.y13{bottom:690.823600pt;}
.y116{bottom:690.824000pt;}
.ybb{bottom:691.049333pt;}
.y14{bottom:691.201196pt;}
.y5c{bottom:691.277333pt;}
.y2f{bottom:693.090667pt;}
.y14e{bottom:693.620742pt;}
.y8b{bottom:697.474667pt;}
.y184{bottom:701.633442pt;}
.y11{bottom:704.202633pt;}
.y12{bottom:704.504496pt;}
.y14d{bottom:706.319250pt;}
.y114{bottom:708.209333pt;}
.yba{bottom:708.360000pt;}
.y2e{bottom:708.434667pt;}
.y5b{bottom:708.586667pt;}
.y115{bottom:708.889333pt;}
.y183{bottom:714.331950pt;}
.y8a{bottom:714.785333pt;}
.y10{bottom:717.507000pt;}
.y14c{bottom:718.943092pt;}
.yb9{bottom:725.669333pt;}
.y5a{bottom:725.973333pt;}
.yf{bottom:730.886033pt;}
.y182{bottom:731.642666pt;}
.y89{bottom:732.170667pt;}
.y113{bottom:732.172000pt;}
.y14b{bottom:736.328475pt;}
.yb8{bottom:743.054667pt;}
.y59{bottom:743.282667pt;}
.ye{bottom:744.189333pt;}
.y181{bottom:744.265442pt;}
.y14a{bottom:748.952317pt;}
.y88{bottom:749.481333pt;}
.y112{bottom:756.209333pt;}
.y58{bottom:760.593333pt;}
.y149{bottom:761.651891pt;}
.yb7{bottom:765.656000pt;}
.y87{bottom:766.790667pt;}
.yd{bottom:768.150667pt;}
.yb{bottom:768.152000pt;}
.yc{bottom:773.518667pt;}
.y111{bottom:774.198667pt;}
.y180{bottom:774.274667pt;}
.y57{bottom:777.902667pt;}
.y148{bottom:778.961542pt;}
.y9{bottom:782.816000pt;}
.y7{bottom:782.816400pt;}
.ya{bottom:783.192800pt;}
.y8{bottom:788.182667pt;}
.y86{bottom:789.468000pt;}
.y147{bottom:791.661116pt;}
.y110{bottom:796.194667pt;}
.y5{bottom:797.556000pt;}
.y56{bottom:800.580000pt;}
.y6{bottom:802.846667pt;}
.y146{bottom:804.284958pt;}
.yb6{bottom:804.510667pt;}
.yb4{bottom:819.628000pt;}
.y145{bottom:821.594609pt;}
.yb5{bottom:821.896000pt;}
.yb3{bottom:821.897333pt;}
.y85{bottom:829.002667pt;}
.y4{bottom:830.817867pt;}
.y144{bottom:834.294183pt;}
.yb2{bottom:839.208000pt;}
.y10f{bottom:845.028000pt;}
.y84{bottom:846.312000pt;}
.y143{bottom:846.992691pt;}
.yb1{bottom:856.517333pt;}
.y17f{bottom:859.616533pt;}
.y3{bottom:860.827467pt;}
.y10e{bottom:862.337333pt;}
.y83{bottom:863.697333pt;}
.y142{bottom:864.303408pt;}
.yb0{bottom:873.902667pt;}
.y141{bottom:876.926184pt;}
.y10d{bottom:885.014667pt;}
.y82{bottom:886.374667pt;}
.y17e{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.yaf{bottom:891.213333pt;}
.y7f{bottom:892.946238pt;}
.y140{bottom:894.312633pt;}
.y55{bottom:900.510667pt;}
.y17d{bottom:902.325333pt;}
.y13f{bottom:906.936475pt;}
.y7e{bottom:907.611655pt;}
.yae{bottom:908.524000pt;}
.y54{bottom:919.181333pt;}
.y13e{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y81{bottom:925.833333pt;}
.y7d{bottom:930.288705pt;}
.y13d{bottom:932.258825pt;}
.y53{bottom:941.858667pt;}
.y80{bottom:943.218667pt;}
.y7c{bottom:944.953055pt;}
.y13c{bottom:944.957333pt;}
.y17c{bottom:945.259196pt;}
.y7b{bottom:994.393333pt;}
.h16{height:21.330000pt;}
.h4{height:24.828689pt;}
.ha{height:26.174333pt;}
.h14{height:26.663600pt;}
.h12{height:30.292955pt;}
.h13{height:30.378287pt;}
.hc{height:31.603772pt;}
.h11{height:31.999600pt;}
.h1{height:33.066253pt;}
.h6{height:33.108919pt;}
.h5{height:34.148438pt;}
.he{height:34.772899pt;}
.hd{height:36.052883pt;}
.h3{height:37.248000pt;}
.h9{height:39.266667pt;}
.hb{height:40.000000pt;}
.h15{height:41.333333pt;}
.h8{height:47.593839pt;}
.h10{height:47.999600pt;}
.hf{height:49.663586pt;}
.h7{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:48.000000pt;}
.x19{left:63.496000pt;}
.x1b{left:65.914103pt;}
.x1d{left:83.149088pt;}
.x1c{left:126.235482pt;}
.x1e{left:150.877308pt;}
.x1a{left:214.373047pt;}
.x2c{left:254.060000pt;}
.x1{left:266.682667pt;}
.x3c{left:273.184000pt;}
.x1f{left:282.632000pt;}
.x3d{left:295.330923pt;}
.x44{left:316.119657pt;}
.x41{left:317.933307pt;}
.x30{left:319.068000pt;}
.x21{left:324.962471pt;}
.x8{left:358.904000pt;}
.x12{left:363.061333pt;}
.x45{left:366.009167pt;}
.x13{left:367.974667pt;}
.x15{left:370.392304pt;}
.x9{left:371.301333pt;}
.x34{left:379.160000pt;}
.x2{left:397.984000pt;}
.xa{left:406.299333pt;}
.x46{left:415.671479pt;}
.x3{left:417.713333pt;}
.x3b{left:435.172000pt;}
.x3e{left:440.615507pt;}
.x29{left:455.433333pt;}
.xb{left:460.346133pt;}
.x42{left:464.350677pt;}
.x2b{left:468.661333pt;}
.x2a{left:470.097333pt;}
.x16{left:472.363296pt;}
.x2d{left:484.382345pt;}
.x43{left:489.749826pt;}
.x25{left:507.285526pt;}
.x26{left:512.349996pt;}
.x22{left:516.659275pt;}
.x2f{left:522.180000pt;}
.xc{left:523.767333pt;}
.x4{left:539.262667pt;}
.x5{left:544.176000pt;}
.x39{left:549.766667pt;}
.x17{left:552.945333pt;}
.xd{left:556.194667pt;}
.xe{left:561.108000pt;}
.x3f{left:579.324173pt;}
.x20{left:593.084000pt;}
.x3a{left:598.522667pt;}
.x47{left:604.873381pt;}
.x38{left:610.390667pt;}
.x2e{left:611.978617pt;}
.x14{left:630.044525pt;}
.x35{left:633.596000pt;}
.x40{left:640.400743pt;}
.xf{left:642.442800pt;}
.x27{left:658.998667pt;}
.x23{left:663.606772pt;}
.x24{left:665.874477pt;}
.x28{left:668.522667pt;}
.x32{left:669.954667pt;}
.x6{left:671.924000pt;}
.x10{left:674.192000pt;}
.x11{left:679.105333pt;}
.x36{left:682.352000pt;}
.x7{left:684.245333pt;}
.x31{left:722.414667pt;}
.x37{left:743.277333pt;}
.x33{left:757.714667pt;}
}




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