
    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_38f36728e640452e6f8d676f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_47f68e3e87dfdccafe914ac6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.913000;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_1689115cc1953e79bd3332c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_1d7d6dc5c0e4f7a6430344db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.917000;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_008c4a951d447afdfddc70a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973000;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_12e0c9e01e3a06fdef4cbbe3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_2cc72aebac5a91b619a70202.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.105000;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_ccdcdb1954dd7195cae1993b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973000;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_61107de0109d9eaa80aaca21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.977000;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_6fd78a60df0a9e2baf38707e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.072000;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_9a8d72e2ccc73bc6dce4c7c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_d41b91ca7c63a94898c98e12.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.917000;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_a2663acbfde84ec6bc9198ee.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.105000;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_8e10f98160af573c28e0c58b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v1{vertical-align:-6.756600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v2{vertical-align:17.910000px;}
.lsd{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.630000px;}
.lsc{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.384000px;}
.lse{letter-spacing:-0.270000px;}
.ls1{letter-spacing:-0.096000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.094446px;}
.lsa{letter-spacing:0.094770px;}
.lsb{letter-spacing:0.157014px;}
.ls8{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.440370px;}
.ls2{letter-spacing:0.483936px;}
.ls3{letter-spacing:0.604920px;}
.lsf{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.756000px;}
.ls13{letter-spacing:0.768000px;}
.ls5{letter-spacing:0.864000px;}
.ls11{letter-spacing:1.566000px;}
.ls12{letter-spacing:13.305600px;}
.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;}
}
.wsf{word-spacing:-13.536000px;}
.ws21{word-spacing:-11.340000px;}
.ws2{word-spacing:-11.280000px;}
.ws12{word-spacing:-10.800000px;}
.ws11{word-spacing:-10.476000px;}
.ws7b{word-spacing:-10.368000px;}
.ws52{word-spacing:-9.990000px;}
.ws7c{word-spacing:-9.792000px;}
.ws51{word-spacing:-9.666000px;}
.ws1{word-spacing:-9.600000px;}
.wsb{word-spacing:-9.504000px;}
.ws71{word-spacing:-9.312000px;}
.ws7a{word-spacing:-8.832000px;}
.ws40{word-spacing:-8.400000px;}
.ws0{word-spacing:-7.800000px;}
.ws60{word-spacing:-6.390846px;}
.ws10{word-spacing:-6.296400px;}
.ws20{word-spacing:-5.596800px;}
.ws7{word-spacing:-2.640000px;}
.ws65{word-spacing:-2.106000px;}
.ws16{word-spacing:-1.998000px;}
.ws3a{word-spacing:-1.836000px;}
.ws50{word-spacing:-1.782000px;}
.ws56{word-spacing:-1.728000px;}
.ws3f{word-spacing:-1.512000px;}
.ws8d{word-spacing:-1.488000px;}
.ws35{word-spacing:-1.296000px;}
.ws1d{word-spacing:-0.972000px;}
.ws27{word-spacing:-0.918000px;}
.ws22{word-spacing:-0.864000px;}
.ws83{word-spacing:-0.816000px;}
.ws4b{word-spacing:-0.810000px;}
.wsd{word-spacing:-0.768000px;}
.ws25{word-spacing:-0.756000px;}
.ws59{word-spacing:-0.702000px;}
.ws63{word-spacing:-0.648000px;}
.ws6e{word-spacing:-0.540000px;}
.ws88{word-spacing:-0.480000px;}
.ws64{word-spacing:-0.432000px;}
.ws6f{word-spacing:-0.324000px;}
.ws1c{word-spacing:-0.270000px;}
.ws6d{word-spacing:-0.216000px;}
.ws3b{word-spacing:-0.162000px;}
.ws8b{word-spacing:-0.144000px;}
.ws2d{word-spacing:-0.108000px;}
.ws8c{word-spacing:-0.096000px;}
.ws81{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:0.096000px;}
.ws44{word-spacing:0.108000px;}
.ws9{word-spacing:0.120984px;}
.ws26{word-spacing:0.216000px;}
.ws86{word-spacing:0.240000px;}
.ws5a{word-spacing:0.270000px;}
.ws1a{word-spacing:0.324000px;}
.ws7e{word-spacing:0.384000px;}
.ws6c{word-spacing:0.432000px;}
.ws67{word-spacing:0.486000px;}
.ws39{word-spacing:0.540000px;}
.ws70{word-spacing:0.630000px;}
.ws47{word-spacing:0.756000px;}
.ws49{word-spacing:0.810000px;}
.ws55{word-spacing:1.026000px;}
.wsc{word-spacing:1.104000px;}
.ws45{word-spacing:1.134000px;}
.ws8a{word-spacing:1.152000px;}
.ws30{word-spacing:1.188000px;}
.ws89{word-spacing:1.200000px;}
.ws5b{word-spacing:1.242000px;}
.ws2f{word-spacing:1.296000px;}
.wse{word-spacing:1.344000px;}
.ws48{word-spacing:1.350000px;}
.ws84{word-spacing:1.392000px;}
.ws53{word-spacing:1.404000px;}
.ws85{word-spacing:1.440000px;}
.ws5c{word-spacing:1.488000px;}
.ws4c{word-spacing:1.566000px;}
.ws7d{word-spacing:1.680000px;}
.ws78{word-spacing:1.776000px;}
.ws7f{word-spacing:1.968000px;}
.ws28{word-spacing:1.998000px;}
.ws80{word-spacing:2.016000px;}
.ws4e{word-spacing:2.052000px;}
.ws32{word-spacing:2.106000px;}
.ws61{word-spacing:2.208000px;}
.ws38{word-spacing:2.214000px;}
.ws5e{word-spacing:2.268000px;}
.ws8{word-spacing:2.310000px;}
.ws5f{word-spacing:2.322000px;}
.ws1f{word-spacing:2.352000px;}
.ws6a{word-spacing:2.376000px;}
.ws3d{word-spacing:2.394000px;}
.ws29{word-spacing:2.430000px;}
.ws3e{word-spacing:2.436000px;}
.ws36{word-spacing:2.484000px;}
.ws37{word-spacing:2.538000px;}
.ws68{word-spacing:2.646000px;}
.ws6b{word-spacing:2.700000px;}
.ws66{word-spacing:2.754000px;}
.ws74{word-spacing:2.784000px;}
.ws54{word-spacing:2.862000px;}
.ws75{word-spacing:2.880000px;}
.ws15{word-spacing:3.024000px;}
.ws18{word-spacing:3.078000px;}
.ws17{word-spacing:3.132000px;}
.ws87{word-spacing:3.216000px;}
.ws2b{word-spacing:3.510000px;}
.ws73{word-spacing:3.600000px;}
.ws57{word-spacing:3.618000px;}
.ws58{word-spacing:3.726000px;}
.ws4{word-spacing:3.792000px;}
.ws8e{word-spacing:3.936000px;}
.ws23{word-spacing:3.996000px;}
.ws4d{word-spacing:4.050000px;}
.ws33{word-spacing:4.482000px;}
.ws13{word-spacing:4.536000px;}
.ws34{word-spacing:4.590000px;}
.ws1b{word-spacing:4.644000px;}
.ws2e{word-spacing:4.698000px;}
.ws2a{word-spacing:4.968000px;}
.ws72{word-spacing:5.076000px;}
.ws5d{word-spacing:5.130000px;}
.ws14{word-spacing:5.184000px;}
.ws4f{word-spacing:5.238000px;}
.ws4a{word-spacing:5.292000px;}
.ws41{word-spacing:5.454000px;}
.ws46{word-spacing:5.670000px;}
.ws3c{word-spacing:5.778000px;}
.ws19{word-spacing:5.832000px;}
.ws62{word-spacing:5.940000px;}
.ws2c{word-spacing:5.994000px;}
.ws6{word-spacing:6.048000px;}
.ws1e{word-spacing:6.318000px;}
.ws76{word-spacing:6.384000px;}
.ws79{word-spacing:6.528000px;}
.ws77{word-spacing:6.576000px;}
.ws24{word-spacing:6.750000px;}
.ws82{word-spacing:7.920000px;}
.ws69{word-spacing:8.316000px;}
.ws43{word-spacing:8.748000px;}
.ws42{word-spacing:9.018000px;}
.ws31{word-spacing:104.351400px;}
.wsa{word-spacing:104.352000px;}
._f{margin-left:-13.536000px;}
._8{margin-left:-7.924452px;}
._3{margin-left:-3.540000px;}
._0{margin-left:-2.496000px;}
._1{margin-left:-1.127100px;}
._5{width:1.152000px;}
._2{width:2.574000px;}
._7{width:3.587306px;}
._9{width:4.678294px;}
._4{width:6.096000px;}
._6{width:7.977600px;}
._e{width:9.556200px;}
._11{width:13.555200px;}
._12{width:14.664000px;}
._10{width:16.539000px;}
._b{width:19.852800px;}
._13{width:20.908800px;}
._14{width:22.060800px;}
._c{width:31.248000px;}
._d{width:33.600000px;}
._a{width:38.400000px;}
.fc6{color:rgb(123,121,121);}
.fc7{color:rgb(33,79,141);}
.fc5{color:transparent;}
.fc3{color:rgb(204,71,63);}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(0,132,173);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:27.984000px;}
.fsa{font-size:31.482000px;}
.fs7{font-size:36.000000px;}
.fs0{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:95.514000px;}
.fs1{font-size:102.000000px;}
.fs6{font-size:120.984000px;}
.y0{bottom:0.000000px;}
.y2{bottom:45.188400px;}
.y1{bottom:56.888400px;}
.ydb{bottom:68.016450px;}
.y80{bottom:68.016600px;}
.y16d{bottom:68.019450px;}
.yea{bottom:68.022450px;}
.y188{bottom:68.025450px;}
.ya1{bottom:68.028450px;}
.y59{bottom:68.028600px;}
.y13b{bottom:68.031450px;}
.y1fd{bottom:69.366150px;}
.y170{bottom:75.541650px;}
.yc2{bottom:75.784800px;}
.y17{bottom:80.787450px;}
.y145{bottom:81.388650px;}
.yda{bottom:81.519450px;}
.y7f{bottom:81.519600px;}
.y16c{bottom:81.522450px;}
.ye9{bottom:81.525450px;}
.y187{bottom:81.528450px;}
.ya0{bottom:81.531450px;}
.y58{bottom:81.531600px;}
.y1fc{bottom:85.866150px;}
.y16{bottom:93.387450px;}
.y16f{bottom:93.537150px;}
.yc1{bottom:93.780300px;}
.yd9{bottom:95.022450px;}
.y7e{bottom:95.022600px;}
.y16b{bottom:95.025450px;}
.ye8{bottom:95.028450px;}
.y186{bottom:95.031450px;}
.y144{bottom:99.384150px;}
.y1fb{bottom:102.366150px;}
.y1d7{bottom:104.766150px;}
.y15{bottom:105.987450px;}
.yd8{bottom:108.525450px;}
.y7d{bottom:108.525600px;}
.y16a{bottom:108.528450px;}
.ye7{bottom:108.531450px;}
.y13a{bottom:111.505650px;}
.y16e{bottom:111.532650px;}
.yc0{bottom:111.775800px;}
.y143{bottom:117.379650px;}
.y1fa{bottom:118.866150px;}
.y1d6{bottom:121.266150px;}
.yd7{bottom:122.028450px;}
.y7c{bottom:122.028600px;}
.y169{bottom:122.031450px;}
.y10a{bottom:122.179650px;}
.y139{bottom:129.501150px;}
.y11b{bottom:129.528150px;}
.y57{bottom:129.753300px;}
.ybf{bottom:129.771300px;}
.y1f9{bottom:135.366150px;}
.y142{bottom:135.375150px;}
.yd6{bottom:135.531450px;}
.y7b{bottom:135.531600px;}
.y1d5{bottom:137.766150px;}
.y109{bottom:140.175150px;}
.y185{bottom:143.788650px;}
.y19a{bottom:147.411150px;}
.ye6{bottom:147.438150px;}
.y138{bottom:147.496650px;}
.y11a{bottom:147.523650px;}
.y56{bottom:147.748800px;}
.ybe{bottom:147.766800px;}
.y14{bottom:149.820300px;}
.y1f8{bottom:151.866150px;}
.y141{bottom:153.370650px;}
.y1d4{bottom:154.266150px;}
.y168{bottom:156.478650px;}
.y108{bottom:158.170650px;}
.y184{bottom:161.784150px;}
.y1b7{bottom:161.874150px;}
.y199{bottom:165.406650px;}
.ye5{bottom:165.433650px;}
.y137{bottom:165.492150px;}
.y119{bottom:165.519150px;}
.y55{bottom:165.744300px;}
.ybd{bottom:165.762300px;}
.y1f7{bottom:168.366150px;}
.y1d3{bottom:170.766150px;}
.y140{bottom:171.366150px;}
.y13{bottom:173.324250px;}
.y167{bottom:174.474150px;}
.y107{bottom:176.166150px;}
.y183{bottom:179.779650px;}
.y1b6{bottom:179.869650px;}
.y7a{bottom:180.456150px;}
.y198{bottom:183.402150px;}
.ye4{bottom:183.429150px;}
.yd5{bottom:183.451650px;}
.y136{bottom:183.487650px;}
.y118{bottom:183.514650px;}
.y54{bottom:183.739800px;}
.ybc{bottom:183.757800px;}
.y1f6{bottom:184.866150px;}
.y1d2{bottom:187.266150px;}
.y166{bottom:192.469650px;}
.y182{bottom:197.775150px;}
.y1b5{bottom:197.865150px;}
.y79{bottom:198.451650px;}
.y1f5{bottom:201.366150px;}
.y197{bottom:201.397650px;}
.y9f{bottom:201.424650px;}
.yd4{bottom:201.447150px;}
.y135{bottom:201.483150px;}
.y117{bottom:201.510150px;}
.y53{bottom:201.735300px;}
.ybb{bottom:201.753300px;}
.y1d1{bottom:203.766150px;}
.y13f{bottom:207.366150px;}
.y12{bottom:209.324250px;}
.y165{bottom:210.465150px;}
.y106{bottom:212.166150px;}
.y181{bottom:215.770650px;}
.y1b4{bottom:215.860650px;}
.y78{bottom:216.447150px;}
.y1f4{bottom:217.866150px;}
.y196{bottom:219.393150px;}
.y9e{bottom:219.420150px;}
.yd3{bottom:219.442650px;}
.y134{bottom:219.478650px;}
.y116{bottom:219.505650px;}
.y52{bottom:219.730800px;}
.yba{bottom:219.748800px;}
.y1d0{bottom:220.266150px;}
.y13e{bottom:223.866150px;}
.y11{bottom:224.324250px;}
.y164{bottom:228.460650px;}
.y105{bottom:233.766150px;}
.y180{bottom:233.829150px;}
.y1b3{bottom:233.856150px;}
.y1f3{bottom:234.366150px;}
.y77{bottom:234.442650px;}
.y1cf{bottom:236.766150px;}
.y195{bottom:237.388650px;}
.y9d{bottom:237.415650px;}
.yd2{bottom:237.438150px;}
.y133{bottom:237.474150px;}
.y115{bottom:237.501150px;}
.y51{bottom:237.726300px;}
.yb9{bottom:237.744300px;}
.y10{bottom:239.324250px;}
.y13d{bottom:240.366150px;}
.y163{bottom:246.456150px;}
.y1f2{bottom:250.866150px;}
.y17f{bottom:251.824650px;}
.y1b2{bottom:251.851650px;}
.y76{bottom:252.438150px;}
.y1ce{bottom:253.266150px;}
.yf{bottom:254.324250px;}
.y194{bottom:255.384150px;}
.y9c{bottom:255.411150px;}
.yd1{bottom:255.433650px;}
.y132{bottom:255.469650px;}
.y114{bottom:255.496650px;}
.y50{bottom:255.721800px;}
.yb8{bottom:255.739800px;}
.y13c{bottom:256.866150px;}
.y33{bottom:263.563350px;}
.y162{bottom:264.451650px;}
.y1f1{bottom:267.366150px;}
.ye{bottom:269.324250px;}
.y1cd{bottom:269.766150px;}
.y17e{bottom:269.820150px;}
.y1b1{bottom:269.847150px;}
.y75{bottom:270.433650px;}
.y193{bottom:273.379650px;}
.y9b{bottom:273.406650px;}
.yd0{bottom:273.429150px;}
.y131{bottom:273.465150px;}
.y113{bottom:273.492150px;}
.y4f{bottom:273.717300px;}
.yb7{bottom:273.735300px;}
.y161{bottom:282.447150px;}
.y1f0{bottom:283.866150px;}
.yd{bottom:284.324250px;}
.y1cc{bottom:286.266150px;}
.y17d{bottom:287.815650px;}
.y1b0{bottom:287.842650px;}
.y74{bottom:288.429150px;}
.y192{bottom:291.375150px;}
.y9a{bottom:291.402150px;}
.ycf{bottom:291.424650px;}
.y130{bottom:291.460650px;}
.y104{bottom:291.483150px;}
.y112{bottom:291.487650px;}
.y4e{bottom:291.712800px;}
.yb6{bottom:291.730800px;}
.yc{bottom:299.324250px;}
.y1ef{bottom:300.366150px;}
.y160{bottom:300.442650px;}
.y1cb{bottom:302.766150px;}
.y17c{bottom:305.811150px;}
.y1af{bottom:305.838150px;}
.y73{bottom:306.424650px;}
.y191{bottom:309.370650px;}
.y99{bottom:309.397650px;}
.yce{bottom:309.420150px;}
.y12f{bottom:309.456150px;}
.y103{bottom:309.478650px;}
.y111{bottom:309.483150px;}
.y4d{bottom:309.708300px;}
.yb5{bottom:309.726300px;}
.y1ee{bottom:316.866150px;}
.y15f{bottom:318.438150px;}
.y1ca{bottom:319.266150px;}
.yb{bottom:322.828200px;}
.y17b{bottom:323.806650px;}
.y1ae{bottom:323.833650px;}
.y72{bottom:324.420150px;}
.y98{bottom:327.393150px;}
.y190{bottom:327.402150px;}
.ycd{bottom:327.415650px;}
.y12e{bottom:327.451650px;}
.y102{bottom:327.474150px;}
.y110{bottom:327.478650px;}
.y4c{bottom:327.703800px;}
.yb4{bottom:327.721800px;}
.y1ed{bottom:333.366150px;}
.y1c9{bottom:335.766150px;}
.y15e{bottom:336.433650px;}
.y17a{bottom:341.802150px;}
.y1ad{bottom:341.829150px;}
.y71{bottom:342.415650px;}
.y97{bottom:345.388650px;}
.y18f{bottom:345.397650px;}
.ycc{bottom:345.411150px;}
.y12d{bottom:345.447150px;}
.y101{bottom:345.469650px;}
.y10f{bottom:345.474150px;}
.y4b{bottom:345.699300px;}
.yb3{bottom:345.717300px;}
.y1ec{bottom:349.866150px;}
.y1c8{bottom:352.266150px;}
.y15d{bottom:354.429150px;}
.ya{bottom:358.828200px;}
.y179{bottom:359.797650px;}
.y1ac{bottom:359.824650px;}
.y70{bottom:360.411150px;}
.y96{bottom:363.384150px;}
.y18e{bottom:363.393150px;}
.ycb{bottom:363.406650px;}
.y12c{bottom:363.442650px;}
.y100{bottom:363.465150px;}
.y10e{bottom:363.469650px;}
.y4a{bottom:363.694800px;}
.yb2{bottom:363.712800px;}
.y1eb{bottom:366.366150px;}
.y1c7{bottom:368.766150px;}
.y15c{bottom:372.424650px;}
.y9{bottom:375.328200px;}
.y178{bottom:377.793150px;}
.y1ab{bottom:377.820150px;}
.y6f{bottom:378.406650px;}
.y95{bottom:381.379650px;}
.y18d{bottom:381.388650px;}
.yca{bottom:381.402150px;}
.y12b{bottom:381.438150px;}
.yff{bottom:381.460650px;}
.y10d{bottom:381.465150px;}
.y49{bottom:381.690300px;}
.yb1{bottom:381.708300px;}
.y1ea{bottom:382.866150px;}
.y1c6{bottom:385.266150px;}
.y15b{bottom:390.420150px;}
.y8{bottom:391.828200px;}
.y177{bottom:395.788650px;}
.y1aa{bottom:395.815650px;}
.y6e{bottom:396.402150px;}
.y1e9{bottom:399.366150px;}
.y94{bottom:399.375150px;}
.y18c{bottom:399.384150px;}
.yc9{bottom:399.397650px;}
.y12a{bottom:399.433650px;}
.yfe{bottom:399.456150px;}
.y10c{bottom:399.460650px;}
.y48{bottom:399.685800px;}
.yb0{bottom:399.703800px;}
.y1c5{bottom:401.766150px;}
.y7{bottom:408.322950px;}
.y15a{bottom:408.415650px;}
.y176{bottom:413.784150px;}
.y1a9{bottom:413.811150px;}
.y6d{bottom:414.397650px;}
.y1e8{bottom:415.866150px;}
.y93{bottom:417.370650px;}
.y18b{bottom:417.379650px;}
.yc8{bottom:417.393150px;}
.y129{bottom:417.429150px;}
.yfd{bottom:417.451650px;}
.y10b{bottom:417.456150px;}
.y47{bottom:417.681300px;}
.yaf{bottom:417.699300px;}
.y1c4{bottom:418.266150px;}
.y159{bottom:426.411150px;}
.y175{bottom:431.779650px;}
.y1a8{bottom:431.806650px;}
.y1e7{bottom:432.366150px;}
.y6c{bottom:432.393150px;}
.y31{bottom:432.714450px;}
.y1c3{bottom:434.766150px;}
.y18a{bottom:435.375150px;}
.yc7{bottom:435.388650px;}
.ye3{bottom:435.402150px;}
.y128{bottom:435.424650px;}
.yfc{bottom:435.447150px;}
.y92{bottom:435.451650px;}
.y46{bottom:435.676800px;}
.yae{bottom:435.694800px;}
.y158{bottom:444.406650px;}
.y30{bottom:447.114450px;}
.y1e6{bottom:448.866150px;}
.y174{bottom:449.775150px;}
.y1a7{bottom:449.802150px;}
.y6b{bottom:450.388650px;}
.y1c2{bottom:451.266150px;}
.y189{bottom:453.370650px;}
.yc6{bottom:453.384150px;}
.ye2{bottom:453.397650px;}
.y127{bottom:453.420150px;}
.yfb{bottom:453.442650px;}
.y91{bottom:453.447150px;}
.y45{bottom:453.672300px;}
.yad{bottom:453.690300px;}
.y2f{bottom:461.514450px;}
.y157{bottom:462.402150px;}
.y1e5{bottom:465.366150px;}
.y173{bottom:467.770650px;}
.y1a6{bottom:467.797650px;}
.y6a{bottom:468.384150px;}
.y6{bottom:468.847950px;}
.yc5{bottom:471.379650px;}
.ye1{bottom:471.393150px;}
.y126{bottom:471.415650px;}
.yfa{bottom:471.438150px;}
.y90{bottom:471.442650px;}
.y44{bottom:471.667800px;}
.yac{bottom:471.685800px;}
.y2e{bottom:475.914450px;}
.y156{bottom:480.397650px;}
.y1e4{bottom:481.866150px;}
.y172{bottom:485.766150px;}
.y1a5{bottom:485.793150px;}
.y69{bottom:486.379650px;}
.y5{bottom:486.847950px;}
.yc4{bottom:489.375150px;}
.ye0{bottom:489.388650px;}
.y125{bottom:489.411150px;}
.yf9{bottom:489.433650px;}
.y8f{bottom:489.438150px;}
.y43{bottom:489.663300px;}
.yab{bottom:489.681300px;}
.y2d{bottom:490.314450px;}
.y1e3{bottom:498.366150px;}
.y155{bottom:498.393150px;}
.y1a4{bottom:503.788650px;}
.y68{bottom:504.375150px;}
.y2c{bottom:504.714450px;}
.yc3{bottom:507.370650px;}
.ydf{bottom:507.384150px;}
.y124{bottom:507.406650px;}
.yf8{bottom:507.429150px;}
.y8e{bottom:507.433650px;}
.y42{bottom:507.658800px;}
.yaa{bottom:507.676800px;}
.y1e2{bottom:514.866150px;}
.y154{bottom:516.388650px;}
.y2b{bottom:519.114450px;}
.y171{bottom:521.766150px;}
.y1a3{bottom:521.784150px;}
.y67{bottom:522.370650px;}
.y4{bottom:524.647950px;}
.yde{bottom:525.379650px;}
.y123{bottom:525.402150px;}
.yf7{bottom:525.424650px;}
.y8d{bottom:525.429150px;}
.y41{bottom:525.654300px;}
.ya9{bottom:525.672300px;}
.y1e1{bottom:531.366150px;}
.y2a{bottom:533.514450px;}
.y153{bottom:534.384150px;}
.y1a2{bottom:539.779650px;}
.y66{bottom:540.366150px;}
.ydd{bottom:543.375150px;}
.y122{bottom:543.397650px;}
.y1c1{bottom:543.411150px;}
.yf6{bottom:543.420150px;}
.y8c{bottom:543.424650px;}
.y40{bottom:543.649800px;}
.ya8{bottom:543.667800px;}
.y1e0{bottom:547.866150px;}
.y29{bottom:547.914450px;}
.y152{bottom:552.379650px;}
.y3{bottom:555.247950px;}
.y1a1{bottom:557.775150px;}
.ydc{bottom:561.370650px;}
.y121{bottom:561.393150px;}
.y1c0{bottom:561.406650px;}
.yf5{bottom:561.415650px;}
.y8b{bottom:561.420150px;}
.y3f{bottom:561.645300px;}
.ya7{bottom:561.663300px;}
.y1df{bottom:564.366150px;}
.y151{bottom:570.375150px;}
.y28{bottom:570.818400px;}
.y1a0{bottom:575.770650px;}
.y65{bottom:576.366150px;}
.y120{bottom:579.388650px;}
.y1bf{bottom:579.402150px;}
.yf4{bottom:579.411150px;}
.y8a{bottom:579.415650px;}
.y3e{bottom:579.640800px;}
.ya6{bottom:579.658800px;}
.y1de{bottom:580.866150px;}
.y150{bottom:588.370650px;}
.y64{bottom:592.866150px;}
.y19f{bottom:593.766150px;}
.y1dd{bottom:597.366150px;}
.y11f{bottom:597.384150px;}
.y1be{bottom:597.397650px;}
.yf3{bottom:597.406650px;}
.y89{bottom:597.411150px;}
.y3d{bottom:597.636300px;}
.ya5{bottom:597.654300px;}
.y14f{bottom:606.379650px;}
.y27{bottom:606.818400px;}
.y63{bottom:609.366150px;}
.y1dc{bottom:613.866150px;}
.y11e{bottom:615.379650px;}
.y1bd{bottom:615.393150px;}
.yf2{bottom:615.402150px;}
.y88{bottom:615.406650px;}
.y3c{bottom:615.631800px;}
.ya4{bottom:615.649800px;}
.y14e{bottom:624.375150px;}
.y62{bottom:625.866150px;}
.y19{bottom:627.749700px;}
.y19e{bottom:629.766150px;}
.y26{bottom:630.322350px;}
.y1db{bottom:630.366150px;}
.y11d{bottom:633.375150px;}
.y1bc{bottom:633.388650px;}
.yf1{bottom:633.397650px;}
.y87{bottom:633.402150px;}
.y3b{bottom:633.627300px;}
.ya3{bottom:633.645300px;}
.y61{bottom:642.366150px;}
.y14d{bottom:642.370650px;}
.y1da{bottom:646.866150px;}
.y18{bottom:648.444450px;}
.y11c{bottom:651.370650px;}
.y1bb{bottom:651.384150px;}
.yf0{bottom:651.393150px;}
.y86{bottom:651.397650px;}
.y3a{bottom:651.622800px;}
.ya2{bottom:651.640800px;}
.y60{bottom:658.866150px;}
.y14c{bottom:660.366150px;}
.y1d9{bottom:663.366150px;}
.y25{bottom:666.322350px;}
.y1ba{bottom:669.379650px;}
.yef{bottom:669.388650px;}
.y85{bottom:669.393150px;}
.y39{bottom:669.636300px;}
.y1b{bottom:670.494750px;}
.y5f{bottom:675.366150px;}
.y1d8{bottom:679.866150px;}
.y24{bottom:681.322350px;}
.y1b9{bottom:687.375150px;}
.y19d{bottom:687.379650px;}
.yee{bottom:687.384150px;}
.y84{bottom:687.388650px;}
.y38{bottom:687.631800px;}
.y5e{bottom:691.866150px;}
.y23{bottom:696.322350px;}
.y14b{bottom:696.366150px;}
.y1a{bottom:699.148800px;}
.y1b8{bottom:705.370650px;}
.y19c{bottom:705.375150px;}
.yed{bottom:705.379650px;}
.y83{bottom:705.384150px;}
.y37{bottom:705.627300px;}
.y5d{bottom:708.366150px;}
.y22{bottom:711.322350px;}
.y14a{bottom:712.866150px;}
.y19b{bottom:723.370650px;}
.yec{bottom:723.375150px;}
.y82{bottom:723.379650px;}
.y36{bottom:723.622800px;}
.y5c{bottom:724.866150px;}
.y21{bottom:726.322350px;}
.y149{bottom:729.366150px;}
.y20{bottom:741.322350px;}
.yeb{bottom:741.370650px;}
.y81{bottom:741.375150px;}
.y35{bottom:741.618300px;}
.y148{bottom:745.866150px;}
.y1f{bottom:756.322350px;}
.y5b{bottom:759.370650px;}
.y147{bottom:762.366150px;}
.y5a{bottom:777.366150px;}
.y34{bottom:777.618300px;}
.y146{bottom:778.866150px;}
.y1e{bottom:779.826300px;}
.y1d{bottom:790.866150px;}
.y32{bottom:846.484200px;}
.y1c{bottom:848.173350px;}
.h2{height:29.718000px;}
.ha{height:32.088000px;}
.hb{height:32.256000px;}
.h6{height:33.984000px;}
.h7{height:34.080000px;}
.he{height:36.576000px;}
.h8{height:36.672000px;}
.hf{height:37.632000px;}
.h5{height:40.080000px;}
.h12{height:41.256000px;}
.h9{height:43.008000px;}
.h4{height:45.840000px;}
.h13{height:48.042000px;}
.h10{height:48.096000px;}
.h14{height:48.348000px;}
.h11{height:48.384000px;}
.hc{height:67.050828px;}
.h3{height:68.136000px;}
.hd{height:127.033200px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x19{left:24.607650px;}
.xf{left:31.003500px;}
.x10{left:43.299150px;}
.x11{left:72.283500px;}
.xc{left:85.036650px;}
.x12{left:93.543300px;}
.xa{left:97.795200px;}
.x3{left:99.282750px;}
.x18{left:102.043050px;}
.xb{left:106.299150px;}
.x5{left:111.082650px;}
.x13{left:114.803250px;}
.x1{left:118.055850px;}
.x4{left:122.156250px;}
.x17{left:123.307050px;}
.x16{left:127.552950px;}
.x1b{left:136.058850px;}
.xe{left:145.780800px;}
.xd{left:147.507000px;}
.x1a{left:157.322850px;}
.x15{left:196.977600px;}
.x2{left:229.079100px;}
.x6{left:234.982650px;}
.x7{left:341.257650px;}
.x9{left:419.581650px;}
.x8{left:424.537650px;}
.x14{left:594.000000px;}
@media print{
.v1{vertical-align:-6.005867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v2{vertical-align:15.920000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.560000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.341333pt;}
.lse{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:-0.085333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.083952pt;}
.lsa{letter-spacing:0.084240pt;}
.lsb{letter-spacing:0.139568pt;}
.ls8{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.391440pt;}
.ls2{letter-spacing:0.430165pt;}
.ls3{letter-spacing:0.537707pt;}
.lsf{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.672000pt;}
.ls13{letter-spacing:0.682667pt;}
.ls5{letter-spacing:0.768000pt;}
.ls11{letter-spacing:1.392000pt;}
.ls12{letter-spacing:11.827200pt;}
.wsf{word-spacing:-12.032000pt;}
.ws21{word-spacing:-10.080000pt;}
.ws2{word-spacing:-10.026667pt;}
.ws12{word-spacing:-9.600000pt;}
.ws11{word-spacing:-9.312000pt;}
.ws7b{word-spacing:-9.216000pt;}
.ws52{word-spacing:-8.880000pt;}
.ws7c{word-spacing:-8.704000pt;}
.ws51{word-spacing:-8.592000pt;}
.ws1{word-spacing:-8.533333pt;}
.wsb{word-spacing:-8.448000pt;}
.ws71{word-spacing:-8.277333pt;}
.ws7a{word-spacing:-7.850667pt;}
.ws40{word-spacing:-7.466667pt;}
.ws0{word-spacing:-6.933333pt;}
.ws60{word-spacing:-5.680752pt;}
.ws10{word-spacing:-5.596800pt;}
.ws20{word-spacing:-4.974933pt;}
.ws7{word-spacing:-2.346667pt;}
.ws65{word-spacing:-1.872000pt;}
.ws16{word-spacing:-1.776000pt;}
.ws3a{word-spacing:-1.632000pt;}
.ws50{word-spacing:-1.584000pt;}
.ws56{word-spacing:-1.536000pt;}
.ws3f{word-spacing:-1.344000pt;}
.ws8d{word-spacing:-1.322667pt;}
.ws35{word-spacing:-1.152000pt;}
.ws1d{word-spacing:-0.864000pt;}
.ws27{word-spacing:-0.816000pt;}
.ws22{word-spacing:-0.768000pt;}
.ws83{word-spacing:-0.725333pt;}
.ws4b{word-spacing:-0.720000pt;}
.wsd{word-spacing:-0.682667pt;}
.ws25{word-spacing:-0.672000pt;}
.ws59{word-spacing:-0.624000pt;}
.ws63{word-spacing:-0.576000pt;}
.ws6e{word-spacing:-0.480000pt;}
.ws88{word-spacing:-0.426667pt;}
.ws64{word-spacing:-0.384000pt;}
.ws6f{word-spacing:-0.288000pt;}
.ws1c{word-spacing:-0.240000pt;}
.ws6d{word-spacing:-0.192000pt;}
.ws3b{word-spacing:-0.144000pt;}
.ws8b{word-spacing:-0.128000pt;}
.ws2d{word-spacing:-0.096000pt;}
.ws8c{word-spacing:-0.085333pt;}
.ws81{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:0.085333pt;}
.ws44{word-spacing:0.096000pt;}
.ws9{word-spacing:0.107541pt;}
.ws26{word-spacing:0.192000pt;}
.ws86{word-spacing:0.213333pt;}
.ws5a{word-spacing:0.240000pt;}
.ws1a{word-spacing:0.288000pt;}
.ws7e{word-spacing:0.341333pt;}
.ws6c{word-spacing:0.384000pt;}
.ws67{word-spacing:0.432000pt;}
.ws39{word-spacing:0.480000pt;}
.ws70{word-spacing:0.560000pt;}
.ws47{word-spacing:0.672000pt;}
.ws49{word-spacing:0.720000pt;}
.ws55{word-spacing:0.912000pt;}
.wsc{word-spacing:0.981333pt;}
.ws45{word-spacing:1.008000pt;}
.ws8a{word-spacing:1.024000pt;}
.ws30{word-spacing:1.056000pt;}
.ws89{word-spacing:1.066667pt;}
.ws5b{word-spacing:1.104000pt;}
.ws2f{word-spacing:1.152000pt;}
.wse{word-spacing:1.194667pt;}
.ws48{word-spacing:1.200000pt;}
.ws84{word-spacing:1.237333pt;}
.ws53{word-spacing:1.248000pt;}
.ws85{word-spacing:1.280000pt;}
.ws5c{word-spacing:1.322667pt;}
.ws4c{word-spacing:1.392000pt;}
.ws7d{word-spacing:1.493333pt;}
.ws78{word-spacing:1.578667pt;}
.ws7f{word-spacing:1.749333pt;}
.ws28{word-spacing:1.776000pt;}
.ws80{word-spacing:1.792000pt;}
.ws4e{word-spacing:1.824000pt;}
.ws32{word-spacing:1.872000pt;}
.ws61{word-spacing:1.962667pt;}
.ws38{word-spacing:1.968000pt;}
.ws5e{word-spacing:2.016000pt;}
.ws8{word-spacing:2.053333pt;}
.ws5f{word-spacing:2.064000pt;}
.ws1f{word-spacing:2.090667pt;}
.ws6a{word-spacing:2.112000pt;}
.ws3d{word-spacing:2.128000pt;}
.ws29{word-spacing:2.160000pt;}
.ws3e{word-spacing:2.165333pt;}
.ws36{word-spacing:2.208000pt;}
.ws37{word-spacing:2.256000pt;}
.ws68{word-spacing:2.352000pt;}
.ws6b{word-spacing:2.400000pt;}
.ws66{word-spacing:2.448000pt;}
.ws74{word-spacing:2.474667pt;}
.ws54{word-spacing:2.544000pt;}
.ws75{word-spacing:2.560000pt;}
.ws15{word-spacing:2.688000pt;}
.ws18{word-spacing:2.736000pt;}
.ws17{word-spacing:2.784000pt;}
.ws87{word-spacing:2.858667pt;}
.ws2b{word-spacing:3.120000pt;}
.ws73{word-spacing:3.200000pt;}
.ws57{word-spacing:3.216000pt;}
.ws58{word-spacing:3.312000pt;}
.ws4{word-spacing:3.370667pt;}
.ws8e{word-spacing:3.498667pt;}
.ws23{word-spacing:3.552000pt;}
.ws4d{word-spacing:3.600000pt;}
.ws33{word-spacing:3.984000pt;}
.ws13{word-spacing:4.032000pt;}
.ws34{word-spacing:4.080000pt;}
.ws1b{word-spacing:4.128000pt;}
.ws2e{word-spacing:4.176000pt;}
.ws2a{word-spacing:4.416000pt;}
.ws72{word-spacing:4.512000pt;}
.ws5d{word-spacing:4.560000pt;}
.ws14{word-spacing:4.608000pt;}
.ws4f{word-spacing:4.656000pt;}
.ws4a{word-spacing:4.704000pt;}
.ws41{word-spacing:4.848000pt;}
.ws46{word-spacing:5.040000pt;}
.ws3c{word-spacing:5.136000pt;}
.ws19{word-spacing:5.184000pt;}
.ws62{word-spacing:5.280000pt;}
.ws2c{word-spacing:5.328000pt;}
.ws6{word-spacing:5.376000pt;}
.ws1e{word-spacing:5.616000pt;}
.ws76{word-spacing:5.674667pt;}
.ws79{word-spacing:5.802667pt;}
.ws77{word-spacing:5.845333pt;}
.ws24{word-spacing:6.000000pt;}
.ws82{word-spacing:7.040000pt;}
.ws69{word-spacing:7.392000pt;}
.ws43{word-spacing:7.776000pt;}
.ws42{word-spacing:8.016000pt;}
.ws31{word-spacing:92.756800pt;}
.wsa{word-spacing:92.757333pt;}
._f{margin-left:-12.032000pt;}
._8{margin-left:-7.043957pt;}
._3{margin-left:-3.146667pt;}
._0{margin-left:-2.218667pt;}
._1{margin-left:-1.001867pt;}
._5{width:1.024000pt;}
._2{width:2.288000pt;}
._7{width:3.188716pt;}
._9{width:4.158484pt;}
._4{width:5.418667pt;}
._6{width:7.091200pt;}
._e{width:8.494400pt;}
._11{width:12.049067pt;}
._12{width:13.034667pt;}
._10{width:14.701333pt;}
._b{width:17.646933pt;}
._13{width:18.585600pt;}
._14{width:19.609600pt;}
._c{width:27.776000pt;}
._d{width:29.866667pt;}
._a{width:34.133333pt;}
.fsb{font-size:24.874667pt;}
.fsa{font-size:27.984000pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:84.901333pt;}
.fs1{font-size:90.666667pt;}
.fs6{font-size:107.541333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:40.167467pt;}
.y1{bottom:50.567467pt;}
.ydb{bottom:60.459067pt;}
.y80{bottom:60.459200pt;}
.y16d{bottom:60.461733pt;}
.yea{bottom:60.464400pt;}
.y188{bottom:60.467067pt;}
.ya1{bottom:60.469733pt;}
.y59{bottom:60.469867pt;}
.y13b{bottom:60.472400pt;}
.y1fd{bottom:61.658800pt;}
.y170{bottom:67.148133pt;}
.yc2{bottom:67.364267pt;}
.y17{bottom:71.811067pt;}
.y145{bottom:72.345467pt;}
.yda{bottom:72.461733pt;}
.y7f{bottom:72.461867pt;}
.y16c{bottom:72.464400pt;}
.ye9{bottom:72.467067pt;}
.y187{bottom:72.469733pt;}
.ya0{bottom:72.472400pt;}
.y58{bottom:72.472533pt;}
.y1fc{bottom:76.325467pt;}
.y16{bottom:83.011067pt;}
.y16f{bottom:83.144133pt;}
.yc1{bottom:83.360267pt;}
.yd9{bottom:84.464400pt;}
.y7e{bottom:84.464533pt;}
.y16b{bottom:84.467067pt;}
.ye8{bottom:84.469733pt;}
.y186{bottom:84.472400pt;}
.y144{bottom:88.341467pt;}
.y1fb{bottom:90.992133pt;}
.y1d7{bottom:93.125467pt;}
.y15{bottom:94.211067pt;}
.yd8{bottom:96.467067pt;}
.y7d{bottom:96.467200pt;}
.y16a{bottom:96.469733pt;}
.ye7{bottom:96.472400pt;}
.y13a{bottom:99.116133pt;}
.y16e{bottom:99.140133pt;}
.yc0{bottom:99.356267pt;}
.y143{bottom:104.337467pt;}
.y1fa{bottom:105.658800pt;}
.y1d6{bottom:107.792133pt;}
.yd7{bottom:108.469733pt;}
.y7c{bottom:108.469867pt;}
.y169{bottom:108.472400pt;}
.y10a{bottom:108.604133pt;}
.y139{bottom:115.112133pt;}
.y11b{bottom:115.136133pt;}
.y57{bottom:115.336267pt;}
.ybf{bottom:115.352267pt;}
.y1f9{bottom:120.325467pt;}
.y142{bottom:120.333467pt;}
.yd6{bottom:120.472400pt;}
.y7b{bottom:120.472533pt;}
.y1d5{bottom:122.458800pt;}
.y109{bottom:124.600133pt;}
.y185{bottom:127.812133pt;}
.y19a{bottom:131.032133pt;}
.ye6{bottom:131.056133pt;}
.y138{bottom:131.108133pt;}
.y11a{bottom:131.132133pt;}
.y56{bottom:131.332267pt;}
.ybe{bottom:131.348267pt;}
.y14{bottom:133.173600pt;}
.y1f8{bottom:134.992133pt;}
.y141{bottom:136.329467pt;}
.y1d4{bottom:137.125467pt;}
.y168{bottom:139.092133pt;}
.y108{bottom:140.596133pt;}
.y184{bottom:143.808133pt;}
.y1b7{bottom:143.888133pt;}
.y199{bottom:147.028133pt;}
.ye5{bottom:147.052133pt;}
.y137{bottom:147.104133pt;}
.y119{bottom:147.128133pt;}
.y55{bottom:147.328267pt;}
.ybd{bottom:147.344267pt;}
.y1f7{bottom:149.658800pt;}
.y1d3{bottom:151.792133pt;}
.y140{bottom:152.325467pt;}
.y13{bottom:154.066000pt;}
.y167{bottom:155.088133pt;}
.y107{bottom:156.592133pt;}
.y183{bottom:159.804133pt;}
.y1b6{bottom:159.884133pt;}
.y7a{bottom:160.405467pt;}
.y198{bottom:163.024133pt;}
.ye4{bottom:163.048133pt;}
.yd5{bottom:163.068133pt;}
.y136{bottom:163.100133pt;}
.y118{bottom:163.124133pt;}
.y54{bottom:163.324267pt;}
.ybc{bottom:163.340267pt;}
.y1f6{bottom:164.325467pt;}
.y1d2{bottom:166.458800pt;}
.y166{bottom:171.084133pt;}
.y182{bottom:175.800133pt;}
.y1b5{bottom:175.880133pt;}
.y79{bottom:176.401467pt;}
.y1f5{bottom:178.992133pt;}
.y197{bottom:179.020133pt;}
.y9f{bottom:179.044133pt;}
.yd4{bottom:179.064133pt;}
.y135{bottom:179.096133pt;}
.y117{bottom:179.120133pt;}
.y53{bottom:179.320267pt;}
.ybb{bottom:179.336267pt;}
.y1d1{bottom:181.125467pt;}
.y13f{bottom:184.325467pt;}
.y12{bottom:186.066000pt;}
.y165{bottom:187.080133pt;}
.y106{bottom:188.592133pt;}
.y181{bottom:191.796133pt;}
.y1b4{bottom:191.876133pt;}
.y78{bottom:192.397467pt;}
.y1f4{bottom:193.658800pt;}
.y196{bottom:195.016133pt;}
.y9e{bottom:195.040133pt;}
.yd3{bottom:195.060133pt;}
.y134{bottom:195.092133pt;}
.y116{bottom:195.116133pt;}
.y52{bottom:195.316267pt;}
.yba{bottom:195.332267pt;}
.y1d0{bottom:195.792133pt;}
.y13e{bottom:198.992133pt;}
.y11{bottom:199.399333pt;}
.y164{bottom:203.076133pt;}
.y105{bottom:207.792133pt;}
.y180{bottom:207.848133pt;}
.y1b3{bottom:207.872133pt;}
.y1f3{bottom:208.325467pt;}
.y77{bottom:208.393467pt;}
.y1cf{bottom:210.458800pt;}
.y195{bottom:211.012133pt;}
.y9d{bottom:211.036133pt;}
.yd2{bottom:211.056133pt;}
.y133{bottom:211.088133pt;}
.y115{bottom:211.112133pt;}
.y51{bottom:211.312267pt;}
.yb9{bottom:211.328267pt;}
.y10{bottom:212.732667pt;}
.y13d{bottom:213.658800pt;}
.y163{bottom:219.072133pt;}
.y1f2{bottom:222.992133pt;}
.y17f{bottom:223.844133pt;}
.y1b2{bottom:223.868133pt;}
.y76{bottom:224.389467pt;}
.y1ce{bottom:225.125467pt;}
.yf{bottom:226.066000pt;}
.y194{bottom:227.008133pt;}
.y9c{bottom:227.032133pt;}
.yd1{bottom:227.052133pt;}
.y132{bottom:227.084133pt;}
.y114{bottom:227.108133pt;}
.y50{bottom:227.308267pt;}
.yb8{bottom:227.324267pt;}
.y13c{bottom:228.325467pt;}
.y33{bottom:234.278533pt;}
.y162{bottom:235.068133pt;}
.y1f1{bottom:237.658800pt;}
.ye{bottom:239.399333pt;}
.y1cd{bottom:239.792133pt;}
.y17e{bottom:239.840133pt;}
.y1b1{bottom:239.864133pt;}
.y75{bottom:240.385467pt;}
.y193{bottom:243.004133pt;}
.y9b{bottom:243.028133pt;}
.yd0{bottom:243.048133pt;}
.y131{bottom:243.080133pt;}
.y113{bottom:243.104133pt;}
.y4f{bottom:243.304267pt;}
.yb7{bottom:243.320267pt;}
.y161{bottom:251.064133pt;}
.y1f0{bottom:252.325467pt;}
.yd{bottom:252.732667pt;}
.y1cc{bottom:254.458800pt;}
.y17d{bottom:255.836133pt;}
.y1b0{bottom:255.860133pt;}
.y74{bottom:256.381467pt;}
.y192{bottom:259.000133pt;}
.y9a{bottom:259.024133pt;}
.ycf{bottom:259.044133pt;}
.y130{bottom:259.076133pt;}
.y104{bottom:259.096133pt;}
.y112{bottom:259.100133pt;}
.y4e{bottom:259.300267pt;}
.yb6{bottom:259.316267pt;}
.yc{bottom:266.066000pt;}
.y1ef{bottom:266.992133pt;}
.y160{bottom:267.060133pt;}
.y1cb{bottom:269.125467pt;}
.y17c{bottom:271.832133pt;}
.y1af{bottom:271.856133pt;}
.y73{bottom:272.377467pt;}
.y191{bottom:274.996133pt;}
.y99{bottom:275.020133pt;}
.yce{bottom:275.040133pt;}
.y12f{bottom:275.072133pt;}
.y103{bottom:275.092133pt;}
.y111{bottom:275.096133pt;}
.y4d{bottom:275.296267pt;}
.yb5{bottom:275.312267pt;}
.y1ee{bottom:281.658800pt;}
.y15f{bottom:283.056133pt;}
.y1ca{bottom:283.792133pt;}
.yb{bottom:286.958400pt;}
.y17b{bottom:287.828133pt;}
.y1ae{bottom:287.852133pt;}
.y72{bottom:288.373467pt;}
.y98{bottom:291.016133pt;}
.y190{bottom:291.024133pt;}
.ycd{bottom:291.036133pt;}
.y12e{bottom:291.068133pt;}
.y102{bottom:291.088133pt;}
.y110{bottom:291.092133pt;}
.y4c{bottom:291.292267pt;}
.yb4{bottom:291.308267pt;}
.y1ed{bottom:296.325467pt;}
.y1c9{bottom:298.458800pt;}
.y15e{bottom:299.052133pt;}
.y17a{bottom:303.824133pt;}
.y1ad{bottom:303.848133pt;}
.y71{bottom:304.369467pt;}
.y97{bottom:307.012133pt;}
.y18f{bottom:307.020133pt;}
.ycc{bottom:307.032133pt;}
.y12d{bottom:307.064133pt;}
.y101{bottom:307.084133pt;}
.y10f{bottom:307.088133pt;}
.y4b{bottom:307.288267pt;}
.yb3{bottom:307.304267pt;}
.y1ec{bottom:310.992133pt;}
.y1c8{bottom:313.125467pt;}
.y15d{bottom:315.048133pt;}
.ya{bottom:318.958400pt;}
.y179{bottom:319.820133pt;}
.y1ac{bottom:319.844133pt;}
.y70{bottom:320.365467pt;}
.y96{bottom:323.008133pt;}
.y18e{bottom:323.016133pt;}
.ycb{bottom:323.028133pt;}
.y12c{bottom:323.060133pt;}
.y100{bottom:323.080133pt;}
.y10e{bottom:323.084133pt;}
.y4a{bottom:323.284267pt;}
.yb2{bottom:323.300267pt;}
.y1eb{bottom:325.658800pt;}
.y1c7{bottom:327.792133pt;}
.y15c{bottom:331.044133pt;}
.y9{bottom:333.625067pt;}
.y178{bottom:335.816133pt;}
.y1ab{bottom:335.840133pt;}
.y6f{bottom:336.361467pt;}
.y95{bottom:339.004133pt;}
.y18d{bottom:339.012133pt;}
.yca{bottom:339.024133pt;}
.y12b{bottom:339.056133pt;}
.yff{bottom:339.076133pt;}
.y10d{bottom:339.080133pt;}
.y49{bottom:339.280267pt;}
.yb1{bottom:339.296267pt;}
.y1ea{bottom:340.325467pt;}
.y1c6{bottom:342.458800pt;}
.y15b{bottom:347.040133pt;}
.y8{bottom:348.291733pt;}
.y177{bottom:351.812133pt;}
.y1aa{bottom:351.836133pt;}
.y6e{bottom:352.357467pt;}
.y1e9{bottom:354.992133pt;}
.y94{bottom:355.000133pt;}
.y18c{bottom:355.008133pt;}
.yc9{bottom:355.020133pt;}
.y12a{bottom:355.052133pt;}
.yfe{bottom:355.072133pt;}
.y10c{bottom:355.076133pt;}
.y48{bottom:355.276267pt;}
.yb0{bottom:355.292267pt;}
.y1c5{bottom:357.125467pt;}
.y7{bottom:362.953733pt;}
.y15a{bottom:363.036133pt;}
.y176{bottom:367.808133pt;}
.y1a9{bottom:367.832133pt;}
.y6d{bottom:368.353467pt;}
.y1e8{bottom:369.658800pt;}
.y93{bottom:370.996133pt;}
.y18b{bottom:371.004133pt;}
.yc8{bottom:371.016133pt;}
.y129{bottom:371.048133pt;}
.yfd{bottom:371.068133pt;}
.y10b{bottom:371.072133pt;}
.y47{bottom:371.272267pt;}
.yaf{bottom:371.288267pt;}
.y1c4{bottom:371.792133pt;}
.y159{bottom:379.032133pt;}
.y175{bottom:383.804133pt;}
.y1a8{bottom:383.828133pt;}
.y1e7{bottom:384.325467pt;}
.y6c{bottom:384.349467pt;}
.y31{bottom:384.635067pt;}
.y1c3{bottom:386.458800pt;}
.y18a{bottom:387.000133pt;}
.yc7{bottom:387.012133pt;}
.ye3{bottom:387.024133pt;}
.y128{bottom:387.044133pt;}
.yfc{bottom:387.064133pt;}
.y92{bottom:387.068133pt;}
.y46{bottom:387.268267pt;}
.yae{bottom:387.284267pt;}
.y158{bottom:395.028133pt;}
.y30{bottom:397.435067pt;}
.y1e6{bottom:398.992133pt;}
.y174{bottom:399.800133pt;}
.y1a7{bottom:399.824133pt;}
.y6b{bottom:400.345467pt;}
.y1c2{bottom:401.125467pt;}
.y189{bottom:402.996133pt;}
.yc6{bottom:403.008133pt;}
.ye2{bottom:403.020133pt;}
.y127{bottom:403.040133pt;}
.yfb{bottom:403.060133pt;}
.y91{bottom:403.064133pt;}
.y45{bottom:403.264267pt;}
.yad{bottom:403.280267pt;}
.y2f{bottom:410.235067pt;}
.y157{bottom:411.024133pt;}
.y1e5{bottom:413.658800pt;}
.y173{bottom:415.796133pt;}
.y1a6{bottom:415.820133pt;}
.y6a{bottom:416.341467pt;}
.y6{bottom:416.753733pt;}
.yc5{bottom:419.004133pt;}
.ye1{bottom:419.016133pt;}
.y126{bottom:419.036133pt;}
.yfa{bottom:419.056133pt;}
.y90{bottom:419.060133pt;}
.y44{bottom:419.260267pt;}
.yac{bottom:419.276267pt;}
.y2e{bottom:423.035067pt;}
.y156{bottom:427.020133pt;}
.y1e4{bottom:428.325467pt;}
.y172{bottom:431.792133pt;}
.y1a5{bottom:431.816133pt;}
.y69{bottom:432.337467pt;}
.y5{bottom:432.753733pt;}
.yc4{bottom:435.000133pt;}
.ye0{bottom:435.012133pt;}
.y125{bottom:435.032133pt;}
.yf9{bottom:435.052133pt;}
.y8f{bottom:435.056133pt;}
.y43{bottom:435.256267pt;}
.yab{bottom:435.272267pt;}
.y2d{bottom:435.835067pt;}
.y1e3{bottom:442.992133pt;}
.y155{bottom:443.016133pt;}
.y1a4{bottom:447.812133pt;}
.y68{bottom:448.333467pt;}
.y2c{bottom:448.635067pt;}
.yc3{bottom:450.996133pt;}
.ydf{bottom:451.008133pt;}
.y124{bottom:451.028133pt;}
.yf8{bottom:451.048133pt;}
.y8e{bottom:451.052133pt;}
.y42{bottom:451.252267pt;}
.yaa{bottom:451.268267pt;}
.y1e2{bottom:457.658800pt;}
.y154{bottom:459.012133pt;}
.y2b{bottom:461.435067pt;}
.y171{bottom:463.792133pt;}
.y1a3{bottom:463.808133pt;}
.y67{bottom:464.329467pt;}
.y4{bottom:466.353733pt;}
.yde{bottom:467.004133pt;}
.y123{bottom:467.024133pt;}
.yf7{bottom:467.044133pt;}
.y8d{bottom:467.048133pt;}
.y41{bottom:467.248267pt;}
.ya9{bottom:467.264267pt;}
.y1e1{bottom:472.325467pt;}
.y2a{bottom:474.235067pt;}
.y153{bottom:475.008133pt;}
.y1a2{bottom:479.804133pt;}
.y66{bottom:480.325467pt;}
.ydd{bottom:483.000133pt;}
.y122{bottom:483.020133pt;}
.y1c1{bottom:483.032133pt;}
.yf6{bottom:483.040133pt;}
.y8c{bottom:483.044133pt;}
.y40{bottom:483.244267pt;}
.ya8{bottom:483.260267pt;}
.y1e0{bottom:486.992133pt;}
.y29{bottom:487.035067pt;}
.y152{bottom:491.004133pt;}
.y3{bottom:493.553733pt;}
.y1a1{bottom:495.800133pt;}
.ydc{bottom:498.996133pt;}
.y121{bottom:499.016133pt;}
.y1c0{bottom:499.028133pt;}
.yf5{bottom:499.036133pt;}
.y8b{bottom:499.040133pt;}
.y3f{bottom:499.240267pt;}
.ya7{bottom:499.256267pt;}
.y1df{bottom:501.658800pt;}
.y151{bottom:507.000133pt;}
.y28{bottom:507.394133pt;}
.y1a0{bottom:511.796133pt;}
.y65{bottom:512.325467pt;}
.y120{bottom:515.012133pt;}
.y1bf{bottom:515.024133pt;}
.yf4{bottom:515.032133pt;}
.y8a{bottom:515.036133pt;}
.y3e{bottom:515.236267pt;}
.ya6{bottom:515.252267pt;}
.y1de{bottom:516.325467pt;}
.y150{bottom:522.996133pt;}
.y64{bottom:526.992133pt;}
.y19f{bottom:527.792133pt;}
.y1dd{bottom:530.992133pt;}
.y11f{bottom:531.008133pt;}
.y1be{bottom:531.020133pt;}
.yf3{bottom:531.028133pt;}
.y89{bottom:531.032133pt;}
.y3d{bottom:531.232267pt;}
.ya5{bottom:531.248267pt;}
.y14f{bottom:539.004133pt;}
.y27{bottom:539.394133pt;}
.y63{bottom:541.658800pt;}
.y1dc{bottom:545.658800pt;}
.y11e{bottom:547.004133pt;}
.y1bd{bottom:547.016133pt;}
.yf2{bottom:547.024133pt;}
.y88{bottom:547.028133pt;}
.y3c{bottom:547.228267pt;}
.ya4{bottom:547.244267pt;}
.y14e{bottom:555.000133pt;}
.y62{bottom:556.325467pt;}
.y19{bottom:557.999733pt;}
.y19e{bottom:559.792133pt;}
.y26{bottom:560.286533pt;}
.y1db{bottom:560.325467pt;}
.y11d{bottom:563.000133pt;}
.y1bc{bottom:563.012133pt;}
.yf1{bottom:563.020133pt;}
.y87{bottom:563.024133pt;}
.y3b{bottom:563.224267pt;}
.ya3{bottom:563.240267pt;}
.y61{bottom:570.992133pt;}
.y14d{bottom:570.996133pt;}
.y1da{bottom:574.992133pt;}
.y18{bottom:576.395067pt;}
.y11c{bottom:578.996133pt;}
.y1bb{bottom:579.008133pt;}
.yf0{bottom:579.016133pt;}
.y86{bottom:579.020133pt;}
.y3a{bottom:579.220267pt;}
.ya2{bottom:579.236267pt;}
.y60{bottom:585.658800pt;}
.y14c{bottom:586.992133pt;}
.y1d9{bottom:589.658800pt;}
.y25{bottom:592.286533pt;}
.y1ba{bottom:595.004133pt;}
.yef{bottom:595.012133pt;}
.y85{bottom:595.016133pt;}
.y39{bottom:595.232267pt;}
.y1b{bottom:595.995333pt;}
.y5f{bottom:600.325467pt;}
.y1d8{bottom:604.325467pt;}
.y24{bottom:605.619867pt;}
.y1b9{bottom:611.000133pt;}
.y19d{bottom:611.004133pt;}
.yee{bottom:611.008133pt;}
.y84{bottom:611.012133pt;}
.y38{bottom:611.228267pt;}
.y5e{bottom:614.992133pt;}
.y23{bottom:618.953200pt;}
.y14b{bottom:618.992133pt;}
.y1a{bottom:621.465600pt;}
.y1b8{bottom:626.996133pt;}
.y19c{bottom:627.000133pt;}
.yed{bottom:627.004133pt;}
.y83{bottom:627.008133pt;}
.y37{bottom:627.224267pt;}
.y5d{bottom:629.658800pt;}
.y22{bottom:632.286533pt;}
.y14a{bottom:633.658800pt;}
.y19b{bottom:642.996133pt;}
.yec{bottom:643.000133pt;}
.y82{bottom:643.004133pt;}
.y36{bottom:643.220267pt;}
.y5c{bottom:644.325467pt;}
.y21{bottom:645.619867pt;}
.y149{bottom:648.325467pt;}
.y20{bottom:658.953200pt;}
.yeb{bottom:658.996133pt;}
.y81{bottom:659.000133pt;}
.y35{bottom:659.216267pt;}
.y148{bottom:662.992133pt;}
.y1f{bottom:672.286533pt;}
.y5b{bottom:674.996133pt;}
.y147{bottom:677.658800pt;}
.y5a{bottom:690.992133pt;}
.y34{bottom:691.216267pt;}
.y146{bottom:692.325467pt;}
.y1e{bottom:693.178933pt;}
.y1d{bottom:702.992133pt;}
.y32{bottom:752.430400pt;}
.y1c{bottom:753.931867pt;}
.h2{height:26.416000pt;}
.ha{height:28.522667pt;}
.hb{height:28.672000pt;}
.h6{height:30.208000pt;}
.h7{height:30.293333pt;}
.he{height:32.512000pt;}
.h8{height:32.597333pt;}
.hf{height:33.450667pt;}
.h5{height:35.626667pt;}
.h12{height:36.672000pt;}
.h9{height:38.229333pt;}
.h4{height:40.746667pt;}
.h13{height:42.704000pt;}
.h10{height:42.752000pt;}
.h14{height:42.976000pt;}
.h11{height:43.008000pt;}
.hc{height:59.600736pt;}
.h3{height:60.565333pt;}
.hd{height:112.918400pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x19{left:21.873467pt;}
.xf{left:27.558667pt;}
.x10{left:38.488133pt;}
.x11{left:64.252000pt;}
.xc{left:75.588133pt;}
.x12{left:83.149600pt;}
.xa{left:86.929067pt;}
.x3{left:88.251333pt;}
.x18{left:90.704933pt;}
.xb{left:94.488133pt;}
.x5{left:98.740133pt;}
.x13{left:102.047333pt;}
.x1{left:104.938533pt;}
.x4{left:108.583333pt;}
.x17{left:109.606267pt;}
.x16{left:113.380400pt;}
.x1b{left:120.941200pt;}
.xe{left:129.582933pt;}
.xd{left:131.117333pt;}
.x1a{left:139.842533pt;}
.x15{left:175.091200pt;}
.x2{left:203.625867pt;}
.x6{left:208.873467pt;}
.x7{left:303.340133pt;}
.x9{left:372.961467pt;}
.x8{left:377.366800pt;}
.x14{left:528.000000pt;}
}




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