
    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_518cb4972599d2f65ad1e4fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.771484;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_806c3ae14d252f4f889ef25e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_058f21224d07493b51dc84ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_9f3c55a4f0e9d67266fd3ab7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974609;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_23472dd6b6477edbd62712d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.928223;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_1e2e7a5e23b8a459691e0004.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001953;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_0392f109cfae5cccc1268296.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916016;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_766d85eac47806999bf7552f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_0501b486cd80385fcb2b1b1d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895508;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_53f5fdbe15a0104aee20f739.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_de0e4812b69e344d0f2c80ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.934082;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_2ab72cf7c23fbb7691526fef.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_1c5690449ff7a41619b07815.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;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_c880d9c27cb063e86d47a30b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.897949;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_67106e0ff037a19f0f744395.woff2')format("woff");}.fff{font-family:fff;line-height:0.871094;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.240169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240169,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);}
.v6{vertical-align:-21.750000px;}
.v3{vertical-align:-19.799400px;}
.v2{vertical-align:-5.992560px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:17.820000px;}
.v4{vertical-align:19.798200px;}
.v5{vertical-align:21.991800px;}
.v1{vertical-align:27.720000px;}
.v8{vertical-align:32.994000px;}
.va{vertical-align:36.018000px;}
.vc{vertical-align:37.125000px;}
.v9{vertical-align:50.823000px;}
.vb{vertical-align:51.828600px;}
.vd{vertical-align:81.567000px;}
.ls1c{letter-spacing:-4.806000px;}
.ls1b{letter-spacing:-1.458000px;}
.ls5{letter-spacing:-1.140000px;}
.ls29{letter-spacing:-0.924000px;}
.ls22{letter-spacing:-0.684000px;}
.ls9{letter-spacing:-0.660000px;}
.ls1a{letter-spacing:-0.648000px;}
.ls2b{letter-spacing:-0.594000px;}
.lse{letter-spacing:-0.535920px;}
.ls23{letter-spacing:-0.513000px;}
.lsd{letter-spacing:-0.421080px;}
.ls24{letter-spacing:-0.342000px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.001800px;}
.ls1{letter-spacing:0.002640px;}
.ls13{letter-spacing:0.022800px;}
.ls26{letter-spacing:0.034200px;}
.ls25{letter-spacing:0.034800px;}
.ls12{letter-spacing:0.061800px;}
.ls27{letter-spacing:0.094800px;}
.lsb{letter-spacing:0.132000px;}
.ls1d{letter-spacing:0.376440px;}
.ls11{letter-spacing:0.660000px;}
.ls1e{letter-spacing:0.759240px;}
.lsf{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.518000px;}
.ls14{letter-spacing:1.848000px;}
.ls3{letter-spacing:2.160000px;}
.ls7{letter-spacing:2.574000px;}
.ls2{letter-spacing:3.538800px;}
.lsc{letter-spacing:4.026000px;}
.ls8{letter-spacing:8.514000px;}
.ls20{letter-spacing:173.280000px;}
.ls17{letter-spacing:177.120000px;}
.ls19{letter-spacing:257.148000px;}
.ls21{letter-spacing:265.221000px;}
.ls2c{letter-spacing:1449.840000px;}
.lsa{letter-spacing:1450.608000px;}
.ls0{letter-spacing:1452.432000px;}
.ls6{letter-spacing:1453.680000px;}
.ls16{letter-spacing:1454.352000px;}
.ls1f{letter-spacing:1455.456000px;}
.ls2a{letter-spacing:1455.696000px;}
.ls28{letter-spacing:1456.704000px;}
.ls10{letter-spacing:1460.208000px;}
.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;}
}
.ws27{word-spacing:-66.000000px;}
.ws14{word-spacing:-17.490000px;}
.ws54{word-spacing:-16.236000px;}
.ws53{word-spacing:-15.576000px;}
.ws23{word-spacing:-14.916000px;}
.ws83{word-spacing:-14.322000px;}
.ws80{word-spacing:-13.992000px;}
.ws2{word-spacing:-13.560000px;}
.ws5d{word-spacing:-12.882000px;}
.ws69{word-spacing:-12.540000px;}
.wsd{word-spacing:-12.420000px;}
.ws64{word-spacing:-12.369000px;}
.ws45{word-spacing:-12.204000px;}
.ws0{word-spacing:-11.741520px;}
.wsc{word-spacing:-11.568000px;}
.ws50{word-spacing:-10.848000px;}
.ws4c{word-spacing:-10.746000px;}
.ws25{word-spacing:-8.651280px;}
.ws1{word-spacing:-8.386800px;}
.ws24{word-spacing:-8.230200px;}
.ws26{word-spacing:-8.115360px;}
.ws5e{word-spacing:-7.471560px;}
.ws4d{word-spacing:-7.398000px;}
.ws46{word-spacing:-7.078320px;}
.ws7e{word-spacing:-4.488000px;}
.ws12{word-spacing:-3.780000px;}
.ws2c{word-spacing:-3.168000px;}
.ws40{word-spacing:-2.904000px;}
.ws42{word-spacing:-2.772000px;}
.ws11{word-spacing:-2.700000px;}
.ws81{word-spacing:-2.640000px;}
.ws28{word-spacing:-2.574000px;}
.ws1c{word-spacing:-2.376000px;}
.ws8{word-spacing:-2.256000px;}
.ws87{word-spacing:-1.650000px;}
.ws7b{word-spacing:-1.584000px;}
.ws70{word-spacing:-1.386000px;}
.ws2f{word-spacing:-1.320000px;}
.ws6b{word-spacing:-1.254000px;}
.ws3b{word-spacing:-1.188000px;}
.ws3e{word-spacing:-0.858000px;}
.wse{word-spacing:-0.660000px;}
.ws59{word-spacing:-0.396000px;}
.ws36{word-spacing:-0.198000px;}
.ws3{word-spacing:0.000000px;}
.ws84{word-spacing:0.264000px;}
.ws2d{word-spacing:0.528000px;}
.ws21{word-spacing:0.660000px;}
.ws39{word-spacing:0.726000px;}
.ws19{word-spacing:0.990000px;}
.ws32{word-spacing:1.254000px;}
.wsb{word-spacing:1.260000px;}
.ws56{word-spacing:1.518000px;}
.ws43{word-spacing:1.650000px;}
.ws79{word-spacing:1.914000px;}
.ws52{word-spacing:2.508000px;}
.ws77{word-spacing:2.706000px;}
.ws55{word-spacing:2.772000px;}
.ws15{word-spacing:2.838000px;}
.ws16{word-spacing:2.904000px;}
.ws41{word-spacing:3.102000px;}
.ws6e{word-spacing:3.168000px;}
.ws72{word-spacing:3.432000px;}
.wsa{word-spacing:3.600000px;}
.ws35{word-spacing:3.696000px;}
.ws6d{word-spacing:3.828000px;}
.ws73{word-spacing:3.960000px;}
.ws2b{word-spacing:4.026000px;}
.ws3a{word-spacing:4.158000px;}
.ws22{word-spacing:4.290000px;}
.ws1b{word-spacing:4.686000px;}
.ws18{word-spacing:4.884000px;}
.ws7f{word-spacing:4.950000px;}
.ws3c{word-spacing:5.082000px;}
.ws13{word-spacing:5.280000px;}
.ws86{word-spacing:5.412000px;}
.ws1a{word-spacing:5.478000px;}
.ws88{word-spacing:5.676000px;}
.ws7c{word-spacing:5.742000px;}
.ws85{word-spacing:5.940000px;}
.ws9{word-spacing:6.120000px;}
.ws76{word-spacing:6.204000px;}
.ws2e{word-spacing:6.270000px;}
.ws3f{word-spacing:6.402000px;}
.ws89{word-spacing:6.666000px;}
.ws7a{word-spacing:6.732000px;}
.ws20{word-spacing:6.864000px;}
.ws6a{word-spacing:6.930000px;}
.ws2a{word-spacing:7.062000px;}
.wsf{word-spacing:7.080000px;}
.ws74{word-spacing:7.128000px;}
.ws6{word-spacing:7.152000px;}
.ws58{word-spacing:7.656000px;}
.ws3d{word-spacing:7.854000px;}
.ws7d{word-spacing:7.920000px;}
.ws6f{word-spacing:7.986000px;}
.ws38{word-spacing:8.052000px;}
.ws10{word-spacing:8.460000px;}
.ws1e{word-spacing:8.580000px;}
.ws6c{word-spacing:8.778000px;}
.ws33{word-spacing:8.910000px;}
.ws5{word-spacing:9.648000px;}
.ws71{word-spacing:9.702000px;}
.ws31{word-spacing:10.032000px;}
.ws4{word-spacing:10.320000px;}
.ws57{word-spacing:10.890000px;}
.ws78{word-spacing:11.088000px;}
.ws1f{word-spacing:11.418000px;}
.ws5a{word-spacing:11.484000px;}
.ws1d{word-spacing:12.144000px;}
.ws75{word-spacing:13.134000px;}
.ws5b{word-spacing:13.662000px;}
.ws30{word-spacing:14.190000px;}
.ws82{word-spacing:17.094000px;}
.ws34{word-spacing:18.810000px;}
.ws17{word-spacing:20.922000px;}
.ws51{word-spacing:20.988000px;}
.ws37{word-spacing:21.120000px;}
.ws29{word-spacing:21.384000px;}
.ws7{word-spacing:27.024000px;}
.ws4b{word-spacing:46.764000px;}
.ws61{word-spacing:50.455800px;}
.ws49{word-spacing:55.944000px;}
.ws62{word-spacing:56.601000px;}
.ws67{word-spacing:57.513000px;}
.ws4e{word-spacing:62.046000px;}
.ws4a{word-spacing:63.450000px;}
.ws63{word-spacing:71.991000px;}
.ws65{word-spacing:98.667000px;}
.ws4f{word-spacing:106.434000px;}
.ws68{word-spacing:118.617000px;}
.ws47{word-spacing:131.706000px;}
.ws5f{word-spacing:137.028000px;}
.ws48{word-spacing:159.300000px;}
.ws60{word-spacing:162.963000px;}
.ws5c{word-spacing:238.944000px;}
.ws66{word-spacing:258.552000px;}
.ws44{word-spacing:270.756000px;}
._12{margin-left:-7.980000px;}
._10{margin-left:-6.540000px;}
._0{margin-left:-5.520000px;}
._2{margin-left:-4.080000px;}
._5{margin-left:-2.760000px;}
._1{margin-left:-1.380000px;}
._3{width:1.440000px;}
._4{width:2.520000px;}
._f{width:3.960000px;}
._11{width:4.980000px;}
._8{width:6.840000px;}
._7{width:7.860000px;}
._c{width:9.120000px;}
._6{width:10.260000px;}
._9{width:11.640000px;}
._13{width:13.200000px;}
._19{width:16.098000px;}
._d{width:17.280000px;}
._e{width:18.480000px;}
._15{width:19.668000px;}
._17{width:21.318000px;}
._18{width:22.362000px;}
._35{width:23.382000px;}
._14{width:24.882000px;}
._3a{width:25.926000px;}
._38{width:28.050000px;}
._33{width:30.156000px;}
._32{width:31.818000px;}
._39{width:33.126000px;}
._2f{width:34.338000px;}
._2e{width:35.616000px;}
._37{width:38.232000px;}
._36{width:39.780000px;}
._34{width:49.302000px;}
._28{width:59.793000px;}
._25{width:81.972000px;}
._1e{width:88.074000px;}
._22{width:90.774000px;}
._2a{width:94.962000px;}
._27{width:104.208000px;}
._1c{width:105.762000px;}
._20{width:118.152000px;}
._26{width:124.521000px;}
._2c{width:130.599000px;}
._2b{width:132.126000px;}
._21{width:133.380000px;}
._1f{width:136.728000px;}
._29{width:138.624000px;}
._23{width:142.452000px;}
._1b{width:149.610000px;}
._1d{width:151.038000px;}
._2d{width:153.159000px;}
._24{width:156.468000px;}
._31{width:1458.864000px;}
._16{width:1461.168000px;}
._b{width:1462.608000px;}
._30{width:1464.240000px;}
._1a{width:1466.016000px;}
._a{width:2193.130800px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.320000px;}
.fsd{font-size:33.060000px;}
.fs6{font-size:34.800000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.280000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:48.720000px;}
.fsa{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:132.000000px;}
.y25{bottom:-25.015800px;}
.y0{bottom:0.000000px;}
.y27{bottom:6.501900px;}
.y1{bottom:68.699400px;}
.yd6{bottom:129.402900px;}
.y227{bottom:129.633900px;}
.y1a3{bottom:129.646200px;}
.y73{bottom:129.914400px;}
.y24e{bottom:130.838400px;}
.y9b{bottom:131.465400px;}
.y1e7{bottom:132.174900px;}
.y1c8{bottom:132.554400px;}
.yfb{bottom:135.251400px;}
.y24{bottom:138.795900px;}
.y191{bottom:148.542150px;}
.yd5{bottom:148.905900px;}
.y1a2{bottom:149.149200px;}
.y72{bottom:149.417400px;}
.y226{bottom:149.433900px;}
.y24d{bottom:150.638400px;}
.y9a{bottom:150.737400px;}
.y1e6{bottom:151.677900px;}
.y1c7{bottom:152.057400px;}
.y143{bottom:152.343900px;}
.yb8{bottom:152.987850px;}
.yfa{bottom:155.133900px;}
.y23{bottom:156.795900px;}
.y201{bottom:167.930400px;}
.y190{bottom:168.045150px;}
.yd4{bottom:168.408900px;}
.y1a1{bottom:168.652200px;}
.y71{bottom:168.920400px;}
.y225{bottom:169.233900px;}
.y99{bottom:170.009400px;}
.y24c{bottom:170.438400px;}
.y1e5{bottom:171.180900px;}
.y1c6{bottom:171.560400px;}
.y142{bottom:171.846900px;}
.yb7{bottom:172.490850px;}
.y22{bottom:174.795900px;}
.yf9{bottom:175.016400px;}
.y118{bottom:182.218800px;}
.y4c{bottom:184.538400px;}
.y200{bottom:187.433400px;}
.y18f{bottom:187.548150px;}
.yd3{bottom:187.911900px;}
.y1a0{bottom:188.155200px;}
.y70{bottom:188.423400px;}
.y224{bottom:189.033900px;}
.y98{bottom:189.281400px;}
.y24b{bottom:190.238400px;}
.y1e4{bottom:190.683900px;}
.y1c5{bottom:191.063400px;}
.y141{bottom:191.349900px;}
.yb6{bottom:191.993850px;}
.y21{bottom:192.795900px;}
.yf8{bottom:194.898900px;}
.y117{bottom:201.721800px;}
.y162{bottom:201.758550px;}
.y4b{bottom:202.538400px;}
.y1ff{bottom:206.936400px;}
.y18e{bottom:207.051150px;}
.yd2{bottom:207.414900px;}
.y19f{bottom:207.658200px;}
.y6f{bottom:207.926400px;}
.y97{bottom:208.553400px;}
.y223{bottom:208.833900px;}
.y24a{bottom:210.038400px;}
.y1c4{bottom:210.566400px;}
.y20{bottom:210.795900px;}
.yb5{bottom:211.496850px;}
.yf7{bottom:214.781400px;}
.y116{bottom:221.224800px;}
.y161{bottom:221.261550px;}
.y1fe{bottom:226.439400px;}
.y18d{bottom:226.554150px;}
.y4a{bottom:226.913400px;}
.y19e{bottom:227.161200px;}
.y6e{bottom:227.429400px;}
.y96{bottom:227.825400px;}
.y222{bottom:228.633900px;}
.y1f{bottom:228.795900px;}
.y249{bottom:229.838400px;}
.y1c3{bottom:230.069400px;}
.y1e3{bottom:230.448900px;}
.yb4{bottom:230.999850px;}
.yf6{bottom:234.663900px;}
.y140{bottom:236.361600px;}
.yd1{bottom:239.672400px;}
.y115{bottom:240.727800px;}
.y160{bottom:240.764550px;}
.y49{bottom:244.913400px;}
.y1fd{bottom:245.942400px;}
.y18c{bottom:246.057150px;}
.y1e{bottom:246.795900px;}
.y6d{bottom:246.932400px;}
.y95{bottom:247.097400px;}
.y221{bottom:248.433900px;}
.y1c2{bottom:249.572400px;}
.y248{bottom:249.638400px;}
.y1e2{bottom:250.331400px;}
.yb3{bottom:250.502850px;}
.y13f{bottom:251.361600px;}
.yf5{bottom:254.546400px;}
.y114{bottom:260.230800px;}
.y15f{bottom:260.267550px;}
.y48{bottom:262.913400px;}
.y1d{bottom:264.795900px;}
.y1fc{bottom:265.445400px;}
.y18b{bottom:265.560150px;}
.y94{bottom:266.369400px;}
.y6c{bottom:266.814900px;}
.y19d{bottom:267.668700px;}
.y220{bottom:268.233900px;}
.y1c1{bottom:269.075400px;}
.y247{bottom:269.438400px;}
.yb2{bottom:270.005850px;}
.y1e1{bottom:270.213900px;}
.yf4{bottom:274.428900px;}
.y113{bottom:279.733800px;}
.y15e{bottom:279.761550px;}
.y13e{bottom:280.008300px;}
.y47{bottom:280.913400px;}
.y1c{bottom:282.795900px;}
.y18a{bottom:285.063150px;}
.y93{bottom:285.641400px;}
.y6b{bottom:286.697400px;}
.y21f{bottom:288.033900px;}
.y1c0{bottom:288.578400px;}
.y246{bottom:289.238400px;}
.yb1{bottom:289.508850px;}
.y1e0{bottom:290.096400px;}
.yd0{bottom:290.673900px;}
.yf3{bottom:294.311400px;}
.y46{bottom:298.913400px;}
.y112{bottom:299.236800px;}
.y15d{bottom:299.264550px;}
.y1b{bottom:300.795900px;}
.y189{bottom:304.566150px;}
.y13d{bottom:304.807800px;}
.y92{bottom:304.913400px;}
.y1fb{bottom:305.952900px;}
.y6a{bottom:306.579900px;}
.y21e{bottom:307.833900px;}
.y1bf{bottom:308.081400px;}
.y139{bottom:308.196300px;}
.y13a{bottom:308.209800px;}
.yb0{bottom:309.011850px;}
.y245{bottom:309.038400px;}
.y1df{bottom:309.978900px;}
.ycf{bottom:310.176900px;}
.yf2{bottom:314.193900px;}
.y45{bottom:316.913400px;}
.y111{bottom:318.739800px;}
.y15c{bottom:318.767550px;}
.y1a{bottom:318.796350px;}
.y188{bottom:324.069150px;}
.y91{bottom:324.185400px;}
.y138{bottom:326.191800px;}
.y69{bottom:326.462400px;}
.y1be{bottom:327.584400px;}
.y21d{bottom:327.633900px;}
.yaf{bottom:328.514850px;}
.y244{bottom:328.838400px;}
.y13c{bottom:329.607300px;}
.yce{bottom:329.679900px;}
.y1de{bottom:329.861400px;}
.yf1{bottom:334.076400px;}
.y44{bottom:334.913400px;}
.y15b{bottom:338.232900px;}
.y110{bottom:338.242800px;}
.y90{bottom:343.457400px;}
.y187{bottom:343.572150px;}
.y68{bottom:346.344900px;}
.y1bd{bottom:347.087400px;}
.y21c{bottom:347.433900px;}
.yae{bottom:348.017850px;}
.y243{bottom:348.638400px;}
.ycd{bottom:349.182900px;}
.y1dd{bottom:349.743900px;}
.y43{bottom:352.913400px;}
.yf0{bottom:353.958900px;}
.y13b{bottom:354.406800px;}
.y1fa{bottom:356.954400px;}
.y15a{bottom:357.735900px;}
.y10f{bottom:357.745800px;}
.y19{bottom:357.796350px;}
.y8f{bottom:362.729400px;}
.y186{bottom:363.075150px;}
.y67{bottom:366.227400px;}
.y1bc{bottom:366.969900px;}
.y21b{bottom:367.233900px;}
.y242{bottom:368.438400px;}
.ycc{bottom:368.685900px;}
.y1dc{bottom:369.626400px;}
.y42{bottom:370.913400px;}
.yef{bottom:373.841400px;}
.y1f9{bottom:376.457400px;}
.y159{bottom:377.238900px;}
.y10e{bottom:377.248800px;}
.y137{bottom:379.179300px;}
.y8e{bottom:382.001400px;}
.y185{bottom:382.569150px;}
.y66{bottom:386.109900px;}
.y1bb{bottom:386.852400px;}
.y21a{bottom:387.033900px;}
.ycb{bottom:388.188900px;}
.y241{bottom:388.238400px;}
.yad{bottom:388.525350px;}
.y41{bottom:388.913400px;}
.y1db{bottom:389.508900px;}
.yee{bottom:393.723900px;}
.y133{bottom:394.960800px;}
.y134{bottom:394.974300px;}
.y1f8{bottom:395.960400px;}
.y158{bottom:396.741900px;}
.y10d{bottom:396.751800px;}
.y8d{bottom:401.273400px;}
.y184{bottom:402.072150px;}
.y136{bottom:403.978800px;}
.y65{bottom:405.992400px;}
.y1ba{bottom:406.734900px;}
.y219{bottom:406.833900px;}
.y40{bottom:406.913400px;}
.yca{bottom:407.691900px;}
.y240{bottom:408.038400px;}
.y1da{bottom:409.391400px;}
.y15{bottom:409.798950px;}
.y132{bottom:412.956300px;}
.yed{bottom:413.606400px;}
.y1f7{bottom:415.463400px;}
.y157{bottom:416.244900px;}
.y10c{bottom:416.254800px;}
.y8c{bottom:420.545400px;}
.y183{bottom:421.575150px;}
.y14{bottom:424.798950px;}
.y3f{bottom:424.913400px;}
.y64{bottom:425.874900px;}
.y1b9{bottom:426.617400px;}
.y218{bottom:426.633900px;}
.yc9{bottom:427.194900px;}
.y23f{bottom:427.838400px;}
.y135{bottom:428.778300px;}
.y1d9{bottom:429.273900px;}
.yec{bottom:433.488900px;}
.y1f6{bottom:434.966400px;}
.y10b{bottom:435.757800px;}
.yac{bottom:439.526850px;}
.y13{bottom:439.798950px;}
.y8b{bottom:439.817400px;}
.y182{bottom:441.078150px;}
.y3e{bottom:442.913400px;}
.y63{bottom:445.757400px;}
.y217{bottom:446.433900px;}
.y1b8{bottom:446.499900px;}
.yc8{bottom:446.697900px;}
.y18{bottom:447.298950px;}
.y23e{bottom:447.638400px;}
.y156{bottom:448.502400px;}
.y1d8{bottom:449.156400px;}
.yeb{bottom:453.371400px;}
.y131{bottom:453.550800px;}
.y1f5{bottom:454.469400px;}
.y12{bottom:454.798950px;}
.yab{bottom:459.029850px;}
.y8a{bottom:459.089400px;}
.y3d{bottom:460.913400px;}
.y17{bottom:462.298950px;}
.y10a{bottom:463.758300px;}
.y62{bottom:465.639900px;}
.yc7{bottom:466.200900px;}
.y216{bottom:466.233900px;}
.y1b7{bottom:466.382400px;}
.y23d{bottom:467.438400px;}
.y1d7{bottom:469.038900px;}
.y12d{bottom:469.332300px;}
.y12e{bottom:469.345800px;}
.y11{bottom:469.798950px;}
.y1f4{bottom:473.972400px;}
.y16{bottom:477.298950px;}
.y130{bottom:478.350300px;}
.y89{bottom:478.361400px;}
.yaa{bottom:478.532850px;}
.y3c{bottom:478.913400px;}
.y61{bottom:485.522400px;}
.yc6{bottom:485.703900px;}
.yea{bottom:486.008400px;}
.y215{bottom:486.033900px;}
.y181{bottom:486.090000px;}
.y1b6{bottom:486.264900px;}
.y23c{bottom:487.238400px;}
.y12c{bottom:487.327800px;}
.y1d6{bottom:488.921400px;}
.y1f3{bottom:493.475400px;}
.y155{bottom:493.514400px;}
.y3b{bottom:496.913400px;}
.y88{bottom:497.633400px;}
.ya9{bottom:498.035850px;}
.y10{bottom:499.798950px;}
.y180{bottom:501.090000px;}
.y12f{bottom:503.149800px;}
.y109{bottom:504.513300px;}
.yc5{bottom:505.206900px;}
.y60{bottom:505.404900px;}
.y214{bottom:505.833900px;}
.ye9{bottom:505.890900px;}
.y1b5{bottom:506.147400px;}
.y23b{bottom:507.038400px;}
.y1d5{bottom:508.803900px;}
.y1f2{bottom:512.978400px;}
.y154{bottom:513.017400px;}
.yf{bottom:514.798950px;}
.y3a{bottom:514.913400px;}
.y87{bottom:516.905400px;}
.ya8{bottom:517.535850px;}
.y108{bottom:524.016300px;}
.yc4{bottom:524.709900px;}
.y5f{bottom:525.287400px;}
.y213{bottom:525.633900px;}
.ye8{bottom:525.773400px;}
.y1b4{bottom:526.029900px;}
.y23a{bottom:526.838400px;}
.y12b{bottom:527.922300px;}
.y1d4{bottom:528.686400px;}
.y17f{bottom:529.265700px;}
.y1f1{bottom:532.481400px;}
.y153{bottom:532.520400px;}
.y39{bottom:532.913400px;}
.y86{bottom:536.177400px;}
.ya7{bottom:536.985900px;}
.y19c{bottom:540.781950px;}
.y107{bottom:543.519300px;}
.y127{bottom:543.703800px;}
.y128{bottom:543.717300px;}
.yc3{bottom:544.212900px;}
.y17b{bottom:544.280700px;}
.y5e{bottom:545.169900px;}
.y17c{bottom:545.311200px;}
.y212{bottom:545.433900px;}
.ye7{bottom:545.655900px;}
.y1b3{bottom:545.912400px;}
.y239{bottom:546.638400px;}
.y1d3{bottom:548.568900px;}
.y38{bottom:550.913400px;}
.y1f0{bottom:551.984400px;}
.y152{bottom:552.023400px;}
.y12a{bottom:552.721800px;}
.y17e{bottom:553.561950px;}
.y85{bottom:555.449400px;}
.ya6{bottom:556.488900px;}
.y19b{bottom:558.781950px;}
.y126{bottom:561.699300px;}
.y17a{bottom:562.280700px;}
.y106{bottom:563.022300px;}
.yc2{bottom:563.715900px;}
.y5d{bottom:565.052400px;}
.y211{bottom:565.233900px;}
.ye6{bottom:565.530900px;}
.y1b2{bottom:565.794900px;}
.y238{bottom:566.438400px;}
.y1d2{bottom:568.451400px;}
.y37{bottom:568.913400px;}
.y1ef{bottom:571.487400px;}
.y151{bottom:571.526400px;}
.y84{bottom:574.721400px;}
.ye{bottom:575.879100px;}
.ya5{bottom:575.991900px;}
.y129{bottom:577.521300px;}
.y17d{bottom:577.858200px;}
.y105{bottom:582.525300px;}
.yc1{bottom:583.218900px;}
.y5c{bottom:584.934900px;}
.y210{bottom:585.033900px;}
.ye5{bottom:585.297900px;}
.y1b1{bottom:585.677400px;}
.y237{bottom:586.238400px;}
.y36{bottom:586.913400px;}
.y1d1{bottom:588.333900px;}
.y19a{bottom:589.534950px;}
.y1ee{bottom:590.990400px;}
.y150{bottom:591.029400px;}
.y83{bottom:593.993400px;}
.ya4{bottom:595.494900px;}
.yd{bottom:598.828950px;}
.y104{bottom:602.028300px;}
.y179{bottom:602.147100px;}
.y124{bottom:602.293800px;}
.yc0{bottom:602.721900px;}
.y5b{bottom:604.817400px;}
.y20f{bottom:604.833900px;}
.y35{bottom:604.913400px;}
.ye4{bottom:605.180400px;}
.y1b0{bottom:605.559900px;}
.y236{bottom:606.038400px;}
.y1d0{bottom:608.216400px;}
.y199{bottom:609.025950px;}
.y1ed{bottom:610.493400px;}
.y14f{bottom:610.532400px;}
.y123{bottom:610.540050px;}
.y82{bottom:613.265400px;}
.ya3{bottom:614.997900px;}
.y175{bottom:617.162100px;}
.y176{bottom:618.192600px;}
.y125{bottom:618.790800px;}
.y103{bottom:621.531300px;}
.ybf{bottom:622.224900px;}
.y20e{bottom:624.633900px;}
.y5a{bottom:624.699900px;}
.ye3{bottom:625.062900px;}
.y1af{bottom:625.442400px;}
.y235{bottom:625.838400px;}
.y178{bottom:626.443350px;}
.y1cf{bottom:628.098900px;}
.y198{bottom:628.528950px;}
.yc{bottom:629.879100px;}
.y1ec{bottom:629.996400px;}
.y14e{bottom:630.035400px;}
.y11f{bottom:631.188000px;}
.y81{bottom:632.537400px;}
.ya2{bottom:634.500900px;}
.y174{bottom:635.162100px;}
.y102{bottom:641.022300px;}
.ybe{bottom:641.727900px;}
.y122{bottom:643.588050px;}
.y34{bottom:643.913400px;}
.y20d{bottom:644.433900px;}
.y59{bottom:644.582400px;}
.ye2{bottom:644.945400px;}
.y1ae{bottom:645.324900px;}
.y234{bottom:645.638400px;}
.y1ce{bottom:647.981400px;}
.y197{bottom:648.031950px;}
.y1eb{bottom:649.499400px;}
.y14d{bottom:649.520400px;}
.y177{bottom:650.739600px;}
.y80{bottom:651.809400px;}
.y120{bottom:651.829500px;}
.yb{bottom:653.879100px;}
.ya1{bottom:654.003900px;}
.y121{bottom:660.085050px;}
.y101{bottom:660.525300px;}
.ybd{bottom:661.230900px;}
.y20c{bottom:664.233900px;}
.y58{bottom:664.464900px;}
.ye1{bottom:664.827900px;}
.y1ad{bottom:665.207400px;}
.y233{bottom:665.438400px;}
.y196{bottom:667.534950px;}
.y1cd{bottom:667.863900px;}
.y1ea{bottom:669.002400px;}
.y14c{bottom:669.023400px;}
.y7f{bottom:671.081400px;}
.ya0{bottom:673.506900px;}
.y173{bottom:675.022500px;}
.ya{bottom:677.879100px;}
.y171{bottom:677.896500px;}
.y172{bottom:678.927000px;}
.y100{bottom:680.028300px;}
.ybc{bottom:680.733900px;}
.y20b{bottom:684.033900px;}
.y57{bottom:684.347400px;}
.ye0{bottom:684.710400px;}
.y1ac{bottom:685.089900px;}
.y232{bottom:685.238400px;}
.y195{bottom:687.034950px;}
.y1cc{bottom:687.746400px;}
.y258{bottom:688.208400px;}
.y1e9{bottom:688.505400px;}
.y14b{bottom:688.526400px;}
.y7e{bottom:690.353400px;}
.y11e{bottom:692.530050px;}
.y170{bottom:695.896500px;}
.yff{bottom:699.531300px;}
.y33{bottom:699.788400px;}
.y194{bottom:701.092290px;}
.y9{bottom:701.879100px;}
.y20a{bottom:703.833900px;}
.y56{bottom:704.229900px;}
.ydf{bottom:704.592900px;}
.y1ab{bottom:704.972400px;}
.y231{bottom:705.038400px;}
.y193{bottom:706.506900px;}
.y1cb{bottom:707.628900px;}
.y257{bottom:707.711400px;}
.y1e8{bottom:708.008400px;}
.y14a{bottom:708.029400px;}
.y7d{bottom:709.625400px;}
.y11d{bottom:710.530050px;}
.y9f{bottom:714.014400px;}
.ybb{bottom:717.248400px;}
.y32{bottom:717.788400px;}
.yfe{bottom:719.031300px;}
.y16f{bottom:723.616050px;}
.y209{bottom:723.633900px;}
.y55{bottom:724.112400px;}
.yde{bottom:724.475400px;}
.y230{bottom:724.838400px;}
.y1aa{bottom:724.854900px;}
.y192{bottom:726.009900px;}
.y256{bottom:727.214400px;}
.y1ca{bottom:727.511400px;}
.y149{bottom:727.532400px;}
.y7c{bottom:728.897400px;}
.yfd{bottom:738.531300px;}
.y16b{bottom:738.631050px;}
.y16c{bottom:739.661550px;}
.y31{bottom:742.163400px;}
.y208{bottom:743.433900px;}
.y54{bottom:743.994900px;}
.ydd{bottom:744.357900px;}
.y22f{bottom:744.638400px;}
.y1a9{bottom:744.737400px;}
.y8{bottom:745.379100px;}
.y11c{bottom:745.512900px;}
.y255{bottom:746.717400px;}
.y1c9{bottom:747.014400px;}
.y148{bottom:747.035400px;}
.y16e{bottom:747.912300px;}
.y7b{bottom:748.169400px;}
.y9e{bottom:754.521900px;}
.y16a{bottom:756.631050px;}
.yfc{bottom:758.019900px;}
.y30{bottom:760.163400px;}
.y207{bottom:763.233900px;}
.y53{bottom:763.877400px;}
.ydc{bottom:764.240400px;}
.y22e{bottom:764.438400px;}
.y1a8{bottom:764.619900px;}
.y11b{bottom:765.015900px;}
.y254{bottom:766.220400px;}
.yba{bottom:766.517400px;}
.y147{bottom:766.526400px;}
.y7a{bottom:767.441400px;}
.y16d{bottom:772.208550px;}
.y7{bottom:772.379100px;}
.y2f{bottom:778.163400px;}
.y206{bottom:783.033900px;}
.y52{bottom:783.759900px;}
.ydb{bottom:784.122900px;}
.y22d{bottom:784.238400px;}
.y1a7{bottom:784.502400px;}
.y11a{bottom:784.518900px;}
.y253{bottom:785.723400px;}
.yb9{bottom:786.020400px;}
.y146{bottom:786.029400px;}
.y79{bottom:786.713400px;}
.y2e{bottom:796.163400px;}
.y168{bottom:796.498350px;}
.y205{bottom:802.833900px;}
.y51{bottom:803.642400px;}
.yda{bottom:804.005400px;}
.y119{bottom:804.021900px;}
.y22c{bottom:804.038400px;}
.y1a6{bottom:804.384900px;}
.y167{bottom:804.745200px;}
.y252{bottom:805.226400px;}
.y9d{bottom:805.523400px;}
.y145{bottom:805.532400px;}
.y78{bottom:805.985400px;}
.y169{bottom:812.999850px;}
.y2d{bottom:814.163400px;}
.y6{bottom:818.873100px;}
.y204{bottom:822.633900px;}
.y50{bottom:823.524900px;}
.y22b{bottom:823.838400px;}
.yd9{bottom:823.887900px;}
.y1a5{bottom:824.267400px;}
.y251{bottom:824.729400px;}
.y9c{bottom:825.026400px;}
.y144{bottom:825.035400px;}
.y163{bottom:825.146700px;}
.y77{bottom:825.257400px;}
.y2c{bottom:832.163400px;}
.y166{bottom:837.292200px;}
.y203{bottom:842.433900px;}
.y4f{bottom:843.027900px;}
.y22a{bottom:843.638400px;}
.yd8{bottom:843.770400px;}
.y1a4{bottom:844.149900px;}
.y250{bottom:844.232400px;}
.y76{bottom:844.529400px;}
.y164{bottom:845.538450px;}
.y2b{bottom:850.163400px;}
.y165{bottom:853.793700px;}
.y5{bottom:854.876100px;}
.y202{bottom:862.233900px;}
.y4e{bottom:862.530900px;}
.y229{bottom:863.438400px;}
.yd7{bottom:863.652900px;}
.y24f{bottom:863.735400px;}
.y75{bottom:864.032400px;}
.y2a{bottom:868.163400px;}
.y228{bottom:883.238400px;}
.y74{bottom:883.535400px;}
.y29{bottom:886.163400px;}
.y4{bottom:890.879100px;}
.y4d{bottom:903.038400px;}
.y28{bottom:904.163400px;}
.y26{bottom:943.843200px;}
.y3{bottom:951.780900px;}
.y2{bottom:968.280900px;}
.hc{height:19.402500px;}
.hb{height:25.910156px;}
.h7{height:26.320898px;}
.hd{height:36.281250px;}
.h2{height:36.304688px;}
.h1d{height:39.585938px;}
.h19{height:39.840820px;}
.h2a{height:41.015625px;}
.h15{height:41.572266px;}
.h25{height:42.054199px;}
.h17{height:43.649824px;}
.ha{height:44.267578px;}
.h16{height:44.534180px;}
.h10{height:45.117188px;}
.h3{height:45.380859px;}
.h9{height:45.473395px;}
.h23{height:46.074814px;}
.h22{height:47.008301px;}
.hf{height:48.694336px;}
.h8{height:49.482422px;}
.he{height:54.430664px;}
.h11{height:54.442664px;}
.h1e{height:54.454664px;}
.h13{height:54.460664px;}
.h1f{height:54.466664px;}
.h14{height:54.478664px;}
.h20{height:54.502664px;}
.h21{height:54.581264px;}
.h12{height:54.892664px;}
.h6{height:64.569258px;}
.h5{height:72.750000px;}
.h1a{height:72.834820px;}
.h26{height:75.057199px;}
.h29{height:76.213304px;}
.h18{height:77.528180px;}
.h24{height:80.011301px;}
.h1c{height:80.552180px;}
.h4{height:99.837891px;}
.h1b{height:116.570180px;}
.h27{height:117.136301px;}
.h28{height:128.575301px;}
.h0{height:1022.953200px;}
.h1{height:1023.000000px;}
.w2{width:556.506150px;}
.w1{width:725.250000px;}
.w0{width:725.315700px;}
.x0{left:0.000000px;}
.x4{left:16.240050px;}
.x7{left:63.676650px;}
.x5{left:84.404550px;}
.x1{left:86.279550px;}
.x21{left:90.772950px;}
.x13{left:92.487900px;}
.x2{left:108.129900px;}
.x8{left:111.797250px;}
.xa{left:116.357700px;}
.x9{left:135.788850px;}
.xf{left:187.689900px;}
.x1d{left:191.452950px;}
.x6{left:197.622000px;}
.xb{left:206.200200px;}
.x19{left:208.434600px;}
.x10{left:221.345400px;}
.x1e{left:227.304900px;}
.x18{left:288.980400px;}
.x14{left:290.586900px;}
.x20{left:295.248900px;}
.x12{left:297.404400px;}
.x1f{left:306.948150px;}
.x11{left:308.487900px;}
.x1a{left:394.724850px;}
.xc{left:401.963700px;}
.x23{left:430.470900px;}
.x16{left:434.820900px;}
.x24{left:437.967090px;}
.x3{left:442.125900px;}
.x1c{left:460.193700px;}
.x1b{left:461.903700px;}
.xe{left:464.237400px;}
.xd{left:465.857400px;}
.x22{left:479.476650px;}
.x17{left:481.436400px;}
.x15{left:488.307900px;}
@media print{
.v6{vertical-align:-19.333333pt;}
.v3{vertical-align:-17.599467pt;}
.v2{vertical-align:-5.326720pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.840000pt;}
.v4{vertical-align:17.598400pt;}
.v5{vertical-align:19.548267pt;}
.v1{vertical-align:24.640000pt;}
.v8{vertical-align:29.328000pt;}
.va{vertical-align:32.016000pt;}
.vc{vertical-align:33.000000pt;}
.v9{vertical-align:45.176000pt;}
.vb{vertical-align:46.069867pt;}
.vd{vertical-align:72.504000pt;}
.ls1c{letter-spacing:-4.272000pt;}
.ls1b{letter-spacing:-1.296000pt;}
.ls5{letter-spacing:-1.013333pt;}
.ls29{letter-spacing:-0.821333pt;}
.ls22{letter-spacing:-0.608000pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls1a{letter-spacing:-0.576000pt;}
.ls2b{letter-spacing:-0.528000pt;}
.lse{letter-spacing:-0.476373pt;}
.ls23{letter-spacing:-0.456000pt;}
.lsd{letter-spacing:-0.374293pt;}
.ls24{letter-spacing:-0.304000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.001600pt;}
.ls1{letter-spacing:0.002347pt;}
.ls13{letter-spacing:0.020267pt;}
.ls26{letter-spacing:0.030400pt;}
.ls25{letter-spacing:0.030933pt;}
.ls12{letter-spacing:0.054933pt;}
.ls27{letter-spacing:0.084267pt;}
.lsb{letter-spacing:0.117333pt;}
.ls1d{letter-spacing:0.334613pt;}
.ls11{letter-spacing:0.586667pt;}
.ls1e{letter-spacing:0.674880pt;}
.lsf{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.349333pt;}
.ls14{letter-spacing:1.642667pt;}
.ls3{letter-spacing:1.920000pt;}
.ls7{letter-spacing:2.288000pt;}
.ls2{letter-spacing:3.145600pt;}
.lsc{letter-spacing:3.578667pt;}
.ls8{letter-spacing:7.568000pt;}
.ls20{letter-spacing:154.026667pt;}
.ls17{letter-spacing:157.440000pt;}
.ls19{letter-spacing:228.576000pt;}
.ls21{letter-spacing:235.752000pt;}
.ls2c{letter-spacing:1288.746667pt;}
.lsa{letter-spacing:1289.429333pt;}
.ls0{letter-spacing:1291.050667pt;}
.ls6{letter-spacing:1292.160000pt;}
.ls16{letter-spacing:1292.757333pt;}
.ls1f{letter-spacing:1293.738667pt;}
.ls2a{letter-spacing:1293.952000pt;}
.ls28{letter-spacing:1294.848000pt;}
.ls10{letter-spacing:1297.962667pt;}
.ws27{word-spacing:-58.666667pt;}
.ws14{word-spacing:-15.546667pt;}
.ws54{word-spacing:-14.432000pt;}
.ws53{word-spacing:-13.845333pt;}
.ws23{word-spacing:-13.258667pt;}
.ws83{word-spacing:-12.730667pt;}
.ws80{word-spacing:-12.437333pt;}
.ws2{word-spacing:-12.053333pt;}
.ws5d{word-spacing:-11.450667pt;}
.ws69{word-spacing:-11.146667pt;}
.wsd{word-spacing:-11.040000pt;}
.ws64{word-spacing:-10.994667pt;}
.ws45{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.436907pt;}
.wsc{word-spacing:-10.282667pt;}
.ws50{word-spacing:-9.642667pt;}
.ws4c{word-spacing:-9.552000pt;}
.ws25{word-spacing:-7.690027pt;}
.ws1{word-spacing:-7.454933pt;}
.ws24{word-spacing:-7.315733pt;}
.ws26{word-spacing:-7.213653pt;}
.ws5e{word-spacing:-6.641387pt;}
.ws4d{word-spacing:-6.576000pt;}
.ws46{word-spacing:-6.291840pt;}
.ws7e{word-spacing:-3.989333pt;}
.ws12{word-spacing:-3.360000pt;}
.ws2c{word-spacing:-2.816000pt;}
.ws40{word-spacing:-2.581333pt;}
.ws42{word-spacing:-2.464000pt;}
.ws11{word-spacing:-2.400000pt;}
.ws81{word-spacing:-2.346667pt;}
.ws28{word-spacing:-2.288000pt;}
.ws1c{word-spacing:-2.112000pt;}
.ws8{word-spacing:-2.005333pt;}
.ws87{word-spacing:-1.466667pt;}
.ws7b{word-spacing:-1.408000pt;}
.ws70{word-spacing:-1.232000pt;}
.ws2f{word-spacing:-1.173333pt;}
.ws6b{word-spacing:-1.114667pt;}
.ws3b{word-spacing:-1.056000pt;}
.ws3e{word-spacing:-0.762667pt;}
.wse{word-spacing:-0.586667pt;}
.ws59{word-spacing:-0.352000pt;}
.ws36{word-spacing:-0.176000pt;}
.ws3{word-spacing:0.000000pt;}
.ws84{word-spacing:0.234667pt;}
.ws2d{word-spacing:0.469333pt;}
.ws21{word-spacing:0.586667pt;}
.ws39{word-spacing:0.645333pt;}
.ws19{word-spacing:0.880000pt;}
.ws32{word-spacing:1.114667pt;}
.wsb{word-spacing:1.120000pt;}
.ws56{word-spacing:1.349333pt;}
.ws43{word-spacing:1.466667pt;}
.ws79{word-spacing:1.701333pt;}
.ws52{word-spacing:2.229333pt;}
.ws77{word-spacing:2.405333pt;}
.ws55{word-spacing:2.464000pt;}
.ws15{word-spacing:2.522667pt;}
.ws16{word-spacing:2.581333pt;}
.ws41{word-spacing:2.757333pt;}
.ws6e{word-spacing:2.816000pt;}
.ws72{word-spacing:3.050667pt;}
.wsa{word-spacing:3.200000pt;}
.ws35{word-spacing:3.285333pt;}
.ws6d{word-spacing:3.402667pt;}
.ws73{word-spacing:3.520000pt;}
.ws2b{word-spacing:3.578667pt;}
.ws3a{word-spacing:3.696000pt;}
.ws22{word-spacing:3.813333pt;}
.ws1b{word-spacing:4.165333pt;}
.ws18{word-spacing:4.341333pt;}
.ws7f{word-spacing:4.400000pt;}
.ws3c{word-spacing:4.517333pt;}
.ws13{word-spacing:4.693333pt;}
.ws86{word-spacing:4.810667pt;}
.ws1a{word-spacing:4.869333pt;}
.ws88{word-spacing:5.045333pt;}
.ws7c{word-spacing:5.104000pt;}
.ws85{word-spacing:5.280000pt;}
.ws9{word-spacing:5.440000pt;}
.ws76{word-spacing:5.514667pt;}
.ws2e{word-spacing:5.573333pt;}
.ws3f{word-spacing:5.690667pt;}
.ws89{word-spacing:5.925333pt;}
.ws7a{word-spacing:5.984000pt;}
.ws20{word-spacing:6.101333pt;}
.ws6a{word-spacing:6.160000pt;}
.ws2a{word-spacing:6.277333pt;}
.wsf{word-spacing:6.293333pt;}
.ws74{word-spacing:6.336000pt;}
.ws6{word-spacing:6.357333pt;}
.ws58{word-spacing:6.805333pt;}
.ws3d{word-spacing:6.981333pt;}
.ws7d{word-spacing:7.040000pt;}
.ws6f{word-spacing:7.098667pt;}
.ws38{word-spacing:7.157333pt;}
.ws10{word-spacing:7.520000pt;}
.ws1e{word-spacing:7.626667pt;}
.ws6c{word-spacing:7.802667pt;}
.ws33{word-spacing:7.920000pt;}
.ws5{word-spacing:8.576000pt;}
.ws71{word-spacing:8.624000pt;}
.ws31{word-spacing:8.917333pt;}
.ws4{word-spacing:9.173333pt;}
.ws57{word-spacing:9.680000pt;}
.ws78{word-spacing:9.856000pt;}
.ws1f{word-spacing:10.149333pt;}
.ws5a{word-spacing:10.208000pt;}
.ws1d{word-spacing:10.794667pt;}
.ws75{word-spacing:11.674667pt;}
.ws5b{word-spacing:12.144000pt;}
.ws30{word-spacing:12.613333pt;}
.ws82{word-spacing:15.194667pt;}
.ws34{word-spacing:16.720000pt;}
.ws17{word-spacing:18.597333pt;}
.ws51{word-spacing:18.656000pt;}
.ws37{word-spacing:18.773333pt;}
.ws29{word-spacing:19.008000pt;}
.ws7{word-spacing:24.021333pt;}
.ws4b{word-spacing:41.568000pt;}
.ws61{word-spacing:44.849600pt;}
.ws49{word-spacing:49.728000pt;}
.ws62{word-spacing:50.312000pt;}
.ws67{word-spacing:51.122667pt;}
.ws4e{word-spacing:55.152000pt;}
.ws4a{word-spacing:56.400000pt;}
.ws63{word-spacing:63.992000pt;}
.ws65{word-spacing:87.704000pt;}
.ws4f{word-spacing:94.608000pt;}
.ws68{word-spacing:105.437333pt;}
.ws47{word-spacing:117.072000pt;}
.ws5f{word-spacing:121.802667pt;}
.ws48{word-spacing:141.600000pt;}
.ws60{word-spacing:144.856000pt;}
.ws5c{word-spacing:212.394667pt;}
.ws66{word-spacing:229.824000pt;}
.ws44{word-spacing:240.672000pt;}
._12{margin-left:-7.093333pt;}
._10{margin-left:-5.813333pt;}
._0{margin-left:-4.906667pt;}
._2{margin-left:-3.626667pt;}
._5{margin-left:-2.453333pt;}
._1{margin-left:-1.226667pt;}
._3{width:1.280000pt;}
._4{width:2.240000pt;}
._f{width:3.520000pt;}
._11{width:4.426667pt;}
._8{width:6.080000pt;}
._7{width:6.986667pt;}
._c{width:8.106667pt;}
._6{width:9.120000pt;}
._9{width:10.346667pt;}
._13{width:11.733333pt;}
._19{width:14.309333pt;}
._d{width:15.360000pt;}
._e{width:16.426667pt;}
._15{width:17.482667pt;}
._17{width:18.949333pt;}
._18{width:19.877333pt;}
._35{width:20.784000pt;}
._14{width:22.117333pt;}
._3a{width:23.045333pt;}
._38{width:24.933333pt;}
._33{width:26.805333pt;}
._32{width:28.282667pt;}
._39{width:29.445333pt;}
._2f{width:30.522667pt;}
._2e{width:31.658667pt;}
._37{width:33.984000pt;}
._36{width:35.360000pt;}
._34{width:43.824000pt;}
._28{width:53.149333pt;}
._25{width:72.864000pt;}
._1e{width:78.288000pt;}
._22{width:80.688000pt;}
._2a{width:84.410667pt;}
._27{width:92.629333pt;}
._1c{width:94.010667pt;}
._20{width:105.024000pt;}
._26{width:110.685333pt;}
._2c{width:116.088000pt;}
._2b{width:117.445333pt;}
._21{width:118.560000pt;}
._1f{width:121.536000pt;}
._29{width:123.221333pt;}
._23{width:126.624000pt;}
._1b{width:132.986667pt;}
._1d{width:134.256000pt;}
._2d{width:136.141333pt;}
._24{width:139.082667pt;}
._31{width:1296.768000pt;}
._16{width:1298.816000pt;}
._b{width:1300.096000pt;}
._30{width:1301.546667pt;}
._1a{width:1303.125333pt;}
._a{width:1949.449600pt;}
.fsb{font-size:27.840000pt;}
.fsd{font-size:29.386667pt;}
.fs6{font-size:30.933333pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.026667pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:43.306667pt;}
.fsa{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:117.333333pt;}
.y25{bottom:-22.236267pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:5.779467pt;}
.y1{bottom:61.066133pt;}
.yd6{bottom:115.024800pt;}
.y227{bottom:115.230133pt;}
.y1a3{bottom:115.241067pt;}
.y73{bottom:115.479467pt;}
.y24e{bottom:116.300800pt;}
.y9b{bottom:116.858133pt;}
.y1e7{bottom:117.488800pt;}
.y1c8{bottom:117.826133pt;}
.yfb{bottom:120.223467pt;}
.y24{bottom:123.374133pt;}
.y191{bottom:132.037467pt;}
.yd5{bottom:132.360800pt;}
.y1a2{bottom:132.577067pt;}
.y72{bottom:132.815467pt;}
.y226{bottom:132.830133pt;}
.y24d{bottom:133.900800pt;}
.y9a{bottom:133.988800pt;}
.y1e6{bottom:134.824800pt;}
.y1c7{bottom:135.162133pt;}
.y143{bottom:135.416800pt;}
.yb8{bottom:135.989200pt;}
.yfa{bottom:137.896800pt;}
.y23{bottom:139.374133pt;}
.y201{bottom:149.271467pt;}
.y190{bottom:149.373467pt;}
.yd4{bottom:149.696800pt;}
.y1a1{bottom:149.913067pt;}
.y71{bottom:150.151467pt;}
.y225{bottom:150.430133pt;}
.y99{bottom:151.119467pt;}
.y24c{bottom:151.500800pt;}
.y1e5{bottom:152.160800pt;}
.y1c6{bottom:152.498133pt;}
.y142{bottom:152.752800pt;}
.yb7{bottom:153.325200pt;}
.y22{bottom:155.374133pt;}
.yf9{bottom:155.570133pt;}
.y118{bottom:161.972267pt;}
.y4c{bottom:164.034133pt;}
.y200{bottom:166.607467pt;}
.y18f{bottom:166.709467pt;}
.yd3{bottom:167.032800pt;}
.y1a0{bottom:167.249067pt;}
.y70{bottom:167.487467pt;}
.y224{bottom:168.030133pt;}
.y98{bottom:168.250133pt;}
.y24b{bottom:169.100800pt;}
.y1e4{bottom:169.496800pt;}
.y1c5{bottom:169.834133pt;}
.y141{bottom:170.088800pt;}
.yb6{bottom:170.661200pt;}
.y21{bottom:171.374133pt;}
.yf8{bottom:173.243467pt;}
.y117{bottom:179.308267pt;}
.y162{bottom:179.340933pt;}
.y4b{bottom:180.034133pt;}
.y1ff{bottom:183.943467pt;}
.y18e{bottom:184.045467pt;}
.yd2{bottom:184.368800pt;}
.y19f{bottom:184.585067pt;}
.y6f{bottom:184.823467pt;}
.y97{bottom:185.380800pt;}
.y223{bottom:185.630133pt;}
.y24a{bottom:186.700800pt;}
.y1c4{bottom:187.170133pt;}
.y20{bottom:187.374133pt;}
.yb5{bottom:187.997200pt;}
.yf7{bottom:190.916800pt;}
.y116{bottom:196.644267pt;}
.y161{bottom:196.676933pt;}
.y1fe{bottom:201.279467pt;}
.y18d{bottom:201.381467pt;}
.y4a{bottom:201.700800pt;}
.y19e{bottom:201.921067pt;}
.y6e{bottom:202.159467pt;}
.y96{bottom:202.511467pt;}
.y222{bottom:203.230133pt;}
.y1f{bottom:203.374133pt;}
.y249{bottom:204.300800pt;}
.y1c3{bottom:204.506133pt;}
.y1e3{bottom:204.843467pt;}
.yb4{bottom:205.333200pt;}
.yf6{bottom:208.590133pt;}
.y140{bottom:210.099200pt;}
.yd1{bottom:213.042133pt;}
.y115{bottom:213.980267pt;}
.y160{bottom:214.012933pt;}
.y49{bottom:217.700800pt;}
.y1fd{bottom:218.615467pt;}
.y18c{bottom:218.717467pt;}
.y1e{bottom:219.374133pt;}
.y6d{bottom:219.495467pt;}
.y95{bottom:219.642133pt;}
.y221{bottom:220.830133pt;}
.y1c2{bottom:221.842133pt;}
.y248{bottom:221.900800pt;}
.y1e2{bottom:222.516800pt;}
.yb3{bottom:222.669200pt;}
.y13f{bottom:223.432533pt;}
.yf5{bottom:226.263467pt;}
.y114{bottom:231.316267pt;}
.y15f{bottom:231.348933pt;}
.y48{bottom:233.700800pt;}
.y1d{bottom:235.374133pt;}
.y1fc{bottom:235.951467pt;}
.y18b{bottom:236.053467pt;}
.y94{bottom:236.772800pt;}
.y6c{bottom:237.168800pt;}
.y19d{bottom:237.927733pt;}
.y220{bottom:238.430133pt;}
.y1c1{bottom:239.178133pt;}
.y247{bottom:239.500800pt;}
.yb2{bottom:240.005200pt;}
.y1e1{bottom:240.190133pt;}
.yf4{bottom:243.936800pt;}
.y113{bottom:248.652267pt;}
.y15e{bottom:248.676933pt;}
.y13e{bottom:248.896267pt;}
.y47{bottom:249.700800pt;}
.y1c{bottom:251.374133pt;}
.y18a{bottom:253.389467pt;}
.y93{bottom:253.903467pt;}
.y6b{bottom:254.842133pt;}
.y21f{bottom:256.030133pt;}
.y1c0{bottom:256.514133pt;}
.y246{bottom:257.100800pt;}
.yb1{bottom:257.341200pt;}
.y1e0{bottom:257.863467pt;}
.yd0{bottom:258.376800pt;}
.yf3{bottom:261.610133pt;}
.y46{bottom:265.700800pt;}
.y112{bottom:265.988267pt;}
.y15d{bottom:266.012933pt;}
.y1b{bottom:267.374133pt;}
.y189{bottom:270.725467pt;}
.y13d{bottom:270.940267pt;}
.y92{bottom:271.034133pt;}
.y1fb{bottom:271.958133pt;}
.y6a{bottom:272.515467pt;}
.y21e{bottom:273.630133pt;}
.y1bf{bottom:273.850133pt;}
.y139{bottom:273.952267pt;}
.y13a{bottom:273.964267pt;}
.yb0{bottom:274.677200pt;}
.y245{bottom:274.700800pt;}
.y1df{bottom:275.536800pt;}
.ycf{bottom:275.712800pt;}
.yf2{bottom:279.283467pt;}
.y45{bottom:281.700800pt;}
.y111{bottom:283.324267pt;}
.y15c{bottom:283.348933pt;}
.y1a{bottom:283.374533pt;}
.y188{bottom:288.061467pt;}
.y91{bottom:288.164800pt;}
.y138{bottom:289.948267pt;}
.y69{bottom:290.188800pt;}
.y1be{bottom:291.186133pt;}
.y21d{bottom:291.230133pt;}
.yaf{bottom:292.013200pt;}
.y244{bottom:292.300800pt;}
.y13c{bottom:292.984267pt;}
.yce{bottom:293.048800pt;}
.y1de{bottom:293.210133pt;}
.yf1{bottom:296.956800pt;}
.y44{bottom:297.700800pt;}
.y15b{bottom:300.651467pt;}
.y110{bottom:300.660267pt;}
.y90{bottom:305.295467pt;}
.y187{bottom:305.397467pt;}
.y68{bottom:307.862133pt;}
.y1bd{bottom:308.522133pt;}
.y21c{bottom:308.830133pt;}
.yae{bottom:309.349200pt;}
.y243{bottom:309.900800pt;}
.ycd{bottom:310.384800pt;}
.y1dd{bottom:310.883467pt;}
.y43{bottom:313.700800pt;}
.yf0{bottom:314.630133pt;}
.y13b{bottom:315.028267pt;}
.y1fa{bottom:317.292800pt;}
.y15a{bottom:317.987467pt;}
.y10f{bottom:317.996267pt;}
.y19{bottom:318.041200pt;}
.y8f{bottom:322.426133pt;}
.y186{bottom:322.733467pt;}
.y67{bottom:325.535467pt;}
.y1bc{bottom:326.195467pt;}
.y21b{bottom:326.430133pt;}
.y242{bottom:327.500800pt;}
.ycc{bottom:327.720800pt;}
.y1dc{bottom:328.556800pt;}
.y42{bottom:329.700800pt;}
.yef{bottom:332.303467pt;}
.y1f9{bottom:334.628800pt;}
.y159{bottom:335.323467pt;}
.y10e{bottom:335.332267pt;}
.y137{bottom:337.048267pt;}
.y8e{bottom:339.556800pt;}
.y185{bottom:340.061467pt;}
.y66{bottom:343.208800pt;}
.y1bb{bottom:343.868800pt;}
.y21a{bottom:344.030133pt;}
.ycb{bottom:345.056800pt;}
.y241{bottom:345.100800pt;}
.yad{bottom:345.355867pt;}
.y41{bottom:345.700800pt;}
.y1db{bottom:346.230133pt;}
.yee{bottom:349.976800pt;}
.y133{bottom:351.076267pt;}
.y134{bottom:351.088267pt;}
.y1f8{bottom:351.964800pt;}
.y158{bottom:352.659467pt;}
.y10d{bottom:352.668267pt;}
.y8d{bottom:356.687467pt;}
.y184{bottom:357.397467pt;}
.y136{bottom:359.092267pt;}
.y65{bottom:360.882133pt;}
.y1ba{bottom:361.542133pt;}
.y219{bottom:361.630133pt;}
.y40{bottom:361.700800pt;}
.yca{bottom:362.392800pt;}
.y240{bottom:362.700800pt;}
.y1da{bottom:363.903467pt;}
.y15{bottom:364.265733pt;}
.y132{bottom:367.072267pt;}
.yed{bottom:367.650133pt;}
.y1f7{bottom:369.300800pt;}
.y157{bottom:369.995467pt;}
.y10c{bottom:370.004267pt;}
.y8c{bottom:373.818133pt;}
.y183{bottom:374.733467pt;}
.y14{bottom:377.599067pt;}
.y3f{bottom:377.700800pt;}
.y64{bottom:378.555467pt;}
.y1b9{bottom:379.215467pt;}
.y218{bottom:379.230133pt;}
.yc9{bottom:379.728800pt;}
.y23f{bottom:380.300800pt;}
.y135{bottom:381.136267pt;}
.y1d9{bottom:381.576800pt;}
.yec{bottom:385.323467pt;}
.y1f6{bottom:386.636800pt;}
.y10b{bottom:387.340267pt;}
.yac{bottom:390.690533pt;}
.y13{bottom:390.932400pt;}
.y8b{bottom:390.948800pt;}
.y182{bottom:392.069467pt;}
.y3e{bottom:393.700800pt;}
.y63{bottom:396.228800pt;}
.y217{bottom:396.830133pt;}
.y1b8{bottom:396.888800pt;}
.yc8{bottom:397.064800pt;}
.y18{bottom:397.599067pt;}
.y23e{bottom:397.900800pt;}
.y156{bottom:398.668800pt;}
.y1d8{bottom:399.250133pt;}
.yeb{bottom:402.996800pt;}
.y131{bottom:403.156267pt;}
.y1f5{bottom:403.972800pt;}
.y12{bottom:404.265733pt;}
.yab{bottom:408.026533pt;}
.y8a{bottom:408.079467pt;}
.y3d{bottom:409.700800pt;}
.y17{bottom:410.932400pt;}
.y10a{bottom:412.229600pt;}
.y62{bottom:413.902133pt;}
.yc7{bottom:414.400800pt;}
.y216{bottom:414.430133pt;}
.y1b7{bottom:414.562133pt;}
.y23d{bottom:415.500800pt;}
.y1d7{bottom:416.923467pt;}
.y12d{bottom:417.184267pt;}
.y12e{bottom:417.196267pt;}
.y11{bottom:417.599067pt;}
.y1f4{bottom:421.308800pt;}
.y16{bottom:424.265733pt;}
.y130{bottom:425.200267pt;}
.y89{bottom:425.210133pt;}
.yaa{bottom:425.362533pt;}
.y3c{bottom:425.700800pt;}
.y61{bottom:431.575467pt;}
.yc6{bottom:431.736800pt;}
.yea{bottom:432.007467pt;}
.y215{bottom:432.030133pt;}
.y181{bottom:432.080000pt;}
.y1b6{bottom:432.235467pt;}
.y23c{bottom:433.100800pt;}
.y12c{bottom:433.180267pt;}
.y1d6{bottom:434.596800pt;}
.y1f3{bottom:438.644800pt;}
.y155{bottom:438.679467pt;}
.y3b{bottom:441.700800pt;}
.y88{bottom:442.340800pt;}
.ya9{bottom:442.698533pt;}
.y10{bottom:444.265733pt;}
.y180{bottom:445.413333pt;}
.y12f{bottom:447.244267pt;}
.y109{bottom:448.456267pt;}
.yc5{bottom:449.072800pt;}
.y60{bottom:449.248800pt;}
.y214{bottom:449.630133pt;}
.ye9{bottom:449.680800pt;}
.y1b5{bottom:449.908800pt;}
.y23b{bottom:450.700800pt;}
.y1d5{bottom:452.270133pt;}
.y1f2{bottom:455.980800pt;}
.y154{bottom:456.015467pt;}
.yf{bottom:457.599067pt;}
.y3a{bottom:457.700800pt;}
.y87{bottom:459.471467pt;}
.ya8{bottom:460.031867pt;}
.y108{bottom:465.792267pt;}
.yc4{bottom:466.408800pt;}
.y5f{bottom:466.922133pt;}
.y213{bottom:467.230133pt;}
.ye8{bottom:467.354133pt;}
.y1b4{bottom:467.582133pt;}
.y23a{bottom:468.300800pt;}
.y12b{bottom:469.264267pt;}
.y1d4{bottom:469.943467pt;}
.y17f{bottom:470.458400pt;}
.y1f1{bottom:473.316800pt;}
.y153{bottom:473.351467pt;}
.y39{bottom:473.700800pt;}
.y86{bottom:476.602133pt;}
.ya7{bottom:477.320800pt;}
.y19c{bottom:480.695067pt;}
.y107{bottom:483.128267pt;}
.y127{bottom:483.292267pt;}
.y128{bottom:483.304267pt;}
.yc3{bottom:483.744800pt;}
.y17b{bottom:483.805067pt;}
.y5e{bottom:484.595467pt;}
.y17c{bottom:484.721067pt;}
.y212{bottom:484.830133pt;}
.ye7{bottom:485.027467pt;}
.y1b3{bottom:485.255467pt;}
.y239{bottom:485.900800pt;}
.y1d3{bottom:487.616800pt;}
.y38{bottom:489.700800pt;}
.y1f0{bottom:490.652800pt;}
.y152{bottom:490.687467pt;}
.y12a{bottom:491.308267pt;}
.y17e{bottom:492.055067pt;}
.y85{bottom:493.732800pt;}
.ya6{bottom:494.656800pt;}
.y19b{bottom:496.695067pt;}
.y126{bottom:499.288267pt;}
.y17a{bottom:499.805067pt;}
.y106{bottom:500.464267pt;}
.yc2{bottom:501.080800pt;}
.y5d{bottom:502.268800pt;}
.y211{bottom:502.430133pt;}
.ye6{bottom:502.694133pt;}
.y1b2{bottom:502.928800pt;}
.y238{bottom:503.500800pt;}
.y1d2{bottom:505.290133pt;}
.y37{bottom:505.700800pt;}
.y1ef{bottom:507.988800pt;}
.y151{bottom:508.023467pt;}
.y84{bottom:510.863467pt;}
.ye{bottom:511.892533pt;}
.ya5{bottom:511.992800pt;}
.y129{bottom:513.352267pt;}
.y17d{bottom:513.651733pt;}
.y105{bottom:517.800267pt;}
.yc1{bottom:518.416800pt;}
.y5c{bottom:519.942133pt;}
.y210{bottom:520.030133pt;}
.ye5{bottom:520.264800pt;}
.y1b1{bottom:520.602133pt;}
.y237{bottom:521.100800pt;}
.y36{bottom:521.700800pt;}
.y1d1{bottom:522.963467pt;}
.y19a{bottom:524.031067pt;}
.y1ee{bottom:525.324800pt;}
.y150{bottom:525.359467pt;}
.y83{bottom:527.994133pt;}
.ya4{bottom:529.328800pt;}
.yd{bottom:532.292400pt;}
.y104{bottom:535.136267pt;}
.y179{bottom:535.241867pt;}
.y124{bottom:535.372267pt;}
.yc0{bottom:535.752800pt;}
.y5b{bottom:537.615467pt;}
.y20f{bottom:537.630133pt;}
.y35{bottom:537.700800pt;}
.ye4{bottom:537.938133pt;}
.y1b0{bottom:538.275467pt;}
.y236{bottom:538.700800pt;}
.y1d0{bottom:540.636800pt;}
.y199{bottom:541.356400pt;}
.y1ed{bottom:542.660800pt;}
.y14f{bottom:542.695467pt;}
.y123{bottom:542.702267pt;}
.y82{bottom:545.124800pt;}
.ya3{bottom:546.664800pt;}
.y175{bottom:548.588533pt;}
.y176{bottom:549.504533pt;}
.y125{bottom:550.036267pt;}
.y103{bottom:552.472267pt;}
.ybf{bottom:553.088800pt;}
.y20e{bottom:555.230133pt;}
.y5a{bottom:555.288800pt;}
.ye3{bottom:555.611467pt;}
.y1af{bottom:555.948800pt;}
.y235{bottom:556.300800pt;}
.y178{bottom:556.838533pt;}
.y1cf{bottom:558.310133pt;}
.y198{bottom:558.692400pt;}
.yc{bottom:559.892533pt;}
.y1ec{bottom:559.996800pt;}
.y14e{bottom:560.031467pt;}
.y11f{bottom:561.056000pt;}
.y81{bottom:562.255467pt;}
.ya2{bottom:564.000800pt;}
.y174{bottom:564.588533pt;}
.y102{bottom:569.797600pt;}
.ybe{bottom:570.424800pt;}
.y122{bottom:572.078267pt;}
.y34{bottom:572.367467pt;}
.y20d{bottom:572.830133pt;}
.y59{bottom:572.962133pt;}
.ye2{bottom:573.284800pt;}
.y1ae{bottom:573.622133pt;}
.y234{bottom:573.900800pt;}
.y1ce{bottom:575.983467pt;}
.y197{bottom:576.028400pt;}
.y1eb{bottom:577.332800pt;}
.y14d{bottom:577.351467pt;}
.y177{bottom:578.435200pt;}
.y80{bottom:579.386133pt;}
.y120{bottom:579.404000pt;}
.yb{bottom:581.225867pt;}
.ya1{bottom:581.336800pt;}
.y121{bottom:586.742267pt;}
.y101{bottom:587.133600pt;}
.ybd{bottom:587.760800pt;}
.y20c{bottom:590.430133pt;}
.y58{bottom:590.635467pt;}
.ye1{bottom:590.958133pt;}
.y1ad{bottom:591.295467pt;}
.y233{bottom:591.500800pt;}
.y196{bottom:593.364400pt;}
.y1cd{bottom:593.656800pt;}
.y1ea{bottom:594.668800pt;}
.y14c{bottom:594.687467pt;}
.y7f{bottom:596.516800pt;}
.ya0{bottom:598.672800pt;}
.y173{bottom:600.020000pt;}
.ya{bottom:602.559200pt;}
.y171{bottom:602.574667pt;}
.y172{bottom:603.490667pt;}
.y100{bottom:604.469600pt;}
.ybc{bottom:605.096800pt;}
.y20b{bottom:608.030133pt;}
.y57{bottom:608.308800pt;}
.ye0{bottom:608.631467pt;}
.y1ac{bottom:608.968800pt;}
.y232{bottom:609.100800pt;}
.y195{bottom:610.697733pt;}
.y1cc{bottom:611.330133pt;}
.y258{bottom:611.740800pt;}
.y1e9{bottom:612.004800pt;}
.y14b{bottom:612.023467pt;}
.y7e{bottom:613.647467pt;}
.y11e{bottom:615.582267pt;}
.y170{bottom:618.574667pt;}
.yff{bottom:621.805600pt;}
.y33{bottom:622.034133pt;}
.y194{bottom:623.193147pt;}
.y9{bottom:623.892533pt;}
.y20a{bottom:625.630133pt;}
.y56{bottom:625.982133pt;}
.ydf{bottom:626.304800pt;}
.y1ab{bottom:626.642133pt;}
.y231{bottom:626.700800pt;}
.y193{bottom:628.006133pt;}
.y1cb{bottom:629.003467pt;}
.y257{bottom:629.076800pt;}
.y1e8{bottom:629.340800pt;}
.y14a{bottom:629.359467pt;}
.y7d{bottom:630.778133pt;}
.y11d{bottom:631.582267pt;}
.y9f{bottom:634.679467pt;}
.ybb{bottom:637.554133pt;}
.y32{bottom:638.034133pt;}
.yfe{bottom:639.138933pt;}
.y16f{bottom:643.214267pt;}
.y209{bottom:643.230133pt;}
.y55{bottom:643.655467pt;}
.yde{bottom:643.978133pt;}
.y230{bottom:644.300800pt;}
.y1aa{bottom:644.315467pt;}
.y192{bottom:645.342133pt;}
.y256{bottom:646.412800pt;}
.y1ca{bottom:646.676800pt;}
.y149{bottom:646.695467pt;}
.y7c{bottom:647.908800pt;}
.yfd{bottom:656.472267pt;}
.y16b{bottom:656.560933pt;}
.y16c{bottom:657.476933pt;}
.y31{bottom:659.700800pt;}
.y208{bottom:660.830133pt;}
.y54{bottom:661.328800pt;}
.ydd{bottom:661.651467pt;}
.y22f{bottom:661.900800pt;}
.y1a9{bottom:661.988800pt;}
.y8{bottom:662.559200pt;}
.y11c{bottom:662.678133pt;}
.y255{bottom:663.748800pt;}
.y1c9{bottom:664.012800pt;}
.y148{bottom:664.031467pt;}
.y16e{bottom:664.810933pt;}
.y7b{bottom:665.039467pt;}
.y9e{bottom:670.686133pt;}
.y16a{bottom:672.560933pt;}
.yfc{bottom:673.795467pt;}
.y30{bottom:675.700800pt;}
.y207{bottom:678.430133pt;}
.y53{bottom:679.002133pt;}
.ydc{bottom:679.324800pt;}
.y22e{bottom:679.500800pt;}
.y1a8{bottom:679.662133pt;}
.y11b{bottom:680.014133pt;}
.y254{bottom:681.084800pt;}
.yba{bottom:681.348800pt;}
.y147{bottom:681.356800pt;}
.y7a{bottom:682.170133pt;}
.y16d{bottom:686.407600pt;}
.y7{bottom:686.559200pt;}
.y2f{bottom:691.700800pt;}
.y206{bottom:696.030133pt;}
.y52{bottom:696.675467pt;}
.ydb{bottom:696.998133pt;}
.y22d{bottom:697.100800pt;}
.y1a7{bottom:697.335467pt;}
.y11a{bottom:697.350133pt;}
.y253{bottom:698.420800pt;}
.yb9{bottom:698.684800pt;}
.y146{bottom:698.692800pt;}
.y79{bottom:699.300800pt;}
.y2e{bottom:707.700800pt;}
.y168{bottom:707.998533pt;}
.y205{bottom:713.630133pt;}
.y51{bottom:714.348800pt;}
.yda{bottom:714.671467pt;}
.y119{bottom:714.686133pt;}
.y22c{bottom:714.700800pt;}
.y1a6{bottom:715.008800pt;}
.y167{bottom:715.329067pt;}
.y252{bottom:715.756800pt;}
.y9d{bottom:716.020800pt;}
.y145{bottom:716.028800pt;}
.y78{bottom:716.431467pt;}
.y169{bottom:722.666533pt;}
.y2d{bottom:723.700800pt;}
.y6{bottom:727.887200pt;}
.y204{bottom:731.230133pt;}
.y50{bottom:732.022133pt;}
.y22b{bottom:732.300800pt;}
.yd9{bottom:732.344800pt;}
.y1a5{bottom:732.682133pt;}
.y251{bottom:733.092800pt;}
.y9c{bottom:733.356800pt;}
.y144{bottom:733.364800pt;}
.y163{bottom:733.463733pt;}
.y77{bottom:733.562133pt;}
.y2c{bottom:739.700800pt;}
.y166{bottom:744.259733pt;}
.y203{bottom:748.830133pt;}
.y4f{bottom:749.358133pt;}
.y22a{bottom:749.900800pt;}
.yd8{bottom:750.018133pt;}
.y1a4{bottom:750.355467pt;}
.y250{bottom:750.428800pt;}
.y76{bottom:750.692800pt;}
.y164{bottom:751.589733pt;}
.y2b{bottom:755.700800pt;}
.y165{bottom:758.927733pt;}
.y5{bottom:759.889867pt;}
.y202{bottom:766.430133pt;}
.y4e{bottom:766.694133pt;}
.y229{bottom:767.500800pt;}
.yd7{bottom:767.691467pt;}
.y24f{bottom:767.764800pt;}
.y75{bottom:768.028800pt;}
.y2a{bottom:771.700800pt;}
.y228{bottom:785.100800pt;}
.y74{bottom:785.364800pt;}
.y29{bottom:787.700800pt;}
.y4{bottom:791.892533pt;}
.y4d{bottom:802.700800pt;}
.y28{bottom:803.700800pt;}
.y26{bottom:838.971733pt;}
.y3{bottom:846.027467pt;}
.y2{bottom:860.694133pt;}
.hc{height:17.246667pt;}
.hb{height:23.031250pt;}
.h7{height:23.396354pt;}
.hd{height:32.250000pt;}
.h2{height:32.270833pt;}
.h1d{height:35.187500pt;}
.h19{height:35.414062pt;}
.h2a{height:36.458333pt;}
.h15{height:36.953125pt;}
.h25{height:37.381510pt;}
.h17{height:38.799844pt;}
.ha{height:39.348958pt;}
.h16{height:39.585938pt;}
.h10{height:40.104167pt;}
.h3{height:40.338542pt;}
.h9{height:40.420796pt;}
.h23{height:40.955391pt;}
.h22{height:41.785156pt;}
.hf{height:43.283854pt;}
.h8{height:43.984375pt;}
.he{height:48.382812pt;}
.h11{height:48.393479pt;}
.h1e{height:48.404146pt;}
.h13{height:48.409479pt;}
.h1f{height:48.414813pt;}
.h14{height:48.425479pt;}
.h20{height:48.446813pt;}
.h21{height:48.516679pt;}
.h12{height:48.793479pt;}
.h6{height:57.394896pt;}
.h5{height:64.666667pt;}
.h1a{height:64.742062pt;}
.h26{height:66.717510pt;}
.h29{height:67.745159pt;}
.h18{height:68.913937pt;}
.h24{height:71.121156pt;}
.h1c{height:71.601938pt;}
.h4{height:88.744792pt;}
.h1b{height:103.617938pt;}
.h27{height:104.121156pt;}
.h28{height:114.289156pt;}
.h0{height:909.291733pt;}
.h1{height:909.333333pt;}
.w2{width:494.672133pt;}
.w1{width:644.666667pt;}
.w0{width:644.725067pt;}
.x0{left:0.000000pt;}
.x4{left:14.435600pt;}
.x7{left:56.601467pt;}
.x5{left:75.026267pt;}
.x1{left:76.692933pt;}
.x21{left:80.687067pt;}
.x13{left:82.211467pt;}
.x2{left:96.115467pt;}
.x8{left:99.375333pt;}
.xa{left:103.429067pt;}
.x9{left:120.701200pt;}
.xf{left:166.835467pt;}
.x1d{left:170.180400pt;}
.x6{left:175.664000pt;}
.xb{left:183.289067pt;}
.x19{left:185.275200pt;}
.x10{left:196.751467pt;}
.x1e{left:202.048800pt;}
.x18{left:256.871467pt;}
.x14{left:258.299467pt;}
.x20{left:262.443467pt;}
.x12{left:264.359467pt;}
.x1f{left:272.842800pt;}
.x11{left:274.211467pt;}
.x1a{left:350.866533pt;}
.xc{left:357.301067pt;}
.x23{left:382.640800pt;}
.x16{left:386.507467pt;}
.x24{left:389.304080pt;}
.x3{left:393.000800pt;}
.x1c{left:409.061067pt;}
.x1b{left:410.581067pt;}
.xe{left:412.655467pt;}
.xd{left:414.095467pt;}
.x22{left:426.201467pt;}
.x17{left:427.943467pt;}
.x15{left:434.051467pt;}
}




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