
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7522053bf777f1fe1b440e4d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4aa1f4e638c08f054f35956c.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_8d04a257cb5a444cc7076996.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_20332e61aac938b42a9a47da.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d1fd1d1c0c922c93b6aa98c5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_4a82496a24898db58cf27dd9.woff')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.513600px;}
.ls10{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls15{letter-spacing:-0.117600px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.108600px;}
.ls11{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.160800px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.387200px;}
.wsc{word-spacing:-13.369800px;}
.wsd{word-spacing:-13.335000px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws8{word-spacing:-13.039800px;}
.wse{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._e{margin-left:-3.699239px;}
._b{margin-left:-2.645400px;}
._0{margin-left:-1.110000px;}
._2{width:1.049520px;}
._5{width:2.429761px;}
._4{width:3.670440px;}
._c{width:5.206560px;}
._7{width:7.206240px;}
._6{width:8.364960px;}
._a{width:10.188000px;}
._8{width:11.691000px;}
._9{width:15.055202px;}
._f{width:17.314560px;}
._d{width:19.118160px;}
._3{width:20.466552px;}
._13{width:25.875360px;}
._14{width:27.240240px;}
._15{width:29.218320px;}
._16{width:30.466680px;}
._11{width:35.951760px;}
._10{width:57.294360px;}
._1{width:59.490360px;}
._12{width:69.979680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:7.830000px;}
.ya9{bottom:7.860000px;}
.ya4{bottom:7.920000px;}
.yfb{bottom:25.470000px;}
.ye4{bottom:35.190000px;}
.yfc{bottom:52.830000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.yf9{bottom:97.740000px;}
.y1{bottom:101.640000px;}
.ye9{bottom:112.620000px;}
.y96{bottom:122.970000px;}
.y70{bottom:127.650000px;}
.y136{bottom:129.540000px;}
.y5b{bottom:130.170000px;}
.y28{bottom:135.300000px;}
.y95{bottom:140.520000px;}
.y6f{bottom:145.290000px;}
.y135{bottom:147.090000px;}
.yb8{bottom:147.360000px;}
.y5a{bottom:147.720000px;}
.ye8{bottom:147.810000px;}
.y10c{bottom:151.140000px;}
.y27{bottom:152.850000px;}
.y94{bottom:158.160000px;}
.y6e{bottom:162.840000px;}
.y134{bottom:164.730000px;}
.yb7{bottom:164.910000px;}
.y59{bottom:165.270000px;}
.y93{bottom:175.710000px;}
.y6d{bottom:180.480000px;}
.ye7{bottom:180.750000px;}
.yb6{bottom:182.550000px;}
.y58{bottom:182.910000px;}
.y10b{bottom:186.690000px;}
.y26{bottom:188.400000px;}
.y133{bottom:191.280000px;}
.y92{bottom:193.260000px;}
.y6c{bottom:198.030000px;}
.yb5{bottom:200.100000px;}
.y25{bottom:206.040000px;}
.ye6{bottom:208.110000px;}
.y132{bottom:208.830000px;}
.y57{bottom:209.460000px;}
.y91{bottom:210.900000px;}
.y6b{bottom:215.580000px;}
.yb4{bottom:217.650000px;}
.y10a{bottom:222.330000px;}
.y24{bottom:223.590000px;}
.y90{bottom:228.450000px;}
.yb3{bottom:235.290000px;}
.ye3{bottom:235.470000px;}
.y109{bottom:239.880000px;}
.y23{bottom:241.230000px;}
.y56{bottom:245.370000px;}
.y8f{bottom:246.000000px;}
.y6a{bottom:251.220000px;}
.yb2{bottom:252.840000px;}
.y131{bottom:253.020000px;}
.y108{bottom:257.520000px;}
.y22{bottom:258.780000px;}
.ye5{bottom:262.740000px;}
.y8e{bottom:263.640000px;}
.yb1{bottom:270.480000px;}
.y107{bottom:275.070000px;}
.y21{bottom:276.330000px;}
.y130{bottom:279.660000px;}
.y8d{bottom:281.190000px;}
.y69{bottom:283.440000px;}
.yb0{bottom:288.030000px;}
.ye2{bottom:290.100000px;}
.y106{bottom:292.620000px;}
.y55{bottom:293.610000px;}
.y12f{bottom:297.210000px;}
.y8c{bottom:298.830000px;}
.y20{bottom:303.240000px;}
.yaf{bottom:305.580000px;}
.y105{bottom:310.260000px;}
.y54{bottom:311.250000px;}
.yae{bottom:323.220000px;}
.y12e{bottom:323.760000px;}
.y104{bottom:327.810000px;}
.y53{bottom:328.800000px;}
.y8b{bottom:334.380000px;}
.ye1{bottom:338.790000px;}
.y12d{bottom:341.400000px;}
.y103{bottom:345.450000px;}
.y52{bottom:346.440000px;}
.y1f{bottom:351.840000px;}
.yad{bottom:356.160000px;}
.y102{bottom:363.000000px;}
.y51{bottom:363.990000px;}
.y8a{bottom:366.600000px;}
.y12c{bottom:367.950000px;}
.ye0{bottom:374.430000px;}
.yd6{bottom:374.970000px;}
.y7e{bottom:376.230000px;}
.y50{bottom:381.540000px;}
.yac{bottom:383.520000px;}
.y1e{bottom:388.920000px;}
.y101{bottom:389.910000px;}
.ydf{bottom:391.980000px;}
.yd5{bottom:392.520000px;}
.y7d{bottom:393.780000px;}
.y12b{bottom:394.590000px;}
.y4f{bottom:399.180000px;}
.y1d{bottom:406.470000px;}
.yde{bottom:409.530000px;}
.yd4{bottom:410.070000px;}
.yab{bottom:410.880000px;}
.y7c{bottom:411.420000px;}
.y12a{bottom:412.140000px;}
.y1c{bottom:424.020000px;}
.ydd{bottom:427.170000px;}
.yd3{bottom:427.710000px;}
.y7b{bottom:428.970000px;}
.y129{bottom:429.690000px;}
.y4e{bottom:434.730000px;}
.yaa{bottom:438.150000px;}
.y1b{bottom:441.660000px;}
.ydc{bottom:444.720000px;}
.yd2{bottom:445.260000px;}
.y7a{bottom:446.520000px;}
.y4d{bottom:452.370000px;}
.y100{bottom:455.790000px;}
.y128{bottom:456.330000px;}
.y1a{bottom:459.210000px;}
.y79{bottom:464.160000px;}
.ya8{bottom:465.510000px;}
.y4c{bottom:469.950000px;}
.y127{bottom:473.910000px;}
.y19{bottom:476.880000px;}
.ydb{bottom:477.330000px;}
.yd1{bottom:478.230000px;}
.y78{bottom:481.740000px;}
.y4b{bottom:487.500000px;}
.yff{bottom:491.370000px;}
.ya6{bottom:492.900000px;}
.y18{bottom:494.430000px;}
.y77{bottom:499.290000px;}
.y126{bottom:500.550000px;}
.y4a{bottom:505.140000px;}
.yd0{bottom:505.590000px;}
.yfe{bottom:506.310000px;}
.yda{bottom:509.550000px;}
.y17{bottom:511.980000px;}
.y125{bottom:518.100000px;}
.ya5{bottom:520.170000px;}
.y49{bottom:522.690000px;}
.y16{bottom:529.620000px;}
.ycf{bottom:532.950000px;}
.yf8{bottom:533.670000px;}
.y76{bottom:534.930000px;}
.y124{bottom:535.650000px;}
.y15{bottom:547.170000px;}
.ya3{bottom:547.530000px;}
.y48{bottom:558.330000px;}
.yce{bottom:560.310000px;}
.yfd{bottom:561.030000px;}
.y123{bottom:562.290000px;}
.y14{bottom:564.810000px;}
.y75{bottom:567.150000px;}
.y47{bottom:575.880000px;}
.y122{bottom:579.840000px;}
.y13{bottom:582.360000px;}
.ycd{bottom:587.580000px;}
.y46{bottom:593.430000px;}
.ya2{bottom:596.220000px;}
.y121{bottom:597.480000px;}
.y12{bottom:599.910000px;}
.y89{bottom:603.960000px;}
.yfa{bottom:605.940000px;}
.y45{bottom:611.070000px;}
.y11{bottom:617.550000px;}
.y88{bottom:621.600000px;}
.y120{bottom:624.030000px;}
.y44{bottom:628.620000px;}
.ya1{bottom:631.860000px;}
.y10{bottom:635.100000px;}
.ycc{bottom:636.270000px;}
.y87{bottom:639.150000px;}
.y11f{bottom:641.580000px;}
.y43{bottom:646.260000px;}
.ya0{bottom:649.410000px;}
.yf7{bottom:650.850000px;}
.y86{bottom:656.790000px;}
.yf{bottom:662.010000px;}
.y42{bottom:663.810000px;}
.y9f{bottom:666.960000px;}
.y11e{bottom:668.220000px;}
.ycb{bottom:671.910000px;}
.y85{bottom:674.340000px;}
.y41{bottom:681.360000px;}
.y9e{bottom:684.600000px;}
.y11d{bottom:685.770000px;}
.yca{bottom:689.460000px;}
.y84{bottom:691.890000px;}
.y40{bottom:699.000000px;}
.yf6{bottom:699.540000px;}
.y9d{bottom:702.150000px;}
.yc9{bottom:707.100000px;}
.ye{bottom:708.810000px;}
.y83{bottom:709.530000px;}
.y11c{bottom:712.410000px;}
.y9c{bottom:719.790000px;}
.yc8{bottom:724.650000px;}
.y68{bottom:725.550000px;}
.y82{bottom:727.080000px;}
.y11b{bottom:729.960000px;}
.yd9{bottom:733.470000px;}
.y3f{bottom:734.550000px;}
.yf5{bottom:735.180000px;}
.y9b{bottom:737.340000px;}
.yc7{bottom:742.200000px;}
.yd{bottom:744.630000px;}
.y81{bottom:744.720000px;}
.y3e{bottom:752.190000px;}
.yf4{bottom:752.730000px;}
.y9a{bottom:754.890000px;}
.y11a{bottom:756.510000px;}
.yc6{bottom:759.840000px;}
.y67{bottom:761.190000px;}
.yd8{bottom:769.020000px;}
.y3d{bottom:769.740000px;}
.yf3{bottom:770.280000px;}
.y99{bottom:772.530000px;}
.y119{bottom:774.150000px;}
.yc5{bottom:777.390000px;}
.y66{bottom:778.740000px;}
.y80{bottom:780.270000px;}
.yc{bottom:780.630000px;}
.y3c{bottom:787.290000px;}
.yf2{bottom:787.920000px;}
.yc4{bottom:795.030000px;}
.y65{bottom:796.290000px;}
.y118{bottom:800.700000px;}
.yd7{bottom:801.240000px;}
.yf1{bottom:802.860000px;}
.y3b{bottom:804.930000px;}
.y98{bottom:808.080000px;}
.y7f{bottom:812.490000px;}
.yc3{bottom:812.580000px;}
.y64{bottom:813.930000px;}
.yb{bottom:816.630000px;}
.y117{bottom:818.340000px;}
.yf0{bottom:830.220000px;}
.y63{bottom:831.480000px;}
.ya{bottom:838.410000px;}
.y97{bottom:840.300000px;}
.y3a{bottom:840.480000px;}
.y116{bottom:844.890000px;}
.yc2{bottom:845.520000px;}
.y62{bottom:849.030000px;}
.y9{bottom:856.410000px;}
.yef{bottom:857.580000px;}
.y39{bottom:858.030000px;}
.y115{bottom:862.440000px;}
.y61{bottom:866.670000px;}
.y8{bottom:870.630000px;}
.yc1{bottom:872.880000px;}
.y38{bottom:875.670000px;}
.y60{bottom:884.220000px;}
.y114{bottom:889.080000px;}
.y7{bottom:892.410000px;}
.y37{bottom:893.220000px;}
.yc0{bottom:900.240000px;}
.yee{bottom:906.270000px;}
.y113{bottom:906.630000px;}
.y36{bottom:910.860000px;}
.y6{bottom:924.720000px;}
.ybf{bottom:927.600000px;}
.y35{bottom:928.410000px;}
.y112{bottom:933.540000px;}
.yed{bottom:941.820000px;}
.y13c{bottom:945.960000px;}
.y5f{bottom:946.410000px;}
.ybe{bottom:954.870000px;}
.yec{bottom:959.460000px;}
.y5{bottom:962.970000px;}
.y34{bottom:963.960000px;}
.y13b{bottom:972.600000px;}
.yeb{bottom:977.010000px;}
.y33{bottom:981.600000px;}
.y111{bottom:981.780000px;}
.ybd{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y13a{bottom:990.150000px;}
.yea{bottom:994.560000px;}
.y32{bottom:999.150000px;}
.y110{bottom:1008.690000px;}
.ybc{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y30{bottom:1034.370000px;}
.ybb{bottom:1036.890000px;}
.y10f{bottom:1045.800000px;}
.y5e{bottom:1051.920000px;}
.y139{bottom:1060.920000px;}
.y10e{bottom:1063.350000px;}
.yba{bottom:1064.250000px;}
.y74{bottom:1065.510000px;}
.y5d{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y138{bottom:1078.560000px;}
.y73{bottom:1083.150000px;}
.y5c{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y10d{bottom:1090.260000px;}
.yb9{bottom:1091.610000px;}
.y137{bottom:1096.110000px;}
.y72{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y71{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hc{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:44.190000px;}
.h7{height:50.902383px;}
.hd{height:53.910000px;}
.h5{height:55.779258px;}
.h11{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h10{height:71.550000px;}
.he{height:116.460000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:24.480000px;}
.wd{width:29.700000px;}
.w1f{width:30.870000px;}
.w11{width:44.100000px;}
.w13{width:45.630000px;}
.w19{width:45.720000px;}
.we{width:53.640000px;}
.w1c{width:55.980000px;}
.w9{width:59.760000px;}
.w1e{width:62.820000px;}
.wf{width:63.390000px;}
.w20{width:69.120000px;}
.w21{width:69.150000px;}
.wc{width:77.040000px;}
.w18{width:80.400000px;}
.w23{width:83.700000px;}
.w5{width:85.230000px;}
.w22{width:87.570000px;}
.w14{width:103.800000px;}
.w4{width:105.690000px;}
.w12{width:106.200000px;}
.w15{width:115.650000px;}
.wb{width:133.410000px;}
.w25{width:135.000000px;}
.w1a{width:136.350000px;}
.w7{width:145.800000px;}
.w26{width:155.550000px;}
.wa{width:162.000000px;}
.w17{width:182.790000px;}
.w3{width:231.120000px;}
.w24{width:291.360000px;}
.w16{width:333.930000px;}
.w8{width:356.610000px;}
.w6{width:398.820000px;}
.w1d{width:533.940000px;}
.w1b{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:3.960000px;}
.x1{left:68.040000px;}
.x34{left:111.239987px;}
.x2c{left:125.460000px;}
.x30{left:195.330000px;}
.x2{left:202.799987px;}
.x12{left:204.240000px;}
.xe{left:234.840000px;}
.x1a{left:245.189987px;}
.x22{left:247.260000px;}
.x9{left:248.609987px;}
.x18{left:251.939987px;}
.x5{left:255.449987px;}
.x1b{left:268.320000px;}
.xb{left:270.569987px;}
.x14{left:277.500000px;}
.x27{left:279.660000px;}
.x31{left:283.620000px;}
.x7{left:285.599987px;}
.x26{left:293.700000px;}
.xd{left:300.359987px;}
.x2b{left:326.100000px;}
.x1c{left:328.800000px;}
.x23{left:354.180000px;}
.x32{left:368.040000px;}
.x24{left:400.530000px;}
.x1e{left:406.650000px;}
.x15{left:424.020000px;}
.x25{left:425.730000px;}
.x1f{left:437.160000px;}
.x28{left:463.170000px;}
.x10{left:466.680000px;}
.x29{left:488.370000px;}
.x1d{left:491.520000px;}
.x33{left:503.850000px;}
.x16{left:530.520000px;}
.x20{left:555.630000px;}
.x2a{left:569.490000px;}
.x11{left:573.180000px;}
.x21{left:580.830000px;}
.x13{left:603.780000px;}
.x6{left:639.059987px;}
.x2d{left:660.120000px;}
.xa{left:661.559987px;}
.x8{left:686.309987px;}
.x2e{left:723.660000px;}
.x19{left:742.559987px;}
.x4{left:745.889987px;}
.x17{left:747.059987px;}
.x2f{left:755.340000px;}
.x3{left:792.059987px;}
.xc{left:811.139987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.456533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls15{letter-spacing:-0.104533pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.096533pt;}
.ls11{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.142933pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.899733pt;}
.wsc{word-spacing:-11.884267pt;}
.wsd{word-spacing:-11.853333pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws8{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._e{margin-left:-3.288213pt;}
._b{margin-left:-2.351467pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.932907pt;}
._5{width:2.159788pt;}
._4{width:3.262613pt;}
._c{width:4.628054pt;}
._7{width:6.405547pt;}
._6{width:7.435520pt;}
._a{width:9.056000pt;}
._8{width:10.392000pt;}
._9{width:13.382401pt;}
._f{width:15.390720pt;}
._d{width:16.993920pt;}
._3{width:18.192491pt;}
._13{width:23.000320pt;}
._14{width:24.213547pt;}
._15{width:25.971840pt;}
._16{width:27.081493pt;}
._11{width:31.957120pt;}
._10{width:50.928320pt;}
._1{width:52.880320pt;}
._12{width:62.204160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:6.960000pt;}
.ya9{bottom:6.986667pt;}
.ya4{bottom:7.040000pt;}
.yfb{bottom:22.640000pt;}
.ye4{bottom:31.280000pt;}
.yfc{bottom:46.960000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.yf9{bottom:86.880000pt;}
.y1{bottom:90.346667pt;}
.ye9{bottom:100.106667pt;}
.y96{bottom:109.306667pt;}
.y70{bottom:113.466667pt;}
.y136{bottom:115.146667pt;}
.y5b{bottom:115.706667pt;}
.y28{bottom:120.266667pt;}
.y95{bottom:124.906667pt;}
.y6f{bottom:129.146667pt;}
.y135{bottom:130.746667pt;}
.yb8{bottom:130.986667pt;}
.y5a{bottom:131.306667pt;}
.ye8{bottom:131.386667pt;}
.y10c{bottom:134.346667pt;}
.y27{bottom:135.866667pt;}
.y94{bottom:140.586667pt;}
.y6e{bottom:144.746667pt;}
.y134{bottom:146.426667pt;}
.yb7{bottom:146.586667pt;}
.y59{bottom:146.906667pt;}
.y93{bottom:156.186667pt;}
.y6d{bottom:160.426667pt;}
.ye7{bottom:160.666667pt;}
.yb6{bottom:162.266667pt;}
.y58{bottom:162.586667pt;}
.y10b{bottom:165.946667pt;}
.y26{bottom:167.466667pt;}
.y133{bottom:170.026667pt;}
.y92{bottom:171.786667pt;}
.y6c{bottom:176.026667pt;}
.yb5{bottom:177.866667pt;}
.y25{bottom:183.146667pt;}
.ye6{bottom:184.986667pt;}
.y132{bottom:185.626667pt;}
.y57{bottom:186.186667pt;}
.y91{bottom:187.466667pt;}
.y6b{bottom:191.626667pt;}
.yb4{bottom:193.466667pt;}
.y10a{bottom:197.626667pt;}
.y24{bottom:198.746667pt;}
.y90{bottom:203.066667pt;}
.yb3{bottom:209.146667pt;}
.ye3{bottom:209.306667pt;}
.y109{bottom:213.226667pt;}
.y23{bottom:214.426667pt;}
.y56{bottom:218.106667pt;}
.y8f{bottom:218.666667pt;}
.y6a{bottom:223.306667pt;}
.yb2{bottom:224.746667pt;}
.y131{bottom:224.906667pt;}
.y108{bottom:228.906667pt;}
.y22{bottom:230.026667pt;}
.ye5{bottom:233.546667pt;}
.y8e{bottom:234.346667pt;}
.yb1{bottom:240.426667pt;}
.y107{bottom:244.506667pt;}
.y21{bottom:245.626667pt;}
.y130{bottom:248.586667pt;}
.y8d{bottom:249.946667pt;}
.y69{bottom:251.946667pt;}
.yb0{bottom:256.026667pt;}
.ye2{bottom:257.866667pt;}
.y106{bottom:260.106667pt;}
.y55{bottom:260.986667pt;}
.y12f{bottom:264.186667pt;}
.y8c{bottom:265.626667pt;}
.y20{bottom:269.546667pt;}
.yaf{bottom:271.626667pt;}
.y105{bottom:275.786667pt;}
.y54{bottom:276.666667pt;}
.yae{bottom:287.306667pt;}
.y12e{bottom:287.786667pt;}
.y104{bottom:291.386667pt;}
.y53{bottom:292.266667pt;}
.y8b{bottom:297.226667pt;}
.ye1{bottom:301.146667pt;}
.y12d{bottom:303.466667pt;}
.y103{bottom:307.066667pt;}
.y52{bottom:307.946667pt;}
.y1f{bottom:312.746667pt;}
.yad{bottom:316.586667pt;}
.y102{bottom:322.666667pt;}
.y51{bottom:323.546667pt;}
.y8a{bottom:325.866667pt;}
.y12c{bottom:327.066667pt;}
.ye0{bottom:332.826667pt;}
.yd6{bottom:333.306667pt;}
.y7e{bottom:334.426667pt;}
.y50{bottom:339.146667pt;}
.yac{bottom:340.906667pt;}
.y1e{bottom:345.706667pt;}
.y101{bottom:346.586667pt;}
.ydf{bottom:348.426667pt;}
.yd5{bottom:348.906667pt;}
.y7d{bottom:350.026667pt;}
.y12b{bottom:350.746667pt;}
.y4f{bottom:354.826667pt;}
.y1d{bottom:361.306667pt;}
.yde{bottom:364.026667pt;}
.yd4{bottom:364.506667pt;}
.yab{bottom:365.226667pt;}
.y7c{bottom:365.706667pt;}
.y12a{bottom:366.346667pt;}
.y1c{bottom:376.906667pt;}
.ydd{bottom:379.706667pt;}
.yd3{bottom:380.186667pt;}
.y7b{bottom:381.306667pt;}
.y129{bottom:381.946667pt;}
.y4e{bottom:386.426667pt;}
.yaa{bottom:389.466667pt;}
.y1b{bottom:392.586667pt;}
.ydc{bottom:395.306667pt;}
.yd2{bottom:395.786667pt;}
.y7a{bottom:396.906667pt;}
.y4d{bottom:402.106667pt;}
.y100{bottom:405.146667pt;}
.y128{bottom:405.626667pt;}
.y1a{bottom:408.186667pt;}
.y79{bottom:412.586667pt;}
.ya8{bottom:413.786667pt;}
.y4c{bottom:417.733333pt;}
.y127{bottom:421.253333pt;}
.y19{bottom:423.893333pt;}
.ydb{bottom:424.293333pt;}
.yd1{bottom:425.093333pt;}
.y78{bottom:428.213333pt;}
.y4b{bottom:433.333333pt;}
.yff{bottom:436.773333pt;}
.ya6{bottom:438.133333pt;}
.y18{bottom:439.493333pt;}
.y77{bottom:443.813333pt;}
.y126{bottom:444.933333pt;}
.y4a{bottom:449.013333pt;}
.yd0{bottom:449.413333pt;}
.yfe{bottom:450.053333pt;}
.yda{bottom:452.933333pt;}
.y17{bottom:455.093333pt;}
.y125{bottom:460.533333pt;}
.ya5{bottom:462.373333pt;}
.y49{bottom:464.613333pt;}
.y16{bottom:470.773333pt;}
.ycf{bottom:473.733333pt;}
.yf8{bottom:474.373333pt;}
.y76{bottom:475.493333pt;}
.y124{bottom:476.133333pt;}
.y15{bottom:486.373333pt;}
.ya3{bottom:486.693333pt;}
.y48{bottom:496.293333pt;}
.yce{bottom:498.053333pt;}
.yfd{bottom:498.693333pt;}
.y123{bottom:499.813333pt;}
.y14{bottom:502.053333pt;}
.y75{bottom:504.133333pt;}
.y47{bottom:511.893333pt;}
.y122{bottom:515.413333pt;}
.y13{bottom:517.653333pt;}
.ycd{bottom:522.293333pt;}
.y46{bottom:527.493333pt;}
.ya2{bottom:529.973333pt;}
.y121{bottom:531.093333pt;}
.y12{bottom:533.253333pt;}
.y89{bottom:536.853333pt;}
.yfa{bottom:538.613333pt;}
.y45{bottom:543.173333pt;}
.y11{bottom:548.933333pt;}
.y88{bottom:552.533333pt;}
.y120{bottom:554.693333pt;}
.y44{bottom:558.773333pt;}
.ya1{bottom:561.653333pt;}
.y10{bottom:564.533333pt;}
.ycc{bottom:565.573333pt;}
.y87{bottom:568.133333pt;}
.y11f{bottom:570.293333pt;}
.y43{bottom:574.453333pt;}
.ya0{bottom:577.253333pt;}
.yf7{bottom:578.533333pt;}
.y86{bottom:583.813333pt;}
.yf{bottom:588.453333pt;}
.y42{bottom:590.053333pt;}
.y9f{bottom:592.853333pt;}
.y11e{bottom:593.973333pt;}
.ycb{bottom:597.253333pt;}
.y85{bottom:599.413333pt;}
.y41{bottom:605.653333pt;}
.y9e{bottom:608.533333pt;}
.y11d{bottom:609.573333pt;}
.yca{bottom:612.853333pt;}
.y84{bottom:615.013333pt;}
.y40{bottom:621.333333pt;}
.yf6{bottom:621.813333pt;}
.y9d{bottom:624.133333pt;}
.yc9{bottom:628.533333pt;}
.ye{bottom:630.053333pt;}
.y83{bottom:630.693333pt;}
.y11c{bottom:633.253333pt;}
.y9c{bottom:639.813333pt;}
.yc8{bottom:644.133333pt;}
.y68{bottom:644.933333pt;}
.y82{bottom:646.293333pt;}
.y11b{bottom:648.853333pt;}
.yd9{bottom:651.973333pt;}
.y3f{bottom:652.933333pt;}
.yf5{bottom:653.493333pt;}
.y9b{bottom:655.413333pt;}
.yc7{bottom:659.733333pt;}
.yd{bottom:661.893333pt;}
.y81{bottom:661.973333pt;}
.y3e{bottom:668.613333pt;}
.yf4{bottom:669.093333pt;}
.y9a{bottom:671.013333pt;}
.y11a{bottom:672.453333pt;}
.yc6{bottom:675.413333pt;}
.y67{bottom:676.613333pt;}
.yd8{bottom:683.573333pt;}
.y3d{bottom:684.213333pt;}
.yf3{bottom:684.693333pt;}
.y99{bottom:686.693333pt;}
.y119{bottom:688.133333pt;}
.yc5{bottom:691.013333pt;}
.y66{bottom:692.213333pt;}
.y80{bottom:693.573333pt;}
.yc{bottom:693.893333pt;}
.y3c{bottom:699.813333pt;}
.yf2{bottom:700.373333pt;}
.yc4{bottom:706.693333pt;}
.y65{bottom:707.813333pt;}
.y118{bottom:711.733333pt;}
.yd7{bottom:712.213333pt;}
.yf1{bottom:713.653333pt;}
.y3b{bottom:715.493333pt;}
.y98{bottom:718.293333pt;}
.y7f{bottom:722.213333pt;}
.yc3{bottom:722.293333pt;}
.y64{bottom:723.493333pt;}
.yb{bottom:725.893333pt;}
.y117{bottom:727.413333pt;}
.yf0{bottom:737.973333pt;}
.y63{bottom:739.093333pt;}
.ya{bottom:745.253333pt;}
.y97{bottom:746.933333pt;}
.y3a{bottom:747.093333pt;}
.y116{bottom:751.013333pt;}
.yc2{bottom:751.573333pt;}
.y62{bottom:754.693333pt;}
.y9{bottom:761.253333pt;}
.yef{bottom:762.293333pt;}
.y39{bottom:762.693333pt;}
.y115{bottom:766.613333pt;}
.y61{bottom:770.373333pt;}
.y8{bottom:773.893333pt;}
.yc1{bottom:775.893333pt;}
.y38{bottom:778.373333pt;}
.y60{bottom:785.973333pt;}
.y114{bottom:790.293333pt;}
.y7{bottom:793.253333pt;}
.y37{bottom:793.973333pt;}
.yc0{bottom:800.213333pt;}
.yee{bottom:805.573333pt;}
.y113{bottom:805.893333pt;}
.y36{bottom:809.653333pt;}
.y6{bottom:821.973333pt;}
.ybf{bottom:824.533333pt;}
.y35{bottom:825.253333pt;}
.y112{bottom:829.813333pt;}
.yed{bottom:837.173333pt;}
.y13c{bottom:840.853333pt;}
.y5f{bottom:841.253333pt;}
.ybe{bottom:848.773333pt;}
.yec{bottom:852.853333pt;}
.y5{bottom:855.973333pt;}
.y34{bottom:856.853333pt;}
.y13b{bottom:864.533333pt;}
.yeb{bottom:868.453333pt;}
.y33{bottom:872.533333pt;}
.y111{bottom:872.693333pt;}
.ybd{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y13a{bottom:880.133333pt;}
.yea{bottom:884.053333pt;}
.y32{bottom:888.133333pt;}
.y110{bottom:896.613333pt;}
.ybc{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y30{bottom:919.440000pt;}
.ybb{bottom:921.680000pt;}
.y10f{bottom:929.600000pt;}
.y5e{bottom:935.040000pt;}
.y139{bottom:943.040000pt;}
.y10e{bottom:945.200000pt;}
.yba{bottom:946.000000pt;}
.y74{bottom:947.120000pt;}
.y5d{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y138{bottom:958.720000pt;}
.y73{bottom:962.800000pt;}
.y5c{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y10d{bottom:969.120000pt;}
.yb9{bottom:970.320000pt;}
.y137{bottom:974.320000pt;}
.y72{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y71{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hc{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hf{height:39.280000pt;}
.h7{height:45.246562pt;}
.hd{height:47.920000pt;}
.h5{height:49.581562pt;}
.h11{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h10{height:63.600000pt;}
.he{height:103.520000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:21.760000pt;}
.wd{width:26.400000pt;}
.w1f{width:27.440000pt;}
.w11{width:39.200000pt;}
.w13{width:40.560000pt;}
.w19{width:40.640000pt;}
.we{width:47.680000pt;}
.w1c{width:49.760000pt;}
.w9{width:53.120000pt;}
.w1e{width:55.840000pt;}
.wf{width:56.346667pt;}
.w20{width:61.440000pt;}
.w21{width:61.466667pt;}
.wc{width:68.480000pt;}
.w18{width:71.466667pt;}
.w23{width:74.400000pt;}
.w5{width:75.760000pt;}
.w22{width:77.840000pt;}
.w14{width:92.266667pt;}
.w4{width:93.946667pt;}
.w12{width:94.400000pt;}
.w15{width:102.800000pt;}
.wb{width:118.586667pt;}
.w25{width:120.000000pt;}
.w1a{width:121.200000pt;}
.w7{width:129.600000pt;}
.w26{width:138.266667pt;}
.wa{width:144.000000pt;}
.w17{width:162.480000pt;}
.w3{width:205.440000pt;}
.w24{width:258.986667pt;}
.w16{width:296.826667pt;}
.w8{width:316.986667pt;}
.w6{width:354.506667pt;}
.w1d{width:474.613333pt;}
.w1b{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:3.520000pt;}
.x1{left:60.480000pt;}
.x34{left:98.879988pt;}
.x2c{left:111.520000pt;}
.x30{left:173.626667pt;}
.x2{left:180.266655pt;}
.x12{left:181.546667pt;}
.xe{left:208.746667pt;}
.x1a{left:217.946655pt;}
.x22{left:219.786667pt;}
.x9{left:220.986655pt;}
.x18{left:223.946655pt;}
.x5{left:227.066655pt;}
.x1b{left:238.506667pt;}
.xb{left:240.506655pt;}
.x14{left:246.666667pt;}
.x27{left:248.586667pt;}
.x31{left:252.106667pt;}
.x7{left:253.866655pt;}
.x26{left:261.066667pt;}
.xd{left:266.986655pt;}
.x2b{left:289.866667pt;}
.x1c{left:292.266667pt;}
.x23{left:314.826667pt;}
.x32{left:327.146667pt;}
.x24{left:356.026667pt;}
.x1e{left:361.466667pt;}
.x15{left:376.906667pt;}
.x25{left:378.426667pt;}
.x1f{left:388.586667pt;}
.x28{left:411.706667pt;}
.x10{left:414.826667pt;}
.x29{left:434.106667pt;}
.x1d{left:436.906667pt;}
.x33{left:447.866667pt;}
.x16{left:471.573333pt;}
.x20{left:493.893333pt;}
.x2a{left:506.213333pt;}
.x11{left:509.493333pt;}
.x21{left:516.293333pt;}
.x13{left:536.693333pt;}
.x6{left:568.053322pt;}
.x2d{left:586.773333pt;}
.xa{left:588.053322pt;}
.x8{left:610.053322pt;}
.x2e{left:643.253333pt;}
.x19{left:660.053322pt;}
.x4{left:663.013322pt;}
.x17{left:664.053322pt;}
.x2f{left:671.413333pt;}
.x3{left:704.053322pt;}
.xc{left:721.013322pt;}
}




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