
    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_c738f9f7878b11377c016cf0.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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9e0b0ca07cc2ac87e5a563f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_280d06f1aea13c71eae3acea.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1c0963b8dbd9fa8aa1ca0030.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_5ad189b37a58e274b8a07206.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_679657a2ee018081fa4c5962.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945989;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_6b65c066e11f388a9017373a.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_2ab2a1af3116aea76fe5e600.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.745117;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_ce1c4883f3e70aaab678155d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.945989;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.181440px;}
.lsa{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.424080px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:5.544000px;}
.lsf{letter-spacing:5.940000px;}
.lse{letter-spacing:10.260000px;}
.ls2{letter-spacing:64.397280px;}
.ls4{letter-spacing:850.644000px;}
.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;}
}
.ws1{word-spacing:-48.600000px;}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.680200px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-4.752000px;}
._14{margin-left:-3.384000px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._8{width:2.915520px;}
._b{width:3.981120px;}
._10{width:5.152320px;}
._11{width:6.223680px;}
._12{width:8.032320px;}
._1b{width:9.549120px;}
._16{width:10.656000px;}
._9{width:11.880000px;}
._a{width:12.888000px;}
._c{width:14.412000px;}
._17{width:15.828000px;}
._f{width:16.846560px;}
._1e{width:19.656000px;}
._15{width:21.240000px;}
._18{width:23.112000px;}
._19{width:24.336000px;}
._1a{width:26.064000px;}
._2b{width:28.560000px;}
._e{width:31.392000px;}
._d{width:32.436000px;}
._1f{width:33.696000px;}
._20{width:34.848000px;}
._1c{width:36.720000px;}
._1d{width:37.800000px;}
._7{width:50.395440px;}
._6{width:51.710400px;}
._5{width:71.820000px;}
._4{width:73.352160px;}
._2d{width:75.168000px;}
._2{width:79.863840px;}
._2e{width:91.800000px;}
._24{width:115.056000px;}
._28{width:124.704000px;}
._29{width:126.000000px;}
._25{width:174.936000px;}
._26{width:176.424000px;}
._3{width:195.184560px;}
._21{width:205.056000px;}
._22{width:206.568000px;}
._2c{width:214.488000px;}
._27{width:315.576000px;}
._2a{width:333.648000px;}
._23{width:572.904000px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:3.240000px;}
.y8d{bottom:3.285000px;}
.ya7{bottom:5.580000px;}
.y7a{bottom:8.280000px;}
.y95{bottom:8.820000px;}
.y6{bottom:76.176000px;}
.y5{bottom:96.516000px;}
.y4{bottom:115.956000px;}
.y3{bottom:134.856000px;}
.y2{bottom:153.930000px;}
.yf7{bottom:175.170000px;}
.y51{bottom:175.890000px;}
.y32{bottom:180.030000px;}
.y11b{bottom:183.630000px;}
.ycc{bottom:186.150000px;}
.y6e{bottom:190.290000px;}
.yb2{bottom:191.370000px;}
.yf6{bottom:195.870000px;}
.y31{bottom:200.730000px;}
.y92{bottom:201.630000px;}
.y11a{bottom:204.330000px;}
.y50{bottom:207.030000px;}
.ycb{bottom:212.790000px;}
.yf5{bottom:216.570000px;}
.y6d{bottom:221.250000px;}
.y30{bottom:221.430000px;}
.yb1{bottom:224.310000px;}
.y119{bottom:225.030000px;}
.y91{bottom:234.570000px;}
.ydc{bottom:237.090000px;}
.yf4{bottom:237.270000px;}
.y4f{bottom:237.990000px;}
.yca{bottom:238.710000px;}
.y2f{bottom:242.130000px;}
.y118{bottom:245.730000px;}
.y6c{bottom:252.390000px;}
.yc9{bottom:255.990000px;}
.yb0{bottom:257.250000px;}
.yf3{bottom:257.970000px;}
.y2e{bottom:262.830000px;}
.y117{bottom:266.430000px;}
.y90{bottom:267.690000px;}
.ydb{bottom:268.050000px;}
.y4e{bottom:268.950000px;}
.yc8{bottom:277.590000px;}
.yf2{bottom:278.670000px;}
.y6b{bottom:283.350000px;}
.y2d{bottom:283.530000px;}
.y116{bottom:287.130000px;}
.yaf{bottom:290.370000px;}
.yda{bottom:299.190000px;}
.yf1{bottom:299.370000px;}
.y8e{bottom:300.630000px;}
.y2c{bottom:304.230000px;}
.y4d{bottom:306.030000px;}
.y115{bottom:307.830000px;}
.yc7{bottom:310.530000px;}
.yf0{bottom:320.070000px;}
.y6a{bottom:320.430000px;}
.yae{bottom:323.310000px;}
.y2b{bottom:324.930000px;}
.y114{bottom:328.530000px;}
.yd9{bottom:330.150000px;}
.y8c{bottom:333.570000px;}
.y4c{bottom:337.215000px;}
.yef{bottom:340.815000px;}
.yc6{bottom:343.695000px;}
.y2a{bottom:345.675000px;}
.y113{bottom:349.275000px;}
.y69{bottom:351.615000px;}
.yad{bottom:356.295000px;}
.yd8{bottom:361.335000px;}
.yee{bottom:361.515000px;}
.y8b{bottom:363.855000px;}
.y29{bottom:366.375000px;}
.y4b{bottom:368.175000px;}
.y78{bottom:369.255000px;}
.y112{bottom:369.975000px;}
.yc5{bottom:376.635000px;}
.yed{bottom:382.215000px;}
.y68{bottom:382.575000px;}
.y28{bottom:387.075000px;}
.yac{bottom:389.415000px;}
.y77{bottom:389.955000px;}
.y111{bottom:390.675000px;}
.yd7{bottom:392.295000px;}
.y4a{bottom:399.315000px;}
.yec{bottom:402.915000px;}
.y27{bottom:407.775000px;}
.yc4{bottom:409.575000px;}
.y76{bottom:409.935000px;}
.y110{bottom:411.375000px;}
.y67{bottom:419.655000px;}
.yab{bottom:422.355000px;}
.yd6{bottom:423.435000px;}
.y75{bottom:423.795000px;}
.y26{bottom:428.475000px;}
.yeb{bottom:430.095000px;}
.y49{bottom:430.275000px;}
.y10f{bottom:438.195000px;}
.y8a{bottom:440.895000px;}
.yc3{bottom:442.695000px;}
.y25{bottom:449.175000px;}
.y66{bottom:450.795000px;}
.yd5{bottom:454.395000px;}
.yaa{bottom:455.295000px;}
.y10e{bottom:458.895000px;}
.y48{bottom:461.415000px;}
.yea{bottom:462.675000px;}
.y24{bottom:469.875000px;}
.yc2{bottom:475.635000px;}
.y10d{bottom:479.595000px;}
.y89{bottom:480.135000px;}
.y65{bottom:481.755000px;}
.yd4{bottom:485.535000px;}
.ya9{bottom:488.415000px;}
.y23{bottom:490.575000px;}
.y47{bottom:492.375000px;}
.ye9{bottom:493.815000px;}
.y10c{bottom:500.295000px;}
.yc1{bottom:510.375000px;}
.y22{bottom:511.275000px;}
.y88{bottom:512.715000px;}
.y64{bottom:512.895000px;}
.yd3{bottom:516.495000px;}
.ya8{bottom:521.355000px;}
.y46{bottom:523.515000px;}
.ye8{bottom:524.775000px;}
.y10b{bottom:526.935000px;}
.y21{bottom:531.975000px;}
.yc0{bottom:547.275000px;}
.yd2{bottom:547.635000px;}
.y63{bottom:549.795000px;}
.y87{bottom:552.495000px;}
.y20{bottom:552.675000px;}
.ya6{bottom:554.295000px;}
.y45{bottom:554.475000px;}
.ye7{bottom:555.915000px;}
.y10a{bottom:568.335000px;}
.y1f{bottom:573.375000px;}
.ybf{bottom:578.415000px;}
.yd1{bottom:578.595000px;}
.y62{bottom:580.935000px;}
.ye6{bottom:583.095000px;}
.y44{bottom:585.615000px;}
.y86{bottom:587.595000px;}
.y109{bottom:589.035000px;}
.ya5{bottom:589.755000px;}
.y79{bottom:590.475000px;}
.y1e{bottom:594.075000px;}
.ybe{bottom:605.085000px;}
.yd0{bottom:609.765000px;}
.y61{bottom:611.925000px;}
.y1d{bottom:614.805000px;}
.ye5{bottom:615.705000px;}
.y43{bottom:616.605000px;}
.y85{bottom:622.725000px;}
.ybd{bottom:625.065000px;}
.y108{bottom:630.465000px;}
.y1c{bottom:635.505000px;}
.ycf{bottom:640.725000px;}
.ybc{bottom:642.345000px;}
.y60{bottom:643.065000px;}
.y42{bottom:647.745000px;}
.y107{bottom:651.165000px;}
.ye4{bottom:652.785000px;}
.y84{bottom:655.305000px;}
.y74{bottom:655.485000px;}
.ya4{bottom:655.665000px;}
.y1b{bottom:656.205000px;}
.ybb{bottom:662.325000px;}
.y106{bottom:671.865000px;}
.y5f{bottom:674.025000px;}
.y73{bottom:676.185000px;}
.y1a{bottom:676.905000px;}
.yce{bottom:677.805000px;}
.y41{bottom:678.705000px;}
.ye3{bottom:683.745000px;}
.y83{bottom:686.265000px;}
.ya3{bottom:688.785000px;}
.y105{bottom:692.565000px;}
.y19{bottom:697.605000px;}
.y5e{bottom:701.205000px;}
.y72{bottom:702.825000px;}
.ycd{bottom:708.945000px;}
.y104{bottom:713.265000px;}
.ye2{bottom:714.885000px;}
.y40{bottom:715.785000px;}
.y82{bottom:717.405000px;}
.y18{bottom:718.305000px;}
.ya2{bottom:721.725000px;}
.y5d{bottom:733.965000px;}
.y17{bottom:739.005000px;}
.y71{bottom:739.905000px;}
.ye1{bottom:745.845000px;}
.y3f{bottom:746.745000px;}
.y81{bottom:748.365000px;}
.ya1{bottom:754.665000px;}
.y16{bottom:759.705000px;}
.y103{bottom:760.605000px;}
.y5c{bottom:771.045000px;}
.ye0{bottom:776.985000px;}
.y3e{bottom:777.885000px;}
.y15{bottom:780.405000px;}
.y102{bottom:781.305000px;}
.y80{bottom:785.445000px;}
.ya0{bottom:787.785000px;}
.y14{bottom:801.105000px;}
.y5b{bottom:802.005000px;}
.ydf{bottom:807.945000px;}
.y3d{bottom:808.845000px;}
.y7f{bottom:816.405000px;}
.y9f{bottom:820.725000px;}
.y13{bottom:821.805000px;}
.y101{bottom:822.705000px;}
.y5a{bottom:833.145000px;}
.yde{bottom:839.085000px;}
.y3c{bottom:839.985000px;}
.y12{bottom:842.505000px;}
.y100{bottom:843.405000px;}
.y7e{bottom:847.545000px;}
.y9e{bottom:850.965000px;}
.y11{bottom:863.205000px;}
.y59{bottom:864.105000px;}
.ydd{bottom:870.045000px;}
.y3b{bottom:870.990000px;}
.y7d{bottom:878.550000px;}
.y10{bottom:883.950000px;}
.yff{bottom:884.850000px;}
.y70{bottom:895.290000px;}
.y7c{bottom:899.250000px;}
.y9d{bottom:899.970000px;}
.y58{bottom:901.230000px;}
.y3a{bottom:902.130000px;}
.yf{bottom:904.650000px;}
.yfe{bottom:905.550000px;}
.y7b{bottom:915.990000px;}
.y6f{bottom:926.250000px;}
.ye{bottom:926.610000px;}
.y9c{bottom:931.110000px;}
.y57{bottom:932.190000px;}
.y39{bottom:933.090000px;}
.yfd{bottom:946.950000px;}
.yba{bottom:949.470000px;}
.yd{bottom:954.330000px;}
.y9b{bottom:962.070000px;}
.y56{bottom:963.330000px;}
.y38{bottom:964.230000px;}
.yb9{bottom:970.170000px;}
.yfc{bottom:973.590000px;}
.yc{bottom:981.870000px;}
.y55{bottom:994.290000px;}
.y37{bottom:995.190000px;}
.y9a{bottom:1000.770000px;}
.yb8{bottom:1001.310000px;}
.yb{bottom:1009.410000px;}
.yfb{bottom:1014.990000px;}
.y99{bottom:1020.750000px;}
.y54{bottom:1025.430000px;}
.y36{bottom:1026.330000px;}
.yb7{bottom:1032.270000px;}
.yfa{bottom:1035.690000px;}
.ya{bottom:1037.130000px;}
.y98{bottom:1043.070000px;}
.y53{bottom:1056.390000px;}
.y35{bottom:1057.290000px;}
.yb6{bottom:1063.410000px;}
.y9{bottom:1064.670000px;}
.y94{bottom:1072.590000px;}
.y93{bottom:1073.130000px;}
.y97{bottom:1076.010000px;}
.yf9{bottom:1077.090000px;}
.yb5{bottom:1084.110000px;}
.y52{bottom:1087.530000px;}
.y34{bottom:1088.430000px;}
.y8{bottom:1092.210000px;}
.yf8{bottom:1097.790000px;}
.yb4{bottom:1104.090000px;}
.y96{bottom:1108.950000px;}
.y33{bottom:1115.610000px;}
.y7{bottom:1118.490000px;}
.yb3{bottom:1121.370000px;}
.y1{bottom:1233.900000px;}
.h10{height:17.100000px;}
.h13{height:17.136000px;}
.he{height:17.280000px;}
.hd{height:17.316000px;}
.h14{height:19.620000px;}
.h11{height:47.700000px;}
.ha{height:47.736000px;}
.h12{height:48.240000px;}
.hf{height:53.077852px;}
.h9{height:53.573906px;}
.h5{height:54.878906px;}
.h4{height:55.825312px;}
.hc{height:57.915865px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h15{height:70.606406px;}
.h7{height:72.988945px;}
.h8{height:74.820586px;}
.h6{height:85.052461px;}
.hb{height:122.133867px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:48.276000px;}
.w3{width:48.456000px;}
.w4{width:53.856000px;}
.w9{width:54.036000px;}
.w7{width:76.140000px;}
.w6{width:101.556000px;}
.wc{width:105.876000px;}
.w5{width:120.060000px;}
.wb{width:137.520000px;}
.wf{width:163.290000px;}
.w10{width:180.030000px;}
.wa{width:265.575000px;}
.wd{width:335.370000px;}
.we{width:344.235000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.560000px;}
.xd{left:10.845000px;}
.xf{left:13.005000px;}
.x17{left:19.440000px;}
.x28{left:22.680000px;}
.x29{left:24.480000px;}
.x19{left:25.950000px;}
.x23{left:30.420000px;}
.x14{left:32.760000px;}
.x25{left:34.020000px;}
.x1a{left:37.980000px;}
.x1b{left:50.610000px;}
.x26{left:52.605000px;}
.x27{left:68.580000px;}
.x33{left:74.370000px;}
.x35{left:82.305000px;}
.x21{left:105.525000px;}
.x2{left:127.655987px;}
.x2a{left:129.995987px;}
.x30{left:140.214000px;}
.x2d{left:143.675987px;}
.x32{left:153.210000px;}
.x2f{left:166.529987px;}
.x4{left:170.129987px;}
.x11{left:181.649987px;}
.x8{left:183.269987px;}
.xb{left:185.789987px;}
.x6{left:191.369987px;}
.x20{left:201.990000px;}
.x36{left:231.689987px;}
.x1f{left:239.429987px;}
.x9{left:256.529987px;}
.x5{left:274.349987px;}
.x1c{left:276.690000px;}
.xc{left:278.354987px;}
.x7{left:297.254987px;}
.x1e{left:300.494987px;}
.x13{left:335.955000px;}
.x2e{left:346.394987px;}
.x12{left:353.954987px;}
.x2b{left:366.374987px;}
.x15{left:456.735000px;}
.x31{left:463.755000px;}
.x22{left:468.285000px;}
.x1{left:489.164987px;}
.xa{left:493.844987px;}
.x16{left:559.005000px;}
.x24{left:606.525000px;}
.x34{left:627.945000px;}
.x1d{left:643.245000px;}
.xe{left:648.645000px;}
.x2c{left:668.849987px;}
.x10{left:707.369987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.161280pt;}
.lsa{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.376960pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:4.928000pt;}
.lsf{letter-spacing:5.280000pt;}
.lse{letter-spacing:9.120000pt;}
.ls2{letter-spacing:57.242027pt;}
.ls4{letter-spacing:756.128000pt;}
.ws1{word-spacing:-43.200000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.049067pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-4.224000pt;}
._14{margin-left:-3.008000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._8{width:2.591573pt;}
._b{width:3.538773pt;}
._10{width:4.579840pt;}
._11{width:5.532160pt;}
._12{width:7.139840pt;}
._1b{width:8.488107pt;}
._16{width:9.472000pt;}
._9{width:10.560000pt;}
._a{width:11.456000pt;}
._c{width:12.810667pt;}
._17{width:14.069333pt;}
._f{width:14.974720pt;}
._1e{width:17.472000pt;}
._15{width:18.880000pt;}
._18{width:20.544000pt;}
._19{width:21.632000pt;}
._1a{width:23.168000pt;}
._2b{width:25.386667pt;}
._e{width:27.904000pt;}
._d{width:28.832000pt;}
._1f{width:29.952000pt;}
._20{width:30.976000pt;}
._1c{width:32.640000pt;}
._1d{width:33.600000pt;}
._7{width:44.795947pt;}
._6{width:45.964800pt;}
._5{width:63.840000pt;}
._4{width:65.201920pt;}
._2d{width:66.816000pt;}
._2{width:70.990080pt;}
._2e{width:81.600000pt;}
._24{width:102.272000pt;}
._28{width:110.848000pt;}
._29{width:112.000000pt;}
._25{width:155.498667pt;}
._26{width:156.821333pt;}
._3{width:173.497387pt;}
._21{width:182.272000pt;}
._22{width:183.616000pt;}
._2c{width:190.656000pt;}
._27{width:280.512000pt;}
._2a{width:296.576000pt;}
._23{width:509.248000pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:2.880000pt;}
.y8d{bottom:2.920000pt;}
.ya7{bottom:4.960000pt;}
.y7a{bottom:7.360000pt;}
.y95{bottom:7.840000pt;}
.y6{bottom:67.712000pt;}
.y5{bottom:85.792000pt;}
.y4{bottom:103.072000pt;}
.y3{bottom:119.872000pt;}
.y2{bottom:136.826667pt;}
.yf7{bottom:155.706667pt;}
.y51{bottom:156.346667pt;}
.y32{bottom:160.026667pt;}
.y11b{bottom:163.226667pt;}
.ycc{bottom:165.466667pt;}
.y6e{bottom:169.146667pt;}
.yb2{bottom:170.106667pt;}
.yf6{bottom:174.106667pt;}
.y31{bottom:178.426667pt;}
.y92{bottom:179.226667pt;}
.y11a{bottom:181.626667pt;}
.y50{bottom:184.026667pt;}
.ycb{bottom:189.146667pt;}
.yf5{bottom:192.506667pt;}
.y6d{bottom:196.666667pt;}
.y30{bottom:196.826667pt;}
.yb1{bottom:199.386667pt;}
.y119{bottom:200.026667pt;}
.y91{bottom:208.506667pt;}
.ydc{bottom:210.746667pt;}
.yf4{bottom:210.906667pt;}
.y4f{bottom:211.546667pt;}
.yca{bottom:212.186667pt;}
.y2f{bottom:215.226667pt;}
.y118{bottom:218.426667pt;}
.y6c{bottom:224.346667pt;}
.yc9{bottom:227.546667pt;}
.yb0{bottom:228.666667pt;}
.yf3{bottom:229.306667pt;}
.y2e{bottom:233.626667pt;}
.y117{bottom:236.826667pt;}
.y90{bottom:237.946667pt;}
.ydb{bottom:238.266667pt;}
.y4e{bottom:239.066667pt;}
.yc8{bottom:246.746667pt;}
.yf2{bottom:247.706667pt;}
.y6b{bottom:251.866667pt;}
.y2d{bottom:252.026667pt;}
.y116{bottom:255.226667pt;}
.yaf{bottom:258.106667pt;}
.yda{bottom:265.946667pt;}
.yf1{bottom:266.106667pt;}
.y8e{bottom:267.226667pt;}
.y2c{bottom:270.426667pt;}
.y4d{bottom:272.026667pt;}
.y115{bottom:273.626667pt;}
.yc7{bottom:276.026667pt;}
.yf0{bottom:284.506667pt;}
.y6a{bottom:284.826667pt;}
.yae{bottom:287.386667pt;}
.y2b{bottom:288.826667pt;}
.y114{bottom:292.026667pt;}
.yd9{bottom:293.466667pt;}
.y8c{bottom:296.506667pt;}
.y4c{bottom:299.746667pt;}
.yef{bottom:302.946667pt;}
.yc6{bottom:305.506667pt;}
.y2a{bottom:307.266667pt;}
.y113{bottom:310.466667pt;}
.y69{bottom:312.546667pt;}
.yad{bottom:316.706667pt;}
.yd8{bottom:321.186667pt;}
.yee{bottom:321.346667pt;}
.y8b{bottom:323.426667pt;}
.y29{bottom:325.666667pt;}
.y4b{bottom:327.266667pt;}
.y78{bottom:328.226667pt;}
.y112{bottom:328.866667pt;}
.yc5{bottom:334.786667pt;}
.yed{bottom:339.746667pt;}
.y68{bottom:340.066667pt;}
.y28{bottom:344.066667pt;}
.yac{bottom:346.146667pt;}
.y77{bottom:346.626667pt;}
.y111{bottom:347.266667pt;}
.yd7{bottom:348.706667pt;}
.y4a{bottom:354.946667pt;}
.yec{bottom:358.146667pt;}
.y27{bottom:362.466667pt;}
.yc4{bottom:364.066667pt;}
.y76{bottom:364.386667pt;}
.y110{bottom:365.666667pt;}
.y67{bottom:373.026667pt;}
.yab{bottom:375.426667pt;}
.yd6{bottom:376.386667pt;}
.y75{bottom:376.706667pt;}
.y26{bottom:380.866667pt;}
.yeb{bottom:382.306667pt;}
.y49{bottom:382.466667pt;}
.y10f{bottom:389.506667pt;}
.y8a{bottom:391.906667pt;}
.yc3{bottom:393.506667pt;}
.y25{bottom:399.266667pt;}
.y66{bottom:400.706667pt;}
.yd5{bottom:403.906667pt;}
.yaa{bottom:404.706667pt;}
.y10e{bottom:407.906667pt;}
.y48{bottom:410.146667pt;}
.yea{bottom:411.266667pt;}
.y24{bottom:417.666667pt;}
.yc2{bottom:422.786667pt;}
.y10d{bottom:426.306667pt;}
.y89{bottom:426.786667pt;}
.y65{bottom:428.226667pt;}
.yd4{bottom:431.586667pt;}
.ya9{bottom:434.146667pt;}
.y23{bottom:436.066667pt;}
.y47{bottom:437.666667pt;}
.ye9{bottom:438.946667pt;}
.y10c{bottom:444.706667pt;}
.yc1{bottom:453.666667pt;}
.y22{bottom:454.466667pt;}
.y88{bottom:455.746667pt;}
.y64{bottom:455.906667pt;}
.yd3{bottom:459.106667pt;}
.ya8{bottom:463.426667pt;}
.y46{bottom:465.346667pt;}
.ye8{bottom:466.466667pt;}
.y10b{bottom:468.386667pt;}
.y21{bottom:472.866667pt;}
.yc0{bottom:486.466667pt;}
.yd2{bottom:486.786667pt;}
.y63{bottom:488.706667pt;}
.y87{bottom:491.106667pt;}
.y20{bottom:491.266667pt;}
.ya6{bottom:492.706667pt;}
.y45{bottom:492.866667pt;}
.ye7{bottom:494.146667pt;}
.y10a{bottom:505.186667pt;}
.y1f{bottom:509.666667pt;}
.ybf{bottom:514.146667pt;}
.yd1{bottom:514.306667pt;}
.y62{bottom:516.386667pt;}
.ye6{bottom:518.306667pt;}
.y44{bottom:520.546667pt;}
.y86{bottom:522.306667pt;}
.y109{bottom:523.586667pt;}
.ya5{bottom:524.226667pt;}
.y79{bottom:524.866667pt;}
.y1e{bottom:528.066667pt;}
.ybe{bottom:537.853333pt;}
.yd0{bottom:542.013333pt;}
.y61{bottom:543.933333pt;}
.y1d{bottom:546.493333pt;}
.ye5{bottom:547.293333pt;}
.y43{bottom:548.093333pt;}
.y85{bottom:553.533333pt;}
.ybd{bottom:555.613333pt;}
.y108{bottom:560.413333pt;}
.y1c{bottom:564.893333pt;}
.ycf{bottom:569.533333pt;}
.ybc{bottom:570.973333pt;}
.y60{bottom:571.613333pt;}
.y42{bottom:575.773333pt;}
.y107{bottom:578.813333pt;}
.ye4{bottom:580.253333pt;}
.y84{bottom:582.493333pt;}
.y74{bottom:582.653333pt;}
.ya4{bottom:582.813333pt;}
.y1b{bottom:583.293333pt;}
.ybb{bottom:588.733333pt;}
.y106{bottom:597.213333pt;}
.y5f{bottom:599.133333pt;}
.y73{bottom:601.053333pt;}
.y1a{bottom:601.693333pt;}
.yce{bottom:602.493333pt;}
.y41{bottom:603.293333pt;}
.ye3{bottom:607.773333pt;}
.y83{bottom:610.013333pt;}
.ya3{bottom:612.253333pt;}
.y105{bottom:615.613333pt;}
.y19{bottom:620.093333pt;}
.y5e{bottom:623.293333pt;}
.y72{bottom:624.733333pt;}
.ycd{bottom:630.173333pt;}
.y104{bottom:634.013333pt;}
.ye2{bottom:635.453333pt;}
.y40{bottom:636.253333pt;}
.y82{bottom:637.693333pt;}
.y18{bottom:638.493333pt;}
.ya2{bottom:641.533333pt;}
.y5d{bottom:652.413333pt;}
.y17{bottom:656.893333pt;}
.y71{bottom:657.693333pt;}
.ye1{bottom:662.973333pt;}
.y3f{bottom:663.773333pt;}
.y81{bottom:665.213333pt;}
.ya1{bottom:670.813333pt;}
.y16{bottom:675.293333pt;}
.y103{bottom:676.093333pt;}
.y5c{bottom:685.373333pt;}
.ye0{bottom:690.653333pt;}
.y3e{bottom:691.453333pt;}
.y15{bottom:693.693333pt;}
.y102{bottom:694.493333pt;}
.y80{bottom:698.173333pt;}
.ya0{bottom:700.253333pt;}
.y14{bottom:712.093333pt;}
.y5b{bottom:712.893333pt;}
.ydf{bottom:718.173333pt;}
.y3d{bottom:718.973333pt;}
.y7f{bottom:725.693333pt;}
.y9f{bottom:729.533333pt;}
.y13{bottom:730.493333pt;}
.y101{bottom:731.293333pt;}
.y5a{bottom:740.573333pt;}
.yde{bottom:745.853333pt;}
.y3c{bottom:746.653333pt;}
.y12{bottom:748.893333pt;}
.y100{bottom:749.693333pt;}
.y7e{bottom:753.373333pt;}
.y9e{bottom:756.413333pt;}
.y11{bottom:767.293333pt;}
.y59{bottom:768.093333pt;}
.ydd{bottom:773.373333pt;}
.y3b{bottom:774.213333pt;}
.y7d{bottom:780.933333pt;}
.y10{bottom:785.733333pt;}
.yff{bottom:786.533333pt;}
.y70{bottom:795.813333pt;}
.y7c{bottom:799.333333pt;}
.y9d{bottom:799.973333pt;}
.y58{bottom:801.093333pt;}
.y3a{bottom:801.893333pt;}
.yf{bottom:804.133333pt;}
.yfe{bottom:804.933333pt;}
.y7b{bottom:814.213333pt;}
.y6f{bottom:823.333333pt;}
.ye{bottom:823.653333pt;}
.y9c{bottom:827.653333pt;}
.y57{bottom:828.613333pt;}
.y39{bottom:829.413333pt;}
.yfd{bottom:841.733333pt;}
.yba{bottom:843.973333pt;}
.yd{bottom:848.293333pt;}
.y9b{bottom:855.173333pt;}
.y56{bottom:856.293333pt;}
.y38{bottom:857.093333pt;}
.yb9{bottom:862.373333pt;}
.yfc{bottom:865.413333pt;}
.yc{bottom:872.773333pt;}
.y55{bottom:883.813333pt;}
.y37{bottom:884.613333pt;}
.y9a{bottom:889.573333pt;}
.yb8{bottom:890.053333pt;}
.yb{bottom:897.253333pt;}
.yfb{bottom:902.213333pt;}
.y99{bottom:907.333333pt;}
.y54{bottom:911.493333pt;}
.y36{bottom:912.293333pt;}
.yb7{bottom:917.573333pt;}
.yfa{bottom:920.613333pt;}
.ya{bottom:921.893333pt;}
.y98{bottom:927.173333pt;}
.y53{bottom:939.013333pt;}
.y35{bottom:939.813333pt;}
.yb6{bottom:945.253333pt;}
.y9{bottom:946.373333pt;}
.y94{bottom:953.413333pt;}
.y93{bottom:953.893333pt;}
.y97{bottom:956.453333pt;}
.yf9{bottom:957.413333pt;}
.yb5{bottom:963.653333pt;}
.y52{bottom:966.693333pt;}
.y34{bottom:967.493333pt;}
.y8{bottom:970.853333pt;}
.yf8{bottom:975.813333pt;}
.yb4{bottom:981.413333pt;}
.y96{bottom:985.733333pt;}
.y33{bottom:991.653333pt;}
.y7{bottom:994.213333pt;}
.yb3{bottom:996.773333pt;}
.y1{bottom:1096.800000pt;}
.h10{height:15.200000pt;}
.h13{height:15.232000pt;}
.he{height:15.360000pt;}
.hd{height:15.392000pt;}
.h14{height:17.440000pt;}
.h11{height:42.400000pt;}
.ha{height:42.432000pt;}
.h12{height:42.880000pt;}
.hf{height:47.180312pt;}
.h9{height:47.621250pt;}
.h5{height:48.781250pt;}
.h4{height:49.622500pt;}
.hc{height:51.480769pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h15{height:62.761250pt;}
.h7{height:64.879063pt;}
.h8{height:66.507188pt;}
.h6{height:75.602187pt;}
.hb{height:108.563437pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:42.912000pt;}
.w3{width:43.072000pt;}
.w4{width:47.872000pt;}
.w9{width:48.032000pt;}
.w7{width:67.680000pt;}
.w6{width:90.272000pt;}
.wc{width:94.112000pt;}
.w5{width:106.720000pt;}
.wb{width:122.240000pt;}
.wf{width:145.146667pt;}
.w10{width:160.026667pt;}
.wa{width:236.066667pt;}
.wd{width:298.106667pt;}
.we{width:305.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.720000pt;}
.xd{left:9.640000pt;}
.xf{left:11.560000pt;}
.x17{left:17.280000pt;}
.x28{left:20.160000pt;}
.x29{left:21.760000pt;}
.x19{left:23.066667pt;}
.x23{left:27.040000pt;}
.x14{left:29.120000pt;}
.x25{left:30.240000pt;}
.x1a{left:33.760000pt;}
.x1b{left:44.986667pt;}
.x26{left:46.760000pt;}
.x27{left:60.960000pt;}
.x33{left:66.106667pt;}
.x35{left:73.160000pt;}
.x21{left:93.800000pt;}
.x2{left:113.471988pt;}
.x2a{left:115.551988pt;}
.x30{left:124.634667pt;}
.x2d{left:127.711988pt;}
.x32{left:136.186667pt;}
.x2f{left:148.026655pt;}
.x4{left:151.226655pt;}
.x11{left:161.466655pt;}
.x8{left:162.906655pt;}
.xb{left:165.146655pt;}
.x6{left:170.106655pt;}
.x20{left:179.546667pt;}
.x36{left:205.946655pt;}
.x1f{left:212.826655pt;}
.x9{left:228.026655pt;}
.x5{left:243.866655pt;}
.x1c{left:245.946667pt;}
.xc{left:247.426655pt;}
.x7{left:264.226655pt;}
.x1e{left:267.106655pt;}
.x13{left:298.626667pt;}
.x2e{left:307.906655pt;}
.x12{left:314.626655pt;}
.x2b{left:325.666655pt;}
.x15{left:405.986667pt;}
.x31{left:412.226667pt;}
.x22{left:416.253333pt;}
.x1{left:434.813322pt;}
.xa{left:438.973322pt;}
.x16{left:496.893333pt;}
.x24{left:539.133333pt;}
.x34{left:558.173333pt;}
.x1d{left:571.773333pt;}
.xe{left:576.573333pt;}
.x2c{left:594.533322pt;}
.x10{left:628.773322pt;}
.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; }
  