
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d6bb9c803080a219068034c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f7d595a98acb27517ab6d0a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7769c65df581cb86761db2e5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f72c3b071b5d70d1372e58fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_68630c1f79a25f8acde73809.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_5cf074fb810805c62548ef28.woff2')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;}
.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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.960000px;}
.lsb{letter-spacing:-0.786000px;}
.ls1b{letter-spacing:-0.544800px;}
.ls7{letter-spacing:-0.463800px;}
.ls19{letter-spacing:-0.414000px;}
.ls16{letter-spacing:-0.363000px;}
.ls18{letter-spacing:-0.268800px;}
.lsf{letter-spacing:-0.214800px;}
.ls14{letter-spacing:-0.208800px;}
.ls9{letter-spacing:-0.115800px;}
.lsd{letter-spacing:-0.069600px;}
.lse{letter-spacing:-0.064800px;}
.ls12{letter-spacing:-0.058320px;}
.ls11{letter-spacing:-0.055440px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.075000px;}
.ls17{letter-spacing:0.093000px;}
.ls8{letter-spacing:0.140400px;}
.ls4{letter-spacing:0.149760px;}
.ls13{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.179280px;}
.ls1d{letter-spacing:0.186600px;}
.ls1c{letter-spacing:0.306000px;}
.ls10{letter-spacing:0.314400px;}
.ls1a{letter-spacing:0.858000px;}
.ls5{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1f{letter-spacing:12.186720px;}
.ls1e{letter-spacing:42.426720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsa{word-spacing:-13.820160px;}
.ws12{word-spacing:-13.811760px;}
.ws11{word-spacing:-13.646160px;}
.wsf{word-spacing:-13.598760px;}
.ws5{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.450320px;}
.wsc{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.436160px;}
.ws6{word-spacing:-13.389960px;}
.wsd{word-spacing:-13.296960px;}
.ws9{word-spacing:-13.290960px;}
.ws10{word-spacing:-13.236960px;}
.wse{word-spacing:-13.142760px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1507.274160px;}
._1{margin-left:-1449.432000px;}
._2{margin-left:-1100.376000px;}
._5{margin-left:-607.374480px;}
._6{margin-left:-3.312000px;}
._10{margin-left:-2.260080px;}
._3{margin-left:-1.258560px;}
._0{width:1.394400px;}
._7{width:3.351600px;}
._8{width:4.601520px;}
._b{width:5.644080px;}
._d{width:6.789600px;}
._a{width:7.808640px;}
._9{width:9.442080px;}
._c{width:10.443120px;}
._f{width:12.168720px;}
._e{width:14.875200px;}
._15{width:16.040880px;}
._14{width:76.433040px;}
._11{width:109.599840px;}
._13{width:118.265040px;}
._12{width:134.220960px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:6.660000px;}
.y134{bottom:7.020000px;}
.yb3{bottom:8.640000px;}
.ybe{bottom:8.820000px;}
.yab{bottom:9.000000px;}
.yec{bottom:9.360000px;}
.yf8{bottom:9.540000px;}
.yb5{bottom:9.720000px;}
.yaf{bottom:9.900000px;}
.ybc{bottom:10.080000px;}
.ye7{bottom:10.260000px;}
.yef{bottom:10.620000px;}
.yb7{bottom:10.980000px;}
.yc2{bottom:11.160000px;}
.yf1{bottom:11.700000px;}
.yfc{bottom:11.745000px;}
.yf6{bottom:12.420000px;}
.y10e{bottom:12.780000px;}
.y10c{bottom:13.680000px;}
.y111{bottom:15.840000px;}
.y10a{bottom:19.620000px;}
.y133{bottom:28.080000px;}
.yaa{bottom:30.060000px;}
.yae{bottom:30.960000px;}
.ybb{bottom:31.140000px;}
.ye6{bottom:31.320000px;}
.yea{bottom:32.940000px;}
.yf5{bottom:33.480000px;}
.y130{bottom:35.460000px;}
.y132{bottom:49.500000px;}
.ya9{bottom:51.120000px;}
.yad{bottom:52.020000px;}
.yba{bottom:52.200000px;}
.ye9{bottom:53.994000px;}
.yf4{bottom:54.540000px;}
.y6{bottom:61.596000px;}
.y131{bottom:70.554000px;}
.yb9{bottom:73.290000px;}
.yf3{bottom:75.600000px;}
.y12e{bottom:92.196000px;}
.y12f{bottom:92.736000px;}
.y31{bottom:97.416000px;}
.ye8{bottom:97.596000px;}
.y11f{bottom:106.416000px;}
.y89{bottom:107.316000px;}
.y12d{bottom:113.256000px;}
.y30{bottom:118.476000px;}
.y11e{bottom:127.476000px;}
.y63{bottom:128.376000px;}
.y12c{bottom:134.316000px;}
.y2f{bottom:139.536000px;}
.y11d{bottom:148.536000px;}
.y62{bottom:149.436000px;}
.y12b{bottom:155.370000px;}
.y88{bottom:158.430000px;}
.yb6{bottom:160.050000px;}
.y2e{bottom:160.590000px;}
.y11c{bottom:169.590000px;}
.y61{bottom:170.490000px;}
.ye5{bottom:171.210000px;}
.y12a{bottom:176.430000px;}
.y87{bottom:179.490000px;}
.y2d{bottom:181.650000px;}
.y11b{bottom:190.650000px;}
.y60{bottom:191.550000px;}
.yb4{bottom:193.890000px;}
.y129{bottom:197.490000px;}
.y86{bottom:200.550000px;}
.y2c{bottom:202.710000px;}
.y11a{bottom:211.710000px;}
.y5f{bottom:212.610000px;}
.y128{bottom:218.550000px;}
.y85{bottom:221.610000px;}
.y2b{bottom:223.770000px;}
.yb2{bottom:224.130000px;}
.ye4{bottom:228.990000px;}
.y119{bottom:232.770000px;}
.y5e{bottom:233.670000px;}
.y127{bottom:239.610000px;}
.y84{bottom:242.670000px;}
.y2a{bottom:244.830000px;}
.ye3{bottom:250.050000px;}
.yb1{bottom:253.290000px;}
.y118{bottom:253.830000px;}
.y5d{bottom:254.730000px;}
.y126{bottom:260.670000px;}
.y83{bottom:263.730000px;}
.y29{bottom:265.890000px;}
.ye2{bottom:271.110000px;}
.y117{bottom:274.890000px;}
.y5c{bottom:275.790000px;}
.y125{bottom:281.775000px;}
.yac{bottom:282.855000px;}
.y28{bottom:286.995000px;}
.ye1{bottom:292.215000px;}
.y82{bottom:293.835000px;}
.y116{bottom:295.995000px;}
.y5b{bottom:296.895000px;}
.y124{bottom:302.835000px;}
.y27{bottom:307.875000px;}
.ye0{bottom:313.275000px;}
.y81{bottom:314.895000px;}
.y115{bottom:317.055000px;}
.y5a{bottom:317.955000px;}
.y123{bottom:323.895000px;}
.y26{bottom:328.935000px;}
.ydf{bottom:334.335000px;}
.y80{bottom:335.955000px;}
.y114{bottom:338.115000px;}
.y59{bottom:339.015000px;}
.y122{bottom:344.955000px;}
.y25{bottom:349.995000px;}
.yde{bottom:355.395000px;}
.y7f{bottom:357.015000px;}
.ya8{bottom:357.735000px;}
.y113{bottom:359.175000px;}
.y58{bottom:360.075000px;}
.y121{bottom:366.015000px;}
.y24{bottom:371.055000px;}
.ydd{bottom:376.455000px;}
.y7e{bottom:378.075000px;}
.y112{bottom:380.235000px;}
.y57{bottom:381.135000px;}
.y120{bottom:387.075000px;}
.y23{bottom:392.115000px;}
.y110{bottom:395.355000px;}
.ydc{bottom:397.515000px;}
.y56{bottom:402.195000px;}
.y7d{bottom:408.135000px;}
.y22{bottom:413.175000px;}
.ydb{bottom:418.575000px;}
.y55{bottom:423.255000px;}
.y7c{bottom:429.195000px;}
.y21{bottom:434.235000px;}
.ya7{bottom:435.315000px;}
.y10f{bottom:438.375000px;}
.yda{bottom:439.635000px;}
.y54{bottom:444.315000px;}
.y7b{bottom:450.255000px;}
.y20{bottom:455.295000px;}
.ya6{bottom:456.375000px;}
.yd9{bottom:460.695000px;}
.y53{bottom:465.375000px;}
.y7a{bottom:471.315000px;}
.y10d{bottom:475.275000px;}
.y1f{bottom:476.355000px;}
.ya5{bottom:477.435000px;}
.yd8{bottom:481.755000px;}
.y52{bottom:486.435000px;}
.y79{bottom:492.375000px;}
.y1e{bottom:497.415000px;}
.ya4{bottom:498.495000px;}
.yd7{bottom:502.815000px;}
.y51{bottom:507.495000px;}
.y10b{bottom:512.175000px;}
.y78{bottom:513.435000px;}
.y1d{bottom:518.475000px;}
.ya3{bottom:519.555000px;}
.yd6{bottom:523.875000px;}
.y50{bottom:528.555000px;}
.y77{bottom:534.495000px;}
.y1c{bottom:539.535000px;}
.ya2{bottom:540.615000px;}
.y109{bottom:544.575000px;}
.yd5{bottom:544.935000px;}
.y4f{bottom:549.615000px;}
.y76{bottom:555.555000px;}
.ya1{bottom:561.675000px;}
.y1b{bottom:563.115000px;}
.yd4{bottom:566.025000px;}
.y4e{bottom:570.705000px;}
.y75{bottom:576.645000px;}
.ya0{bottom:582.765000px;}
.yd3{bottom:587.085000px;}
.y108{bottom:589.605000px;}
.y4d{bottom:591.765000px;}
.y1a{bottom:593.025000px;}
.y74{bottom:597.705000px;}
.y9f{bottom:603.825000px;}
.yd2{bottom:608.145000px;}
.y107{bottom:610.665000px;}
.y4c{bottom:612.825000px;}
.y19{bottom:614.085000px;}
.y73{bottom:618.765000px;}
.y9e{bottom:624.885000px;}
.yd1{bottom:629.205000px;}
.y106{bottom:631.725000px;}
.y4b{bottom:633.885000px;}
.y18{bottom:635.145000px;}
.y72{bottom:639.825000px;}
.y9d{bottom:645.945000px;}
.yd0{bottom:650.265000px;}
.y105{bottom:652.785000px;}
.y4a{bottom:654.945000px;}
.y17{bottom:656.205000px;}
.y71{bottom:660.885000px;}
.y9c{bottom:667.005000px;}
.ycf{bottom:671.325000px;}
.y104{bottom:673.845000px;}
.y16{bottom:677.265000px;}
.y70{bottom:681.945000px;}
.y49{bottom:685.005000px;}
.y9b{bottom:688.065000px;}
.yce{bottom:692.385000px;}
.y103{bottom:694.905000px;}
.y15{bottom:698.325000px;}
.y6f{bottom:703.005000px;}
.y48{bottom:706.065000px;}
.y9a{bottom:709.125000px;}
.ycd{bottom:713.445000px;}
.y102{bottom:715.965000px;}
.y14{bottom:719.385000px;}
.y6e{bottom:724.065000px;}
.y47{bottom:727.125000px;}
.y99{bottom:730.005000px;}
.ycc{bottom:734.505000px;}
.y101{bottom:737.025000px;}
.y13{bottom:740.445000px;}
.y6d{bottom:745.125000px;}
.y46{bottom:748.005000px;}
.y98{bottom:751.065000px;}
.ycb{bottom:755.565000px;}
.y100{bottom:758.085000px;}
.y12{bottom:761.505000px;}
.y6c{bottom:766.005000px;}
.y45{bottom:769.065000px;}
.y97{bottom:772.125000px;}
.yca{bottom:776.625000px;}
.yff{bottom:779.145000px;}
.y11{bottom:782.565000px;}
.y6b{bottom:787.065000px;}
.y44{bottom:790.125000px;}
.y96{bottom:793.185000px;}
.yc9{bottom:797.685000px;}
.yfe{bottom:800.205000px;}
.y10{bottom:803.625000px;}
.y6a{bottom:808.125000px;}
.y43{bottom:811.185000px;}
.y95{bottom:814.245000px;}
.yc8{bottom:818.745000px;}
.yfd{bottom:821.265000px;}
.yf{bottom:824.685000px;}
.y69{bottom:829.185000px;}
.y94{bottom:835.305000px;}
.yfb{bottom:838.005000px;}
.yc7{bottom:839.805000px;}
.y42{bottom:841.245000px;}
.ye{bottom:847.950000px;}
.y68{bottom:850.290000px;}
.yc6{bottom:860.730000px;}
.y41{bottom:862.350000px;}
.y93{bottom:865.410000px;}
.yfa{bottom:869.550000px;}
.y67{bottom:871.350000px;}
.yd{bottom:874.230000px;}
.yc5{bottom:881.790000px;}
.y40{bottom:883.410000px;}
.y92{bottom:886.470000px;}
.y66{bottom:892.410000px;}
.yc{bottom:895.290000px;}
.yf9{bottom:897.450000px;}
.yc4{bottom:902.850000px;}
.y3f{bottom:904.470000px;}
.y91{bottom:907.530000px;}
.y65{bottom:913.470000px;}
.yb{bottom:916.350000px;}
.yc3{bottom:923.910000px;}
.yf7{bottom:924.270000px;}
.y3e{bottom:925.530000px;}
.y90{bottom:928.590000px;}
.ya{bottom:933.090000px;}
.y64{bottom:934.530000px;}
.yc1{bottom:943.710000px;}
.yf2{bottom:951.270000px;}
.y9{bottom:955.410000px;}
.y3d{bottom:955.590000px;}
.y8f{bottom:958.650000px;}
.y3c{bottom:976.650000px;}
.yc0{bottom:977.730000px;}
.y8e{bottom:979.710000px;}
.y8{bottom:980.610000px;}
.y3b{bottom:997.710000px;}
.y8d{bottom:1000.770000px;}
.ybf{bottom:1007.970000px;}
.y7{bottom:1014.270000px;}
.y3a{bottom:1018.770000px;}
.y8c{bottom:1021.830000px;}
.ybd{bottom:1037.310000px;}
.y39{bottom:1039.830000px;}
.yf0{bottom:1046.490000px;}
.y8b{bottom:1051.890000px;}
.y5{bottom:1052.610000px;}
.y38{bottom:1060.890000px;}
.yb8{bottom:1066.650000px;}
.y8a{bottom:1072.950000px;}
.yee{bottom:1077.810000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1086.810000px;}
.y36{bottom:1103.010000px;}
.yed{bottom:1105.890000px;}
.y3{bottom:1121.190000px;}
.y35{bottom:1124.070000px;}
.yeb{bottom:1132.740000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1155.420000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h24{height:2.864531px;}
.he{height:23.040000px;}
.h12{height:23.220000px;}
.hd{height:23.400000px;}
.h16{height:23.760000px;}
.h1a{height:23.940000px;}
.hf{height:24.120000px;}
.h1b{height:24.660000px;}
.h17{height:25.020000px;}
.h10{height:25.380000px;}
.h13{height:25.560000px;}
.h18{height:26.100000px;}
.h1c{height:26.136000px;}
.h1e{height:28.080000px;}
.h1f{height:33.300000px;}
.h1d{height:34.056000px;}
.h8{height:38.671172px;}
.h20{height:39.420000px;}
.h22{height:45.637031px;}
.h14{height:45.720000px;}
.ha{height:48.029766px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h21{height:61.423863px;}
.hb{height:65.520000px;}
.h4{height:65.884219px;}
.hc{height:66.420000px;}
.h7{height:67.824844px;}
.h15{height:68.400000px;}
.h3{height:71.613281px;}
.h23{height:84.960000px;}
.h11{height:87.696000px;}
.h19{height:90.000000px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:13.140000px;}
.w3{width:90.756000px;}
.wa{width:90.936000px;}
.w14{width:95.436000px;}
.w7{width:101.196000px;}
.w9{width:106.380000px;}
.wc{width:111.600000px;}
.wf{width:111.780000px;}
.w5{width:114.516000px;}
.w8{width:114.660000px;}
.we{width:115.236000px;}
.w13{width:118.980000px;}
.wb{width:122.400000px;}
.w4{width:122.580000px;}
.w12{width:123.336000px;}
.w11{width:126.540000px;}
.w10{width:148.536000px;}
.wd{width:166.170000px;}
.w15{width:202.530000px;}
.w16{width:585.465000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.440000px;}
.x18{left:2.520000px;}
.xe{left:3.780000px;}
.x19{left:5.760000px;}
.x1f{left:7.020000px;}
.x1a{left:8.094000px;}
.x22{left:9.180000px;}
.x1c{left:10.980000px;}
.xa{left:13.320000px;}
.xd{left:15.885000px;}
.x15{left:18.360000px;}
.x1e{left:20.340000px;}
.x28{left:21.780000px;}
.x11{left:22.860000px;}
.x1b{left:24.525000px;}
.x2c{left:27.360000px;}
.x1d{left:28.620000px;}
.x21{left:30.240000px;}
.x20{left:34.425000px;}
.x23{left:36.000000px;}
.x27{left:38.340000px;}
.x16{left:40.500000px;}
.x3{left:51.839987px;}
.x2{left:52.919987px;}
.x1{left:53.999987px;}
.x9{left:57.420000px;}
.x8{left:59.759987px;}
.x2a{left:60.834000px;}
.x6{left:68.399987px;}
.x7{left:70.199987px;}
.x4{left:74.519987px;}
.x5{left:75.599987px;}
.x30{left:80.999987px;}
.x24{left:95.435987px;}
.x31{left:108.035987px;}
.x29{left:139.716000px;}
.xb{left:149.256000px;}
.x32{left:190.110000px;}
.x33{left:256.530000px;}
.xc{left:271.290000px;}
.x25{left:285.915000px;}
.x2b{left:288.255000px;}
.xf{left:385.815000px;}
.x10{left:398.955000px;}
.x2d{left:414.795000px;}
.x13{left:500.145000px;}
.x2e{left:538.125000px;}
.x26{left:564.225000px;}
.x14{left:614.805000px;}
.x2f{left:657.105000px;}
.x17{left:729.330000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.853333pt;}
.lsb{letter-spacing:-0.698667pt;}
.ls1b{letter-spacing:-0.484267pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls19{letter-spacing:-0.368000pt;}
.ls16{letter-spacing:-0.322667pt;}
.ls18{letter-spacing:-0.238933pt;}
.lsf{letter-spacing:-0.190933pt;}
.ls14{letter-spacing:-0.185600pt;}
.ls9{letter-spacing:-0.102933pt;}
.lsd{letter-spacing:-0.061867pt;}
.lse{letter-spacing:-0.057600pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls11{letter-spacing:-0.049280pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.066667pt;}
.ls17{letter-spacing:0.082667pt;}
.ls8{letter-spacing:0.124800pt;}
.ls4{letter-spacing:0.133120pt;}
.ls13{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.159360pt;}
.ls1d{letter-spacing:0.165867pt;}
.ls1c{letter-spacing:0.272000pt;}
.ls10{letter-spacing:0.279467pt;}
.ls1a{letter-spacing:0.762667pt;}
.ls5{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1f{letter-spacing:10.832640pt;}
.ls1e{letter-spacing:37.712640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.284587pt;}
.ws12{word-spacing:-12.277120pt;}
.ws11{word-spacing:-12.129920pt;}
.wsf{word-spacing:-12.087787pt;}
.ws5{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.955840pt;}
.wsc{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.943253pt;}
.ws6{word-spacing:-11.902187pt;}
.wsd{word-spacing:-11.819520pt;}
.ws9{word-spacing:-11.814187pt;}
.ws10{word-spacing:-11.766187pt;}
.wse{word-spacing:-11.682453pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1339.799253pt;}
._1{margin-left:-1288.384000pt;}
._2{margin-left:-978.112000pt;}
._5{margin-left:-539.888427pt;}
._6{margin-left:-2.944000pt;}
._10{margin-left:-2.008960pt;}
._3{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._7{width:2.979200pt;}
._8{width:4.090240pt;}
._b{width:5.016960pt;}
._d{width:6.035200pt;}
._a{width:6.941013pt;}
._9{width:8.392960pt;}
._c{width:9.282773pt;}
._f{width:10.816640pt;}
._e{width:13.222400pt;}
._15{width:14.258560pt;}
._14{width:67.940480pt;}
._11{width:97.422080pt;}
._13{width:105.124480pt;}
._12{width:119.307520pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:5.920000pt;}
.y134{bottom:6.240000pt;}
.yb3{bottom:7.680000pt;}
.ybe{bottom:7.840000pt;}
.yab{bottom:8.000000pt;}
.yec{bottom:8.320000pt;}
.yf8{bottom:8.480000pt;}
.yb5{bottom:8.640000pt;}
.yaf{bottom:8.800000pt;}
.ybc{bottom:8.960000pt;}
.ye7{bottom:9.120000pt;}
.yef{bottom:9.440000pt;}
.yb7{bottom:9.760000pt;}
.yc2{bottom:9.920000pt;}
.yf1{bottom:10.400000pt;}
.yfc{bottom:10.440000pt;}
.yf6{bottom:11.040000pt;}
.y10e{bottom:11.360000pt;}
.y10c{bottom:12.160000pt;}
.y111{bottom:14.080000pt;}
.y10a{bottom:17.440000pt;}
.y133{bottom:24.960000pt;}
.yaa{bottom:26.720000pt;}
.yae{bottom:27.520000pt;}
.ybb{bottom:27.680000pt;}
.ye6{bottom:27.840000pt;}
.yea{bottom:29.280000pt;}
.yf5{bottom:29.760000pt;}
.y130{bottom:31.520000pt;}
.y132{bottom:44.000000pt;}
.ya9{bottom:45.440000pt;}
.yad{bottom:46.240000pt;}
.yba{bottom:46.400000pt;}
.ye9{bottom:47.994667pt;}
.yf4{bottom:48.480000pt;}
.y6{bottom:54.752000pt;}
.y131{bottom:62.714667pt;}
.yb9{bottom:65.146667pt;}
.yf3{bottom:67.200000pt;}
.y12e{bottom:81.952000pt;}
.y12f{bottom:82.432000pt;}
.y31{bottom:86.592000pt;}
.ye8{bottom:86.752000pt;}
.y11f{bottom:94.592000pt;}
.y89{bottom:95.392000pt;}
.y12d{bottom:100.672000pt;}
.y30{bottom:105.312000pt;}
.y11e{bottom:113.312000pt;}
.y63{bottom:114.112000pt;}
.y12c{bottom:119.392000pt;}
.y2f{bottom:124.032000pt;}
.y11d{bottom:132.032000pt;}
.y62{bottom:132.832000pt;}
.y12b{bottom:138.106667pt;}
.y88{bottom:140.826667pt;}
.yb6{bottom:142.266667pt;}
.y2e{bottom:142.746667pt;}
.y11c{bottom:150.746667pt;}
.y61{bottom:151.546667pt;}
.ye5{bottom:152.186667pt;}
.y12a{bottom:156.826667pt;}
.y87{bottom:159.546667pt;}
.y2d{bottom:161.466667pt;}
.y11b{bottom:169.466667pt;}
.y60{bottom:170.266667pt;}
.yb4{bottom:172.346667pt;}
.y129{bottom:175.546667pt;}
.y86{bottom:178.266667pt;}
.y2c{bottom:180.186667pt;}
.y11a{bottom:188.186667pt;}
.y5f{bottom:188.986667pt;}
.y128{bottom:194.266667pt;}
.y85{bottom:196.986667pt;}
.y2b{bottom:198.906667pt;}
.yb2{bottom:199.226667pt;}
.ye4{bottom:203.546667pt;}
.y119{bottom:206.906667pt;}
.y5e{bottom:207.706667pt;}
.y127{bottom:212.986667pt;}
.y84{bottom:215.706667pt;}
.y2a{bottom:217.626667pt;}
.ye3{bottom:222.266667pt;}
.yb1{bottom:225.146667pt;}
.y118{bottom:225.626667pt;}
.y5d{bottom:226.426667pt;}
.y126{bottom:231.706667pt;}
.y83{bottom:234.426667pt;}
.y29{bottom:236.346667pt;}
.ye2{bottom:240.986667pt;}
.y117{bottom:244.346667pt;}
.y5c{bottom:245.146667pt;}
.y125{bottom:250.466667pt;}
.yac{bottom:251.426667pt;}
.y28{bottom:255.106667pt;}
.ye1{bottom:259.746667pt;}
.y82{bottom:261.186667pt;}
.y116{bottom:263.106667pt;}
.y5b{bottom:263.906667pt;}
.y124{bottom:269.186667pt;}
.y27{bottom:273.666667pt;}
.ye0{bottom:278.466667pt;}
.y81{bottom:279.906667pt;}
.y115{bottom:281.826667pt;}
.y5a{bottom:282.626667pt;}
.y123{bottom:287.906667pt;}
.y26{bottom:292.386667pt;}
.ydf{bottom:297.186667pt;}
.y80{bottom:298.626667pt;}
.y114{bottom:300.546667pt;}
.y59{bottom:301.346667pt;}
.y122{bottom:306.626667pt;}
.y25{bottom:311.106667pt;}
.yde{bottom:315.906667pt;}
.y7f{bottom:317.346667pt;}
.ya8{bottom:317.986667pt;}
.y113{bottom:319.266667pt;}
.y58{bottom:320.066667pt;}
.y121{bottom:325.346667pt;}
.y24{bottom:329.826667pt;}
.ydd{bottom:334.626667pt;}
.y7e{bottom:336.066667pt;}
.y112{bottom:337.986667pt;}
.y57{bottom:338.786667pt;}
.y120{bottom:344.066667pt;}
.y23{bottom:348.546667pt;}
.y110{bottom:351.426667pt;}
.ydc{bottom:353.346667pt;}
.y56{bottom:357.506667pt;}
.y7d{bottom:362.786667pt;}
.y22{bottom:367.266667pt;}
.ydb{bottom:372.066667pt;}
.y55{bottom:376.226667pt;}
.y7c{bottom:381.506667pt;}
.y21{bottom:385.986667pt;}
.ya7{bottom:386.946667pt;}
.y10f{bottom:389.666667pt;}
.yda{bottom:390.786667pt;}
.y54{bottom:394.946667pt;}
.y7b{bottom:400.226667pt;}
.y20{bottom:404.706667pt;}
.ya6{bottom:405.666667pt;}
.yd9{bottom:409.506667pt;}
.y53{bottom:413.666667pt;}
.y7a{bottom:418.946667pt;}
.y10d{bottom:422.466667pt;}
.y1f{bottom:423.426667pt;}
.ya5{bottom:424.386667pt;}
.yd8{bottom:428.226667pt;}
.y52{bottom:432.386667pt;}
.y79{bottom:437.666667pt;}
.y1e{bottom:442.146667pt;}
.ya4{bottom:443.106667pt;}
.yd7{bottom:446.946667pt;}
.y51{bottom:451.106667pt;}
.y10b{bottom:455.266667pt;}
.y78{bottom:456.386667pt;}
.y1d{bottom:460.866667pt;}
.ya3{bottom:461.826667pt;}
.yd6{bottom:465.666667pt;}
.y50{bottom:469.826667pt;}
.y77{bottom:475.106667pt;}
.y1c{bottom:479.586667pt;}
.ya2{bottom:480.546667pt;}
.y109{bottom:484.066667pt;}
.yd5{bottom:484.386667pt;}
.y4f{bottom:488.546667pt;}
.y76{bottom:493.826667pt;}
.ya1{bottom:499.266667pt;}
.y1b{bottom:500.546667pt;}
.yd4{bottom:503.133333pt;}
.y4e{bottom:507.293333pt;}
.y75{bottom:512.573333pt;}
.ya0{bottom:518.013333pt;}
.yd3{bottom:521.853333pt;}
.y108{bottom:524.093333pt;}
.y4d{bottom:526.013333pt;}
.y1a{bottom:527.133333pt;}
.y74{bottom:531.293333pt;}
.y9f{bottom:536.733333pt;}
.yd2{bottom:540.573333pt;}
.y107{bottom:542.813333pt;}
.y4c{bottom:544.733333pt;}
.y19{bottom:545.853333pt;}
.y73{bottom:550.013333pt;}
.y9e{bottom:555.453333pt;}
.yd1{bottom:559.293333pt;}
.y106{bottom:561.533333pt;}
.y4b{bottom:563.453333pt;}
.y18{bottom:564.573333pt;}
.y72{bottom:568.733333pt;}
.y9d{bottom:574.173333pt;}
.yd0{bottom:578.013333pt;}
.y105{bottom:580.253333pt;}
.y4a{bottom:582.173333pt;}
.y17{bottom:583.293333pt;}
.y71{bottom:587.453333pt;}
.y9c{bottom:592.893333pt;}
.ycf{bottom:596.733333pt;}
.y104{bottom:598.973333pt;}
.y16{bottom:602.013333pt;}
.y70{bottom:606.173333pt;}
.y49{bottom:608.893333pt;}
.y9b{bottom:611.613333pt;}
.yce{bottom:615.453333pt;}
.y103{bottom:617.693333pt;}
.y15{bottom:620.733333pt;}
.y6f{bottom:624.893333pt;}
.y48{bottom:627.613333pt;}
.y9a{bottom:630.333333pt;}
.ycd{bottom:634.173333pt;}
.y102{bottom:636.413333pt;}
.y14{bottom:639.453333pt;}
.y6e{bottom:643.613333pt;}
.y47{bottom:646.333333pt;}
.y99{bottom:648.893333pt;}
.ycc{bottom:652.893333pt;}
.y101{bottom:655.133333pt;}
.y13{bottom:658.173333pt;}
.y6d{bottom:662.333333pt;}
.y46{bottom:664.893333pt;}
.y98{bottom:667.613333pt;}
.ycb{bottom:671.613333pt;}
.y100{bottom:673.853333pt;}
.y12{bottom:676.893333pt;}
.y6c{bottom:680.893333pt;}
.y45{bottom:683.613333pt;}
.y97{bottom:686.333333pt;}
.yca{bottom:690.333333pt;}
.yff{bottom:692.573333pt;}
.y11{bottom:695.613333pt;}
.y6b{bottom:699.613333pt;}
.y44{bottom:702.333333pt;}
.y96{bottom:705.053333pt;}
.yc9{bottom:709.053333pt;}
.yfe{bottom:711.293333pt;}
.y10{bottom:714.333333pt;}
.y6a{bottom:718.333333pt;}
.y43{bottom:721.053333pt;}
.y95{bottom:723.773333pt;}
.yc8{bottom:727.773333pt;}
.yfd{bottom:730.013333pt;}
.yf{bottom:733.053333pt;}
.y69{bottom:737.053333pt;}
.y94{bottom:742.493333pt;}
.yfb{bottom:744.893333pt;}
.yc7{bottom:746.493333pt;}
.y42{bottom:747.773333pt;}
.ye{bottom:753.733333pt;}
.y68{bottom:755.813333pt;}
.yc6{bottom:765.093333pt;}
.y41{bottom:766.533333pt;}
.y93{bottom:769.253333pt;}
.yfa{bottom:772.933333pt;}
.y67{bottom:774.533333pt;}
.yd{bottom:777.093333pt;}
.yc5{bottom:783.813333pt;}
.y40{bottom:785.253333pt;}
.y92{bottom:787.973333pt;}
.y66{bottom:793.253333pt;}
.yc{bottom:795.813333pt;}
.yf9{bottom:797.733333pt;}
.yc4{bottom:802.533333pt;}
.y3f{bottom:803.973333pt;}
.y91{bottom:806.693333pt;}
.y65{bottom:811.973333pt;}
.yb{bottom:814.533333pt;}
.yc3{bottom:821.253333pt;}
.yf7{bottom:821.573333pt;}
.y3e{bottom:822.693333pt;}
.y90{bottom:825.413333pt;}
.ya{bottom:829.413333pt;}
.y64{bottom:830.693333pt;}
.yc1{bottom:838.853333pt;}
.yf2{bottom:845.573333pt;}
.y9{bottom:849.253333pt;}
.y3d{bottom:849.413333pt;}
.y8f{bottom:852.133333pt;}
.y3c{bottom:868.133333pt;}
.yc0{bottom:869.093333pt;}
.y8e{bottom:870.853333pt;}
.y8{bottom:871.653333pt;}
.y3b{bottom:886.853333pt;}
.y8d{bottom:889.573333pt;}
.ybf{bottom:895.973333pt;}
.y7{bottom:901.573333pt;}
.y3a{bottom:905.573333pt;}
.y8c{bottom:908.293333pt;}
.ybd{bottom:922.053333pt;}
.y39{bottom:924.293333pt;}
.yf0{bottom:930.213333pt;}
.y8b{bottom:935.013333pt;}
.y5{bottom:935.653333pt;}
.y38{bottom:943.013333pt;}
.yb8{bottom:948.133333pt;}
.y8a{bottom:953.733333pt;}
.yee{bottom:958.053333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:966.053333pt;}
.y36{bottom:980.453333pt;}
.yed{bottom:983.013333pt;}
.y3{bottom:996.613333pt;}
.y35{bottom:999.173333pt;}
.yeb{bottom:1006.880000pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1027.040000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h24{height:2.546250pt;}
.he{height:20.480000pt;}
.h12{height:20.640000pt;}
.hd{height:20.800000pt;}
.h16{height:21.120000pt;}
.h1a{height:21.280000pt;}
.hf{height:21.440000pt;}
.h1b{height:21.920000pt;}
.h17{height:22.240000pt;}
.h10{height:22.560000pt;}
.h13{height:22.720000pt;}
.h18{height:23.200000pt;}
.h1c{height:23.232000pt;}
.h1e{height:24.960000pt;}
.h1f{height:29.600000pt;}
.h1d{height:30.272000pt;}
.h8{height:34.374375pt;}
.h20{height:35.040000pt;}
.h22{height:40.566250pt;}
.h14{height:40.640000pt;}
.ha{height:42.693125pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h21{height:54.598989pt;}
.hb{height:58.240000pt;}
.h4{height:58.563750pt;}
.hc{height:59.040000pt;}
.h7{height:60.288750pt;}
.h15{height:60.800000pt;}
.h3{height:63.656250pt;}
.h23{height:75.520000pt;}
.h11{height:77.952000pt;}
.h19{height:80.000000pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:11.680000pt;}
.w3{width:80.672000pt;}
.wa{width:80.832000pt;}
.w14{width:84.832000pt;}
.w7{width:89.952000pt;}
.w9{width:94.560000pt;}
.wc{width:99.200000pt;}
.wf{width:99.360000pt;}
.w5{width:101.792000pt;}
.w8{width:101.920000pt;}
.we{width:102.432000pt;}
.w13{width:105.760000pt;}
.wb{width:108.800000pt;}
.w4{width:108.960000pt;}
.w12{width:109.632000pt;}
.w11{width:112.480000pt;}
.w10{width:132.032000pt;}
.wd{width:147.706667pt;}
.w15{width:180.026667pt;}
.w16{width:520.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.280000pt;}
.x18{left:2.240000pt;}
.xe{left:3.360000pt;}
.x19{left:5.120000pt;}
.x1f{left:6.240000pt;}
.x1a{left:7.194667pt;}
.x22{left:8.160000pt;}
.x1c{left:9.760000pt;}
.xa{left:11.840000pt;}
.xd{left:14.120000pt;}
.x15{left:16.320000pt;}
.x1e{left:18.080000pt;}
.x28{left:19.360000pt;}
.x11{left:20.320000pt;}
.x1b{left:21.800000pt;}
.x2c{left:24.320000pt;}
.x1d{left:25.440000pt;}
.x21{left:26.880000pt;}
.x20{left:30.600000pt;}
.x23{left:32.000000pt;}
.x27{left:34.080000pt;}
.x16{left:36.000000pt;}
.x3{left:46.079988pt;}
.x2{left:47.039988pt;}
.x1{left:47.999988pt;}
.x9{left:51.040000pt;}
.x8{left:53.119988pt;}
.x2a{left:54.074667pt;}
.x6{left:60.799988pt;}
.x7{left:62.399988pt;}
.x4{left:66.239988pt;}
.x5{left:67.199988pt;}
.x30{left:71.999988pt;}
.x24{left:84.831988pt;}
.x31{left:96.031988pt;}
.x29{left:124.192000pt;}
.xb{left:132.672000pt;}
.x32{left:168.986667pt;}
.x33{left:228.026667pt;}
.xc{left:241.146667pt;}
.x25{left:254.146667pt;}
.x2b{left:256.226667pt;}
.xf{left:342.946667pt;}
.x10{left:354.626667pt;}
.x2d{left:368.706667pt;}
.x13{left:444.573333pt;}
.x2e{left:478.333333pt;}
.x26{left:501.533333pt;}
.x14{left:546.493333pt;}
.x2f{left:584.093333pt;}
.x17{left:648.293333pt;}
}




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