
    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_389bde1c9a1f567b7413cd88.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7582b07f77076f4451a19f41.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ca71cfbf194ff2bf7fad0a8d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4b3a4e5861b1d893142ed03e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ede91fdd52502d8a6b15f43e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6e679169fa812ec975072aed.woff')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_c03c32e2fe5b95c61e31842c.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2ba22f4e4f14f686204f3bb9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.084000px;}
.ls13{letter-spacing:-0.063600px;}
.ls5{letter-spacing:-0.052800px;}
.lse{letter-spacing:-0.049680px;}
.lsf{letter-spacing:-0.038880px;}
.ls15{letter-spacing:-0.014760px;}
.ls19{letter-spacing:-0.009000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.014760px;}
.ls10{letter-spacing:0.047520px;}
.ls9{letter-spacing:0.048960px;}
.ls16{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.lsd{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.201600px;}
.ls0{letter-spacing:13.347360px;}
.ls18{letter-spacing:48.446640px;}
.ls11{letter-spacing:54.926640px;}
.ls12{letter-spacing:68.246640px;}
.ls17{letter-spacing:81.566640px;}
.lsa{letter-spacing:100.286640px;}
.ls8{letter-spacing:143.325360px;}
.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;}
}
.ws4{word-spacing:-14.493600px;}
.ws1{word-spacing:-14.440800px;}
.ws8{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.428000px;}
.ws7{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.217400px;}
.wsd{word-spacing:-13.211640px;}
.wsa{word-spacing:-13.187520px;}
.wsb{word-spacing:-13.162800px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:147.584880px;}
._10{margin-left:-4.238065px;}
._e{margin-left:-3.173635px;}
._3{margin-left:-2.166600px;}
._0{margin-left:-1.020000px;}
._1{width:1.006812px;}
._a{width:2.404800px;}
._b{width:3.565194px;}
._4{width:4.629000px;}
._2{width:6.432600px;}
._c{width:7.912320px;}
._8{width:9.018000px;}
._9{width:10.280400px;}
._d{width:11.301001px;}
._12{width:14.248440px;}
._f{width:15.450840px;}
._5{width:16.773600px;}
._11{width:17.795520px;}
._6{width:18.937800px;}
._7{width:20.000280px;}
._18{width:21.125880px;}
._17{width:25.704218px;}
._15{width:26.813520px;}
._16{width:27.971028px;}
._14{width:36.458280px;}
._13{width:37.755360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.yae{bottom:112.620000px;}
.y64{bottom:115.050000px;}
.y134{bottom:115.230000px;}
.y84{bottom:119.010000px;}
.y2a{bottom:125.760000px;}
.y109{bottom:126.840000px;}
.yad{bottom:130.170000px;}
.y63{bottom:132.600000px;}
.y17d{bottom:133.320000px;}
.y15a{bottom:135.840000px;}
.y83{bottom:136.650000px;}
.yd8{bottom:140.880000px;}
.y29{bottom:143.400000px;}
.y108{bottom:144.390000px;}
.yac{bottom:147.810000px;}
.y62{bottom:150.240000px;}
.y133{bottom:150.780000px;}
.y159{bottom:153.480000px;}
.y93{bottom:154.200000px;}
.yd7{bottom:158.520000px;}
.y17c{bottom:159.870000px;}
.y28{bottom:160.950000px;}
.y107{bottom:161.940000px;}
.y82{bottom:163.200000px;}
.yab{bottom:165.360000px;}
.y61{bottom:167.790000px;}
.y132{bottom:168.420000px;}
.y92{bottom:171.840000px;}
.yd6{bottom:176.070000px;}
.y17b{bottom:177.510000px;}
.y27{bottom:178.500000px;}
.y158{bottom:180.030000px;}
.yaa{bottom:183.000000px;}
.y60{bottom:185.340000px;}
.y131{bottom:185.970000px;}
.y91{bottom:189.390000px;}
.yd5{bottom:193.620000px;}
.y26{bottom:196.140000px;}
.y106{bottom:197.580000px;}
.y81{bottom:198.840000px;}
.ya9{bottom:200.550000px;}
.y5f{bottom:202.980000px;}
.y17a{bottom:204.060000px;}
.y157{bottom:206.580000px;}
.y90{bottom:206.940000px;}
.yd4{bottom:211.260000px;}
.y130{bottom:212.520000px;}
.y25{bottom:213.690000px;}
.y105{bottom:215.130000px;}
.y80{bottom:216.390000px;}
.ya8{bottom:218.100000px;}
.y5e{bottom:220.530000px;}
.y156{bottom:224.220000px;}
.y8f{bottom:224.580000px;}
.yd3{bottom:228.900000px;}
.y179{bottom:230.610000px;}
.y24{bottom:231.330000px;}
.y104{bottom:232.770000px;}
.y7f{bottom:233.940000px;}
.ya7{bottom:235.740000px;}
.y5d{bottom:238.170000px;}
.y8e{bottom:242.130000px;}
.yd2{bottom:246.450000px;}
.y12f{bottom:248.160000px;}
.y178{bottom:248.250000px;}
.y23{bottom:248.880000px;}
.y103{bottom:250.320000px;}
.y155{bottom:250.770000px;}
.y7e{bottom:251.580000px;}
.ya6{bottom:253.290000px;}
.y5c{bottom:255.720000px;}
.y8d{bottom:259.680000px;}
.yd1{bottom:264.180000px;}
.y22{bottom:266.430000px;}
.y102{bottom:267.870000px;}
.y154{bottom:268.410000px;}
.y7d{bottom:269.130000px;}
.ya5{bottom:270.930000px;}
.y12e{bottom:274.710000px;}
.y177{bottom:274.800000px;}
.y8c{bottom:277.320000px;}
.yd0{bottom:281.730000px;}
.y5b{bottom:282.270000px;}
.y21{bottom:284.070000px;}
.y101{bottom:285.510000px;}
.y7c{bottom:286.680000px;}
.ya4{bottom:288.480000px;}
.y176{bottom:292.440000px;}
.y8b{bottom:294.870000px;}
.y153{bottom:294.960000px;}
.ycf{bottom:299.280000px;}
.y20{bottom:301.620000px;}
.y100{bottom:303.060000px;}
.y7b{bottom:304.320000px;}
.ya3{bottom:306.030000px;}
.y12d{bottom:310.350000px;}
.y152{bottom:312.510000px;}
.y5a{bottom:318.180000px;}
.y175{bottom:318.990000px;}
.y1f{bottom:319.260000px;}
.yff{bottom:320.700000px;}
.y8a{bottom:321.510000px;}
.y7a{bottom:321.870000px;}
.ya2{bottom:323.670000px;}
.yce{bottom:325.920000px;}
.y174{bottom:336.540000px;}
.y1e{bottom:336.810000px;}
.yfe{bottom:338.250000px;}
.y151{bottom:339.150000px;}
.y79{bottom:339.510000px;}
.ya1{bottom:341.220000px;}
.y12c{bottom:345.900000px;}
.y1d{bottom:354.360000px;}
.yfd{bottom:355.800000px;}
.y150{bottom:356.700000px;}
.y78{bottom:357.060000px;}
.ycd{bottom:358.500000px;}
.ya0{bottom:358.860000px;}
.y173{bottom:363.180000px;}
.y59{bottom:366.510000px;}
.y14f{bottom:374.340000px;}
.y77{bottom:374.610000px;}
.y9f{bottom:376.410000px;}
.y172{bottom:380.730000px;}
.y1c{bottom:381.270000px;}
.y12b{bottom:381.450000px;}
.yfc{bottom:382.440000px;}
.y58{bottom:384.060000px;}
.y76{bottom:392.250000px;}
.y9e{bottom:393.960000px;}
.ycc{bottom:394.050000px;}
.y12a{bottom:399.090000px;}
.y14e{bottom:400.890000px;}
.y57{bottom:401.610000px;}
.y171{bottom:407.370000px;}
.y75{bottom:409.800000px;}
.y9d{bottom:411.600000px;}
.ycb{bottom:411.690000px;}
.y129{bottom:416.640000px;}
.yfb{bottom:417.990000px;}
.y14d{bottom:418.440000px;}
.y56{bottom:419.250000px;}
.y170{bottom:424.920000px;}
.y74{bottom:427.440000px;}
.y9c{bottom:429.150000px;}
.yca{bottom:429.240000px;}
.y1b{bottom:429.870000px;}
.yfa{bottom:435.540000px;}
.y55{bottom:436.800000px;}
.y16f{bottom:442.470000px;}
.y73{bottom:444.990000px;}
.y14c{bottom:445.080000px;}
.y9b{bottom:446.790000px;}
.yc9{bottom:446.880000px;}
.y128{bottom:452.370000px;}
.yf9{bottom:453.180000px;}
.y54{bottom:454.440000px;}
.y72{bottom:462.540000px;}
.y14b{bottom:462.630000px;}
.yc8{bottom:464.520000px;}
.y1a{bottom:466.950000px;}
.y16e{bottom:469.110000px;}
.y127{bottom:469.950000px;}
.yf8{bottom:470.760000px;}
.y53{bottom:472.020000px;}
.y9a{bottom:473.370000px;}
.y71{bottom:480.210000px;}
.yc7{bottom:482.100000px;}
.y19{bottom:484.530000px;}
.y16d{bottom:486.690000px;}
.y126{bottom:487.500000px;}
.yf7{bottom:488.400000px;}
.y52{bottom:489.570000px;}
.y70{bottom:497.760000px;}
.yc6{bottom:499.740000px;}
.y18{bottom:502.080000px;}
.y16c{bottom:504.330000px;}
.y125{bottom:505.140000px;}
.yf6{bottom:505.950000px;}
.y51{bottom:507.210000px;}
.y99{bottom:508.920000px;}
.y6f{bottom:515.400000px;}
.yc5{bottom:517.290000px;}
.y17{bottom:519.720000px;}
.y124{bottom:522.690000px;}
.yf5{bottom:523.500000px;}
.y50{bottom:524.760000px;}
.y98{bottom:526.560000px;}
.y16b{bottom:530.880000px;}
.y6e{bottom:532.950000px;}
.yc4{bottom:534.840000px;}
.y16{bottom:537.270000px;}
.y14a{bottom:537.900000px;}
.y123{bottom:540.330000px;}
.yf4{bottom:541.140000px;}
.y4f{bottom:542.400000px;}
.y97{bottom:544.110000px;}
.y16a{bottom:548.430000px;}
.y6d{bottom:550.500000px;}
.yc3{bottom:552.480000px;}
.y15{bottom:554.910000px;}
.y122{bottom:557.880000px;}
.yf3{bottom:558.690000px;}
.y4e{bottom:559.950000px;}
.y96{bottom:561.750000px;}
.y149{bottom:564.720000px;}
.y6c{bottom:568.140000px;}
.yc2{bottom:570.030000px;}
.y14{bottom:572.460000px;}
.y169{bottom:575.070000px;}
.y121{bottom:575.430000px;}
.yf2{bottom:576.330000px;}
.y4d{bottom:577.500000px;}
.y6b{bottom:585.690000px;}
.yc1{bottom:587.670000px;}
.y13{bottom:590.010000px;}
.y168{bottom:592.620000px;}
.y120{bottom:593.070000px;}
.yf1{bottom:593.880000px;}
.y4c{bottom:595.140000px;}
.y95{bottom:597.300000px;}
.y148{bottom:602.070000px;}
.y6a{bottom:603.330000px;}
.yc0{bottom:605.310000px;}
.y12{bottom:607.650000px;}
.y167{bottom:610.260000px;}
.yf0{bottom:611.430000px;}
.y4b{bottom:612.690000px;}
.y69{bottom:620.880000px;}
.ybf{bottom:622.860000px;}
.y11{bottom:625.200000px;}
.y11f{bottom:628.620000px;}
.yef{bottom:629.070000px;}
.y94{bottom:629.520000px;}
.y4a{bottom:630.330000px;}
.y166{bottom:636.810000px;}
.y68{bottom:638.430000px;}
.y10{bottom:642.840000px;}
.y11e{bottom:646.260000px;}
.y49{bottom:647.880000px;}
.y147{bottom:650.400000px;}
.y165{bottom:654.360000px;}
.yee{bottom:655.620000px;}
.y67{bottom:656.070000px;}
.ybe{bottom:658.500000px;}
.yf{bottom:660.390000px;}
.y11d{bottom:663.810000px;}
.y48{bottom:665.430000px;}
.y146{bottom:667.950000px;}
.y66{bottom:673.620000px;}
.ybd{bottom:676.050000px;}
.ye{bottom:677.940000px;}
.y164{bottom:681.000000px;}
.y11c{bottom:681.360000px;}
.y47{bottom:683.070000px;}
.y89{bottom:691.260000px;}
.y145{bottom:694.860000px;}
.yd{bottom:695.580000px;}
.y163{bottom:698.550000px;}
.y11b{bottom:699.000000px;}
.y65{bottom:700.260000px;}
.y46{bottom:700.620000px;}
.ybc{bottom:702.690000px;}
.y88{bottom:708.810000px;}
.yc{bottom:713.130000px;}
.y11a{bottom:716.550000px;}
.y45{bottom:718.260000px;}
.y162{bottom:725.190000px;}
.y87{bottom:726.360000px;}
.y119{bottom:734.190000px;}
.y44{bottom:735.810000px;}
.ybb{bottom:738.240000px;}
.yb{bottom:740.040000px;}
.y161{bottom:742.740000px;}
.y144{bottom:743.190000px;}
.y86{bottom:744.000000px;}
.y118{bottom:751.740000px;}
.y43{bottom:753.360000px;}
.yba{bottom:755.880000px;}
.y160{bottom:760.290000px;}
.y143{bottom:760.740000px;}
.yed{bottom:761.550000px;}
.y184{bottom:769.290000px;}
.y85{bottom:770.550000px;}
.y42{bottom:771.000000px;}
.y117{bottom:778.290000px;}
.yec{bottom:779.190000px;}
.yb9{bottom:782.430000px;}
.ya{bottom:786.840000px;}
.y15f{bottom:786.930000px;}
.y41{bottom:788.550000px;}
.y142{bottom:795.930000px;}
.yeb{bottom:796.830000px;}
.y15e{bottom:804.480000px;}
.y40{bottom:806.190000px;}
.y141{bottom:813.480000px;}
.y116{bottom:813.930000px;}
.yea{bottom:814.470000px;}
.yb8{bottom:817.980000px;}
.y9{bottom:822.390000px;}
.y3f{bottom:823.740000px;}
.y140{bottom:831.030000px;}
.ye9{bottom:832.020000px;}
.yb7{bottom:835.620000px;}
.y3e{bottom:841.290000px;}
.y13f{bottom:848.670000px;}
.y115{bottom:849.480000px;}
.ye8{bottom:849.660000px;}
.y183{bottom:857.670000px;}
.y8{bottom:858.030000px;}
.y3d{bottom:858.930000px;}
.y13e{bottom:866.220000px;}
.y114{bottom:867.030000px;}
.ye7{bottom:867.210000px;}
.yb6{bottom:871.260000px;}
.y182{bottom:875.220000px;}
.y3c{bottom:876.480000px;}
.y13d{bottom:883.860000px;}
.y113{bottom:884.670000px;}
.ye6{bottom:884.850000px;}
.y15d{bottom:892.860000px;}
.y7{bottom:893.580000px;}
.y3b{bottom:894.030000px;}
.y13c{bottom:901.410000px;}
.y181{bottom:901.860000px;}
.y112{bottom:902.220000px;}
.ye5{bottom:902.490000px;}
.yb5{bottom:906.810000px;}
.y15c{bottom:910.410000px;}
.y6{bottom:911.130000px;}
.y3a{bottom:911.670000px;}
.y180{bottom:919.410000px;}
.y111{bottom:919.860000px;}
.ye4{bottom:920.130000px;}
.yb4{bottom:924.450000px;}
.y13b{bottom:927.960000px;}
.y39{bottom:929.220000px;}
.y110{bottom:937.410000px;}
.ye3{bottom:937.680000px;}
.yb3{bottom:942.000000px;}
.y17f{bottom:945.960000px;}
.y38{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.y15b{bottom:954.600000px;}
.y10f{bottom:954.960000px;}
.ye2{bottom:955.230000px;}
.yb2{bottom:959.550000px;}
.y13a{bottom:963.600000px;}
.y37{bottom:964.410000px;}
.y10e{bottom:972.600000px;}
.ye1{bottom:972.870000px;}
.yb1{bottom:977.190000px;}
.y139{bottom:981.150000px;}
.y36{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y10d{bottom:990.150000px;}
.ye0{bottom:990.420000px;}
.yb0{bottom:994.740000px;}
.y138{bottom:998.790000px;}
.y35{bottom:999.600000px;}
.y10c{bottom:1007.790000px;}
.ydf{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y34{bottom:1017.180000px;}
.yaf{bottom:1021.680000px;}
.y10b{bottom:1025.370000px;}
.yde{bottom:1025.730000px;}
.y33{bottom:1034.820000px;}
.ydd{bottom:1043.280000px;}
.y10a{bottom:1051.920000px;}
.y32{bottom:1052.370000px;}
.ydc{bottom:1060.830000px;}
.y137{bottom:1060.920000px;}
.y17e{bottom:1069.560000px;}
.y31{bottom:1069.920000px;}
.ydb{bottom:1078.470000px;}
.y136{bottom:1078.560000px;}
.y30{bottom:1087.560000px;}
.yda{bottom:1096.110000px;}
.y2f{bottom:1105.110000px;}
.yd9{bottom:1113.660000px;}
.y135{bottom:1113.750000px;}
.y2e{bottom:1122.750000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.h2{height:32.918906px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x8{left:78.659987px;}
.x6{left:95.039987px;}
.x7{left:122.039987px;}
.x5{left:184.349987px;}
.x2{left:192.719987px;}
.x4{left:745.889987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.074667pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:-0.046933pt;}
.lse{letter-spacing:-0.044160pt;}
.lsf{letter-spacing:-0.034560pt;}
.ls15{letter-spacing:-0.013120pt;}
.ls19{letter-spacing:-0.008000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.013120pt;}
.ls10{letter-spacing:0.042240pt;}
.ls9{letter-spacing:0.043520pt;}
.ls16{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.lsd{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.179200pt;}
.ls0{letter-spacing:11.864320pt;}
.ls18{letter-spacing:43.063680pt;}
.ls11{letter-spacing:48.823680pt;}
.ls12{letter-spacing:60.663680pt;}
.ls17{letter-spacing:72.503680pt;}
.lsa{letter-spacing:89.143680pt;}
.ls8{letter-spacing:127.400320pt;}
.ws4{word-spacing:-12.883200pt;}
.ws1{word-spacing:-12.836267pt;}
.ws8{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.936000pt;}
.ws7{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.748800pt;}
.wsd{word-spacing:-11.743680pt;}
.wsa{word-spacing:-11.722240pt;}
.wsb{word-spacing:-11.700267pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:131.186560pt;}
._10{margin-left:-3.767169pt;}
._e{margin-left:-2.821009pt;}
._3{margin-left:-1.925867pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.894944pt;}
._a{width:2.137600pt;}
._b{width:3.169061pt;}
._4{width:4.114666pt;}
._2{width:5.717866pt;}
._c{width:7.033173pt;}
._8{width:8.016000pt;}
._9{width:9.138133pt;}
._d{width:10.045334pt;}
._12{width:12.665280pt;}
._f{width:13.734080pt;}
._5{width:14.909867pt;}
._11{width:15.818240pt;}
._6{width:16.833600pt;}
._7{width:17.778027pt;}
._18{width:18.778560pt;}
._17{width:22.848193pt;}
._15{width:23.834240pt;}
._16{width:24.863136pt;}
._14{width:32.407360pt;}
._13{width:33.560320pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.yae{bottom:100.106667pt;}
.y64{bottom:102.266667pt;}
.y134{bottom:102.426667pt;}
.y84{bottom:105.786667pt;}
.y2a{bottom:111.786667pt;}
.y109{bottom:112.746667pt;}
.yad{bottom:115.706667pt;}
.y63{bottom:117.866667pt;}
.y17d{bottom:118.506667pt;}
.y15a{bottom:120.746667pt;}
.y83{bottom:121.466667pt;}
.yd8{bottom:125.226667pt;}
.y29{bottom:127.466667pt;}
.y108{bottom:128.346667pt;}
.yac{bottom:131.386667pt;}
.y62{bottom:133.546667pt;}
.y133{bottom:134.026667pt;}
.y159{bottom:136.426667pt;}
.y93{bottom:137.066667pt;}
.yd7{bottom:140.906667pt;}
.y17c{bottom:142.106667pt;}
.y28{bottom:143.066667pt;}
.y107{bottom:143.946667pt;}
.y82{bottom:145.066667pt;}
.yab{bottom:146.986667pt;}
.y61{bottom:149.146667pt;}
.y132{bottom:149.706667pt;}
.y92{bottom:152.746667pt;}
.yd6{bottom:156.506667pt;}
.y17b{bottom:157.786667pt;}
.y27{bottom:158.666667pt;}
.y158{bottom:160.026667pt;}
.yaa{bottom:162.666667pt;}
.y60{bottom:164.746667pt;}
.y131{bottom:165.306667pt;}
.y91{bottom:168.346667pt;}
.yd5{bottom:172.106667pt;}
.y26{bottom:174.346667pt;}
.y106{bottom:175.626667pt;}
.y81{bottom:176.746667pt;}
.ya9{bottom:178.266667pt;}
.y5f{bottom:180.426667pt;}
.y17a{bottom:181.386667pt;}
.y157{bottom:183.626667pt;}
.y90{bottom:183.946667pt;}
.yd4{bottom:187.786667pt;}
.y130{bottom:188.906667pt;}
.y25{bottom:189.946667pt;}
.y105{bottom:191.226667pt;}
.y80{bottom:192.346667pt;}
.ya8{bottom:193.866667pt;}
.y5e{bottom:196.026667pt;}
.y156{bottom:199.306667pt;}
.y8f{bottom:199.626667pt;}
.yd3{bottom:203.466667pt;}
.y179{bottom:204.986667pt;}
.y24{bottom:205.626667pt;}
.y104{bottom:206.906667pt;}
.y7f{bottom:207.946667pt;}
.ya7{bottom:209.546667pt;}
.y5d{bottom:211.706667pt;}
.y8e{bottom:215.226667pt;}
.yd2{bottom:219.066667pt;}
.y12f{bottom:220.586667pt;}
.y178{bottom:220.666667pt;}
.y23{bottom:221.226667pt;}
.y103{bottom:222.506667pt;}
.y155{bottom:222.906667pt;}
.y7e{bottom:223.626667pt;}
.ya6{bottom:225.146667pt;}
.y5c{bottom:227.306667pt;}
.y8d{bottom:230.826667pt;}
.yd1{bottom:234.826667pt;}
.y22{bottom:236.826667pt;}
.y102{bottom:238.106667pt;}
.y154{bottom:238.586667pt;}
.y7d{bottom:239.226667pt;}
.ya5{bottom:240.826667pt;}
.y12e{bottom:244.186667pt;}
.y177{bottom:244.266667pt;}
.y8c{bottom:246.506667pt;}
.yd0{bottom:250.426667pt;}
.y5b{bottom:250.906667pt;}
.y21{bottom:252.506667pt;}
.y101{bottom:253.786667pt;}
.y7c{bottom:254.826667pt;}
.ya4{bottom:256.426667pt;}
.y176{bottom:259.946667pt;}
.y8b{bottom:262.106667pt;}
.y153{bottom:262.186667pt;}
.ycf{bottom:266.026667pt;}
.y20{bottom:268.106667pt;}
.y100{bottom:269.386667pt;}
.y7b{bottom:270.506667pt;}
.ya3{bottom:272.026667pt;}
.y12d{bottom:275.866667pt;}
.y152{bottom:277.786667pt;}
.y5a{bottom:282.826667pt;}
.y175{bottom:283.546667pt;}
.y1f{bottom:283.786667pt;}
.yff{bottom:285.066667pt;}
.y8a{bottom:285.786667pt;}
.y7a{bottom:286.106667pt;}
.ya2{bottom:287.706667pt;}
.yce{bottom:289.706667pt;}
.y174{bottom:299.146667pt;}
.y1e{bottom:299.386667pt;}
.yfe{bottom:300.666667pt;}
.y151{bottom:301.466667pt;}
.y79{bottom:301.786667pt;}
.ya1{bottom:303.306667pt;}
.y12c{bottom:307.466667pt;}
.y1d{bottom:314.986667pt;}
.yfd{bottom:316.266667pt;}
.y150{bottom:317.066667pt;}
.y78{bottom:317.386667pt;}
.ycd{bottom:318.666667pt;}
.ya0{bottom:318.986667pt;}
.y173{bottom:322.826667pt;}
.y59{bottom:325.786667pt;}
.y14f{bottom:332.746667pt;}
.y77{bottom:332.986667pt;}
.y9f{bottom:334.586667pt;}
.y172{bottom:338.426667pt;}
.y1c{bottom:338.906667pt;}
.y12b{bottom:339.066667pt;}
.yfc{bottom:339.946667pt;}
.y58{bottom:341.386667pt;}
.y76{bottom:348.666667pt;}
.y9e{bottom:350.186667pt;}
.ycc{bottom:350.266667pt;}
.y12a{bottom:354.746667pt;}
.y14e{bottom:356.346667pt;}
.y57{bottom:356.986667pt;}
.y171{bottom:362.106667pt;}
.y75{bottom:364.266667pt;}
.y9d{bottom:365.866667pt;}
.ycb{bottom:365.946667pt;}
.y129{bottom:370.346667pt;}
.yfb{bottom:371.546667pt;}
.y14d{bottom:371.946667pt;}
.y56{bottom:372.666667pt;}
.y170{bottom:377.706667pt;}
.y74{bottom:379.946667pt;}
.y9c{bottom:381.466667pt;}
.yca{bottom:381.546667pt;}
.y1b{bottom:382.106667pt;}
.yfa{bottom:387.146667pt;}
.y55{bottom:388.266667pt;}
.y16f{bottom:393.306667pt;}
.y73{bottom:395.546667pt;}
.y14c{bottom:395.626667pt;}
.y9b{bottom:397.146667pt;}
.yc9{bottom:397.226667pt;}
.y128{bottom:402.106667pt;}
.yf9{bottom:402.826667pt;}
.y54{bottom:403.946667pt;}
.y72{bottom:411.146667pt;}
.y14b{bottom:411.226667pt;}
.yc8{bottom:412.906667pt;}
.y1a{bottom:415.066667pt;}
.y16e{bottom:416.986667pt;}
.y127{bottom:417.733333pt;}
.yf8{bottom:418.453333pt;}
.y53{bottom:419.573333pt;}
.y9a{bottom:420.773333pt;}
.y71{bottom:426.853333pt;}
.yc7{bottom:428.533333pt;}
.y19{bottom:430.693333pt;}
.y16d{bottom:432.613333pt;}
.y126{bottom:433.333333pt;}
.yf7{bottom:434.133333pt;}
.y52{bottom:435.173333pt;}
.y70{bottom:442.453333pt;}
.yc6{bottom:444.213333pt;}
.y18{bottom:446.293333pt;}
.y16c{bottom:448.293333pt;}
.y125{bottom:449.013333pt;}
.yf6{bottom:449.733333pt;}
.y51{bottom:450.853333pt;}
.y99{bottom:452.373333pt;}
.y6f{bottom:458.133333pt;}
.yc5{bottom:459.813333pt;}
.y17{bottom:461.973333pt;}
.y124{bottom:464.613333pt;}
.yf5{bottom:465.333333pt;}
.y50{bottom:466.453333pt;}
.y98{bottom:468.053333pt;}
.y16b{bottom:471.893333pt;}
.y6e{bottom:473.733333pt;}
.yc4{bottom:475.413333pt;}
.y16{bottom:477.573333pt;}
.y14a{bottom:478.133333pt;}
.y123{bottom:480.293333pt;}
.yf4{bottom:481.013333pt;}
.y4f{bottom:482.133333pt;}
.y97{bottom:483.653333pt;}
.y16a{bottom:487.493333pt;}
.y6d{bottom:489.333333pt;}
.yc3{bottom:491.093333pt;}
.y15{bottom:493.253333pt;}
.y122{bottom:495.893333pt;}
.yf3{bottom:496.613333pt;}
.y4e{bottom:497.733333pt;}
.y96{bottom:499.333333pt;}
.y149{bottom:501.973333pt;}
.y6c{bottom:505.013333pt;}
.yc2{bottom:506.693333pt;}
.y14{bottom:508.853333pt;}
.y169{bottom:511.173333pt;}
.y121{bottom:511.493333pt;}
.yf2{bottom:512.293333pt;}
.y4d{bottom:513.333333pt;}
.y6b{bottom:520.613333pt;}
.yc1{bottom:522.373333pt;}
.y13{bottom:524.453333pt;}
.y168{bottom:526.773333pt;}
.y120{bottom:527.173333pt;}
.yf1{bottom:527.893333pt;}
.y4c{bottom:529.013333pt;}
.y95{bottom:530.933333pt;}
.y148{bottom:535.173333pt;}
.y6a{bottom:536.293333pt;}
.yc0{bottom:538.053333pt;}
.y12{bottom:540.133333pt;}
.y167{bottom:542.453333pt;}
.yf0{bottom:543.493333pt;}
.y4b{bottom:544.613333pt;}
.y69{bottom:551.893333pt;}
.ybf{bottom:553.653333pt;}
.y11{bottom:555.733333pt;}
.y11f{bottom:558.773333pt;}
.yef{bottom:559.173333pt;}
.y94{bottom:559.573333pt;}
.y4a{bottom:560.293333pt;}
.y166{bottom:566.053333pt;}
.y68{bottom:567.493333pt;}
.y10{bottom:571.413333pt;}
.y11e{bottom:574.453333pt;}
.y49{bottom:575.893333pt;}
.y147{bottom:578.133333pt;}
.y165{bottom:581.653333pt;}
.yee{bottom:582.773333pt;}
.y67{bottom:583.173333pt;}
.ybe{bottom:585.333333pt;}
.yf{bottom:587.013333pt;}
.y11d{bottom:590.053333pt;}
.y48{bottom:591.493333pt;}
.y146{bottom:593.733333pt;}
.y66{bottom:598.773333pt;}
.ybd{bottom:600.933333pt;}
.ye{bottom:602.613333pt;}
.y164{bottom:605.333333pt;}
.y11c{bottom:605.653333pt;}
.y47{bottom:607.173333pt;}
.y89{bottom:614.453333pt;}
.y145{bottom:617.653333pt;}
.yd{bottom:618.293333pt;}
.y163{bottom:620.933333pt;}
.y11b{bottom:621.333333pt;}
.y65{bottom:622.453333pt;}
.y46{bottom:622.773333pt;}
.ybc{bottom:624.613333pt;}
.y88{bottom:630.053333pt;}
.yc{bottom:633.893333pt;}
.y11a{bottom:636.933333pt;}
.y45{bottom:638.453333pt;}
.y162{bottom:644.613333pt;}
.y87{bottom:645.653333pt;}
.y119{bottom:652.613333pt;}
.y44{bottom:654.053333pt;}
.ybb{bottom:656.213333pt;}
.yb{bottom:657.813333pt;}
.y161{bottom:660.213333pt;}
.y144{bottom:660.613333pt;}
.y86{bottom:661.333333pt;}
.y118{bottom:668.213333pt;}
.y43{bottom:669.653333pt;}
.yba{bottom:671.893333pt;}
.y160{bottom:675.813333pt;}
.y143{bottom:676.213333pt;}
.yed{bottom:676.933333pt;}
.y184{bottom:683.813333pt;}
.y85{bottom:684.933333pt;}
.y42{bottom:685.333333pt;}
.y117{bottom:691.813333pt;}
.yec{bottom:692.613333pt;}
.yb9{bottom:695.493333pt;}
.ya{bottom:699.413333pt;}
.y15f{bottom:699.493333pt;}
.y41{bottom:700.933333pt;}
.y142{bottom:707.493333pt;}
.yeb{bottom:708.293333pt;}
.y15e{bottom:715.093333pt;}
.y40{bottom:716.613333pt;}
.y141{bottom:723.093333pt;}
.y116{bottom:723.493333pt;}
.yea{bottom:723.973333pt;}
.yb8{bottom:727.093333pt;}
.y9{bottom:731.013333pt;}
.y3f{bottom:732.213333pt;}
.y140{bottom:738.693333pt;}
.ye9{bottom:739.573333pt;}
.yb7{bottom:742.773333pt;}
.y3e{bottom:747.813333pt;}
.y13f{bottom:754.373333pt;}
.y115{bottom:755.093333pt;}
.ye8{bottom:755.253333pt;}
.y183{bottom:762.373333pt;}
.y8{bottom:762.693333pt;}
.y3d{bottom:763.493333pt;}
.y13e{bottom:769.973333pt;}
.y114{bottom:770.693333pt;}
.ye7{bottom:770.853333pt;}
.yb6{bottom:774.453333pt;}
.y182{bottom:777.973333pt;}
.y3c{bottom:779.093333pt;}
.y13d{bottom:785.653333pt;}
.y113{bottom:786.373333pt;}
.ye6{bottom:786.533333pt;}
.y15d{bottom:793.653333pt;}
.y7{bottom:794.293333pt;}
.y3b{bottom:794.693333pt;}
.y13c{bottom:801.253333pt;}
.y181{bottom:801.653333pt;}
.y112{bottom:801.973333pt;}
.ye5{bottom:802.213333pt;}
.yb5{bottom:806.053333pt;}
.y15c{bottom:809.253333pt;}
.y6{bottom:809.893333pt;}
.y3a{bottom:810.373333pt;}
.y180{bottom:817.253333pt;}
.y111{bottom:817.653333pt;}
.ye4{bottom:817.893333pt;}
.yb4{bottom:821.733333pt;}
.y13b{bottom:824.853333pt;}
.y39{bottom:825.973333pt;}
.y110{bottom:833.253333pt;}
.ye3{bottom:833.493333pt;}
.yb3{bottom:837.333333pt;}
.y17f{bottom:840.853333pt;}
.y38{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.y15b{bottom:848.533333pt;}
.y10f{bottom:848.853333pt;}
.ye2{bottom:849.093333pt;}
.yb2{bottom:852.933333pt;}
.y13a{bottom:856.533333pt;}
.y37{bottom:857.253333pt;}
.y10e{bottom:864.533333pt;}
.ye1{bottom:864.773333pt;}
.yb1{bottom:868.613333pt;}
.y139{bottom:872.133333pt;}
.y36{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y10d{bottom:880.133333pt;}
.ye0{bottom:880.373333pt;}
.yb0{bottom:884.213333pt;}
.y138{bottom:887.813333pt;}
.y35{bottom:888.533333pt;}
.y10c{bottom:895.813333pt;}
.ydf{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y34{bottom:904.160000pt;}
.yaf{bottom:908.160000pt;}
.y10b{bottom:911.440000pt;}
.yde{bottom:911.760000pt;}
.y33{bottom:919.840000pt;}
.ydd{bottom:927.360000pt;}
.y10a{bottom:935.040000pt;}
.y32{bottom:935.440000pt;}
.ydc{bottom:942.960000pt;}
.y137{bottom:943.040000pt;}
.y17e{bottom:950.720000pt;}
.y31{bottom:951.040000pt;}
.ydb{bottom:958.640000pt;}
.y136{bottom:958.720000pt;}
.y30{bottom:966.720000pt;}
.yda{bottom:974.320000pt;}
.y2f{bottom:982.320000pt;}
.yd9{bottom:989.920000pt;}
.y135{bottom:990.000000pt;}
.y2e{bottom:998.000000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.h2{height:29.261250pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x8{left:69.919988pt;}
.x6{left:84.479988pt;}
.x7{left:108.479988pt;}
.x5{left:163.866655pt;}
.x2{left:171.306655pt;}
.x4{left:663.013322pt;}
.x3{left:718.773322pt;}
}




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