
    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_a23a26b9630d1dd1b2325b2b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_80b26135a78c52e3f7819c07.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2cdad4dfce34f4a59810ccd6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c9df6a4263b987c395cb7e3d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_726c39b4c53e78064ae2cb7a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_60e69bcf66789f8c2b838d88.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.208200px;}
.lsd{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.lse{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.135600px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls10{letter-spacing:7.866720px;}
.ls14{letter-spacing:16.506720px;}
.ls1{letter-spacing:31.626720px;}
.ls3{letter-spacing:33.066720px;}
.ls4{letter-spacing:36.666720px;}
.ls5{letter-spacing:46.026720px;}
.ls13{letter-spacing:46.170720px;}
.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:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.733600px;}
.ws5{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.500000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.637760px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1110.513600px;}
._6{margin-left:-912.360000px;}
._1f{margin-left:-15.234000px;}
._c{margin-left:-3.824640px;}
._b{margin-left:-2.509920px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._7{width:2.272800px;}
._8{width:4.060080px;}
._e{width:5.258880px;}
._a{width:6.262560px;}
._9{width:7.311120px;}
._d{width:8.665200px;}
._f{width:9.681120px;}
._11{width:10.814400px;}
._10{width:11.892240px;}
._12{width:13.926720px;}
._15{width:16.104240px;}
._14{width:17.560080px;}
._13{width:18.645120px;}
._1b{width:20.586240px;}
._1c{width:21.903120px;}
._33{width:23.021280px;}
._1a{width:24.023520px;}
._19{width:25.517520px;}
._1d{width:27.549360px;}
._1e{width:28.684800px;}
._2d{width:29.789280px;}
._27{width:30.869280px;}
._26{width:32.177520px;}
._24{width:33.255360px;}
._17{width:35.138880px;}
._16{width:36.812160px;}
._18{width:38.872800px;}
._2b{width:42.429600px;}
._2c{width:43.443360px;}
._34{width:44.640720px;}
._22{width:47.270160px;}
._21{width:52.796880px;}
._20{width:54.142560px;}
._23{width:56.262960px;}
._31{width:59.848560px;}
._32{width:61.534560px;}
._30{width:65.198160px;}
._29{width:67.050720px;}
._28{width:85.098240px;}
._2f{width:101.859840px;}
._2a{width:111.332880px;}
._25{width:115.336800px;}
._2e{width:141.061680px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y90{bottom:5.760000px;}
.y8d{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.y98{bottom:10.620000px;}
.y8{bottom:11.520000px;}
.y9a{bottom:15.120000px;}
.y96{bottom:16.200000px;}
.y94{bottom:16.380000px;}
.y92{bottom:17.100000px;}
.y8f{bottom:25.560000px;}
.y8c{bottom:25.740000px;}
.yaf{bottom:25.770000px;}
.y9{bottom:39.780000px;}
.yb8{bottom:45.540000px;}
.yb3{bottom:45.585000px;}
.y6{bottom:55.440000px;}
.ybb{bottom:59.610000px;}
.yb7{bottom:65.340000px;}
.y8a{bottom:82.980000px;}
.yb6{bottom:85.140000px;}
.yb0{bottom:90.540000px;}
.y38{bottom:90.720000px;}
.yd5{bottom:91.260000px;}
.y4a{bottom:92.520000px;}
.y118{bottom:96.300000px;}
.yb5{bottom:99.180000px;}
.y89{bottom:102.780000px;}
.y37{bottom:110.520000px;}
.yd4{bottom:111.060000px;}
.y49{bottom:112.320000px;}
.ye9{bottom:114.120000px;}
.y117{bottom:116.100000px;}
.y88{bottom:122.580000px;}
.y36{bottom:130.320000px;}
.yae{bottom:130.860000px;}
.yd3{bottom:131.040000px;}
.y48{bottom:132.300000px;}
.ye8{bottom:133.920000px;}
.y116{bottom:135.900000px;}
.y87{bottom:142.380000px;}
.y35{bottom:150.300000px;}
.yd2{bottom:150.840000px;}
.y72{bottom:151.200000px;}
.y47{bottom:152.130000px;}
.ye7{bottom:153.930000px;}
.y115{bottom:155.910000px;}
.y86{bottom:162.390000px;}
.y34{bottom:170.130000px;}
.yd1{bottom:170.670000px;}
.y71{bottom:171.030000px;}
.yad{bottom:171.390000px;}
.y46{bottom:171.930000px;}
.ye6{bottom:173.730000px;}
.y114{bottom:175.710000px;}
.y85{bottom:182.190000px;}
.y70{bottom:187.770000px;}
.y33{bottom:189.930000px;}
.yd0{bottom:190.470000px;}
.y45{bottom:191.730000px;}
.yac{bottom:191.910000px;}
.ye5{bottom:193.530000px;}
.y113{bottom:195.510000px;}
.y84{bottom:201.990000px;}
.y32{bottom:209.730000px;}
.ycf{bottom:210.270000px;}
.y44{bottom:211.530000px;}
.yab{bottom:212.610000px;}
.ye4{bottom:213.330000px;}
.y112{bottom:215.310000px;}
.y83{bottom:221.790000px;}
.y31{bottom:229.530000px;}
.yce{bottom:230.250000px;}
.y43{bottom:231.510000px;}
.yaa{bottom:233.130000px;}
.y111{bottom:235.110000px;}
.y82{bottom:241.590000px;}
.y30{bottom:249.510000px;}
.ycd{bottom:250.050000px;}
.y42{bottom:251.310000px;}
.ye3{bottom:253.110000px;}
.ya9{bottom:253.830000px;}
.y110{bottom:255.090000px;}
.y81{bottom:261.570000px;}
.y2f{bottom:269.310000px;}
.ycc{bottom:269.850000px;}
.y41{bottom:271.110000px;}
.ye2{bottom:272.910000px;}
.y10f{bottom:274.890000px;}
.y80{bottom:281.370000px;}
.y2e{bottom:289.110000px;}
.ycb{bottom:289.650000px;}
.y40{bottom:290.910000px;}
.ye1{bottom:292.710000px;}
.y10e{bottom:294.690000px;}
.ya8{bottom:299.910000px;}
.y7f{bottom:301.170000px;}
.y2d{bottom:308.910000px;}
.yca{bottom:309.450000px;}
.y3f{bottom:310.710000px;}
.ye0{bottom:312.510000px;}
.y10d{bottom:314.490000px;}
.ya7{bottom:319.710000px;}
.y7e{bottom:320.970000px;}
.y2c{bottom:328.710000px;}
.yc9{bottom:329.430000px;}
.y3e{bottom:330.690000px;}
.ydf{bottom:332.310000px;}
.y10c{bottom:334.290000px;}
.ya6{bottom:339.690000px;}
.y7d{bottom:340.770000px;}
.y2b{bottom:348.690000px;}
.yc8{bottom:349.230000px;}
.yde{bottom:352.290000px;}
.y10b{bottom:354.270000px;}
.y6f{bottom:355.710000px;}
.y3d{bottom:359.490000px;}
.y7c{bottom:360.750000px;}
.y2a{bottom:368.490000px;}
.yc7{bottom:369.030000px;}
.ydd{bottom:372.090000px;}
.y10a{bottom:374.070000px;}
.y6e{bottom:375.510000px;}
.y3c{bottom:379.290000px;}
.y7b{bottom:380.550000px;}
.y29{bottom:388.290000px;}
.yc6{bottom:388.830000px;}
.ydc{bottom:391.890000px;}
.y6d{bottom:392.070000px;}
.y109{bottom:393.870000px;}
.y3b{bottom:399.090000px;}
.y7a{bottom:400.350000px;}
.y28{bottom:408.135000px;}
.yc5{bottom:408.675000px;}
.ydb{bottom:411.735000px;}
.y108{bottom:413.715000px;}
.y3a{bottom:418.935000px;}
.y79{bottom:420.195000px;}
.y27{bottom:427.935000px;}
.yc4{bottom:428.655000px;}
.yda{bottom:431.535000px;}
.y107{bottom:433.515000px;}
.y39{bottom:438.915000px;}
.y78{bottom:439.995000px;}
.y26{bottom:447.915000px;}
.yc3{bottom:448.455000px;}
.yd9{bottom:451.515000px;}
.y106{bottom:453.495000px;}
.ya5{bottom:458.715000px;}
.y77{bottom:459.975000px;}
.y25{bottom:467.715000px;}
.yc2{bottom:468.255000px;}
.yd8{bottom:471.315000px;}
.y105{bottom:473.295000px;}
.y76{bottom:476.535000px;}
.ya4{bottom:478.515000px;}
.y24{bottom:487.515000px;}
.yc1{bottom:488.055000px;}
.yd7{bottom:491.115000px;}
.y104{bottom:493.095000px;}
.ya3{bottom:498.315000px;}
.y23{bottom:507.315000px;}
.yc0{bottom:507.855000px;}
.yd6{bottom:510.915000px;}
.y103{bottom:512.895000px;}
.ya2{bottom:518.115000px;}
.y22{bottom:527.115000px;}
.ybf{bottom:527.835000px;}
.y6c{bottom:530.715000px;}
.y102{bottom:532.695000px;}
.ya1{bottom:538.095000px;}
.y21{bottom:547.095000px;}
.ybe{bottom:547.635000px;}
.y6b{bottom:550.695000px;}
.y101{bottom:552.675000px;}
.ya0{bottom:557.895000px;}
.y20{bottom:566.895000px;}
.ybd{bottom:567.435000px;}
.y6a{bottom:570.495000px;}
.y100{bottom:572.475000px;}
.y9f{bottom:577.695000px;}
.ybc{bottom:587.235000px;}
.y1f{bottom:588.855000px;}
.y69{bottom:590.295000px;}
.yff{bottom:592.275000px;}
.y9e{bottom:597.495000px;}
.yba{bottom:601.995000px;}
.y1e{bottom:608.835000px;}
.y68{bottom:610.095000px;}
.yfe{bottom:612.075000px;}
.y9d{bottom:617.295000px;}
.y1d{bottom:628.635000px;}
.y67{bottom:629.895000px;}
.yfd{bottom:631.875000px;}
.y9c{bottom:637.275000px;}
.y1c{bottom:648.435000px;}
.y66{bottom:649.905000px;}
.yfc{bottom:651.885000px;}
.y9b{bottom:657.105000px;}
.yb9{bottom:661.605000px;}
.y1b{bottom:668.265000px;}
.y65{bottom:669.705000px;}
.yfb{bottom:671.685000px;}
.y99{bottom:671.865000px;}
.y1a{bottom:688.065000px;}
.y64{bottom:689.505000px;}
.yfa{bottom:691.485000px;}
.y97{bottom:701.745000px;}
.y19{bottom:708.045000px;}
.y63{bottom:709.305000px;}
.yf9{bottom:711.285000px;}
.y95{bottom:727.125000px;}
.y18{bottom:727.845000px;}
.y62{bottom:729.105000px;}
.yf8{bottom:731.085000px;}
.y17{bottom:747.645000px;}
.y61{bottom:749.085000px;}
.yf7{bottom:751.065000px;}
.y93{bottom:758.085000px;}
.yb4{bottom:761.505000px;}
.y16{bottom:767.445000px;}
.y60{bottom:768.885000px;}
.yf6{bottom:770.865000px;}
.y15{bottom:787.245000px;}
.y5f{bottom:788.685000px;}
.y91{bottom:789.225000px;}
.yf5{bottom:790.665000px;}
.y14{bottom:807.225000px;}
.y5e{bottom:808.485000px;}
.yf4{bottom:810.465000px;}
.y8e{bottom:821.085000px;}
.y13{bottom:827.025000px;}
.y5d{bottom:828.285000px;}
.yf3{bottom:830.265000px;}
.y12{bottom:846.825000px;}
.y5c{bottom:848.265000px;}
.yf2{bottom:850.245000px;}
.yb2{bottom:860.685000px;}
.y8b{bottom:861.405000px;}
.y11{bottom:866.625000px;}
.y5b{bottom:868.065000px;}
.yf1{bottom:870.045000px;}
.y10{bottom:886.425000px;}
.y5a{bottom:887.865000px;}
.yf0{bottom:889.845000px;}
.y59{bottom:907.710000px;}
.yf{bottom:908.610000px;}
.yef{bottom:909.690000px;}
.yb1{bottom:921.030000px;}
.y58{bottom:927.510000px;}
.ye{bottom:928.410000px;}
.yee{bottom:929.490000px;}
.y75{bottom:937.770000px;}
.y57{bottom:947.490000px;}
.yd{bottom:948.930000px;}
.yed{bottom:949.470000px;}
.y74{bottom:957.570000px;}
.y56{bottom:967.290000px;}
.yec{bottom:969.270000px;}
.yc{bottom:970.170000px;}
.y73{bottom:974.130000px;}
.y55{bottom:987.090000px;}
.yeb{bottom:989.070000px;}
.yb{bottom:993.570000px;}
.y54{bottom:1006.890000px;}
.yea{bottom:1008.330000px;}
.ya{bottom:1025.250000px;}
.y53{bottom:1026.690000px;}
.y52{bottom:1046.490000px;}
.y5{bottom:1054.050000px;}
.y51{bottom:1066.470000px;}
.y50{bottom:1086.270000px;}
.y4{bottom:1087.890000px;}
.y4f{bottom:1106.070000px;}
.y3{bottom:1118.850000px;}
.y4e{bottom:1125.870000px;}
.y4d{bottom:1145.670000px;}
.y2{bottom:1149.660000px;}
.y4c{bottom:1173.780000px;}
.y1{bottom:1181.700000px;}
.y4b{bottom:1194.300000px;}
.h14{height:19.800000px;}
.h15{height:19.980000px;}
.h5{height:21.780000px;}
.h12{height:24.660000px;}
.h6{height:27.432422px;}
.h13{height:29.160000px;}
.h11{height:30.240000px;}
.h10{height:30.420000px;}
.hf{height:31.140000px;}
.he{height:39.600000px;}
.hd{height:39.816000px;}
.ha{height:41.726953px;}
.h9{height:42.164648px;}
.hb{height:43.506914px;}
.hc{height:45.549492px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h2{height:54.864844px;}
.h16{height:59.616000px;}
.h7{height:65.884219px;}
.h8{height:67.565039px;}
.h17{height:99.180000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:51.300000px;}
.w3{width:55.296000px;}
.w6{width:66.960000px;}
.w8{width:87.660000px;}
.w7{width:87.876000px;}
.wc{width:102.600000px;}
.wd{width:103.896000px;}
.w9{width:114.876000px;}
.wa{width:115.236000px;}
.wf{width:134.136000px;}
.w5{width:136.116000px;}
.wb{width:149.940000px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x8{left:64.079987px;}
.xc{left:70.199987px;}
.x7{left:72.179987px;}
.xb{left:81.359987px;}
.x11{left:85.895987px;}
.x23{left:98.135987px;}
.x14{left:109.295987px;}
.x4{left:118.296000px;}
.x1e{left:168.870000px;}
.x1b{left:190.110000px;}
.x6{left:209.379000px;}
.x1c{left:257.070000px;}
.x1f{left:284.115000px;}
.x12{left:315.974987px;}
.xa{left:336.674987px;}
.x1d{left:344.955000px;}
.x13{left:403.634987px;}
.x5{left:442.509000px;}
.x9{left:446.504987px;}
.xd{left:473.144987px;}
.x24{left:490.244987px;}
.xe{left:494.744987px;}
.xf{left:500.144987px;}
.x16{left:511.124987px;}
.x25{left:517.244987px;}
.x10{left:527.144987px;}
.x1a{left:537.944987px;}
.x20{left:575.745000px;}
.x19{left:604.724987px;}
.x17{left:612.464987px;}
.x21{left:679.650000px;}
.x22{left:730.950000px;}
.x15{left:833.759987px;}
.x18{left:851.579987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.185067pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.120533pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls10{letter-spacing:6.992640pt;}
.ls14{letter-spacing:14.672640pt;}
.ls1{letter-spacing:28.112640pt;}
.ls3{letter-spacing:29.392640pt;}
.ls4{letter-spacing:32.592640pt;}
.ls5{letter-spacing:40.912640pt;}
.ls13{letter-spacing:41.040640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.096533pt;}
.ws5{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.789120pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-987.123200pt;}
._6{margin-left:-810.986667pt;}
._1f{margin-left:-13.541333pt;}
._c{margin-left:-3.399680pt;}
._b{margin-left:-2.231040pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._7{width:2.020267pt;}
._8{width:3.608960pt;}
._e{width:4.674560pt;}
._a{width:5.566720pt;}
._9{width:6.498773pt;}
._d{width:7.702400pt;}
._f{width:8.605440pt;}
._11{width:9.612800pt;}
._10{width:10.570880pt;}
._12{width:12.379307pt;}
._15{width:14.314880pt;}
._14{width:15.608960pt;}
._13{width:16.573440pt;}
._1b{width:18.298880pt;}
._1c{width:19.469440pt;}
._33{width:20.463360pt;}
._1a{width:21.354240pt;}
._19{width:22.682240pt;}
._1d{width:24.488320pt;}
._1e{width:25.497600pt;}
._2d{width:26.479360pt;}
._27{width:27.439360pt;}
._26{width:28.602240pt;}
._24{width:29.560320pt;}
._17{width:31.234560pt;}
._16{width:32.721920pt;}
._18{width:34.553600pt;}
._2b{width:37.715200pt;}
._2c{width:38.616320pt;}
._34{width:39.680640pt;}
._22{width:42.017920pt;}
._21{width:46.930560pt;}
._20{width:48.126720pt;}
._23{width:50.011520pt;}
._31{width:53.198720pt;}
._32{width:54.697387pt;}
._30{width:57.953920pt;}
._29{width:59.600640pt;}
._28{width:75.642880pt;}
._2f{width:90.542080pt;}
._2a{width:98.962560pt;}
._25{width:102.521600pt;}
._2e{width:125.388160pt;}
.fs2{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:5.120000pt;}
.y8d{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.y98{bottom:9.440000pt;}
.y8{bottom:10.240000pt;}
.y9a{bottom:13.440000pt;}
.y96{bottom:14.400000pt;}
.y94{bottom:14.560000pt;}
.y92{bottom:15.200000pt;}
.y8f{bottom:22.720000pt;}
.y8c{bottom:22.880000pt;}
.yaf{bottom:22.906667pt;}
.y9{bottom:35.360000pt;}
.yb8{bottom:40.480000pt;}
.yb3{bottom:40.520000pt;}
.y6{bottom:49.280000pt;}
.ybb{bottom:52.986667pt;}
.yb7{bottom:58.080000pt;}
.y8a{bottom:73.760000pt;}
.yb6{bottom:75.680000pt;}
.yb0{bottom:80.480000pt;}
.y38{bottom:80.640000pt;}
.yd5{bottom:81.120000pt;}
.y4a{bottom:82.240000pt;}
.y118{bottom:85.600000pt;}
.yb5{bottom:88.160000pt;}
.y89{bottom:91.360000pt;}
.y37{bottom:98.240000pt;}
.yd4{bottom:98.720000pt;}
.y49{bottom:99.840000pt;}
.ye9{bottom:101.440000pt;}
.y117{bottom:103.200000pt;}
.y88{bottom:108.960000pt;}
.y36{bottom:115.840000pt;}
.yae{bottom:116.320000pt;}
.yd3{bottom:116.480000pt;}
.y48{bottom:117.600000pt;}
.ye8{bottom:119.040000pt;}
.y116{bottom:120.800000pt;}
.y87{bottom:126.560000pt;}
.y35{bottom:133.600000pt;}
.yd2{bottom:134.080000pt;}
.y72{bottom:134.400000pt;}
.y47{bottom:135.226667pt;}
.ye7{bottom:136.826667pt;}
.y115{bottom:138.586667pt;}
.y86{bottom:144.346667pt;}
.y34{bottom:151.226667pt;}
.yd1{bottom:151.706667pt;}
.y71{bottom:152.026667pt;}
.yad{bottom:152.346667pt;}
.y46{bottom:152.826667pt;}
.ye6{bottom:154.426667pt;}
.y114{bottom:156.186667pt;}
.y85{bottom:161.946667pt;}
.y70{bottom:166.906667pt;}
.y33{bottom:168.826667pt;}
.yd0{bottom:169.306667pt;}
.y45{bottom:170.426667pt;}
.yac{bottom:170.586667pt;}
.ye5{bottom:172.026667pt;}
.y113{bottom:173.786667pt;}
.y84{bottom:179.546667pt;}
.y32{bottom:186.426667pt;}
.ycf{bottom:186.906667pt;}
.y44{bottom:188.026667pt;}
.yab{bottom:188.986667pt;}
.ye4{bottom:189.626667pt;}
.y112{bottom:191.386667pt;}
.y83{bottom:197.146667pt;}
.y31{bottom:204.026667pt;}
.yce{bottom:204.666667pt;}
.y43{bottom:205.786667pt;}
.yaa{bottom:207.226667pt;}
.y111{bottom:208.986667pt;}
.y82{bottom:214.746667pt;}
.y30{bottom:221.786667pt;}
.ycd{bottom:222.266667pt;}
.y42{bottom:223.386667pt;}
.ye3{bottom:224.986667pt;}
.ya9{bottom:225.626667pt;}
.y110{bottom:226.746667pt;}
.y81{bottom:232.506667pt;}
.y2f{bottom:239.386667pt;}
.ycc{bottom:239.866667pt;}
.y41{bottom:240.986667pt;}
.ye2{bottom:242.586667pt;}
.y10f{bottom:244.346667pt;}
.y80{bottom:250.106667pt;}
.y2e{bottom:256.986667pt;}
.ycb{bottom:257.466667pt;}
.y40{bottom:258.586667pt;}
.ye1{bottom:260.186667pt;}
.y10e{bottom:261.946667pt;}
.ya8{bottom:266.586667pt;}
.y7f{bottom:267.706667pt;}
.y2d{bottom:274.586667pt;}
.yca{bottom:275.066667pt;}
.y3f{bottom:276.186667pt;}
.ye0{bottom:277.786667pt;}
.y10d{bottom:279.546667pt;}
.ya7{bottom:284.186667pt;}
.y7e{bottom:285.306667pt;}
.y2c{bottom:292.186667pt;}
.yc9{bottom:292.826667pt;}
.y3e{bottom:293.946667pt;}
.ydf{bottom:295.386667pt;}
.y10c{bottom:297.146667pt;}
.ya6{bottom:301.946667pt;}
.y7d{bottom:302.906667pt;}
.y2b{bottom:309.946667pt;}
.yc8{bottom:310.426667pt;}
.yde{bottom:313.146667pt;}
.y10b{bottom:314.906667pt;}
.y6f{bottom:316.186667pt;}
.y3d{bottom:319.546667pt;}
.y7c{bottom:320.666667pt;}
.y2a{bottom:327.546667pt;}
.yc7{bottom:328.026667pt;}
.ydd{bottom:330.746667pt;}
.y10a{bottom:332.506667pt;}
.y6e{bottom:333.786667pt;}
.y3c{bottom:337.146667pt;}
.y7b{bottom:338.266667pt;}
.y29{bottom:345.146667pt;}
.yc6{bottom:345.626667pt;}
.ydc{bottom:348.346667pt;}
.y6d{bottom:348.506667pt;}
.y109{bottom:350.106667pt;}
.y3b{bottom:354.746667pt;}
.y7a{bottom:355.866667pt;}
.y28{bottom:362.786667pt;}
.yc5{bottom:363.266667pt;}
.ydb{bottom:365.986667pt;}
.y108{bottom:367.746667pt;}
.y3a{bottom:372.386667pt;}
.y79{bottom:373.506667pt;}
.y27{bottom:380.386667pt;}
.yc4{bottom:381.026667pt;}
.yda{bottom:383.586667pt;}
.y107{bottom:385.346667pt;}
.y39{bottom:390.146667pt;}
.y78{bottom:391.106667pt;}
.y26{bottom:398.146667pt;}
.yc3{bottom:398.626667pt;}
.yd9{bottom:401.346667pt;}
.y106{bottom:403.106667pt;}
.ya5{bottom:407.746667pt;}
.y77{bottom:408.866667pt;}
.y25{bottom:415.746667pt;}
.yc2{bottom:416.226667pt;}
.yd8{bottom:418.946667pt;}
.y105{bottom:420.706667pt;}
.y76{bottom:423.586667pt;}
.ya4{bottom:425.346667pt;}
.y24{bottom:433.346667pt;}
.yc1{bottom:433.826667pt;}
.yd7{bottom:436.546667pt;}
.y104{bottom:438.306667pt;}
.ya3{bottom:442.946667pt;}
.y23{bottom:450.946667pt;}
.yc0{bottom:451.426667pt;}
.yd6{bottom:454.146667pt;}
.y103{bottom:455.906667pt;}
.ya2{bottom:460.546667pt;}
.y22{bottom:468.546667pt;}
.ybf{bottom:469.186667pt;}
.y6c{bottom:471.746667pt;}
.y102{bottom:473.506667pt;}
.ya1{bottom:478.306667pt;}
.y21{bottom:486.306667pt;}
.ybe{bottom:486.786667pt;}
.y6b{bottom:489.506667pt;}
.y101{bottom:491.266667pt;}
.ya0{bottom:495.906667pt;}
.y20{bottom:503.906667pt;}
.ybd{bottom:504.386667pt;}
.y6a{bottom:507.106667pt;}
.y100{bottom:508.866667pt;}
.y9f{bottom:513.506667pt;}
.ybc{bottom:521.986667pt;}
.y1f{bottom:523.426667pt;}
.y69{bottom:524.706667pt;}
.yff{bottom:526.466667pt;}
.y9e{bottom:531.106667pt;}
.yba{bottom:535.106667pt;}
.y1e{bottom:541.186667pt;}
.y68{bottom:542.306667pt;}
.yfe{bottom:544.066667pt;}
.y9d{bottom:548.706667pt;}
.y1d{bottom:558.786667pt;}
.y67{bottom:559.906667pt;}
.yfd{bottom:561.666667pt;}
.y9c{bottom:566.466667pt;}
.y1c{bottom:576.386667pt;}
.y66{bottom:577.693333pt;}
.yfc{bottom:579.453333pt;}
.y9b{bottom:584.093333pt;}
.yb9{bottom:588.093333pt;}
.y1b{bottom:594.013333pt;}
.y65{bottom:595.293333pt;}
.yfb{bottom:597.053333pt;}
.y99{bottom:597.213333pt;}
.y1a{bottom:611.613333pt;}
.y64{bottom:612.893333pt;}
.yfa{bottom:614.653333pt;}
.y97{bottom:623.773333pt;}
.y19{bottom:629.373333pt;}
.y63{bottom:630.493333pt;}
.yf9{bottom:632.253333pt;}
.y95{bottom:646.333333pt;}
.y18{bottom:646.973333pt;}
.y62{bottom:648.093333pt;}
.yf8{bottom:649.853333pt;}
.y17{bottom:664.573333pt;}
.y61{bottom:665.853333pt;}
.yf7{bottom:667.613333pt;}
.y93{bottom:673.853333pt;}
.yb4{bottom:676.893333pt;}
.y16{bottom:682.173333pt;}
.y60{bottom:683.453333pt;}
.yf6{bottom:685.213333pt;}
.y15{bottom:699.773333pt;}
.y5f{bottom:701.053333pt;}
.y91{bottom:701.533333pt;}
.yf5{bottom:702.813333pt;}
.y14{bottom:717.533333pt;}
.y5e{bottom:718.653333pt;}
.yf4{bottom:720.413333pt;}
.y8e{bottom:729.853333pt;}
.y13{bottom:735.133333pt;}
.y5d{bottom:736.253333pt;}
.yf3{bottom:738.013333pt;}
.y12{bottom:752.733333pt;}
.y5c{bottom:754.013333pt;}
.yf2{bottom:755.773333pt;}
.yb2{bottom:765.053333pt;}
.y8b{bottom:765.693333pt;}
.y11{bottom:770.333333pt;}
.y5b{bottom:771.613333pt;}
.yf1{bottom:773.373333pt;}
.y10{bottom:787.933333pt;}
.y5a{bottom:789.213333pt;}
.yf0{bottom:790.973333pt;}
.y59{bottom:806.853333pt;}
.yf{bottom:807.653333pt;}
.yef{bottom:808.613333pt;}
.yb1{bottom:818.693333pt;}
.y58{bottom:824.453333pt;}
.ye{bottom:825.253333pt;}
.yee{bottom:826.213333pt;}
.y75{bottom:833.573333pt;}
.y57{bottom:842.213333pt;}
.yd{bottom:843.493333pt;}
.yed{bottom:843.973333pt;}
.y74{bottom:851.173333pt;}
.y56{bottom:859.813333pt;}
.yec{bottom:861.573333pt;}
.yc{bottom:862.373333pt;}
.y73{bottom:865.893333pt;}
.y55{bottom:877.413333pt;}
.yeb{bottom:879.173333pt;}
.yb{bottom:883.173333pt;}
.y54{bottom:895.013333pt;}
.yea{bottom:896.293333pt;}
.ya{bottom:911.333333pt;}
.y53{bottom:912.613333pt;}
.y52{bottom:930.213333pt;}
.y5{bottom:936.933333pt;}
.y51{bottom:947.973333pt;}
.y50{bottom:965.573333pt;}
.y4{bottom:967.013333pt;}
.y4f{bottom:983.173333pt;}
.y3{bottom:994.533333pt;}
.y4e{bottom:1000.773333pt;}
.y4d{bottom:1018.373333pt;}
.y2{bottom:1021.920000pt;}
.y4c{bottom:1043.360000pt;}
.y1{bottom:1050.400000pt;}
.y4b{bottom:1061.600000pt;}
.h14{height:17.600000pt;}
.h15{height:17.760000pt;}
.h5{height:19.360000pt;}
.h12{height:21.920000pt;}
.h6{height:24.384375pt;}
.h13{height:25.920000pt;}
.h11{height:26.880000pt;}
.h10{height:27.040000pt;}
.hf{height:27.680000pt;}
.he{height:35.200000pt;}
.hd{height:35.392000pt;}
.ha{height:37.090625pt;}
.h9{height:37.479688pt;}
.hb{height:38.672812pt;}
.hc{height:40.488438pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h2{height:48.768750pt;}
.h16{height:52.992000pt;}
.h7{height:58.563750pt;}
.h8{height:60.057813pt;}
.h17{height:88.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:45.600000pt;}
.w3{width:49.152000pt;}
.w6{width:59.520000pt;}
.w8{width:77.920000pt;}
.w7{width:78.112000pt;}
.wc{width:91.200000pt;}
.wd{width:92.352000pt;}
.w9{width:102.112000pt;}
.wa{width:102.432000pt;}
.wf{width:119.232000pt;}
.w5{width:120.992000pt;}
.wb{width:133.280000pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x8{left:56.959988pt;}
.xc{left:62.399988pt;}
.x7{left:64.159988pt;}
.xb{left:72.319988pt;}
.x11{left:76.351988pt;}
.x23{left:87.231988pt;}
.x14{left:97.151988pt;}
.x4{left:105.152000pt;}
.x1e{left:150.106667pt;}
.x1b{left:168.986667pt;}
.x6{left:186.114667pt;}
.x1c{left:228.506667pt;}
.x1f{left:252.546667pt;}
.x12{left:280.866655pt;}
.xa{left:299.266655pt;}
.x1d{left:306.626667pt;}
.x13{left:358.786655pt;}
.x5{left:393.341333pt;}
.x9{left:396.893322pt;}
.xd{left:420.573322pt;}
.x24{left:435.773322pt;}
.xe{left:439.773322pt;}
.xf{left:444.573322pt;}
.x16{left:454.333322pt;}
.x25{left:459.773322pt;}
.x10{left:468.573322pt;}
.x1a{left:478.173322pt;}
.x20{left:511.773333pt;}
.x19{left:537.533322pt;}
.x17{left:544.413322pt;}
.x21{left:604.133333pt;}
.x22{left:649.733333pt;}
.x15{left:741.119988pt;}
.x18{left:756.959988pt;}
}




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