
    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_c45d1e03898643f97fc65fae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_d0842411b16be6b35d5fbbaa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_b178173f73536f78a863b001.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_97d20c11eefd84a9825e4ab9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_4b2c6800d6024e6a861bb89b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_e4e37a63748f86343f2e0cb5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_773255a7ad946d34a53bad85.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_192dee2109ac2f2f817e9ad4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_cd8ff90dee75cbb7680d35ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_74daa5040b245ec19a85c0f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_50dffe96530fb7cb2303ff20.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962402;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_ded43a39db47098729b558f8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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_cf563a78e248b23241fff372.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104492;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_62f677a2cd7e5bcfb903959e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls13{letter-spacing:-0.828000px;}
.ls17{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.457800px;}
.ls1b{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.219000px;}
.lsa{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.178800px;}
.lse{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls18{letter-spacing:-0.037440px;}
.ls25{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.051840px;}
.ls5{letter-spacing:0.150000px;}
.ls24{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.262080px;}
.ls1c{letter-spacing:0.262200px;}
.lsf{letter-spacing:0.305280px;}
.ls1a{letter-spacing:0.305400px;}
.ls19{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.613440px;}
.ls20{letter-spacing:2.151360px;}
.ls12{letter-spacing:2.465280px;}
.ls21{letter-spacing:5.031360px;}
.ls27{letter-spacing:7.146720px;}
.ls26{letter-spacing:7.191360px;}
.ls28{letter-spacing:10.791360px;}
.ls11{letter-spacing:11.825280px;}
.ls16{letter-spacing:14.705280px;}
.ls23{letter-spacing:17.271360px;}
.ls10{letter-spacing:23.670720px;}
.ls1f{letter-spacing:24.785280px;}
.lsd{letter-spacing:40.661280px;}
.ls22{letter-spacing:41.031360px;}
.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;}
}
.ws9{word-spacing:-54.000000px;}
.wsb{word-spacing:-21.420000px;}
.ws10{word-spacing:-21.401400px;}
.wse{word-spacing:-21.060000px;}
.wsf{word-spacing:-21.022560px;}
.ws13{word-spacing:-18.676920px;}
.wsc{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.305520px;}
.ws12{word-spacing:-18.109320px;}
.ws4{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.956920px;}
.ws11{word-spacing:-17.586720px;}
.ws1{word-spacing:-16.613280px;}
.ws14{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.506480px;}
.ws8{word-spacing:-16.353480px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.140000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-3.180000px;}
._1{margin-left:-1.520640px;}
._2{width:1.043520px;}
._4{width:2.085120px;}
._7{width:3.198960px;}
._3{width:4.435200px;}
._f{width:5.724480px;}
._b{width:7.074000px;}
._a{width:8.424000px;}
._15{width:9.595920px;}
._19{width:11.339040px;}
._16{width:12.370320px;}
._10{width:13.446000px;}
._11{width:14.494080px;}
._13{width:15.533520px;}
._1f{width:16.620000px;}
._12{width:17.777760px;}
._6{width:19.444800px;}
._14{width:20.842800px;}
._17{width:21.991680px;}
._18{width:23.070000px;}
._21{width:24.972480px;}
._1b{width:26.297280px;}
._1a{width:27.555840px;}
._1c{width:28.745280px;}
._25{width:29.808000px;}
._22{width:30.830400px;}
._0{width:31.870080px;}
._23{width:33.249600px;}
._24{width:35.032320px;}
._5{width:37.002240px;}
._20{width:38.286720px;}
._2e{width:41.087280px;}
._26{width:42.791040px;}
._27{width:43.917120px;}
._29{width:46.831680px;}
._28{width:48.344160px;}
._2b{width:64.918080px;}
._2a{width:66.700800px;}
._2c{width:68.262720px;}
._9{width:73.453200px;}
._2d{width:83.544480px;}
._c{width:192.018000px;}
._d{width:198.900000px;}
._1e{width:428.580000px;}
._8{width:1125.665760px;}
._1d{width:1156.056000px;}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.685000px;}
.yb{bottom:16.545000px;}
.ya{bottom:30.225000px;}
.y37{bottom:71.136000px;}
.y13{bottom:71.676000px;}
.y12{bottom:88.956000px;}
.y11{bottom:106.236000px;}
.y10{bottom:124.596000px;}
.y83{bottom:136.476000px;}
.yda{bottom:137.196000px;}
.yf{bottom:138.816000px;}
.y198{bottom:139.716000px;}
.yca{bottom:140.796000px;}
.y60{bottom:140.976000px;}
.y12b{bottom:142.236000px;}
.y92{bottom:142.776000px;}
.yfa{bottom:147.636000px;}
.y1ca{bottom:148.896000px;}
.y9f{bottom:149.976000px;}
.y186{bottom:150.150000px;}
.y10a{bottom:150.870000px;}
.ye{bottom:156.630000px;}
.yd9{bottom:159.870000px;}
.y1a1{bottom:162.210000px;}
.y82{bottom:164.910000px;}
.y175{bottom:168.150000px;}
.y1c9{bottom:168.690000px;}
.yc9{bottom:169.230000px;}
.y5f{bottom:169.410000px;}
.y144{bottom:170.310000px;}
.y12a{bottom:170.670000px;}
.y91{bottom:171.210000px;}
.yd{bottom:171.750000px;}
.y109{bottom:173.730000px;}
.yf9{bottom:176.070000px;}
.y9e{bottom:178.410000px;}
.y17a{bottom:178.590000px;}
.y15b{bottom:179.850000px;}
.y103{bottom:180.210000px;}
.y1a0{bottom:181.290000px;}
.yd8{bottom:182.730000px;}
.y9{bottom:183.465000px;}
.y1c8{bottom:188.490000px;}
.yb7{bottom:190.830000px;}
.y81{bottom:193.530000px;}
.y108{bottom:196.410000px;}
.y174{bottom:196.590000px;}
.yc8{bottom:197.670000px;}
.y5e{bottom:197.850000px;}
.y143{bottom:198.750000px;}
.y90{bottom:199.830000px;}
.yf8{bottom:204.510000px;}
.yd7{bottom:205.410000px;}
.y9d{bottom:206.850000px;}
.y185{bottom:207.030000px;}
.y129{bottom:208.110000px;}
.y15a{bottom:208.290000px;}
.y1c7{bottom:208.470000px;}
.y102{bottom:208.830000px;}
.y197{bottom:214.590000px;}
.y1c6{bottom:216.030000px;}
.yb6{bottom:219.270000px;}
.y80{bottom:221.970000px;}
.y173{bottom:225.030000px;}
.yc7{bottom:226.110000px;}
.y5d{bottom:226.290000px;}
.y142{bottom:227.190000px;}
.y19f{bottom:227.910000px;}
.yd6{bottom:228.270000px;}
.yf7{bottom:232.950000px;}
.y8{bottom:233.310000px;}
.y9c{bottom:235.290000px;}
.y128{bottom:236.550000px;}
.y159{bottom:236.730000px;}
.y8f{bottom:237.270000px;}
.y107{bottom:241.950000px;}
.y196{bottom:243.030000px;}
.y1c5{bottom:246.270000px;}
.yb5{bottom:247.710000px;}
.y7f{bottom:250.410000px;}
.yd5{bottom:250.950000px;}
.y172{bottom:253.470000px;}
.yc6{bottom:254.550000px;}
.y5c{bottom:254.730000px;}
.y112{bottom:256.710000px;}
.y7{bottom:257.970000px;}
.yf6{bottom:261.390000px;}
.y141{bottom:264.630000px;}
.y106{bottom:264.810000px;}
.y127{bottom:264.990000px;}
.y8e{bottom:265.710000px;}
.y1c4{bottom:266.070000px;}
.y195{bottom:271.470000px;}
.y9b{bottom:272.910000px;}
.yd4{bottom:273.810000px;}
.y19e{bottom:274.350000px;}
.yb4{bottom:276.150000px;}
.y6{bottom:281.370000px;}
.y171{bottom:281.910000px;}
.y158{bottom:283.170000px;}
.y110{bottom:285.150000px;}
.y1c3{bottom:285.870000px;}
.y105{bottom:287.490000px;}
.yc5{bottom:291.990000px;}
.y111{bottom:292.710000px;}
.y140{bottom:293.070000px;}
.y1c2{bottom:293.430000px;}
.y126{bottom:293.610000px;}
.y8d{bottom:294.150000px;}
.yd3{bottom:296.490000px;}
.yf5{bottom:298.830000px;}
.y179{bottom:299.910000px;}
.y9a{bottom:301.350000px;}
.yb3{bottom:304.590000px;}
.y5{bottom:304.950000px;}
.y7e{bottom:309.450000px;}
.y104{bottom:310.350000px;}
.y157{bottom:311.610000px;}
.y10f{bottom:313.590000px;}
.y5b{bottom:313.770000px;}
.yd2{bottom:319.350000px;}
.yc4{bottom:320.610000px;}
.y19d{bottom:320.970000px;}
.y13f{bottom:321.510000px;}
.y125{bottom:322.050000px;}
.y8c{bottom:322.590000px;}
.y1c1{bottom:323.670000px;}
.yf4{bottom:327.495000px;}
.y170{bottom:328.395000px;}
.y4{bottom:328.575000px;}
.y99{bottom:329.835000px;}
.yb2{bottom:333.075000px;}
.y156{bottom:340.095000px;}
.y7d{bottom:342.075000px;}
.y1c0{bottom:343.515000px;}
.y194{bottom:346.395000px;}
.yc3{bottom:349.095000px;}
.y19c{bottom:349.455000px;}
.y13e{bottom:349.995000px;}
.y124{bottom:350.535000px;}
.y8b{bottom:351.075000px;}
.y3{bottom:352.155000px;}
.yf3{bottom:355.935000px;}
.y16f{bottom:357.015000px;}
.y98{bottom:358.275000px;}
.yd1{bottom:364.935000px;}
.y5a{bottom:368.715000px;}
.y33{bottom:369.975000px;}
.yb1{bottom:370.515000px;}
.y193{bottom:375.015000px;}
.yc2{bottom:377.535000px;}
.y13d{bottom:378.615000px;}
.y123{bottom:378.975000px;}
.y7c{bottom:379.515000px;}
.y1bf{bottom:381.495000px;}
.yf2{bottom:384.375000px;}
.y184{bottom:385.455000px;}
.y97{bottom:386.715000px;}
.y32{bottom:387.075000px;}
.yd0{bottom:387.615000px;}
.y101{bottom:388.515000px;}
.y59{bottom:391.575000px;}
.y19b{bottom:395.895000px;}
.yb0{bottom:398.955000px;}
.y1be{bottom:401.475000px;}
.y16e{bottom:403.455000px;}
.y31{bottom:404.355000px;}
.y122{bottom:407.415000px;}
.y7b{bottom:407.955000px;}
.ycf{bottom:410.475000px;}
.yf1{bottom:412.815000px;}
.yc1{bottom:414.975000px;}
.y155{bottom:415.155000px;}
.y13c{bottom:416.055000px;}
.yff{bottom:416.955000px;}
.y58{bottom:417.495000px;}
.y1bd{bottom:421.095000px;}
.y30{bottom:422.355000px;}
.yaf{bottom:427.395000px;}
.y16d{bottom:431.895000px;}
.yce{bottom:433.155000px;}
.y7a{bottom:436.395000px;}
.y1bc{bottom:440.895000px;}
.yf0{bottom:441.255000px;}
.y19a{bottom:442.335000px;}
.y2f{bottom:443.055000px;}
.y57{bottom:443.235000px;}
.yc0{bottom:443.415000px;}
.y13b{bottom:444.495000px;}
.y121{bottom:444.855000px;}
.yfe{bottom:445.395000px;}
.y96{bottom:445.755000px;}
.y192{bottom:449.895000px;}
.yae{bottom:456.015000px;}
.y16c{bottom:460.335000px;}
.y1bb{bottom:460.695000px;}
.y154{bottom:461.595000px;}
.y2e{bottom:462.675000px;}
.y8a{bottom:465.015000px;}
.y56{bottom:469.155000px;}
.yef{bottom:469.695000px;}
.y199{bottom:470.775000px;}
.ybf{bottom:471.855000px;}
.y13a{bottom:472.935000px;}
.y120{bottom:473.295000px;}
.y79{bottom:474.015000px;}
.y2d{bottom:478.155000px;}
.y191{bottom:478.335000px;}
.y1ba{bottom:480.675000px;}
.yad{bottom:484.455000px;}
.y55{bottom:486.435000px;}
.y183{bottom:488.775000px;}
.y153{bottom:490.035000px;}
.y95{bottom:493.455000px;}
.y2c{bottom:494.175000px;}
.yee{bottom:498.135000px;}
.ybe{bottom:500.295000px;}
.y11f{bottom:501.735000px;}
.y78{bottom:502.455000px;}
.y54{bottom:503.715000px;}
.y16b{bottom:506.775000px;}
.y1b9{bottom:508.215000px;}
.y89{bottom:510.015000px;}
.y139{bottom:510.375000px;}
.y2b{bottom:511.275000px;}
.y10e{bottom:511.455000px;}
.y182{bottom:517.215000px;}
.y152{bottom:518.475000px;}
.y2a{bottom:518.835000px;}
.y53{bottom:520.995000px;}
.yac{bottom:521.895000px;}
.y190{bottom:524.775000px;}
.ybd{bottom:528.735000px;}
.y11e{bottom:530.175000px;}
.y77{bottom:530.895000px;}
.y29{bottom:533.775000px;}
.y16a{bottom:535.215000px;}
.yed{bottom:535.575000px;}
.y52{bottom:538.275000px;}
.y138{bottom:538.815000px;}
.y10d{bottom:539.895000px;}
.y181{bottom:545.655000px;}
.y151{bottom:546.915000px;}
.yab{bottom:550.335000px;}
.y18f{bottom:553.215000px;}
.y28{bottom:556.455000px;}
.ybc{bottom:557.175000px;}
.y51{bottom:557.895000px;}
.y1b8{bottom:558.075000px;}
.y11d{bottom:558.795000px;}
.y76{bottom:559.335000px;}
.y169{bottom:563.655000px;}
.yec{bottom:564.015000px;}
.y137{bottom:567.255000px;}
.y10c{bottom:568.335000px;}
.y50{bottom:577.695000px;}
.yaa{bottom:578.775000px;}
.y18e{bottom:581.655000px;}
.y1b7{bottom:585.435000px;}
.ybb{bottom:585.795000px;}
.y11c{bottom:587.235000px;}
.y75{bottom:587.775000px;}
.y27{bottom:591.555000px;}
.y168{bottom:592.095000px;}
.yeb{bottom:592.635000px;}
.y150{bottom:593.355000px;}
.y136{bottom:595.725000px;}
.y88{bottom:596.805000px;}
.y4f{bottom:597.525000px;}
.ya9{bottom:607.245000px;}
.y178{bottom:610.125000px;}
.yba{bottom:614.265000px;}
.y1b6{bottom:615.885000px;}
.y74{bottom:616.245000px;}
.y4e{bottom:617.505000px;}
.y180{bottom:620.565000px;}
.yea{bottom:621.105000px;}
.y14f{bottom:621.825000px;}
.y135{bottom:624.165000px;}
.y87{bottom:625.245000px;}
.y26{bottom:626.505000px;}
.yfd{bottom:632.805000px;}
.y1b5{bottom:635.685000px;}
.y4d{bottom:637.305000px;}
.y167{bottom:638.565000px;}
.y11b{bottom:643.245000px;}
.y73{bottom:644.685000px;}
.y17f{bottom:649.185000px;}
.ye9{bottom:649.545000px;}
.y14e{bottom:650.265000px;}
.y25{bottom:651.165000px;}
.y86{bottom:653.685000px;}
.y1b4{bottom:655.485000px;}
.y18d{bottom:656.565000px;}
.y4c{bottom:657.105000px;}
.y134{bottom:661.785000px;}
.y166{bottom:667.185000px;}
.yb9{bottom:670.245000px;}
.y72{bottom:673.125000px;}
.y4b{bottom:676.905000px;}
.ye8{bottom:677.985000px;}
.y11a{bottom:679.425000px;}
.ycd{bottom:680.685000px;}
.y85{bottom:682.125000px;}
.y1b3{bottom:682.845000px;}
.y18c{bottom:685.185000px;}
.y24{bottom:685.545000px;}
.y1db{bottom:688.425000px;}
.y100{bottom:689.685000px;}
.y133{bottom:690.225000px;}
.y17e{bottom:695.625000px;}
.y4a{bottom:696.705000px;}
.y14d{bottom:696.885000px;}
.y71{bottom:701.565000px;}
.yb8{bottom:706.425000px;}
.y1da{bottom:708.945000px;}
.y84{bottom:710.565000px;}
.y23{bottom:712.725000px;}
.y1b2{bottom:713.085000px;}
.y165{bottom:713.625000px;}
.y49{bottom:716.685000px;}
.y132{bottom:718.665000px;}
.y119{bottom:721.185000px;}
.y17d{bottom:724.065000px;}
.ye7{bottom:724.425000px;}
.y14c{bottom:725.325000px;}
.y18b{bottom:731.625000px;}
.y1b1{bottom:733.065000px;}
.y48{bottom:736.485000px;}
.y22{bottom:736.845000px;}
.y70{bottom:739.185000px;}
.y164{bottom:742.065000px;}
.y1d9{bottom:748.005000px;}
.ya8{bottom:748.185000px;}
.ye6{bottom:752.865000px;}
.y14b{bottom:753.765000px;}
.y131{bottom:756.105000px;}
.y47{bottom:756.285000px;}
.y118{bottom:758.625000px;}
.y18a{bottom:760.065000px;}
.y20{bottom:764.925000px;}
.y6f{bottom:767.625000px;}
.y177{bottom:770.505000px;}
.y1b0{bottom:772.665000px;}
.y21{bottom:773.925000px;}
.ya7{bottom:776.625000px;}
.ye5{bottom:781.305000px;}
.y130{bottom:784.545000px;}
.y1d8{bottom:785.805000px;}
.y117{bottom:787.065000px;}
.y163{bottom:788.505000px;}
.y46{bottom:791.745000px;}
.y1f{bottom:792.645000px;}
.y6e{bottom:796.065000px;}
.y176{bottom:798.945000px;}
.y1af{bottom:800.025000px;}
.y14a{bottom:800.205000px;}
.ya6{bottom:805.065000px;}
.y1d7{bottom:805.785000px;}
.y189{bottom:806.505000px;}
.ye4{bottom:809.745000px;}
.y12f{bottom:812.985000px;}
.y116{bottom:815.505000px;}
.y162{bottom:816.945000px;}
.y1e{bottom:821.625000px;}
.y6d{bottom:824.505000px;}
.y1d6{bottom:825.585000px;}
.y45{bottom:827.025000px;}
.y149{bottom:828.645000px;}
.y1ae{bottom:830.265000px;}
.ycc{bottom:832.065000px;}
.ya5{bottom:833.505000px;}
.y188{bottom:834.945000px;}
.y10b{bottom:841.065000px;}
.y12e{bottom:841.425000px;}
.y161{bottom:845.385000px;}
.y44{bottom:846.465000px;}
.ye3{bottom:847.185000px;}
.y1ad{bottom:850.245000px;}
.y6c{bottom:852.945000px;}
.y1d{bottom:855.285000px;}
.y148{bottom:857.085000px;}
.y94{bottom:861.990000px;}
.y187{bottom:863.430000px;}
.y43{bottom:866.310000px;}
.y12d{bottom:869.910000px;}
.y1ac{bottom:870.090000px;}
.ya4{bottom:870.990000px;}
.y17c{bottom:873.870000px;}
.ye2{bottom:875.850000px;}
.y1ab{bottom:877.650000px;}
.ycb{bottom:881.430000px;}
.y1d5{bottom:883.230000px;}
.y42{bottom:886.110000px;}
.y1c{bottom:886.290000px;}
.y6a{bottom:890.430000px;}
.y160{bottom:891.870000px;}
.y6b{bottom:897.990000px;}
.ya3{bottom:899.430000px;}
.y1d4{bottom:903.030000px;}
.y147{bottom:903.570000px;}
.y41{bottom:905.910000px;}
.y1aa{bottom:907.890000px;}
.y115{bottom:909.870000px;}
.y1b{bottom:910.230000px;}
.ye1{bottom:916.530000px;}
.y69{bottom:918.870000px;}
.y15f{bottom:920.310000px;}
.y1d3{bottom:923.010000px;}
.y40{bottom:925.890000px;}
.y1a9{bottom:927.690000px;}
.ya2{bottom:927.870000px;}
.y12c{bottom:931.470000px;}
.y146{bottom:932.010000px;}
.y1a{bottom:933.990000px;}
.y114{bottom:938.310000px;}
.ye0{bottom:939.210000px;}
.y1d2{bottom:942.810000px;}
.y3f{bottom:945.690000px;}
.y68{bottom:947.310000px;}
.y1a8{bottom:947.670000px;}
.y17b{bottom:948.750000px;}
.yfc{bottom:954.870000px;}
.ya1{bottom:956.310000px;}
.y19{bottom:957.750000px;}
.ydf{bottom:962.070000px;}
.y1d1{bottom:962.610000px;}
.y3e{bottom:965.490000px;}
.y15e{bottom:966.750000px;}
.y1a7{bottom:967.470000px;}
.y1a6{bottom:975.030000px;}
.y67{bottom:975.750000px;}
.ya0{bottom:984.750000px;}
.y3d{bottom:985.290000px;}
.y18{bottom:988.890000px;}
.y1d0{bottom:989.970000px;}
.y145{bottom:991.230000px;}
.y15d{bottom:995.370000px;}
.y1a5{bottom:1003.110000px;}
.y66{bottom:1004.370000px;}
.y3c{bottom:1005.090000px;}
.yde{bottom:1007.610000px;}
.y1a4{bottom:1010.670000px;}
.y93{bottom:1013.370000px;}
.y17{bottom:1019.850000px;}
.y1cf{bottom:1020.210000px;}
.y15c{bottom:1023.810000px;}
.y3b{bottom:1025.070000px;}
.ydd{bottom:1030.290000px;}
.yfb{bottom:1032.810000px;}
.y1ce{bottom:1040.190000px;}
.y1a3{bottom:1040.730000px;}
.y65{bottom:1041.810000px;}
.y3a{bottom:1044.870000px;}
.y16{bottom:1050.990000px;}
.ydc{bottom:1053.150000px;}
.y1cd{bottom:1059.990000px;}
.y39{bottom:1064.670000px;}
.y64{bottom:1070.250000px;}
.y15{bottom:1075.290000px;}
.ydb{bottom:1075.830000px;}
.y113{bottom:1077.810000px;}
.y1a2{bottom:1079.430000px;}
.y1cc{bottom:1079.790000px;}
.y1cb{bottom:1087.350000px;}
.y14{bottom:1098.510000px;}
.y63{bottom:1098.690000px;}
.y38{bottom:1100.310000px;}
.y36{bottom:1157.940000px;}
.y2{bottom:1174.140000px;}
.y35{bottom:1177.920000px;}
.y62{bottom:1178.280000px;}
.y61{bottom:1193.580000px;}
.y1{bottom:1194.300000px;}
.y34{bottom:1197.540000px;}
.h1f{height:38.671172px;}
.h12{height:40.550625px;}
.h4{height:41.385000px;}
.h18{height:43.554375px;}
.h8{height:47.344922px;}
.h6{height:50.312812px;}
.h7{height:52.998047px;}
.h10{height:53.316562px;}
.h20{height:53.603086px;}
.h11{height:56.320312px;}
.h9{height:58.651172px;}
.h1c{height:59.221406px;}
.h19{height:59.415469px;}
.h1d{height:59.439023px;}
.h5{height:62.327813px;}
.h2{height:65.884219px;}
.h3{height:66.082500px;}
.h17{height:69.086250px;}
.hc{height:70.628906px;}
.h14{height:70.664062px;}
.h15{height:71.613281px;}
.hb{height:72.562500px;}
.h1e{height:73.722656px;}
.h1b{height:73.794375px;}
.h13{height:75.093750px;}
.he{height:81.101250px;}
.ha{height:83.787539px;}
.h16{height:84.898125px;}
.hd{height:87.859687px;}
.h1a{height:96.508125px;}
.hf{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:705.375000px;}
.w3{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.089500px;}
.x2{left:98.326500px;}
.x1{left:106.416000px;}
.xf{left:111.816000px;}
.x12{left:114.516000px;}
.x2e{left:117.216000px;}
.x8{left:129.276000px;}
.x7{left:133.956000px;}
.x16{left:138.276000px;}
.x2d{left:139.356000px;}
.x17{left:144.034125px;}
.x18{left:149.796000px;}
.x15{left:159.510000px;}
.x21{left:174.268125px;}
.x6{left:178.590000px;}
.x22{left:180.030000px;}
.x27{left:198.748125px;}
.x28{left:210.270000px;}
.x9{left:232.950000px;}
.x29{left:297.073125px;}
.x2a{left:308.595000px;}
.xd{left:320.475000px;}
.xe{left:322.455000px;}
.xa{left:324.075000px;}
.x1d{left:356.113125px;}
.x1e{left:361.875000px;}
.x5{left:445.065000px;}
.x23{left:458.743125px;}
.x24{left:464.505000px;}
.x2b{left:470.623125px;}
.x2c{left:482.145000px;}
.x10{left:550.363125px;}
.x11{left:556.125000px;}
.xb{left:559.183125px;}
.xc{left:566.250000px;}
.x19{left:604.768125px;}
.x1a{left:610.530000px;}
.x25{left:622.588125px;}
.x26{left:634.110000px;}
.x1b{left:686.128125px;}
.x1c{left:691.890000px;}
.x1f{left:738.538125px;}
.x20{left:744.300000px;}
.x13{left:754.018125px;}
.x14{left:759.780000px;}
.x4{left:783.900000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls13{letter-spacing:-0.736000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls1b{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.194667pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.158933pt;}
.lse{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls18{letter-spacing:-0.033280pt;}
.ls25{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.046080pt;}
.ls5{letter-spacing:0.133333pt;}
.ls24{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.232960pt;}
.ls1c{letter-spacing:0.233067pt;}
.lsf{letter-spacing:0.271360pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls19{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.545280pt;}
.ls20{letter-spacing:1.912320pt;}
.ls12{letter-spacing:2.191360pt;}
.ls21{letter-spacing:4.472320pt;}
.ls27{letter-spacing:6.352640pt;}
.ls26{letter-spacing:6.392320pt;}
.ls28{letter-spacing:9.592320pt;}
.ls11{letter-spacing:10.511360pt;}
.ls16{letter-spacing:13.071360pt;}
.ls23{letter-spacing:15.352320pt;}
.ls10{letter-spacing:21.040640pt;}
.ls1f{letter-spacing:22.031360pt;}
.lsd{letter-spacing:36.143360pt;}
.ls22{letter-spacing:36.472320pt;}
.ws9{word-spacing:-48.000000pt;}
.wsb{word-spacing:-19.040000pt;}
.ws10{word-spacing:-19.023467pt;}
.wse{word-spacing:-18.720000pt;}
.wsf{word-spacing:-18.686720pt;}
.ws13{word-spacing:-16.601707pt;}
.wsc{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.271573pt;}
.ws12{word-spacing:-16.097173pt;}
.ws4{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.961707pt;}
.ws11{word-spacing:-15.632640pt;}
.ws1{word-spacing:-14.767360pt;}
.ws14{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.672427pt;}
.ws8{word-spacing:-14.536427pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.680000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-2.826667pt;}
._1{margin-left:-1.351680pt;}
._2{width:0.927573pt;}
._4{width:1.853440pt;}
._7{width:2.843520pt;}
._3{width:3.942400pt;}
._f{width:5.088427pt;}
._b{width:6.288000pt;}
._a{width:7.488000pt;}
._15{width:8.529707pt;}
._19{width:10.079147pt;}
._16{width:10.995840pt;}
._10{width:11.952000pt;}
._11{width:12.883627pt;}
._13{width:13.807573pt;}
._1f{width:14.773333pt;}
._12{width:15.802453pt;}
._6{width:17.284267pt;}
._14{width:18.526933pt;}
._17{width:19.548160pt;}
._18{width:20.506667pt;}
._21{width:22.197760pt;}
._1b{width:23.375360pt;}
._1a{width:24.494080pt;}
._1c{width:25.551360pt;}
._25{width:26.496000pt;}
._22{width:27.404800pt;}
._0{width:28.328960pt;}
._23{width:29.555200pt;}
._24{width:31.139840pt;}
._5{width:32.890880pt;}
._20{width:34.032640pt;}
._2e{width:36.522027pt;}
._26{width:38.036480pt;}
._27{width:39.037440pt;}
._29{width:41.628160pt;}
._28{width:42.972587pt;}
._2b{width:57.704960pt;}
._2a{width:59.289600pt;}
._2c{width:60.677973pt;}
._9{width:65.291733pt;}
._2d{width:74.261760pt;}
._c{width:170.682667pt;}
._d{width:176.800000pt;}
._1e{width:380.960000pt;}
._8{width:1000.591787pt;}
._1d{width:1027.605333pt;}
.fs9{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.386667pt;}
.yb{bottom:14.706667pt;}
.ya{bottom:26.866667pt;}
.y37{bottom:63.232000pt;}
.y13{bottom:63.712000pt;}
.y12{bottom:79.072000pt;}
.y11{bottom:94.432000pt;}
.y10{bottom:110.752000pt;}
.y83{bottom:121.312000pt;}
.yda{bottom:121.952000pt;}
.yf{bottom:123.392000pt;}
.y198{bottom:124.192000pt;}
.yca{bottom:125.152000pt;}
.y60{bottom:125.312000pt;}
.y12b{bottom:126.432000pt;}
.y92{bottom:126.912000pt;}
.yfa{bottom:131.232000pt;}
.y1ca{bottom:132.352000pt;}
.y9f{bottom:133.312000pt;}
.y186{bottom:133.466667pt;}
.y10a{bottom:134.106667pt;}
.ye{bottom:139.226667pt;}
.yd9{bottom:142.106667pt;}
.y1a1{bottom:144.186667pt;}
.y82{bottom:146.586667pt;}
.y175{bottom:149.466667pt;}
.y1c9{bottom:149.946667pt;}
.yc9{bottom:150.426667pt;}
.y5f{bottom:150.586667pt;}
.y144{bottom:151.386667pt;}
.y12a{bottom:151.706667pt;}
.y91{bottom:152.186667pt;}
.yd{bottom:152.666667pt;}
.y109{bottom:154.426667pt;}
.yf9{bottom:156.506667pt;}
.y9e{bottom:158.586667pt;}
.y17a{bottom:158.746667pt;}
.y15b{bottom:159.866667pt;}
.y103{bottom:160.186667pt;}
.y1a0{bottom:161.146667pt;}
.yd8{bottom:162.426667pt;}
.y9{bottom:163.080000pt;}
.y1c8{bottom:167.546667pt;}
.yb7{bottom:169.626667pt;}
.y81{bottom:172.026667pt;}
.y108{bottom:174.586667pt;}
.y174{bottom:174.746667pt;}
.yc8{bottom:175.706667pt;}
.y5e{bottom:175.866667pt;}
.y143{bottom:176.666667pt;}
.y90{bottom:177.626667pt;}
.yf8{bottom:181.786667pt;}
.yd7{bottom:182.586667pt;}
.y9d{bottom:183.866667pt;}
.y185{bottom:184.026667pt;}
.y129{bottom:184.986667pt;}
.y15a{bottom:185.146667pt;}
.y1c7{bottom:185.306667pt;}
.y102{bottom:185.626667pt;}
.y197{bottom:190.746667pt;}
.y1c6{bottom:192.026667pt;}
.yb6{bottom:194.906667pt;}
.y80{bottom:197.306667pt;}
.y173{bottom:200.026667pt;}
.yc7{bottom:200.986667pt;}
.y5d{bottom:201.146667pt;}
.y142{bottom:201.946667pt;}
.y19f{bottom:202.586667pt;}
.yd6{bottom:202.906667pt;}
.yf7{bottom:207.066667pt;}
.y8{bottom:207.386667pt;}
.y9c{bottom:209.146667pt;}
.y128{bottom:210.266667pt;}
.y159{bottom:210.426667pt;}
.y8f{bottom:210.906667pt;}
.y107{bottom:215.066667pt;}
.y196{bottom:216.026667pt;}
.y1c5{bottom:218.906667pt;}
.yb5{bottom:220.186667pt;}
.y7f{bottom:222.586667pt;}
.yd5{bottom:223.066667pt;}
.y172{bottom:225.306667pt;}
.yc6{bottom:226.266667pt;}
.y5c{bottom:226.426667pt;}
.y112{bottom:228.186667pt;}
.y7{bottom:229.306667pt;}
.yf6{bottom:232.346667pt;}
.y141{bottom:235.226667pt;}
.y106{bottom:235.386667pt;}
.y127{bottom:235.546667pt;}
.y8e{bottom:236.186667pt;}
.y1c4{bottom:236.506667pt;}
.y195{bottom:241.306667pt;}
.y9b{bottom:242.586667pt;}
.yd4{bottom:243.386667pt;}
.y19e{bottom:243.866667pt;}
.yb4{bottom:245.466667pt;}
.y6{bottom:250.106667pt;}
.y171{bottom:250.586667pt;}
.y158{bottom:251.706667pt;}
.y110{bottom:253.466667pt;}
.y1c3{bottom:254.106667pt;}
.y105{bottom:255.546667pt;}
.yc5{bottom:259.546667pt;}
.y111{bottom:260.186667pt;}
.y140{bottom:260.506667pt;}
.y1c2{bottom:260.826667pt;}
.y126{bottom:260.986667pt;}
.y8d{bottom:261.466667pt;}
.yd3{bottom:263.546667pt;}
.yf5{bottom:265.626667pt;}
.y179{bottom:266.586667pt;}
.y9a{bottom:267.866667pt;}
.yb3{bottom:270.746667pt;}
.y5{bottom:271.066667pt;}
.y7e{bottom:275.066667pt;}
.y104{bottom:275.866667pt;}
.y157{bottom:276.986667pt;}
.y10f{bottom:278.746667pt;}
.y5b{bottom:278.906667pt;}
.yd2{bottom:283.866667pt;}
.yc4{bottom:284.986667pt;}
.y19d{bottom:285.306667pt;}
.y13f{bottom:285.786667pt;}
.y125{bottom:286.266667pt;}
.y8c{bottom:286.746667pt;}
.y1c1{bottom:287.706667pt;}
.yf4{bottom:291.106667pt;}
.y170{bottom:291.906667pt;}
.y4{bottom:292.066667pt;}
.y99{bottom:293.186667pt;}
.yb2{bottom:296.066667pt;}
.y156{bottom:302.306667pt;}
.y7d{bottom:304.066667pt;}
.y1c0{bottom:305.346667pt;}
.y194{bottom:307.906667pt;}
.yc3{bottom:310.306667pt;}
.y19c{bottom:310.626667pt;}
.y13e{bottom:311.106667pt;}
.y124{bottom:311.586667pt;}
.y8b{bottom:312.066667pt;}
.y3{bottom:313.026667pt;}
.yf3{bottom:316.386667pt;}
.y16f{bottom:317.346667pt;}
.y98{bottom:318.466667pt;}
.yd1{bottom:324.386667pt;}
.y5a{bottom:327.746667pt;}
.y33{bottom:328.866667pt;}
.yb1{bottom:329.346667pt;}
.y193{bottom:333.346667pt;}
.yc2{bottom:335.586667pt;}
.y13d{bottom:336.546667pt;}
.y123{bottom:336.866667pt;}
.y7c{bottom:337.346667pt;}
.y1bf{bottom:339.106667pt;}
.yf2{bottom:341.666667pt;}
.y184{bottom:342.626667pt;}
.y97{bottom:343.746667pt;}
.y32{bottom:344.066667pt;}
.yd0{bottom:344.546667pt;}
.y101{bottom:345.346667pt;}
.y59{bottom:348.066667pt;}
.y19b{bottom:351.906667pt;}
.yb0{bottom:354.626667pt;}
.y1be{bottom:356.866667pt;}
.y16e{bottom:358.626667pt;}
.y31{bottom:359.426667pt;}
.y122{bottom:362.146667pt;}
.y7b{bottom:362.626667pt;}
.ycf{bottom:364.866667pt;}
.yf1{bottom:366.946667pt;}
.yc1{bottom:368.866667pt;}
.y155{bottom:369.026667pt;}
.y13c{bottom:369.826667pt;}
.yff{bottom:370.626667pt;}
.y58{bottom:371.106667pt;}
.y1bd{bottom:374.306667pt;}
.y30{bottom:375.426667pt;}
.yaf{bottom:379.906667pt;}
.y16d{bottom:383.906667pt;}
.yce{bottom:385.026667pt;}
.y7a{bottom:387.906667pt;}
.y1bc{bottom:391.906667pt;}
.yf0{bottom:392.226667pt;}
.y19a{bottom:393.186667pt;}
.y2f{bottom:393.826667pt;}
.y57{bottom:393.986667pt;}
.yc0{bottom:394.146667pt;}
.y13b{bottom:395.106667pt;}
.y121{bottom:395.426667pt;}
.yfe{bottom:395.906667pt;}
.y96{bottom:396.226667pt;}
.y192{bottom:399.906667pt;}
.yae{bottom:405.346667pt;}
.y16c{bottom:409.186667pt;}
.y1bb{bottom:409.506667pt;}
.y154{bottom:410.306667pt;}
.y2e{bottom:411.266667pt;}
.y8a{bottom:413.346667pt;}
.y56{bottom:417.026667pt;}
.yef{bottom:417.506667pt;}
.y199{bottom:418.466667pt;}
.ybf{bottom:419.426667pt;}
.y13a{bottom:420.386667pt;}
.y120{bottom:420.706667pt;}
.y79{bottom:421.346667pt;}
.y2d{bottom:425.026667pt;}
.y191{bottom:425.186667pt;}
.y1ba{bottom:427.266667pt;}
.yad{bottom:430.626667pt;}
.y55{bottom:432.386667pt;}
.y183{bottom:434.466667pt;}
.y153{bottom:435.586667pt;}
.y95{bottom:438.626667pt;}
.y2c{bottom:439.266667pt;}
.yee{bottom:442.786667pt;}
.ybe{bottom:444.706667pt;}
.y11f{bottom:445.986667pt;}
.y78{bottom:446.626667pt;}
.y54{bottom:447.746667pt;}
.y16b{bottom:450.466667pt;}
.y1b9{bottom:451.746667pt;}
.y89{bottom:453.346667pt;}
.y139{bottom:453.666667pt;}
.y2b{bottom:454.466667pt;}
.y10e{bottom:454.626667pt;}
.y182{bottom:459.746667pt;}
.y152{bottom:460.866667pt;}
.y2a{bottom:461.186667pt;}
.y53{bottom:463.106667pt;}
.yac{bottom:463.906667pt;}
.y190{bottom:466.466667pt;}
.ybd{bottom:469.986667pt;}
.y11e{bottom:471.266667pt;}
.y77{bottom:471.906667pt;}
.y29{bottom:474.466667pt;}
.y16a{bottom:475.746667pt;}
.yed{bottom:476.066667pt;}
.y52{bottom:478.466667pt;}
.y138{bottom:478.946667pt;}
.y10d{bottom:479.906667pt;}
.y181{bottom:485.026667pt;}
.y151{bottom:486.146667pt;}
.yab{bottom:489.186667pt;}
.y18f{bottom:491.746667pt;}
.y28{bottom:494.626667pt;}
.ybc{bottom:495.266667pt;}
.y51{bottom:495.906667pt;}
.y1b8{bottom:496.066667pt;}
.y11d{bottom:496.706667pt;}
.y76{bottom:497.186667pt;}
.y169{bottom:501.026667pt;}
.yec{bottom:501.346667pt;}
.y137{bottom:504.226667pt;}
.y10c{bottom:505.186667pt;}
.y50{bottom:513.506667pt;}
.yaa{bottom:514.466667pt;}
.y18e{bottom:517.026667pt;}
.y1b7{bottom:520.386667pt;}
.ybb{bottom:520.706667pt;}
.y11c{bottom:521.986667pt;}
.y75{bottom:522.466667pt;}
.y27{bottom:525.826667pt;}
.y168{bottom:526.306667pt;}
.yeb{bottom:526.786667pt;}
.y150{bottom:527.426667pt;}
.y136{bottom:529.533333pt;}
.y88{bottom:530.493333pt;}
.y4f{bottom:531.133333pt;}
.ya9{bottom:539.773333pt;}
.y178{bottom:542.333333pt;}
.yba{bottom:546.013333pt;}
.y1b6{bottom:547.453333pt;}
.y74{bottom:547.773333pt;}
.y4e{bottom:548.893333pt;}
.y180{bottom:551.613333pt;}
.yea{bottom:552.093333pt;}
.y14f{bottom:552.733333pt;}
.y135{bottom:554.813333pt;}
.y87{bottom:555.773333pt;}
.y26{bottom:556.893333pt;}
.yfd{bottom:562.493333pt;}
.y1b5{bottom:565.053333pt;}
.y4d{bottom:566.493333pt;}
.y167{bottom:567.613333pt;}
.y11b{bottom:571.773333pt;}
.y73{bottom:573.053333pt;}
.y17f{bottom:577.053333pt;}
.ye9{bottom:577.373333pt;}
.y14e{bottom:578.013333pt;}
.y25{bottom:578.813333pt;}
.y86{bottom:581.053333pt;}
.y1b4{bottom:582.653333pt;}
.y18d{bottom:583.613333pt;}
.y4c{bottom:584.093333pt;}
.y134{bottom:588.253333pt;}
.y166{bottom:593.053333pt;}
.yb9{bottom:595.773333pt;}
.y72{bottom:598.333333pt;}
.y4b{bottom:601.693333pt;}
.ye8{bottom:602.653333pt;}
.y11a{bottom:603.933333pt;}
.ycd{bottom:605.053333pt;}
.y85{bottom:606.333333pt;}
.y1b3{bottom:606.973333pt;}
.y18c{bottom:609.053333pt;}
.y24{bottom:609.373333pt;}
.y1db{bottom:611.933333pt;}
.y100{bottom:613.053333pt;}
.y133{bottom:613.533333pt;}
.y17e{bottom:618.333333pt;}
.y4a{bottom:619.293333pt;}
.y14d{bottom:619.453333pt;}
.y71{bottom:623.613333pt;}
.yb8{bottom:627.933333pt;}
.y1da{bottom:630.173333pt;}
.y84{bottom:631.613333pt;}
.y23{bottom:633.533333pt;}
.y1b2{bottom:633.853333pt;}
.y165{bottom:634.333333pt;}
.y49{bottom:637.053333pt;}
.y132{bottom:638.813333pt;}
.y119{bottom:641.053333pt;}
.y17d{bottom:643.613333pt;}
.ye7{bottom:643.933333pt;}
.y14c{bottom:644.733333pt;}
.y18b{bottom:650.333333pt;}
.y1b1{bottom:651.613333pt;}
.y48{bottom:654.653333pt;}
.y22{bottom:654.973333pt;}
.y70{bottom:657.053333pt;}
.y164{bottom:659.613333pt;}
.y1d9{bottom:664.893333pt;}
.ya8{bottom:665.053333pt;}
.ye6{bottom:669.213333pt;}
.y14b{bottom:670.013333pt;}
.y131{bottom:672.093333pt;}
.y47{bottom:672.253333pt;}
.y118{bottom:674.333333pt;}
.y18a{bottom:675.613333pt;}
.y20{bottom:679.933333pt;}
.y6f{bottom:682.333333pt;}
.y177{bottom:684.893333pt;}
.y1b0{bottom:686.813333pt;}
.y21{bottom:687.933333pt;}
.ya7{bottom:690.333333pt;}
.ye5{bottom:694.493333pt;}
.y130{bottom:697.373333pt;}
.y1d8{bottom:698.493333pt;}
.y117{bottom:699.613333pt;}
.y163{bottom:700.893333pt;}
.y46{bottom:703.773333pt;}
.y1f{bottom:704.573333pt;}
.y6e{bottom:707.613333pt;}
.y176{bottom:710.173333pt;}
.y1af{bottom:711.133333pt;}
.y14a{bottom:711.293333pt;}
.ya6{bottom:715.613333pt;}
.y1d7{bottom:716.253333pt;}
.y189{bottom:716.893333pt;}
.ye4{bottom:719.773333pt;}
.y12f{bottom:722.653333pt;}
.y116{bottom:724.893333pt;}
.y162{bottom:726.173333pt;}
.y1e{bottom:730.333333pt;}
.y6d{bottom:732.893333pt;}
.y1d6{bottom:733.853333pt;}
.y45{bottom:735.133333pt;}
.y149{bottom:736.573333pt;}
.y1ae{bottom:738.013333pt;}
.ycc{bottom:739.613333pt;}
.ya5{bottom:740.893333pt;}
.y188{bottom:742.173333pt;}
.y10b{bottom:747.613333pt;}
.y12e{bottom:747.933333pt;}
.y161{bottom:751.453333pt;}
.y44{bottom:752.413333pt;}
.ye3{bottom:753.053333pt;}
.y1ad{bottom:755.773333pt;}
.y6c{bottom:758.173333pt;}
.y1d{bottom:760.253333pt;}
.y148{bottom:761.853333pt;}
.y94{bottom:766.213333pt;}
.y187{bottom:767.493333pt;}
.y43{bottom:770.053333pt;}
.y12d{bottom:773.253333pt;}
.y1ac{bottom:773.413333pt;}
.ya4{bottom:774.213333pt;}
.y17c{bottom:776.773333pt;}
.ye2{bottom:778.533333pt;}
.y1ab{bottom:780.133333pt;}
.ycb{bottom:783.493333pt;}
.y1d5{bottom:785.093333pt;}
.y42{bottom:787.653333pt;}
.y1c{bottom:787.813333pt;}
.y6a{bottom:791.493333pt;}
.y160{bottom:792.773333pt;}
.y6b{bottom:798.213333pt;}
.ya3{bottom:799.493333pt;}
.y1d4{bottom:802.693333pt;}
.y147{bottom:803.173333pt;}
.y41{bottom:805.253333pt;}
.y1aa{bottom:807.013333pt;}
.y115{bottom:808.773333pt;}
.y1b{bottom:809.093333pt;}
.ye1{bottom:814.693333pt;}
.y69{bottom:816.773333pt;}
.y15f{bottom:818.053333pt;}
.y1d3{bottom:820.453333pt;}
.y40{bottom:823.013333pt;}
.y1a9{bottom:824.613333pt;}
.ya2{bottom:824.773333pt;}
.y12c{bottom:827.973333pt;}
.y146{bottom:828.453333pt;}
.y1a{bottom:830.213333pt;}
.y114{bottom:834.053333pt;}
.ye0{bottom:834.853333pt;}
.y1d2{bottom:838.053333pt;}
.y3f{bottom:840.613333pt;}
.y68{bottom:842.053333pt;}
.y1a8{bottom:842.373333pt;}
.y17b{bottom:843.333333pt;}
.yfc{bottom:848.773333pt;}
.ya1{bottom:850.053333pt;}
.y19{bottom:851.333333pt;}
.ydf{bottom:855.173333pt;}
.y1d1{bottom:855.653333pt;}
.y3e{bottom:858.213333pt;}
.y15e{bottom:859.333333pt;}
.y1a7{bottom:859.973333pt;}
.y1a6{bottom:866.693333pt;}
.y67{bottom:867.333333pt;}
.ya0{bottom:875.333333pt;}
.y3d{bottom:875.813333pt;}
.y18{bottom:879.013333pt;}
.y1d0{bottom:879.973333pt;}
.y145{bottom:881.093333pt;}
.y15d{bottom:884.773333pt;}
.y1a5{bottom:891.653333pt;}
.y66{bottom:892.773333pt;}
.y3c{bottom:893.413333pt;}
.yde{bottom:895.653333pt;}
.y1a4{bottom:898.373333pt;}
.y93{bottom:900.773333pt;}
.y17{bottom:906.533333pt;}
.y1cf{bottom:906.853333pt;}
.y15c{bottom:910.053333pt;}
.y3b{bottom:911.173333pt;}
.ydd{bottom:915.813333pt;}
.yfb{bottom:918.053333pt;}
.y1ce{bottom:924.613333pt;}
.y1a3{bottom:925.093333pt;}
.y65{bottom:926.053333pt;}
.y3a{bottom:928.773333pt;}
.y16{bottom:934.213333pt;}
.ydc{bottom:936.133333pt;}
.y1cd{bottom:942.213333pt;}
.y39{bottom:946.373333pt;}
.y64{bottom:951.333333pt;}
.y15{bottom:955.813333pt;}
.ydb{bottom:956.293333pt;}
.y113{bottom:958.053333pt;}
.y1a2{bottom:959.493333pt;}
.y1cc{bottom:959.813333pt;}
.y1cb{bottom:966.533333pt;}
.y14{bottom:976.453333pt;}
.y63{bottom:976.613333pt;}
.y38{bottom:978.053333pt;}
.y36{bottom:1029.280000pt;}
.y2{bottom:1043.680000pt;}
.y35{bottom:1047.040000pt;}
.y62{bottom:1047.360000pt;}
.y61{bottom:1060.960000pt;}
.y1{bottom:1061.600000pt;}
.y34{bottom:1064.480000pt;}
.h1f{height:34.374375pt;}
.h12{height:36.045000pt;}
.h4{height:36.786667pt;}
.h18{height:38.715000pt;}
.h8{height:42.084375pt;}
.h6{height:44.722500pt;}
.h7{height:47.109375pt;}
.h10{height:47.392500pt;}
.h20{height:47.647188pt;}
.h11{height:50.062500pt;}
.h9{height:52.134375pt;}
.h1c{height:52.641250pt;}
.h19{height:52.813750pt;}
.h1d{height:52.834688pt;}
.h5{height:55.402500pt;}
.h2{height:58.563750pt;}
.h3{height:58.740000pt;}
.h17{height:61.410000pt;}
.hc{height:62.781250pt;}
.h14{height:62.812500pt;}
.h15{height:63.656250pt;}
.hb{height:64.500000pt;}
.h1e{height:65.531250pt;}
.h1b{height:65.595000pt;}
.h13{height:66.750000pt;}
.he{height:72.090000pt;}
.ha{height:74.477812pt;}
.h16{height:75.465000pt;}
.hd{height:78.097500pt;}
.h1a{height:85.785000pt;}
.hf{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:627.000000pt;}
.w3{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.190667pt;}
.x2{left:87.401333pt;}
.x1{left:94.592000pt;}
.xf{left:99.392000pt;}
.x12{left:101.792000pt;}
.x2e{left:104.192000pt;}
.x8{left:114.912000pt;}
.x7{left:119.072000pt;}
.x16{left:122.912000pt;}
.x2d{left:123.872000pt;}
.x17{left:128.030333pt;}
.x18{left:133.152000pt;}
.x15{left:141.786667pt;}
.x21{left:154.905000pt;}
.x6{left:158.746667pt;}
.x22{left:160.026667pt;}
.x27{left:176.665000pt;}
.x28{left:186.906667pt;}
.x9{left:207.066667pt;}
.x29{left:264.065000pt;}
.x2a{left:274.306667pt;}
.xd{left:284.866667pt;}
.xe{left:286.626667pt;}
.xa{left:288.066667pt;}
.x1d{left:316.545000pt;}
.x1e{left:321.666667pt;}
.x5{left:395.613333pt;}
.x23{left:407.771667pt;}
.x24{left:412.893333pt;}
.x2b{left:418.331667pt;}
.x2c{left:428.573333pt;}
.x10{left:489.211667pt;}
.x11{left:494.333333pt;}
.xb{left:497.051667pt;}
.xc{left:503.333333pt;}
.x19{left:537.571667pt;}
.x1a{left:542.693333pt;}
.x25{left:553.411667pt;}
.x26{left:563.653333pt;}
.x1b{left:609.891667pt;}
.x1c{left:615.013333pt;}
.x1f{left:656.478333pt;}
.x20{left:661.600000pt;}
.x13{left:670.238333pt;}
.x14{left:675.360000pt;}
.x4{left:696.800000pt;}
}




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