
    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_cf9b3381dbca15b8cbbca6e6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.139160;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_fe718c7bc71fee82105c715d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_e6367d48fee819305cd2d33d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_66fc5528a5566a7fa2e682f0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5f97cd9947e276a6a247758d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3758d965c76843d69d20052d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_fec04f7e5698adb06b519a18.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0053d599f1c93e4fd7404d79.woff')format("woff");}.ff8{font-family:ff8;line-height:1.139160;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_035750ce1eb7e04c7a7e1dac.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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;}
.ls4{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.270600px;}
.ls6{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.187200px;}
.lse{letter-spacing:-0.184200px;}
.ls12{letter-spacing:-0.097800px;}
.ls8{letter-spacing:-0.094800px;}
.ls3{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.lsc{letter-spacing:0.093600px;}
.lsa{letter-spacing:0.166320px;}
.ls7{letter-spacing:0.328200px;}
.lsd{letter-spacing:0.337680px;}
.lsf{letter-spacing:0.343200px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:7.732800px;}
.ls10{letter-spacing:12.186720px;}
.ls0{letter-spacing:201.060000px;}
.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;}
}
.ws9{word-spacing:-13.490400px;}
.ws7{word-spacing:-13.240800px;}
.ws8{word-spacing:-13.160160px;}
.ws6{word-spacing:-13.147200px;}
.wsa{word-spacing:-13.049400px;}
.ws0{word-spacing:-10.612800px;}
.ws4{word-spacing:-10.342200px;}
.ws5{word-spacing:-9.092400px;}
.ws1{word-spacing:-7.884000px;}
.ws2{word-spacing:-7.632000px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-200.880000px;}
._5{margin-left:-43.827840px;}
._16{margin-left:-4.177920px;}
._15{margin-left:-3.107520px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.206080px;}
._d{width:3.264480px;}
._c{width:4.564800px;}
._9{width:5.677200px;}
._8{width:6.812640px;}
._7{width:7.888320px;}
._f{width:9.382320px;}
._e{width:10.876320px;}
._17{width:11.952000px;}
._12{width:13.206960px;}
._18{width:14.364720px;}
._1c{width:15.717600px;}
._11{width:16.859760px;}
._14{width:18.286560px;}
._13{width:19.481760px;}
._23{width:20.930880px;}
._b{width:22.716240px;}
._a{width:23.724720px;}
._10{width:25.457760px;}
._1b{width:27.190800px;}
._1d{width:28.931280px;}
._1e{width:30.178800px;}
._24{width:35.616960px;}
._20{width:38.007360px;}
._1f{width:39.680640px;}
._22{width:45.172800px;}
._19{width:46.898280px;}
._21{width:51.972480px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._1a{width:1069.687200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd4{bottom:3.420000px;}
.yd9{bottom:3.450000px;}
.yd2{bottom:8.460000px;}
.ye9{bottom:20.880000px;}
.yd3{bottom:21.060000px;}
.yd0{bottom:26.820000px;}
.y56{bottom:32.760000px;}
.ye7{bottom:44.325000px;}
.ycf{bottom:44.460000px;}
.y55{bottom:46.080000px;}
.y7{bottom:56.520000px;}
.y54{bottom:56.700000px;}
.y53{bottom:67.140000px;}
.y6{bottom:70.596000px;}
.y52{bottom:84.780000px;}
.yd8{bottom:108.576000px;}
.y41{bottom:110.016000px;}
.ycd{bottom:119.196000px;}
.y91{bottom:122.256000px;}
.y110{bottom:126.036000px;}
.yd7{bottom:126.936000px;}
.y40{bottom:127.476000px;}
.ycc{bottom:136.656000px;}
.y51{bottom:137.700000px;}
.y90{bottom:139.896000px;}
.y10f{bottom:143.676000px;}
.y3f{bottom:145.116000px;}
.y50{bottom:151.920000px;}
.ycb{bottom:154.290000px;}
.y8f{bottom:157.350000px;}
.y10e{bottom:161.130000px;}
.y3e{bottom:162.750000px;}
.yd6{bottom:163.470000px;}
.y4f{bottom:165.960000px;}
.yca{bottom:171.930000px;}
.y8e{bottom:174.990000px;}
.y10d{bottom:178.770000px;}
.y4e{bottom:180.000000px;}
.y3d{bottom:180.390000px;}
.yd5{bottom:181.830000px;}
.yc9{bottom:189.570000px;}
.y8d{bottom:192.630000px;}
.y4d{bottom:194.040000px;}
.y10c{bottom:196.410000px;}
.y3c{bottom:197.850000px;}
.yce{bottom:200.190000px;}
.yc8{bottom:207.030000px;}
.y4c{bottom:208.080000px;}
.y8c{bottom:210.270000px;}
.y10b{bottom:213.870000px;}
.y3b{bottom:215.490000px;}
.y4b{bottom:222.120000px;}
.yc7{bottom:224.670000px;}
.y8b{bottom:227.730000px;}
.y10a{bottom:231.510000px;}
.y3a{bottom:232.950000px;}
.y4a{bottom:234.720000px;}
.yd1{bottom:236.190000px;}
.yc6{bottom:242.310000px;}
.y49{bottom:243.360000px;}
.y8a{bottom:245.370000px;}
.y109{bottom:249.150000px;}
.y39{bottom:250.050000px;}
.y48{bottom:257.445000px;}
.yc5{bottom:259.770000px;}
.y89{bottom:263.010000px;}
.y108{bottom:266.610000px;}
.y38{bottom:267.330000px;}
.y47{bottom:271.485000px;}
.yc4{bottom:277.410000px;}
.y88{bottom:280.470000px;}
.y107{bottom:284.250000px;}
.y37{bottom:284.610000px;}
.y46{bottom:285.525000px;}
.yc3{bottom:295.050000px;}
.y87{bottom:298.110000px;}
.y45{bottom:299.565000px;}
.y36{bottom:301.890000px;}
.y44{bottom:312.165000px;}
.yc2{bottom:312.510000px;}
.y86{bottom:315.750000px;}
.y35{bottom:319.170000px;}
.y106{bottom:319.350000px;}
.y43{bottom:323.325000px;}
.yc1{bottom:330.150000px;}
.y85{bottom:333.210000px;}
.y34{bottom:336.495000px;}
.y105{bottom:337.035000px;}
.yc0{bottom:347.835000px;}
.y84{bottom:350.895000px;}
.y33{bottom:353.595000px;}
.y104{bottom:354.675000px;}
.ybf{bottom:365.295000px;}
.y83{bottom:368.535000px;}
.y32{bottom:370.875000px;}
.y103{bottom:372.315000px;}
.ybe{bottom:382.935000px;}
.y82{bottom:386.175000px;}
.y31{bottom:388.155000px;}
.y102{bottom:389.775000px;}
.ybd{bottom:400.575000px;}
.y81{bottom:403.635000px;}
.y30{bottom:405.435000px;}
.y101{bottom:407.415000px;}
.ybc{bottom:418.215000px;}
.y80{bottom:421.275000px;}
.y2f{bottom:422.715000px;}
.y100{bottom:425.055000px;}
.ybb{bottom:435.675000px;}
.y7f{bottom:438.915000px;}
.y2e{bottom:439.815000px;}
.yff{bottom:442.515000px;}
.yba{bottom:453.315000px;}
.y7e{bottom:456.375000px;}
.y2d{bottom:457.095000px;}
.yfe{bottom:460.155000px;}
.yb9{bottom:470.955000px;}
.y7d{bottom:474.015000px;}
.y2c{bottom:474.375000px;}
.yfd{bottom:475.095000px;}
.yb8{bottom:488.415000px;}
.y2b{bottom:491.655000px;}
.yfc{bottom:493.455000px;}
.yb7{bottom:506.055000px;}
.y2a{bottom:508.935000px;}
.y7c{bottom:509.115000px;}
.yfb{bottom:511.815000px;}
.yb6{bottom:523.695000px;}
.y7b{bottom:526.755000px;}
.y29{bottom:528.375000px;}
.yfa{bottom:530.175000px;}
.yb5{bottom:541.155000px;}
.y7a{bottom:544.395000px;}
.y28{bottom:545.655000px;}
.yf9{bottom:551.775000px;}
.yb4{bottom:558.795000px;}
.y79{bottom:561.855000px;}
.y27{bottom:562.935000px;}
.yf8{bottom:569.415000px;}
.yb3{bottom:576.435000px;}
.y78{bottom:579.495000px;}
.y26{bottom:580.215000px;}
.yf7{bottom:587.055000px;}
.yb2{bottom:594.075000px;}
.y77{bottom:597.135000px;}
.y25{bottom:597.315000px;}
.yf6{bottom:604.545000px;}
.yb1{bottom:611.565000px;}
.y24{bottom:614.625000px;}
.y76{bottom:614.805000px;}
.y42{bottom:617.505000px;}
.yf5{bottom:622.185000px;}
.yb0{bottom:629.205000px;}
.y23{bottom:631.905000px;}
.y75{bottom:632.265000px;}
.yf4{bottom:637.125000px;}
.yaf{bottom:646.845000px;}
.y22{bottom:649.185000px;}
.y74{bottom:649.905000px;}
.yf3{bottom:655.485000px;}
.yae{bottom:664.305000px;}
.y21{bottom:666.465000px;}
.y73{bottom:667.545000px;}
.yf2{bottom:673.845000px;}
.yad{bottom:681.945000px;}
.y20{bottom:683.745000px;}
.y72{bottom:685.005000px;}
.yf1{bottom:692.205000px;}
.yac{bottom:699.585000px;}
.y1f{bottom:700.845000px;}
.y71{bottom:702.645000px;}
.yf0{bottom:710.385000px;}
.yab{bottom:717.045000px;}
.y1e{bottom:718.125000px;}
.y70{bottom:720.285000px;}
.yef{bottom:728.745000px;}
.yaa{bottom:734.685000px;}
.y1d{bottom:735.405000px;}
.y6f{bottom:737.745000px;}
.yee{bottom:747.105000px;}
.ya9{bottom:752.325000px;}
.y1c{bottom:752.685000px;}
.y6e{bottom:755.385000px;}
.yed{bottom:765.465000px;}
.y1b{bottom:769.965000px;}
.y6d{bottom:773.025000px;}
.yec{bottom:783.825000px;}
.y1a{bottom:787.065000px;}
.ya8{bottom:787.425000px;}
.y6c{bottom:790.665000px;}
.yeb{bottom:802.185000px;}
.y19{bottom:804.345000px;}
.ya7{bottom:805.065000px;}
.y6b{bottom:808.125000px;}
.yea{bottom:820.545000px;}
.y18{bottom:821.625000px;}
.ya6{bottom:822.705000px;}
.y6a{bottom:825.765000px;}
.y17{bottom:838.905000px;}
.ya5{bottom:840.165000px;}
.y69{bottom:843.405000px;}
.y16{bottom:856.185000px;}
.ya4{bottom:857.805000px;}
.y68{bottom:860.865000px;}
.y15{bottom:873.510000px;}
.ye8{bottom:874.770000px;}
.ya3{bottom:875.490000px;}
.y67{bottom:878.550000px;}
.y14{bottom:890.610000px;}
.ya2{bottom:892.950000px;}
.y66{bottom:896.190000px;}
.ye6{bottom:901.590000px;}
.y13{bottom:907.890000px;}
.ya1{bottom:910.590000px;}
.y65{bottom:913.650000px;}
.ye5{bottom:919.230000px;}
.y12{bottom:925.170000px;}
.ya0{bottom:928.230000px;}
.y64{bottom:931.290000px;}
.ye4{bottom:934.170000px;}
.y11{bottom:942.450000px;}
.y9f{bottom:945.690000px;}
.y63{bottom:948.930000px;}
.ye3{bottom:952.530000px;}
.y10{bottom:959.730000px;}
.y9e{bottom:963.330000px;}
.y62{bottom:966.570000px;}
.ye2{bottom:970.710000px;}
.yf{bottom:976.470000px;}
.y9d{bottom:980.970000px;}
.y61{bottom:984.030000px;}
.ye1{bottom:989.070000px;}
.ye{bottom:990.870000px;}
.y9c{bottom:998.610000px;}
.y60{bottom:1001.670000px;}
.yd{bottom:1007.250000px;}
.ye0{bottom:1010.850000px;}
.y9b{bottom:1016.070000px;}
.y5f{bottom:1019.310000px;}
.yc{bottom:1026.690000px;}
.ydf{bottom:1028.490000px;}
.y9a{bottom:1033.710000px;}
.y5e{bottom:1036.770000px;}
.yde{bottom:1043.430000px;}
.yb{bottom:1046.670000px;}
.y99{bottom:1051.350000px;}
.y5d{bottom:1054.410000px;}
.ydd{bottom:1061.790000px;}
.y98{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.y5c{bottom:1072.050000px;}
.ydc{bottom:1079.970000px;}
.y97{bottom:1086.450000px;}
.y5b{bottom:1089.510000px;}
.y9{bottom:1092.390000px;}
.ydb{bottom:1098.330000px;}
.y96{bottom:1104.090000px;}
.y5a{bottom:1107.150000px;}
.y8{bottom:1114.350000px;}
.yda{bottom:1116.690000px;}
.y95{bottom:1121.550000px;}
.y59{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.y94{bottom:1139.220000px;}
.y58{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y93{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y92{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y57{bottom:1197.540000px;}
.h1a{height:17.460000px;}
.h19{height:17.640000px;}
.h1b{height:17.676000px;}
.h10{height:20.117109px;}
.h17{height:22.500000px;}
.h1d{height:22.680000px;}
.h13{height:30.480469px;}
.h18{height:35.100000px;}
.h1e{height:35.136000px;}
.h3{height:38.100586px;}
.h2{height:38.456719px;}
.h11{height:40.843828px;}
.ha{height:41.726953px;}
.h9{height:42.164648px;}
.hb{height:43.302656px;}
.h4{height:44.424141px;}
.hf{height:45.720703px;}
.hc{height:49.255313px;}
.h8{height:49.728516px;}
.h15{height:50.273438px;}
.hd{height:50.597578px;}
.h5{height:55.032891px;}
.h7{height:56.084062px;}
.h16{height:58.500000px;}
.h1c{height:58.536000px;}
.h14{height:58.819922px;}
.h6{height:65.837812px;}
.h12{height:66.304688px;}
.he{height:336.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:63.036000px;}
.wa{width:63.900000px;}
.wc{width:66.960000px;}
.w8{width:73.260000px;}
.wb{width:76.356000px;}
.wd{width:94.500000px;}
.w4{width:125.820000px;}
.w6{width:128.520000px;}
.w7{width:136.836000px;}
.w9{width:144.036000px;}
.w3{width:221.970000px;}
.wf{width:224.670000px;}
.we{width:354.675000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.740000px;}
.x1f{left:9.720000px;}
.x25{left:11.340000px;}
.x21{left:13.680000px;}
.x24{left:15.300000px;}
.x14{left:16.740000px;}
.x12{left:18.000000px;}
.x2d{left:19.080000px;}
.x1c{left:21.780000px;}
.x19{left:22.860000px;}
.x2f{left:24.120000px;}
.x16{left:27.180000px;}
.x28{left:28.260000px;}
.x30{left:29.340000px;}
.x13{left:31.500000px;}
.x29{left:33.165000px;}
.x1e{left:34.965000px;}
.x1b{left:36.540000px;}
.x2a{left:38.205000px;}
.x2c{left:40.320000px;}
.x2e{left:45.930000px;}
.x2b{left:54.534000px;}
.x26{left:58.674000px;}
.x27{left:60.150000px;}
.x11{left:62.814000px;}
.x18{left:68.430000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x4{left:121.175987px;}
.xe{left:127.655987px;}
.xf{left:129.095987px;}
.x3{left:134.675987px;}
.x39{left:138.455987px;}
.xa{left:148.895987px;}
.x38{left:154.109987px;}
.x31{left:156.989987px;}
.xb{left:159.509987px;}
.x37{left:162.389987px;}
.x34{left:185.969987px;}
.x32{left:202.530000px;}
.x8{left:234.029987px;}
.x7{left:244.289987px;}
.x15{left:297.435000px;}
.xd{left:307.334987px;}
.x36{left:331.094987px;}
.x5{left:336.494987px;}
.x9{left:342.614987px;}
.x20{left:362.055000px;}
.x35{left:383.294987px;}
.x10{left:417.674987px;}
.x17{left:426.675000px;}
.x6{left:446.654987px;}
.x33{left:557.925000px;}
.x1a{left:564.405000px;}
.xc{left:582.224987px;}
.x1d{left:638.565000px;}
.x23{left:715.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.240533pt;}
.ls6{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.166400pt;}
.lse{letter-spacing:-0.163733pt;}
.ls12{letter-spacing:-0.086933pt;}
.ls8{letter-spacing:-0.084267pt;}
.ls3{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.lsc{letter-spacing:0.083200pt;}
.lsa{letter-spacing:0.147840pt;}
.ls7{letter-spacing:0.291733pt;}
.lsd{letter-spacing:0.300160pt;}
.lsf{letter-spacing:0.305067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:6.873600pt;}
.ls10{letter-spacing:10.832640pt;}
.ls0{letter-spacing:178.720000pt;}
.ws9{word-spacing:-11.991467pt;}
.ws7{word-spacing:-11.769600pt;}
.ws8{word-spacing:-11.697920pt;}
.ws6{word-spacing:-11.686400pt;}
.wsa{word-spacing:-11.599467pt;}
.ws0{word-spacing:-9.433600pt;}
.ws4{word-spacing:-9.193067pt;}
.ws5{word-spacing:-8.082133pt;}
.ws1{word-spacing:-7.008000pt;}
.ws2{word-spacing:-6.784000pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-178.560000pt;}
._5{margin-left:-38.958080pt;}
._16{margin-left:-3.713707pt;}
._15{margin-left:-2.762240pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:1.960960pt;}
._d{width:2.901760pt;}
._c{width:4.057600pt;}
._9{width:5.046400pt;}
._8{width:6.055680pt;}
._7{width:7.011840pt;}
._f{width:8.339840pt;}
._e{width:9.667840pt;}
._17{width:10.624000pt;}
._12{width:11.739520pt;}
._18{width:12.768640pt;}
._1c{width:13.971200pt;}
._11{width:14.986453pt;}
._14{width:16.254720pt;}
._13{width:17.317120pt;}
._23{width:18.605227pt;}
._b{width:20.192213pt;}
._a{width:21.088640pt;}
._10{width:22.629120pt;}
._1b{width:24.169600pt;}
._1d{width:25.716693pt;}
._1e{width:26.825600pt;}
._24{width:31.659520pt;}
._20{width:33.784320pt;}
._1f{width:35.271680pt;}
._22{width:40.153600pt;}
._19{width:41.687360pt;}
._21{width:46.197760pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._1a{width:950.833067pt;}
.fs7{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:3.040000pt;}
.yd9{bottom:3.066667pt;}
.yd2{bottom:7.520000pt;}
.ye9{bottom:18.560000pt;}
.yd3{bottom:18.720000pt;}
.yd0{bottom:23.840000pt;}
.y56{bottom:29.120000pt;}
.ye7{bottom:39.400000pt;}
.ycf{bottom:39.520000pt;}
.y55{bottom:40.960000pt;}
.y7{bottom:50.240000pt;}
.y54{bottom:50.400000pt;}
.y53{bottom:59.680000pt;}
.y6{bottom:62.752000pt;}
.y52{bottom:75.360000pt;}
.yd8{bottom:96.512000pt;}
.y41{bottom:97.792000pt;}
.ycd{bottom:105.952000pt;}
.y91{bottom:108.672000pt;}
.y110{bottom:112.032000pt;}
.yd7{bottom:112.832000pt;}
.y40{bottom:113.312000pt;}
.ycc{bottom:121.472000pt;}
.y51{bottom:122.400000pt;}
.y90{bottom:124.352000pt;}
.y10f{bottom:127.712000pt;}
.y3f{bottom:128.992000pt;}
.y50{bottom:135.040000pt;}
.ycb{bottom:137.146667pt;}
.y8f{bottom:139.866667pt;}
.y10e{bottom:143.226667pt;}
.y3e{bottom:144.666667pt;}
.yd6{bottom:145.306667pt;}
.y4f{bottom:147.520000pt;}
.yca{bottom:152.826667pt;}
.y8e{bottom:155.546667pt;}
.y10d{bottom:158.906667pt;}
.y4e{bottom:160.000000pt;}
.y3d{bottom:160.346667pt;}
.yd5{bottom:161.626667pt;}
.yc9{bottom:168.506667pt;}
.y8d{bottom:171.226667pt;}
.y4d{bottom:172.480000pt;}
.y10c{bottom:174.586667pt;}
.y3c{bottom:175.866667pt;}
.yce{bottom:177.946667pt;}
.yc8{bottom:184.026667pt;}
.y4c{bottom:184.960000pt;}
.y8c{bottom:186.906667pt;}
.y10b{bottom:190.106667pt;}
.y3b{bottom:191.546667pt;}
.y4b{bottom:197.440000pt;}
.yc7{bottom:199.706667pt;}
.y8b{bottom:202.426667pt;}
.y10a{bottom:205.786667pt;}
.y3a{bottom:207.066667pt;}
.y4a{bottom:208.640000pt;}
.yd1{bottom:209.946667pt;}
.yc6{bottom:215.386667pt;}
.y49{bottom:216.320000pt;}
.y8a{bottom:218.106667pt;}
.y109{bottom:221.466667pt;}
.y39{bottom:222.266667pt;}
.y48{bottom:228.840000pt;}
.yc5{bottom:230.906667pt;}
.y89{bottom:233.786667pt;}
.y108{bottom:236.986667pt;}
.y38{bottom:237.626667pt;}
.y47{bottom:241.320000pt;}
.yc4{bottom:246.586667pt;}
.y88{bottom:249.306667pt;}
.y107{bottom:252.666667pt;}
.y37{bottom:252.986667pt;}
.y46{bottom:253.800000pt;}
.yc3{bottom:262.266667pt;}
.y87{bottom:264.986667pt;}
.y45{bottom:266.280000pt;}
.y36{bottom:268.346667pt;}
.y44{bottom:277.480000pt;}
.yc2{bottom:277.786667pt;}
.y86{bottom:280.666667pt;}
.y35{bottom:283.706667pt;}
.y106{bottom:283.866667pt;}
.y43{bottom:287.400000pt;}
.yc1{bottom:293.466667pt;}
.y85{bottom:296.186667pt;}
.y34{bottom:299.106667pt;}
.y105{bottom:299.586667pt;}
.yc0{bottom:309.186667pt;}
.y84{bottom:311.906667pt;}
.y33{bottom:314.306667pt;}
.y104{bottom:315.266667pt;}
.ybf{bottom:324.706667pt;}
.y83{bottom:327.586667pt;}
.y32{bottom:329.666667pt;}
.y103{bottom:330.946667pt;}
.ybe{bottom:340.386667pt;}
.y82{bottom:343.266667pt;}
.y31{bottom:345.026667pt;}
.y102{bottom:346.466667pt;}
.ybd{bottom:356.066667pt;}
.y81{bottom:358.786667pt;}
.y30{bottom:360.386667pt;}
.y101{bottom:362.146667pt;}
.ybc{bottom:371.746667pt;}
.y80{bottom:374.466667pt;}
.y2f{bottom:375.746667pt;}
.y100{bottom:377.826667pt;}
.ybb{bottom:387.266667pt;}
.y7f{bottom:390.146667pt;}
.y2e{bottom:390.946667pt;}
.yff{bottom:393.346667pt;}
.yba{bottom:402.946667pt;}
.y7e{bottom:405.666667pt;}
.y2d{bottom:406.306667pt;}
.yfe{bottom:409.026667pt;}
.yb9{bottom:418.626667pt;}
.y7d{bottom:421.346667pt;}
.y2c{bottom:421.666667pt;}
.yfd{bottom:422.306667pt;}
.yb8{bottom:434.146667pt;}
.y2b{bottom:437.026667pt;}
.yfc{bottom:438.626667pt;}
.yb7{bottom:449.826667pt;}
.y2a{bottom:452.386667pt;}
.y7c{bottom:452.546667pt;}
.yfb{bottom:454.946667pt;}
.yb6{bottom:465.506667pt;}
.y7b{bottom:468.226667pt;}
.y29{bottom:469.666667pt;}
.yfa{bottom:471.266667pt;}
.yb5{bottom:481.026667pt;}
.y7a{bottom:483.906667pt;}
.y28{bottom:485.026667pt;}
.yf9{bottom:490.466667pt;}
.yb4{bottom:496.706667pt;}
.y79{bottom:499.426667pt;}
.y27{bottom:500.386667pt;}
.yf8{bottom:506.146667pt;}
.yb3{bottom:512.386667pt;}
.y78{bottom:515.106667pt;}
.y26{bottom:515.746667pt;}
.yf7{bottom:521.826667pt;}
.yb2{bottom:528.066667pt;}
.y77{bottom:530.786667pt;}
.y25{bottom:530.946667pt;}
.yf6{bottom:537.373333pt;}
.yb1{bottom:543.613333pt;}
.y24{bottom:546.333333pt;}
.y76{bottom:546.493333pt;}
.y42{bottom:548.893333pt;}
.yf5{bottom:553.053333pt;}
.yb0{bottom:559.293333pt;}
.y23{bottom:561.693333pt;}
.y75{bottom:562.013333pt;}
.yf4{bottom:566.333333pt;}
.yaf{bottom:574.973333pt;}
.y22{bottom:577.053333pt;}
.y74{bottom:577.693333pt;}
.yf3{bottom:582.653333pt;}
.yae{bottom:590.493333pt;}
.y21{bottom:592.413333pt;}
.y73{bottom:593.373333pt;}
.yf2{bottom:598.973333pt;}
.yad{bottom:606.173333pt;}
.y20{bottom:607.773333pt;}
.y72{bottom:608.893333pt;}
.yf1{bottom:615.293333pt;}
.yac{bottom:621.853333pt;}
.y1f{bottom:622.973333pt;}
.y71{bottom:624.573333pt;}
.yf0{bottom:631.453333pt;}
.yab{bottom:637.373333pt;}
.y1e{bottom:638.333333pt;}
.y70{bottom:640.253333pt;}
.yef{bottom:647.773333pt;}
.yaa{bottom:653.053333pt;}
.y1d{bottom:653.693333pt;}
.y6f{bottom:655.773333pt;}
.yee{bottom:664.093333pt;}
.ya9{bottom:668.733333pt;}
.y1c{bottom:669.053333pt;}
.y6e{bottom:671.453333pt;}
.yed{bottom:680.413333pt;}
.y1b{bottom:684.413333pt;}
.y6d{bottom:687.133333pt;}
.yec{bottom:696.733333pt;}
.y1a{bottom:699.613333pt;}
.ya8{bottom:699.933333pt;}
.y6c{bottom:702.813333pt;}
.yeb{bottom:713.053333pt;}
.y19{bottom:714.973333pt;}
.ya7{bottom:715.613333pt;}
.y6b{bottom:718.333333pt;}
.yea{bottom:729.373333pt;}
.y18{bottom:730.333333pt;}
.ya6{bottom:731.293333pt;}
.y6a{bottom:734.013333pt;}
.y17{bottom:745.693333pt;}
.ya5{bottom:746.813333pt;}
.y69{bottom:749.693333pt;}
.y16{bottom:761.053333pt;}
.ya4{bottom:762.493333pt;}
.y68{bottom:765.213333pt;}
.y15{bottom:776.453333pt;}
.ye8{bottom:777.573333pt;}
.ya3{bottom:778.213333pt;}
.y67{bottom:780.933333pt;}
.y14{bottom:791.653333pt;}
.ya2{bottom:793.733333pt;}
.y66{bottom:796.613333pt;}
.ye6{bottom:801.413333pt;}
.y13{bottom:807.013333pt;}
.ya1{bottom:809.413333pt;}
.y65{bottom:812.133333pt;}
.ye5{bottom:817.093333pt;}
.y12{bottom:822.373333pt;}
.ya0{bottom:825.093333pt;}
.y64{bottom:827.813333pt;}
.ye4{bottom:830.373333pt;}
.y11{bottom:837.733333pt;}
.y9f{bottom:840.613333pt;}
.y63{bottom:843.493333pt;}
.ye3{bottom:846.693333pt;}
.y10{bottom:853.093333pt;}
.y9e{bottom:856.293333pt;}
.y62{bottom:859.173333pt;}
.ye2{bottom:862.853333pt;}
.yf{bottom:867.973333pt;}
.y9d{bottom:871.973333pt;}
.y61{bottom:874.693333pt;}
.ye1{bottom:879.173333pt;}
.ye{bottom:880.773333pt;}
.y9c{bottom:887.653333pt;}
.y60{bottom:890.373333pt;}
.yd{bottom:895.333333pt;}
.ye0{bottom:898.533333pt;}
.y9b{bottom:903.173333pt;}
.y5f{bottom:906.053333pt;}
.yc{bottom:912.613333pt;}
.ydf{bottom:914.213333pt;}
.y9a{bottom:918.853333pt;}
.y5e{bottom:921.573333pt;}
.yde{bottom:927.493333pt;}
.yb{bottom:930.373333pt;}
.y99{bottom:934.533333pt;}
.y5d{bottom:937.253333pt;}
.ydd{bottom:943.813333pt;}
.y98{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.y5c{bottom:952.933333pt;}
.ydc{bottom:959.973333pt;}
.y97{bottom:965.733333pt;}
.y5b{bottom:968.453333pt;}
.y9{bottom:971.013333pt;}
.ydb{bottom:976.293333pt;}
.y96{bottom:981.413333pt;}
.y5a{bottom:984.133333pt;}
.y8{bottom:990.533333pt;}
.yda{bottom:992.613333pt;}
.y95{bottom:996.933333pt;}
.y59{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.y94{bottom:1012.640000pt;}
.y58{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y93{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y92{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y57{bottom:1064.480000pt;}
.h1a{height:15.520000pt;}
.h19{height:15.680000pt;}
.h1b{height:15.712000pt;}
.h10{height:17.881875pt;}
.h17{height:20.000000pt;}
.h1d{height:20.160000pt;}
.h13{height:27.093750pt;}
.h18{height:31.200000pt;}
.h1e{height:31.232000pt;}
.h3{height:33.867188pt;}
.h2{height:34.183750pt;}
.h11{height:36.305625pt;}
.ha{height:37.090625pt;}
.h9{height:37.479688pt;}
.hb{height:38.491250pt;}
.h4{height:39.488125pt;}
.hf{height:40.640625pt;}
.hc{height:43.782500pt;}
.h8{height:44.203125pt;}
.h15{height:44.687500pt;}
.hd{height:44.975625pt;}
.h5{height:48.918125pt;}
.h7{height:49.852500pt;}
.h16{height:52.000000pt;}
.h1c{height:52.032000pt;}
.h14{height:52.284375pt;}
.h6{height:58.522500pt;}
.h12{height:58.937500pt;}
.he{height:298.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:56.032000pt;}
.wa{width:56.800000pt;}
.wc{width:59.520000pt;}
.w8{width:65.120000pt;}
.wb{width:67.872000pt;}
.wd{width:84.000000pt;}
.w4{width:111.840000pt;}
.w6{width:114.240000pt;}
.w7{width:121.632000pt;}
.w9{width:128.032000pt;}
.w3{width:197.306667pt;}
.wf{width:199.706667pt;}
.we{width:315.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.880000pt;}
.x1f{left:8.640000pt;}
.x25{left:10.080000pt;}
.x21{left:12.160000pt;}
.x24{left:13.600000pt;}
.x14{left:14.880000pt;}
.x12{left:16.000000pt;}
.x2d{left:16.960000pt;}
.x1c{left:19.360000pt;}
.x19{left:20.320000pt;}
.x2f{left:21.440000pt;}
.x16{left:24.160000pt;}
.x28{left:25.120000pt;}
.x30{left:26.080000pt;}
.x13{left:28.000000pt;}
.x29{left:29.480000pt;}
.x1e{left:31.080000pt;}
.x1b{left:32.480000pt;}
.x2a{left:33.960000pt;}
.x2c{left:35.840000pt;}
.x2e{left:40.826667pt;}
.x2b{left:48.474667pt;}
.x26{left:52.154667pt;}
.x27{left:53.466667pt;}
.x11{left:55.834667pt;}
.x18{left:60.826667pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x4{left:107.711988pt;}
.xe{left:113.471988pt;}
.xf{left:114.751988pt;}
.x3{left:119.711988pt;}
.x39{left:123.071988pt;}
.xa{left:132.351988pt;}
.x38{left:136.986655pt;}
.x31{left:139.546655pt;}
.xb{left:141.786655pt;}
.x37{left:144.346655pt;}
.x34{left:165.306655pt;}
.x32{left:180.026667pt;}
.x8{left:208.026655pt;}
.x7{left:217.146655pt;}
.x15{left:264.386667pt;}
.xd{left:273.186655pt;}
.x36{left:294.306655pt;}
.x5{left:299.106655pt;}
.x9{left:304.546655pt;}
.x20{left:321.826667pt;}
.x35{left:340.706655pt;}
.x10{left:371.266655pt;}
.x17{left:379.266667pt;}
.x6{left:397.026655pt;}
.x33{left:495.933333pt;}
.x1a{left:501.693333pt;}
.xc{left:517.533322pt;}
.x1d{left:567.613333pt;}
.x23{left:636.133333pt;}
}




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