
    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_c7f507dcfe5f7c81d19e315c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_871c0f35796df840a6235337.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ea2f526c05b4a96c4eea0471.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_54eede8770e72f363330911f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_181e6d46f4cf8dd1692578f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.253200px;}
.lsa{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.lse{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.439920px;}
.ls7{letter-spacing:3.780000px;}
.lsd{letter-spacing:11.466720px;}
.lsc{letter-spacing:41.682720px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.ws6{word-spacing:-14.686800px;}
.ws8{word-spacing:-14.680200px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._8{width:2.375040px;}
._2{width:4.245600px;}
._10{width:5.796720px;}
._12{width:7.411920px;}
._11{width:8.657520px;}
._6{width:10.398240px;}
._c{width:11.653200px;}
._e{width:13.505760px;}
._9{width:16.153200px;}
._2d{width:18.069120px;}
._13{width:19.257600px;}
._f{width:20.669280px;}
._d{width:21.811920px;}
._7{width:22.820640px;}
._a{width:24.015840px;}
._b{width:25.465440px;}
._14{width:26.801280px;}
._18{width:27.907920px;}
._32{width:29.274720px;}
._26{width:33.107040px;}
._31{width:34.377600px;}
._17{width:48.943440px;}
._2e{width:53.955600px;}
._2f{width:55.052160px;}
._23{width:56.293920px;}
._30{width:70.572480px;}
._2c{width:73.743840px;}
._2a{width:75.895200px;}
._21{width:78.883200px;}
._5{width:85.656000px;}
._1d{width:89.281440px;}
._2b{width:98.484480px;}
._22{width:99.560160px;}
._27{width:105.416640px;}
._1a{width:116.651520px;}
._15{width:133.145280px;}
._16{width:134.159040px;}
._1c{width:146.053440px;}
._1e{width:153.284400px;}
._24{width:185.614560px;}
._20{width:198.642240px;}
._29{width:208.144080px;}
._1f{width:222.247440px;}
._1b{width:248.900400px;}
._25{width:251.589600px;}
._28{width:291.867840px;}
._19{width:483.271440px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:3.240000px;}
.y79{bottom:16.560000px;}
.yb2{bottom:20.340000px;}
.ybb{bottom:20.370000px;}
.yc8{bottom:20.514000px;}
.yab{bottom:20.520000px;}
.ydb{bottom:20.565000px;}
.y98{bottom:22.140000px;}
.ya8{bottom:34.014000px;}
.yb{bottom:36.720000px;}
.ye1{bottom:37.614000px;}
.yb1{bottom:37.620000px;}
.yc7{bottom:37.794000px;}
.yaf{bottom:37.800000px;}
.yda{bottom:37.845000px;}
.ya5{bottom:48.240000px;}
.ye0{bottom:54.894000px;}
.yd7{bottom:54.900000px;}
.ycc{bottom:55.080000px;}
.ya{bottom:55.260000px;}
.ya7{bottom:55.794000px;}
.ya4{bottom:69.840000px;}
.y9{bottom:70.776000px;}
.y41{bottom:115.956000px;}
.ya6{bottom:117.576000px;}
.yc9{bottom:118.836000px;}
.y115{bottom:119.016000px;}
.ye2{bottom:119.556000px;}
.y117{bottom:120.456000px;}
.y77{bottom:124.416000px;}
.y96{bottom:126.756000px;}
.y9d{bottom:130.320000px;}
.y40{bottom:133.236000px;}
.y114{bottom:136.296000px;}
.ya2{bottom:136.800000px;}
.yc6{bottom:136.836000px;}
.ydf{bottom:137.556000px;}
.y116{bottom:137.736000px;}
.y3f{bottom:150.510000px;}
.y9c{bottom:152.100000px;}
.y113{bottom:153.570000px;}
.y76{bottom:155.010000px;}
.y95{bottom:157.350000px;}
.ya1{bottom:158.580000px;}
.y3e{bottom:167.790000px;}
.y112{bottom:170.670000px;}
.y75{bottom:172.290000px;}
.y3d{bottom:185.070000px;}
.y9b{bottom:185.760000px;}
.y94{bottom:187.950000px;}
.yc5{bottom:189.390000px;}
.y74{bottom:189.570000px;}
.ya0{bottom:192.240000px;}
.y3c{bottom:202.170000px;}
.y111{bottom:205.230000px;}
.y73{bottom:206.670000px;}
.y9a{bottom:207.540000px;}
.yde{bottom:210.450000px;}
.y9f{bottom:214.050000px;}
.y93{bottom:218.550000px;}
.y3b{bottom:219.450000px;}
.y110{bottom:222.510000px;}
.y72{bottom:223.950000px;}
.ydd{bottom:225.210000px;}
.y3a{bottom:236.730000px;}
.y10f{bottom:239.790000px;}
.y71{bottom:241.230000px;}
.yc4{bottom:241.950000px;}
.y92{bottom:249.150000px;}
.ya3{bottom:251.670000px;}
.y39{bottom:254.010000px;}
.y10e{bottom:256.890000px;}
.y70{bottom:258.510000px;}
.y38{bottom:271.290000px;}
.y10d{bottom:274.170000px;}
.y6f{bottom:275.790000px;}
.ydc{bottom:277.770000px;}
.y91{bottom:279.750000px;}
.y37{bottom:288.390000px;}
.y10c{bottom:291.450000px;}
.y6e{bottom:292.890000px;}
.yc3{bottom:294.330000px;}
.y36{bottom:305.670000px;}
.y10b{bottom:308.730000px;}
.y6d{bottom:310.170000px;}
.y90{bottom:310.350000px;}
.y35{bottom:322.950000px;}
.y10a{bottom:326.010000px;}
.y6c{bottom:327.450000px;}
.yd9{bottom:330.150000px;}
.y34{bottom:340.275000px;}
.y8f{bottom:340.995000px;}
.y109{bottom:343.335000px;}
.y6b{bottom:344.775000px;}
.yc2{bottom:350.175000px;}
.y33{bottom:357.555000px;}
.y108{bottom:360.435000px;}
.y6a{bottom:362.055000px;}
.yc1{bottom:364.935000px;}
.y8e{bottom:371.595000px;}
.y32{bottom:374.835000px;}
.y107{bottom:377.715000px;}
.y69{bottom:379.335000px;}
.yd8{bottom:382.755000px;}
.y9e{bottom:390.675000px;}
.y31{bottom:391.935000px;}
.y99{bottom:394.275000px;}
.y106{bottom:394.995000px;}
.y68{bottom:396.435000px;}
.yc0{bottom:400.215000px;}
.y8d{bottom:402.195000px;}
.y30{bottom:409.215000px;}
.y105{bottom:412.275000px;}
.y67{bottom:413.715000px;}
.y2f{bottom:426.495000px;}
.y104{bottom:429.555000px;}
.y66{bottom:430.995000px;}
.y8c{bottom:432.975000px;}
.ybf{bottom:435.315000px;}
.y2e{bottom:443.775000px;}
.y103{bottom:446.835000px;}
.y65{bottom:448.275000px;}
.y2d{bottom:461.055000px;}
.y8b{bottom:463.575000px;}
.y102{bottom:463.935000px;}
.y64{bottom:465.555000px;}
.y2c{bottom:480.495000px;}
.y101{bottom:481.215000px;}
.y63{bottom:482.835000px;}
.ybe{bottom:487.875000px;}
.y8a{bottom:494.175000px;}
.y2b{bottom:497.775000px;}
.y100{bottom:498.495000px;}
.y62{bottom:499.935000px;}
.yd6{bottom:504.975000px;}
.y2a{bottom:515.055000px;}
.yff{bottom:515.775000px;}
.y61{bottom:517.215000px;}
.ybd{bottom:523.155000px;}
.y89{bottom:524.775000px;}
.y29{bottom:532.335000px;}
.yfe{bottom:533.055000px;}
.y60{bottom:534.495000px;}
.y28{bottom:549.435000px;}
.yfd{bottom:550.155000px;}
.y5f{bottom:551.775000px;}
.y88{bottom:555.375000px;}
.yd5{bottom:557.535000px;}
.y27{bottom:566.715000px;}
.yfc{bottom:567.435000px;}
.y5e{bottom:569.055000px;}
.ybc{bottom:575.715000px;}
.y26{bottom:583.995000px;}
.yfb{bottom:584.715000px;}
.y87{bottom:585.975000px;}
.y5d{bottom:586.155000px;}
.yba{bottom:593.715000px;}
.y25{bottom:601.275000px;}
.yfa{bottom:601.995000px;}
.y5c{bottom:603.435000px;}
.yd4{bottom:609.945000px;}
.y86{bottom:616.605000px;}
.y24{bottom:618.585000px;}
.yf9{bottom:619.305000px;}
.y5b{bottom:620.745000px;}
.yb9{bottom:628.845000px;}
.y23{bottom:635.685000px;}
.yf8{bottom:636.585000px;}
.y5a{bottom:638.025000px;}
.yb8{bottom:646.845000px;}
.y85{bottom:647.205000px;}
.y22{bottom:652.965000px;}
.yf7{bottom:653.685000px;}
.y59{bottom:655.305000px;}
.yd3{bottom:662.505000px;}
.yb7{bottom:664.845000px;}
.y21{bottom:670.245000px;}
.yf6{bottom:670.965000px;}
.y58{bottom:672.585000px;}
.y84{bottom:677.805000px;}
.yb6{bottom:686.085000px;}
.y20{bottom:687.525000px;}
.yf5{bottom:688.245000px;}
.y57{bottom:689.685000px;}
.yb5{bottom:700.845000px;}
.y1f{bottom:704.805000px;}
.yf4{bottom:705.525000px;}
.y56{bottom:706.965000px;}
.y83{bottom:708.405000px;}
.y97{bottom:710.745000px;}
.yd2{bottom:715.065000px;}
.y1e{bottom:722.085000px;}
.yf3{bottom:722.805000px;}
.y55{bottom:724.245000px;}
.yb4{bottom:736.125000px;}
.y82{bottom:739.005000px;}
.y1d{bottom:739.185000px;}
.yf2{bottom:740.085000px;}
.y54{bottom:741.525000px;}
.y1c{bottom:756.465000px;}
.yf1{bottom:757.185000px;}
.y53{bottom:758.805000px;}
.y81{bottom:769.605000px;}
.yd1{bottom:770.685000px;}
.yb3{bottom:771.405000px;}
.y1b{bottom:773.745000px;}
.yf0{bottom:774.465000px;}
.y52{bottom:776.085000px;}
.y80{bottom:784.545000px;}
.yd0{bottom:785.445000px;}
.y1a{bottom:791.025000px;}
.yef{bottom:791.745000px;}
.y51{bottom:793.185000px;}
.y19{bottom:808.305000px;}
.yee{bottom:809.025000px;}
.y50{bottom:810.465000px;}
.y7f{bottom:815.865000px;}
.yb0{bottom:823.965000px;}
.y18{bottom:825.585000px;}
.yed{bottom:826.305000px;}
.y4f{bottom:827.745000px;}
.ycf{bottom:838.005000px;}
.y17{bottom:842.685000px;}
.yec{bottom:843.585000px;}
.y4e{bottom:845.025000px;}
.y7e{bottom:847.185000px;}
.y16{bottom:859.965000px;}
.yeb{bottom:860.685000px;}
.y4d{bottom:862.305000px;}
.yce{bottom:873.330000px;}
.yae{bottom:876.390000px;}
.yea{bottom:878.010000px;}
.y7d{bottom:878.550000px;}
.y15{bottom:879.450000px;}
.y4c{bottom:879.630000px;}
.ye9{bottom:895.290000px;}
.y4b{bottom:896.730000px;}
.y14{bottom:897.270000px;}
.y7c{bottom:910.050000px;}
.ye8{bottom:912.570000px;}
.y4a{bottom:914.010000px;}
.y13{bottom:916.170000px;}
.ycd{bottom:925.710000px;}
.yad{bottom:928.950000px;}
.ye7{bottom:929.850000px;}
.y49{bottom:931.290000px;}
.y12{bottom:935.250000px;}
.y7b{bottom:941.370000px;}
.yac{bottom:946.950000px;}
.y48{bottom:948.570000px;}
.y11{bottom:954.150000px;}
.ycb{bottom:960.990000px;}
.ye6{bottom:964.230000px;}
.y47{bottom:965.850000px;}
.y7a{bottom:972.690000px;}
.y10{bottom:973.050000px;}
.ye5{bottom:981.510000px;}
.yaa{bottom:982.230000px;}
.y46{bottom:982.950000px;}
.yf{bottom:992.130000px;}
.ye4{bottom:998.790000px;}
.y45{bottom:1000.230000px;}
.y78{bottom:1004.010000px;}
.ye{bottom:1010.670000px;}
.ye3{bottom:1016.070000px;}
.y44{bottom:1017.510000px;}
.yd{bottom:1028.670000px;}
.yca{bottom:1030.830000px;}
.y43{bottom:1034.790000px;}
.yc{bottom:1049.370000px;}
.y42{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h11{height:17.100000px;}
.h14{height:17.280000px;}
.ha{height:30.600000px;}
.hb{height:30.636000px;}
.h12{height:34.380000px;}
.h18{height:34.416000px;}
.h13{height:34.560000px;}
.h1b{height:34.596000px;}
.h6{height:37.705078px;}
.hc{height:37.800000px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h1d{height:43.506914px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.h9{height:48.496641px;}
.h4{height:50.800781px;}
.h17{height:51.660000px;}
.h16{height:51.696000px;}
.h15{height:51.840000px;}
.h19{height:51.876000px;}
.h7{height:65.884219px;}
.h1c{height:68.940000px;}
.h1a{height:69.120000px;}
.h10{height:71.460000px;}
.hf{height:85.536000px;}
.hd{height:223.230000px;}
.he{height:229.710000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:33.840000px;}
.wa{width:37.440000px;}
.w12{width:37.980000px;}
.w16{width:41.760000px;}
.w1a{width:47.340000px;}
.w14{width:52.740000px;}
.w18{width:56.520000px;}
.w10{width:56.700000px;}
.wc{width:57.960000px;}
.w1b{width:151.050000px;}
.wf{width:153.210000px;}
.wb{width:155.010000px;}
.w17{width:155.550000px;}
.w13{width:160.590000px;}
.w9{width:262.695000px;}
.w8{width:264.675000px;}
.w7{width:267.015000px;}
.w6{width:267.870000px;}
.w3{width:318.810000px;}
.w4{width:319.035000px;}
.wd{width:331.635000px;}
.w19{width:335.595000px;}
.w15{width:337.215000px;}
.w11{width:339.015000px;}
.w5{width:419.655000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1c{left:19.800000px;}
.x25{left:23.625000px;}
.x19{left:26.100000px;}
.x1e{left:27.750000px;}
.x23{left:30.465000px;}
.x20{left:36.930000px;}
.x22{left:47.025000px;}
.x1f{left:53.490000px;}
.x1a{left:71.634000px;}
.x1b{left:81.534000px;}
.x12{left:100.296000px;}
.x1{left:108.035987px;}
.x26{left:109.485000px;}
.x18{left:110.556000px;}
.x2{left:123.155987px;}
.x27{left:135.035987px;}
.x33{left:150.150000px;}
.x2e{left:151.230000px;}
.xb{left:153.569987px;}
.x17{left:155.385000px;}
.x4{left:157.169987px;}
.x38{left:162.029987px;}
.x16{left:173.190000px;}
.x8{left:180.389987px;}
.x2b{left:188.670000px;}
.x2f{left:189.930000px;}
.x28{left:192.630000px;}
.x34{left:198.210000px;}
.x7{left:199.829987px;}
.x21{left:264.630000px;}
.x24{left:265.710000px;}
.xe{left:273.089987px;}
.xd{left:330.914987px;}
.x11{left:340.094987px;}
.x2c{left:342.615000px;}
.x36{left:345.494987px;}
.x15{left:346.754987px;}
.x29{left:348.375000px;}
.x32{left:349.455000px;}
.x30{left:351.255000px;}
.x37{left:362.414987px;}
.x35{left:366.014987px;}
.xc{left:371.054987px;}
.xa{left:373.934987px;}
.x10{left:384.554987px;}
.xf{left:386.534987px;}
.x6{left:396.434987px;}
.x2d{left:400.035000px;}
.x31{left:404.715000px;}
.x2a{left:407.235000px;}
.x5{left:412.274987px;}
.x14{left:419.835000px;}
.x9{left:446.474987px;}
.x1d{left:454.755000px;}
.x3{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.225067pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.391040pt;}
.ls7{letter-spacing:3.360000pt;}
.lsd{letter-spacing:10.192640pt;}
.lsc{letter-spacing:37.051307pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.ws6{word-spacing:-13.054933pt;}
.ws8{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._8{width:2.111147pt;}
._2{width:3.773867pt;}
._10{width:5.152640pt;}
._12{width:6.588373pt;}
._11{width:7.695573pt;}
._6{width:9.242880pt;}
._c{width:10.358400pt;}
._e{width:12.005120pt;}
._9{width:14.358400pt;}
._2d{width:16.061440pt;}
._13{width:17.117867pt;}
._f{width:18.372693pt;}
._d{width:19.388373pt;}
._7{width:20.285013pt;}
._a{width:21.347413pt;}
._b{width:22.635947pt;}
._14{width:23.823360pt;}
._18{width:24.807040pt;}
._32{width:26.021973pt;}
._26{width:29.428480pt;}
._31{width:30.557867pt;}
._17{width:43.505280pt;}
._2e{width:47.960533pt;}
._2f{width:48.935253pt;}
._23{width:50.039040pt;}
._30{width:62.731093pt;}
._2c{width:65.550080pt;}
._2a{width:67.462400pt;}
._21{width:70.118400pt;}
._5{width:76.138667pt;}
._1d{width:79.361280pt;}
._2b{width:87.541760pt;}
._22{width:88.497920pt;}
._27{width:93.703680pt;}
._1a{width:103.690240pt;}
._15{width:118.351360pt;}
._16{width:119.252480pt;}
._1c{width:129.825280pt;}
._1e{width:136.252800pt;}
._24{width:164.990720pt;}
._20{width:176.570880pt;}
._29{width:185.016960pt;}
._1f{width:197.553280pt;}
._1b{width:221.244800pt;}
._25{width:223.635200pt;}
._28{width:259.438080pt;}
._19{width:429.574613pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:2.880000pt;}
.y79{bottom:14.720000pt;}
.yb2{bottom:18.080000pt;}
.ybb{bottom:18.106667pt;}
.yc8{bottom:18.234667pt;}
.yab{bottom:18.240000pt;}
.ydb{bottom:18.280000pt;}
.y98{bottom:19.680000pt;}
.ya8{bottom:30.234667pt;}
.yb{bottom:32.640000pt;}
.ye1{bottom:33.434667pt;}
.yb1{bottom:33.440000pt;}
.yc7{bottom:33.594667pt;}
.yaf{bottom:33.600000pt;}
.yda{bottom:33.640000pt;}
.ya5{bottom:42.880000pt;}
.ye0{bottom:48.794667pt;}
.yd7{bottom:48.800000pt;}
.ycc{bottom:48.960000pt;}
.ya{bottom:49.120000pt;}
.ya7{bottom:49.594667pt;}
.ya4{bottom:62.080000pt;}
.y9{bottom:62.912000pt;}
.y41{bottom:103.072000pt;}
.ya6{bottom:104.512000pt;}
.yc9{bottom:105.632000pt;}
.y115{bottom:105.792000pt;}
.ye2{bottom:106.272000pt;}
.y117{bottom:107.072000pt;}
.y77{bottom:110.592000pt;}
.y96{bottom:112.672000pt;}
.y9d{bottom:115.840000pt;}
.y40{bottom:118.432000pt;}
.y114{bottom:121.152000pt;}
.ya2{bottom:121.600000pt;}
.yc6{bottom:121.632000pt;}
.ydf{bottom:122.272000pt;}
.y116{bottom:122.432000pt;}
.y3f{bottom:133.786667pt;}
.y9c{bottom:135.200000pt;}
.y113{bottom:136.506667pt;}
.y76{bottom:137.786667pt;}
.y95{bottom:139.866667pt;}
.ya1{bottom:140.960000pt;}
.y3e{bottom:149.146667pt;}
.y112{bottom:151.706667pt;}
.y75{bottom:153.146667pt;}
.y3d{bottom:164.506667pt;}
.y9b{bottom:165.120000pt;}
.y94{bottom:167.066667pt;}
.yc5{bottom:168.346667pt;}
.y74{bottom:168.506667pt;}
.ya0{bottom:170.880000pt;}
.y3c{bottom:179.706667pt;}
.y111{bottom:182.426667pt;}
.y73{bottom:183.706667pt;}
.y9a{bottom:184.480000pt;}
.yde{bottom:187.066667pt;}
.y9f{bottom:190.266667pt;}
.y93{bottom:194.266667pt;}
.y3b{bottom:195.066667pt;}
.y110{bottom:197.786667pt;}
.y72{bottom:199.066667pt;}
.ydd{bottom:200.186667pt;}
.y3a{bottom:210.426667pt;}
.y10f{bottom:213.146667pt;}
.y71{bottom:214.426667pt;}
.yc4{bottom:215.066667pt;}
.y92{bottom:221.466667pt;}
.ya3{bottom:223.706667pt;}
.y39{bottom:225.786667pt;}
.y10e{bottom:228.346667pt;}
.y70{bottom:229.786667pt;}
.y38{bottom:241.146667pt;}
.y10d{bottom:243.706667pt;}
.y6f{bottom:245.146667pt;}
.ydc{bottom:246.906667pt;}
.y91{bottom:248.666667pt;}
.y37{bottom:256.346667pt;}
.y10c{bottom:259.066667pt;}
.y6e{bottom:260.346667pt;}
.yc3{bottom:261.626667pt;}
.y36{bottom:271.706667pt;}
.y10b{bottom:274.426667pt;}
.y6d{bottom:275.706667pt;}
.y90{bottom:275.866667pt;}
.y35{bottom:287.066667pt;}
.y10a{bottom:289.786667pt;}
.y6c{bottom:291.066667pt;}
.yd9{bottom:293.466667pt;}
.y34{bottom:302.466667pt;}
.y8f{bottom:303.106667pt;}
.y109{bottom:305.186667pt;}
.y6b{bottom:306.466667pt;}
.yc2{bottom:311.266667pt;}
.y33{bottom:317.826667pt;}
.y108{bottom:320.386667pt;}
.y6a{bottom:321.826667pt;}
.yc1{bottom:324.386667pt;}
.y8e{bottom:330.306667pt;}
.y32{bottom:333.186667pt;}
.y107{bottom:335.746667pt;}
.y69{bottom:337.186667pt;}
.yd8{bottom:340.226667pt;}
.y9e{bottom:347.266667pt;}
.y31{bottom:348.386667pt;}
.y99{bottom:350.466667pt;}
.y106{bottom:351.106667pt;}
.y68{bottom:352.386667pt;}
.yc0{bottom:355.746667pt;}
.y8d{bottom:357.506667pt;}
.y30{bottom:363.746667pt;}
.y105{bottom:366.466667pt;}
.y67{bottom:367.746667pt;}
.y2f{bottom:379.106667pt;}
.y104{bottom:381.826667pt;}
.y66{bottom:383.106667pt;}
.y8c{bottom:384.866667pt;}
.ybf{bottom:386.946667pt;}
.y2e{bottom:394.466667pt;}
.y103{bottom:397.186667pt;}
.y65{bottom:398.466667pt;}
.y2d{bottom:409.826667pt;}
.y8b{bottom:412.066667pt;}
.y102{bottom:412.386667pt;}
.y64{bottom:413.826667pt;}
.y2c{bottom:427.106667pt;}
.y101{bottom:427.746667pt;}
.y63{bottom:429.186667pt;}
.ybe{bottom:433.666667pt;}
.y8a{bottom:439.266667pt;}
.y2b{bottom:442.466667pt;}
.y100{bottom:443.106667pt;}
.y62{bottom:444.386667pt;}
.yd6{bottom:448.866667pt;}
.y2a{bottom:457.826667pt;}
.yff{bottom:458.466667pt;}
.y61{bottom:459.746667pt;}
.ybd{bottom:465.026667pt;}
.y89{bottom:466.466667pt;}
.y29{bottom:473.186667pt;}
.yfe{bottom:473.826667pt;}
.y60{bottom:475.106667pt;}
.y28{bottom:488.386667pt;}
.yfd{bottom:489.026667pt;}
.y5f{bottom:490.466667pt;}
.y88{bottom:493.666667pt;}
.yd5{bottom:495.586667pt;}
.y27{bottom:503.746667pt;}
.yfc{bottom:504.386667pt;}
.y5e{bottom:505.826667pt;}
.ybc{bottom:511.746667pt;}
.y26{bottom:519.106667pt;}
.yfb{bottom:519.746667pt;}
.y87{bottom:520.866667pt;}
.y5d{bottom:521.026667pt;}
.yba{bottom:527.746667pt;}
.y25{bottom:534.466667pt;}
.yfa{bottom:535.106667pt;}
.y5c{bottom:536.386667pt;}
.yd4{bottom:542.173333pt;}
.y86{bottom:548.093333pt;}
.y24{bottom:549.853333pt;}
.yf9{bottom:550.493333pt;}
.y5b{bottom:551.773333pt;}
.yb9{bottom:558.973333pt;}
.y23{bottom:565.053333pt;}
.yf8{bottom:565.853333pt;}
.y5a{bottom:567.133333pt;}
.yb8{bottom:574.973333pt;}
.y85{bottom:575.293333pt;}
.y22{bottom:580.413333pt;}
.yf7{bottom:581.053333pt;}
.y59{bottom:582.493333pt;}
.yd3{bottom:588.893333pt;}
.yb7{bottom:590.973333pt;}
.y21{bottom:595.773333pt;}
.yf6{bottom:596.413333pt;}
.y58{bottom:597.853333pt;}
.y84{bottom:602.493333pt;}
.yb6{bottom:609.853333pt;}
.y20{bottom:611.133333pt;}
.yf5{bottom:611.773333pt;}
.y57{bottom:613.053333pt;}
.yb5{bottom:622.973333pt;}
.y1f{bottom:626.493333pt;}
.yf4{bottom:627.133333pt;}
.y56{bottom:628.413333pt;}
.y83{bottom:629.693333pt;}
.y97{bottom:631.773333pt;}
.yd2{bottom:635.613333pt;}
.y1e{bottom:641.853333pt;}
.yf3{bottom:642.493333pt;}
.y55{bottom:643.773333pt;}
.yb4{bottom:654.333333pt;}
.y82{bottom:656.893333pt;}
.y1d{bottom:657.053333pt;}
.yf2{bottom:657.853333pt;}
.y54{bottom:659.133333pt;}
.y1c{bottom:672.413333pt;}
.yf1{bottom:673.053333pt;}
.y53{bottom:674.493333pt;}
.y81{bottom:684.093333pt;}
.yd1{bottom:685.053333pt;}
.yb3{bottom:685.693333pt;}
.y1b{bottom:687.773333pt;}
.yf0{bottom:688.413333pt;}
.y52{bottom:689.853333pt;}
.y80{bottom:697.373333pt;}
.yd0{bottom:698.173333pt;}
.y1a{bottom:703.133333pt;}
.yef{bottom:703.773333pt;}
.y51{bottom:705.053333pt;}
.y19{bottom:718.493333pt;}
.yee{bottom:719.133333pt;}
.y50{bottom:720.413333pt;}
.y7f{bottom:725.213333pt;}
.yb0{bottom:732.413333pt;}
.y18{bottom:733.853333pt;}
.yed{bottom:734.493333pt;}
.y4f{bottom:735.773333pt;}
.ycf{bottom:744.893333pt;}
.y17{bottom:749.053333pt;}
.yec{bottom:749.853333pt;}
.y4e{bottom:751.133333pt;}
.y7e{bottom:753.053333pt;}
.y16{bottom:764.413333pt;}
.yeb{bottom:765.053333pt;}
.y4d{bottom:766.493333pt;}
.yce{bottom:776.293333pt;}
.yae{bottom:779.013333pt;}
.yea{bottom:780.453333pt;}
.y7d{bottom:780.933333pt;}
.y15{bottom:781.733333pt;}
.y4c{bottom:781.893333pt;}
.ye9{bottom:795.813333pt;}
.y4b{bottom:797.093333pt;}
.y14{bottom:797.573333pt;}
.y7c{bottom:808.933333pt;}
.ye8{bottom:811.173333pt;}
.y4a{bottom:812.453333pt;}
.y13{bottom:814.373333pt;}
.ycd{bottom:822.853333pt;}
.yad{bottom:825.733333pt;}
.ye7{bottom:826.533333pt;}
.y49{bottom:827.813333pt;}
.y12{bottom:831.333333pt;}
.y7b{bottom:836.773333pt;}
.yac{bottom:841.733333pt;}
.y48{bottom:843.173333pt;}
.y11{bottom:848.133333pt;}
.ycb{bottom:854.213333pt;}
.ye6{bottom:857.093333pt;}
.y47{bottom:858.533333pt;}
.y7a{bottom:864.613333pt;}
.y10{bottom:864.933333pt;}
.ye5{bottom:872.453333pt;}
.yaa{bottom:873.093333pt;}
.y46{bottom:873.733333pt;}
.yf{bottom:881.893333pt;}
.ye4{bottom:887.813333pt;}
.y45{bottom:889.093333pt;}
.y78{bottom:892.453333pt;}
.ye{bottom:898.373333pt;}
.ye3{bottom:903.173333pt;}
.y44{bottom:904.453333pt;}
.yd{bottom:914.373333pt;}
.yca{bottom:916.293333pt;}
.y43{bottom:919.813333pt;}
.yc{bottom:932.773333pt;}
.y42{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h11{height:15.200000pt;}
.h14{height:15.360000pt;}
.ha{height:27.200000pt;}
.hb{height:27.232000pt;}
.h12{height:30.560000pt;}
.h18{height:30.592000pt;}
.h13{height:30.720000pt;}
.h1b{height:30.752000pt;}
.h6{height:33.515625pt;}
.hc{height:33.600000pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h1d{height:38.672812pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.h9{height:43.108125pt;}
.h4{height:45.156250pt;}
.h17{height:45.920000pt;}
.h16{height:45.952000pt;}
.h15{height:46.080000pt;}
.h19{height:46.112000pt;}
.h7{height:58.563750pt;}
.h1c{height:61.280000pt;}
.h1a{height:61.440000pt;}
.h10{height:63.520000pt;}
.hf{height:76.032000pt;}
.hd{height:198.426667pt;}
.he{height:204.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:30.080000pt;}
.wa{width:33.280000pt;}
.w12{width:33.760000pt;}
.w16{width:37.120000pt;}
.w1a{width:42.080000pt;}
.w14{width:46.880000pt;}
.w18{width:50.240000pt;}
.w10{width:50.400000pt;}
.wc{width:51.520000pt;}
.w1b{width:134.266667pt;}
.wf{width:136.186667pt;}
.wb{width:137.786667pt;}
.w17{width:138.266667pt;}
.w13{width:142.746667pt;}
.w9{width:233.506667pt;}
.w8{width:235.266667pt;}
.w7{width:237.346667pt;}
.w6{width:238.106667pt;}
.w3{width:283.386667pt;}
.w4{width:283.586667pt;}
.wd{width:294.786667pt;}
.w19{width:298.306667pt;}
.w15{width:299.746667pt;}
.w11{width:301.346667pt;}
.w5{width:373.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1c{left:17.600000pt;}
.x25{left:21.000000pt;}
.x19{left:23.200000pt;}
.x1e{left:24.666667pt;}
.x23{left:27.080000pt;}
.x20{left:32.826667pt;}
.x22{left:41.800000pt;}
.x1f{left:47.546667pt;}
.x1a{left:63.674667pt;}
.x1b{left:72.474667pt;}
.x12{left:89.152000pt;}
.x1{left:96.031988pt;}
.x26{left:97.320000pt;}
.x18{left:98.272000pt;}
.x2{left:109.471988pt;}
.x27{left:120.031988pt;}
.x33{left:133.466667pt;}
.x2e{left:134.426667pt;}
.xb{left:136.506655pt;}
.x17{left:138.120000pt;}
.x4{left:139.706655pt;}
.x38{left:144.026655pt;}
.x16{left:153.946667pt;}
.x8{left:160.346655pt;}
.x2b{left:167.706667pt;}
.x2f{left:168.826667pt;}
.x28{left:171.226667pt;}
.x34{left:176.186667pt;}
.x7{left:177.626655pt;}
.x21{left:235.226667pt;}
.x24{left:236.186667pt;}
.xe{left:242.746655pt;}
.xd{left:294.146655pt;}
.x11{left:302.306655pt;}
.x2c{left:304.546667pt;}
.x36{left:307.106655pt;}
.x15{left:308.226655pt;}
.x29{left:309.666667pt;}
.x32{left:310.626667pt;}
.x30{left:312.226667pt;}
.x37{left:322.146655pt;}
.x35{left:325.346655pt;}
.xc{left:329.826655pt;}
.xa{left:332.386655pt;}
.x10{left:341.826655pt;}
.xf{left:343.586655pt;}
.x6{left:352.386655pt;}
.x2d{left:355.586667pt;}
.x31{left:359.746667pt;}
.x2a{left:361.986667pt;}
.x5{left:366.466655pt;}
.x14{left:373.186667pt;}
.x9{left:396.866655pt;}
.x1d{left:404.226667pt;}
.x3{left:460.893322pt;}
}




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