
    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_27ecb649bf9beb584b25b551.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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_ab71cf22213e3d32a431e053.woff2')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_78f15461dbb34107391440f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_358750cbb48788771b158bc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_57c659558db0ccd4f2e7e099.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_015e9d91d23bf680e84e9637.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a04b1223bb5d918efdfe6e55.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a03d995aa8d7befad817388a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6006c08fd660588ea7981601.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.ls3{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.089400px;}
.lsd{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:8.100000px;}
.lsb{letter-spacing:9.540000px;}
.ls9{letter-spacing:13.140000px;}
.lsf{letter-spacing:16.506720px;}
.ls8{letter-spacing:46.026720px;}
.lsa{letter-spacing:64.026720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wsb{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws5{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws6{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.112640px;}
._6{width:2.207280px;}
._7{width:4.158000px;}
._9{width:5.737680px;}
._8{width:6.912000px;}
._f{width:8.386560px;}
._3{width:10.044000px;}
._2{width:11.556000px;}
._e{width:12.684720px;}
._d{width:13.833120px;}
._17{width:16.516560px;}
._b{width:17.688960px;}
._a{width:19.182960px;}
._16{width:21.058320px;}
._c{width:22.373040px;}
._12{width:23.926800px;}
._15{width:25.158240px;}
._11{width:28.027440px;}
._10{width:29.103120px;}
._13{width:30.313440px;}
._4{width:31.320000px;}
._5{width:32.670000px;}
._14{width:201.180000px;}
.fc5{color:rgb(54,95,145);}
.fc4{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs9{font-size:18.000000px;}
.fsa{font-size:30.240000px;}
.fs2{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y50{bottom:2.340000px;}
.y45{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5e{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4f{bottom:10.260000px;}
.y44{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y5b{bottom:28.620000px;}
.y43{bottom:37.845000px;}
.y4e{bottom:39.954000px;}
.y5a{bottom:45.354000px;}
.y3{bottom:47.910000px;}
.y4d{bottom:51.114000px;}
.y42{bottom:55.125000px;}
.y4c{bottom:62.994000px;}
.y59{bottom:63.174000px;}
.y8{bottom:71.820000px;}
.y41{bottom:72.225000px;}
.y4b{bottom:75.954000px;}
.y58{bottom:78.654000px;}
.y4a{bottom:89.094000px;}
.y40{bottom:89.505000px;}
.y7{bottom:90.756000px;}
.y57{bottom:91.614000px;}
.y56{bottom:98.274000px;}
.y3f{bottom:106.785000px;}
.y46{bottom:110.916000px;}
.y49{bottom:111.054000px;}
.y55{bottom:113.754000px;}
.y3e{bottom:124.065000px;}
.yc9{bottom:124.596000px;}
.y96{bottom:125.496000px;}
.y54{bottom:129.234000px;}
.yfe{bottom:140.616000px;}
.y3d{bottom:141.345000px;}
.yc8{bottom:141.696000px;}
.y95{bottom:143.856000px;}
.y53{bottom:144.714000px;}
.yfd{bottom:157.890000px;}
.y3c{bottom:158.625000px;}
.yc7{bottom:160.050000px;}
.y52{bottom:160.374000px;}
.y94{bottom:160.950000px;}
.y48{bottom:172.974000px;}
.yfc{bottom:175.170000px;}
.y3b{bottom:175.725000px;}
.y51{bottom:175.854000px;}
.yc6{bottom:178.410000px;}
.y93{bottom:179.310000px;}
.y47{bottom:183.594000px;}
.yfb{bottom:192.450000px;}
.y3a{bottom:193.005000px;}
.y92{bottom:196.590000px;}
.yc5{bottom:196.770000px;}
.y5c{bottom:200.334000px;}
.yfa{bottom:209.730000px;}
.y39{bottom:210.285000px;}
.y91{bottom:213.870000px;}
.yc4{bottom:214.050000px;}
.yf9{bottom:226.830000px;}
.y38{bottom:227.565000px;}
.y90{bottom:231.150000px;}
.yc3{bottom:234.210000px;}
.yf8{bottom:244.110000px;}
.y37{bottom:244.845000px;}
.y8f{bottom:251.310000px;}
.yc2{bottom:251.490000px;}
.yf7{bottom:261.390000px;}
.y36{bottom:261.945000px;}
.y8e{bottom:268.590000px;}
.yc1{bottom:268.770000px;}
.yf6{bottom:278.670000px;}
.y35{bottom:279.225000px;}
.y8d{bottom:285.870000px;}
.yc0{bottom:287.130000px;}
.y12a{bottom:287.850000px;}
.yf5{bottom:295.950000px;}
.y34{bottom:296.535000px;}
.y8c{bottom:303.150000px;}
.y129{bottom:304.950000px;}
.ybf{bottom:305.310000px;}
.yf4{bottom:313.230000px;}
.y33{bottom:313.815000px;}
.y1f{bottom:317.775000px;}
.y8b{bottom:320.430000px;}
.y128{bottom:322.230000px;}
.ybe{bottom:322.590000px;}
.y11{bottom:324.570000px;}
.yf3{bottom:330.330000px;}
.y32{bottom:331.095000px;}
.y1e{bottom:333.615000px;}
.y8a{bottom:337.530000px;}
.y127{bottom:339.510000px;}
.ybd{bottom:342.930000px;}
.yf2{bottom:347.610000px;}
.y31{bottom:348.375000px;}
.y89{bottom:354.855000px;}
.y126{bottom:356.835000px;}
.y1d{bottom:357.735000px;}
.ybc{bottom:360.255000px;}
.yf1{bottom:364.935000px;}
.y30{bottom:365.475000px;}
.y88{bottom:372.135000px;}
.y125{bottom:374.115000px;}
.ybb{bottom:377.355000px;}
.y1c{bottom:381.855000px;}
.yf0{bottom:382.215000px;}
.y2f{bottom:382.755000px;}
.y87{bottom:389.415000px;}
.y124{bottom:391.395000px;}
.yba{bottom:394.635000px;}
.yef{bottom:399.495000px;}
.y2e{bottom:400.035000px;}
.y1b{bottom:405.975000px;}
.y86{bottom:406.695000px;}
.y123{bottom:408.495000px;}
.yb9{bottom:412.995000px;}
.yee{bottom:416.775000px;}
.y2d{bottom:417.315000px;}
.y85{bottom:423.795000px;}
.y122{bottom:425.775000px;}
.y1a{bottom:430.275000px;}
.yb8{bottom:431.355000px;}
.yed{bottom:433.875000px;}
.y2c{bottom:434.235000px;}
.y84{bottom:441.075000px;}
.y121{bottom:443.055000px;}
.y2b{bottom:449.715000px;}
.yec{bottom:451.155000px;}
.y19{bottom:454.395000px;}
.y83{bottom:458.355000px;}
.y120{bottom:460.335000px;}
.y2a{bottom:465.195000px;}
.yb7{bottom:466.815000px;}
.yeb{bottom:468.435000px;}
.y82{bottom:475.635000px;}
.y11f{bottom:477.615000px;}
.y18{bottom:478.515000px;}
.y29{bottom:480.855000px;}
.yea{bottom:485.715000px;}
.yb6{bottom:487.155000px;}
.y81{bottom:492.915000px;}
.y11e{bottom:494.895000px;}
.y28{bottom:496.335000px;}
.y17{bottom:502.635000px;}
.ye9{bottom:502.995000px;}
.yb5{bottom:504.435000px;}
.y80{bottom:510.195000px;}
.y27{bottom:511.815000px;}
.y11d{bottom:511.995000px;}
.ye8{bottom:520.095000px;}
.yb4{bottom:521.715000px;}
.y16{bottom:526.755000px;}
.y26{bottom:527.295000px;}
.y11c{bottom:529.275000px;}
.ye7{bottom:537.375000px;}
.yb3{bottom:538.815000px;}
.y25{bottom:542.955000px;}
.y7f{bottom:544.575000px;}
.y11b{bottom:546.555000px;}
.y15{bottom:550.920000px;}
.ye6{bottom:554.655000px;}
.yb2{bottom:556.095000px;}
.y24{bottom:558.480000px;}
.y7e{bottom:561.855000px;}
.y11a{bottom:563.835000px;}
.ye5{bottom:571.935000px;}
.yb1{bottom:573.375000px;}
.y23{bottom:573.960000px;}
.y14{bottom:575.220000px;}
.y7d{bottom:579.135000px;}
.y119{bottom:581.115000px;}
.ye4{bottom:589.215000px;}
.y22{bottom:589.440000px;}
.yb0{bottom:591.735000px;}
.y7c{bottom:596.415000px;}
.y118{bottom:598.395000px;}
.y13{bottom:599.340000px;}
.y21{bottom:605.100000px;}
.ye3{bottom:606.495000px;}
.yaf{bottom:610.095000px;}
.y7b{bottom:613.725000px;}
.y117{bottom:615.525000px;}
.y20{bottom:620.580000px;}
.y12{bottom:623.460000px;}
.ye2{bottom:626.685000px;}
.yae{bottom:628.305000px;}
.y7a{bottom:630.825000px;}
.y116{bottom:632.805000px;}
.ye1{bottom:643.965000px;}
.y79{bottom:648.105000px;}
.yad{bottom:648.645000px;}
.y115{bottom:650.085000px;}
.ye0{bottom:661.245000px;}
.y78{bottom:665.385000px;}
.yac{bottom:665.925000px;}
.y114{bottom:667.365000px;}
.ydf{bottom:681.405000px;}
.y77{bottom:682.665000px;}
.yab{bottom:683.205000px;}
.y113{bottom:684.645000px;}
.yde{bottom:698.685000px;}
.y76{bottom:700.485000px;}
.yaa{bottom:701.385000px;}
.y112{bottom:701.745000px;}
.ydd{bottom:715.965000px;}
.y75{bottom:717.765000px;}
.y111{bottom:719.025000px;}
.ya9{bottom:719.745000px;}
.y74{bottom:735.045000px;}
.ydc{bottom:736.125000px;}
.y110{bottom:736.305000px;}
.ya8{bottom:738.105000px;}
.y73{bottom:752.325000px;}
.ydb{bottom:753.405000px;}
.y10f{bottom:753.585000px;}
.ya7{bottom:755.385000px;}
.y72{bottom:769.605000px;}
.yda{bottom:770.685000px;}
.y10e{bottom:770.865000px;}
.ya6{bottom:775.545000px;}
.y71{bottom:786.705000px;}
.y10d{bottom:788.145000px;}
.yd9{bottom:790.845000px;}
.ya5{bottom:792.825000px;}
.y70{bottom:803.985000px;}
.y10c{bottom:805.245000px;}
.yd8{bottom:808.125000px;}
.ya4{bottom:810.105000px;}
.y6f{bottom:821.265000px;}
.y10b{bottom:822.525000px;}
.yd7{bottom:825.405000px;}
.ya3{bottom:827.385000px;}
.y6e{bottom:839.085000px;}
.y10a{bottom:839.805000px;}
.yd6{bottom:842.685000px;}
.ya2{bottom:845.745000px;}
.y6d{bottom:856.365000px;}
.y109{bottom:857.085000px;}
.yd5{bottom:861.045000px;}
.ya1{bottom:863.925000px;}
.y6c{bottom:873.690000px;}
.y108{bottom:874.410000px;}
.yd4{bottom:879.450000px;}
.ya0{bottom:882.330000px;}
.y6b{bottom:890.970000px;}
.y107{bottom:891.690000px;}
.yd3{bottom:897.630000px;}
.y9f{bottom:899.610000px;}
.y6a{bottom:908.250000px;}
.y106{bottom:908.790000px;}
.yd2{bottom:914.910000px;}
.y9e{bottom:919.770000px;}
.y69{bottom:925.530000px;}
.y105{bottom:926.070000px;}
.yd1{bottom:935.250000px;}
.y9d{bottom:937.050000px;}
.y68{bottom:942.630000px;}
.y104{bottom:943.350000px;}
.yd0{bottom:952.530000px;}
.y9c{bottom:954.330000px;}
.y67{bottom:959.910000px;}
.y10{bottom:960.270000px;}
.y103{bottom:960.630000px;}
.yf{bottom:964.950000px;}
.ycf{bottom:969.630000px;}
.y9b{bottom:971.610000px;}
.y66{bottom:977.190000px;}
.y102{bottom:977.910000px;}
.ye{bottom:982.230000px;}
.yce{bottom:987.990000px;}
.y9a{bottom:988.890000px;}
.y65{bottom:994.470000px;}
.y101{bottom:995.010000px;}
.yd{bottom:999.510000px;}
.ycd{bottom:1006.350000px;}
.y99{bottom:1007.250000px;}
.y64{bottom:1011.750000px;}
.y100{bottom:1012.290000px;}
.yc{bottom:1016.610000px;}
.y98{bottom:1025.430000px;}
.ycc{bottom:1026.510000px;}
.y63{bottom:1029.030000px;}
.yff{bottom:1029.570000px;}
.yb{bottom:1033.890000px;}
.y97{bottom:1043.790000px;}
.y62{bottom:1046.850000px;}
.ya{bottom:1052.430000px;}
.ycb{bottom:1061.070000px;}
.y61{bottom:1064.130000px;}
.yca{bottom:1078.350000px;}
.y9{bottom:1081.050000px;}
.y60{bottom:1081.410000px;}
.y5d{bottom:1084.320000px;}
.y5f{bottom:1098.510000px;}
.y6{bottom:1114.890000px;}
.y1{bottom:1123.530000px;}
.hb{height:4.021875px;}
.h15{height:4.747500px;}
.h13{height:21.114844px;}
.h12{height:25.136719px;}
.h16{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h6{height:35.806641px;}
.h14{height:38.100586px;}
.hf{height:38.997070px;}
.h8{height:40.132617px;}
.h7{height:41.726953px;}
.ha{height:42.164648px;}
.h18{height:43.506914px;}
.h10{height:44.507812px;}
.h5{height:46.251562px;}
.h19{height:49.255313px;}
.h9{height:59.436914px;}
.h17{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h11{height:212.940000px;}
.hc{height:633.165000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:77.580000px;}
.w2{width:104.040000px;}
.w5{width:132.660000px;}
.w8{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.056000px;}
.x18{left:8.100000px;}
.x4{left:12.780000px;}
.x14{left:17.280000px;}
.x6{left:18.720000px;}
.x16{left:19.980000px;}
.x15{left:28.980000px;}
.xe{left:43.740000px;}
.x1c{left:47.700000px;}
.xf{left:50.760000px;}
.xd{left:54.900000px;}
.x1d{left:57.060000px;}
.x19{left:62.145000px;}
.x13{left:67.134000px;}
.x12{left:73.254000px;}
.x11{left:75.234000px;}
.x1{left:78.336000px;}
.x8{left:86.435987px;}
.x2{left:95.754000px;}
.x1e{left:102.774000px;}
.x1b{left:106.734000px;}
.x20{left:113.435987px;}
.x10{left:124.554000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x17{left:219.090000px;}
.xc{left:591.629987px;}
.xb{left:699.809987px;}
.xa{left:706.469987px;}
.x9{left:766.079987px;}
.x7{left:784.439987px;}
.x1a{left:815.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.079467pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:7.200000pt;}
.lsb{letter-spacing:8.480000pt;}
.ls9{letter-spacing:11.680000pt;}
.lsf{letter-spacing:14.672640pt;}
.ls8{letter-spacing:40.912640pt;}
.lsa{letter-spacing:56.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws6{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.989013pt;}
._6{width:1.962027pt;}
._7{width:3.696000pt;}
._9{width:5.100160pt;}
._8{width:6.144000pt;}
._f{width:7.454720pt;}
._3{width:8.928000pt;}
._2{width:10.272000pt;}
._e{width:11.275307pt;}
._d{width:12.296107pt;}
._17{width:14.681387pt;}
._b{width:15.723520pt;}
._a{width:17.051520pt;}
._16{width:18.718507pt;}
._c{width:19.887147pt;}
._12{width:21.268267pt;}
._15{width:22.362880pt;}
._11{width:24.913280pt;}
._10{width:25.869440pt;}
._13{width:26.945280pt;}
._4{width:27.840000pt;}
._5{width:29.040000pt;}
._14{width:178.826667pt;}
.fs6{font-size:5.120000pt;}
.fs9{font-size:16.000000pt;}
.fsa{font-size:26.880000pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.080000pt;}
.y45{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5e{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4f{bottom:9.120000pt;}
.y44{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y5b{bottom:25.440000pt;}
.y43{bottom:33.640000pt;}
.y4e{bottom:35.514667pt;}
.y5a{bottom:40.314667pt;}
.y3{bottom:42.586667pt;}
.y4d{bottom:45.434667pt;}
.y42{bottom:49.000000pt;}
.y4c{bottom:55.994667pt;}
.y59{bottom:56.154667pt;}
.y8{bottom:63.840000pt;}
.y41{bottom:64.200000pt;}
.y4b{bottom:67.514667pt;}
.y58{bottom:69.914667pt;}
.y4a{bottom:79.194667pt;}
.y40{bottom:79.560000pt;}
.y7{bottom:80.672000pt;}
.y57{bottom:81.434667pt;}
.y56{bottom:87.354667pt;}
.y3f{bottom:94.920000pt;}
.y46{bottom:98.592000pt;}
.y49{bottom:98.714667pt;}
.y55{bottom:101.114667pt;}
.y3e{bottom:110.280000pt;}
.yc9{bottom:110.752000pt;}
.y96{bottom:111.552000pt;}
.y54{bottom:114.874667pt;}
.yfe{bottom:124.992000pt;}
.y3d{bottom:125.640000pt;}
.yc8{bottom:125.952000pt;}
.y95{bottom:127.872000pt;}
.y53{bottom:128.634667pt;}
.yfd{bottom:140.346667pt;}
.y3c{bottom:141.000000pt;}
.yc7{bottom:142.266667pt;}
.y52{bottom:142.554667pt;}
.y94{bottom:143.066667pt;}
.y48{bottom:153.754667pt;}
.yfc{bottom:155.706667pt;}
.y3b{bottom:156.200000pt;}
.y51{bottom:156.314667pt;}
.yc6{bottom:158.586667pt;}
.y93{bottom:159.386667pt;}
.y47{bottom:163.194667pt;}
.yfb{bottom:171.066667pt;}
.y3a{bottom:171.560000pt;}
.y92{bottom:174.746667pt;}
.yc5{bottom:174.906667pt;}
.y5c{bottom:178.074667pt;}
.yfa{bottom:186.426667pt;}
.y39{bottom:186.920000pt;}
.y91{bottom:190.106667pt;}
.yc4{bottom:190.266667pt;}
.yf9{bottom:201.626667pt;}
.y38{bottom:202.280000pt;}
.y90{bottom:205.466667pt;}
.yc3{bottom:208.186667pt;}
.yf8{bottom:216.986667pt;}
.y37{bottom:217.640000pt;}
.y8f{bottom:223.386667pt;}
.yc2{bottom:223.546667pt;}
.yf7{bottom:232.346667pt;}
.y36{bottom:232.840000pt;}
.y8e{bottom:238.746667pt;}
.yc1{bottom:238.906667pt;}
.yf6{bottom:247.706667pt;}
.y35{bottom:248.200000pt;}
.y8d{bottom:254.106667pt;}
.yc0{bottom:255.226667pt;}
.y12a{bottom:255.866667pt;}
.yf5{bottom:263.066667pt;}
.y34{bottom:263.586667pt;}
.y8c{bottom:269.466667pt;}
.y129{bottom:271.066667pt;}
.ybf{bottom:271.386667pt;}
.yf4{bottom:278.426667pt;}
.y33{bottom:278.946667pt;}
.y1f{bottom:282.466667pt;}
.y8b{bottom:284.826667pt;}
.y128{bottom:286.426667pt;}
.ybe{bottom:286.746667pt;}
.y11{bottom:288.506667pt;}
.yf3{bottom:293.626667pt;}
.y32{bottom:294.306667pt;}
.y1e{bottom:296.546667pt;}
.y8a{bottom:300.026667pt;}
.y127{bottom:301.786667pt;}
.ybd{bottom:304.826667pt;}
.yf2{bottom:308.986667pt;}
.y31{bottom:309.666667pt;}
.y89{bottom:315.426667pt;}
.y126{bottom:317.186667pt;}
.y1d{bottom:317.986667pt;}
.ybc{bottom:320.226667pt;}
.yf1{bottom:324.386667pt;}
.y30{bottom:324.866667pt;}
.y88{bottom:330.786667pt;}
.y125{bottom:332.546667pt;}
.ybb{bottom:335.426667pt;}
.y1c{bottom:339.426667pt;}
.yf0{bottom:339.746667pt;}
.y2f{bottom:340.226667pt;}
.y87{bottom:346.146667pt;}
.y124{bottom:347.906667pt;}
.yba{bottom:350.786667pt;}
.yef{bottom:355.106667pt;}
.y2e{bottom:355.586667pt;}
.y1b{bottom:360.866667pt;}
.y86{bottom:361.506667pt;}
.y123{bottom:363.106667pt;}
.yb9{bottom:367.106667pt;}
.yee{bottom:370.466667pt;}
.y2d{bottom:370.946667pt;}
.y85{bottom:376.706667pt;}
.y122{bottom:378.466667pt;}
.y1a{bottom:382.466667pt;}
.yb8{bottom:383.426667pt;}
.yed{bottom:385.666667pt;}
.y2c{bottom:385.986667pt;}
.y84{bottom:392.066667pt;}
.y121{bottom:393.826667pt;}
.y2b{bottom:399.746667pt;}
.yec{bottom:401.026667pt;}
.y19{bottom:403.906667pt;}
.y83{bottom:407.426667pt;}
.y120{bottom:409.186667pt;}
.y2a{bottom:413.506667pt;}
.yb7{bottom:414.946667pt;}
.yeb{bottom:416.386667pt;}
.y82{bottom:422.786667pt;}
.y11f{bottom:424.546667pt;}
.y18{bottom:425.346667pt;}
.y29{bottom:427.426667pt;}
.yea{bottom:431.746667pt;}
.yb6{bottom:433.026667pt;}
.y81{bottom:438.146667pt;}
.y11e{bottom:439.906667pt;}
.y28{bottom:441.186667pt;}
.y17{bottom:446.786667pt;}
.ye9{bottom:447.106667pt;}
.yb5{bottom:448.386667pt;}
.y80{bottom:453.506667pt;}
.y27{bottom:454.946667pt;}
.y11d{bottom:455.106667pt;}
.ye8{bottom:462.306667pt;}
.yb4{bottom:463.746667pt;}
.y16{bottom:468.226667pt;}
.y26{bottom:468.706667pt;}
.y11c{bottom:470.466667pt;}
.ye7{bottom:477.666667pt;}
.yb3{bottom:478.946667pt;}
.y25{bottom:482.626667pt;}
.y7f{bottom:484.066667pt;}
.y11b{bottom:485.826667pt;}
.y15{bottom:489.706667pt;}
.ye6{bottom:493.026667pt;}
.yb2{bottom:494.306667pt;}
.y24{bottom:496.426667pt;}
.y7e{bottom:499.426667pt;}
.y11a{bottom:501.186667pt;}
.ye5{bottom:508.386667pt;}
.yb1{bottom:509.666667pt;}
.y23{bottom:510.186667pt;}
.y14{bottom:511.306667pt;}
.y7d{bottom:514.786667pt;}
.y119{bottom:516.546667pt;}
.ye4{bottom:523.746667pt;}
.y22{bottom:523.946667pt;}
.yb0{bottom:525.986667pt;}
.y7c{bottom:530.146667pt;}
.y118{bottom:531.906667pt;}
.y13{bottom:532.746667pt;}
.y21{bottom:537.866667pt;}
.ye3{bottom:539.106667pt;}
.yaf{bottom:542.306667pt;}
.y7b{bottom:545.533333pt;}
.y117{bottom:547.133333pt;}
.y20{bottom:551.626667pt;}
.y12{bottom:554.186667pt;}
.ye2{bottom:557.053333pt;}
.yae{bottom:558.493333pt;}
.y7a{bottom:560.733333pt;}
.y116{bottom:562.493333pt;}
.ye1{bottom:572.413333pt;}
.y79{bottom:576.093333pt;}
.yad{bottom:576.573333pt;}
.y115{bottom:577.853333pt;}
.ye0{bottom:587.773333pt;}
.y78{bottom:591.453333pt;}
.yac{bottom:591.933333pt;}
.y114{bottom:593.213333pt;}
.ydf{bottom:605.693333pt;}
.y77{bottom:606.813333pt;}
.yab{bottom:607.293333pt;}
.y113{bottom:608.573333pt;}
.yde{bottom:621.053333pt;}
.y76{bottom:622.653333pt;}
.yaa{bottom:623.453333pt;}
.y112{bottom:623.773333pt;}
.ydd{bottom:636.413333pt;}
.y75{bottom:638.013333pt;}
.y111{bottom:639.133333pt;}
.ya9{bottom:639.773333pt;}
.y74{bottom:653.373333pt;}
.ydc{bottom:654.333333pt;}
.y110{bottom:654.493333pt;}
.ya8{bottom:656.093333pt;}
.y73{bottom:668.733333pt;}
.ydb{bottom:669.693333pt;}
.y10f{bottom:669.853333pt;}
.ya7{bottom:671.453333pt;}
.y72{bottom:684.093333pt;}
.yda{bottom:685.053333pt;}
.y10e{bottom:685.213333pt;}
.ya6{bottom:689.373333pt;}
.y71{bottom:699.293333pt;}
.y10d{bottom:700.573333pt;}
.yd9{bottom:702.973333pt;}
.ya5{bottom:704.733333pt;}
.y70{bottom:714.653333pt;}
.y10c{bottom:715.773333pt;}
.yd8{bottom:718.333333pt;}
.ya4{bottom:720.093333pt;}
.y6f{bottom:730.013333pt;}
.y10b{bottom:731.133333pt;}
.yd7{bottom:733.693333pt;}
.ya3{bottom:735.453333pt;}
.y6e{bottom:745.853333pt;}
.y10a{bottom:746.493333pt;}
.yd6{bottom:749.053333pt;}
.ya2{bottom:751.773333pt;}
.y6d{bottom:761.213333pt;}
.y109{bottom:761.853333pt;}
.yd5{bottom:765.373333pt;}
.ya1{bottom:767.933333pt;}
.y6c{bottom:776.613333pt;}
.y108{bottom:777.253333pt;}
.yd4{bottom:781.733333pt;}
.ya0{bottom:784.293333pt;}
.y6b{bottom:791.973333pt;}
.y107{bottom:792.613333pt;}
.yd3{bottom:797.893333pt;}
.y9f{bottom:799.653333pt;}
.y6a{bottom:807.333333pt;}
.y106{bottom:807.813333pt;}
.yd2{bottom:813.253333pt;}
.y9e{bottom:817.573333pt;}
.y69{bottom:822.693333pt;}
.y105{bottom:823.173333pt;}
.yd1{bottom:831.333333pt;}
.y9d{bottom:832.933333pt;}
.y68{bottom:837.893333pt;}
.y104{bottom:838.533333pt;}
.yd0{bottom:846.693333pt;}
.y9c{bottom:848.293333pt;}
.y67{bottom:853.253333pt;}
.y10{bottom:853.573333pt;}
.y103{bottom:853.893333pt;}
.yf{bottom:857.733333pt;}
.ycf{bottom:861.893333pt;}
.y9b{bottom:863.653333pt;}
.y66{bottom:868.613333pt;}
.y102{bottom:869.253333pt;}
.ye{bottom:873.093333pt;}
.yce{bottom:878.213333pt;}
.y9a{bottom:879.013333pt;}
.y65{bottom:883.973333pt;}
.y101{bottom:884.453333pt;}
.yd{bottom:888.453333pt;}
.ycd{bottom:894.533333pt;}
.y99{bottom:895.333333pt;}
.y64{bottom:899.333333pt;}
.y100{bottom:899.813333pt;}
.yc{bottom:903.653333pt;}
.y98{bottom:911.493333pt;}
.ycc{bottom:912.453333pt;}
.y63{bottom:914.693333pt;}
.yff{bottom:915.173333pt;}
.yb{bottom:919.013333pt;}
.y97{bottom:927.813333pt;}
.y62{bottom:930.533333pt;}
.ya{bottom:935.493333pt;}
.ycb{bottom:943.173333pt;}
.y61{bottom:945.893333pt;}
.yca{bottom:958.533333pt;}
.y9{bottom:960.933333pt;}
.y60{bottom:961.253333pt;}
.y5d{bottom:963.840000pt;}
.y5f{bottom:976.453333pt;}
.y6{bottom:991.013333pt;}
.y1{bottom:998.693333pt;}
.hb{height:3.575000pt;}
.h15{height:4.220000pt;}
.h13{height:18.768750pt;}
.h12{height:22.343750pt;}
.h16{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h6{height:31.828125pt;}
.h14{height:33.867188pt;}
.hf{height:34.664062pt;}
.h8{height:35.673437pt;}
.h7{height:37.090625pt;}
.ha{height:37.479688pt;}
.h18{height:38.672812pt;}
.h10{height:39.562500pt;}
.h5{height:41.112500pt;}
.h19{height:43.782500pt;}
.h9{height:52.832812pt;}
.h17{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h11{height:189.280000pt;}
.hc{height:562.813333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:68.960000pt;}
.w2{width:92.480000pt;}
.w5{width:117.920000pt;}
.w8{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.272000pt;}
.x18{left:7.200000pt;}
.x4{left:11.360000pt;}
.x14{left:15.360000pt;}
.x6{left:16.640000pt;}
.x16{left:17.760000pt;}
.x15{left:25.760000pt;}
.xe{left:38.880000pt;}
.x1c{left:42.400000pt;}
.xf{left:45.120000pt;}
.xd{left:48.800000pt;}
.x1d{left:50.720000pt;}
.x19{left:55.240000pt;}
.x13{left:59.674667pt;}
.x12{left:65.114667pt;}
.x11{left:66.874667pt;}
.x1{left:69.632000pt;}
.x8{left:76.831988pt;}
.x2{left:85.114667pt;}
.x1e{left:91.354667pt;}
.x1b{left:94.874667pt;}
.x20{left:100.831988pt;}
.x10{left:110.714667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x17{left:194.746667pt;}
.xc{left:525.893322pt;}
.xb{left:622.053322pt;}
.xa{left:627.973322pt;}
.x9{left:680.959988pt;}
.x7{left:697.279988pt;}
.x1a{left:724.960000pt;}
}




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