
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f7b9e6aa5f6f1656d391728.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_ceb1ff7495cb433e184bc430.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_bb7f48645db21b25c3289389.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_c3fd4e336eaad2e586672d73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_82c5fd15cecfa5f788d58936.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_c14c879f9514abcd6968e43c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_99957711f5eaaac678aad6f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_8547bf6c0cc46674f6a3993e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.226402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226402,0.000000,0.000000,0.250000,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);}
.m6{transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.370200px;}
.lsa{letter-spacing:-0.326400px;}
.ls10{letter-spacing:-0.039000px;}
.ls14{letter-spacing:-0.038880px;}
.ls17{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls7{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.155400px;}
.ls1{letter-spacing:0.168480px;}
.lsc{letter-spacing:0.172800px;}
.lse{letter-spacing:0.195000px;}
.ls4{letter-spacing:0.211680px;}
.lsf{letter-spacing:0.211800px;}
.ls13{letter-spacing:0.319680px;}
.ls5{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.385800px;}
.ls12{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.732960px;}
.ls16{letter-spacing:47.466720px;}
.ls15{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-14.958600px;}
.ws5{word-spacing:-14.572800px;}
.ws8{word-spacing:-13.359000px;}
.ws7{word-spacing:-13.342200px;}
.wsf{word-spacing:-13.302600px;}
.ws3{word-spacing:-13.160400px;}
.wsb{word-spacing:-13.160160px;}
.ws4{word-spacing:-13.147200px;}
.wse{word-spacing:-13.111200px;}
.wsd{word-spacing:-13.108320px;}
.ws9{word-spacing:-13.108200px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.wsa{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._7{margin-left:-3.824401px;}
._6{margin-left:-2.390400px;}
._0{margin-left:-1.159200px;}
._1{width:1.056000px;}
._9{width:2.251920px;}
._3{width:3.279840px;}
._8{width:5.019601px;}
._d{width:6.334799px;}
._5{width:8.326200px;}
._4{width:9.561600px;}
._2{width:10.609032px;}
._a{width:11.940168px;}
._e{width:14.293681px;}
._c{width:15.418200px;}
._b{width:16.434000px;}
._f{width:17.529360px;}
._11{width:69.012000px;}
._10{width:70.337520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:60.026653px;}
.fs9{font-size:60.029440px;}
.fs8{font-size:60.029705px;}
.fsb{font-size:60.046820px;}
.fsa{font-size:60.057370px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y96{bottom:-2.295916px;}
.y0{bottom:0.000000px;}
.y81{bottom:0.360000px;}
.y72{bottom:1.440000px;}
.y7f{bottom:1.800000px;}
.yac{bottom:2.121096px;}
.ya0{bottom:2.151307px;}
.y77{bottom:2.160000px;}
.y64{bottom:2.700000px;}
.y8e{bottom:3.870860px;}
.y9b{bottom:4.077879px;}
.y67{bottom:5.400000px;}
.y60{bottom:5.940000px;}
.y5c{bottom:7.200000px;}
.y65{bottom:8.100000px;}
.y6e{bottom:8.820000px;}
.y5e{bottom:11.340000px;}
.y69{bottom:13.500000px;}
.y2{bottom:73.296000px;}
.y2a{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.yaa{bottom:112.716000px;}
.y94{bottom:118.476000px;}
.y49{bottom:124.416000px;}
.ya9{bottom:130.356000px;}
.yce{bottom:136.476000px;}
.y6c{bottom:137.916000px;}
.y48{bottom:142.056000px;}
.y99{bottom:146.016000px;}
.y75{bottom:147.276000px;}
.ya8{bottom:147.816000px;}
.y93{bottom:153.750000px;}
.ycd{bottom:154.110000px;}
.y47{bottom:159.690000px;}
.y28{bottom:160.410000px;}
.ya7{bottom:165.450000px;}
.y5d{bottom:169.230000px;}
.ycc{bottom:171.570000px;}
.y63{bottom:177.870000px;}
.y27{bottom:178.050000px;}
.y98{bottom:181.650000px;}
.ya6{bottom:183.090000px;}
.y46{bottom:186.150000px;}
.y92{bottom:189.210000px;}
.y26{bottom:195.510000px;}
.ycb{bottom:198.570000px;}
.ya5{bottom:200.550000px;}
.yb4{bottom:202.890000px;}
.y8c{bottom:207.750000px;}
.y25{bottom:213.150000px;}
.y9e{bottom:213.510000px;}
.y97{bottom:213.870000px;}
.y9a{bottom:214.020000px;}
.ya4{bottom:218.190000px;}
.y7c{bottom:220.530000px;}
.y45{bottom:221.790000px;}
.y91{bottom:224.850000px;}
.y66{bottom:225.030000px;}
.y24{bottom:230.790000px;}
.yca{bottom:235.650000px;}
.y70{bottom:236.730000px;}
.y7e{bottom:238.530000px;}
.y90{bottom:242.490000px;}
.y8b{bottom:243.210000px;}
.ya3{bottom:245.010000px;}
.y23{bottom:248.430000px;}
.y9d{bottom:249.150000px;}
.y44{bottom:253.830000px;}
.y22{bottom:265.890000px;}
.y78{bottom:266.430000px;}
.yf2{bottom:268.050000px;}
.yb3{bottom:270.750000px;}
.y8f{bottom:274.530000px;}
.y95{bottom:275.220000px;}
.y8a{bottom:278.850000px;}
.y9c{bottom:281.370000px;}
.y9f{bottom:282.420000px;}
.y21{bottom:283.530000px;}
.yc9{bottom:284.070000px;}
.yf1{bottom:285.690000px;}
.ya2{bottom:293.250000px;}
.y20{bottom:301.170000px;}
.yc8{bottom:301.710000px;}
.y89{bottom:311.115000px;}
.y8d{bottom:311.220000px;}
.yf0{bottom:312.375000px;}
.y1f{bottom:318.675000px;}
.yc7{bottom:319.395000px;}
.ya1{bottom:325.515000px;}
.yab{bottom:325.785000px;}
.y1e{bottom:336.315000px;}
.yc6{bottom:337.035000px;}
.yef{bottom:339.015000px;}
.y1d{bottom:353.955000px;}
.yc5{bottom:354.495000px;}
.yee{bottom:365.475000px;}
.y5a{bottom:370.875000px;}
.y1c{bottom:371.415000px;}
.yc4{bottom:372.135000px;}
.yed{bottom:383.115000px;}
.y1b{bottom:389.055000px;}
.yc3{bottom:389.775000px;}
.yec{bottom:400.755000px;}
.y1a{bottom:406.695000px;}
.yc2{bottom:407.235000px;}
.yc1{bottom:424.875000px;}
.yeb{bottom:427.215000px;}
.y19{bottom:433.335000px;}
.yc0{bottom:442.515000px;}
.yea{bottom:444.855000px;}
.ybf{bottom:459.975000px;}
.ye9{bottom:471.495000px;}
.ybe{bottom:477.615000px;}
.y18{bottom:482.115000px;}
.ye8{bottom:489.135000px;}
.ybd{bottom:495.255000px;}
.yb2{bottom:505.875000px;}
.ybc{bottom:512.895000px;}
.ye7{bottom:515.595000px;}
.y17{bottom:519.195000px;}
.y6d{bottom:528.369000px;}
.ybb{bottom:530.355000px;}
.y16{bottom:536.835000px;}
.yb1{bottom:541.515000px;}
.ye6{bottom:542.235000px;}
.y15{bottom:554.295000px;}
.yba{bottom:557.175000px;}
.ye5{bottom:559.875000px;}
.y88{bottom:562.935000px;}
.y14{bottom:571.935000px;}
.yb0{bottom:573.735000px;}
.y87{bottom:580.575000px;}
.ye4{bottom:586.365000px;}
.y13{bottom:589.605000px;}
.y74{bottom:592.305000px;}
.y86{bottom:598.065000px;}
.ye3{bottom:604.005000px;}
.yb9{bottom:605.625000px;}
.y12{bottom:607.065000px;}
.y7b{bottom:614.445000px;}
.y85{bottom:615.705000px;}
.y62{bottom:619.305000px;}
.y43{bottom:624.165000px;}
.y11{bottom:624.705000px;}
.y73{bottom:627.945000px;}
.ye2{bottom:630.645000px;}
.y84{bottom:633.345000px;}
.yb8{bottom:637.845000px;}
.y42{bottom:641.805000px;}
.y10{bottom:642.345000px;}
.ye1{bottom:648.285000px;}
.y7a{bottom:650.085000px;}
.y83{bottom:650.985000px;}
.y5b{bottom:651.525000px;}
.y71{bottom:651.885000px;}
.y61{bottom:654.945000px;}
.y41{bottom:659.445000px;}
.yf{bottom:659.985000px;}
.ye0{bottom:665.745000px;}
.y79{bottom:674.025000px;}
.y40{bottom:676.905000px;}
.ye{bottom:677.445000px;}
.y5f{bottom:678.885000px;}
.y6f{bottom:681.225000px;}
.ydf{bottom:692.385000px;}
.y3f{bottom:694.545000px;}
.yd{bottom:695.085000px;}
.y76{bottom:699.225000px;}
.y6b{bottom:702.645000px;}
.y7d{bottom:710.025000px;}
.y3e{bottom:712.185000px;}
.yc{bottom:712.725000px;}
.y82{bottom:713.085000px;}
.yde{bottom:727.485000px;}
.y3d{bottom:729.645000px;}
.yb{bottom:730.185000px;}
.y80{bottom:737.025000px;}
.y6a{bottom:738.285000px;}
.y3c{bottom:747.285000px;}
.ydd{bottom:754.125000px;}
.ya{bottom:757.005000px;}
.y68{bottom:762.225000px;}
.y3b{bottom:764.925000px;}
.ydc{bottom:771.765000px;}
.y3a{bottom:782.565000px;}
.ydb{bottom:798.225000px;}
.y39{bottom:800.025000px;}
.y9{bottom:805.425000px;}
.yaf{bottom:808.845000px;}
.yda{bottom:815.865000px;}
.y59{bottom:816.945000px;}
.y38{bottom:817.665000px;}
.yd9{bottom:833.505000px;}
.y58{bottom:834.585000px;}
.y8{bottom:841.245000px;}
.y37{bottom:844.125000px;}
.yae{bottom:844.485000px;}
.y57{bottom:852.045000px;}
.yd8{bottom:860.010000px;}
.yb7{bottom:861.630000px;}
.y56{bottom:869.730000px;}
.yad{bottom:876.750000px;}
.y7{bottom:877.290000px;}
.yd7{bottom:877.650000px;}
.y36{bottom:879.990000px;}
.y55{bottom:887.370000px;}
.yb6{bottom:897.270000px;}
.yd6{bottom:904.290000px;}
.y54{bottom:904.830000px;}
.y6{bottom:913.290000px;}
.y53{bottom:922.470000px;}
.y35{bottom:928.410000px;}
.yb5{bottom:929.490000px;}
.yd5{bottom:930.750000px;}
.y52{bottom:940.110000px;}
.y34{bottom:946.050000px;}
.yd4{bottom:948.390000px;}
.y5{bottom:949.290000px;}
.y51{bottom:957.570000px;}
.y33{bottom:963.690000px;}
.yd3{bottom:966.030000px;}
.y50{bottom:975.210000px;}
.y32{bottom:981.150000px;}
.yd2{bottom:983.670000px;}
.y4{bottom:987.630000px;}
.y4f{bottom:992.850000px;}
.yd1{bottom:1010.310000px;}
.y3{bottom:1012.290000px;}
.y31{bottom:1016.790000px;}
.y4e{bottom:1019.490000px;}
.y30{bottom:1034.430000px;}
.y4d{bottom:1051.890000px;}
.y2f{bottom:1052.070000px;}
.yd0{bottom:1058.730000px;}
.y2e{bottom:1069.530000px;}
.ycf{bottom:1085.730000px;}
.y2d{bottom:1087.170000px;}
.y4c{bottom:1087.530000px;}
.y4b{bottom:1105.170000px;}
.y2c{bottom:1122.630000px;}
.y4a{bottom:1122.810000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h3{height:38.405391px;}
.h6{height:50.597578px;}
.h1e{height:50.823348px;}
.h22{height:50.825707px;}
.h20{height:50.825932px;}
.h24{height:50.849355px;}
.h5{height:56.084062px;}
.h9{height:59.614102px;}
.h27{height:61.423863px;}
.h8{height:62.211094px;}
.h26{height:62.509677px;}
.h7{height:68.956875px;}
.h4{height:71.324297px;}
.h1a{height:371.775000px;}
.h11{height:391.575000px;}
.h1c{height:416.775000px;}
.he{height:419.475000px;}
.h16{height:423.030000px;}
.ha{height:423.930000px;}
.h18{height:432.075000px;}
.hf{height:441.075000px;}
.h14{height:443.775000px;}
.h17{height:454.575000px;}
.h1b{height:470.775000px;}
.h13{height:472.575000px;}
.hd{height:474.915000px;}
.h19{height:479.775000px;}
.hc{height:481.575000px;}
.h10{height:486.975000px;}
.h15{height:501.915000px;}
.hb{height:502.275000px;}
.h12{height:542.595000px;}
.h25{height:828.730007px;}
.h1d{height:843.278623px;}
.h23{height:872.090552px;}
.h1f{height:879.300000px;}
.h21{height:940.500000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:374.115000px;}
.w9{width:375.405000px;}
.w6{width:375.915000px;}
.w8{width:377.535000px;}
.w7{width:377.565000px;}
.w5{width:379.185000px;}
.wa{width:379.695000px;}
.w3{width:380.985000px;}
.we{width:421.200000px;}
.wd{width:438.294750px;}
.wf{width:438.898036px;}
.wb{width:440.100000px;}
.wc{width:443.696357px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x1{left:68.040000px;}
.x1f{left:86.075987px;}
.x24{left:92.555987px;}
.x2b{left:101.375987px;}
.x28{left:107.135987px;}
.x36{left:111.275987px;}
.x31{left:127.835987px;}
.x1b{left:145.655987px;}
.x30{left:179.309987px;}
.x2e{left:188.849987px;}
.x33{left:190.649987px;}
.x14{left:198.209987px;}
.x35{left:207.029987px;}
.x2{left:209.729987px;}
.x19{left:211.349987px;}
.x17{left:217.289987px;}
.x21{left:224.745000px;}
.x1c{left:226.095000px;}
.x25{left:227.445000px;}
.x29{left:235.995000px;}
.xe{left:249.689987px;}
.x11{left:252.209987px;}
.x5{left:307.334987px;}
.x6{left:337.215000px;}
.x8{left:358.815000px;}
.xc{left:364.215000px;}
.xf{left:365.475000px;}
.x16{left:366.555000px;}
.xa{left:367.815000px;}
.x9{left:369.975000px;}
.xb{left:372.315000px;}
.xd{left:374.505000px;}
.x10{left:376.845000px;}
.x2a{left:412.374280px;}
.x2c{left:414.323946px;}
.x26{left:423.169755px;}
.x20{left:427.214987px;}
.x22{left:432.172556px;}
.x1d{left:437.678857px;}
.x18{left:444.885000px;}
.x15{left:447.045000px;}
.x13{left:448.665000px;}
.x7{left:450.465000px;}
.x27{left:657.329987px;}
.x23{left:665.789987px;}
.x1a{left:667.229987px;}
.x1e{left:668.489987px;}
.x4{left:733.469987px;}
.x32{left:759.389987px;}
.x2f{left:760.469987px;}
.x34{left:761.729987px;}
.x2d{left:763.889987px;}
.x3{left:808.739987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls10{letter-spacing:-0.034667pt;}
.ls14{letter-spacing:-0.034560pt;}
.ls17{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls7{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.138133pt;}
.ls1{letter-spacing:0.149760pt;}
.lsc{letter-spacing:0.153600pt;}
.lse{letter-spacing:0.173333pt;}
.ls4{letter-spacing:0.188160pt;}
.lsf{letter-spacing:0.188267pt;}
.ls13{letter-spacing:0.284160pt;}
.ls5{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.342933pt;}
.ls12{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.651520pt;}
.ls16{letter-spacing:42.192640pt;}
.ls15{letter-spacing:72.272640pt;}
.wsc{word-spacing:-13.296533pt;}
.ws5{word-spacing:-12.953600pt;}
.ws8{word-spacing:-11.874667pt;}
.ws7{word-spacing:-11.859733pt;}
.wsf{word-spacing:-11.824533pt;}
.ws3{word-spacing:-11.698133pt;}
.wsb{word-spacing:-11.697920pt;}
.ws4{word-spacing:-11.686400pt;}
.wse{word-spacing:-11.654400pt;}
.wsd{word-spacing:-11.651840pt;}
.ws9{word-spacing:-11.651733pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.wsa{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._7{margin-left:-3.399468pt;}
._6{margin-left:-2.124800pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.938667pt;}
._9{width:2.001707pt;}
._3{width:2.915413pt;}
._8{width:4.461868pt;}
._d{width:5.630932pt;}
._5{width:7.401067pt;}
._4{width:8.499200pt;}
._2{width:9.430250pt;}
._a{width:10.613483pt;}
._e{width:12.705494pt;}
._c{width:13.705066pt;}
._b{width:14.608000pt;}
._f{width:15.581653pt;}
._11{width:61.344000pt;}
._10{width:62.522240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:53.357025pt;}
.fs9{font-size:53.359502pt;}
.fs8{font-size:53.359738pt;}
.fsb{font-size:53.374951pt;}
.fsa{font-size:53.384329pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y96{bottom:-2.040815pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:0.320000pt;}
.y72{bottom:1.280000pt;}
.y7f{bottom:1.600000pt;}
.yac{bottom:1.885418pt;}
.ya0{bottom:1.912272pt;}
.y77{bottom:1.920000pt;}
.y64{bottom:2.400000pt;}
.y8e{bottom:3.440765pt;}
.y9b{bottom:3.624781pt;}
.y67{bottom:4.800000pt;}
.y60{bottom:5.280000pt;}
.y5c{bottom:6.400000pt;}
.y65{bottom:7.200000pt;}
.y6e{bottom:7.840000pt;}
.y5e{bottom:10.080000pt;}
.y69{bottom:12.000000pt;}
.y2{bottom:65.152000pt;}
.y2a{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.yaa{bottom:100.192000pt;}
.y94{bottom:105.312000pt;}
.y49{bottom:110.592000pt;}
.ya9{bottom:115.872000pt;}
.yce{bottom:121.312000pt;}
.y6c{bottom:122.592000pt;}
.y48{bottom:126.272000pt;}
.y99{bottom:129.792000pt;}
.y75{bottom:130.912000pt;}
.ya8{bottom:131.392000pt;}
.y93{bottom:136.666667pt;}
.ycd{bottom:136.986667pt;}
.y47{bottom:141.946667pt;}
.y28{bottom:142.586667pt;}
.ya7{bottom:147.066667pt;}
.y5d{bottom:150.426667pt;}
.ycc{bottom:152.506667pt;}
.y63{bottom:158.106667pt;}
.y27{bottom:158.266667pt;}
.y98{bottom:161.466667pt;}
.ya6{bottom:162.746667pt;}
.y46{bottom:165.466667pt;}
.y92{bottom:168.186667pt;}
.y26{bottom:173.786667pt;}
.ycb{bottom:176.506667pt;}
.ya5{bottom:178.266667pt;}
.yb4{bottom:180.346667pt;}
.y8c{bottom:184.666667pt;}
.y25{bottom:189.466667pt;}
.y9e{bottom:189.786667pt;}
.y97{bottom:190.106667pt;}
.y9a{bottom:190.240000pt;}
.ya4{bottom:193.946667pt;}
.y7c{bottom:196.026667pt;}
.y45{bottom:197.146667pt;}
.y91{bottom:199.866667pt;}
.y66{bottom:200.026667pt;}
.y24{bottom:205.146667pt;}
.yca{bottom:209.466667pt;}
.y70{bottom:210.426667pt;}
.y7e{bottom:212.026667pt;}
.y90{bottom:215.546667pt;}
.y8b{bottom:216.186667pt;}
.ya3{bottom:217.786667pt;}
.y23{bottom:220.826667pt;}
.y9d{bottom:221.466667pt;}
.y44{bottom:225.626667pt;}
.y22{bottom:236.346667pt;}
.y78{bottom:236.826667pt;}
.yf2{bottom:238.266667pt;}
.yb3{bottom:240.666667pt;}
.y8f{bottom:244.026667pt;}
.y95{bottom:244.640000pt;}
.y8a{bottom:247.866667pt;}
.y9c{bottom:250.106667pt;}
.y9f{bottom:251.040000pt;}
.y21{bottom:252.026667pt;}
.yc9{bottom:252.506667pt;}
.yf1{bottom:253.946667pt;}
.ya2{bottom:260.666667pt;}
.y20{bottom:267.706667pt;}
.yc8{bottom:268.186667pt;}
.y89{bottom:276.546667pt;}
.y8d{bottom:276.640000pt;}
.yf0{bottom:277.666667pt;}
.y1f{bottom:283.266667pt;}
.yc7{bottom:283.906667pt;}
.ya1{bottom:289.346667pt;}
.yab{bottom:289.586667pt;}
.y1e{bottom:298.946667pt;}
.yc6{bottom:299.586667pt;}
.yef{bottom:301.346667pt;}
.y1d{bottom:314.626667pt;}
.yc5{bottom:315.106667pt;}
.yee{bottom:324.866667pt;}
.y5a{bottom:329.666667pt;}
.y1c{bottom:330.146667pt;}
.yc4{bottom:330.786667pt;}
.yed{bottom:340.546667pt;}
.y1b{bottom:345.826667pt;}
.yc3{bottom:346.466667pt;}
.yec{bottom:356.226667pt;}
.y1a{bottom:361.506667pt;}
.yc2{bottom:361.986667pt;}
.yc1{bottom:377.666667pt;}
.yeb{bottom:379.746667pt;}
.y19{bottom:385.186667pt;}
.yc0{bottom:393.346667pt;}
.yea{bottom:395.426667pt;}
.ybf{bottom:408.866667pt;}
.ye9{bottom:419.106667pt;}
.ybe{bottom:424.546667pt;}
.y18{bottom:428.546667pt;}
.ye8{bottom:434.786667pt;}
.ybd{bottom:440.226667pt;}
.yb2{bottom:449.666667pt;}
.ybc{bottom:455.906667pt;}
.ye7{bottom:458.306667pt;}
.y17{bottom:461.506667pt;}
.y6d{bottom:469.661333pt;}
.ybb{bottom:471.426667pt;}
.y16{bottom:477.186667pt;}
.yb1{bottom:481.346667pt;}
.ye6{bottom:481.986667pt;}
.y15{bottom:492.706667pt;}
.yba{bottom:495.266667pt;}
.ye5{bottom:497.666667pt;}
.y88{bottom:500.386667pt;}
.y14{bottom:508.386667pt;}
.yb0{bottom:509.986667pt;}
.y87{bottom:516.066667pt;}
.ye4{bottom:521.213333pt;}
.y13{bottom:524.093333pt;}
.y74{bottom:526.493333pt;}
.y86{bottom:531.613333pt;}
.ye3{bottom:536.893333pt;}
.yb9{bottom:538.333333pt;}
.y12{bottom:539.613333pt;}
.y7b{bottom:546.173333pt;}
.y85{bottom:547.293333pt;}
.y62{bottom:550.493333pt;}
.y43{bottom:554.813333pt;}
.y11{bottom:555.293333pt;}
.y73{bottom:558.173333pt;}
.ye2{bottom:560.573333pt;}
.y84{bottom:562.973333pt;}
.yb8{bottom:566.973333pt;}
.y42{bottom:570.493333pt;}
.y10{bottom:570.973333pt;}
.ye1{bottom:576.253333pt;}
.y7a{bottom:577.853333pt;}
.y83{bottom:578.653333pt;}
.y5b{bottom:579.133333pt;}
.y71{bottom:579.453333pt;}
.y61{bottom:582.173333pt;}
.y41{bottom:586.173333pt;}
.yf{bottom:586.653333pt;}
.ye0{bottom:591.773333pt;}
.y79{bottom:599.133333pt;}
.y40{bottom:601.693333pt;}
.ye{bottom:602.173333pt;}
.y5f{bottom:603.453333pt;}
.y6f{bottom:605.533333pt;}
.ydf{bottom:615.453333pt;}
.y3f{bottom:617.373333pt;}
.yd{bottom:617.853333pt;}
.y76{bottom:621.533333pt;}
.y6b{bottom:624.573333pt;}
.y7d{bottom:631.133333pt;}
.y3e{bottom:633.053333pt;}
.yc{bottom:633.533333pt;}
.y82{bottom:633.853333pt;}
.yde{bottom:646.653333pt;}
.y3d{bottom:648.573333pt;}
.yb{bottom:649.053333pt;}
.y80{bottom:655.133333pt;}
.y6a{bottom:656.253333pt;}
.y3c{bottom:664.253333pt;}
.ydd{bottom:670.333333pt;}
.ya{bottom:672.893333pt;}
.y68{bottom:677.533333pt;}
.y3b{bottom:679.933333pt;}
.ydc{bottom:686.013333pt;}
.y3a{bottom:695.613333pt;}
.ydb{bottom:709.533333pt;}
.y39{bottom:711.133333pt;}
.y9{bottom:715.933333pt;}
.yaf{bottom:718.973333pt;}
.yda{bottom:725.213333pt;}
.y59{bottom:726.173333pt;}
.y38{bottom:726.813333pt;}
.yd9{bottom:740.893333pt;}
.y58{bottom:741.853333pt;}
.y8{bottom:747.773333pt;}
.y37{bottom:750.333333pt;}
.yae{bottom:750.653333pt;}
.y57{bottom:757.373333pt;}
.yd8{bottom:764.453333pt;}
.yb7{bottom:765.893333pt;}
.y56{bottom:773.093333pt;}
.yad{bottom:779.333333pt;}
.y7{bottom:779.813333pt;}
.yd7{bottom:780.133333pt;}
.y36{bottom:782.213333pt;}
.y55{bottom:788.773333pt;}
.yb6{bottom:797.573333pt;}
.yd6{bottom:803.813333pt;}
.y54{bottom:804.293333pt;}
.y6{bottom:811.813333pt;}
.y53{bottom:819.973333pt;}
.y35{bottom:825.253333pt;}
.yb5{bottom:826.213333pt;}
.yd5{bottom:827.333333pt;}
.y52{bottom:835.653333pt;}
.y34{bottom:840.933333pt;}
.yd4{bottom:843.013333pt;}
.y5{bottom:843.813333pt;}
.y51{bottom:851.173333pt;}
.y33{bottom:856.613333pt;}
.yd3{bottom:858.693333pt;}
.y50{bottom:866.853333pt;}
.y32{bottom:872.133333pt;}
.yd2{bottom:874.373333pt;}
.y4{bottom:877.893333pt;}
.y4f{bottom:882.533333pt;}
.yd1{bottom:898.053333pt;}
.y3{bottom:899.813333pt;}
.y31{bottom:903.813333pt;}
.y4e{bottom:906.213333pt;}
.y30{bottom:919.493333pt;}
.y4d{bottom:935.013333pt;}
.y2f{bottom:935.173333pt;}
.yd0{bottom:941.093333pt;}
.y2e{bottom:950.693333pt;}
.ycf{bottom:965.093333pt;}
.y2d{bottom:966.373333pt;}
.y4c{bottom:966.693333pt;}
.y4b{bottom:982.373333pt;}
.y2c{bottom:997.893333pt;}
.y4a{bottom:998.053333pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h3{height:34.138125pt;}
.h6{height:44.975625pt;}
.h1e{height:45.176309pt;}
.h22{height:45.178407pt;}
.h20{height:45.178606pt;}
.h24{height:45.199427pt;}
.h5{height:49.852500pt;}
.h9{height:52.990313pt;}
.h27{height:54.598989pt;}
.h8{height:55.298750pt;}
.h26{height:55.564158pt;}
.h7{height:61.295000pt;}
.h4{height:63.399375pt;}
.h1a{height:330.466667pt;}
.h11{height:348.066667pt;}
.h1c{height:370.466667pt;}
.he{height:372.866667pt;}
.h16{height:376.026667pt;}
.ha{height:376.826667pt;}
.h18{height:384.066667pt;}
.hf{height:392.066667pt;}
.h14{height:394.466667pt;}
.h17{height:404.066667pt;}
.h1b{height:418.466667pt;}
.h13{height:420.066667pt;}
.hd{height:422.146667pt;}
.h19{height:426.466667pt;}
.hc{height:428.066667pt;}
.h10{height:432.866667pt;}
.h15{height:446.146667pt;}
.hb{height:446.466667pt;}
.h12{height:482.306667pt;}
.h25{height:736.648895pt;}
.h1d{height:749.580998pt;}
.h23{height:775.191602pt;}
.h1f{height:781.600000pt;}
.h21{height:836.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:332.546667pt;}
.w9{width:333.693333pt;}
.w6{width:334.146667pt;}
.w8{width:335.586667pt;}
.w7{width:335.613333pt;}
.w5{width:337.053333pt;}
.wa{width:337.506667pt;}
.w3{width:338.653333pt;}
.we{width:374.400000pt;}
.wd{width:389.595334pt;}
.wf{width:390.131587pt;}
.wb{width:391.200000pt;}
.wc{width:394.396762pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1f{left:76.511988pt;}
.x24{left:82.271988pt;}
.x2b{left:90.111988pt;}
.x28{left:95.231988pt;}
.x36{left:98.911988pt;}
.x31{left:113.631988pt;}
.x1b{left:129.471988pt;}
.x30{left:159.386655pt;}
.x2e{left:167.866655pt;}
.x33{left:169.466655pt;}
.x14{left:176.186655pt;}
.x35{left:184.026655pt;}
.x2{left:186.426655pt;}
.x19{left:187.866655pt;}
.x17{left:193.146655pt;}
.x21{left:199.773333pt;}
.x1c{left:200.973333pt;}
.x25{left:202.173333pt;}
.x29{left:209.773333pt;}
.xe{left:221.946655pt;}
.x11{left:224.186655pt;}
.x5{left:273.186655pt;}
.x6{left:299.746667pt;}
.x8{left:318.946667pt;}
.xc{left:323.746667pt;}
.xf{left:324.866667pt;}
.x16{left:325.826667pt;}
.xa{left:326.946667pt;}
.x9{left:328.866667pt;}
.xb{left:330.946667pt;}
.xd{left:332.893333pt;}
.x10{left:334.973333pt;}
.x2a{left:366.554916pt;}
.x2c{left:368.287952pt;}
.x26{left:376.150893pt;}
.x20{left:379.746655pt;}
.x22{left:384.153383pt;}
.x1d{left:389.047873pt;}
.x18{left:395.453333pt;}
.x15{left:397.373333pt;}
.x13{left:398.813333pt;}
.x7{left:400.413333pt;}
.x27{left:584.293322pt;}
.x23{left:591.813322pt;}
.x1a{left:593.093322pt;}
.x1e{left:594.213322pt;}
.x4{left:651.973322pt;}
.x32{left:675.013322pt;}
.x2f{left:675.973322pt;}
.x34{left:677.093322pt;}
.x2d{left:679.013322pt;}
.x3{left:718.879988pt;}
}




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