
    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_4d838bacd6c4e5a3469de066.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7a02eb4095a677abdbe94372.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_a75b88e12ab3eb85523199cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_77f6644b5432bf06abe8df95.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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_1ffa3afee174fb9d0bb4280f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_19e87d1d02c65c326fdf83d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_a26f7ea2c52048b131c1bda6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_18efd1eb2c545ee25a029674.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_012f1e82e727e10cb35b493a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968262;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m1{transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-2.700000px;}
.ls2e{letter-spacing:-2.364000px;}
.ls28{letter-spacing:-2.214000px;}
.ls2b{letter-spacing:-1.956000px;}
.ls23{letter-spacing:-1.800000px;}
.ls14{letter-spacing:-1.494000px;}
.ls2a{letter-spacing:-1.236000px;}
.ls5{letter-spacing:-1.080000px;}
.ls29{letter-spacing:-0.978000px;}
.ls2f{letter-spacing:-0.924000px;}
.ls1e{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.460200px;}
.ls2c{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.409200px;}
.lse{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.305400px;}
.ls1d{letter-spacing:-0.259800px;}
.ls21{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.121200px;}
.ls20{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037440px;}
.lsb{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.153600px;}
.ls12{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.198000px;}
.ls22{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.439920px;}
.ls19{letter-spacing:0.513600px;}
.ls1f{letter-spacing:0.562800px;}
.ls15{letter-spacing:0.900000px;}
.ls6{letter-spacing:0.978000px;}
.ls1c{letter-spacing:2.340000px;}
.lsc{letter-spacing:5.940000px;}
.ls25{letter-spacing:6.660000px;}
.ls24{letter-spacing:8.820000px;}
.ls1b{letter-spacing:11.700000px;}
.ls27{letter-spacing:16.740000px;}
.ls26{letter-spacing:23.220000px;}
.ls2d{letter-spacing:23.940000px;}
.ls1a{letter-spacing:24.660000px;}
.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;}
}
.ws3{word-spacing:-95.760000px;}
.ws4{word-spacing:-23.977440px;}
.ws5{word-spacing:-22.860000px;}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.093600px;}
.wsc{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws15{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.526600px;}
.wsf{word-spacing:-14.479800px;}
.ws1d{word-spacing:-14.328000px;}
.ws13{word-spacing:-14.166000px;}
.ws1f{word-spacing:-14.016000px;}
.ws19{word-spacing:-13.962000px;}
.wse{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.704000px;}
.ws10{word-spacing:-13.446000px;}
.ws17{word-spacing:-13.140000px;}
.ws1b{word-spacing:-12.984000px;}
.ws18{word-spacing:-12.726000px;}
.ws1e{word-spacing:-12.576000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._8{margin-left:-8.942400px;}
._9{margin-left:-4.360560px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._f{width:2.358720px;}
._d{width:3.379440px;}
._e{width:4.422240px;}
._10{width:5.745360px;}
._a{width:6.841920px;}
._11{width:7.888320px;}
._b{width:8.955120px;}
._c{width:10.059360px;}
._16{width:11.480400px;}
._14{width:12.649920px;}
._17{width:13.668240px;}
._18{width:15.954960px;}
._12{width:16.974000px;}
._1a{width:19.150560px;}
._19{width:20.246400px;}
._13{width:21.263760px;}
._23{width:22.278240px;}
._1c{width:23.287920px;}
._1b{width:24.551040px;}
._20{width:25.849200px;}
._1f{width:26.953200px;}
._22{width:29.051040px;}
._15{width:39.502080px;}
._29{width:42.931200px;}
._1d{width:50.576640px;}
._1e{width:55.188000px;}
._26{width:88.883760px;}
._24{width:135.846240px;}
._25{width:175.419840px;}
._27{width:191.495520px;}
._28{width:205.805520px;}
._21{width:770.616000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y98{bottom:5.760000px;}
.y9a{bottom:5.940000px;}
.y10b{bottom:10.800000px;}
.y10a{bottom:30.600000px;}
.y107{bottom:34.740000px;}
.y109{bottom:50.400000px;}
.y7{bottom:60.300000px;}
.y108{bottom:70.200000px;}
.y105{bottom:93.060000px;}
.y6c{bottom:94.500000px;}
.ycb{bottom:96.300000px;}
.ye5{bottom:96.480000px;}
.y34{bottom:99.000000px;}
.yb3{bottom:112.680000px;}
.y104{bottom:112.860000px;}
.y6b{bottom:114.480000px;}
.yca{bottom:116.100000px;}
.ye4{bottom:116.280000px;}
.y33{bottom:118.800000px;}
.yb2{bottom:132.480000px;}
.y103{bottom:132.660000px;}
.y106{bottom:133.920000px;}
.y6a{bottom:134.280000px;}
.yc9{bottom:136.080000px;}
.y32{bottom:138.780000px;}
.yb1{bottom:152.280000px;}
.y102{bottom:152.640000px;}
.y69{bottom:154.080000px;}
.yc8{bottom:155.880000px;}
.y31{bottom:158.580000px;}
.yb0{bottom:172.260000px;}
.y101{bottom:172.440000px;}
.y68{bottom:173.880000px;}
.ye3{bottom:175.680000px;}
.y30{bottom:178.380000px;}
.yc7{bottom:184.680000px;}
.yaf{bottom:192.060000px;}
.y100{bottom:192.240000px;}
.y67{bottom:193.680000px;}
.ye2{bottom:195.660000px;}
.y2f{bottom:198.180000px;}
.yc6{bottom:204.480000px;}
.yae{bottom:211.890000px;}
.yff{bottom:212.070000px;}
.y66{bottom:213.690000px;}
.ye1{bottom:215.490000px;}
.y2e{bottom:218.010000px;}
.yc5{bottom:224.310000px;}
.yad{bottom:231.690000px;}
.yfe{bottom:231.870000px;}
.y65{bottom:233.490000px;}
.y2d{bottom:237.990000px;}
.y8a{bottom:242.130000px;}
.yc4{bottom:244.290000px;}
.yac{bottom:251.490000px;}
.yfd{bottom:251.850000px;}
.y64{bottom:253.290000px;}
.y2c{bottom:257.790000px;}
.y89{bottom:261.930000px;}
.yc3{bottom:264.090000px;}
.yab{bottom:271.470000px;}
.yfc{bottom:271.650000px;}
.y63{bottom:273.090000px;}
.y2b{bottom:277.590000px;}
.y88{bottom:281.910000px;}
.yc2{bottom:283.890000px;}
.yaa{bottom:291.270000px;}
.yfb{bottom:291.450000px;}
.y62{bottom:292.890000px;}
.y2a{bottom:297.390000px;}
.y87{bottom:301.710000px;}
.yc1{bottom:303.690000px;}
.ye0{bottom:303.870000px;}
.ya9{bottom:311.070000px;}
.yfa{bottom:311.250000px;}
.y61{bottom:312.870000px;}
.y29{bottom:317.190000px;}
.y86{bottom:321.510000px;}
.yc0{bottom:323.490000px;}
.ydf{bottom:323.670000px;}
.ya8{bottom:330.870000px;}
.yf9{bottom:331.050000px;}
.y60{bottom:332.670000px;}
.y28{bottom:337.170000px;}
.y85{bottom:341.310000px;}
.ybf{bottom:343.470000px;}
.ya7{bottom:350.670000px;}
.yf8{bottom:351.030000px;}
.y5f{bottom:352.470000px;}
.y27{bottom:356.970000px;}
.y84{bottom:361.110000px;}
.yde{bottom:363.270000px;}
.ya6{bottom:370.650000px;}
.yf7{bottom:370.830000px;}
.y5e{bottom:372.270000px;}
.y26{bottom:376.770000px;}
.y83{bottom:381.090000px;}
.ydd{bottom:383.070000px;}
.ya5{bottom:390.450000px;}
.yf6{bottom:390.630000px;}
.y5d{bottom:392.070000px;}
.y25{bottom:396.570000px;}
.y82{bottom:400.890000px;}
.ydc{bottom:403.050000px;}
.yf5{bottom:410.430000px;}
.y5c{bottom:412.050000px;}
.y24{bottom:416.370000px;}
.ya4{bottom:419.250000px;}
.y81{bottom:420.690000px;}
.ydb{bottom:422.850000px;}
.yf4{bottom:430.230000px;}
.y5b{bottom:431.850000px;}
.y23{bottom:436.350000px;}
.ya3{bottom:439.050000px;}
.y80{bottom:440.490000px;}
.yda{bottom:442.650000px;}
.yf3{bottom:450.255000px;}
.y5a{bottom:451.695000px;}
.y22{bottom:456.195000px;}
.ya2{bottom:458.895000px;}
.y7f{bottom:460.335000px;}
.yd9{bottom:462.495000px;}
.yf2{bottom:470.055000px;}
.y59{bottom:471.495000px;}
.y21{bottom:475.995000px;}
.ya1{bottom:478.875000px;}
.y7e{bottom:480.315000px;}
.yd8{bottom:482.295000px;}
.yf1{bottom:489.855000px;}
.y58{bottom:491.295000px;}
.y20{bottom:495.795000px;}
.ya0{bottom:498.675000px;}
.y7d{bottom:500.115000px;}
.yd7{bottom:502.275000px;}
.yf0{bottom:509.655000px;}
.y57{bottom:511.275000px;}
.y1f{bottom:515.595000px;}
.y9f{bottom:518.475000px;}
.y7c{bottom:519.915000px;}
.yd6{bottom:522.075000px;}
.yef{bottom:529.455000px;}
.y56{bottom:531.075000px;}
.y1e{bottom:535.575000px;}
.y9e{bottom:538.275000px;}
.y7b{bottom:539.715000px;}
.yd5{bottom:541.875000px;}
.yee{bottom:549.435000px;}
.y55{bottom:550.875000px;}
.y9d{bottom:553.035000px;}
.y1d{bottom:555.375000px;}
.y7a{bottom:559.515000px;}
.yd4{bottom:561.675000px;}
.yed{bottom:569.235000px;}
.y54{bottom:570.675000px;}
.y9c{bottom:573.735000px;}
.y1c{bottom:575.175000px;}
.y79{bottom:579.495000px;}
.yd3{bottom:581.475000px;}
.yec{bottom:589.035000px;}
.y53{bottom:590.475000px;}
.y9b{bottom:594.435000px;}
.y1b{bottom:597.315000px;}
.yd2{bottom:601.455000px;}
.yeb{bottom:608.835000px;}
.y52{bottom:610.455000px;}
.y99{bottom:614.955000px;}
.yd1{bottom:621.255000px;}
.y1a{bottom:626.115000px;}
.yea{bottom:628.635000px;}
.y51{bottom:630.255000px;}
.y97{bottom:635.655000px;}
.yd0{bottom:641.055000px;}
.y19{bottom:645.915000px;}
.ye9{bottom:648.615000px;}
.y50{bottom:650.055000px;}
.ybe{bottom:658.335000px;}
.ycf{bottom:660.855000px;}
.y96{bottom:662.115000px;}
.y18{bottom:665.715000px;}
.ye8{bottom:668.415000px;}
.y4f{bottom:669.855000px;}
.ybd{bottom:678.315000px;}
.yce{bottom:680.655000px;}
.y95{bottom:681.945000px;}
.y17{bottom:685.545000px;}
.ye7{bottom:688.245000px;}
.y4e{bottom:689.685000px;}
.ybc{bottom:698.145000px;}
.ycd{bottom:700.665000px;}
.y94{bottom:701.745000px;}
.y16{bottom:705.525000px;}
.ye6{bottom:708.045000px;}
.y4d{bottom:709.665000px;}
.ybb{bottom:717.945000px;}
.ycc{bottom:720.465000px;}
.y93{bottom:721.545000px;}
.y15{bottom:725.325000px;}
.y4c{bottom:729.465000px;}
.yba{bottom:737.745000px;}
.y92{bottom:741.345000px;}
.y14{bottom:745.125000px;}
.y4b{bottom:749.265000px;}
.yb9{bottom:757.545000px;}
.y91{bottom:761.325000px;}
.y13{bottom:764.925000px;}
.y4a{bottom:769.065000px;}
.yb8{bottom:777.525000px;}
.y90{bottom:781.125000px;}
.y12{bottom:784.725000px;}
.y49{bottom:788.865000px;}
.yb7{bottom:797.325000px;}
.y8f{bottom:800.925000px;}
.y11{bottom:804.705000px;}
.y48{bottom:808.845000px;}
.yb6{bottom:817.125000px;}
.y8e{bottom:820.725000px;}
.y10{bottom:824.505000px;}
.y47{bottom:828.645000px;}
.yb5{bottom:836.925000px;}
.y8d{bottom:840.525000px;}
.yf{bottom:844.305000px;}
.y46{bottom:848.445000px;}
.yb4{bottom:856.725000px;}
.y8c{bottom:860.505000px;}
.ye{bottom:864.105000px;}
.y45{bottom:868.245000px;}
.y8b{bottom:880.305000px;}
.yd{bottom:886.245000px;}
.y44{bottom:888.045000px;}
.y78{bottom:899.025000px;}
.yc{bottom:906.045000px;}
.y43{bottom:908.025000px;}
.y77{bottom:918.870000px;}
.yb{bottom:926.430000px;}
.y42{bottom:927.870000px;}
.y76{bottom:938.670000px;}
.y41{bottom:947.670000px;}
.ya{bottom:947.850000px;}
.y75{bottom:958.470000px;}
.y40{bottom:967.470000px;}
.y9{bottom:971.250000px;}
.y74{bottom:978.270000px;}
.y3f{bottom:987.270000px;}
.y73{bottom:998.250000px;}
.y8{bottom:1002.930000px;}
.y3e{bottom:1007.250000px;}
.y72{bottom:1018.050000px;}
.y3d{bottom:1027.050000px;}
.y6{bottom:1029.030000px;}
.y71{bottom:1037.850000px;}
.y3c{bottom:1046.850000px;}
.y5{bottom:1051.350000px;}
.y70{bottom:1057.650000px;}
.y3b{bottom:1066.650000px;}
.y6f{bottom:1077.450000px;}
.y4{bottom:1082.130000px;}
.y3a{bottom:1086.450000px;}
.y6e{bottom:1097.430000px;}
.y39{bottom:1106.430000px;}
.y3{bottom:1112.910000px;}
.y6d{bottom:1117.230000px;}
.y38{bottom:1126.230000px;}
.y2{bottom:1143.870000px;}
.y37{bottom:1146.030000px;}
.y36{bottom:1165.860000px;}
.y1{bottom:1177.740000px;}
.y35{bottom:1193.400000px;}
.he{height:2.067188px;}
.hb{height:19.800000px;}
.hc{height:19.980000px;}
.h5{height:42.164648px;}
.h6{height:42.894141px;}
.ha{height:43.156758px;}
.h7{height:43.506914px;}
.h9{height:43.681992px;}
.h3{height:46.736719px;}
.h4{height:47.545312px;}
.h2{height:67.565039px;}
.h8{height:67.824844px;}
.hd{height:84.276000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:95.040000px;}
.w5{width:105.660000px;}
.w4{width:105.696000px;}
.w6{width:201.315000px;}
.w8{width:210.855000px;}
.w3{width:510.045000px;}
.w9{width:580.965000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x22{left:7.740000px;}
.x1{left:54.179987px;}
.x9{left:55.979987px;}
.x6{left:57.059987px;}
.x7{left:59.759987px;}
.x8{left:61.199987px;}
.x2{left:62.819987px;}
.xa{left:64.259987px;}
.xb{left:66.419987px;}
.x4{left:68.219987px;}
.x10{left:70.199987px;}
.x5{left:73.619987px;}
.x3{left:75.599987px;}
.x1c{left:76.715987px;}
.x1d{left:81.935987px;}
.x1f{left:89.315987px;}
.x1e{left:96.515987px;}
.x18{left:177.509987px;}
.x13{left:183.630000px;}
.x20{left:191.415000px;}
.x17{left:203.609987px;}
.x1b{left:228.809987px;}
.x12{left:230.789987px;}
.x1a{left:262.154987px;}
.x21{left:264.855000px;}
.x11{left:270.074987px;}
.x14{left:290.055000px;}
.xd{left:298.154987px;}
.x19{left:313.094987px;}
.xe{left:392.474987px;}
.x15{left:396.435000px;}
.xc{left:425.984987px;}
.xf{left:446.684987px;}
.x16{left:598.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-2.400000pt;}
.ls2e{letter-spacing:-2.101333pt;}
.ls28{letter-spacing:-1.968000pt;}
.ls2b{letter-spacing:-1.738667pt;}
.ls23{letter-spacing:-1.600000pt;}
.ls14{letter-spacing:-1.328000pt;}
.ls2a{letter-spacing:-1.098667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls29{letter-spacing:-0.869333pt;}
.ls2f{letter-spacing:-0.821333pt;}
.ls1e{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.409067pt;}
.ls2c{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.363733pt;}
.lse{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.271467pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls21{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.107733pt;}
.ls20{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033280pt;}
.lsb{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.136533pt;}
.ls12{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.176000pt;}
.ls22{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.391040pt;}
.ls19{letter-spacing:0.456533pt;}
.ls1f{letter-spacing:0.500267pt;}
.ls15{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.869333pt;}
.ls1c{letter-spacing:2.080000pt;}
.lsc{letter-spacing:5.280000pt;}
.ls25{letter-spacing:5.920000pt;}
.ls24{letter-spacing:7.840000pt;}
.ls1b{letter-spacing:10.400000pt;}
.ls27{letter-spacing:14.880000pt;}
.ls26{letter-spacing:20.640000pt;}
.ls2d{letter-spacing:21.280000pt;}
.ls1a{letter-spacing:21.920000pt;}
.ws3{word-spacing:-85.120000pt;}
.ws4{word-spacing:-21.313280pt;}
.ws5{word-spacing:-20.320000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws15{word-spacing:-13.096533pt;}
.ws12{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.912533pt;}
.wsf{word-spacing:-12.870933pt;}
.ws1d{word-spacing:-12.736000pt;}
.ws13{word-spacing:-12.592000pt;}
.ws1f{word-spacing:-12.458667pt;}
.ws19{word-spacing:-12.410667pt;}
.wse{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.181333pt;}
.ws10{word-spacing:-11.952000pt;}
.ws17{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-11.541333pt;}
.ws18{word-spacing:-11.312000pt;}
.ws1e{word-spacing:-11.178667pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._8{margin-left:-7.948800pt;}
._9{margin-left:-3.876053pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._f{width:2.096640pt;}
._d{width:3.003947pt;}
._e{width:3.930880pt;}
._10{width:5.106987pt;}
._a{width:6.081707pt;}
._11{width:7.011840pt;}
._b{width:7.960107pt;}
._c{width:8.941653pt;}
._16{width:10.204800pt;}
._14{width:11.244373pt;}
._17{width:12.149547pt;}
._18{width:14.182187pt;}
._12{width:15.088000pt;}
._1a{width:17.022720pt;}
._19{width:17.996800pt;}
._13{width:18.901120pt;}
._23{width:19.802880pt;}
._1c{width:20.700373pt;}
._1b{width:21.823147pt;}
._20{width:22.977067pt;}
._1f{width:23.958400pt;}
._22{width:25.823147pt;}
._15{width:35.112960pt;}
._29{width:38.161067pt;}
._1d{width:44.957013pt;}
._1e{width:49.056000pt;}
._26{width:79.007787pt;}
._24{width:120.752213pt;}
._25{width:155.928747pt;}
._27{width:170.218240pt;}
._28{width:182.938240pt;}
._21{width:684.992000pt;}
.fs3{font-size:2.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:5.120000pt;}
.y9a{bottom:5.280000pt;}
.y10b{bottom:9.600000pt;}
.y10a{bottom:27.200000pt;}
.y107{bottom:30.880000pt;}
.y109{bottom:44.800000pt;}
.y7{bottom:53.600000pt;}
.y108{bottom:62.400000pt;}
.y105{bottom:82.720000pt;}
.y6c{bottom:84.000000pt;}
.ycb{bottom:85.600000pt;}
.ye5{bottom:85.760000pt;}
.y34{bottom:88.000000pt;}
.yb3{bottom:100.160000pt;}
.y104{bottom:100.320000pt;}
.y6b{bottom:101.760000pt;}
.yca{bottom:103.200000pt;}
.ye4{bottom:103.360000pt;}
.y33{bottom:105.600000pt;}
.yb2{bottom:117.760000pt;}
.y103{bottom:117.920000pt;}
.y106{bottom:119.040000pt;}
.y6a{bottom:119.360000pt;}
.yc9{bottom:120.960000pt;}
.y32{bottom:123.360000pt;}
.yb1{bottom:135.360000pt;}
.y102{bottom:135.680000pt;}
.y69{bottom:136.960000pt;}
.yc8{bottom:138.560000pt;}
.y31{bottom:140.960000pt;}
.yb0{bottom:153.120000pt;}
.y101{bottom:153.280000pt;}
.y68{bottom:154.560000pt;}
.ye3{bottom:156.160000pt;}
.y30{bottom:158.560000pt;}
.yc7{bottom:164.160000pt;}
.yaf{bottom:170.720000pt;}
.y100{bottom:170.880000pt;}
.y67{bottom:172.160000pt;}
.ye2{bottom:173.920000pt;}
.y2f{bottom:176.160000pt;}
.yc6{bottom:181.760000pt;}
.yae{bottom:188.346667pt;}
.yff{bottom:188.506667pt;}
.y66{bottom:189.946667pt;}
.ye1{bottom:191.546667pt;}
.y2e{bottom:193.786667pt;}
.yc5{bottom:199.386667pt;}
.yad{bottom:205.946667pt;}
.yfe{bottom:206.106667pt;}
.y65{bottom:207.546667pt;}
.y2d{bottom:211.546667pt;}
.y8a{bottom:215.226667pt;}
.yc4{bottom:217.146667pt;}
.yac{bottom:223.546667pt;}
.yfd{bottom:223.866667pt;}
.y64{bottom:225.146667pt;}
.y2c{bottom:229.146667pt;}
.y89{bottom:232.826667pt;}
.yc3{bottom:234.746667pt;}
.yab{bottom:241.306667pt;}
.yfc{bottom:241.466667pt;}
.y63{bottom:242.746667pt;}
.y2b{bottom:246.746667pt;}
.y88{bottom:250.586667pt;}
.yc2{bottom:252.346667pt;}
.yaa{bottom:258.906667pt;}
.yfb{bottom:259.066667pt;}
.y62{bottom:260.346667pt;}
.y2a{bottom:264.346667pt;}
.y87{bottom:268.186667pt;}
.yc1{bottom:269.946667pt;}
.ye0{bottom:270.106667pt;}
.ya9{bottom:276.506667pt;}
.yfa{bottom:276.666667pt;}
.y61{bottom:278.106667pt;}
.y29{bottom:281.946667pt;}
.y86{bottom:285.786667pt;}
.yc0{bottom:287.546667pt;}
.ydf{bottom:287.706667pt;}
.ya8{bottom:294.106667pt;}
.yf9{bottom:294.266667pt;}
.y60{bottom:295.706667pt;}
.y28{bottom:299.706667pt;}
.y85{bottom:303.386667pt;}
.ybf{bottom:305.306667pt;}
.ya7{bottom:311.706667pt;}
.yf8{bottom:312.026667pt;}
.y5f{bottom:313.306667pt;}
.y27{bottom:317.306667pt;}
.y84{bottom:320.986667pt;}
.yde{bottom:322.906667pt;}
.ya6{bottom:329.466667pt;}
.yf7{bottom:329.626667pt;}
.y5e{bottom:330.906667pt;}
.y26{bottom:334.906667pt;}
.y83{bottom:338.746667pt;}
.ydd{bottom:340.506667pt;}
.ya5{bottom:347.066667pt;}
.yf6{bottom:347.226667pt;}
.y5d{bottom:348.506667pt;}
.y25{bottom:352.506667pt;}
.y82{bottom:356.346667pt;}
.ydc{bottom:358.266667pt;}
.yf5{bottom:364.826667pt;}
.y5c{bottom:366.266667pt;}
.y24{bottom:370.106667pt;}
.ya4{bottom:372.666667pt;}
.y81{bottom:373.946667pt;}
.ydb{bottom:375.866667pt;}
.yf4{bottom:382.426667pt;}
.y5b{bottom:383.866667pt;}
.y23{bottom:387.866667pt;}
.ya3{bottom:390.266667pt;}
.y80{bottom:391.546667pt;}
.yda{bottom:393.466667pt;}
.yf3{bottom:400.226667pt;}
.y5a{bottom:401.506667pt;}
.y22{bottom:405.506667pt;}
.ya2{bottom:407.906667pt;}
.y7f{bottom:409.186667pt;}
.yd9{bottom:411.106667pt;}
.yf2{bottom:417.826667pt;}
.y59{bottom:419.106667pt;}
.y21{bottom:423.106667pt;}
.ya1{bottom:425.666667pt;}
.y7e{bottom:426.946667pt;}
.yd8{bottom:428.706667pt;}
.yf1{bottom:435.426667pt;}
.y58{bottom:436.706667pt;}
.y20{bottom:440.706667pt;}
.ya0{bottom:443.266667pt;}
.y7d{bottom:444.546667pt;}
.yd7{bottom:446.466667pt;}
.yf0{bottom:453.026667pt;}
.y57{bottom:454.466667pt;}
.y1f{bottom:458.306667pt;}
.y9f{bottom:460.866667pt;}
.y7c{bottom:462.146667pt;}
.yd6{bottom:464.066667pt;}
.yef{bottom:470.626667pt;}
.y56{bottom:472.066667pt;}
.y1e{bottom:476.066667pt;}
.y9e{bottom:478.466667pt;}
.y7b{bottom:479.746667pt;}
.yd5{bottom:481.666667pt;}
.yee{bottom:488.386667pt;}
.y55{bottom:489.666667pt;}
.y9d{bottom:491.586667pt;}
.y1d{bottom:493.666667pt;}
.y7a{bottom:497.346667pt;}
.yd4{bottom:499.266667pt;}
.yed{bottom:505.986667pt;}
.y54{bottom:507.266667pt;}
.y9c{bottom:509.986667pt;}
.y1c{bottom:511.266667pt;}
.y79{bottom:515.106667pt;}
.yd3{bottom:516.866667pt;}
.yec{bottom:523.586667pt;}
.y53{bottom:524.866667pt;}
.y9b{bottom:528.386667pt;}
.y1b{bottom:530.946667pt;}
.yd2{bottom:534.626667pt;}
.yeb{bottom:541.186667pt;}
.y52{bottom:542.626667pt;}
.y99{bottom:546.626667pt;}
.yd1{bottom:552.226667pt;}
.y1a{bottom:556.546667pt;}
.yea{bottom:558.786667pt;}
.y51{bottom:560.226667pt;}
.y97{bottom:565.026667pt;}
.yd0{bottom:569.826667pt;}
.y19{bottom:574.146667pt;}
.ye9{bottom:576.546667pt;}
.y50{bottom:577.826667pt;}
.ybe{bottom:585.186667pt;}
.ycf{bottom:587.426667pt;}
.y96{bottom:588.546667pt;}
.y18{bottom:591.746667pt;}
.ye8{bottom:594.146667pt;}
.y4f{bottom:595.426667pt;}
.ybd{bottom:602.946667pt;}
.yce{bottom:605.026667pt;}
.y95{bottom:606.173333pt;}
.y17{bottom:609.373333pt;}
.ye7{bottom:611.773333pt;}
.y4e{bottom:613.053333pt;}
.ybc{bottom:620.573333pt;}
.ycd{bottom:622.813333pt;}
.y94{bottom:623.773333pt;}
.y16{bottom:627.133333pt;}
.ye6{bottom:629.373333pt;}
.y4d{bottom:630.813333pt;}
.ybb{bottom:638.173333pt;}
.ycc{bottom:640.413333pt;}
.y93{bottom:641.373333pt;}
.y15{bottom:644.733333pt;}
.y4c{bottom:648.413333pt;}
.yba{bottom:655.773333pt;}
.y92{bottom:658.973333pt;}
.y14{bottom:662.333333pt;}
.y4b{bottom:666.013333pt;}
.yb9{bottom:673.373333pt;}
.y91{bottom:676.733333pt;}
.y13{bottom:679.933333pt;}
.y4a{bottom:683.613333pt;}
.yb8{bottom:691.133333pt;}
.y90{bottom:694.333333pt;}
.y12{bottom:697.533333pt;}
.y49{bottom:701.213333pt;}
.yb7{bottom:708.733333pt;}
.y8f{bottom:711.933333pt;}
.y11{bottom:715.293333pt;}
.y48{bottom:718.973333pt;}
.yb6{bottom:726.333333pt;}
.y8e{bottom:729.533333pt;}
.y10{bottom:732.893333pt;}
.y47{bottom:736.573333pt;}
.yb5{bottom:743.933333pt;}
.y8d{bottom:747.133333pt;}
.yf{bottom:750.493333pt;}
.y46{bottom:754.173333pt;}
.yb4{bottom:761.533333pt;}
.y8c{bottom:764.893333pt;}
.ye{bottom:768.093333pt;}
.y45{bottom:771.773333pt;}
.y8b{bottom:782.493333pt;}
.yd{bottom:787.773333pt;}
.y44{bottom:789.373333pt;}
.y78{bottom:799.133333pt;}
.yc{bottom:805.373333pt;}
.y43{bottom:807.133333pt;}
.y77{bottom:816.773333pt;}
.yb{bottom:823.493333pt;}
.y42{bottom:824.773333pt;}
.y76{bottom:834.373333pt;}
.y41{bottom:842.373333pt;}
.ya{bottom:842.533333pt;}
.y75{bottom:851.973333pt;}
.y40{bottom:859.973333pt;}
.y9{bottom:863.333333pt;}
.y74{bottom:869.573333pt;}
.y3f{bottom:877.573333pt;}
.y73{bottom:887.333333pt;}
.y8{bottom:891.493333pt;}
.y3e{bottom:895.333333pt;}
.y72{bottom:904.933333pt;}
.y3d{bottom:912.933333pt;}
.y6{bottom:914.693333pt;}
.y71{bottom:922.533333pt;}
.y3c{bottom:930.533333pt;}
.y5{bottom:934.533333pt;}
.y70{bottom:940.133333pt;}
.y3b{bottom:948.133333pt;}
.y6f{bottom:957.733333pt;}
.y4{bottom:961.893333pt;}
.y3a{bottom:965.733333pt;}
.y6e{bottom:975.493333pt;}
.y39{bottom:983.493333pt;}
.y3{bottom:989.253333pt;}
.y6d{bottom:993.093333pt;}
.y38{bottom:1001.093333pt;}
.y2{bottom:1016.773333pt;}
.y37{bottom:1018.693333pt;}
.y36{bottom:1036.320000pt;}
.y1{bottom:1046.880000pt;}
.y35{bottom:1060.800000pt;}
.he{height:1.837500pt;}
.hb{height:17.600000pt;}
.hc{height:17.760000pt;}
.h5{height:37.479688pt;}
.h6{height:38.128125pt;}
.ha{height:38.361562pt;}
.h7{height:38.672812pt;}
.h9{height:38.828437pt;}
.h3{height:41.543750pt;}
.h4{height:42.262500pt;}
.h2{height:60.057813pt;}
.h8{height:60.288750pt;}
.hd{height:74.912000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:84.480000pt;}
.w5{width:93.920000pt;}
.w4{width:93.952000pt;}
.w6{width:178.946667pt;}
.w8{width:187.426667pt;}
.w3{width:453.373333pt;}
.w9{width:516.413333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x22{left:6.880000pt;}
.x1{left:48.159988pt;}
.x9{left:49.759988pt;}
.x6{left:50.719988pt;}
.x7{left:53.119988pt;}
.x8{left:54.399988pt;}
.x2{left:55.839988pt;}
.xa{left:57.119988pt;}
.xb{left:59.039988pt;}
.x4{left:60.639988pt;}
.x10{left:62.399988pt;}
.x5{left:65.439988pt;}
.x3{left:67.199988pt;}
.x1c{left:68.191988pt;}
.x1d{left:72.831988pt;}
.x1f{left:79.391988pt;}
.x1e{left:85.791988pt;}
.x18{left:157.786655pt;}
.x13{left:163.226667pt;}
.x20{left:170.146667pt;}
.x17{left:180.986655pt;}
.x1b{left:203.386655pt;}
.x12{left:205.146655pt;}
.x1a{left:233.026655pt;}
.x21{left:235.426667pt;}
.x11{left:240.066655pt;}
.x14{left:257.826667pt;}
.xd{left:265.026655pt;}
.x19{left:278.306655pt;}
.xe{left:348.866655pt;}
.x15{left:352.386667pt;}
.xc{left:378.653321pt;}
.xf{left:397.053321pt;}
.x16{left:532.133333pt;}
}




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