
    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_ecaf4c4ecc57bffd8fe51e3c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_a0d7277f9980c100212801b5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a4a049a96924066de92372a2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_6519850d1b14e9416cf39cb4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_5f47deb207993537f9262cb6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_b98170826f5f013298cb834e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_3ffc02ab635fc50ef89fac7f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_c295f3b34dd2d54d1b0c430f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_cb2102fe47d3ed4dbe87cbcc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_e5c5f1d0718ac1f52953bbba.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_540e011bdf7cc640e1f5f6b8.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_106102d769fd6b12ae166e85.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b64f44b7f3d4cec450a4d3cc.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;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);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls8{letter-spacing:-2.724000px;}
.ls9{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.378000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.476000px;}
.lsa{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.146500px;}
.lsb{letter-spacing:2.190000px;}
.ls4{letter-spacing:2.250000px;}
.ls0{letter-spacing:2.313000px;}
.ls5{letter-spacing:2.370000px;}
.lsc{letter-spacing:2.430000px;}
.lsd{letter-spacing:46.887000px;}
.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;}
}
.ws7{word-spacing:-16.875000px;}
.ws8{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws1{word-spacing:-12.531000px;}
.ws5{word-spacing:-12.204000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._18{margin-left:-11.744700px;}
._7{margin-left:-10.221450px;}
._15{margin-left:-6.939900px;}
._8{margin-left:-5.873700px;}
._5{margin-left:-4.656900px;}
._6{margin-left:-3.347400px;}
._2{margin-left:-1.449000px;}
._0{width:1.309500px;}
._3{width:2.748000px;}
._1{width:3.978000px;}
._9{width:5.325000px;}
._14{width:6.986100px;}
._e{width:8.056500px;}
._a{width:9.480900px;}
._4{width:11.050500px;}
._d{width:12.484800px;}
._f{width:16.421700px;}
._10{width:17.441400px;}
._c{width:20.624400px;}
._b{width:21.714000px;}
._13{width:26.322600px;}
._12{width:29.495100px;}
._11{width:30.627900px;}
._17{width:39.006600px;}
._16{width:44.791800px;}
._1b{width:80.619000px;}
._19{width:142.288500px;}
._1a{width:148.128000px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:9.000000px;}
.fsa{font-size:13.500000px;}
.fsb{font-size:18.000000px;}
.fs9{font-size:22.500000px;}
.fsc{font-size:36.000000px;}
.fs4{font-size:40.500000px;}
.fs2{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:58.500000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:67.500000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.375000px;}
.y57{bottom:3.405000px;}
.y5a{bottom:4.500000px;}
.ycb{bottom:4.515000px;}
.yc5{bottom:5.625000px;}
.yc2{bottom:5.640000px;}
.yd{bottom:5.655000px;}
.yc0{bottom:5.670000px;}
.y59{bottom:6.750000px;}
.yb8{bottom:6.780000px;}
.ya6{bottom:7.875000px;}
.yab{bottom:7.890000px;}
.y3c{bottom:7.905000px;}
.ya3{bottom:9.000000px;}
.yb6{bottom:9.030000px;}
.ya8{bottom:9.045000px;}
.yb{bottom:13.500000px;}
.y1d{bottom:14.670000px;}
.y3{bottom:18.000000px;}
.y56{bottom:20.280000px;}
.yca{bottom:21.390000px;}
.y1a{bottom:21.405000px;}
.ycd{bottom:21.420000px;}
.yad{bottom:22.500000px;}
.y3b{bottom:22.545000px;}
.y4{bottom:25.875000px;}
.ya{bottom:30.405000px;}
.y3a{bottom:37.155000px;}
.y2{bottom:37.162500px;}
.y19{bottom:38.280000px;}
.yc9{bottom:38.295000px;}
.y9{bottom:46.155000px;}
.y1{bottom:48.412500px;}
.y39{bottom:51.825000px;}
.y18{bottom:54.030000px;}
.y55{bottom:55.200000px;}
.y38{bottom:66.450000px;}
.y17{bottom:70.950000px;}
.y54{bottom:72.075000px;}
.y8{bottom:73.200000px;}
.y37{bottom:81.075000px;}
.y16{bottom:86.700000px;}
.y53{bottom:90.120000px;}
.y15{bottom:92.325000px;}
.y7{bottom:93.450000px;}
.y36{bottom:95.745000px;}
.y14{bottom:99.105000px;}
.y52{bottom:106.995000px;}
.y6{bottom:110.355000px;}
.y35{bottom:110.370000px;}
.y13{bottom:113.730000px;}
.y67{bottom:115.950000px;}
.yd9{bottom:117.075000px;}
.y12{bottom:118.230000px;}
.y51{bottom:123.870000px;}
.y34{bottom:124.980000px;}
.y11{bottom:129.480000px;}
.y66{bottom:132.862500px;}
.yd8{bottom:133.987500px;}
.y33{bottom:139.650000px;}
.ycf{bottom:141.862500px;}
.y50{bottom:141.900000px;}
.y65{bottom:149.737500px;}
.yd7{bottom:151.995000px;}
.y10{bottom:154.275000px;}
.y9f{bottom:156.480000px;}
.y4f{bottom:158.775000px;}
.y64{bottom:167.775000px;}
.yd6{bottom:168.900000px;}
.y32{bottom:168.945000px;}
.y9e{bottom:174.525000px;}
.yf{bottom:175.650000px;}
.y4e{bottom:175.695000px;}
.yce{bottom:180.150000px;}
.y31{bottom:183.570000px;}
.y63{bottom:184.650000px;}
.yd5{bottom:185.775000px;}
.y9d{bottom:191.400000px;}
.y4d{bottom:193.695000px;}
.ycc{bottom:194.775000px;}
.yff{bottom:198.150000px;}
.y30{bottom:198.180000px;}
.y62{bottom:201.570000px;}
.yd4{bottom:203.820000px;}
.y9c{bottom:208.320000px;}
.y4c{bottom:210.600000px;}
.y2f{bottom:212.850000px;}
.yfe{bottom:215.070000px;}
.yd3{bottom:220.695000px;}
.y9b{bottom:226.320000px;}
.y2e{bottom:227.475000px;}
.y61{bottom:230.820000px;}
.yfd{bottom:233.070000px;}
.yd2{bottom:237.570000px;}
.y2d{bottom:242.100000px;}
.y4b{bottom:245.475000px;}
.y60{bottom:248.850000px;}
.yfc{bottom:249.975000px;}
.y9a{bottom:255.600000px;}
.y2c{bottom:256.770000px;}
.y4a{bottom:262.395000px;}
.y5f{bottom:265.725000px;}
.yfb{bottom:266.850000px;}
.y2b{bottom:271.395000px;}
.y99{bottom:272.475000px;}
.y49{bottom:279.270000px;}
.y5e{bottom:282.600000px;}
.yfa{bottom:284.895000px;}
.y2a{bottom:286.020000px;}
.y98{bottom:289.380000px;}
.y48{bottom:297.300000px;}
.y5d{bottom:300.630000px;}
.yf9{bottom:301.770000px;}
.y29{bottom:304.050000px;}
.y97{bottom:307.380000px;}
.y47{bottom:314.175000px;}
.y5c{bottom:317.505000px;}
.yf8{bottom:318.645000px;}
.y28{bottom:320.925000px;}
.y96{bottom:324.255000px;}
.y46{bottom:331.050000px;}
.y5b{bottom:334.425000px;}
.yf7{bottom:336.675000px;}
.y27{bottom:337.830000px;}
.y95{bottom:341.175000px;}
.y58{bottom:349.050000px;}
.y45{bottom:349.095000px;}
.yf6{bottom:353.550000px;}
.y26{bottom:355.845000px;}
.yc8{bottom:356.925000px;}
.y94{bottom:359.175000px;}
.y44{bottom:365.970000px;}
.y1e{bottom:367.050000px;}
.yf5{bottom:370.455000px;}
.y25{bottom:372.720000px;}
.y93{bottom:376.095000px;}
.y43{bottom:382.875000px;}
.yf4{bottom:388.455000px;}
.y24{bottom:390.750000px;}
.y92{bottom:392.970000px;}
.yc7{bottom:394.080000px;}
.y42{bottom:400.875000px;}
.yf3{bottom:405.330000px;}
.y23{bottom:407.625000px;}
.yc6{bottom:409.875000px;}
.y91{bottom:411.000000px;}
.y41{bottom:417.750000px;}
.yf2{bottom:422.250000px;}
.y22{bottom:425.655000px;}
.yc4{bottom:431.250000px;}
.y40{bottom:434.655000px;}
.y90{bottom:440.250000px;}
.y21{bottom:443.655000px;}
.yc3{bottom:451.530000px;}
.y3f{bottom:452.655000px;}
.y8f{bottom:457.170000px;}
.yf1{bottom:469.545000px;}
.y3e{bottom:469.575000px;}
.y20{bottom:470.700000px;}
.yc1{bottom:471.780000px;}
.y8e{bottom:486.420000px;}
.y3d{bottom:486.450000px;}
.y1f{bottom:488.700000px;}
.ybf{bottom:492.030000px;}
.y8d{bottom:503.325000px;}
.ybe{bottom:511.200000px;}
.y8c{bottom:521.325000px;}
.ybd{bottom:531.450000px;}
.y8b{bottom:538.230000px;}
.y8a{bottom:555.105000px;}
.ybc{bottom:556.245000px;}
.y89{bottom:573.120000px;}
.yf0{bottom:590.025000px;}
.ybb{bottom:592.275000px;}
.y88{bottom:602.400000px;}
.yef{bottom:606.900000px;}
.yba{bottom:608.025000px;}
.y87{bottom:619.320000px;}
.yee{bottom:624.945000px;}
.yb9{bottom:630.570000px;}
.y86{bottom:636.195000px;}
.yed{bottom:641.820000px;}
.y85{bottom:654.195000px;}
.yec{bottom:658.695000px;}
.y84{bottom:671.100000px;}
.yb7{bottom:675.600000px;}
.yeb{bottom:676.725000px;}
.y83{bottom:687.975000px;}
.yea{bottom:693.600000px;}
.yb5{bottom:698.100000px;}
.ye9{bottom:710.505000px;}
.y82{bottom:717.255000px;}
.yb4{bottom:721.755000px;}
.ye8{bottom:728.505000px;}
.y81{bottom:735.255000px;}
.yb3{bottom:743.130000px;}
.ye7{bottom:745.425000px;}
.y80{bottom:752.175000px;}
.ye6{bottom:762.300000px;}
.yb2{bottom:765.675000px;}
.yd1{bottom:767.925000px;}
.y7f{bottom:769.050000px;}
.ye5{bottom:780.300000px;}
.y7e{bottom:787.080000px;}
.yb1{bottom:789.330000px;}
.ye4{bottom:797.205000px;}
.yd0{bottom:801.705000px;}
.y7d{bottom:803.955000px;}
.yb0{bottom:810.705000px;}
.y7c{bottom:820.830000px;}
.ye3{bottom:826.455000px;}
.yaf{bottom:833.250000px;}
.y7b{bottom:838.875000px;}
.ye2{bottom:843.375000px;}
.y7a{bottom:855.750000px;}
.yae{bottom:856.875000px;}
.ye1{bottom:861.375000px;}
.y1c{bottom:867.000000px;}
.y79{bottom:872.670000px;}
.yac{bottom:878.295000px;}
.y78{bottom:890.670000px;}
.ye{bottom:896.295000px;}
.yaa{bottom:901.905000px;}
.y77{bottom:907.545000px;}
.ya9{bottom:924.450000px;}
.y76{bottom:936.825000px;}
.ye0{bottom:942.450000px;}
.ya7{bottom:945.825000px;}
.y75{bottom:953.745000px;}
.ydf{bottom:959.370000px;}
.ya5{bottom:969.495000px;}
.y74{bottom:971.745000px;}
.y73{bottom:988.620000px;}
.ya4{bottom:991.995000px;}
.y72{bottom:1005.525000px;}
.ya2{bottom:1013.400000px;}
.yde{bottom:1023.525000px;}
.y71{bottom:1034.775000px;}
.ya1{bottom:1040.445000px;}
.y70{bottom:1052.820000px;}
.ydd{bottom:1057.320000px;}
.y6f{bottom:1069.695000px;}
.yc{bottom:1074.195000px;}
.y6e{bottom:1086.600000px;}
.y5{bottom:1094.475000px;}
.ya0{bottom:1104.600000px;}
.y6d{bottom:1115.850000px;}
.ydc{bottom:1121.505000px;}
.y6c{bottom:1133.880000px;}
.ydb{bottom:1138.380000px;}
.y6b{bottom:1150.755000px;}
.yda{bottom:1156.380000px;}
.y6a{bottom:1167.675000px;}
.y69{bottom:1185.675000px;}
.y68{bottom:1202.580000px;}
.hd{height:6.750000px;}
.h10{height:9.940430px;}
.h12{height:13.605469px;}
.h11{height:13.822998px;}
.hf{height:16.567383px;}
.h1f{height:18.000000px;}
.h29{height:19.125000px;}
.h28{height:19.162500px;}
.h27{height:20.250000px;}
.hb{height:20.287500px;}
.h22{height:21.360000px;}
.h23{height:21.375000px;}
.h21{height:21.397500px;}
.h24{height:21.412500px;}
.h25{height:22.485000px;}
.h26{height:22.500000px;}
.h20{height:22.537500px;}
.h15{height:29.287500px;}
.h13{height:29.953125px;}
.h2b{height:33.787500px;}
.h2a{height:34.912500px;}
.h8{height:37.125000px;}
.h1c{height:37.415039px;}
.h14{height:39.832031px;}
.h1e{height:40.847168px;}
.h1d{height:41.275635px;}
.h1b{height:41.389893px;}
.h2c{height:42.589600px;}
.ha{height:43.875000px;}
.h1a{height:47.074219px;}
.h18{height:49.234131px;}
.h2{height:51.787500px;}
.h9{height:54.000000px;}
.h4{height:58.282471px;}
.h19{height:59.899658px;}
.he{height:64.237500px;}
.h3{height:64.507324px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h16{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:177.900000px;}
.h17{height:499.950000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w12{width:86.737500px;}
.w14{width:87.862500px;}
.w13{width:117.150000px;}
.wf{width:139.687500px;}
.w4{width:144.150000px;}
.w10{width:146.437500px;}
.w15{width:157.680000px;}
.wc{width:161.055000px;}
.wd{width:170.100000px;}
.w11{width:177.975000px;}
.w8{width:197.100000px;}
.wb{width:295.125000px;}
.we{width:339.030000px;}
.w9{width:493.380000px;}
.wa{width:555.345000px;}
.w5{width:595.920000px;}
.w1{width:674.745000px;}
.w7{width:690.480000px;}
.w6{width:740.070000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.905000px;}
.x2{left:9.037500px;}
.x10{left:49.537500px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x13{left:77.692500px;}
.x4{left:81.112487px;}
.xf{left:91.237500px;}
.x6{left:97.987500px;}
.x2b{left:108.149987px;}
.x18{left:120.517500px;}
.x20{left:131.812500px;}
.x17{left:132.937500px;}
.x1c{left:134.062500px;}
.x2a{left:135.187487px;}
.x14{left:166.687500px;}
.x11{left:186.967500px;}
.x12{left:192.607500px;}
.x28{left:198.269987px;}
.x1f{left:200.519987px;}
.x7{left:217.395000px;}
.x1b{left:233.174987px;}
.x26{left:234.299987px;}
.x16{left:244.424987px;}
.x15{left:270.345000px;}
.xb{left:290.610000px;}
.x21{left:310.920000px;}
.xe{left:344.662500px;}
.x9{left:345.825000px;}
.xa{left:364.980000px;}
.x22{left:398.775000px;}
.x19{left:429.195000px;}
.xd{left:431.430000px;}
.x25{left:447.194987px;}
.xc{left:453.975000px;}
.x1d{left:473.100000px;}
.x23{left:515.925000px;}
.x1a{left:591.375000px;}
.x24{left:603.780000px;}
.x1e{left:613.905000px;}
.x29{left:716.399987px;}
.x27{left:720.944987px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls8{letter-spacing:-2.421333pt;}
.ls9{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.312000pt;}
.lsa{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.908000pt;}
.lsb{letter-spacing:1.946667pt;}
.ls4{letter-spacing:2.000000pt;}
.ls0{letter-spacing:2.056000pt;}
.ls5{letter-spacing:2.106667pt;}
.lsc{letter-spacing:2.160000pt;}
.lsd{letter-spacing:41.677333pt;}
.ws7{word-spacing:-15.000000pt;}
.ws8{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws5{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._18{margin-left:-10.439733pt;}
._7{margin-left:-9.085733pt;}
._15{margin-left:-6.168800pt;}
._8{margin-left:-5.221067pt;}
._5{margin-left:-4.139467pt;}
._6{margin-left:-2.975467pt;}
._2{margin-left:-1.288000pt;}
._0{width:1.164000pt;}
._3{width:2.442667pt;}
._1{width:3.536000pt;}
._9{width:4.733333pt;}
._14{width:6.209867pt;}
._e{width:7.161333pt;}
._a{width:8.427467pt;}
._4{width:9.822667pt;}
._d{width:11.097600pt;}
._f{width:14.597067pt;}
._10{width:15.503467pt;}
._c{width:18.332800pt;}
._b{width:19.301333pt;}
._13{width:23.397867pt;}
._12{width:26.217867pt;}
._11{width:27.224800pt;}
._17{width:34.672533pt;}
._16{width:39.814933pt;}
._1b{width:71.661333pt;}
._19{width:126.478667pt;}
._1a{width:131.669333pt;}
.fs7{font-size:8.000000pt;}
.fsa{font-size:12.000000pt;}
.fsb{font-size:16.000000pt;}
.fs9{font-size:20.000000pt;}
.fsc{font-size:32.000000pt;}
.fs4{font-size:36.000000pt;}
.fs2{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:52.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:60.000000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.000000pt;}
.y57{bottom:3.026667pt;}
.y5a{bottom:4.000000pt;}
.ycb{bottom:4.013333pt;}
.yc5{bottom:5.000000pt;}
.yc2{bottom:5.013333pt;}
.yd{bottom:5.026667pt;}
.yc0{bottom:5.040000pt;}
.y59{bottom:6.000000pt;}
.yb8{bottom:6.026667pt;}
.ya6{bottom:7.000000pt;}
.yab{bottom:7.013333pt;}
.y3c{bottom:7.026667pt;}
.ya3{bottom:8.000000pt;}
.yb6{bottom:8.026667pt;}
.ya8{bottom:8.040000pt;}
.yb{bottom:12.000000pt;}
.y1d{bottom:13.040000pt;}
.y3{bottom:16.000000pt;}
.y56{bottom:18.026667pt;}
.yca{bottom:19.013333pt;}
.y1a{bottom:19.026667pt;}
.ycd{bottom:19.040000pt;}
.yad{bottom:20.000000pt;}
.y3b{bottom:20.040000pt;}
.y4{bottom:23.000000pt;}
.ya{bottom:27.026667pt;}
.y3a{bottom:33.026667pt;}
.y2{bottom:33.033333pt;}
.y19{bottom:34.026667pt;}
.yc9{bottom:34.040000pt;}
.y9{bottom:41.026667pt;}
.y1{bottom:43.033333pt;}
.y39{bottom:46.066667pt;}
.y18{bottom:48.026667pt;}
.y55{bottom:49.066667pt;}
.y38{bottom:59.066667pt;}
.y17{bottom:63.066667pt;}
.y54{bottom:64.066667pt;}
.y8{bottom:65.066667pt;}
.y37{bottom:72.066667pt;}
.y16{bottom:77.066667pt;}
.y53{bottom:80.106667pt;}
.y15{bottom:82.066667pt;}
.y7{bottom:83.066667pt;}
.y36{bottom:85.106667pt;}
.y14{bottom:88.093333pt;}
.y52{bottom:95.106667pt;}
.y6{bottom:98.093333pt;}
.y35{bottom:98.106667pt;}
.y13{bottom:101.093333pt;}
.y67{bottom:103.066667pt;}
.yd9{bottom:104.066667pt;}
.y12{bottom:105.093333pt;}
.y51{bottom:110.106667pt;}
.y34{bottom:111.093333pt;}
.y11{bottom:115.093333pt;}
.y66{bottom:118.100000pt;}
.yd8{bottom:119.100000pt;}
.y33{bottom:124.133333pt;}
.ycf{bottom:126.100000pt;}
.y50{bottom:126.133333pt;}
.y65{bottom:133.100000pt;}
.yd7{bottom:135.106667pt;}
.y10{bottom:137.133333pt;}
.y9f{bottom:139.093333pt;}
.y4f{bottom:141.133333pt;}
.y64{bottom:149.133333pt;}
.yd6{bottom:150.133333pt;}
.y32{bottom:150.173333pt;}
.y9e{bottom:155.133333pt;}
.yf{bottom:156.133333pt;}
.y4e{bottom:156.173333pt;}
.yce{bottom:160.133333pt;}
.y31{bottom:163.173333pt;}
.y63{bottom:164.133333pt;}
.yd5{bottom:165.133333pt;}
.y9d{bottom:170.133333pt;}
.y4d{bottom:172.173333pt;}
.ycc{bottom:173.133333pt;}
.yff{bottom:176.133333pt;}
.y30{bottom:176.160000pt;}
.y62{bottom:179.173333pt;}
.yd4{bottom:181.173333pt;}
.y9c{bottom:185.173333pt;}
.y4c{bottom:187.200000pt;}
.y2f{bottom:189.200000pt;}
.yfe{bottom:191.173333pt;}
.yd3{bottom:196.173333pt;}
.y9b{bottom:201.173333pt;}
.y2e{bottom:202.200000pt;}
.y61{bottom:205.173333pt;}
.yfd{bottom:207.173333pt;}
.yd2{bottom:211.173333pt;}
.y2d{bottom:215.200000pt;}
.y4b{bottom:218.200000pt;}
.y60{bottom:221.200000pt;}
.yfc{bottom:222.200000pt;}
.y9a{bottom:227.200000pt;}
.y2c{bottom:228.240000pt;}
.y4a{bottom:233.240000pt;}
.y5f{bottom:236.200000pt;}
.yfb{bottom:237.200000pt;}
.y2b{bottom:241.240000pt;}
.y99{bottom:242.200000pt;}
.y49{bottom:248.240000pt;}
.y5e{bottom:251.200000pt;}
.yfa{bottom:253.240000pt;}
.y2a{bottom:254.240000pt;}
.y98{bottom:257.226667pt;}
.y48{bottom:264.266667pt;}
.y5d{bottom:267.226667pt;}
.yf9{bottom:268.240000pt;}
.y29{bottom:270.266667pt;}
.y97{bottom:273.226667pt;}
.y47{bottom:279.266667pt;}
.y5c{bottom:282.226667pt;}
.yf8{bottom:283.240000pt;}
.y28{bottom:285.266667pt;}
.y96{bottom:288.226667pt;}
.y46{bottom:294.266667pt;}
.y5b{bottom:297.266667pt;}
.yf7{bottom:299.266667pt;}
.y27{bottom:300.293333pt;}
.y95{bottom:303.266667pt;}
.y58{bottom:310.266667pt;}
.y45{bottom:310.306667pt;}
.yf6{bottom:314.266667pt;}
.y26{bottom:316.306667pt;}
.yc8{bottom:317.266667pt;}
.y94{bottom:319.266667pt;}
.y44{bottom:325.306667pt;}
.y1e{bottom:326.266667pt;}
.yf5{bottom:329.293333pt;}
.y25{bottom:331.306667pt;}
.y93{bottom:334.306667pt;}
.y43{bottom:340.333333pt;}
.yf4{bottom:345.293333pt;}
.y24{bottom:347.333333pt;}
.y92{bottom:349.306667pt;}
.yc7{bottom:350.293333pt;}
.y42{bottom:356.333333pt;}
.yf3{bottom:360.293333pt;}
.y23{bottom:362.333333pt;}
.yc6{bottom:364.333333pt;}
.y91{bottom:365.333333pt;}
.y41{bottom:371.333333pt;}
.yf2{bottom:375.333333pt;}
.y22{bottom:378.360000pt;}
.yc4{bottom:383.333333pt;}
.y40{bottom:386.360000pt;}
.y90{bottom:391.333333pt;}
.y21{bottom:394.360000pt;}
.yc3{bottom:401.360000pt;}
.y3f{bottom:402.360000pt;}
.y8f{bottom:406.373333pt;}
.yf1{bottom:417.373333pt;}
.y3e{bottom:417.400000pt;}
.y20{bottom:418.400000pt;}
.yc1{bottom:419.360000pt;}
.y8e{bottom:432.373333pt;}
.y3d{bottom:432.400000pt;}
.y1f{bottom:434.400000pt;}
.ybf{bottom:437.360000pt;}
.y8d{bottom:447.400000pt;}
.ybe{bottom:454.400000pt;}
.y8c{bottom:463.400000pt;}
.ybd{bottom:472.400000pt;}
.y8b{bottom:478.426667pt;}
.y8a{bottom:493.426667pt;}
.ybc{bottom:494.440000pt;}
.y89{bottom:509.440000pt;}
.yf0{bottom:524.466667pt;}
.ybb{bottom:526.466667pt;}
.y88{bottom:535.466667pt;}
.yef{bottom:539.466667pt;}
.yba{bottom:540.466667pt;}
.y87{bottom:550.506667pt;}
.yee{bottom:555.506667pt;}
.yb9{bottom:560.506667pt;}
.y86{bottom:565.506667pt;}
.yed{bottom:570.506667pt;}
.y85{bottom:581.506667pt;}
.yec{bottom:585.506667pt;}
.y84{bottom:596.533333pt;}
.yb7{bottom:600.533333pt;}
.yeb{bottom:601.533333pt;}
.y83{bottom:611.533333pt;}
.yea{bottom:616.533333pt;}
.yb5{bottom:620.533333pt;}
.ye9{bottom:631.560000pt;}
.y82{bottom:637.560000pt;}
.yb4{bottom:641.560000pt;}
.ye8{bottom:647.560000pt;}
.y81{bottom:653.560000pt;}
.yb3{bottom:660.560000pt;}
.ye7{bottom:662.600000pt;}
.y80{bottom:668.600000pt;}
.ye6{bottom:677.600000pt;}
.yb2{bottom:680.600000pt;}
.yd1{bottom:682.600000pt;}
.y7f{bottom:683.600000pt;}
.ye5{bottom:693.600000pt;}
.y7e{bottom:699.626667pt;}
.yb1{bottom:701.626667pt;}
.ye4{bottom:708.626667pt;}
.yd0{bottom:712.626667pt;}
.y7d{bottom:714.626667pt;}
.yb0{bottom:720.626667pt;}
.y7c{bottom:729.626667pt;}
.ye3{bottom:734.626667pt;}
.yaf{bottom:740.666667pt;}
.y7b{bottom:745.666667pt;}
.ye2{bottom:749.666667pt;}
.y7a{bottom:760.666667pt;}
.yae{bottom:761.666667pt;}
.ye1{bottom:765.666667pt;}
.y1c{bottom:770.666667pt;}
.y79{bottom:775.706667pt;}
.yac{bottom:780.706667pt;}
.y78{bottom:791.706667pt;}
.ye{bottom:796.706667pt;}
.yaa{bottom:801.693333pt;}
.y77{bottom:806.706667pt;}
.ya9{bottom:821.733333pt;}
.y76{bottom:832.733333pt;}
.ye0{bottom:837.733333pt;}
.ya7{bottom:840.733333pt;}
.y75{bottom:847.773333pt;}
.ydf{bottom:852.773333pt;}
.ya5{bottom:861.773333pt;}
.y74{bottom:863.773333pt;}
.y73{bottom:878.773333pt;}
.ya4{bottom:881.773333pt;}
.y72{bottom:893.800000pt;}
.ya2{bottom:900.800000pt;}
.yde{bottom:909.800000pt;}
.y71{bottom:919.800000pt;}
.ya1{bottom:924.840000pt;}
.y70{bottom:935.840000pt;}
.ydd{bottom:939.840000pt;}
.y6f{bottom:950.840000pt;}
.yc{bottom:954.840000pt;}
.y6e{bottom:965.866667pt;}
.y5{bottom:972.866667pt;}
.ya0{bottom:981.866667pt;}
.y6d{bottom:991.866667pt;}
.ydc{bottom:996.893333pt;}
.y6c{bottom:1007.893333pt;}
.ydb{bottom:1011.893333pt;}
.y6b{bottom:1022.893333pt;}
.yda{bottom:1027.893333pt;}
.y6a{bottom:1037.933333pt;}
.y69{bottom:1053.933333pt;}
.y68{bottom:1068.960000pt;}
.hd{height:6.000000pt;}
.h10{height:8.835938pt;}
.h12{height:12.093750pt;}
.h11{height:12.287109pt;}
.hf{height:14.726562pt;}
.h1f{height:16.000000pt;}
.h29{height:17.000000pt;}
.h28{height:17.033333pt;}
.h27{height:18.000000pt;}
.hb{height:18.033333pt;}
.h22{height:18.986667pt;}
.h23{height:19.000000pt;}
.h21{height:19.020000pt;}
.h24{height:19.033333pt;}
.h25{height:19.986667pt;}
.h26{height:20.000000pt;}
.h20{height:20.033333pt;}
.h15{height:26.033333pt;}
.h13{height:26.625000pt;}
.h2b{height:30.033333pt;}
.h2a{height:31.033333pt;}
.h8{height:33.000000pt;}
.h1c{height:33.257812pt;}
.h14{height:35.406250pt;}
.h1e{height:36.308594pt;}
.h1d{height:36.689453pt;}
.h1b{height:36.791016pt;}
.h2c{height:37.857422pt;}
.ha{height:39.000000pt;}
.h1a{height:41.843750pt;}
.h18{height:43.763672pt;}
.h2{height:46.033333pt;}
.h9{height:48.000000pt;}
.h4{height:51.806641pt;}
.h19{height:53.244141pt;}
.he{height:57.100000pt;}
.h3{height:57.339844pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h16{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:158.133333pt;}
.h17{height:444.400000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w12{width:77.100000pt;}
.w14{width:78.100000pt;}
.w13{width:104.133333pt;}
.wf{width:124.166667pt;}
.w4{width:128.133333pt;}
.w10{width:130.166667pt;}
.w15{width:140.160000pt;}
.wc{width:143.160000pt;}
.wd{width:151.200000pt;}
.w11{width:158.200000pt;}
.w8{width:175.200000pt;}
.wb{width:262.333333pt;}
.we{width:301.360000pt;}
.w9{width:438.560000pt;}
.wa{width:493.640000pt;}
.w5{width:529.706667pt;}
.w1{width:599.773333pt;}
.w7{width:613.760000pt;}
.w6{width:657.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.026667pt;}
.x2{left:8.033333pt;}
.x10{left:44.033333pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x13{left:69.060000pt;}
.x4{left:72.099988pt;}
.xf{left:81.100000pt;}
.x6{left:87.100000pt;}
.x2b{left:96.133322pt;}
.x18{left:107.126667pt;}
.x20{left:117.166667pt;}
.x17{left:118.166667pt;}
.x1c{left:119.166667pt;}
.x2a{left:120.166655pt;}
.x14{left:148.166667pt;}
.x11{left:166.193333pt;}
.x12{left:171.206667pt;}
.x28{left:176.239988pt;}
.x1f{left:178.239988pt;}
.x7{left:193.240000pt;}
.x1b{left:207.266655pt;}
.x26{left:208.266655pt;}
.x16{left:217.266655pt;}
.x15{left:240.306667pt;}
.xb{left:258.320000pt;}
.x21{left:276.373333pt;}
.xe{left:306.366667pt;}
.x9{left:307.400000pt;}
.xa{left:324.426667pt;}
.x22{left:354.466667pt;}
.x19{left:381.506667pt;}
.xd{left:383.493333pt;}
.x25{left:397.506655pt;}
.xc{left:403.533333pt;}
.x1d{left:420.533333pt;}
.x23{left:458.600000pt;}
.x1a{left:525.666667pt;}
.x24{left:536.693333pt;}
.x1e{left:545.693333pt;}
.x29{left:636.799988pt;}
.x27{left:640.839988pt;}
.x3{left:663.840000pt;}
}




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