
    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_352f7a809527ac191eb90b9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_64b191d6741a0615edb164b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a619d97d7cb29087f14e8941.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_8cfb7166c04e7dfc0f6a2cfb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_0c3d235f3c843fa0e8f76292.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_bd5e01da7893d081b1d50c2c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls31{letter-spacing:-0.660000px;}
.ls24{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.414000px;}
.ls28{letter-spacing:-0.326400px;}
.ls8{letter-spacing:-0.292200px;}
.ls9{letter-spacing:-0.272400px;}
.ls12{letter-spacing:-0.214800px;}
.ls1d{letter-spacing:-0.208800px;}
.ls5{letter-spacing:-0.132600px;}
.lsb{letter-spacing:-0.115800px;}
.ls10{letter-spacing:-0.067200px;}
.ls23{letter-spacing:-0.064800px;}
.ls1e{letter-spacing:-0.058320px;}
.ls2a{letter-spacing:-0.041040px;}
.ls27{letter-spacing:-0.038160px;}
.ls3{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.025200px;}
.ls4{letter-spacing:0.038880px;}
.ls13{letter-spacing:0.060600px;}
.ls1c{letter-spacing:0.067200px;}
.ls30{letter-spacing:0.121680px;}
.ls11{letter-spacing:0.140400px;}
.ls7{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.174000px;}
.ls2d{letter-spacing:0.179280px;}
.ls29{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.314400px;}
.lse{letter-spacing:0.433440px;}
.ls2c{letter-spacing:0.479520px;}
.ls2{letter-spacing:0.617760px;}
.ls2e{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.894240px;}
.ls2f{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.614240px;}
.ls21{letter-spacing:2.106720px;}
.ls22{letter-spacing:4.494240px;}
.ls15{letter-spacing:5.706720px;}
.ls2b{letter-spacing:12.330720px;}
.ls1b{letter-spacing:15.786720px;}
.lsd{letter-spacing:17.226720px;}
.ls25{letter-spacing:17.946720px;}
.lsf{letter-spacing:20.106720px;}
.lsc{letter-spacing:21.546720px;}
.ls19{letter-spacing:22.266720px;}
.ls1{letter-spacing:38.106720px;}
.ls26{letter-spacing:42.570720px;}
.ls20{letter-spacing:72.894240px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws13{word-spacing:-14.165760px;}
.wsc{word-spacing:-13.820160px;}
.ws14{word-spacing:-13.685040px;}
.wsd{word-spacing:-13.572960px;}
.ws10{word-spacing:-13.530960px;}
.ws8{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.467600px;}
.ws12{word-spacing:-13.464720px;}
.wsf{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.389960px;}
.wse{word-spacing:-13.296960px;}
.wsb{word-spacing:-13.290960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-9.145560px;}
.ws6{word-spacing:-8.786880px;}
.ws7{word-spacing:-8.514480px;}
.wsa{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._22{margin-left:-214.738560px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._27{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-159.758400px;}
._23{margin-left:-154.885440px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-145.290240px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._24{margin-left:-110.367360px;}
._25{margin-left:-109.224000px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._1a{margin-left:-31.530240px;}
._3d{margin-left:-13.733280px;}
._29{margin-left:-4.827600px;}
._28{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.532160px;}
._3c{width:2.569680px;}
._2b{width:3.570720px;}
._2c{width:4.735440px;}
._35{width:5.737440px;}
._2d{width:7.470000px;}
._36{width:8.490960px;}
._2e{width:9.501840px;}
._38{width:10.577520px;}
._33{width:12.310560px;}
._34{width:14.971200px;}
._30{width:16.135200px;}
._2f{width:17.151120px;}
._3a{width:18.236880px;}
._3b{width:19.840320px;}
._37{width:20.975760px;}
._32{width:22.469760px;}
._31{width:23.784480px;}
._39{width:24.860160px;}
._44{width:32.574240px;}
._45{width:37.589040px;}
._3f{width:39.023280px;}
._47{width:45.080640px;}
._46{width:46.134720px;}
._40{width:67.964400px;}
._41{width:72.894240px;}
._42{width:139.908720px;}
._43{width:152.865840px;}
._3e{width:172.945440px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y7e{bottom:-7.380000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:6.300000px;}
.y88{bottom:6.660000px;}
.y80{bottom:7.200000px;}
.y6f{bottom:7.380000px;}
.yc5{bottom:9.180000px;}
.y84{bottom:9.360000px;}
.y7d{bottom:13.500000px;}
.y67{bottom:14.760000px;}
.y86{bottom:15.840000px;}
.y73{bottom:20.880000px;}
.y8a{bottom:27.720000px;}
.y76{bottom:28.290000px;}
.y71{bottom:29.880000px;}
.y7c{bottom:33.300000px;}
.y6b{bottom:42.480000px;}
.y6e{bottom:43.380000px;}
.y83{bottom:45.540000px;}
.y68{bottom:49.860000px;}
.y7b{bottom:52.950000px;}
.y6{bottom:59.760000px;}
.y6a{bottom:63.180000px;}
.y6d{bottom:64.260000px;}
.y75{bottom:64.470000px;}
.y7a{bottom:72.750000px;}
.y65{bottom:91.296000px;}
.y79{bottom:92.550000px;}
.yf2{bottom:98.496000px;}
.y10f{bottom:101.016000px;}
.yc3{bottom:101.736000px;}
.y64{bottom:112.356000px;}
.y30{bottom:113.256000px;}
.y78{bottom:113.610000px;}
.yf1{bottom:119.556000px;}
.yc2{bottom:122.796000px;}
.y10e{bottom:129.096000px;}
.y63{bottom:133.416000px;}
.y2f{bottom:134.316000px;}
.y98{bottom:136.116000px;}
.yf0{bottom:140.616000px;}
.yc1{bottom:143.856000px;}
.y10d{bottom:150.150000px;}
.y62{bottom:154.470000px;}
.y2e{bottom:155.370000px;}
.y97{bottom:157.170000px;}
.yef{bottom:161.670000px;}
.yc0{bottom:164.910000px;}
.y10c{bottom:171.210000px;}
.y61{bottom:175.530000px;}
.y2d{bottom:176.430000px;}
.y96{bottom:178.230000px;}
.yee{bottom:182.730000px;}
.ybf{bottom:185.970000px;}
.y10b{bottom:192.270000px;}
.y60{bottom:196.590000px;}
.y2c{bottom:197.490000px;}
.y95{bottom:199.290000px;}
.yed{bottom:203.790000px;}
.ybe{bottom:207.030000px;}
.y10a{bottom:213.330000px;}
.y5f{bottom:217.650000px;}
.y2b{bottom:218.550000px;}
.y94{bottom:220.350000px;}
.yec{bottom:224.850000px;}
.ybd{bottom:228.090000px;}
.y109{bottom:234.390000px;}
.y5e{bottom:238.710000px;}
.y2a{bottom:239.610000px;}
.y93{bottom:241.410000px;}
.yeb{bottom:245.910000px;}
.ybc{bottom:249.150000px;}
.y108{bottom:255.450000px;}
.y5d{bottom:259.770000px;}
.y29{bottom:260.670000px;}
.y92{bottom:262.470000px;}
.yea{bottom:266.970000px;}
.ybb{bottom:270.210000px;}
.y107{bottom:276.510000px;}
.y91{bottom:279.390000px;}
.y5c{bottom:280.830000px;}
.y28{bottom:281.730000px;}
.yba{bottom:285.330000px;}
.ye9{bottom:288.030000px;}
.y106{bottom:297.570000px;}
.y5b{bottom:301.890000px;}
.y27{bottom:302.790000px;}
.yb9{bottom:307.830000px;}
.ye8{bottom:309.090000px;}
.y105{bottom:318.630000px;}
.y5a{bottom:322.950000px;}
.y26{bottom:323.850000px;}
.ye7{bottom:330.195000px;}
.yb8{bottom:330.375000px;}
.y104{bottom:339.735000px;}
.y59{bottom:344.055000px;}
.y25{bottom:344.955000px;}
.ye6{bottom:351.255000px;}
.yb7{bottom:352.875000px;}
.y103{bottom:360.795000px;}
.y85{bottom:364.575000px;}
.y58{bottom:365.115000px;}
.y24{bottom:366.015000px;}
.ye5{bottom:372.315000px;}
.yb6{bottom:375.375000px;}
.y82{bottom:375.735000px;}
.y102{bottom:381.855000px;}
.y57{bottom:386.175000px;}
.y23{bottom:387.075000px;}
.ye4{bottom:393.375000px;}
.yb5{bottom:397.875000px;}
.y101{bottom:402.915000px;}
.y56{bottom:407.235000px;}
.y22{bottom:408.135000px;}
.ye3{bottom:414.435000px;}
.yb4{bottom:420.375000px;}
.y100{bottom:423.975000px;}
.y55{bottom:428.295000px;}
.y21{bottom:429.195000px;}
.ye2{bottom:435.495000px;}
.yb3{bottom:442.875000px;}
.yff{bottom:445.035000px;}
.y54{bottom:449.355000px;}
.y20{bottom:450.255000px;}
.y81{bottom:450.975000px;}
.ye1{bottom:456.555000px;}
.y72{bottom:460.515000px;}
.yb2{bottom:465.375000px;}
.yfe{bottom:466.095000px;}
.y7f{bottom:468.975000px;}
.y53{bottom:470.415000px;}
.y1f{bottom:471.315000px;}
.ye0{bottom:477.615000px;}
.yfd{bottom:487.155000px;}
.yb1{bottom:487.875000px;}
.y52{bottom:491.475000px;}
.y1e{bottom:492.375000px;}
.ydf{bottom:498.675000px;}
.yfc{bottom:508.215000px;}
.yb0{bottom:510.375000px;}
.y51{bottom:512.535000px;}
.y1d{bottom:513.435000px;}
.yde{bottom:519.735000px;}
.yfb{bottom:529.275000px;}
.yaf{bottom:532.875000px;}
.y50{bottom:533.595000px;}
.y1c{bottom:534.495000px;}
.ydd{bottom:540.795000px;}
.yfa{bottom:550.335000px;}
.y4f{bottom:554.655000px;}
.yae{bottom:555.375000px;}
.y1b{bottom:555.555000px;}
.y77{bottom:559.335000px;}
.ydc{bottom:561.855000px;}
.y70{bottom:562.215000px;}
.yf9{bottom:571.395000px;}
.y4e{bottom:575.715000px;}
.yad{bottom:577.875000px;}
.y1a{bottom:578.955000px;}
.ydb{bottom:582.915000px;}
.y74{bottom:588.675000px;}
.yf8{bottom:592.455000px;}
.y4d{bottom:596.805000px;}
.yac{bottom:600.405000px;}
.yda{bottom:604.005000px;}
.y19{bottom:608.865000px;}
.y90{bottom:611.745000px;}
.yf7{bottom:613.545000px;}
.y4c{bottom:617.865000px;}
.yab{bottom:622.905000px;}
.yd9{bottom:625.065000px;}
.y18{bottom:629.925000px;}
.y8f{bottom:632.805000px;}
.yf6{bottom:634.605000px;}
.y4b{bottom:638.925000px;}
.yd8{bottom:640.185000px;}
.yaa{bottom:645.405000px;}
.y8e{bottom:647.925000px;}
.y17{bottom:650.985000px;}
.yf5{bottom:655.665000px;}
.y4a{bottom:659.805000px;}
.yd7{bottom:666.285000px;}
.ya9{bottom:667.905000px;}
.y8d{bottom:669.705000px;}
.y16{bottom:672.045000px;}
.yf4{bottom:676.725000px;}
.y49{bottom:680.865000px;}
.y66{bottom:689.685000px;}
.ya8{bottom:690.405000px;}
.y8c{bottom:691.665000px;}
.yd6{bottom:692.385000px;}
.y15{bottom:693.105000px;}
.yf3{bottom:693.825000px;}
.y48{bottom:701.925000px;}
.y69{bottom:709.485000px;}
.ya7{bottom:712.905000px;}
.y14{bottom:714.165000px;}
.yd5{bottom:718.485000px;}
.y47{bottom:722.985000px;}
.y8b{bottom:734.505000px;}
.y13{bottom:735.225000px;}
.ya6{bottom:735.405000px;}
.y46{bottom:744.045000px;}
.yd4{bottom:744.585000px;}
.y12{bottom:756.285000px;}
.ya5{bottom:757.905000px;}
.y45{bottom:765.105000px;}
.yd3{bottom:770.685000px;}
.y11{bottom:777.345000px;}
.ya4{bottom:780.405000px;}
.y44{bottom:786.165000px;}
.yd2{bottom:796.785000px;}
.y10{bottom:798.405000px;}
.ya3{bottom:802.905000px;}
.y43{bottom:807.225000px;}
.yf{bottom:819.465000px;}
.y89{bottom:820.185000px;}
.yd1{bottom:822.885000px;}
.ya2{bottom:825.405000px;}
.y42{bottom:828.285000px;}
.ye{bottom:840.525000px;}
.ya1{bottom:847.905000px;}
.yd0{bottom:848.985000px;}
.y41{bottom:849.345000px;}
.y87{bottom:863.070000px;}
.yd{bottom:863.790000px;}
.y40{bottom:870.450000px;}
.ycf{bottom:875.130000px;}
.yc{bottom:890.070000px;}
.y3f{bottom:891.510000px;}
.ya0{bottom:892.950000px;}
.yce{bottom:901.230000px;}
.yb{bottom:911.130000px;}
.y3e{bottom:912.570000px;}
.y9f{bottom:915.450000px;}
.ycd{bottom:927.330000px;}
.ya{bottom:927.870000px;}
.y3d{bottom:933.630000px;}
.y9e{bottom:937.950000px;}
.y9{bottom:950.190000px;}
.ycc{bottom:953.430000px;}
.y3c{bottom:954.690000px;}
.y9d{bottom:960.450000px;}
.ycb{bottom:974.490000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:975.750000px;}
.y9c{bottom:982.950000px;}
.y3a{bottom:996.810000px;}
.yca{bottom:1000.590000px;}
.y9b{bottom:1005.450000px;}
.y7{bottom:1009.050000px;}
.y39{bottom:1017.870000px;}
.yc9{bottom:1026.690000px;}
.y9a{bottom:1027.950000px;}
.y38{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.y99{bottom:1051.170000px;}
.yc8{bottom:1052.790000px;}
.y37{bottom:1059.990000px;}
.yc7{bottom:1078.890000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1102.110000px;}
.yc6{bottom:1104.990000px;}
.y3{bottom:1113.630000px;}
.y34{bottom:1123.170000px;}
.yc4{bottom:1131.840000px;}
.y33{bottom:1144.260000px;}
.y2{bottom:1145.700000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.h14{height:21.060000px;}
.h18{height:22.500000px;}
.h19{height:22.536000px;}
.h1a{height:26.100000px;}
.h1b{height:26.136000px;}
.h7{height:38.671172px;}
.h16{height:42.120000px;}
.h15{height:42.156000px;}
.h1c{height:45.578672px;}
.hb{height:45.992813px;}
.h17{height:52.260820px;}
.h8{height:59.439023px;}
.h12{height:59.760000px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h9{height:73.722656px;}
.hc{height:77.580000px;}
.hd{height:78.660000px;}
.h10{height:78.696000px;}
.h13{height:84.060000px;}
.h2{height:86.255508px;}
.hf{height:96.480000px;}
.h4{height:98.051133px;}
.ha{height:112.320000px;}
.he{height:119.376000px;}
.h11{height:128.016000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:18.540000px;}
.w7{width:19.620000px;}
.w3{width:21.600000px;}
.wf{width:103.140000px;}
.wa{width:104.976000px;}
.w11{width:115.920000px;}
.w12{width:133.956000px;}
.we{width:138.276000px;}
.w5{width:202.890000px;}
.w4{width:203.070000px;}
.wb{width:265.530000px;}
.w9{width:269.715000px;}
.w8{width:348.555000px;}
.wc{width:381.135000px;}
.w10{width:442.875000px;}
.wd{width:445.755000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x37{left:-162.030013px;}
.x25{left:-13.860000px;}
.x0{left:0.000000px;}
.x1b{left:5.040000px;}
.x27{left:7.740000px;}
.x1a{left:10.800000px;}
.x16{left:14.574000px;}
.xb{left:15.660000px;}
.x12{left:18.720000px;}
.xe{left:27.000000px;}
.x33{left:29.700000px;}
.x8{left:32.399987px;}
.xc{left:38.514000px;}
.x23{left:39.780000px;}
.x21{left:42.510000px;}
.x18{left:48.960000px;}
.x6{left:53.999987px;}
.x20{left:57.810000px;}
.xf{left:60.300000px;}
.x24{left:69.840000px;}
.x1e{left:71.820000px;}
.x13{left:78.150000px;}
.x10{left:79.785000px;}
.x14{left:83.550000px;}
.x28{left:86.399987px;}
.x2a{left:89.099987px;}
.x7{left:96.515987px;}
.x30{left:100.296000px;}
.x2d{left:102.996000px;}
.x22{left:117.030000px;}
.x9{left:128.555987px;}
.xa{left:132.336000px;}
.x15{left:135.576000px;}
.x5{left:156.449987px;}
.x26{left:175.530000px;}
.x1c{left:184.890000px;}
.x1d{left:209.550000px;}
.xd{left:210.630000px;}
.x17{left:211.890000px;}
.x35{left:268.949987px;}
.x3{left:286.634987px;}
.x2b{left:346.934987px;}
.x2{left:350.534987px;}
.x36{left:388.334987px;}
.x4{left:419.114987px;}
.x2c{left:435.674987px;}
.x11{left:439.095000px;}
.x19{left:441.255000px;}
.x1f{left:447.015000px;}
.x1{left:479.264987px;}
.x31{left:543.165000px;}
.x2e{left:548.745000px;}
.x32{left:659.085000px;}
.x2f{left:687.030000px;}
.x29{left:706.469987px;}
.x34{left:785.849987px;}
.x38{left:838.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls31{letter-spacing:-0.586667pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.368000pt;}
.ls28{letter-spacing:-0.290133pt;}
.ls8{letter-spacing:-0.259733pt;}
.ls9{letter-spacing:-0.242133pt;}
.ls12{letter-spacing:-0.190933pt;}
.ls1d{letter-spacing:-0.185600pt;}
.ls5{letter-spacing:-0.117867pt;}
.lsb{letter-spacing:-0.102933pt;}
.ls10{letter-spacing:-0.059733pt;}
.ls23{letter-spacing:-0.057600pt;}
.ls1e{letter-spacing:-0.051840pt;}
.ls2a{letter-spacing:-0.036480pt;}
.ls27{letter-spacing:-0.033920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.022400pt;}
.ls4{letter-spacing:0.034560pt;}
.ls13{letter-spacing:0.053867pt;}
.ls1c{letter-spacing:0.059733pt;}
.ls30{letter-spacing:0.108160pt;}
.ls11{letter-spacing:0.124800pt;}
.ls7{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.154667pt;}
.ls2d{letter-spacing:0.159360pt;}
.ls29{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.279467pt;}
.lse{letter-spacing:0.385280pt;}
.ls2c{letter-spacing:0.426240pt;}
.ls2{letter-spacing:0.549120pt;}
.ls2e{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.794880pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.434880pt;}
.ls21{letter-spacing:1.872640pt;}
.ls22{letter-spacing:3.994880pt;}
.ls15{letter-spacing:5.072640pt;}
.ls2b{letter-spacing:10.960640pt;}
.ls1b{letter-spacing:14.032640pt;}
.lsd{letter-spacing:15.312640pt;}
.ls25{letter-spacing:15.952640pt;}
.lsf{letter-spacing:17.872640pt;}
.lsc{letter-spacing:19.152640pt;}
.ls19{letter-spacing:19.792640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls26{letter-spacing:37.840640pt;}
.ls20{letter-spacing:64.794880pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws13{word-spacing:-12.591787pt;}
.wsc{word-spacing:-12.284587pt;}
.ws14{word-spacing:-12.164480pt;}
.wsd{word-spacing:-12.064853pt;}
.ws10{word-spacing:-12.027520pt;}
.ws8{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.971200pt;}
.ws12{word-spacing:-11.968640pt;}
.wsf{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.819520pt;}
.wsb{word-spacing:-11.814187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-8.129387pt;}
.ws6{word-spacing:-7.810560pt;}
.ws7{word-spacing:-7.568427pt;}
.wsa{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._22{margin-left:-190.878720pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._27{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.007467pt;}
._23{margin-left:-137.675947pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-129.146880pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._24{margin-left:-98.104320pt;}
._25{margin-left:-97.088000pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._1a{margin-left:-28.026880pt;}
._3d{margin-left:-12.207360pt;}
._29{margin-left:-4.291200pt;}
._28{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:1.361920pt;}
._3c{width:2.284160pt;}
._2b{width:3.173973pt;}
._2c{width:4.209280pt;}
._35{width:5.099947pt;}
._2d{width:6.640000pt;}
._36{width:7.547520pt;}
._2e{width:8.446080pt;}
._38{width:9.402240pt;}
._33{width:10.942720pt;}
._34{width:13.307733pt;}
._30{width:14.342400pt;}
._2f{width:15.245440pt;}
._3a{width:16.210560pt;}
._3b{width:17.635840pt;}
._37{width:18.645120pt;}
._32{width:19.973120pt;}
._31{width:21.141760pt;}
._39{width:22.097920pt;}
._44{width:28.954880pt;}
._45{width:33.412480pt;}
._3f{width:34.687360pt;}
._47{width:40.071680pt;}
._46{width:41.008640pt;}
._40{width:60.412800pt;}
._41{width:64.794880pt;}
._42{width:124.363307pt;}
._43{width:135.880747pt;}
._3e{width:153.729280pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y7e{bottom:-6.560000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:5.600000pt;}
.y88{bottom:5.920000pt;}
.y80{bottom:6.400000pt;}
.y6f{bottom:6.560000pt;}
.yc5{bottom:8.160000pt;}
.y84{bottom:8.320000pt;}
.y7d{bottom:12.000000pt;}
.y67{bottom:13.120000pt;}
.y86{bottom:14.080000pt;}
.y73{bottom:18.560000pt;}
.y8a{bottom:24.640000pt;}
.y76{bottom:25.146667pt;}
.y71{bottom:26.560000pt;}
.y7c{bottom:29.600000pt;}
.y6b{bottom:37.760000pt;}
.y6e{bottom:38.560000pt;}
.y83{bottom:40.480000pt;}
.y68{bottom:44.320000pt;}
.y7b{bottom:47.066667pt;}
.y6{bottom:53.120000pt;}
.y6a{bottom:56.160000pt;}
.y6d{bottom:57.120000pt;}
.y75{bottom:57.306667pt;}
.y7a{bottom:64.666667pt;}
.y65{bottom:81.152000pt;}
.y79{bottom:82.266667pt;}
.yf2{bottom:87.552000pt;}
.y10f{bottom:89.792000pt;}
.yc3{bottom:90.432000pt;}
.y64{bottom:99.872000pt;}
.y30{bottom:100.672000pt;}
.y78{bottom:100.986667pt;}
.yf1{bottom:106.272000pt;}
.yc2{bottom:109.152000pt;}
.y10e{bottom:114.752000pt;}
.y63{bottom:118.592000pt;}
.y2f{bottom:119.392000pt;}
.y98{bottom:120.992000pt;}
.yf0{bottom:124.992000pt;}
.yc1{bottom:127.872000pt;}
.y10d{bottom:133.466667pt;}
.y62{bottom:137.306667pt;}
.y2e{bottom:138.106667pt;}
.y97{bottom:139.706667pt;}
.yef{bottom:143.706667pt;}
.yc0{bottom:146.586667pt;}
.y10c{bottom:152.186667pt;}
.y61{bottom:156.026667pt;}
.y2d{bottom:156.826667pt;}
.y96{bottom:158.426667pt;}
.yee{bottom:162.426667pt;}
.ybf{bottom:165.306667pt;}
.y10b{bottom:170.906667pt;}
.y60{bottom:174.746667pt;}
.y2c{bottom:175.546667pt;}
.y95{bottom:177.146667pt;}
.yed{bottom:181.146667pt;}
.ybe{bottom:184.026667pt;}
.y10a{bottom:189.626667pt;}
.y5f{bottom:193.466667pt;}
.y2b{bottom:194.266667pt;}
.y94{bottom:195.866667pt;}
.yec{bottom:199.866667pt;}
.ybd{bottom:202.746667pt;}
.y109{bottom:208.346667pt;}
.y5e{bottom:212.186667pt;}
.y2a{bottom:212.986667pt;}
.y93{bottom:214.586667pt;}
.yeb{bottom:218.586667pt;}
.ybc{bottom:221.466667pt;}
.y108{bottom:227.066667pt;}
.y5d{bottom:230.906667pt;}
.y29{bottom:231.706667pt;}
.y92{bottom:233.306667pt;}
.yea{bottom:237.306667pt;}
.ybb{bottom:240.186667pt;}
.y107{bottom:245.786667pt;}
.y91{bottom:248.346667pt;}
.y5c{bottom:249.626667pt;}
.y28{bottom:250.426667pt;}
.yba{bottom:253.626667pt;}
.ye9{bottom:256.026667pt;}
.y106{bottom:264.506667pt;}
.y5b{bottom:268.346667pt;}
.y27{bottom:269.146667pt;}
.yb9{bottom:273.626667pt;}
.ye8{bottom:274.746667pt;}
.y105{bottom:283.226667pt;}
.y5a{bottom:287.066667pt;}
.y26{bottom:287.866667pt;}
.ye7{bottom:293.506667pt;}
.yb8{bottom:293.666667pt;}
.y104{bottom:301.986667pt;}
.y59{bottom:305.826667pt;}
.y25{bottom:306.626667pt;}
.ye6{bottom:312.226667pt;}
.yb7{bottom:313.666667pt;}
.y103{bottom:320.706667pt;}
.y85{bottom:324.066667pt;}
.y58{bottom:324.546667pt;}
.y24{bottom:325.346667pt;}
.ye5{bottom:330.946667pt;}
.yb6{bottom:333.666667pt;}
.y82{bottom:333.986667pt;}
.y102{bottom:339.426667pt;}
.y57{bottom:343.266667pt;}
.y23{bottom:344.066667pt;}
.ye4{bottom:349.666667pt;}
.yb5{bottom:353.666667pt;}
.y101{bottom:358.146667pt;}
.y56{bottom:361.986667pt;}
.y22{bottom:362.786667pt;}
.ye3{bottom:368.386667pt;}
.yb4{bottom:373.666667pt;}
.y100{bottom:376.866667pt;}
.y55{bottom:380.706667pt;}
.y21{bottom:381.506667pt;}
.ye2{bottom:387.106667pt;}
.yb3{bottom:393.666667pt;}
.yff{bottom:395.586667pt;}
.y54{bottom:399.426667pt;}
.y20{bottom:400.226667pt;}
.y81{bottom:400.866667pt;}
.ye1{bottom:405.826667pt;}
.y72{bottom:409.346667pt;}
.yb2{bottom:413.666667pt;}
.yfe{bottom:414.306667pt;}
.y7f{bottom:416.866667pt;}
.y53{bottom:418.146667pt;}
.y1f{bottom:418.946667pt;}
.ye0{bottom:424.546667pt;}
.yfd{bottom:433.026667pt;}
.yb1{bottom:433.666667pt;}
.y52{bottom:436.866667pt;}
.y1e{bottom:437.666667pt;}
.ydf{bottom:443.266667pt;}
.yfc{bottom:451.746667pt;}
.yb0{bottom:453.666667pt;}
.y51{bottom:455.586667pt;}
.y1d{bottom:456.386667pt;}
.yde{bottom:461.986667pt;}
.yfb{bottom:470.466667pt;}
.yaf{bottom:473.666667pt;}
.y50{bottom:474.306667pt;}
.y1c{bottom:475.106667pt;}
.ydd{bottom:480.706667pt;}
.yfa{bottom:489.186667pt;}
.y4f{bottom:493.026667pt;}
.yae{bottom:493.666667pt;}
.y1b{bottom:493.826667pt;}
.y77{bottom:497.186667pt;}
.ydc{bottom:499.426667pt;}
.y70{bottom:499.746667pt;}
.yf9{bottom:507.906667pt;}
.y4e{bottom:511.746667pt;}
.yad{bottom:513.666667pt;}
.y1a{bottom:514.626667pt;}
.ydb{bottom:518.146667pt;}
.y74{bottom:523.266667pt;}
.yf8{bottom:526.626667pt;}
.y4d{bottom:530.493333pt;}
.yac{bottom:533.693333pt;}
.yda{bottom:536.893333pt;}
.y19{bottom:541.213333pt;}
.y90{bottom:543.773333pt;}
.yf7{bottom:545.373333pt;}
.y4c{bottom:549.213333pt;}
.yab{bottom:553.693333pt;}
.yd9{bottom:555.613333pt;}
.y18{bottom:559.933333pt;}
.y8f{bottom:562.493333pt;}
.yf6{bottom:564.093333pt;}
.y4b{bottom:567.933333pt;}
.yd8{bottom:569.053333pt;}
.yaa{bottom:573.693333pt;}
.y8e{bottom:575.933333pt;}
.y17{bottom:578.653333pt;}
.yf5{bottom:582.813333pt;}
.y4a{bottom:586.493333pt;}
.yd7{bottom:592.253333pt;}
.ya9{bottom:593.693333pt;}
.y8d{bottom:595.293333pt;}
.y16{bottom:597.373333pt;}
.yf4{bottom:601.533333pt;}
.y49{bottom:605.213333pt;}
.y66{bottom:613.053333pt;}
.ya8{bottom:613.693333pt;}
.y8c{bottom:614.813333pt;}
.yd6{bottom:615.453333pt;}
.y15{bottom:616.093333pt;}
.yf3{bottom:616.733333pt;}
.y48{bottom:623.933333pt;}
.y69{bottom:630.653333pt;}
.ya7{bottom:633.693333pt;}
.y14{bottom:634.813333pt;}
.yd5{bottom:638.653333pt;}
.y47{bottom:642.653333pt;}
.y8b{bottom:652.893333pt;}
.y13{bottom:653.533333pt;}
.ya6{bottom:653.693333pt;}
.y46{bottom:661.373333pt;}
.yd4{bottom:661.853333pt;}
.y12{bottom:672.253333pt;}
.ya5{bottom:673.693333pt;}
.y45{bottom:680.093333pt;}
.yd3{bottom:685.053333pt;}
.y11{bottom:690.973333pt;}
.ya4{bottom:693.693333pt;}
.y44{bottom:698.813333pt;}
.yd2{bottom:708.253333pt;}
.y10{bottom:709.693333pt;}
.ya3{bottom:713.693333pt;}
.y43{bottom:717.533333pt;}
.yf{bottom:728.413333pt;}
.y89{bottom:729.053333pt;}
.yd1{bottom:731.453333pt;}
.ya2{bottom:733.693333pt;}
.y42{bottom:736.253333pt;}
.ye{bottom:747.133333pt;}
.ya1{bottom:753.693333pt;}
.yd0{bottom:754.653333pt;}
.y41{bottom:754.973333pt;}
.y87{bottom:767.173333pt;}
.yd{bottom:767.813333pt;}
.y40{bottom:773.733333pt;}
.ycf{bottom:777.893333pt;}
.yc{bottom:791.173333pt;}
.y3f{bottom:792.453333pt;}
.ya0{bottom:793.733333pt;}
.yce{bottom:801.093333pt;}
.yb{bottom:809.893333pt;}
.y3e{bottom:811.173333pt;}
.y9f{bottom:813.733333pt;}
.ycd{bottom:824.293333pt;}
.ya{bottom:824.773333pt;}
.y3d{bottom:829.893333pt;}
.y9e{bottom:833.733333pt;}
.y9{bottom:844.613333pt;}
.ycc{bottom:847.493333pt;}
.y3c{bottom:848.613333pt;}
.y9d{bottom:853.733333pt;}
.ycb{bottom:866.213333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:867.333333pt;}
.y9c{bottom:873.733333pt;}
.y3a{bottom:886.053333pt;}
.yca{bottom:889.413333pt;}
.y9b{bottom:893.733333pt;}
.y7{bottom:896.933333pt;}
.y39{bottom:904.773333pt;}
.yc9{bottom:912.613333pt;}
.y9a{bottom:913.733333pt;}
.y38{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.y99{bottom:934.373333pt;}
.yc8{bottom:935.813333pt;}
.y37{bottom:942.213333pt;}
.yc7{bottom:959.013333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:979.653333pt;}
.yc6{bottom:982.213333pt;}
.y3{bottom:989.893333pt;}
.y34{bottom:998.373333pt;}
.yc4{bottom:1006.080000pt;}
.y33{bottom:1017.120000pt;}
.y2{bottom:1018.400000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.h14{height:18.720000pt;}
.h18{height:20.000000pt;}
.h19{height:20.032000pt;}
.h1a{height:23.200000pt;}
.h1b{height:23.232000pt;}
.h7{height:34.374375pt;}
.h16{height:37.440000pt;}
.h15{height:37.472000pt;}
.h1c{height:40.514375pt;}
.hb{height:40.882500pt;}
.h17{height:46.454062pt;}
.h8{height:52.834688pt;}
.h12{height:53.120000pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h9{height:65.531250pt;}
.hc{height:68.960000pt;}
.hd{height:69.920000pt;}
.h10{height:69.952000pt;}
.h13{height:74.720000pt;}
.h2{height:76.671562pt;}
.hf{height:85.760000pt;}
.h4{height:87.156562pt;}
.ha{height:99.840000pt;}
.he{height:106.112000pt;}
.h11{height:113.792000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:16.480000pt;}
.w7{width:17.440000pt;}
.w3{width:19.200000pt;}
.wf{width:91.680000pt;}
.wa{width:93.312000pt;}
.w11{width:103.040000pt;}
.w12{width:119.072000pt;}
.we{width:122.912000pt;}
.w5{width:180.346667pt;}
.w4{width:180.506667pt;}
.wb{width:236.026667pt;}
.w9{width:239.746667pt;}
.w8{width:309.826667pt;}
.wc{width:338.786667pt;}
.w10{width:393.666667pt;}
.wd{width:396.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x37{left:-144.026678pt;}
.x25{left:-12.320000pt;}
.x0{left:0.000000pt;}
.x1b{left:4.480000pt;}
.x27{left:6.880000pt;}
.x1a{left:9.600000pt;}
.x16{left:12.954667pt;}
.xb{left:13.920000pt;}
.x12{left:16.640000pt;}
.xe{left:24.000000pt;}
.x33{left:26.400000pt;}
.x8{left:28.799988pt;}
.xc{left:34.234667pt;}
.x23{left:35.360000pt;}
.x21{left:37.786667pt;}
.x18{left:43.520000pt;}
.x6{left:47.999988pt;}
.x20{left:51.386667pt;}
.xf{left:53.600000pt;}
.x24{left:62.080000pt;}
.x1e{left:63.840000pt;}
.x13{left:69.466667pt;}
.x10{left:70.920000pt;}
.x14{left:74.266667pt;}
.x28{left:76.799988pt;}
.x2a{left:79.199988pt;}
.x7{left:85.791988pt;}
.x30{left:89.152000pt;}
.x2d{left:91.552000pt;}
.x22{left:104.026667pt;}
.x9{left:114.271988pt;}
.xa{left:117.632000pt;}
.x15{left:120.512000pt;}
.x5{left:139.066655pt;}
.x26{left:156.026667pt;}
.x1c{left:164.346667pt;}
.x1d{left:186.266667pt;}
.xd{left:187.226667pt;}
.x17{left:188.346667pt;}
.x35{left:239.066655pt;}
.x3{left:254.786655pt;}
.x2b{left:308.386655pt;}
.x2{left:311.586655pt;}
.x36{left:345.186655pt;}
.x4{left:372.546655pt;}
.x2c{left:387.266655pt;}
.x11{left:390.306667pt;}
.x19{left:392.226667pt;}
.x1f{left:397.346667pt;}
.x1{left:426.013322pt;}
.x31{left:482.813333pt;}
.x2e{left:487.773333pt;}
.x32{left:585.853333pt;}
.x2f{left:610.693333pt;}
.x29{left:627.973322pt;}
.x34{left:698.533322pt;}
.x38{left:745.253322pt;}
}




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