
    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_522a6fbb38359196617cc3e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_8b8ad8a526dc8b5c28dd55d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_62b89dbe8c5512ee734258bd.woff2')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_310f79562ee631410c5e6706.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.139800px;}
.ls8{letter-spacing:0.180000px;}
.lsa{letter-spacing:16.406640px;}
.ls2{letter-spacing:36.926640px;}
.ls1{letter-spacing:41.148000px;}
.ls9{letter-spacing:46.286640px;}
.ls7{letter-spacing:63.566640px;}
.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;}
}
.ws5{word-spacing:-60.120000px;}
.ws7{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.ws4{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.150000px;}
.ws1{word-spacing:-11.970000px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.085760px;}
._5{width:2.539080px;}
._9{width:3.625200px;}
._15{width:4.869720px;}
._a{width:5.951880px;}
._17{width:7.575120px;}
._18{width:8.695440px;}
._13{width:9.701280px;}
._c{width:10.701360px;}
._b{width:11.963880px;}
._6{width:13.106160px;}
._f{width:14.580000px;}
._7{width:16.232400px;}
._8{width:17.434800px;}
._14{width:19.252440px;}
._1c{width:20.773440px;}
._24{width:22.304520px;}
._1b{width:23.446800px;}
._1f{width:24.589080px;}
._1d{width:26.212320px;}
._1a{width:27.715320px;}
._2b{width:28.828440px;}
._25{width:30.841560px;}
._12{width:32.004000px;}
._e{width:33.727320px;}
._d{width:34.749360px;}
._1e{width:36.252360px;}
._16{width:38.116080px;}
._20{width:39.258360px;}
._21{width:40.340520px;}
._23{width:41.422680px;}
._19{width:43.166160px;}
._22{width:53.867520px;}
._28{width:55.281240px;}
._29{width:59.939640px;}
._2a{width:61.442640px;}
._27{width:66.344400px;}
._26{width:67.829400px;}
._11{width:77.760000px;}
._10{width:121.662000px;}
._2{width:130.455480px;}
._1{width:341.548680px;}
._4{width:1043.109240px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y3f{bottom:2.880000px;}
.y3d{bottom:2.970000px;}
.y18{bottom:3.240000px;}
.y35{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.yc6{bottom:9.540000px;}
.yb6{bottom:9.900000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.yb9{bottom:17.190000px;}
.y3c{bottom:18.450000px;}
.y33{bottom:19.350000px;}
.y3b{bottom:34.020000px;}
.y7{bottom:35.550000px;}
.y32{bottom:35.730000px;}
.y3a{bottom:49.500000px;}
.y31{bottom:51.300000px;}
.y3{bottom:58.140000px;}
.y39{bottom:65.070000px;}
.y30{bottom:66.780000px;}
.y38{bottom:80.550000px;}
.y2f{bottom:82.350000px;}
.y37{bottom:96.030000px;}
.y2e{bottom:97.830000px;}
.y2a{bottom:101.250000px;}
.y3e{bottom:106.200000px;}
.y2d{bottom:113.430000px;}
.y45{bottom:115.560000px;}
.yb0{bottom:117.540000px;}
.y29{bottom:118.530000px;}
.yf2{bottom:122.040000px;}
.y7d{bottom:124.020000px;}
.yee{bottom:124.200000px;}
.y2c{bottom:128.910000px;}
.y44{bottom:131.040000px;}
.yaf{bottom:134.730000px;}
.y28{bottom:135.720000px;}
.yf1{bottom:139.320000px;}
.y7c{bottom:141.210000px;}
.yed{bottom:141.480000px;}
.y43{bottom:146.880000px;}
.yae{bottom:152.010000px;}
.y27{bottom:153.000000px;}
.yf0{bottom:157.620000px;}
.y7b{bottom:158.520000px;}
.yec{bottom:158.700000px;}
.y42{bottom:164.190000px;}
.yad{bottom:169.320000px;}
.y26{bottom:170.280000px;}
.yef{bottom:174.900000px;}
.y7a{bottom:175.800000px;}
.yeb{bottom:175.980000px;}
.y41{bottom:181.380000px;}
.yac{bottom:186.510000px;}
.y25{bottom:187.470000px;}
.y79{bottom:192.990000px;}
.yea{bottom:193.260000px;}
.y40{bottom:198.300000px;}
.yab{bottom:203.790000px;}
.y24{bottom:204.750000px;}
.y78{bottom:210.270000px;}
.ye9{bottom:210.450000px;}
.y19{bottom:211.710000px;}
.yaa{bottom:221.070000px;}
.y23{bottom:222.030000px;}
.y77{bottom:227.460000px;}
.ye8{bottom:227.730000px;}
.ya9{bottom:238.260000px;}
.y22{bottom:239.220000px;}
.y10e{bottom:243.210000px;}
.y76{bottom:244.740000px;}
.ye7{bottom:245.010000px;}
.y110{bottom:251.040000px;}
.ya8{bottom:255.540000px;}
.y21{bottom:256.500000px;}
.y112{bottom:257.970000px;}
.y75{bottom:262.020000px;}
.ye6{bottom:262.200000px;}
.y10f{bottom:264.810000px;}
.ya7{bottom:272.820000px;}
.y20{bottom:273.780000px;}
.y74{bottom:279.210000px;}
.ye5{bottom:279.480000px;}
.ya6{bottom:290.010000px;}
.y1f{bottom:290.970000px;}
.y73{bottom:296.490000px;}
.ye4{bottom:296.760000px;}
.ya5{bottom:307.290000px;}
.y1e{bottom:308.250000px;}
.y72{bottom:313.770000px;}
.ye3{bottom:313.950000px;}
.ya4{bottom:324.570000px;}
.y1d{bottom:325.530000px;}
.y71{bottom:330.960000px;}
.y36{bottom:331.230000px;}
.y111{bottom:336.360000px;}
.ya3{bottom:341.760000px;}
.y1c{bottom:342.720000px;}
.y70{bottom:348.240000px;}
.ye2{bottom:348.510000px;}
.ya2{bottom:359.040000px;}
.y1b{bottom:360.000000px;}
.y6f{bottom:365.520000px;}
.ye1{bottom:365.700000px;}
.ya1{bottom:376.320000px;}
.y1a{bottom:377.310000px;}
.y6e{bottom:382.710000px;}
.ye0{bottom:382.980000px;}
.ya0{bottom:393.510000px;}
.y6d{bottom:399.990000px;}
.ydf{bottom:400.170000px;}
.y9f{bottom:410.790000px;}
.y6c{bottom:417.270000px;}
.yde{bottom:417.450000px;}
.y9e{bottom:428.070000px;}
.y6b{bottom:434.460000px;}
.ydd{bottom:434.730000px;}
.y34{bottom:440.670000px;}
.y9d{bottom:445.260000px;}
.y6a{bottom:451.740000px;}
.ydc{bottom:451.920000px;}
.y2b{bottom:461.460000px;}
.y9c{bottom:462.540000px;}
.y69{bottom:469.020000px;}
.ydb{bottom:469.200000px;}
.y9b{bottom:479.730000px;}
.y68{bottom:486.210000px;}
.yda{bottom:486.480000px;}
.y9a{bottom:497.010000px;}
.y67{bottom:503.490000px;}
.yd9{bottom:503.670000px;}
.y99{bottom:514.290000px;}
.y66{bottom:520.770000px;}
.yd8{bottom:520.950000px;}
.y98{bottom:531.480000px;}
.y65{bottom:537.960000px;}
.yd7{bottom:538.230000px;}
.y97{bottom:548.760000px;}
.y64{bottom:555.240000px;}
.yd6{bottom:555.420000px;}
.y96{bottom:566.040000px;}
.y63{bottom:572.430000px;}
.yd5{bottom:572.700000px;}
.y95{bottom:583.260000px;}
.y62{bottom:589.740000px;}
.yd4{bottom:590.010000px;}
.y94{bottom:600.540000px;}
.y17{bottom:603.780000px;}
.y61{bottom:607.020000px;}
.yd3{bottom:607.200000px;}
.y93{bottom:617.820000px;}
.yd2{bottom:621.960000px;}
.y60{bottom:624.210000px;}
.y10d{bottom:624.480000px;}
.y92{bottom:635.010000px;}
.yd1{bottom:636.540000px;}
.y16{bottom:638.340000px;}
.y5f{bottom:641.490000px;}
.y10c{bottom:641.760000px;}
.yd0{bottom:651.120000px;}
.y91{bottom:652.290000px;}
.y15{bottom:658.230000px;}
.y5e{bottom:658.770000px;}
.y10b{bottom:658.950000px;}
.ycf{bottom:665.610000px;}
.y90{bottom:669.570000px;}
.y5d{bottom:675.960000px;}
.y10a{bottom:676.230000px;}
.yce{bottom:682.170000px;}
.y14{bottom:686.670000px;}
.y8f{bottom:686.760000px;}
.ycd{bottom:693.150000px;}
.y5c{bottom:693.240000px;}
.y109{bottom:693.420000px;}
.y8e{bottom:704.040000px;}
.ycc{bottom:707.550000px;}
.y13{bottom:709.080000px;}
.y5b{bottom:710.520000px;}
.y108{bottom:710.700000px;}
.y12{bottom:721.140000px;}
.ycb{bottom:722.310000px;}
.y8d{bottom:722.400000px;}
.y5a{bottom:727.710000px;}
.y107{bottom:727.980000px;}
.yca{bottom:736.890000px;}
.y8c{bottom:739.590000px;}
.y11{bottom:743.640000px;}
.y59{bottom:744.990000px;}
.y106{bottom:745.170000px;}
.yc9{bottom:751.380000px;}
.y10{bottom:755.970000px;}
.y8b{bottom:756.870000px;}
.y58{bottom:762.270000px;}
.y105{bottom:762.450000px;}
.yc8{bottom:765.960000px;}
.y8a{bottom:775.140000px;}
.yf{bottom:777.210000px;}
.y57{bottom:779.460000px;}
.y104{bottom:779.730000px;}
.yc7{bottom:780.540000px;}
.y89{bottom:792.420000px;}
.yc5{bottom:795.030000px;}
.y56{bottom:796.740000px;}
.y103{bottom:796.920000px;}
.ye{bottom:808.260000px;}
.y88{bottom:809.700000px;}
.y55{bottom:814.020000px;}
.y102{bottom:814.200000px;}
.yc4{bottom:825.720000px;}
.y87{bottom:827.970000px;}
.y54{bottom:831.210000px;}
.y101{bottom:831.480000px;}
.yc3{bottom:838.140000px;}
.yd{bottom:839.310000px;}
.y86{bottom:845.250000px;}
.y53{bottom:848.490000px;}
.y100{bottom:848.670000px;}
.yc2{bottom:852.540000px;}
.y85{bottom:862.530000px;}
.y52{bottom:865.770000px;}
.yff{bottom:865.950000px;}
.ybf{bottom:867.300000px;}
.yc{bottom:870.360000px;}
.y84{bottom:879.720000px;}
.yc1{bottom:881.880000px;}
.y51{bottom:882.960000px;}
.yfe{bottom:883.230000px;}
.yc0{bottom:896.370000px;}
.y83{bottom:898.080000px;}
.y50{bottom:900.240000px;}
.yfd{bottom:900.420000px;}
.yb{bottom:901.410000px;}
.ybc{bottom:910.950000px;}
.y82{bottom:915.360000px;}
.y4f{bottom:917.430000px;}
.yfc{bottom:917.700000px;}
.ybe{bottom:925.440000px;}
.ya{bottom:930.210000px;}
.y81{bottom:932.550000px;}
.y4e{bottom:934.710000px;}
.yfb{bottom:934.980000px;}
.ybd{bottom:940.020000px;}
.y8{bottom:945.600000px;}
.y80{bottom:950.910000px;}
.y4d{bottom:951.990000px;}
.yfa{bottom:952.170000px;}
.yb8{bottom:954.600000px;}
.y7f{bottom:968.100000px;}
.ybb{bottom:969.090000px;}
.y4c{bottom:969.180000px;}
.yf9{bottom:969.450000px;}
.yba{bottom:983.670000px;}
.y7e{bottom:985.380000px;}
.y4b{bottom:986.460000px;}
.yf8{bottom:986.730000px;}
.yb5{bottom:998.280000px;}
.y4a{bottom:1003.770000px;}
.yf7{bottom:1005.030000px;}
.yb7{bottom:1012.770000px;}
.y49{bottom:1020.960000px;}
.yf6{bottom:1022.310000px;}
.yb3{bottom:1027.350000px;}
.y48{bottom:1038.240000px;}
.yf5{bottom:1040.580000px;}
.yb2{bottom:1044.540000px;}
.y47{bottom:1055.520000px;}
.yf4{bottom:1057.860000px;}
.yb1{bottom:1058.310000px;}
.y46{bottom:1072.710000px;}
.yf3{bottom:1075.590000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1b{height:13.770000px;}
.h1f{height:13.800000px;}
.h1d{height:13.860000px;}
.h23{height:15.570000px;}
.hf{height:17.190000px;}
.h14{height:19.980000px;}
.h22{height:25.136719px;}
.hc{height:27.147656px;}
.h3{height:27.630000px;}
.h1c{height:28.350000px;}
.h21{height:29.718457px;}
.h5{height:33.431836px;}
.h1a{height:33.782520px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h6{height:39.082324px;}
.h12{height:39.999023px;}
.h4{height:41.978320px;}
.he{height:42.418652px;}
.h20{height:42.840000px;}
.h1e{height:42.870000px;}
.h19{height:43.769004px;}
.h13{height:44.532246px;}
.h8{height:46.000195px;}
.h2{height:48.788789px;}
.h1{height:50.800781px;}
.h9{height:53.463164px;}
.hb{height:53.838457px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.h24{height:77.670000px;}
.h15{height:108.630000px;}
.h18{height:118.800000px;}
.h11{height:141.510000px;}
.h7{height:153.930000px;}
.h10{height:391.260000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w10{width:77.520000px;}
.we{width:101.250000px;}
.w15{width:102.540000px;}
.wa{width:105.570000px;}
.w14{width:108.270000px;}
.w11{width:113.070000px;}
.w9{width:126.810000px;}
.wb{width:129.720000px;}
.wf{width:132.840000px;}
.w7{width:140.940000px;}
.w8{width:144.930000px;}
.wc{width:147.870000px;}
.wd{width:152.040000px;}
.w12{width:210.150000px;}
.w13{width:214.590000px;}
.w6{width:220.350000px;}
.w16{width:360.840000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:6.660000px;}
.x3{left:8.640000px;}
.x1f{left:11.970000px;}
.x41{left:13.050000px;}
.x22{left:14.850000px;}
.x3d{left:17.370000px;}
.x2a{left:18.810000px;}
.x12{left:20.160000px;}
.x34{left:21.870000px;}
.x29{left:25.110000px;}
.x16{left:27.630000px;}
.x35{left:29.160000px;}
.x28{left:30.960000px;}
.x14{left:34.110000px;}
.x15{left:36.090000px;}
.x37{left:39.780000px;}
.x36{left:41.760000px;}
.x27{left:43.650000px;}
.x6{left:45.540000px;}
.x26{left:46.800000px;}
.x21{left:48.780000px;}
.x2b{left:50.310000px;}
.x24{left:52.830000px;}
.x2{left:53.999986px;}
.x33{left:55.890000px;}
.x25{left:57.420000px;}
.x18{left:59.669986px;}
.x1{left:60.749986px;}
.x17{left:65.429986px;}
.x9{left:69.209986px;}
.x3e{left:75.600000px;}
.x40{left:77.790000px;}
.x10{left:79.379986px;}
.x3f{left:80.760000px;}
.x39{left:83.250000px;}
.xa{left:84.959986px;}
.x2d{left:86.580000px;}
.x45{left:88.199986px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.x46{left:112.350000px;}
.xe{left:115.919986px;}
.x1e{left:196.590000px;}
.x2e{left:217.110000px;}
.x44{left:250.139986px;}
.x2c{left:292.079986px;}
.x38{left:324.029986px;}
.x1d{left:330.239986px;}
.x20{left:338.250000px;}
.xd{left:340.049986px;}
.x2f{left:365.700000px;}
.x3a{left:407.910000px;}
.xb{left:423.659986px;}
.xf{left:430.499986px;}
.x8{left:459.029986px;}
.xc{left:464.159986px;}
.x19{left:478.229986px;}
.x42{left:479.759986px;}
.x1a{left:483.989986px;}
.x43{left:506.759986px;}
.x1b{left:510.989986px;}
.x30{left:518.460000px;}
.x1c{left:526.559986px;}
.x23{left:611.520000px;}
.x31{left:620.430000px;}
.x3b{left:623.220000px;}
.x11{left:642.210000px;}
.x3c{left:732.300000px;}
.x32{left:753.990000px;}
.x7{left:812.430000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.124267pt;}
.ls8{letter-spacing:0.160000pt;}
.lsa{letter-spacing:14.583680pt;}
.ls2{letter-spacing:32.823680pt;}
.ls1{letter-spacing:36.576000pt;}
.ls9{letter-spacing:41.143680pt;}
.ls7{letter-spacing:56.503680pt;}
.ws5{word-spacing:-53.440000pt;}
.ws7{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.965120pt;}
._5{width:2.256960pt;}
._9{width:3.222400pt;}
._15{width:4.328640pt;}
._a{width:5.290560pt;}
._17{width:6.733440pt;}
._18{width:7.729280pt;}
._13{width:8.623360pt;}
._c{width:9.512320pt;}
._b{width:10.634560pt;}
._6{width:11.649920pt;}
._f{width:12.960000pt;}
._7{width:14.428800pt;}
._8{width:15.497600pt;}
._14{width:17.113280pt;}
._1c{width:18.465280pt;}
._24{width:19.826240pt;}
._1b{width:20.841600pt;}
._1f{width:21.856960pt;}
._1d{width:23.299840pt;}
._1a{width:24.635840pt;}
._2b{width:25.625280pt;}
._25{width:27.414720pt;}
._12{width:28.448000pt;}
._e{width:29.979840pt;}
._d{width:30.888320pt;}
._1e{width:32.224320pt;}
._16{width:33.880960pt;}
._20{width:34.896320pt;}
._21{width:35.858240pt;}
._23{width:36.820160pt;}
._19{width:38.369920pt;}
._22{width:47.882240pt;}
._28{width:49.138880pt;}
._29{width:53.279680pt;}
._2a{width:54.615680pt;}
._27{width:58.972800pt;}
._26{width:60.292800pt;}
._11{width:69.120000pt;}
._10{width:108.144000pt;}
._2{width:115.960427pt;}
._1{width:303.598827pt;}
._4{width:927.208213pt;}
.fs3{font-size:26.560000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y3f{bottom:2.560000pt;}
.y3d{bottom:2.640000pt;}
.y18{bottom:2.880000pt;}
.y35{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.yc6{bottom:8.480000pt;}
.yb6{bottom:8.800000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.yb9{bottom:15.280000pt;}
.y3c{bottom:16.400000pt;}
.y33{bottom:17.200000pt;}
.y3b{bottom:30.240000pt;}
.y7{bottom:31.600000pt;}
.y32{bottom:31.760000pt;}
.y3a{bottom:44.000000pt;}
.y31{bottom:45.600000pt;}
.y3{bottom:51.680000pt;}
.y39{bottom:57.840000pt;}
.y30{bottom:59.360000pt;}
.y38{bottom:71.600000pt;}
.y2f{bottom:73.200000pt;}
.y37{bottom:85.360000pt;}
.y2e{bottom:86.960000pt;}
.y2a{bottom:90.000000pt;}
.y3e{bottom:94.400000pt;}
.y2d{bottom:100.826667pt;}
.y45{bottom:102.720000pt;}
.yb0{bottom:104.480000pt;}
.y29{bottom:105.360000pt;}
.yf2{bottom:108.480000pt;}
.y7d{bottom:110.240000pt;}
.yee{bottom:110.400000pt;}
.y2c{bottom:114.586667pt;}
.y44{bottom:116.480000pt;}
.yaf{bottom:119.760000pt;}
.y28{bottom:120.640000pt;}
.yf1{bottom:123.840000pt;}
.y7c{bottom:125.520000pt;}
.yed{bottom:125.760000pt;}
.y43{bottom:130.560000pt;}
.yae{bottom:135.120000pt;}
.y27{bottom:136.000000pt;}
.yf0{bottom:140.106667pt;}
.y7b{bottom:140.906667pt;}
.yec{bottom:141.066667pt;}
.y42{bottom:145.946667pt;}
.yad{bottom:150.506667pt;}
.y26{bottom:151.360000pt;}
.yef{bottom:155.466667pt;}
.y7a{bottom:156.266667pt;}
.yeb{bottom:156.426667pt;}
.y41{bottom:161.226667pt;}
.yac{bottom:165.786667pt;}
.y25{bottom:166.640000pt;}
.y79{bottom:171.546667pt;}
.yea{bottom:171.786667pt;}
.y40{bottom:176.266667pt;}
.yab{bottom:181.146667pt;}
.y24{bottom:182.000000pt;}
.y78{bottom:186.906667pt;}
.ye9{bottom:187.066667pt;}
.y19{bottom:188.186667pt;}
.yaa{bottom:196.506667pt;}
.y23{bottom:197.360000pt;}
.y77{bottom:202.186667pt;}
.ye8{bottom:202.426667pt;}
.ya9{bottom:211.786667pt;}
.y22{bottom:212.640000pt;}
.y10e{bottom:216.186667pt;}
.y76{bottom:217.546667pt;}
.ye7{bottom:217.786667pt;}
.y110{bottom:223.146667pt;}
.ya8{bottom:227.146667pt;}
.y21{bottom:228.000000pt;}
.y112{bottom:229.306667pt;}
.y75{bottom:232.906667pt;}
.ye6{bottom:233.066667pt;}
.y10f{bottom:235.386667pt;}
.ya7{bottom:242.506667pt;}
.y20{bottom:243.360000pt;}
.y74{bottom:248.186667pt;}
.ye5{bottom:248.426667pt;}
.ya6{bottom:257.786667pt;}
.y1f{bottom:258.640000pt;}
.y73{bottom:263.546667pt;}
.ye4{bottom:263.786667pt;}
.ya5{bottom:273.146667pt;}
.y1e{bottom:274.000000pt;}
.y72{bottom:278.906667pt;}
.ye3{bottom:279.066667pt;}
.ya4{bottom:288.506667pt;}
.y1d{bottom:289.360000pt;}
.y71{bottom:294.186667pt;}
.y36{bottom:294.426667pt;}
.y111{bottom:298.986667pt;}
.ya3{bottom:303.786667pt;}
.y1c{bottom:304.640000pt;}
.y70{bottom:309.546667pt;}
.ye2{bottom:309.786667pt;}
.ya2{bottom:319.146667pt;}
.y1b{bottom:320.000000pt;}
.y6f{bottom:324.906667pt;}
.ye1{bottom:325.066667pt;}
.ya1{bottom:334.506667pt;}
.y1a{bottom:335.386667pt;}
.y6e{bottom:340.186667pt;}
.ye0{bottom:340.426667pt;}
.ya0{bottom:349.786667pt;}
.y6d{bottom:355.546667pt;}
.ydf{bottom:355.706667pt;}
.y9f{bottom:365.146667pt;}
.y6c{bottom:370.906667pt;}
.yde{bottom:371.066667pt;}
.y9e{bottom:380.506667pt;}
.y6b{bottom:386.186667pt;}
.ydd{bottom:386.426667pt;}
.y34{bottom:391.706667pt;}
.y9d{bottom:395.786667pt;}
.y6a{bottom:401.546667pt;}
.ydc{bottom:401.706667pt;}
.y2b{bottom:410.186667pt;}
.y9c{bottom:411.146667pt;}
.y69{bottom:416.906667pt;}
.ydb{bottom:417.066667pt;}
.y9b{bottom:426.426667pt;}
.y68{bottom:432.186667pt;}
.yda{bottom:432.426667pt;}
.y9a{bottom:441.786667pt;}
.y67{bottom:447.546667pt;}
.yd9{bottom:447.706667pt;}
.y99{bottom:457.146667pt;}
.y66{bottom:462.906667pt;}
.yd8{bottom:463.066667pt;}
.y98{bottom:472.426667pt;}
.y65{bottom:478.186667pt;}
.yd7{bottom:478.426667pt;}
.y97{bottom:487.786667pt;}
.y64{bottom:493.546667pt;}
.yd6{bottom:493.706667pt;}
.y96{bottom:503.146667pt;}
.y63{bottom:508.826667pt;}
.yd5{bottom:509.066667pt;}
.y95{bottom:518.453333pt;}
.y62{bottom:524.213333pt;}
.yd4{bottom:524.453333pt;}
.y94{bottom:533.813333pt;}
.y17{bottom:536.693333pt;}
.y61{bottom:539.573333pt;}
.yd3{bottom:539.733333pt;}
.y93{bottom:549.173333pt;}
.yd2{bottom:552.853333pt;}
.y60{bottom:554.853333pt;}
.y10d{bottom:555.093333pt;}
.y92{bottom:564.453333pt;}
.yd1{bottom:565.813333pt;}
.y16{bottom:567.413333pt;}
.y5f{bottom:570.213333pt;}
.y10c{bottom:570.453333pt;}
.yd0{bottom:578.773333pt;}
.y91{bottom:579.813333pt;}
.y15{bottom:585.093333pt;}
.y5e{bottom:585.573333pt;}
.y10b{bottom:585.733333pt;}
.ycf{bottom:591.653333pt;}
.y90{bottom:595.173333pt;}
.y5d{bottom:600.853333pt;}
.y10a{bottom:601.093333pt;}
.yce{bottom:606.373333pt;}
.y14{bottom:610.373333pt;}
.y8f{bottom:610.453333pt;}
.ycd{bottom:616.133333pt;}
.y5c{bottom:616.213333pt;}
.y109{bottom:616.373333pt;}
.y8e{bottom:625.813333pt;}
.ycc{bottom:628.933333pt;}
.y13{bottom:630.293333pt;}
.y5b{bottom:631.573333pt;}
.y108{bottom:631.733333pt;}
.y12{bottom:641.013333pt;}
.ycb{bottom:642.053333pt;}
.y8d{bottom:642.133333pt;}
.y5a{bottom:646.853333pt;}
.y107{bottom:647.093333pt;}
.yca{bottom:655.013333pt;}
.y8c{bottom:657.413333pt;}
.y11{bottom:661.013333pt;}
.y59{bottom:662.213333pt;}
.y106{bottom:662.373333pt;}
.yc9{bottom:667.893333pt;}
.y10{bottom:671.973333pt;}
.y8b{bottom:672.773333pt;}
.y58{bottom:677.573333pt;}
.y105{bottom:677.733333pt;}
.yc8{bottom:680.853333pt;}
.y8a{bottom:689.013333pt;}
.yf{bottom:690.853333pt;}
.y57{bottom:692.853333pt;}
.y104{bottom:693.093333pt;}
.yc7{bottom:693.813333pt;}
.y89{bottom:704.373333pt;}
.yc5{bottom:706.693333pt;}
.y56{bottom:708.213333pt;}
.y103{bottom:708.373333pt;}
.ye{bottom:718.453333pt;}
.y88{bottom:719.733333pt;}
.y55{bottom:723.573333pt;}
.y102{bottom:723.733333pt;}
.yc4{bottom:733.973333pt;}
.y87{bottom:735.973333pt;}
.y54{bottom:738.853333pt;}
.y101{bottom:739.093333pt;}
.yc3{bottom:745.013333pt;}
.yd{bottom:746.053333pt;}
.y86{bottom:751.333333pt;}
.y53{bottom:754.213333pt;}
.y100{bottom:754.373333pt;}
.yc2{bottom:757.813333pt;}
.y85{bottom:766.693333pt;}
.y52{bottom:769.573333pt;}
.yff{bottom:769.733333pt;}
.ybf{bottom:770.933333pt;}
.yc{bottom:773.653333pt;}
.y84{bottom:781.973333pt;}
.yc1{bottom:783.893333pt;}
.y51{bottom:784.853333pt;}
.yfe{bottom:785.093333pt;}
.yc0{bottom:796.773333pt;}
.y83{bottom:798.293333pt;}
.y50{bottom:800.213333pt;}
.yfd{bottom:800.373333pt;}
.yb{bottom:801.253333pt;}
.ybc{bottom:809.733333pt;}
.y82{bottom:813.653333pt;}
.y4f{bottom:815.493333pt;}
.yfc{bottom:815.733333pt;}
.ybe{bottom:822.613333pt;}
.ya{bottom:826.853333pt;}
.y81{bottom:828.933333pt;}
.y4e{bottom:830.853333pt;}
.yfb{bottom:831.093333pt;}
.ybd{bottom:835.573333pt;}
.y8{bottom:840.533333pt;}
.y80{bottom:845.253333pt;}
.y4d{bottom:846.213333pt;}
.yfa{bottom:846.373333pt;}
.yb8{bottom:848.533333pt;}
.y7f{bottom:860.533333pt;}
.ybb{bottom:861.413333pt;}
.y4c{bottom:861.493333pt;}
.yf9{bottom:861.733333pt;}
.yba{bottom:874.373333pt;}
.y7e{bottom:875.893333pt;}
.y4b{bottom:876.853333pt;}
.yf8{bottom:877.093333pt;}
.yb5{bottom:887.360000pt;}
.y4a{bottom:892.240000pt;}
.yf7{bottom:893.360000pt;}
.yb7{bottom:900.240000pt;}
.y49{bottom:907.520000pt;}
.yf6{bottom:908.720000pt;}
.yb3{bottom:913.200000pt;}
.y48{bottom:922.880000pt;}
.yf5{bottom:924.960000pt;}
.yb2{bottom:928.480000pt;}
.y47{bottom:938.240000pt;}
.yf4{bottom:940.320000pt;}
.yb1{bottom:940.720000pt;}
.y46{bottom:953.520000pt;}
.yf3{bottom:956.080000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1b{height:12.240000pt;}
.h1f{height:12.266667pt;}
.h1d{height:12.320000pt;}
.h23{height:13.840000pt;}
.hf{height:15.280000pt;}
.h14{height:17.760000pt;}
.h22{height:22.343750pt;}
.hc{height:24.131250pt;}
.h3{height:24.560000pt;}
.h1c{height:25.200000pt;}
.h21{height:26.416406pt;}
.h5{height:29.717188pt;}
.h1a{height:30.028906pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h6{height:34.739844pt;}
.h12{height:35.554688pt;}
.h4{height:37.314062pt;}
.he{height:37.705469pt;}
.h20{height:38.080000pt;}
.h1e{height:38.106667pt;}
.h19{height:38.905781pt;}
.h13{height:39.584219pt;}
.h8{height:40.889062pt;}
.h2{height:43.367812pt;}
.h1{height:45.156250pt;}
.h9{height:47.522812pt;}
.hb{height:47.856406pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.h24{height:69.040000pt;}
.h15{height:96.560000pt;}
.h18{height:105.600000pt;}
.h11{height:125.786667pt;}
.h7{height:136.826667pt;}
.h10{height:347.786667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w10{width:68.906667pt;}
.we{width:90.000000pt;}
.w15{width:91.146667pt;}
.wa{width:93.840000pt;}
.w14{width:96.240000pt;}
.w11{width:100.506667pt;}
.w9{width:112.720000pt;}
.wb{width:115.306667pt;}
.wf{width:118.080000pt;}
.w7{width:125.280000pt;}
.w8{width:128.826667pt;}
.wc{width:131.440000pt;}
.wd{width:135.146667pt;}
.w12{width:186.800000pt;}
.w13{width:190.746667pt;}
.w6{width:195.866667pt;}
.w16{width:320.746667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.920000pt;}
.x3{left:7.680000pt;}
.x1f{left:10.640000pt;}
.x41{left:11.600000pt;}
.x22{left:13.200000pt;}
.x3d{left:15.440000pt;}
.x2a{left:16.720000pt;}
.x12{left:17.920000pt;}
.x34{left:19.440000pt;}
.x29{left:22.320000pt;}
.x16{left:24.560000pt;}
.x35{left:25.920000pt;}
.x28{left:27.520000pt;}
.x14{left:30.320000pt;}
.x15{left:32.080000pt;}
.x37{left:35.360000pt;}
.x36{left:37.120000pt;}
.x27{left:38.800000pt;}
.x6{left:40.480000pt;}
.x26{left:41.600000pt;}
.x21{left:43.360000pt;}
.x2b{left:44.720000pt;}
.x24{left:46.960000pt;}
.x2{left:47.999988pt;}
.x33{left:49.680000pt;}
.x25{left:51.040000pt;}
.x18{left:53.039988pt;}
.x1{left:53.999988pt;}
.x17{left:58.159988pt;}
.x9{left:61.519988pt;}
.x3e{left:67.200000pt;}
.x40{left:69.146667pt;}
.x10{left:70.559988pt;}
.x3f{left:71.786667pt;}
.x39{left:74.000000pt;}
.xa{left:75.519988pt;}
.x2d{left:76.960000pt;}
.x45{left:78.399988pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.x46{left:99.866667pt;}
.xe{left:103.039988pt;}
.x1e{left:174.746667pt;}
.x2e{left:192.986667pt;}
.x44{left:222.346655pt;}
.x2c{left:259.626655pt;}
.x38{left:288.026655pt;}
.x1d{left:293.546655pt;}
.x20{left:300.666667pt;}
.xd{left:302.266655pt;}
.x2f{left:325.066667pt;}
.x3a{left:362.586667pt;}
.xb{left:376.586655pt;}
.xf{left:382.666655pt;}
.x8{left:408.026655pt;}
.xc{left:412.586655pt;}
.x19{left:425.093321pt;}
.x42{left:426.453321pt;}
.x1a{left:430.213321pt;}
.x43{left:450.453321pt;}
.x1b{left:454.213321pt;}
.x30{left:460.853333pt;}
.x1c{left:468.053321pt;}
.x23{left:543.573333pt;}
.x31{left:551.493333pt;}
.x3b{left:553.973333pt;}
.x11{left:570.853333pt;}
.x3c{left:650.933333pt;}
.x32{left:670.213333pt;}
.x7{left:722.160000pt;}
}




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