
    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_e05cc184ed10f3c88d6ee9ed.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_951517984daab90f3b277594.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f9bc3d2ad77e01d8df42d9ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b593fe6424dd519c80e7cd58.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_14282d25cc181eb47fe1b753.woff2')format("woff");}.ff6{font-family:ff6;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: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_d99cbdf391cf4275b56e4660.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d26ceceb37e5e66b22195f72.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.262200px;}
.lsd{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.152400px;}
.ls11{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.262080px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.900000px;}
.ls6{letter-spacing:1.620000px;}
.ls7{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.600000px;}
.ls16{letter-spacing:7.380000px;}
.ls8{letter-spacing:7.920000px;}
.ls9{letter-spacing:12.960000px;}
.ls1{letter-spacing:13.680000px;}
.lsa{letter-spacing:27.660000px;}
.ls5{letter-spacing:64.421280px;}
.lsb{letter-spacing:193.320000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.712000px;}
.wse{word-spacing:-16.712400px;}
.ws8{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.297800px;}
.ws7{word-spacing:-16.254600px;}
.wsa{word-spacing:-14.940000px;}
.wsf{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.440000px;}
.wsd{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-4.782720px;}
._f{margin-left:-3.660000px;}
._7{margin-left:-2.556000px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._e{width:2.735040px;}
._15{width:4.193280px;}
._14{width:5.256000px;}
._11{width:6.336000px;}
._10{width:7.560000px;}
._18{width:8.781120px;}
._16{width:10.440000px;}
._19{width:11.477760px;}
._12{width:12.593280px;}
._d{width:13.752000px;}
._b{width:15.168000px;}
._3{width:16.450080px;}
._2{width:17.681520px;}
._4{width:19.872720px;}
._1b{width:20.938560px;}
._1a{width:22.025760px;}
._13{width:23.112000px;}
._17{width:24.384000px;}
._c{width:25.704000px;}
._a{width:27.674640px;}
._20{width:29.640000px;}
._1c{width:30.672000px;}
._1e{width:38.726400px;}
._1f{width:40.512000px;}
._8{width:42.351600px;}
._9{width:43.570800px;}
._6{width:59.400720px;}
._5{width:60.433200px;}
._21{width:196.488000px;}
._22{width:197.496000px;}
.fc4{color:rgb(238,0,0);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(27,27,27);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:3.600000px;}
.yb4{bottom:3.780000px;}
.yb6{bottom:7.380000px;}
.y8f{bottom:9.540000px;}
.y7a{bottom:12.240000px;}
.y78{bottom:12.420000px;}
.ya6{bottom:12.960000px;}
.ya1{bottom:13.140000px;}
.y92{bottom:15.660000px;}
.yb3{bottom:22.680000px;}
.y88{bottom:34.200000px;}
.y93{bottom:34.560000px;}
.y91{bottom:34.740000px;}
.y82{bottom:40.140000px;}
.y7d{bottom:40.170000px;}
.y85{bottom:40.185000px;}
.ya5{bottom:41.400000px;}
.y81{bottom:68.040000px;}
.y7c{bottom:68.070000px;}
.y84{bottom:68.085000px;}
.ya4{bottom:69.840000px;}
.y6{bottom:82.116000px;}
.ya3{bottom:98.280000px;}
.y5{bottom:109.296000px;}
.y4{bottom:134.496000px;}
.y3{bottom:153.750000px;}
.y2{bottom:172.650000px;}
.yc4{bottom:200.730000px;}
.y2f{bottom:206.490000px;}
.y4c{bottom:207.390000px;}
.ye9{bottom:208.650000px;}
.y8a{bottom:211.710000px;}
.y67{bottom:214.050000px;}
.y2e{bottom:227.190000px;}
.y89{bottom:228.810000px;}
.ye8{bottom:229.350000px;}
.yc3{bottom:231.870000px;}
.y9e{bottom:232.050000px;}
.y71{bottom:237.630000px;}
.y4b{bottom:238.530000px;}
.y87{bottom:243.570000px;}
.y66{bottom:245.010000px;}
.y2d{bottom:247.890000px;}
.ye7{bottom:250.050000px;}
.yc2{bottom:262.830000px;}
.y9d{bottom:263.190000px;}
.y2c{bottom:268.590000px;}
.y4a{bottom:269.490000px;}
.ye6{bottom:270.750000px;}
.y65{bottom:276.150000px;}
.y2b{bottom:289.290000px;}
.y86{bottom:293.970000px;}
.y9c{bottom:294.150000px;}
.ye5{bottom:295.950000px;}
.y70{bottom:299.730000px;}
.y49{bottom:300.630000px;}
.y10b{bottom:305.490000px;}
.y64{bottom:307.110000px;}
.y2a{bottom:309.990000px;}
.ye4{bottom:317.370000px;}
.y83{bottom:322.590000px;}
.yc1{bottom:324.930000px;}
.y9b{bottom:325.290000px;}
.y29{bottom:330.690000px;}
.y48{bottom:331.590000px;}
.y10a{bottom:332.310000px;}
.ye3{bottom:338.115000px;}
.y63{bottom:338.295000px;}
.y28{bottom:351.435000px;}
.y109{bottom:353.055000px;}
.yc0{bottom:356.115000px;}
.y9a{bottom:356.295000px;}
.ye2{bottom:358.815000px;}
.y6f{bottom:361.875000px;}
.y47{bottom:362.775000px;}
.y62{bottom:369.255000px;}
.y27{bottom:372.135000px;}
.y108{bottom:373.755000px;}
.ybf{bottom:376.815000px;}
.ye1{bottom:384.015000px;}
.y99{bottom:387.435000px;}
.y26{bottom:392.835000px;}
.y46{bottom:393.735000px;}
.ybe{bottom:396.435000px;}
.y107{bottom:398.955000px;}
.y61{bottom:400.395000px;}
.ye0{bottom:405.255000px;}
.y80{bottom:406.875000px;}
.ybd{bottom:411.915000px;}
.y25{bottom:413.535000px;}
.y98{bottom:418.395000px;}
.y106{bottom:420.195000px;}
.y6e{bottom:423.975000px;}
.y45{bottom:424.875000px;}
.ybc{bottom:425.235000px;}
.ydf{bottom:425.955000px;}
.y60{bottom:431.355000px;}
.y24{bottom:434.235000px;}
.y105{bottom:440.895000px;}
.ybb{bottom:445.035000px;}
.yde{bottom:446.655000px;}
.y97{bottom:449.535000px;}
.y23{bottom:454.935000px;}
.y44{bottom:455.835000px;}
.y5f{bottom:462.495000px;}
.yba{bottom:464.655000px;}
.y104{bottom:466.095000px;}
.ydd{bottom:473.295000px;}
.y22{bottom:475.635000px;}
.yb9{bottom:484.455000px;}
.y6d{bottom:486.075000px;}
.y96{bottom:486.615000px;}
.y43{bottom:486.975000px;}
.y103{bottom:487.335000px;}
.y7f{bottom:491.115000px;}
.y5e{bottom:493.455000px;}
.y21{bottom:496.335000px;}
.ydc{bottom:500.115000px;}
.yb8{bottom:504.075000px;}
.y95{bottom:506.595000px;}
.y102{bottom:508.035000px;}
.y20{bottom:517.035000px;}
.y42{bottom:517.935000px;}
.y7e{bottom:519.555000px;}
.ydb{bottom:520.815000px;}
.y94{bottom:523.875000px;}
.y5d{bottom:524.595000px;}
.y101{bottom:528.735000px;}
.y1f{bottom:537.735000px;}
.y90{bottom:538.455000px;}
.yb5{bottom:543.675000px;}
.yda{bottom:546.015000px;}
.y6c{bottom:548.175000px;}
.y41{bottom:549.075000px;}
.y100{bottom:553.935000px;}
.y5c{bottom:555.555000px;}
.y1e{bottom:558.435000px;}
.yb2{bottom:567.075000px;}
.yd9{bottom:567.255000px;}
.yff{bottom:575.355000px;}
.y7b{bottom:576.795000px;}
.y1d{bottom:579.135000px;}
.y40{bottom:580.035000px;}
.y5b{bottom:586.515000px;}
.yd8{bottom:587.955000px;}
.y8e{bottom:589.215000px;}
.yfe{bottom:596.055000px;}
.y1c{bottom:599.835000px;}
.yd7{bottom:608.685000px;}
.y6b{bottom:610.305000px;}
.y3f{bottom:611.205000px;}
.yb1{bottom:615.885000px;}
.yfd{bottom:616.785000px;}
.y5a{bottom:617.685000px;}
.y1b{bottom:620.565000px;}
.y8d{bottom:624.885000px;}
.yd6{bottom:629.385000px;}
.yb0{bottom:636.585000px;}
.yfc{bottom:637.485000px;}
.y1a{bottom:641.265000px;}
.y3e{bottom:642.165000px;}
.y8c{bottom:645.765000px;}
.y59{bottom:648.645000px;}
.yd5{bottom:650.085000px;}
.y79{bottom:661.065000px;}
.y19{bottom:661.965000px;}
.yfb{bottom:662.685000px;}
.y6a{bottom:672.405000px;}
.y3d{bottom:673.305000px;}
.yaf{bottom:673.665000px;}
.yd4{bottom:675.285000px;}
.y8b{bottom:677.805000px;}
.y58{bottom:679.785000px;}
.y18{bottom:682.665000px;}
.yfa{bottom:683.925000px;}
.y77{bottom:689.505000px;}
.yd3{bottom:696.525000px;}
.y17{bottom:703.365000px;}
.y3c{bottom:704.265000px;}
.yae{bottom:704.625000px;}
.y57{bottom:710.745000px;}
.yd2{bottom:717.225000px;}
.y16{bottom:724.065000px;}
.y76{bottom:728.025000px;}
.yf9{bottom:729.825000px;}
.y69{bottom:734.505000px;}
.y3b{bottom:735.405000px;}
.yad{bottom:735.765000px;}
.yd1{bottom:737.925000px;}
.y56{bottom:741.885000px;}
.y15{bottom:744.765000px;}
.yf8{bottom:751.065000px;}
.yd0{bottom:763.125000px;}
.y75{bottom:765.105000px;}
.y14{bottom:765.465000px;}
.y3a{bottom:766.365000px;}
.yac{bottom:766.725000px;}
.y55{bottom:769.065000px;}
.yf7{bottom:771.765000px;}
.ycf{bottom:784.545000px;}
.y13{bottom:786.165000px;}
.yf6{bottom:792.465000px;}
.y74{bottom:796.245000px;}
.y68{bottom:796.605000px;}
.y39{bottom:797.505000px;}
.yab{bottom:797.865000px;}
.y54{bottom:800.565000px;}
.yce{bottom:805.245000px;}
.y12{bottom:806.865000px;}
.yf5{bottom:817.665000px;}
.y73{bottom:823.425000px;}
.ycd{bottom:825.945000px;}
.y11{bottom:827.565000px;}
.y38{bottom:828.465000px;}
.yaa{bottom:828.825000px;}
.yf4{bottom:838.905000px;}
.ycc{bottom:847.185000px;}
.y10{bottom:848.265000px;}
.ya9{bottom:849.525000px;}
.y53{bottom:858.705000px;}
.y37{bottom:859.605000px;}
.y72{bottom:862.845000px;}
.yf{bottom:868.965000px;}
.ya8{bottom:869.505000px;}
.ycb{bottom:869.685000px;}
.yf3{bottom:880.350000px;}
.ya7{bottom:886.830000px;}
.y52{bottom:889.710000px;}
.y36{bottom:890.610000px;}
.ye{bottom:890.970000px;}
.yca{bottom:896.550000px;}
.yf2{bottom:901.050000px;}
.ya2{bottom:901.590000px;}
.yd{bottom:918.690000px;}
.y51{bottom:920.850000px;}
.y35{bottom:921.750000px;}
.yf1{bottom:926.250000px;}
.yc9{bottom:927.690000px;}
.yc{bottom:946.230000px;}
.yf0{bottom:947.670000px;}
.y50{bottom:951.810000px;}
.y34{bottom:952.710000px;}
.yc8{bottom:958.650000px;}
.yef{bottom:968.370000px;}
.yb{bottom:972.510000px;}
.y4f{bottom:982.950000px;}
.y33{bottom:983.850000px;}
.yee{bottom:989.070000px;}
.yc7{bottom:989.790000px;}
.ya{bottom:994.470000px;}
.y4e{bottom:1013.910000px;}
.yed{bottom:1014.270000px;}
.y32{bottom:1014.810000px;}
.ya0{bottom:1016.070000px;}
.yc6{bottom:1020.750000px;}
.y9{bottom:1022.190000px;}
.yec{bottom:1035.510000px;}
.y4d{bottom:1045.050000px;}
.y31{bottom:1045.950000px;}
.y8{bottom:1049.730000px;}
.yc5{bottom:1051.890000px;}
.y9f{bottom:1055.310000px;}
.yeb{bottom:1056.210000px;}
.y30{bottom:1073.130000px;}
.y7{bottom:1076.010000px;}
.yea{bottom:1081.410000px;}
.y1{bottom:1233.900000px;}
.h1a{height:18.900000px;}
.h1b{height:19.080000px;}
.h19{height:22.680000px;}
.h14{height:25.056000px;}
.hd{height:27.720000px;}
.hb{height:27.900000px;}
.h16{height:28.620000px;}
.h18{height:38.016000px;}
.h13{height:43.246406px;}
.h9{height:48.410156px;}
.h11{height:49.680000px;}
.h15{height:50.040000px;}
.h12{height:53.573906px;}
.h6{height:54.773438px;}
.hc{height:58.833281px;}
.h3{height:59.383125px;}
.h10{height:61.197187px;}
.h2{height:64.546875px;}
.h4{height:65.884219px;}
.ha{height:66.605977px;}
.h8{height:70.606406px;}
.h7{height:74.820586px;}
.hf{height:83.520000px;}
.he{height:83.556000px;}
.h5{height:85.052461px;}
.h17{height:113.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:92.340000px;}
.wf{width:94.176000px;}
.w6{width:97.956000px;}
.w7{width:100.980000px;}
.w4{width:102.996000px;}
.w10{width:104.760000px;}
.w9{width:119.880000px;}
.we{width:124.776000px;}
.wd{width:130.500000px;}
.wb{width:165.810000px;}
.wa{width:166.530000px;}
.wc{width:222.870000px;}
.w8{width:225.750000px;}
.w11{width:226.110000px;}
.w12{width:226.290000px;}
.w3{width:283.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x2c{left:16.380000px;}
.x27{left:46.980000px;}
.xc{left:50.220000px;}
.x29{left:52.020000px;}
.x13{left:54.180000px;}
.xe{left:56.340000px;}
.x19{left:58.320000px;}
.x28{left:59.940000px;}
.x18{left:61.920000px;}
.x12{left:63.180000px;}
.x10{left:65.520000px;}
.x17{left:67.320000px;}
.x14{left:70.245000px;}
.x15{left:71.460000px;}
.x16{left:72.720000px;}
.x20{left:78.345000px;}
.x21{left:85.890000px;}
.x1e{left:94.710000px;}
.x2{left:106.415987px;}
.x2e{left:108.585000px;}
.x2a{left:111.995987px;}
.x2f{left:115.560000px;}
.x22{left:118.475987px;}
.x1a{left:124.415987px;}
.x7{left:148.895987px;}
.x8{left:159.509987px;}
.x5{left:170.129987px;}
.x9{left:261.029987px;}
.x2b{left:275.609987px;}
.x4{left:283.754987px;}
.x6{left:301.754987px;}
.x24{left:330.015000px;}
.x1c{left:332.895000px;}
.x1b{left:346.574987px;}
.x23{left:368.714987px;}
.xb{left:390.315000px;}
.x1d{left:453.675000px;}
.x25{left:461.415000px;}
.x1{left:467.744987px;}
.xd{left:494.025000px;}
.x2d{left:560.085000px;}
.xf{left:587.085000px;}
.x1f{left:620.925000px;}
.x26{left:681.990000px;}
.x11{left:685.770000px;}
.x3{left:786.749987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.233067pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.135467pt;}
.ls11{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.232960pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls6{letter-spacing:1.440000pt;}
.ls7{letter-spacing:2.560000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls16{letter-spacing:6.560000pt;}
.ls8{letter-spacing:7.040000pt;}
.ls9{letter-spacing:11.520000pt;}
.ls1{letter-spacing:12.160000pt;}
.lsa{letter-spacing:24.586667pt;}
.ls5{letter-spacing:57.263360pt;}
.lsb{letter-spacing:171.840000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.744000pt;}
.wse{word-spacing:-14.855467pt;}
.ws8{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.486933pt;}
.ws7{word-spacing:-14.448533pt;}
.wsa{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.000000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.280000pt;}
.wsd{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-4.251307pt;}
._f{margin-left:-3.253333pt;}
._7{margin-left:-2.272000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._e{width:2.431147pt;}
._15{width:3.727360pt;}
._14{width:4.672000pt;}
._11{width:5.632000pt;}
._10{width:6.720000pt;}
._18{width:7.805440pt;}
._16{width:9.280000pt;}
._19{width:10.202453pt;}
._12{width:11.194027pt;}
._d{width:12.224000pt;}
._b{width:13.482667pt;}
._3{width:14.622293pt;}
._2{width:15.716907pt;}
._4{width:17.664640pt;}
._1b{width:18.612053pt;}
._1a{width:19.578453pt;}
._13{width:20.544000pt;}
._17{width:21.674667pt;}
._c{width:22.848000pt;}
._a{width:24.599680pt;}
._20{width:26.346667pt;}
._1c{width:27.264000pt;}
._1e{width:34.423467pt;}
._1f{width:36.010667pt;}
._8{width:37.645867pt;}
._9{width:38.729600pt;}
._6{width:52.800640pt;}
._5{width:53.718400pt;}
._21{width:174.656000pt;}
._22{width:175.552000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:3.200000pt;}
.yb4{bottom:3.360000pt;}
.yb6{bottom:6.560000pt;}
.y8f{bottom:8.480000pt;}
.y7a{bottom:10.880000pt;}
.y78{bottom:11.040000pt;}
.ya6{bottom:11.520000pt;}
.ya1{bottom:11.680000pt;}
.y92{bottom:13.920000pt;}
.yb3{bottom:20.160000pt;}
.y88{bottom:30.400000pt;}
.y93{bottom:30.720000pt;}
.y91{bottom:30.880000pt;}
.y82{bottom:35.680000pt;}
.y7d{bottom:35.706667pt;}
.y85{bottom:35.720000pt;}
.ya5{bottom:36.800000pt;}
.y81{bottom:60.480000pt;}
.y7c{bottom:60.506667pt;}
.y84{bottom:60.520000pt;}
.ya4{bottom:62.080000pt;}
.y6{bottom:72.992000pt;}
.ya3{bottom:87.360000pt;}
.y5{bottom:97.152000pt;}
.y4{bottom:119.552000pt;}
.y3{bottom:136.666667pt;}
.y2{bottom:153.466667pt;}
.yc4{bottom:178.426667pt;}
.y2f{bottom:183.546667pt;}
.y4c{bottom:184.346667pt;}
.ye9{bottom:185.466667pt;}
.y8a{bottom:188.186667pt;}
.y67{bottom:190.266667pt;}
.y2e{bottom:201.946667pt;}
.y89{bottom:203.386667pt;}
.ye8{bottom:203.866667pt;}
.yc3{bottom:206.106667pt;}
.y9e{bottom:206.266667pt;}
.y71{bottom:211.226667pt;}
.y4b{bottom:212.026667pt;}
.y87{bottom:216.506667pt;}
.y66{bottom:217.786667pt;}
.y2d{bottom:220.346667pt;}
.ye7{bottom:222.266667pt;}
.yc2{bottom:233.626667pt;}
.y9d{bottom:233.946667pt;}
.y2c{bottom:238.746667pt;}
.y4a{bottom:239.546667pt;}
.ye6{bottom:240.666667pt;}
.y65{bottom:245.466667pt;}
.y2b{bottom:257.146667pt;}
.y86{bottom:261.306667pt;}
.y9c{bottom:261.466667pt;}
.ye5{bottom:263.066667pt;}
.y70{bottom:266.426667pt;}
.y49{bottom:267.226667pt;}
.y10b{bottom:271.546667pt;}
.y64{bottom:272.986667pt;}
.y2a{bottom:275.546667pt;}
.ye4{bottom:282.106667pt;}
.y83{bottom:286.746667pt;}
.yc1{bottom:288.826667pt;}
.y9b{bottom:289.146667pt;}
.y29{bottom:293.946667pt;}
.y48{bottom:294.746667pt;}
.y10a{bottom:295.386667pt;}
.ye3{bottom:300.546667pt;}
.y63{bottom:300.706667pt;}
.y28{bottom:312.386667pt;}
.y109{bottom:313.826667pt;}
.yc0{bottom:316.546667pt;}
.y9a{bottom:316.706667pt;}
.ye2{bottom:318.946667pt;}
.y6f{bottom:321.666667pt;}
.y47{bottom:322.466667pt;}
.y62{bottom:328.226667pt;}
.y27{bottom:330.786667pt;}
.y108{bottom:332.226667pt;}
.ybf{bottom:334.946667pt;}
.ye1{bottom:341.346667pt;}
.y99{bottom:344.386667pt;}
.y26{bottom:349.186667pt;}
.y46{bottom:349.986667pt;}
.ybe{bottom:352.386667pt;}
.y107{bottom:354.626667pt;}
.y61{bottom:355.906667pt;}
.ye0{bottom:360.226667pt;}
.y80{bottom:361.666667pt;}
.ybd{bottom:366.146667pt;}
.y25{bottom:367.586667pt;}
.y98{bottom:371.906667pt;}
.y106{bottom:373.506667pt;}
.y6e{bottom:376.866667pt;}
.y45{bottom:377.666667pt;}
.ybc{bottom:377.986667pt;}
.ydf{bottom:378.626667pt;}
.y60{bottom:383.426667pt;}
.y24{bottom:385.986667pt;}
.y105{bottom:391.906667pt;}
.ybb{bottom:395.586667pt;}
.yde{bottom:397.026667pt;}
.y97{bottom:399.586667pt;}
.y23{bottom:404.386667pt;}
.y44{bottom:405.186667pt;}
.y5f{bottom:411.106667pt;}
.yba{bottom:413.026667pt;}
.y104{bottom:414.306667pt;}
.ydd{bottom:420.706667pt;}
.y22{bottom:422.786667pt;}
.yb9{bottom:430.626667pt;}
.y6d{bottom:432.066667pt;}
.y96{bottom:432.546667pt;}
.y43{bottom:432.866667pt;}
.y103{bottom:433.186667pt;}
.y7f{bottom:436.546667pt;}
.y5e{bottom:438.626667pt;}
.y21{bottom:441.186667pt;}
.ydc{bottom:444.546667pt;}
.yb8{bottom:448.066667pt;}
.y95{bottom:450.306667pt;}
.y102{bottom:451.586667pt;}
.y20{bottom:459.586667pt;}
.y42{bottom:460.386667pt;}
.y7e{bottom:461.826667pt;}
.ydb{bottom:462.946667pt;}
.y94{bottom:465.666667pt;}
.y5d{bottom:466.306667pt;}
.y101{bottom:469.986667pt;}
.y1f{bottom:477.986667pt;}
.y90{bottom:478.626667pt;}
.yb5{bottom:483.266667pt;}
.yda{bottom:485.346667pt;}
.y6c{bottom:487.266667pt;}
.y41{bottom:488.066667pt;}
.y100{bottom:492.386667pt;}
.y5c{bottom:493.826667pt;}
.y1e{bottom:496.386667pt;}
.yb2{bottom:504.066667pt;}
.yd9{bottom:504.226667pt;}
.yff{bottom:511.426667pt;}
.y7b{bottom:512.706667pt;}
.y1d{bottom:514.786667pt;}
.y40{bottom:515.586667pt;}
.y5b{bottom:521.346667pt;}
.yd8{bottom:522.626667pt;}
.y8e{bottom:523.746667pt;}
.yfe{bottom:529.826667pt;}
.y1c{bottom:533.186667pt;}
.yd7{bottom:541.053333pt;}
.y6b{bottom:542.493333pt;}
.y3f{bottom:543.293333pt;}
.yb1{bottom:547.453333pt;}
.yfd{bottom:548.253333pt;}
.y5a{bottom:549.053333pt;}
.y1b{bottom:551.613333pt;}
.y8d{bottom:555.453333pt;}
.yd6{bottom:559.453333pt;}
.yb0{bottom:565.853333pt;}
.yfc{bottom:566.653333pt;}
.y1a{bottom:570.013333pt;}
.y3e{bottom:570.813333pt;}
.y8c{bottom:574.013333pt;}
.y59{bottom:576.573333pt;}
.yd5{bottom:577.853333pt;}
.y79{bottom:587.613333pt;}
.y19{bottom:588.413333pt;}
.yfb{bottom:589.053333pt;}
.y6a{bottom:597.693333pt;}
.y3d{bottom:598.493333pt;}
.yaf{bottom:598.813333pt;}
.yd4{bottom:600.253333pt;}
.y8b{bottom:602.493333pt;}
.y58{bottom:604.253333pt;}
.y18{bottom:606.813333pt;}
.yfa{bottom:607.933333pt;}
.y77{bottom:612.893333pt;}
.yd3{bottom:619.133333pt;}
.y17{bottom:625.213333pt;}
.y3c{bottom:626.013333pt;}
.yae{bottom:626.333333pt;}
.y57{bottom:631.773333pt;}
.yd2{bottom:637.533333pt;}
.y16{bottom:643.613333pt;}
.y76{bottom:647.133333pt;}
.yf9{bottom:648.733333pt;}
.y69{bottom:652.893333pt;}
.y3b{bottom:653.693333pt;}
.yad{bottom:654.013333pt;}
.yd1{bottom:655.933333pt;}
.y56{bottom:659.453333pt;}
.y15{bottom:662.013333pt;}
.yf8{bottom:667.613333pt;}
.yd0{bottom:678.333333pt;}
.y75{bottom:680.093333pt;}
.y14{bottom:680.413333pt;}
.y3a{bottom:681.213333pt;}
.yac{bottom:681.533333pt;}
.y55{bottom:683.613333pt;}
.yf7{bottom:686.013333pt;}
.ycf{bottom:697.373333pt;}
.y13{bottom:698.813333pt;}
.yf6{bottom:704.413333pt;}
.y74{bottom:707.773333pt;}
.y68{bottom:708.093333pt;}
.y39{bottom:708.893333pt;}
.yab{bottom:709.213333pt;}
.y54{bottom:711.613333pt;}
.yce{bottom:715.773333pt;}
.y12{bottom:717.213333pt;}
.yf5{bottom:726.813333pt;}
.y73{bottom:731.933333pt;}
.ycd{bottom:734.173333pt;}
.y11{bottom:735.613333pt;}
.y38{bottom:736.413333pt;}
.yaa{bottom:736.733333pt;}
.yf4{bottom:745.693333pt;}
.ycc{bottom:753.053333pt;}
.y10{bottom:754.013333pt;}
.ya9{bottom:755.133333pt;}
.y53{bottom:763.293333pt;}
.y37{bottom:764.093333pt;}
.y72{bottom:766.973333pt;}
.yf{bottom:772.413333pt;}
.ya8{bottom:772.893333pt;}
.ycb{bottom:773.053333pt;}
.yf3{bottom:782.533333pt;}
.ya7{bottom:788.293333pt;}
.y52{bottom:790.853333pt;}
.y36{bottom:791.653333pt;}
.ye{bottom:791.973333pt;}
.yca{bottom:796.933333pt;}
.yf2{bottom:800.933333pt;}
.ya2{bottom:801.413333pt;}
.yd{bottom:816.613333pt;}
.y51{bottom:818.533333pt;}
.y35{bottom:819.333333pt;}
.yf1{bottom:823.333333pt;}
.yc9{bottom:824.613333pt;}
.yc{bottom:841.093333pt;}
.yf0{bottom:842.373333pt;}
.y50{bottom:846.053333pt;}
.y34{bottom:846.853333pt;}
.yc8{bottom:852.133333pt;}
.yef{bottom:860.773333pt;}
.yb{bottom:864.453333pt;}
.y4f{bottom:873.733333pt;}
.y33{bottom:874.533333pt;}
.yee{bottom:879.173333pt;}
.yc7{bottom:879.813333pt;}
.ya{bottom:883.973333pt;}
.y4e{bottom:901.253333pt;}
.yed{bottom:901.573333pt;}
.y32{bottom:902.053333pt;}
.ya0{bottom:903.173333pt;}
.yc6{bottom:907.333333pt;}
.y9{bottom:908.613333pt;}
.yec{bottom:920.453333pt;}
.y4d{bottom:928.933333pt;}
.y31{bottom:929.733333pt;}
.y8{bottom:933.093333pt;}
.yc5{bottom:935.013333pt;}
.y9f{bottom:938.053333pt;}
.yeb{bottom:938.853333pt;}
.y30{bottom:953.893333pt;}
.y7{bottom:956.453333pt;}
.yea{bottom:961.253333pt;}
.y1{bottom:1096.800000pt;}
.h1a{height:16.800000pt;}
.h1b{height:16.960000pt;}
.h19{height:20.160000pt;}
.h14{height:22.272000pt;}
.hd{height:24.640000pt;}
.hb{height:24.800000pt;}
.h16{height:25.440000pt;}
.h18{height:33.792000pt;}
.h13{height:38.441250pt;}
.h9{height:43.031250pt;}
.h11{height:44.160000pt;}
.h15{height:44.480000pt;}
.h12{height:47.621250pt;}
.h6{height:48.687500pt;}
.hc{height:52.296250pt;}
.h3{height:52.785000pt;}
.h10{height:54.397500pt;}
.h2{height:57.375000pt;}
.h4{height:58.563750pt;}
.ha{height:59.205313pt;}
.h8{height:62.761250pt;}
.h7{height:66.507188pt;}
.hf{height:74.240000pt;}
.he{height:74.272000pt;}
.h5{height:75.602187pt;}
.h17{height:101.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:82.080000pt;}
.wf{width:83.712000pt;}
.w6{width:87.072000pt;}
.w7{width:89.760000pt;}
.w4{width:91.552000pt;}
.w10{width:93.120000pt;}
.w9{width:106.560000pt;}
.we{width:110.912000pt;}
.wd{width:116.000000pt;}
.wb{width:147.386667pt;}
.wa{width:148.026667pt;}
.wc{width:198.106667pt;}
.w8{width:200.666667pt;}
.w11{width:200.986667pt;}
.w12{width:201.146667pt;}
.w3{width:251.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x2c{left:14.560000pt;}
.x27{left:41.760000pt;}
.xc{left:44.640000pt;}
.x29{left:46.240000pt;}
.x13{left:48.160000pt;}
.xe{left:50.080000pt;}
.x19{left:51.840000pt;}
.x28{left:53.280000pt;}
.x18{left:55.040000pt;}
.x12{left:56.160000pt;}
.x10{left:58.240000pt;}
.x17{left:59.840000pt;}
.x14{left:62.440000pt;}
.x15{left:63.520000pt;}
.x16{left:64.640000pt;}
.x20{left:69.640000pt;}
.x21{left:76.346667pt;}
.x1e{left:84.186667pt;}
.x2{left:94.591988pt;}
.x2e{left:96.520000pt;}
.x2a{left:99.551988pt;}
.x2f{left:102.720000pt;}
.x22{left:105.311988pt;}
.x1a{left:110.591988pt;}
.x7{left:132.351988pt;}
.x8{left:141.786655pt;}
.x5{left:151.226655pt;}
.x9{left:232.026655pt;}
.x2b{left:244.986655pt;}
.x4{left:252.226655pt;}
.x6{left:268.226655pt;}
.x24{left:293.346667pt;}
.x1c{left:295.906667pt;}
.x1b{left:308.066655pt;}
.x23{left:327.746655pt;}
.xb{left:346.946667pt;}
.x1d{left:403.266667pt;}
.x25{left:410.146667pt;}
.x1{left:415.773322pt;}
.xd{left:439.133333pt;}
.x2d{left:497.853333pt;}
.xf{left:521.853333pt;}
.x1f{left:551.933333pt;}
.x26{left:606.213333pt;}
.x11{left:609.573333pt;}
.x3{left:699.333322pt;}
}




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