
    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_95aa816c637f9ca11dd8428a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_1e7f8d69a36224781cd5f651.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_574b9a0f4799c9e28f7ce3ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ffb16a13716401a3e97a23cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_d825d3ea862473af2160bea8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d022ef4756cd23e7f760304c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_700b2a4865bbdd4c4280bde4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.808105;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_72f23583a67da18c74b33421.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d092f75dc0e0c4e121db2745.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-2.880000px;}
.lsf{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.422000px;}
.ls13{letter-spacing:-1.296000px;}
.ls11{letter-spacing:-0.972000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.570000px;}
.ls24{letter-spacing:-0.466800px;}
.ls1a{letter-spacing:-0.195600px;}
.ls5{letter-spacing:-0.020160px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.020160px;}
.ls17{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.423360px;}
.lsb{letter-spacing:0.466560px;}
.lsc{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.792000px;}
.ls26{letter-spacing:0.984000px;}
.ls3{letter-spacing:1.152000px;}
.ls14{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.620000px;}
.ls20{letter-spacing:2.160000px;}
.ls28{letter-spacing:2.304000px;}
.ls15{letter-spacing:3.240000px;}
.ls9{letter-spacing:3.600000px;}
.ls27{letter-spacing:3.744000px;}
.ls7{letter-spacing:5.040000px;}
.lsa{letter-spacing:6.226560px;}
.ls8{letter-spacing:6.480000px;}
.ls1f{letter-spacing:7.920000px;}
.ls16{letter-spacing:9.360000px;}
.ls19{letter-spacing:10.800000px;}
.ls21{letter-spacing:12.024000px;}
.ls1d{letter-spacing:12.240000px;}
.ls25{letter-spacing:195.240000px;}
.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;}
}
.wsd{word-spacing:-60.480000px;}
.ws10{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.152000px;}
.ws3{word-spacing:-18.504000px;}
.ws1{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.544000px;}
.wsc{word-spacing:-16.704000px;}
.ws13{word-spacing:-16.560000px;}
.ws15{word-spacing:-15.732000px;}
.ws9{word-spacing:-15.586800px;}
.ws11{word-spacing:-15.543360px;}
.wsa{word-spacing:-15.140160px;}
.ws7{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.099840px;}
.wse{word-spacing:-14.924400px;}
.ws12{word-spacing:-14.653200px;}
.wsf{word-spacing:-14.184000px;}
.wsb{word-spacing:-14.148000px;}
.ws8{word-spacing:-13.680000px;}
.ws0{word-spacing:-11.880000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-3.773280px;}
._4{margin-left:-2.736000px;}
._0{margin-left:-1.152000px;}
._1{width:1.656000px;}
._6{width:3.528000px;}
._7{width:4.536000px;}
._8{width:5.904000px;}
._d{width:7.560000px;}
._e{width:8.844000px;}
._f{width:10.248000px;}
._10{width:11.556000px;}
._9{width:13.248000px;}
._a{width:15.048000px;}
._11{width:16.560000px;}
._20{width:18.144000px;}
._12{width:19.656000px;}
._2{width:21.384000px;}
._5{width:22.464000px;}
._3{width:23.688000px;}
._b{width:25.128000px;}
._19{width:26.520000px;}
._c{width:27.996000px;}
._1d{width:29.160000px;}
._1f{width:30.168000px;}
._1e{width:31.565280px;}
._17{width:33.552000px;}
._16{width:35.280000px;}
._1b{width:36.432000px;}
._1a{width:37.584000px;}
._21{width:39.672000px;}
._14{width:41.976000px;}
._13{width:43.128000px;}
._18{width:193.836000px;}
._15{width:195.276000px;}
.fc1{color:rgb(91,81,79);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:109.836000px;}
.y90{bottom:115.236000px;}
.y6f{bottom:127.116000px;}
.y3d{bottom:129.276000px;}
.y1e{bottom:132.516000px;}
.y6e{bottom:144.396000px;}
.y1d{bottom:145.116000px;}
.y3c{bottom:149.076000px;}
.y8f{bottom:149.796000px;}
.y6d{bottom:161.670000px;}
.y1c{bottom:167.070000px;}
.y3b{bottom:169.230000px;}
.y6c{bottom:178.950000px;}
.y86{bottom:179.670000px;}
.yc6{bottom:185.430000px;}
.y3a{bottom:189.030000px;}
.y6b{bottom:196.275000px;}
.y95{bottom:201.675000px;}
.y85{bottom:208.875000px;}
.y39{bottom:209.955000px;}
.y1b{bottom:213.195000px;}
.y8e{bottom:213.555000px;}
.ye2{bottom:214.275000px;}
.y38{bottom:215.355000px;}
.yc5{bottom:216.435000px;}
.y94{bottom:218.955000px;}
.y37{bottom:230.475000px;}
.y6a{bottom:230.835000px;}
.yc8{bottom:231.555000px;}
.y99{bottom:236.235000px;}
.yc4{bottom:236.595000px;}
.y84{bottom:239.835000px;}
.y69{bottom:248.115000px;}
.y9a{bottom:248.835000px;}
.yad{bottom:253.515000px;}
.yc3{bottom:255.675000px;}
.y36{bottom:256.755000px;}
.y1a{bottom:259.275000px;}
.y8d{bottom:265.035000px;}
.y68{bottom:265.395000px;}
.y8c{bottom:270.435000px;}
.y83{bottom:270.795000px;}
.yc1{bottom:275.115000px;}
.yc2{bottom:281.955000px;}
.y8b{bottom:282.315000px;}
.y67{bottom:282.675000px;}
.y93{bottom:283.035000px;}
.y35{bottom:287.715000px;}
.y66{bottom:288.075000px;}
.ye1{bottom:293.115000px;}
.yc0{bottom:295.635000px;}
.y65{bottom:299.595000px;}
.yac{bottom:300.315000px;}
.yf8{bottom:301.395000px;}
.y82{bottom:301.755000px;}
.y19{bottom:305.355000px;}
.ybf{bottom:314.355000px;}
.y64{bottom:316.905000px;}
.y34{bottom:319.065000px;}
.ye0{bottom:324.465000px;}
.yf6{bottom:332.385000px;}
.y81{bottom:332.745000px;}
.ybe{bottom:333.465000px;}
.y63{bottom:334.185000px;}
.yf7{bottom:339.225000px;}
.y98{bottom:339.585000px;}
.yab{bottom:348.945000px;}
.y33{bottom:350.025000px;}
.y18{bottom:351.465000px;}
.ybd{bottom:352.545000px;}
.ydf{bottom:355.425000px;}
.yf5{bottom:363.705000px;}
.y80{bottom:364.065000px;}
.y62{bottom:368.745000px;}
.ybc{bottom:371.265000px;}
.yaa{bottom:379.905000px;}
.y32{bottom:380.985000px;}
.y17{bottom:382.065000px;}
.y61{bottom:386.025000px;}
.yde{bottom:386.385000px;}
.ybb{bottom:390.345000px;}
.yf4{bottom:394.665000px;}
.y7f{bottom:395.025000px;}
.yc7{bottom:401.865000px;}
.y60{bottom:403.305000px;}
.ydc{bottom:407.265000px;}
.yba{bottom:409.425000px;}
.ya9{bottom:411.225000px;}
.y31{bottom:411.945000px;}
.y16{bottom:413.025000px;}
.ydd{bottom:414.105000px;}
.y5f{bottom:420.585000px;}
.yf3{bottom:425.625000px;}
.y7e{bottom:425.985000px;}
.ydb{bottom:427.425000px;}
.yb9{bottom:428.145000px;}
.y5e{bottom:437.865000px;}
.y8a{bottom:438.585000px;}
.ya8{bottom:442.230000px;}
.y30{bottom:443.310000px;}
.yda{bottom:446.550000px;}
.yb8{bottom:447.270000px;}
.y5d{bottom:455.190000px;}
.y97{bottom:455.550000px;}
.yf1{bottom:456.630000px;}
.y7d{bottom:456.990000px;}
.y15{bottom:459.510000px;}
.yf2{bottom:463.470000px;}
.yd9{bottom:465.630000px;}
.yb7{bottom:466.350000px;}
.y5c{bottom:472.470000px;}
.ya7{bottom:473.190000px;}
.y2f{bottom:474.270000px;}
.yd8{bottom:484.350000px;}
.yb6{bottom:485.430000px;}
.yf0{bottom:487.950000px;}
.y7c{bottom:488.310000px;}
.y5b{bottom:489.390000px;}
.y14{bottom:490.470000px;}
.yd7{bottom:503.430000px;}
.ya6{bottom:504.150000px;}
.y2e{bottom:505.230000px;}
.yb5{bottom:506.310000px;}
.y5a{bottom:506.670000px;}
.yef{bottom:518.910000px;}
.y7a{bottom:519.270000px;}
.y13{bottom:521.430000px;}
.yd6{bottom:522.510000px;}
.y59{bottom:523.950000px;}
.y7b{bottom:526.110000px;}
.yb4{bottom:526.830000px;}
.ya5{bottom:535.470000px;}
.y2d{bottom:536.190000px;}
.y58{bottom:541.230000px;}
.yb3{bottom:547.350000px;}
.yed{bottom:549.870000px;}
.y79{bottom:550.230000px;}
.y12{bottom:552.390000px;}
.yee{bottom:556.710000px;}
.y57{bottom:558.510000px;}
.yd5{bottom:560.310000px;}
.ya4{bottom:566.430000px;}
.y2c{bottom:567.510000px;}
.yb2{bottom:572.940000px;}
.y56{bottom:575.820000px;}
.yd4{bottom:579.420000px;}
.yec{bottom:580.860000px;}
.y78{bottom:581.220000px;}
.y11{bottom:583.380000px;}
.y55{bottom:593.100000px;}
.ya2{bottom:597.420000px;}
.y2b{bottom:598.500000px;}
.ya3{bottom:604.260000px;}
.yeb{bottom:612.180000px;}
.y54{bottom:612.540000px;}
.y89{bottom:619.380000px;}
.yd3{bottom:628.020000px;}
.ya1{bottom:628.380000px;}
.y2a{bottom:629.460000px;}
.y10{bottom:629.820000px;}
.y53{bottom:632.340000px;}
.yea{bottom:643.140000px;}
.y77{bottom:643.500000px;}
.y52{bottom:652.140000px;}
.yd2{bottom:658.980000px;}
.ya0{bottom:659.340000px;}
.yf{bottom:660.420000px;}
.ye9{bottom:663.660000px;}
.y51{bottom:671.940000px;}
.y76{bottom:674.460000px;}
.ye8{bottom:688.860000px;}
.yd1{bottom:689.940000px;}
.y9f{bottom:690.660000px;}
.ye{bottom:691.740000px;}
.y75{bottom:705.450000px;}
.y50{bottom:711.930000px;}
.yd0{bottom:721.290000px;}
.yd{bottom:722.730000px;}
.y4f{bottom:731.730000px;}
.y74{bottom:736.770000px;}
.y9d{bottom:737.130000px;}
.y92{bottom:743.610000px;}
.y9e{bottom:743.970000px;}
.y4e{bottom:751.530000px;}
.ycf{bottom:752.250000px;}
.yc{bottom:753.690000px;}
.y73{bottom:767.730000px;}
.y4d{bottom:771.330000px;}
.ycd{bottom:772.770000px;}
.y88{bottom:774.570000px;}
.yce{bottom:779.610000px;}
.y29{bottom:784.650000px;}
.y4c{bottom:791.130000px;}
.ycc{bottom:793.290000px;}
.y71{bottom:798.690000px;}
.yb{bottom:800.130000px;}
.y72{bottom:805.530000px;}
.y4b{bottom:810.930000px;}
.ycb{bottom:812.370000px;}
.y4a{bottom:816.330000px;}
.y49{bottom:829.335000px;}
.y70{bottom:829.695000px;}
.ya{bottom:830.775000px;}
.y27{bottom:831.135000px;}
.y9c{bottom:836.535000px;}
.y28{bottom:837.975000px;}
.y48{bottom:861.015000px;}
.y9{bottom:862.095000px;}
.y96{bottom:867.855000px;}
.yb1{bottom:879.375000px;}
.y46{bottom:891.975000px;}
.y8{bottom:893.055000px;}
.yb0{bottom:898.095000px;}
.y47{bottom:898.815000px;}
.yaf{bottom:917.175000px;}
.y45{bottom:922.935000px;}
.y26{bottom:924.015000px;}
.y91{bottom:929.775000px;}
.yae{bottom:936.255000px;}
.y7{bottom:939.495000px;}
.y43{bottom:953.925000px;}
.y25{bottom:955.005000px;}
.y44{bottom:960.765000px;}
.y6{bottom:970.125000px;}
.y42{bottom:985.245000px;}
.y24{bottom:985.965000px;}
.y9b{bottom:992.085000px;}
.y5{bottom:1001.085000px;}
.ye7{bottom:1002.165000px;}
.y41{bottom:1016.205000px;}
.y23{bottom:1017.285000px;}
.ye6{bottom:1022.325000px;}
.yca{bottom:1023.045000px;}
.y4{bottom:1032.045000px;}
.ye5{bottom:1041.405000px;}
.y40{bottom:1047.165000px;}
.y22{bottom:1048.245000px;}
.ye4{bottom:1060.485000px;}
.y3f{bottom:1078.170000px;}
.y3{bottom:1078.530000px;}
.ye3{bottom:1079.250000px;}
.y87{bottom:1085.010000px;}
.y21{bottom:1094.730000px;}
.y2{bottom:1109.490000px;}
.yc9{bottom:1116.330000px;}
.y1{bottom:1140.450000px;}
.y20{bottom:1140.810000px;}
.y3e{bottom:1147.290000px;}
.h6{height:34.114922px;}
.h8{height:41.696016px;}
.hd{height:45.345937px;}
.hc{height:49.992188px;}
.h5{height:50.229844px;}
.h7{height:53.067656px;}
.hb{height:53.717344px;}
.ha{height:54.219375px;}
.he{height:58.121719px;}
.h2{height:63.175781px;}
.h9{height:64.546875px;}
.h3{height:69.056016px;}
.h4{height:1262.834925px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.755000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:127.476000px;}
.xb{left:132.516000px;}
.x2{left:133.596000px;}
.x1f{left:137.556000px;}
.x50{left:152.715000px;}
.x3b{left:168.195000px;}
.x51{left:170.310000px;}
.x35{left:176.835000px;}
.x12{left:180.435000px;}
.x34{left:183.315000px;}
.x3c{left:184.350000px;}
.x1{left:186.195000px;}
.x2d{left:192.675000px;}
.x3d{left:196.635000px;}
.x37{left:198.075000px;}
.x3e{left:199.470000px;}
.x49{left:201.675000px;}
.x39{left:208.515000px;}
.x25{left:211.350000px;}
.x4c{left:212.475000px;}
.x26{left:223.635000px;}
.x46{left:233.715000px;}
.x38{left:235.515000px;}
.x1b{left:245.580000px;}
.x1c{left:251.745000px;}
.x4d{left:266.460000px;}
.x17{left:272.220000px;}
.xc{left:276.900000px;}
.x18{left:278.385000px;}
.xd{left:283.065000px;}
.x19{left:305.700000px;}
.x1a{left:311.865000px;}
.x30{left:317.265000px;}
.x33{left:329.865000px;}
.x3{left:335.670000px;}
.x8{left:343.590000px;}
.x23{left:364.065000px;}
.x24{left:376.350000px;}
.x5{left:389.310000px;}
.x4{left:395.070000px;}
.x22{left:401.190000px;}
.x15{left:410.505000px;}
.x16{left:416.670000px;}
.xe{left:425.295000px;}
.xf{left:431.460000px;}
.x1d{left:438.615000px;}
.x1e{left:450.900000px;}
.x4a{left:457.380000px;}
.x6{left:473.220000px;}
.x9{left:491.895000px;}
.xa{left:498.060000px;}
.x28{left:514.935000px;}
.x2c{left:524.685000px;}
.x29{left:527.250000px;}
.x10{left:531.525000px;}
.x52{left:534.045000px;}
.x11{left:537.690000px;}
.x53{left:546.330000px;}
.x13{left:566.445000px;}
.x40{left:570.045000px;}
.x14{left:572.610000px;}
.x20{left:580.125000px;}
.x41{left:582.330000px;}
.x3f{left:589.125000px;}
.x21{left:592.410000px;}
.x3a{left:601.365000px;}
.x27{left:605.010000px;}
.x2e{left:613.965000px;}
.x2f{left:626.295000px;}
.x4e{left:652.170000px;}
.x44{left:662.970000px;}
.x4f{left:664.455000px;}
.x2a{left:666.210000px;}
.x45{left:675.255000px;}
.x2b{left:678.495000px;}
.x36{left:701.895000px;}
.x4b{left:718.485000px;}
.x31{left:731.040000px;}
.x47{left:735.000000px;}
.x32{left:743.325000px;}
.x42{left:745.440000px;}
.x48{left:747.285000px;}
.x43{left:757.725000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-2.560000pt;}
.lsf{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.264000pt;}
.ls13{letter-spacing:-1.152000pt;}
.ls11{letter-spacing:-0.864000pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.506667pt;}
.ls24{letter-spacing:-0.414933pt;}
.ls1a{letter-spacing:-0.173867pt;}
.ls5{letter-spacing:-0.017920pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.017920pt;}
.ls17{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.376320pt;}
.lsb{letter-spacing:0.414720pt;}
.lsc{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.704000pt;}
.ls26{letter-spacing:0.874667pt;}
.ls3{letter-spacing:1.024000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.440000pt;}
.ls20{letter-spacing:1.920000pt;}
.ls28{letter-spacing:2.048000pt;}
.ls15{letter-spacing:2.880000pt;}
.ls9{letter-spacing:3.200000pt;}
.ls27{letter-spacing:3.328000pt;}
.ls7{letter-spacing:4.480000pt;}
.lsa{letter-spacing:5.534720pt;}
.ls8{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:7.040000pt;}
.ls16{letter-spacing:8.320000pt;}
.ls19{letter-spacing:9.600000pt;}
.ls21{letter-spacing:10.688000pt;}
.ls1d{letter-spacing:10.880000pt;}
.ls25{letter-spacing:173.546667pt;}
.wsd{word-spacing:-53.760000pt;}
.ws10{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.024000pt;}
.ws3{word-spacing:-16.448000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.594667pt;}
.wsc{word-spacing:-14.848000pt;}
.ws13{word-spacing:-14.720000pt;}
.ws15{word-spacing:-13.984000pt;}
.ws9{word-spacing:-13.854933pt;}
.ws11{word-spacing:-13.816320pt;}
.wsa{word-spacing:-13.457920pt;}
.ws7{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.422080pt;}
.wse{word-spacing:-13.266133pt;}
.ws12{word-spacing:-13.025067pt;}
.wsf{word-spacing:-12.608000pt;}
.wsb{word-spacing:-12.576000pt;}
.ws8{word-spacing:-12.160000pt;}
.ws0{word-spacing:-10.560000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-3.354027pt;}
._4{margin-left:-2.432000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.472000pt;}
._6{width:3.136000pt;}
._7{width:4.032000pt;}
._8{width:5.248000pt;}
._d{width:6.720000pt;}
._e{width:7.861333pt;}
._f{width:9.109333pt;}
._10{width:10.272000pt;}
._9{width:11.776000pt;}
._a{width:13.376000pt;}
._11{width:14.720000pt;}
._20{width:16.128000pt;}
._12{width:17.472000pt;}
._2{width:19.008000pt;}
._5{width:19.968000pt;}
._3{width:21.056000pt;}
._b{width:22.336000pt;}
._19{width:23.573333pt;}
._c{width:24.885333pt;}
._1d{width:25.920000pt;}
._1f{width:26.816000pt;}
._1e{width:28.058027pt;}
._17{width:29.824000pt;}
._16{width:31.360000pt;}
._1b{width:32.384000pt;}
._1a{width:33.408000pt;}
._21{width:35.264000pt;}
._14{width:37.312000pt;}
._13{width:38.336000pt;}
._18{width:172.298667pt;}
._15{width:173.578667pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:97.632000pt;}
.y90{bottom:102.432000pt;}
.y6f{bottom:112.992000pt;}
.y3d{bottom:114.912000pt;}
.y1e{bottom:117.792000pt;}
.y6e{bottom:128.352000pt;}
.y1d{bottom:128.992000pt;}
.y3c{bottom:132.512000pt;}
.y8f{bottom:133.152000pt;}
.y6d{bottom:143.706667pt;}
.y1c{bottom:148.506667pt;}
.y3b{bottom:150.426667pt;}
.y6c{bottom:159.066667pt;}
.y86{bottom:159.706667pt;}
.yc6{bottom:164.826667pt;}
.y3a{bottom:168.026667pt;}
.y6b{bottom:174.466667pt;}
.y95{bottom:179.266667pt;}
.y85{bottom:185.666667pt;}
.y39{bottom:186.626667pt;}
.y1b{bottom:189.506667pt;}
.y8e{bottom:189.826667pt;}
.ye2{bottom:190.466667pt;}
.y38{bottom:191.426667pt;}
.yc5{bottom:192.386667pt;}
.y94{bottom:194.626667pt;}
.y37{bottom:204.866667pt;}
.y6a{bottom:205.186667pt;}
.yc8{bottom:205.826667pt;}
.y99{bottom:209.986667pt;}
.yc4{bottom:210.306667pt;}
.y84{bottom:213.186667pt;}
.y69{bottom:220.546667pt;}
.y9a{bottom:221.186667pt;}
.yad{bottom:225.346667pt;}
.yc3{bottom:227.266667pt;}
.y36{bottom:228.226667pt;}
.y1a{bottom:230.466667pt;}
.y8d{bottom:235.586667pt;}
.y68{bottom:235.906667pt;}
.y8c{bottom:240.386667pt;}
.y83{bottom:240.706667pt;}
.yc1{bottom:244.546667pt;}
.yc2{bottom:250.626667pt;}
.y8b{bottom:250.946667pt;}
.y67{bottom:251.266667pt;}
.y93{bottom:251.586667pt;}
.y35{bottom:255.746667pt;}
.y66{bottom:256.066667pt;}
.ye1{bottom:260.546667pt;}
.yc0{bottom:262.786667pt;}
.y65{bottom:266.306667pt;}
.yac{bottom:266.946667pt;}
.yf8{bottom:267.906667pt;}
.y82{bottom:268.226667pt;}
.y19{bottom:271.426667pt;}
.ybf{bottom:279.426667pt;}
.y64{bottom:281.693333pt;}
.y34{bottom:283.613333pt;}
.ye0{bottom:288.413333pt;}
.yf6{bottom:295.453333pt;}
.y81{bottom:295.773333pt;}
.ybe{bottom:296.413333pt;}
.y63{bottom:297.053333pt;}
.yf7{bottom:301.533333pt;}
.y98{bottom:301.853333pt;}
.yab{bottom:310.173333pt;}
.y33{bottom:311.133333pt;}
.y18{bottom:312.413333pt;}
.ybd{bottom:313.373333pt;}
.ydf{bottom:315.933333pt;}
.yf5{bottom:323.293333pt;}
.y80{bottom:323.613333pt;}
.y62{bottom:327.773333pt;}
.ybc{bottom:330.013333pt;}
.yaa{bottom:337.693333pt;}
.y32{bottom:338.653333pt;}
.y17{bottom:339.613333pt;}
.y61{bottom:343.133333pt;}
.yde{bottom:343.453333pt;}
.ybb{bottom:346.973333pt;}
.yf4{bottom:350.813333pt;}
.y7f{bottom:351.133333pt;}
.yc7{bottom:357.213333pt;}
.y60{bottom:358.493333pt;}
.ydc{bottom:362.013333pt;}
.yba{bottom:363.933333pt;}
.ya9{bottom:365.533333pt;}
.y31{bottom:366.173333pt;}
.y16{bottom:367.133333pt;}
.ydd{bottom:368.093333pt;}
.y5f{bottom:373.853333pt;}
.yf3{bottom:378.333333pt;}
.y7e{bottom:378.653333pt;}
.ydb{bottom:379.933333pt;}
.yb9{bottom:380.573333pt;}
.y5e{bottom:389.213333pt;}
.y8a{bottom:389.853333pt;}
.ya8{bottom:393.093333pt;}
.y30{bottom:394.053333pt;}
.yda{bottom:396.933333pt;}
.yb8{bottom:397.573333pt;}
.y5d{bottom:404.613333pt;}
.y97{bottom:404.933333pt;}
.yf1{bottom:405.893333pt;}
.y7d{bottom:406.213333pt;}
.y15{bottom:408.453333pt;}
.yf2{bottom:411.973333pt;}
.yd9{bottom:413.893333pt;}
.yb7{bottom:414.533333pt;}
.y5c{bottom:419.973333pt;}
.ya7{bottom:420.613333pt;}
.y2f{bottom:421.573333pt;}
.yd8{bottom:430.533333pt;}
.yb6{bottom:431.493333pt;}
.yf0{bottom:433.733333pt;}
.y7c{bottom:434.053333pt;}
.y5b{bottom:435.013333pt;}
.y14{bottom:435.973333pt;}
.yd7{bottom:447.493333pt;}
.ya6{bottom:448.133333pt;}
.y2e{bottom:449.093333pt;}
.yb5{bottom:450.053333pt;}
.y5a{bottom:450.373333pt;}
.yef{bottom:461.253333pt;}
.y7a{bottom:461.573333pt;}
.y13{bottom:463.493333pt;}
.yd6{bottom:464.453333pt;}
.y59{bottom:465.733333pt;}
.y7b{bottom:467.653333pt;}
.yb4{bottom:468.293333pt;}
.ya5{bottom:475.973333pt;}
.y2d{bottom:476.613333pt;}
.y58{bottom:481.093333pt;}
.yb3{bottom:486.533333pt;}
.yed{bottom:488.773333pt;}
.y79{bottom:489.093333pt;}
.y12{bottom:491.013333pt;}
.yee{bottom:494.853333pt;}
.y57{bottom:496.453333pt;}
.yd5{bottom:498.053333pt;}
.ya4{bottom:503.493333pt;}
.y2c{bottom:504.453333pt;}
.yb2{bottom:509.280000pt;}
.y56{bottom:511.840000pt;}
.yd4{bottom:515.040000pt;}
.yec{bottom:516.320000pt;}
.y78{bottom:516.640000pt;}
.y11{bottom:518.560000pt;}
.y55{bottom:527.200000pt;}
.ya2{bottom:531.040000pt;}
.y2b{bottom:532.000000pt;}
.ya3{bottom:537.120000pt;}
.yeb{bottom:544.160000pt;}
.y54{bottom:544.480000pt;}
.y89{bottom:550.560000pt;}
.yd3{bottom:558.240000pt;}
.ya1{bottom:558.560000pt;}
.y2a{bottom:559.520000pt;}
.y10{bottom:559.840000pt;}
.y53{bottom:562.080000pt;}
.yea{bottom:571.680000pt;}
.y77{bottom:572.000000pt;}
.y52{bottom:579.680000pt;}
.yd2{bottom:585.760000pt;}
.ya0{bottom:586.080000pt;}
.yf{bottom:587.040000pt;}
.ye9{bottom:589.920000pt;}
.y51{bottom:597.280000pt;}
.y76{bottom:599.520000pt;}
.ye8{bottom:612.320000pt;}
.yd1{bottom:613.280000pt;}
.y9f{bottom:613.920000pt;}
.ye{bottom:614.880000pt;}
.y75{bottom:627.066667pt;}
.y50{bottom:632.826667pt;}
.yd0{bottom:641.146667pt;}
.yd{bottom:642.426667pt;}
.y4f{bottom:650.426667pt;}
.y74{bottom:654.906667pt;}
.y9d{bottom:655.226667pt;}
.y92{bottom:660.986667pt;}
.y9e{bottom:661.306667pt;}
.y4e{bottom:668.026667pt;}
.ycf{bottom:668.666667pt;}
.yc{bottom:669.946667pt;}
.y73{bottom:682.426667pt;}
.y4d{bottom:685.626667pt;}
.ycd{bottom:686.906667pt;}
.y88{bottom:688.506667pt;}
.yce{bottom:692.986667pt;}
.y29{bottom:697.466667pt;}
.y4c{bottom:703.226667pt;}
.ycc{bottom:705.146667pt;}
.y71{bottom:709.946667pt;}
.yb{bottom:711.226667pt;}
.y72{bottom:716.026667pt;}
.y4b{bottom:720.826667pt;}
.ycb{bottom:722.106667pt;}
.y4a{bottom:725.626667pt;}
.y49{bottom:737.186667pt;}
.y70{bottom:737.506667pt;}
.ya{bottom:738.466667pt;}
.y27{bottom:738.786667pt;}
.y9c{bottom:743.586667pt;}
.y28{bottom:744.866667pt;}
.y48{bottom:765.346667pt;}
.y9{bottom:766.306667pt;}
.y96{bottom:771.426667pt;}
.yb1{bottom:781.666667pt;}
.y46{bottom:792.866667pt;}
.y8{bottom:793.826667pt;}
.yb0{bottom:798.306667pt;}
.y47{bottom:798.946667pt;}
.yaf{bottom:815.266667pt;}
.y45{bottom:820.386667pt;}
.y26{bottom:821.346667pt;}
.y91{bottom:826.466667pt;}
.yae{bottom:832.226667pt;}
.y7{bottom:835.106667pt;}
.y43{bottom:847.933333pt;}
.y25{bottom:848.893333pt;}
.y44{bottom:854.013333pt;}
.y6{bottom:862.333333pt;}
.y42{bottom:875.773333pt;}
.y24{bottom:876.413333pt;}
.y9b{bottom:881.853333pt;}
.y5{bottom:889.853333pt;}
.ye7{bottom:890.813333pt;}
.y41{bottom:903.293333pt;}
.y23{bottom:904.253333pt;}
.ye6{bottom:908.733333pt;}
.yca{bottom:909.373333pt;}
.y4{bottom:917.373333pt;}
.ye5{bottom:925.693333pt;}
.y40{bottom:930.813333pt;}
.y22{bottom:931.773333pt;}
.ye4{bottom:942.653333pt;}
.y3f{bottom:958.373333pt;}
.y3{bottom:958.693333pt;}
.ye3{bottom:959.333333pt;}
.y87{bottom:964.453333pt;}
.y21{bottom:973.093333pt;}
.y2{bottom:986.213333pt;}
.yc9{bottom:992.293333pt;}
.y1{bottom:1013.733333pt;}
.y20{bottom:1014.053333pt;}
.y3e{bottom:1019.813333pt;}
.h6{height:30.324375pt;}
.h8{height:37.063125pt;}
.hd{height:40.307500pt;}
.hc{height:44.437500pt;}
.h5{height:44.648750pt;}
.h7{height:47.171250pt;}
.hb{height:47.748750pt;}
.ha{height:48.195000pt;}
.he{height:51.663750pt;}
.h2{height:56.156250pt;}
.h9{height:57.375000pt;}
.h3{height:61.383125pt;}
.h4{height:1122.519933pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.560000pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:113.312000pt;}
.xb{left:117.792000pt;}
.x2{left:118.752000pt;}
.x1f{left:122.272000pt;}
.x50{left:135.746667pt;}
.x3b{left:149.506667pt;}
.x51{left:151.386667pt;}
.x35{left:157.186667pt;}
.x12{left:160.386667pt;}
.x34{left:162.946667pt;}
.x3c{left:163.866667pt;}
.x1{left:165.506667pt;}
.x2d{left:171.266667pt;}
.x3d{left:174.786667pt;}
.x37{left:176.066667pt;}
.x3e{left:177.306667pt;}
.x49{left:179.266667pt;}
.x39{left:185.346667pt;}
.x25{left:187.866667pt;}
.x4c{left:188.866667pt;}
.x26{left:198.786667pt;}
.x46{left:207.746667pt;}
.x38{left:209.346667pt;}
.x1b{left:218.293333pt;}
.x1c{left:223.773333pt;}
.x4d{left:236.853333pt;}
.x17{left:241.973333pt;}
.xc{left:246.133333pt;}
.x18{left:247.453333pt;}
.xd{left:251.613333pt;}
.x19{left:271.733333pt;}
.x1a{left:277.213333pt;}
.x30{left:282.013333pt;}
.x33{left:293.213333pt;}
.x3{left:298.373333pt;}
.x8{left:305.413333pt;}
.x23{left:323.613333pt;}
.x24{left:334.533333pt;}
.x5{left:346.053333pt;}
.x4{left:351.173333pt;}
.x22{left:356.613333pt;}
.x15{left:364.893333pt;}
.x16{left:370.373333pt;}
.xe{left:378.040000pt;}
.xf{left:383.520000pt;}
.x1d{left:389.880000pt;}
.x1e{left:400.800000pt;}
.x4a{left:406.560000pt;}
.x6{left:420.640000pt;}
.x9{left:437.240000pt;}
.xa{left:442.720000pt;}
.x28{left:457.720000pt;}
.x2c{left:466.386667pt;}
.x29{left:468.666667pt;}
.x10{left:472.466667pt;}
.x52{left:474.706667pt;}
.x11{left:477.946667pt;}
.x53{left:485.626667pt;}
.x13{left:503.506667pt;}
.x40{left:506.706667pt;}
.x14{left:508.986667pt;}
.x20{left:515.666667pt;}
.x41{left:517.626667pt;}
.x3f{left:523.666667pt;}
.x21{left:526.586667pt;}
.x3a{left:534.546667pt;}
.x27{left:537.786667pt;}
.x2e{left:545.746667pt;}
.x2f{left:556.706667pt;}
.x4e{left:579.706667pt;}
.x44{left:589.306667pt;}
.x4f{left:590.626667pt;}
.x2a{left:592.186667pt;}
.x45{left:600.226667pt;}
.x2b{left:603.106667pt;}
.x36{left:623.906667pt;}
.x4b{left:638.653333pt;}
.x31{left:649.813333pt;}
.x47{left:653.333333pt;}
.x32{left:660.733333pt;}
.x42{left:662.613333pt;}
.x48{left:664.253333pt;}
.x43{left:673.533333pt;}
}




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