
    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_478913f05d24dcdc181243d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_609d102ea36c0cab997a8972.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_03c8f76fad05a874a54e46f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_ffe117af7a9bc35dfc78c84a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_b3aa538c65a6aae54b028ab8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_a568aa45b0e5ff90d4e69468.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_f4cd830005d46c242fcc08a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_0ff0a237975607008f48b6f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls15{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.lse{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.181200px;}
.ls1{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.840000px;}
.lsc{letter-spacing:1.440000px;}
.lsd{letter-spacing:2.160000px;}
.lsb{letter-spacing:11.520000px;}
.ls16{letter-spacing:12.960000px;}
.lsa{letter-spacing:15.840000px;}
.ls3{letter-spacing:18.180000px;}
.ls5{letter-spacing:30.960000px;}
.ls17{letter-spacing:45.360000px;}
.ls22{letter-spacing:51.840000px;}
.ls1f{letter-spacing:64.002720px;}
.ls9{letter-spacing:81.540000px;}
.ls20{letter-spacing:194.400000px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.ws0{word-spacing:-26.424000px;}
.ws8{word-spacing:-18.576000px;}
.ws9{word-spacing:-18.432000px;}
.wsa{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.568000px;}
.ws14{word-spacing:-17.496000px;}
.ws1{word-spacing:-15.226440px;}
.wsf{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.241200px;}
.wsc{word-spacing:-12.060000px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:18.144000px;}
._22{margin-left:-195.336000px;}
._28{margin-left:-3.804000px;}
._24{margin-left:-2.472000px;}
._0{margin-left:-1.188000px;}
._2{width:1.425840px;}
._3{width:3.240000px;}
._4{width:4.514160px;}
._8{width:6.336000px;}
._7{width:7.416000px;}
._15{width:8.424000px;}
._11{width:9.504000px;}
._5{width:10.584000px;}
._6{width:11.834160px;}
._12{width:13.447680px;}
._f{width:14.904000px;}
._10{width:15.984000px;}
._20{width:16.992000px;}
._1{width:18.648000px;}
._16{width:19.848000px;}
._9{width:21.240000px;}
._a{width:22.320000px;}
._18{width:23.760000px;}
._19{width:25.070160px;}
._17{width:27.000000px;}
._c{width:30.060000px;}
._b{width:31.176000px;}
._27{width:32.328000px;}
._d{width:33.912000px;}
._1d{width:35.064000px;}
._1f{width:36.446160px;}
._23{width:37.908000px;}
._26{width:41.090160px;}
._25{width:42.240000px;}
._14{width:45.072000px;}
._13{width:46.200000px;}
._21{width:47.256000px;}
._e{width:81.360000px;}
._1a{width:93.888000px;}
._29{width:140.376000px;}
._1b{width:285.816000px;}
._1c{width:298.704000px;}
._1e{width:609.902160px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:5.580000px;}
.y3{bottom:7.020000px;}
.y7{bottom:11.340000px;}
.y2{bottom:28.260000px;}
.y8{bottom:71.136000px;}
.y6{bottom:86.796000px;}
.yc5{bottom:119.556000px;}
.y78{bottom:119.736000px;}
.y55{bottom:121.356000px;}
.y6d{bottom:122.796000px;}
.yde{bottom:125.856000px;}
.ya4{bottom:132.336000px;}
.y96{bottom:144.936000px;}
.y32{bottom:149.436000px;}
.yc4{bottom:150.510000px;}
.y77{bottom:150.690000px;}
.y54{bottom:152.310000px;}
.y6c{bottom:153.930000px;}
.ydd{bottom:156.990000px;}
.ya3{bottom:163.290000px;}
.y31{bottom:173.190000px;}
.y95{bottom:175.890000px;}
.yc3{bottom:181.650000px;}
.y76{bottom:181.830000px;}
.y53{bottom:183.450000px;}
.y6b{bottom:184.890000px;}
.ydc{bottom:187.950000px;}
.ya2{bottom:194.430000px;}
.y30{bottom:196.950000px;}
.y94{bottom:207.030000px;}
.yc2{bottom:212.610000px;}
.y75{bottom:212.790000px;}
.y52{bottom:214.410000px;}
.y6a{bottom:216.030000px;}
.ydb{bottom:219.090000px;}
.y2f{bottom:220.710000px;}
.ya1{bottom:225.390000px;}
.y93{bottom:237.990000px;}
.yc1{bottom:243.750000px;}
.y74{bottom:243.930000px;}
.y2e{bottom:244.650000px;}
.y51{bottom:245.550000px;}
.y69{bottom:246.990000px;}
.yda{bottom:250.050000px;}
.ya0{bottom:256.530000px;}
.y2d{bottom:268.410000px;}
.y92{bottom:269.130000px;}
.y73{bottom:270.930000px;}
.yc0{bottom:274.710000px;}
.y50{bottom:276.510000px;}
.y68{bottom:278.130000px;}
.yd9{bottom:281.190000px;}
.y9f{bottom:287.490000px;}
.y2c{bottom:292.170000px;}
.y91{bottom:300.090000px;}
.ybf{bottom:305.850000px;}
.y4f{bottom:307.650000px;}
.y67{bottom:309.090000px;}
.yd8{bottom:312.150000px;}
.y2b{bottom:315.930000px;}
.y9e{bottom:318.630000px;}
.yac{bottom:322.950000px;}
.y90{bottom:331.230000px;}
.y72{bottom:334.830000px;}
.ybe{bottom:336.855000px;}
.y4e{bottom:338.655000px;}
.y2a{bottom:339.915000px;}
.y66{bottom:340.275000px;}
.yd7{bottom:343.335000px;}
.y9d{bottom:349.635000px;}
.yab{bottom:353.955000px;}
.y8f{bottom:362.235000px;}
.y29{bottom:363.675000px;}
.ybd{bottom:367.995000px;}
.y71{bottom:368.715000px;}
.y4d{bottom:369.795000px;}
.y65{bottom:371.235000px;}
.yd6{bottom:374.295000px;}
.y9c{bottom:380.775000px;}
.yaa{bottom:385.095000px;}
.y28{bottom:387.435000px;}
.y8e{bottom:393.375000px;}
.ybc{bottom:394.995000px;}
.y70{bottom:400.395000px;}
.y4c{bottom:400.755000px;}
.y64{bottom:402.375000px;}
.yd5{bottom:405.435000px;}
.y27{bottom:411.195000px;}
.ya9{bottom:416.055000px;}
.y9b{bottom:420.555000px;}
.y8d{bottom:424.335000px;}
.y4b{bottom:431.895000px;}
.ybb{bottom:432.435000px;}
.y63{bottom:433.335000px;}
.y26{bottom:434.955000px;}
.yd4{bottom:436.395000px;}
.ya8{bottom:447.195000px;}
.y8c{bottom:455.475000px;}
.y25{bottom:458.895000px;}
.y6f{bottom:459.795000px;}
.y4a{bottom:462.855000px;}
.y62{bottom:464.475000px;}
.yd3{bottom:467.535000px;}
.y9a{bottom:467.895000px;}
.yba{bottom:473.655000px;}
.ya7{bottom:478.155000px;}
.y24{bottom:482.655000px;}
.y8b{bottom:486.435000px;}
.y6e{bottom:490.755000px;}
.y49{bottom:493.995000px;}
.y61{bottom:495.435000px;}
.yd2{bottom:498.495000px;}
.yb9{bottom:504.795000px;}
.y23{bottom:506.415000px;}
.ya6{bottom:509.295000px;}
.y99{bottom:515.415000px;}
.y8a{bottom:517.575000px;}
.y48{bottom:524.955000px;}
.ydf{bottom:526.035000px;}
.y60{bottom:526.575000px;}
.yd1{bottom:529.635000px;}
.y22{bottom:530.175000px;}
.yb8{bottom:535.755000px;}
.ya5{bottom:538.095000px;}
.y89{bottom:548.535000px;}
.y21{bottom:554.115000px;}
.y47{bottom:556.095000px;}
.y5f{bottom:557.535000px;}
.yd0{bottom:560.595000px;}
.y98{bottom:562.935000px;}
.yb7{bottom:566.895000px;}
.y20{bottom:577.875000px;}
.y88{bottom:579.675000px;}
.y46{bottom:587.055000px;}
.y5e{bottom:588.675000px;}
.ycf{bottom:591.735000px;}
.yb6{bottom:597.855000px;}
.y1f{bottom:601.635000px;}
.y5d{bottom:606.165000px;}
.y97{bottom:610.305000px;}
.y87{bottom:610.665000px;}
.y45{bottom:618.045000px;}
.yce{bottom:622.725000px;}
.y1e{bottom:625.425000px;}
.yb5{bottom:629.025000px;}
.y5b{bottom:629.205000px;}
.y86{bottom:641.805000px;}
.y44{bottom:649.185000px;}
.y1d{bottom:649.365000px;}
.ycd{bottom:656.025000px;}
.y5a{bottom:657.825000px;}
.yb4{bottom:659.985000px;}
.y85{bottom:672.765000px;}
.y1c{bottom:673.125000px;}
.y43{bottom:680.145000px;}
.ycc{bottom:690.045000px;}
.yb3{bottom:691.125000px;}
.y1b{bottom:696.885000px;}
.y84{bottom:703.905000px;}
.y42{bottom:711.285000px;}
.y1a{bottom:720.645000px;}
.ycb{bottom:721.005000px;}
.yb2{bottom:722.085000px;}
.y83{bottom:734.865000px;}
.y41{bottom:742.245000px;}
.y19{bottom:744.585000px;}
.yca{bottom:752.145000px;}
.yb1{bottom:762.045000px;}
.y82{bottom:766.005000px;}
.y18{bottom:768.345000px;}
.y40{bottom:773.385000px;}
.yc9{bottom:783.105000px;}
.y17{bottom:792.105000px;}
.y81{bottom:796.965000px;}
.yb0{bottom:803.985000px;}
.y3f{bottom:804.345000px;}
.y16{bottom:815.865000px;}
.yc8{bottom:816.585000px;}
.y80{bottom:828.105000px;}
.yaf{bottom:835.125000px;}
.y3e{bottom:835.485000px;}
.y15{bottom:839.805000px;}
.yc7{bottom:850.425000px;}
.y7f{bottom:859.065000px;}
.y14{bottom:863.565000px;}
.yae{bottom:866.085000px;}
.y3d{bottom:866.445000px;}
.yc6{bottom:879.270000px;}
.y13{bottom:887.370000px;}
.y7e{bottom:890.250000px;}
.yad{bottom:894.930000px;}
.y3c{bottom:897.630000px;}
.y12{bottom:911.130000px;}
.y7d{bottom:921.210000px;}
.y3b{bottom:928.590000px;}
.y11{bottom:934.890000px;}
.y7c{bottom:952.350000px;}
.y3a{bottom:959.730000px;}
.y10{bottom:966.030000px;}
.y7b{bottom:983.310000px;}
.y39{bottom:990.690000px;}
.yf{bottom:996.990000px;}
.y7a{bottom:1014.450000px;}
.ye{bottom:1019.490000px;}
.y59{bottom:1021.830000px;}
.y38{bottom:1024.170000px;}
.yd{bottom:1041.810000px;}
.y79{bottom:1048.110000px;}
.y37{bottom:1050.810000px;}
.y58{bottom:1052.790000px;}
.yc{bottom:1064.850000px;}
.y36{bottom:1074.570000px;}
.y57{bottom:1083.930000px;}
.yb{bottom:1090.950000px;}
.y35{bottom:1098.330000px;}
.y56{bottom:1114.890000px;}
.ya{bottom:1117.050000px;}
.y34{bottom:1122.270000px;}
.y9{bottom:1143.180000px;}
.y33{bottom:1146.060000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.hb{height:22.320000px;}
.h5{height:27.000000px;}
.ha{height:50.484375px;}
.h9{height:51.996094px;}
.h2{height:53.460000px;}
.hc{height:59.066719px;}
.h8{height:59.343750px;}
.h7{height:62.261719px;}
.h4{height:65.884219px;}
.h6{height:72.846211px;}
.h3{height:75.726562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:35.460000px;}
.w5{width:106.416000px;}
.wb{width:141.840000px;}
.w9{width:160.770000px;}
.wa{width:165.990000px;}
.w8{width:210.090000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w2{width:498.675000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:8.640000px;}
.x26{left:13.140000px;}
.x21{left:14.580000px;}
.x28{left:23.040000px;}
.x25{left:25.200000px;}
.x23{left:26.280000px;}
.x2a{left:31.140000px;}
.x27{left:43.374000px;}
.x9{left:44.820000px;}
.x29{left:47.880000px;}
.x1f{left:49.854000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x1c{left:98.676000px;}
.x5{left:106.415987px;}
.x18{left:113.975987px;}
.xb{left:125.855987px;}
.xf{left:127.835987px;}
.x40{left:133.415987px;}
.x1e{left:134.856000px;}
.xc{left:141.335987px;}
.x16{left:144.035987px;}
.x13{left:159.509987px;}
.x3c{left:186.869987px;}
.x2{left:197.310000px;}
.x15{left:201.809987px;}
.x19{left:210.449987px;}
.xd{left:228.989987px;}
.x34{left:232.049987px;}
.x14{left:238.709987px;}
.x30{left:244.109987px;}
.x10{left:246.989987px;}
.x44{left:265.709987px;}
.x2c{left:268.589987px;}
.x1{left:278.175000px;}
.x3e{left:283.214987px;}
.x46{left:284.654987px;}
.x32{left:288.254987px;}
.x47{left:294.374987px;}
.x48{left:296.174987px;}
.x7{left:297.795000px;}
.x12{left:306.434987px;}
.x45{left:310.934987px;}
.x41{left:334.154987px;}
.x1b{left:344.594987px;}
.x20{left:345.675000px;}
.x11{left:352.334987px;}
.x3a{left:354.494987px;}
.x39{left:362.234987px;}
.x2b{left:369.794987px;}
.x17{left:388.154987px;}
.x31{left:389.234987px;}
.x8{left:390.855000px;}
.x36{left:394.994987px;}
.x37{left:412.094987px;}
.x33{left:413.714987px;}
.x4a{left:415.154987px;}
.x2f{left:419.114987px;}
.x38{left:420.554987px;}
.x3f{left:428.294987px;}
.x35{left:437.114987px;}
.xe{left:457.094987px;}
.x2e{left:494.564987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x22{left:507.165000px;}
.x43{left:542.624987px;}
.x3d{left:651.344987px;}
.x49{left:667.589987px;}
.x24{left:673.890000px;}
.x2d{left:700.349987px;}
.x3b{left:735.089987px;}
.x42{left:741.929987px;}
.x1a{left:750.389987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls15{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.lse{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.161067pt;}
.ls1{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.746667pt;}
.lsc{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.920000pt;}
.lsb{letter-spacing:10.240000pt;}
.ls16{letter-spacing:11.520000pt;}
.lsa{letter-spacing:14.080000pt;}
.ls3{letter-spacing:16.160000pt;}
.ls5{letter-spacing:27.520000pt;}
.ls17{letter-spacing:40.320000pt;}
.ls22{letter-spacing:46.080000pt;}
.ls1f{letter-spacing:56.891307pt;}
.ls9{letter-spacing:72.480000pt;}
.ls20{letter-spacing:172.800000pt;}
.ws11{word-spacing:-53.120000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws8{word-spacing:-16.512000pt;}
.ws9{word-spacing:-16.384000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.616000pt;}
.ws14{word-spacing:-15.552000pt;}
.ws1{word-spacing:-13.534613pt;}
.wsf{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.881067pt;}
.wsc{word-spacing:-10.720000pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:16.128000pt;}
._22{margin-left:-173.632000pt;}
._28{margin-left:-3.381333pt;}
._24{margin-left:-2.197333pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.267413pt;}
._3{width:2.880000pt;}
._4{width:4.012587pt;}
._8{width:5.632000pt;}
._7{width:6.592000pt;}
._15{width:7.488000pt;}
._11{width:8.448000pt;}
._5{width:9.408000pt;}
._6{width:10.519253pt;}
._12{width:11.953493pt;}
._f{width:13.248000pt;}
._10{width:14.208000pt;}
._20{width:15.104000pt;}
._1{width:16.576000pt;}
._16{width:17.642667pt;}
._9{width:18.880000pt;}
._a{width:19.840000pt;}
._18{width:21.120000pt;}
._19{width:22.284587pt;}
._17{width:24.000000pt;}
._c{width:26.720000pt;}
._b{width:27.712000pt;}
._27{width:28.736000pt;}
._d{width:30.144000pt;}
._1d{width:31.168000pt;}
._1f{width:32.396587pt;}
._23{width:33.696000pt;}
._26{width:36.524587pt;}
._25{width:37.546667pt;}
._14{width:40.064000pt;}
._13{width:41.066667pt;}
._21{width:42.005333pt;}
._e{width:72.320000pt;}
._1a{width:83.456000pt;}
._29{width:124.778667pt;}
._1b{width:254.058667pt;}
._1c{width:265.514667pt;}
._1e{width:542.135253pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:4.960000pt;}
.y3{bottom:6.240000pt;}
.y7{bottom:10.080000pt;}
.y2{bottom:25.120000pt;}
.y8{bottom:63.232000pt;}
.y6{bottom:77.152000pt;}
.yc5{bottom:106.272000pt;}
.y78{bottom:106.432000pt;}
.y55{bottom:107.872000pt;}
.y6d{bottom:109.152000pt;}
.yde{bottom:111.872000pt;}
.ya4{bottom:117.632000pt;}
.y96{bottom:128.832000pt;}
.y32{bottom:132.832000pt;}
.yc4{bottom:133.786667pt;}
.y77{bottom:133.946667pt;}
.y54{bottom:135.386667pt;}
.y6c{bottom:136.826667pt;}
.ydd{bottom:139.546667pt;}
.ya3{bottom:145.146667pt;}
.y31{bottom:153.946667pt;}
.y95{bottom:156.346667pt;}
.yc3{bottom:161.466667pt;}
.y76{bottom:161.626667pt;}
.y53{bottom:163.066667pt;}
.y6b{bottom:164.346667pt;}
.ydc{bottom:167.066667pt;}
.ya2{bottom:172.826667pt;}
.y30{bottom:175.066667pt;}
.y94{bottom:184.026667pt;}
.yc2{bottom:188.986667pt;}
.y75{bottom:189.146667pt;}
.y52{bottom:190.586667pt;}
.y6a{bottom:192.026667pt;}
.ydb{bottom:194.746667pt;}
.y2f{bottom:196.186667pt;}
.ya1{bottom:200.346667pt;}
.y93{bottom:211.546667pt;}
.yc1{bottom:216.666667pt;}
.y74{bottom:216.826667pt;}
.y2e{bottom:217.466667pt;}
.y51{bottom:218.266667pt;}
.y69{bottom:219.546667pt;}
.yda{bottom:222.266667pt;}
.ya0{bottom:228.026667pt;}
.y2d{bottom:238.586667pt;}
.y92{bottom:239.226667pt;}
.y73{bottom:240.826667pt;}
.yc0{bottom:244.186667pt;}
.y50{bottom:245.786667pt;}
.y68{bottom:247.226667pt;}
.yd9{bottom:249.946667pt;}
.y9f{bottom:255.546667pt;}
.y2c{bottom:259.706667pt;}
.y91{bottom:266.746667pt;}
.ybf{bottom:271.866667pt;}
.y4f{bottom:273.466667pt;}
.y67{bottom:274.746667pt;}
.yd8{bottom:277.466667pt;}
.y2b{bottom:280.826667pt;}
.y9e{bottom:283.226667pt;}
.yac{bottom:287.066667pt;}
.y90{bottom:294.426667pt;}
.y72{bottom:297.626667pt;}
.ybe{bottom:299.426667pt;}
.y4e{bottom:301.026667pt;}
.y2a{bottom:302.146667pt;}
.y66{bottom:302.466667pt;}
.yd7{bottom:305.186667pt;}
.y9d{bottom:310.786667pt;}
.yab{bottom:314.626667pt;}
.y8f{bottom:321.986667pt;}
.y29{bottom:323.266667pt;}
.ybd{bottom:327.106667pt;}
.y71{bottom:327.746667pt;}
.y4d{bottom:328.706667pt;}
.y65{bottom:329.986667pt;}
.yd6{bottom:332.706667pt;}
.y9c{bottom:338.466667pt;}
.yaa{bottom:342.306667pt;}
.y28{bottom:344.386667pt;}
.y8e{bottom:349.666667pt;}
.ybc{bottom:351.106667pt;}
.y70{bottom:355.906667pt;}
.y4c{bottom:356.226667pt;}
.y64{bottom:357.666667pt;}
.yd5{bottom:360.386667pt;}
.y27{bottom:365.506667pt;}
.ya9{bottom:369.826667pt;}
.y9b{bottom:373.826667pt;}
.y8d{bottom:377.186667pt;}
.y4b{bottom:383.906667pt;}
.ybb{bottom:384.386667pt;}
.y63{bottom:385.186667pt;}
.y26{bottom:386.626667pt;}
.yd4{bottom:387.906667pt;}
.ya8{bottom:397.506667pt;}
.y8c{bottom:404.866667pt;}
.y25{bottom:407.906667pt;}
.y6f{bottom:408.706667pt;}
.y4a{bottom:411.426667pt;}
.y62{bottom:412.866667pt;}
.yd3{bottom:415.586667pt;}
.y9a{bottom:415.906667pt;}
.yba{bottom:421.026667pt;}
.ya7{bottom:425.026667pt;}
.y24{bottom:429.026667pt;}
.y8b{bottom:432.386667pt;}
.y6e{bottom:436.226667pt;}
.y49{bottom:439.106667pt;}
.y61{bottom:440.386667pt;}
.yd2{bottom:443.106667pt;}
.yb9{bottom:448.706667pt;}
.y23{bottom:450.146667pt;}
.ya6{bottom:452.706667pt;}
.y99{bottom:458.146667pt;}
.y8a{bottom:460.066667pt;}
.y48{bottom:466.626667pt;}
.ydf{bottom:467.586667pt;}
.y60{bottom:468.066667pt;}
.yd1{bottom:470.786667pt;}
.y22{bottom:471.266667pt;}
.yb8{bottom:476.226667pt;}
.ya5{bottom:478.306667pt;}
.y89{bottom:487.586667pt;}
.y21{bottom:492.546667pt;}
.y47{bottom:494.306667pt;}
.y5f{bottom:495.586667pt;}
.yd0{bottom:498.306667pt;}
.y98{bottom:500.386667pt;}
.yb7{bottom:503.906667pt;}
.y20{bottom:513.666667pt;}
.y88{bottom:515.266667pt;}
.y46{bottom:521.826667pt;}
.y5e{bottom:523.266667pt;}
.ycf{bottom:525.986667pt;}
.yb6{bottom:531.426667pt;}
.y1f{bottom:534.786667pt;}
.y5d{bottom:538.813333pt;}
.y97{bottom:542.493333pt;}
.y87{bottom:542.813333pt;}
.y45{bottom:549.373333pt;}
.yce{bottom:553.533333pt;}
.y1e{bottom:555.933333pt;}
.yb5{bottom:559.133333pt;}
.y5b{bottom:559.293333pt;}
.y86{bottom:570.493333pt;}
.y44{bottom:577.053333pt;}
.y1d{bottom:577.213333pt;}
.ycd{bottom:583.133333pt;}
.y5a{bottom:584.733333pt;}
.yb4{bottom:586.653333pt;}
.y85{bottom:598.013333pt;}
.y1c{bottom:598.333333pt;}
.y43{bottom:604.573333pt;}
.ycc{bottom:613.373333pt;}
.yb3{bottom:614.333333pt;}
.y1b{bottom:619.453333pt;}
.y84{bottom:625.693333pt;}
.y42{bottom:632.253333pt;}
.y1a{bottom:640.573333pt;}
.ycb{bottom:640.893333pt;}
.yb2{bottom:641.853333pt;}
.y83{bottom:653.213333pt;}
.y41{bottom:659.773333pt;}
.y19{bottom:661.853333pt;}
.yca{bottom:668.573333pt;}
.yb1{bottom:677.373333pt;}
.y82{bottom:680.893333pt;}
.y18{bottom:682.973333pt;}
.y40{bottom:687.453333pt;}
.yc9{bottom:696.093333pt;}
.y17{bottom:704.093333pt;}
.y81{bottom:708.413333pt;}
.yb0{bottom:714.653333pt;}
.y3f{bottom:714.973333pt;}
.y16{bottom:725.213333pt;}
.yc8{bottom:725.853333pt;}
.y80{bottom:736.093333pt;}
.yaf{bottom:742.333333pt;}
.y3e{bottom:742.653333pt;}
.y15{bottom:746.493333pt;}
.yc7{bottom:755.933333pt;}
.y7f{bottom:763.613333pt;}
.y14{bottom:767.613333pt;}
.yae{bottom:769.853333pt;}
.y3d{bottom:770.173333pt;}
.yc6{bottom:781.573333pt;}
.y13{bottom:788.773333pt;}
.y7e{bottom:791.333333pt;}
.yad{bottom:795.493333pt;}
.y3c{bottom:797.893333pt;}
.y12{bottom:809.893333pt;}
.y7d{bottom:818.853333pt;}
.y3b{bottom:825.413333pt;}
.y11{bottom:831.013333pt;}
.y7c{bottom:846.533333pt;}
.y3a{bottom:853.093333pt;}
.y10{bottom:858.693333pt;}
.y7b{bottom:874.053333pt;}
.y39{bottom:880.613333pt;}
.yf{bottom:886.213333pt;}
.y7a{bottom:901.733333pt;}
.ye{bottom:906.213333pt;}
.y59{bottom:908.293333pt;}
.y38{bottom:910.373333pt;}
.yd{bottom:926.053333pt;}
.y79{bottom:931.653333pt;}
.y37{bottom:934.053333pt;}
.y58{bottom:935.813333pt;}
.yc{bottom:946.533333pt;}
.y36{bottom:955.173333pt;}
.y57{bottom:963.493333pt;}
.yb{bottom:969.733333pt;}
.y35{bottom:976.293333pt;}
.y56{bottom:991.013333pt;}
.ya{bottom:992.933333pt;}
.y34{bottom:997.573333pt;}
.y9{bottom:1016.160000pt;}
.y33{bottom:1018.720000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.hb{height:19.840000pt;}
.h5{height:24.000000pt;}
.ha{height:44.875000pt;}
.h9{height:46.218750pt;}
.h2{height:47.520000pt;}
.hc{height:52.503750pt;}
.h8{height:52.750000pt;}
.h7{height:55.343750pt;}
.h4{height:58.563750pt;}
.h6{height:64.752187pt;}
.h3{height:67.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:31.520000pt;}
.w5{width:94.592000pt;}
.wb{width:126.080000pt;}
.w9{width:142.906667pt;}
.wa{width:147.546667pt;}
.w8{width:186.746667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w2{width:443.266667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.680000pt;}
.x26{left:11.680000pt;}
.x21{left:12.960000pt;}
.x28{left:20.480000pt;}
.x25{left:22.400000pt;}
.x23{left:23.360000pt;}
.x2a{left:27.680000pt;}
.x27{left:38.554667pt;}
.x9{left:39.840000pt;}
.x29{left:42.560000pt;}
.x1f{left:44.314667pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x1c{left:87.712000pt;}
.x5{left:94.591988pt;}
.x18{left:101.311988pt;}
.xb{left:111.871988pt;}
.xf{left:113.631988pt;}
.x40{left:118.591988pt;}
.x1e{left:119.872000pt;}
.xc{left:125.631988pt;}
.x16{left:128.031988pt;}
.x13{left:141.786655pt;}
.x3c{left:166.106655pt;}
.x2{left:175.386667pt;}
.x15{left:179.386655pt;}
.x19{left:187.066655pt;}
.xd{left:203.546655pt;}
.x34{left:206.266655pt;}
.x14{left:212.186655pt;}
.x30{left:216.986655pt;}
.x10{left:219.546655pt;}
.x44{left:236.186655pt;}
.x2c{left:238.746655pt;}
.x1{left:247.266667pt;}
.x3e{left:251.746655pt;}
.x46{left:253.026655pt;}
.x32{left:256.226655pt;}
.x47{left:261.666655pt;}
.x48{left:263.266655pt;}
.x7{left:264.706667pt;}
.x12{left:272.386655pt;}
.x45{left:276.386655pt;}
.x41{left:297.026655pt;}
.x1b{left:306.306655pt;}
.x20{left:307.266667pt;}
.x11{left:313.186655pt;}
.x3a{left:315.106655pt;}
.x39{left:321.986655pt;}
.x2b{left:328.706655pt;}
.x17{left:345.026655pt;}
.x31{left:345.986655pt;}
.x8{left:347.426667pt;}
.x36{left:351.106655pt;}
.x37{left:366.306655pt;}
.x33{left:367.746655pt;}
.x4a{left:369.026655pt;}
.x2f{left:372.546655pt;}
.x38{left:373.826655pt;}
.x3f{left:380.706655pt;}
.x35{left:388.546655pt;}
.xe{left:406.306655pt;}
.x2e{left:439.613322pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x22{left:450.813333pt;}
.x43{left:482.333322pt;}
.x3d{left:578.973322pt;}
.x49{left:593.413322pt;}
.x24{left:599.013333pt;}
.x2d{left:622.533322pt;}
.x3b{left:653.413322pt;}
.x42{left:659.493322pt;}
.x1a{left:667.013322pt;}
}




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