
    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_2ac06db63449f1acd240bc71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_0cec53987c3dbfeb4bf68bb7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_978f5a7b22c3ef8d64460443.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_f2c241a664687830fd881509.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_31f1f55eeb5dd8d46d048865.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_1a488c345a820faf38d34e13.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_c90c69267cf0fe1cd67a8c12.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_878270a9fd382ced40214b64.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.701000;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_890fa703ff3075313e978b1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.588000;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_d9f08baacbac6d460632d096.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6f51b503a68604f1bbb63543.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.120000;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_7b1d0a4b40982aae8233a3b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888000;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_46570ea87c1bbbc73660b6bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.748047;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_0d25891b154cb3731b7726f7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.144000;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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400009px;}
.v5{vertical-align:-18.600037px;}
.v4{vertical-align:-15.018723px;}
.v3{vertical-align:-3.600037px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.000000px;}
.v1{vertical-align:24.000000px;}
.ls1a{letter-spacing:-0.480000px;}
.ls2e{letter-spacing:-0.420000px;}
.ls7d{letter-spacing:-0.408000px;}
.ls19{letter-spacing:-0.360000px;}
.ls6d{letter-spacing:-0.357000px;}
.ls7a{letter-spacing:-0.306000px;}
.ls17{letter-spacing:-0.300000px;}
.ls79{letter-spacing:-0.255000px;}
.ls16{letter-spacing:-0.240000px;}
.ls6e{letter-spacing:-0.204000px;}
.ls14{letter-spacing:-0.180000px;}
.ls7c{letter-spacing:-0.153000px;}
.ls15{letter-spacing:-0.120000px;}
.ls6f{letter-spacing:-0.102000px;}
.ls18{letter-spacing:-0.060000px;}
.ls7b{letter-spacing:-0.051000px;}
.ls13{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000088px;}
.ls73{letter-spacing:0.025500px;}
.ls59{letter-spacing:0.030000px;}
.ls64{letter-spacing:0.051000px;}
.ls45{letter-spacing:0.055206px;}
.lsb{letter-spacing:0.060000px;}
.ls3b{letter-spacing:0.067795px;}
.ls6c{letter-spacing:0.076500px;}
.ls5b{letter-spacing:0.102000px;}
.ls4{letter-spacing:0.120000px;}
.ls5c{letter-spacing:0.153000px;}
.ls11{letter-spacing:0.178791px;}
.ls21{letter-spacing:0.180000px;}
.ls61{letter-spacing:0.204000px;}
.ls34{letter-spacing:0.210000px;}
.ls39{letter-spacing:0.210022px;}
.lsa{letter-spacing:0.210025px;}
.ls44{letter-spacing:0.210754px;}
.ls75{letter-spacing:0.229500px;}
.ls2{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.255000px;}
.ls63{letter-spacing:0.264000px;}
.ls5a{letter-spacing:0.270000px;}
.ls33{letter-spacing:0.282000px;}
.ls66{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.299238px;}
.ls37{letter-spacing:0.299385px;}
.ls3{letter-spacing:0.300000px;}
.ls70{letter-spacing:0.306000px;}
.ls65{letter-spacing:0.357000px;}
.ls23{letter-spacing:0.360000px;}
.ls42{letter-spacing:0.378000px;}
.ls7{letter-spacing:0.420000px;}
.ls5d{letter-spacing:0.459000px;}
.ls5{letter-spacing:0.480000px;}
.ls58{letter-spacing:0.510000px;}
.lsf{letter-spacing:0.540000px;}
.ls3d{letter-spacing:0.553810px;}
.ls69{letter-spacing:0.561000px;}
.ls6a{letter-spacing:0.586500px;}
.lsd{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.612000px;}
.ls46{letter-spacing:0.628235px;}
.ls25{letter-spacing:0.630000px;}
.ls1f{letter-spacing:0.660000px;}
.ls5f{letter-spacing:0.663000px;}
.ls43{letter-spacing:0.687012px;}
.ls57{letter-spacing:0.690000px;}
.ls68{letter-spacing:0.714000px;}
.ls36{letter-spacing:0.718226px;}
.ls8{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.756000px;}
.ls3a{letter-spacing:0.756184px;}
.ls67{letter-spacing:0.765000px;}
.lsc{letter-spacing:0.780000px;}
.ls1e{letter-spacing:0.810000px;}
.ls6b{letter-spacing:0.816000px;}
.ls27{letter-spacing:0.840000px;}
.ls72{letter-spacing:0.867000px;}
.ls4d{letter-spacing:0.870000px;}
.ls20{letter-spacing:0.900000px;}
.ls54{letter-spacing:0.930000px;}
.ls77{letter-spacing:0.943500px;}
.ls10{letter-spacing:0.960000px;}
.ls5e{letter-spacing:0.969000px;}
.ls22{letter-spacing:0.990000px;}
.ls26{letter-spacing:1.020000px;}
.ls71{letter-spacing:1.071000px;}
.lse{letter-spacing:1.080000px;}
.ls78{letter-spacing:1.096500px;}
.ls3c{letter-spacing:1.100416px;}
.ls2c{letter-spacing:1.140000px;}
.ls74{letter-spacing:1.173000px;}
.ls24{letter-spacing:1.200000px;}
.ls9{letter-spacing:1.230000px;}
.ls6{letter-spacing:1.260000px;}
.ls60{letter-spacing:1.275000px;}
.ls30{letter-spacing:1.320000px;}
.ls52{letter-spacing:1.380000px;}
.ls49{letter-spacing:1.381760px;}
.ls56{letter-spacing:1.410000px;}
.ls4c{letter-spacing:1.440000px;}
.ls2d{letter-spacing:1.470000px;}
.ls1d{letter-spacing:1.500000px;}
.ls29{letter-spacing:1.560000px;}
.ls76{letter-spacing:1.581000px;}
.ls53{letter-spacing:1.590000px;}
.ls1c{letter-spacing:1.620000px;}
.ls32{letter-spacing:1.650000px;}
.ls1b{letter-spacing:1.680000px;}
.ls50{letter-spacing:1.740000px;}
.ls47{letter-spacing:1.800000px;}
.ls31{letter-spacing:1.860000px;}
.ls2a{letter-spacing:1.920000px;}
.ls2f{letter-spacing:1.980000px;}
.ls4f{letter-spacing:2.040000px;}
.ls48{letter-spacing:2.160000px;}
.ls4a{letter-spacing:2.220000px;}
.ls35{letter-spacing:2.250000px;}
.ls51{letter-spacing:2.280000px;}
.ls28{letter-spacing:2.340000px;}
.ls55{letter-spacing:2.400000px;}
.ls4b{letter-spacing:2.520000px;}
.ls4e{letter-spacing:2.550000px;}
.ls2b{letter-spacing:2.580000px;}
.ls0{letter-spacing:3.990000px;}
.ls3e{letter-spacing:16.314547px;}
.ls3f{letter-spacing:16.316326px;}
.ls40{letter-spacing:16.370348px;}
.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;}
}
.ws40{word-spacing:-15.720000px;}
.ws54{word-spacing:-15.300000px;}
.ws68{word-spacing:-15.120000px;}
.ws56{word-spacing:-15.000000px;}
.ws85{word-spacing:-14.832000px;}
.ws6{word-spacing:-14.820000px;}
.ws5{word-spacing:-14.544000px;}
.ws82{word-spacing:-13.005000px;}
.ws84{word-spacing:-12.852000px;}
.ws65{word-spacing:-12.750000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws63{word-spacing:-11.256000px;}
.ws64{word-spacing:-10.878000px;}
.ws55{word-spacing:-10.710000px;}
.ws6c{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.ws83{word-spacing:-9.945000px;}
.ws7{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws62{word-spacing:-6.375000px;}
.wsa{word-spacing:-1.500000px;}
.ws2a{word-spacing:-1.440000px;}
.ws51{word-spacing:-1.380000px;}
.wsac{word-spacing:-1.326000px;}
.ws19{word-spacing:-1.320000px;}
.ws88{word-spacing:-1.275000px;}
.ws99{word-spacing:-1.224000px;}
.ws42{word-spacing:-1.140000px;}
.ws2e{word-spacing:-1.080000px;}
.ws90{word-spacing:-1.071000px;}
.wsd{word-spacing:-1.020000px;}
.ws87{word-spacing:-0.969000px;}
.ws25{word-spacing:-0.960000px;}
.ws86{word-spacing:-0.900000px;}
.ws5b{word-spacing:-0.840000px;}
.ws28{word-spacing:-0.780000px;}
.ws91{word-spacing:-0.765000px;}
.ws11{word-spacing:-0.720000px;}
.ws92{word-spacing:-0.714000px;}
.ws9d{word-spacing:-0.663000px;}
.ws61{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.612000px;}
.ws72{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.570000px;}
.ws1a{word-spacing:-0.540000px;}
.ws35{word-spacing:-0.480000px;}
.wse{word-spacing:-0.420000px;}
.ws96{word-spacing:-0.408000px;}
.ws1e{word-spacing:-0.360000px;}
.wsad{word-spacing:-0.357000px;}
.ws14{word-spacing:-0.300000px;}
.ws48{word-spacing:-0.282000px;}
.ws8e{word-spacing:-0.264000px;}
.ws22{word-spacing:-0.255000px;}
.wsf{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.180000px;}
.ws33{word-spacing:-0.120000px;}
.ws97{word-spacing:-0.102000px;}
.ws57{word-spacing:-0.060015px;}
.ws69{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws93{word-spacing:0.051000px;}
.ws10{word-spacing:0.060000px;}
.ws4d{word-spacing:0.120000px;}
.wsa9{word-spacing:0.153000px;}
.ws7a{word-spacing:0.180000px;}
.ws5e{word-spacing:0.240000px;}
.ws7d{word-spacing:0.300000px;}
.ws9e{word-spacing:0.306000px;}
.ws9c{word-spacing:0.357000px;}
.ws17{word-spacing:0.360000px;}
.ws32{word-spacing:0.420000px;}
.ws45{word-spacing:0.480000px;}
.ws71{word-spacing:0.540000px;}
.ws9a{word-spacing:0.561000px;}
.ws46{word-spacing:0.600000px;}
.ws5a{word-spacing:0.660000px;}
.ws59{word-spacing:0.720000px;}
.ws7c{word-spacing:0.780000px;}
.wsb{word-spacing:0.900000px;}
.ws78{word-spacing:0.960000px;}
.ws8d{word-spacing:0.969000px;}
.ws1d{word-spacing:1.020000px;}
.ws4e{word-spacing:1.080000px;}
.ws15{word-spacing:1.140000px;}
.ws8f{word-spacing:1.173000px;}
.ws1b{word-spacing:1.200000px;}
.ws41{word-spacing:1.260000px;}
.ws89{word-spacing:1.275000px;}
.ws3f{word-spacing:1.320000px;}
.ws2b{word-spacing:1.380000px;}
.ws7e{word-spacing:1.440000px;}
.ws8b{word-spacing:1.479000px;}
.wsc{word-spacing:1.500000px;}
.ws6d{word-spacing:1.560000px;}
.wsa2{word-spacing:1.581000px;}
.ws3e{word-spacing:1.620000px;}
.ws95{word-spacing:1.632000px;}
.ws6b{word-spacing:1.680000px;}
.ws23{word-spacing:1.740000px;}
.ws2c{word-spacing:1.800000px;}
.ws94{word-spacing:1.836000px;}
.ws9b{word-spacing:1.887000px;}
.ws6a{word-spacing:1.920000px;}
.ws3b{word-spacing:1.980000px;}
.ws47{word-spacing:2.040000px;}
.wsaf{word-spacing:2.091000px;}
.ws44{word-spacing:2.100000px;}
.wsa5{word-spacing:2.142000px;}
.ws4c{word-spacing:2.160000px;}
.ws98{word-spacing:2.193000px;}
.ws70{word-spacing:2.220000px;}
.ws9f{word-spacing:2.244000px;}
.ws31{word-spacing:2.280000px;}
.wsa3{word-spacing:2.295000px;}
.ws53{word-spacing:2.340000px;}
.wsa1{word-spacing:2.397000px;}
.ws2f{word-spacing:2.400000px;}
.ws5f{word-spacing:2.460000px;}
.ws6e{word-spacing:2.520000px;}
.ws1c{word-spacing:2.580000px;}
.ws34{word-spacing:2.640000px;}
.ws30{word-spacing:2.700000px;}
.ws39{word-spacing:2.760000px;}
.wsa7{word-spacing:2.805000px;}
.wsae{word-spacing:2.856000px;}
.ws60{word-spacing:2.880000px;}
.ws49{word-spacing:2.940000px;}
.ws36{word-spacing:3.000000px;}
.ws8a{word-spacing:3.009000px;}
.ws27{word-spacing:3.060000px;}
.ws18{word-spacing:3.120000px;}
.ws2d{word-spacing:3.180000px;}
.wsab{word-spacing:3.213000px;}
.ws52{word-spacing:3.240000px;}
.ws1f{word-spacing:3.300000px;}
.ws43{word-spacing:3.360000px;}
.wsa0{word-spacing:3.366000px;}
.wsaa{word-spacing:3.417000px;}
.ws74{word-spacing:3.420000px;}
.ws4f{word-spacing:3.480000px;}
.wsa8{word-spacing:3.570000px;}
.ws5d{word-spacing:3.600000px;}
.ws37{word-spacing:3.720000px;}
.ws38{word-spacing:3.780000px;}
.wsa4{word-spacing:3.825000px;}
.ws16{word-spacing:3.840000px;}
.ws4b{word-spacing:3.900000px;}
.ws4a{word-spacing:3.960000px;}
.ws12{word-spacing:4.080000px;}
.ws79{word-spacing:4.140000px;}
.ws7b{word-spacing:4.260000px;}
.ws6f{word-spacing:4.320000px;}
.ws8c{word-spacing:4.335000px;}
.ws73{word-spacing:4.380000px;}
.ws50{word-spacing:4.500000px;}
.ws75{word-spacing:4.560000px;}
.ws80{word-spacing:4.620000px;}
.ws7f{word-spacing:4.800000px;}
.ws77{word-spacing:4.980000px;}
.ws3c{word-spacing:5.220000px;}
.ws29{word-spacing:5.340000px;}
.ws81{word-spacing:5.400000px;}
.ws26{word-spacing:5.700000px;}
.wsa6{word-spacing:5.967000px;}
.ws3a{word-spacing:6.180000px;}
.ws24{word-spacing:6.300000px;}
.ws3d{word-spacing:6.600000px;}
.ws5c{word-spacing:8.940000px;}
.ws76{word-spacing:10.320000px;}
.wsb0{word-spacing:13.515000px;}
.wsb1{word-spacing:17.595000px;}
.ws20{word-spacing:72.267000px;}
.ws67{word-spacing:195.636000px;}
.ws66{word-spacing:232.560000px;}
.ws58{word-spacing:691.305000px;}
._b{margin-left:-2959.376944px;}
._7{margin-left:-96.900000px;}
._22{margin-left:-20.580000px;}
._f{margin-left:-19.260025px;}
._17{margin-left:-18.086414px;}
._4{margin-left:-16.575000px;}
._21{margin-left:-14.760000px;}
._20{margin-left:-12.516000px;}
._a{margin-left:-8.238000px;}
._25{margin-left:-5.661000px;}
._1{margin-left:-4.622700px;}
._3{margin-left:-2.862000px;}
._0{margin-left:-1.632000px;}
._2{width:1.386000px;}
._9{width:2.520000px;}
._23{width:3.564000px;}
._d{width:4.602000px;}
._24{width:12.341990px;}
._16{width:14.316000px;}
._e{width:15.606000px;}
._5{width:18.360000px;}
._c{width:35.207373px;}
._14{width:38.817000px;}
._6{width:54.621000px;}
._18{width:121.533000px;}
._1e{width:265.556993px;}
._1d{width:283.560000px;}
._1c{width:292.944000px;}
._19{width:318.036000px;}
._1f{width:356.489993px;}
._10{width:491.181000px;}
._1a{width:576.809977px;}
._11{width:622.353000px;}
._15{width:625.413000px;}
._12{width:629.289000px;}
._1b{width:659.225986px;}
._13{width:724.455000px;}
._8{width:2187.032927px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs8{font-size:56.399998px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:60.014997px;}
.fsb{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:3.870438px;}
.y101{bottom:5.970520px;}
.y1{bottom:68.829002px;}
.y33{bottom:112.938300px;}
.y11c{bottom:113.089806px;}
.y74{bottom:113.415298px;}
.y69{bottom:113.415344px;}
.yae{bottom:113.509804px;}
.y130{bottom:113.929802px;}
.y14f{bottom:114.132294px;}
.y10d{bottom:114.169796px;}
.y19a{bottom:114.312294px;}
.y199{bottom:129.306294px;}
.y73{bottom:132.165298px;}
.y68{bottom:132.165344px;}
.y14e{bottom:132.882294px;}
.y32{bottom:133.032303px;}
.y163{bottom:133.485260px;}
.y2d{bottom:141.211349px;}
.y198{bottom:144.300294px;}
.y31{bottom:150.485553px;}
.y72{bottom:150.915298px;}
.y67{bottom:150.915344px;}
.y14d{bottom:151.632294px;}
.y162{bottom:152.235260px;}
.y197{bottom:159.294294px;}
.y2c{bottom:159.961349px;}
.y71{bottom:169.665298px;}
.y66{bottom:169.665344px;}
.y14c{bottom:170.382294px;}
.y30{bottom:170.579556px;}
.y161{bottom:170.985260px;}
.y196{bottom:174.288294px;}
.y2b{bottom:178.711349px;}
.y70{bottom:188.415298px;}
.y65{bottom:188.415344px;}
.y14b{bottom:189.132294px;}
.y195{bottom:189.282294px;}
.y160{bottom:189.735260px;}
.y2f{bottom:195.580059px;}
.y2a{bottom:197.461349px;}
.y194{bottom:204.276294px;}
.y6f{bottom:207.165298px;}
.y64{bottom:207.165344px;}
.y14a{bottom:207.882294px;}
.y15f{bottom:208.485260px;}
.y2e{bottom:210.574059px;}
.y29{bottom:216.211349px;}
.y193{bottom:219.270294px;}
.y6e{bottom:225.915298px;}
.y63{bottom:225.915344px;}
.y149{bottom:226.632294px;}
.y15e{bottom:227.235260px;}
.y192{bottom:234.264294px;}
.y28{bottom:234.961349px;}
.y6d{bottom:244.665298px;}
.y62{bottom:244.665344px;}
.y148{bottom:245.382294px;}
.y15d{bottom:245.985260px;}
.y191{bottom:249.258294px;}
.y26{bottom:253.711349px;}
.y6c{bottom:263.415298px;}
.y61{bottom:263.415344px;}
.y147{bottom:264.132294px;}
.y190{bottom:264.252294px;}
.y15c{bottom:264.735260px;}
.y25{bottom:272.461349px;}
.y18f{bottom:279.246294px;}
.y6b{bottom:282.165298px;}
.y60{bottom:282.165344px;}
.y146{bottom:282.882294px;}
.y15b{bottom:283.485260px;}
.y24{bottom:291.211349px;}
.y18e{bottom:294.240294px;}
.y5f{bottom:300.915344px;}
.y145{bottom:301.632294px;}
.y15a{bottom:302.235260px;}
.y18d{bottom:309.234294px;}
.y23{bottom:309.961349px;}
.y6a{bottom:319.665298px;}
.y5e{bottom:319.665344px;}
.y144{bottom:320.382294px;}
.y159{bottom:320.985260px;}
.y18c{bottom:324.228294px;}
.y22{bottom:328.711349px;}
.y5d{bottom:338.415344px;}
.y143{bottom:339.132294px;}
.y18b{bottom:339.222294px;}
.y158{bottom:339.735260px;}
.y21{bottom:347.461349px;}
.y18a{bottom:354.216294px;}
.y5c{bottom:357.165344px;}
.y142{bottom:357.882294px;}
.y157{bottom:358.485260px;}
.y20{bottom:366.211349px;}
.y189{bottom:369.210294px;}
.y5b{bottom:375.915344px;}
.y141{bottom:376.632294px;}
.y156{bottom:377.235260px;}
.y188{bottom:384.204294px;}
.y1f{bottom:384.961349px;}
.yf0{bottom:388.900524px;}
.y5a{bottom:394.665344px;}
.y140{bottom:395.382294px;}
.y155{bottom:395.985260px;}
.y12e{bottom:396.124786px;}
.y187{bottom:399.198294px;}
.y1e{bottom:403.711349px;}
.yef{bottom:403.894524px;}
.y133{bottom:404.095783px;}
.y59{bottom:413.415344px;}
.y13f{bottom:414.132294px;}
.y186{bottom:414.192294px;}
.y154{bottom:414.735260px;}
.y12d{bottom:414.874786px;}
.yee{bottom:418.888524px;}
.y132{bottom:419.089783px;}
.y1d{bottom:422.461349px;}
.y185{bottom:429.186294px;}
.y58{bottom:432.165344px;}
.y13e{bottom:432.882294px;}
.y153{bottom:433.485260px;}
.y12c{bottom:433.624786px;}
.y1c{bottom:441.211349px;}
.y184{bottom:444.180294px;}
.y57{bottom:450.915344px;}
.y13d{bottom:451.632294px;}
.y152{bottom:452.235260px;}
.y12b{bottom:452.374786px;}
.y183{bottom:459.174294px;}
.y1b{bottom:459.961349px;}
.y1c5{bottom:461.476823px;}
.y56{bottom:469.665344px;}
.y13c{bottom:470.382294px;}
.y131{bottom:470.985260px;}
.y12a{bottom:471.124786px;}
.yc5{bottom:471.124969px;}
.y182{bottom:474.168294px;}
.y1c4{bottom:476.470823px;}
.y27{bottom:478.711349px;}
.y10c{bottom:479.148135px;}
.ye1{bottom:485.160461px;}
.y55{bottom:488.415344px;}
.y13b{bottom:489.132294px;}
.y181{bottom:489.162294px;}
.y11b{bottom:489.735260px;}
.yad{bottom:489.735306px;}
.y129{bottom:489.874786px;}
.yc4{bottom:489.874969px;}
.y1c3{bottom:491.464823px;}
.y10b{bottom:494.142135px;}
.y1a{bottom:497.461349px;}
.ye0{bottom:503.910461px;}
.y180{bottom:504.156294px;}
.y1c2{bottom:506.458823px;}
.y54{bottom:507.165344px;}
.y13a{bottom:507.882294px;}
.y11a{bottom:508.485260px;}
.y94{bottom:508.485306px;}
.y128{bottom:508.624786px;}
.yc3{bottom:508.624969px;}
.y10a{bottom:512.935635px;}
.y17f{bottom:519.150294px;}
.y1c1{bottom:521.452823px;}
.ydf{bottom:522.660461px;}
.y53{bottom:525.915344px;}
.y139{bottom:526.632294px;}
.y119{bottom:527.235260px;}
.y93{bottom:527.235306px;}
.y127{bottom:527.374786px;}
.yc2{bottom:527.374969px;}
.y109{bottom:527.929635px;}
.y17e{bottom:534.144294px;}
.y1c0{bottom:536.446823px;}
.y1ea{bottom:536.599808px;}
.yde{bottom:541.410461px;}
.y52{bottom:544.665344px;}
.y138{bottom:545.382294px;}
.y118{bottom:545.985260px;}
.yac{bottom:545.985306px;}
.y126{bottom:546.124786px;}
.yc1{bottom:546.124969px;}
.y108{bottom:546.646635px;}
.y92{bottom:546.885315px;}
.y17d{bottom:549.138294px;}
.y1bf{bottom:551.440823px;}
.y1e9{bottom:551.593808px;}
.y19{bottom:553.711395px;}
.y107{bottom:561.640635px;}
.y51{bottom:563.415344px;}
.y137{bottom:564.132294px;}
.y117{bottom:564.735260px;}
.y91{bottom:564.735306px;}
.y125{bottom:564.874786px;}
.yc0{bottom:564.874969px;}
.y1be{bottom:566.434823px;}
.y18{bottom:572.461395px;}
.ydd{bottom:579.810471px;}
.y1bd{bottom:581.428823px;}
.y1e8{bottom:581.683807px;}
.y50{bottom:582.165344px;}
.y136{bottom:582.882294px;}
.y116{bottom:583.485260px;}
.y90{bottom:583.485306px;}
.y124{bottom:583.624786px;}
.ybf{bottom:583.624969px;}
.y106{bottom:589.728885px;}
.y17{bottom:591.211395px;}
.y1bc{bottom:596.422823px;}
.y1e7{bottom:596.677807px;}
.y17c{bottom:597.882294px;}
.ydc{bottom:598.560471px;}
.y4f{bottom:600.915344px;}
.y135{bottom:601.632294px;}
.y115{bottom:602.235260px;}
.yab{bottom:602.235306px;}
.y123{bottom:602.374786px;}
.ybe{bottom:602.374969px;}
.y8f{bottom:603.135315px;}
.y105{bottom:604.722885px;}
.y16{bottom:609.961395px;}
.y1bb{bottom:611.416823px;}
.y1e6{bottom:611.671807px;}
.ydb{bottom:617.310471px;}
.y4e{bottom:619.665344px;}
.y134{bottom:620.382294px;}
.y114{bottom:620.985260px;}
.y8e{bottom:620.985306px;}
.y122{bottom:621.124786px;}
.ybd{bottom:621.124969px;}
.y1ba{bottom:626.410823px;}
.y1e5{bottom:626.665807px;}
.y15{bottom:628.711395px;}
.y104{bottom:630.213455px;}
.yda{bottom:636.060471px;}
.y4d{bottom:638.415344px;}
.y113{bottom:639.735260px;}
.y8d{bottom:639.735306px;}
.y121{bottom:639.874786px;}
.ybc{bottom:639.874969px;}
.y1b9{bottom:641.404823px;}
.y1e4{bottom:641.659807px;}
.y14{bottom:647.461395px;}
.y1b8{bottom:656.398823px;}
.y1e3{bottom:656.653807px;}
.y4c{bottom:657.165344px;}
.y112{bottom:658.485260px;}
.yaa{bottom:658.485306px;}
.y120{bottom:658.624786px;}
.ybb{bottom:658.624969px;}
.y8c{bottom:659.385315px;}
.y13{bottom:666.211395px;}
.y17b{bottom:667.387088px;}
.y1b7{bottom:671.392823px;}
.y1e2{bottom:671.647807px;}
.yd9{bottom:672.660308px;}
.y4b{bottom:675.915344px;}
.y111{bottom:677.235260px;}
.y8b{bottom:677.235306px;}
.y11f{bottom:677.374786px;}
.yba{bottom:677.374969px;}
.y17a{bottom:682.381088px;}
.y12{bottom:684.961395px;}
.y1b6{bottom:686.386823px;}
.y1e1{bottom:686.641807px;}
.yfe{bottom:689.310425px;}
.y4a{bottom:694.665344px;}
.y110{bottom:695.985260px;}
.y8a{bottom:695.985306px;}
.y11e{bottom:696.124786px;}
.yb9{bottom:696.124969px;}
.y179{bottom:697.375088px;}
.ye3{bottom:700.785004px;}
.y1b5{bottom:701.380823px;}
.y1e0{bottom:701.635807px;}
.ye2{bottom:702.135461px;}
.y11{bottom:703.711395px;}
.ye5{bottom:704.655441px;}
.yfd{bottom:708.060425px;}
.y178{bottom:712.369088px;}
.y49{bottom:713.415344px;}
.y10f{bottom:714.735260px;}
.ya9{bottom:714.735306px;}
.y11d{bottom:714.874786px;}
.yb8{bottom:714.874969px;}
.y89{bottom:715.635315px;}
.y1b4{bottom:716.374823px;}
.y1df{bottom:716.629807px;}
.y10{bottom:722.461395px;}
.yfc{bottom:726.810425px;}
.y177{bottom:727.363088px;}
.y1b3{bottom:731.368823px;}
.y1de{bottom:731.623807px;}
.y48{bottom:732.165344px;}
.y10e{bottom:733.485260px;}
.ya8{bottom:733.485306px;}
.yb7{bottom:733.624969px;}
.yf{bottom:741.211395px;}
.y176{bottom:742.357088px;}
.yfb{bottom:745.560425px;}
.y1b2{bottom:746.362823px;}
.y1dd{bottom:746.617807px;}
.y47{bottom:750.915344px;}
.y88{bottom:752.235260px;}
.ya7{bottom:752.235306px;}
.yd8{bottom:752.239986px;}
.yb6{bottom:752.374969px;}
.y175{bottom:757.351088px;}
.ye{bottom:759.961395px;}
.y1b1{bottom:761.356823px;}
.y1dc{bottom:761.611807px;}
.yfa{bottom:764.310425px;}
.y46{bottom:769.665344px;}
.y87{bottom:770.985260px;}
.ya6{bottom:770.985306px;}
.yd7{bottom:770.989986px;}
.yb5{bottom:771.124969px;}
.y12f{bottom:771.910767px;}
.y174{bottom:772.345088px;}
.y1b0{bottom:776.350823px;}
.y1db{bottom:776.605807px;}
.yd{bottom:778.711395px;}
.yf9{bottom:783.060425px;}
.y173{bottom:787.339088px;}
.y45{bottom:788.415344px;}
.y86{bottom:789.735260px;}
.ya5{bottom:789.735306px;}
.yd6{bottom:789.739986px;}
.yb4{bottom:789.874969px;}
.y1af{bottom:791.344823px;}
.y1da{bottom:791.599807px;}
.yc{bottom:797.461395px;}
.yf8{bottom:801.810425px;}
.y172{bottom:802.333088px;}
.y1ae{bottom:806.338823px;}
.y1d9{bottom:806.593807px;}
.y44{bottom:807.165344px;}
.y85{bottom:808.485260px;}
.ya4{bottom:808.485306px;}
.yd5{bottom:808.489986px;}
.yb3{bottom:808.624969px;}
.yb{bottom:816.211395px;}
.y171{bottom:817.327088px;}
.yf7{bottom:820.560425px;}
.y1ad{bottom:821.332823px;}
.y1d8{bottom:821.587807px;}
.y43{bottom:825.915344px;}
.y84{bottom:827.235260px;}
.ya3{bottom:827.235306px;}
.yd4{bottom:827.239986px;}
.yb2{bottom:827.374969px;}
.y170{bottom:832.321088px;}
.y1ac{bottom:836.326823px;}
.y1d7{bottom:836.581807px;}
.yf6{bottom:839.310425px;}
.y42{bottom:844.665344px;}
.y83{bottom:845.985260px;}
.ya2{bottom:845.985306px;}
.yd3{bottom:845.989986px;}
.yb1{bottom:846.124969px;}
.y1ab{bottom:851.320823px;}
.y1d6{bottom:851.575807px;}
.ya{bottom:860.394153px;}
.y16f{bottom:862.321838px;}
.y41{bottom:863.415344px;}
.y82{bottom:864.735260px;}
.ya1{bottom:864.735306px;}
.yd2{bottom:864.739986px;}
.yb0{bottom:864.874969px;}
.y1aa{bottom:866.314823px;}
.y1d5{bottom:866.569807px;}
.y9{bottom:875.388153px;}
.yf5{bottom:876.810425px;}
.y1a9{bottom:881.308823px;}
.y1d4{bottom:881.563807px;}
.y40{bottom:882.165344px;}
.y81{bottom:883.485260px;}
.ya0{bottom:883.485306px;}
.yd1{bottom:883.489986px;}
.yaf{bottom:883.624969px;}
.y16e{bottom:892.321838px;}
.y1a8{bottom:896.302823px;}
.yf4{bottom:896.460480px;}
.y1d3{bottom:896.557807px;}
.y3f{bottom:900.915344px;}
.y80{bottom:902.235260px;}
.y9f{bottom:902.235306px;}
.yd0{bottom:902.239986px;}
.y1a7{bottom:911.296823px;}
.y1d2{bottom:911.551807px;}
.yf3{bottom:914.310425px;}
.y8{bottom:917.988190px;}
.y3e{bottom:919.665344px;}
.y7f{bottom:920.985260px;}
.y9e{bottom:920.985306px;}
.ycf{bottom:920.989986px;}
.y16d{bottom:926.112338px;}
.y1a6{bottom:926.290823px;}
.y1d1{bottom:926.545807px;}
.yf2{bottom:933.960480px;}
.y7{bottom:936.738190px;}
.y3d{bottom:938.415344px;}
.y7e{bottom:939.735260px;}
.y9d{bottom:939.735306px;}
.yce{bottom:939.739986px;}
.y16c{bottom:941.106338px;}
.y1a5{bottom:941.284823px;}
.y1d0{bottom:941.539807px;}
.yed{bottom:942.862524px;}
.y1a4{bottom:956.278823px;}
.y1cf{bottom:956.533807px;}
.y3c{bottom:957.165344px;}
.y7d{bottom:958.485260px;}
.y9c{bottom:958.485306px;}
.ycd{bottom:958.489986px;}
.yec{bottom:961.656024px;}
.yf1{bottom:970.560260px;}
.y16b{bottom:971.107088px;}
.y1a3{bottom:971.272823px;}
.y1ce{bottom:971.527807px;}
.y3b{bottom:975.915344px;}
.y7c{bottom:977.235260px;}
.y9b{bottom:977.235306px;}
.ycc{bottom:977.239986px;}
.yeb{bottom:980.373024px;}
.y6{bottom:981.424622px;}
.y16a{bottom:986.101088px;}
.y1a2{bottom:986.266823px;}
.y1cd{bottom:986.521807px;}
.y3a{bottom:994.665344px;}
.y7b{bottom:995.985260px;}
.y9a{bottom:995.985306px;}
.ycb{bottom:995.989986px;}
.y100{bottom:998.684967px;}
.yea{bottom:999.090024px;}
.y103{bottom:1000.915924px;}
.yff{bottom:1001.085423px;}
.y1a1{bottom:1001.260823px;}
.y1cc{bottom:1001.515807px;}
.y102{bottom:1004.655487px;}
.y5{bottom:1008.424622px;}
.y39{bottom:1013.415344px;}
.y7a{bottom:1014.735260px;}
.y99{bottom:1014.735306px;}
.yca{bottom:1014.739986px;}
.y169{bottom:1016.101838px;}
.y1a0{bottom:1016.254823px;}
.y1cb{bottom:1016.509807px;}
.ye9{bottom:1017.807024px;}
.y168{bottom:1031.095838px;}
.y19f{bottom:1031.248823px;}
.y1ca{bottom:1031.503807px;}
.y38{bottom:1032.165344px;}
.y79{bottom:1033.485260px;}
.y98{bottom:1033.485306px;}
.yc9{bottom:1033.489986px;}
.ye8{bottom:1036.524024px;}
.y167{bottom:1046.089838px;}
.y19e{bottom:1046.242823px;}
.y1c9{bottom:1046.497807px;}
.y37{bottom:1050.915344px;}
.y78{bottom:1052.235260px;}
.y97{bottom:1052.235306px;}
.yc8{bottom:1052.239986px;}
.y151{bottom:1060.114844px;}
.y166{bottom:1061.083838px;}
.y19d{bottom:1061.236823px;}
.y1c8{bottom:1061.491807px;}
.ye7{bottom:1064.612274px;}
.y36{bottom:1069.665344px;}
.y77{bottom:1070.985260px;}
.y96{bottom:1070.985306px;}
.yc7{bottom:1070.989986px;}
.y150{bottom:1075.108844px;}
.y165{bottom:1076.077838px;}
.y4{bottom:1076.132080px;}
.y19c{bottom:1076.230823px;}
.y1c7{bottom:1076.485807px;}
.y35{bottom:1088.415344px;}
.y76{bottom:1089.735260px;}
.y95{bottom:1089.735306px;}
.yc6{bottom:1089.739986px;}
.ye6{bottom:1090.102844px;}
.y164{bottom:1091.071838px;}
.y19b{bottom:1091.224823px;}
.y1c6{bottom:1091.479807px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y34{bottom:1127.482361px;}
.y75{bottom:1127.482544px;}
.h10{height:13.951499px;}
.h14{height:16.050000px;}
.h13{height:18.784694px;}
.hd{height:25.204199px;}
.h12{height:32.828204px;}
.h16{height:33.742946px;}
.h2{height:33.840000px;}
.hc{height:36.006000px;}
.hb{height:36.855469px;}
.h17{height:38.050781px;}
.he{height:39.818398px;}
.h11{height:40.990243px;}
.h8{height:42.360000px;}
.h3{height:44.676000px;}
.hf{height:45.186000px;}
.h15{height:47.786456px;}
.h19{height:53.651817px;}
.ha{height:53.652000px;}
.h18{height:53.652183px;}
.h4{height:55.461000px;}
.h1a{height:59.004000px;}
.h7{height:59.340000px;}
.h6{height:64.866000px;}
.h9{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:166.709999px;}
.w3{width:247.740005px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb{left:-1.132919px;}
.x0{left:0.000000px;}
.xc{left:30.497726px;}
.xe{left:72.914841px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.x4{left:93.537153px;}
.x9{left:96.307045px;}
.x7{left:97.796100px;}
.x22{left:102.048152px;}
.x10{left:109.337997px;}
.x14{left:119.312244px;}
.x12{left:141.454376px;}
.x15{left:161.728947px;}
.x18{left:185.538900px;}
.x16{left:204.375893px;}
.x1a{left:228.806860px;}
.x17{left:231.928940px;}
.x1b{left:276.267150px;}
.x19{left:281.190445px;}
.x1c{left:365.070900px;}
.x13{left:416.214749px;}
.x1d{left:436.024650px;}
.x5{left:459.207140px;}
.x6{left:476.217140px;}
.x21{left:484.725290px;}
.xd{left:518.518661px;}
.xf{left:560.935181px;}
.x11{left:587.058014px;}
.x1e{left:598.740150px;}
.x1f{left:674.424148px;}
.x1{left:728.220612px;}
.x20{left:772.841397px;}
.x8{left:792.153442px;}
.xa{left:798.883035px;}
@media print{
.v2{vertical-align:-18.133341pt;}
.v5{vertical-align:-16.533366pt;}
.v4{vertical-align:-13.349976pt;}
.v3{vertical-align:-3.200033pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.333333pt;}
.v1{vertical-align:21.333333pt;}
.ls1a{letter-spacing:-0.426667pt;}
.ls2e{letter-spacing:-0.373333pt;}
.ls7d{letter-spacing:-0.362667pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls6d{letter-spacing:-0.317333pt;}
.ls7a{letter-spacing:-0.272000pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls79{letter-spacing:-0.226667pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls6e{letter-spacing:-0.181333pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls7c{letter-spacing:-0.136000pt;}
.ls15{letter-spacing:-0.106667pt;}
.ls6f{letter-spacing:-0.090667pt;}
.ls18{letter-spacing:-0.053333pt;}
.ls7b{letter-spacing:-0.045333pt;}
.ls13{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000078pt;}
.ls73{letter-spacing:0.022667pt;}
.ls59{letter-spacing:0.026667pt;}
.ls64{letter-spacing:0.045333pt;}
.ls45{letter-spacing:0.049072pt;}
.lsb{letter-spacing:0.053333pt;}
.ls3b{letter-spacing:0.060263pt;}
.ls6c{letter-spacing:0.068000pt;}
.ls5b{letter-spacing:0.090667pt;}
.ls4{letter-spacing:0.106667pt;}
.ls5c{letter-spacing:0.136000pt;}
.ls11{letter-spacing:0.158926pt;}
.ls21{letter-spacing:0.160000pt;}
.ls61{letter-spacing:0.181333pt;}
.ls34{letter-spacing:0.186667pt;}
.ls39{letter-spacing:0.186686pt;}
.lsa{letter-spacing:0.186689pt;}
.ls44{letter-spacing:0.187337pt;}
.ls75{letter-spacing:0.204000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.226667pt;}
.ls63{letter-spacing:0.234667pt;}
.ls5a{letter-spacing:0.240000pt;}
.ls33{letter-spacing:0.250667pt;}
.ls66{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.265990pt;}
.ls37{letter-spacing:0.266120pt;}
.ls3{letter-spacing:0.266667pt;}
.ls70{letter-spacing:0.272000pt;}
.ls65{letter-spacing:0.317333pt;}
.ls23{letter-spacing:0.320000pt;}
.ls42{letter-spacing:0.336000pt;}
.ls7{letter-spacing:0.373333pt;}
.ls5d{letter-spacing:0.408000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls58{letter-spacing:0.453333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls3d{letter-spacing:0.492275pt;}
.ls69{letter-spacing:0.498667pt;}
.ls6a{letter-spacing:0.521333pt;}
.lsd{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.544000pt;}
.ls46{letter-spacing:0.558431pt;}
.ls25{letter-spacing:0.560000pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls5f{letter-spacing:0.589333pt;}
.ls43{letter-spacing:0.610677pt;}
.ls57{letter-spacing:0.613333pt;}
.ls68{letter-spacing:0.634667pt;}
.ls36{letter-spacing:0.638423pt;}
.ls8{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.672000pt;}
.ls3a{letter-spacing:0.672163pt;}
.ls67{letter-spacing:0.680000pt;}
.lsc{letter-spacing:0.693333pt;}
.ls1e{letter-spacing:0.720000pt;}
.ls6b{letter-spacing:0.725333pt;}
.ls27{letter-spacing:0.746667pt;}
.ls72{letter-spacing:0.770667pt;}
.ls4d{letter-spacing:0.773333pt;}
.ls20{letter-spacing:0.800000pt;}
.ls54{letter-spacing:0.826667pt;}
.ls77{letter-spacing:0.838667pt;}
.ls10{letter-spacing:0.853333pt;}
.ls5e{letter-spacing:0.861333pt;}
.ls22{letter-spacing:0.880000pt;}
.ls26{letter-spacing:0.906667pt;}
.ls71{letter-spacing:0.952000pt;}
.lse{letter-spacing:0.960000pt;}
.ls78{letter-spacing:0.974667pt;}
.ls3c{letter-spacing:0.978148pt;}
.ls2c{letter-spacing:1.013333pt;}
.ls74{letter-spacing:1.042667pt;}
.ls24{letter-spacing:1.066667pt;}
.ls9{letter-spacing:1.093333pt;}
.ls6{letter-spacing:1.120000pt;}
.ls60{letter-spacing:1.133333pt;}
.ls30{letter-spacing:1.173333pt;}
.ls52{letter-spacing:1.226667pt;}
.ls49{letter-spacing:1.228231pt;}
.ls56{letter-spacing:1.253333pt;}
.ls4c{letter-spacing:1.280000pt;}
.ls2d{letter-spacing:1.306667pt;}
.ls1d{letter-spacing:1.333333pt;}
.ls29{letter-spacing:1.386667pt;}
.ls76{letter-spacing:1.405333pt;}
.ls53{letter-spacing:1.413333pt;}
.ls1c{letter-spacing:1.440000pt;}
.ls32{letter-spacing:1.466667pt;}
.ls1b{letter-spacing:1.493333pt;}
.ls50{letter-spacing:1.546667pt;}
.ls47{letter-spacing:1.600000pt;}
.ls31{letter-spacing:1.653333pt;}
.ls2a{letter-spacing:1.706667pt;}
.ls2f{letter-spacing:1.760000pt;}
.ls4f{letter-spacing:1.813333pt;}
.ls48{letter-spacing:1.920000pt;}
.ls4a{letter-spacing:1.973333pt;}
.ls35{letter-spacing:2.000000pt;}
.ls51{letter-spacing:2.026667pt;}
.ls28{letter-spacing:2.080000pt;}
.ls55{letter-spacing:2.133333pt;}
.ls4b{letter-spacing:2.240000pt;}
.ls4e{letter-spacing:2.266667pt;}
.ls2b{letter-spacing:2.293333pt;}
.ls0{letter-spacing:3.546667pt;}
.ls3e{letter-spacing:14.501819pt;}
.ls3f{letter-spacing:14.503401pt;}
.ls40{letter-spacing:14.551421pt;}
.ws40{word-spacing:-13.973333pt;}
.ws54{word-spacing:-13.600000pt;}
.ws68{word-spacing:-13.440000pt;}
.ws56{word-spacing:-13.333333pt;}
.ws85{word-spacing:-13.184000pt;}
.ws6{word-spacing:-13.173333pt;}
.ws5{word-spacing:-12.928000pt;}
.ws82{word-spacing:-11.560000pt;}
.ws84{word-spacing:-11.424000pt;}
.ws65{word-spacing:-11.333333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws63{word-spacing:-10.005333pt;}
.ws64{word-spacing:-9.669333pt;}
.ws55{word-spacing:-9.520000pt;}
.ws6c{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws83{word-spacing:-8.840000pt;}
.ws7{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws62{word-spacing:-5.666667pt;}
.wsa{word-spacing:-1.333333pt;}
.ws2a{word-spacing:-1.280000pt;}
.ws51{word-spacing:-1.226667pt;}
.wsac{word-spacing:-1.178667pt;}
.ws19{word-spacing:-1.173333pt;}
.ws88{word-spacing:-1.133333pt;}
.ws99{word-spacing:-1.088000pt;}
.ws42{word-spacing:-1.013333pt;}
.ws2e{word-spacing:-0.960000pt;}
.ws90{word-spacing:-0.952000pt;}
.wsd{word-spacing:-0.906667pt;}
.ws87{word-spacing:-0.861333pt;}
.ws25{word-spacing:-0.853333pt;}
.ws86{word-spacing:-0.800000pt;}
.ws5b{word-spacing:-0.746667pt;}
.ws28{word-spacing:-0.693333pt;}
.ws91{word-spacing:-0.680000pt;}
.ws11{word-spacing:-0.640000pt;}
.ws92{word-spacing:-0.634667pt;}
.ws9d{word-spacing:-0.589333pt;}
.ws61{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.544000pt;}
.ws72{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.506667pt;}
.ws1a{word-spacing:-0.480000pt;}
.ws35{word-spacing:-0.426667pt;}
.wse{word-spacing:-0.373333pt;}
.ws96{word-spacing:-0.362667pt;}
.ws1e{word-spacing:-0.320000pt;}
.wsad{word-spacing:-0.317333pt;}
.ws14{word-spacing:-0.266667pt;}
.ws48{word-spacing:-0.250667pt;}
.ws8e{word-spacing:-0.234667pt;}
.ws22{word-spacing:-0.226667pt;}
.wsf{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.160000pt;}
.ws33{word-spacing:-0.106667pt;}
.ws97{word-spacing:-0.090667pt;}
.ws57{word-spacing:-0.053347pt;}
.ws69{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws93{word-spacing:0.045333pt;}
.ws10{word-spacing:0.053333pt;}
.ws4d{word-spacing:0.106667pt;}
.wsa9{word-spacing:0.136000pt;}
.ws7a{word-spacing:0.160000pt;}
.ws5e{word-spacing:0.213333pt;}
.ws7d{word-spacing:0.266667pt;}
.ws9e{word-spacing:0.272000pt;}
.ws9c{word-spacing:0.317333pt;}
.ws17{word-spacing:0.320000pt;}
.ws32{word-spacing:0.373333pt;}
.ws45{word-spacing:0.426667pt;}
.ws71{word-spacing:0.480000pt;}
.ws9a{word-spacing:0.498667pt;}
.ws46{word-spacing:0.533333pt;}
.ws5a{word-spacing:0.586667pt;}
.ws59{word-spacing:0.640000pt;}
.ws7c{word-spacing:0.693333pt;}
.wsb{word-spacing:0.800000pt;}
.ws78{word-spacing:0.853333pt;}
.ws8d{word-spacing:0.861333pt;}
.ws1d{word-spacing:0.906667pt;}
.ws4e{word-spacing:0.960000pt;}
.ws15{word-spacing:1.013333pt;}
.ws8f{word-spacing:1.042667pt;}
.ws1b{word-spacing:1.066667pt;}
.ws41{word-spacing:1.120000pt;}
.ws89{word-spacing:1.133333pt;}
.ws3f{word-spacing:1.173333pt;}
.ws2b{word-spacing:1.226667pt;}
.ws7e{word-spacing:1.280000pt;}
.ws8b{word-spacing:1.314667pt;}
.wsc{word-spacing:1.333333pt;}
.ws6d{word-spacing:1.386667pt;}
.wsa2{word-spacing:1.405333pt;}
.ws3e{word-spacing:1.440000pt;}
.ws95{word-spacing:1.450667pt;}
.ws6b{word-spacing:1.493333pt;}
.ws23{word-spacing:1.546667pt;}
.ws2c{word-spacing:1.600000pt;}
.ws94{word-spacing:1.632000pt;}
.ws9b{word-spacing:1.677333pt;}
.ws6a{word-spacing:1.706667pt;}
.ws3b{word-spacing:1.760000pt;}
.ws47{word-spacing:1.813333pt;}
.wsaf{word-spacing:1.858667pt;}
.ws44{word-spacing:1.866667pt;}
.wsa5{word-spacing:1.904000pt;}
.ws4c{word-spacing:1.920000pt;}
.ws98{word-spacing:1.949333pt;}
.ws70{word-spacing:1.973333pt;}
.ws9f{word-spacing:1.994667pt;}
.ws31{word-spacing:2.026667pt;}
.wsa3{word-spacing:2.040000pt;}
.ws53{word-spacing:2.080000pt;}
.wsa1{word-spacing:2.130667pt;}
.ws2f{word-spacing:2.133333pt;}
.ws5f{word-spacing:2.186667pt;}
.ws6e{word-spacing:2.240000pt;}
.ws1c{word-spacing:2.293333pt;}
.ws34{word-spacing:2.346667pt;}
.ws30{word-spacing:2.400000pt;}
.ws39{word-spacing:2.453333pt;}
.wsa7{word-spacing:2.493333pt;}
.wsae{word-spacing:2.538667pt;}
.ws60{word-spacing:2.560000pt;}
.ws49{word-spacing:2.613333pt;}
.ws36{word-spacing:2.666667pt;}
.ws8a{word-spacing:2.674667pt;}
.ws27{word-spacing:2.720000pt;}
.ws18{word-spacing:2.773333pt;}
.ws2d{word-spacing:2.826667pt;}
.wsab{word-spacing:2.856000pt;}
.ws52{word-spacing:2.880000pt;}
.ws1f{word-spacing:2.933333pt;}
.ws43{word-spacing:2.986667pt;}
.wsa0{word-spacing:2.992000pt;}
.wsaa{word-spacing:3.037333pt;}
.ws74{word-spacing:3.040000pt;}
.ws4f{word-spacing:3.093333pt;}
.wsa8{word-spacing:3.173333pt;}
.ws5d{word-spacing:3.200000pt;}
.ws37{word-spacing:3.306667pt;}
.ws38{word-spacing:3.360000pt;}
.wsa4{word-spacing:3.400000pt;}
.ws16{word-spacing:3.413333pt;}
.ws4b{word-spacing:3.466667pt;}
.ws4a{word-spacing:3.520000pt;}
.ws12{word-spacing:3.626667pt;}
.ws79{word-spacing:3.680000pt;}
.ws7b{word-spacing:3.786667pt;}
.ws6f{word-spacing:3.840000pt;}
.ws8c{word-spacing:3.853333pt;}
.ws73{word-spacing:3.893333pt;}
.ws50{word-spacing:4.000000pt;}
.ws75{word-spacing:4.053333pt;}
.ws80{word-spacing:4.106667pt;}
.ws7f{word-spacing:4.266667pt;}
.ws77{word-spacing:4.426667pt;}
.ws3c{word-spacing:4.640000pt;}
.ws29{word-spacing:4.746667pt;}
.ws81{word-spacing:4.800000pt;}
.ws26{word-spacing:5.066667pt;}
.wsa6{word-spacing:5.304000pt;}
.ws3a{word-spacing:5.493333pt;}
.ws24{word-spacing:5.600000pt;}
.ws3d{word-spacing:5.866667pt;}
.ws5c{word-spacing:7.946667pt;}
.ws76{word-spacing:9.173333pt;}
.wsb0{word-spacing:12.013333pt;}
.wsb1{word-spacing:15.640000pt;}
.ws20{word-spacing:64.237333pt;}
.ws67{word-spacing:173.898667pt;}
.ws66{word-spacing:206.720000pt;}
.ws58{word-spacing:614.493333pt;}
._b{margin-left:-2630.557284pt;}
._7{margin-left:-86.133333pt;}
._22{margin-left:-18.293333pt;}
._f{margin-left:-17.120022pt;}
._17{margin-left:-16.076812pt;}
._4{margin-left:-14.733333pt;}
._21{margin-left:-13.120000pt;}
._20{margin-left:-11.125333pt;}
._a{margin-left:-7.322667pt;}
._25{margin-left:-5.032000pt;}
._1{margin-left:-4.109067pt;}
._3{margin-left:-2.544000pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.232000pt;}
._9{width:2.240000pt;}
._23{width:3.168000pt;}
._d{width:4.090667pt;}
._24{width:10.970657pt;}
._16{width:12.725333pt;}
._e{width:13.872000pt;}
._5{width:16.320000pt;}
._c{width:31.295442pt;}
._14{width:34.504000pt;}
._6{width:48.552000pt;}
._18{width:108.029333pt;}
._1e{width:236.050661pt;}
._1d{width:252.053333pt;}
._1c{width:260.394667pt;}
._19{width:282.698667pt;}
._1f{width:316.879994pt;}
._10{width:436.605333pt;}
._1a{width:512.719980pt;}
._11{width:553.202667pt;}
._15{width:555.922667pt;}
._12{width:559.368000pt;}
._1b{width:585.978655pt;}
._13{width:643.960000pt;}
._8{width:1944.029268pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs8{font-size:50.133331pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:53.346664pt;}
.fsb{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:3.440389pt;}
.y101{bottom:5.307129pt;}
.y1{bottom:61.181335pt;}
.y33{bottom:100.389600pt;}
.y11c{bottom:100.524272pt;}
.y74{bottom:100.813599pt;}
.y69{bottom:100.813639pt;}
.yae{bottom:100.897603pt;}
.y130{bottom:101.270935pt;}
.y14f{bottom:101.450928pt;}
.y10d{bottom:101.484263pt;}
.y19a{bottom:101.610928pt;}
.y199{bottom:114.938928pt;}
.y73{bottom:117.480265pt;}
.y68{bottom:117.480306pt;}
.y14e{bottom:118.117594pt;}
.y32{bottom:118.250936pt;}
.y163{bottom:118.653564pt;}
.y2d{bottom:125.521200pt;}
.y198{bottom:128.266928pt;}
.y31{bottom:133.764936pt;}
.y72{bottom:134.146932pt;}
.y67{bottom:134.146973pt;}
.y14d{bottom:134.784261pt;}
.y162{bottom:135.320231pt;}
.y197{bottom:141.594928pt;}
.y2c{bottom:142.187866pt;}
.y71{bottom:150.813599pt;}
.y66{bottom:150.813639pt;}
.y14c{bottom:151.450928pt;}
.y30{bottom:151.626272pt;}
.y161{bottom:151.986898pt;}
.y196{bottom:154.922928pt;}
.y2b{bottom:158.854533pt;}
.y70{bottom:167.480265pt;}
.y65{bottom:167.480306pt;}
.y14b{bottom:168.117594pt;}
.y195{bottom:168.250928pt;}
.y160{bottom:168.653564pt;}
.y2f{bottom:173.848941pt;}
.y2a{bottom:175.521200pt;}
.y194{bottom:181.578928pt;}
.y6f{bottom:184.146932pt;}
.y64{bottom:184.146973pt;}
.y14a{bottom:184.784261pt;}
.y15f{bottom:185.320231pt;}
.y2e{bottom:187.176941pt;}
.y29{bottom:192.187866pt;}
.y193{bottom:194.906928pt;}
.y6e{bottom:200.813599pt;}
.y63{bottom:200.813639pt;}
.y149{bottom:201.450928pt;}
.y15e{bottom:201.986898pt;}
.y192{bottom:208.234928pt;}
.y28{bottom:208.854533pt;}
.y6d{bottom:217.480265pt;}
.y62{bottom:217.480306pt;}
.y148{bottom:218.117594pt;}
.y15d{bottom:218.653564pt;}
.y191{bottom:221.562928pt;}
.y26{bottom:225.521200pt;}
.y6c{bottom:234.146932pt;}
.y61{bottom:234.146973pt;}
.y147{bottom:234.784261pt;}
.y190{bottom:234.890928pt;}
.y15c{bottom:235.320231pt;}
.y25{bottom:242.187866pt;}
.y18f{bottom:248.218928pt;}
.y6b{bottom:250.813599pt;}
.y60{bottom:250.813639pt;}
.y146{bottom:251.450928pt;}
.y15b{bottom:251.986898pt;}
.y24{bottom:258.854533pt;}
.y18e{bottom:261.546928pt;}
.y5f{bottom:267.480306pt;}
.y145{bottom:268.117594pt;}
.y15a{bottom:268.653564pt;}
.y18d{bottom:274.874928pt;}
.y23{bottom:275.521200pt;}
.y6a{bottom:284.146932pt;}
.y5e{bottom:284.146973pt;}
.y144{bottom:284.784261pt;}
.y159{bottom:285.320231pt;}
.y18c{bottom:288.202928pt;}
.y22{bottom:292.187866pt;}
.y5d{bottom:300.813639pt;}
.y143{bottom:301.450928pt;}
.y18b{bottom:301.530928pt;}
.y158{bottom:301.986898pt;}
.y21{bottom:308.854533pt;}
.y18a{bottom:314.858928pt;}
.y5c{bottom:317.480306pt;}
.y142{bottom:318.117594pt;}
.y157{bottom:318.653564pt;}
.y20{bottom:325.521200pt;}
.y189{bottom:328.186928pt;}
.y5b{bottom:334.146973pt;}
.y141{bottom:334.784261pt;}
.y156{bottom:335.320231pt;}
.y188{bottom:341.514928pt;}
.y1f{bottom:342.187866pt;}
.yf0{bottom:345.689355pt;}
.y5a{bottom:350.813639pt;}
.y140{bottom:351.450928pt;}
.y155{bottom:351.986898pt;}
.y12e{bottom:352.110921pt;}
.y187{bottom:354.842928pt;}
.y1e{bottom:358.854533pt;}
.yef{bottom:359.017355pt;}
.y133{bottom:359.196251pt;}
.y59{bottom:367.480306pt;}
.y13f{bottom:368.117594pt;}
.y186{bottom:368.170928pt;}
.y154{bottom:368.653564pt;}
.y12d{bottom:368.777588pt;}
.yee{bottom:372.345355pt;}
.y132{bottom:372.524251pt;}
.y1d{bottom:375.521200pt;}
.y185{bottom:381.498928pt;}
.y58{bottom:384.146973pt;}
.y13e{bottom:384.784261pt;}
.y153{bottom:385.320231pt;}
.y12c{bottom:385.444255pt;}
.y1c{bottom:392.187866pt;}
.y184{bottom:394.826928pt;}
.y57{bottom:400.813639pt;}
.y13d{bottom:401.450928pt;}
.y152{bottom:401.986898pt;}
.y12b{bottom:402.110921pt;}
.y183{bottom:408.154928pt;}
.y1b{bottom:408.854533pt;}
.y1c5{bottom:410.201620pt;}
.y56{bottom:417.480306pt;}
.y13c{bottom:418.117594pt;}
.y131{bottom:418.653564pt;}
.y12a{bottom:418.777588pt;}
.yc5{bottom:418.777751pt;}
.y182{bottom:421.482928pt;}
.y1c4{bottom:423.529620pt;}
.y27{bottom:425.521200pt;}
.y10c{bottom:425.909453pt;}
.ye1{bottom:431.253743pt;}
.y55{bottom:434.146973pt;}
.y13b{bottom:434.784261pt;}
.y181{bottom:434.810928pt;}
.y11b{bottom:435.320231pt;}
.yad{bottom:435.320272pt;}
.y129{bottom:435.444255pt;}
.yc4{bottom:435.444417pt;}
.y1c3{bottom:436.857620pt;}
.y10b{bottom:439.237453pt;}
.y1a{bottom:442.187866pt;}
.ye0{bottom:447.920410pt;}
.y180{bottom:448.138928pt;}
.y1c2{bottom:450.185620pt;}
.y54{bottom:450.813639pt;}
.y13a{bottom:451.450928pt;}
.y11a{bottom:451.986898pt;}
.y94{bottom:451.986938pt;}
.y128{bottom:452.110921pt;}
.yc3{bottom:452.111084pt;}
.y10a{bottom:455.942787pt;}
.y17f{bottom:461.466928pt;}
.y1c1{bottom:463.513620pt;}
.ydf{bottom:464.587077pt;}
.y53{bottom:467.480306pt;}
.y139{bottom:468.117594pt;}
.y119{bottom:468.653564pt;}
.y93{bottom:468.653605pt;}
.y127{bottom:468.777588pt;}
.yc2{bottom:468.777751pt;}
.y109{bottom:469.270787pt;}
.y17e{bottom:474.794928pt;}
.y1c0{bottom:476.841620pt;}
.y1ea{bottom:476.977607pt;}
.yde{bottom:481.253743pt;}
.y52{bottom:484.146973pt;}
.y138{bottom:484.784261pt;}
.y118{bottom:485.320231pt;}
.yac{bottom:485.320272pt;}
.y126{bottom:485.444255pt;}
.yc1{bottom:485.444417pt;}
.y108{bottom:485.908120pt;}
.y92{bottom:486.120280pt;}
.y17d{bottom:488.122928pt;}
.y1bf{bottom:490.169620pt;}
.y1e9{bottom:490.305607pt;}
.y19{bottom:492.187907pt;}
.y107{bottom:499.236120pt;}
.y51{bottom:500.813639pt;}
.y137{bottom:501.450928pt;}
.y117{bottom:501.986898pt;}
.y91{bottom:501.986938pt;}
.y125{bottom:502.110921pt;}
.yc0{bottom:502.111084pt;}
.y1be{bottom:503.497620pt;}
.y18{bottom:508.854574pt;}
.ydd{bottom:515.387085pt;}
.y1bd{bottom:516.825620pt;}
.y1e8{bottom:517.052273pt;}
.y50{bottom:517.480306pt;}
.y136{bottom:518.117594pt;}
.y116{bottom:518.653564pt;}
.y90{bottom:518.653605pt;}
.y124{bottom:518.777588pt;}
.ybf{bottom:518.777751pt;}
.y106{bottom:524.203453pt;}
.y17{bottom:525.521240pt;}
.y1bc{bottom:530.153620pt;}
.y1e7{bottom:530.380273pt;}
.y17c{bottom:531.450928pt;}
.ydc{bottom:532.053752pt;}
.y4f{bottom:534.146973pt;}
.y135{bottom:534.784261pt;}
.y115{bottom:535.320231pt;}
.yab{bottom:535.320272pt;}
.y123{bottom:535.444255pt;}
.ybe{bottom:535.444417pt;}
.y8f{bottom:536.120280pt;}
.y105{bottom:537.531453pt;}
.y16{bottom:542.187907pt;}
.y1bb{bottom:543.481620pt;}
.y1e6{bottom:543.708273pt;}
.ydb{bottom:548.720418pt;}
.y4e{bottom:550.813639pt;}
.y134{bottom:551.450928pt;}
.y114{bottom:551.986898pt;}
.y8e{bottom:551.986938pt;}
.y122{bottom:552.110921pt;}
.ybd{bottom:552.111084pt;}
.y1ba{bottom:556.809620pt;}
.y1e5{bottom:557.036273pt;}
.y15{bottom:558.854574pt;}
.y104{bottom:560.189738pt;}
.yda{bottom:565.387085pt;}
.y4d{bottom:567.480306pt;}
.y113{bottom:568.653564pt;}
.y8d{bottom:568.653605pt;}
.y121{bottom:568.777588pt;}
.ybc{bottom:568.777751pt;}
.y1b9{bottom:570.137620pt;}
.y1e4{bottom:570.364273pt;}
.y14{bottom:575.521240pt;}
.y1b8{bottom:583.465620pt;}
.y1e3{bottom:583.692273pt;}
.y4c{bottom:584.146973pt;}
.y112{bottom:585.320231pt;}
.yaa{bottom:585.320272pt;}
.y120{bottom:585.444255pt;}
.ybb{bottom:585.444417pt;}
.y8c{bottom:586.120280pt;}
.y13{bottom:592.187907pt;}
.y17b{bottom:593.232967pt;}
.y1b7{bottom:596.793620pt;}
.y1e2{bottom:597.020273pt;}
.yd9{bottom:597.920274pt;}
.y4b{bottom:600.813639pt;}
.y111{bottom:601.986898pt;}
.y8b{bottom:601.986938pt;}
.y11f{bottom:602.110921pt;}
.yba{bottom:602.111084pt;}
.y17a{bottom:606.560967pt;}
.y12{bottom:608.854574pt;}
.y1b6{bottom:610.121620pt;}
.y1e1{bottom:610.348273pt;}
.yfe{bottom:612.720378pt;}
.y4a{bottom:617.480306pt;}
.y110{bottom:618.653564pt;}
.y8a{bottom:618.653605pt;}
.y11e{bottom:618.777588pt;}
.yb9{bottom:618.777751pt;}
.y179{bottom:619.888967pt;}
.ye3{bottom:622.920003pt;}
.y1b5{bottom:623.449620pt;}
.y1e0{bottom:623.676273pt;}
.ye2{bottom:624.120410pt;}
.y11{bottom:625.521240pt;}
.ye5{bottom:626.360392pt;}
.yfd{bottom:629.387044pt;}
.y178{bottom:633.216967pt;}
.y49{bottom:634.146973pt;}
.y10f{bottom:635.320231pt;}
.ya9{bottom:635.320272pt;}
.y11d{bottom:635.444255pt;}
.yb8{bottom:635.444417pt;}
.y89{bottom:636.120280pt;}
.y1b4{bottom:636.777620pt;}
.y1df{bottom:637.004273pt;}
.y10{bottom:642.187907pt;}
.yfc{bottom:646.053711pt;}
.y177{bottom:646.544967pt;}
.y1b3{bottom:650.105620pt;}
.y1de{bottom:650.332273pt;}
.y48{bottom:650.813639pt;}
.y10e{bottom:651.986898pt;}
.ya8{bottom:651.986938pt;}
.yb7{bottom:652.111084pt;}
.yf{bottom:658.854574pt;}
.y176{bottom:659.872967pt;}
.yfb{bottom:662.720378pt;}
.y1b2{bottom:663.433620pt;}
.y1dd{bottom:663.660273pt;}
.y47{bottom:667.480306pt;}
.y88{bottom:668.653564pt;}
.ya7{bottom:668.653605pt;}
.yd8{bottom:668.657766pt;}
.yb6{bottom:668.777751pt;}
.y175{bottom:673.200967pt;}
.ye{bottom:675.521240pt;}
.y1b1{bottom:676.761620pt;}
.y1dc{bottom:676.988273pt;}
.yfa{bottom:679.387044pt;}
.y46{bottom:684.146973pt;}
.y87{bottom:685.320231pt;}
.ya6{bottom:685.320272pt;}
.yd7{bottom:685.324432pt;}
.yb5{bottom:685.444417pt;}
.y12f{bottom:686.142904pt;}
.y174{bottom:686.528967pt;}
.y1b0{bottom:690.089620pt;}
.y1db{bottom:690.316273pt;}
.yd{bottom:692.187907pt;}
.yf9{bottom:696.053711pt;}
.y173{bottom:699.856967pt;}
.y45{bottom:700.813639pt;}
.y86{bottom:701.986898pt;}
.ya5{bottom:701.986938pt;}
.yd6{bottom:701.991099pt;}
.yb4{bottom:702.111084pt;}
.y1af{bottom:703.417620pt;}
.y1da{bottom:703.644273pt;}
.yc{bottom:708.854574pt;}
.yf8{bottom:712.720378pt;}
.y172{bottom:713.184967pt;}
.y1ae{bottom:716.745620pt;}
.y1d9{bottom:716.972273pt;}
.y44{bottom:717.480306pt;}
.y85{bottom:718.653564pt;}
.ya4{bottom:718.653605pt;}
.yd5{bottom:718.657766pt;}
.yb3{bottom:718.777751pt;}
.yb{bottom:725.521240pt;}
.y171{bottom:726.512967pt;}
.yf7{bottom:729.387044pt;}
.y1ad{bottom:730.073620pt;}
.y1d8{bottom:730.300273pt;}
.y43{bottom:734.146973pt;}
.y84{bottom:735.320231pt;}
.ya3{bottom:735.320272pt;}
.yd4{bottom:735.324432pt;}
.yb2{bottom:735.444417pt;}
.y170{bottom:739.840967pt;}
.y1ac{bottom:743.401620pt;}
.y1d7{bottom:743.628273pt;}
.yf6{bottom:746.053711pt;}
.y42{bottom:750.813639pt;}
.y83{bottom:751.986898pt;}
.ya2{bottom:751.986938pt;}
.yd3{bottom:751.991099pt;}
.yb1{bottom:752.111084pt;}
.y1ab{bottom:756.729620pt;}
.y1d6{bottom:756.956273pt;}
.ya{bottom:764.794803pt;}
.y16f{bottom:766.508301pt;}
.y41{bottom:767.480306pt;}
.y82{bottom:768.653564pt;}
.ya1{bottom:768.653605pt;}
.yd2{bottom:768.657766pt;}
.yb0{bottom:768.777751pt;}
.y1aa{bottom:770.057620pt;}
.y1d5{bottom:770.284273pt;}
.y9{bottom:778.122803pt;}
.yf5{bottom:779.387044pt;}
.y1a9{bottom:783.385620pt;}
.y1d4{bottom:783.612273pt;}
.y40{bottom:784.146973pt;}
.y81{bottom:785.320231pt;}
.ya0{bottom:785.320272pt;}
.yd1{bottom:785.324432pt;}
.yaf{bottom:785.444417pt;}
.y16e{bottom:793.174967pt;}
.y1a8{bottom:796.713620pt;}
.yf4{bottom:796.853760pt;}
.y1d3{bottom:796.940273pt;}
.y3f{bottom:800.813639pt;}
.y80{bottom:801.986898pt;}
.y9f{bottom:801.986938pt;}
.yd0{bottom:801.991099pt;}
.y1a7{bottom:810.041620pt;}
.y1d2{bottom:810.268273pt;}
.yf3{bottom:812.720378pt;}
.y8{bottom:815.989502pt;}
.y3e{bottom:817.480306pt;}
.y7f{bottom:818.653564pt;}
.y9e{bottom:818.653605pt;}
.ycf{bottom:818.657766pt;}
.y16d{bottom:823.210967pt;}
.y1a6{bottom:823.369620pt;}
.y1d1{bottom:823.596273pt;}
.yf2{bottom:830.187093pt;}
.y7{bottom:832.656169pt;}
.y3d{bottom:834.146973pt;}
.y7e{bottom:835.320231pt;}
.y9d{bottom:835.320272pt;}
.yce{bottom:835.324432pt;}
.y16c{bottom:836.538967pt;}
.y1a5{bottom:836.697620pt;}
.y1d0{bottom:836.924273pt;}
.yed{bottom:838.100021pt;}
.y1a4{bottom:850.025620pt;}
.y1cf{bottom:850.252273pt;}
.y3c{bottom:850.813639pt;}
.y7d{bottom:851.986898pt;}
.y9c{bottom:851.986938pt;}
.ycd{bottom:851.991099pt;}
.yec{bottom:854.805355pt;}
.yf1{bottom:862.720231pt;}
.y16b{bottom:863.206301pt;}
.y1a3{bottom:863.353620pt;}
.y1ce{bottom:863.580273pt;}
.y3b{bottom:867.480306pt;}
.y7c{bottom:868.653564pt;}
.y9b{bottom:868.653605pt;}
.ycc{bottom:868.657766pt;}
.yeb{bottom:871.442688pt;}
.y6{bottom:872.377441pt;}
.y16a{bottom:876.534301pt;}
.y1a2{bottom:876.681620pt;}
.y1cd{bottom:876.908273pt;}
.y3a{bottom:884.146973pt;}
.y7b{bottom:885.320231pt;}
.y9a{bottom:885.320272pt;}
.ycb{bottom:885.324432pt;}
.y100{bottom:887.719971pt;}
.yea{bottom:888.080021pt;}
.y103{bottom:889.703044pt;}
.yff{bottom:889.853709pt;}
.y1a1{bottom:890.009620pt;}
.y1cc{bottom:890.236273pt;}
.y102{bottom:893.027100pt;}
.y5{bottom:896.377441pt;}
.y39{bottom:900.813639pt;}
.y7a{bottom:901.986898pt;}
.y99{bottom:901.986938pt;}
.yca{bottom:901.991099pt;}
.y169{bottom:903.201634pt;}
.y1a0{bottom:903.337620pt;}
.y1cb{bottom:903.564273pt;}
.ye9{bottom:904.717355pt;}
.y168{bottom:916.529634pt;}
.y19f{bottom:916.665620pt;}
.y1ca{bottom:916.892273pt;}
.y38{bottom:917.480306pt;}
.y79{bottom:918.653564pt;}
.y98{bottom:918.653605pt;}
.yc9{bottom:918.657766pt;}
.ye8{bottom:921.354688pt;}
.y167{bottom:929.857634pt;}
.y19e{bottom:929.993620pt;}
.y1c9{bottom:930.220273pt;}
.y37{bottom:934.146973pt;}
.y78{bottom:935.320231pt;}
.y97{bottom:935.320272pt;}
.yc8{bottom:935.324432pt;}
.y151{bottom:942.324306pt;}
.y166{bottom:943.185634pt;}
.y19d{bottom:943.321620pt;}
.y1c8{bottom:943.548273pt;}
.ye7{bottom:946.322021pt;}
.y36{bottom:950.813639pt;}
.y77{bottom:951.986898pt;}
.y96{bottom:951.986938pt;}
.yc7{bottom:951.991099pt;}
.y150{bottom:955.652306pt;}
.y165{bottom:956.513634pt;}
.y4{bottom:956.561849pt;}
.y19c{bottom:956.649620pt;}
.y1c7{bottom:956.876273pt;}
.y35{bottom:967.480306pt;}
.y76{bottom:968.653564pt;}
.y95{bottom:968.653605pt;}
.yc6{bottom:968.657766pt;}
.ye6{bottom:968.980306pt;}
.y164{bottom:969.841634pt;}
.y19b{bottom:969.977620pt;}
.y1c6{bottom:970.204273pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y34{bottom:1002.206543pt;}
.y75{bottom:1002.206706pt;}
.h10{height:12.401333pt;}
.h14{height:14.266666pt;}
.h13{height:16.697506pt;}
.hd{height:22.403733pt;}
.h12{height:29.180625pt;}
.h16{height:29.993730pt;}
.h2{height:30.080000pt;}
.hc{height:32.005333pt;}
.hb{height:32.760417pt;}
.h17{height:33.822917pt;}
.he{height:35.394132pt;}
.h11{height:36.435772pt;}
.h8{height:37.653333pt;}
.h3{height:39.712000pt;}
.hf{height:40.165333pt;}
.h15{height:42.476849pt;}
.h19{height:47.690504pt;}
.ha{height:47.690667pt;}
.h18{height:47.690829pt;}
.h4{height:49.298667pt;}
.h1a{height:52.448000pt;}
.h7{height:52.746667pt;}
.h6{height:57.658667pt;}
.h9{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:148.186666pt;}
.w3{width:220.213338pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb{left:-1.007039pt;}
.x0{left:0.000000pt;}
.xc{left:27.109090pt;}
.xe{left:64.813192pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.x4{left:83.144136pt;}
.x9{left:85.606262pt;}
.x7{left:86.929867pt;}
.x22{left:90.709469pt;}
.x10{left:97.189331pt;}
.x14{left:106.055328pt;}
.x12{left:125.737223pt;}
.x15{left:143.759064pt;}
.x18{left:164.923467pt;}
.x16{left:181.667460pt;}
.x1a{left:203.383876pt;}
.x17{left:206.159058pt;}
.x1b{left:245.570800pt;}
.x19{left:249.947062pt;}
.x1c{left:324.507467pt;}
.x13{left:369.968666pt;}
.x1d{left:387.577467pt;}
.x5{left:408.184125pt;}
.x6{left:423.304125pt;}
.x21{left:430.866924pt;}
.xd{left:460.905477pt;}
.xf{left:498.609049pt;}
.x11{left:521.829346pt;}
.x1e{left:532.213467pt;}
.x1f{left:599.488132pt;}
.x1{left:647.307210pt;}
.x20{left:686.970130pt;}
.x8{left:704.136393pt;}
.xa{left:710.118254pt;}
}




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