
    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_bfa8b56e645bd98ba21eb6e6.woff2')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_419b190b7acb9c79724a8d7e.woff2')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_447942b004490192e310117a.woff2')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_2a6a0e996ddd5773639819fa.woff2')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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')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_ae8add51c3bb4b08637bf50b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.754395;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_41d34688a0b78abeb2218e4c.woff2')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_9e48088846898e26259f0457.woff2')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_7ad31174e999fc874ccc6f8d.woff2')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_91f1f28faf0d73fceb85c48b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d6e30cce7cceab102279dbf4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls16{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.259800px;}
.ls1f{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.066240px;}
.lsd{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls20{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.360000px;}
.ls1a{letter-spacing:3.060000px;}
.ls19{letter-spacing:3.780000px;}
.ls17{letter-spacing:5.220000px;}
.ls18{letter-spacing:8.100000px;}
.ls7{letter-spacing:9.540000px;}
.ls1c{letter-spacing:15.480000px;}
.ls1e{letter-spacing:16.506720px;}
.ls1d{letter-spacing:46.026720px;}
.ls1b{letter-spacing:64.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;}
}
.ws14{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws1a{word-spacing:-15.238800px;}
.ws15{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws19{word-spacing:-15.093600px;}
.wsb{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.833200px;}
.ws18{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.479800px;}
.wse{word-spacing:-14.166000px;}
.ws17{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.440960px;}
.ws5{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws13{word-spacing:0.000000px;}
._6{margin-left:-5.476800px;}
._4{margin-left:-4.162080px;}
._3{margin-left:-2.280000px;}
._0{margin-left:-1.032000px;}
._1{width:1.056000px;}
._5{width:2.712000px;}
._d{width:3.724080px;}
._2{width:4.728000px;}
._9{width:6.015360px;}
._a{width:7.191600px;}
._f{width:8.220720px;}
._c{width:9.501840px;}
._b{width:10.637280px;}
._11{width:11.928240px;}
._e{width:13.589280px;}
._10{width:16.613280px;}
._7{width:18.337920px;}
._8{width:19.878960px;}
._13{width:20.927760px;}
._15{width:22.924080px;}
._14{width:24.437040px;}
._12{width:29.705280px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(32,32,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y3c{bottom:3.960000px;}
.y19{bottom:5.040000px;}
.ye{bottom:9.540000px;}
.y29{bottom:9.900000px;}
.y3a{bottom:10.620000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y96{bottom:16.560000px;}
.y9a{bottom:16.740000px;}
.y9f{bottom:16.785000px;}
.y9b{bottom:16.920000px;}
.y98{bottom:17.100000px;}
.y4{bottom:17.280000px;}
.y2{bottom:19.980000px;}
.y36{bottom:20.520000px;}
.y3b{bottom:22.320000px;}
.y28{bottom:25.200000px;}
.y39{bottom:25.380000px;}
.y18{bottom:29.520000px;}
.yb{bottom:30.240000px;}
.y35{bottom:37.620000px;}
.y27{bottom:42.840000px;}
.y17{bottom:45.900000px;}
.ya{bottom:46.440000px;}
.y34{bottom:54.900000px;}
.y5{bottom:57.420000px;}
.y26{bottom:60.150000px;}
.y16{bottom:62.505000px;}
.y33{bottom:72.210000px;}
.y9{bottom:73.440000px;}
.y25{bottom:77.250000px;}
.y15{bottom:78.165000px;}
.y1{bottom:78.336000px;}
.y14{bottom:88.605000px;}
.y32{bottom:89.490000px;}
.y8{bottom:93.060000px;}
.y24{bottom:95.070000px;}
.y31{bottom:106.770000px;}
.y13{bottom:106.965000px;}
.y7{bottom:111.270000px;}
.y23{bottom:112.530000px;}
.y8e{bottom:122.976000px;}
.y30{bottom:124.050000px;}
.y12{bottom:126.045000px;}
.y22{bottom:129.810000px;}
.y52{bottom:132.876000px;}
.yc5{bottom:134.316000px;}
.ye8{bottom:134.856000px;}
.y8d{bottom:140.256000px;}
.y2f{bottom:141.150000px;}
.y21{bottom:147.270000px;}
.y51{bottom:150.150000px;}
.yc4{bottom:151.590000px;}
.y11{bottom:151.785000px;}
.ye7{bottom:152.130000px;}
.y8c{bottom:157.530000px;}
.y2e{bottom:158.430000px;}
.y20{bottom:164.730000px;}
.y50{bottom:167.430000px;}
.yc3{bottom:168.690000px;}
.ye6{bottom:169.410000px;}
.y8b{bottom:174.810000px;}
.y2d{bottom:175.710000px;}
.y10{bottom:176.085000px;}
.y4f{bottom:184.710000px;}
.y1f{bottom:184.890000px;}
.yc2{bottom:185.970000px;}
.ye5{bottom:186.690000px;}
.y8a{bottom:192.090000px;}
.y2c{bottom:192.990000px;}
.y4e{bottom:201.810000px;}
.yc1{bottom:203.250000px;}
.ye4{bottom:203.970000px;}
.y89{bottom:209.370000px;}
.y2b{bottom:210.270000px;}
.y1e{bottom:212.430000px;}
.y4d{bottom:219.090000px;}
.yc0{bottom:220.530000px;}
.ye3{bottom:221.250000px;}
.y88{bottom:226.470000px;}
.y2a{bottom:227.370000px;}
.y1d{bottom:230.070000px;}
.y4c{bottom:236.370000px;}
.ybf{bottom:237.810000px;}
.ye2{bottom:238.350000px;}
.y87{bottom:243.750000px;}
.y4b{bottom:253.650000px;}
.ybe{bottom:255.090000px;}
.ye1{bottom:255.630000px;}
.y86{bottom:261.030000px;}
.y4a{bottom:270.930000px;}
.ybd{bottom:272.190000px;}
.ye0{bottom:272.910000px;}
.y85{bottom:278.310000px;}
.y49{bottom:288.210000px;}
.ybc{bottom:289.470000px;}
.ydf{bottom:290.190000px;}
.y84{bottom:295.590000px;}
.y48{bottom:305.310000px;}
.ya0{bottom:305.490000px;}
.ybb{bottom:306.750000px;}
.yde{bottom:307.470000px;}
.y83{bottom:312.870000px;}
.y9e{bottom:320.610000px;}
.y47{bottom:322.590000px;}
.yba{bottom:324.030000px;}
.ydd{bottom:324.570000px;}
.y82{bottom:329.970000px;}
.y46{bottom:339.915000px;}
.yb9{bottom:341.355000px;}
.ydc{bottom:341.895000px;}
.y81{bottom:347.295000px;}
.y9d{bottom:352.515000px;}
.y45{bottom:357.195000px;}
.yb8{bottom:358.635000px;}
.ydb{bottom:359.175000px;}
.y80{bottom:364.575000px;}
.y44{bottom:374.475000px;}
.yb7{bottom:375.735000px;}
.yda{bottom:376.455000px;}
.y7f{bottom:381.855000px;}
.y9c{bottom:384.735000px;}
.y43{bottom:391.755000px;}
.yb6{bottom:393.015000px;}
.yd9{bottom:393.735000px;}
.y7e{bottom:399.135000px;}
.y42{bottom:408.855000px;}
.yb5{bottom:410.295000px;}
.yd8{bottom:411.015000px;}
.y7d{bottom:416.415000px;}
.y41{bottom:426.135000px;}
.yb4{bottom:427.575000px;}
.yd7{bottom:428.115000px;}
.y7c{bottom:433.515000px;}
.y40{bottom:443.415000px;}
.yb3{bottom:444.855000px;}
.yd6{bottom:445.395000px;}
.y99{bottom:448.455000px;}
.y7b{bottom:450.795000px;}
.y3f{bottom:460.695000px;}
.yb2{bottom:461.955000px;}
.yd5{bottom:462.675000px;}
.y7a{bottom:468.075000px;}
.y3e{bottom:477.975000px;}
.yb1{bottom:479.235000px;}
.yd4{bottom:479.955000px;}
.y97{bottom:480.315000px;}
.y79{bottom:485.355000px;}
.y3d{bottom:495.075000px;}
.yb0{bottom:496.515000px;}
.yd3{bottom:497.235000px;}
.y78{bottom:502.635000px;}
.y38{bottom:509.115000px;}
.y95{bottom:512.535000px;}
.yaf{bottom:513.795000px;}
.yd2{bottom:514.515000px;}
.y77{bottom:519.735000px;}
.yae{bottom:531.075000px;}
.yd1{bottom:531.615000px;}
.y76{bottom:537.015000px;}
.y94{bottom:544.215000px;}
.y1c{bottom:545.835000px;}
.yad{bottom:548.355000px;}
.yd0{bottom:549.975000px;}
.y75{bottom:554.295000px;}
.yac{bottom:565.455000px;}
.y93{bottom:566.355000px;}
.ycf{bottom:567.255000px;}
.y74{bottom:571.575000px;}
.yab{bottom:582.735000px;}
.y92{bottom:583.455000px;}
.yce{bottom:584.535000px;}
.y73{bottom:588.855000px;}
.yaa{bottom:600.015000px;}
.y91{bottom:600.735000px;}
.ycd{bottom:601.815000px;}
.y72{bottom:606.165000px;}
.ya9{bottom:617.325000px;}
.y90{bottom:618.045000px;}
.ycc{bottom:618.945000px;}
.y71{bottom:623.265000px;}
.y8f{bottom:632.085000px;}
.ya8{bottom:634.605000px;}
.ycb{bottom:637.305000px;}
.y70{bottom:640.545000px;}
.ya7{bottom:651.885000px;}
.yca{bottom:655.665000px;}
.y6f{bottom:657.825000px;}
.ya6{bottom:668.985000px;}
.yc9{bottom:672.945000px;}
.y6e{bottom:675.105000px;}
.ya5{bottom:686.265000px;}
.yc8{bottom:691.305000px;}
.y6d{bottom:692.385000px;}
.ya4{bottom:703.545000px;}
.yc7{bottom:708.585000px;}
.y6c{bottom:709.665000px;}
.ya3{bottom:720.825000px;}
.yc6{bottom:725.685000px;}
.y6b{bottom:726.765000px;}
.ya2{bottom:738.105000px;}
.y6a{bottom:744.045000px;}
.ya1{bottom:751.965000px;}
.y69{bottom:761.325000px;}
.y68{bottom:778.605000px;}
.y1a{bottom:787.245000px;}
.y67{bottom:795.885000px;}
.y66{bottom:812.985000px;}
.yf{bottom:816.765000px;}
.y65{bottom:830.265000px;}
.y64{bottom:847.545000px;}
.y63{bottom:864.825000px;}
.y62{bottom:882.150000px;}
.y61{bottom:899.430000px;}
.y60{bottom:916.530000px;}
.y5f{bottom:933.810000px;}
.y5e{bottom:951.090000px;}
.y5d{bottom:968.370000px;}
.y5c{bottom:985.650000px;}
.y5b{bottom:1002.930000px;}
.yd{bottom:1007.970000px;}
.y5a{bottom:1020.030000px;}
.y6{bottom:1033.350000px;}
.y59{bottom:1037.310000px;}
.y58{bottom:1054.590000px;}
.y57{bottom:1071.870000px;}
.y56{bottom:1089.150000px;}
.y55{bottom:1106.430000px;}
.y54{bottom:1123.530000px;}
.y53{bottom:1140.840000px;}
.h20{height:17.280000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h25{height:30.420000px;}
.h21{height:30.600000px;}
.h23{height:30.780000px;}
.h26{height:30.816000px;}
.h24{height:30.960000px;}
.h22{height:31.140000px;}
.h2{height:32.940000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.720000px;}
.h1b{height:38.818125px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h1a{height:42.281367px;}
.h27{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1f{height:48.088125px;}
.h6{height:48.224531px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:191.190000px;}
.h16{height:241.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.w8{width:223.275000px;}
.wb{width:320.835000px;}
.wa{width:380.775000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x15{left:12.600000px;}
.xd{left:56.016000px;}
.xe{left:69.516000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x1a{left:82.080000px;}
.x12{left:86.610000px;}
.x5{left:98.130000px;}
.x10{left:99.750000px;}
.x1e{left:108.035987px;}
.x11{left:110.010000px;}
.x17{left:114.155987px;}
.x20{left:156.449987px;}
.x39{left:159.869987px;}
.x21{left:167.789987px;}
.x32{left:170.669987px;}
.x1d{left:177.149987px;}
.xf{left:179.310000px;}
.x22{left:182.369987px;}
.x23{left:193.709987px;}
.x3a{left:195.329987px;}
.x3b{left:206.489987px;}
.x13{left:215.175000px;}
.x6{left:224.850000px;}
.x3c{left:238.169987px;}
.x19{left:243.569987px;}
.x24{left:246.989987px;}
.x3d{left:249.149987px;}
.x25{left:258.329987px;}
.x3e{left:267.869987px;}
.x3f{left:279.074987px;}
.x33{left:280.154987px;}
.x9{left:288.435000px;}
.x34{left:291.674987px;}
.x14{left:296.175000px;}
.x26{left:299.774987px;}
.x40{left:326.774987px;}
.x41{left:337.934987px;}
.x27{left:340.274987px;}
.x35{left:343.514987px;}
.x7{left:346.395000px;}
.x28{left:351.794987px;}
.x36{left:355.034987px;}
.x42{left:359.894987px;}
.x29{left:364.394987px;}
.x8{left:367.635000px;}
.xb{left:369.975000px;}
.x43{left:371.054987px;}
.xc{left:373.575000px;}
.x2a{left:375.734987px;}
.x44{left:381.854987px;}
.x45{left:393.014987px;}
.x1f{left:396.794987px;}
.x18{left:401.294987px;}
.x46{left:403.994987px;}
.x37{left:407.774987px;}
.x47{left:414.974987px;}
.x38{left:419.474987px;}
.x2b{left:423.974987px;}
.x2c{left:435.314987px;}
.xa{left:455.700000px;}
.x2d{left:457.274987px;}
.x1b{left:464.115000px;}
.x48{left:466.484987px;}
.x2e{left:468.824987px;}
.x16{left:735.629987px;}
.x2f{left:740.309987px;}
.x3{left:745.890000px;}
.x1c{left:746.969987px;}
.x30{left:751.829987px;}
.x31{left:803.129987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls16{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls1f{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.058880pt;}
.lsd{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls20{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:2.720000pt;}
.ls19{letter-spacing:3.360000pt;}
.ls17{letter-spacing:4.640000pt;}
.ls18{letter-spacing:7.200000pt;}
.ls7{letter-spacing:8.480000pt;}
.ls1c{letter-spacing:13.760000pt;}
.ls1e{letter-spacing:14.672640pt;}
.ls1d{letter-spacing:40.912640pt;}
.ls1b{letter-spacing:57.040640pt;}
.ws14{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws1a{word-spacing:-13.545600pt;}
.ws15{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws19{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.185067pt;}
.ws18{word-spacing:-13.096533pt;}
.ws12{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.870933pt;}
.wse{word-spacing:-12.592000pt;}
.ws17{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.947520pt;}
.ws5{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws13{word-spacing:0.000000pt;}
._6{margin-left:-4.868267pt;}
._4{margin-left:-3.699627pt;}
._3{margin-left:-2.026667pt;}
._0{margin-left:-0.917333pt;}
._1{width:0.938667pt;}
._5{width:2.410667pt;}
._d{width:3.310293pt;}
._2{width:4.202667pt;}
._9{width:5.346987pt;}
._a{width:6.392533pt;}
._f{width:7.307307pt;}
._c{width:8.446080pt;}
._b{width:9.455360pt;}
._11{width:10.602880pt;}
._e{width:12.079360pt;}
._10{width:14.767360pt;}
._7{width:16.300373pt;}
._8{width:17.670187pt;}
._13{width:18.602453pt;}
._15{width:20.376960pt;}
._14{width:21.721813pt;}
._12{width:26.404693pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y3c{bottom:3.520000pt;}
.y19{bottom:4.480000pt;}
.ye{bottom:8.480000pt;}
.y29{bottom:8.800000pt;}
.y3a{bottom:9.440000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y96{bottom:14.720000pt;}
.y9a{bottom:14.880000pt;}
.y9f{bottom:14.920000pt;}
.y9b{bottom:15.040000pt;}
.y98{bottom:15.200000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.760000pt;}
.y36{bottom:18.240000pt;}
.y3b{bottom:19.840000pt;}
.y28{bottom:22.400000pt;}
.y39{bottom:22.560000pt;}
.y18{bottom:26.240000pt;}
.yb{bottom:26.880000pt;}
.y35{bottom:33.440000pt;}
.y27{bottom:38.080000pt;}
.y17{bottom:40.800000pt;}
.ya{bottom:41.280000pt;}
.y34{bottom:48.800000pt;}
.y5{bottom:51.040000pt;}
.y26{bottom:53.466667pt;}
.y16{bottom:55.560000pt;}
.y33{bottom:64.186667pt;}
.y9{bottom:65.280000pt;}
.y25{bottom:68.666667pt;}
.y15{bottom:69.480000pt;}
.y1{bottom:69.632000pt;}
.y14{bottom:78.760000pt;}
.y32{bottom:79.546667pt;}
.y8{bottom:82.720000pt;}
.y24{bottom:84.506667pt;}
.y31{bottom:94.906667pt;}
.y13{bottom:95.080000pt;}
.y7{bottom:98.906667pt;}
.y23{bottom:100.026667pt;}
.y8e{bottom:109.312000pt;}
.y30{bottom:110.266667pt;}
.y12{bottom:112.040000pt;}
.y22{bottom:115.386667pt;}
.y52{bottom:118.112000pt;}
.yc5{bottom:119.392000pt;}
.ye8{bottom:119.872000pt;}
.y8d{bottom:124.672000pt;}
.y2f{bottom:125.466667pt;}
.y21{bottom:130.906667pt;}
.y51{bottom:133.466667pt;}
.yc4{bottom:134.746667pt;}
.y11{bottom:134.920000pt;}
.ye7{bottom:135.226667pt;}
.y8c{bottom:140.026667pt;}
.y2e{bottom:140.826667pt;}
.y20{bottom:146.426667pt;}
.y50{bottom:148.826667pt;}
.yc3{bottom:149.946667pt;}
.ye6{bottom:150.586667pt;}
.y8b{bottom:155.386667pt;}
.y2d{bottom:156.186667pt;}
.y10{bottom:156.520000pt;}
.y4f{bottom:164.186667pt;}
.y1f{bottom:164.346667pt;}
.yc2{bottom:165.306667pt;}
.ye5{bottom:165.946667pt;}
.y8a{bottom:170.746667pt;}
.y2c{bottom:171.546667pt;}
.y4e{bottom:179.386667pt;}
.yc1{bottom:180.666667pt;}
.ye4{bottom:181.306667pt;}
.y89{bottom:186.106667pt;}
.y2b{bottom:186.906667pt;}
.y1e{bottom:188.826667pt;}
.y4d{bottom:194.746667pt;}
.yc0{bottom:196.026667pt;}
.ye3{bottom:196.666667pt;}
.y88{bottom:201.306667pt;}
.y2a{bottom:202.106667pt;}
.y1d{bottom:204.506667pt;}
.y4c{bottom:210.106667pt;}
.ybf{bottom:211.386667pt;}
.ye2{bottom:211.866667pt;}
.y87{bottom:216.666667pt;}
.y4b{bottom:225.466667pt;}
.ybe{bottom:226.746667pt;}
.ye1{bottom:227.226667pt;}
.y86{bottom:232.026667pt;}
.y4a{bottom:240.826667pt;}
.ybd{bottom:241.946667pt;}
.ye0{bottom:242.586667pt;}
.y85{bottom:247.386667pt;}
.y49{bottom:256.186667pt;}
.ybc{bottom:257.306667pt;}
.ydf{bottom:257.946667pt;}
.y84{bottom:262.746667pt;}
.y48{bottom:271.386667pt;}
.ya0{bottom:271.546667pt;}
.ybb{bottom:272.666667pt;}
.yde{bottom:273.306667pt;}
.y83{bottom:278.106667pt;}
.y9e{bottom:284.986667pt;}
.y47{bottom:286.746667pt;}
.yba{bottom:288.026667pt;}
.ydd{bottom:288.506667pt;}
.y82{bottom:293.306667pt;}
.y46{bottom:302.146667pt;}
.yb9{bottom:303.426667pt;}
.ydc{bottom:303.906667pt;}
.y81{bottom:308.706667pt;}
.y9d{bottom:313.346667pt;}
.y45{bottom:317.506667pt;}
.yb8{bottom:318.786667pt;}
.ydb{bottom:319.266667pt;}
.y80{bottom:324.066667pt;}
.y44{bottom:332.866667pt;}
.yb7{bottom:333.986667pt;}
.yda{bottom:334.626667pt;}
.y7f{bottom:339.426667pt;}
.y9c{bottom:341.986667pt;}
.y43{bottom:348.226667pt;}
.yb6{bottom:349.346667pt;}
.yd9{bottom:349.986667pt;}
.y7e{bottom:354.786667pt;}
.y42{bottom:363.426667pt;}
.yb5{bottom:364.706667pt;}
.yd8{bottom:365.346667pt;}
.y7d{bottom:370.146667pt;}
.y41{bottom:378.786667pt;}
.yb4{bottom:380.066667pt;}
.yd7{bottom:380.546667pt;}
.y7c{bottom:385.346667pt;}
.y40{bottom:394.146667pt;}
.yb3{bottom:395.426667pt;}
.yd6{bottom:395.906667pt;}
.y99{bottom:398.626667pt;}
.y7b{bottom:400.706667pt;}
.y3f{bottom:409.506667pt;}
.yb2{bottom:410.626667pt;}
.yd5{bottom:411.266667pt;}
.y7a{bottom:416.066667pt;}
.y3e{bottom:424.866667pt;}
.yb1{bottom:425.986667pt;}
.yd4{bottom:426.626667pt;}
.y97{bottom:426.946667pt;}
.y79{bottom:431.426667pt;}
.y3d{bottom:440.066667pt;}
.yb0{bottom:441.346667pt;}
.yd3{bottom:441.986667pt;}
.y78{bottom:446.786667pt;}
.y38{bottom:452.546667pt;}
.y95{bottom:455.586667pt;}
.yaf{bottom:456.706667pt;}
.yd2{bottom:457.346667pt;}
.y77{bottom:461.986667pt;}
.yae{bottom:472.066667pt;}
.yd1{bottom:472.546667pt;}
.y76{bottom:477.346667pt;}
.y94{bottom:483.746667pt;}
.y1c{bottom:485.186667pt;}
.yad{bottom:487.426667pt;}
.yd0{bottom:488.866667pt;}
.y75{bottom:492.706667pt;}
.yac{bottom:502.626667pt;}
.y93{bottom:503.426667pt;}
.ycf{bottom:504.226667pt;}
.y74{bottom:508.066667pt;}
.yab{bottom:517.986667pt;}
.y92{bottom:518.626667pt;}
.yce{bottom:519.586667pt;}
.y73{bottom:523.426667pt;}
.yaa{bottom:533.346667pt;}
.y91{bottom:533.986667pt;}
.ycd{bottom:534.946667pt;}
.y72{bottom:538.813333pt;}
.ya9{bottom:548.733333pt;}
.y90{bottom:549.373333pt;}
.ycc{bottom:550.173333pt;}
.y71{bottom:554.013333pt;}
.y8f{bottom:561.853333pt;}
.ya8{bottom:564.093333pt;}
.ycb{bottom:566.493333pt;}
.y70{bottom:569.373333pt;}
.ya7{bottom:579.453333pt;}
.yca{bottom:582.813333pt;}
.y6f{bottom:584.733333pt;}
.ya6{bottom:594.653333pt;}
.yc9{bottom:598.173333pt;}
.y6e{bottom:600.093333pt;}
.ya5{bottom:610.013333pt;}
.yc8{bottom:614.493333pt;}
.y6d{bottom:615.453333pt;}
.ya4{bottom:625.373333pt;}
.yc7{bottom:629.853333pt;}
.y6c{bottom:630.813333pt;}
.ya3{bottom:640.733333pt;}
.yc6{bottom:645.053333pt;}
.y6b{bottom:646.013333pt;}
.ya2{bottom:656.093333pt;}
.y6a{bottom:661.373333pt;}
.ya1{bottom:668.413333pt;}
.y69{bottom:676.733333pt;}
.y68{bottom:692.093333pt;}
.y1a{bottom:699.773333pt;}
.y67{bottom:707.453333pt;}
.y66{bottom:722.653333pt;}
.yf{bottom:726.013333pt;}
.y65{bottom:738.013333pt;}
.y64{bottom:753.373333pt;}
.y63{bottom:768.733333pt;}
.y62{bottom:784.133333pt;}
.y61{bottom:799.493333pt;}
.y60{bottom:814.693333pt;}
.y5f{bottom:830.053333pt;}
.y5e{bottom:845.413333pt;}
.y5d{bottom:860.773333pt;}
.y5c{bottom:876.133333pt;}
.y5b{bottom:891.493333pt;}
.yd{bottom:895.973333pt;}
.y5a{bottom:906.693333pt;}
.y6{bottom:918.533333pt;}
.y59{bottom:922.053333pt;}
.y58{bottom:937.413333pt;}
.y57{bottom:952.773333pt;}
.y56{bottom:968.133333pt;}
.y55{bottom:983.493333pt;}
.y54{bottom:998.693333pt;}
.y53{bottom:1014.080000pt;}
.h20{height:15.360000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h25{height:27.040000pt;}
.h21{height:27.200000pt;}
.h23{height:27.360000pt;}
.h26{height:27.392000pt;}
.h24{height:27.520000pt;}
.h22{height:27.680000pt;}
.h2{height:29.280000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1b{height:34.505000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h1a{height:37.583438pt;}
.h27{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h6{height:42.866250pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:169.946667pt;}
.h16{height:214.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.w8{width:198.466667pt;}
.wb{width:285.186667pt;}
.wa{width:338.466667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x15{left:11.200000pt;}
.xd{left:49.792000pt;}
.xe{left:61.792000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x1a{left:72.960000pt;}
.x12{left:76.986667pt;}
.x5{left:87.226667pt;}
.x10{left:88.666667pt;}
.x1e{left:96.031988pt;}
.x11{left:97.786667pt;}
.x17{left:101.471988pt;}
.x20{left:139.066655pt;}
.x39{left:142.106655pt;}
.x21{left:149.146655pt;}
.x32{left:151.706655pt;}
.x1d{left:157.466655pt;}
.xf{left:159.386667pt;}
.x22{left:162.106655pt;}
.x23{left:172.186655pt;}
.x3a{left:173.626655pt;}
.x3b{left:183.546655pt;}
.x13{left:191.266667pt;}
.x6{left:199.866667pt;}
.x3c{left:211.706655pt;}
.x19{left:216.506655pt;}
.x24{left:219.546655pt;}
.x3d{left:221.466655pt;}
.x25{left:229.626655pt;}
.x3e{left:238.106655pt;}
.x3f{left:248.066655pt;}
.x33{left:249.026655pt;}
.x9{left:256.386667pt;}
.x34{left:259.266655pt;}
.x14{left:263.266667pt;}
.x26{left:266.466655pt;}
.x40{left:290.466655pt;}
.x41{left:300.386655pt;}
.x27{left:302.466655pt;}
.x35{left:305.346655pt;}
.x7{left:307.906667pt;}
.x28{left:312.706655pt;}
.x36{left:315.586655pt;}
.x42{left:319.906655pt;}
.x29{left:323.906655pt;}
.x8{left:326.786667pt;}
.xb{left:328.866667pt;}
.x43{left:329.826655pt;}
.xc{left:332.066667pt;}
.x2a{left:333.986655pt;}
.x44{left:339.426655pt;}
.x45{left:349.346655pt;}
.x1f{left:352.706655pt;}
.x18{left:356.706655pt;}
.x46{left:359.106655pt;}
.x37{left:362.466655pt;}
.x47{left:368.866655pt;}
.x38{left:372.866655pt;}
.x2b{left:376.866655pt;}
.x2c{left:386.946655pt;}
.xa{left:405.066667pt;}
.x2d{left:406.466655pt;}
.x1b{left:412.546667pt;}
.x48{left:414.653322pt;}
.x2e{left:416.733322pt;}
.x16{left:653.893322pt;}
.x2f{left:658.053322pt;}
.x3{left:663.013333pt;}
.x1c{left:663.973322pt;}
.x30{left:668.293322pt;}
.x31{left:713.893322pt;}
}




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