
    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_6ba14503fc6c2fc8d7774e36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e442f4fadc4096954643c5ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_01769c69122ec2c71f9f4eb6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_09779c2dc79d385df728cf92.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8422decaeee107bbce82e929.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7bd5d25fdc4c536eab45c22c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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_51b523309796c690e1233a54.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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;}
.lsd{letter-spacing:-2.520000px;}
.ls6{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.229800px;}
.ls5{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.091200px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.720000px;}
.lsa{letter-spacing:14.400000px;}
.ls3{letter-spacing:42.077280px;}
.ls7{letter-spacing:42.797280px;}
.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;}
}
.ws8{word-spacing:-21.641760px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-19.070784px;}
.ws9{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.822200px;}
.ws5{word-spacing:-12.236544px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:239.393088px;}
._21{margin-left:-6.328800px;}
._15{margin-left:-5.046720px;}
._14{margin-left:-3.920640px;}
._9{margin-left:-2.808000px;}
._0{margin-left:-1.457280px;}
._3{width:1.340640px;}
._8{width:2.403840px;}
._7{width:3.531360px;}
._c{width:4.964640px;}
._17{width:6.552000px;}
._16{width:7.632000px;}
._18{width:8.700000px;}
._19{width:10.224000px;}
._11{width:11.448000px;}
._12{width:12.960000px;}
._e{width:14.400000px;}
._1b{width:15.663840px;}
._d{width:16.704000px;}
._1a{width:19.848000px;}
._1c{width:21.435360px;}
._1e{width:22.824000px;}
._f{width:25.056000px;}
._10{width:26.124000px;}
._2d{width:28.008000px;}
._a{width:29.376000px;}
._b{width:30.384000px;}
._1{width:32.462640px;}
._2{width:33.707520px;}
._5{width:42.325920px;}
._6{width:43.762320px;}
._4{width:49.220640px;}
._2a{width:65.808000px;}
._2b{width:67.066560px;}
._2f{width:104.328000px;}
._23{width:132.065760px;}
._2e{width:136.008000px;}
._28{width:155.264640px;}
._1d{width:176.376000px;}
._22{width:233.118432px;}
._24{width:292.248000px;}
._25{width:293.355360px;}
._26{width:304.488000px;}
._27{width:305.856000px;}
._2c{width:342.164640px;}
._20{width:428.310000px;}
._13{width:435.632640px;}
._29{width:440.484000px;}
._1f{width:441.948000px;}
.fc5{color:transparent;}
.fc3{color:rgb(217,217,217);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(17,17,17);}
.fc4{color:rgb(255,192,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:81.360000px;}
.fs3{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs2{font-size:95.760000px;}
.fs9{font-size:100.800000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:0.750000px;}
.ybe{bottom:40.755000px;}
.yaf{bottom:49.935000px;}
.ybd{bottom:66.060000px;}
.yad{bottom:77.550000px;}
.ydc{bottom:78.150000px;}
.y5{bottom:82.116000px;}
.ybc{bottom:91.365000px;}
.ya7{bottom:95.115000px;}
.y4{bottom:102.636000px;}
.yd5{bottom:105.480000px;}
.ybb{bottom:116.670000px;}
.ya8{bottom:121.035000px;}
.y3{bottom:121.536000px;}
.yd6{bottom:126.255000px;}
.y2{bottom:140.436000px;}
.yba{bottom:142.020000px;}
.ya9{bottom:146.955000px;}
.yd7{bottom:147.030000px;}
.yb9{bottom:167.325000px;}
.y7b{bottom:167.610000px;}
.yd8{bottom:167.835000px;}
.yaa{bottom:172.905000px;}
.y9c{bottom:173.910000px;}
.y86{bottom:175.350000px;}
.yd9{bottom:188.610000px;}
.yd3{bottom:189.210000px;}
.y67{bottom:190.290000px;}
.y2b{bottom:194.970000px;}
.yb5{bottom:197.250000px;}
.y7a{bottom:197.310000px;}
.yf8{bottom:198.750000px;}
.yab{bottom:198.825000px;}
.y9b{bottom:200.550000px;}
.y85{bottom:206.310000px;}
.yda{bottom:209.370000px;}
.y49{bottom:212.790000px;}
.yb2{bottom:214.770000px;}
.yd2{bottom:220.170000px;}
.y66{bottom:221.250000px;}
.yac{bottom:224.745000px;}
.y2a{bottom:224.850000px;}
.y79{bottom:228.450000px;}
.yf7{bottom:229.710000px;}
.ydb{bottom:230.145000px;}
.y84{bottom:232.590000px;}
.y9a{bottom:237.630000px;}
.yb3{bottom:240.915000px;}
.y48{bottom:243.930000px;}
.yb0{bottom:246.750000px;}
.y113{bottom:249.150000px;}
.yd1{bottom:251.310000px;}
.y65{bottom:252.390000px;}
.yae{bottom:253.545000px;}
.y83{bottom:254.010000px;}
.y29{bottom:254.730000px;}
.y78{bottom:259.410000px;}
.yf6{bottom:260.850000px;}
.yb4{bottom:267.045000px;}
.y99{bottom:268.770000px;}
.ydd{bottom:270.075000px;}
.y47{bottom:274.890000px;}
.y28{bottom:275.430000px;}
.y112{bottom:280.110000px;}
.yd0{bottom:282.270000px;}
.y64{bottom:283.350000px;}
.y77{bottom:290.550000px;}
.yf5{bottom:291.810000px;}
.yb8{bottom:296.025000px;}
.y27{bottom:296.130000px;}
.yde{bottom:299.445000px;}
.y98{bottom:299.730000px;}
.ya5{bottom:300.810000px;}
.y46{bottom:306.030000px;}
.y111{bottom:311.250000px;}
.y63{bottom:314.490000px;}
.y26{bottom:316.830000px;}
.ycf{bottom:319.350000px;}
.y76{bottom:321.510000px;}
.yf4{bottom:322.950000px;}
.ya4{bottom:327.450000px;}
.y97{bottom:330.870000px;}
.y45{bottom:337.035000px;}
.y25{bottom:337.575000px;}
.y110{bottom:342.255000px;}
.y62{bottom:345.495000px;}
.yce{bottom:350.535000px;}
.y75{bottom:352.695000px;}
.yf3{bottom:353.955000px;}
.ya3{bottom:354.135000px;}
.y24{bottom:358.275000px;}
.y96{bottom:361.875000px;}
.y44{bottom:368.175000px;}
.y10f{bottom:373.395000px;}
.y61{bottom:376.635000px;}
.y23{bottom:378.975000px;}
.ya2{bottom:380.955000px;}
.ycd{bottom:381.495000px;}
.y74{bottom:383.655000px;}
.yf2{bottom:385.095000px;}
.y95{bottom:393.015000px;}
.y43{bottom:399.135000px;}
.y22{bottom:399.675000px;}
.ya1{bottom:403.635000px;}
.yb1{bottom:404.280000px;}
.y10e{bottom:404.355000px;}
.y60{bottom:407.595000px;}
.ycc{bottom:412.635000px;}
.yf1{bottom:416.055000px;}
.y21{bottom:420.375000px;}
.y73{bottom:420.735000px;}
.y94{bottom:423.975000px;}
.y42{bottom:430.275000px;}
.y10d{bottom:435.495000px;}
.y5f{bottom:438.735000px;}
.y20{bottom:441.075000px;}
.ycb{bottom:443.595000px;}
.yf0{bottom:447.195000px;}
.y72{bottom:451.875000px;}
.y93{bottom:455.115000px;}
.y41{bottom:461.235000px;}
.y10c{bottom:466.455000px;}
.y1f{bottom:467.535000px;}
.y5e{bottom:469.695000px;}
.yca{bottom:480.675000px;}
.y71{bottom:482.835000px;}
.y92{bottom:486.075000px;}
.y40{bottom:492.375000px;}
.y1e{bottom:494.355000px;}
.y10b{bottom:497.595000px;}
.yef{bottom:499.215000px;}
.y5d{bottom:500.835000px;}
.yc9{bottom:511.815000px;}
.y70{bottom:513.975000px;}
.y1d{bottom:515.055000px;}
.y91{bottom:517.215000px;}
.y3f{bottom:523.335000px;}
.y10a{bottom:528.555000px;}
.yee{bottom:530.175000px;}
.y5c{bottom:531.795000px;}
.yc8{bottom:542.775000px;}
.y1c{bottom:544.935000px;}
.y90{bottom:548.175000px;}
.y3e{bottom:554.475000px;}
.y109{bottom:559.695000px;}
.yed{bottom:561.315000px;}
.y5b{bottom:562.935000px;}
.y1b{bottom:568.695000px;}
.yc7{bottom:573.915000px;}
.y6f{bottom:576.075000px;}
.y8f{bottom:579.315000px;}
.y3d{bottom:585.435000px;}
.y108{bottom:590.655000px;}
.y82{bottom:592.095000px;}
.y1a{bottom:592.635000px;}
.y5a{bottom:593.895000px;}
.yc6{bottom:604.905000px;}
.y6e{bottom:607.065000px;}
.y8e{bottom:610.305000px;}
.yec{bottom:613.365000px;}
.y19{bottom:616.425000px;}
.y3c{bottom:616.605000px;}
.y107{bottom:621.645000px;}
.y59{bottom:625.065000px;}
.y81{bottom:627.945000px;}
.yc5{bottom:635.865000px;}
.y8d{bottom:636.945000px;}
.y6d{bottom:638.205000px;}
.y18{bottom:640.185000px;}
.yeb{bottom:644.325000px;}
.y3b{bottom:647.565000px;}
.y106{bottom:652.785000px;}
.y58{bottom:656.025000px;}
.y80{bottom:658.905000px;}
.y17{bottom:663.945000px;}
.y8c{bottom:664.125000px;}
.yc4{bottom:667.005000px;}
.y6c{bottom:669.165000px;}
.yea{bottom:675.465000px;}
.y3a{bottom:678.705000px;}
.y105{bottom:683.745000px;}
.y57{bottom:687.165000px;}
.y16{bottom:687.705000px;}
.y7f{bottom:690.045000px;}
.yc3{bottom:693.645000px;}
.y6b{bottom:695.805000px;}
.y8b{bottom:696.885000px;}
.yb6{bottom:700.560000px;}
.ye9{bottom:702.105000px;}
.y39{bottom:709.665000px;}
.y15{bottom:711.645000px;}
.y104{bottom:714.885000px;}
.y7e{bottom:715.965000px;}
.y56{bottom:718.125000px;}
.yc2{bottom:721.005000px;}
.y6a{bottom:722.085000px;}
.y8a{bottom:723.165000px;}
.ye8{bottom:732.345000px;}
.y14{bottom:735.405000px;}
.y7d{bottom:739.545000px;}
.y38{bottom:740.805000px;}
.y89{bottom:744.405000px;}
.y103{bottom:745.845000px;}
.y55{bottom:749.265000px;}
.yc1{bottom:750.525000px;}
.y69{bottom:753.945000px;}
.y13{bottom:762.045000px;}
.ye7{bottom:764.925000px;}
.y7c{bottom:765.285000px;}
.ya0{bottom:771.045000px;}
.y37{bottom:771.765000px;}
.y102{bottom:776.985000px;}
.yc0{bottom:777.165000px;}
.y54{bottom:786.345000px;}
.y12{bottom:788.865000px;}
.y9f{bottom:797.865000px;}
.ybf{bottom:799.845000px;}
.yd4{bottom:800.640000px;}
.ye6{bottom:802.005000px;}
.y36{bottom:802.905000px;}
.y101{bottom:807.945000px;}
.y11{bottom:809.565000px;}
.y53{bottom:817.305000px;}
.y9e{bottom:824.505000px;}
.y10{bottom:830.265000px;}
.ye5{bottom:833.145000px;}
.y35{bottom:833.865000px;}
.y100{bottom:839.085000px;}
.y9d{bottom:847.185000px;}
.ya6{bottom:847.440000px;}
.y52{bottom:848.445000px;}
.yf{bottom:856.905000px;}
.ye4{bottom:864.105000px;}
.y34{bottom:865.005000px;}
.yff{bottom:870.045000px;}
.y51{bottom:879.450000px;}
.ye{bottom:883.590000px;}
.ye3{bottom:895.290000px;}
.y33{bottom:896.010000px;}
.yfe{bottom:901.230000px;}
.yd{bottom:904.290000px;}
.y50{bottom:910.410000px;}
.ye2{bottom:926.250000px;}
.y32{bottom:927.150000px;}
.yc{bottom:931.650000px;}
.yfd{bottom:932.190000px;}
.y4f{bottom:953.610000px;}
.ye1{bottom:957.210000px;}
.y31{bottom:958.110000px;}
.yb{bottom:962.790000px;}
.yfc{bottom:963.330000px;}
.y4e{bottom:980.250000px;}
.ye0{bottom:988.350000px;}
.y30{bottom:989.250000px;}
.ya{bottom:990.510000px;}
.yfb{bottom:994.290000px;}
.y4d{bottom:1007.430000px;}
.ydf{bottom:1019.310000px;}
.y2f{bottom:1020.210000px;}
.y88{bottom:1020.570000px;}
.y9{bottom:1023.990000px;}
.yfa{bottom:1025.430000px;}
.y4c{bottom:1050.450000px;}
.y2e{bottom:1051.350000px;}
.y87{bottom:1056.210000px;}
.yf9{bottom:1056.390000px;}
.y8{bottom:1057.650000px;}
.y2d{bottom:1082.310000px;}
.y7{bottom:1085.370000px;}
.y4b{bottom:1087.530000px;}
.y6{bottom:1112.910000px;}
.y2c{bottom:1115.610000px;}
.y4a{bottom:1118.490000px;}
.y68{bottom:1119.750000px;}
.y1{bottom:1233.900000px;}
.h15{height:12.960000px;}
.hd{height:43.506914px;}
.hc{height:48.418594px;}
.h9{height:48.761719px;}
.h8{height:52.417969px;}
.h7{height:52.628906px;}
.hf{height:53.709961px;}
.h10{height:53.853187px;}
.h12{height:55.291992px;}
.h3{height:59.383125px;}
.h6{height:63.949219px;}
.h2{height:64.546875px;}
.h5{height:70.995234px;}
.ha{height:72.937969px;}
.h16{height:73.722656px;}
.hb{height:74.820586px;}
.h18{height:83.787539px;}
.h4{height:85.052461px;}
.h11{height:86.402953px;}
.h13{height:98.051133px;}
.h19{height:103.211719px;}
.he{height:287.820000px;}
.h14{height:330.300000px;}
.h17{height:334.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:19.620000px;}
.w4{width:541.800000px;}
.w6{width:547.200000px;}
.w3{width:565.200000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:20.010000px;}
.x29{left:30.675000px;}
.x2b{left:34.890000px;}
.x23{left:52.485000px;}
.x20{left:66.135000px;}
.x1e{left:68.610000px;}
.x1d{left:75.450000px;}
.x24{left:100.470000px;}
.x1f{left:120.270000px;}
.x27{left:124.590000px;}
.x2{left:127.655987px;}
.x2c{left:138.315000px;}
.x17{left:154.649987px;}
.x26{left:161.175000px;}
.x9{left:170.129987px;}
.x6{left:174.269987px;}
.xb{left:180.749987px;}
.x22{left:186.915000px;}
.x4{left:189.929987px;}
.xa{left:212.789987px;}
.x25{left:213.840000px;}
.x21{left:222.945000px;}
.x1c{left:262.829987px;}
.x7{left:278.894987px;}
.xe{left:286.454987px;}
.x16{left:288.434987px;}
.x18{left:303.194987px;}
.x5{left:308.594987px;}
.x11{left:311.834987px;}
.x1a{left:313.634987px;}
.x14{left:320.834987px;}
.xf{left:360.254987px;}
.x12{left:366.374987px;}
.xc{left:370.514987px;}
.x8{left:467.924987px;}
.x1{left:489.164987px;}
.x13{left:602.924987px;}
.x10{left:626.324987px;}
.xd{left:638.024987px;}
.x15{left:694.049987px;}
.x1b{left:712.409987px;}
.x28{left:717.449987px;}
.x19{left:735.449987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-2.240000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.204267pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.081067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsa{letter-spacing:12.800000pt;}
.ls3{letter-spacing:37.402027pt;}
.ls7{letter-spacing:38.042027pt;}
.ws8{word-spacing:-19.237120pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.951808pt;}
.ws9{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.953067pt;}
.ws5{word-spacing:-10.876928pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:212.793856pt;}
._21{margin-left:-5.625600pt;}
._15{margin-left:-4.485973pt;}
._14{margin-left:-3.485013pt;}
._9{margin-left:-2.496000pt;}
._0{margin-left:-1.295360pt;}
._3{width:1.191680pt;}
._8{width:2.136747pt;}
._7{width:3.138987pt;}
._c{width:4.413013pt;}
._17{width:5.824000pt;}
._16{width:6.784000pt;}
._18{width:7.733333pt;}
._19{width:9.088000pt;}
._11{width:10.176000pt;}
._12{width:11.520000pt;}
._e{width:12.800000pt;}
._1b{width:13.923413pt;}
._d{width:14.848000pt;}
._1a{width:17.642667pt;}
._1c{width:19.053653pt;}
._1e{width:20.288000pt;}
._f{width:22.272000pt;}
._10{width:23.221333pt;}
._2d{width:24.896000pt;}
._a{width:26.112000pt;}
._b{width:27.008000pt;}
._1{width:28.855680pt;}
._2{width:29.962240pt;}
._5{width:37.623040pt;}
._6{width:38.899840pt;}
._4{width:43.751680pt;}
._2a{width:58.496000pt;}
._2b{width:59.614720pt;}
._2f{width:92.736000pt;}
._23{width:117.391787pt;}
._2e{width:120.896000pt;}
._28{width:138.013013pt;}
._1d{width:156.778667pt;}
._22{width:207.216384pt;}
._24{width:259.776000pt;}
._25{width:260.760320pt;}
._26{width:270.656000pt;}
._27{width:271.872000pt;}
._2c{width:304.146347pt;}
._20{width:380.720000pt;}
._13{width:387.229013pt;}
._29{width:391.541333pt;}
._1f{width:392.842667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:72.320000pt;}
.fs3{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs2{font-size:85.120000pt;}
.fs9{font-size:89.600000pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:0.666667pt;}
.ybe{bottom:36.226667pt;}
.yaf{bottom:44.386667pt;}
.ybd{bottom:58.720000pt;}
.yad{bottom:68.933333pt;}
.ydc{bottom:69.466667pt;}
.y5{bottom:72.992000pt;}
.ybc{bottom:81.213333pt;}
.ya7{bottom:84.546667pt;}
.y4{bottom:91.232000pt;}
.yd5{bottom:93.760000pt;}
.ybb{bottom:103.706667pt;}
.ya8{bottom:107.586667pt;}
.y3{bottom:108.032000pt;}
.yd6{bottom:112.226667pt;}
.y2{bottom:124.832000pt;}
.yba{bottom:126.240000pt;}
.ya9{bottom:130.626667pt;}
.yd7{bottom:130.693333pt;}
.yb9{bottom:148.733333pt;}
.y7b{bottom:148.986667pt;}
.yd8{bottom:149.186667pt;}
.yaa{bottom:153.693333pt;}
.y9c{bottom:154.586667pt;}
.y86{bottom:155.866667pt;}
.yd9{bottom:167.653333pt;}
.yd3{bottom:168.186667pt;}
.y67{bottom:169.146667pt;}
.y2b{bottom:173.306667pt;}
.yb5{bottom:175.333333pt;}
.y7a{bottom:175.386667pt;}
.yf8{bottom:176.666667pt;}
.yab{bottom:176.733333pt;}
.y9b{bottom:178.266667pt;}
.y85{bottom:183.386667pt;}
.yda{bottom:186.106667pt;}
.y49{bottom:189.146667pt;}
.yb2{bottom:190.906667pt;}
.yd2{bottom:195.706667pt;}
.y66{bottom:196.666667pt;}
.yac{bottom:199.773333pt;}
.y2a{bottom:199.866667pt;}
.y79{bottom:203.066667pt;}
.yf7{bottom:204.186667pt;}
.ydb{bottom:204.573333pt;}
.y84{bottom:206.746667pt;}
.y9a{bottom:211.226667pt;}
.yb3{bottom:214.146667pt;}
.y48{bottom:216.826667pt;}
.yb0{bottom:219.333333pt;}
.y113{bottom:221.466667pt;}
.yd1{bottom:223.386667pt;}
.y65{bottom:224.346667pt;}
.yae{bottom:225.373333pt;}
.y83{bottom:225.786667pt;}
.y29{bottom:226.426667pt;}
.y78{bottom:230.586667pt;}
.yf6{bottom:231.866667pt;}
.yb4{bottom:237.373333pt;}
.y99{bottom:238.906667pt;}
.ydd{bottom:240.066667pt;}
.y47{bottom:244.346667pt;}
.y28{bottom:244.826667pt;}
.y112{bottom:248.986667pt;}
.yd0{bottom:250.906667pt;}
.y64{bottom:251.866667pt;}
.y77{bottom:258.266667pt;}
.yf5{bottom:259.386667pt;}
.yb8{bottom:263.133333pt;}
.y27{bottom:263.226667pt;}
.yde{bottom:266.173333pt;}
.y98{bottom:266.426667pt;}
.ya5{bottom:267.386667pt;}
.y46{bottom:272.026667pt;}
.y111{bottom:276.666667pt;}
.y63{bottom:279.546667pt;}
.y26{bottom:281.626667pt;}
.ycf{bottom:283.866667pt;}
.y76{bottom:285.786667pt;}
.yf4{bottom:287.066667pt;}
.ya4{bottom:291.066667pt;}
.y97{bottom:294.106667pt;}
.y45{bottom:299.586667pt;}
.y25{bottom:300.066667pt;}
.y110{bottom:304.226667pt;}
.y62{bottom:307.106667pt;}
.yce{bottom:311.586667pt;}
.y75{bottom:313.506667pt;}
.yf3{bottom:314.626667pt;}
.ya3{bottom:314.786667pt;}
.y24{bottom:318.466667pt;}
.y96{bottom:321.666667pt;}
.y44{bottom:327.266667pt;}
.y10f{bottom:331.906667pt;}
.y61{bottom:334.786667pt;}
.y23{bottom:336.866667pt;}
.ya2{bottom:338.626667pt;}
.ycd{bottom:339.106667pt;}
.y74{bottom:341.026667pt;}
.yf2{bottom:342.306667pt;}
.y95{bottom:349.346667pt;}
.y43{bottom:354.786667pt;}
.y22{bottom:355.266667pt;}
.ya1{bottom:358.786667pt;}
.yb1{bottom:359.360000pt;}
.y10e{bottom:359.426667pt;}
.y60{bottom:362.306667pt;}
.ycc{bottom:366.786667pt;}
.yf1{bottom:369.826667pt;}
.y21{bottom:373.666667pt;}
.y73{bottom:373.986667pt;}
.y94{bottom:376.866667pt;}
.y42{bottom:382.466667pt;}
.y10d{bottom:387.106667pt;}
.y5f{bottom:389.986667pt;}
.y20{bottom:392.066667pt;}
.ycb{bottom:394.306667pt;}
.yf0{bottom:397.506667pt;}
.y72{bottom:401.666667pt;}
.y93{bottom:404.546667pt;}
.y41{bottom:409.986667pt;}
.y10c{bottom:414.626667pt;}
.y1f{bottom:415.586667pt;}
.y5e{bottom:417.506667pt;}
.yca{bottom:427.266667pt;}
.y71{bottom:429.186667pt;}
.y92{bottom:432.066667pt;}
.y40{bottom:437.666667pt;}
.y1e{bottom:439.426667pt;}
.y10b{bottom:442.306667pt;}
.yef{bottom:443.746667pt;}
.y5d{bottom:445.186667pt;}
.yc9{bottom:454.946667pt;}
.y70{bottom:456.866667pt;}
.y1d{bottom:457.826667pt;}
.y91{bottom:459.746667pt;}
.y3f{bottom:465.186667pt;}
.y10a{bottom:469.826667pt;}
.yee{bottom:471.266667pt;}
.y5c{bottom:472.706667pt;}
.yc8{bottom:482.466667pt;}
.y1c{bottom:484.386667pt;}
.y90{bottom:487.266667pt;}
.y3e{bottom:492.866667pt;}
.y109{bottom:497.506667pt;}
.yed{bottom:498.946667pt;}
.y5b{bottom:500.386667pt;}
.y1b{bottom:505.506667pt;}
.yc7{bottom:510.146667pt;}
.y6f{bottom:512.066667pt;}
.y8f{bottom:514.946667pt;}
.y3d{bottom:520.386667pt;}
.y108{bottom:525.026667pt;}
.y82{bottom:526.306667pt;}
.y1a{bottom:526.786667pt;}
.y5a{bottom:527.906667pt;}
.yc6{bottom:537.693333pt;}
.y6e{bottom:539.613333pt;}
.y8e{bottom:542.493333pt;}
.yec{bottom:545.213333pt;}
.y19{bottom:547.933333pt;}
.y3c{bottom:548.093333pt;}
.y107{bottom:552.573333pt;}
.y59{bottom:555.613333pt;}
.y81{bottom:558.173333pt;}
.yc5{bottom:565.213333pt;}
.y8d{bottom:566.173333pt;}
.y6d{bottom:567.293333pt;}
.y18{bottom:569.053333pt;}
.yeb{bottom:572.733333pt;}
.y3b{bottom:575.613333pt;}
.y106{bottom:580.253333pt;}
.y58{bottom:583.133333pt;}
.y80{bottom:585.693333pt;}
.y17{bottom:590.173333pt;}
.y8c{bottom:590.333333pt;}
.yc4{bottom:592.893333pt;}
.y6c{bottom:594.813333pt;}
.yea{bottom:600.413333pt;}
.y3a{bottom:603.293333pt;}
.y105{bottom:607.773333pt;}
.y57{bottom:610.813333pt;}
.y16{bottom:611.293333pt;}
.y7f{bottom:613.373333pt;}
.yc3{bottom:616.573333pt;}
.y6b{bottom:618.493333pt;}
.y8b{bottom:619.453333pt;}
.yb6{bottom:622.720000pt;}
.ye9{bottom:624.093333pt;}
.y39{bottom:630.813333pt;}
.y15{bottom:632.573333pt;}
.y104{bottom:635.453333pt;}
.y7e{bottom:636.413333pt;}
.y56{bottom:638.333333pt;}
.yc2{bottom:640.893333pt;}
.y6a{bottom:641.853333pt;}
.y8a{bottom:642.813333pt;}
.ye8{bottom:650.973333pt;}
.y14{bottom:653.693333pt;}
.y7d{bottom:657.373333pt;}
.y38{bottom:658.493333pt;}
.y89{bottom:661.693333pt;}
.y103{bottom:662.973333pt;}
.y55{bottom:666.013333pt;}
.yc1{bottom:667.133333pt;}
.y69{bottom:670.173333pt;}
.y13{bottom:677.373333pt;}
.ye7{bottom:679.933333pt;}
.y7c{bottom:680.253333pt;}
.ya0{bottom:685.373333pt;}
.y37{bottom:686.013333pt;}
.y102{bottom:690.653333pt;}
.yc0{bottom:690.813333pt;}
.y54{bottom:698.973333pt;}
.y12{bottom:701.213333pt;}
.y9f{bottom:709.213333pt;}
.ybf{bottom:710.973333pt;}
.yd4{bottom:711.680000pt;}
.ye6{bottom:712.893333pt;}
.y36{bottom:713.693333pt;}
.y101{bottom:718.173333pt;}
.y11{bottom:719.613333pt;}
.y53{bottom:726.493333pt;}
.y9e{bottom:732.893333pt;}
.y10{bottom:738.013333pt;}
.ye5{bottom:740.573333pt;}
.y35{bottom:741.213333pt;}
.y100{bottom:745.853333pt;}
.y9d{bottom:753.053333pt;}
.ya6{bottom:753.280000pt;}
.y52{bottom:754.173333pt;}
.yf{bottom:761.693333pt;}
.ye4{bottom:768.093333pt;}
.y34{bottom:768.893333pt;}
.yff{bottom:773.373333pt;}
.y51{bottom:781.733333pt;}
.ye{bottom:785.413333pt;}
.ye3{bottom:795.813333pt;}
.y33{bottom:796.453333pt;}
.yfe{bottom:801.093333pt;}
.yd{bottom:803.813333pt;}
.y50{bottom:809.253333pt;}
.ye2{bottom:823.333333pt;}
.y32{bottom:824.133333pt;}
.yc{bottom:828.133333pt;}
.yfd{bottom:828.613333pt;}
.y4f{bottom:847.653333pt;}
.ye1{bottom:850.853333pt;}
.y31{bottom:851.653333pt;}
.yb{bottom:855.813333pt;}
.yfc{bottom:856.293333pt;}
.y4e{bottom:871.333333pt;}
.ye0{bottom:878.533333pt;}
.y30{bottom:879.333333pt;}
.ya{bottom:880.453333pt;}
.yfb{bottom:883.813333pt;}
.y4d{bottom:895.493333pt;}
.ydf{bottom:906.053333pt;}
.y2f{bottom:906.853333pt;}
.y88{bottom:907.173333pt;}
.y9{bottom:910.213333pt;}
.yfa{bottom:911.493333pt;}
.y4c{bottom:933.733333pt;}
.y2e{bottom:934.533333pt;}
.y87{bottom:938.853333pt;}
.yf9{bottom:939.013333pt;}
.y8{bottom:940.133333pt;}
.y2d{bottom:962.053333pt;}
.y7{bottom:964.773333pt;}
.y4b{bottom:966.693333pt;}
.y6{bottom:989.253333pt;}
.y2c{bottom:991.653333pt;}
.y4a{bottom:994.213333pt;}
.y68{bottom:995.333333pt;}
.y1{bottom:1096.800000pt;}
.h15{height:11.520000pt;}
.hd{height:38.672812pt;}
.hc{height:43.038750pt;}
.h9{height:43.343750pt;}
.h8{height:46.593750pt;}
.h7{height:46.781250pt;}
.hf{height:47.742188pt;}
.h10{height:47.869500pt;}
.h12{height:49.148438pt;}
.h3{height:52.785000pt;}
.h6{height:56.843750pt;}
.h2{height:57.375000pt;}
.h5{height:63.106875pt;}
.ha{height:64.833750pt;}
.h16{height:65.531250pt;}
.hb{height:66.507188pt;}
.h18{height:74.477812pt;}
.h4{height:75.602187pt;}
.h11{height:76.802625pt;}
.h13{height:87.156562pt;}
.h19{height:91.743750pt;}
.he{height:255.840000pt;}
.h14{height:293.600000pt;}
.h17{height:297.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:17.440000pt;}
.w4{width:481.600000pt;}
.w6{width:486.400000pt;}
.w3{width:502.400000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:17.786667pt;}
.x29{left:27.266667pt;}
.x2b{left:31.013333pt;}
.x23{left:46.653333pt;}
.x20{left:58.786667pt;}
.x1e{left:60.986667pt;}
.x1d{left:67.066667pt;}
.x24{left:89.306667pt;}
.x1f{left:106.906667pt;}
.x27{left:110.746667pt;}
.x2{left:113.471988pt;}
.x2c{left:122.946667pt;}
.x17{left:137.466655pt;}
.x26{left:143.266667pt;}
.x9{left:151.226655pt;}
.x6{left:154.906655pt;}
.xb{left:160.666655pt;}
.x22{left:166.146667pt;}
.x4{left:168.826655pt;}
.xa{left:189.146655pt;}
.x25{left:190.080000pt;}
.x21{left:198.173333pt;}
.x1c{left:233.626655pt;}
.x7{left:247.906655pt;}
.xe{left:254.626655pt;}
.x16{left:256.386655pt;}
.x18{left:269.506655pt;}
.x5{left:274.306655pt;}
.x11{left:277.186655pt;}
.x1a{left:278.786655pt;}
.x14{left:285.186655pt;}
.xf{left:320.226655pt;}
.x12{left:325.666655pt;}
.xc{left:329.346655pt;}
.x8{left:415.933322pt;}
.x1{left:434.813322pt;}
.x13{left:535.933322pt;}
.x10{left:556.733322pt;}
.xd{left:567.133322pt;}
.x15{left:616.933322pt;}
.x1b{left:633.253322pt;}
.x28{left:637.733322pt;}
.x19{left:653.733322pt;}
.x3{left:718.373322pt;}
}




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