
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f359fef5372b777450531df5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.061035;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_a787632fbea5077aa5bb4893.woff')format("woff");}.ff3{font-family:ff3;line-height:0.876465;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_dfa0482930c349ab9188d62a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7f9682c3fb11801a65ac7873.woff')format("woff");}.ff5{font-family:ff5;line-height:1.070312;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_daa24fb2a818a1b3fdc5e6c3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.070312;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_d1d2733165c2dbdeea809adb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.720000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.720000px;}
.ls4{letter-spacing:9.360000px;}
.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;}
}
.ws4{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.160160px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-5.413591px;}
._16{margin-left:-4.032000px;}
._7{margin-left:-2.749591px;}
._0{margin-left:-1.138409px;}
._1{width:1.062515px;}
._21{width:2.070266px;}
._2{width:3.086352px;}
._4{width:4.968000px;}
._6{width:6.082971px;}
._5{width:7.200000px;}
._15{width:8.229379px;}
._a{width:9.288000px;}
._b{width:10.500000px;}
._f{width:11.544000px;}
._10{width:13.176000px;}
._e{width:14.890409px;}
._3{width:16.128000px;}
._11{width:19.080000px;}
._12{width:20.448000px;}
._8{width:22.440000px;}
._9{width:23.496000px;}
._c{width:25.488000px;}
._d{width:26.568000px;}
._1c{width:28.080000px;}
._17{width:29.808000px;}
._14{width:31.224000px;}
._18{width:32.616000px;}
._13{width:33.768000px;}
._1b{width:34.992000px;}
._19{width:36.552000px;}
._22{width:38.232000px;}
._23{width:39.240000px;}
._1d{width:40.608000px;}
._24{width:55.440000px;}
._25{width:56.664000px;}
._1f{width:150.048000px;}
._20{width:202.752000px;}
._1e{width:212.040000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,176,240);}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(79,129,189);}
.fc3{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.600000px;}
.y6e{bottom:3.960000px;}
.y71{bottom:24.654000px;}
.y6d{bottom:24.660000px;}
.y80{bottom:24.705000px;}
.y7b{bottom:45.360000px;}
.y7f{bottom:45.405000px;}
.y2{bottom:56.340000px;}
.y8a{bottom:66.054000px;}
.yb2{bottom:66.060000px;}
.y5b{bottom:85.536000px;}
.y45{bottom:86.076000px;}
.yda{bottom:86.616000px;}
.y89{bottom:86.754000px;}
.yb1{bottom:86.760000px;}
.y84{bottom:86.796000px;}
.yf3{bottom:86.976000px;}
.yff{bottom:87.336000px;}
.y91{bottom:88.416000px;}
.y73{bottom:99.036000px;}
.ybd{bottom:99.720000px;}
.y2a{bottom:106.416000px;}
.yd9{bottom:107.316000px;}
.y88{bottom:107.454000px;}
.yb0{bottom:107.460000px;}
.yf2{bottom:107.676000px;}
.yfe{bottom:108.036000px;}
.y125{bottom:109.116000px;}
.y72{bottom:120.456000px;}
.yc6{bottom:124.416000px;}
.y13b{bottom:125.676000px;}
.y5a{bottom:127.116000px;}
.y44{bottom:127.836000px;}
.yd8{bottom:128.016000px;}
.y87{bottom:128.154000px;}
.yaf{bottom:128.160000px;}
.yf1{bottom:128.376000px;}
.yfd{bottom:128.736000px;}
.y124{bottom:129.816000px;}
.y82{bottom:130.545000px;}
.y70{bottom:141.876000px;}
.yc5{bottom:145.116000px;}
.y13a{bottom:146.376000px;}
.y29{bottom:148.176000px;}
.y43{bottom:148.536000px;}
.ya9{bottom:148.674000px;}
.yd7{bottom:148.716000px;}
.y86{bottom:148.854000px;}
.yae{bottom:148.860000px;}
.yf0{bottom:149.076000px;}
.yfc{bottom:149.436000px;}
.y123{bottom:150.510000px;}
.yb6{bottom:154.080000px;}
.yc4{bottom:165.810000px;}
.y59{bottom:168.870000px;}
.y42{bottom:169.230000px;}
.ya8{bottom:169.374000px;}
.yd6{bottom:169.410000px;}
.y85{bottom:169.554000px;}
.yad{bottom:169.560000px;}
.yef{bottom:169.770000px;}
.yfb{bottom:170.130000px;}
.y122{bottom:171.210000px;}
.yb5{bottom:174.780000px;}
.y6f{bottom:184.170000px;}
.yc3{bottom:186.510000px;}
.y139{bottom:187.950000px;}
.y58{bottom:189.570000px;}
.y28{bottom:189.930000px;}
.ya7{bottom:190.074000px;}
.yd5{bottom:190.110000px;}
.yac{bottom:190.260000px;}
.yee{bottom:190.470000px;}
.yfa{bottom:190.830000px;}
.y121{bottom:191.910000px;}
.yb4{bottom:195.480000px;}
.yc2{bottom:207.210000px;}
.y138{bottom:208.650000px;}
.y57{bottom:210.270000px;}
.y41{bottom:210.630000px;}
.ya6{bottom:210.774000px;}
.yd4{bottom:210.810000px;}
.yab{bottom:210.960000px;}
.yed{bottom:211.170000px;}
.yf9{bottom:211.530000px;}
.y120{bottom:212.610000px;}
.y6c{bottom:226.290000px;}
.yc1{bottom:227.910000px;}
.y137{bottom:229.350000px;}
.y56{bottom:230.970000px;}
.y40{bottom:231.330000px;}
.y27{bottom:231.510000px;}
.ya5{bottom:231.519000px;}
.yf6{bottom:231.870000px;}
.yf8{bottom:232.230000px;}
.y11f{bottom:233.310000px;}
.yc0{bottom:248.610000px;}
.y144{bottom:250.410000px;}
.y55{bottom:251.670000px;}
.y3f{bottom:252.030000px;}
.y26{bottom:252.210000px;}
.ya4{bottom:252.219000px;}
.yf5{bottom:252.570000px;}
.yec{bottom:252.930000px;}
.y11e{bottom:254.010000px;}
.ybf{bottom:269.310000px;}
.y136{bottom:271.110000px;}
.y3e{bottom:272.550000px;}
.yf4{bottom:273.270000px;}
.yeb{bottom:273.630000px;}
.y11d{bottom:274.710000px;}
.y83{bottom:277.590000px;}
.y135{bottom:291.810000px;}
.y54{bottom:293.250000px;}
.y25{bottom:293.970000px;}
.yea{bottom:294.330000px;}
.y11c{bottom:295.410000px;}
.y81{bottom:302.790000px;}
.y7e{bottom:303.510000px;}
.ybe{bottom:311.070000px;}
.y143{bottom:312.870000px;}
.y53{bottom:313.950000px;}
.y3d{bottom:314.310000px;}
.y24{bottom:314.670000px;}
.ye9{bottom:315.030000px;}
.y11b{bottom:316.110000px;}
.y134{bottom:333.615000px;}
.y52{bottom:334.695000px;}
.y6b{bottom:335.055000px;}
.y23{bottom:335.415000px;}
.yd3{bottom:335.595000px;}
.y11a{bottom:336.855000px;}
.yb3{bottom:352.155000px;}
.ybc{bottom:352.875000px;}
.y133{bottom:354.315000px;}
.y142{bottom:354.495000px;}
.y6a{bottom:355.755000px;}
.y22{bottom:356.115000px;}
.yd2{bottom:356.295000px;}
.y119{bottom:357.555000px;}
.ya3{bottom:358.275000px;}
.y7d{bottom:366.375000px;}
.ybb{bottom:374.475000px;}
.y141{bottom:375.195000px;}
.y51{bottom:376.455000px;}
.y21{bottom:376.815000px;}
.yd1{bottom:376.995000px;}
.ye8{bottom:377.355000px;}
.y118{bottom:378.255000px;}
.yba{bottom:395.895000px;}
.y50{bottom:397.155000px;}
.y20{bottom:397.515000px;}
.yd0{bottom:397.695000px;}
.y117{bottom:398.955000px;}
.ya2{bottom:400.395000px;}
.y132{bottom:416.595000px;}
.y140{bottom:416.955000px;}
.yb9{bottom:417.315000px;}
.y4f{bottom:417.855000px;}
.y1f{bottom:418.215000px;}
.ycf{bottom:418.395000px;}
.ye7{bottom:419.115000px;}
.y116{bottom:419.655000px;}
.y7c{bottom:429.375000px;}
.y13f{bottom:437.655000px;}
.y4e{bottom:438.555000px;}
.yb8{bottom:438.735000px;}
.y1e{bottom:438.915000px;}
.y69{bottom:439.095000px;}
.yf7{bottom:439.455000px;}
.ye6{bottom:439.815000px;}
.y115{bottom:440.355000px;}
.ya1{bottom:442.515000px;}
.y9e{bottom:443.019000px;}
.y131{bottom:458.355000px;}
.y4d{bottom:459.255000px;}
.y1d{bottom:459.615000px;}
.yce{bottom:459.795000px;}
.yb7{bottom:460.155000px;}
.ye5{bottom:460.515000px;}
.y114{bottom:461.055000px;}
.y9d{bottom:463.719000px;}
.y7a{bottom:471.495000px;}
.y13e{bottom:479.415000px;}
.y1c{bottom:480.315000px;}
.y68{bottom:480.855000px;}
.ye4{bottom:481.215000px;}
.y113{bottom:481.755000px;}
.y9c{bottom:484.449000px;}
.ya0{bottom:484.635000px;}
.y130{bottom:500.115000px;}
.y1b{bottom:501.015000px;}
.y67{bottom:501.555000px;}
.ye3{bottom:501.915000px;}
.y112{bottom:502.455000px;}
.y9b{bottom:505.149000px;}
.y9f{bottom:506.055000px;}
.y12f{bottom:520.815000px;}
.y1a{bottom:521.715000px;}
.y66{bottom:522.255000px;}
.ye2{bottom:522.615000px;}
.y111{bottom:523.155000px;}
.y9a{bottom:525.849000px;}
.y79{bottom:534.315000px;}
.y12e{bottom:541.515000px;}
.y19{bottom:542.415000px;}
.y65{bottom:542.955000px;}
.ye1{bottom:543.315000px;}
.y110{bottom:543.855000px;}
.y99{bottom:546.549000px;}
.y13d{bottom:562.395000px;}
.y18{bottom:563.115000px;}
.y3c{bottom:563.295000px;}
.y64{bottom:563.655000px;}
.ye0{bottom:564.015000px;}
.y10f{bottom:564.555000px;}
.y98{bottom:567.249000px;}
.yaa{bottom:568.905000px;}
.y12d{bottom:583.125000px;}
.y17{bottom:583.845000px;}
.y63{bottom:584.385000px;}
.ydf{bottom:584.745000px;}
.y10e{bottom:585.285000px;}
.y97{bottom:587.949000px;}
.y12c{bottom:603.825000px;}
.y16{bottom:604.545000px;}
.y4c{bottom:604.725000px;}
.y3b{bottom:605.085000px;}
.yde{bottom:605.445000px;}
.y10d{bottom:605.985000px;}
.y96{bottom:608.649000px;}
.y15{bottom:625.245000px;}
.y4b{bottom:625.425000px;}
.y3a{bottom:625.785000px;}
.ydd{bottom:626.145000px;}
.y10c{bottom:626.685000px;}
.y95{bottom:629.349000px;}
.y12b{bottom:645.585000px;}
.y14{bottom:645.945000px;}
.y4a{bottom:646.125000px;}
.y39{bottom:646.485000px;}
.y62{bottom:646.845000px;}
.y10b{bottom:647.385000px;}
.y94{bottom:650.049000px;}
.y12a{bottom:666.285000px;}
.y13{bottom:666.645000px;}
.y49{bottom:666.825000px;}
.y38{bottom:667.185000px;}
.y61{bottom:667.545000px;}
.y10a{bottom:668.085000px;}
.y93{bottom:670.749000px;}
.y12{bottom:687.345000px;}
.y48{bottom:687.525000px;}
.y37{bottom:687.885000px;}
.y60{bottom:688.245000px;}
.y109{bottom:688.785000px;}
.y92{bottom:691.449000px;}
.y11{bottom:708.045000px;}
.y36{bottom:708.585000px;}
.y5f{bottom:708.945000px;}
.y108{bottom:709.485000px;}
.y10{bottom:728.745000px;}
.y35{bottom:729.285000px;}
.y5e{bottom:729.645000px;}
.y107{bottom:730.185000px;}
.yf{bottom:749.445000px;}
.y34{bottom:749.985000px;}
.y5d{bottom:750.345000px;}
.y106{bottom:750.885000px;}
.ye{bottom:770.145000px;}
.y13c{bottom:770.325000px;}
.y47{bottom:770.685000px;}
.y5c{bottom:771.045000px;}
.ydc{bottom:771.225000px;}
.y105{bottom:771.585000px;}
.y129{bottom:791.025000px;}
.y33{bottom:791.745000px;}
.ydb{bottom:791.925000px;}
.y104{bottom:792.285000px;}
.y90{bottom:801.105000px;}
.y8f{bottom:801.825000px;}
.y128{bottom:811.725000px;}
.yd{bottom:811.905000px;}
.y32{bottom:812.445000px;}
.y78{bottom:812.625000px;}
.y103{bottom:812.985000px;}
.y145{bottom:817.845000px;}
.y127{bottom:832.470000px;}
.y31{bottom:833.190000px;}
.y77{bottom:833.370000px;}
.y102{bottom:833.730000px;}
.yc{bottom:853.530000px;}
.y30{bottom:853.890000px;}
.y76{bottom:854.070000px;}
.y101{bottom:854.430000px;}
.y8e{bottom:864.870000px;}
.y126{bottom:874.230000px;}
.y2f{bottom:874.590000px;}
.y75{bottom:874.770000px;}
.y100{bottom:875.130000px;}
.yb{bottom:895.290000px;}
.y74{bottom:895.470000px;}
.ycd{bottom:895.830000px;}
.ya{bottom:915.990000px;}
.y46{bottom:916.170000px;}
.ycc{bottom:916.530000px;}
.y8d{bottom:927.690000px;}
.y9{bottom:936.690000px;}
.y2e{bottom:936.870000px;}
.ycb{bottom:937.230000px;}
.y8{bottom:957.390000px;}
.y2d{bottom:957.570000px;}
.yca{bottom:957.930000px;}
.y8c{bottom:969.810000px;}
.y2c{bottom:978.270000px;}
.yc9{bottom:978.630000px;}
.y7{bottom:998.970000px;}
.yc8{bottom:999.330000px;}
.y2b{bottom:1019.670000px;}
.yc7{bottom:1020.030000px;}
.y8b{bottom:1032.630000px;}
.y6{bottom:1040.730000px;}
.y5{bottom:1061.430000px;}
.y1{bottom:1082.700000px;}
.y3{bottom:1106.100000px;}
.hc{height:2.032031px;}
.h11{height:2.460938px;}
.h7{height:20.700000px;}
.h2{height:21.600000px;}
.h6{height:41.400000px;}
.h8{height:41.436000px;}
.h4{height:50.800781px;}
.h3{height:60.515013px;}
.h5{height:61.523438px;}
.h9{height:62.100000px;}
.ha{height:62.136000px;}
.h1{height:65.884219px;}
.hd{height:186.300000px;}
.h10{height:212.220000px;}
.hf{height:227.700000px;}
.hb{height:273.675000px;}
.he{height:708.195000px;}
.h0{height:1188.000000px;}
.we{width:2.700000px;}
.wf{width:2.880000px;}
.wd{width:3.600000px;}
.wc{width:3.780000px;}
.w7{width:70.560000px;}
.w9{width:96.300000px;}
.wa{width:105.516000px;}
.w8{width:119.376000px;}
.w16{width:133.416000px;}
.w14{width:133.560000px;}
.w15{width:134.136000px;}
.w5{width:137.736000px;}
.w6{width:140.040000px;}
.w3{width:141.120000px;}
.w4{width:141.156000px;}
.w10{width:166.680000px;}
.w13{width:167.070000px;}
.w11{width:167.430000px;}
.w12{width:168.330000px;}
.wb{width:675.645000px;}
.w2{width:699.225000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:1.080000px;}
.xb{left:7.740000px;}
.x3{left:46.974000px;}
.x1{left:108.035986px;}
.x2{left:109.476000px;}
.x4{left:111.095986px;}
.x10{left:112.176000px;}
.x20{left:162.029986px;}
.x11{left:183.450000px;}
.x8{left:214.949986px;}
.x5{left:232.409986px;}
.x1c{left:246.630000px;}
.xc{left:250.590000px;}
.x9{left:257.429986px;}
.x19{left:279.570000px;}
.x12{left:303.735000px;}
.xa{left:338.834986px;}
.x7{left:348.554986px;}
.x1d{left:381.495000px;}
.xd{left:392.475000px;}
.x13{left:400.935000px;}
.x1a{left:447.735000px;}
.x6{left:459.074986px;}
.x1e{left:516.345000px;}
.xe{left:530.925000px;}
.x1b{left:616.965000px;}
.x1f{left:650.625000px;}
.xf{left:671.685000px;}
.x15{left:788.190000px;}
.x16{left:794.310000px;}
.x17{left:800.250000px;}
.x18{left:805.110000px;}
@media print{
.v1{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls4{letter-spacing:8.320000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.697920pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-4.812081pt;}
._16{margin-left:-3.584000pt;}
._7{margin-left:-2.444081pt;}
._0{margin-left:-1.011919pt;}
._1{width:0.944457pt;}
._21{width:1.840237pt;}
._2{width:2.743424pt;}
._4{width:4.416000pt;}
._6{width:5.407085pt;}
._5{width:6.400000pt;}
._15{width:7.315004pt;}
._a{width:8.256000pt;}
._b{width:9.333333pt;}
._f{width:10.261333pt;}
._10{width:11.712000pt;}
._e{width:13.235919pt;}
._3{width:14.336000pt;}
._11{width:16.960000pt;}
._12{width:18.176000pt;}
._8{width:19.946667pt;}
._9{width:20.885333pt;}
._c{width:22.656000pt;}
._d{width:23.616000pt;}
._1c{width:24.960000pt;}
._17{width:26.496000pt;}
._14{width:27.754667pt;}
._18{width:28.992000pt;}
._13{width:30.016000pt;}
._1b{width:31.104000pt;}
._19{width:32.490667pt;}
._22{width:33.984000pt;}
._23{width:34.880000pt;}
._1d{width:36.096000pt;}
._24{width:49.280000pt;}
._25{width:50.368000pt;}
._1f{width:133.376000pt;}
._20{width:180.224000pt;}
._1e{width:188.480000pt;}
.fs4{font-size:2.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.200000pt;}
.y6e{bottom:3.520000pt;}
.y71{bottom:21.914667pt;}
.y6d{bottom:21.920000pt;}
.y80{bottom:21.960000pt;}
.y7b{bottom:40.320000pt;}
.y7f{bottom:40.360000pt;}
.y2{bottom:50.080000pt;}
.y8a{bottom:58.714667pt;}
.yb2{bottom:58.720000pt;}
.y5b{bottom:76.032000pt;}
.y45{bottom:76.512000pt;}
.yda{bottom:76.992000pt;}
.y89{bottom:77.114667pt;}
.yb1{bottom:77.120000pt;}
.y84{bottom:77.152000pt;}
.yf3{bottom:77.312000pt;}
.yff{bottom:77.632000pt;}
.y91{bottom:78.592000pt;}
.y73{bottom:88.032000pt;}
.ybd{bottom:88.640000pt;}
.y2a{bottom:94.592000pt;}
.yd9{bottom:95.392000pt;}
.y88{bottom:95.514667pt;}
.yb0{bottom:95.520000pt;}
.yf2{bottom:95.712000pt;}
.yfe{bottom:96.032000pt;}
.y125{bottom:96.992000pt;}
.y72{bottom:107.072000pt;}
.yc6{bottom:110.592000pt;}
.y13b{bottom:111.712000pt;}
.y5a{bottom:112.992000pt;}
.y44{bottom:113.632000pt;}
.yd8{bottom:113.792000pt;}
.y87{bottom:113.914667pt;}
.yaf{bottom:113.920000pt;}
.yf1{bottom:114.112000pt;}
.yfd{bottom:114.432000pt;}
.y124{bottom:115.392000pt;}
.y82{bottom:116.040000pt;}
.y70{bottom:126.112000pt;}
.yc5{bottom:128.992000pt;}
.y13a{bottom:130.112000pt;}
.y29{bottom:131.712000pt;}
.y43{bottom:132.032000pt;}
.ya9{bottom:132.154667pt;}
.yd7{bottom:132.192000pt;}
.y86{bottom:132.314667pt;}
.yae{bottom:132.320000pt;}
.yf0{bottom:132.512000pt;}
.yfc{bottom:132.832000pt;}
.y123{bottom:133.786667pt;}
.yb6{bottom:136.960000pt;}
.yc4{bottom:147.386667pt;}
.y59{bottom:150.106667pt;}
.y42{bottom:150.426667pt;}
.ya8{bottom:150.554667pt;}
.yd6{bottom:150.586667pt;}
.y85{bottom:150.714667pt;}
.yad{bottom:150.720000pt;}
.yef{bottom:150.906667pt;}
.yfb{bottom:151.226667pt;}
.y122{bottom:152.186667pt;}
.yb5{bottom:155.360000pt;}
.y6f{bottom:163.706667pt;}
.yc3{bottom:165.786667pt;}
.y139{bottom:167.066667pt;}
.y58{bottom:168.506667pt;}
.y28{bottom:168.826667pt;}
.ya7{bottom:168.954667pt;}
.yd5{bottom:168.986667pt;}
.yac{bottom:169.120000pt;}
.yee{bottom:169.306667pt;}
.yfa{bottom:169.626667pt;}
.y121{bottom:170.586667pt;}
.yb4{bottom:173.760000pt;}
.yc2{bottom:184.186667pt;}
.y138{bottom:185.466667pt;}
.y57{bottom:186.906667pt;}
.y41{bottom:187.226667pt;}
.ya6{bottom:187.354667pt;}
.yd4{bottom:187.386667pt;}
.yab{bottom:187.520000pt;}
.yed{bottom:187.706667pt;}
.yf9{bottom:188.026667pt;}
.y120{bottom:188.986667pt;}
.y6c{bottom:201.146667pt;}
.yc1{bottom:202.586667pt;}
.y137{bottom:203.866667pt;}
.y56{bottom:205.306667pt;}
.y40{bottom:205.626667pt;}
.y27{bottom:205.786667pt;}
.ya5{bottom:205.794667pt;}
.yf6{bottom:206.106667pt;}
.yf8{bottom:206.426667pt;}
.y11f{bottom:207.386667pt;}
.yc0{bottom:220.986667pt;}
.y144{bottom:222.586667pt;}
.y55{bottom:223.706667pt;}
.y3f{bottom:224.026667pt;}
.y26{bottom:224.186667pt;}
.ya4{bottom:224.194667pt;}
.yf5{bottom:224.506667pt;}
.yec{bottom:224.826667pt;}
.y11e{bottom:225.786667pt;}
.ybf{bottom:239.386667pt;}
.y136{bottom:240.986667pt;}
.y3e{bottom:242.266667pt;}
.yf4{bottom:242.906667pt;}
.yeb{bottom:243.226667pt;}
.y11d{bottom:244.186667pt;}
.y83{bottom:246.746667pt;}
.y135{bottom:259.386667pt;}
.y54{bottom:260.666667pt;}
.y25{bottom:261.306667pt;}
.yea{bottom:261.626667pt;}
.y11c{bottom:262.586667pt;}
.y81{bottom:269.146667pt;}
.y7e{bottom:269.786667pt;}
.ybe{bottom:276.506667pt;}
.y143{bottom:278.106667pt;}
.y53{bottom:279.066667pt;}
.y3d{bottom:279.386667pt;}
.y24{bottom:279.706667pt;}
.ye9{bottom:280.026667pt;}
.y11b{bottom:280.986667pt;}
.y134{bottom:296.546667pt;}
.y52{bottom:297.506667pt;}
.y6b{bottom:297.826667pt;}
.y23{bottom:298.146667pt;}
.yd3{bottom:298.306667pt;}
.y11a{bottom:299.426667pt;}
.yb3{bottom:313.026667pt;}
.ybc{bottom:313.666667pt;}
.y133{bottom:314.946667pt;}
.y142{bottom:315.106667pt;}
.y6a{bottom:316.226667pt;}
.y22{bottom:316.546667pt;}
.yd2{bottom:316.706667pt;}
.y119{bottom:317.826667pt;}
.ya3{bottom:318.466667pt;}
.y7d{bottom:325.666667pt;}
.ybb{bottom:332.866667pt;}
.y141{bottom:333.506667pt;}
.y51{bottom:334.626667pt;}
.y21{bottom:334.946667pt;}
.yd1{bottom:335.106667pt;}
.ye8{bottom:335.426667pt;}
.y118{bottom:336.226667pt;}
.yba{bottom:351.906667pt;}
.y50{bottom:353.026667pt;}
.y20{bottom:353.346667pt;}
.yd0{bottom:353.506667pt;}
.y117{bottom:354.626667pt;}
.ya2{bottom:355.906667pt;}
.y132{bottom:370.306667pt;}
.y140{bottom:370.626667pt;}
.yb9{bottom:370.946667pt;}
.y4f{bottom:371.426667pt;}
.y1f{bottom:371.746667pt;}
.ycf{bottom:371.906667pt;}
.ye7{bottom:372.546667pt;}
.y116{bottom:373.026667pt;}
.y7c{bottom:381.666667pt;}
.y13f{bottom:389.026667pt;}
.y4e{bottom:389.826667pt;}
.yb8{bottom:389.986667pt;}
.y1e{bottom:390.146667pt;}
.y69{bottom:390.306667pt;}
.yf7{bottom:390.626667pt;}
.ye6{bottom:390.946667pt;}
.y115{bottom:391.426667pt;}
.ya1{bottom:393.346667pt;}
.y9e{bottom:393.794667pt;}
.y131{bottom:407.426667pt;}
.y4d{bottom:408.226667pt;}
.y1d{bottom:408.546667pt;}
.yce{bottom:408.706667pt;}
.yb7{bottom:409.026667pt;}
.ye5{bottom:409.346667pt;}
.y114{bottom:409.826667pt;}
.y9d{bottom:412.194667pt;}
.y7a{bottom:419.106667pt;}
.y13e{bottom:426.146667pt;}
.y1c{bottom:426.946667pt;}
.y68{bottom:427.426667pt;}
.ye4{bottom:427.746667pt;}
.y113{bottom:428.226667pt;}
.y9c{bottom:430.621333pt;}
.ya0{bottom:430.786667pt;}
.y130{bottom:444.546667pt;}
.y1b{bottom:445.346667pt;}
.y67{bottom:445.826667pt;}
.ye3{bottom:446.146667pt;}
.y112{bottom:446.626667pt;}
.y9b{bottom:449.021333pt;}
.y9f{bottom:449.826667pt;}
.y12f{bottom:462.946667pt;}
.y1a{bottom:463.746667pt;}
.y66{bottom:464.226667pt;}
.ye2{bottom:464.546667pt;}
.y111{bottom:465.026667pt;}
.y9a{bottom:467.421333pt;}
.y79{bottom:474.946667pt;}
.y12e{bottom:481.346667pt;}
.y19{bottom:482.146667pt;}
.y65{bottom:482.626667pt;}
.ye1{bottom:482.946667pt;}
.y110{bottom:483.426667pt;}
.y99{bottom:485.821333pt;}
.y13d{bottom:499.906667pt;}
.y18{bottom:500.546667pt;}
.y3c{bottom:500.706667pt;}
.y64{bottom:501.026667pt;}
.ye0{bottom:501.346667pt;}
.y10f{bottom:501.826667pt;}
.y98{bottom:504.221333pt;}
.yaa{bottom:505.693333pt;}
.y12d{bottom:518.333333pt;}
.y17{bottom:518.973333pt;}
.y63{bottom:519.453333pt;}
.ydf{bottom:519.773333pt;}
.y10e{bottom:520.253333pt;}
.y97{bottom:522.621333pt;}
.y12c{bottom:536.733333pt;}
.y16{bottom:537.373333pt;}
.y4c{bottom:537.533333pt;}
.y3b{bottom:537.853333pt;}
.yde{bottom:538.173333pt;}
.y10d{bottom:538.653333pt;}
.y96{bottom:541.021333pt;}
.y15{bottom:555.773333pt;}
.y4b{bottom:555.933333pt;}
.y3a{bottom:556.253333pt;}
.ydd{bottom:556.573333pt;}
.y10c{bottom:557.053333pt;}
.y95{bottom:559.421333pt;}
.y12b{bottom:573.853333pt;}
.y14{bottom:574.173333pt;}
.y4a{bottom:574.333333pt;}
.y39{bottom:574.653333pt;}
.y62{bottom:574.973333pt;}
.y10b{bottom:575.453333pt;}
.y94{bottom:577.821333pt;}
.y12a{bottom:592.253333pt;}
.y13{bottom:592.573333pt;}
.y49{bottom:592.733333pt;}
.y38{bottom:593.053333pt;}
.y61{bottom:593.373333pt;}
.y10a{bottom:593.853333pt;}
.y93{bottom:596.221333pt;}
.y12{bottom:610.973333pt;}
.y48{bottom:611.133333pt;}
.y37{bottom:611.453333pt;}
.y60{bottom:611.773333pt;}
.y109{bottom:612.253333pt;}
.y92{bottom:614.621333pt;}
.y11{bottom:629.373333pt;}
.y36{bottom:629.853333pt;}
.y5f{bottom:630.173333pt;}
.y108{bottom:630.653333pt;}
.y10{bottom:647.773333pt;}
.y35{bottom:648.253333pt;}
.y5e{bottom:648.573333pt;}
.y107{bottom:649.053333pt;}
.yf{bottom:666.173333pt;}
.y34{bottom:666.653333pt;}
.y5d{bottom:666.973333pt;}
.y106{bottom:667.453333pt;}
.ye{bottom:684.573333pt;}
.y13c{bottom:684.733333pt;}
.y47{bottom:685.053333pt;}
.y5c{bottom:685.373333pt;}
.ydc{bottom:685.533333pt;}
.y105{bottom:685.853333pt;}
.y129{bottom:703.133333pt;}
.y33{bottom:703.773333pt;}
.ydb{bottom:703.933333pt;}
.y104{bottom:704.253333pt;}
.y90{bottom:712.093333pt;}
.y8f{bottom:712.733333pt;}
.y128{bottom:721.533333pt;}
.yd{bottom:721.693333pt;}
.y32{bottom:722.173333pt;}
.y78{bottom:722.333333pt;}
.y103{bottom:722.653333pt;}
.y145{bottom:726.973333pt;}
.y127{bottom:739.973333pt;}
.y31{bottom:740.613333pt;}
.y77{bottom:740.773333pt;}
.y102{bottom:741.093333pt;}
.yc{bottom:758.693333pt;}
.y30{bottom:759.013333pt;}
.y76{bottom:759.173333pt;}
.y101{bottom:759.493333pt;}
.y8e{bottom:768.773333pt;}
.y126{bottom:777.093333pt;}
.y2f{bottom:777.413333pt;}
.y75{bottom:777.573333pt;}
.y100{bottom:777.893333pt;}
.yb{bottom:795.813333pt;}
.y74{bottom:795.973333pt;}
.ycd{bottom:796.293333pt;}
.ya{bottom:814.213333pt;}
.y46{bottom:814.373333pt;}
.ycc{bottom:814.693333pt;}
.y8d{bottom:824.613333pt;}
.y9{bottom:832.613333pt;}
.y2e{bottom:832.773333pt;}
.ycb{bottom:833.093333pt;}
.y8{bottom:851.013333pt;}
.y2d{bottom:851.173333pt;}
.yca{bottom:851.493333pt;}
.y8c{bottom:862.053333pt;}
.y2c{bottom:869.573333pt;}
.yc9{bottom:869.893333pt;}
.y7{bottom:887.973333pt;}
.yc8{bottom:888.293333pt;}
.y2b{bottom:906.373333pt;}
.yc7{bottom:906.693333pt;}
.y8b{bottom:917.893333pt;}
.y6{bottom:925.093333pt;}
.y5{bottom:943.493333pt;}
.y1{bottom:962.400000pt;}
.y3{bottom:983.200000pt;}
.hc{height:1.806250pt;}
.h11{height:2.187500pt;}
.h7{height:18.400000pt;}
.h2{height:19.200000pt;}
.h6{height:36.800000pt;}
.h8{height:36.832000pt;}
.h4{height:45.156250pt;}
.h3{height:53.791123pt;}
.h5{height:54.687500pt;}
.h9{height:55.200000pt;}
.ha{height:55.232000pt;}
.h1{height:58.563750pt;}
.hd{height:165.600000pt;}
.h10{height:188.640000pt;}
.hf{height:202.400000pt;}
.hb{height:243.266667pt;}
.he{height:629.506667pt;}
.h0{height:1056.000000pt;}
.we{width:2.400000pt;}
.wf{width:2.560000pt;}
.wd{width:3.200000pt;}
.wc{width:3.360000pt;}
.w7{width:62.720000pt;}
.w9{width:85.600000pt;}
.wa{width:93.792000pt;}
.w8{width:106.112000pt;}
.w16{width:118.592000pt;}
.w14{width:118.720000pt;}
.w15{width:119.232000pt;}
.w5{width:122.432000pt;}
.w6{width:124.480000pt;}
.w3{width:125.440000pt;}
.w4{width:125.472000pt;}
.w10{width:148.160000pt;}
.w13{width:148.506667pt;}
.w11{width:148.826667pt;}
.w12{width:149.626667pt;}
.wb{width:600.573333pt;}
.w2{width:621.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:0.960000pt;}
.xb{left:6.880000pt;}
.x3{left:41.754667pt;}
.x1{left:96.031988pt;}
.x2{left:97.312000pt;}
.x4{left:98.751988pt;}
.x10{left:99.712000pt;}
.x20{left:144.026655pt;}
.x11{left:163.066667pt;}
.x8{left:191.066655pt;}
.x5{left:206.586655pt;}
.x1c{left:219.226667pt;}
.xc{left:222.746667pt;}
.x9{left:228.826655pt;}
.x19{left:248.506667pt;}
.x12{left:269.986667pt;}
.xa{left:301.186655pt;}
.x7{left:309.826655pt;}
.x1d{left:339.106667pt;}
.xd{left:348.866667pt;}
.x13{left:356.386667pt;}
.x1a{left:397.986667pt;}
.x6{left:408.066655pt;}
.x1e{left:458.973333pt;}
.xe{left:471.933333pt;}
.x1b{left:548.413333pt;}
.x1f{left:578.333333pt;}
.xf{left:597.053333pt;}
.x15{left:700.613333pt;}
.x16{left:706.053333pt;}
.x17{left:711.333333pt;}
.x18{left:715.653333pt;}
}




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