
    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_61e26bcd1771edb85db157b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_0f7280a0f9bc239ecd32da8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5a79678e45ec3d0df5323c81.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_2a38c279e48c5855f58a4e98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fde73d9776d54a1d4e027415.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_39a4c4846ca13decb57a230b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.080566;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_0ba26635ba13fcc8b399d8c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_f82528691591655dfcfe8158.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_994e60357cfb56ee5e6347a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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_04f2e97e57723151ec43c16a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-61.920000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.291600px;}
.ls1d{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.440000px;}
.ls2{letter-spacing:2.160000px;}
.ls12{letter-spacing:2.880000px;}
.ls1a{letter-spacing:3.600000px;}
.lse{letter-spacing:4.320000px;}
.lsf{letter-spacing:5.940000px;}
.ls1f{letter-spacing:7.200000px;}
.ls20{letter-spacing:7.920000px;}
.ls17{letter-spacing:8.640000px;}
.ls21{letter-spacing:9.360000px;}
.ls18{letter-spacing:10.080000px;}
.ls11{letter-spacing:12.240000px;}
.ls13{letter-spacing:13.680000px;}
.lsb{letter-spacing:14.400000px;}
.ls24{letter-spacing:15.840000px;}
.lsa{letter-spacing:22.320000px;}
.ls1{letter-spacing:28.800000px;}
.ls4{letter-spacing:30.960000px;}
.ls3{letter-spacing:32.400000px;}
.ls22{letter-spacing:34.020000px;}
.ls10{letter-spacing:49.680000px;}
.ls23{letter-spacing:53.424000px;}
.ls19{letter-spacing:62.760000px;}
.ls7{letter-spacing:198.876000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.940000px;}
.ws7{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.640000px;}
.ws6{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.580000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.239200px;}
._1{margin-left:-1.056240px;}
._0{width:1.347840px;}
._12{width:2.593440px;}
._15{width:3.653040px;}
._17{width:4.855920px;}
._16{width:5.928240px;}
._18{width:7.287840px;}
._1d{width:8.468640px;}
._1c{width:9.936000px;}
._20{width:11.160000px;}
._21{width:12.168000px;}
._24{width:13.172400px;}
._1a{width:14.256000px;}
._7{width:15.696000px;}
._25{width:16.704000px;}
._1b{width:19.440000px;}
._14{width:21.420480px;}
._13{width:22.608000px;}
._5{width:23.832000px;}
._6{width:25.128000px;}
._10{width:26.352000px;}
._4{width:27.720000px;}
._3{width:29.232000px;}
._11{width:30.456000px;}
._d{width:31.644000px;}
._c{width:32.952240px;}
._2c{width:34.295760px;}
._23{width:36.387360px;}
._19{width:37.440000px;}
._2d{width:38.568000px;}
._22{width:39.816000px;}
._2b{width:41.434800px;}
._27{width:42.624000px;}
._28{width:43.803360px;}
._9{width:45.375600px;}
._8{width:46.512000px;}
._1e{width:48.836160px;}
._1f{width:50.739840px;}
._a{width:53.640000px;}
._b{width:55.100160px;}
._29{width:62.064000px;}
._2a{width:63.128160px;}
._26{width:65.016000px;}
._e{width:73.872000px;}
._f{width:106.704000px;}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y7e{bottom:-26.820000px;}
.y74{bottom:-7.920000px;}
.y8a{bottom:-6.840000px;}
.y7d{bottom:-6.120000px;}
.ybc{bottom:-4.500000px;}
.yaf{bottom:-4.320000px;}
.y9f{bottom:-3.780000px;}
.y0{bottom:0.000000px;}
.y89{bottom:10.440000px;}
.y83{bottom:10.620000px;}
.yd7{bottom:12.060000px;}
.yca{bottom:12.420000px;}
.ybb{bottom:12.780000px;}
.y9e{bottom:13.500000px;}
.y7c{bottom:13.905000px;}
.yb5{bottom:15.480000px;}
.yd{bottom:16.020000px;}
.y73{bottom:16.200000px;}
.yae{bottom:16.380000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.yaa{bottom:21.090000px;}
.yce{bottom:22.320000px;}
.y76{bottom:23.760000px;}
.y8c{bottom:27.540000px;}
.y88{bottom:27.720000px;}
.y4{bottom:27.900000px;}
.y82{bottom:28.260000px;}
.ya4{bottom:28.620000px;}
.yd4{bottom:29.190000px;}
.yd6{bottom:29.700000px;}
.yba{bottom:29.880000px;}
.yc9{bottom:30.060000px;}
.y9d{bottom:30.780000px;}
.y7b{bottom:31.185000px;}
.yc7{bottom:31.320000px;}
.yb4{bottom:33.300000px;}
.y9a{bottom:34.950000px;}
.ycc{bottom:35.640000px;}
.yad{bottom:37.080000px;}
.y90{bottom:38.160000px;}
.ya9{bottom:38.730000px;}
.y94{bottom:39.060000px;}
.yc4{bottom:41.400000px;}
.y87{bottom:45.000000px;}
.y6{bottom:45.360000px;}
.y81{bottom:45.540000px;}
.ya3{bottom:46.260000px;}
.yd5{bottom:46.980000px;}
.yb9{bottom:47.160000px;}
.y9c{bottom:47.880000px;}
.yd3{bottom:48.450000px;}
.y7a{bottom:48.465000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.yc6{bottom:49.140000px;}
.yb3{bottom:50.580000px;}
.y99{bottom:52.590000px;}
.y8f{bottom:55.440000px;}
.ya8{bottom:56.010000px;}
.y93{bottom:56.700000px;}
.yac{bottom:57.780000px;}
.yc3{bottom:60.300000px;}
.y86{bottom:62.280000px;}
.y80{bottom:62.640000px;}
.ya2{bottom:63.540000px;}
.yb8{bottom:64.440000px;}
.y79{bottom:65.745000px;}
.yd2{bottom:66.990000px;}
.yb2{bottom:67.860000px;}
.ybf{bottom:68.220000px;}
.y2{bottom:69.300000px;}
.y98{bottom:69.870000px;}
.y8e{bottom:72.720000px;}
.ya7{bottom:73.290000px;}
.y92{bottom:73.980000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.yc2{bottom:78.840000px;}
.y85{bottom:79.380000px;}
.ya1{bottom:80.670000px;}
.yb7{bottom:81.720000px;}
.y78{bottom:82.845000px;}
.yb1{bottom:85.140000px;}
.yd1{bottom:85.530000px;}
.y97{bottom:87.150000px;}
.ybe{bottom:87.480000px;}
.ya6{bottom:90.570000px;}
.ya{bottom:91.116000px;}
.yc1{bottom:97.560000px;}
.yd0{bottom:104.250000px;}
.y96{bottom:104.430000px;}
.ya5{bottom:107.670000px;}
.y71{bottom:131.256000px;}
.y38{bottom:139.536000px;}
.ye6{bottom:139.896000px;}
.y70{bottom:155.190000px;}
.yef{bottom:163.110000px;}
.y37{bottom:163.290000px;}
.ye5{bottom:163.650000px;}
.y6f{bottom:178.950000px;}
.y36{bottom:187.050000px;}
.ye4{bottom:187.410000px;}
.y6e{bottom:202.710000px;}
.yee{bottom:210.810000px;}
.y35{bottom:210.990000px;}
.ye3{bottom:211.350000px;}
.y6d{bottom:226.470000px;}
.yed{bottom:234.570000px;}
.y34{bottom:234.750000px;}
.ye2{bottom:235.110000px;}
.y6c{bottom:250.410000px;}
.yec{bottom:258.330000px;}
.y33{bottom:258.510000px;}
.ye1{bottom:258.870000px;}
.y6b{bottom:274.170000px;}
.y32{bottom:282.315000px;}
.ye0{bottom:282.675000px;}
.y6a{bottom:297.975000px;}
.y31{bottom:306.075000px;}
.ydf{bottom:306.435000px;}
.ycb{bottom:314.535000px;}
.y69{bottom:321.735000px;}
.yeb{bottom:329.835000px;}
.y30{bottom:330.375000px;}
.y68{bottom:343.695000px;}
.yea{bottom:353.595000px;}
.y2f{bottom:354.135000px;}
.y67{bottom:359.355000px;}
.y66{bottom:374.835000px;}
.ye9{bottom:377.535000px;}
.y2e{bottom:377.895000px;}
.y65{bottom:390.315000px;}
.yab{bottom:397.695000px;}
.ye8{bottom:401.295000px;}
.y2d{bottom:401.655000px;}
.y64{bottom:405.795000px;}
.yc0{bottom:406.695000px;}
.ybd{bottom:407.775000px;}
.yb0{bottom:409.035000px;}
.y63{bottom:421.455000px;}
.ye7{bottom:425.415000px;}
.y2c{bottom:425.595000px;}
.y62{bottom:436.935000px;}
.y2b{bottom:449.355000px;}
.y61{bottom:452.415000px;}
.y60{bottom:467.895000px;}
.y2a{bottom:473.115000px;}
.y5f{bottom:483.555000px;}
.y29{bottom:496.875000px;}
.ya0{bottom:497.775000px;}
.y5e{bottom:499.035000px;}
.y5d{bottom:514.515000px;}
.y28{bottom:520.815000px;}
.y5c{bottom:529.995000px;}
.y27{bottom:544.215000px;}
.yde{bottom:544.575000px;}
.y5b{bottom:545.655000px;}
.y95{bottom:556.275000px;}
.ycf{bottom:557.535000px;}
.y5a{bottom:561.135000px;}
.y26{bottom:568.005000px;}
.ydd{bottom:568.365000px;}
.y59{bottom:576.645000px;}
.y25{bottom:592.125000px;}
.y58{bottom:607.785000px;}
.y24{bottom:616.065000px;}
.y57{bottom:623.265000px;}
.y91{bottom:628.305000px;}
.y56{bottom:638.745000px;}
.y23{bottom:639.825000px;}
.y55{bottom:654.225000px;}
.y22{bottom:663.585000px;}
.y54{bottom:669.885000px;}
.y53{bottom:685.365000px;}
.y21{bottom:687.345000px;}
.y52{bottom:700.845000px;}
.y20{bottom:711.285000px;}
.yb6{bottom:715.065000px;}
.y51{bottom:716.325000px;}
.y84{bottom:719.565000px;}
.y8b{bottom:726.225000px;}
.y50{bottom:731.985000px;}
.y1f{bottom:735.045000px;}
.y4f{bottom:747.465000px;}
.y8d{bottom:752.145000px;}
.y1e{bottom:758.805000px;}
.y4e{bottom:762.945000px;}
.y4d{bottom:778.425000px;}
.y1d{bottom:782.565000px;}
.y4c{bottom:793.905000px;}
.y1c{bottom:806.325000px;}
.y4b{bottom:809.565000px;}
.y4a{bottom:825.045000px;}
.y1b{bottom:830.265000px;}
.y49{bottom:840.525000px;}
.y77{bottom:846.645000px;}
.y1a{bottom:854.070000px;}
.y48{bottom:856.050000px;}
.y7f{bottom:857.850000px;}
.y9b{bottom:863.610000px;}
.y47{bottom:871.710000px;}
.yc5{bottom:872.610000px;}
.y19{bottom:877.830000px;}
.y46{bottom:887.190000px;}
.y18{bottom:901.590000px;}
.y45{bottom:902.670000px;}
.y44{bottom:918.150000px;}
.y17{bottom:925.170000px;}
.ydc{bottom:925.530000px;}
.y43{bottom:933.810000px;}
.y16{bottom:949.290000px;}
.y42{bottom:964.770000px;}
.y15{bottom:973.050000px;}
.yc8{bottom:973.770000px;}
.ycd{bottom:976.110000px;}
.y75{bottom:977.190000px;}
.y41{bottom:980.250000px;}
.y40{bottom:995.910000px;}
.y14{bottom:996.450000px;}
.ydb{bottom:996.810000px;}
.y3f{bottom:1011.390000px;}
.y13{bottom:1020.750000px;}
.y3e{bottom:1026.870000px;}
.y3d{bottom:1042.350000px;}
.y12{bottom:1044.510000px;}
.y3c{bottom:1058.010000px;}
.y72{bottom:1067.190000px;}
.y11{bottom:1067.910000px;}
.yda{bottom:1068.270000px;}
.y3b{bottom:1073.490000px;}
.y10{bottom:1091.670000px;}
.yd9{bottom:1092.030000px;}
.y3a{bottom:1104.450000px;}
.yf{bottom:1115.610000px;}
.yd8{bottom:1115.970000px;}
.y39{bottom:1120.110000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h8{height:33.120000px;}
.he{height:35.640000px;}
.h10{height:37.800000px;}
.h13{height:41.902031px;}
.h22{height:43.560000px;}
.h23{height:49.140000px;}
.hc{height:50.484375px;}
.hb{height:52.628906px;}
.hd{height:52.998047px;}
.h11{height:58.651172px;}
.h26{height:60.480000px;}
.h27{height:60.679688px;}
.h19{height:61.380000px;}
.h21{height:62.640000px;}
.h24{height:65.010937px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h1c{height:73.980000px;}
.h28{height:74.004654px;}
.h14{height:76.140000px;}
.h4{height:82.635820px;}
.hf{height:84.898125px;}
.h16{height:86.220000px;}
.h17{height:87.480000px;}
.h15{height:92.880000px;}
.h1a{height:94.176000px;}
.h1e{height:95.220000px;}
.h12{height:96.336000px;}
.h1d{height:98.640000px;}
.h1f{height:100.980000px;}
.h2{height:109.800000px;}
.h20{height:111.060000px;}
.h25{height:117.756000px;}
.h18{height:117.936000px;}
.h1b{height:121.176000px;}
.h5{height:129.250898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w6{width:50.400000px;}
.w4{width:61.590000px;}
.wa{width:92.340000px;}
.w2{width:125.856000px;}
.w15{width:138.600000px;}
.wc{width:139.680000px;}
.w12{width:139.860000px;}
.w11{width:143.280000px;}
.w1d{width:152.310000px;}
.w1b{width:153.360000px;}
.we{width:154.470000px;}
.wd{width:157.860000px;}
.w18{width:158.940000px;}
.w19{width:164.520000px;}
.w13{width:165.600000px;}
.w10{width:170.310000px;}
.w17{width:174.780000px;}
.w1e{width:175.890000px;}
.w1c{width:187.050000px;}
.w1a{width:201.630000px;}
.w16{width:202.710000px;}
.wf{width:203.970000px;}
.w14{width:208.470000px;}
.w1f{width:214.230000px;}
.wb{width:624.885000px;}
.w3{width:705.525000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x27{left:10.800000px;}
.x34{left:12.960000px;}
.x44{left:14.430000px;}
.x23{left:17.820000px;}
.x7{left:19.800000px;}
.x32{left:20.910000px;}
.x3a{left:23.445000px;}
.x1{left:25.199970px;}
.x48{left:26.325000px;}
.x6{left:27.354000px;}
.x2d{left:29.205000px;}
.x3{left:30.239973px;}
.x24{left:32.220000px;}
.x40{left:33.300000px;}
.x46{left:34.425000px;}
.x33{left:36.174000px;}
.x22{left:37.260000px;}
.x38{left:38.340000px;}
.x26{left:41.400000px;}
.x2a{left:43.050000px;}
.x29{left:44.130000px;}
.x37{left:46.260000px;}
.x25{left:48.600000px;}
.x47{left:50.625000px;}
.x43{left:52.914000px;}
.x31{left:56.550000px;}
.x2c{left:61.065000px;}
.x3c{left:70.965000px;}
.x5{left:71.994000px;}
.x2e{left:76.545000px;}
.x3d{left:79.965000px;}
.x49{left:88.245000px;}
.x2f{left:101.925000px;}
.x3b{left:104.265000px;}
.x42{left:122.436000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x35{left:129.276000px;}
.x3e{left:130.356000px;}
.x1f{left:145.485000px;}
.x4a{left:148.895987px;}
.x13{left:154.829987px;}
.x1b{left:180.749987px;}
.x1e{left:189.930000px;}
.x18{left:191.369987px;}
.x1c{left:197.129987px;}
.x15{left:241.949987px;}
.x12{left:275.249987px;}
.x45{left:291.270000px;}
.x3f{left:292.395000px;}
.x21{left:302.475000px;}
.x41{left:303.735000px;}
.x20{left:312.375000px;}
.x1a{left:333.074987px;}
.x14{left:342.794987px;}
.x17{left:375.554987px;}
.x16{left:404.354987px;}
.x19{left:425.594987px;}
.x30{left:486.975000px;}
.x28{left:490.395000px;}
.x36{left:492.765000px;}
.x1d{left:510.404987px;}
.xb{left:619.305000px;}
.xc{left:669.705000px;}
.x39{left:672.765000px;}
.x2b{left:677.265000px;}
.xd{left:686.805000px;}
.xe{left:704.310000px;}
.xf{left:721.590000px;}
.x10{left:738.870000px;}
.x8{left:831.390000px;}
@media print{
.v1{vertical-align:-55.040000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.259200pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.920000pt;}
.ls12{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.840000pt;}
.lsf{letter-spacing:5.280000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls20{letter-spacing:7.040000pt;}
.ls17{letter-spacing:7.680000pt;}
.ls21{letter-spacing:8.320000pt;}
.ls18{letter-spacing:8.960000pt;}
.ls11{letter-spacing:10.880000pt;}
.ls13{letter-spacing:12.160000pt;}
.lsb{letter-spacing:12.800000pt;}
.ls24{letter-spacing:14.080000pt;}
.lsa{letter-spacing:19.840000pt;}
.ls1{letter-spacing:25.600000pt;}
.ls4{letter-spacing:27.520000pt;}
.ls3{letter-spacing:28.800000pt;}
.ls22{letter-spacing:30.240000pt;}
.ls10{letter-spacing:44.160000pt;}
.ls23{letter-spacing:47.488000pt;}
.ls19{letter-spacing:55.786667pt;}
.ls7{letter-spacing:176.778667pt;}
.ws10{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.680000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-1.990400pt;}
._1{margin-left:-0.938880pt;}
._0{width:1.198080pt;}
._12{width:2.305280pt;}
._15{width:3.247147pt;}
._17{width:4.316373pt;}
._16{width:5.269547pt;}
._18{width:6.478080pt;}
._1d{width:7.527680pt;}
._1c{width:8.832000pt;}
._20{width:9.920000pt;}
._21{width:10.816000pt;}
._24{width:11.708800pt;}
._1a{width:12.672000pt;}
._7{width:13.952000pt;}
._25{width:14.848000pt;}
._1b{width:17.280000pt;}
._14{width:19.040427pt;}
._13{width:20.096000pt;}
._5{width:21.184000pt;}
._6{width:22.336000pt;}
._10{width:23.424000pt;}
._4{width:24.640000pt;}
._3{width:25.984000pt;}
._11{width:27.072000pt;}
._d{width:28.128000pt;}
._c{width:29.290880pt;}
._2c{width:30.485120pt;}
._23{width:32.344320pt;}
._19{width:33.280000pt;}
._2d{width:34.282667pt;}
._22{width:35.392000pt;}
._2b{width:36.830933pt;}
._27{width:37.888000pt;}
._28{width:38.936320pt;}
._9{width:40.333867pt;}
._8{width:41.344000pt;}
._1e{width:43.409920pt;}
._1f{width:45.102080pt;}
._a{width:47.680000pt;}
._b{width:48.977920pt;}
._29{width:55.168000pt;}
._2a{width:56.113920pt;}
._26{width:57.792000pt;}
._e{width:65.664000pt;}
._f{width:94.848000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y7e{bottom:-23.840000pt;}
.y74{bottom:-7.040000pt;}
.y8a{bottom:-6.080000pt;}
.y7d{bottom:-5.440000pt;}
.ybc{bottom:-4.000000pt;}
.yaf{bottom:-3.840000pt;}
.y9f{bottom:-3.360000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:9.280000pt;}
.y83{bottom:9.440000pt;}
.yd7{bottom:10.720000pt;}
.yca{bottom:11.040000pt;}
.ybb{bottom:11.360000pt;}
.y9e{bottom:12.000000pt;}
.y7c{bottom:12.360000pt;}
.yb5{bottom:13.760000pt;}
.yd{bottom:14.240000pt;}
.y73{bottom:14.400000pt;}
.yae{bottom:14.560000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.yaa{bottom:18.746667pt;}
.yce{bottom:19.840000pt;}
.y76{bottom:21.120000pt;}
.y8c{bottom:24.480000pt;}
.y88{bottom:24.640000pt;}
.y4{bottom:24.800000pt;}
.y82{bottom:25.120000pt;}
.ya4{bottom:25.440000pt;}
.yd4{bottom:25.946667pt;}
.yd6{bottom:26.400000pt;}
.yba{bottom:26.560000pt;}
.yc9{bottom:26.720000pt;}
.y9d{bottom:27.360000pt;}
.y7b{bottom:27.720000pt;}
.yc7{bottom:27.840000pt;}
.yb4{bottom:29.600000pt;}
.y9a{bottom:31.066667pt;}
.ycc{bottom:31.680000pt;}
.yad{bottom:32.960000pt;}
.y90{bottom:33.920000pt;}
.ya9{bottom:34.426667pt;}
.y94{bottom:34.720000pt;}
.yc4{bottom:36.800000pt;}
.y87{bottom:40.000000pt;}
.y6{bottom:40.320000pt;}
.y81{bottom:40.480000pt;}
.ya3{bottom:41.120000pt;}
.yd5{bottom:41.760000pt;}
.yb9{bottom:41.920000pt;}
.y9c{bottom:42.560000pt;}
.yd3{bottom:43.066667pt;}
.y7a{bottom:43.080000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.yc6{bottom:43.680000pt;}
.yb3{bottom:44.960000pt;}
.y99{bottom:46.746667pt;}
.y8f{bottom:49.280000pt;}
.ya8{bottom:49.786667pt;}
.y93{bottom:50.400000pt;}
.yac{bottom:51.360000pt;}
.yc3{bottom:53.600000pt;}
.y86{bottom:55.360000pt;}
.y80{bottom:55.680000pt;}
.ya2{bottom:56.480000pt;}
.yb8{bottom:57.280000pt;}
.y79{bottom:58.440000pt;}
.yd2{bottom:59.546667pt;}
.yb2{bottom:60.320000pt;}
.ybf{bottom:60.640000pt;}
.y2{bottom:61.600000pt;}
.y98{bottom:62.106667pt;}
.y8e{bottom:64.640000pt;}
.ya7{bottom:65.146667pt;}
.y92{bottom:65.760000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.yc2{bottom:70.080000pt;}
.y85{bottom:70.560000pt;}
.ya1{bottom:71.706667pt;}
.yb7{bottom:72.640000pt;}
.y78{bottom:73.640000pt;}
.yb1{bottom:75.680000pt;}
.yd1{bottom:76.026667pt;}
.y97{bottom:77.466667pt;}
.ybe{bottom:77.760000pt;}
.ya6{bottom:80.506667pt;}
.ya{bottom:80.992000pt;}
.yc1{bottom:86.720000pt;}
.yd0{bottom:92.666667pt;}
.y96{bottom:92.826667pt;}
.ya5{bottom:95.706667pt;}
.y71{bottom:116.672000pt;}
.y38{bottom:124.032000pt;}
.ye6{bottom:124.352000pt;}
.y70{bottom:137.946667pt;}
.yef{bottom:144.986667pt;}
.y37{bottom:145.146667pt;}
.ye5{bottom:145.466667pt;}
.y6f{bottom:159.066667pt;}
.y36{bottom:166.266667pt;}
.ye4{bottom:166.586667pt;}
.y6e{bottom:180.186667pt;}
.yee{bottom:187.386667pt;}
.y35{bottom:187.546667pt;}
.ye3{bottom:187.866667pt;}
.y6d{bottom:201.306667pt;}
.yed{bottom:208.506667pt;}
.y34{bottom:208.666667pt;}
.ye2{bottom:208.986667pt;}
.y6c{bottom:222.586667pt;}
.yec{bottom:229.626667pt;}
.y33{bottom:229.786667pt;}
.ye1{bottom:230.106667pt;}
.y6b{bottom:243.706667pt;}
.y32{bottom:250.946667pt;}
.ye0{bottom:251.266667pt;}
.y6a{bottom:264.866667pt;}
.y31{bottom:272.066667pt;}
.ydf{bottom:272.386667pt;}
.ycb{bottom:279.586667pt;}
.y69{bottom:285.986667pt;}
.yeb{bottom:293.186667pt;}
.y30{bottom:293.666667pt;}
.y68{bottom:305.506667pt;}
.yea{bottom:314.306667pt;}
.y2f{bottom:314.786667pt;}
.y67{bottom:319.426667pt;}
.y66{bottom:333.186667pt;}
.ye9{bottom:335.586667pt;}
.y2e{bottom:335.906667pt;}
.y65{bottom:346.946667pt;}
.yab{bottom:353.506667pt;}
.ye8{bottom:356.706667pt;}
.y2d{bottom:357.026667pt;}
.y64{bottom:360.706667pt;}
.yc0{bottom:361.506667pt;}
.ybd{bottom:362.466667pt;}
.yb0{bottom:363.586667pt;}
.y63{bottom:374.626667pt;}
.ye7{bottom:378.146667pt;}
.y2c{bottom:378.306667pt;}
.y62{bottom:388.386667pt;}
.y2b{bottom:399.426667pt;}
.y61{bottom:402.146667pt;}
.y60{bottom:415.906667pt;}
.y2a{bottom:420.546667pt;}
.y5f{bottom:429.826667pt;}
.y29{bottom:441.666667pt;}
.ya0{bottom:442.466667pt;}
.y5e{bottom:443.586667pt;}
.y5d{bottom:457.346667pt;}
.y28{bottom:462.946667pt;}
.y5c{bottom:471.106667pt;}
.y27{bottom:483.746667pt;}
.yde{bottom:484.066667pt;}
.y5b{bottom:485.026667pt;}
.y95{bottom:494.466667pt;}
.ycf{bottom:495.586667pt;}
.y5a{bottom:498.786667pt;}
.y26{bottom:504.893333pt;}
.ydd{bottom:505.213333pt;}
.y59{bottom:512.573333pt;}
.y25{bottom:526.333333pt;}
.y58{bottom:540.253333pt;}
.y24{bottom:547.613333pt;}
.y57{bottom:554.013333pt;}
.y91{bottom:558.493333pt;}
.y56{bottom:567.773333pt;}
.y23{bottom:568.733333pt;}
.y55{bottom:581.533333pt;}
.y22{bottom:589.853333pt;}
.y54{bottom:595.453333pt;}
.y53{bottom:609.213333pt;}
.y21{bottom:610.973333pt;}
.y52{bottom:622.973333pt;}
.y20{bottom:632.253333pt;}
.yb6{bottom:635.613333pt;}
.y51{bottom:636.733333pt;}
.y84{bottom:639.613333pt;}
.y8b{bottom:645.533333pt;}
.y50{bottom:650.653333pt;}
.y1f{bottom:653.373333pt;}
.y4f{bottom:664.413333pt;}
.y8d{bottom:668.573333pt;}
.y1e{bottom:674.493333pt;}
.y4e{bottom:678.173333pt;}
.y4d{bottom:691.933333pt;}
.y1d{bottom:695.613333pt;}
.y4c{bottom:705.693333pt;}
.y1c{bottom:716.733333pt;}
.y4b{bottom:719.613333pt;}
.y4a{bottom:733.373333pt;}
.y1b{bottom:738.013333pt;}
.y49{bottom:747.133333pt;}
.y77{bottom:752.573333pt;}
.y1a{bottom:759.173333pt;}
.y48{bottom:760.933333pt;}
.y7f{bottom:762.533333pt;}
.y9b{bottom:767.653333pt;}
.y47{bottom:774.853333pt;}
.yc5{bottom:775.653333pt;}
.y19{bottom:780.293333pt;}
.y46{bottom:788.613333pt;}
.y18{bottom:801.413333pt;}
.y45{bottom:802.373333pt;}
.y44{bottom:816.133333pt;}
.y17{bottom:822.373333pt;}
.ydc{bottom:822.693333pt;}
.y43{bottom:830.053333pt;}
.y16{bottom:843.813333pt;}
.y42{bottom:857.573333pt;}
.y15{bottom:864.933333pt;}
.yc8{bottom:865.573333pt;}
.ycd{bottom:867.653333pt;}
.y75{bottom:868.613333pt;}
.y41{bottom:871.333333pt;}
.y40{bottom:885.253333pt;}
.y14{bottom:885.733333pt;}
.ydb{bottom:886.053333pt;}
.y3f{bottom:899.013333pt;}
.y13{bottom:907.333333pt;}
.y3e{bottom:912.773333pt;}
.y3d{bottom:926.533333pt;}
.y12{bottom:928.453333pt;}
.y3c{bottom:940.453333pt;}
.y72{bottom:948.613333pt;}
.y11{bottom:949.253333pt;}
.yda{bottom:949.573333pt;}
.y3b{bottom:954.213333pt;}
.y10{bottom:970.373333pt;}
.yd9{bottom:970.693333pt;}
.y3a{bottom:981.733333pt;}
.yf{bottom:991.653333pt;}
.yd8{bottom:991.973333pt;}
.y39{bottom:995.653333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h8{height:29.440000pt;}
.he{height:31.680000pt;}
.h10{height:33.600000pt;}
.h13{height:37.246250pt;}
.h22{height:38.720000pt;}
.h23{height:43.680000pt;}
.hc{height:44.875000pt;}
.hb{height:46.781250pt;}
.hd{height:47.109375pt;}
.h11{height:52.134375pt;}
.h26{height:53.760000pt;}
.h27{height:53.937500pt;}
.h19{height:54.560000pt;}
.h21{height:55.680000pt;}
.h24{height:57.787500pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h1c{height:65.760000pt;}
.h28{height:65.781915pt;}
.h14{height:67.680000pt;}
.h4{height:73.454062pt;}
.hf{height:75.465000pt;}
.h16{height:76.640000pt;}
.h17{height:77.760000pt;}
.h15{height:82.560000pt;}
.h1a{height:83.712000pt;}
.h1e{height:84.640000pt;}
.h12{height:85.632000pt;}
.h1d{height:87.680000pt;}
.h1f{height:89.760000pt;}
.h2{height:97.600000pt;}
.h20{height:98.720000pt;}
.h25{height:104.672000pt;}
.h18{height:104.832000pt;}
.h1b{height:107.712000pt;}
.h5{height:114.889687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w6{width:44.800000pt;}
.w4{width:54.746667pt;}
.wa{width:82.080000pt;}
.w2{width:111.872000pt;}
.w15{width:123.200000pt;}
.wc{width:124.160000pt;}
.w12{width:124.320000pt;}
.w11{width:127.360000pt;}
.w1d{width:135.386667pt;}
.w1b{width:136.320000pt;}
.we{width:137.306667pt;}
.wd{width:140.320000pt;}
.w18{width:141.280000pt;}
.w19{width:146.240000pt;}
.w13{width:147.200000pt;}
.w10{width:151.386667pt;}
.w17{width:155.360000pt;}
.w1e{width:156.346667pt;}
.w1c{width:166.266667pt;}
.w1a{width:179.226667pt;}
.w16{width:180.186667pt;}
.wf{width:181.306667pt;}
.w14{width:185.306667pt;}
.w1f{width:190.426667pt;}
.wb{width:555.453333pt;}
.w3{width:627.133333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x27{left:9.600000pt;}
.x34{left:11.520000pt;}
.x44{left:12.826667pt;}
.x23{left:15.840000pt;}
.x7{left:17.600000pt;}
.x32{left:18.586667pt;}
.x3a{left:20.840000pt;}
.x1{left:22.399973pt;}
.x48{left:23.400000pt;}
.x6{left:24.314667pt;}
.x2d{left:25.960000pt;}
.x3{left:26.879976pt;}
.x24{left:28.640000pt;}
.x40{left:29.600000pt;}
.x46{left:30.600000pt;}
.x33{left:32.154667pt;}
.x22{left:33.120000pt;}
.x38{left:34.080000pt;}
.x26{left:36.800000pt;}
.x2a{left:38.266667pt;}
.x29{left:39.226667pt;}
.x37{left:41.120000pt;}
.x25{left:43.200000pt;}
.x47{left:45.000000pt;}
.x43{left:47.034667pt;}
.x31{left:50.266667pt;}
.x2c{left:54.280000pt;}
.x3c{left:63.080000pt;}
.x5{left:63.994667pt;}
.x2e{left:68.040000pt;}
.x3d{left:71.080000pt;}
.x49{left:78.440000pt;}
.x2f{left:90.600000pt;}
.x3b{left:92.680000pt;}
.x42{left:108.832000pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x35{left:114.912000pt;}
.x3e{left:115.872000pt;}
.x1f{left:129.320000pt;}
.x4a{left:132.351988pt;}
.x13{left:137.626655pt;}
.x1b{left:160.666655pt;}
.x1e{left:168.826667pt;}
.x18{left:170.106655pt;}
.x1c{left:175.226655pt;}
.x15{left:215.066655pt;}
.x12{left:244.666655pt;}
.x45{left:258.906667pt;}
.x3f{left:259.906667pt;}
.x21{left:268.866667pt;}
.x41{left:269.986667pt;}
.x20{left:277.666667pt;}
.x1a{left:296.066655pt;}
.x14{left:304.706655pt;}
.x17{left:333.826655pt;}
.x16{left:359.426655pt;}
.x19{left:378.306655pt;}
.x30{left:432.866667pt;}
.x28{left:435.906667pt;}
.x36{left:438.013333pt;}
.x1d{left:453.693322pt;}
.xb{left:550.493333pt;}
.xc{left:595.293333pt;}
.x39{left:598.013333pt;}
.x2b{left:602.013333pt;}
.xd{left:610.493333pt;}
.xe{left:626.053333pt;}
.xf{left:641.413333pt;}
.x10{left:656.773333pt;}
.x8{left:739.013333pt;}
}




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