
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_92d8c0c1ab3252cb029701f1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_285aa666dc3ce1f1471ae40b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_c407ddf266cd538ab42717e3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_0150ab44968a9241c554af89.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_f037a84163b36c20bd3b95d7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_d16298a3a9abc17d0cbce280.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_8bf8891a146906fed8572b3f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.061523;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_a63ad574ac024301556e4a06.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_d315d40293af00dc365b871d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.244200px;}
.ls12{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.095400px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.084000px;}
.ls1a{letter-spacing:-0.040320px;}
.ls1c{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.051840px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls20{letter-spacing:0.098400px;}
.ls17{letter-spacing:0.114600px;}
.ls16{letter-spacing:0.115800px;}
.ls22{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.534600px;}
.ls1f{letter-spacing:1.533600px;}
.lsf{letter-spacing:5.853600px;}
.ls21{letter-spacing:13.413600px;}
.ls24{letter-spacing:14.246640px;}
.ls1b{letter-spacing:26.373600px;}
.ls1e{letter-spacing:47.726640px;}
.ls1d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.ws2{word-spacing:-14.384400px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.342800px;}
.wse{word-spacing:-13.342200px;}
.ws12{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.278240px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.218840px;}
.ws7{word-spacing:-13.065600px;}
.wsa{word-spacing:-13.039800px;}
.ws10{word-spacing:-10.648200px;}
.wsf{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._f{margin-left:-3.662880px;}
._8{margin-left:-2.589600px;}
._0{margin-left:-1.110000px;}
._2{width:1.003708px;}
._4{width:2.123605px;}
._3{width:3.228054px;}
._1{width:4.781412px;}
._c{width:6.252600px;}
._9{width:7.274400px;}
._6{width:9.240840px;}
._5{width:10.524960px;}
._b{width:12.200640px;}
._d{width:14.669280px;}
._e{width:16.352640px;}
._a{width:17.434800px;}
._7{width:19.164960px;}
._17{width:20.981880px;}
._2b{width:22.508640px;}
._2a{width:24.468840px;}
._24{width:25.731360px;}
._25{width:26.733360px;}
._2c{width:29.518920px;}
._11{width:30.525840px;}
._1d{width:31.803480px;}
._13{width:33.967800px;}
._28{width:35.951760px;}
._29{width:37.033920px;}
._1e{width:38.702160px;}
._1f{width:39.814560px;}
._27{width:41.138040px;}
._26{width:43.271280px;}
._10{width:44.428680px;}
._1c{width:49.839480px;}
._19{width:54.829440px;}
._1a{width:59.097960px;}
._12{width:66.372480px;}
._20{width:68.957640px;}
._1b{width:79.478640px;}
._18{width:87.053760px;}
._22{width:90.240120px;}
._14{width:98.115840px;}
._23{width:127.634760px;}
._15{width:131.843160px;}
._16{width:193.706640px;}
._21{width:349.670640px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y61{bottom:7.830000px;}
.y4c{bottom:7.920000px;}
.yd5{bottom:7.950000px;}
.yb0{bottom:12.330000px;}
.yb9{bottom:12.420000px;}
.y60{bottom:16.830000px;}
.y66{bottom:20.970000px;}
.ybd{bottom:25.380000px;}
.y78{bottom:25.470000px;}
.y4b{bottom:25.500000px;}
.y73{bottom:29.880000px;}
.y5a{bottom:29.970000px;}
.ycc{bottom:30.000000px;}
.y5f{bottom:34.470000px;}
.y65{bottom:43.020000px;}
.y64{bottom:47.520000px;}
.y5e{bottom:52.020000px;}
.y59{bottom:52.110000px;}
.y7d{bottom:56.520000px;}
.yad{bottom:56.610000px;}
.y63{bottom:65.160000px;}
.y8e{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y72{bottom:74.070000px;}
.y58{bottom:74.160000px;}
.y2a{bottom:74.190000px;}
.y8d{bottom:82.710000px;}
.y8b{bottom:87.210000px;}
.y57{bottom:96.210000px;}
.y86{bottom:96.240000px;}
.y1{bottom:101.640000px;}
.y8c{bottom:104.850000px;}
.y8a{bottom:109.350000px;}
.yb8{bottom:109.380000px;}
.y16b{bottom:115.680000px;}
.y18b{bottom:116.130000px;}
.y71{bottom:118.260000px;}
.y56{bottom:118.350000px;}
.y85{bottom:118.380000px;}
.y46{bottom:120.540000px;}
.y87{bottom:122.880000px;}
.y89{bottom:126.900000px;}
.y119{bottom:127.740000px;}
.y74{bottom:129.180000px;}
.yd2{bottom:133.140000px;}
.y16a{bottom:133.320000px;}
.y140{bottom:133.680000px;}
.yf2{bottom:134.760000px;}
.y55{bottom:135.900000px;}
.y28{bottom:136.830000px;}
.y70{bottom:140.310000px;}
.y76{bottom:140.400000px;}
.y84{bottom:140.430000px;}
.y176{bottom:142.680000px;}
.y82{bottom:144.930000px;}
.y118{bottom:145.290000px;}
.y13f{bottom:151.320000px;}
.yf1{bottom:152.310000px;}
.y27{bottom:154.380000px;}
.y45{bottom:155.370000px;}
.y75{bottom:157.950000px;}
.y54{bottom:158.040000px;}
.y169{bottom:159.870000px;}
.y175{bottom:160.320000px;}
.y96{bottom:160.410000px;}
.y6f{bottom:162.450000px;}
.y83{bottom:162.480000px;}
.y5c{bottom:162.540000px;}
.y117{bottom:162.840000px;}
.y81{bottom:166.980000px;}
.y51{bottom:167.040000px;}
.y13e{bottom:168.870000px;}
.y44{bottom:169.410000px;}
.y26{bottom:171.930000px;}
.y95{bottom:174.450000px;}
.y168{bottom:177.510000px;}
.y174{bottom:177.870000px;}
.y53{bottom:180.090000px;}
.yb7{bottom:180.930000px;}
.y43{bottom:183.540000px;}
.y6e{bottom:184.530000px;}
.y5b{bottom:184.590000px;}
.y80{bottom:184.620000px;}
.y186{bottom:186.510000px;}
.yf0{bottom:187.860000px;}
.y94{bottom:188.490000px;}
.y50{bottom:189.090000px;}
.y116{bottom:189.480000px;}
.y25{bottom:189.570000px;}
.y13d{bottom:195.510000px;}
.y52{bottom:202.140000px;}
.y93{bottom:202.620000px;}
.y167{bottom:204.060000px;}
.y173{bottom:204.510000px;}
.yd1{bottom:204.600000px;}
.yef{bottom:205.500000px;}
.y4f{bottom:206.640000px;}
.y6d{bottom:206.670000px;}
.y115{bottom:207.030000px;}
.y24{bottom:207.120000px;}
.y13c{bottom:213.060000px;}
.y92{bottom:216.660000px;}
.ya4{bottom:217.290000px;}
.y166{bottom:221.610000px;}
.y42{bottom:221.700000px;}
.y172{bottom:222.060000px;}
.yee{bottom:223.050000px;}
.y4e{bottom:224.280000px;}
.y23{bottom:224.760000px;}
.y6c{bottom:228.720000px;}
.yb6{bottom:230.340000px;}
.y185{bottom:230.610000px;}
.y91{bottom:230.700000px;}
.y114{bottom:233.580000px;}
.ya3{bottom:234.840000px;}
.y6a{bottom:237.720000px;}
.y13b{bottom:239.610000px;}
.yed{bottom:240.690000px;}
.y90{bottom:244.830000px;}
.y165{bottom:248.250000px;}
.y171{bottom:248.610000px;}
.y6b{bottom:250.770000px;}
.y7b{bottom:250.860000px;}
.y113{bottom:251.220000px;}
.ya2{bottom:252.480000px;}
.yd0{bottom:254.010000px;}
.y69{bottom:255.270000px;}
.y13a{bottom:257.250000px;}
.yec{bottom:258.240000px;}
.y8f{bottom:258.870000px;}
.y22{bottom:260.310000px;}
.y164{bottom:265.800000px;}
.y170{bottom:266.250000px;}
.y88{bottom:271.020000px;}
.y68{bottom:272.910000px;}
.y184{bottom:274.800000px;}
.yeb{bottom:275.790000px;}
.y112{bottom:277.770000px;}
.y21{bottom:277.860000px;}
.ya1{bottom:279.030000px;}
.yb5{bottom:279.750000px;}
.y139{bottom:283.800000px;}
.y163{bottom:292.440000px;}
.yea{bottom:293.430000px;}
.y7a{bottom:295.050000px;}
.y111{bottom:295.410000px;}
.y20{bottom:295.500000px;}
.y138{bottom:301.440000px;}
.ycf{bottom:303.510000px;}
.y67{bottom:306.660000px;}
.y162{bottom:309.990000px;}
.y16f{bottom:310.440000px;}
.y110{bottom:312.960000px;}
.y1f{bottom:313.050000px;}
.ya0{bottom:314.580000px;}
.y183{bottom:318.990000px;}
.yb4{bottom:324.660000px;}
.y137{bottom:327.990000px;}
.ye9{bottom:328.980000px;}
.y1e{bottom:330.600000px;}
.y161{bottom:336.540000px;}
.y10f{bottom:339.510000px;}
.y136{bottom:345.540000px;}
.ye8{bottom:346.620000px;}
.y9f{bottom:346.800000px;}
.yb3{bottom:352.020000px;}
.yce{bottom:352.920000px;}
.y160{bottom:354.180000px;}
.y16e{bottom:354.540000px;}
.y10e{bottom:357.150000px;}
.y1d{bottom:357.510000px;}
.y182{bottom:363.180000px;}
.ye7{bottom:364.170000px;}
.y15f{bottom:371.730000px;}
.y135{bottom:372.180000px;}
.y181{bottom:380.730000px;}
.ye6{bottom:381.720000px;}
.y10d{bottom:383.700000px;}
.y134{bottom:389.730000px;}
.ycd{bottom:397.830000px;}
.y15e{bottom:398.370000px;}
.ye5{bottom:399.360000px;}
.y10c{bottom:401.340000px;}
.yb2{bottom:401.430000px;}
.y1c{bottom:406.110000px;}
.y180{bottom:407.370000px;}
.y15d{bottom:415.920000px;}
.y133{bottom:416.370000px;}
.y7f{bottom:417.360000px;}
.y17f{bottom:424.920000px;}
.y10b{bottom:427.890000px;}
.yb1{bottom:428.790000px;}
.y132{bottom:433.920000px;}
.ye4{bottom:434.910000px;}
.y15c{bottom:442.470000px;}
.ycb{bottom:442.740000px;}
.y1b{bottom:443.190000px;}
.y10a{bottom:445.440000px;}
.y17e{bottom:451.470000px;}
.ye3{bottom:452.550000px;}
.y15b{bottom:460.110000px;}
.y131{bottom:460.470000px;}
.y1a{bottom:460.740000px;}
.y17d{bottom:469.110000px;}
.ye2{bottom:470.130000px;}
.y109{bottom:472.110000px;}
.y130{bottom:478.140000px;}
.yaf{bottom:478.230000px;}
.y19{bottom:478.410000px;}
.y15a{bottom:486.690000px;}
.ye1{bottom:487.680000px;}
.y108{bottom:489.660000px;}
.yca{bottom:492.180000px;}
.y17c{bottom:495.690000px;}
.y18{bottom:495.960000px;}
.y159{bottom:504.330000px;}
.y12f{bottom:504.690000px;}
.ye0{bottom:505.320000px;}
.y17b{bottom:513.330000px;}
.y17{bottom:513.510000px;}
.y107{bottom:516.300000px;}
.y12e{bottom:522.330000px;}
.ydf{bottom:522.870000px;}
.yae{bottom:527.640000px;}
.y158{bottom:530.880000px;}
.y16{bottom:531.150000px;}
.y106{bottom:533.850000px;}
.y12d{bottom:539.880000px;}
.yde{bottom:540.510000px;}
.yc9{bottom:541.590000px;}
.y157{bottom:548.430000px;}
.y15{bottom:548.700000px;}
.y18a{bottom:548.880000px;}
.y105{bottom:551.400000px;}
.y17a{bottom:557.430000px;}
.y14{bottom:566.340000px;}
.y12c{bottom:566.430000px;}
.yc8{bottom:568.950000px;}
.y104{bottom:569.040000px;}
.ydd{bottom:573.450000px;}
.y156{bottom:575.070000px;}
.y13{bottom:583.890000px;}
.y12b{bottom:584.070000px;}
.y103{bottom:586.590000px;}
.y155{bottom:592.620000px;}
.yc7{bottom:596.310000px;}
.y62{bottom:599.010000px;}
.yac{bottom:599.100000px;}
.y12{bottom:601.440000px;}
.y179{bottom:601.620000px;}
.y12a{bottom:610.620000px;}
.y102{bottom:613.230000px;}
.ydc{bottom:618.360000px;}
.y11{bottom:619.080000px;}
.y154{bottom:619.260000px;}
.y7e{bottom:621.420000px;}
.yc6{bottom:623.580000px;}
.y129{bottom:628.260000px;}
.y101{bottom:630.780000px;}
.y153{bottom:636.810000px;}
.y16d{bottom:645.810000px;}
.y10{bottom:645.990000px;}
.y128{bottom:654.810000px;}
.y100{bottom:657.690000px;}
.y152{bottom:663.360000px;}
.ydb{bottom:667.770000px;}
.yc5{bottom:668.490000px;}
.y127{bottom:672.360000px;}
.y41{bottom:677.400000px;}
.y151{bottom:681.000000px;}
.y5d{bottom:683.610000px;}
.y126{bottom:690.000000px;}
.yab{bottom:692.700000px;}
.yf{bottom:694.230000px;}
.y40{bottom:694.950000px;}
.yda{bottom:695.130000px;}
.yc4{bottom:695.850000px;}
.y189{bottom:699.000000px;}
.yff{bottom:705.930000px;}
.y7c{bottom:706.020000px;}
.y150{bottom:707.550000px;}
.y3f{bottom:712.590000px;}
.y125{bottom:716.550000px;}
.y9e{bottom:717.000000px;}
.y14f{bottom:725.190000px;}
.ye{bottom:729.780000px;}
.y3e{bottom:730.140000px;}
.yfe{bottom:732.840000px;}
.y124{bottom:734.190000px;}
.y9d{bottom:734.550000px;}
.yaa{bottom:741.390000px;}
.y188{bottom:743.190000px;}
.yd9{bottom:744.540000px;}
.y3d{bottom:747.690000px;}
.y14e{bottom:751.740000px;}
.y9c{bottom:752.190000px;}
.y4d{bottom:755.070000px;}
.y123{bottom:760.740000px;}
.y3c{bottom:765.330000px;}
.yd{bottom:765.600000px;}
.y14d{bottom:769.290000px;}
.y9b{bottom:769.740000px;}
.yfd{bottom:770.190000px;}
.yd8{bottom:771.900000px;}
.ya9{bottom:777.030000px;}
.y122{bottom:778.290000px;}
.y9a{bottom:787.290000px;}
.yc3{bottom:789.450000px;}
.y3b{bottom:792.240000px;}
.ya8{bottom:794.580000px;}
.y14c{bottom:795.930000px;}
.y79{bottom:799.620000px;}
.yc{bottom:801.600000px;}
.y121{bottom:804.930000px;}
.ya7{bottom:812.220000px;}
.y14b{bottom:813.480000px;}
.yc2{bottom:816.810000px;}
.yfc{bottom:818.520000px;}
.yd7{bottom:821.310000px;}
.y120{bottom:822.480000px;}
.y99{bottom:822.930000px;}
.yb{bottom:823.380000px;}
.y187{bottom:831.480000px;}
.yfb{bottom:836.070000px;}
.ya{bottom:837.600000px;}
.y14a{bottom:840.030000px;}
.y3a{bottom:840.480000px;}
.ya6{bottom:847.770000px;}
.y11f{bottom:849.030000px;}
.yfa{bottom:853.620000px;}
.y149{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.y9{bottom:859.380000px;}
.yc1{bottom:866.220000px;}
.y16c{bottom:866.670000px;}
.yf9{bottom:871.260000px;}
.y8{bottom:873.600000px;}
.y38{bottom:875.670000px;}
.ya5{bottom:879.990000px;}
.y148{bottom:884.220000px;}
.yf8{bottom:888.810000px;}
.y37{bottom:893.220000px;}
.y7{bottom:895.380000px;}
.y147{bottom:901.860000px;}
.yf7{bottom:906.450000px;}
.y36{bottom:910.860000px;}
.yc0{bottom:911.130000px;}
.yd6{bottom:915.630000px;}
.y18e{bottom:919.410000px;}
.yf6{bottom:924.000000px;}
.y6{bottom:927.690000px;}
.y146{bottom:928.410000px;}
.y11e{bottom:937.410000px;}
.yf5{bottom:941.550000px;}
.y145{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y11d{bottom:954.960000px;}
.ybf{bottom:960.540000px;}
.y178{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.yf4{bottom:968.460000px;}
.y144{bottom:972.600000px;}
.y18d{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.ybe{bottom:987.900000px;}
.y143{bottom:990.150000px;}
.y4a{bottom:998.790000px;}
.y32{bottom:999.150000px;}
.yd4{bottom:1005.450000px;}
.y177{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.ybc{bottom:1015.290000px;}
.y31{bottom:1016.820000px;}
.y18c{bottom:1025.370000px;}
.y11c{bottom:1025.820000px;}
.y30{bottom:1034.370000px;}
.y11b{bottom:1043.370000px;}
.y98{bottom:1051.920000px;}
.yd3{bottom:1054.890000px;}
.y11a{bottom:1060.920000px;}
.y49{bottom:1065.150000px;}
.y97{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y142{bottom:1078.560000px;}
.ybb{bottom:1082.250000px;}
.yf3{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y48{bottom:1091.700000px;}
.y141{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y77{bottom:1109.610000px;}
.y2c{bottom:1122.750000px;}
.yba{bottom:1127.160000px;}
.y47{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h1d{height:26.550000px;}
.h20{height:26.580000px;}
.h1a{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hc{height:41.661211px;}
.h22{height:44.100000px;}
.h14{height:44.190000px;}
.he{height:44.220000px;}
.h1e{height:48.600000px;}
.h1c{height:48.630000px;}
.h1b{height:48.690000px;}
.h21{height:48.720000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:60.960938px;}
.h23{height:61.793886px;}
.hd{height:62.585859px;}
.h1f{height:66.240000px;}
.hb{height:68.582109px;}
.h10{height:70.740000px;}
.h4{height:72.985430px;}
.h19{height:74.004654px;}
.h11{height:83.880000px;}
.h16{height:92.880000px;}
.h18{height:145.620000px;}
.h13{height:176.670000px;}
.h17{height:203.340000px;}
.hf{height:243.000000px;}
.h12{height:291.630000px;}
.h15{height:309.270000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:71.910000px;}
.w3{width:83.970000px;}
.w6{width:84.690000px;}
.w5{width:137.610000px;}
.w8{width:305.310000px;}
.w7{width:377.040000px;}
.w4{width:447.180000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:69.389987px;}
.xf{left:72.539987px;}
.x5{left:77.759987px;}
.xd{left:79.829987px;}
.x6{left:83.429987px;}
.xe{left:88.649987px;}
.x11{left:90.809987px;}
.x19{left:111.239987px;}
.xa{left:153.450000px;}
.x16{left:190.649987px;}
.x2{left:202.799987px;}
.x8{left:209.909987px;}
.x14{left:276.599987px;}
.x12{left:379.559987px;}
.x7{left:405.479987px;}
.x17{left:446.520000px;}
.xb{left:601.440000px;}
.x13{left:622.139987px;}
.x15{left:686.309987px;}
.x4{left:700.889987px;}
.xc{left:739.770000px;}
.x18{left:752.550000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.217067pt;}
.ls12{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.084800pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.074667pt;}
.ls1a{letter-spacing:-0.035840pt;}
.ls1c{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.046080pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls20{letter-spacing:0.087467pt;}
.ls17{letter-spacing:0.101867pt;}
.ls16{letter-spacing:0.102933pt;}
.ls22{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.475200pt;}
.ls1f{letter-spacing:1.363200pt;}
.lsf{letter-spacing:5.203200pt;}
.ls21{letter-spacing:11.923200pt;}
.ls24{letter-spacing:12.663680pt;}
.ls1b{letter-spacing:23.443200pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws2{word-spacing:-12.786133pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.860267pt;}
.wse{word-spacing:-11.859733pt;}
.ws12{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.802880pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.750080pt;}
.ws7{word-spacing:-11.613867pt;}
.wsa{word-spacing:-11.590933pt;}
.ws10{word-spacing:-9.465067pt;}
.wsf{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._f{margin-left:-3.255893pt;}
._8{margin-left:-2.301867pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.892185pt;}
._4{width:1.887649pt;}
._3{width:2.869381pt;}
._1{width:4.250144pt;}
._c{width:5.557867pt;}
._9{width:6.466133pt;}
._6{width:8.214080pt;}
._5{width:9.355520pt;}
._b{width:10.845014pt;}
._d{width:13.039360pt;}
._e{width:14.535680pt;}
._a{width:15.497600pt;}
._7{width:17.035520pt;}
._17{width:18.650560pt;}
._2b{width:20.007680pt;}
._2a{width:21.750080pt;}
._24{width:22.872320pt;}
._25{width:23.762987pt;}
._2c{width:26.239040pt;}
._11{width:27.134080pt;}
._1d{width:28.269760pt;}
._13{width:30.193600pt;}
._28{width:31.957120pt;}
._29{width:32.919040pt;}
._1e{width:34.401920pt;}
._1f{width:35.390720pt;}
._27{width:36.567147pt;}
._26{width:38.463360pt;}
._10{width:39.492160pt;}
._1c{width:44.301760pt;}
._19{width:48.737280pt;}
._1a{width:52.531520pt;}
._12{width:58.997760pt;}
._20{width:61.295680pt;}
._1b{width:70.647680pt;}
._18{width:77.381120pt;}
._22{width:80.213440pt;}
._14{width:87.214080pt;}
._23{width:113.453120pt;}
._15{width:117.193920pt;}
._16{width:172.183680pt;}
._21{width:310.818347pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:6.960000pt;}
.y4c{bottom:7.040000pt;}
.yd5{bottom:7.066667pt;}
.yb0{bottom:10.960000pt;}
.yb9{bottom:11.040000pt;}
.y60{bottom:14.960000pt;}
.y66{bottom:18.640000pt;}
.ybd{bottom:22.560000pt;}
.y78{bottom:22.640000pt;}
.y4b{bottom:22.666667pt;}
.y73{bottom:26.560000pt;}
.y5a{bottom:26.640000pt;}
.ycc{bottom:26.666667pt;}
.y5f{bottom:30.640000pt;}
.y65{bottom:38.240000pt;}
.y64{bottom:42.240000pt;}
.y5e{bottom:46.240000pt;}
.y59{bottom:46.320000pt;}
.y7d{bottom:50.240000pt;}
.yad{bottom:50.320000pt;}
.y63{bottom:57.920000pt;}
.y8e{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y72{bottom:65.840000pt;}
.y58{bottom:65.920000pt;}
.y2a{bottom:65.946667pt;}
.y8d{bottom:73.520000pt;}
.y8b{bottom:77.520000pt;}
.y57{bottom:85.520000pt;}
.y86{bottom:85.546667pt;}
.y1{bottom:90.346667pt;}
.y8c{bottom:93.200000pt;}
.y8a{bottom:97.200000pt;}
.yb8{bottom:97.226667pt;}
.y16b{bottom:102.826667pt;}
.y18b{bottom:103.226667pt;}
.y71{bottom:105.120000pt;}
.y56{bottom:105.200000pt;}
.y85{bottom:105.226667pt;}
.y46{bottom:107.146667pt;}
.y87{bottom:109.226667pt;}
.y89{bottom:112.800000pt;}
.y119{bottom:113.546667pt;}
.y74{bottom:114.826667pt;}
.yd2{bottom:118.346667pt;}
.y16a{bottom:118.506667pt;}
.y140{bottom:118.826667pt;}
.yf2{bottom:119.786667pt;}
.y55{bottom:120.800000pt;}
.y28{bottom:121.626667pt;}
.y70{bottom:124.720000pt;}
.y76{bottom:124.800000pt;}
.y84{bottom:124.826667pt;}
.y176{bottom:126.826667pt;}
.y82{bottom:128.826667pt;}
.y118{bottom:129.146667pt;}
.y13f{bottom:134.506667pt;}
.yf1{bottom:135.386667pt;}
.y27{bottom:137.226667pt;}
.y45{bottom:138.106667pt;}
.y75{bottom:140.400000pt;}
.y54{bottom:140.480000pt;}
.y169{bottom:142.106667pt;}
.y175{bottom:142.506667pt;}
.y96{bottom:142.586667pt;}
.y6f{bottom:144.400000pt;}
.y83{bottom:144.426667pt;}
.y5c{bottom:144.480000pt;}
.y117{bottom:144.746667pt;}
.y81{bottom:148.426667pt;}
.y51{bottom:148.480000pt;}
.y13e{bottom:150.106667pt;}
.y44{bottom:150.586667pt;}
.y26{bottom:152.826667pt;}
.y95{bottom:155.066667pt;}
.y168{bottom:157.786667pt;}
.y174{bottom:158.106667pt;}
.y53{bottom:160.080000pt;}
.yb7{bottom:160.826667pt;}
.y43{bottom:163.146667pt;}
.y6e{bottom:164.026667pt;}
.y5b{bottom:164.080000pt;}
.y80{bottom:164.106667pt;}
.y186{bottom:165.786667pt;}
.yf0{bottom:166.986667pt;}
.y94{bottom:167.546667pt;}
.y50{bottom:168.080000pt;}
.y116{bottom:168.426667pt;}
.y25{bottom:168.506667pt;}
.y13d{bottom:173.786667pt;}
.y52{bottom:179.680000pt;}
.y93{bottom:180.106667pt;}
.y167{bottom:181.386667pt;}
.y173{bottom:181.786667pt;}
.yd1{bottom:181.866667pt;}
.yef{bottom:182.666667pt;}
.y4f{bottom:183.680000pt;}
.y6d{bottom:183.706667pt;}
.y115{bottom:184.026667pt;}
.y24{bottom:184.106667pt;}
.y13c{bottom:189.386667pt;}
.y92{bottom:192.586667pt;}
.ya4{bottom:193.146667pt;}
.y166{bottom:196.986667pt;}
.y42{bottom:197.066667pt;}
.y172{bottom:197.386667pt;}
.yee{bottom:198.266667pt;}
.y4e{bottom:199.360000pt;}
.y23{bottom:199.786667pt;}
.y6c{bottom:203.306667pt;}
.yb6{bottom:204.746667pt;}
.y185{bottom:204.986667pt;}
.y91{bottom:205.066667pt;}
.y114{bottom:207.626667pt;}
.ya3{bottom:208.746667pt;}
.y6a{bottom:211.306667pt;}
.y13b{bottom:212.986667pt;}
.yed{bottom:213.946667pt;}
.y90{bottom:217.626667pt;}
.y165{bottom:220.666667pt;}
.y171{bottom:220.986667pt;}
.y6b{bottom:222.906667pt;}
.y7b{bottom:222.986667pt;}
.y113{bottom:223.306667pt;}
.ya2{bottom:224.426667pt;}
.yd0{bottom:225.786667pt;}
.y69{bottom:226.906667pt;}
.y13a{bottom:228.666667pt;}
.yec{bottom:229.546667pt;}
.y8f{bottom:230.106667pt;}
.y22{bottom:231.386667pt;}
.y164{bottom:236.266667pt;}
.y170{bottom:236.666667pt;}
.y88{bottom:240.906667pt;}
.y68{bottom:242.586667pt;}
.y184{bottom:244.266667pt;}
.yeb{bottom:245.146667pt;}
.y112{bottom:246.906667pt;}
.y21{bottom:246.986667pt;}
.ya1{bottom:248.026667pt;}
.yb5{bottom:248.666667pt;}
.y139{bottom:252.266667pt;}
.y163{bottom:259.946667pt;}
.yea{bottom:260.826667pt;}
.y7a{bottom:262.266667pt;}
.y111{bottom:262.586667pt;}
.y20{bottom:262.666667pt;}
.y138{bottom:267.946667pt;}
.ycf{bottom:269.786667pt;}
.y67{bottom:272.586667pt;}
.y162{bottom:275.546667pt;}
.y16f{bottom:275.946667pt;}
.y110{bottom:278.186667pt;}
.y1f{bottom:278.266667pt;}
.ya0{bottom:279.626667pt;}
.y183{bottom:283.546667pt;}
.yb4{bottom:288.586667pt;}
.y137{bottom:291.546667pt;}
.ye9{bottom:292.426667pt;}
.y1e{bottom:293.866667pt;}
.y161{bottom:299.146667pt;}
.y10f{bottom:301.786667pt;}
.y136{bottom:307.146667pt;}
.ye8{bottom:308.106667pt;}
.y9f{bottom:308.266667pt;}
.yb3{bottom:312.906667pt;}
.yce{bottom:313.706667pt;}
.y160{bottom:314.826667pt;}
.y16e{bottom:315.146667pt;}
.y10e{bottom:317.466667pt;}
.y1d{bottom:317.786667pt;}
.y182{bottom:322.826667pt;}
.ye7{bottom:323.706667pt;}
.y15f{bottom:330.426667pt;}
.y135{bottom:330.826667pt;}
.y181{bottom:338.426667pt;}
.ye6{bottom:339.306667pt;}
.y10d{bottom:341.066667pt;}
.y134{bottom:346.426667pt;}
.ycd{bottom:353.626667pt;}
.y15e{bottom:354.106667pt;}
.ye5{bottom:354.986667pt;}
.y10c{bottom:356.746667pt;}
.yb2{bottom:356.826667pt;}
.y1c{bottom:360.986667pt;}
.y180{bottom:362.106667pt;}
.y15d{bottom:369.706667pt;}
.y133{bottom:370.106667pt;}
.y7f{bottom:370.986667pt;}
.y17f{bottom:377.706667pt;}
.y10b{bottom:380.346667pt;}
.yb1{bottom:381.146667pt;}
.y132{bottom:385.706667pt;}
.ye4{bottom:386.586667pt;}
.y15c{bottom:393.306667pt;}
.ycb{bottom:393.546667pt;}
.y1b{bottom:393.946667pt;}
.y10a{bottom:395.946667pt;}
.y17e{bottom:401.306667pt;}
.ye3{bottom:402.266667pt;}
.y15b{bottom:408.986667pt;}
.y131{bottom:409.306667pt;}
.y1a{bottom:409.546667pt;}
.y17d{bottom:416.986667pt;}
.ye2{bottom:417.893333pt;}
.y109{bottom:419.653333pt;}
.y130{bottom:425.013333pt;}
.yaf{bottom:425.093333pt;}
.y19{bottom:425.253333pt;}
.y15a{bottom:432.613333pt;}
.ye1{bottom:433.493333pt;}
.y108{bottom:435.253333pt;}
.yca{bottom:437.493333pt;}
.y17c{bottom:440.613333pt;}
.y18{bottom:440.853333pt;}
.y159{bottom:448.293333pt;}
.y12f{bottom:448.613333pt;}
.ye0{bottom:449.173333pt;}
.y17b{bottom:456.293333pt;}
.y17{bottom:456.453333pt;}
.y107{bottom:458.933333pt;}
.y12e{bottom:464.293333pt;}
.ydf{bottom:464.773333pt;}
.yae{bottom:469.013333pt;}
.y158{bottom:471.893333pt;}
.y16{bottom:472.133333pt;}
.y106{bottom:474.533333pt;}
.y12d{bottom:479.893333pt;}
.yde{bottom:480.453333pt;}
.yc9{bottom:481.413333pt;}
.y157{bottom:487.493333pt;}
.y15{bottom:487.733333pt;}
.y18a{bottom:487.893333pt;}
.y105{bottom:490.133333pt;}
.y17a{bottom:495.493333pt;}
.y14{bottom:503.413333pt;}
.y12c{bottom:503.493333pt;}
.yc8{bottom:505.733333pt;}
.y104{bottom:505.813333pt;}
.ydd{bottom:509.733333pt;}
.y156{bottom:511.173333pt;}
.y13{bottom:519.013333pt;}
.y12b{bottom:519.173333pt;}
.y103{bottom:521.413333pt;}
.y155{bottom:526.773333pt;}
.yc7{bottom:530.053333pt;}
.y62{bottom:532.453333pt;}
.yac{bottom:532.533333pt;}
.y12{bottom:534.613333pt;}
.y179{bottom:534.773333pt;}
.y12a{bottom:542.773333pt;}
.y102{bottom:545.093333pt;}
.ydc{bottom:549.653333pt;}
.y11{bottom:550.293333pt;}
.y154{bottom:550.453333pt;}
.y7e{bottom:552.373333pt;}
.yc6{bottom:554.293333pt;}
.y129{bottom:558.453333pt;}
.y101{bottom:560.693333pt;}
.y153{bottom:566.053333pt;}
.y16d{bottom:574.053333pt;}
.y10{bottom:574.213333pt;}
.y128{bottom:582.053333pt;}
.y100{bottom:584.613333pt;}
.y152{bottom:589.653333pt;}
.ydb{bottom:593.573333pt;}
.yc5{bottom:594.213333pt;}
.y127{bottom:597.653333pt;}
.y41{bottom:602.133333pt;}
.y151{bottom:605.333333pt;}
.y5d{bottom:607.653333pt;}
.y126{bottom:613.333333pt;}
.yab{bottom:615.733333pt;}
.yf{bottom:617.093333pt;}
.y40{bottom:617.733333pt;}
.yda{bottom:617.893333pt;}
.yc4{bottom:618.533333pt;}
.y189{bottom:621.333333pt;}
.yff{bottom:627.493333pt;}
.y7c{bottom:627.573333pt;}
.y150{bottom:628.933333pt;}
.y3f{bottom:633.413333pt;}
.y125{bottom:636.933333pt;}
.y9e{bottom:637.333333pt;}
.y14f{bottom:644.613333pt;}
.ye{bottom:648.693333pt;}
.y3e{bottom:649.013333pt;}
.yfe{bottom:651.413333pt;}
.y124{bottom:652.613333pt;}
.y9d{bottom:652.933333pt;}
.yaa{bottom:659.013333pt;}
.y188{bottom:660.613333pt;}
.yd9{bottom:661.813333pt;}
.y3d{bottom:664.613333pt;}
.y14e{bottom:668.213333pt;}
.y9c{bottom:668.613333pt;}
.y4d{bottom:671.173333pt;}
.y123{bottom:676.213333pt;}
.y3c{bottom:680.293333pt;}
.yd{bottom:680.533333pt;}
.y14d{bottom:683.813333pt;}
.y9b{bottom:684.213333pt;}
.yfd{bottom:684.613333pt;}
.yd8{bottom:686.133333pt;}
.ya9{bottom:690.693333pt;}
.y122{bottom:691.813333pt;}
.y9a{bottom:699.813333pt;}
.yc3{bottom:701.733333pt;}
.y3b{bottom:704.213333pt;}
.ya8{bottom:706.293333pt;}
.y14c{bottom:707.493333pt;}
.y79{bottom:710.773333pt;}
.yc{bottom:712.533333pt;}
.y121{bottom:715.493333pt;}
.ya7{bottom:721.973333pt;}
.y14b{bottom:723.093333pt;}
.yc2{bottom:726.053333pt;}
.yfc{bottom:727.573333pt;}
.yd7{bottom:730.053333pt;}
.y120{bottom:731.093333pt;}
.y99{bottom:731.493333pt;}
.yb{bottom:731.893333pt;}
.y187{bottom:739.093333pt;}
.yfb{bottom:743.173333pt;}
.ya{bottom:744.533333pt;}
.y14a{bottom:746.693333pt;}
.y3a{bottom:747.093333pt;}
.ya6{bottom:753.573333pt;}
.y11f{bottom:754.693333pt;}
.yfa{bottom:758.773333pt;}
.y149{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.y9{bottom:763.893333pt;}
.yc1{bottom:769.973333pt;}
.y16c{bottom:770.373333pt;}
.yf9{bottom:774.453333pt;}
.y8{bottom:776.533333pt;}
.y38{bottom:778.373333pt;}
.ya5{bottom:782.213333pt;}
.y148{bottom:785.973333pt;}
.yf8{bottom:790.053333pt;}
.y37{bottom:793.973333pt;}
.y7{bottom:795.893333pt;}
.y147{bottom:801.653333pt;}
.yf7{bottom:805.733333pt;}
.y36{bottom:809.653333pt;}
.yc0{bottom:809.893333pt;}
.yd6{bottom:813.893333pt;}
.y18e{bottom:817.253333pt;}
.yf6{bottom:821.333333pt;}
.y6{bottom:824.613333pt;}
.y146{bottom:825.253333pt;}
.y11e{bottom:833.253333pt;}
.yf5{bottom:836.933333pt;}
.y145{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y11d{bottom:848.853333pt;}
.ybf{bottom:853.813333pt;}
.y178{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.yf4{bottom:860.853333pt;}
.y144{bottom:864.533333pt;}
.y18d{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.ybe{bottom:878.133333pt;}
.y143{bottom:880.133333pt;}
.y4a{bottom:887.813333pt;}
.y32{bottom:888.133333pt;}
.yd4{bottom:893.733333pt;}
.y177{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.ybc{bottom:902.480000pt;}
.y31{bottom:903.840000pt;}
.y18c{bottom:911.440000pt;}
.y11c{bottom:911.840000pt;}
.y30{bottom:919.440000pt;}
.y11b{bottom:927.440000pt;}
.y98{bottom:935.040000pt;}
.yd3{bottom:937.680000pt;}
.y11a{bottom:943.040000pt;}
.y49{bottom:946.800000pt;}
.y97{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y142{bottom:958.720000pt;}
.ybb{bottom:962.000000pt;}
.yf3{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y48{bottom:970.400000pt;}
.y141{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y77{bottom:986.320000pt;}
.y2c{bottom:998.000000pt;}
.yba{bottom:1001.920000pt;}
.y47{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h1d{height:23.600000pt;}
.h20{height:23.626667pt;}
.h1a{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hc{height:37.032187pt;}
.h22{height:39.200000pt;}
.h14{height:39.280000pt;}
.he{height:39.306667pt;}
.h1e{height:43.200000pt;}
.h1c{height:43.226667pt;}
.h1b{height:43.280000pt;}
.h21{height:43.306667pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:54.187500pt;}
.h23{height:54.927899pt;}
.hd{height:55.631875pt;}
.h1f{height:58.880000pt;}
.hb{height:60.961875pt;}
.h10{height:62.880000pt;}
.h4{height:64.875937pt;}
.h19{height:65.781915pt;}
.h11{height:74.560000pt;}
.h16{height:82.560000pt;}
.h18{height:129.440000pt;}
.h13{height:157.040000pt;}
.h17{height:180.746667pt;}
.hf{height:216.000000pt;}
.h12{height:259.226667pt;}
.h15{height:274.906667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:63.920000pt;}
.w3{width:74.640000pt;}
.w6{width:75.280000pt;}
.w5{width:122.320000pt;}
.w8{width:271.386667pt;}
.w7{width:335.146667pt;}
.w4{width:397.493333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:61.679988pt;}
.xf{left:64.479988pt;}
.x5{left:69.119988pt;}
.xd{left:70.959988pt;}
.x6{left:74.159988pt;}
.xe{left:78.799988pt;}
.x11{left:80.719988pt;}
.x19{left:98.879988pt;}
.xa{left:136.400000pt;}
.x16{left:169.466655pt;}
.x2{left:180.266655pt;}
.x8{left:186.586655pt;}
.x14{left:245.866655pt;}
.x12{left:337.386655pt;}
.x7{left:360.426655pt;}
.x17{left:396.906667pt;}
.xb{left:534.613333pt;}
.x13{left:553.013322pt;}
.x15{left:610.053322pt;}
.x4{left:623.013322pt;}
.xc{left:657.573333pt;}
.x18{left:668.933333pt;}
.x3{left:704.053322pt;}
}




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