
    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_83757d6178bdd424f58709ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950684;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_8c27ff37520136bf64cfd464.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_6dba8439b9b2702600a25ca4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_5e0d125173d6e3ee90e302a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_3f782eb4887118cd6c74b608.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e3cf260fd278d47cca77d641.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_45f67530f897fec9e3c71a7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.752441;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_5c1f6d30cf6d179bf37e15be.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.074707;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:ff9;src:url('chunks/assets/font_5d73d0e3d69344b6e41cdc9e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.165000px;}
.ls4{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.440000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.105000px;}
.ws1{word-spacing:-23.940000px;}
.ws6{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.568000px;}
.ws2{word-spacing:0.000000px;}
._26{margin-left:-9.360000px;}
._4{margin-left:-6.912000px;}
._2{margin-left:-5.064000px;}
._24{margin-left:-3.880800px;}
._3{margin-left:-2.864160px;}
._1{margin-left:-1.404000px;}
._0{width:1.532160px;}
._5{width:2.594880px;}
._7{width:3.941280px;}
._9{width:5.730720px;}
._17{width:7.056000px;}
._f{width:8.280000px;}
._6{width:9.288000px;}
._b{width:10.527840px;}
._c{width:11.936160px;}
._15{width:13.248000px;}
._16{width:14.268000px;}
._12{width:16.128000px;}
._8{width:19.980000px;}
._19{width:21.075840px;}
._18{width:22.428000px;}
._1a{width:24.203520px;}
._20{width:25.708800px;}
._d{width:26.943840px;}
._e{width:28.080000px;}
._1f{width:29.332320px;}
._21{width:31.032000px;}
._1d{width:32.823840px;}
._1c{width:33.984000px;}
._1e{width:35.256000px;}
._10{width:36.432000px;}
._11{width:37.584000px;}
._1b{width:39.600000px;}
._22{width:41.904000px;}
._23{width:43.179840px;}
._13{width:44.184000px;}
._14{width:45.423840px;}
._25{width:46.496640px;}
._a{width:48.600000px;}
._28{width:58.608000px;}
._27{width:109.656000px;}
._29{width:128.484000px;}
._2c{width:194.904000px;}
._2b{width:251.280000px;}
._2a{width:274.488000px;}
.fc8{color:rgb(50,62,79);}
.fc7{color:transparent;}
.fc4{color:rgb(196,89,17);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(50,50,50);}
.fc5{color:rgb(12,12,12);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(13,13,13);}
.fs1{font-size:54.000000px;}
.fs2{font-size:63.360000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.y1e{bottom:-9.075000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.060000px;}
.yb1{bottom:4.140000px;}
.y32{bottom:4.320000px;}
.yb2{bottom:4.500000px;}
.y2d{bottom:9.210000px;}
.y2f{bottom:17.100000px;}
.yde{bottom:24.840000px;}
.y116{bottom:24.870000px;}
.y115{bottom:25.200000px;}
.y117{bottom:25.230000px;}
.y1c{bottom:42.405000px;}
.y113{bottom:45.540000px;}
.y114{bottom:45.900000px;}
.y6{bottom:53.640000px;}
.y5{bottom:57.060000px;}
.y31{bottom:58.320000px;}
.y62{bottom:113.760000px;}
.ye1{bottom:113.940000px;}
.yd7{bottom:117.180000px;}
.y120{bottom:117.540000px;}
.y111{bottom:118.080000px;}
.y8e{bottom:119.880000px;}
.y61{bottom:134.460000px;}
.ye0{bottom:134.640000px;}
.yd6{bottom:137.880000px;}
.y11f{bottom:138.240000px;}
.y110{bottom:139.140000px;}
.y8d{bottom:140.580000px;}
.y60{bottom:155.160000px;}
.ydf{bottom:155.340000px;}
.yd5{bottom:158.940000px;}
.y10f{bottom:159.840000px;}
.y8c{bottom:161.280000px;}
.y5f{bottom:175.860000px;}
.ydd{bottom:176.760000px;}
.yd4{bottom:179.640000px;}
.y10e{bottom:180.540000px;}
.y8b{bottom:181.620000px;}
.y99{bottom:181.980000px;}
.y5e{bottom:196.560000px;}
.yd3{bottom:200.340000px;}
.y10d{bottom:201.240000px;}
.y8a{bottom:202.680000px;}
.y5d{bottom:217.290000px;}
.yd2{bottom:221.070000px;}
.y10c{bottom:221.970000px;}
.y89{bottom:223.410000px;}
.y5c{bottom:237.990000px;}
.yd1{bottom:241.770000px;}
.y10b{bottom:242.670000px;}
.y98{bottom:243.750000px;}
.y88{bottom:244.110000px;}
.y5b{bottom:258.690000px;}
.yd0{bottom:262.110000px;}
.y11e{bottom:262.470000px;}
.y10a{bottom:263.370000px;}
.y97{bottom:264.450000px;}
.y87{bottom:264.810000px;}
.y5a{bottom:279.390000px;}
.ycf{bottom:282.810000px;}
.y11d{bottom:283.170000px;}
.y109{bottom:284.070000px;}
.y9c{bottom:285.150000px;}
.y86{bottom:285.510000px;}
.y59{bottom:300.090000px;}
.yce{bottom:303.870000px;}
.y108{bottom:304.410000px;}
.y85{bottom:306.210000px;}
.y58{bottom:320.790000px;}
.ycd{bottom:324.570000px;}
.y107{bottom:325.110000px;}
.y84{bottom:326.550000px;}
.y96{bottom:326.910000px;}
.y57{bottom:341.490000px;}
.ycc{bottom:345.270000px;}
.y106{bottom:346.170000px;}
.y83{bottom:347.250000px;}
.y95{bottom:347.610000px;}
.y2c{bottom:358.920000px;}
.y56{bottom:362.190000px;}
.ycb{bottom:365.970000px;}
.y105{bottom:366.870000px;}
.yaf{bottom:367.950000px;}
.y82{bottom:368.310000px;}
.y55{bottom:382.890000px;}
.yca{bottom:386.310000px;}
.y11c{bottom:386.670000px;}
.y104{bottom:387.210000px;}
.ya1{bottom:388.650000px;}
.y81{bottom:389.010000px;}
.y2b{bottom:389.370000px;}
.y54{bottom:403.590000px;}
.yc9{bottom:407.010000px;}
.y11b{bottom:407.370000px;}
.y103{bottom:408.270000px;}
.ya0{bottom:409.350000px;}
.y80{bottom:409.710000px;}
.y2a{bottom:410.070000px;}
.y53{bottom:424.290000px;}
.yc8{bottom:428.070000px;}
.y102{bottom:428.970000px;}
.y29{bottom:430.410000px;}
.y52{bottom:445.035000px;}
.yc7{bottom:448.815000px;}
.y101{bottom:449.175000px;}
.y121{bottom:450.795000px;}
.y28{bottom:451.155000px;}
.y51{bottom:465.735000px;}
.yc6{bottom:469.155000px;}
.y11a{bottom:469.515000px;}
.y100{bottom:469.875000px;}
.y7f{bottom:471.495000px;}
.y94{bottom:471.855000px;}
.y27{bottom:472.215000px;}
.y50{bottom:486.435000px;}
.yc5{bottom:489.855000px;}
.y119{bottom:490.215000px;}
.yff{bottom:490.935000px;}
.y7e{bottom:492.195000px;}
.y93{bottom:492.555000px;}
.y26{bottom:492.915000px;}
.y4f{bottom:506.775000px;}
.yc4{bottom:510.915000px;}
.yfe{bottom:511.635000px;}
.y7d{bottom:513.255000px;}
.y25{bottom:513.615000px;}
.y4e{bottom:527.475000px;}
.yc3{bottom:531.615000px;}
.yfd{bottom:532.335000px;}
.ydc{bottom:533.595000px;}
.y24{bottom:533.955000px;}
.y4d{bottom:548.535000px;}
.yc2{bottom:552.315000px;}
.yfc{bottom:553.035000px;}
.ydb{bottom:554.295000px;}
.y23{bottom:554.655000px;}
.y4c{bottom:569.235000px;}
.y118{bottom:572.655000px;}
.yc1{bottom:573.015000px;}
.yfb{bottom:573.735000px;}
.ya4{bottom:574.995000px;}
.y7c{bottom:575.355000px;}
.y22{bottom:575.715000px;}
.y4b{bottom:589.575000px;}
.yc0{bottom:593.715000px;}
.yfa{bottom:594.435000px;}
.ya3{bottom:595.695000px;}
.y7b{bottom:596.055000px;}
.y21{bottom:596.415000px;}
.y4a{bottom:610.635000px;}
.ybf{bottom:614.415000px;}
.yf9{bottom:615.135000px;}
.yab{bottom:616.395000px;}
.y7a{bottom:616.755000px;}
.y20{bottom:617.115000px;}
.y49{bottom:631.335000px;}
.ybe{bottom:635.115000px;}
.yf8{bottom:635.475000px;}
.yda{bottom:637.095000px;}
.y1f{bottom:637.455000px;}
.y48{bottom:652.035000px;}
.ybd{bottom:655.815000px;}
.yf7{bottom:656.175000px;}
.yaa{bottom:657.795000px;}
.y79{bottom:658.155000px;}
.y47{bottom:672.735000px;}
.ybc{bottom:676.545000px;}
.yf6{bottom:677.265000px;}
.y9f{bottom:678.525000px;}
.y78{bottom:678.885000px;}
.y46{bottom:693.465000px;}
.ybb{bottom:697.245000px;}
.yf5{bottom:697.965000px;}
.y9b{bottom:699.225000px;}
.y77{bottom:699.585000px;}
.y45{bottom:714.165000px;}
.yba{bottom:717.945000px;}
.yf4{bottom:718.665000px;}
.y9a{bottom:719.925000px;}
.y76{bottom:720.285000px;}
.y44{bottom:734.865000px;}
.yb9{bottom:738.645000px;}
.yf3{bottom:739.005000px;}
.y9e{bottom:740.625000px;}
.y75{bottom:740.985000px;}
.y43{bottom:755.565000px;}
.yb8{bottom:759.345000px;}
.yf2{bottom:759.705000px;}
.y9d{bottom:761.325000px;}
.y74{bottom:761.685000px;}
.y42{bottom:776.265000px;}
.yb7{bottom:780.045000px;}
.yf1{bottom:780.765000px;}
.y73{bottom:782.025000px;}
.y92{bottom:782.385000px;}
.y41{bottom:796.965000px;}
.yb6{bottom:800.745000px;}
.yf0{bottom:801.465000px;}
.y72{bottom:802.725000px;}
.y91{bottom:803.085000px;}
.y40{bottom:817.665000px;}
.yb5{bottom:821.445000px;}
.yef{bottom:822.165000px;}
.yae{bottom:823.425000px;}
.y71{bottom:823.785000px;}
.y1b{bottom:838.260000px;}
.y3f{bottom:838.365000px;}
.yb4{bottom:841.785000px;}
.yee{bottom:842.505000px;}
.y70{bottom:844.485000px;}
.y1d{bottom:856.365000px;}
.y3e{bottom:859.065000px;}
.yb3{bottom:862.845000px;}
.yed{bottom:863.205000px;}
.ya9{bottom:864.825000px;}
.y6f{bottom:865.185000px;}
.y14{bottom:868.425000px;}
.y3d{bottom:879.765000px;}
.y112{bottom:880.485000px;}
.yec{bottom:884.265000px;}
.ya8{bottom:885.525000px;}
.y6e{bottom:885.885000px;}
.y13{bottom:886.605000px;}
.y3c{bottom:900.465000px;}
.y12{bottom:904.605000px;}
.yeb{bottom:904.965000px;}
.yd9{bottom:906.225000px;}
.y6d{bottom:906.585000px;}
.y3b{bottom:921.210000px;}
.y11{bottom:922.830000px;}
.yea{bottom:925.710000px;}
.yd8{bottom:926.970000px;}
.y6c{bottom:927.330000px;}
.y10{bottom:941.010000px;}
.y3a{bottom:941.910000px;}
.ye9{bottom:946.050000px;}
.y90{bottom:947.670000px;}
.y6b{bottom:948.030000px;}
.yf{bottom:959.010000px;}
.y39{bottom:962.610000px;}
.ye8{bottom:966.750000px;}
.y8f{bottom:968.370000px;}
.y6a{bottom:968.730000px;}
.ye{bottom:977.190000px;}
.y38{bottom:983.310000px;}
.yb0{bottom:984.030000px;}
.ye7{bottom:987.810000px;}
.yad{bottom:989.070000px;}
.y69{bottom:989.430000px;}
.yd{bottom:995.370000px;}
.y1a{bottom:1001.670000px;}
.y37{bottom:1004.010000px;}
.ye6{bottom:1008.510000px;}
.yac{bottom:1009.770000px;}
.y68{bottom:1010.130000px;}
.yc{bottom:1013.370000px;}
.y19{bottom:1021.470000px;}
.y36{bottom:1027.230000px;}
.ye5{bottom:1028.850000px;}
.ya7{bottom:1030.470000px;}
.y67{bottom:1030.830000px;}
.yb{bottom:1031.550000px;}
.y18{bottom:1041.990000px;}
.ya{bottom:1049.550000px;}
.ye4{bottom:1049.910000px;}
.ya6{bottom:1051.170000px;}
.y66{bottom:1051.530000px;}
.y35{bottom:1058.550000px;}
.y63{bottom:1058.730000px;}
.ye3{bottom:1066.830000px;}
.y9{bottom:1067.730000px;}
.y17{bottom:1069.890000px;}
.ya5{bottom:1071.870000px;}
.y65{bottom:1072.230000px;}
.y34{bottom:1076.730000px;}
.y8{bottom:1086.990000px;}
.ye2{bottom:1087.530000px;}
.ya2{bottom:1092.570000px;}
.y64{bottom:1092.930000px;}
.y33{bottom:1094.910000px;}
.y16{bottom:1100.310000px;}
.y4{bottom:1113.810000px;}
.y15{bottom:1130.730000px;}
.y3{bottom:1132.530000px;}
.y2{bottom:1159.560000px;}
.y1{bottom:1186.740000px;}
.y2e{bottom:1201.860000px;}
.y30{bottom:1218.960000px;}
.h4{height:15.480000px;}
.h18{height:20.695500px;}
.h13{height:20.700000px;}
.h16{height:20.736000px;}
.h1c{height:41.385000px;}
.h1a{height:41.400000px;}
.h1b{height:41.430000px;}
.h17{height:41.436000px;}
.h10{height:51.480000px;}
.h3{height:52.998047px;}
.h7{height:53.648438px;}
.h8{height:61.920000px;}
.h19{height:62.100000px;}
.h5{height:62.184375px;}
.hb{height:62.357344px;}
.h15{height:64.546875px;}
.h11{height:69.637852px;}
.hd{height:70.664062px;}
.hc{height:72.562500px;}
.he{height:72.707625px;}
.h2{height:76.355508px;}
.h12{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:86.115234px;}
.ha{height:86.585445px;}
.h14{height:118.008984px;}
.hf{height:300.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:27.000000px;}
.w7{width:35.280000px;}
.w6{width:36.000000px;}
.wc{width:57.225000px;}
.we{width:61.191000px;}
.wa{width:61.200000px;}
.w8{width:70.191000px;}
.wb{width:77.256000px;}
.w10{width:117.036000px;}
.w9{width:127.296000px;}
.wf{width:137.196000px;}
.w11{width:147.225000px;}
.w12{width:176.595000px;}
.w13{width:184.530000px;}
.wd{width:206.115000px;}
.w14{width:216.930000px;}
.w15{width:237.795000px;}
.w5{width:248.400000px;}
.w4{width:465.480000px;}
.w3{width:692.280000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.440000px;}
.x18{left:8.100000px;}
.x11{left:10.875000px;}
.xc{left:25.596000px;}
.xa{left:57.600000px;}
.xb{left:97.560000px;}
.x17{left:126.936000px;}
.x4{left:135.036000px;}
.x6{left:149.616000px;}
.x1{left:185.970000px;}
.x1e{left:188.130000px;}
.x19{left:197.130000px;}
.x13{left:225.750000px;}
.x9{left:260.535000px;}
.x8{left:303.195000px;}
.x21{left:311.475000px;}
.x7{left:313.635000px;}
.x3{left:322.455000px;}
.x1a{left:324.435000px;}
.xd{left:329.835000px;}
.x2{left:331.815000px;}
.xe{left:346.245000px;}
.x10{left:354.060000px;}
.xf{left:364.935000px;}
.x1b{left:385.635000px;}
.x16{left:409.395000px;}
.x15{left:428.400000px;}
.x5{left:432.900000px;}
.x1f{left:442.380000px;}
.x14{left:446.505000px;}
.x1c{left:462.900000px;}
.x1d{left:520.140000px;}
.x22{left:528.420000px;}
.x20{left:589.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.146667pt;}
.ls4{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.280000pt;}
.ws0{word-spacing:-21.426667pt;}
.ws1{word-spacing:-21.280000pt;}
.ws6{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.616000pt;}
.ws2{word-spacing:0.000000pt;}
._26{margin-left:-8.320000pt;}
._4{margin-left:-6.144000pt;}
._2{margin-left:-4.501333pt;}
._24{margin-left:-3.449600pt;}
._3{margin-left:-2.545920pt;}
._1{margin-left:-1.248000pt;}
._0{width:1.361920pt;}
._5{width:2.306560pt;}
._7{width:3.503360pt;}
._9{width:5.093973pt;}
._17{width:6.272000pt;}
._f{width:7.360000pt;}
._6{width:8.256000pt;}
._b{width:9.358080pt;}
._c{width:10.609920pt;}
._15{width:11.776000pt;}
._16{width:12.682667pt;}
._12{width:14.336000pt;}
._8{width:17.760000pt;}
._19{width:18.734080pt;}
._18{width:19.936000pt;}
._1a{width:21.514240pt;}
._20{width:22.852267pt;}
._d{width:23.950080pt;}
._e{width:24.960000pt;}
._1f{width:26.073173pt;}
._21{width:27.584000pt;}
._1d{width:29.176747pt;}
._1c{width:30.208000pt;}
._1e{width:31.338667pt;}
._10{width:32.384000pt;}
._11{width:33.408000pt;}
._1b{width:35.200000pt;}
._22{width:37.248000pt;}
._23{width:38.382080pt;}
._13{width:39.274667pt;}
._14{width:40.376747pt;}
._25{width:41.330347pt;}
._a{width:43.200000pt;}
._28{width:52.096000pt;}
._27{width:97.472000pt;}
._29{width:114.208000pt;}
._2c{width:173.248000pt;}
._2b{width:223.360000pt;}
._2a{width:243.989333pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:56.320000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.y1e{bottom:-8.066667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.720000pt;}
.yb1{bottom:3.680000pt;}
.y32{bottom:3.840000pt;}
.yb2{bottom:4.000000pt;}
.y2d{bottom:8.186667pt;}
.y2f{bottom:15.200000pt;}
.yde{bottom:22.080000pt;}
.y116{bottom:22.106667pt;}
.y115{bottom:22.400000pt;}
.y117{bottom:22.426667pt;}
.y1c{bottom:37.693333pt;}
.y113{bottom:40.480000pt;}
.y114{bottom:40.800000pt;}
.y6{bottom:47.680000pt;}
.y5{bottom:50.720000pt;}
.y31{bottom:51.840000pt;}
.y62{bottom:101.120000pt;}
.ye1{bottom:101.280000pt;}
.yd7{bottom:104.160000pt;}
.y120{bottom:104.480000pt;}
.y111{bottom:104.960000pt;}
.y8e{bottom:106.560000pt;}
.y61{bottom:119.520000pt;}
.ye0{bottom:119.680000pt;}
.yd6{bottom:122.560000pt;}
.y11f{bottom:122.880000pt;}
.y110{bottom:123.680000pt;}
.y8d{bottom:124.960000pt;}
.y60{bottom:137.920000pt;}
.ydf{bottom:138.080000pt;}
.yd5{bottom:141.280000pt;}
.y10f{bottom:142.080000pt;}
.y8c{bottom:143.360000pt;}
.y5f{bottom:156.320000pt;}
.ydd{bottom:157.120000pt;}
.yd4{bottom:159.680000pt;}
.y10e{bottom:160.480000pt;}
.y8b{bottom:161.440000pt;}
.y99{bottom:161.760000pt;}
.y5e{bottom:174.720000pt;}
.yd3{bottom:178.080000pt;}
.y10d{bottom:178.880000pt;}
.y8a{bottom:180.160000pt;}
.y5d{bottom:193.146667pt;}
.yd2{bottom:196.506667pt;}
.y10c{bottom:197.306667pt;}
.y89{bottom:198.586667pt;}
.y5c{bottom:211.546667pt;}
.yd1{bottom:214.906667pt;}
.y10b{bottom:215.706667pt;}
.y98{bottom:216.666667pt;}
.y88{bottom:216.986667pt;}
.y5b{bottom:229.946667pt;}
.yd0{bottom:232.986667pt;}
.y11e{bottom:233.306667pt;}
.y10a{bottom:234.106667pt;}
.y97{bottom:235.066667pt;}
.y87{bottom:235.386667pt;}
.y5a{bottom:248.346667pt;}
.ycf{bottom:251.386667pt;}
.y11d{bottom:251.706667pt;}
.y109{bottom:252.506667pt;}
.y9c{bottom:253.466667pt;}
.y86{bottom:253.786667pt;}
.y59{bottom:266.746667pt;}
.yce{bottom:270.106667pt;}
.y108{bottom:270.586667pt;}
.y85{bottom:272.186667pt;}
.y58{bottom:285.146667pt;}
.ycd{bottom:288.506667pt;}
.y107{bottom:288.986667pt;}
.y84{bottom:290.266667pt;}
.y96{bottom:290.586667pt;}
.y57{bottom:303.546667pt;}
.ycc{bottom:306.906667pt;}
.y106{bottom:307.706667pt;}
.y83{bottom:308.666667pt;}
.y95{bottom:308.986667pt;}
.y2c{bottom:319.040000pt;}
.y56{bottom:321.946667pt;}
.ycb{bottom:325.306667pt;}
.y105{bottom:326.106667pt;}
.yaf{bottom:327.066667pt;}
.y82{bottom:327.386667pt;}
.y55{bottom:340.346667pt;}
.yca{bottom:343.386667pt;}
.y11c{bottom:343.706667pt;}
.y104{bottom:344.186667pt;}
.ya1{bottom:345.466667pt;}
.y81{bottom:345.786667pt;}
.y2b{bottom:346.106667pt;}
.y54{bottom:358.746667pt;}
.yc9{bottom:361.786667pt;}
.y11b{bottom:362.106667pt;}
.y103{bottom:362.906667pt;}
.ya0{bottom:363.866667pt;}
.y80{bottom:364.186667pt;}
.y2a{bottom:364.506667pt;}
.y53{bottom:377.146667pt;}
.yc8{bottom:380.506667pt;}
.y102{bottom:381.306667pt;}
.y29{bottom:382.586667pt;}
.y52{bottom:395.586667pt;}
.yc7{bottom:398.946667pt;}
.y101{bottom:399.266667pt;}
.y121{bottom:400.706667pt;}
.y28{bottom:401.026667pt;}
.y51{bottom:413.986667pt;}
.yc6{bottom:417.026667pt;}
.y11a{bottom:417.346667pt;}
.y100{bottom:417.666667pt;}
.y7f{bottom:419.106667pt;}
.y94{bottom:419.426667pt;}
.y27{bottom:419.746667pt;}
.y50{bottom:432.386667pt;}
.yc5{bottom:435.426667pt;}
.y119{bottom:435.746667pt;}
.yff{bottom:436.386667pt;}
.y7e{bottom:437.506667pt;}
.y93{bottom:437.826667pt;}
.y26{bottom:438.146667pt;}
.y4f{bottom:450.466667pt;}
.yc4{bottom:454.146667pt;}
.yfe{bottom:454.786667pt;}
.y7d{bottom:456.226667pt;}
.y25{bottom:456.546667pt;}
.y4e{bottom:468.866667pt;}
.yc3{bottom:472.546667pt;}
.yfd{bottom:473.186667pt;}
.ydc{bottom:474.306667pt;}
.y24{bottom:474.626667pt;}
.y4d{bottom:487.586667pt;}
.yc2{bottom:490.946667pt;}
.yfc{bottom:491.586667pt;}
.ydb{bottom:492.706667pt;}
.y23{bottom:493.026667pt;}
.y4c{bottom:505.986667pt;}
.y118{bottom:509.026667pt;}
.yc1{bottom:509.346667pt;}
.yfb{bottom:509.986667pt;}
.ya4{bottom:511.106667pt;}
.y7c{bottom:511.426667pt;}
.y22{bottom:511.746667pt;}
.y4b{bottom:524.066667pt;}
.yc0{bottom:527.746667pt;}
.yfa{bottom:528.386667pt;}
.ya3{bottom:529.506667pt;}
.y7b{bottom:529.826667pt;}
.y21{bottom:530.146667pt;}
.y4a{bottom:542.786667pt;}
.ybf{bottom:546.146667pt;}
.yf9{bottom:546.786667pt;}
.yab{bottom:547.906667pt;}
.y7a{bottom:548.226667pt;}
.y20{bottom:548.546667pt;}
.y49{bottom:561.186667pt;}
.ybe{bottom:564.546667pt;}
.yf8{bottom:564.866667pt;}
.yda{bottom:566.306667pt;}
.y1f{bottom:566.626667pt;}
.y48{bottom:579.586667pt;}
.ybd{bottom:582.946667pt;}
.yf7{bottom:583.266667pt;}
.yaa{bottom:584.706667pt;}
.y79{bottom:585.026667pt;}
.y47{bottom:597.986667pt;}
.ybc{bottom:601.373333pt;}
.yf6{bottom:602.013333pt;}
.y9f{bottom:603.133333pt;}
.y78{bottom:603.453333pt;}
.y46{bottom:616.413333pt;}
.ybb{bottom:619.773333pt;}
.yf5{bottom:620.413333pt;}
.y9b{bottom:621.533333pt;}
.y77{bottom:621.853333pt;}
.y45{bottom:634.813333pt;}
.yba{bottom:638.173333pt;}
.yf4{bottom:638.813333pt;}
.y9a{bottom:639.933333pt;}
.y76{bottom:640.253333pt;}
.y44{bottom:653.213333pt;}
.yb9{bottom:656.573333pt;}
.yf3{bottom:656.893333pt;}
.y9e{bottom:658.333333pt;}
.y75{bottom:658.653333pt;}
.y43{bottom:671.613333pt;}
.yb8{bottom:674.973333pt;}
.yf2{bottom:675.293333pt;}
.y9d{bottom:676.733333pt;}
.y74{bottom:677.053333pt;}
.y42{bottom:690.013333pt;}
.yb7{bottom:693.373333pt;}
.yf1{bottom:694.013333pt;}
.y73{bottom:695.133333pt;}
.y92{bottom:695.453333pt;}
.y41{bottom:708.413333pt;}
.yb6{bottom:711.773333pt;}
.yf0{bottom:712.413333pt;}
.y72{bottom:713.533333pt;}
.y91{bottom:713.853333pt;}
.y40{bottom:726.813333pt;}
.yb5{bottom:730.173333pt;}
.yef{bottom:730.813333pt;}
.yae{bottom:731.933333pt;}
.y71{bottom:732.253333pt;}
.y1b{bottom:745.120000pt;}
.y3f{bottom:745.213333pt;}
.yb4{bottom:748.253333pt;}
.yee{bottom:748.893333pt;}
.y70{bottom:750.653333pt;}
.y1d{bottom:761.213333pt;}
.y3e{bottom:763.613333pt;}
.yb3{bottom:766.973333pt;}
.yed{bottom:767.293333pt;}
.ya9{bottom:768.733333pt;}
.y6f{bottom:769.053333pt;}
.y14{bottom:771.933333pt;}
.y3d{bottom:782.013333pt;}
.y112{bottom:782.653333pt;}
.yec{bottom:786.013333pt;}
.ya8{bottom:787.133333pt;}
.y6e{bottom:787.453333pt;}
.y13{bottom:788.093333pt;}
.y3c{bottom:800.413333pt;}
.y12{bottom:804.093333pt;}
.yeb{bottom:804.413333pt;}
.yd9{bottom:805.533333pt;}
.y6d{bottom:805.853333pt;}
.y3b{bottom:818.853333pt;}
.y11{bottom:820.293333pt;}
.yea{bottom:822.853333pt;}
.yd8{bottom:823.973333pt;}
.y6c{bottom:824.293333pt;}
.y10{bottom:836.453333pt;}
.y3a{bottom:837.253333pt;}
.ye9{bottom:840.933333pt;}
.y90{bottom:842.373333pt;}
.y6b{bottom:842.693333pt;}
.yf{bottom:852.453333pt;}
.y39{bottom:855.653333pt;}
.ye8{bottom:859.333333pt;}
.y8f{bottom:860.773333pt;}
.y6a{bottom:861.093333pt;}
.ye{bottom:868.613333pt;}
.y38{bottom:874.053333pt;}
.yb0{bottom:874.693333pt;}
.ye7{bottom:878.053333pt;}
.yad{bottom:879.173333pt;}
.y69{bottom:879.493333pt;}
.yd{bottom:884.773333pt;}
.y1a{bottom:890.373333pt;}
.y37{bottom:892.453333pt;}
.ye6{bottom:896.453333pt;}
.yac{bottom:897.573333pt;}
.y68{bottom:897.893333pt;}
.yc{bottom:900.773333pt;}
.y19{bottom:907.973333pt;}
.y36{bottom:913.093333pt;}
.ye5{bottom:914.533333pt;}
.ya7{bottom:915.973333pt;}
.y67{bottom:916.293333pt;}
.yb{bottom:916.933333pt;}
.y18{bottom:926.213333pt;}
.ya{bottom:932.933333pt;}
.ye4{bottom:933.253333pt;}
.ya6{bottom:934.373333pt;}
.y66{bottom:934.693333pt;}
.y35{bottom:940.933333pt;}
.y63{bottom:941.093333pt;}
.ye3{bottom:948.293333pt;}
.y9{bottom:949.093333pt;}
.y17{bottom:951.013333pt;}
.ya5{bottom:952.773333pt;}
.y65{bottom:953.093333pt;}
.y34{bottom:957.093333pt;}
.y8{bottom:966.213333pt;}
.ye2{bottom:966.693333pt;}
.ya2{bottom:971.173333pt;}
.y64{bottom:971.493333pt;}
.y33{bottom:973.253333pt;}
.y16{bottom:978.053333pt;}
.y4{bottom:990.053333pt;}
.y15{bottom:1005.093333pt;}
.y3{bottom:1006.693333pt;}
.y2{bottom:1030.720000pt;}
.y1{bottom:1054.880000pt;}
.y2e{bottom:1068.320000pt;}
.y30{bottom:1083.520000pt;}
.h4{height:13.760000pt;}
.h18{height:18.396000pt;}
.h13{height:18.400000pt;}
.h16{height:18.432000pt;}
.h1c{height:36.786667pt;}
.h1a{height:36.800000pt;}
.h1b{height:36.826667pt;}
.h17{height:36.832000pt;}
.h10{height:45.760000pt;}
.h3{height:47.109375pt;}
.h7{height:47.687500pt;}
.h8{height:55.040000pt;}
.h19{height:55.200000pt;}
.h5{height:55.275000pt;}
.hb{height:55.428750pt;}
.h15{height:57.375000pt;}
.h11{height:61.900312pt;}
.hd{height:62.812500pt;}
.hc{height:64.500000pt;}
.he{height:64.629000pt;}
.h2{height:67.871563pt;}
.h12{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:76.546875pt;}
.ha{height:76.964840pt;}
.h14{height:104.896875pt;}
.hf{height:267.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:24.000000pt;}
.w7{width:31.360000pt;}
.w6{width:32.000000pt;}
.wc{width:50.866667pt;}
.we{width:54.392000pt;}
.wa{width:54.400000pt;}
.w8{width:62.392000pt;}
.wb{width:68.672000pt;}
.w10{width:104.032000pt;}
.w9{width:113.152000pt;}
.wf{width:121.952000pt;}
.w11{width:130.866667pt;}
.w12{width:156.973333pt;}
.w13{width:164.026667pt;}
.wd{width:183.213333pt;}
.w14{width:192.826667pt;}
.w15{width:211.373333pt;}
.w5{width:220.800000pt;}
.w4{width:413.760000pt;}
.w3{width:615.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.280000pt;}
.x18{left:7.200000pt;}
.x11{left:9.666667pt;}
.xc{left:22.752000pt;}
.xa{left:51.200000pt;}
.xb{left:86.720000pt;}
.x17{left:112.832000pt;}
.x4{left:120.032000pt;}
.x6{left:132.992000pt;}
.x1{left:165.306667pt;}
.x1e{left:167.226667pt;}
.x19{left:175.226667pt;}
.x13{left:200.666667pt;}
.x9{left:231.586667pt;}
.x8{left:269.506667pt;}
.x21{left:276.866667pt;}
.x7{left:278.786667pt;}
.x3{left:286.626667pt;}
.x1a{left:288.386667pt;}
.xd{left:293.186667pt;}
.x2{left:294.946667pt;}
.xe{left:307.773333pt;}
.x10{left:314.720000pt;}
.xf{left:324.386667pt;}
.x1b{left:342.786667pt;}
.x16{left:363.906667pt;}
.x15{left:380.800000pt;}
.x5{left:384.800000pt;}
.x1f{left:393.226667pt;}
.x14{left:396.893333pt;}
.x1c{left:411.466667pt;}
.x1d{left:462.346667pt;}
.x22{left:469.706667pt;}
.x20{left:524.106667pt;}
}




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