
    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_44ab2ef4ff2bc355e74aa6bc.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_10cf6032d67c40e81aa85ff7.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_fb9864e789b6a060bd4af49b.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_3c9105e80af010ac6a350a5f.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_a76c498e99750176f5ea4549.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_156826c0bf1173c82f4259f6.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_d88e7c0bf6fd5d0c90073b78.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;}
.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;}
.lsd{letter-spacing:-0.285600px;}
.lsb{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.064800px;}
.ls8{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.lsf{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.098400px;}
.ls15{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.178800px;}
.ls10{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:3.686400px;}
.ls16{letter-spacing:4.053600px;}
.ls1a{letter-spacing:47.726640px;}
.ls13{letter-spacing:63.566640px;}
.ls18{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;}
}
.ws8{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.344600px;}
.wse{word-spacing:-13.324800px;}
.wsf{word-spacing:-13.300800px;}
.ws3{word-spacing:-13.226400px;}
.ws4{word-spacing:-13.039800px;}
.ws6{word-spacing:-12.940800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.wsc{word-spacing:-8.732400px;}
.wsa{word-spacing:-8.625600px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._e{margin-left:-3.759720px;}
._5{margin-left:-2.705400px;}
._0{margin-left:-1.110000px;}
._1{width:1.174236px;}
._2{width:2.349059px;}
._7{width:4.280880px;}
._3{width:5.580000px;}
._4{width:6.621564px;}
._6{width:8.011273px;}
._9{width:9.859680px;}
._8{width:11.242200px;}
._a{width:14.969880px;}
._b{width:16.773480px;}
._c{width:17.975880px;}
._f{width:19.863360px;}
._10{width:20.886840px;}
._d{width:23.266440px;}
.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;}
.y59{bottom:7.830000px;}
.ya3{bottom:7.860000px;}
.y65{bottom:7.920000px;}
.y5b{bottom:29.970000px;}
.y72{bottom:35.190000px;}
.ya5{bottom:35.220000px;}
.ya1{bottom:35.280000px;}
.y60{bottom:52.020000px;}
.y2{bottom:73.380000px;}
.y5f{bottom:74.070000px;}
.y64{bottom:74.160000px;}
.y27{bottom:74.190000px;}
.y5e{bottom:96.210000px;}
.y1{bottom:101.640000px;}
.yb9{bottom:109.560000px;}
.y7b{bottom:111.630000px;}
.y7a{bottom:129.270000px;}
.yb8{bottom:136.920000px;}
.y105{bottom:139.170000px;}
.y25{bottom:142.320000px;}
.y57{bottom:142.770000px;}
.y79{bottom:146.820000px;}
.ye4{bottom:154.560000px;}
.y104{bottom:156.720000px;}
.y24{bottom:159.870000px;}
.yb7{bottom:164.280000px;}
.y9e{bottom:167.430000px;}
.ye3{bottom:172.110000px;}
.y56{bottom:178.320000px;}
.y78{bottom:179.760000px;}
.y103{bottom:183.360000px;}
.y9d{bottom:184.980000px;}
.ye2{bottom:189.750000px;}
.yb6{bottom:191.550000px;}
.y23{bottom:195.510000px;}
.y102{bottom:200.910000px;}
.y9c{bottom:202.620000px;}
.y77{bottom:207.120000px;}
.y22{bottom:213.060000px;}
.y55{bottom:213.960000px;}
.ye1{bottom:216.660000px;}
.yb4{bottom:218.910000px;}
.y9b{bottom:220.170000px;}
.y101{bottom:227.550000px;}
.y21{bottom:230.610000px;}
.y76{bottom:234.480000px;}
.y100{bottom:245.100000px;}
.yb5{bottom:246.270000px;}
.y20{bottom:248.250000px;}
.y54{bottom:249.510000px;}
.y9a{bottom:253.110000px;}
.ye0{bottom:253.650000px;}
.y75{bottom:261.840000px;}
.y1f{bottom:265.800000px;}
.ydf{bottom:271.200000px;}
.yff{bottom:271.650000px;}
.y99{bottom:280.470000px;}
.y1e{bottom:283.440000px;}
.y129{bottom:283.800000px;}
.y53{bottom:285.060000px;}
.yde{bottom:288.840000px;}
.y74{bottom:289.110000px;}
.yfe{bottom:289.290000px;}
.yb3{bottom:294.960000px;}
.y128{bottom:301.440000px;}
.y52{bottom:302.700000px;}
.ydd{bottom:306.390000px;}
.y98{bottom:307.830000px;}
.y1d{bottom:310.260000px;}
.yfd{bottom:315.840000px;}
.y71{bottom:316.470000px;}
.y51{bottom:320.250000px;}
.ydc{bottom:323.940000px;}
.y127{bottom:327.990000px;}
.yb2{bottom:330.510000px;}
.yfc{bottom:333.480000px;}
.y97{bottom:335.190000px;}
.y50{bottom:337.890000px;}
.ydb{bottom:341.580000px;}
.y73{bottom:343.830000px;}
.y126{bottom:345.540000px;}
.y4f{bottom:355.440000px;}
.y1c{bottom:358.860000px;}
.yda{bottom:359.130000px;}
.yfb{bottom:360.030000px;}
.y96{bottom:362.460000px;}
.y125{bottom:363.180000px;}
.yb1{bottom:366.150000px;}
.y4e{bottom:372.990000px;}
.yd9{bottom:376.770000px;}
.yfa{bottom:377.580000px;}
.yb0{bottom:383.700000px;}
.y124{bottom:389.730000px;}
.y95{bottom:389.820000px;}
.y4d{bottom:390.540000px;}
.y70{bottom:392.520000px;}
.yd8{bottom:394.320000px;}
.y1b{bottom:395.940000px;}
.yf9{bottom:404.220000px;}
.y123{bottom:407.370000px;}
.y4c{bottom:408.990000px;}
.yd7{bottom:411.870000px;}
.y1a{bottom:413.490000px;}
.yaf{bottom:415.920000px;}
.y94{bottom:417.180000px;}
.y6f{bottom:419.430000px;}
.yf8{bottom:421.770000px;}
.y4b{bottom:426.630000px;}
.y19{bottom:431.130000px;}
.y122{bottom:433.920000px;}
.y4a{bottom:444.180000px;}
.yd6{bottom:447.510000px;}
.yf7{bottom:448.680000px;}
.y121{bottom:451.470000px;}
.y49{bottom:462.630000px;}
.yd5{bottom:465.060000px;}
.y93{bottom:465.870000px;}
.y18{bottom:466.680000px;}
.y6e{bottom:467.670000px;}
.y120{bottom:478.140000px;}
.y48{bottom:480.210000px;}
.yd4{bottom:482.730000px;}
.y17{bottom:484.260000px;}
.y6d{bottom:485.340000px;}
.y11f{bottom:495.690000px;}
.yf6{bottom:497.040000px;}
.y47{bottom:497.760000px;}
.yd3{bottom:500.280000px;}
.y92{bottom:501.450000px;}
.y16{bottom:501.900000px;}
.y6c{bottom:502.890000px;}
.y11e{bottom:513.330000px;}
.y46{bottom:516.210000px;}
.yd2{bottom:517.830000px;}
.y91{bottom:519.090000px;}
.y6b{bottom:520.440000px;}
.yf5{bottom:523.860000px;}
.y45{bottom:533.760000px;}
.yd1{bottom:535.470000px;}
.y90{bottom:536.640000px;}
.y15{bottom:537.450000px;}
.y6a{bottom:537.990000px;}
.y11d{bottom:539.880000px;}
.y44{bottom:552.210000px;}
.yd0{bottom:553.020000px;}
.y8f{bottom:554.190000px;}
.y14{bottom:555.090000px;}
.y69{bottom:556.440000px;}
.y11c{bottom:557.430000px;}
.yf4{bottom:560.940000px;}
.y43{bottom:569.760000px;}
.y8e{bottom:571.830000px;}
.y13{bottom:572.640000px;}
.y68{bottom:573.990000px;}
.y11b{bottom:584.070000px;}
.yf3{bottom:587.850000px;}
.y42{bottom:588.210000px;}
.ycf{bottom:588.660000px;}
.y12{bottom:590.190000px;}
.y11a{bottom:601.620000px;}
.y8c{bottom:604.770000px;}
.yce{bottom:606.210000px;}
.y67{bottom:607.830000px;}
.y41{bottom:615.930000px;}
.ycd{bottom:623.760000px;}
.yf2{bottom:624.840000px;}
.y11{bottom:625.830000px;}
.y119{bottom:628.260000px;}
.y8d{bottom:632.130000px;}
.y66{bottom:635.190000px;}
.ycc{bottom:641.400000px;}
.y10{bottom:643.380000px;}
.y118{bottom:645.810000px;}
.yf1{bottom:651.750000px;}
.y8a{bottom:659.490000px;}
.yf{bottom:661.020000px;}
.y40{bottom:664.260000px;}
.y117{bottom:672.360000px;}
.ycb{bottom:676.950000px;}
.ye{bottom:678.570000px;}
.y3f{bottom:681.810000px;}
.y63{bottom:684.600000px;}
.y8b{bottom:686.760000px;}
.yf0{bottom:688.830000px;}
.y116{bottom:690.000000px;}
.yca{bottom:694.590000px;}
.yd{bottom:696.120000px;}
.y3e{bottom:699.360000px;}
.yef{bottom:706.380000px;}
.yc9{bottom:712.140000px;}
.y88{bottom:714.120000px;}
.y115{bottom:716.550000px;}
.y3d{bottom:717.000000px;}
.yae{bottom:723.030000px;}
.yc{bottom:723.120000px;}
.yee{bottom:723.930000px;}
.y114{bottom:734.190000px;}
.yad{bottom:738.060000px;}
.y89{bottom:741.480000px;}
.yed{bottom:741.570000px;}
.yc8{bottom:747.690000px;}
.y3c{bottom:752.550000px;}
.yec{bottom:759.120000px;}
.y113{bottom:760.740000px;}
.yc7{bottom:765.330000px;}
.yac{bottom:765.420000px;}
.y87{bottom:768.750000px;}
.yb{bottom:769.830000px;}
.y3b{bottom:770.190000px;}
.y62{bottom:778.200000px;}
.y112{bottom:778.290000px;}
.yc6{bottom:782.880000px;}
.yeb{bottom:786.030000px;}
.y3a{bottom:787.740000px;}
.yab{bottom:792.690000px;}
.yc5{bottom:800.520000px;}
.y111{bottom:804.930000px;}
.y39{bottom:805.290000px;}
.ya{bottom:805.380000px;}
.y61{bottom:805.560000px;}
.y86{bottom:817.530000px;}
.y110{bottom:822.480000px;}
.y38{bottom:822.930000px;}
.yea{bottom:823.380000px;}
.yc4{bottom:836.070000px;}
.y37{bottom:840.480000px;}
.y9{bottom:841.200000px;}
.yaa{bottom:841.380000px;}
.y10f{bottom:849.030000px;}
.y85{bottom:853.080000px;}
.yc3{bottom:853.620000px;}
.y10e{bottom:866.670000px;}
.y84{bottom:870.630000px;}
.yc2{bottom:871.260000px;}
.ye9{bottom:871.620000px;}
.y36{bottom:876.030000px;}
.ya9{bottom:877.020000px;}
.y8{bottom:880.980000px;}
.y83{bottom:888.270000px;}
.yc1{bottom:888.810000px;}
.ye8{bottom:889.260000px;}
.y10d{bottom:893.220000px;}
.y35{bottom:893.670000px;}
.ya8{bottom:894.570000px;}
.y7{bottom:898.980000px;}
.y5d{bottom:899.160000px;}
.y82{bottom:905.820000px;}
.ye7{bottom:906.810000px;}
.y10c{bottom:910.860000px;}
.y34{bottom:911.220000px;}
.y6{bottom:916.980000px;}
.y81{bottom:923.460000px;}
.yc0{bottom:924.450000px;}
.ya7{bottom:927.600000px;}
.y33{bottom:928.860000px;}
.y10b{bottom:937.410000px;}
.ybf{bottom:942.000000px;}
.y32{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.ya6{bottom:954.870000px;}
.y10a{bottom:954.960000px;}
.y80{bottom:956.400000px;}
.ybe{bottom:959.550000px;}
.y31{bottom:963.960000px;}
.y109{bottom:972.600000px;}
.ybd{bottom:977.190000px;}
.y30{bottom:981.600000px;}
.ya4{bottom:982.230000px;}
.y7f{bottom:983.760000px;}
.y4{bottom:987.630000px;}
.ybc{bottom:994.740000px;}
.y2f{bottom:999.150000px;}
.ya2{bottom:1009.590000px;}
.y7d{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.y5c{bottom:1014.840000px;}
.y2e{bottom:1016.820000px;}
.ybb{bottom:1029.960000px;}
.y2d{bottom:1034.370000px;}
.ya0{bottom:1036.890000px;}
.y7e{bottom:1038.420000px;}
.y5a{bottom:1042.200000px;}
.y108{bottom:1043.370000px;}
.ye6{bottom:1047.510000px;}
.yba{bottom:1056.870000px;}
.y107{bottom:1060.920000px;}
.y9f{bottom:1064.250000px;}
.y2c{bottom:1069.920000px;}
.ye5{bottom:1074.420000px;}
.y106{bottom:1078.560000px;}
.y7c{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.y58{bottom:1091.610000px;}
.y2a{bottom:1105.110000px;}
.y29{bottom:1122.750000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h11{height:26.580000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hb{height:48.690000px;}
.h7{height:50.902383px;}
.h10{height:53.910000px;}
.h13{height:53.940000px;}
.h12{height:54.000000px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hd{height:92.790000px;}
.he{height:92.880000px;}
.hc{height:114.960000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w21{width:35.820000px;}
.w26{width:43.470000px;}
.w1b{width:43.590000px;}
.w20{width:45.630000px;}
.w1a{width:53.280000px;}
.w23{width:54.180000px;}
.we{width:54.390000px;}
.w1d{width:61.830000px;}
.w2e{width:70.290000px;}
.w24{width:71.730000px;}
.w2c{width:76.530000px;}
.w1e{width:79.380000px;}
.wc{width:80.910000px;}
.w16{width:81.180000px;}
.w12{width:81.810000px;}
.w2d{width:82.800000px;}
.w14{width:86.310000px;}
.wa{width:87.120000px;}
.w8{width:89.100000px;}
.w4{width:91.470000px;}
.w2a{width:112.590000px;}
.wd{width:115.470000px;}
.w17{width:115.740000px;}
.w13{width:116.640000px;}
.w1f{width:117.360000px;}
.w22{width:119.280000px;}
.w15{width:123.060000px;}
.wb{width:124.500000px;}
.w25{width:125.010000px;}
.w18{width:125.040000px;}
.w1c{width:126.900000px;}
.w27{width:126.930000px;}
.w9{width:127.080000px;}
.w29{width:139.140000px;}
.w2b{width:141.390000px;}
.w7{width:197.100000px;}
.w11{width:197.370000px;}
.wf{width:198.810000px;}
.w19{width:207.900000px;}
.w10{width:209.730000px;}
.w6{width:212.340000px;}
.w5{width:216.900000px;}
.w28{width:286.590000px;}
.w3{width:518.250000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:3.870000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x8{left:86.580000px;}
.x2a{left:91.259987px;}
.x4{left:95.039987px;}
.x31{left:111.239987px;}
.x10{left:115.920000px;}
.x5{left:122.039987px;}
.x11{left:170.670000px;}
.xa{left:178.860000px;}
.x6{left:187.500000px;}
.x2{left:194.429987px;}
.x22{left:199.830000px;}
.x17{left:221.250000px;}
.x1c{left:222.780000px;}
.x27{left:233.400000px;}
.x2d{left:238.800000px;}
.x14{left:252.840000px;}
.xd{left:268.680000px;}
.x23{left:325.560000px;}
.x1d{left:340.860000px;}
.x2e{left:352.200000px;}
.x12{left:369.840000px;}
.x24{left:379.560000px;}
.x1e{left:387.210000px;}
.xb{left:396.570000px;}
.x2b{left:422.309987px;}
.x1f{left:423.840000px;}
.x18{left:429.870000px;}
.x2c{left:446.609987px;}
.x15{left:456.510000px;}
.xe{left:484.410000px;}
.x2f{left:494.400000px;}
.x28{left:520.710000px;}
.x19{left:528.180000px;}
.x20{left:543.840000px;}
.x25{left:551.490000px;}
.x30{left:571.740000px;}
.x13{left:579.930000px;}
.x21{left:598.740000px;}
.xc{left:609.630000px;}
.x26{left:614.040000px;}
.x1a{left:655.800000px;}
.x16{left:661.560000px;}
.xf{left:691.260000px;}
.x29{left:695.309987px;}
.x1b{left:718.350000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.253867pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.057600pt;}
.ls8{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.087467pt;}
.ls15{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.158933pt;}
.ls10{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:3.276800pt;}
.ls16{letter-spacing:3.603200pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls13{letter-spacing:56.503680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.861867pt;}
.wse{word-spacing:-11.844267pt;}
.wsf{word-spacing:-11.822933pt;}
.ws3{word-spacing:-11.756800pt;}
.ws4{word-spacing:-11.590933pt;}
.ws6{word-spacing:-11.502933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.wsc{word-spacing:-7.762133pt;}
.wsa{word-spacing:-7.667200pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._e{margin-left:-3.341973pt;}
._5{margin-left:-2.404800pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043765pt;}
._2{width:2.088053pt;}
._7{width:3.805227pt;}
._3{width:4.960000pt;}
._4{width:5.885835pt;}
._6{width:7.121132pt;}
._9{width:8.764160pt;}
._8{width:9.993066pt;}
._a{width:13.306560pt;}
._b{width:14.909760pt;}
._c{width:15.978560pt;}
._f{width:17.656320pt;}
._10{width:18.566080pt;}
._d{width:20.681280pt;}
.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;}
.y59{bottom:6.960000pt;}
.ya3{bottom:6.986667pt;}
.y65{bottom:7.040000pt;}
.y5b{bottom:26.640000pt;}
.y72{bottom:31.280000pt;}
.ya5{bottom:31.306667pt;}
.ya1{bottom:31.360000pt;}
.y60{bottom:46.240000pt;}
.y2{bottom:65.226667pt;}
.y5f{bottom:65.840000pt;}
.y64{bottom:65.920000pt;}
.y27{bottom:65.946667pt;}
.y5e{bottom:85.520000pt;}
.y1{bottom:90.346667pt;}
.yb9{bottom:97.386667pt;}
.y7b{bottom:99.226667pt;}
.y7a{bottom:114.906667pt;}
.yb8{bottom:121.706667pt;}
.y105{bottom:123.706667pt;}
.y25{bottom:126.506667pt;}
.y57{bottom:126.906667pt;}
.y79{bottom:130.506667pt;}
.ye4{bottom:137.386667pt;}
.y104{bottom:139.306667pt;}
.y24{bottom:142.106667pt;}
.yb7{bottom:146.026667pt;}
.y9e{bottom:148.826667pt;}
.ye3{bottom:152.986667pt;}
.y56{bottom:158.506667pt;}
.y78{bottom:159.786667pt;}
.y103{bottom:162.986667pt;}
.y9d{bottom:164.426667pt;}
.ye2{bottom:168.666667pt;}
.yb6{bottom:170.266667pt;}
.y23{bottom:173.786667pt;}
.y102{bottom:178.586667pt;}
.y9c{bottom:180.106667pt;}
.y77{bottom:184.106667pt;}
.y22{bottom:189.386667pt;}
.y55{bottom:190.186667pt;}
.ye1{bottom:192.586667pt;}
.yb4{bottom:194.586667pt;}
.y9b{bottom:195.706667pt;}
.y101{bottom:202.266667pt;}
.y21{bottom:204.986667pt;}
.y76{bottom:208.426667pt;}
.y100{bottom:217.866667pt;}
.yb5{bottom:218.906667pt;}
.y20{bottom:220.666667pt;}
.y54{bottom:221.786667pt;}
.y9a{bottom:224.986667pt;}
.ye0{bottom:225.466667pt;}
.y75{bottom:232.746667pt;}
.y1f{bottom:236.266667pt;}
.ydf{bottom:241.066667pt;}
.yff{bottom:241.466667pt;}
.y99{bottom:249.306667pt;}
.y1e{bottom:251.946667pt;}
.y129{bottom:252.266667pt;}
.y53{bottom:253.386667pt;}
.yde{bottom:256.746667pt;}
.y74{bottom:256.986667pt;}
.yfe{bottom:257.146667pt;}
.yb3{bottom:262.186667pt;}
.y128{bottom:267.946667pt;}
.y52{bottom:269.066667pt;}
.ydd{bottom:272.346667pt;}
.y98{bottom:273.626667pt;}
.y1d{bottom:275.786667pt;}
.yfd{bottom:280.746667pt;}
.y71{bottom:281.306667pt;}
.y51{bottom:284.666667pt;}
.ydc{bottom:287.946667pt;}
.y127{bottom:291.546667pt;}
.yb2{bottom:293.786667pt;}
.yfc{bottom:296.426667pt;}
.y97{bottom:297.946667pt;}
.y50{bottom:300.346667pt;}
.ydb{bottom:303.626667pt;}
.y73{bottom:305.626667pt;}
.y126{bottom:307.146667pt;}
.y4f{bottom:315.946667pt;}
.y1c{bottom:318.986667pt;}
.yda{bottom:319.226667pt;}
.yfb{bottom:320.026667pt;}
.y96{bottom:322.186667pt;}
.y125{bottom:322.826667pt;}
.yb1{bottom:325.466667pt;}
.y4e{bottom:331.546667pt;}
.yd9{bottom:334.906667pt;}
.yfa{bottom:335.626667pt;}
.yb0{bottom:341.066667pt;}
.y124{bottom:346.426667pt;}
.y95{bottom:346.506667pt;}
.y4d{bottom:347.146667pt;}
.y70{bottom:348.906667pt;}
.yd8{bottom:350.506667pt;}
.y1b{bottom:351.946667pt;}
.yf9{bottom:359.306667pt;}
.y123{bottom:362.106667pt;}
.y4c{bottom:363.546667pt;}
.yd7{bottom:366.106667pt;}
.y1a{bottom:367.546667pt;}
.yaf{bottom:369.706667pt;}
.y94{bottom:370.826667pt;}
.y6f{bottom:372.826667pt;}
.yf8{bottom:374.906667pt;}
.y4b{bottom:379.226667pt;}
.y19{bottom:383.226667pt;}
.y122{bottom:385.706667pt;}
.y4a{bottom:394.826667pt;}
.yd6{bottom:397.786667pt;}
.yf7{bottom:398.826667pt;}
.y121{bottom:401.306667pt;}
.y49{bottom:411.226667pt;}
.yd5{bottom:413.386667pt;}
.y93{bottom:414.106667pt;}
.y18{bottom:414.826667pt;}
.y6e{bottom:415.706667pt;}
.y120{bottom:425.013333pt;}
.y48{bottom:426.853333pt;}
.yd4{bottom:429.093333pt;}
.y17{bottom:430.453333pt;}
.y6d{bottom:431.413333pt;}
.y11f{bottom:440.613333pt;}
.yf6{bottom:441.813333pt;}
.y47{bottom:442.453333pt;}
.yd3{bottom:444.693333pt;}
.y92{bottom:445.733333pt;}
.y16{bottom:446.133333pt;}
.y6c{bottom:447.013333pt;}
.y11e{bottom:456.293333pt;}
.y46{bottom:458.853333pt;}
.yd2{bottom:460.293333pt;}
.y91{bottom:461.413333pt;}
.y6b{bottom:462.613333pt;}
.yf5{bottom:465.653333pt;}
.y45{bottom:474.453333pt;}
.yd1{bottom:475.973333pt;}
.y90{bottom:477.013333pt;}
.y15{bottom:477.733333pt;}
.y6a{bottom:478.213333pt;}
.y11d{bottom:479.893333pt;}
.y44{bottom:490.853333pt;}
.yd0{bottom:491.573333pt;}
.y8f{bottom:492.613333pt;}
.y14{bottom:493.413333pt;}
.y69{bottom:494.613333pt;}
.y11c{bottom:495.493333pt;}
.yf4{bottom:498.613333pt;}
.y43{bottom:506.453333pt;}
.y8e{bottom:508.293333pt;}
.y13{bottom:509.013333pt;}
.y68{bottom:510.213333pt;}
.y11b{bottom:519.173333pt;}
.yf3{bottom:522.533333pt;}
.y42{bottom:522.853333pt;}
.ycf{bottom:523.253333pt;}
.y12{bottom:524.613333pt;}
.y11a{bottom:534.773333pt;}
.y8c{bottom:537.573333pt;}
.yce{bottom:538.853333pt;}
.y67{bottom:540.293333pt;}
.y41{bottom:547.493333pt;}
.ycd{bottom:554.453333pt;}
.yf2{bottom:555.413333pt;}
.y11{bottom:556.293333pt;}
.y119{bottom:558.453333pt;}
.y8d{bottom:561.893333pt;}
.y66{bottom:564.613333pt;}
.ycc{bottom:570.133333pt;}
.y10{bottom:571.893333pt;}
.y118{bottom:574.053333pt;}
.yf1{bottom:579.333333pt;}
.y8a{bottom:586.213333pt;}
.yf{bottom:587.573333pt;}
.y40{bottom:590.453333pt;}
.y117{bottom:597.653333pt;}
.ycb{bottom:601.733333pt;}
.ye{bottom:603.173333pt;}
.y3f{bottom:606.053333pt;}
.y63{bottom:608.533333pt;}
.y8b{bottom:610.453333pt;}
.yf0{bottom:612.293333pt;}
.y116{bottom:613.333333pt;}
.yca{bottom:617.413333pt;}
.yd{bottom:618.773333pt;}
.y3e{bottom:621.653333pt;}
.yef{bottom:627.893333pt;}
.yc9{bottom:633.013333pt;}
.y88{bottom:634.773333pt;}
.y115{bottom:636.933333pt;}
.y3d{bottom:637.333333pt;}
.yae{bottom:642.693333pt;}
.yc{bottom:642.773333pt;}
.yee{bottom:643.493333pt;}
.y114{bottom:652.613333pt;}
.yad{bottom:656.053333pt;}
.y89{bottom:659.093333pt;}
.yed{bottom:659.173333pt;}
.yc8{bottom:664.613333pt;}
.y3c{bottom:668.933333pt;}
.yec{bottom:674.773333pt;}
.y113{bottom:676.213333pt;}
.yc7{bottom:680.293333pt;}
.yac{bottom:680.373333pt;}
.y87{bottom:683.333333pt;}
.yb{bottom:684.293333pt;}
.y3b{bottom:684.613333pt;}
.y62{bottom:691.733333pt;}
.y112{bottom:691.813333pt;}
.yc6{bottom:695.893333pt;}
.yeb{bottom:698.693333pt;}
.y3a{bottom:700.213333pt;}
.yab{bottom:704.613333pt;}
.yc5{bottom:711.573333pt;}
.y111{bottom:715.493333pt;}
.y39{bottom:715.813333pt;}
.ya{bottom:715.893333pt;}
.y61{bottom:716.053333pt;}
.y86{bottom:726.693333pt;}
.y110{bottom:731.093333pt;}
.y38{bottom:731.493333pt;}
.yea{bottom:731.893333pt;}
.yc4{bottom:743.173333pt;}
.y37{bottom:747.093333pt;}
.y9{bottom:747.733333pt;}
.yaa{bottom:747.893333pt;}
.y10f{bottom:754.693333pt;}
.y85{bottom:758.293333pt;}
.yc3{bottom:758.773333pt;}
.y10e{bottom:770.373333pt;}
.y84{bottom:773.893333pt;}
.yc2{bottom:774.453333pt;}
.ye9{bottom:774.773333pt;}
.y36{bottom:778.693333pt;}
.ya9{bottom:779.573333pt;}
.y8{bottom:783.093333pt;}
.y83{bottom:789.573333pt;}
.yc1{bottom:790.053333pt;}
.ye8{bottom:790.453333pt;}
.y10d{bottom:793.973333pt;}
.y35{bottom:794.373333pt;}
.ya8{bottom:795.173333pt;}
.y7{bottom:799.093333pt;}
.y5d{bottom:799.253333pt;}
.y82{bottom:805.173333pt;}
.ye7{bottom:806.053333pt;}
.y10c{bottom:809.653333pt;}
.y34{bottom:809.973333pt;}
.y6{bottom:815.093333pt;}
.y81{bottom:820.853333pt;}
.yc0{bottom:821.733333pt;}
.ya7{bottom:824.533333pt;}
.y33{bottom:825.653333pt;}
.y10b{bottom:833.253333pt;}
.ybf{bottom:837.333333pt;}
.y32{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.ya6{bottom:848.773333pt;}
.y10a{bottom:848.853333pt;}
.y80{bottom:850.133333pt;}
.ybe{bottom:852.933333pt;}
.y31{bottom:856.853333pt;}
.y109{bottom:864.533333pt;}
.ybd{bottom:868.613333pt;}
.y30{bottom:872.533333pt;}
.ya4{bottom:873.093333pt;}
.y7f{bottom:874.453333pt;}
.y4{bottom:877.893333pt;}
.ybc{bottom:884.213333pt;}
.y2f{bottom:888.133333pt;}
.ya2{bottom:897.413333pt;}
.y7d{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.y5c{bottom:902.080000pt;}
.y2e{bottom:903.840000pt;}
.ybb{bottom:915.520000pt;}
.y2d{bottom:919.440000pt;}
.ya0{bottom:921.680000pt;}
.y7e{bottom:923.040000pt;}
.y5a{bottom:926.400000pt;}
.y108{bottom:927.440000pt;}
.ye6{bottom:931.120000pt;}
.yba{bottom:939.440000pt;}
.y107{bottom:943.040000pt;}
.y9f{bottom:946.000000pt;}
.y2c{bottom:951.040000pt;}
.ye5{bottom:955.040000pt;}
.y106{bottom:958.720000pt;}
.y7c{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.y58{bottom:970.320000pt;}
.y2a{bottom:982.320000pt;}
.y29{bottom:998.000000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h11{height:23.626667pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hb{height:43.280000pt;}
.h7{height:45.246562pt;}
.h10{height:47.920000pt;}
.h13{height:47.946667pt;}
.h12{height:48.000000pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hd{height:82.480000pt;}
.he{height:82.560000pt;}
.hc{height:102.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w21{width:31.840000pt;}
.w26{width:38.640000pt;}
.w1b{width:38.746667pt;}
.w20{width:40.560000pt;}
.w1a{width:47.360000pt;}
.w23{width:48.160000pt;}
.we{width:48.346667pt;}
.w1d{width:54.960000pt;}
.w2e{width:62.480000pt;}
.w24{width:63.760000pt;}
.w2c{width:68.026667pt;}
.w1e{width:70.560000pt;}
.wc{width:71.920000pt;}
.w16{width:72.160000pt;}
.w12{width:72.720000pt;}
.w2d{width:73.600000pt;}
.w14{width:76.720000pt;}
.wa{width:77.440000pt;}
.w8{width:79.200000pt;}
.w4{width:81.306667pt;}
.w2a{width:100.080000pt;}
.wd{width:102.640000pt;}
.w17{width:102.880000pt;}
.w13{width:103.680000pt;}
.w1f{width:104.320000pt;}
.w22{width:106.026667pt;}
.w15{width:109.386667pt;}
.wb{width:110.666667pt;}
.w25{width:111.120000pt;}
.w18{width:111.146667pt;}
.w1c{width:112.800000pt;}
.w27{width:112.826667pt;}
.w9{width:112.960000pt;}
.w29{width:123.680000pt;}
.w2b{width:125.680000pt;}
.w7{width:175.200000pt;}
.w11{width:175.440000pt;}
.wf{width:176.720000pt;}
.w19{width:184.800000pt;}
.w10{width:186.426667pt;}
.w6{width:188.746667pt;}
.w5{width:192.800000pt;}
.w28{width:254.746667pt;}
.w3{width:460.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:3.440000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x8{left:76.960000pt;}
.x2a{left:81.119988pt;}
.x4{left:84.479988pt;}
.x31{left:98.879988pt;}
.x10{left:103.040000pt;}
.x5{left:108.479988pt;}
.x11{left:151.706667pt;}
.xa{left:158.986667pt;}
.x6{left:166.666667pt;}
.x2{left:172.826655pt;}
.x22{left:177.626667pt;}
.x17{left:196.666667pt;}
.x1c{left:198.026667pt;}
.x27{left:207.466667pt;}
.x2d{left:212.266667pt;}
.x14{left:224.746667pt;}
.xd{left:238.826667pt;}
.x23{left:289.386667pt;}
.x1d{left:302.986667pt;}
.x2e{left:313.066667pt;}
.x12{left:328.746667pt;}
.x24{left:337.386667pt;}
.x1e{left:344.186667pt;}
.xb{left:352.506667pt;}
.x2b{left:375.386655pt;}
.x1f{left:376.746667pt;}
.x18{left:382.106667pt;}
.x2c{left:396.986655pt;}
.x15{left:405.786667pt;}
.xe{left:430.586667pt;}
.x2f{left:439.466667pt;}
.x28{left:462.853333pt;}
.x19{left:469.493333pt;}
.x20{left:483.413333pt;}
.x25{left:490.213333pt;}
.x30{left:508.213333pt;}
.x13{left:515.493333pt;}
.x21{left:532.213333pt;}
.xc{left:541.893333pt;}
.x26{left:545.813333pt;}
.x1a{left:582.933333pt;}
.x16{left:588.053333pt;}
.xf{left:614.453333pt;}
.x29{left:618.053322pt;}
.x1b{left:638.533333pt;}
.x3{left:711.413322pt;}
}




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