
    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_2b27c169abac71e7b1d89618.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_8fd2e6a48680546dea32edea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6523bfc5407ad717e3326bf3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106445;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_47c7604a33191bb1144cd26e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ef8d9d32c9ee0c5021b1582.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_1056e270d7c702a7cfcf9ea1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106445;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_12088d6a6148bf6b29d7be8d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106445;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_363e11e927095ddd5dd02b95.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106445;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:ffa;src:url('chunks/assets/font_3df78e8ab5e1719f001a33f4.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsc{letter-spacing:-0.906000px;}
.ls6{letter-spacing:-0.732000px;}
.ls3{letter-spacing:-0.374400px;}
.lsf{letter-spacing:-0.348600px;}
.lsa{letter-spacing:-0.057600px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.006480px;}
.ls7{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.023040px;}
.ls5{letter-spacing:0.080400px;}
.ls2{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.147000px;}
.lsb{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.624960px;}
.ls8{letter-spacing:1.446480px;}
.lse{letter-spacing:8.586720px;}
.lsd{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;}
}
.ws2{word-spacing:-18.547200px;}
.ws3{word-spacing:-18.495480px;}
.ws8{word-spacing:-18.489600px;}
.ws4{word-spacing:-18.428880px;}
.ws9{word-spacing:-18.371520px;}
.ws5{word-spacing:-18.348480px;}
.ws1{word-spacing:-18.172800px;}
.ws6{word-spacing:-16.732800px;}
.wsa{word-spacing:-16.566480px;}
.ws7{word-spacing:-16.553520px;}
.ws0{word-spacing:0.000000px;}
._1b{margin-left:-2.272800px;}
._1{margin-left:-1.258560px;}
._2{width:1.236000px;}
._a{width:2.384640px;}
._9{width:3.709440px;}
._e{width:4.901760px;}
._d{width:6.160320px;}
._4{width:7.683840px;}
._5{width:8.809920px;}
._6{width:10.157280px;}
._b{width:12.121920px;}
._8{width:13.181760px;}
._7{width:14.307840px;}
._c{width:15.831360px;}
._13{width:16.957440px;}
._16{width:19.540800px;}
._19{width:20.645760px;}
._10{width:22.455360px;}
._11{width:23.515200px;}
._15{width:25.369920px;}
._f{width:27.092160px;}
._1d{width:28.140480px;}
._12{width:31.993920px;}
._14{width:33.451200px;}
._18{width:36.531840px;}
._17{width:37.690560px;}
._1a{width:41.929920px;}
._20{width:51.180480px;}
._1f{width:52.197120px;}
._3{width:57.322560px;}
._0{width:66.611520px;}
._1e{width:89.860800px;}
._1c{width:845.807520px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,128);}
.fc1{color:rgb(54,95,145);}
.fc2{color:rgb(58,101,152);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:126.000000px;}
.y57{bottom:-17.820000px;}
.y0{bottom:0.000000px;}
.y59{bottom:2.160000px;}
.y29{bottom:2.340000px;}
.yc3{bottom:3.045000px;}
.yc0{bottom:3.090000px;}
.ye6{bottom:3.405000px;}
.ye4{bottom:3.585000px;}
.yc2{bottom:21.405000px;}
.ybf{bottom:21.630000px;}
.y6{bottom:35.925007px;}
.y27{bottom:57.060000px;}
.y5{bottom:66.525004px;}
.y26{bottom:75.600000px;}
.y4{bottom:97.125005px;}
.yb0{bottom:120.780000px;}
.y8c{bottom:121.680000px;}
.yd7{bottom:124.020000px;}
.y118{bottom:135.540000px;}
.y22{bottom:139.264499px;}
.yaf{bottom:140.940000px;}
.y8b{bottom:141.840000px;}
.yf1{bottom:142.200000px;}
.yd6{bottom:144.180000px;}
.y56{bottom:148.320000px;}
.y117{bottom:155.700000px;}
.yae{bottom:161.280000px;}
.y8a{bottom:162.180000px;}
.yf0{bottom:162.360000px;}
.yd5{bottom:163.980000px;}
.y55{bottom:168.660000px;}
.y116{bottom:175.860000px;}
.yad{bottom:181.440000px;}
.y89{bottom:182.340000px;}
.yd4{bottom:182.520000px;}
.y54{bottom:188.820000px;}
.y19{bottom:196.933500px;}
.yd3{bottom:197.820000px;}
.yac{bottom:201.600000px;}
.y88{bottom:202.680000px;}
.yef{bottom:202.860000px;}
.y53{bottom:208.980000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yab{bottom:221.940000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y87{bottom:222.840000px;}
.yee{bottom:223.020000px;}
.y115{bottom:225.570000px;}
.y52{bottom:229.350000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yaa{bottom:242.130000px;}
.y86{bottom:243.030000px;}
.yed{bottom:243.390000px;}
.y114{bottom:245.370000px;}
.y51{bottom:249.510000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.ya9{bottom:262.470000px;}
.y85{bottom:263.370000px;}
.yec{bottom:263.550000px;}
.y113{bottom:263.910000px;}
.y50{bottom:269.850000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y112{bottom:282.270000px;}
.ya8{bottom:282.630000px;}
.yeb{bottom:283.350000px;}
.y84{bottom:283.530000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y4f{bottom:290.010000px;}
.y111{bottom:300.630000px;}
.yea{bottom:301.710000px;}
.ya7{bottom:302.790000px;}
.y83{bottom:303.870000px;}
.y4e{bottom:310.170000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y110{bottom:318.990000px;}
.ye9{bottom:320.070000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.ya6{bottom:323.130000px;}
.y82{bottom:324.030000px;}
.y4d{bottom:330.510000px;}
.ye8{bottom:337.005000px;}
.y10f{bottom:337.350000px;}
.ya5{bottom:343.290000px;}
.y81{bottom:344.190000px;}
.y10{bottom:348.133500px;}
.y4c{bottom:352.290000px;}
.y10e{bottom:355.890000px;}
.ye7{bottom:357.165000px;}
.yc6{bottom:360.570000px;}
.ya4{bottom:363.630000px;}
.y80{bottom:364.530000px;}
.y10d{bottom:374.250000px;}
.ye5{bottom:377.505000px;}
.y4b{bottom:380.190000px;}
.yc5{bottom:380.730000px;}
.ya3{bottom:383.790000px;}
.y7f{bottom:384.690000px;}
.yf{bottom:386.785499px;}
.y10c{bottom:392.610000px;}
.ye3{bottom:399.105000px;}
.y4a{bottom:400.350000px;}
.yc4{bottom:400.530000px;}
.ya2{bottom:403.950000px;}
.y7e{bottom:404.850000px;}
.ye{bottom:408.044999px;}
.y10b{bottom:410.970000px;}
.yc1{bottom:417.465000px;}
.y49{bottom:420.510000px;}
.ye2{bottom:423.930000px;}
.ya1{bottom:424.290000px;}
.y7d{bottom:425.190000px;}
.y10a{bottom:429.330000px;}
.y48{bottom:440.850000px;}
.ye1{bottom:442.830000px;}
.ya0{bottom:444.450000px;}
.y7c{bottom:445.350000px;}
.y109{bottom:447.690000px;}
.ybe{bottom:454.185000px;}
.y47{bottom:461.055000px;}
.ye0{bottom:463.035000px;}
.y9f{bottom:464.835000px;}
.y7b{bottom:465.555000px;}
.y108{bottom:466.275000px;}
.y46{bottom:481.215000px;}
.ydf{bottom:483.195000px;}
.y107{bottom:484.635000px;}
.y7a{bottom:484.815000px;}
.yd{bottom:484.864502px;}
.y9e{bottom:484.995000px;}
.ybd{bottom:495.975000px;}
.y45{bottom:501.555000px;}
.yc{bottom:502.864502px;}
.y106{bottom:502.995000px;}
.yde{bottom:503.535000px;}
.y79{bottom:504.075000px;}
.y9d{bottom:505.155000px;}
.ybc{bottom:516.315000px;}
.yb{bottom:520.864502px;}
.y105{bottom:521.355000px;}
.y44{bottom:521.715000px;}
.y78{bottom:523.155000px;}
.ydd{bottom:523.695000px;}
.y9c{bottom:525.495000px;}
.ybb{bottom:536.475000px;}
.ya{bottom:538.864499px;}
.y104{bottom:539.715000px;}
.y43{bottom:542.055000px;}
.y77{bottom:542.415000px;}
.ydc{bottom:543.855000px;}
.y9b{bottom:545.655000px;}
.yd2{bottom:556.455000px;}
.yba{bottom:556.635000px;}
.y9{bottom:556.864499px;}
.y103{bottom:558.075000px;}
.y42{bottom:562.215000px;}
.y76{bottom:563.475000px;}
.y9a{bottom:565.815000px;}
.yd1{bottom:575.175000px;}
.y102{bottom:576.615000px;}
.yb9{bottom:576.975000px;}
.y41{bottom:582.375000px;}
.y99{bottom:586.155000px;}
.y75{bottom:591.195000px;}
.ydb{bottom:593.535000px;}
.y101{bottom:594.975000px;}
.yd0{bottom:595.515000px;}
.yb8{bottom:597.135000px;}
.y40{bottom:602.715000px;}
.y98{bottom:606.315000px;}
.y74{bottom:611.355000px;}
.y100{bottom:613.335000px;}
.yda{bottom:613.515000px;}
.ycf{bottom:615.675000px;}
.yb7{bottom:617.475000px;}
.y3f{bottom:622.875000px;}
.y97{bottom:626.655000px;}
.yd9{bottom:628.815000px;}
.y73{bottom:631.695000px;}
.yce{bottom:635.835000px;}
.yb6{bottom:637.635000px;}
.y3e{bottom:643.215000px;}
.y8{bottom:645.510000px;}
.y96{bottom:646.815000px;}
.yff{bottom:650.055000px;}
.y72{bottom:651.855000px;}
.ycd{bottom:656.175000px;}
.yb5{bottom:657.795000px;}
.y3d{bottom:663.375000px;}
.y7{bottom:666.771000px;}
.y95{bottom:666.975000px;}
.yfe{bottom:670.575000px;}
.y71{bottom:672.195000px;}
.ycc{bottom:676.335000px;}
.yb4{bottom:678.135000px;}
.y3c{bottom:683.535000px;}
.y94{bottom:687.315000px;}
.y70{bottom:692.385000px;}
.ycb{bottom:696.705000px;}
.yb3{bottom:698.325000px;}
.y3b{bottom:703.905000px;}
.y93{bottom:707.505000px;}
.y6f{bottom:712.545000px;}
.yca{bottom:716.505000px;}
.yb2{bottom:718.665000px;}
.y3a{bottom:724.065000px;}
.y92{bottom:727.845000px;}
.y6e{bottom:732.885000px;}
.yc9{bottom:734.865000px;}
.yfd{bottom:738.825000px;}
.yb1{bottom:740.445000px;}
.y39{bottom:746.025000px;}
.y91{bottom:748.005000px;}
.yc8{bottom:750.165000px;}
.y3{bottom:752.599495px;}
.y6d{bottom:752.865000px;}
.yfc{bottom:758.985000px;}
.y90{bottom:768.165000px;}
.y6c{bottom:772.125000px;}
.y38{bottom:773.925000px;}
.yfb{bottom:779.325000px;}
.y8f{bottom:788.505000px;}
.y6b{bottom:791.385000px;}
.y37{bottom:796.065000px;}
.yfa{bottom:799.485000px;}
.y8e{bottom:808.665000px;}
.y6a{bottom:810.645000px;}
.y36{bottom:818.025000px;}
.yf9{bottom:819.645000px;}
.y8d{bottom:829.005000px;}
.y69{bottom:829.905000px;}
.yf8{bottom:839.985000px;}
.y35{bottom:840.165000px;}
.y68{bottom:849.165000px;}
.yf7{bottom:860.145000px;}
.y34{bottom:862.305000px;}
.y67{bottom:869.325000px;}
.y2{bottom:879.369000px;}
.yf6{bottom:880.485000px;}
.y33{bottom:884.265000px;}
.y66{bottom:889.665000px;}
.yf5{bottom:900.645000px;}
.y32{bottom:906.405000px;}
.y65{bottom:909.825000px;}
.yf4{bottom:920.805000px;}
.y31{bottom:928.590000px;}
.y64{bottom:930.210000px;}
.yf3{bottom:941.190000px;}
.y63{bottom:950.370000px;}
.y30{bottom:950.550000px;}
.yf2{bottom:962.970000px;}
.y1{bottom:966.726000px;}
.y62{bottom:970.530000px;}
.yd8{bottom:971.970000px;}
.y2f{bottom:972.690000px;}
.y61{bottom:990.870000px;}
.y2e{bottom:994.650000px;}
.y60{bottom:1011.030000px;}
.y2d{bottom:1016.610000px;}
.y5f{bottom:1031.190000px;}
.y2c{bottom:1040.370000px;}
.y5e{bottom:1051.530000px;}
.y5d{bottom:1071.690000px;}
.y2b{bottom:1079.070000px;}
.y5c{bottom:1092.030000px;}
.yc7{bottom:1093.470000px;}
.y5b{bottom:1112.190000px;}
.y2a{bottom:1117.590000px;}
.y5a{bottom:1132.350000px;}
.y25{bottom:1152.690000px;}
.y24{bottom:1172.880000px;}
.y23{bottom:1193.220000px;}
.y58{bottom:1198.620000px;}
.y28{bottom:1200.420000px;}
.h12{height:18.900000px;}
.hd{height:19.080000px;}
.h17{height:20.145000px;}
.h16{height:20.325000px;}
.h8{height:32.130000px;}
.h15{height:36.705000px;}
.h13{height:36.921000px;}
.h9{height:39.648000px;}
.h3{height:48.195000px;}
.he{height:49.809375px;}
.h14{height:53.690625px;}
.h7{height:56.640000px;}
.h6{height:59.472000px;}
.hb{height:59.512500px;}
.h18{height:61.423863px;}
.h10{height:64.687500px;}
.h2{height:67.968000px;}
.hc{height:68.084282px;}
.h11{height:72.007031px;}
.hf{height:94.746094px;}
.h5{height:96.288000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.wc{width:21.600000px;}
.w9{width:21.765000px;}
.wd{width:21.780000px;}
.wb{width:21.801000px;}
.wa{width:22.125000px;}
.wf{width:22.140000px;}
.w13{width:22.161000px;}
.w11{width:22.305000px;}
.we{width:22.320000px;}
.w10{width:22.356000px;}
.w12{width:30.585000px;}
.w8{width:56.689500px;}
.w15{width:141.660000px;}
.w17{width:155.175000px;}
.w5{width:178.755000px;}
.w16{width:185.250000px;}
.w14{width:198.379500px;}
.w7{width:243.555000px;}
.w4{width:314.119500px;}
.w6{width:359.119500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:2.509500px;}
.x29{left:4.129500px;}
.xe{left:5.925000px;}
.x33{left:8.089500px;}
.x5{left:10.789500px;}
.x2f{left:43.200000px;}
.x36{left:48.090000px;}
.x37{left:56.340000px;}
.x2d{left:59.743500px;}
.x34{left:60.840000px;}
.x32{left:64.290000px;}
.x30{left:75.990000px;}
.x35{left:78.150000px;}
.x38{left:82.650000px;}
.x1{left:102.045000px;}
.xb{left:104.266500px;}
.x2{left:106.297500px;}
.x9{left:115.185000px;}
.xa{left:128.016000px;}
.x39{left:133.416000px;}
.xd{left:160.965000px;}
.xf{left:182.745000px;}
.x4{left:203.484001px;}
.x10{left:204.525000px;}
.x11{left:226.305000px;}
.x12{left:248.445000px;}
.x13{left:270.225000px;}
.x14{left:292.035000px;}
.x2e{left:304.815000px;}
.x15{left:313.635000px;}
.x16{left:335.415000px;}
.x17{left:357.735000px;}
.x18{left:379.875000px;}
.x19{left:402.015000px;}
.x1a{left:424.335000px;}
.x1b{left:446.475000px;}
.x3{left:454.959000px;}
.x1c{left:468.795000px;}
.x1d{left:491.160000px;}
.x1e{left:513.480000px;}
.x1f{left:535.620000px;}
.x8{left:541.740000px;}
.x20{left:566.220000px;}
.x21{left:588.360000px;}
.x22{left:610.680000px;}
.x2a{left:615.525000px;}
.x31{left:631.740000px;}
.x23{left:633.000000px;}
.x6{left:649.380000px;}
.x24{left:655.320000px;}
.x2c{left:672.990000px;}
.x25{left:677.490000px;}
.x26{left:699.810000px;}
.x27{left:722.130000px;}
.x28{left:744.450000px;}
.x7{left:766.770000px;}
.x2b{left:786.030000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsc{letter-spacing:-0.805333pt;}
.ls6{letter-spacing:-0.650667pt;}
.ls3{letter-spacing:-0.332800pt;}
.lsf{letter-spacing:-0.309867pt;}
.lsa{letter-spacing:-0.051200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.005760pt;}
.ls7{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.020480pt;}
.ls5{letter-spacing:0.071467pt;}
.ls2{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.130667pt;}
.lsb{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.555520pt;}
.ls8{letter-spacing:1.285760pt;}
.lse{letter-spacing:7.632640pt;}
.lsd{letter-spacing:37.051307pt;}
.ws2{word-spacing:-16.486400pt;}
.ws3{word-spacing:-16.440427pt;}
.ws8{word-spacing:-16.435200pt;}
.ws4{word-spacing:-16.381227pt;}
.ws9{word-spacing:-16.330240pt;}
.ws5{word-spacing:-16.309760pt;}
.ws1{word-spacing:-16.153600pt;}
.ws6{word-spacing:-14.873600pt;}
.wsa{word-spacing:-14.725760pt;}
.ws7{word-spacing:-14.714240pt;}
.ws0{word-spacing:0.000000pt;}
._1b{margin-left:-2.020267pt;}
._1{margin-left:-1.118720pt;}
._2{width:1.098667pt;}
._a{width:2.119680pt;}
._9{width:3.297280pt;}
._e{width:4.357120pt;}
._d{width:5.475840pt;}
._4{width:6.830080pt;}
._5{width:7.831040pt;}
._6{width:9.028693pt;}
._b{width:10.775040pt;}
._8{width:11.717120pt;}
._7{width:12.718080pt;}
._c{width:14.072320pt;}
._13{width:15.073280pt;}
._16{width:17.369600pt;}
._19{width:18.351787pt;}
._10{width:19.960320pt;}
._11{width:20.902400pt;}
._15{width:22.551040pt;}
._f{width:24.081920pt;}
._1d{width:25.013760pt;}
._12{width:28.439040pt;}
._14{width:29.734400pt;}
._18{width:32.472747pt;}
._17{width:33.502720pt;}
._1a{width:37.271040pt;}
._20{width:45.493760pt;}
._1f{width:46.397440pt;}
._3{width:50.953387pt;}
._0{width:59.210240pt;}
._1e{width:79.876267pt;}
._1c{width:751.828907pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:112.000000pt;}
.y57{bottom:-15.840000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:1.920000pt;}
.y29{bottom:2.080000pt;}
.yc3{bottom:2.706667pt;}
.yc0{bottom:2.746667pt;}
.ye6{bottom:3.026667pt;}
.ye4{bottom:3.186667pt;}
.yc2{bottom:19.026667pt;}
.ybf{bottom:19.226667pt;}
.y6{bottom:31.933340pt;}
.y27{bottom:50.720000pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:67.200000pt;}
.y4{bottom:86.333337pt;}
.yb0{bottom:107.360000pt;}
.y8c{bottom:108.160000pt;}
.yd7{bottom:110.240000pt;}
.y118{bottom:120.480000pt;}
.y22{bottom:123.790666pt;}
.yaf{bottom:125.280000pt;}
.y8b{bottom:126.080000pt;}
.yf1{bottom:126.400000pt;}
.yd6{bottom:128.160000pt;}
.y56{bottom:131.840000pt;}
.y117{bottom:138.400000pt;}
.yae{bottom:143.360000pt;}
.y8a{bottom:144.160000pt;}
.yf0{bottom:144.320000pt;}
.yd5{bottom:145.760000pt;}
.y55{bottom:149.920000pt;}
.y116{bottom:156.320000pt;}
.yad{bottom:161.280000pt;}
.y89{bottom:162.080000pt;}
.yd4{bottom:162.240000pt;}
.y54{bottom:167.840000pt;}
.y19{bottom:175.052000pt;}
.yd3{bottom:175.840000pt;}
.yac{bottom:179.200000pt;}
.y88{bottom:180.160000pt;}
.yef{bottom:180.320000pt;}
.y53{bottom:185.760000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yab{bottom:197.280000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y87{bottom:198.080000pt;}
.yee{bottom:198.240000pt;}
.y115{bottom:200.506667pt;}
.y52{bottom:203.866667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yaa{bottom:215.226667pt;}
.y86{bottom:216.026667pt;}
.yed{bottom:216.346667pt;}
.y114{bottom:218.106667pt;}
.y51{bottom:221.786667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.ya9{bottom:233.306667pt;}
.y85{bottom:234.106667pt;}
.yec{bottom:234.266667pt;}
.y113{bottom:234.586667pt;}
.y50{bottom:239.866667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y112{bottom:250.906667pt;}
.ya8{bottom:251.226667pt;}
.yeb{bottom:251.866667pt;}
.y84{bottom:252.026667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y4f{bottom:257.786667pt;}
.y111{bottom:267.226667pt;}
.yea{bottom:268.186667pt;}
.ya7{bottom:269.146667pt;}
.y83{bottom:270.106667pt;}
.y4e{bottom:275.706667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y110{bottom:283.546667pt;}
.ye9{bottom:284.506667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.ya6{bottom:287.226667pt;}
.y82{bottom:288.026667pt;}
.y4d{bottom:293.786667pt;}
.ye8{bottom:299.560000pt;}
.y10f{bottom:299.866667pt;}
.ya5{bottom:305.146667pt;}
.y81{bottom:305.946667pt;}
.y10{bottom:309.452000pt;}
.y4c{bottom:313.146667pt;}
.y10e{bottom:316.346667pt;}
.ye7{bottom:317.480000pt;}
.yc6{bottom:320.506667pt;}
.ya4{bottom:323.226667pt;}
.y80{bottom:324.026667pt;}
.y10d{bottom:332.666667pt;}
.ye5{bottom:335.560000pt;}
.y4b{bottom:337.946667pt;}
.yc5{bottom:338.426667pt;}
.ya3{bottom:341.146667pt;}
.y7f{bottom:341.946667pt;}
.yf{bottom:343.809333pt;}
.y10c{bottom:348.986667pt;}
.ye3{bottom:354.760000pt;}
.y4a{bottom:355.866667pt;}
.yc4{bottom:356.026667pt;}
.ya2{bottom:359.066667pt;}
.y7e{bottom:359.866667pt;}
.ye{bottom:362.706666pt;}
.y10b{bottom:365.306667pt;}
.yc1{bottom:371.080000pt;}
.y49{bottom:373.786667pt;}
.ye2{bottom:376.826667pt;}
.ya1{bottom:377.146667pt;}
.y7d{bottom:377.946667pt;}
.y10a{bottom:381.626667pt;}
.y48{bottom:391.866667pt;}
.ye1{bottom:393.626667pt;}
.ya0{bottom:395.066667pt;}
.y7c{bottom:395.866667pt;}
.y109{bottom:397.946667pt;}
.ybe{bottom:403.720000pt;}
.y47{bottom:409.826667pt;}
.ye0{bottom:411.586667pt;}
.y9f{bottom:413.186667pt;}
.y7b{bottom:413.826667pt;}
.y108{bottom:414.466667pt;}
.y46{bottom:427.746667pt;}
.ydf{bottom:429.506667pt;}
.y107{bottom:430.786667pt;}
.y7a{bottom:430.946667pt;}
.yd{bottom:430.990669pt;}
.y9e{bottom:431.106667pt;}
.ybd{bottom:440.866667pt;}
.y45{bottom:445.826667pt;}
.yc{bottom:446.990669pt;}
.y106{bottom:447.106667pt;}
.yde{bottom:447.586667pt;}
.y79{bottom:448.066667pt;}
.y9d{bottom:449.026667pt;}
.ybc{bottom:458.946667pt;}
.yb{bottom:462.990669pt;}
.y105{bottom:463.426667pt;}
.y44{bottom:463.746667pt;}
.y78{bottom:465.026667pt;}
.ydd{bottom:465.506667pt;}
.y9c{bottom:467.106667pt;}
.ybb{bottom:476.866667pt;}
.ya{bottom:478.990666pt;}
.y104{bottom:479.746667pt;}
.y43{bottom:481.826667pt;}
.y77{bottom:482.146667pt;}
.ydc{bottom:483.426667pt;}
.y9b{bottom:485.026667pt;}
.yd2{bottom:494.626667pt;}
.yba{bottom:494.786667pt;}
.y9{bottom:494.990666pt;}
.y103{bottom:496.066667pt;}
.y42{bottom:499.746667pt;}
.y76{bottom:500.866667pt;}
.y9a{bottom:502.946667pt;}
.yd1{bottom:511.266667pt;}
.y102{bottom:512.546667pt;}
.yb9{bottom:512.866667pt;}
.y41{bottom:517.666667pt;}
.y99{bottom:521.026667pt;}
.y75{bottom:525.506667pt;}
.ydb{bottom:527.586667pt;}
.y101{bottom:528.866667pt;}
.yd0{bottom:529.346667pt;}
.yb8{bottom:530.786667pt;}
.y40{bottom:535.746667pt;}
.y98{bottom:538.946667pt;}
.y74{bottom:543.426667pt;}
.y100{bottom:545.186667pt;}
.yda{bottom:545.346667pt;}
.ycf{bottom:547.266667pt;}
.yb7{bottom:548.866667pt;}
.y3f{bottom:553.666667pt;}
.y97{bottom:557.026667pt;}
.yd9{bottom:558.946667pt;}
.y73{bottom:561.506667pt;}
.yce{bottom:565.186667pt;}
.yb6{bottom:566.786667pt;}
.y3e{bottom:571.746667pt;}
.y8{bottom:573.786667pt;}
.y96{bottom:574.946667pt;}
.yff{bottom:577.826667pt;}
.y72{bottom:579.426667pt;}
.ycd{bottom:583.266667pt;}
.yb5{bottom:584.706667pt;}
.y3d{bottom:589.666667pt;}
.y7{bottom:592.685334pt;}
.y95{bottom:592.866667pt;}
.yfe{bottom:596.066667pt;}
.y71{bottom:597.506667pt;}
.ycc{bottom:601.186667pt;}
.yb4{bottom:602.786667pt;}
.y3c{bottom:607.586667pt;}
.y94{bottom:610.946667pt;}
.y70{bottom:615.453333pt;}
.ycb{bottom:619.293333pt;}
.yb3{bottom:620.733333pt;}
.y3b{bottom:625.693333pt;}
.y93{bottom:628.893333pt;}
.y6f{bottom:633.373333pt;}
.yca{bottom:636.893333pt;}
.yb2{bottom:638.813333pt;}
.y3a{bottom:643.613333pt;}
.y92{bottom:646.973333pt;}
.y6e{bottom:651.453333pt;}
.yc9{bottom:653.213333pt;}
.yfd{bottom:656.733333pt;}
.yb1{bottom:658.173333pt;}
.y39{bottom:663.133333pt;}
.y91{bottom:664.893333pt;}
.yc8{bottom:666.813333pt;}
.y3{bottom:668.977329pt;}
.y6d{bottom:669.213333pt;}
.yfc{bottom:674.653333pt;}
.y90{bottom:682.813333pt;}
.y6c{bottom:686.333333pt;}
.y38{bottom:687.933333pt;}
.yfb{bottom:692.733333pt;}
.y8f{bottom:700.893333pt;}
.y6b{bottom:703.453333pt;}
.y37{bottom:707.613333pt;}
.yfa{bottom:710.653333pt;}
.y8e{bottom:718.813333pt;}
.y6a{bottom:720.573333pt;}
.y36{bottom:727.133333pt;}
.yf9{bottom:728.573333pt;}
.y8d{bottom:736.893333pt;}
.y69{bottom:737.693333pt;}
.yf8{bottom:746.653333pt;}
.y35{bottom:746.813333pt;}
.y68{bottom:754.813333pt;}
.yf7{bottom:764.573333pt;}
.y34{bottom:766.493333pt;}
.y67{bottom:772.733333pt;}
.y2{bottom:781.661334pt;}
.yf6{bottom:782.653333pt;}
.y33{bottom:786.013333pt;}
.y66{bottom:790.813333pt;}
.yf5{bottom:800.573333pt;}
.y32{bottom:805.693333pt;}
.y65{bottom:808.733333pt;}
.yf4{bottom:818.493333pt;}
.y31{bottom:825.413333pt;}
.y64{bottom:826.853333pt;}
.yf3{bottom:836.613333pt;}
.y63{bottom:844.773333pt;}
.y30{bottom:844.933333pt;}
.yf2{bottom:855.973333pt;}
.y1{bottom:859.312000pt;}
.y62{bottom:862.693333pt;}
.yd8{bottom:863.973333pt;}
.y2f{bottom:864.613333pt;}
.y61{bottom:880.773333pt;}
.y2e{bottom:884.133333pt;}
.y60{bottom:898.693333pt;}
.y2d{bottom:903.653333pt;}
.y5f{bottom:916.613333pt;}
.y2c{bottom:924.773333pt;}
.y5e{bottom:934.693333pt;}
.y5d{bottom:952.613333pt;}
.y2b{bottom:959.173333pt;}
.y5c{bottom:970.693333pt;}
.yc7{bottom:971.973333pt;}
.y5b{bottom:988.613333pt;}
.y2a{bottom:993.413333pt;}
.y5a{bottom:1006.533333pt;}
.y25{bottom:1024.613333pt;}
.y24{bottom:1042.560000pt;}
.y23{bottom:1060.640000pt;}
.y58{bottom:1065.440000pt;}
.y28{bottom:1067.040000pt;}
.h12{height:16.800000pt;}
.hd{height:16.960000pt;}
.h17{height:17.906667pt;}
.h16{height:18.066667pt;}
.h8{height:28.560000pt;}
.h15{height:32.626667pt;}
.h13{height:32.818667pt;}
.h9{height:35.242667pt;}
.h3{height:42.840000pt;}
.he{height:44.275000pt;}
.h14{height:47.725000pt;}
.h7{height:50.346667pt;}
.h6{height:52.864000pt;}
.hb{height:52.900000pt;}
.h18{height:54.598989pt;}
.h10{height:57.500000pt;}
.h2{height:60.416000pt;}
.hc{height:60.519362pt;}
.h11{height:64.006250pt;}
.hf{height:84.218750pt;}
.h5{height:85.589333pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.wc{width:19.200000pt;}
.w9{width:19.346667pt;}
.wd{width:19.360000pt;}
.wb{width:19.378667pt;}
.wa{width:19.666667pt;}
.wf{width:19.680000pt;}
.w13{width:19.698667pt;}
.w11{width:19.826667pt;}
.we{width:19.840000pt;}
.w10{width:19.872000pt;}
.w12{width:27.186667pt;}
.w8{width:50.390667pt;}
.w15{width:125.920000pt;}
.w17{width:137.933333pt;}
.w5{width:158.893333pt;}
.w16{width:164.666667pt;}
.w14{width:176.337333pt;}
.w7{width:216.493333pt;}
.w4{width:279.217333pt;}
.w6{width:319.217333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:2.230667pt;}
.x29{left:3.670667pt;}
.xe{left:5.266667pt;}
.x33{left:7.190667pt;}
.x5{left:9.590667pt;}
.x2f{left:38.400000pt;}
.x36{left:42.746667pt;}
.x37{left:50.080000pt;}
.x2d{left:53.105333pt;}
.x34{left:54.080000pt;}
.x32{left:57.146667pt;}
.x30{left:67.546667pt;}
.x35{left:69.466667pt;}
.x38{left:73.466667pt;}
.x1{left:90.706667pt;}
.xb{left:92.681333pt;}
.x2{left:94.486667pt;}
.x9{left:102.386667pt;}
.xa{left:113.792000pt;}
.x39{left:118.592000pt;}
.xd{left:143.080000pt;}
.xf{left:162.440000pt;}
.x4{left:180.874667pt;}
.x10{left:181.800000pt;}
.x11{left:201.160000pt;}
.x12{left:220.840000pt;}
.x13{left:240.200000pt;}
.x14{left:259.586667pt;}
.x2e{left:270.946667pt;}
.x15{left:278.786667pt;}
.x16{left:298.146667pt;}
.x17{left:317.986667pt;}
.x18{left:337.666667pt;}
.x19{left:357.346667pt;}
.x1a{left:377.186667pt;}
.x1b{left:396.866667pt;}
.x3{left:404.408000pt;}
.x1c{left:416.706667pt;}
.x1d{left:436.586667pt;}
.x1e{left:456.426667pt;}
.x1f{left:476.106667pt;}
.x8{left:481.546667pt;}
.x20{left:503.306667pt;}
.x21{left:522.986667pt;}
.x22{left:542.826667pt;}
.x2a{left:547.133333pt;}
.x31{left:561.546667pt;}
.x23{left:562.666667pt;}
.x6{left:577.226667pt;}
.x24{left:582.506667pt;}
.x2c{left:598.213333pt;}
.x25{left:602.213333pt;}
.x26{left:622.053333pt;}
.x27{left:641.893333pt;}
.x28{left:661.733333pt;}
.x7{left:681.573333pt;}
.x2b{left:698.693333pt;}
}




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