
    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_32544c215ea85421c47c69ab.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7ce786d7ba5875bd02cd3f05.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073500;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_185987f6669248af169b0bcc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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_c09938e128e3b6e82229150f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073500;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_4c50fe5e2f69d8efcfc536dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.076000;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_337385900bde90de67646189.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922500;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_42e1eb6f70569141fa312500.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_7b7dcff3ad3ee62013952a64.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a6458501e62a8b780782a8bc.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_4adb4ab5b36c8c5565c93851.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_70c47dce92ec4e00a9e08ee4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_86f0ab1e8961e1aa5a8bc893.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937012;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_acc7afe7067fb047b057a6fa.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_70e23893f440468186d85331.woff2')format("woff");}.fff{font-family:fff;line-height:1.104004;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.259200px;}
.ls7{letter-spacing:-0.244800px;}
.ls8{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.100800px;}
.ls17{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.720000px;}
.lsb{letter-spacing:1.440000px;}
.ls0{letter-spacing:33.120000px;}
.ls15{letter-spacing:33.984000px;}
.ls13{letter-spacing:53.424000px;}
.lsd{letter-spacing:54.864000px;}
.ls12{letter-spacing:58.464000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws2{word-spacing:-20.916000px;}
.ws1{word-spacing:-20.844000px;}
.ws7{word-spacing:-18.380880px;}
.wsf{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.wse{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.146400px;}
.wsd{word-spacing:-14.940000px;}
.ws3{word-spacing:-12.784320px;}
.ws8{word-spacing:-12.539520px;}
.ws6{word-spacing:-12.525120px;}
.ws0{word-spacing:-10.422000px;}
.ws9{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
._1e{margin-left:-5.112000px;}
._f{margin-left:-3.960000px;}
._9{margin-left:-2.430000px;}
._1{margin-left:-1.206000px;}
._0{width:1.002000px;}
._2{width:2.026800px;}
._3{width:3.384000px;}
._14{width:4.470000px;}
._15{width:5.688000px;}
._c{width:6.768000px;}
._d{width:7.908000px;}
._8{width:9.144000px;}
._e{width:10.584000px;}
._4{width:12.096000px;}
._7{width:13.104000px;}
._12{width:14.316000px;}
._19{width:15.534000px;}
._17{width:16.866000px;}
._6{width:19.782000px;}
._a{width:21.474000px;}
._b{width:22.632000px;}
._1a{width:23.886000px;}
._16{width:25.593600px;}
._1c{width:26.602800px;}
._13{width:27.792000px;}
._18{width:29.376000px;}
._1d{width:31.002720px;}
._10{width:32.753280px;}
._11{width:34.128000px;}
._22{width:35.208000px;}
._24{width:36.522000px;}
._23{width:37.710000px;}
._20{width:38.952000px;}
._21{width:40.254000px;}
._5{width:46.008000px;}
._25{width:55.080000px;}
._1b{width:60.384000px;}
._1f{width:194.376000px;}
.fc6{color:rgb(29,29,32);}
.fc4{color:transparent;}
.fc3{color:rgb(140,141,155);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:66.384000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.yb{bottom:-9.540000px;}
.y5{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:3.240000px;}
.y103{bottom:3.285000px;}
.yf8{bottom:3.960000px;}
.y3e{bottom:5.040000px;}
.ya{bottom:6.660000px;}
.yfc{bottom:11.880000px;}
.y101{bottom:11.925000px;}
.yf7{bottom:14.220000px;}
.y106{bottom:20.340000px;}
.y10a{bottom:20.514000px;}
.yfd{bottom:20.520000px;}
.y102{bottom:20.565000px;}
.y3{bottom:23.940000px;}
.y3c{bottom:24.660000px;}
.yff{bottom:29.160000px;}
.y9{bottom:30.420000px;}
.yfe{bottom:37.800000px;}
.y2{bottom:40.140000px;}
.y7{bottom:46.620000px;}
.y38{bottom:88.236000px;}
.yc0{bottom:88.956000px;}
.y86{bottom:93.816000px;}
.y146{bottom:96.696000px;}
.y15c{bottom:99.216000px;}
.y37{bottom:105.336000px;}
.ybf{bottom:107.136000px;}
.y10b{bottom:113.616000px;}
.y138{bottom:118.476000px;}
.y15b{bottom:119.916000px;}
.y36{bottom:122.616000px;}
.y11d{bottom:123.696000px;}
.y85{bottom:124.956000px;}
.ybe{bottom:126.036000px;}
.y145{bottom:127.656000px;}
.y35{bottom:127.836000px;}
.yd5{bottom:129.096000px;}
.ybd{bottom:131.976000px;}
.yf3{bottom:139.896000px;}
.y15a{bottom:140.616000px;}
.y34{bottom:141.156000px;}
.yf2{bottom:145.116000px;}
.y17c{bottom:145.656000px;}
.ybc{bottom:146.196000px;}
.y137{bottom:149.436000px;}
.y11c{bottom:154.830000px;}
.y84{bottom:155.910000px;}
.y144{bottom:157.890000px;}
.yf1{bottom:158.430000px;}
.yd4{bottom:160.230000px;}
.y159{bottom:161.310000px;}
.y17b{bottom:166.350000px;}
.y109{bottom:167.250000px;}
.y136{bottom:180.570000px;}
.y64{bottom:181.110000px;}
.y158{bottom:182.010000px;}
.y11b{bottom:185.790000px;}
.y83{bottom:187.050000px;}
.y143{bottom:187.590000px;}
.yd3{bottom:191.190000px;}
.ya5{bottom:192.450000px;}
.ybb{bottom:195.150000px;}
.y108{bottom:202.530000px;}
.y157{bottom:202.710000px;}
.y17a{bottom:207.750000px;}
.y135{bottom:211.530000px;}
.y63{bottom:212.250000px;}
.yf0{bottom:212.970000px;}
.y11a{bottom:216.930000px;}
.y82{bottom:218.010000px;}
.y142{bottom:218.190000px;}
.yd2{bottom:222.330000px;}
.ya4{bottom:223.410000px;}
.yba{bottom:226.110000px;}
.y179{bottom:228.450000px;}
.y107{bottom:237.810000px;}
.y134{bottom:242.670000px;}
.y62{bottom:243.210000px;}
.yef{bottom:245.370000px;}
.y119{bottom:247.890000px;}
.y81{bottom:249.150000px;}
.yd1{bottom:252.570000px;}
.ya3{bottom:254.550000px;}
.yb9{bottom:257.250000px;}
.y178{bottom:269.850000px;}
.y33{bottom:271.290000px;}
.y105{bottom:273.090000px;}
.y133{bottom:273.450000px;}
.y61{bottom:274.350000px;}
.yee{bottom:277.590000px;}
.y118{bottom:279.030000px;}
.y80{bottom:280.110000px;}
.y141{bottom:280.290000px;}
.yd0{bottom:282.270000px;}
.y156{bottom:284.790000px;}
.ya2{bottom:285.510000px;}
.yb8{bottom:288.210000px;}
.y177{bottom:290.550000px;}
.y32{bottom:291.990000px;}
.y60{bottom:305.310000px;}
.y132{bottom:306.030000px;}
.y104{bottom:308.190000px;}
.y117{bottom:309.810000px;}
.yed{bottom:310.170000px;}
.y7f{bottom:311.250000px;}
.y31{bottom:312.330000px;}
.ycf{bottom:312.690000px;}
.y155{bottom:315.210000px;}
.ya1{bottom:316.650000px;}
.yb7{bottom:319.350000px;}
.y176{bottom:331.950000px;}
.y30{bottom:332.490000px;}
.y5f{bottom:336.450000px;}
.y131{bottom:336.990000px;}
.yec{bottom:341.130000px;}
.y7e{bottom:342.210000px;}
.y116{bottom:342.390000px;}
.y100{bottom:343.470000px;}
.yce{bottom:343.830000px;}
.y154{bottom:346.395000px;}
.ya0{bottom:347.655000px;}
.yb6{bottom:350.355000px;}
.y175{bottom:352.695000px;}
.y2f{bottom:353.235000px;}
.y5e{bottom:367.455000px;}
.y130{bottom:368.175000px;}
.yeb{bottom:372.315000px;}
.y7d{bottom:373.395000px;}
.y2e{bottom:373.935000px;}
.ycd{bottom:374.655000px;}
.y153{bottom:377.355000px;}
.y9f{bottom:378.795000px;}
.yb5{bottom:381.495000px;}
.y174{bottom:394.095000px;}
.y2d{bottom:394.635000px;}
.y5d{bottom:398.595000px;}
.y12f{bottom:399.135000px;}
.yea{bottom:403.275000px;}
.y7c{bottom:404.355000px;}
.y115{bottom:404.535000px;}
.ycc{bottom:407.055000px;}
.y152{bottom:408.495000px;}
.y9e{bottom:409.755000px;}
.yb4{bottom:412.455000px;}
.y173{bottom:414.795000px;}
.y2c{bottom:415.335000px;}
.y5c{bottom:429.555000px;}
.y12e{bottom:430.275000px;}
.yfb{bottom:431.355000px;}
.ye9{bottom:434.415000px;}
.y7b{bottom:435.495000px;}
.y2b{bottom:436.035000px;}
.ycb{bottom:439.455000px;}
.y9d{bottom:440.895000px;}
.yb3{bottom:443.415000px;}
.y172{bottom:456.195000px;}
.y2a{bottom:456.735000px;}
.y5b{bottom:460.695000px;}
.y12d{bottom:461.235000px;}
.ye8{bottom:464.655000px;}
.y7a{bottom:466.455000px;}
.yf9{bottom:466.635000px;}
.yca{bottom:470.415000px;}
.y151{bottom:470.595000px;}
.y9c{bottom:471.855000px;}
.yb2{bottom:474.555000px;}
.y171{bottom:476.895000px;}
.y29{bottom:477.435000px;}
.yf6{bottom:484.635000px;}
.y5a{bottom:491.655000px;}
.y12c{bottom:492.195000px;}
.ye7{bottom:494.355000px;}
.y79{bottom:497.595000px;}
.y28{bottom:498.135000px;}
.y150{bottom:501.555000px;}
.y9b{bottom:502.815000px;}
.yb1{bottom:505.515000px;}
.y170{bottom:518.295000px;}
.y27{bottom:518.835000px;}
.y59{bottom:522.615000px;}
.y12b{bottom:524.595000px;}
.ye6{bottom:524.775000px;}
.y78{bottom:528.555000px;}
.y140{bottom:528.735000px;}
.yf5{bottom:531.795000px;}
.y14f{bottom:532.515000px;}
.yc9{bottom:533.055000px;}
.y9a{bottom:533.955000px;}
.yb0{bottom:536.655000px;}
.y16f{bottom:538.995000px;}
.y26{bottom:539.535000px;}
.y58{bottom:553.755000px;}
.y12a{bottom:555.735000px;}
.ye5{bottom:555.915000px;}
.y77{bottom:559.695000px;}
.y25{bottom:560.235000px;}
.y114{bottom:560.955000px;}
.yf4{bottom:562.215000px;}
.yc8{bottom:562.755000px;}
.y14e{bottom:563.655000px;}
.y99{bottom:564.915000px;}
.yaf{bottom:567.615000px;}
.y16e{bottom:580.395000px;}
.y23{bottom:580.935000px;}
.y57{bottom:584.715000px;}
.ye4{bottom:586.695000px;}
.y24{bottom:587.775000px;}
.y76{bottom:590.655000px;}
.y13f{bottom:590.835000px;}
.y113{bottom:592.095000px;}
.yc7{bottom:593.355000px;}
.y14d{bottom:594.615000px;}
.y98{bottom:596.055000px;}
.yae{bottom:598.755000px;}
.y16d{bottom:601.095000px;}
.y22{bottom:601.635000px;}
.y56{bottom:615.885000px;}
.y129{bottom:617.865000px;}
.ye3{bottom:619.125000px;}
.y13e{bottom:621.105000px;}
.y75{bottom:621.645000px;}
.y21{bottom:622.365000px;}
.y112{bottom:623.085000px;}
.yc6{bottom:624.345000px;}
.y14c{bottom:625.785000px;}
.y97{bottom:627.045000px;}
.yad{bottom:629.745000px;}
.y16c{bottom:642.345000px;}
.y20{bottom:642.705000px;}
.y55{bottom:646.845000px;}
.y128{bottom:648.825000px;}
.y13d{bottom:650.805000px;}
.ye2{bottom:651.525000px;}
.y74{bottom:652.785000px;}
.y111{bottom:654.225000px;}
.yc5{bottom:655.485000px;}
.y14b{bottom:656.745000px;}
.y95{bottom:658.185000px;}
.yac{bottom:660.885000px;}
.y16b{bottom:663.045000px;}
.y96{bottom:665.025000px;}
.y13c{bottom:670.965000px;}
.y1f{bottom:673.305000px;}
.y54{bottom:677.085000px;}
.y127{bottom:679.965000px;}
.y73{bottom:683.745000px;}
.ye1{bottom:683.925000px;}
.y110{bottom:685.185000px;}
.yc4{bottom:686.445000px;}
.y14a{bottom:687.885000px;}
.y94{bottom:689.145000px;}
.yab{bottom:691.125000px;}
.y13b{bottom:691.665000px;}
.y1e{bottom:693.285000px;}
.y16a{bottom:704.445000px;}
.y53{bottom:706.785000px;}
.y126{bottom:710.925000px;}
.y1d{bottom:711.285000px;}
.y13a{bottom:712.365000px;}
.y72{bottom:714.885000px;}
.ye0{bottom:715.065000px;}
.y10f{bottom:716.325000px;}
.yc3{bottom:717.585000px;}
.y149{bottom:718.125000px;}
.y93{bottom:720.285000px;}
.yaa{bottom:720.825000px;}
.y169{bottom:725.145000px;}
.y1c{bottom:729.285000px;}
.y52{bottom:737.385000px;}
.y125{bottom:741.885000px;}
.y139{bottom:743.325000px;}
.y71{bottom:745.845000px;}
.ydf{bottom:746.025000px;}
.y10e{bottom:747.105000px;}
.y1b{bottom:747.285000px;}
.y148{bottom:747.825000px;}
.yc2{bottom:748.545000px;}
.ya9{bottom:750.525000px;}
.y92{bottom:751.245000px;}
.y1a{bottom:765.285000px;}
.y168{bottom:766.545000px;}
.y51{bottom:768.345000px;}
.y124{bottom:774.465000px;}
.yde{bottom:776.265000px;}
.y70{bottom:776.985000px;}
.y147{bottom:777.525000px;}
.y10d{bottom:778.785000px;}
.yc1{bottom:779.685000px;}
.ya8{bottom:780.225000px;}
.y91{bottom:781.485000px;}
.y19{bottom:783.285000px;}
.y167{bottom:787.245000px;}
.y50{bottom:789.045000px;}
.y18{bottom:801.285000px;}
.y123{bottom:805.425000px;}
.ydd{bottom:805.965000px;}
.y6f{bottom:807.945000px;}
.y10c{bottom:808.485000px;}
.y4f{bottom:809.745000px;}
.ya7{bottom:810.645000px;}
.y90{bottom:811.185000px;}
.y17{bottom:819.285000px;}
.y166{bottom:828.645000px;}
.y4e{bottom:830.085000px;}
.ydc{bottom:836.565000px;}
.y16{bottom:837.285000px;}
.y6e{bottom:839.085000px;}
.y8f{bottom:841.785000px;}
.y165{bottom:849.345000px;}
.y4d{bottom:850.245000px;}
.y15{bottom:855.285000px;}
.ydb{bottom:867.525000px;}
.y6d{bottom:870.090000px;}
.y4c{bottom:870.990000px;}
.y8e{bottom:872.790000px;}
.y14{bottom:873.330000px;}
.y164{bottom:890.790000px;}
.y4b{bottom:891.690000px;}
.yda{bottom:898.530000px;}
.y6c{bottom:901.230000px;}
.y13{bottom:902.310000px;}
.y8d{bottom:903.930000px;}
.y163{bottom:911.490000px;}
.y4a{bottom:912.390000px;}
.yd9{bottom:929.490000px;}
.y6b{bottom:932.190000px;}
.y49{bottom:933.090000px;}
.y8c{bottom:934.890000px;}
.y12{bottom:935.610000px;}
.y162{bottom:952.890000px;}
.y48{bottom:953.790000px;}
.y11{bottom:959.730000px;}
.yd8{bottom:962.070000px;}
.y6a{bottom:963.330000px;}
.y8b{bottom:966.030000px;}
.y161{bottom:973.590000px;}
.y47{bottom:974.490000px;}
.y10{bottom:984.930000px;}
.yd7{bottom:992.850000px;}
.y122{bottom:993.030000px;}
.y69{bottom:994.290000px;}
.y46{bottom:995.190000px;}
.y8a{bottom:996.990000px;}
.yf{bottom:1011.390000px;}
.y160{bottom:1014.990000px;}
.y45{bottom:1015.890000px;}
.y121{bottom:1024.170000px;}
.y68{bottom:1025.430000px;}
.y89{bottom:1028.130000px;}
.ya6{bottom:1034.970000px;}
.y15f{bottom:1035.690000px;}
.y44{bottom:1036.590000px;}
.ye{bottom:1043.790000px;}
.y120{bottom:1055.130000px;}
.y67{bottom:1056.390000px;}
.y42{bottom:1057.290000px;}
.y88{bottom:1059.090000px;}
.y43{bottom:1064.130000px;}
.yd{bottom:1076.190000px;}
.y15e{bottom:1077.090000px;}
.y41{bottom:1077.990000px;}
.y11f{bottom:1086.270000px;}
.y66{bottom:1087.530000px;}
.y87{bottom:1089.330000px;}
.yd6{bottom:1094.370000px;}
.y15d{bottom:1097.790000px;}
.y40{bottom:1098.690000px;}
.yc{bottom:1108.590000px;}
.y11e{bottom:1117.050000px;}
.y65{bottom:1118.490000px;}
.y3f{bottom:1119.030000px;}
.y4{bottom:1152.540000px;}
.y3b{bottom:1159.380000px;}
.y6{bottom:1178.280000px;}
.y3a{bottom:1180.980000px;}
.y3d{bottom:1193.760000px;}
.y39{bottom:1202.580000px;}
.y1{bottom:1204.740000px;}
.y8{bottom:1208.700000px;}
.h1f{height:17.100000px;}
.h14{height:28.800000px;}
.h20{height:34.380000px;}
.h23{height:34.560000px;}
.h22{height:34.596000px;}
.h11{height:38.158594px;}
.h1e{height:41.220000px;}
.h19{height:41.535703px;}
.h18{height:47.321367px;}
.hf{height:47.344922px;}
.h4{height:48.114000px;}
.h3{height:48.357000px;}
.h16{height:49.216320px;}
.h21{height:51.840000px;}
.hd{height:53.246160px;}
.hc{height:53.515080px;}
.h1d{height:53.573906px;}
.h12{height:58.651172px;}
.h24{height:59.019840px;}
.he{height:59.317920px;}
.h1a{height:59.439023px;}
.h7{height:59.940000px;}
.h9{height:62.590320px;}
.h13{height:64.152000px;}
.h1b{height:64.546875px;}
.h2{height:65.884219px;}
.h6{height:66.027445px;}
.h17{height:70.628906px;}
.hb{height:70.664062px;}
.h10{height:72.562500px;}
.h1c{height:74.004654px;}
.ha{height:82.635820px;}
.h15{height:85.753080px;}
.h5{height:89.460000px;}
.h8{height:96.714000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:67.320000px;}
.w8{width:116.136000px;}
.w9{width:146.196000px;}
.wa{width:160.410000px;}
.w7{width:220.710000px;}
.w4{width:443.880000px;}
.w3{width:644.220000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.440000px;}
.x3d{left:8.454000px;}
.x2f{left:11.340000px;}
.x3b{left:14.220000px;}
.x37{left:16.740000px;}
.x2e{left:18.000000px;}
.x1d{left:19.620000px;}
.x3e{left:23.940000px;}
.x34{left:25.920000px;}
.x31{left:27.540000px;}
.x43{left:28.794000px;}
.x39{left:30.960000px;}
.x36{left:34.914000px;}
.x42{left:36.354000px;}
.x45{left:38.160000px;}
.x35{left:39.960000px;}
.x40{left:41.034000px;}
.x33{left:42.480000px;}
.x41{left:44.994000px;}
.x3a{left:46.260000px;}
.x46{left:48.234000px;}
.x38{left:50.220000px;}
.x3f{left:52.380000px;}
.x9{left:54.975000px;}
.x3c{left:60.120000px;}
.x2c{left:84.774000px;}
.x44{left:89.814000px;}
.x1{left:127.655987px;}
.x3{left:131.040000px;}
.x1a{left:132.515987px;}
.x2b{left:144.936000px;}
.x48{left:152.849987px;}
.x27{left:154.649987px;}
.xc{left:170.309987px;}
.x22{left:180.749987px;}
.x4{left:189.075000px;}
.xb{left:190.829987px;}
.x2{left:211.889987px;}
.x2a{left:236.909987px;}
.xe{left:256.934987px;}
.xf{left:284.834987px;}
.x1b{left:299.234987px;}
.x1f{left:303.734973px;}
.x20{left:309.854987px;}
.x5{left:325.260000px;}
.x6{left:326.850000px;}
.x19{left:343.694987px;}
.x47{left:354.674987px;}
.x16{left:355.754987px;}
.xd{left:360.974987px;}
.x15{left:362.054987px;}
.x14{left:364.754987px;}
.x2d{left:366.375000px;}
.x13{left:370.874987px;}
.x11{left:373.214987px;}
.x12{left:407.414987px;}
.x10{left:409.934987px;}
.x21{left:411.914987px;}
.x49{left:413.534987px;}
.x1e{left:429.224987px;}
.x7{left:430.304987px;}
.x8{left:433.080000px;}
.x17{left:452.624973px;}
.x18{left:458.744987px;}
.xa{left:467.924987px;}
.x30{left:483.225000px;}
.x28{left:575.924973px;}
.x29{left:582.089987px;}
.x23{left:612.689973px;}
.x24{left:618.809987px;}
.x32{left:630.330000px;}
.x25{left:797.579973px;}
.x26{left:803.699987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.230400pt;}
.ls7{letter-spacing:-0.217600pt;}
.ls8{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.089600pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls0{letter-spacing:29.440000pt;}
.ls15{letter-spacing:30.208000pt;}
.ls13{letter-spacing:47.488000pt;}
.lsd{letter-spacing:48.768000pt;}
.ls12{letter-spacing:51.968000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.592000pt;}
.ws1{word-spacing:-18.528000pt;}
.ws7{word-spacing:-16.338560pt;}
.wsf{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.wse{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.363840pt;}
.ws8{word-spacing:-11.146240pt;}
.ws6{word-spacing:-11.133440pt;}
.ws0{word-spacing:-9.264000pt;}
.ws9{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
._1e{margin-left:-4.544000pt;}
._f{margin-left:-3.520000pt;}
._9{margin-left:-2.160000pt;}
._1{margin-left:-1.072000pt;}
._0{width:0.890667pt;}
._2{width:1.801600pt;}
._3{width:3.008000pt;}
._14{width:3.973333pt;}
._15{width:5.056000pt;}
._c{width:6.016000pt;}
._d{width:7.029333pt;}
._8{width:8.128000pt;}
._e{width:9.408000pt;}
._4{width:10.752000pt;}
._7{width:11.648000pt;}
._12{width:12.725333pt;}
._19{width:13.808000pt;}
._17{width:14.992000pt;}
._6{width:17.584000pt;}
._a{width:19.088000pt;}
._b{width:20.117333pt;}
._1a{width:21.232000pt;}
._16{width:22.749867pt;}
._1c{width:23.646933pt;}
._13{width:24.704000pt;}
._18{width:26.112000pt;}
._1d{width:27.557973pt;}
._10{width:29.114027pt;}
._11{width:30.336000pt;}
._22{width:31.296000pt;}
._24{width:32.464000pt;}
._23{width:33.520000pt;}
._20{width:34.624000pt;}
._21{width:35.781333pt;}
._5{width:40.896000pt;}
._25{width:48.960000pt;}
._1b{width:53.674667pt;}
._1f{width:172.778667pt;}
.fs8{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:59.008000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.yb{bottom:-8.480000pt;}
.y5{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:2.880000pt;}
.y103{bottom:2.920000pt;}
.yf8{bottom:3.520000pt;}
.y3e{bottom:4.480000pt;}
.ya{bottom:5.920000pt;}
.yfc{bottom:10.560000pt;}
.y101{bottom:10.600000pt;}
.yf7{bottom:12.640000pt;}
.y106{bottom:18.080000pt;}
.y10a{bottom:18.234667pt;}
.yfd{bottom:18.240000pt;}
.y102{bottom:18.280000pt;}
.y3{bottom:21.280000pt;}
.y3c{bottom:21.920000pt;}
.yff{bottom:25.920000pt;}
.y9{bottom:27.040000pt;}
.yfe{bottom:33.600000pt;}
.y2{bottom:35.680000pt;}
.y7{bottom:41.440000pt;}
.y38{bottom:78.432000pt;}
.yc0{bottom:79.072000pt;}
.y86{bottom:83.392000pt;}
.y146{bottom:85.952000pt;}
.y15c{bottom:88.192000pt;}
.y37{bottom:93.632000pt;}
.ybf{bottom:95.232000pt;}
.y10b{bottom:100.992000pt;}
.y138{bottom:105.312000pt;}
.y15b{bottom:106.592000pt;}
.y36{bottom:108.992000pt;}
.y11d{bottom:109.952000pt;}
.y85{bottom:111.072000pt;}
.ybe{bottom:112.032000pt;}
.y145{bottom:113.472000pt;}
.y35{bottom:113.632000pt;}
.yd5{bottom:114.752000pt;}
.ybd{bottom:117.312000pt;}
.yf3{bottom:124.352000pt;}
.y15a{bottom:124.992000pt;}
.y34{bottom:125.472000pt;}
.yf2{bottom:128.992000pt;}
.y17c{bottom:129.472000pt;}
.ybc{bottom:129.952000pt;}
.y137{bottom:132.832000pt;}
.y11c{bottom:137.626667pt;}
.y84{bottom:138.586667pt;}
.y144{bottom:140.346667pt;}
.yf1{bottom:140.826667pt;}
.yd4{bottom:142.426667pt;}
.y159{bottom:143.386667pt;}
.y17b{bottom:147.866667pt;}
.y109{bottom:148.666667pt;}
.y136{bottom:160.506667pt;}
.y64{bottom:160.986667pt;}
.y158{bottom:161.786667pt;}
.y11b{bottom:165.146667pt;}
.y83{bottom:166.266667pt;}
.y143{bottom:166.746667pt;}
.yd3{bottom:169.946667pt;}
.ya5{bottom:171.066667pt;}
.ybb{bottom:173.466667pt;}
.y108{bottom:180.026667pt;}
.y157{bottom:180.186667pt;}
.y17a{bottom:184.666667pt;}
.y135{bottom:188.026667pt;}
.y63{bottom:188.666667pt;}
.yf0{bottom:189.306667pt;}
.y11a{bottom:192.826667pt;}
.y82{bottom:193.786667pt;}
.y142{bottom:193.946667pt;}
.yd2{bottom:197.626667pt;}
.ya4{bottom:198.586667pt;}
.yba{bottom:200.986667pt;}
.y179{bottom:203.066667pt;}
.y107{bottom:211.386667pt;}
.y134{bottom:215.706667pt;}
.y62{bottom:216.186667pt;}
.yef{bottom:218.106667pt;}
.y119{bottom:220.346667pt;}
.y81{bottom:221.466667pt;}
.yd1{bottom:224.506667pt;}
.ya3{bottom:226.266667pt;}
.yb9{bottom:228.666667pt;}
.y178{bottom:239.866667pt;}
.y33{bottom:241.146667pt;}
.y105{bottom:242.746667pt;}
.y133{bottom:243.066667pt;}
.y61{bottom:243.866667pt;}
.yee{bottom:246.746667pt;}
.y118{bottom:248.026667pt;}
.y80{bottom:248.986667pt;}
.y141{bottom:249.146667pt;}
.yd0{bottom:250.906667pt;}
.y156{bottom:253.146667pt;}
.ya2{bottom:253.786667pt;}
.yb8{bottom:256.186667pt;}
.y177{bottom:258.266667pt;}
.y32{bottom:259.546667pt;}
.y60{bottom:271.386667pt;}
.y132{bottom:272.026667pt;}
.y104{bottom:273.946667pt;}
.y117{bottom:275.386667pt;}
.yed{bottom:275.706667pt;}
.y7f{bottom:276.666667pt;}
.y31{bottom:277.626667pt;}
.ycf{bottom:277.946667pt;}
.y155{bottom:280.186667pt;}
.ya1{bottom:281.466667pt;}
.yb7{bottom:283.866667pt;}
.y176{bottom:295.066667pt;}
.y30{bottom:295.546667pt;}
.y5f{bottom:299.066667pt;}
.y131{bottom:299.546667pt;}
.yec{bottom:303.226667pt;}
.y7e{bottom:304.186667pt;}
.y116{bottom:304.346667pt;}
.y100{bottom:305.306667pt;}
.yce{bottom:305.626667pt;}
.y154{bottom:307.906667pt;}
.ya0{bottom:309.026667pt;}
.yb6{bottom:311.426667pt;}
.y175{bottom:313.506667pt;}
.y2f{bottom:313.986667pt;}
.y5e{bottom:326.626667pt;}
.y130{bottom:327.266667pt;}
.yeb{bottom:330.946667pt;}
.y7d{bottom:331.906667pt;}
.y2e{bottom:332.386667pt;}
.ycd{bottom:333.026667pt;}
.y153{bottom:335.426667pt;}
.y9f{bottom:336.706667pt;}
.yb5{bottom:339.106667pt;}
.y174{bottom:350.306667pt;}
.y2d{bottom:350.786667pt;}
.y5d{bottom:354.306667pt;}
.y12f{bottom:354.786667pt;}
.yea{bottom:358.466667pt;}
.y7c{bottom:359.426667pt;}
.y115{bottom:359.586667pt;}
.ycc{bottom:361.826667pt;}
.y152{bottom:363.106667pt;}
.y9e{bottom:364.226667pt;}
.yb4{bottom:366.626667pt;}
.y173{bottom:368.706667pt;}
.y2c{bottom:369.186667pt;}
.y5c{bottom:381.826667pt;}
.y12e{bottom:382.466667pt;}
.yfb{bottom:383.426667pt;}
.ye9{bottom:386.146667pt;}
.y7b{bottom:387.106667pt;}
.y2b{bottom:387.586667pt;}
.ycb{bottom:390.626667pt;}
.y9d{bottom:391.906667pt;}
.yb3{bottom:394.146667pt;}
.y172{bottom:405.506667pt;}
.y2a{bottom:405.986667pt;}
.y5b{bottom:409.506667pt;}
.y12d{bottom:409.986667pt;}
.ye8{bottom:413.026667pt;}
.y7a{bottom:414.626667pt;}
.yf9{bottom:414.786667pt;}
.yca{bottom:418.146667pt;}
.y151{bottom:418.306667pt;}
.y9c{bottom:419.426667pt;}
.yb2{bottom:421.826667pt;}
.y171{bottom:423.906667pt;}
.y29{bottom:424.386667pt;}
.yf6{bottom:430.786667pt;}
.y5a{bottom:437.026667pt;}
.y12c{bottom:437.506667pt;}
.ye7{bottom:439.426667pt;}
.y79{bottom:442.306667pt;}
.y28{bottom:442.786667pt;}
.y150{bottom:445.826667pt;}
.y9b{bottom:446.946667pt;}
.yb1{bottom:449.346667pt;}
.y170{bottom:460.706667pt;}
.y27{bottom:461.186667pt;}
.y59{bottom:464.546667pt;}
.y12b{bottom:466.306667pt;}
.ye6{bottom:466.466667pt;}
.y78{bottom:469.826667pt;}
.y140{bottom:469.986667pt;}
.yf5{bottom:472.706667pt;}
.y14f{bottom:473.346667pt;}
.yc9{bottom:473.826667pt;}
.y9a{bottom:474.626667pt;}
.yb0{bottom:477.026667pt;}
.y16f{bottom:479.106667pt;}
.y26{bottom:479.586667pt;}
.y58{bottom:492.226667pt;}
.y12a{bottom:493.986667pt;}
.ye5{bottom:494.146667pt;}
.y77{bottom:497.506667pt;}
.y25{bottom:497.986667pt;}
.y114{bottom:498.626667pt;}
.yf4{bottom:499.746667pt;}
.yc8{bottom:500.226667pt;}
.y14e{bottom:501.026667pt;}
.y99{bottom:502.146667pt;}
.yaf{bottom:504.546667pt;}
.y16e{bottom:515.906667pt;}
.y23{bottom:516.386667pt;}
.y57{bottom:519.746667pt;}
.ye4{bottom:521.506667pt;}
.y24{bottom:522.466667pt;}
.y76{bottom:525.026667pt;}
.y13f{bottom:525.186667pt;}
.y113{bottom:526.306667pt;}
.yc7{bottom:527.426667pt;}
.y14d{bottom:528.546667pt;}
.y98{bottom:529.826667pt;}
.yae{bottom:532.226667pt;}
.y16d{bottom:534.306667pt;}
.y22{bottom:534.786667pt;}
.y56{bottom:547.453333pt;}
.y129{bottom:549.213333pt;}
.ye3{bottom:550.333333pt;}
.y13e{bottom:552.093333pt;}
.y75{bottom:552.573333pt;}
.y21{bottom:553.213333pt;}
.y112{bottom:553.853333pt;}
.yc6{bottom:554.973333pt;}
.y14c{bottom:556.253333pt;}
.y97{bottom:557.373333pt;}
.yad{bottom:559.773333pt;}
.y16c{bottom:570.973333pt;}
.y20{bottom:571.293333pt;}
.y55{bottom:574.973333pt;}
.y128{bottom:576.733333pt;}
.y13d{bottom:578.493333pt;}
.ye2{bottom:579.133333pt;}
.y74{bottom:580.253333pt;}
.y111{bottom:581.533333pt;}
.yc5{bottom:582.653333pt;}
.y14b{bottom:583.773333pt;}
.y95{bottom:585.053333pt;}
.yac{bottom:587.453333pt;}
.y16b{bottom:589.373333pt;}
.y96{bottom:591.133333pt;}
.y13c{bottom:596.413333pt;}
.y1f{bottom:598.493333pt;}
.y54{bottom:601.853333pt;}
.y127{bottom:604.413333pt;}
.y73{bottom:607.773333pt;}
.ye1{bottom:607.933333pt;}
.y110{bottom:609.053333pt;}
.yc4{bottom:610.173333pt;}
.y14a{bottom:611.453333pt;}
.y94{bottom:612.573333pt;}
.yab{bottom:614.333333pt;}
.y13b{bottom:614.813333pt;}
.y1e{bottom:616.253333pt;}
.y16a{bottom:626.173333pt;}
.y53{bottom:628.253333pt;}
.y126{bottom:631.933333pt;}
.y1d{bottom:632.253333pt;}
.y13a{bottom:633.213333pt;}
.y72{bottom:635.453333pt;}
.ye0{bottom:635.613333pt;}
.y10f{bottom:636.733333pt;}
.yc3{bottom:637.853333pt;}
.y149{bottom:638.333333pt;}
.y93{bottom:640.253333pt;}
.yaa{bottom:640.733333pt;}
.y169{bottom:644.573333pt;}
.y1c{bottom:648.253333pt;}
.y52{bottom:655.453333pt;}
.y125{bottom:659.453333pt;}
.y139{bottom:660.733333pt;}
.y71{bottom:662.973333pt;}
.ydf{bottom:663.133333pt;}
.y10e{bottom:664.093333pt;}
.y1b{bottom:664.253333pt;}
.y148{bottom:664.733333pt;}
.yc2{bottom:665.373333pt;}
.ya9{bottom:667.133333pt;}
.y92{bottom:667.773333pt;}
.y1a{bottom:680.253333pt;}
.y168{bottom:681.373333pt;}
.y51{bottom:682.973333pt;}
.y124{bottom:688.413333pt;}
.yde{bottom:690.013333pt;}
.y70{bottom:690.653333pt;}
.y147{bottom:691.133333pt;}
.y10d{bottom:692.253333pt;}
.yc1{bottom:693.053333pt;}
.ya8{bottom:693.533333pt;}
.y91{bottom:694.653333pt;}
.y19{bottom:696.253333pt;}
.y167{bottom:699.773333pt;}
.y50{bottom:701.373333pt;}
.y18{bottom:712.253333pt;}
.y123{bottom:715.933333pt;}
.ydd{bottom:716.413333pt;}
.y6f{bottom:718.173333pt;}
.y10c{bottom:718.653333pt;}
.y4f{bottom:719.773333pt;}
.ya7{bottom:720.573333pt;}
.y90{bottom:721.053333pt;}
.y17{bottom:728.253333pt;}
.y166{bottom:736.573333pt;}
.y4e{bottom:737.853333pt;}
.ydc{bottom:743.613333pt;}
.y16{bottom:744.253333pt;}
.y6e{bottom:745.853333pt;}
.y8f{bottom:748.253333pt;}
.y165{bottom:754.973333pt;}
.y4d{bottom:755.773333pt;}
.y15{bottom:760.253333pt;}
.ydb{bottom:771.133333pt;}
.y6d{bottom:773.413333pt;}
.y4c{bottom:774.213333pt;}
.y8e{bottom:775.813333pt;}
.y14{bottom:776.293333pt;}
.y164{bottom:791.813333pt;}
.y4b{bottom:792.613333pt;}
.yda{bottom:798.693333pt;}
.y6c{bottom:801.093333pt;}
.y13{bottom:802.053333pt;}
.y8d{bottom:803.493333pt;}
.y163{bottom:810.213333pt;}
.y4a{bottom:811.013333pt;}
.yd9{bottom:826.213333pt;}
.y6b{bottom:828.613333pt;}
.y49{bottom:829.413333pt;}
.y8c{bottom:831.013333pt;}
.y12{bottom:831.653333pt;}
.y162{bottom:847.013333pt;}
.y48{bottom:847.813333pt;}
.y11{bottom:853.093333pt;}
.yd8{bottom:855.173333pt;}
.y6a{bottom:856.293333pt;}
.y8b{bottom:858.693333pt;}
.y161{bottom:865.413333pt;}
.y47{bottom:866.213333pt;}
.y10{bottom:875.493333pt;}
.yd7{bottom:882.533333pt;}
.y122{bottom:882.693333pt;}
.y69{bottom:883.813333pt;}
.y46{bottom:884.613333pt;}
.y8a{bottom:886.213333pt;}
.yf{bottom:899.013333pt;}
.y160{bottom:902.213333pt;}
.y45{bottom:903.013333pt;}
.y121{bottom:910.373333pt;}
.y68{bottom:911.493333pt;}
.y89{bottom:913.893333pt;}
.ya6{bottom:919.973333pt;}
.y15f{bottom:920.613333pt;}
.y44{bottom:921.413333pt;}
.ye{bottom:927.813333pt;}
.y120{bottom:937.893333pt;}
.y67{bottom:939.013333pt;}
.y42{bottom:939.813333pt;}
.y88{bottom:941.413333pt;}
.y43{bottom:945.893333pt;}
.yd{bottom:956.613333pt;}
.y15e{bottom:957.413333pt;}
.y41{bottom:958.213333pt;}
.y11f{bottom:965.573333pt;}
.y66{bottom:966.693333pt;}
.y87{bottom:968.293333pt;}
.yd6{bottom:972.773333pt;}
.y15d{bottom:975.813333pt;}
.y40{bottom:976.613333pt;}
.yc{bottom:985.413333pt;}
.y11e{bottom:992.933333pt;}
.y65{bottom:994.213333pt;}
.y3f{bottom:994.693333pt;}
.y4{bottom:1024.480000pt;}
.y3b{bottom:1030.560000pt;}
.y6{bottom:1047.360000pt;}
.y3a{bottom:1049.760000pt;}
.y3d{bottom:1061.120000pt;}
.y39{bottom:1068.960000pt;}
.y1{bottom:1070.880000pt;}
.y8{bottom:1074.400000pt;}
.h1f{height:15.200000pt;}
.h14{height:25.600000pt;}
.h20{height:30.560000pt;}
.h23{height:30.720000pt;}
.h22{height:30.752000pt;}
.h11{height:33.918750pt;}
.h1e{height:36.640000pt;}
.h19{height:36.920625pt;}
.h18{height:42.063437pt;}
.hf{height:42.084375pt;}
.h4{height:42.768000pt;}
.h3{height:42.984000pt;}
.h16{height:43.747840pt;}
.h21{height:46.080000pt;}
.hd{height:47.329920pt;}
.hc{height:47.568960pt;}
.h1d{height:47.621250pt;}
.h12{height:52.134375pt;}
.h24{height:52.462080pt;}
.he{height:52.727040pt;}
.h1a{height:52.834688pt;}
.h7{height:53.280000pt;}
.h9{height:55.635840pt;}
.h13{height:57.024000pt;}
.h1b{height:57.375000pt;}
.h2{height:58.563750pt;}
.h6{height:58.691063pt;}
.h17{height:62.781250pt;}
.hb{height:62.812500pt;}
.h10{height:64.500000pt;}
.h1c{height:65.781915pt;}
.ha{height:73.454062pt;}
.h15{height:76.224960pt;}
.h5{height:79.520000pt;}
.h8{height:85.968000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:59.840000pt;}
.w8{width:103.232000pt;}
.w9{width:129.952000pt;}
.wa{width:142.586667pt;}
.w7{width:196.186667pt;}
.w4{width:394.560000pt;}
.w3{width:572.640000pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.280000pt;}
.x3d{left:7.514667pt;}
.x2f{left:10.080000pt;}
.x3b{left:12.640000pt;}
.x37{left:14.880000pt;}
.x2e{left:16.000000pt;}
.x1d{left:17.440000pt;}
.x3e{left:21.280000pt;}
.x34{left:23.040000pt;}
.x31{left:24.480000pt;}
.x43{left:25.594667pt;}
.x39{left:27.520000pt;}
.x36{left:31.034667pt;}
.x42{left:32.314667pt;}
.x45{left:33.920000pt;}
.x35{left:35.520000pt;}
.x40{left:36.474667pt;}
.x33{left:37.760000pt;}
.x41{left:39.994667pt;}
.x3a{left:41.120000pt;}
.x46{left:42.874667pt;}
.x38{left:44.640000pt;}
.x3f{left:46.560000pt;}
.x9{left:48.866667pt;}
.x3c{left:53.440000pt;}
.x2c{left:75.354667pt;}
.x44{left:79.834667pt;}
.x1{left:113.471988pt;}
.x3{left:116.480000pt;}
.x1a{left:117.791988pt;}
.x2b{left:128.832000pt;}
.x48{left:135.866655pt;}
.x27{left:137.466655pt;}
.xc{left:151.386655pt;}
.x22{left:160.666655pt;}
.x4{left:168.066667pt;}
.xb{left:169.626655pt;}
.x2{left:188.346655pt;}
.x2a{left:210.586655pt;}
.xe{left:228.386655pt;}
.xf{left:253.186655pt;}
.x1b{left:265.986655pt;}
.x1f{left:269.986643pt;}
.x20{left:275.426655pt;}
.x5{left:289.120000pt;}
.x6{left:290.533333pt;}
.x19{left:305.506655pt;}
.x47{left:315.266655pt;}
.x16{left:316.226655pt;}
.xd{left:320.866655pt;}
.x15{left:321.826655pt;}
.x14{left:324.226655pt;}
.x2d{left:325.666667pt;}
.x13{left:329.666655pt;}
.x11{left:331.746655pt;}
.x12{left:362.146655pt;}
.x10{left:364.386655pt;}
.x21{left:366.146655pt;}
.x49{left:367.586655pt;}
.x1e{left:381.533322pt;}
.x7{left:382.493322pt;}
.x8{left:384.960000pt;}
.x17{left:402.333310pt;}
.x18{left:407.773322pt;}
.xa{left:415.933322pt;}
.x30{left:429.533333pt;}
.x28{left:511.933310pt;}
.x29{left:517.413322pt;}
.x23{left:544.613310pt;}
.x24{left:550.053322pt;}
.x32{left:560.293333pt;}
.x25{left:708.959976pt;}
.x26{left:714.399988pt;}
}




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