
    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_e3b2c933508f2c509e56c56f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_8445f6bc196d7edc9bbdeb66.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_e74032ed24c9f18008803e32.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_4a79a763ab56dfcd582c71ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_810641c5b34bc44f90601c39.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_ce2fc08195ded8c4319ab9d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.085449;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_276959284888335bc22e537f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.085449;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f39a3b6b1670b717d0e15d99.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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_d62b857fa17cf87f26a04c68.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.087891;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_9cf238a4d765d80d0eadd885.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087891;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_5cc934ca37a7793390c8eb2a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854004;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_30c23ba2686f2839bec38dd1.woff2')format("woff");}.fff{font-family:fff;line-height:0.850586;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:ff10;src:url('chunks/assets/font_f9ecdd0ef570edee89f9fb6b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675293;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:ff11;src:url('chunks/assets/font_f9c6f808d8a82fb29e893e97.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-64.800000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-9.600000px;}
.ls7{letter-spacing:-8.880000px;}
.lsf{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.054000px;}
.ls9{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.108720px;}
.lsc{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.162720px;}
.ls5{letter-spacing:0.188400px;}
.ls2{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.488400px;}
.lsa{letter-spacing:54.864000px;}
.lsd{letter-spacing:64.026720px;}
.ls0{letter-spacing:773.940000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.wsa{word-spacing:-59.760000px;}
.ws6{word-spacing:-34.704000px;}
.ws9{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.616000px;}
.wsd{word-spacing:-14.472000px;}
.wsc{word-spacing:-14.328000px;}
.ws7{word-spacing:-12.619680px;}
.ws2{word-spacing:-12.131280px;}
.wsb{word-spacing:-11.322000px;}
.ws8{word-spacing:-10.926000px;}
.ws3{word-spacing:-10.908000px;}
.ws5{word-spacing:-5.736000px;}
.wse{word-spacing:-5.016000px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:203.996160px;}
._2b{margin-left:-700.398000px;}
._17{margin-left:-9.720000px;}
._1a{margin-left:-8.106000px;}
._8{margin-left:-5.968080px;}
._f{margin-left:-4.194000px;}
._1{margin-left:-3.187440px;}
._2{margin-left:-2.180880px;}
._0{margin-left:-1.180800px;}
._3{width:1.046880px;}
._4{width:2.152080px;}
._18{width:3.174960px;}
._6{width:4.374480px;}
._5{width:5.688000px;}
._15{width:7.128000px;}
._14{width:8.280000px;}
._13{width:9.524880px;}
._d{width:10.656000px;}
._7{width:12.289680px;}
._e{width:13.528080px;}
._9{width:15.840000px;}
._a{width:16.848000px;}
._1f{width:18.288000px;}
._19{width:19.296000px;}
._21{width:20.342880px;}
._10{width:21.705120px;}
._11{width:22.916880px;}
._26{width:24.742320px;}
._c{width:26.521680px;}
._b{width:27.788880px;}
._1e{width:29.178000px;}
._1c{width:30.816000px;}
._1d{width:31.824000px;}
._24{width:33.624000px;}
._25{width:35.084880px;}
._1b{width:37.080000px;}
._22{width:38.865600px;}
._16{width:40.536000px;}
._12{width:52.920000px;}
._29{width:59.616000px;}
._28{width:67.368240px;}
._23{width:69.336000px;}
._20{width:80.660880px;}
._27{width:103.464000px;}
._2a{width:2202.720000px;}
.fc5{color:rgb(84,226,176);}
.fc4{color:rgb(14,40,65);}
.fc3{color:rgb(70,120,134);}
.fc2{color:transparent;}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(57,61,99);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y91{bottom:0.360000px;}
.y111{bottom:9.000000px;}
.ydd{bottom:9.720000px;}
.y47{bottom:13.500000px;}
.yb6{bottom:18.720000px;}
.y10f{bottom:19.440000px;}
.y46{bottom:30.105000px;}
.y90{bottom:31.500000px;}
.yb5{bottom:35.280000px;}
.y8f{bottom:50.580000px;}
.yb4{bottom:51.660000px;}
.y5{bottom:56.520000px;}
.y19{bottom:58.140000px;}
.yb3{bottom:68.220000px;}
.y8e{bottom:69.660000px;}
.y4{bottom:71.100000px;}
.y18{bottom:80.100000px;}
.y8d{bottom:88.740000px;}
.y3{bottom:102.060000px;}
.y8c{bottom:107.820000px;}
.y44{bottom:123.120000px;}
.y156{bottom:124.014000px;}
.y2{bottom:124.020000px;}
.y6a{bottom:129.960000px;}
.yca{bottom:130.320000px;}
.ydb{bottom:136.620000px;}
.y149{bottom:138.060000px;}
.y10d{bottom:138.420000px;}
.y43{bottom:141.480000px;}
.y69{bottom:145.980000px;}
.y155{bottom:149.394000px;}
.yb1{bottom:151.200000px;}
.yc9{bottom:155.910000px;}
.y8a{bottom:159.690000px;}
.y42{bottom:160.590000px;}
.y148{bottom:160.770000px;}
.yda{bottom:162.210000px;}
.y128{bottom:163.290000px;}
.y41{bottom:166.530000px;}
.y147{bottom:166.710000px;}
.y154{bottom:174.810000px;}
.y10c{bottom:175.890000px;}
.y89{bottom:178.950000px;}
.yc8{bottom:181.290000px;}
.y40{bottom:181.650000px;}
.y146{bottom:182.730000px;}
.yb2{bottom:183.990000px;}
.y88{bottom:184.890000px;}
.yd9{bottom:187.590000px;}
.yb0{bottom:188.670000px;}
.yf6{bottom:197.490000px;}
.y87{bottom:200.910000px;}
.y10b{bottom:201.270000px;}
.yc7{bottom:206.670000px;}
.y3f{bottom:206.850000px;}
.yd8{bottom:213.150000px;}
.y127{bottom:214.050000px;}
.yb7{bottom:216.570000px;}
.y145{bottom:218.010000px;}
.y3e{bottom:221.970000px;}
.yaf{bottom:226.110000px;}
.yc6{bottom:232.230000px;}
.y68{bottom:233.130000px;}
.yf5{bottom:234.930000px;}
.y10a{bottom:238.710000px;}
.y3d{bottom:241.230000px;}
.y144{bottom:243.570000px;}
.y3c{bottom:247.170000px;}
.y126{bottom:251.490000px;}
.yd7{bottom:256.530000px;}
.yc5{bottom:257.610000px;}
.y67{bottom:258.690000px;}
.y3b{bottom:263.190000px;}
.yae{bottom:263.730000px;}
.y109{bottom:264.090000px;}
.y143{bottom:268.950000px;}
.y8b{bottom:273.270000px;}
.y125{bottom:277.050000px;}
.yf4{bottom:278.490000px;}
.y86{bottom:280.470000px;}
.yc4{bottom:283.170000px;}
.y66{bottom:284.070000px;}
.y108{bottom:289.650000px;}
.yd6{bottom:299.910000px;}
.yad{bottom:301.170000px;}
.y124{bottom:302.430000px;}
.yf3{bottom:303.870000px;}
.y85{bottom:306.030000px;}
.y142{bottom:306.390000px;}
.y3a{bottom:308.010000px;}
.yc3{bottom:308.550000px;}
.y65{bottom:309.450000px;}
.yd5{bottom:325.470000px;}
.y107{bottom:327.090000px;}
.y123{bottom:327.990000px;}
.yf2{bottom:329.430000px;}
.y84{bottom:331.410000px;}
.y141{bottom:331.950000px;}
.y39{bottom:333.570000px;}
.yc2{bottom:333.930000px;}
.y64{bottom:335.010000px;}
.yac{bottom:338.610000px;}
.yd4{bottom:350.850000px;}
.y106{bottom:352.470000px;}
.yf1{bottom:354.810000px;}
.y83{bottom:356.970000px;}
.y140{bottom:357.330000px;}
.y38{bottom:358.950000px;}
.y63{bottom:360.390000px;}
.y45{bottom:370.830000px;}
.y122{bottom:371.370000px;}
.yc1{bottom:371.550000px;}
.yab{bottom:376.050000px;}
.yd3{bottom:376.410000px;}
.yf0{bottom:380.190000px;}
.y82{bottom:382.350000px;}
.y13f{bottom:382.710000px;}
.y37{bottom:384.330000px;}
.y62{bottom:385.770000px;}
.y105{bottom:389.910000px;}
.yc0{bottom:396.930000px;}
.yd2{bottom:401.655000px;}
.yef{bottom:405.795000px;}
.y36{bottom:409.935000px;}
.y61{bottom:411.375000px;}
.yaa{bottom:413.535000px;}
.y104{bottom:415.515000px;}
.y81{bottom:419.835000px;}
.y13e{bottom:420.195000px;}
.ybf{bottom:422.355000px;}
.y121{bottom:430.635000px;}
.y35{bottom:435.315000px;}
.y60{bottom:436.755000px;}
.y129{bottom:441.075000px;}
.y80{bottom:445.215000px;}
.y13d{bottom:445.755000px;}
.ybe{bottom:448.995000px;}
.yee{bottom:449.175000px;}
.ya9{bottom:450.975000px;}
.yd1{bottom:451.155000px;}
.y17{bottom:454.215000px;}
.y103{bottom:458.895000px;}
.y34{bottom:460.875000px;}
.y7f{bottom:470.775000px;}
.y13c{bottom:471.135000px;}
.ybd{bottom:474.555000px;}
.y5f{bottom:480.135000px;}
.y120{bottom:484.275000px;}
.y102{bottom:484.455000px;}
.y33{bottom:486.255000px;}
.ya8{bottom:488.415000px;}
.y16{bottom:491.655000px;}
.yed{bottom:492.735000px;}
.y7e{bottom:496.155000px;}
.y13b{bottom:496.695000px;}
.ybc{bottom:499.935000px;}
.yd0{bottom:504.615000px;}
.y101{bottom:509.835000px;}
.y32{bottom:511.635000px;}
.yec{bottom:518.115000px;}
.y7d{bottom:521.715000px;}
.y15{bottom:525.495000px;}
.ya7{bottom:525.855000px;}
.y5e{bottom:527.475000px;}
.y100{bottom:535.215000px;}
.y31{bottom:537.195000px;}
.ybb{bottom:538.635000px;}
.y13a{bottom:540.075000px;}
.ycf{bottom:542.055000px;}
.ydc{bottom:542.235000px;}
.yeb{bottom:543.495000px;}
.y7c{bottom:547.095000px;}
.yff{bottom:560.775000px;}
.y30{bottom:562.575000px;}
.y14{bottom:562.935000px;}
.ya6{bottom:563.295000px;}
.y153{bottom:565.995000px;}
.yce{bottom:567.615000px;}
.yea{bottom:569.055000px;}
.y7a{bottom:572.475000px;}
.y7b{bottom:578.415000px;}
.y5d{bottom:580.935000px;}
.yba{bottom:582.015000px;}
.yfe{bottom:586.155000px;}
.y139{bottom:587.415000px;}
.y2f{bottom:588.135000px;}
.ya5{bottom:588.675000px;}
.ycd{bottom:592.995000px;}
.ye9{bottom:594.435000px;}
.y79{bottom:598.035000px;}
.y13{bottom:600.555000px;}
.y152{bottom:603.435000px;}
.y2e{bottom:613.515000px;}
.ya4{bottom:614.235000px;}
.y10e{bottom:617.115000px;}
.y5c{bottom:618.555000px;}
.ye8{bottom:619.995000px;}
.y78{bottom:623.415000px;}
.y12{bottom:625.935000px;}
.yb9{bottom:629.355000px;}
.y2d{bottom:638.895000px;}
.ya3{bottom:639.615000px;}
.y138{bottom:640.875000px;}
.y5b{bottom:643.935000px;}
.ye7{bottom:645.375000px;}
.y77{bottom:648.975000px;}
.y11{bottom:651.345000px;}
.y2c{bottom:664.485000px;}
.ya2{bottom:665.205000px;}
.y5a{bottom:669.345000px;}
.ye6{bottom:670.785000px;}
.y76{bottom:674.385000px;}
.y10{bottom:676.905000px;}
.y137{bottom:678.345000px;}
.yb8{bottom:682.845000px;}
.y157{bottom:688.784850px;}
.y2b{bottom:689.865000px;}
.ya1{bottom:690.585000px;}
.y59{bottom:694.905000px;}
.y75{bottom:699.765000px;}
.y136{bottom:703.725000px;}
.yf{bottom:714.345000px;}
.y2a{bottom:715.425000px;}
.y151{bottom:715.785000px;}
.y58{bottom:720.285000px;}
.y74{bottom:725.325000px;}
.ya0{bottom:728.025000px;}
.y135{bottom:729.285000px;}
.y11f{bottom:737.205000px;}
.ye5{bottom:739.725000px;}
.y29{bottom:740.805000px;}
.y150{bottom:742.425000px;}
.y57{bottom:745.845000px;}
.y73{bottom:750.705000px;}
.ye{bottom:751.785000px;}
.y9f{bottom:753.405000px;}
.y134{bottom:754.665000px;}
.y11e{bottom:762.765000px;}
.ye4{bottom:765.285000px;}
.y14f{bottom:767.805000px;}
.y55{bottom:771.225000px;}
.y72{bottom:776.265000px;}
.y56{bottom:777.165000px;}
.y27{bottom:778.245000px;}
.y133{bottom:780.225000px;}
.yd{bottom:783.825000px;}
.y28{bottom:784.185000px;}
.y11d{bottom:788.145000px;}
.ye3{bottom:790.665000px;}
.y9e{bottom:790.845000px;}
.y14e{bottom:794.445000px;}
.y54{bottom:796.605000px;}
.y71{bottom:801.645000px;}
.y26{bottom:803.625000px;}
.y11c{bottom:813.705000px;}
.ye2{bottom:816.045000px;}
.y9d{bottom:817.485000px;}
.y132{bottom:817.665000px;}
.y14d{bottom:821.085000px;}
.y53{bottom:822.165000px;}
.y70{bottom:827.025000px;}
.y25{bottom:829.185000px;}
.yc{bottom:831.525000px;}
.y11b{bottom:839.085000px;}
.ye1{bottom:841.605000px;}
.y131{bottom:843.045000px;}
.y9c{bottom:844.125000px;}
.y52{bottom:847.545000px;}
.y14c{bottom:847.725000px;}
.y24{bottom:854.565000px;}
.y11a{bottom:864.465000px;}
.ye0{bottom:866.985000px;}
.y12f{bottom:869.685000px;}
.y6f{bottom:870.405000px;}
.yfd{bottom:871.305000px;}
.y51{bottom:873.105000px;}
.y130{bottom:875.625000px;}
.yb{bottom:879.405000px;}
.y23{bottom:880.125000px;}
.y9b{bottom:882.825000px;}
.y14b{bottom:886.425000px;}
.y50{bottom:898.530000px;}
.y119{bottom:901.950000px;}
.y21{bottom:905.550000px;}
.y9a{bottom:908.430000px;}
.ydf{bottom:910.590000px;}
.y22{bottom:911.490000px;}
.y14a{bottom:912.030000px;}
.yfc{bottom:914.910000px;}
.y4f{bottom:923.910000px;}
.ya{bottom:927.150000px;}
.y118{bottom:927.510000px;}
.y20{bottom:930.930000px;}
.y12e{bottom:933.810000px;}
.yde{bottom:935.970000px;}
.y99{bottom:945.870000px;}
.y4e{bottom:949.470000px;}
.yfb{bottom:952.350000px;}
.y117{bottom:952.890000px;}
.y1f{bottom:956.490000px;}
.y6e{bottom:961.350000px;}
.y98{bottom:971.250000px;}
.y9{bottom:974.850000px;}
.y116{bottom:978.450000px;}
.y1e{bottom:981.870000px;}
.y6d{bottom:986.910000px;}
.yfa{bottom:989.790000px;}
.y12d{bottom:996.630000px;}
.y97{bottom:996.810000px;}
.y4d{bottom:1000.410000px;}
.y115{bottom:1003.830000px;}
.y1d{bottom:1007.430000px;}
.y6c{bottom:1012.290000px;}
.y8{bottom:1022.550000px;}
.y12c{bottom:1023.450000px;}
.y4c{bottom:1025.790000px;}
.yf9{bottom:1027.230000px;}
.y114{bottom:1029.210000px;}
.y1c{bottom:1032.810000px;}
.y96{bottom:1034.250000px;}
.y6b{bottom:1037.850000px;}
.y12b{bottom:1048.830000px;}
.ycc{bottom:1051.170000px;}
.y113{bottom:1054.770000px;}
.y95{bottom:1059.630000px;}
.y4b{bottom:1063.230000px;}
.yf8{bottom:1064.670000px;}
.y7{bottom:1070.250000px;}
.y12a{bottom:1075.470000px;}
.y1b{bottom:1076.190000px;}
.ycb{bottom:1076.730000px;}
.y112{bottom:1080.150000px;}
.y94{bottom:1086.270000px;}
.y4a{bottom:1088.610000px;}
.y110{bottom:1098.510000px;}
.yf7{bottom:1102.110000px;}
.y93{bottom:1112.910000px;}
.y49{bottom:1114.170000px;}
.y6{bottom:1117.950000px;}
.y1a{bottom:1123.530000px;}
.y92{bottom:1138.290000px;}
.y48{bottom:1139.550000px;}
.y1{bottom:1192.860000px;}
.h13{height:22.500000px;}
.h15{height:26.820000px;}
.h17{height:31.500000px;}
.h14{height:32.256000px;}
.hf{height:35.989453px;}
.he{height:36.091406px;}
.h9{height:36.193359px;}
.h3{height:41.809570px;}
.hb{height:42.696000px;}
.hc{height:46.669922px;}
.h18{height:47.988281px;}
.h12{height:48.060000px;}
.ha{height:51.793945px;}
.h7{height:52.417969px;}
.h16{height:58.813594px;}
.h6{height:62.050781px;}
.hd{height:62.226562px;}
.h2{height:62.402344px;}
.h11{height:80.820000px;}
.h8{height:108.984375px;}
.h19{height:111.812695px;}
.h10{height:120.600000px;}
.h5{height:126.884883px;}
.h4{height:126.966797px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:104.436000px;}
.w4{width:247.530000px;}
.w8{width:285.870000px;}
.w6{width:297.030000px;}
.w5{width:303.870000px;}
.w7{width:347.430000px;}
.wb{width:434.805000px;}
.w9{width:619.845000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:1.620000px;}
.x12{left:5.220000px;}
.x22{left:7.920000px;}
.x19{left:10.260000px;}
.x1c{left:18.180000px;}
.x28{left:24.120000px;}
.x21{left:27.900000px;}
.x1a{left:32.580000px;}
.x2c{left:53.316000px;}
.x1d{left:54.540000px;}
.x13{left:63.354000px;}
.x1{left:84.995987px;}
.x23{left:89.274000px;}
.x10{left:90.575987px;}
.x25{left:92.340000px;}
.x1f{left:111.995987px;}
.x27{left:122.076000px;}
.x11{left:123.876000px;}
.x20{left:138.995987px;}
.x1e{left:151.965000px;}
.x14{left:203.609973px;}
.x15{left:209.189987px;}
.x30{left:240.330300px;}
.x5{left:246.989987px;}
.x16{left:276.734973px;}
.x17{left:282.314987px;}
.x4{left:297.614987px;}
.xf{left:301.034987px;}
.x8{left:323.354973px;}
.x9{left:328.934987px;}
.xa{left:331.994973px;}
.xb{left:337.574987px;}
.x3{left:357.734987px;}
.x29{left:394.275000px;}
.x2{left:450.644987px;}
.xe{left:452.444987px;}
.x24{left:459.285000px;}
.x2a{left:463.604987px;}
.x18{left:481.065000px;}
.x2b{left:482.864987px;}
.x26{left:494.385000px;}
.x2e{left:531.284973px;}
.x2f{left:536.864987px;}
.xc{left:551.444973px;}
.xd{left:557.024987px;}
.x2d{left:788.729987px;}
.x7{left:798.449987px;}
.x6{left:808.019987px;}
@media print{
.v1{vertical-align:-57.600000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-8.533333pt;}
.ls7{letter-spacing:-7.893333pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.096640pt;}
.lsc{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.144640pt;}
.ls5{letter-spacing:0.167467pt;}
.ls2{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.434133pt;}
.lsa{letter-spacing:48.768000pt;}
.lsd{letter-spacing:56.912640pt;}
.ls0{letter-spacing:687.946667pt;}
.ws4{word-spacing:-64.000000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws6{word-spacing:-30.848000pt;}
.ws9{word-spacing:-13.248000pt;}
.ws1{word-spacing:-12.992000pt;}
.wsd{word-spacing:-12.864000pt;}
.wsc{word-spacing:-12.736000pt;}
.ws7{word-spacing:-11.217493pt;}
.ws2{word-spacing:-10.783360pt;}
.wsb{word-spacing:-10.064000pt;}
.ws8{word-spacing:-9.712000pt;}
.ws3{word-spacing:-9.696000pt;}
.ws5{word-spacing:-5.098667pt;}
.wse{word-spacing:-4.458667pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:181.329920pt;}
._2b{margin-left:-622.576000pt;}
._17{margin-left:-8.640000pt;}
._1a{margin-left:-7.205333pt;}
._8{margin-left:-5.304960pt;}
._f{margin-left:-3.728000pt;}
._1{margin-left:-2.833280pt;}
._2{margin-left:-1.938560pt;}
._0{margin-left:-1.049600pt;}
._3{width:0.930560pt;}
._4{width:1.912960pt;}
._18{width:2.822187pt;}
._6{width:3.888427pt;}
._5{width:5.056000pt;}
._15{width:6.336000pt;}
._14{width:7.360000pt;}
._13{width:8.466560pt;}
._d{width:9.472000pt;}
._7{width:10.924160pt;}
._e{width:12.024960pt;}
._9{width:14.080000pt;}
._a{width:14.976000pt;}
._1f{width:16.256000pt;}
._19{width:17.152000pt;}
._21{width:18.082560pt;}
._10{width:19.293440pt;}
._11{width:20.370560pt;}
._26{width:21.993173pt;}
._c{width:23.574827pt;}
._b{width:24.701227pt;}
._1e{width:25.936000pt;}
._1c{width:27.392000pt;}
._1d{width:28.288000pt;}
._24{width:29.888000pt;}
._25{width:31.186560pt;}
._1b{width:32.960000pt;}
._22{width:34.547200pt;}
._16{width:36.032000pt;}
._12{width:47.040000pt;}
._29{width:52.992000pt;}
._28{width:59.882880pt;}
._23{width:61.632000pt;}
._20{width:71.698560pt;}
._27{width:91.968000pt;}
._2a{width:1957.973333pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:0.320000pt;}
.y111{bottom:8.000000pt;}
.ydd{bottom:8.640000pt;}
.y47{bottom:12.000000pt;}
.yb6{bottom:16.640000pt;}
.y10f{bottom:17.280000pt;}
.y46{bottom:26.760000pt;}
.y90{bottom:28.000000pt;}
.yb5{bottom:31.360000pt;}
.y8f{bottom:44.960000pt;}
.yb4{bottom:45.920000pt;}
.y5{bottom:50.240000pt;}
.y19{bottom:51.680000pt;}
.yb3{bottom:60.640000pt;}
.y8e{bottom:61.920000pt;}
.y4{bottom:63.200000pt;}
.y18{bottom:71.200000pt;}
.y8d{bottom:78.880000pt;}
.y3{bottom:90.720000pt;}
.y8c{bottom:95.840000pt;}
.y44{bottom:109.440000pt;}
.y156{bottom:110.234667pt;}
.y2{bottom:110.240000pt;}
.y6a{bottom:115.520000pt;}
.yca{bottom:115.840000pt;}
.ydb{bottom:121.440000pt;}
.y149{bottom:122.720000pt;}
.y10d{bottom:123.040000pt;}
.y43{bottom:125.760000pt;}
.y69{bottom:129.760000pt;}
.y155{bottom:132.794667pt;}
.yb1{bottom:134.400000pt;}
.yc9{bottom:138.586667pt;}
.y8a{bottom:141.946667pt;}
.y42{bottom:142.746667pt;}
.y148{bottom:142.906667pt;}
.yda{bottom:144.186667pt;}
.y128{bottom:145.146667pt;}
.y41{bottom:148.026667pt;}
.y147{bottom:148.186667pt;}
.y154{bottom:155.386667pt;}
.y10c{bottom:156.346667pt;}
.y89{bottom:159.066667pt;}
.yc8{bottom:161.146667pt;}
.y40{bottom:161.466667pt;}
.y146{bottom:162.426667pt;}
.yb2{bottom:163.546667pt;}
.y88{bottom:164.346667pt;}
.yd9{bottom:166.746667pt;}
.yb0{bottom:167.706667pt;}
.yf6{bottom:175.546667pt;}
.y87{bottom:178.586667pt;}
.y10b{bottom:178.906667pt;}
.yc7{bottom:183.706667pt;}
.y3f{bottom:183.866667pt;}
.yd8{bottom:189.466667pt;}
.y127{bottom:190.266667pt;}
.yb7{bottom:192.506667pt;}
.y145{bottom:193.786667pt;}
.y3e{bottom:197.306667pt;}
.yaf{bottom:200.986667pt;}
.yc6{bottom:206.426667pt;}
.y68{bottom:207.226667pt;}
.yf5{bottom:208.826667pt;}
.y10a{bottom:212.186667pt;}
.y3d{bottom:214.426667pt;}
.y144{bottom:216.506667pt;}
.y3c{bottom:219.706667pt;}
.y126{bottom:223.546667pt;}
.yd7{bottom:228.026667pt;}
.yc5{bottom:228.986667pt;}
.y67{bottom:229.946667pt;}
.y3b{bottom:233.946667pt;}
.yae{bottom:234.426667pt;}
.y109{bottom:234.746667pt;}
.y143{bottom:239.066667pt;}
.y8b{bottom:242.906667pt;}
.y125{bottom:246.266667pt;}
.yf4{bottom:247.546667pt;}
.y86{bottom:249.306667pt;}
.yc4{bottom:251.706667pt;}
.y66{bottom:252.506667pt;}
.y108{bottom:257.466667pt;}
.yd6{bottom:266.586667pt;}
.yad{bottom:267.706667pt;}
.y124{bottom:268.826667pt;}
.yf3{bottom:270.106667pt;}
.y85{bottom:272.026667pt;}
.y142{bottom:272.346667pt;}
.y3a{bottom:273.786667pt;}
.yc3{bottom:274.266667pt;}
.y65{bottom:275.066667pt;}
.yd5{bottom:289.306667pt;}
.y107{bottom:290.746667pt;}
.y123{bottom:291.546667pt;}
.yf2{bottom:292.826667pt;}
.y84{bottom:294.586667pt;}
.y141{bottom:295.066667pt;}
.y39{bottom:296.506667pt;}
.yc2{bottom:296.826667pt;}
.y64{bottom:297.786667pt;}
.yac{bottom:300.986667pt;}
.yd4{bottom:311.866667pt;}
.y106{bottom:313.306667pt;}
.yf1{bottom:315.386667pt;}
.y83{bottom:317.306667pt;}
.y140{bottom:317.626667pt;}
.y38{bottom:319.066667pt;}
.y63{bottom:320.346667pt;}
.y45{bottom:329.626667pt;}
.y122{bottom:330.106667pt;}
.yc1{bottom:330.266667pt;}
.yab{bottom:334.266667pt;}
.yd3{bottom:334.586667pt;}
.yf0{bottom:337.946667pt;}
.y82{bottom:339.866667pt;}
.y13f{bottom:340.186667pt;}
.y37{bottom:341.626667pt;}
.y62{bottom:342.906667pt;}
.y105{bottom:346.586667pt;}
.yc0{bottom:352.826667pt;}
.yd2{bottom:357.026667pt;}
.yef{bottom:360.706667pt;}
.y36{bottom:364.386667pt;}
.y61{bottom:365.666667pt;}
.yaa{bottom:367.586667pt;}
.y104{bottom:369.346667pt;}
.y81{bottom:373.186667pt;}
.y13e{bottom:373.506667pt;}
.ybf{bottom:375.426667pt;}
.y121{bottom:382.786667pt;}
.y35{bottom:386.946667pt;}
.y60{bottom:388.226667pt;}
.y129{bottom:392.066667pt;}
.y80{bottom:395.746667pt;}
.y13d{bottom:396.226667pt;}
.ybe{bottom:399.106667pt;}
.yee{bottom:399.266667pt;}
.ya9{bottom:400.866667pt;}
.yd1{bottom:401.026667pt;}
.y17{bottom:403.746667pt;}
.y103{bottom:407.906667pt;}
.y34{bottom:409.666667pt;}
.y7f{bottom:418.466667pt;}
.y13c{bottom:418.786667pt;}
.ybd{bottom:421.826667pt;}
.y5f{bottom:426.786667pt;}
.y120{bottom:430.466667pt;}
.y102{bottom:430.626667pt;}
.y33{bottom:432.226667pt;}
.ya8{bottom:434.146667pt;}
.y16{bottom:437.026667pt;}
.yed{bottom:437.986667pt;}
.y7e{bottom:441.026667pt;}
.y13b{bottom:441.506667pt;}
.ybc{bottom:444.386667pt;}
.yd0{bottom:448.546667pt;}
.y101{bottom:453.186667pt;}
.y32{bottom:454.786667pt;}
.yec{bottom:460.546667pt;}
.y7d{bottom:463.746667pt;}
.y15{bottom:467.106667pt;}
.ya7{bottom:467.426667pt;}
.y5e{bottom:468.866667pt;}
.y100{bottom:475.746667pt;}
.y31{bottom:477.506667pt;}
.ybb{bottom:478.786667pt;}
.y13a{bottom:480.066667pt;}
.ycf{bottom:481.826667pt;}
.ydc{bottom:481.986667pt;}
.yeb{bottom:483.106667pt;}
.y7c{bottom:486.306667pt;}
.yff{bottom:498.466667pt;}
.y30{bottom:500.066667pt;}
.y14{bottom:500.386667pt;}
.ya6{bottom:500.706667pt;}
.y153{bottom:503.106667pt;}
.yce{bottom:504.546667pt;}
.yea{bottom:505.826667pt;}
.y7a{bottom:508.866667pt;}
.y7b{bottom:514.146667pt;}
.y5d{bottom:516.386667pt;}
.yba{bottom:517.346667pt;}
.yfe{bottom:521.026667pt;}
.y139{bottom:522.146667pt;}
.y2f{bottom:522.786667pt;}
.ya5{bottom:523.266667pt;}
.ycd{bottom:527.106667pt;}
.ye9{bottom:528.386667pt;}
.y79{bottom:531.586667pt;}
.y13{bottom:533.826667pt;}
.y152{bottom:536.386667pt;}
.y2e{bottom:545.346667pt;}
.ya4{bottom:545.986667pt;}
.y10e{bottom:548.546667pt;}
.y5c{bottom:549.826667pt;}
.ye8{bottom:551.106667pt;}
.y78{bottom:554.146667pt;}
.y12{bottom:556.386667pt;}
.yb9{bottom:559.426667pt;}
.y2d{bottom:567.906667pt;}
.ya3{bottom:568.546667pt;}
.y138{bottom:569.666667pt;}
.y5b{bottom:572.386667pt;}
.ye7{bottom:573.666667pt;}
.y77{bottom:576.866667pt;}
.y11{bottom:578.973333pt;}
.y2c{bottom:590.653333pt;}
.ya2{bottom:591.293333pt;}
.y5a{bottom:594.973333pt;}
.ye6{bottom:596.253333pt;}
.y76{bottom:599.453333pt;}
.y10{bottom:601.693333pt;}
.y137{bottom:602.973333pt;}
.yb8{bottom:606.973333pt;}
.y157{bottom:612.253200pt;}
.y2b{bottom:613.213333pt;}
.ya1{bottom:613.853333pt;}
.y59{bottom:617.693333pt;}
.y75{bottom:622.013333pt;}
.y136{bottom:625.533333pt;}
.yf{bottom:634.973333pt;}
.y2a{bottom:635.933333pt;}
.y151{bottom:636.253333pt;}
.y58{bottom:640.253333pt;}
.y74{bottom:644.733333pt;}
.ya0{bottom:647.133333pt;}
.y135{bottom:648.253333pt;}
.y11f{bottom:655.293333pt;}
.ye5{bottom:657.533333pt;}
.y29{bottom:658.493333pt;}
.y150{bottom:659.933333pt;}
.y57{bottom:662.973333pt;}
.y73{bottom:667.293333pt;}
.ye{bottom:668.253333pt;}
.y9f{bottom:669.693333pt;}
.y134{bottom:670.813333pt;}
.y11e{bottom:678.013333pt;}
.ye4{bottom:680.253333pt;}
.y14f{bottom:682.493333pt;}
.y55{bottom:685.533333pt;}
.y72{bottom:690.013333pt;}
.y56{bottom:690.813333pt;}
.y27{bottom:691.773333pt;}
.y133{bottom:693.533333pt;}
.yd{bottom:696.733333pt;}
.y28{bottom:697.053333pt;}
.y11d{bottom:700.573333pt;}
.ye3{bottom:702.813333pt;}
.y9e{bottom:702.973333pt;}
.y14e{bottom:706.173333pt;}
.y54{bottom:708.093333pt;}
.y71{bottom:712.573333pt;}
.y26{bottom:714.333333pt;}
.y11c{bottom:723.293333pt;}
.ye2{bottom:725.373333pt;}
.y9d{bottom:726.653333pt;}
.y132{bottom:726.813333pt;}
.y14d{bottom:729.853333pt;}
.y53{bottom:730.813333pt;}
.y70{bottom:735.133333pt;}
.y25{bottom:737.053333pt;}
.yc{bottom:739.133333pt;}
.y11b{bottom:745.853333pt;}
.ye1{bottom:748.093333pt;}
.y131{bottom:749.373333pt;}
.y9c{bottom:750.333333pt;}
.y52{bottom:753.373333pt;}
.y14c{bottom:753.533333pt;}
.y24{bottom:759.613333pt;}
.y11a{bottom:768.413333pt;}
.ye0{bottom:770.653333pt;}
.y12f{bottom:773.053333pt;}
.y6f{bottom:773.693333pt;}
.yfd{bottom:774.493333pt;}
.y51{bottom:776.093333pt;}
.y130{bottom:778.333333pt;}
.yb{bottom:781.693333pt;}
.y23{bottom:782.333333pt;}
.y9b{bottom:784.733333pt;}
.y14b{bottom:787.933333pt;}
.y50{bottom:798.693333pt;}
.y119{bottom:801.733333pt;}
.y21{bottom:804.933333pt;}
.y9a{bottom:807.493333pt;}
.ydf{bottom:809.413333pt;}
.y22{bottom:810.213333pt;}
.y14a{bottom:810.693333pt;}
.yfc{bottom:813.253333pt;}
.y4f{bottom:821.253333pt;}
.ya{bottom:824.133333pt;}
.y118{bottom:824.453333pt;}
.y20{bottom:827.493333pt;}
.y12e{bottom:830.053333pt;}
.yde{bottom:831.973333pt;}
.y99{bottom:840.773333pt;}
.y4e{bottom:843.973333pt;}
.yfb{bottom:846.533333pt;}
.y117{bottom:847.013333pt;}
.y1f{bottom:850.213333pt;}
.y6e{bottom:854.533333pt;}
.y98{bottom:863.333333pt;}
.y9{bottom:866.533333pt;}
.y116{bottom:869.733333pt;}
.y1e{bottom:872.773333pt;}
.y6d{bottom:877.253333pt;}
.yfa{bottom:879.813333pt;}
.y12d{bottom:885.893333pt;}
.y97{bottom:886.053333pt;}
.y4d{bottom:889.253333pt;}
.y115{bottom:892.293333pt;}
.y1d{bottom:895.493333pt;}
.y6c{bottom:899.813333pt;}
.y8{bottom:908.933333pt;}
.y12c{bottom:909.733333pt;}
.y4c{bottom:911.813333pt;}
.yf9{bottom:913.093333pt;}
.y114{bottom:914.853333pt;}
.y1c{bottom:918.053333pt;}
.y96{bottom:919.333333pt;}
.y6b{bottom:922.533333pt;}
.y12b{bottom:932.293333pt;}
.ycc{bottom:934.373333pt;}
.y113{bottom:937.573333pt;}
.y95{bottom:941.893333pt;}
.y4b{bottom:945.093333pt;}
.yf8{bottom:946.373333pt;}
.y7{bottom:951.333333pt;}
.y12a{bottom:955.973333pt;}
.y1b{bottom:956.613333pt;}
.ycb{bottom:957.093333pt;}
.y112{bottom:960.133333pt;}
.y94{bottom:965.573333pt;}
.y4a{bottom:967.653333pt;}
.y110{bottom:976.453333pt;}
.yf7{bottom:979.653333pt;}
.y93{bottom:989.253333pt;}
.y49{bottom:990.373333pt;}
.y6{bottom:993.733333pt;}
.y1a{bottom:998.693333pt;}
.y92{bottom:1011.813333pt;}
.y48{bottom:1012.933333pt;}
.y1{bottom:1060.320000pt;}
.h13{height:20.000000pt;}
.h15{height:23.840000pt;}
.h17{height:28.000000pt;}
.h14{height:28.672000pt;}
.hf{height:31.990625pt;}
.he{height:32.081250pt;}
.h9{height:32.171875pt;}
.h3{height:37.164062pt;}
.hb{height:37.952000pt;}
.hc{height:41.484375pt;}
.h18{height:42.656250pt;}
.h12{height:42.720000pt;}
.ha{height:46.039063pt;}
.h7{height:46.593750pt;}
.h16{height:52.278750pt;}
.h6{height:55.156250pt;}
.hd{height:55.312500pt;}
.h2{height:55.468750pt;}
.h11{height:71.840000pt;}
.h8{height:96.875000pt;}
.h19{height:99.389062pt;}
.h10{height:107.200000pt;}
.h5{height:112.786562pt;}
.h4{height:112.859375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:92.832000pt;}
.w4{width:220.026667pt;}
.w8{width:254.106667pt;}
.w6{width:264.026667pt;}
.w5{width:270.106667pt;}
.w7{width:308.826667pt;}
.wb{width:386.493333pt;}
.w9{width:550.973333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:1.440000pt;}
.x12{left:4.640000pt;}
.x22{left:7.040000pt;}
.x19{left:9.120000pt;}
.x1c{left:16.160000pt;}
.x28{left:21.440000pt;}
.x21{left:24.800000pt;}
.x1a{left:28.960000pt;}
.x2c{left:47.392000pt;}
.x1d{left:48.480000pt;}
.x13{left:56.314667pt;}
.x1{left:75.551988pt;}
.x23{left:79.354667pt;}
.x10{left:80.511988pt;}
.x25{left:82.080000pt;}
.x1f{left:99.551988pt;}
.x27{left:108.512000pt;}
.x11{left:110.112000pt;}
.x20{left:123.551988pt;}
.x1e{left:135.080000pt;}
.x14{left:180.986643pt;}
.x15{left:185.946655pt;}
.x30{left:213.626933pt;}
.x5{left:219.546655pt;}
.x16{left:245.986643pt;}
.x17{left:250.946655pt;}
.x4{left:264.546655pt;}
.xf{left:267.586655pt;}
.x8{left:287.426643pt;}
.x9{left:292.386655pt;}
.xa{left:295.106643pt;}
.xb{left:300.066655pt;}
.x3{left:317.986655pt;}
.x29{left:350.466667pt;}
.x2{left:400.573322pt;}
.xe{left:402.173322pt;}
.x24{left:408.253333pt;}
.x2a{left:412.093322pt;}
.x18{left:427.613333pt;}
.x2b{left:429.213322pt;}
.x26{left:439.453333pt;}
.x2e{left:472.253310pt;}
.x2f{left:477.213322pt;}
.xc{left:490.173310pt;}
.xd{left:495.133322pt;}
.x2d{left:701.093322pt;}
.x7{left:709.733322pt;}
.x6{left:718.239988pt;}
}




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