
    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_f0775557a2fd3df79f5c30ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_876181c52f5160ca8d0ae115.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_06d98ab5312c1f109ed619fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_1dd4b0e3c37ab8e3e113c548.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9bf2e078510441be87e3f26a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37f459d3bb5eadc156171b94.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_19ec99a890c1220736da982f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_257c0f22d55ef22398c309a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_301e8e6eb07219b3ff5c5cb2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6d88d783dcd98291852b8c26.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.513600px;}
.lsb{letter-spacing:0.828000px;}
.ls2{letter-spacing:0.900000px;}
.ls11{letter-spacing:1.080000px;}
.lsf{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.020000px;}
.ws4{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.400000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-5.171040px;}
._14{margin-left:-3.472560px;}
._8{margin-left:-2.264400px;}
._2{margin-left:-1.152000px;}
._0{width:1.185840px;}
._4{width:2.340960px;}
._5{width:4.338720px;}
._9{width:5.378400px;}
._6{width:6.863760px;}
._16{width:8.724960px;}
._10{width:10.251840px;}
._a{width:11.258880px;}
._e{width:12.908160px;}
._15{width:13.937760px;}
._f{width:16.015680px;}
._7{width:17.680560px;}
._d{width:18.929520px;}
._c{width:19.977600px;}
._1a{width:21.175920px;}
._1b{width:22.248720px;}
._13{width:25.637040px;}
._1d{width:31.047600px;}
._1c{width:32.449680px;}
._11{width:35.403840px;}
._12{width:36.978480px;}
._18{width:87.148800px;}
._b{width:98.886720px;}
._19{width:152.784000px;}
._17{width:260.921520px;}
._1{width:1100.028000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.yfc{bottom:5.760000px;}
.y3c{bottom:5.940000px;}
.y57{bottom:6.120000px;}
.yfe{bottom:6.300000px;}
.y7{bottom:8.280000px;}
.y3a{bottom:11.340000px;}
.y56{bottom:25.920000px;}
.y39{bottom:31.140000px;}
.y6{bottom:36.180000px;}
.y55{bottom:45.720000px;}
.y38{bottom:51.120000px;}
.yb{bottom:57.240000px;}
.y5{bottom:58.140000px;}
.y54{bottom:65.700000px;}
.y37{bottom:70.560000px;}
.y8e{bottom:77.220000px;}
.y19d{bottom:77.940000px;}
.y1d{bottom:79.560000px;}
.y4{bottom:81.900000px;}
.y53{bottom:85.545000px;}
.y16d{bottom:85.680000px;}
.y145{bottom:86.400000px;}
.y13b{bottom:88.380000px;}
.y123{bottom:88.560000px;}
.ybb{bottom:89.820000px;}
.y36{bottom:90.405000px;}
.yfa{bottom:95.220000px;}
.y8d{bottom:97.020000px;}
.y19c{bottom:97.740000px;}
.ye6{bottom:98.820000px;}
.y1c{bottom:99.360000px;}
.y144{bottom:102.960000px;}
.y13a{bottom:104.940000px;}
.y52{bottom:105.345000px;}
.y16c{bottom:105.480000px;}
.y122{bottom:108.360000px;}
.y9{bottom:108.750000px;}
.yba{bottom:109.800000px;}
.y35{bottom:110.205000px;}
.yf9{bottom:115.020000px;}
.y8c{bottom:116.820000px;}
.y19b{bottom:117.720000px;}
.y3{bottom:118.290000px;}
.ye5{bottom:118.800000px;}
.y1b{bottom:119.160000px;}
.y51{bottom:125.145000px;}
.y16b{bottom:125.280000px;}
.y121{bottom:128.376000px;}
.yb9{bottom:129.636000px;}
.y34{bottom:130.005000px;}
.y8{bottom:130.710000px;}
.yf8{bottom:134.856000px;}
.y8b{bottom:136.836000px;}
.y19a{bottom:137.556000px;}
.ye4{bottom:138.636000px;}
.y1a{bottom:138.996000px;}
.y50{bottom:144.945000px;}
.y16a{bottom:145.296000px;}
.y120{bottom:148.176000px;}
.yb8{bottom:149.436000px;}
.y33{bottom:149.985000px;}
.yf7{bottom:154.830000px;}
.y8a{bottom:156.630000px;}
.y199{bottom:157.350000px;}
.ye3{bottom:158.430000px;}
.y19{bottom:158.970000px;}
.y4f{bottom:164.925000px;}
.y169{bottom:165.090000px;}
.y11f{bottom:167.970000px;}
.yb7{bottom:168.870000px;}
.y32{bottom:169.785000px;}
.yf6{bottom:174.630000px;}
.y89{bottom:176.430000px;}
.y198{bottom:177.150000px;}
.ye2{bottom:178.230000px;}
.y18{bottom:178.770000px;}
.y4e{bottom:184.725000px;}
.y168{bottom:184.890000px;}
.y11e{bottom:187.770000px;}
.yb6{bottom:188.670000px;}
.y31{bottom:189.585000px;}
.yf5{bottom:194.430000px;}
.y88{bottom:196.230000px;}
.y197{bottom:196.950000px;}
.ye1{bottom:198.030000px;}
.y17{bottom:198.570000px;}
.y4d{bottom:204.525000px;}
.y167{bottom:204.690000px;}
.y11d{bottom:207.570000px;}
.y30{bottom:209.745000px;}
.yf4{bottom:214.230000px;}
.y87{bottom:216.030000px;}
.y196{bottom:216.930000px;}
.yb5{bottom:218.010000px;}
.y16{bottom:218.370000px;}
.y4c{bottom:224.325000px;}
.y166{bottom:224.490000px;}
.y11c{bottom:227.190000px;}
.y2f{bottom:229.545000px;}
.yf3{bottom:234.030000px;}
.y86{bottom:236.010000px;}
.y195{bottom:236.730000px;}
.yb4{bottom:237.810000px;}
.y15{bottom:238.170000px;}
.y11b{bottom:243.930000px;}
.y4b{bottom:244.125000px;}
.y165{bottom:244.470000px;}
.y2e{bottom:249.165000px;}
.yf2{bottom:254.010000px;}
.y85{bottom:255.450000px;}
.y194{bottom:256.530000px;}
.yb3{bottom:257.610000px;}
.y14{bottom:257.790000px;}
.y4a{bottom:264.105000px;}
.y164{bottom:264.270000px;}
.y2d{bottom:268.965000px;}
.yf1{bottom:273.810000px;}
.y193{bottom:276.330000px;}
.yb2{bottom:277.410000px;}
.y13{bottom:277.950000px;}
.y163{bottom:283.710000px;}
.y49{bottom:283.905000px;}
.y84{bottom:284.610000px;}
.y2c{bottom:288.765000px;}
.yf0{bottom:293.610000px;}
.y192{bottom:296.130000px;}
.y1e{bottom:296.850000px;}
.yb1{bottom:297.210000px;}
.y162{bottom:301.530000px;}
.y48{bottom:303.705000px;}
.y83{bottom:304.410000px;}
.y2b{bottom:308.565000px;}
.yef{bottom:313.410000px;}
.y191{bottom:316.110000px;}
.yb0{bottom:317.190000px;}
.y161{bottom:321.150000px;}
.y47{bottom:323.505000px;}
.y82{bottom:324.210000px;}
.y2a{bottom:328.365000px;}
.yee{bottom:333.210000px;}
.y190{bottom:335.910000px;}
.yaf{bottom:336.990000px;}
.y160{bottom:340.950000px;}
.y46{bottom:343.335000px;}
.y81{bottom:344.190000px;}
.y29{bottom:348.375000px;}
.yed{bottom:353.190000px;}
.y18f{bottom:355.710000px;}
.yae{bottom:356.790000px;}
.y15f{bottom:360.750000px;}
.y45{bottom:363.315000px;}
.y80{bottom:363.990000px;}
.y28{bottom:368.175000px;}
.yec{bottom:372.990000px;}
.y139{bottom:374.790000px;}
.y18e{bottom:375.510000px;}
.yad{bottom:376.230000px;}
.ye0{bottom:376.590000px;}
.y15e{bottom:380.775000px;}
.y44{bottom:383.115000px;}
.y7f{bottom:383.835000px;}
.y11a{bottom:386.895000px;}
.y27{bottom:387.975000px;}
.yeb{bottom:392.835000px;}
.y138{bottom:394.995000px;}
.y18d{bottom:395.355000px;}
.ydf{bottom:396.435000px;}
.y15d{bottom:400.575000px;}
.y43{bottom:402.915000px;}
.y7e{bottom:403.275000px;}
.yac{bottom:405.435000px;}
.y119{bottom:407.055000px;}
.y26{bottom:407.775000px;}
.yea{bottom:412.635000px;}
.y137{bottom:414.795000px;}
.y18c{bottom:415.335000px;}
.yde{bottom:416.415000px;}
.y15c{bottom:420.375000px;}
.y42{bottom:422.715000px;}
.yab{bottom:425.415000px;}
.y118{bottom:426.855000px;}
.y25{bottom:427.575000px;}
.y7d{bottom:432.435000px;}
.y136{bottom:434.595000px;}
.y18b{bottom:435.135000px;}
.ydd{bottom:436.215000px;}
.y15b{bottom:440.175000px;}
.y41{bottom:442.515000px;}
.yaa{bottom:445.215000px;}
.y117{bottom:446.655000px;}
.y24{bottom:447.555000px;}
.y7c{bottom:452.415000px;}
.y143{bottom:453.855000px;}
.y135{bottom:454.575000px;}
.y18a{bottom:454.935000px;}
.ydc{bottom:456.015000px;}
.y15a{bottom:459.975000px;}
.y40{bottom:462.495000px;}
.ya9{bottom:465.015000px;}
.y116{bottom:466.455000px;}
.y23{bottom:467.355000px;}
.y7b{bottom:472.215000px;}
.y142{bottom:474.015000px;}
.y134{bottom:474.375000px;}
.y189{bottom:474.735000px;}
.ydb{bottom:475.815000px;}
.y159{bottom:479.955000px;}
.y3f{bottom:482.295000px;}
.ya8{bottom:484.815000px;}
.y115{bottom:486.435000px;}
.y22{bottom:487.155000px;}
.y7a{bottom:492.015000px;}
.y141{bottom:493.635000px;}
.y133{bottom:494.175000px;}
.y188{bottom:494.535000px;}
.yda{bottom:495.615000px;}
.y158{bottom:499.755000px;}
.y3e{bottom:502.095000px;}
.ya7{bottom:504.615000px;}
.y114{bottom:506.235000px;}
.y21{bottom:506.955000px;}
.y140{bottom:510.195000px;}
.y79{bottom:511.815000px;}
.y132{bottom:513.975000px;}
.y187{bottom:514.515000px;}
.yd9{bottom:515.595000px;}
.y157{bottom:519.555000px;}
.y3d{bottom:521.895000px;}
.ya6{bottom:524.595000px;}
.y113{bottom:526.035000px;}
.y20{bottom:527.115000px;}
.y78{bottom:531.615000px;}
.y131{bottom:533.775000px;}
.y186{bottom:534.315000px;}
.yd8{bottom:535.395000px;}
.y156{bottom:539.355000px;}
.ya5{bottom:544.395000px;}
.y112{bottom:545.835000px;}
.y1f{bottom:547.095000px;}
.y77{bottom:551.595000px;}
.y130{bottom:553.395000px;}
.y185{bottom:554.115000px;}
.yd7{bottom:555.195000px;}
.y155{bottom:559.155000px;}
.ya4{bottom:564.195000px;}
.y111{bottom:565.635000px;}
.y12f{bottom:569.955000px;}
.y76{bottom:571.395000px;}
.y184{bottom:573.915000px;}
.yd6{bottom:574.995000px;}
.y154{bottom:579.135000px;}
.ya3{bottom:583.635000px;}
.y110{bottom:585.615000px;}
.y75{bottom:591.195000px;}
.y183{bottom:593.715000px;}
.yd5{bottom:594.795000px;}
.y153{bottom:598.935000px;}
.y10f{bottom:605.415000px;}
.y74{bottom:610.995000px;}
.ya2{bottom:612.795000px;}
.y182{bottom:613.695000px;}
.yd4{bottom:614.775000px;}
.y152{bottom:618.735000px;}
.y10e{bottom:625.215000px;}
.y73{bottom:630.795000px;}
.ya1{bottom:632.805000px;}
.y181{bottom:633.525000px;}
.yd3{bottom:634.605000px;}
.y151{bottom:638.565000px;}
.y10d{bottom:644.685000px;}
.y72{bottom:650.445000px;}
.ye9{bottom:650.805000px;}
.ya0{bottom:652.605000px;}
.y180{bottom:653.325000px;}
.yd2{bottom:654.405000px;}
.y150{bottom:658.365000px;}
.y10c{bottom:661.425000px;}
.y71{bottom:670.245000px;}
.ye8{bottom:670.605000px;}
.y9f{bottom:672.405000px;}
.y17f{bottom:673.125000px;}
.yd1{bottom:673.845000px;}
.y14f{bottom:678.345000px;}
.y70{bottom:690.405000px;}
.y9e{bottom:692.205000px;}
.y17e{bottom:692.925000px;}
.y12e{bottom:695.985000px;}
.y14e{bottom:698.145000px;}
.yd0{bottom:703.005000px;}
.y6f{bottom:710.205000px;}
.y9d{bottom:712.005000px;}
.y17d{bottom:712.905000px;}
.y12d{bottom:716.145000px;}
.y14d{bottom:717.945000px;}
.ycf{bottom:722.985000px;}
.y6e{bottom:730.005000px;}
.y9c{bottom:731.985000px;}
.y17c{bottom:732.705000px;}
.y12c{bottom:735.945000px;}
.y14c{bottom:737.745000px;}
.yce{bottom:742.785000px;}
.y6d{bottom:749.985000px;}
.y9b{bottom:751.785000px;}
.y17b{bottom:752.505000px;}
.y12b{bottom:755.925000px;}
.y14b{bottom:757.545000px;}
.ycd{bottom:762.585000px;}
.y6c{bottom:769.785000px;}
.y9a{bottom:771.225000px;}
.y17a{bottom:772.305000px;}
.y12a{bottom:775.725000px;}
.y14a{bottom:777.525000px;}
.ycc{bottom:782.385000px;}
.y6b{bottom:789.585000px;}
.y179{bottom:792.105000px;}
.y129{bottom:795.525000px;}
.y13f{bottom:797.325000px;}
.y99{bottom:800.385000px;}
.ycb{bottom:802.185000px;}
.ye7{bottom:809.025000px;}
.y6a{bottom:809.385000px;}
.y178{bottom:812.085000px;}
.y128{bottom:815.325000px;}
.y149{bottom:817.125000px;}
.y13e{bottom:817.485000px;}
.y98{bottom:820.185000px;}
.yca{bottom:821.805000px;}
.y69{bottom:829.185000px;}
.y177{bottom:831.885000px;}
.y127{bottom:835.125000px;}
.y13d{bottom:836.925000px;}
.y3b{bottom:837.645000px;}
.y10b{bottom:838.185000px;}
.y97{bottom:840.165000px;}
.y68{bottom:849.165000px;}
.yc9{bottom:850.965000px;}
.y176{bottom:851.685000px;}
.y13c{bottom:853.665000px;}
.y148{bottom:854.385000px;}
.y126{bottom:854.745000px;}
.y10a{bottom:857.985000px;}
.y96{bottom:859.965000px;}
.y67{bottom:868.965000px;}
.yc8{bottom:870.765000px;}
.y12{bottom:871.125000px;}
.y125{bottom:871.305000px;}
.y175{bottom:871.485000px;}
.y147{bottom:873.645000px;}
.y109{bottom:878.145000px;}
.y95{bottom:879.765000px;}
.y66{bottom:888.810000px;}
.y146{bottom:890.430000px;}
.yc7{bottom:890.610000px;}
.y174{bottom:891.330000px;}
.y11{bottom:896.730000px;}
.y108{bottom:897.630000px;}
.y94{bottom:899.610000px;}
.y65{bottom:908.610000px;}
.yc6{bottom:910.410000px;}
.y173{bottom:911.310000px;}
.y10{bottom:916.530000px;}
.y107{bottom:917.610000px;}
.y93{bottom:919.410000px;}
.y64{bottom:928.410000px;}
.yc5{bottom:930.390000px;}
.y172{bottom:931.110000px;}
.yf{bottom:931.470000px;}
.y106{bottom:937.410000px;}
.y92{bottom:939.390000px;}
.y63{bottom:948.390000px;}
.yc4{bottom:950.190000px;}
.y171{bottom:950.910000px;}
.ye{bottom:952.890000px;}
.y105{bottom:957.570000px;}
.y91{bottom:959.190000px;}
.y62{bottom:968.190000px;}
.yc3{bottom:969.630000px;}
.y170{bottom:970.710000px;}
.yd{bottom:976.110000px;}
.y104{bottom:977.010000px;}
.y90{bottom:978.630000px;}
.y61{bottom:987.990000px;}
.y16f{bottom:990.150000px;}
.y103{bottom:991.590000px;}
.yc2{bottom:998.790000px;}
.yc{bottom:1007.790000px;}
.y16e{bottom:1007.970000px;}
.y102{bottom:1012.650000px;}
.yc1{bottom:1018.590000px;}
.y60{bottom:1027.590000px;}
.y101{bottom:1033.530000px;}
.ya{bottom:1034.610000px;}
.yc0{bottom:1038.570000px;}
.y5f{bottom:1047.570000px;}
.y1{bottom:1051.530000px;}
.y100{bottom:1054.590000px;}
.ybf{bottom:1058.370000px;}
.y5e{bottom:1067.370000px;}
.yff{bottom:1075.470000px;}
.ybe{bottom:1078.170000px;}
.y5d{bottom:1087.170000px;}
.yfd{bottom:1096.350000px;}
.ybd{bottom:1097.970000px;}
.y124{bottom:1106.610000px;}
.y5c{bottom:1106.970000px;}
.ybc{bottom:1117.410000px;}
.y5b{bottom:1126.770000px;}
.yfb{bottom:1138.860000px;}
.y5a{bottom:1146.780000px;}
.y8f{bottom:1166.220000px;}
.y59{bottom:1166.580000px;}
.y58{bottom:1195.020000px;}
.h10{height:19.800000px;}
.h11{height:19.836000px;}
.hc{height:19.980000px;}
.h9{height:38.158594px;}
.he{height:43.215117px;}
.ha{height:58.651172px;}
.h7{height:60.226875px;}
.h12{height:61.423863px;}
.hf{height:65.884219px;}
.h8{height:66.757500px;}
.h5{height:70.664062px;}
.h3{height:73.722656px;}
.h6{height:96.508125px;}
.h4{height:105.060586px;}
.h2{height:156.810000px;}
.hd{height:535.575000px;}
.hb{height:560.775000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wa{width:91.836000px;}
.w2{width:127.656000px;}
.w9{width:140.760000px;}
.w4{width:157.170000px;}
.w8{width:224.535000px;}
.wb{width:277.815000px;}
.w6{width:285.375000px;}
.w7{width:494.745000px;}
.w3{width:499.785000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.020000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.xa{left:52.919987px;}
.x1{left:54.000000px;}
.xe{left:79.200000px;}
.x1b{left:80.999987px;}
.x7{left:102.285000px;}
.x17{left:108.035987px;}
.x2{left:115.950000px;}
.xd{left:129.995987px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x3{left:181.650000px;}
.x14{left:216.029987px;}
.xf{left:303.735000px;}
.xb{left:342.975000px;}
.x10{left:444.495000px;}
.x11{left:536.325000px;}
.x16{left:674.969987px;}
.x9{left:681.450000px;}
.x15{left:686.309987px;}
.x18{left:798.089987px;}
.x12{left:804.419987px;}
.x13{left:805.499987px;}
.x19{left:813.419987px;}
.x1a{left:815.759987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.456533pt;}
.lsb{letter-spacing:0.736000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls11{letter-spacing:0.960000pt;}
.lsf{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.240000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.800000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-4.596480pt;}
._14{margin-left:-3.086720pt;}
._8{margin-left:-2.012800pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.054080pt;}
._4{width:2.080853pt;}
._5{width:3.856640pt;}
._9{width:4.780800pt;}
._6{width:6.101120pt;}
._16{width:7.755520pt;}
._10{width:9.112747pt;}
._a{width:10.007893pt;}
._e{width:11.473920pt;}
._15{width:12.389120pt;}
._f{width:14.236160pt;}
._7{width:15.716053pt;}
._d{width:16.826240pt;}
._c{width:17.757867pt;}
._1a{width:18.823040pt;}
._1b{width:19.776640pt;}
._13{width:22.788480pt;}
._1d{width:27.597867pt;}
._1c{width:28.844160pt;}
._11{width:31.470080pt;}
._12{width:32.869760pt;}
._18{width:77.465600pt;}
._b{width:87.899307pt;}
._19{width:135.808000pt;}
._17{width:231.930240pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.yfc{bottom:5.120000pt;}
.y3c{bottom:5.280000pt;}
.y57{bottom:5.440000pt;}
.yfe{bottom:5.600000pt;}
.y7{bottom:7.360000pt;}
.y3a{bottom:10.080000pt;}
.y56{bottom:23.040000pt;}
.y39{bottom:27.680000pt;}
.y6{bottom:32.160000pt;}
.y55{bottom:40.640000pt;}
.y38{bottom:45.440000pt;}
.yb{bottom:50.880000pt;}
.y5{bottom:51.680000pt;}
.y54{bottom:58.400000pt;}
.y37{bottom:62.720000pt;}
.y8e{bottom:68.640000pt;}
.y19d{bottom:69.280000pt;}
.y1d{bottom:70.720000pt;}
.y4{bottom:72.800000pt;}
.y53{bottom:76.040000pt;}
.y16d{bottom:76.160000pt;}
.y145{bottom:76.800000pt;}
.y13b{bottom:78.560000pt;}
.y123{bottom:78.720000pt;}
.ybb{bottom:79.840000pt;}
.y36{bottom:80.360000pt;}
.yfa{bottom:84.640000pt;}
.y8d{bottom:86.240000pt;}
.y19c{bottom:86.880000pt;}
.ye6{bottom:87.840000pt;}
.y1c{bottom:88.320000pt;}
.y144{bottom:91.520000pt;}
.y13a{bottom:93.280000pt;}
.y52{bottom:93.640000pt;}
.y16c{bottom:93.760000pt;}
.y122{bottom:96.320000pt;}
.y9{bottom:96.666667pt;}
.yba{bottom:97.600000pt;}
.y35{bottom:97.960000pt;}
.yf9{bottom:102.240000pt;}
.y8c{bottom:103.840000pt;}
.y19b{bottom:104.640000pt;}
.y3{bottom:105.146667pt;}
.ye5{bottom:105.600000pt;}
.y1b{bottom:105.920000pt;}
.y51{bottom:111.240000pt;}
.y16b{bottom:111.360000pt;}
.y121{bottom:114.112000pt;}
.yb9{bottom:115.232000pt;}
.y34{bottom:115.560000pt;}
.y8{bottom:116.186667pt;}
.yf8{bottom:119.872000pt;}
.y8b{bottom:121.632000pt;}
.y19a{bottom:122.272000pt;}
.ye4{bottom:123.232000pt;}
.y1a{bottom:123.552000pt;}
.y50{bottom:128.840000pt;}
.y16a{bottom:129.152000pt;}
.y120{bottom:131.712000pt;}
.yb8{bottom:132.832000pt;}
.y33{bottom:133.320000pt;}
.yf7{bottom:137.626667pt;}
.y8a{bottom:139.226667pt;}
.y199{bottom:139.866667pt;}
.ye3{bottom:140.826667pt;}
.y19{bottom:141.306667pt;}
.y4f{bottom:146.600000pt;}
.y169{bottom:146.746667pt;}
.y11f{bottom:149.306667pt;}
.yb7{bottom:150.106667pt;}
.y32{bottom:150.920000pt;}
.yf6{bottom:155.226667pt;}
.y89{bottom:156.826667pt;}
.y198{bottom:157.466667pt;}
.ye2{bottom:158.426667pt;}
.y18{bottom:158.906667pt;}
.y4e{bottom:164.200000pt;}
.y168{bottom:164.346667pt;}
.y11e{bottom:166.906667pt;}
.yb6{bottom:167.706667pt;}
.y31{bottom:168.520000pt;}
.yf5{bottom:172.826667pt;}
.y88{bottom:174.426667pt;}
.y197{bottom:175.066667pt;}
.ye1{bottom:176.026667pt;}
.y17{bottom:176.506667pt;}
.y4d{bottom:181.800000pt;}
.y167{bottom:181.946667pt;}
.y11d{bottom:184.506667pt;}
.y30{bottom:186.440000pt;}
.yf4{bottom:190.426667pt;}
.y87{bottom:192.026667pt;}
.y196{bottom:192.826667pt;}
.yb5{bottom:193.786667pt;}
.y16{bottom:194.106667pt;}
.y4c{bottom:199.400000pt;}
.y166{bottom:199.546667pt;}
.y11c{bottom:201.946667pt;}
.y2f{bottom:204.040000pt;}
.yf3{bottom:208.026667pt;}
.y86{bottom:209.786667pt;}
.y195{bottom:210.426667pt;}
.yb4{bottom:211.386667pt;}
.y15{bottom:211.706667pt;}
.y11b{bottom:216.826667pt;}
.y4b{bottom:217.000000pt;}
.y165{bottom:217.306667pt;}
.y2e{bottom:221.480000pt;}
.yf2{bottom:225.786667pt;}
.y85{bottom:227.066667pt;}
.y194{bottom:228.026667pt;}
.yb3{bottom:228.986667pt;}
.y14{bottom:229.146667pt;}
.y4a{bottom:234.760000pt;}
.y164{bottom:234.906667pt;}
.y2d{bottom:239.080000pt;}
.yf1{bottom:243.386667pt;}
.y193{bottom:245.626667pt;}
.yb2{bottom:246.586667pt;}
.y13{bottom:247.066667pt;}
.y163{bottom:252.186667pt;}
.y49{bottom:252.360000pt;}
.y84{bottom:252.986667pt;}
.y2c{bottom:256.680000pt;}
.yf0{bottom:260.986667pt;}
.y192{bottom:263.226667pt;}
.y1e{bottom:263.866667pt;}
.yb1{bottom:264.186667pt;}
.y162{bottom:268.026667pt;}
.y48{bottom:269.960000pt;}
.y83{bottom:270.586667pt;}
.y2b{bottom:274.280000pt;}
.yef{bottom:278.586667pt;}
.y191{bottom:280.986667pt;}
.yb0{bottom:281.946667pt;}
.y161{bottom:285.466667pt;}
.y47{bottom:287.560000pt;}
.y82{bottom:288.186667pt;}
.y2a{bottom:291.880000pt;}
.yee{bottom:296.186667pt;}
.y190{bottom:298.586667pt;}
.yaf{bottom:299.546667pt;}
.y160{bottom:303.066667pt;}
.y46{bottom:305.186667pt;}
.y81{bottom:305.946667pt;}
.y29{bottom:309.666667pt;}
.yed{bottom:313.946667pt;}
.y18f{bottom:316.186667pt;}
.yae{bottom:317.146667pt;}
.y15f{bottom:320.666667pt;}
.y45{bottom:322.946667pt;}
.y80{bottom:323.546667pt;}
.y28{bottom:327.266667pt;}
.yec{bottom:331.546667pt;}
.y139{bottom:333.146667pt;}
.y18e{bottom:333.786667pt;}
.yad{bottom:334.426667pt;}
.ye0{bottom:334.746667pt;}
.y15e{bottom:338.466667pt;}
.y44{bottom:340.546667pt;}
.y7f{bottom:341.186667pt;}
.y11a{bottom:343.906667pt;}
.y27{bottom:344.866667pt;}
.yeb{bottom:349.186667pt;}
.y138{bottom:351.106667pt;}
.y18d{bottom:351.426667pt;}
.ydf{bottom:352.386667pt;}
.y15d{bottom:356.066667pt;}
.y43{bottom:358.146667pt;}
.y7e{bottom:358.466667pt;}
.yac{bottom:360.386667pt;}
.y119{bottom:361.826667pt;}
.y26{bottom:362.466667pt;}
.yea{bottom:366.786667pt;}
.y137{bottom:368.706667pt;}
.y18c{bottom:369.186667pt;}
.yde{bottom:370.146667pt;}
.y15c{bottom:373.666667pt;}
.y42{bottom:375.746667pt;}
.yab{bottom:378.146667pt;}
.y118{bottom:379.426667pt;}
.y25{bottom:380.066667pt;}
.y7d{bottom:384.386667pt;}
.y136{bottom:386.306667pt;}
.y18b{bottom:386.786667pt;}
.ydd{bottom:387.746667pt;}
.y15b{bottom:391.266667pt;}
.y41{bottom:393.346667pt;}
.yaa{bottom:395.746667pt;}
.y117{bottom:397.026667pt;}
.y24{bottom:397.826667pt;}
.y7c{bottom:402.146667pt;}
.y143{bottom:403.426667pt;}
.y135{bottom:404.066667pt;}
.y18a{bottom:404.386667pt;}
.ydc{bottom:405.346667pt;}
.y15a{bottom:408.866667pt;}
.y40{bottom:411.106667pt;}
.ya9{bottom:413.346667pt;}
.y116{bottom:414.626667pt;}
.y23{bottom:415.426667pt;}
.y7b{bottom:419.746667pt;}
.y142{bottom:421.346667pt;}
.y134{bottom:421.666667pt;}
.y189{bottom:421.986667pt;}
.ydb{bottom:422.946667pt;}
.y159{bottom:426.626667pt;}
.y3f{bottom:428.706667pt;}
.ya8{bottom:430.946667pt;}
.y115{bottom:432.386667pt;}
.y22{bottom:433.026667pt;}
.y7a{bottom:437.346667pt;}
.y141{bottom:438.786667pt;}
.y133{bottom:439.266667pt;}
.y188{bottom:439.586667pt;}
.yda{bottom:440.546667pt;}
.y158{bottom:444.226667pt;}
.y3e{bottom:446.306667pt;}
.ya7{bottom:448.546667pt;}
.y114{bottom:449.986667pt;}
.y21{bottom:450.626667pt;}
.y140{bottom:453.506667pt;}
.y79{bottom:454.946667pt;}
.y132{bottom:456.866667pt;}
.y187{bottom:457.346667pt;}
.yd9{bottom:458.306667pt;}
.y157{bottom:461.826667pt;}
.y3d{bottom:463.906667pt;}
.ya6{bottom:466.306667pt;}
.y113{bottom:467.586667pt;}
.y20{bottom:468.546667pt;}
.y78{bottom:472.546667pt;}
.y131{bottom:474.466667pt;}
.y186{bottom:474.946667pt;}
.yd8{bottom:475.906667pt;}
.y156{bottom:479.426667pt;}
.ya5{bottom:483.906667pt;}
.y112{bottom:485.186667pt;}
.y1f{bottom:486.306667pt;}
.y77{bottom:490.306667pt;}
.y130{bottom:491.906667pt;}
.y185{bottom:492.546667pt;}
.yd7{bottom:493.506667pt;}
.y155{bottom:497.026667pt;}
.ya4{bottom:501.506667pt;}
.y111{bottom:502.786667pt;}
.y12f{bottom:506.626667pt;}
.y76{bottom:507.906667pt;}
.y184{bottom:510.146667pt;}
.yd6{bottom:511.106667pt;}
.y154{bottom:514.786667pt;}
.ya3{bottom:518.786667pt;}
.y110{bottom:520.546667pt;}
.y75{bottom:525.506667pt;}
.y183{bottom:527.746667pt;}
.yd5{bottom:528.706667pt;}
.y153{bottom:532.386667pt;}
.y10f{bottom:538.146667pt;}
.y74{bottom:543.106667pt;}
.ya2{bottom:544.706667pt;}
.y182{bottom:545.506667pt;}
.yd4{bottom:546.466667pt;}
.y152{bottom:549.986667pt;}
.y10e{bottom:555.746667pt;}
.y73{bottom:560.706667pt;}
.ya1{bottom:562.493333pt;}
.y181{bottom:563.133333pt;}
.yd3{bottom:564.093333pt;}
.y151{bottom:567.613333pt;}
.y10d{bottom:573.053333pt;}
.y72{bottom:578.173333pt;}
.ye9{bottom:578.493333pt;}
.ya0{bottom:580.093333pt;}
.y180{bottom:580.733333pt;}
.yd2{bottom:581.693333pt;}
.y150{bottom:585.213333pt;}
.y10c{bottom:587.933333pt;}
.y71{bottom:595.773333pt;}
.ye8{bottom:596.093333pt;}
.y9f{bottom:597.693333pt;}
.y17f{bottom:598.333333pt;}
.yd1{bottom:598.973333pt;}
.y14f{bottom:602.973333pt;}
.y70{bottom:613.693333pt;}
.y9e{bottom:615.293333pt;}
.y17e{bottom:615.933333pt;}
.y12e{bottom:618.653333pt;}
.y14e{bottom:620.573333pt;}
.yd0{bottom:624.893333pt;}
.y6f{bottom:631.293333pt;}
.y9d{bottom:632.893333pt;}
.y17d{bottom:633.693333pt;}
.y12d{bottom:636.573333pt;}
.y14d{bottom:638.173333pt;}
.ycf{bottom:642.653333pt;}
.y6e{bottom:648.893333pt;}
.y9c{bottom:650.653333pt;}
.y17c{bottom:651.293333pt;}
.y12c{bottom:654.173333pt;}
.y14c{bottom:655.773333pt;}
.yce{bottom:660.253333pt;}
.y6d{bottom:666.653333pt;}
.y9b{bottom:668.253333pt;}
.y17b{bottom:668.893333pt;}
.y12b{bottom:671.933333pt;}
.y14b{bottom:673.373333pt;}
.ycd{bottom:677.853333pt;}
.y6c{bottom:684.253333pt;}
.y9a{bottom:685.533333pt;}
.y17a{bottom:686.493333pt;}
.y12a{bottom:689.533333pt;}
.y14a{bottom:691.133333pt;}
.ycc{bottom:695.453333pt;}
.y6b{bottom:701.853333pt;}
.y179{bottom:704.093333pt;}
.y129{bottom:707.133333pt;}
.y13f{bottom:708.733333pt;}
.y99{bottom:711.453333pt;}
.ycb{bottom:713.053333pt;}
.ye7{bottom:719.133333pt;}
.y6a{bottom:719.453333pt;}
.y178{bottom:721.853333pt;}
.y128{bottom:724.733333pt;}
.y149{bottom:726.333333pt;}
.y13e{bottom:726.653333pt;}
.y98{bottom:729.053333pt;}
.yca{bottom:730.493333pt;}
.y69{bottom:737.053333pt;}
.y177{bottom:739.453333pt;}
.y127{bottom:742.333333pt;}
.y13d{bottom:743.933333pt;}
.y3b{bottom:744.573333pt;}
.y10b{bottom:745.053333pt;}
.y97{bottom:746.813333pt;}
.y68{bottom:754.813333pt;}
.yc9{bottom:756.413333pt;}
.y176{bottom:757.053333pt;}
.y13c{bottom:758.813333pt;}
.y148{bottom:759.453333pt;}
.y126{bottom:759.773333pt;}
.y10a{bottom:762.653333pt;}
.y96{bottom:764.413333pt;}
.y67{bottom:772.413333pt;}
.yc8{bottom:774.013333pt;}
.y12{bottom:774.333333pt;}
.y125{bottom:774.493333pt;}
.y175{bottom:774.653333pt;}
.y147{bottom:776.573333pt;}
.y109{bottom:780.573333pt;}
.y95{bottom:782.013333pt;}
.y66{bottom:790.053333pt;}
.y146{bottom:791.493333pt;}
.yc7{bottom:791.653333pt;}
.y174{bottom:792.293333pt;}
.y11{bottom:797.093333pt;}
.y108{bottom:797.893333pt;}
.y94{bottom:799.653333pt;}
.y65{bottom:807.653333pt;}
.yc6{bottom:809.253333pt;}
.y173{bottom:810.053333pt;}
.y10{bottom:814.693333pt;}
.y107{bottom:815.653333pt;}
.y93{bottom:817.253333pt;}
.y64{bottom:825.253333pt;}
.yc5{bottom:827.013333pt;}
.y172{bottom:827.653333pt;}
.yf{bottom:827.973333pt;}
.y106{bottom:833.253333pt;}
.y92{bottom:835.013333pt;}
.y63{bottom:843.013333pt;}
.yc4{bottom:844.613333pt;}
.y171{bottom:845.253333pt;}
.ye{bottom:847.013333pt;}
.y105{bottom:851.173333pt;}
.y91{bottom:852.613333pt;}
.y62{bottom:860.613333pt;}
.yc3{bottom:861.893333pt;}
.y170{bottom:862.853333pt;}
.yd{bottom:867.653333pt;}
.y104{bottom:868.453333pt;}
.y90{bottom:869.893333pt;}
.y61{bottom:878.213333pt;}
.y16f{bottom:880.133333pt;}
.y103{bottom:881.413333pt;}
.yc2{bottom:887.813333pt;}
.yc{bottom:895.813333pt;}
.y16e{bottom:895.973333pt;}
.y102{bottom:900.133333pt;}
.yc1{bottom:905.413333pt;}
.y60{bottom:913.413333pt;}
.y101{bottom:918.693333pt;}
.ya{bottom:919.653333pt;}
.yc0{bottom:923.173333pt;}
.y5f{bottom:931.173333pt;}
.y1{bottom:934.693333pt;}
.y100{bottom:937.413333pt;}
.ybf{bottom:940.773333pt;}
.y5e{bottom:948.773333pt;}
.yff{bottom:955.973333pt;}
.ybe{bottom:958.373333pt;}
.y5d{bottom:966.373333pt;}
.yfd{bottom:974.533333pt;}
.ybd{bottom:975.973333pt;}
.y124{bottom:983.653333pt;}
.y5c{bottom:983.973333pt;}
.ybc{bottom:993.253333pt;}
.y5b{bottom:1001.573333pt;}
.yfb{bottom:1012.320000pt;}
.y5a{bottom:1019.360000pt;}
.y8f{bottom:1036.640000pt;}
.y59{bottom:1036.960000pt;}
.y58{bottom:1062.240000pt;}
.h10{height:17.600000pt;}
.h11{height:17.632000pt;}
.hc{height:17.760000pt;}
.h9{height:33.918750pt;}
.he{height:38.413438pt;}
.ha{height:52.134375pt;}
.h7{height:53.535000pt;}
.h12{height:54.598989pt;}
.hf{height:58.563750pt;}
.h8{height:59.340000pt;}
.h5{height:62.812500pt;}
.h3{height:65.531250pt;}
.h6{height:85.785000pt;}
.h4{height:93.387187pt;}
.h2{height:139.386667pt;}
.hd{height:476.066667pt;}
.hb{height:498.466667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wa{width:81.632000pt;}
.w2{width:113.472000pt;}
.w9{width:125.120000pt;}
.w4{width:139.706667pt;}
.w8{width:199.586667pt;}
.wb{width:246.946667pt;}
.w6{width:253.666667pt;}
.w7{width:439.773333pt;}
.w3{width:444.253333pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.240000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.xa{left:47.039988pt;}
.x1{left:48.000000pt;}
.xe{left:70.400000pt;}
.x1b{left:71.999988pt;}
.x7{left:90.920000pt;}
.x17{left:96.031988pt;}
.x2{left:103.066667pt;}
.xd{left:115.551988pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x3{left:161.466667pt;}
.x14{left:192.026655pt;}
.xf{left:269.986667pt;}
.xb{left:304.866667pt;}
.x10{left:395.106667pt;}
.x11{left:476.733333pt;}
.x16{left:599.973322pt;}
.x9{left:605.733333pt;}
.x15{left:610.053322pt;}
.x18{left:709.413322pt;}
.x12{left:715.039988pt;}
.x13{left:715.999988pt;}
.x19{left:723.039988pt;}
.x1a{left:725.119988pt;}
}




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