
    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_2f767b6ac35f9e7498873f0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_120c8cca84a015256f67ceeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_77ac75df67a76a4f1c507997.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187012;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_2b4a05c10840357cc3e94d81.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989258;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_bc69fa7301a38afab86f7738.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989258;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_16a0a230783046a33f3cee9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_24b4ab1d702b824b5f287c7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_c4ff213ede56b70f1937c5f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.187012;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0335691e04f649c87865932c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsf{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000003px;}
.lsa{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.lse{letter-spacing:0.264000px;}
.ls6{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.720000px;}
.ls5{letter-spacing:117.504000px;}
.lsc{letter-spacing:846.156000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-18.984000px;}
.ws2{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.wsb{word-spacing:-0.072003px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._a{margin-left:-3.120480px;}
._1{margin-left:-1.996800px;}
._6{width:1.238640px;}
._9{width:2.421120px;}
._d{width:4.038000px;}
._0{width:5.587200px;}
._c{width:7.176000px;}
._7{width:9.144000px;}
._8{width:11.100000px;}
._f{width:12.326160px;}
._e{width:13.392000px;}
._10{width:14.400000px;}
._b{width:15.408000px;}
._5{width:270.000000px;}
._4{width:849.156000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:48.240000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:84.240000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:5.040000px;}
.ydb{bottom:5.220000px;}
.yf6{bottom:6.840000px;}
.yc{bottom:8.040000px;}
.y122{bottom:14.040000px;}
.y12d{bottom:14.085000px;}
.y127{bottom:14.220000px;}
.y112{bottom:16.380000px;}
.y124{bottom:36.540000px;}
.y1c{bottom:67.176000px;}
.y14{bottom:77.715000px;}
.y1b{bottom:98.496000px;}
.y13{bottom:99.795000px;}
.y18{bottom:113.670000px;}
.y17{bottom:135.750000px;}
.ybe{bottom:136.296000px;}
.y69{bottom:139.176000px;}
.y133{bottom:150.330000px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y153{bottom:156.450000px;}
.y16{bottom:157.830000px;}
.yd5{bottom:158.430000px;}
.ybd{bottom:158.790000px;}
.y68{bottom:161.490000px;}
.y3f{bottom:165.090000px;}
.y132{bottom:168.510000px;}
.y170{bottom:171.570000px;}
.y193{bottom:173.190000px;}
.y152{bottom:178.770000px;}
.yd4{bottom:180.750000px;}
.ybc{bottom:181.110000px;}
.y67{bottom:183.810000px;}
.yad{bottom:184.530000px;}
.y3e{bottom:187.410000px;}
.y16f{bottom:193.890000px;}
.y192{bottom:195.690000px;}
.y91{bottom:196.230000px;}
.y131{bottom:199.830000px;}
.y151{bottom:201.270000px;}
.ybb{bottom:203.430000px;}
.y66{bottom:206.310000px;}
.yac{bottom:206.850000px;}
.y3d{bottom:209.910000px;}
.yd3{bottom:212.070000px;}
.y191{bottom:218.010000px;}
.y90{bottom:218.550000px;}
.y150{bottom:223.590000px;}
.y16e{bottom:225.210000px;}
.yba{bottom:225.750000px;}
.y65{bottom:228.630000px;}
.yab{bottom:229.170000px;}
.y130{bottom:231.150000px;}
.y3c{bottom:232.230000px;}
.y110{bottom:232.770000px;}
.y8f{bottom:240.870000px;}
.yd2{bottom:242.850000px;}
.y14f{bottom:245.910000px;}
.y16d{bottom:247.710000px;}
.y190{bottom:249.330000px;}
.y64{bottom:250.950000px;}
.yaa{bottom:251.670000px;}
.yf4{bottom:251.850000px;}
.y3b{bottom:254.550000px;}
.yb9{bottom:257.250000px;}
.y12f{bottom:262.470000px;}
.y8e{bottom:263.370000px;}
.y10f{bottom:264.270000px;}
.y14e{bottom:268.230000px;}
.yd1{bottom:268.950000px;}
.y16c{bottom:270.030000px;}
.y18f{bottom:271.650000px;}
.y63{bottom:273.270000px;}
.ya9{bottom:273.990000px;}
.yf3{bottom:274.350000px;}
.y3a{bottom:276.870000px;}
.y8d{bottom:285.690000px;}
.yb8{bottom:288.570000px;}
.y14d{bottom:290.730000px;}
.y12e{bottom:293.970000px;}
.y10e{bottom:295.590000px;}
.y62{bottom:295.770000px;}
.ya8{bottom:296.310000px;}
.yf2{bottom:296.670000px;}
.y39{bottom:299.370000px;}
.y16b{bottom:301.350000px;}
.y18e{bottom:303.150000px;}
.y8c{bottom:308.010000px;}
.yb7{bottom:310.890000px;}
.y14c{bottom:313.050000px;}
.y10d{bottom:317.910000px;}
.y61{bottom:318.090000px;}
.ya7{bottom:318.810000px;}
.yf1{bottom:318.990000px;}
.y38{bottom:321.690000px;}
.y16a{bottom:323.850000px;}
.y12c{bottom:325.290000px;}
.y18d{bottom:325.470000px;}
.y14b{bottom:335.415000px;}
.y8b{bottom:339.375000px;}
.y10c{bottom:340.275000px;}
.y60{bottom:340.455000px;}
.ya6{bottom:341.175000px;}
.yf0{bottom:341.355000px;}
.yb6{bottom:342.255000px;}
.y37{bottom:344.055000px;}
.ya{bottom:344.680500px;}
.y169{bottom:346.215000px;}
.y18c{bottom:347.835000px;}
.y12b{bottom:356.655000px;}
.y14a{bottom:357.735000px;}
.y5f{bottom:362.775000px;}
.yef{bottom:363.855000px;}
.yb5{bottom:364.755000px;}
.y36{bottom:366.555000px;}
.y168{bottom:367.815000px;}
.y8a{bottom:370.155000px;}
.ya5{bottom:372.495000px;}
.y18b{bottom:379.155000px;}
.y149{bottom:380.235000px;}
.y10b{bottom:385.095000px;}
.y5e{bottom:385.275000px;}
.yee{bottom:386.175000px;}
.yd{bottom:386.490000px;}
.yb4{bottom:387.075000px;}
.y12a{bottom:387.975000px;}
.y35{bottom:388.875000px;}
.y167{bottom:390.315000px;}
.y89{bottom:392.475000px;}
.ya4{bottom:394.815000px;}
.y9{bottom:395.689500px;}
.y18a{bottom:401.655000px;}
.y148{bottom:402.555000px;}
.y10a{bottom:407.415000px;}
.yb3{bottom:409.395000px;}
.y88{bottom:414.795000px;}
.y5d{bottom:416.235000px;}
.yed{bottom:417.135000px;}
.ya3{bottom:417.315000px;}
.y129{bottom:419.475000px;}
.y34{bottom:419.835000px;}
.y166{bottom:421.635000px;}
.y147{bottom:424.875000px;}
.y109{bottom:429.735000px;}
.yb2{bottom:431.895000px;}
.y189{bottom:432.975000px;}
.yb{bottom:434.850000px;}
.y87{bottom:437.115000px;}
.ya2{bottom:439.635000px;}
.y165{bottom:443.955000px;}
.y8{bottom:446.698500px;}
.y5c{bottom:447.015000px;}
.y146{bottom:447.195000px;}
.yec{bottom:447.915000px;}
.y33{bottom:450.615000px;}
.y128{bottom:450.795000px;}
.y188{bottom:455.295000px;}
.y86{bottom:460.515000px;}
.y108{bottom:461.235000px;}
.ya1{bottom:461.955000px;}
.yb1{bottom:463.035000px;}
.y164{bottom:466.275000px;}
.yd0{bottom:470.055000px;}
.y187{bottom:477.795000px;}
.y5b{bottom:477.975000px;}
.y145{bottom:478.695000px;}
.yeb{bottom:478.875000px;}
.y32{bottom:481.395000px;}
.y126{bottom:482.115000px;}
.y85{bottom:482.835000px;}
.y107{bottom:483.555000px;}
.ya0{bottom:484.275000px;}
.y10{bottom:488.055000px;}
.ycf{bottom:492.375000px;}
.yb0{bottom:493.815000px;}
.y7{bottom:497.707500px;}
.y163{bottom:497.775000px;}
.y144{bottom:501.015000px;}
.y31{bottom:503.175000px;}
.yea{bottom:505.155000px;}
.y106{bottom:505.875000px;}
.y84{bottom:506.055000px;}
.y9f{bottom:506.775000px;}
.y186{bottom:509.115000px;}
.y5a{bottom:509.295000px;}
.y125{bottom:513.615000px;}
.yce{bottom:515.055000px;}
.y162{bottom:520.095000px;}
.y143{bottom:523.335000px;}
.y30{bottom:524.955000px;}
.yaf{bottom:525.315000px;}
.y105{bottom:528.195000px;}
.y83{bottom:528.375000px;}
.y59{bottom:531.795000px;}
.ycd{bottom:537.375000px;}
.y9e{bottom:538.095000px;}
.y11{bottom:538.230000px;}
.y185{bottom:540.435000px;}
.y161{bottom:542.415000px;}
.y123{bottom:545.655000px;}
.y142{bottom:545.835000px;}
.y2f{bottom:546.735000px;}
.y6{bottom:548.716500px;}
.y82{bottom:550.695000px;}
.yae{bottom:551.595000px;}
.y58{bottom:554.115000px;}
.ycc{bottom:559.875000px;}
.y9d{bottom:560.415000px;}
.y184{bottom:562.755000px;}
.y160{bottom:564.735000px;}
.y141{bottom:568.155000px;}
.y2e{bottom:568.335000px;}
.y81{bottom:573.015000px;}
.y57{bottom:576.435000px;}
.y9c{bottom:582.735000px;}
.y15f{bottom:587.235000px;}
.y19{bottom:589.605000px;}
.y2d{bottom:590.115000px;}
.y140{bottom:590.475000px;}
.ycb{bottom:591.015000px;}
.y183{bottom:594.255000px;}
.y80{bottom:596.265000px;}
.y56{bottom:598.785000px;}
.y5{bottom:599.725500px;}
.y121{bottom:600.225000px;}
.y104{bottom:604.365000px;}
.y9b{bottom:605.265000px;}
.y2c{bottom:611.745000px;}
.y13f{bottom:612.825000px;}
.y182{bottom:616.605000px;}
.y7f{bottom:618.585000px;}
.y55{bottom:621.285000px;}
.yca{bottom:621.825000px;}
.y103{bottom:626.865000px;}
.ye{bottom:631.920000px;}
.y2b{bottom:633.525000px;}
.y13e{bottom:635.325000px;}
.y9a{bottom:636.225000px;}
.y181{bottom:638.925000px;}
.y7e{bottom:640.905000px;}
.yc9{bottom:644.325000px;}
.y102{bottom:644.865000px;}
.y120{bottom:646.305000px;}
.y54{bottom:652.605000px;}
.y2a{bottom:655.125000px;}
.y13d{bottom:657.645000px;}
.y180{bottom:661.245000px;}
.y15e{bottom:663.405000px;}
.y7d{bottom:664.125000px;}
.yc8{bottom:666.645000px;}
.y99{bottom:667.005000px;}
.y101{bottom:667.185000px;}
.ye9{bottom:672.765000px;}
.y53{bottom:674.925000px;}
.y29{bottom:676.905000px;}
.y11f{bottom:677.805000px;}
.y13c{bottom:679.965000px;}
.y15d{bottom:685.725000px;}
.y7c{bottom:686.625000px;}
.yc7{bottom:688.965000px;}
.y100{bottom:689.505000px;}
.y17f{bottom:692.745000px;}
.ye8{bottom:695.085000px;}
.y52{bottom:697.245000px;}
.y98{bottom:697.605000px;}
.y11e{bottom:700.125000px;}
.y13b{bottom:702.285000px;}
.y28{bottom:707.325000px;}
.y15c{bottom:708.045000px;}
.y7b{bottom:708.945000px;}
.yc6{bottom:711.285000px;}
.yff{bottom:712.005000px;}
.y17e{bottom:715.065000px;}
.y51{bottom:719.745000px;}
.y11d{bottom:722.445000px;}
.ye7{bottom:726.405000px;}
.y97{bottom:728.745000px;}
.y7a{bottom:732.165000px;}
.yc5{bottom:733.785000px;}
.yfe{bottom:734.325000px;}
.y17d{bottom:737.385000px;}
.y27{bottom:738.285000px;}
.y15b{bottom:739.185000px;}
.y50{bottom:742.065000px;}
.y11c{bottom:744.765000px;}
.ye6{bottom:748.725000px;}
.y96{bottom:751.065000px;}
.y79{bottom:754.485000px;}
.yc4{bottom:756.105000px;}
.yfd{bottom:756.645000px;}
.y4f{bottom:764.385000px;}
.y11b{bottom:767.265000px;}
.y17c{bottom:768.885000px;}
.y15a{bottom:770.145000px;}
.ye5{bottom:771.225000px;}
.y95{bottom:773.385000px;}
.y26{bottom:774.285000px;}
.y78{bottom:777.705000px;}
.y4{bottom:778.225500px;}
.yc3{bottom:778.425000px;}
.yfc{bottom:778.965000px;}
.y4e{bottom:786.885000px;}
.y11a{bottom:789.585000px;}
.y17b{bottom:791.205000px;}
.ye4{bottom:793.545000px;}
.y94{bottom:795.885000px;}
.y77{bottom:800.025000px;}
.yc2{bottom:800.745000px;}
.y25{bottom:801.105000px;}
.y159{bottom:801.465000px;}
.yfb{bottom:802.185000px;}
.y17a{bottom:813.525000px;}
.y12{bottom:815.670000px;}
.ye3{bottom:815.865000px;}
.y4d{bottom:818.205000px;}
.y119{bottom:820.905000px;}
.y13a{bottom:823.245000px;}
.y158{bottom:823.785000px;}
.yfa{bottom:830.265000px;}
.y76{bottom:832.245000px;}
.y179{bottom:835.845000px;}
.y24{bottom:836.925000px;}
.ye2{bottom:838.365000px;}
.y4c{bottom:840.525000px;}
.y118{bottom:843.405000px;}
.y139{bottom:845.565000px;}
.y157{bottom:846.285000px;}
.yf9{bottom:852.765000px;}
.y75{bottom:854.565000px;}
.ye1{bottom:860.685000px;}
.y4b{bottom:862.890000px;}
.y23{bottom:863.790000px;}
.y117{bottom:865.770000px;}
.y178{bottom:867.390000px;}
.y138{bottom:867.930000px;}
.y156{bottom:868.650000px;}
.y74{bottom:876.930000px;}
.ye0{bottom:878.730000px;}
.yf8{bottom:884.130000px;}
.y4a{bottom:885.390000px;}
.y22{bottom:886.290000px;}
.y116{bottom:888.090000px;}
.y177{bottom:889.710000px;}
.y137{bottom:890.430000px;}
.y93{bottom:894.390000px;}
.y73{bottom:899.430000px;}
.y155{bottom:899.790000px;}
.ydf{bottom:901.050000px;}
.yf7{bottom:901.410000px;}
.y3{bottom:905.716500px;}
.y49{bottom:907.710000px;}
.y176{bottom:912.030000px;}
.y136{bottom:912.750000px;}
.y92{bottom:916.710000px;}
.y21{bottom:917.970000px;}
.y115{bottom:919.230000px;}
.y72{bottom:921.750000px;}
.yde{bottom:923.550000px;}
.yf5{bottom:923.730000px;}
.y154{bottom:930.390000px;}
.y175{bottom:934.350000px;}
.y48{bottom:939.030000px;}
.y20{bottom:943.350000px;}
.y135{bottom:943.710000px;}
.y71{bottom:944.070000px;}
.ydd{bottom:945.870000px;}
.y47{bottom:961.350000px;}
.y2{bottom:964.228500px;}
.y174{bottom:965.850000px;}
.y70{bottom:966.390000px;}
.ydc{bottom:968.190000px;}
.y134{bottom:974.850000px;}
.y1f{bottom:977.730000px;}
.y46{bottom:983.850000px;}
.y173{bottom:988.170000px;}
.yc1{bottom:988.890000px;}
.y1{bottom:989.716500px;}
.yda{bottom:990.510000px;}
.y6f{bottom:997.890000px;}
.y45{bottom:1006.170000px;}
.y172{bottom:1010.490000px;}
.yc0{bottom:1011.210000px;}
.y1e{bottom:1011.930000px;}
.yd9{bottom:1013.010000px;}
.y6e{bottom:1020.210000px;}
.y44{bottom:1028.490000px;}
.ybf{bottom:1033.530000px;}
.y114{bottom:1035.330000px;}
.yd7{bottom:1036.050000px;}
.y1d{bottom:1040.730000px;}
.y171{bottom:1041.810000px;}
.y6d{bottom:1042.530000px;}
.y43{bottom:1050.810000px;}
.y111{bottom:1058.370000px;}
.yd6{bottom:1064.310000px;}
.y6c{bottom:1064.850000px;}
.y42{bottom:1073.310000px;}
.y113{bottom:1080.870000px;}
.y6b{bottom:1087.350000px;}
.y41{bottom:1095.630000px;}
.y40{bottom:1117.950000px;}
.y6a{bottom:1118.310000px;}
.y1a{bottom:1160.640000px;}
.hf{height:22.320000px;}
.h10{height:22.500000px;}
.h13{height:31.320000px;}
.h16{height:31.356000px;}
.h15{height:31.500000px;}
.h4{height:33.000000px;}
.h12{height:44.820000px;}
.hc{height:47.144531px;}
.he{height:52.242188px;}
.hd{height:52.312500px;}
.h14{height:53.856000px;}
.h3{height:58.406250px;}
.hb{height:61.205625px;}
.ha{height:65.144531px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h11{height:211.530000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:34.200000px;}
.w1c{width:82.800000px;}
.w1d{width:84.996000px;}
.w1f{width:85.140000px;}
.w20{width:95.616000px;}
.w13{width:126.180000px;}
.w17{width:126.216000px;}
.w21{width:126.540000px;}
.w16{width:126.576000px;}
.w18{width:126.936000px;}
.w1e{width:127.296000px;}
.w12{width:133.200000px;}
.w11{width:234.075000px;}
.w14{width:252.795000px;}
.w15{width:253.110000px;}
.w10{width:255.090000px;}
.w1a{width:295.095000px;}
.w8{width:301.170000px;}
.wd{width:304.590000px;}
.w1b{width:307.290000px;}
.wf{width:318.270000px;}
.we{width:318.315000px;}
.wc{width:319.935000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wb{width:892.439987px;}
.w9{width:892.440000px;}
.wa{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x40{left:8.100000px;}
.x3f{left:14.580000px;}
.x2f{left:24.654000px;}
.x2c{left:27.360000px;}
.x3c{left:32.445000px;}
.x3d{left:34.740000px;}
.x3e{left:37.485000px;}
.x39{left:40.365000px;}
.x36{left:42.294000px;}
.x30{left:46.260000px;}
.x1f{left:56.874000px;}
.x2e{left:58.494000px;}
.x33{left:62.100000px;}
.x31{left:64.614000px;}
.x2a{left:76.350000px;}
.x34{left:85.674000px;}
.x1a{left:87.474000px;}
.x1d{left:89.994000px;}
.x28{left:93.054000px;}
.x21{left:96.834000px;}
.x2d{left:108.030000px;}
.x32{left:112.530000px;}
.x1c{left:117.360000px;}
.x22{left:122.754000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x24{left:129.099000px;}
.x35{left:132.876000px;}
.x23{left:136.440000px;}
.x19{left:138.276000px;}
.xf{left:139.355987px;}
.x20{left:140.940000px;}
.x10{left:143.315987px;}
.x1e{left:147.780000px;}
.x17{left:149.255987px;}
.x15{left:159.509987px;}
.x41{left:162.210000px;}
.x5{left:174.105000px;}
.x12{left:175.349987px;}
.x2{left:191.040000px;}
.xe{left:195.149987px;}
.x7{left:200.715000px;}
.x16{left:202.169987px;}
.x18{left:209.549987px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x42{left:245.010000px;}
.x27{left:253.289987px;}
.x37{left:259.050000px;}
.x26{left:291.825000px;}
.x25{left:295.599000px;}
.x43{left:330.015000px;}
.xc{left:340.094987px;}
.x14{left:350.174987px;}
.x13{left:360.974987px;}
.x3a{left:385.635000px;}
.x29{left:393.375000px;}
.x11{left:406.694987px;}
.xd{left:446.324987px;}
.x1b{left:458.205000px;}
.x38{left:511.845000px;}
.x44{left:542.445000px;}
.x2b{left:627.450000px;}
.x3b{left:638.790000px;}
.xb{left:746.969987px;}
.xa{left:764.969987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000003pt;}
.lsa{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.234667pt;}
.ls6{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.640000pt;}
.ls5{letter-spacing:104.448000pt;}
.lsc{letter-spacing:752.138667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws2{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.wsb{word-spacing:-0.064003pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._a{margin-left:-2.773760pt;}
._1{margin-left:-1.774933pt;}
._6{width:1.101013pt;}
._9{width:2.152107pt;}
._d{width:3.589333pt;}
._0{width:4.966400pt;}
._c{width:6.378667pt;}
._7{width:8.128000pt;}
._8{width:9.866667pt;}
._f{width:10.956587pt;}
._e{width:11.904000pt;}
._10{width:12.800000pt;}
._b{width:13.696000pt;}
._5{width:240.000000pt;}
._4{width:754.805333pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:74.880000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:4.480000pt;}
.ydb{bottom:4.640000pt;}
.yf6{bottom:6.080000pt;}
.yc{bottom:7.146667pt;}
.y122{bottom:12.480000pt;}
.y12d{bottom:12.520000pt;}
.y127{bottom:12.640000pt;}
.y112{bottom:14.560000pt;}
.y124{bottom:32.480000pt;}
.y1c{bottom:59.712000pt;}
.y14{bottom:69.080000pt;}
.y1b{bottom:87.552000pt;}
.y13{bottom:88.706667pt;}
.y18{bottom:101.040000pt;}
.y17{bottom:120.666667pt;}
.ybe{bottom:121.152000pt;}
.y69{bottom:123.712000pt;}
.y133{bottom:133.626667pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y153{bottom:139.066667pt;}
.y16{bottom:140.293333pt;}
.yd5{bottom:140.826667pt;}
.ybd{bottom:141.146667pt;}
.y68{bottom:143.546667pt;}
.y3f{bottom:146.746667pt;}
.y132{bottom:149.786667pt;}
.y170{bottom:152.506667pt;}
.y193{bottom:153.946667pt;}
.y152{bottom:158.906667pt;}
.yd4{bottom:160.666667pt;}
.ybc{bottom:160.986667pt;}
.y67{bottom:163.386667pt;}
.yad{bottom:164.026667pt;}
.y3e{bottom:166.586667pt;}
.y16f{bottom:172.346667pt;}
.y192{bottom:173.946667pt;}
.y91{bottom:174.426667pt;}
.y131{bottom:177.626667pt;}
.y151{bottom:178.906667pt;}
.ybb{bottom:180.826667pt;}
.y66{bottom:183.386667pt;}
.yac{bottom:183.866667pt;}
.y3d{bottom:186.586667pt;}
.yd3{bottom:188.506667pt;}
.y191{bottom:193.786667pt;}
.y90{bottom:194.266667pt;}
.y150{bottom:198.746667pt;}
.y16e{bottom:200.186667pt;}
.yba{bottom:200.666667pt;}
.y65{bottom:203.226667pt;}
.yab{bottom:203.706667pt;}
.y130{bottom:205.466667pt;}
.y3c{bottom:206.426667pt;}
.y110{bottom:206.906667pt;}
.y8f{bottom:214.106667pt;}
.yd2{bottom:215.866667pt;}
.y14f{bottom:218.586667pt;}
.y16d{bottom:220.186667pt;}
.y190{bottom:221.626667pt;}
.y64{bottom:223.066667pt;}
.yaa{bottom:223.706667pt;}
.yf4{bottom:223.866667pt;}
.y3b{bottom:226.266667pt;}
.yb9{bottom:228.666667pt;}
.y12f{bottom:233.306667pt;}
.y8e{bottom:234.106667pt;}
.y10f{bottom:234.906667pt;}
.y14e{bottom:238.426667pt;}
.yd1{bottom:239.066667pt;}
.y16c{bottom:240.026667pt;}
.y18f{bottom:241.466667pt;}
.y63{bottom:242.906667pt;}
.ya9{bottom:243.546667pt;}
.yf3{bottom:243.866667pt;}
.y3a{bottom:246.106667pt;}
.y8d{bottom:253.946667pt;}
.yb8{bottom:256.506667pt;}
.y14d{bottom:258.426667pt;}
.y12e{bottom:261.306667pt;}
.y10e{bottom:262.746667pt;}
.y62{bottom:262.906667pt;}
.ya8{bottom:263.386667pt;}
.yf2{bottom:263.706667pt;}
.y39{bottom:266.106667pt;}
.y16b{bottom:267.866667pt;}
.y18e{bottom:269.466667pt;}
.y8c{bottom:273.786667pt;}
.yb7{bottom:276.346667pt;}
.y14c{bottom:278.266667pt;}
.y10d{bottom:282.586667pt;}
.y61{bottom:282.746667pt;}
.ya7{bottom:283.386667pt;}
.yf1{bottom:283.546667pt;}
.y38{bottom:285.946667pt;}
.y16a{bottom:287.866667pt;}
.y12c{bottom:289.146667pt;}
.y18d{bottom:289.306667pt;}
.y14b{bottom:298.146667pt;}
.y8b{bottom:301.666667pt;}
.y10c{bottom:302.466667pt;}
.y60{bottom:302.626667pt;}
.ya6{bottom:303.266667pt;}
.yf0{bottom:303.426667pt;}
.yb6{bottom:304.226667pt;}
.y37{bottom:305.826667pt;}
.ya{bottom:306.382667pt;}
.y169{bottom:307.746667pt;}
.y18c{bottom:309.186667pt;}
.y12b{bottom:317.026667pt;}
.y14a{bottom:317.986667pt;}
.y5f{bottom:322.466667pt;}
.yef{bottom:323.426667pt;}
.yb5{bottom:324.226667pt;}
.y36{bottom:325.826667pt;}
.y168{bottom:326.946667pt;}
.y8a{bottom:329.026667pt;}
.ya5{bottom:331.106667pt;}
.y18b{bottom:337.026667pt;}
.y149{bottom:337.986667pt;}
.y10b{bottom:342.306667pt;}
.y5e{bottom:342.466667pt;}
.yee{bottom:343.266667pt;}
.yd{bottom:343.546667pt;}
.yb4{bottom:344.066667pt;}
.y12a{bottom:344.866667pt;}
.y35{bottom:345.666667pt;}
.y167{bottom:346.946667pt;}
.y89{bottom:348.866667pt;}
.ya4{bottom:350.946667pt;}
.y9{bottom:351.724000pt;}
.y18a{bottom:357.026667pt;}
.y148{bottom:357.826667pt;}
.y10a{bottom:362.146667pt;}
.yb3{bottom:363.906667pt;}
.y88{bottom:368.706667pt;}
.y5d{bottom:369.986667pt;}
.yed{bottom:370.786667pt;}
.ya3{bottom:370.946667pt;}
.y129{bottom:372.866667pt;}
.y34{bottom:373.186667pt;}
.y166{bottom:374.786667pt;}
.y147{bottom:377.666667pt;}
.y109{bottom:381.986667pt;}
.yb2{bottom:383.906667pt;}
.y189{bottom:384.866667pt;}
.yb{bottom:386.533333pt;}
.y87{bottom:388.546667pt;}
.ya2{bottom:390.786667pt;}
.y165{bottom:394.626667pt;}
.y8{bottom:397.065333pt;}
.y5c{bottom:397.346667pt;}
.y146{bottom:397.506667pt;}
.yec{bottom:398.146667pt;}
.y33{bottom:400.546667pt;}
.y128{bottom:400.706667pt;}
.y188{bottom:404.706667pt;}
.y86{bottom:409.346667pt;}
.y108{bottom:409.986667pt;}
.ya1{bottom:410.626667pt;}
.yb1{bottom:411.586667pt;}
.y164{bottom:414.466667pt;}
.yd0{bottom:417.826667pt;}
.y187{bottom:424.706667pt;}
.y5b{bottom:424.866667pt;}
.y145{bottom:425.506667pt;}
.yeb{bottom:425.666667pt;}
.y32{bottom:427.906667pt;}
.y126{bottom:428.546667pt;}
.y85{bottom:429.186667pt;}
.y107{bottom:429.826667pt;}
.ya0{bottom:430.466667pt;}
.y10{bottom:433.826667pt;}
.ycf{bottom:437.666667pt;}
.yb0{bottom:438.946667pt;}
.y7{bottom:442.406667pt;}
.y163{bottom:442.466667pt;}
.y144{bottom:445.346667pt;}
.y31{bottom:447.266667pt;}
.yea{bottom:449.026667pt;}
.y106{bottom:449.666667pt;}
.y84{bottom:449.826667pt;}
.y9f{bottom:450.466667pt;}
.y186{bottom:452.546667pt;}
.y5a{bottom:452.706667pt;}
.y125{bottom:456.546667pt;}
.yce{bottom:457.826667pt;}
.y162{bottom:462.306667pt;}
.y143{bottom:465.186667pt;}
.y30{bottom:466.626667pt;}
.yaf{bottom:466.946667pt;}
.y105{bottom:469.506667pt;}
.y83{bottom:469.666667pt;}
.y59{bottom:472.706667pt;}
.ycd{bottom:477.666667pt;}
.y9e{bottom:478.306667pt;}
.y11{bottom:478.426667pt;}
.y185{bottom:480.386667pt;}
.y161{bottom:482.146667pt;}
.y123{bottom:485.026667pt;}
.y142{bottom:485.186667pt;}
.y2f{bottom:485.986667pt;}
.y6{bottom:487.748000pt;}
.y82{bottom:489.506667pt;}
.yae{bottom:490.306667pt;}
.y58{bottom:492.546667pt;}
.ycc{bottom:497.666667pt;}
.y9d{bottom:498.146667pt;}
.y184{bottom:500.226667pt;}
.y160{bottom:501.986667pt;}
.y141{bottom:505.026667pt;}
.y2e{bottom:505.186667pt;}
.y81{bottom:509.346667pt;}
.y57{bottom:512.386667pt;}
.y9c{bottom:517.986667pt;}
.y15f{bottom:521.986667pt;}
.y19{bottom:524.093333pt;}
.y2d{bottom:524.546667pt;}
.y140{bottom:524.866667pt;}
.ycb{bottom:525.346667pt;}
.y183{bottom:528.226667pt;}
.y80{bottom:530.013333pt;}
.y56{bottom:532.253333pt;}
.y5{bottom:533.089333pt;}
.y121{bottom:533.533333pt;}
.y104{bottom:537.213333pt;}
.y9b{bottom:538.013333pt;}
.y2c{bottom:543.773333pt;}
.y13f{bottom:544.733333pt;}
.y182{bottom:548.093333pt;}
.y7f{bottom:549.853333pt;}
.y55{bottom:552.253333pt;}
.yca{bottom:552.733333pt;}
.y103{bottom:557.213333pt;}
.ye{bottom:561.706667pt;}
.y2b{bottom:563.133333pt;}
.y13e{bottom:564.733333pt;}
.y9a{bottom:565.533333pt;}
.y181{bottom:567.933333pt;}
.y7e{bottom:569.693333pt;}
.yc9{bottom:572.733333pt;}
.y102{bottom:573.213333pt;}
.y120{bottom:574.493333pt;}
.y54{bottom:580.093333pt;}
.y2a{bottom:582.333333pt;}
.y13d{bottom:584.573333pt;}
.y180{bottom:587.773333pt;}
.y15e{bottom:589.693333pt;}
.y7d{bottom:590.333333pt;}
.yc8{bottom:592.573333pt;}
.y99{bottom:592.893333pt;}
.y101{bottom:593.053333pt;}
.ye9{bottom:598.013333pt;}
.y53{bottom:599.933333pt;}
.y29{bottom:601.693333pt;}
.y11f{bottom:602.493333pt;}
.y13c{bottom:604.413333pt;}
.y15d{bottom:609.533333pt;}
.y7c{bottom:610.333333pt;}
.yc7{bottom:612.413333pt;}
.y100{bottom:612.893333pt;}
.y17f{bottom:615.773333pt;}
.ye8{bottom:617.853333pt;}
.y52{bottom:619.773333pt;}
.y98{bottom:620.093333pt;}
.y11e{bottom:622.333333pt;}
.y13b{bottom:624.253333pt;}
.y28{bottom:628.733333pt;}
.y15c{bottom:629.373333pt;}
.y7b{bottom:630.173333pt;}
.yc6{bottom:632.253333pt;}
.yff{bottom:632.893333pt;}
.y17e{bottom:635.613333pt;}
.y51{bottom:639.773333pt;}
.y11d{bottom:642.173333pt;}
.ye7{bottom:645.693333pt;}
.y97{bottom:647.773333pt;}
.y7a{bottom:650.813333pt;}
.yc5{bottom:652.253333pt;}
.yfe{bottom:652.733333pt;}
.y17d{bottom:655.453333pt;}
.y27{bottom:656.253333pt;}
.y15b{bottom:657.053333pt;}
.y50{bottom:659.613333pt;}
.y11c{bottom:662.013333pt;}
.ye6{bottom:665.533333pt;}
.y96{bottom:667.613333pt;}
.y79{bottom:670.653333pt;}
.yc4{bottom:672.093333pt;}
.yfd{bottom:672.573333pt;}
.y4f{bottom:679.453333pt;}
.y11b{bottom:682.013333pt;}
.y17c{bottom:683.453333pt;}
.y15a{bottom:684.573333pt;}
.ye5{bottom:685.533333pt;}
.y95{bottom:687.453333pt;}
.y26{bottom:688.253333pt;}
.y78{bottom:691.293333pt;}
.y4{bottom:691.756000pt;}
.yc3{bottom:691.933333pt;}
.yfc{bottom:692.413333pt;}
.y4e{bottom:699.453333pt;}
.y11a{bottom:701.853333pt;}
.y17b{bottom:703.293333pt;}
.ye4{bottom:705.373333pt;}
.y94{bottom:707.453333pt;}
.y77{bottom:711.133333pt;}
.yc2{bottom:711.773333pt;}
.y25{bottom:712.093333pt;}
.y159{bottom:712.413333pt;}
.yfb{bottom:713.053333pt;}
.y17a{bottom:723.133333pt;}
.y12{bottom:725.040000pt;}
.ye3{bottom:725.213333pt;}
.y4d{bottom:727.293333pt;}
.y119{bottom:729.693333pt;}
.y13a{bottom:731.773333pt;}
.y158{bottom:732.253333pt;}
.yfa{bottom:738.013333pt;}
.y76{bottom:739.773333pt;}
.y179{bottom:742.973333pt;}
.y24{bottom:743.933333pt;}
.ye2{bottom:745.213333pt;}
.y4c{bottom:747.133333pt;}
.y118{bottom:749.693333pt;}
.y139{bottom:751.613333pt;}
.y157{bottom:752.253333pt;}
.yf9{bottom:758.013333pt;}
.y75{bottom:759.613333pt;}
.ye1{bottom:765.053333pt;}
.y4b{bottom:767.013333pt;}
.y23{bottom:767.813333pt;}
.y117{bottom:769.573333pt;}
.y178{bottom:771.013333pt;}
.y138{bottom:771.493333pt;}
.y156{bottom:772.133333pt;}
.y74{bottom:779.493333pt;}
.ye0{bottom:781.093333pt;}
.yf8{bottom:785.893333pt;}
.y4a{bottom:787.013333pt;}
.y22{bottom:787.813333pt;}
.y116{bottom:789.413333pt;}
.y177{bottom:790.853333pt;}
.y137{bottom:791.493333pt;}
.y93{bottom:795.013333pt;}
.y73{bottom:799.493333pt;}
.y155{bottom:799.813333pt;}
.ydf{bottom:800.933333pt;}
.yf7{bottom:801.253333pt;}
.y3{bottom:805.081333pt;}
.y49{bottom:806.853333pt;}
.y176{bottom:810.693333pt;}
.y136{bottom:811.333333pt;}
.y92{bottom:814.853333pt;}
.y21{bottom:815.973333pt;}
.y115{bottom:817.093333pt;}
.y72{bottom:819.333333pt;}
.yde{bottom:820.933333pt;}
.yf5{bottom:821.093333pt;}
.y154{bottom:827.013333pt;}
.y175{bottom:830.533333pt;}
.y48{bottom:834.693333pt;}
.y20{bottom:838.533333pt;}
.y135{bottom:838.853333pt;}
.y71{bottom:839.173333pt;}
.ydd{bottom:840.773333pt;}
.y47{bottom:854.533333pt;}
.y2{bottom:857.092000pt;}
.y174{bottom:858.533333pt;}
.y70{bottom:859.013333pt;}
.ydc{bottom:860.613333pt;}
.y134{bottom:866.533333pt;}
.y1f{bottom:869.093333pt;}
.y46{bottom:874.533333pt;}
.y173{bottom:878.373333pt;}
.yc1{bottom:879.013333pt;}
.y1{bottom:879.748000pt;}
.yda{bottom:880.453333pt;}
.y6f{bottom:887.013333pt;}
.y45{bottom:894.373333pt;}
.y172{bottom:898.213333pt;}
.yc0{bottom:898.853333pt;}
.y1e{bottom:899.493333pt;}
.yd9{bottom:900.453333pt;}
.y6e{bottom:906.853333pt;}
.y44{bottom:914.213333pt;}
.ybf{bottom:918.693333pt;}
.y114{bottom:920.293333pt;}
.yd7{bottom:920.933333pt;}
.y1d{bottom:925.093333pt;}
.y171{bottom:926.053333pt;}
.y6d{bottom:926.693333pt;}
.y43{bottom:934.053333pt;}
.y111{bottom:940.773333pt;}
.yd6{bottom:946.053333pt;}
.y6c{bottom:946.533333pt;}
.y42{bottom:954.053333pt;}
.y113{bottom:960.773333pt;}
.y6b{bottom:966.533333pt;}
.y41{bottom:973.893333pt;}
.y40{bottom:993.733333pt;}
.y6a{bottom:994.053333pt;}
.y1a{bottom:1031.680000pt;}
.hf{height:19.840000pt;}
.h10{height:20.000000pt;}
.h13{height:27.840000pt;}
.h16{height:27.872000pt;}
.h15{height:28.000000pt;}
.h4{height:29.333333pt;}
.h12{height:39.840000pt;}
.hc{height:41.906250pt;}
.he{height:46.437500pt;}
.hd{height:46.500000pt;}
.h14{height:47.872000pt;}
.h3{height:51.916667pt;}
.hb{height:54.405000pt;}
.ha{height:57.906250pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h11{height:188.026667pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:30.400000pt;}
.w1c{width:73.600000pt;}
.w1d{width:75.552000pt;}
.w1f{width:75.680000pt;}
.w20{width:84.992000pt;}
.w13{width:112.160000pt;}
.w17{width:112.192000pt;}
.w21{width:112.480000pt;}
.w16{width:112.512000pt;}
.w18{width:112.832000pt;}
.w1e{width:113.152000pt;}
.w12{width:118.400000pt;}
.w11{width:208.066667pt;}
.w14{width:224.706667pt;}
.w15{width:224.986667pt;}
.w10{width:226.746667pt;}
.w1a{width:262.306667pt;}
.w8{width:267.706667pt;}
.wd{width:270.746667pt;}
.w1b{width:273.146667pt;}
.wf{width:282.906667pt;}
.we{width:282.946667pt;}
.wc{width:284.386667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wb{width:793.279988pt;}
.w9{width:793.280000pt;}
.wa{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x40{left:7.200000pt;}
.x3f{left:12.960000pt;}
.x2f{left:21.914667pt;}
.x2c{left:24.320000pt;}
.x3c{left:28.840000pt;}
.x3d{left:30.880000pt;}
.x3e{left:33.320000pt;}
.x39{left:35.880000pt;}
.x36{left:37.594667pt;}
.x30{left:41.120000pt;}
.x1f{left:50.554667pt;}
.x2e{left:51.994667pt;}
.x33{left:55.200000pt;}
.x31{left:57.434667pt;}
.x2a{left:67.866667pt;}
.x34{left:76.154667pt;}
.x1a{left:77.754667pt;}
.x1d{left:79.994667pt;}
.x28{left:82.714667pt;}
.x21{left:86.074667pt;}
.x2d{left:96.026667pt;}
.x32{left:100.026667pt;}
.x1c{left:104.320000pt;}
.x22{left:109.114667pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x24{left:114.754667pt;}
.x35{left:118.112000pt;}
.x23{left:121.280000pt;}
.x19{left:122.912000pt;}
.xf{left:123.871988pt;}
.x20{left:125.280000pt;}
.x10{left:127.391988pt;}
.x1e{left:131.360000pt;}
.x17{left:132.671988pt;}
.x15{left:141.786655pt;}
.x41{left:144.186667pt;}
.x5{left:154.760000pt;}
.x12{left:155.866655pt;}
.x2{left:169.813333pt;}
.xe{left:173.466655pt;}
.x7{left:178.413333pt;}
.x16{left:179.706655pt;}
.x18{left:186.266655pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x42{left:217.786667pt;}
.x27{left:225.146655pt;}
.x37{left:230.266667pt;}
.x26{left:259.400000pt;}
.x25{left:262.754667pt;}
.x43{left:293.346667pt;}
.xc{left:302.306655pt;}
.x14{left:311.266655pt;}
.x13{left:320.866655pt;}
.x3a{left:342.786667pt;}
.x29{left:349.666667pt;}
.x11{left:361.506655pt;}
.xd{left:396.733322pt;}
.x1b{left:407.293333pt;}
.x38{left:454.973333pt;}
.x44{left:482.173333pt;}
.x2b{left:557.733333pt;}
.x3b{left:567.813333pt;}
.xb{left:663.973322pt;}
.xa{left:679.973322pt;}
}




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