
    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_14922cb0a7abc14c4d356531.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_644086327d12bde13fa5b140.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_34e9d73d34299e224a52bb02.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_64d688b0db15e75283f1f7b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1ccee57cd274e8e4bb86c834.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_971ba7c2d0ab796daa47c110.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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);}
.v2{vertical-align:-68.400000px;}
.v5{vertical-align:-65.640000px;}
.v7{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.v8{vertical-align:-38.160000px;}
.v4{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.ls1a{letter-spacing:-1.062000px;}
.ls14{letter-spacing:-0.828000px;}
.ls1b{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls15{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018000px;}
.lse{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.738000px;}
.ls11{letter-spacing:2.988000px;}
.ls4{letter-spacing:5.220000px;}
.ls17{letter-spacing:5.940000px;}
.ls5{letter-spacing:7.380000px;}
.ls1d{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls19{letter-spacing:68.508000px;}
.ls0{letter-spacing:154.980000px;}
.ls10{letter-spacing:542.460000px;}
.ls18{letter-spacing:895.440000px;}
.ls9{letter-spacing:1295.760000px;}
.ls7{letter-spacing:1367.040000px;}
.ls1c{letter-spacing:1412.520000px;}
.ls16{letter-spacing:1593.960000px;}
.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;}
}
.wsf{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-16.822200px;}
.ws3{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.238000px;}
.ws4{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws5{word-spacing:-13.999200px;}
.wsa{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.284000px;}
.ws7{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.438000px;}
.ws6{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._1{margin-left:-2.562960px;}
._0{margin-left:-1.248000px;}
._2{width:1.584240px;}
._7{width:2.861760px;}
._8{width:4.085760px;}
._9{width:5.280000px;}
._b{width:6.492000px;}
._a{width:7.620000px;}
._5{width:8.694000px;}
._6{width:9.786000px;}
._12{width:11.046000px;}
._f{width:14.688000px;}
._11{width:17.478000px;}
._10{width:19.392000px;}
._13{width:695.279760px;}
._e{width:1038.239760px;}
._c{width:1041.420000px;}
._d{width:1091.184000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yea{bottom:2.880000px;}
.yec{bottom:3.240000px;}
.yee{bottom:3.420000px;}
.ye9{bottom:18.540000px;}
.y38{bottom:54.216000px;}
.y2{bottom:57.996000px;}
.y37{bottom:58.896000px;}
.y1{bottom:76.896000px;}
.y56{bottom:80.856000px;}
.y103{bottom:81.396000px;}
.yc5{bottom:86.976000px;}
.y6f{bottom:89.496000px;}
.y91{bottom:90.576000px;}
.y55{bottom:96.336000px;}
.y102{bottom:96.876000px;}
.yc4{bottom:102.456000px;}
.y6e{bottom:104.976000px;}
.y90{bottom:106.236000px;}
.y54{bottom:111.996000px;}
.yc3{bottom:114.876000px;}
.y6d{bottom:120.456000px;}
.y8f{bottom:121.896000px;}
.y53{bottom:127.476000px;}
.y101{bottom:128.196000px;}
.y6c{bottom:135.936000px;}
.y8e{bottom:137.376000px;}
.y52{bottom:143.136000px;}
.y100{bottom:144.036000px;}
.y6b{bottom:151.590000px;}
.y8d{bottom:153.030000px;}
.y51{bottom:158.790000px;}
.yff{bottom:160.590000px;}
.y6a{bottom:166.890000px;}
.y50{bottom:174.270000px;}
.yfe{bottom:177.150000px;}
.y34{bottom:179.130000px;}
.y69{bottom:182.370000px;}
.y8c{bottom:184.170000px;}
.y4f{bottom:189.930000px;}
.yaf{bottom:190.650000px;}
.yfd{bottom:193.710000px;}
.y33{bottom:194.610000px;}
.y68{bottom:198.030000px;}
.y8b{bottom:199.650000px;}
.y4e{bottom:205.590000px;}
.yae{bottom:206.130000px;}
.yfc{bottom:210.270000px;}
.y67{bottom:214.050000px;}
.y8a{bottom:215.310000px;}
.y4d{bottom:221.070000px;}
.yad{bottom:221.790000px;}
.y32{bottom:225.930000px;}
.y66{bottom:226.290000px;}
.y89{bottom:230.790000px;}
.yac{bottom:237.270000px;}
.yfb{bottom:241.050000px;}
.y31{bottom:241.410000px;}
.y88{bottom:246.270000px;}
.y4c{bottom:252.210000px;}
.yab{bottom:252.570000px;}
.yfa{bottom:256.710000px;}
.y30{bottom:257.070000px;}
.y87{bottom:261.930000px;}
.y4b{bottom:267.690000px;}
.yaa{bottom:268.230000px;}
.yf9{bottom:272.370000px;}
.y2f{bottom:272.550000px;}
.y86{bottom:277.230000px;}
.y4a{bottom:283.395000px;}
.ya9{bottom:283.755000px;}
.yf8{bottom:285.735000px;}
.y2e{bottom:288.255000px;}
.y85{bottom:292.755000px;}
.y49{bottom:298.875000px;}
.ya8{bottom:299.775000px;}
.y2d{bottom:303.735000px;}
.yf7{bottom:304.635000px;}
.y84{bottom:308.775000px;}
.ya7{bottom:312.195000px;}
.y48{bottom:314.535000px;}
.y2c{bottom:319.215000px;}
.yf6{bottom:323.715000px;}
.y83{bottom:324.255000px;}
.y47{bottom:330.015000px;}
.y2b{bottom:334.695000px;}
.y82{bottom:339.735000px;}
.yf5{bottom:342.615000px;}
.y46{bottom:346.575000px;}
.y2a{bottom:350.355000px;}
.y81{bottom:355.395000px;}
.yf4{bottom:361.515000px;}
.y45{bottom:363.135000px;}
.y29{bottom:365.835000px;}
.y80{bottom:371.055000px;}
.yc2{bottom:375.555000px;}
.yf3{bottom:380.595000px;}
.y28{bottom:381.315000px;}
.y7f{bottom:386.175000px;}
.yc1{bottom:391.035000px;}
.y44{bottom:395.355000px;}
.y27{bottom:396.975000px;}
.yf2{bottom:399.495000px;}
.y7e{bottom:402.195000px;}
.yc0{bottom:406.695000px;}
.y43{bottom:411.015000px;}
.y26{bottom:412.455000px;}
.y7d{bottom:417.495000px;}
.yf1{bottom:418.575000px;}
.ybf{bottom:421.815000px;}
.y42{bottom:426.135000px;}
.y25{bottom:427.935000px;}
.y7c{bottom:432.975000px;}
.ybe{bottom:437.475000px;}
.y24{bottom:443.415000px;}
.y7b{bottom:448.995000px;}
.ybd{bottom:453.495000px;}
.yf0{bottom:456.375000px;}
.y41{bottom:457.455000px;}
.y23{bottom:459.075000px;}
.y7a{bottom:461.415000px;}
.ybc{bottom:468.975000px;}
.y40{bottom:473.295000px;}
.yef{bottom:475.455000px;}
.ybb{bottom:481.215000px;}
.y3f{bottom:488.955000px;}
.y22{bottom:489.855000px;}
.yed{bottom:494.355000px;}
.y3e{bottom:504.435000px;}
.yeb{bottom:513.435000px;}
.y3d{bottom:516.855000px;}
.y21{bottom:520.995000px;}
.ye8{bottom:532.335000px;}
.y20{bottom:539.175000px;}
.y1f{bottom:568.185000px;}
.ya6{bottom:579.705000px;}
.ye7{bottom:583.125000px;}
.y1e{bottom:586.365000px;}
.ya5{bottom:595.365000px;}
.ye6{bottom:598.605000px;}
.y1d{bottom:601.845000px;}
.ya4{bottom:610.845000px;}
.ye5{bottom:614.265000px;}
.y121{bottom:614.985000px;}
.y1c{bottom:617.325000px;}
.ya3{bottom:626.325000px;}
.ye4{bottom:629.745000px;}
.y120{bottom:630.465000px;}
.y1b{bottom:632.985000px;}
.ya2{bottom:641.805000px;}
.y65{bottom:643.785000px;}
.ye3{bottom:645.225000px;}
.y11f{bottom:645.945000px;}
.y1a{bottom:648.465000px;}
.ya1{bottom:657.285000px;}
.y64{bottom:659.265000px;}
.ye2{bottom:660.885000px;}
.y11e{bottom:661.425000px;}
.y19{bottom:663.945000px;}
.ya0{bottom:672.945000px;}
.y63{bottom:674.925000px;}
.ye1{bottom:676.005000px;}
.y11d{bottom:677.085000px;}
.y18{bottom:679.425000px;}
.y9f{bottom:688.245000px;}
.y62{bottom:690.405000px;}
.ye0{bottom:691.665000px;}
.y11c{bottom:692.565000px;}
.y17{bottom:695.085000px;}
.y79{bottom:699.405000px;}
.y9e{bottom:703.725000px;}
.y61{bottom:705.885000px;}
.ydf{bottom:707.685000px;}
.y11b{bottom:708.045000px;}
.y78{bottom:715.065000px;}
.y16{bottom:717.225000px;}
.y9d{bottom:719.745000px;}
.y60{bottom:721.365000px;}
.yde{bottom:723.165000px;}
.y11a{bottom:723.525000px;}
.y77{bottom:730.545000px;}
.y9c{bottom:735.225000px;}
.y5f{bottom:737.025000px;}
.ydd{bottom:738.645000px;}
.y119{bottom:739.185000px;}
.y15{bottom:739.725000px;}
.y76{bottom:746.025000px;}
.y9b{bottom:750.885000px;}
.y5e{bottom:752.325000px;}
.ydc{bottom:754.125000px;}
.y118{bottom:754.665000px;}
.y75{bottom:761.685000px;}
.y9a{bottom:766.365000px;}
.y14{bottom:766.545000px;}
.y5d{bottom:768.165000px;}
.ydb{bottom:769.785000px;}
.y117{bottom:770.145000px;}
.y74{bottom:777.165000px;}
.y5c{bottom:780.585000px;}
.y99{bottom:781.845000px;}
.y13{bottom:782.025000px;}
.yba{bottom:782.385000px;}
.yda{bottom:785.265000px;}
.y116{bottom:785.625000px;}
.y98{bottom:797.325000px;}
.y12{bottom:797.505000px;}
.yb9{bottom:797.865000px;}
.yd9{bottom:800.565000px;}
.y115{bottom:801.285000px;}
.y73{bottom:808.125000px;}
.y97{bottom:812.985000px;}
.yb8{bottom:813.345000px;}
.yd8{bottom:816.225000px;}
.y114{bottom:816.765000px;}
.y72{bottom:823.605000px;}
.y96{bottom:828.645000px;}
.yb7{bottom:829.005000px;}
.y3c{bottom:830.625000px;}
.yd7{bottom:832.065000px;}
.y11{bottom:832.245000px;}
.y71{bottom:839.625000px;}
.y95{bottom:843.765000px;}
.yb6{bottom:844.485000px;}
.y3b{bottom:846.285000px;}
.yd6{bottom:847.770000px;}
.y70{bottom:851.910000px;}
.y10{bottom:853.710000px;}
.yb5{bottom:859.830000px;}
.y3a{bottom:861.810000px;}
.yd5{bottom:863.250000px;}
.y113{bottom:863.430000px;}
.y39{bottom:874.230000px;}
.y94{bottom:875.130000px;}
.yb4{bottom:875.490000px;}
.yd4{bottom:878.730000px;}
.y112{bottom:878.910000px;}
.yf{bottom:882.510000px;}
.y93{bottom:890.970000px;}
.yb3{bottom:891.330000px;}
.yd3{bottom:894.210000px;}
.y92{bottom:903.210000px;}
.yb2{bottom:906.630000px;}
.yd2{bottom:909.870000px;}
.y111{bottom:910.230000px;}
.ye{bottom:917.430000px;}
.yb1{bottom:922.650000px;}
.yd1{bottom:925.350000px;}
.y110{bottom:925.710000px;}
.yb0{bottom:935.070000px;}
.yd0{bottom:940.830000px;}
.y10f{bottom:941.190000px;}
.ycf{bottom:956.490000px;}
.yd{bottom:956.670000px;}
.yce{bottom:971.610000px;}
.y10e{bottom:972.330000px;}
.ycd{bottom:987.270000px;}
.y10d{bottom:987.810000px;}
.ycc{bottom:1003.290000px;}
.y10c{bottom:1003.470000px;}
.yc{bottom:1016.070000px;}
.ycb{bottom:1018.770000px;}
.y10b{bottom:1018.950000px;}
.y9{bottom:1034.070000px;}
.yca{bottom:1034.250000px;}
.y10a{bottom:1034.430000px;}
.yb{bottom:1039.290000px;}
.yc9{bottom:1049.730000px;}
.y109{bottom:1049.910000px;}
.y8{bottom:1057.290000px;}
.yc8{bottom:1065.390000px;}
.ya{bottom:1071.330000px;}
.yc7{bottom:1080.690000px;}
.y108{bottom:1081.050000px;}
.y7{bottom:1086.630000px;}
.yc6{bottom:1096.170000px;}
.y107{bottom:1096.530000px;}
.y5b{bottom:1096.710000px;}
.y6{bottom:1105.710000px;}
.y5a{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.y106{bottom:1127.310000px;}
.y59{bottom:1127.670000px;}
.y4{bottom:1140.300000px;}
.y105{bottom:1143.000000px;}
.y58{bottom:1143.360000px;}
.y3{bottom:1158.300000px;}
.y104{bottom:1158.660000px;}
.y57{bottom:1159.020000px;}
.y36{bottom:1175.220000px;}
.y35{bottom:1193.760000px;}
.h16{height:18.165000px;}
.h17{height:18.345000px;}
.h15{height:31.125000px;}
.hd{height:35.314453px;}
.h10{height:38.158594px;}
.h11{height:47.344922px;}
.h7{height:48.616875px;}
.hc{height:52.971680px;}
.h12{height:52.998047px;}
.he{height:54.421875px;}
.h14{height:55.503491px;}
.h8{height:55.796836px;}
.h13{height:55.824609px;}
.h9{height:58.621992px;}
.h4{height:60.226875px;}
.hf{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.hb{height:72.326250px;}
.h3{height:72.562500px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:221.280000px;}
.w2{width:312.900000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x2{left:30.060000px;}
.x28{left:35.085000px;}
.x2b{left:42.825000px;}
.xa{left:46.800000px;}
.xd{left:50.400000px;}
.x12{left:56.520000px;}
.xf{left:57.960000px;}
.x14{left:72.540000px;}
.x35{left:74.340000px;}
.x29{left:82.110000px;}
.x2d{left:100.650000px;}
.x2f{left:104.070000px;}
.x2c{left:111.630000px;}
.x34{left:120.990000px;}
.x33{left:122.070000px;}
.x2e{left:128.010000px;}
.x32{left:131.970000px;}
.x30{left:135.030000px;}
.x31{left:137.190000px;}
.x16{left:169.770000px;}
.x27{left:185.805000px;}
.x9{left:202.530000px;}
.x21{left:234.930000px;}
.x5{left:244.155000px;}
.x8{left:250.995000px;}
.x25{left:254.415000px;}
.x13{left:267.915000px;}
.x3{left:270.255000px;}
.x23{left:271.695000px;}
.x4{left:290.595000px;}
.x1c{left:292.215000px;}
.x1f{left:301.215000px;}
.x18{left:303.735000px;}
.x1a{left:327.135000px;}
.x36{left:403.485000px;}
.x1d{left:407.805000px;}
.xb{left:412.485000px;}
.x10{left:413.925000px;}
.x1{left:440.745000px;}
.xc{left:449.205000px;}
.x6{left:478.905000px;}
.x2a{left:499.080000px;}
.x7{left:506.445000px;}
.x17{left:639.330000px;}
.x15{left:660.030000px;}
.x1e{left:676.950000px;}
.x24{left:688.110000px;}
.xe{left:693.330000px;}
.x22{left:697.110000px;}
.x19{left:703.770000px;}
.x1b{left:713.850000px;}
.x26{left:719.640000px;}
.x20{left:723.780000px;}
.x11{left:783.360000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-58.346667pt;}
.v7{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.v8{vertical-align:-33.920000pt;}
.v4{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.ls1a{letter-spacing:-0.944000pt;}
.ls14{letter-spacing:-0.736000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.656000pt;}
.ls11{letter-spacing:2.656000pt;}
.ls4{letter-spacing:4.640000pt;}
.ls17{letter-spacing:5.280000pt;}
.ls5{letter-spacing:6.560000pt;}
.ls1d{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls19{letter-spacing:60.896000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls10{letter-spacing:482.186667pt;}
.ls18{letter-spacing:795.946667pt;}
.ls9{letter-spacing:1151.786667pt;}
.ls7{letter-spacing:1215.146667pt;}
.ls1c{letter-spacing:1255.573333pt;}
.ls16{letter-spacing:1416.853333pt;}
.wsf{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.953067pt;}
.ws3{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.656000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws5{word-spacing:-12.443733pt;}
.wsa{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.808000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.056000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._1{margin-left:-2.278187pt;}
._0{margin-left:-1.109333pt;}
._2{width:1.408213pt;}
._7{width:2.543787pt;}
._8{width:3.631787pt;}
._9{width:4.693333pt;}
._b{width:5.770667pt;}
._a{width:6.773333pt;}
._5{width:7.728000pt;}
._6{width:8.698667pt;}
._12{width:9.818667pt;}
._f{width:13.056000pt;}
._11{width:15.536000pt;}
._10{width:17.237333pt;}
._13{width:618.026453pt;}
._e{width:922.879787pt;}
._c{width:925.706667pt;}
._d{width:969.941333pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:2.560000pt;}
.yec{bottom:2.880000pt;}
.yee{bottom:3.040000pt;}
.ye9{bottom:16.480000pt;}
.y38{bottom:48.192000pt;}
.y2{bottom:51.552000pt;}
.y37{bottom:52.352000pt;}
.y1{bottom:68.352000pt;}
.y56{bottom:71.872000pt;}
.y103{bottom:72.352000pt;}
.yc5{bottom:77.312000pt;}
.y6f{bottom:79.552000pt;}
.y91{bottom:80.512000pt;}
.y55{bottom:85.632000pt;}
.y102{bottom:86.112000pt;}
.yc4{bottom:91.072000pt;}
.y6e{bottom:93.312000pt;}
.y90{bottom:94.432000pt;}
.y54{bottom:99.552000pt;}
.yc3{bottom:102.112000pt;}
.y6d{bottom:107.072000pt;}
.y8f{bottom:108.352000pt;}
.y53{bottom:113.312000pt;}
.y101{bottom:113.952000pt;}
.y6c{bottom:120.832000pt;}
.y8e{bottom:122.112000pt;}
.y52{bottom:127.232000pt;}
.y100{bottom:128.032000pt;}
.y6b{bottom:134.746667pt;}
.y8d{bottom:136.026667pt;}
.y51{bottom:141.146667pt;}
.yff{bottom:142.746667pt;}
.y6a{bottom:148.346667pt;}
.y50{bottom:154.906667pt;}
.yfe{bottom:157.466667pt;}
.y34{bottom:159.226667pt;}
.y69{bottom:162.106667pt;}
.y8c{bottom:163.706667pt;}
.y4f{bottom:168.826667pt;}
.yaf{bottom:169.466667pt;}
.yfd{bottom:172.186667pt;}
.y33{bottom:172.986667pt;}
.y68{bottom:176.026667pt;}
.y8b{bottom:177.466667pt;}
.y4e{bottom:182.746667pt;}
.yae{bottom:183.226667pt;}
.yfc{bottom:186.906667pt;}
.y67{bottom:190.266667pt;}
.y8a{bottom:191.386667pt;}
.y4d{bottom:196.506667pt;}
.yad{bottom:197.146667pt;}
.y32{bottom:200.826667pt;}
.y66{bottom:201.146667pt;}
.y89{bottom:205.146667pt;}
.yac{bottom:210.906667pt;}
.yfb{bottom:214.266667pt;}
.y31{bottom:214.586667pt;}
.y88{bottom:218.906667pt;}
.y4c{bottom:224.186667pt;}
.yab{bottom:224.506667pt;}
.yfa{bottom:228.186667pt;}
.y30{bottom:228.506667pt;}
.y87{bottom:232.826667pt;}
.y4b{bottom:237.946667pt;}
.yaa{bottom:238.426667pt;}
.yf9{bottom:242.106667pt;}
.y2f{bottom:242.266667pt;}
.y86{bottom:246.426667pt;}
.y4a{bottom:251.906667pt;}
.ya9{bottom:252.226667pt;}
.yf8{bottom:253.986667pt;}
.y2e{bottom:256.226667pt;}
.y85{bottom:260.226667pt;}
.y49{bottom:265.666667pt;}
.ya8{bottom:266.466667pt;}
.y2d{bottom:269.986667pt;}
.yf7{bottom:270.786667pt;}
.y84{bottom:274.466667pt;}
.ya7{bottom:277.506667pt;}
.y48{bottom:279.586667pt;}
.y2c{bottom:283.746667pt;}
.yf6{bottom:287.746667pt;}
.y83{bottom:288.226667pt;}
.y47{bottom:293.346667pt;}
.y2b{bottom:297.506667pt;}
.y82{bottom:301.986667pt;}
.yf5{bottom:304.546667pt;}
.y46{bottom:308.066667pt;}
.y2a{bottom:311.426667pt;}
.y81{bottom:315.906667pt;}
.yf4{bottom:321.346667pt;}
.y45{bottom:322.786667pt;}
.y29{bottom:325.186667pt;}
.y80{bottom:329.826667pt;}
.yc2{bottom:333.826667pt;}
.yf3{bottom:338.306667pt;}
.y28{bottom:338.946667pt;}
.y7f{bottom:343.266667pt;}
.yc1{bottom:347.586667pt;}
.y44{bottom:351.426667pt;}
.y27{bottom:352.866667pt;}
.yf2{bottom:355.106667pt;}
.y7e{bottom:357.506667pt;}
.yc0{bottom:361.506667pt;}
.y43{bottom:365.346667pt;}
.y26{bottom:366.626667pt;}
.y7d{bottom:371.106667pt;}
.yf1{bottom:372.066667pt;}
.ybf{bottom:374.946667pt;}
.y42{bottom:378.786667pt;}
.y25{bottom:380.386667pt;}
.y7c{bottom:384.866667pt;}
.ybe{bottom:388.866667pt;}
.y24{bottom:394.146667pt;}
.y7b{bottom:399.106667pt;}
.ybd{bottom:403.106667pt;}
.yf0{bottom:405.666667pt;}
.y41{bottom:406.626667pt;}
.y23{bottom:408.066667pt;}
.y7a{bottom:410.146667pt;}
.ybc{bottom:416.866667pt;}
.y40{bottom:420.706667pt;}
.yef{bottom:422.626667pt;}
.ybb{bottom:427.746667pt;}
.y3f{bottom:434.626667pt;}
.y22{bottom:435.426667pt;}
.yed{bottom:439.426667pt;}
.y3e{bottom:448.386667pt;}
.yeb{bottom:456.386667pt;}
.y3d{bottom:459.426667pt;}
.y21{bottom:463.106667pt;}
.ye8{bottom:473.186667pt;}
.y20{bottom:479.266667pt;}
.y1f{bottom:505.053333pt;}
.ya6{bottom:515.293333pt;}
.ye7{bottom:518.333333pt;}
.y1e{bottom:521.213333pt;}
.ya5{bottom:529.213333pt;}
.ye6{bottom:532.093333pt;}
.y1d{bottom:534.973333pt;}
.ya4{bottom:542.973333pt;}
.ye5{bottom:546.013333pt;}
.y121{bottom:546.653333pt;}
.y1c{bottom:548.733333pt;}
.ya3{bottom:556.733333pt;}
.ye4{bottom:559.773333pt;}
.y120{bottom:560.413333pt;}
.y1b{bottom:562.653333pt;}
.ya2{bottom:570.493333pt;}
.y65{bottom:572.253333pt;}
.ye3{bottom:573.533333pt;}
.y11f{bottom:574.173333pt;}
.y1a{bottom:576.413333pt;}
.ya1{bottom:584.253333pt;}
.y64{bottom:586.013333pt;}
.ye2{bottom:587.453333pt;}
.y11e{bottom:587.933333pt;}
.y19{bottom:590.173333pt;}
.ya0{bottom:598.173333pt;}
.y63{bottom:599.933333pt;}
.ye1{bottom:600.893333pt;}
.y11d{bottom:601.853333pt;}
.y18{bottom:603.933333pt;}
.y9f{bottom:611.773333pt;}
.y62{bottom:613.693333pt;}
.ye0{bottom:614.813333pt;}
.y11c{bottom:615.613333pt;}
.y17{bottom:617.853333pt;}
.y79{bottom:621.693333pt;}
.y9e{bottom:625.533333pt;}
.y61{bottom:627.453333pt;}
.ydf{bottom:629.053333pt;}
.y11b{bottom:629.373333pt;}
.y78{bottom:635.613333pt;}
.y16{bottom:637.533333pt;}
.y9d{bottom:639.773333pt;}
.y60{bottom:641.213333pt;}
.yde{bottom:642.813333pt;}
.y11a{bottom:643.133333pt;}
.y77{bottom:649.373333pt;}
.y9c{bottom:653.533333pt;}
.y5f{bottom:655.133333pt;}
.ydd{bottom:656.573333pt;}
.y119{bottom:657.053333pt;}
.y15{bottom:657.533333pt;}
.y76{bottom:663.133333pt;}
.y9b{bottom:667.453333pt;}
.y5e{bottom:668.733333pt;}
.ydc{bottom:670.333333pt;}
.y118{bottom:670.813333pt;}
.y75{bottom:677.053333pt;}
.y9a{bottom:681.213333pt;}
.y14{bottom:681.373333pt;}
.y5d{bottom:682.813333pt;}
.ydb{bottom:684.253333pt;}
.y117{bottom:684.573333pt;}
.y74{bottom:690.813333pt;}
.y5c{bottom:693.853333pt;}
.y99{bottom:694.973333pt;}
.y13{bottom:695.133333pt;}
.yba{bottom:695.453333pt;}
.yda{bottom:698.013333pt;}
.y116{bottom:698.333333pt;}
.y98{bottom:708.733333pt;}
.y12{bottom:708.893333pt;}
.yb9{bottom:709.213333pt;}
.yd9{bottom:711.613333pt;}
.y115{bottom:712.253333pt;}
.y73{bottom:718.333333pt;}
.y97{bottom:722.653333pt;}
.yb8{bottom:722.973333pt;}
.yd8{bottom:725.533333pt;}
.y114{bottom:726.013333pt;}
.y72{bottom:732.093333pt;}
.y96{bottom:736.573333pt;}
.yb7{bottom:736.893333pt;}
.y3c{bottom:738.333333pt;}
.yd7{bottom:739.613333pt;}
.y11{bottom:739.773333pt;}
.y71{bottom:746.333333pt;}
.y95{bottom:750.013333pt;}
.yb6{bottom:750.653333pt;}
.y3b{bottom:752.253333pt;}
.yd6{bottom:753.573333pt;}
.y70{bottom:757.253333pt;}
.y10{bottom:758.853333pt;}
.yb5{bottom:764.293333pt;}
.y3a{bottom:766.053333pt;}
.yd5{bottom:767.333333pt;}
.y113{bottom:767.493333pt;}
.y39{bottom:777.093333pt;}
.y94{bottom:777.893333pt;}
.yb4{bottom:778.213333pt;}
.yd4{bottom:781.093333pt;}
.y112{bottom:781.253333pt;}
.yf{bottom:784.453333pt;}
.y93{bottom:791.973333pt;}
.yb3{bottom:792.293333pt;}
.yd3{bottom:794.853333pt;}
.y92{bottom:802.853333pt;}
.yb2{bottom:805.893333pt;}
.yd2{bottom:808.773333pt;}
.y111{bottom:809.093333pt;}
.ye{bottom:815.493333pt;}
.yb1{bottom:820.133333pt;}
.yd1{bottom:822.533333pt;}
.y110{bottom:822.853333pt;}
.yb0{bottom:831.173333pt;}
.yd0{bottom:836.293333pt;}
.y10f{bottom:836.613333pt;}
.ycf{bottom:850.213333pt;}
.yd{bottom:850.373333pt;}
.yce{bottom:863.653333pt;}
.y10e{bottom:864.293333pt;}
.ycd{bottom:877.573333pt;}
.y10d{bottom:878.053333pt;}
.ycc{bottom:891.813333pt;}
.y10c{bottom:891.973333pt;}
.yc{bottom:903.173333pt;}
.ycb{bottom:905.573333pt;}
.y10b{bottom:905.733333pt;}
.y9{bottom:919.173333pt;}
.yca{bottom:919.333333pt;}
.y10a{bottom:919.493333pt;}
.yb{bottom:923.813333pt;}
.yc9{bottom:933.093333pt;}
.y109{bottom:933.253333pt;}
.y8{bottom:939.813333pt;}
.yc8{bottom:947.013333pt;}
.ya{bottom:952.293333pt;}
.yc7{bottom:960.613333pt;}
.y108{bottom:960.933333pt;}
.y7{bottom:965.893333pt;}
.yc6{bottom:974.373333pt;}
.y107{bottom:974.693333pt;}
.y5b{bottom:974.853333pt;}
.y6{bottom:982.853333pt;}
.y5a{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.y106{bottom:1002.053333pt;}
.y59{bottom:1002.373333pt;}
.y4{bottom:1013.600000pt;}
.y105{bottom:1016.000000pt;}
.y58{bottom:1016.320000pt;}
.y3{bottom:1029.600000pt;}
.y104{bottom:1029.920000pt;}
.y57{bottom:1030.240000pt;}
.y36{bottom:1044.640000pt;}
.y35{bottom:1061.120000pt;}
.h16{height:16.146667pt;}
.h17{height:16.306667pt;}
.h15{height:27.666667pt;}
.hd{height:31.390625pt;}
.h10{height:33.918750pt;}
.h11{height:42.084375pt;}
.h7{height:43.215000pt;}
.hc{height:47.085938pt;}
.h12{height:47.109375pt;}
.he{height:48.375000pt;}
.h14{height:49.336436pt;}
.h8{height:49.597187pt;}
.h13{height:49.621875pt;}
.h9{height:52.108438pt;}
.h4{height:53.535000pt;}
.hf{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.hb{height:64.290000pt;}
.h3{height:64.500000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:196.693333pt;}
.w2{width:278.133333pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x2{left:26.720000pt;}
.x28{left:31.186667pt;}
.x2b{left:38.066667pt;}
.xa{left:41.600000pt;}
.xd{left:44.800000pt;}
.x12{left:50.240000pt;}
.xf{left:51.520000pt;}
.x14{left:64.480000pt;}
.x35{left:66.080000pt;}
.x29{left:72.986667pt;}
.x2d{left:89.466667pt;}
.x2f{left:92.506667pt;}
.x2c{left:99.226667pt;}
.x34{left:107.546667pt;}
.x33{left:108.506667pt;}
.x2e{left:113.786667pt;}
.x32{left:117.306667pt;}
.x30{left:120.026667pt;}
.x31{left:121.946667pt;}
.x16{left:150.906667pt;}
.x27{left:165.160000pt;}
.x9{left:180.026667pt;}
.x21{left:208.826667pt;}
.x5{left:217.026667pt;}
.x8{left:223.106667pt;}
.x25{left:226.146667pt;}
.x13{left:238.146667pt;}
.x3{left:240.226667pt;}
.x23{left:241.506667pt;}
.x4{left:258.306667pt;}
.x1c{left:259.746667pt;}
.x1f{left:267.746667pt;}
.x18{left:269.986667pt;}
.x1a{left:290.786667pt;}
.x36{left:358.653333pt;}
.x1d{left:362.493333pt;}
.xb{left:366.653333pt;}
.x10{left:367.933333pt;}
.x1{left:391.773333pt;}
.xc{left:399.293333pt;}
.x6{left:425.693333pt;}
.x2a{left:443.626667pt;}
.x7{left:450.173333pt;}
.x17{left:568.293333pt;}
.x15{left:586.693333pt;}
.x1e{left:601.733333pt;}
.x24{left:611.653333pt;}
.xe{left:616.293333pt;}
.x22{left:619.653333pt;}
.x19{left:625.573333pt;}
.x1b{left:634.533333pt;}
.x26{left:639.680000pt;}
.x20{left:643.360000pt;}
.x11{left:696.320000pt;}
}




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