
    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_eae317944122b1ac3b50bf9f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e856e5e513a00b9712310469.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eb00729a5c8aa94144f38ec2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_e6b2361936f1c9486615713c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4513eaa68b28fdab388cb7d5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_afd26d9ebd106d4cc14eceb4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_1e22a386ea1a719d8ff6caeb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8e6a1df06b63c3638d1fd31b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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:ffa;src:url('chunks/assets/font_920d2fe90ed938778e5b4403.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.776855;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:ffb;src:url('chunks/assets/font_d077aadbc6acff745b98659a.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.666000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.206640px;}
.ls8{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.900000px;}
.ls6{letter-spacing:0.924000px;}
.ls9{letter-spacing:1.080000px;}
.ls10{letter-spacing:16.506720px;}
.lsc{letter-spacing:17.460000px;}
.lse{letter-spacing:46.026720px;}
.lsd{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;}
}
.ws0{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.020000px;}
.ws6{word-spacing:-15.864000px;}
.ws8{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.wsb{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.274000px;}
.wsd{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._2b{margin-left:-6.362640px;}
._16{margin-left:-3.390480px;}
._0{margin-left:-1.937520px;}
._1{width:1.263600px;}
._2{width:2.359680px;}
._1a{width:3.362400px;}
._10{width:4.425360px;}
._f{width:5.913120px;}
._19{width:7.075440px;}
._18{width:8.665200px;}
._9{width:9.979920px;}
._a{width:11.012400px;}
._6{width:12.960000px;}
._12{width:16.372800px;}
._d{width:17.373600px;}
._e{width:18.465840px;}
._11{width:19.489680px;}
._15{width:20.992320px;}
._23{width:22.473120px;}
._b{width:23.605200px;}
._c{width:24.621120px;}
._17{width:25.696800px;}
._1b{width:27.156240px;}
._1f{width:28.293120px;}
._1e{width:29.640960px;}
._1d{width:31.245120px;}
._1c{width:32.877360px;}
._25{width:34.174800px;}
._21{width:35.256960px;}
._20{width:36.334080px;}
._28{width:37.742400px;}
._32{width:39.756960px;}
._36{width:41.353920px;}
._22{width:42.967440px;}
._24{width:44.034480px;}
._26{width:45.059040px;}
._29{width:47.218320px;}
._2a{width:48.278160px;}
._30{width:50.019120px;}
._27{width:55.397520px;}
._5{width:57.204000px;}
._33{width:61.791840px;}
._2c{width:64.002960px;}
._31{width:75.723840px;}
._4{width:87.240000px;}
._35{width:97.417440px;}
._2d{width:98.714880px;}
._2e{width:125.555760px;}
._34{width:126.578640px;}
._2f{width:128.364480px;}
._14{width:158.662800px;}
._13{width:161.586480px;}
._7{width:199.416000px;}
._3{width:233.069520px;}
._8{width:1023.823200px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.620000px;}
.y28{bottom:6.120000px;}
.ya8{bottom:6.150000px;}
.yb3{bottom:6.165000px;}
.y9b{bottom:6.300000px;}
.y11{bottom:7.560000px;}
.y6{bottom:14.040000px;}
.y27{bottom:25.920000px;}
.ya1{bottom:26.100000px;}
.ya7{bottom:26.130000px;}
.y5{bottom:45.180000px;}
.y26{bottom:45.720000px;}
.y98{bottom:45.900000px;}
.ya0{bottom:45.945000px;}
.y9{bottom:60.696000px;}
.y25{bottom:65.520000px;}
.yaf{bottom:65.700000px;}
.yb1{bottom:65.745000px;}
.y4{bottom:76.530000px;}
.y52{bottom:84.276000px;}
.ya4{bottom:84.456000px;}
.y3a{bottom:85.140000px;}
.y24{bottom:85.500000px;}
.y8a{bottom:91.656000px;}
.y4a{bottom:98.856000px;}
.y51{bottom:104.076000px;}
.ya5{bottom:104.256000px;}
.y39{bottom:104.940000px;}
.ya2{bottom:105.294000px;}
.y23{bottom:105.300000px;}
.y3{bottom:107.850000px;}
.y89{bottom:111.456000px;}
.y49{bottom:117.396000px;}
.yd1{bottom:123.876000px;}
.y50{bottom:124.056000px;}
.y38{bottom:124.740000px;}
.y22{bottom:125.100000px;}
.yea{bottom:126.576000px;}
.y88{bottom:131.436000px;}
.y48{bottom:136.116000px;}
.y2{bottom:140.430000px;}
.yd0{bottom:143.676000px;}
.y4f{bottom:143.856000px;}
.y37{bottom:144.570000px;}
.y21{bottom:144.930000px;}
.ye9{bottom:146.376000px;}
.y87{bottom:151.230000px;}
.y47{bottom:154.650000px;}
.ycf{bottom:163.470000px;}
.y4e{bottom:163.650000px;}
.y36{bottom:164.370000px;}
.y20{bottom:164.730000px;}
.ye8{bottom:166.170000px;}
.y86{bottom:171.030000px;}
.y46{bottom:173.370000px;}
.y4d{bottom:183.450000px;}
.y35{bottom:184.350000px;}
.y1f{bottom:184.710000px;}
.ye7{bottom:185.970000px;}
.y85{bottom:190.830000px;}
.y45{bottom:200.910000px;}
.y4c{bottom:203.250000px;}
.ya3{bottom:203.430000px;}
.y34{bottom:204.150000px;}
.y1e{bottom:204.510000px;}
.ye6{bottom:205.770000px;}
.y84{bottom:210.630000px;}
.yce{bottom:223.050000px;}
.y44{bottom:223.230000px;}
.y33{bottom:223.950000px;}
.y1d{bottom:224.310000px;}
.ye5{bottom:225.570000px;}
.y83{bottom:230.610000px;}
.ycd{bottom:242.850000px;}
.y43{bottom:243.030000px;}
.y32{bottom:243.750000px;}
.y1c{bottom:244.110000px;}
.ye4{bottom:245.550000px;}
.y82{bottom:250.410000px;}
.ycc{bottom:262.290000px;}
.yd2{bottom:262.650000px;}
.y42{bottom:262.830000px;}
.y31{bottom:263.550000px;}
.y1b{bottom:263.910000px;}
.y81{bottom:270.210000px;}
.ye3{bottom:280.155000px;}
.ycb{bottom:282.315000px;}
.y41{bottom:282.675000px;}
.y30{bottom:283.530000px;}
.y1a{bottom:283.890000px;}
.y80{bottom:290.055000px;}
.ye2{bottom:297.435000px;}
.y40{bottom:302.475000px;}
.y2f{bottom:303.330000px;}
.y19{bottom:303.690000px;}
.y8b{bottom:309.495000px;}
.y7f{bottom:309.855000px;}
.ye1{bottom:314.715000px;}
.yca{bottom:322.275000px;}
.y3f{bottom:322.455000px;}
.y2e{bottom:323.130000px;}
.y18{bottom:323.490000px;}
.y90{bottom:329.475000px;}
.y7e{bottom:329.835000px;}
.y9f{bottom:330.015000px;}
.ye0{bottom:331.995000px;}
.yc9{bottom:341.715000px;}
.y3e{bottom:342.255000px;}
.y2d{bottom:342.930000px;}
.y17{bottom:343.290000px;}
.y9c{bottom:344.595000px;}
.y7d{bottom:349.635000px;}
.ydf{bottom:351.615000px;}
.yc7{bottom:356.475000px;}
.y3d{bottom:362.055000px;}
.y2c{bottom:362.730000px;}
.y16{bottom:363.090000px;}
.y9e{bottom:364.395000px;}
.y7c{bottom:369.435000px;}
.yde{bottom:371.415000px;}
.yc8{bottom:376.455000px;}
.y3c{bottom:381.495000px;}
.y4b{bottom:381.855000px;}
.y2b{bottom:382.710000px;}
.y15{bottom:383.070000px;}
.y9d{bottom:384.195000px;}
.y7b{bottom:389.235000px;}
.ydd{bottom:391.215000px;}
.yc5{bottom:396.255000px;}
.y3b{bottom:401.655000px;}
.y2a{bottom:402.510000px;}
.y14{bottom:402.870000px;}
.y97{bottom:403.995000px;}
.y7a{bottom:409.035000px;}
.ydc{bottom:411.015000px;}
.yc6{bottom:416.055000px;}
.y12{bottom:416.235000px;}
.y29{bottom:422.355000px;}
.y13{bottom:422.715000px;}
.y9a{bottom:423.795000px;}
.y8d{bottom:428.655000px;}
.y79{bottom:429.015000px;}
.ydb{bottom:430.995000px;}
.yc3{bottom:435.855000px;}
.y99{bottom:443.775000px;}
.y78{bottom:448.815000px;}
.yda{bottom:450.795000px;}
.yc4{bottom:455.655000px;}
.y94{bottom:463.575000px;}
.y77{bottom:468.615000px;}
.yd9{bottom:470.595000px;}
.yc2{bottom:476.355000px;}
.y96{bottom:483.375000px;}
.y76{bottom:488.415000px;}
.yd8{bottom:490.395000px;}
.y95{bottom:503.175000px;}
.y75{bottom:508.215000px;}
.yd7{bottom:510.195000px;}
.y93{bottom:523.875000px;}
.y74{bottom:528.195000px;}
.yd6{bottom:530.175000px;}
.yc1{bottom:535.755000px;}
.y8c{bottom:547.635000px;}
.y92{bottom:547.815000px;}
.y73{bottom:547.995000px;}
.yd5{bottom:549.975000px;}
.yc0{bottom:556.485000px;}
.y72{bottom:567.825000px;}
.yd4{bottom:569.805000px;}
.ybf{bottom:582.765000px;}
.y8f{bottom:587.265000px;}
.y71{bottom:587.625000px;}
.yd3{bottom:589.065000px;}
.ybe{bottom:602.565000px;}
.y8e{bottom:607.065000px;}
.y70{bottom:607.425000px;}
.yba{bottom:617.505000px;}
.y6f{bottom:627.405000px;}
.ybd{bottom:637.305000px;}
.y6e{bottom:647.205000px;}
.ybc{bottom:657.105000px;}
.y6d{bottom:667.005000px;}
.ybb{bottom:676.905000px;}
.y6c{bottom:686.805000px;}
.yb6{bottom:696.705000px;}
.y6b{bottom:706.605000px;}
.yb9{bottom:716.685000px;}
.y6a{bottom:726.585000px;}
.yb8{bottom:736.485000px;}
.y69{bottom:746.385000px;}
.yb7{bottom:756.285000px;}
.y68{bottom:766.185000px;}
.yb0{bottom:776.085000px;}
.y67{bottom:785.985000px;}
.yb5{bottom:795.885000px;}
.y66{bottom:805.785000px;}
.yb4{bottom:815.865000px;}
.y65{bottom:825.765000px;}
.yb2{bottom:835.665000px;}
.y64{bottom:845.610000px;}
.y10{bottom:853.350000px;}
.yae{bottom:856.230000px;}
.y63{bottom:865.410000px;}
.y62{bottom:885.210000px;}
.yf{bottom:886.470000px;}
.y61{bottom:905.010000px;}
.ye{bottom:911.490000px;}
.y60{bottom:924.990000px;}
.yd{bottom:926.430000px;}
.y5f{bottom:944.790000px;}
.yc{bottom:947.850000px;}
.yad{bottom:956.130000px;}
.y5e{bottom:964.590000px;}
.yb{bottom:970.890000px;}
.yac{bottom:982.590000px;}
.y5d{bottom:984.390000px;}
.ya{bottom:1002.750000px;}
.y91{bottom:1003.830000px;}
.y5c{bottom:1004.190000px;}
.yab{bottom:1017.150000px;}
.y5b{bottom:1024.170000px;}
.y8{bottom:1029.570000px;}
.yaa{bottom:1036.950000px;}
.y5a{bottom:1043.970000px;}
.y1{bottom:1046.490000px;}
.y59{bottom:1063.770000px;}
.ya9{bottom:1076.730000px;}
.y58{bottom:1083.570000px;}
.y57{bottom:1103.370000px;}
.ya6{bottom:1116.330000px;}
.y56{bottom:1123.380000px;}
.y55{bottom:1143.180000px;}
.y54{bottom:1171.260000px;}
.y53{bottom:1192.860000px;}
.h11{height:19.800000px;}
.h1e{height:19.836000px;}
.h14{height:19.980000px;}
.hb{height:26.100000px;}
.ha{height:38.158594px;}
.h19{height:39.600000px;}
.h18{height:39.780000px;}
.h1b{height:39.816000px;}
.hf{height:43.215117px;}
.h4{height:48.774375px;}
.h10{height:51.706406px;}
.he{height:58.621992px;}
.h8{height:58.651172px;}
.h1a{height:59.014594px;}
.h17{height:59.038594px;}
.h12{height:59.400000px;}
.h13{height:59.580000px;}
.h15{height:59.616000px;}
.hc{height:60.226875px;}
.h21{height:61.423863px;}
.h3{height:62.028281px;}
.h9{height:66.757500px;}
.h5{height:70.664062px;}
.h6{height:74.039062px;}
.h20{height:79.200000px;}
.h1f{height:79.380000px;}
.h1d{height:79.416000px;}
.h7{height:96.508125px;}
.h1c{height:99.180000px;}
.h16{height:118.980000px;}
.h2{height:162.390000px;}
.hd{height:436.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.w25{width:52.920000px;}
.w14{width:63.576000px;}
.w1f{width:68.040000px;}
.w1e{width:72.900000px;}
.w1d{width:73.476000px;}
.w1b{width:73.656000px;}
.w28{width:75.456000px;}
.w10{width:75.600000px;}
.w13{width:83.520000px;}
.w27{width:86.580000px;}
.w12{width:90.180000px;}
.w11{width:90.396000px;}
.w29{width:90.900000px;}
.w26{width:94.356000px;}
.w15{width:95.220000px;}
.w1a{width:103.500000px;}
.w1c{width:103.680000px;}
.w20{width:105.696000px;}
.w23{width:107.496000px;}
.w24{width:120.780000px;}
.w16{width:131.796000px;}
.wb{width:138.600000px;}
.wa{width:138.636000px;}
.w4{width:144.531000px;}
.wc{width:146.556000px;}
.w8{width:153.390000px;}
.w17{width:155.010000px;}
.w22{width:156.630000px;}
.wd{width:177.870000px;}
.we{width:183.450000px;}
.w21{width:184.170000px;}
.wf{width:286.815000px;}
.w19{width:289.875000px;}
.w9{width:361.335000px;}
.w2{width:619.485000px;}
.w7{width:626.685000px;}
.w6{width:780.090000px;}
.w18{width:785.130000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xf{left:12.600000px;}
.x1{left:54.000000px;}
.x6{left:56.520000px;}
.x24{left:80.999987px;}
.xa{left:108.035987px;}
.x5{left:136.260000px;}
.x1d{left:159.690000px;}
.x16{left:185.790000px;}
.x1e{left:210.630000px;}
.xe{left:231.870000px;}
.x1f{left:318.135000px;}
.x10{left:340.815000px;}
.x17{left:343.875000px;}
.xb{left:415.335000px;}
.x11{left:416.415000px;}
.x20{left:438.915000px;}
.x18{left:447.375000px;}
.x8{left:473.474987px;}
.x21{left:491.835000px;}
.x25{left:500.504987px;}
.x12{left:506.805000px;}
.x19{left:521.025000px;}
.x9{left:527.504987px;}
.xc{left:553.965000px;}
.x22{left:586.185000px;}
.x13{left:596.985000px;}
.x1a{left:624.705000px;}
.x3{left:673.485000px;}
.x14{left:680.505000px;}
.x7{left:683.205000px;}
.xd{left:692.565000px;}
.x4{left:694.590000px;}
.x1b{left:698.190000px;}
.x15{left:743.910000px;}
.x23{left:748.230000px;}
.x1c{left:771.090000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.592000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.183680pt;}
.ls8{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.821333pt;}
.ls9{letter-spacing:0.960000pt;}
.ls10{letter-spacing:14.672640pt;}
.lsc{letter-spacing:15.520000pt;}
.lse{letter-spacing:40.912640pt;}
.lsd{letter-spacing:41.040640pt;}
.ws0{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.240000pt;}
.ws6{word-spacing:-14.101333pt;}
.ws8{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.688000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._2b{margin-left:-5.655680pt;}
._16{margin-left:-3.013760pt;}
._0{margin-left:-1.722240pt;}
._1{width:1.123200pt;}
._2{width:2.097493pt;}
._1a{width:2.988800pt;}
._10{width:3.933653pt;}
._f{width:5.256107pt;}
._19{width:6.289280pt;}
._18{width:7.702400pt;}
._9{width:8.871040pt;}
._a{width:9.788800pt;}
._6{width:11.520000pt;}
._12{width:14.553600pt;}
._d{width:15.443200pt;}
._e{width:16.414080pt;}
._11{width:17.324160pt;}
._15{width:18.659840pt;}
._23{width:19.976107pt;}
._b{width:20.982400pt;}
._c{width:21.885440pt;}
._17{width:22.841600pt;}
._1b{width:24.138880pt;}
._1f{width:25.149440pt;}
._1e{width:26.347520pt;}
._1d{width:27.773440pt;}
._1c{width:29.224320pt;}
._25{width:30.377600pt;}
._21{width:31.339520pt;}
._20{width:32.296960pt;}
._28{width:33.548800pt;}
._32{width:35.339520pt;}
._36{width:36.759040pt;}
._22{width:38.193280pt;}
._24{width:39.141760pt;}
._26{width:40.052480pt;}
._29{width:41.971840pt;}
._2a{width:42.913920pt;}
._30{width:44.461440pt;}
._27{width:49.242240pt;}
._5{width:50.848000pt;}
._33{width:54.926080pt;}
._2c{width:56.891520pt;}
._31{width:67.310080pt;}
._4{width:77.546667pt;}
._35{width:86.593280pt;}
._2d{width:87.746560pt;}
._2e{width:111.605120pt;}
._34{width:112.514347pt;}
._2f{width:114.101760pt;}
._14{width:141.033600pt;}
._13{width:143.632427pt;}
._7{width:177.258667pt;}
._3{width:207.172907pt;}
._8{width:910.065067pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.440000pt;}
.y28{bottom:5.440000pt;}
.ya8{bottom:5.466667pt;}
.yb3{bottom:5.480000pt;}
.y9b{bottom:5.600000pt;}
.y11{bottom:6.720000pt;}
.y6{bottom:12.480000pt;}
.y27{bottom:23.040000pt;}
.ya1{bottom:23.200000pt;}
.ya7{bottom:23.226667pt;}
.y5{bottom:40.160000pt;}
.y26{bottom:40.640000pt;}
.y98{bottom:40.800000pt;}
.ya0{bottom:40.840000pt;}
.y9{bottom:53.952000pt;}
.y25{bottom:58.240000pt;}
.yaf{bottom:58.400000pt;}
.yb1{bottom:58.440000pt;}
.y4{bottom:68.026667pt;}
.y52{bottom:74.912000pt;}
.ya4{bottom:75.072000pt;}
.y3a{bottom:75.680000pt;}
.y24{bottom:76.000000pt;}
.y8a{bottom:81.472000pt;}
.y4a{bottom:87.872000pt;}
.y51{bottom:92.512000pt;}
.ya5{bottom:92.672000pt;}
.y39{bottom:93.280000pt;}
.ya2{bottom:93.594667pt;}
.y23{bottom:93.600000pt;}
.y3{bottom:95.866667pt;}
.y89{bottom:99.072000pt;}
.y49{bottom:104.352000pt;}
.yd1{bottom:110.112000pt;}
.y50{bottom:110.272000pt;}
.y38{bottom:110.880000pt;}
.y22{bottom:111.200000pt;}
.yea{bottom:112.512000pt;}
.y88{bottom:116.832000pt;}
.y48{bottom:120.992000pt;}
.y2{bottom:124.826667pt;}
.yd0{bottom:127.712000pt;}
.y4f{bottom:127.872000pt;}
.y37{bottom:128.506667pt;}
.y21{bottom:128.826667pt;}
.ye9{bottom:130.112000pt;}
.y87{bottom:134.426667pt;}
.y47{bottom:137.466667pt;}
.ycf{bottom:145.306667pt;}
.y4e{bottom:145.466667pt;}
.y36{bottom:146.106667pt;}
.y20{bottom:146.426667pt;}
.ye8{bottom:147.706667pt;}
.y86{bottom:152.026667pt;}
.y46{bottom:154.106667pt;}
.y4d{bottom:163.066667pt;}
.y35{bottom:163.866667pt;}
.y1f{bottom:164.186667pt;}
.ye7{bottom:165.306667pt;}
.y85{bottom:169.626667pt;}
.y45{bottom:178.586667pt;}
.y4c{bottom:180.666667pt;}
.ya3{bottom:180.826667pt;}
.y34{bottom:181.466667pt;}
.y1e{bottom:181.786667pt;}
.ye6{bottom:182.906667pt;}
.y84{bottom:187.226667pt;}
.yce{bottom:198.266667pt;}
.y44{bottom:198.426667pt;}
.y33{bottom:199.066667pt;}
.y1d{bottom:199.386667pt;}
.ye5{bottom:200.506667pt;}
.y83{bottom:204.986667pt;}
.ycd{bottom:215.866667pt;}
.y43{bottom:216.026667pt;}
.y32{bottom:216.666667pt;}
.y1c{bottom:216.986667pt;}
.ye4{bottom:218.266667pt;}
.y82{bottom:222.586667pt;}
.ycc{bottom:233.146667pt;}
.yd2{bottom:233.466667pt;}
.y42{bottom:233.626667pt;}
.y31{bottom:234.266667pt;}
.y1b{bottom:234.586667pt;}
.y81{bottom:240.186667pt;}
.ye3{bottom:249.026667pt;}
.ycb{bottom:250.946667pt;}
.y41{bottom:251.266667pt;}
.y30{bottom:252.026667pt;}
.y1a{bottom:252.346667pt;}
.y80{bottom:257.826667pt;}
.ye2{bottom:264.386667pt;}
.y40{bottom:268.866667pt;}
.y2f{bottom:269.626667pt;}
.y19{bottom:269.946667pt;}
.y8b{bottom:275.106667pt;}
.y7f{bottom:275.426667pt;}
.ye1{bottom:279.746667pt;}
.yca{bottom:286.466667pt;}
.y3f{bottom:286.626667pt;}
.y2e{bottom:287.226667pt;}
.y18{bottom:287.546667pt;}
.y90{bottom:292.866667pt;}
.y7e{bottom:293.186667pt;}
.y9f{bottom:293.346667pt;}
.ye0{bottom:295.106667pt;}
.yc9{bottom:303.746667pt;}
.y3e{bottom:304.226667pt;}
.y2d{bottom:304.826667pt;}
.y17{bottom:305.146667pt;}
.y9c{bottom:306.306667pt;}
.y7d{bottom:310.786667pt;}
.ydf{bottom:312.546667pt;}
.yc7{bottom:316.866667pt;}
.y3d{bottom:321.826667pt;}
.y2c{bottom:322.426667pt;}
.y16{bottom:322.746667pt;}
.y9e{bottom:323.906667pt;}
.y7c{bottom:328.386667pt;}
.yde{bottom:330.146667pt;}
.yc8{bottom:334.626667pt;}
.y3c{bottom:339.106667pt;}
.y4b{bottom:339.426667pt;}
.y2b{bottom:340.186667pt;}
.y15{bottom:340.506667pt;}
.y9d{bottom:341.506667pt;}
.y7b{bottom:345.986667pt;}
.ydd{bottom:347.746667pt;}
.yc5{bottom:352.226667pt;}
.y3b{bottom:357.026667pt;}
.y2a{bottom:357.786667pt;}
.y14{bottom:358.106667pt;}
.y97{bottom:359.106667pt;}
.y7a{bottom:363.586667pt;}
.ydc{bottom:365.346667pt;}
.yc6{bottom:369.826667pt;}
.y12{bottom:369.986667pt;}
.y29{bottom:375.426667pt;}
.y13{bottom:375.746667pt;}
.y9a{bottom:376.706667pt;}
.y8d{bottom:381.026667pt;}
.y79{bottom:381.346667pt;}
.ydb{bottom:383.106667pt;}
.yc3{bottom:387.426667pt;}
.y99{bottom:394.466667pt;}
.y78{bottom:398.946667pt;}
.yda{bottom:400.706667pt;}
.yc4{bottom:405.026667pt;}
.y94{bottom:412.066667pt;}
.y77{bottom:416.546667pt;}
.yd9{bottom:418.306667pt;}
.yc2{bottom:423.426667pt;}
.y96{bottom:429.666667pt;}
.y76{bottom:434.146667pt;}
.yd8{bottom:435.906667pt;}
.y95{bottom:447.266667pt;}
.y75{bottom:451.746667pt;}
.yd7{bottom:453.506667pt;}
.y93{bottom:465.666667pt;}
.y74{bottom:469.506667pt;}
.yd6{bottom:471.266667pt;}
.yc1{bottom:476.226667pt;}
.y8c{bottom:486.786667pt;}
.y92{bottom:486.946667pt;}
.y73{bottom:487.106667pt;}
.yd5{bottom:488.866667pt;}
.yc0{bottom:494.653333pt;}
.y72{bottom:504.733333pt;}
.yd4{bottom:506.493333pt;}
.ybf{bottom:518.013333pt;}
.y8f{bottom:522.013333pt;}
.y71{bottom:522.333333pt;}
.yd3{bottom:523.613333pt;}
.ybe{bottom:535.613333pt;}
.y8e{bottom:539.613333pt;}
.y70{bottom:539.933333pt;}
.yba{bottom:548.893333pt;}
.y6f{bottom:557.693333pt;}
.ybd{bottom:566.493333pt;}
.y6e{bottom:575.293333pt;}
.ybc{bottom:584.093333pt;}
.y6d{bottom:592.893333pt;}
.ybb{bottom:601.693333pt;}
.y6c{bottom:610.493333pt;}
.yb6{bottom:619.293333pt;}
.y6b{bottom:628.093333pt;}
.yb9{bottom:637.053333pt;}
.y6a{bottom:645.853333pt;}
.yb8{bottom:654.653333pt;}
.y69{bottom:663.453333pt;}
.yb7{bottom:672.253333pt;}
.y68{bottom:681.053333pt;}
.yb0{bottom:689.853333pt;}
.y67{bottom:698.653333pt;}
.yb5{bottom:707.453333pt;}
.y66{bottom:716.253333pt;}
.yb4{bottom:725.213333pt;}
.y65{bottom:734.013333pt;}
.yb2{bottom:742.813333pt;}
.y64{bottom:751.653333pt;}
.y10{bottom:758.533333pt;}
.yae{bottom:761.093333pt;}
.y63{bottom:769.253333pt;}
.y62{bottom:786.853333pt;}
.yf{bottom:787.973333pt;}
.y61{bottom:804.453333pt;}
.ye{bottom:810.213333pt;}
.y60{bottom:822.213333pt;}
.yd{bottom:823.493333pt;}
.y5f{bottom:839.813333pt;}
.yc{bottom:842.533333pt;}
.yad{bottom:849.893333pt;}
.y5e{bottom:857.413333pt;}
.yb{bottom:863.013333pt;}
.yac{bottom:873.413333pt;}
.y5d{bottom:875.013333pt;}
.ya{bottom:891.333333pt;}
.y91{bottom:892.293333pt;}
.y5c{bottom:892.613333pt;}
.yab{bottom:904.133333pt;}
.y5b{bottom:910.373333pt;}
.y8{bottom:915.173333pt;}
.yaa{bottom:921.733333pt;}
.y5a{bottom:927.973333pt;}
.y1{bottom:930.213333pt;}
.y59{bottom:945.573333pt;}
.ya9{bottom:957.093333pt;}
.y58{bottom:963.173333pt;}
.y57{bottom:980.773333pt;}
.ya6{bottom:992.293333pt;}
.y56{bottom:998.560000pt;}
.y55{bottom:1016.160000pt;}
.y54{bottom:1041.120000pt;}
.y53{bottom:1060.320000pt;}
.h11{height:17.600000pt;}
.h1e{height:17.632000pt;}
.h14{height:17.760000pt;}
.hb{height:23.200000pt;}
.ha{height:33.918750pt;}
.h19{height:35.200000pt;}
.h18{height:35.360000pt;}
.h1b{height:35.392000pt;}
.hf{height:38.413438pt;}
.h4{height:43.355000pt;}
.h10{height:45.961250pt;}
.he{height:52.108438pt;}
.h8{height:52.134375pt;}
.h1a{height:52.457417pt;}
.h17{height:52.478750pt;}
.h12{height:52.800000pt;}
.h13{height:52.960000pt;}
.h15{height:52.992000pt;}
.hc{height:53.535000pt;}
.h21{height:54.598989pt;}
.h3{height:55.136250pt;}
.h9{height:59.340000pt;}
.h5{height:62.812500pt;}
.h6{height:65.812500pt;}
.h20{height:70.400000pt;}
.h1f{height:70.560000pt;}
.h1d{height:70.592000pt;}
.h7{height:85.785000pt;}
.h1c{height:88.160000pt;}
.h16{height:105.760000pt;}
.h2{height:144.346667pt;}
.hd{height:387.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.w25{width:47.040000pt;}
.w14{width:56.512000pt;}
.w1f{width:60.480000pt;}
.w1e{width:64.800000pt;}
.w1d{width:65.312000pt;}
.w1b{width:65.472000pt;}
.w28{width:67.072000pt;}
.w10{width:67.200000pt;}
.w13{width:74.240000pt;}
.w27{width:76.960000pt;}
.w12{width:80.160000pt;}
.w11{width:80.352000pt;}
.w29{width:80.800000pt;}
.w26{width:83.872000pt;}
.w15{width:84.640000pt;}
.w1a{width:92.000000pt;}
.w1c{width:92.160000pt;}
.w20{width:93.952000pt;}
.w23{width:95.552000pt;}
.w24{width:107.360000pt;}
.w16{width:117.152000pt;}
.wb{width:123.200000pt;}
.wa{width:123.232000pt;}
.w4{width:128.472000pt;}
.wc{width:130.272000pt;}
.w8{width:136.346667pt;}
.w17{width:137.786667pt;}
.w22{width:139.226667pt;}
.wd{width:158.106667pt;}
.we{width:163.066667pt;}
.w21{width:163.706667pt;}
.wf{width:254.946667pt;}
.w19{width:257.666667pt;}
.w9{width:321.186667pt;}
.w2{width:550.653333pt;}
.w7{width:557.053333pt;}
.w6{width:693.413333pt;}
.w18{width:697.893333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xf{left:11.200000pt;}
.x1{left:48.000000pt;}
.x6{left:50.240000pt;}
.x24{left:71.999988pt;}
.xa{left:96.031988pt;}
.x5{left:121.120000pt;}
.x1d{left:141.946667pt;}
.x16{left:165.146667pt;}
.x1e{left:187.226667pt;}
.xe{left:206.106667pt;}
.x1f{left:282.786667pt;}
.x10{left:302.946667pt;}
.x17{left:305.666667pt;}
.xb{left:369.186667pt;}
.x11{left:370.146667pt;}
.x20{left:390.146667pt;}
.x18{left:397.666667pt;}
.x8{left:420.866655pt;}
.x21{left:437.186667pt;}
.x25{left:444.893322pt;}
.x12{left:450.493333pt;}
.x19{left:463.133333pt;}
.x9{left:468.893322pt;}
.xc{left:492.413333pt;}
.x22{left:521.053333pt;}
.x13{left:530.653333pt;}
.x1a{left:555.293333pt;}
.x3{left:598.653333pt;}
.x14{left:604.893333pt;}
.x7{left:607.293333pt;}
.xd{left:615.613333pt;}
.x4{left:617.413333pt;}
.x1b{left:620.613333pt;}
.x15{left:661.253333pt;}
.x23{left:665.093333pt;}
.x1c{left:685.413333pt;}
}




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