
    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_069611399b7a9774188ff449.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_b8348f99a0bf3c117d6628c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945500;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_0ecbb3637238eba854634be1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918500;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_ea2fe315007641d996438b6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943500;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_44b5bd8a08a022e92b7ae93a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.945500;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_422187d7bda8f7fc415c7536.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918500;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_803b8f94e4c24a2230197748.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923500;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_4f97437acb62ae62aabcc86d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965500;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_df3ea5aed3076400a8b85ea6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.744500;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_397e055e2abf99be4ad636d8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736000;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_d8e68106d9b6324b827e0c02.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.872500;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_bf157804b59f4f333d72ff50.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.918500;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_b0f1a11e0bae42d9c2c5f021.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958000;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_5ccbc1c7dd68dbb56fb046d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4409c9f2dcb150342b145c88.woff2')format("woff");}.fff{font-family:fff;line-height:0.744500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_be920898b90ca98c8cbbaf1e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.738500;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;}
.m4{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v8{vertical-align:-20.250000px;}
.v3{vertical-align:-18.900000px;}
.v6{vertical-align:-15.840600px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.997600px;}
.v7{vertical-align:20.251200px;}
.v5{vertical-align:26.029800px;}
.v4{vertical-align:32.400600px;}
.ls5{letter-spacing:-1.050000px;}
.ls29{letter-spacing:-0.675000px;}
.ls28{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.135000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.048000px;}
.ls27{letter-spacing:0.135000px;}
.ls3{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.576000px;}
.ls14{letter-spacing:1.008000px;}
.lse{letter-spacing:2.898000px;}
.lsa{letter-spacing:2.994600px;}
.ls24{letter-spacing:4.800000px;}
.ls25{letter-spacing:5.280000px;}
.lsc{letter-spacing:5.328000px;}
.ls2{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.624000px;}
.lsb{letter-spacing:6.672000px;}
.lsf{letter-spacing:6.720000px;}
.ls6{letter-spacing:8.400000px;}
.ls1{letter-spacing:10.800000px;}
.ls1b{letter-spacing:121.578000px;}
.ls1c{letter-spacing:146.208000px;}
.ls1e{letter-spacing:146.208600px;}
.ls16{letter-spacing:148.192500px;}
.ls18{letter-spacing:148.193100px;}
.ls20{letter-spacing:168.237000px;}
.ls19{letter-spacing:170.221500px;}
.ls1a{letter-spacing:170.222100px;}
.ls1d{letter-spacing:170.272200px;}
.ls21{letter-spacing:170.852100px;}
.ls17{letter-spacing:172.256700px;}
.ls22{letter-spacing:172.886700px;}
.ls15{letter-spacing:184.396200px;}
.ls23{letter-spacing:192.237000px;}
.ls1f{letter-spacing:202.680000px;}
.ls12{letter-spacing:248.923500px;}
.ls10{letter-spacing:248.924100px;}
.ls11{letter-spacing:275.023500px;}
.ls13{letter-spacing:377.012700px;}
.ls0{letter-spacing:620.256000px;}
.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;}
}
.ws30{word-spacing:-48.048000px;}
.ws2f{word-spacing:-48.024000px;}
.ws2e{word-spacing:-48.000000px;}
.ws6{word-spacing:-43.200000px;}
.ws5f{word-spacing:-39.408000px;}
.ws1e{word-spacing:-38.976000px;}
.ws11{word-spacing:-38.688000px;}
.ws7{word-spacing:-38.400000px;}
.ws93{word-spacing:-36.135000px;}
.ws56{word-spacing:-36.000000px;}
.ws82{word-spacing:-35.865000px;}
.ws9c{word-spacing:-35.730000px;}
.wsa4{word-spacing:-35.325000px;}
.ws4{word-spacing:-33.600000px;}
.ws1f{word-spacing:-31.872000px;}
.ws3b{word-spacing:-31.344000px;}
.ws3d{word-spacing:-31.320000px;}
.ws12{word-spacing:-31.296000px;}
.ws5e{word-spacing:-31.248000px;}
.ws3a{word-spacing:-31.176000px;}
.ws40{word-spacing:-31.152000px;}
.ws22{word-spacing:-31.104000px;}
.ws44{word-spacing:-31.008000px;}
.ws13{word-spacing:-30.864000px;}
.ws53{word-spacing:-30.816000px;}
.ws36{word-spacing:-30.672000px;}
.ws72{word-spacing:-30.624000px;}
.ws4b{word-spacing:-30.576000px;}
.ws3e{word-spacing:-30.360000px;}
.ws24{word-spacing:-30.336000px;}
.ws78{word-spacing:-30.240000px;}
.ws23{word-spacing:-30.216000px;}
.ws42{word-spacing:-30.192000px;}
.ws51{word-spacing:-30.144000px;}
.ws74{word-spacing:-30.096000px;}
.ws26{word-spacing:-30.048000px;}
.ws27{word-spacing:-30.019200px;}
.ws46{word-spacing:-29.952000px;}
.ws28{word-spacing:-29.856000px;}
.ws54{word-spacing:-29.808000px;}
.ws2b{word-spacing:-29.760000px;}
.ws38{word-spacing:-29.664000px;}
.ws73{word-spacing:-29.616000px;}
.ws98{word-spacing:-29.520000px;}
.ws1a{word-spacing:-29.376000px;}
.ws14{word-spacing:-29.328000px;}
.wsd{word-spacing:-29.208000px;}
.ws9a{word-spacing:-29.182500px;}
.ws1d{word-spacing:-28.992000px;}
.ws39{word-spacing:-28.920000px;}
.ws80{word-spacing:-28.890000px;}
.ws43{word-spacing:-28.848000px;}
.ws29{word-spacing:-28.464000px;}
.ws9d{word-spacing:-28.350000px;}
.ws52{word-spacing:-28.320000px;}
.ws9e{word-spacing:-28.282500px;}
.ws75{word-spacing:-28.224000px;}
.ws4c{word-spacing:-28.128000px;}
.ws20{word-spacing:-27.984000px;}
.ws94{word-spacing:-27.945000px;}
.ws45{word-spacing:-27.816000px;}
.ws1c{word-spacing:-27.792000px;}
.wse{word-spacing:-27.648000px;}
.ws2c{word-spacing:-27.504000px;}
.ws97{word-spacing:-27.450000px;}
.ws50{word-spacing:-27.264000px;}
.ws9f{word-spacing:-27.180000px;}
.wsa0{word-spacing:-27.108000px;}
.ws2d{word-spacing:-27.024000px;}
.ws7c{word-spacing:-26.595000px;}
.ws4f{word-spacing:-26.256000px;}
.ws1b{word-spacing:-26.208000px;}
.ws81{word-spacing:-26.190000px;}
.ws41{word-spacing:-26.160000px;}
.ws7f{word-spacing:-25.852500px;}
.ws3f{word-spacing:-25.680000px;}
.ws9b{word-spacing:-25.290000px;}
.ws4d{word-spacing:-25.056000px;}
.ws60{word-spacing:-24.960000px;}
.ws99{word-spacing:-24.750000px;}
.ws3{word-spacing:-24.552600px;}
.ws5{word-spacing:-24.150000px;}
.ws76{word-spacing:-23.856000px;}
.wsa1{word-spacing:-23.535000px;}
.wsf{word-spacing:-22.896000px;}
.ws2a{word-spacing:-22.176000px;}
.wsa3{word-spacing:-22.050000px;}
.ws96{word-spacing:-21.915000px;}
.ws10{word-spacing:-21.744000px;}
.ws95{word-spacing:-21.555000px;}
.ws21{word-spacing:-21.552000px;}
.wsb{word-spacing:-20.580000px;}
.ws71{word-spacing:-19.536000px;}
.ws37{word-spacing:-19.248000px;}
.ws25{word-spacing:-17.904000px;}
.wsa2{word-spacing:-17.775000px;}
.ws77{word-spacing:-16.464000px;}
.ws7a{word-spacing:-12.960000px;}
.ws7e{word-spacing:-12.600000px;}
.ws4e{word-spacing:-12.288000px;}
.wsa{word-spacing:-12.247200px;}
.ws79{word-spacing:-12.150000px;}
.ws67{word-spacing:-11.520000px;}
.wsc{word-spacing:-11.232000px;}
.ws1{word-spacing:-10.752000px;}
.ws7d{word-spacing:-10.530000px;}
.ws9{word-spacing:-10.206000px;}
.ws3c{word-spacing:-8.601600px;}
.ws17{word-spacing:-8.400000px;}
.ws70{word-spacing:-8.064000px;}
.ws8{word-spacing:-7.526400px;}
.ws4a{word-spacing:-6.720000px;}
.ws18{word-spacing:-6.000000px;}
.ws34{word-spacing:-5.328000px;}
.ws8c{word-spacing:-5.280000px;}
.ws8b{word-spacing:-4.800000px;}
.ws7b{word-spacing:-4.230000px;}
.ws47{word-spacing:-2.898000px;}
.ws5d{word-spacing:-2.496000px;}
.ws5c{word-spacing:-2.256000px;}
.ws48{word-spacing:-2.016000px;}
.wsae{word-spacing:-1.845000px;}
.ws16{word-spacing:-1.386000px;}
.ws8a{word-spacing:-1.008000px;}
.wsab{word-spacing:-0.765000px;}
.ws33{word-spacing:-0.672000px;}
.wsaf{word-spacing:-0.450000px;}
.ws31{word-spacing:-0.336000px;}
.wsa7{word-spacing:-0.225000px;}
.wsa5{word-spacing:-0.135000px;}
.ws2{word-spacing:-0.042000px;}
.ws15{word-spacing:0.000000px;}
.ws92{word-spacing:0.135000px;}
.ws19{word-spacing:0.192000px;}
.wsad{word-spacing:0.270000px;}
.wsac{word-spacing:0.405000px;}
.ws8f{word-spacing:0.450000px;}
.ws90{word-spacing:0.495000px;}
.wsaa{word-spacing:0.585000px;}
.wsb0{word-spacing:0.675000px;}
.wsa6{word-spacing:0.945000px;}
.ws8e{word-spacing:1.530000px;}
.wsa8{word-spacing:1.800000px;}
.ws49{word-spacing:2.640000px;}
.ws91{word-spacing:5.580000px;}
.wsa9{word-spacing:5.625000px;}
.ws32{word-spacing:7.632000px;}
.ws8d{word-spacing:21.780000px;}
.ws87{word-spacing:32.400000px;}
.ws69{word-spacing:78.120000px;}
.ws68{word-spacing:80.145000px;}
.ws6f{word-spacing:80.190000px;}
.ws86{word-spacing:86.715000px;}
.ws84{word-spacing:106.065000px;}
.ws63{word-spacing:125.505000px;}
.ws62{word-spacing:127.080000px;}
.ws6a{word-spacing:127.381500px;}
.ws6b{word-spacing:127.382100px;}
.ws6d{word-spacing:128.012100px;}
.ws6c{word-spacing:130.046700px;}
.ws66{word-spacing:149.580000px;}
.ws83{word-spacing:149.985000px;}
.ws64{word-spacing:151.155000px;}
.ws5a{word-spacing:153.900000px;}
.ws88{word-spacing:169.425000px;}
.ws65{word-spacing:175.230000px;}
.ws6e{word-spacing:189.045000px;}
.ws89{word-spacing:189.855000px;}
.ws57{word-spacing:198.810000px;}
.ws5b{word-spacing:225.900000px;}
.ws85{word-spacing:256.995000px;}
.ws58{word-spacing:352.125000px;}
.ws61{word-spacing:358.819800px;}
.ws55{word-spacing:370.215000px;}
.ws59{word-spacing:500.130000px;}
.ws0{word-spacing:1177.218000px;}
.ws35{word-spacing:2324.860800px;}
._2{margin-left:-3023.328000px;}
._b{margin-left:-25.470000px;}
._6{margin-left:-13.824000px;}
._f{margin-left:-12.648000px;}
._d{margin-left:-11.312400px;}
._c{margin-left:-8.193600px;}
._a{margin-left:-6.027600px;}
._9{margin-left:-4.767600px;}
._4{margin-left:-3.564000px;}
._1{margin-left:-2.562000px;}
._0{margin-left:-1.512000px;}
._3{width:1.407000px;}
._7{width:2.697000px;}
._5{width:4.158000px;}
._8{width:5.184000px;}
._10{width:6.378000px;}
._e{width:7.440000px;}
._15{width:8.778000px;}
._14{width:10.389600px;}
._24{width:11.835000px;}
._11{width:14.424000px;}
._13{width:16.752000px;}
._12{width:18.027600px;}
._1e{width:22.140000px;}
._22{width:61.290000px;}
._21{width:64.620000px;}
._20{width:80.640000px;}
._16{width:98.280000px;}
._1f{width:142.991400px;}
._23{width:150.435000px;}
._1c{width:374.659800px;}
._1b{width:393.818400px;}
._1a{width:398.724000px;}
._1d{width:441.946800px;}
._17{width:547.290000px;}
._19{width:786.388200px;}
._18{width:830.533800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:29.400000px;}
.fsd{font-size:31.500000px;}
.fsb{font-size:33.600000px;}
.fs0{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:50.400000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:57.540000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fsa{font-size:78.120000px;}
.fs2{font-size:78.540000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:2.670000px;}
.y4{bottom:25.615200px;}
.y3{bottom:39.120300px;}
.y1{bottom:40.619700px;}
.y2{bottom:43.170300px;}
.y3f{bottom:63.867150px;}
.y161{bottom:76.407900px;}
.ye2{bottom:76.414500px;}
.ye0{bottom:76.444950px;}
.y77{bottom:76.453650px;}
.ya5{bottom:76.513500px;}
.y10b{bottom:76.610550px;}
.y125{bottom:76.727550px;}
.y156{bottom:77.953650px;}
.y3e{bottom:78.871650px;}
.y160{bottom:92.157900px;}
.ye1{bottom:92.914500px;}
.y155{bottom:93.703650px;}
.ydf{bottom:95.944950px;}
.y76{bottom:95.953650px;}
.ya4{bottom:96.013500px;}
.y10a{bottom:96.110550px;}
.y124{bottom:96.227550px;}
.y154{bottom:109.453650px;}
.yde{bottom:115.444950px;}
.y75{bottom:115.453650px;}
.ya3{bottom:115.513500px;}
.y109{bottom:115.610550px;}
.y123{bottom:115.727550px;}
.y3c{bottom:115.771650px;}
.y15f{bottom:116.907900px;}
.y153{bottom:125.203650px;}
.ydd{bottom:134.944950px;}
.y74{bottom:134.953650px;}
.ya2{bottom:135.013500px;}
.y108{bottom:135.110550px;}
.y122{bottom:135.227550px;}
.y3b{bottom:135.271650px;}
.y15e{bottom:137.967900px;}
.y152{bottom:140.953650px;}
.y126{bottom:144.977550px;}
.ydc{bottom:154.444950px;}
.y73{bottom:154.453650px;}
.ya1{bottom:154.513500px;}
.y107{bottom:154.610550px;}
.y121{bottom:154.727550px;}
.y3a{bottom:154.771650px;}
.y151{bottom:156.703650px;}
.y15d{bottom:159.027900px;}
.y150{bottom:172.453650px;}
.ydb{bottom:173.944950px;}
.y72{bottom:173.953650px;}
.ya0{bottom:174.013500px;}
.y106{bottom:174.110550px;}
.y120{bottom:174.227550px;}
.y39{bottom:174.271650px;}
.y15c{bottom:180.087900px;}
.y14f{bottom:188.203650px;}
.yda{bottom:193.444950px;}
.y71{bottom:193.453650px;}
.y9f{bottom:193.513500px;}
.y105{bottom:193.610550px;}
.y11f{bottom:193.727550px;}
.y38{bottom:193.771650px;}
.y15b{bottom:201.147900px;}
.y14e{bottom:203.953650px;}
.yd9{bottom:212.944950px;}
.y70{bottom:212.953650px;}
.y9e{bottom:213.013500px;}
.y104{bottom:213.110550px;}
.y11e{bottom:213.227550px;}
.y37{bottom:213.271650px;}
.y14d{bottom:219.703650px;}
.y15a{bottom:225.054150px;}
.yd8{bottom:232.444950px;}
.y6f{bottom:232.453650px;}
.y9d{bottom:232.513500px;}
.y103{bottom:232.610550px;}
.y11d{bottom:232.727550px;}
.y36{bottom:232.771650px;}
.y14c{bottom:235.453650px;}
.y14b{bottom:251.203650px;}
.yd7{bottom:251.944950px;}
.y6e{bottom:251.953650px;}
.y9c{bottom:252.013500px;}
.y102{bottom:252.110550px;}
.y11c{bottom:252.227550px;}
.y35{bottom:252.271650px;}
.y159{bottom:252.560400px;}
.y14a{bottom:266.953650px;}
.yd6{bottom:271.444950px;}
.y6d{bottom:271.453650px;}
.y101{bottom:271.610550px;}
.y11b{bottom:271.727550px;}
.y3d{bottom:271.771650px;}
.y158{bottom:280.591500px;}
.y9b{bottom:281.263500px;}
.y149{bottom:282.703650px;}
.yd5{bottom:290.944950px;}
.y6c{bottom:290.953650px;}
.y100{bottom:291.110550px;}
.y11a{bottom:291.227550px;}
.y34{bottom:291.271650px;}
.y157{bottom:297.091500px;}
.y148{bottom:298.453650px;}
.yd4{bottom:310.444950px;}
.y6b{bottom:310.453650px;}
.yff{bottom:310.610550px;}
.y119{bottom:310.727550px;}
.y147{bottom:314.203650px;}
.yd3{bottom:329.944950px;}
.y6a{bottom:329.953650px;}
.y9a{bottom:330.013650px;}
.yfe{bottom:339.860550px;}
.y146{bottom:345.703650px;}
.yd2{bottom:349.444950px;}
.y69{bottom:349.453650px;}
.y99{bottom:349.513650px;}
.y145{bottom:361.453650px;}
.y137{bottom:361.637400px;}
.y1c{bottom:366.512400px;}
.yd1{bottom:368.944950px;}
.y68{bottom:368.953650px;}
.y98{bottom:369.013650px;}
.y144{bottom:377.203650px;}
.y136{bottom:378.137400px;}
.y1b{bottom:386.012400px;}
.yd0{bottom:388.444950px;}
.y67{bottom:388.453650px;}
.y97{bottom:388.513650px;}
.yfd{bottom:388.609650px;}
.y143{bottom:392.953650px;}
.ycf{bottom:407.944950px;}
.y66{bottom:407.953650px;}
.y96{bottom:408.013650px;}
.yfc{bottom:408.109650px;}
.y142{bottom:408.703650px;}
.y1a{bottom:421.921800px;}
.y141{bottom:424.453650px;}
.yce{bottom:427.444950px;}
.y65{bottom:427.453650px;}
.y95{bottom:427.513650px;}
.yfb{bottom:427.609650px;}
.y18c{bottom:429.548550px;}
.y19{bottom:444.426300px;}
.y18b{bottom:445.298550px;}
.ycd{bottom:446.944950px;}
.y64{bottom:446.953650px;}
.y94{bottom:447.013650px;}
.yfa{bottom:447.109650px;}
.y140{bottom:449.941650px;}
.y190{bottom:458.798550px;}
.y18a{bottom:461.048550px;}
.ycc{bottom:466.444950px;}
.y63{bottom:466.453650px;}
.y93{bottom:466.513650px;}
.yf9{bottom:466.609650px;}
.y18{bottom:466.930800px;}
.y18f{bottom:474.548550px;}
.y189{bottom:476.798550px;}
.ycb{bottom:485.944950px;}
.y62{bottom:485.953650px;}
.y92{bottom:486.013650px;}
.yf8{bottom:486.109650px;}
.y17{bottom:489.435300px;}
.y18e{bottom:490.298550px;}
.y188{bottom:492.548550px;}
.y13f{bottom:500.941650px;}
.yca{bottom:505.444950px;}
.y61{bottom:505.453650px;}
.y91{bottom:505.513650px;}
.yf7{bottom:505.609650px;}
.y18d{bottom:506.048550px;}
.y187{bottom:508.298550px;}
.y16{bottom:511.939800px;}
.y186{bottom:524.048550px;}
.yc9{bottom:524.944950px;}
.y60{bottom:524.953650px;}
.y90{bottom:525.013650px;}
.yf6{bottom:525.109650px;}
.y13e{bottom:530.197650px;}
.y15{bottom:534.444300px;}
.ye8{bottom:534.703650px;}
.y2e{bottom:537.153300px;}
.y185{bottom:539.798550px;}
.yc8{bottom:544.444950px;}
.y5f{bottom:544.453650px;}
.y8f{bottom:544.513650px;}
.yf5{bottom:544.609650px;}
.y2d{bottom:552.157800px;}
.ye7{bottom:554.203650px;}
.y184{bottom:555.548550px;}
.y14{bottom:556.948800px;}
.yc7{bottom:563.944950px;}
.y5e{bottom:563.953650px;}
.y8e{bottom:564.013650px;}
.yf4{bottom:564.109650px;}
.y183{bottom:571.298550px;}
.y138{bottom:573.703650px;}
.y13{bottom:579.453300px;}
.y13d{bottom:581.197650px;}
.y2c{bottom:582.156300px;}
.yc6{bottom:583.444950px;}
.y5d{bottom:583.453650px;}
.yf3{bottom:583.609650px;}
.y182{bottom:587.048550px;}
.ye6{bottom:593.203650px;}
.y8d{bottom:593.263650px;}
.y2b{bottom:597.160800px;}
.y13c{bottom:600.697650px;}
.y12{bottom:601.957800px;}
.y181{bottom:602.798550px;}
.yc5{bottom:602.944950px;}
.y5c{bottom:602.953650px;}
.yf2{bottom:603.109650px;}
.y135{bottom:609.895650px;}
.y2a{bottom:612.165300px;}
.y180{bottom:618.548550px;}
.y13b{bottom:620.197650px;}
.yc4{bottom:622.444950px;}
.y5b{bottom:622.453650px;}
.yf1{bottom:622.609650px;}
.y11{bottom:624.462300px;}
.y134{bottom:626.395650px;}
.y29{bottom:627.169800px;}
.ya6{bottom:628.063500px;}
.y17f{bottom:634.298550px;}
.y13a{bottom:639.697650px;}
.yc3{bottom:641.944950px;}
.y5a{bottom:641.953650px;}
.yf0{bottom:642.109650px;}
.y28{bottom:642.174300px;}
.y133{bottom:642.895650px;}
.y10{bottom:646.966800px;}
.y17e{bottom:650.048550px;}
.y27{bottom:657.178800px;}
.yc2{bottom:661.444950px;}
.y59{bottom:661.453650px;}
.y8c{bottom:661.513500px;}
.yef{bottom:661.609650px;}
.y17d{bottom:665.798550px;}
.y139{bottom:668.953650px;}
.yf{bottom:669.471300px;}
.yc1{bottom:680.944950px;}
.y58{bottom:680.953650px;}
.y8b{bottom:681.013500px;}
.yee{bottom:681.109650px;}
.y17c{bottom:681.548550px;}
.y26{bottom:687.177300px;}
.ye{bottom:691.975800px;}
.y17b{bottom:697.298550px;}
.yc0{bottom:700.444950px;}
.y57{bottom:700.453650px;}
.y8a{bottom:700.513500px;}
.yed{bottom:700.609650px;}
.y25{bottom:706.906650px;}
.y17a{bottom:713.048550px;}
.yd{bottom:714.480300px;}
.ybf{bottom:719.944950px;}
.y56{bottom:719.953650px;}
.y89{bottom:720.013500px;}
.yec{bottom:720.109650px;}
.y24{bottom:722.427300px;}
.y179{bottom:728.798550px;}
.yc{bottom:736.984800px;}
.ybe{bottom:739.444950px;}
.y55{bottom:739.453650px;}
.y88{bottom:739.513500px;}
.yeb{bottom:739.609650px;}
.y23{bottom:742.156650px;}
.y178{bottom:744.548550px;}
.ye5{bottom:749.203650px;}
.y22{bottom:757.672800px;}
.yb9{bottom:758.944950px;}
.y54{bottom:758.953650px;}
.y87{bottom:759.013500px;}
.yea{bottom:759.109650px;}
.yb{bottom:759.489300px;}
.y177{bottom:760.298550px;}
.y21{bottom:772.677300px;}
.y176{bottom:776.048550px;}
.yb8{bottom:778.444950px;}
.y53{bottom:778.453650px;}
.y86{bottom:778.513500px;}
.ye9{bottom:778.609650px;}
.ya{bottom:781.993800px;}
.y175{bottom:791.798550px;}
.y20{bottom:792.406800px;}
.yb7{bottom:797.944950px;}
.y52{bottom:797.953650px;}
.y85{bottom:798.013500px;}
.y9{bottom:804.498300px;}
.y174{bottom:807.548550px;}
.y1f{bottom:807.922800px;}
.ybd{bottom:817.444950px;}
.y51{bottom:817.453650px;}
.y84{bottom:817.513500px;}
.y1e{bottom:822.927300px;}
.y173{bottom:823.298550px;}
.y8{bottom:826.998300px;}
.yb6{bottom:827.194950px;}
.y118{bottom:827.270850px;}
.ybc{bottom:836.944950px;}
.y50{bottom:836.953650px;}
.y83{bottom:837.013500px;}
.y172{bottom:839.048550px;}
.y1d{bottom:842.656800px;}
.y117{bottom:843.020850px;}
.y132{bottom:848.083350px;}
.y171{bottom:854.798550px;}
.ybb{bottom:856.444950px;}
.y4f{bottom:856.453650px;}
.y82{bottom:856.513500px;}
.y131{bottom:863.833350px;}
.y116{bottom:867.770850px;}
.y170{bottom:870.548550px;}
.y130{bottom:874.520850px;}
.yb5{bottom:875.944950px;}
.y4e{bottom:875.953650px;}
.y81{bottom:876.013500px;}
.y16f{bottom:886.298550px;}
.y115{bottom:888.826950px;}
.y33{bottom:890.185500px;}
.yb4{bottom:895.444950px;}
.y4d{bottom:895.453650px;}
.y80{bottom:895.513500px;}
.y12f{bottom:899.266950px;}
.y16e{bottom:902.048550px;}
.yba{bottom:905.194950px;}
.y114{bottom:909.883050px;}
.yb3{bottom:914.944950px;}
.y4c{bottom:914.953650px;}
.y7f{bottom:915.013500px;}
.y32{bottom:917.185500px;}
.y16d{bottom:917.798550px;}
.y12e{bottom:920.323050px;}
.y113{bottom:930.939150px;}
.y16c{bottom:933.548550px;}
.yb2{bottom:934.444950px;}
.y4b{bottom:934.453650px;}
.y7e{bottom:934.513500px;}
.y12d{bottom:941.379150px;}
.y31{bottom:944.185500px;}
.ye4{bottom:944.203650px;}
.y16b{bottom:949.298550px;}
.y112{bottom:951.995400px;}
.yb1{bottom:953.944950px;}
.y4a{bottom:953.953650px;}
.y7d{bottom:954.013500px;}
.y12c{bottom:962.435400px;}
.ye3{bottom:963.703650px;}
.y16a{bottom:965.048550px;}
.y111{bottom:973.051350px;}
.yb0{bottom:973.444950px;}
.y49{bottom:973.453650px;}
.y7c{bottom:973.513500px;}
.y169{bottom:980.798550px;}
.y12b{bottom:983.495100px;}
.yaf{bottom:992.944950px;}
.y48{bottom:992.953650px;}
.y7b{bottom:993.013500px;}
.y110{bottom:994.107300px;}
.y168{bottom:996.548550px;}
.y30{bottom:1002.012300px;}
.y128{bottom:1007.401350px;}
.y167{bottom:1012.298550px;}
.yae{bottom:1012.444950px;}
.y47{bottom:1012.453650px;}
.y7a{bottom:1012.513500px;}
.y10f{bottom:1018.013550px;}
.y166{bottom:1028.048550px;}
.yad{bottom:1031.944950px;}
.y46{bottom:1031.953650px;}
.y12a{bottom:1034.907600px;}
.y79{bottom:1041.763500px;}
.y165{bottom:1043.798550px;}
.y10e{bottom:1045.519800px;}
.yac{bottom:1051.444950px;}
.y45{bottom:1051.453650px;}
.y2f{bottom:1056.012300px;}
.y164{bottom:1059.548550px;}
.y129{bottom:1062.413700px;}
.yab{bottom:1070.944950px;}
.y44{bottom:1070.953650px;}
.y10d{bottom:1073.546550px;}
.y163{bottom:1075.298550px;}
.y78{bottom:1080.763500px;}
.y10c{bottom:1090.046550px;}
.y127{bottom:1090.439550px;}
.yaa{bottom:1090.444950px;}
.y43{bottom:1090.453650px;}
.y162{bottom:1091.048550px;}
.y7{bottom:1096.573650px;}
.y6{bottom:1115.319150px;}
.y5{bottom:1118.319150px;}
.ya9{bottom:1126.684950px;}
.y41{bottom:1126.685700px;}
.y42{bottom:1129.263000px;}
.ya8{bottom:1129.384950px;}
.y40{bottom:1129.385700px;}
.h14{height:13.951500px;}
.hb{height:22.535100px;}
.h20{height:24.144750px;}
.h13{height:30.429000px;}
.h11{height:30.576000px;}
.h16{height:30.941400px;}
.h9{height:31.206000px;}
.h5{height:32.193000px;}
.h2{height:32.571000px;}
.hc{height:32.970000px;}
.h1c{height:33.435000px;}
.h22{height:34.492500px;}
.h1b{height:34.897500px;}
.h17{height:35.325000px;}
.ha{height:37.224000px;}
.h21{height:37.680000px;}
.h4{height:38.190600px;}
.hd{height:39.771000px;}
.h8{height:41.877000px;}
.h3{height:44.104410px;}
.h1a{height:44.394750px;}
.h1d{height:44.395950px;}
.h7{height:44.580000px;}
.h19{height:44.678250px;}
.h18{height:44.679450px;}
.h1e{height:44.693250px;}
.h1f{height:44.693850px;}
.h10{height:47.100000px;}
.h15{height:49.885800px;}
.h12{height:60.191460px;}
.h6{height:60.200910px;}
.hf{height:69.847800px;}
.he{height:80.244000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:358.620000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:67.138500px;}
.x1{left:69.732300px;}
.x1b{left:76.228800px;}
.x16{left:77.232300px;}
.x18{left:83.258400px;}
.x10{left:86.722950px;}
.x13{left:89.165700px;}
.x2{left:98.564850px;}
.x3{left:101.194950px;}
.x4{left:113.221800px;}
.x17{left:140.423700px;}
.x1a{left:152.362200px;}
.x5{left:186.128850px;}
.x6{left:188.759100px;}
.x9{left:313.726650px;}
.x7{left:342.005700px;}
.x8{left:344.635800px;}
.x11{left:458.714100px;}
.xa{left:461.208900px;}
.x15{left:467.676300px;}
.x12{left:478.202100px;}
.xb{left:480.660900px;}
.x19{left:596.976300px;}
.x14{left:613.948800px;}
.xc{left:767.875500px;}
.xd{left:792.172500px;}
.xe{left:794.421600px;}
@media print{
.v8{vertical-align:-18.000000pt;}
.v3{vertical-align:-16.800000pt;}
.v6{vertical-align:-14.080533pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.331200pt;}
.v7{vertical-align:18.001067pt;}
.v5{vertical-align:23.137600pt;}
.v4{vertical-align:28.800533pt;}
.ls5{letter-spacing:-0.933333pt;}
.ls29{letter-spacing:-0.600000pt;}
.ls28{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.120000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.042667pt;}
.ls27{letter-spacing:0.120000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.896000pt;}
.lse{letter-spacing:2.576000pt;}
.lsa{letter-spacing:2.661867pt;}
.ls24{letter-spacing:4.266667pt;}
.ls25{letter-spacing:4.693333pt;}
.lsc{letter-spacing:4.736000pt;}
.ls2{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.888000pt;}
.lsb{letter-spacing:5.930667pt;}
.lsf{letter-spacing:5.973333pt;}
.ls6{letter-spacing:7.466667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls1b{letter-spacing:108.069333pt;}
.ls1c{letter-spacing:129.962667pt;}
.ls1e{letter-spacing:129.963200pt;}
.ls16{letter-spacing:131.726667pt;}
.ls18{letter-spacing:131.727200pt;}
.ls20{letter-spacing:149.544000pt;}
.ls19{letter-spacing:151.308000pt;}
.ls1a{letter-spacing:151.308533pt;}
.ls1d{letter-spacing:151.353067pt;}
.ls21{letter-spacing:151.868533pt;}
.ls17{letter-spacing:153.117067pt;}
.ls22{letter-spacing:153.677067pt;}
.ls15{letter-spacing:163.907733pt;}
.ls23{letter-spacing:170.877333pt;}
.ls1f{letter-spacing:180.160000pt;}
.ls12{letter-spacing:221.265333pt;}
.ls10{letter-spacing:221.265867pt;}
.ls11{letter-spacing:244.465333pt;}
.ls13{letter-spacing:335.122400pt;}
.ls0{letter-spacing:551.338667pt;}
.ws30{word-spacing:-42.709333pt;}
.ws2f{word-spacing:-42.688000pt;}
.ws2e{word-spacing:-42.666667pt;}
.ws6{word-spacing:-38.400000pt;}
.ws5f{word-spacing:-35.029333pt;}
.ws1e{word-spacing:-34.645333pt;}
.ws11{word-spacing:-34.389333pt;}
.ws7{word-spacing:-34.133333pt;}
.ws93{word-spacing:-32.120000pt;}
.ws56{word-spacing:-32.000000pt;}
.ws82{word-spacing:-31.880000pt;}
.ws9c{word-spacing:-31.760000pt;}
.wsa4{word-spacing:-31.400000pt;}
.ws4{word-spacing:-29.866667pt;}
.ws1f{word-spacing:-28.330667pt;}
.ws3b{word-spacing:-27.861333pt;}
.ws3d{word-spacing:-27.840000pt;}
.ws12{word-spacing:-27.818667pt;}
.ws5e{word-spacing:-27.776000pt;}
.ws3a{word-spacing:-27.712000pt;}
.ws40{word-spacing:-27.690667pt;}
.ws22{word-spacing:-27.648000pt;}
.ws44{word-spacing:-27.562667pt;}
.ws13{word-spacing:-27.434667pt;}
.ws53{word-spacing:-27.392000pt;}
.ws36{word-spacing:-27.264000pt;}
.ws72{word-spacing:-27.221333pt;}
.ws4b{word-spacing:-27.178667pt;}
.ws3e{word-spacing:-26.986667pt;}
.ws24{word-spacing:-26.965333pt;}
.ws78{word-spacing:-26.880000pt;}
.ws23{word-spacing:-26.858667pt;}
.ws42{word-spacing:-26.837333pt;}
.ws51{word-spacing:-26.794667pt;}
.ws74{word-spacing:-26.752000pt;}
.ws26{word-spacing:-26.709333pt;}
.ws27{word-spacing:-26.683733pt;}
.ws46{word-spacing:-26.624000pt;}
.ws28{word-spacing:-26.538667pt;}
.ws54{word-spacing:-26.496000pt;}
.ws2b{word-spacing:-26.453333pt;}
.ws38{word-spacing:-26.368000pt;}
.ws73{word-spacing:-26.325333pt;}
.ws98{word-spacing:-26.240000pt;}
.ws1a{word-spacing:-26.112000pt;}
.ws14{word-spacing:-26.069333pt;}
.wsd{word-spacing:-25.962667pt;}
.ws9a{word-spacing:-25.940000pt;}
.ws1d{word-spacing:-25.770667pt;}
.ws39{word-spacing:-25.706667pt;}
.ws80{word-spacing:-25.680000pt;}
.ws43{word-spacing:-25.642667pt;}
.ws29{word-spacing:-25.301333pt;}
.ws9d{word-spacing:-25.200000pt;}
.ws52{word-spacing:-25.173333pt;}
.ws9e{word-spacing:-25.140000pt;}
.ws75{word-spacing:-25.088000pt;}
.ws4c{word-spacing:-25.002667pt;}
.ws20{word-spacing:-24.874667pt;}
.ws94{word-spacing:-24.840000pt;}
.ws45{word-spacing:-24.725333pt;}
.ws1c{word-spacing:-24.704000pt;}
.wse{word-spacing:-24.576000pt;}
.ws2c{word-spacing:-24.448000pt;}
.ws97{word-spacing:-24.400000pt;}
.ws50{word-spacing:-24.234667pt;}
.ws9f{word-spacing:-24.160000pt;}
.wsa0{word-spacing:-24.096000pt;}
.ws2d{word-spacing:-24.021333pt;}
.ws7c{word-spacing:-23.640000pt;}
.ws4f{word-spacing:-23.338667pt;}
.ws1b{word-spacing:-23.296000pt;}
.ws81{word-spacing:-23.280000pt;}
.ws41{word-spacing:-23.253333pt;}
.ws7f{word-spacing:-22.980000pt;}
.ws3f{word-spacing:-22.826667pt;}
.ws9b{word-spacing:-22.480000pt;}
.ws4d{word-spacing:-22.272000pt;}
.ws60{word-spacing:-22.186667pt;}
.ws99{word-spacing:-22.000000pt;}
.ws3{word-spacing:-21.824533pt;}
.ws5{word-spacing:-21.466667pt;}
.ws76{word-spacing:-21.205333pt;}
.wsa1{word-spacing:-20.920000pt;}
.wsf{word-spacing:-20.352000pt;}
.ws2a{word-spacing:-19.712000pt;}
.wsa3{word-spacing:-19.600000pt;}
.ws96{word-spacing:-19.480000pt;}
.ws10{word-spacing:-19.328000pt;}
.ws95{word-spacing:-19.160000pt;}
.ws21{word-spacing:-19.157333pt;}
.wsb{word-spacing:-18.293333pt;}
.ws71{word-spacing:-17.365333pt;}
.ws37{word-spacing:-17.109333pt;}
.ws25{word-spacing:-15.914667pt;}
.wsa2{word-spacing:-15.800000pt;}
.ws77{word-spacing:-14.634667pt;}
.ws7a{word-spacing:-11.520000pt;}
.ws7e{word-spacing:-11.200000pt;}
.ws4e{word-spacing:-10.922667pt;}
.wsa{word-spacing:-10.886400pt;}
.ws79{word-spacing:-10.800000pt;}
.ws67{word-spacing:-10.240000pt;}
.wsc{word-spacing:-9.984000pt;}
.ws1{word-spacing:-9.557333pt;}
.ws7d{word-spacing:-9.360000pt;}
.ws9{word-spacing:-9.072000pt;}
.ws3c{word-spacing:-7.645867pt;}
.ws17{word-spacing:-7.466667pt;}
.ws70{word-spacing:-7.168000pt;}
.ws8{word-spacing:-6.690133pt;}
.ws4a{word-spacing:-5.973333pt;}
.ws18{word-spacing:-5.333333pt;}
.ws34{word-spacing:-4.736000pt;}
.ws8c{word-spacing:-4.693333pt;}
.ws8b{word-spacing:-4.266667pt;}
.ws7b{word-spacing:-3.760000pt;}
.ws47{word-spacing:-2.576000pt;}
.ws5d{word-spacing:-2.218667pt;}
.ws5c{word-spacing:-2.005333pt;}
.ws48{word-spacing:-1.792000pt;}
.wsae{word-spacing:-1.640000pt;}
.ws16{word-spacing:-1.232000pt;}
.ws8a{word-spacing:-0.896000pt;}
.wsab{word-spacing:-0.680000pt;}
.ws33{word-spacing:-0.597333pt;}
.wsaf{word-spacing:-0.400000pt;}
.ws31{word-spacing:-0.298667pt;}
.wsa7{word-spacing:-0.200000pt;}
.wsa5{word-spacing:-0.120000pt;}
.ws2{word-spacing:-0.037333pt;}
.ws15{word-spacing:0.000000pt;}
.ws92{word-spacing:0.120000pt;}
.ws19{word-spacing:0.170667pt;}
.wsad{word-spacing:0.240000pt;}
.wsac{word-spacing:0.360000pt;}
.ws8f{word-spacing:0.400000pt;}
.ws90{word-spacing:0.440000pt;}
.wsaa{word-spacing:0.520000pt;}
.wsb0{word-spacing:0.600000pt;}
.wsa6{word-spacing:0.840000pt;}
.ws8e{word-spacing:1.360000pt;}
.wsa8{word-spacing:1.600000pt;}
.ws49{word-spacing:2.346667pt;}
.ws91{word-spacing:4.960000pt;}
.wsa9{word-spacing:5.000000pt;}
.ws32{word-spacing:6.784000pt;}
.ws8d{word-spacing:19.360000pt;}
.ws87{word-spacing:28.800000pt;}
.ws69{word-spacing:69.440000pt;}
.ws68{word-spacing:71.240000pt;}
.ws6f{word-spacing:71.280000pt;}
.ws86{word-spacing:77.080000pt;}
.ws84{word-spacing:94.280000pt;}
.ws63{word-spacing:111.560000pt;}
.ws62{word-spacing:112.960000pt;}
.ws6a{word-spacing:113.228000pt;}
.ws6b{word-spacing:113.228533pt;}
.ws6d{word-spacing:113.788533pt;}
.ws6c{word-spacing:115.597067pt;}
.ws66{word-spacing:132.960000pt;}
.ws83{word-spacing:133.320000pt;}
.ws64{word-spacing:134.360000pt;}
.ws5a{word-spacing:136.800000pt;}
.ws88{word-spacing:150.600000pt;}
.ws65{word-spacing:155.760000pt;}
.ws6e{word-spacing:168.040000pt;}
.ws89{word-spacing:168.760000pt;}
.ws57{word-spacing:176.720000pt;}
.ws5b{word-spacing:200.800000pt;}
.ws85{word-spacing:228.440000pt;}
.ws58{word-spacing:313.000000pt;}
.ws61{word-spacing:318.950933pt;}
.ws55{word-spacing:329.080000pt;}
.ws59{word-spacing:444.560000pt;}
.ws0{word-spacing:1046.416000pt;}
.ws35{word-spacing:2066.542933pt;}
._2{margin-left:-2687.402667pt;}
._b{margin-left:-22.640000pt;}
._6{margin-left:-12.288000pt;}
._f{margin-left:-11.242667pt;}
._d{margin-left:-10.055467pt;}
._c{margin-left:-7.283200pt;}
._a{margin-left:-5.357867pt;}
._9{margin-left:-4.237867pt;}
._4{margin-left:-3.168000pt;}
._1{margin-left:-2.277333pt;}
._0{margin-left:-1.344000pt;}
._3{width:1.250667pt;}
._7{width:2.397333pt;}
._5{width:3.696000pt;}
._8{width:4.608000pt;}
._10{width:5.669333pt;}
._e{width:6.613333pt;}
._15{width:7.802667pt;}
._14{width:9.235200pt;}
._24{width:10.520000pt;}
._11{width:12.821333pt;}
._13{width:14.890667pt;}
._12{width:16.024533pt;}
._1e{width:19.680000pt;}
._22{width:54.480000pt;}
._21{width:57.440000pt;}
._20{width:71.680000pt;}
._16{width:87.360000pt;}
._1f{width:127.103467pt;}
._23{width:133.720000pt;}
._1c{width:333.030933pt;}
._1b{width:350.060800pt;}
._1a{width:354.421333pt;}
._1d{width:392.841600pt;}
._17{width:486.480000pt;}
._19{width:699.011733pt;}
._18{width:738.252267pt;}
.fs6{font-size:26.133333pt;}
.fsd{font-size:28.000000pt;}
.fsb{font-size:29.866667pt;}
.fs0{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:44.800000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:51.146667pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fsa{font-size:69.440000pt;}
.fs2{font-size:69.813333pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:2.373333pt;}
.y4{bottom:22.769067pt;}
.y3{bottom:34.773600pt;}
.y1{bottom:36.106400pt;}
.y2{bottom:38.373600pt;}
.y3f{bottom:56.770800pt;}
.y161{bottom:67.918133pt;}
.ye2{bottom:67.924000pt;}
.ye0{bottom:67.951067pt;}
.y77{bottom:67.958800pt;}
.ya5{bottom:68.012000pt;}
.y10b{bottom:68.098267pt;}
.y125{bottom:68.202267pt;}
.y156{bottom:69.292133pt;}
.y3e{bottom:70.108133pt;}
.y160{bottom:81.918133pt;}
.ye1{bottom:82.590667pt;}
.y155{bottom:83.292133pt;}
.ydf{bottom:85.284400pt;}
.y76{bottom:85.292133pt;}
.ya4{bottom:85.345333pt;}
.y10a{bottom:85.431600pt;}
.y124{bottom:85.535600pt;}
.y154{bottom:97.292133pt;}
.yde{bottom:102.617733pt;}
.y75{bottom:102.625467pt;}
.ya3{bottom:102.678667pt;}
.y109{bottom:102.764933pt;}
.y123{bottom:102.868933pt;}
.y3c{bottom:102.908133pt;}
.y15f{bottom:103.918133pt;}
.y153{bottom:111.292133pt;}
.ydd{bottom:119.951067pt;}
.y74{bottom:119.958800pt;}
.ya2{bottom:120.012000pt;}
.y108{bottom:120.098267pt;}
.y122{bottom:120.202267pt;}
.y3b{bottom:120.241467pt;}
.y15e{bottom:122.638133pt;}
.y152{bottom:125.292133pt;}
.y126{bottom:128.868933pt;}
.ydc{bottom:137.284400pt;}
.y73{bottom:137.292133pt;}
.ya1{bottom:137.345333pt;}
.y107{bottom:137.431600pt;}
.y121{bottom:137.535600pt;}
.y3a{bottom:137.574800pt;}
.y151{bottom:139.292133pt;}
.y15d{bottom:141.358133pt;}
.y150{bottom:153.292133pt;}
.ydb{bottom:154.617733pt;}
.y72{bottom:154.625467pt;}
.ya0{bottom:154.678667pt;}
.y106{bottom:154.764933pt;}
.y120{bottom:154.868933pt;}
.y39{bottom:154.908133pt;}
.y15c{bottom:160.078133pt;}
.y14f{bottom:167.292133pt;}
.yda{bottom:171.951067pt;}
.y71{bottom:171.958800pt;}
.y9f{bottom:172.012000pt;}
.y105{bottom:172.098267pt;}
.y11f{bottom:172.202267pt;}
.y38{bottom:172.241467pt;}
.y15b{bottom:178.798133pt;}
.y14e{bottom:181.292133pt;}
.yd9{bottom:189.284400pt;}
.y70{bottom:189.292133pt;}
.y9e{bottom:189.345333pt;}
.y104{bottom:189.431600pt;}
.y11e{bottom:189.535600pt;}
.y37{bottom:189.574800pt;}
.y14d{bottom:195.292133pt;}
.y15a{bottom:200.048133pt;}
.yd8{bottom:206.617733pt;}
.y6f{bottom:206.625467pt;}
.y9d{bottom:206.678667pt;}
.y103{bottom:206.764933pt;}
.y11d{bottom:206.868933pt;}
.y36{bottom:206.908133pt;}
.y14c{bottom:209.292133pt;}
.y14b{bottom:223.292133pt;}
.yd7{bottom:223.951067pt;}
.y6e{bottom:223.958800pt;}
.y9c{bottom:224.012000pt;}
.y102{bottom:224.098267pt;}
.y11c{bottom:224.202267pt;}
.y35{bottom:224.241467pt;}
.y159{bottom:224.498133pt;}
.y14a{bottom:237.292133pt;}
.yd6{bottom:241.284400pt;}
.y6d{bottom:241.292133pt;}
.y101{bottom:241.431600pt;}
.y11b{bottom:241.535600pt;}
.y3d{bottom:241.574800pt;}
.y158{bottom:249.414667pt;}
.y9b{bottom:250.012000pt;}
.y149{bottom:251.292133pt;}
.yd5{bottom:258.617733pt;}
.y6c{bottom:258.625467pt;}
.y100{bottom:258.764933pt;}
.y11a{bottom:258.868933pt;}
.y34{bottom:258.908133pt;}
.y157{bottom:264.081333pt;}
.y148{bottom:265.292133pt;}
.yd4{bottom:275.951067pt;}
.y6b{bottom:275.958800pt;}
.yff{bottom:276.098267pt;}
.y119{bottom:276.202267pt;}
.y147{bottom:279.292133pt;}
.yd3{bottom:293.284400pt;}
.y6a{bottom:293.292133pt;}
.y9a{bottom:293.345467pt;}
.yfe{bottom:302.098267pt;}
.y146{bottom:307.292133pt;}
.yd2{bottom:310.617733pt;}
.y69{bottom:310.625467pt;}
.y99{bottom:310.678800pt;}
.y145{bottom:321.292133pt;}
.y137{bottom:321.455467pt;}
.y1c{bottom:325.788800pt;}
.yd1{bottom:327.951067pt;}
.y68{bottom:327.958800pt;}
.y98{bottom:328.012133pt;}
.y144{bottom:335.292133pt;}
.y136{bottom:336.122133pt;}
.y1b{bottom:343.122133pt;}
.yd0{bottom:345.284400pt;}
.y67{bottom:345.292133pt;}
.y97{bottom:345.345467pt;}
.yfd{bottom:345.430800pt;}
.y143{bottom:349.292133pt;}
.ycf{bottom:362.617733pt;}
.y66{bottom:362.625467pt;}
.y96{bottom:362.678800pt;}
.yfc{bottom:362.764133pt;}
.y142{bottom:363.292133pt;}
.y1a{bottom:375.041600pt;}
.y141{bottom:377.292133pt;}
.yce{bottom:379.951067pt;}
.y65{bottom:379.958800pt;}
.y95{bottom:380.012133pt;}
.yfb{bottom:380.097467pt;}
.y18c{bottom:381.820933pt;}
.y19{bottom:395.045600pt;}
.y18b{bottom:395.820933pt;}
.ycd{bottom:397.284400pt;}
.y64{bottom:397.292133pt;}
.y94{bottom:397.345467pt;}
.yfa{bottom:397.430800pt;}
.y140{bottom:399.948133pt;}
.y190{bottom:407.820933pt;}
.y18a{bottom:409.820933pt;}
.ycc{bottom:414.617733pt;}
.y63{bottom:414.625467pt;}
.y93{bottom:414.678800pt;}
.yf9{bottom:414.764133pt;}
.y18{bottom:415.049600pt;}
.y18f{bottom:421.820933pt;}
.y189{bottom:423.820933pt;}
.ycb{bottom:431.951067pt;}
.y62{bottom:431.958800pt;}
.y92{bottom:432.012133pt;}
.yf8{bottom:432.097467pt;}
.y17{bottom:435.053600pt;}
.y18e{bottom:435.820933pt;}
.y188{bottom:437.820933pt;}
.y13f{bottom:445.281467pt;}
.yca{bottom:449.284400pt;}
.y61{bottom:449.292133pt;}
.y91{bottom:449.345467pt;}
.yf7{bottom:449.430800pt;}
.y18d{bottom:449.820933pt;}
.y187{bottom:451.820933pt;}
.y16{bottom:455.057600pt;}
.y186{bottom:465.820933pt;}
.yc9{bottom:466.617733pt;}
.y60{bottom:466.625467pt;}
.y90{bottom:466.678800pt;}
.yf6{bottom:466.764133pt;}
.y13e{bottom:471.286800pt;}
.y15{bottom:475.061600pt;}
.ye8{bottom:475.292133pt;}
.y2e{bottom:477.469600pt;}
.y185{bottom:479.820933pt;}
.yc8{bottom:483.951067pt;}
.y5f{bottom:483.958800pt;}
.y8f{bottom:484.012133pt;}
.yf5{bottom:484.097467pt;}
.y2d{bottom:490.806933pt;}
.ye7{bottom:492.625467pt;}
.y184{bottom:493.820933pt;}
.y14{bottom:495.065600pt;}
.yc7{bottom:501.284400pt;}
.y5e{bottom:501.292133pt;}
.y8e{bottom:501.345467pt;}
.yf4{bottom:501.430800pt;}
.y183{bottom:507.820933pt;}
.y138{bottom:509.958800pt;}
.y13{bottom:515.069600pt;}
.y13d{bottom:516.620133pt;}
.y2c{bottom:517.472267pt;}
.yc6{bottom:518.617733pt;}
.y5d{bottom:518.625467pt;}
.yf3{bottom:518.764133pt;}
.y182{bottom:521.820933pt;}
.ye6{bottom:527.292133pt;}
.y8d{bottom:527.345467pt;}
.y2b{bottom:530.809600pt;}
.y13c{bottom:533.953467pt;}
.y12{bottom:535.073600pt;}
.y181{bottom:535.820933pt;}
.yc5{bottom:535.951067pt;}
.y5c{bottom:535.958800pt;}
.yf2{bottom:536.097467pt;}
.y135{bottom:542.129467pt;}
.y2a{bottom:544.146933pt;}
.y180{bottom:549.820933pt;}
.y13b{bottom:551.286800pt;}
.yc4{bottom:553.284400pt;}
.y5b{bottom:553.292133pt;}
.yf1{bottom:553.430800pt;}
.y11{bottom:555.077600pt;}
.y134{bottom:556.796133pt;}
.y29{bottom:557.484267pt;}
.ya6{bottom:558.278667pt;}
.y17f{bottom:563.820933pt;}
.y13a{bottom:568.620133pt;}
.yc3{bottom:570.617733pt;}
.y5a{bottom:570.625467pt;}
.yf0{bottom:570.764133pt;}
.y28{bottom:570.821600pt;}
.y133{bottom:571.462800pt;}
.y10{bottom:575.081600pt;}
.y17e{bottom:577.820933pt;}
.y27{bottom:584.158933pt;}
.yc2{bottom:587.951067pt;}
.y59{bottom:587.958800pt;}
.y8c{bottom:588.012000pt;}
.yef{bottom:588.097467pt;}
.y17d{bottom:591.820933pt;}
.y139{bottom:594.625467pt;}
.yf{bottom:595.085600pt;}
.yc1{bottom:605.284400pt;}
.y58{bottom:605.292133pt;}
.y8b{bottom:605.345333pt;}
.yee{bottom:605.430800pt;}
.y17c{bottom:605.820933pt;}
.y26{bottom:610.824267pt;}
.ye{bottom:615.089600pt;}
.y17b{bottom:619.820933pt;}
.yc0{bottom:622.617733pt;}
.y57{bottom:622.625467pt;}
.y8a{bottom:622.678667pt;}
.yed{bottom:622.764133pt;}
.y25{bottom:628.361467pt;}
.y17a{bottom:633.820933pt;}
.yd{bottom:635.093600pt;}
.ybf{bottom:639.951067pt;}
.y56{bottom:639.958800pt;}
.y89{bottom:640.012000pt;}
.yec{bottom:640.097467pt;}
.y24{bottom:642.157600pt;}
.y179{bottom:647.820933pt;}
.yc{bottom:655.097600pt;}
.ybe{bottom:657.284400pt;}
.y55{bottom:657.292133pt;}
.y88{bottom:657.345333pt;}
.yeb{bottom:657.430800pt;}
.y23{bottom:659.694800pt;}
.y178{bottom:661.820933pt;}
.ye5{bottom:665.958800pt;}
.y22{bottom:673.486933pt;}
.yb9{bottom:674.617733pt;}
.y54{bottom:674.625467pt;}
.y87{bottom:674.678667pt;}
.yea{bottom:674.764133pt;}
.yb{bottom:675.101600pt;}
.y177{bottom:675.820933pt;}
.y21{bottom:686.824267pt;}
.y176{bottom:689.820933pt;}
.yb8{bottom:691.951067pt;}
.y53{bottom:691.958800pt;}
.y86{bottom:692.012000pt;}
.ye9{bottom:692.097467pt;}
.ya{bottom:695.105600pt;}
.y175{bottom:703.820933pt;}
.y20{bottom:704.361600pt;}
.yb7{bottom:709.284400pt;}
.y52{bottom:709.292133pt;}
.y85{bottom:709.345333pt;}
.y9{bottom:715.109600pt;}
.y174{bottom:717.820933pt;}
.y1f{bottom:718.153600pt;}
.ybd{bottom:726.617733pt;}
.y51{bottom:726.625467pt;}
.y84{bottom:726.678667pt;}
.y1e{bottom:731.490933pt;}
.y173{bottom:731.820933pt;}
.y8{bottom:735.109600pt;}
.yb6{bottom:735.284400pt;}
.y118{bottom:735.351867pt;}
.ybc{bottom:743.951067pt;}
.y50{bottom:743.958800pt;}
.y83{bottom:744.012000pt;}
.y172{bottom:745.820933pt;}
.y1d{bottom:749.028267pt;}
.y117{bottom:749.351867pt;}
.y132{bottom:753.851867pt;}
.y171{bottom:759.820933pt;}
.ybb{bottom:761.284400pt;}
.y4f{bottom:761.292133pt;}
.y82{bottom:761.345333pt;}
.y131{bottom:767.851867pt;}
.y116{bottom:771.351867pt;}
.y170{bottom:773.820933pt;}
.y130{bottom:777.351867pt;}
.yb5{bottom:778.617733pt;}
.y4e{bottom:778.625467pt;}
.y81{bottom:778.678667pt;}
.y16f{bottom:787.820933pt;}
.y115{bottom:790.068400pt;}
.y33{bottom:791.276000pt;}
.yb4{bottom:795.951067pt;}
.y4d{bottom:795.958800pt;}
.y80{bottom:796.012000pt;}
.y12f{bottom:799.348400pt;}
.y16e{bottom:801.820933pt;}
.yba{bottom:804.617733pt;}
.y114{bottom:808.784933pt;}
.yb3{bottom:813.284400pt;}
.y4c{bottom:813.292133pt;}
.y7f{bottom:813.345333pt;}
.y32{bottom:815.276000pt;}
.y16d{bottom:815.820933pt;}
.y12e{bottom:818.064933pt;}
.y113{bottom:827.501467pt;}
.y16c{bottom:829.820933pt;}
.yb2{bottom:830.617733pt;}
.y4b{bottom:830.625467pt;}
.y7e{bottom:830.678667pt;}
.y12d{bottom:836.781467pt;}
.y31{bottom:839.276000pt;}
.ye4{bottom:839.292133pt;}
.y16b{bottom:843.820933pt;}
.y112{bottom:846.218133pt;}
.yb1{bottom:847.951067pt;}
.y4a{bottom:847.958800pt;}
.y7d{bottom:848.012000pt;}
.y12c{bottom:855.498133pt;}
.ye3{bottom:856.625467pt;}
.y16a{bottom:857.820933pt;}
.y111{bottom:864.934533pt;}
.yb0{bottom:865.284400pt;}
.y49{bottom:865.292133pt;}
.y7c{bottom:865.345333pt;}
.y169{bottom:871.820933pt;}
.y12b{bottom:874.217867pt;}
.yaf{bottom:882.617733pt;}
.y48{bottom:882.625467pt;}
.y7b{bottom:882.678667pt;}
.y110{bottom:883.650933pt;}
.y168{bottom:885.820933pt;}
.y30{bottom:890.677600pt;}
.y128{bottom:895.467867pt;}
.y167{bottom:899.820933pt;}
.yae{bottom:899.951067pt;}
.y47{bottom:899.958800pt;}
.y7a{bottom:900.012000pt;}
.y10f{bottom:904.900933pt;}
.y166{bottom:913.820933pt;}
.yad{bottom:917.284400pt;}
.y46{bottom:917.292133pt;}
.y12a{bottom:919.917867pt;}
.y79{bottom:926.012000pt;}
.y165{bottom:927.820933pt;}
.y10e{bottom:929.350933pt;}
.yac{bottom:934.617733pt;}
.y45{bottom:934.625467pt;}
.y2f{bottom:938.677600pt;}
.y164{bottom:941.820933pt;}
.y129{bottom:944.367733pt;}
.yab{bottom:951.951067pt;}
.y44{bottom:951.958800pt;}
.y10d{bottom:954.263600pt;}
.y163{bottom:955.820933pt;}
.y78{bottom:960.678667pt;}
.y10c{bottom:968.930267pt;}
.y127{bottom:969.279600pt;}
.yaa{bottom:969.284400pt;}
.y43{bottom:969.292133pt;}
.y162{bottom:969.820933pt;}
.y7{bottom:974.732133pt;}
.y6{bottom:991.394800pt;}
.y5{bottom:994.061467pt;}
.ya9{bottom:1001.497733pt;}
.y41{bottom:1001.498400pt;}
.y42{bottom:1003.789333pt;}
.ya8{bottom:1003.897733pt;}
.y40{bottom:1003.898400pt;}
.h14{height:12.401333pt;}
.hb{height:20.031200pt;}
.h20{height:21.462000pt;}
.h13{height:27.048000pt;}
.h11{height:27.178667pt;}
.h16{height:27.503467pt;}
.h9{height:27.738667pt;}
.h5{height:28.616000pt;}
.h2{height:28.952000pt;}
.hc{height:29.306667pt;}
.h1c{height:29.720000pt;}
.h22{height:30.660000pt;}
.h1b{height:31.020000pt;}
.h17{height:31.400000pt;}
.ha{height:33.088000pt;}
.h21{height:33.493333pt;}
.h4{height:33.947200pt;}
.hd{height:35.352000pt;}
.h8{height:37.224000pt;}
.h3{height:39.203920pt;}
.h1a{height:39.462000pt;}
.h1d{height:39.463067pt;}
.h7{height:39.626667pt;}
.h19{height:39.714000pt;}
.h18{height:39.715067pt;}
.h1e{height:39.727333pt;}
.h1f{height:39.727867pt;}
.h10{height:41.866667pt;}
.h15{height:44.342933pt;}
.h12{height:53.503520pt;}
.h6{height:53.511920pt;}
.hf{height:62.086933pt;}
.he{height:71.328000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:318.773333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:59.678667pt;}
.x1{left:61.984267pt;}
.x1b{left:67.758933pt;}
.x16{left:68.650933pt;}
.x18{left:74.007467pt;}
.x10{left:77.087067pt;}
.x13{left:79.258400pt;}
.x2{left:87.613200pt;}
.x3{left:89.951067pt;}
.x4{left:100.641600pt;}
.x17{left:124.821067pt;}
.x1a{left:135.433067pt;}
.x5{left:165.447867pt;}
.x6{left:167.785867pt;}
.x9{left:278.868133pt;}
.x7{left:304.005067pt;}
.x8{left:306.342933pt;}
.x11{left:407.745867pt;}
.xa{left:409.963467pt;}
.x15{left:415.712267pt;}
.x12{left:425.068533pt;}
.xb{left:427.254133pt;}
.x19{left:530.645600pt;}
.x14{left:545.732267pt;}
.xc{left:682.556000pt;}
.xd{left:704.153333pt;}
.xe{left:706.152533pt;}
}




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