
    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_18da06f8f10f117f78dab814.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_bd324be50e569218e10b8b42.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_852625ebbe1930bb7f406dae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f003c6914dfd3ad35e2f4324.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01b2f17769c2c1207911b433.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_badc6e757905b1b1eae9db45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_975478faaa36a87ee6d77609.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_068410bf00a4bafb8b72c139.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-27.540000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.720000px;}
.lsa{letter-spacing:2.160000px;}
.ls8{letter-spacing:12.384000px;}
.ls7{letter-spacing:170.784000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws0{word-spacing:-14.970240px;}
.ws5{word-spacing:-12.240000px;}
.ws4{word-spacing:-12.204000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-4.968000px;}
._3{margin-left:-3.780000px;}
._1{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._2{width:1.236000px;}
._6{width:2.280000px;}
._c{width:3.360000px;}
._d{width:4.416000px;}
._b{width:5.680320px;}
._4{width:6.912000px;}
._5{width:8.568000px;}
._7{width:10.080000px;}
._8{width:11.160000px;}
._e{width:12.456000px;}
._a{width:13.608000px;}
._19{width:14.820000px;}
._9{width:16.288320px;}
._f{width:19.296000px;}
._11{width:20.736000px;}
._1d{width:22.032000px;}
._16{width:23.536320px;}
._15{width:24.552000px;}
._1a{width:25.632000px;}
._1b{width:26.916000px;}
._10{width:28.584000px;}
._1c{width:29.728320px;}
._12{width:31.248000px;}
._13{width:32.472000px;}
._21{width:34.560000px;}
._22{width:35.712000px;}
._20{width:37.008000px;}
._1e{width:39.744000px;}
._1f{width:41.904000px;}
._17{width:42.984000px;}
._18{width:44.712000px;}
._23{width:70.104000px;}
._24{width:71.364000px;}
._26{width:81.432000px;}
._27{width:82.452000px;}
._25{width:211.968000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.ya{bottom:-27.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.340000px;}
.y2{bottom:4.680000px;}
.y9{bottom:11.700000px;}
.y11{bottom:12.600000px;}
.y75{bottom:14.940000px;}
.y74{bottom:17.535000px;}
.y73{bottom:20.055000px;}
.y3{bottom:21.420000px;}
.y72{bottom:22.530000px;}
.y1{bottom:23.760000px;}
.y6{bottom:24.840000px;}
.y71{bottom:24.990000px;}
.y70{bottom:27.435000px;}
.y6f{bottom:29.805000px;}
.y6e{bottom:32.190000px;}
.y6d{bottom:34.530000px;}
.y65{bottom:39.525000px;}
.y8{bottom:45.900000px;}
.y5e{bottom:48.600000px;}
.yf{bottom:57.420000px;}
.y5f{bottom:62.100000px;}
.y66{bottom:67.065000px;}
.y60{bottom:74.625000px;}
.ye{bottom:77.580000px;}
.y61{bottom:86.325000px;}
.yd{bottom:93.420000px;}
.y67{bottom:95.010000px;}
.y62{bottom:97.230000px;}
.y63{bottom:107.460000px;}
.ye1{bottom:114.660000px;}
.y5c{bottom:115.560000px;}
.y64{bottom:117.030000px;}
.y9f{bottom:121.860000px;}
.y68{bottom:123.375000px;}
.yf5{bottom:124.560000px;}
.y3b{bottom:129.060000px;}
.ye0{bottom:135.360000px;}
.y5b{bottom:136.260000px;}
.y9e{bottom:142.560000px;}
.yf4{bottom:145.260000px;}
.y3a{bottom:149.760000px;}
.y69{bottom:152.130000px;}
.ydf{bottom:156.060000px;}
.y5a{bottom:156.960000px;}
.y9d{bottom:163.260000px;}
.yf3{bottom:165.960000px;}
.y39{bottom:170.460000px;}
.yde{bottom:176.760000px;}
.y59{bottom:177.660000px;}
.ycf{bottom:180.720000px;}
.y6a{bottom:181.410000px;}
.y9c{bottom:183.960000px;}
.yf2{bottom:186.660000px;}
.y38{bottom:191.160000px;}
.y108{bottom:195.660000px;}
.y58{bottom:198.390000px;}
.y9b{bottom:204.690000px;}
.ydd{bottom:206.490000px;}
.yf1{bottom:207.390000px;}
.ybc{bottom:210.090000px;}
.yce{bottom:210.450000px;}
.y6b{bottom:211.065000px;}
.y37{bottom:211.890000px;}
.y107{bottom:216.390000px;}
.y9a{bottom:225.390000px;}
.ydc{bottom:227.190000px;}
.y57{bottom:228.090000px;}
.ybb{bottom:230.790000px;}
.ycd{bottom:231.150000px;}
.y36{bottom:232.590000px;}
.y106{bottom:237.090000px;}
.y6c{bottom:241.230000px;}
.y99{bottom:246.090000px;}
.ydb{bottom:247.890000px;}
.y56{bottom:248.790000px;}
.ycc{bottom:251.850000px;}
.y129{bottom:256.890000px;}
.y105{bottom:257.790000px;}
.yba{bottom:260.490000px;}
.y35{bottom:262.290000px;}
.y98{bottom:266.790000px;}
.yda{bottom:268.590000px;}
.y55{bottom:269.490000px;}
.ycb{bottom:272.550000px;}
.y128{bottom:277.590000px;}
.y104{bottom:278.490000px;}
.yb9{bottom:281.190000px;}
.y97{bottom:287.490000px;}
.yd9{bottom:289.290000px;}
.y34{bottom:291.990000px;}
.yca{bottom:293.250000px;}
.y127{bottom:298.290000px;}
.y54{bottom:299.190000px;}
.yb8{bottom:301.890000px;}
.y96{bottom:308.190000px;}
.yd8{bottom:309.990000px;}
.yc9{bottom:313.950000px;}
.y126{bottom:318.990000px;}
.y53{bottom:319.890000px;}
.y33{bottom:321.690000px;}
.yb7{bottom:322.590000px;}
.yd7{bottom:330.690000px;}
.yc8{bottom:334.650000px;}
.y95{bottom:337.890000px;}
.y103{bottom:340.590000px;}
.yb6{bottom:343.290000px;}
.y125{bottom:348.690000px;}
.y52{bottom:349.590000px;}
.y32{bottom:351.390000px;}
.yc7{bottom:355.350000px;}
.y94{bottom:358.590000px;}
.y102{bottom:361.290000px;}
.yb5{bottom:363.990000px;}
.y124{bottom:369.390000px;}
.y51{bottom:370.290000px;}
.y31{bottom:372.090000px;}
.yc6{bottom:376.050000px;}
.y93{bottom:379.290000px;}
.y101{bottom:381.990000px;}
.yb4{bottom:384.690000px;}
.y123{bottom:390.090000px;}
.y50{bottom:390.990000px;}
.y30{bottom:392.790000px;}
.y92{bottom:399.990000px;}
.y100{bottom:402.690000px;}
.yb3{bottom:405.390000px;}
.yc5{bottom:405.750000px;}
.y4f{bottom:411.690000px;}
.y2f{bottom:413.490000px;}
.y122{bottom:419.790000px;}
.y91{bottom:420.690000px;}
.yff{bottom:423.390000px;}
.yb2{bottom:426.090000px;}
.yc4{bottom:431.490000px;}
.y4e{bottom:432.390000px;}
.y2e{bottom:434.190000px;}
.y121{bottom:440.535000px;}
.y90{bottom:441.435000px;}
.yfe{bottom:444.135000px;}
.yb1{bottom:446.835000px;}
.yf0{bottom:453.135000px;}
.y2d{bottom:454.935000px;}
.y120{bottom:461.235000px;}
.y4d{bottom:462.135000px;}
.yfd{bottom:464.835000px;}
.yef{bottom:473.835000px;}
.y2c{bottom:475.635000px;}
.yb0{bottom:476.535000px;}
.y11f{bottom:481.935000px;}
.y4c{bottom:482.835000px;}
.yfc{bottom:485.535000px;}
.yee{bottom:494.535000px;}
.y2b{bottom:496.335000px;}
.y4b{bottom:503.535000px;}
.yaf{bottom:506.235000px;}
.y11e{bottom:511.635000px;}
.yed{bottom:515.235000px;}
.y2a{bottom:517.035000px;}
.y8f{bottom:524.235000px;}
.yfb{bottom:526.935000px;}
.y11d{bottom:532.335000px;}
.y4a{bottom:533.235000px;}
.yae{bottom:535.935000px;}
.y29{bottom:537.735000px;}
.y8e{bottom:544.935000px;}
.yfa{bottom:547.635000px;}
.y11c{bottom:553.035000px;}
.y49{bottom:553.935000px;}
.yad{bottom:556.635000px;}
.y28{bottom:558.435000px;}
.y8d{bottom:565.635000px;}
.y48{bottom:574.635000px;}
.yac{bottom:577.335000px;}
.y27{bottom:579.135000px;}
.y12f{bottom:580.035000px;}
.y11b{bottom:582.735000px;}
.y8c{bottom:586.335000px;}
.y47{bottom:595.335000px;}
.yab{bottom:598.035000px;}
.y26{bottom:599.835000px;}
.y11a{bottom:603.435000px;}
.y8b{bottom:607.035000px;}
.y12e{bottom:609.735000px;}
.y46{bottom:616.035000px;}
.y10{bottom:617.475000px;}
.yf9{bottom:618.735000px;}
.y25{bottom:620.535000px;}
.y119{bottom:624.135000px;}
.y8a{bottom:627.735000px;}
.y45{bottom:636.735000px;}
.yf8{bottom:639.435000px;}
.y24{bottom:641.235000px;}
.y89{bottom:648.435000px;}
.y118{bottom:653.835000px;}
.y44{bottom:657.435000px;}
.y12d{bottom:660.135000px;}
.y23{bottom:661.935000px;}
.y88{bottom:669.135000px;}
.y117{bottom:674.565000px;}
.y43{bottom:678.165000px;}
.y12c{bottom:680.865000px;}
.y22{bottom:682.665000px;}
.yaa{bottom:689.865000px;}
.yd6{bottom:691.665000px;}
.y116{bottom:695.265000px;}
.y87{bottom:698.865000px;}
.y21{bottom:703.365000px;}
.y42{bottom:707.865000px;}
.ya9{bottom:710.565000px;}
.yd5{bottom:712.365000px;}
.y86{bottom:719.565000px;}
.y115{bottom:724.965000px;}
.y41{bottom:728.565000px;}
.ya8{bottom:731.265000px;}
.y20{bottom:733.065000px;}
.y85{bottom:740.265000px;}
.y114{bottom:745.665000px;}
.yc3{bottom:748.365000px;}
.yec{bottom:749.265000px;}
.ya7{bottom:751.965000px;}
.yd4{bottom:753.765000px;}
.y40{bottom:754.305000px;}
.y5d{bottom:755.460000px;}
.y84{bottom:760.965000px;}
.y1f{bottom:762.765000px;}
.y113{bottom:766.365000px;}
.yc2{bottom:769.065000px;}
.yeb{bottom:769.965000px;}
.y12b{bottom:772.665000px;}
.yd3{bottom:774.465000px;}
.y83{bottom:781.665000px;}
.yc1{bottom:789.765000px;}
.yea{bottom:790.665000px;}
.y112{bottom:796.065000px;}
.y1e{bottom:799.305000px;}
.y82{bottom:802.365000px;}
.yd2{bottom:804.165000px;}
.yc0{bottom:810.465000px;}
.ye9{bottom:811.365000px;}
.y81{bottom:823.065000px;}
.y111{bottom:825.765000px;}
.y1d{bottom:829.005000px;}
.ybf{bottom:831.165000px;}
.ye8{bottom:832.065000px;}
.yd1{bottom:833.865000px;}
.y80{bottom:843.765000px;}
.y110{bottom:846.465000px;}
.ye7{bottom:852.765000px;}
.y1c{bottom:858.705000px;}
.yd0{bottom:859.605000px;}
.ybe{bottom:860.865000px;}
.ya6{bottom:864.465000px;}
.y7f{bottom:873.465000px;}
.y10f{bottom:876.165000px;}
.y1b{bottom:881.565000px;}
.y12a{bottom:885.165000px;}
.ybd{bottom:886.605000px;}
.y7e{bottom:894.165000px;}
.y10e{bottom:905.865000px;}
.y7d{bottom:914.910000px;}
.y1a{bottom:918.150000px;}
.ya5{bottom:923.910000px;}
.y10d{bottom:926.610000px;}
.y7c{bottom:935.610000px;}
.y19{bottom:941.010000px;}
.yf7{bottom:944.610000px;}
.y10c{bottom:947.310000px;}
.ya4{bottom:953.610000px;}
.y7b{bottom:956.310000px;}
.y18{bottom:961.710000px;}
.yf6{bottom:965.310000px;}
.y10b{bottom:968.010000px;}
.ya3{bottom:974.310000px;}
.y7a{bottom:977.010000px;}
.ye6{bottom:986.010000px;}
.y17{bottom:991.410000px;}
.ya2{bottom:995.010000px;}
.y79{bottom:997.710000px;}
.ye5{bottom:1006.710000px;}
.ya1{bottom:1015.710000px;}
.y10a{bottom:1018.410000px;}
.y16{bottom:1021.110000px;}
.y78{bottom:1027.410000px;}
.ya0{bottom:1036.410000px;}
.y109{bottom:1039.110000px;}
.y15{bottom:1041.810000px;}
.ye4{bottom:1048.110000px;}
.y77{bottom:1057.110000px;}
.y3f{bottom:1068.810000px;}
.y14{bottom:1071.510000px;}
.y76{bottom:1077.810000px;}
.ye3{bottom:1089.510000px;}
.y3e{bottom:1098.510000px;}
.y13{bottom:1101.210000px;}
.ye2{bottom:1110.210000px;}
.y3d{bottom:1119.210000px;}
.y12{bottom:1130.910000px;}
.y3c{bottom:1139.910000px;}
.yc{bottom:1193.220000px;}
.y7{bottom:1200.960000px;}
.y5{bottom:1205.280000px;}
.yb{bottom:1208.880000px;}
.h4{height:15.660000px;}
.h2{height:18.000000px;}
.h9{height:28.260000px;}
.h5{height:39.600000px;}
.hc{height:40.254961px;}
.h8{height:49.868086px;}
.ha{height:50.800781px;}
.h12{height:52.417969px;}
.h10{height:53.709961px;}
.h11{height:53.853187px;}
.hb{height:57.796523px;}
.hd{height:60.082031px;}
.h7{height:60.660000px;}
.he{height:61.171875px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hf{height:300.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:84.990000px;}
.w6{width:88.236000px;}
.w2{width:165.810000px;}
.w3{width:184.530000px;}
.w4{width:189.390000px;}
.w5{width:397.515000px;}
.w9{width:607.320000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.xb{left:10.800000px;}
.x8{left:21.780000px;}
.x25{left:31.530000px;}
.x24{left:33.405000px;}
.x23{left:35.250000px;}
.x6{left:39.600000px;}
.x20{left:40.605000px;}
.x22{left:42.990000px;}
.x3{left:61.380000px;}
.x21{left:74.670000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x26{left:117.900000px;}
.xd{left:119.555987px;}
.x17{left:125.855987px;}
.x10{left:135.395987px;}
.x2e{left:137.735987px;}
.x19{left:142.560000px;}
.x14{left:148.175987px;}
.x12{left:150.509987px;}
.x27{left:155.010000px;}
.x28{left:173.910000px;}
.x30{left:174.989987px;}
.x32{left:179.489987px;}
.x29{left:193.110000px;}
.x5{left:208.290000px;}
.x2a{left:212.550000px;}
.x2b{left:232.230000px;}
.x2c{left:252.210000px;}
.x11{left:254.909987px;}
.x2d{left:272.490000px;}
.x1a{left:294.660000px;}
.x15{left:306.794987px;}
.x34{left:310.934987px;}
.x1b{left:317.490000px;}
.x1c{left:327.705000px;}
.x13{left:335.774987px;}
.x1d{left:337.245000px;}
.x1e{left:346.215000px;}
.x1f{left:349.410000px;}
.x4{left:364.575000px;}
.x18{left:413.354987px;}
.xe{left:424.874987px;}
.xf{left:446.474987px;}
.x2f{left:677.129987px;}
.x33{left:689.549987px;}
.x1{left:694.950000px;}
.x31{left:703.049987px;}
.x16{left:750.209987px;}
.x7{left:767.850000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls8{letter-spacing:11.008000pt;}
.ls7{letter-spacing:151.808000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws5{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-4.416000pt;}
._3{margin-left:-3.360000pt;}
._1{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.098667pt;}
._6{width:2.026667pt;}
._c{width:2.986667pt;}
._d{width:3.925333pt;}
._b{width:5.049173pt;}
._4{width:6.144000pt;}
._5{width:7.616000pt;}
._7{width:8.960000pt;}
._8{width:9.920000pt;}
._e{width:11.072000pt;}
._a{width:12.096000pt;}
._19{width:13.173333pt;}
._9{width:14.478507pt;}
._f{width:17.152000pt;}
._11{width:18.432000pt;}
._1d{width:19.584000pt;}
._16{width:20.921173pt;}
._15{width:21.824000pt;}
._1a{width:22.784000pt;}
._1b{width:23.925333pt;}
._10{width:25.408000pt;}
._1c{width:26.425173pt;}
._12{width:27.776000pt;}
._13{width:28.864000pt;}
._21{width:30.720000pt;}
._22{width:31.744000pt;}
._20{width:32.896000pt;}
._1e{width:35.328000pt;}
._1f{width:37.248000pt;}
._17{width:38.208000pt;}
._18{width:39.744000pt;}
._23{width:62.314667pt;}
._24{width:63.434667pt;}
._26{width:72.384000pt;}
._27{width:73.290667pt;}
._25{width:188.416000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.ya{bottom:-24.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.080000pt;}
.y2{bottom:4.160000pt;}
.y9{bottom:10.400000pt;}
.y11{bottom:11.200000pt;}
.y75{bottom:13.280000pt;}
.y74{bottom:15.586667pt;}
.y73{bottom:17.826667pt;}
.y3{bottom:19.040000pt;}
.y72{bottom:20.026667pt;}
.y1{bottom:21.120000pt;}
.y6{bottom:22.080000pt;}
.y71{bottom:22.213333pt;}
.y70{bottom:24.386667pt;}
.y6f{bottom:26.493333pt;}
.y6e{bottom:28.613333pt;}
.y6d{bottom:30.693333pt;}
.y65{bottom:35.133333pt;}
.y8{bottom:40.800000pt;}
.y5e{bottom:43.200000pt;}
.yf{bottom:51.040000pt;}
.y5f{bottom:55.200000pt;}
.y66{bottom:59.613333pt;}
.y60{bottom:66.333333pt;}
.ye{bottom:68.960000pt;}
.y61{bottom:76.733333pt;}
.yd{bottom:83.040000pt;}
.y67{bottom:84.453333pt;}
.y62{bottom:86.426667pt;}
.y63{bottom:95.520000pt;}
.ye1{bottom:101.920000pt;}
.y5c{bottom:102.720000pt;}
.y64{bottom:104.026667pt;}
.y9f{bottom:108.320000pt;}
.y68{bottom:109.666667pt;}
.yf5{bottom:110.720000pt;}
.y3b{bottom:114.720000pt;}
.ye0{bottom:120.320000pt;}
.y5b{bottom:121.120000pt;}
.y9e{bottom:126.720000pt;}
.yf4{bottom:129.120000pt;}
.y3a{bottom:133.120000pt;}
.y69{bottom:135.226667pt;}
.ydf{bottom:138.720000pt;}
.y5a{bottom:139.520000pt;}
.y9d{bottom:145.120000pt;}
.yf3{bottom:147.520000pt;}
.y39{bottom:151.520000pt;}
.yde{bottom:157.120000pt;}
.y59{bottom:157.920000pt;}
.ycf{bottom:160.640000pt;}
.y6a{bottom:161.253333pt;}
.y9c{bottom:163.520000pt;}
.yf2{bottom:165.920000pt;}
.y38{bottom:169.920000pt;}
.y108{bottom:173.920000pt;}
.y58{bottom:176.346667pt;}
.y9b{bottom:181.946667pt;}
.ydd{bottom:183.546667pt;}
.yf1{bottom:184.346667pt;}
.ybc{bottom:186.746667pt;}
.yce{bottom:187.066667pt;}
.y6b{bottom:187.613333pt;}
.y37{bottom:188.346667pt;}
.y107{bottom:192.346667pt;}
.y9a{bottom:200.346667pt;}
.ydc{bottom:201.946667pt;}
.y57{bottom:202.746667pt;}
.ybb{bottom:205.146667pt;}
.ycd{bottom:205.466667pt;}
.y36{bottom:206.746667pt;}
.y106{bottom:210.746667pt;}
.y6c{bottom:214.426667pt;}
.y99{bottom:218.746667pt;}
.ydb{bottom:220.346667pt;}
.y56{bottom:221.146667pt;}
.ycc{bottom:223.866667pt;}
.y129{bottom:228.346667pt;}
.y105{bottom:229.146667pt;}
.yba{bottom:231.546667pt;}
.y35{bottom:233.146667pt;}
.y98{bottom:237.146667pt;}
.yda{bottom:238.746667pt;}
.y55{bottom:239.546667pt;}
.ycb{bottom:242.266667pt;}
.y128{bottom:246.746667pt;}
.y104{bottom:247.546667pt;}
.yb9{bottom:249.946667pt;}
.y97{bottom:255.546667pt;}
.yd9{bottom:257.146667pt;}
.y34{bottom:259.546667pt;}
.yca{bottom:260.666667pt;}
.y127{bottom:265.146667pt;}
.y54{bottom:265.946667pt;}
.yb8{bottom:268.346667pt;}
.y96{bottom:273.946667pt;}
.yd8{bottom:275.546667pt;}
.yc9{bottom:279.066667pt;}
.y126{bottom:283.546667pt;}
.y53{bottom:284.346667pt;}
.y33{bottom:285.946667pt;}
.yb7{bottom:286.746667pt;}
.yd7{bottom:293.946667pt;}
.yc8{bottom:297.466667pt;}
.y95{bottom:300.346667pt;}
.y103{bottom:302.746667pt;}
.yb6{bottom:305.146667pt;}
.y125{bottom:309.946667pt;}
.y52{bottom:310.746667pt;}
.y32{bottom:312.346667pt;}
.yc7{bottom:315.866667pt;}
.y94{bottom:318.746667pt;}
.y102{bottom:321.146667pt;}
.yb5{bottom:323.546667pt;}
.y124{bottom:328.346667pt;}
.y51{bottom:329.146667pt;}
.y31{bottom:330.746667pt;}
.yc6{bottom:334.266667pt;}
.y93{bottom:337.146667pt;}
.y101{bottom:339.546667pt;}
.yb4{bottom:341.946667pt;}
.y123{bottom:346.746667pt;}
.y50{bottom:347.546667pt;}
.y30{bottom:349.146667pt;}
.y92{bottom:355.546667pt;}
.y100{bottom:357.946667pt;}
.yb3{bottom:360.346667pt;}
.yc5{bottom:360.666667pt;}
.y4f{bottom:365.946667pt;}
.y2f{bottom:367.546667pt;}
.y122{bottom:373.146667pt;}
.y91{bottom:373.946667pt;}
.yff{bottom:376.346667pt;}
.yb2{bottom:378.746667pt;}
.yc4{bottom:383.546667pt;}
.y4e{bottom:384.346667pt;}
.y2e{bottom:385.946667pt;}
.y121{bottom:391.586667pt;}
.y90{bottom:392.386667pt;}
.yfe{bottom:394.786667pt;}
.yb1{bottom:397.186667pt;}
.yf0{bottom:402.786667pt;}
.y2d{bottom:404.386667pt;}
.y120{bottom:409.986667pt;}
.y4d{bottom:410.786667pt;}
.yfd{bottom:413.186667pt;}
.yef{bottom:421.186667pt;}
.y2c{bottom:422.786667pt;}
.yb0{bottom:423.586667pt;}
.y11f{bottom:428.386667pt;}
.y4c{bottom:429.186667pt;}
.yfc{bottom:431.586667pt;}
.yee{bottom:439.586667pt;}
.y2b{bottom:441.186667pt;}
.y4b{bottom:447.586667pt;}
.yaf{bottom:449.986667pt;}
.y11e{bottom:454.786667pt;}
.yed{bottom:457.986667pt;}
.y2a{bottom:459.586667pt;}
.y8f{bottom:465.986667pt;}
.yfb{bottom:468.386667pt;}
.y11d{bottom:473.186667pt;}
.y4a{bottom:473.986667pt;}
.yae{bottom:476.386667pt;}
.y29{bottom:477.986667pt;}
.y8e{bottom:484.386667pt;}
.yfa{bottom:486.786667pt;}
.y11c{bottom:491.586667pt;}
.y49{bottom:492.386667pt;}
.yad{bottom:494.786667pt;}
.y28{bottom:496.386667pt;}
.y8d{bottom:502.786667pt;}
.y48{bottom:510.786667pt;}
.yac{bottom:513.186667pt;}
.y27{bottom:514.786667pt;}
.y12f{bottom:515.586667pt;}
.y11b{bottom:517.986667pt;}
.y8c{bottom:521.186667pt;}
.y47{bottom:529.186667pt;}
.yab{bottom:531.586667pt;}
.y26{bottom:533.186667pt;}
.y11a{bottom:536.386667pt;}
.y8b{bottom:539.586667pt;}
.y12e{bottom:541.986667pt;}
.y46{bottom:547.586667pt;}
.y10{bottom:548.866667pt;}
.yf9{bottom:549.986667pt;}
.y25{bottom:551.586667pt;}
.y119{bottom:554.786667pt;}
.y8a{bottom:557.986667pt;}
.y45{bottom:565.986667pt;}
.yf8{bottom:568.386667pt;}
.y24{bottom:569.986667pt;}
.y89{bottom:576.386667pt;}
.y118{bottom:581.186667pt;}
.y44{bottom:584.386667pt;}
.y12d{bottom:586.786667pt;}
.y23{bottom:588.386667pt;}
.y88{bottom:594.786667pt;}
.y117{bottom:599.613333pt;}
.y43{bottom:602.813333pt;}
.y12c{bottom:605.213333pt;}
.y22{bottom:606.813333pt;}
.yaa{bottom:613.213333pt;}
.yd6{bottom:614.813333pt;}
.y116{bottom:618.013333pt;}
.y87{bottom:621.213333pt;}
.y21{bottom:625.213333pt;}
.y42{bottom:629.213333pt;}
.ya9{bottom:631.613333pt;}
.yd5{bottom:633.213333pt;}
.y86{bottom:639.613333pt;}
.y115{bottom:644.413333pt;}
.y41{bottom:647.613333pt;}
.ya8{bottom:650.013333pt;}
.y20{bottom:651.613333pt;}
.y85{bottom:658.013333pt;}
.y114{bottom:662.813333pt;}
.yc3{bottom:665.213333pt;}
.yec{bottom:666.013333pt;}
.ya7{bottom:668.413333pt;}
.yd4{bottom:670.013333pt;}
.y40{bottom:670.493333pt;}
.y5d{bottom:671.520000pt;}
.y84{bottom:676.413333pt;}
.y1f{bottom:678.013333pt;}
.y113{bottom:681.213333pt;}
.yc2{bottom:683.613333pt;}
.yeb{bottom:684.413333pt;}
.y12b{bottom:686.813333pt;}
.yd3{bottom:688.413333pt;}
.y83{bottom:694.813333pt;}
.yc1{bottom:702.013333pt;}
.yea{bottom:702.813333pt;}
.y112{bottom:707.613333pt;}
.y1e{bottom:710.493333pt;}
.y82{bottom:713.213333pt;}
.yd2{bottom:714.813333pt;}
.yc0{bottom:720.413333pt;}
.ye9{bottom:721.213333pt;}
.y81{bottom:731.613333pt;}
.y111{bottom:734.013333pt;}
.y1d{bottom:736.893333pt;}
.ybf{bottom:738.813333pt;}
.ye8{bottom:739.613333pt;}
.yd1{bottom:741.213333pt;}
.y80{bottom:750.013333pt;}
.y110{bottom:752.413333pt;}
.ye7{bottom:758.013333pt;}
.y1c{bottom:763.293333pt;}
.yd0{bottom:764.093333pt;}
.ybe{bottom:765.213333pt;}
.ya6{bottom:768.413333pt;}
.y7f{bottom:776.413333pt;}
.y10f{bottom:778.813333pt;}
.y1b{bottom:783.613333pt;}
.y12a{bottom:786.813333pt;}
.ybd{bottom:788.093333pt;}
.y7e{bottom:794.813333pt;}
.y10e{bottom:805.213333pt;}
.y7d{bottom:813.253333pt;}
.y1a{bottom:816.133333pt;}
.ya5{bottom:821.253333pt;}
.y10d{bottom:823.653333pt;}
.y7c{bottom:831.653333pt;}
.y19{bottom:836.453333pt;}
.yf7{bottom:839.653333pt;}
.y10c{bottom:842.053333pt;}
.ya4{bottom:847.653333pt;}
.y7b{bottom:850.053333pt;}
.y18{bottom:854.853333pt;}
.yf6{bottom:858.053333pt;}
.y10b{bottom:860.453333pt;}
.ya3{bottom:866.053333pt;}
.y7a{bottom:868.453333pt;}
.ye6{bottom:876.453333pt;}
.y17{bottom:881.253333pt;}
.ya2{bottom:884.453333pt;}
.y79{bottom:886.853333pt;}
.ye5{bottom:894.853333pt;}
.ya1{bottom:902.853333pt;}
.y10a{bottom:905.253333pt;}
.y16{bottom:907.653333pt;}
.y78{bottom:913.253333pt;}
.ya0{bottom:921.253333pt;}
.y109{bottom:923.653333pt;}
.y15{bottom:926.053333pt;}
.ye4{bottom:931.653333pt;}
.y77{bottom:939.653333pt;}
.y3f{bottom:950.053333pt;}
.y14{bottom:952.453333pt;}
.y76{bottom:958.053333pt;}
.ye3{bottom:968.453333pt;}
.y3e{bottom:976.453333pt;}
.y13{bottom:978.853333pt;}
.ye2{bottom:986.853333pt;}
.y3d{bottom:994.853333pt;}
.y12{bottom:1005.253333pt;}
.y3c{bottom:1013.253333pt;}
.yc{bottom:1060.640000pt;}
.y7{bottom:1067.520000pt;}
.y5{bottom:1071.360000pt;}
.yb{bottom:1074.560000pt;}
.h4{height:13.920000pt;}
.h2{height:16.000000pt;}
.h9{height:25.120000pt;}
.h5{height:35.200000pt;}
.hc{height:35.782187pt;}
.h8{height:44.327188pt;}
.ha{height:45.156250pt;}
.h12{height:46.593750pt;}
.h10{height:47.742188pt;}
.h11{height:47.869500pt;}
.hb{height:51.374688pt;}
.hd{height:53.406250pt;}
.h7{height:53.920000pt;}
.he{height:54.375000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hf{height:267.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:75.546667pt;}
.w6{width:78.432000pt;}
.w2{width:147.386667pt;}
.w3{width:164.026667pt;}
.w4{width:168.346667pt;}
.w5{width:353.346667pt;}
.w9{width:539.840000pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.xb{left:9.600000pt;}
.x8{left:19.360000pt;}
.x25{left:28.026667pt;}
.x24{left:29.693333pt;}
.x23{left:31.333333pt;}
.x6{left:35.200000pt;}
.x20{left:36.093333pt;}
.x22{left:38.213333pt;}
.x3{left:54.560000pt;}
.x21{left:66.373333pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x26{left:104.800000pt;}
.xd{left:106.271988pt;}
.x17{left:111.871988pt;}
.x10{left:120.351988pt;}
.x2e{left:122.431988pt;}
.x19{left:126.720000pt;}
.x14{left:131.711988pt;}
.x12{left:133.786655pt;}
.x27{left:137.786667pt;}
.x28{left:154.586667pt;}
.x30{left:155.546655pt;}
.x32{left:159.546655pt;}
.x29{left:171.653333pt;}
.x5{left:185.146667pt;}
.x2a{left:188.933333pt;}
.x2b{left:206.426667pt;}
.x2c{left:224.186667pt;}
.x11{left:226.586655pt;}
.x2d{left:242.213333pt;}
.x1a{left:261.920000pt;}
.x15{left:272.706655pt;}
.x34{left:276.386655pt;}
.x1b{left:282.213333pt;}
.x1c{left:291.293333pt;}
.x13{left:298.466655pt;}
.x1d{left:299.773333pt;}
.x1e{left:307.746667pt;}
.x1f{left:310.586667pt;}
.x4{left:324.066667pt;}
.x18{left:367.426655pt;}
.xe{left:377.666655pt;}
.xf{left:396.866655pt;}
.x2f{left:601.893322pt;}
.x33{left:612.933322pt;}
.x1{left:617.733333pt;}
.x31{left:624.933322pt;}
.x16{left:666.853322pt;}
.x7{left:682.533333pt;}
.xa{left:718.213333pt;}
}




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