
    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_3f015b0d057fb782dcdec659.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_ca8f64271fab6094a8559231.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9321bc0eb8e0d85a7da5221e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_d80b23e3a3720aab7b3d30e7.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_15fd4a00e82550641fa935a3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_cf58c34fff8b6e2a8dcd171a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_1144a8ee3aefd11e4758ea08.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_5876ac3dbefaef10f3afc723.woff')format("woff");}.ff9{font-family:ff9;line-height:0.936035;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_ba556d7f67bd9055675d336c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d41d886b8b82458a5c7ef3cc.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_31ca4ab4b138f08fe727c54f.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f7a5f9ac930a429692602ade.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.688477;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_220d31d09eb10d0be1fe26a9.woff')format("woff");}.fff{font-family:fff;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);}
.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:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:42.480000px;}
.lsc{letter-spacing:-0.522000px;}
.ls12{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.151800px;}
.lsf{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.247800px;}
.ls7{letter-spacing:0.252600px;}
.lse{letter-spacing:0.269280px;}
.ls4{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.356000px;}
.ls11{letter-spacing:10.800000px;}
.ls6{letter-spacing:144.840000px;}
.ls5{letter-spacing:161.400000px;}
.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;}
}
.ws2{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.wse{word-spacing:-17.496000px;}
.ws5{word-spacing:-16.272000px;}
.ws1{word-spacing:-13.068960px;}
.wsb{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.864760px;}
.ws6{word-spacing:-10.865400px;}
.ws3{word-spacing:-10.612800px;}
.wsa{word-spacing:-10.062000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-2.328480px;}
._0{margin-left:-1.134000px;}
._1{width:1.374480px;}
._b{width:2.428560px;}
._9{width:4.392000px;}
._a{width:5.867040px;}
._11{width:7.128000px;}
._15{width:8.256960px;}
._8{width:10.152000px;}
._f{width:11.664000px;}
._10{width:12.749520px;}
._13{width:13.818480px;}
._19{width:15.023040px;}
._5{width:16.578000px;}
._c{width:17.910000px;}
._e{width:18.924000px;}
._d{width:20.496000px;}
._1d{width:21.654000px;}
._1c{width:22.752000px;}
._6{width:24.696000px;}
._7{width:25.860000px;}
._12{width:27.401520px;}
._14{width:28.542480px;}
._1b{width:29.705520px;}
._3{width:30.870000px;}
._1a{width:32.549520px;}
._2a{width:34.104960px;}
._28{width:35.424000px;}
._27{width:37.145520px;}
._18{width:38.304000px;}
._17{width:39.312000px;}
._2f{width:46.145520px;}
._2b{width:49.248000px;}
._2c{width:50.454000px;}
._2d{width:56.016000px;}
._2e{width:57.209040px;}
._23{width:63.612000px;}
._1f{width:113.016000px;}
._25{width:115.941360px;}
._24{width:132.096000px;}
._22{width:143.976000px;}
._21{width:178.536000px;}
._1e{width:196.824000px;}
._20{width:198.000000px;}
._26{width:280.080000px;}
._29{width:305.976000px;}
._4{width:1091.557200px;}
._2{width:2098.266000px;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc5{color:rgb(166,166,166);}
.fc7{color:rgb(128,128,128);}
.fcc{color:rgb(85,85,85);}
.fcb{color:rgb(17,17,17);}
.fc4{color:rgb(0,112,192);}
.fcd{color:rgb(0,0,255);}
.fc3{color:rgb(238,78,60);}
.fc6{color:transparent;}
.fc0{color:rgb(38,38,38);}
.fc8{color:rgb(0,0,102);}
.fc9{color:rgb(0,19,32);}
.fca{color:rgb(179,71,0);}
.fs6{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.260000px;}
.y33{bottom:2.130000px;}
.y31{bottom:3.210000px;}
.yf9{bottom:3.240000px;}
.y34{bottom:3.390000px;}
.y3{bottom:4.500000px;}
.y65{bottom:4.680000px;}
.yb5{bottom:4.860000px;}
.y91{bottom:4.860150px;}
.y4{bottom:5.220000px;}
.y38{bottom:6.660000px;}
.ycf{bottom:7.005000px;}
.yd1{bottom:7.185000px;}
.yd4{bottom:7.365000px;}
.yd2{bottom:7.545000px;}
.y166{bottom:10.979850px;}
.yb4{bottom:12.240000px;}
.y11b{bottom:12.420000px;}
.y64{bottom:12.600000px;}
.ydb{bottom:12.780000px;}
.y90{bottom:13.139850px;}
.y3b{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.yc4{bottom:25.200000px;}
.yc6{bottom:25.230000px;}
.y37{bottom:26.460000px;}
.y5{bottom:33.840000px;}
.y36{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y6{bottom:62.640000px;}
.y11a{bottom:114.480000px;}
.y8f{bottom:120.780000px;}
.y119{bottom:138.240000px;}
.y14f{bottom:140.220000px;}
.yf8{bottom:143.100000px;}
.y12e{bottom:143.280000px;}
.y8e{bottom:144.540000px;}
.y63{bottom:147.960000px;}
.y2f{bottom:152.460000px;}
.yb3{bottom:155.340000px;}
.y118{bottom:162.180000px;}
.y14e{bottom:163.980000px;}
.yf7{bottom:166.860000px;}
.y12d{bottom:167.040000px;}
.y8d{bottom:168.300000px;}
.y62{bottom:171.540000px;}
.y2e{bottom:176.220000px;}
.yda{bottom:179.100000px;}
.yb2{bottom:179.280000px;}
.y117{bottom:185.940000px;}
.y14d{bottom:187.740000px;}
.yf6{bottom:190.620000px;}
.y12c{bottom:190.800000px;}
.y61{bottom:195.840000px;}
.y2d{bottom:199.980000px;}
.yd9{bottom:202.860000px;}
.yb1{bottom:203.040000px;}
.y8c{bottom:207.210000px;}
.y116{bottom:209.730000px;}
.y14c{bottom:211.710000px;}
.yf5{bottom:214.410000px;}
.yd8{bottom:220.725000px;}
.y2c{bottom:223.950000px;}
.yb0{bottom:226.830000px;}
.y60{bottom:229.170000px;}
.y12b{bottom:229.710000px;}
.y8b{bottom:230.970000px;}
.y115{bottom:233.490000px;}
.y15c{bottom:235.470000px;}
.yf4{bottom:238.350000px;}
.yd7{bottom:246.105000px;}
.y2b{bottom:247.710000px;}
.y14b{bottom:250.410000px;}
.yaf{bottom:250.590000px;}
.y5f{bottom:252.930000px;}
.y12a{bottom:253.470000px;}
.y8a{bottom:254.730000px;}
.y114{bottom:257.430000px;}
.y15b{bottom:259.230000px;}
.yf3{bottom:262.110000px;}
.yd6{bottom:271.485000px;}
.y14a{bottom:274.350000px;}
.yae{bottom:274.530000px;}
.y129{bottom:277.230000px;}
.y2a{bottom:278.310000px;}
.y89{bottom:278.490000px;}
.y113{bottom:281.190000px;}
.y5e{bottom:283.710000px;}
.yf2{bottom:285.870000px;}
.yd5{bottom:296.685000px;}
.y15a{bottom:298.110000px;}
.yad{bottom:298.290000px;}
.y128{bottom:301.170000px;}
.y88{bottom:302.430000px;}
.y112{bottom:304.950000px;}
.yf1{bottom:309.630000px;}
.y149{bottom:313.050000px;}
.y29{bottom:317.370000px;}
.y159{bottom:321.870000px;}
.yd3{bottom:322.065000px;}
.y5d{bottom:322.770000px;}
.y87{bottom:326.190000px;}
.y111{bottom:328.710000px;}
.yf0{bottom:333.570000px;}
.y148{bottom:336.810000px;}
.yac{bottom:336.990000px;}
.y127{bottom:339.870000px;}
.y28{bottom:341.670000px;}
.y5c{bottom:346.710000px;}
.yd0{bottom:347.265000px;}
.y86{bottom:349.950000px;}
.y110{bottom:352.650000px;}
.yef{bottom:357.330000px;}
.y147{bottom:360.750000px;}
.yab{bottom:360.930000px;}
.y126{bottom:363.810000px;}
.y27{bottom:365.970000px;}
.y5b{bottom:370.470000px;}
.yce{bottom:372.645000px;}
.y85{bottom:373.710000px;}
.y165{bottom:375.690000px;}
.y10f{bottom:376.410000px;}
.yee{bottom:381.090000px;}
.y146{bottom:384.510000px;}
.yaa{bottom:384.870000px;}
.y125{bottom:387.570000px;}
.y26{bottom:390.270000px;}
.y5a{bottom:394.230000px;}
.y84{bottom:397.650000px;}
.y164{bottom:399.450000px;}
.y10e{bottom:400.170000px;}
.yed{bottom:404.850000px;}
.y145{bottom:408.270000px;}
.ycd{bottom:414.030000px;}
.y25{bottom:414.210000px;}
.y59{bottom:417.990000px;}
.y83{bottom:421.410000px;}
.y163{bottom:423.210000px;}
.y10d{bottom:423.930000px;}
.y124{bottom:426.270000px;}
.ya9{bottom:426.450000px;}
.yec{bottom:428.790000px;}
.y144{bottom:432.030000px;}
.y58{bottom:441.975000px;}
.y82{bottom:445.395000px;}
.y24{bottom:446.475000px;}
.y158{bottom:447.195000px;}
.y10c{bottom:447.915000px;}
.ya8{bottom:450.255000px;}
.yeb{bottom:452.595000px;}
.ycc{bottom:452.775000px;}
.y162{bottom:462.135000px;}
.y23{bottom:469.155000px;}
.y143{bottom:470.955000px;}
.y10b{bottom:471.675000px;}
.y123{bottom:474.015000px;}
.ya7{bottom:474.195000px;}
.yea{bottom:476.355000px;}
.ycb{bottom:476.535000px;}
.y57{bottom:480.675000px;}
.y161{bottom:485.895000px;}
.y22{bottom:486.255000px;}
.y81{bottom:486.975000px;}
.y142{bottom:494.715000px;}
.y10a{bottom:495.435000px;}
.ya6{bottom:497.955000px;}
.ye9{bottom:500.115000px;}
.y56{bottom:504.435000px;}
.y122{bottom:504.615000px;}
.y157{bottom:509.655000px;}
.y21{bottom:510.015000px;}
.y80{bottom:510.915000px;}
.yca{bottom:515.415000px;}
.y141{bottom:518.475000px;}
.y109{bottom:519.195000px;}
.ya5{bottom:521.715000px;}
.ye8{bottom:524.055000px;}
.y55{bottom:528.375000px;}
.y121{bottom:528.555000px;}
.yc9{bottom:532.875000px;}
.y156{bottom:533.595000px;}
.y20{bottom:533.775000px;}
.y108{bottom:542.955000px;}
.ya4{bottom:545.475000px;}
.ye7{bottom:547.815000px;}
.y54{bottom:552.135000px;}
.y7f{bottom:552.675000px;}
.y140{bottom:557.355000px;}
.y1f{bottom:557.535000px;}
.y107{bottom:566.895000px;}
.ya3{bottom:569.415000px;}
.ye6{bottom:571.575000px;}
.yc8{bottom:574.995000px;}
.y53{bottom:575.895000px;}
.y7e{bottom:576.435000px;}
.y13f{bottom:581.115000px;}
.y1e{bottom:581.475000px;}
.y106{bottom:590.655000px;}
.ye5{bottom:595.335000px;}
.y155{bottom:596.055000px;}
.y52{bottom:599.655000px;}
.y7d{bottom:600.195000px;}
.y13e{bottom:604.875000px;}
.y1d{bottom:605.235000px;}
.ya2{bottom:610.815000px;}
.y105{bottom:614.415000px;}
.yc7{bottom:617.115000px;}
.ye4{bottom:619.275000px;}
.y154{bottom:619.995000px;}
.y51{bottom:623.595000px;}
.y7c{bottom:623.955000px;}
.y1c{bottom:628.995000px;}
.y104{bottom:638.175000px;}
.ye3{bottom:643.035000px;}
.y13d{bottom:643.755000px;}
.y50{bottom:647.355000px;}
.y7b{bottom:647.895000px;}
.ya1{bottom:649.875000px;}
.y1b{bottom:652.755000px;}
.yc5{bottom:659.415000px;}
.y103{bottom:662.115000px;}
.y13c{bottom:667.515000px;}
.y4f{bottom:671.115000px;}
.y7a{bottom:671.655000px;}
.ya0{bottom:673.815000px;}
.y1a{bottom:676.725000px;}
.ye2{bottom:681.765000px;}
.y153{bottom:682.665000px;}
.y102{bottom:685.905000px;}
.y13b{bottom:691.305000px;}
.y4e{bottom:694.905000px;}
.y79{bottom:695.445000px;}
.y9f{bottom:697.605000px;}
.yc3{bottom:701.565000px;}
.ye1{bottom:703.185000px;}
.y101{bottom:705.345000px;}
.y152{bottom:706.425000px;}
.y19{bottom:708.945000px;}
.y4d{bottom:718.845000px;}
.y78{bottom:719.205000px;}
.y9e{bottom:721.365000px;}
.y13a{bottom:730.185000px;}
.y18{bottom:735.045000px;}
.y4c{bottom:742.605000px;}
.y77{bottom:743.145000px;}
.y151{bottom:745.125000px;}
.y139{bottom:753.945000px;}
.yc2{bottom:757.905000px;}
.y17{bottom:758.085000px;}
.y9d{bottom:759.885000px;}
.y4b{bottom:766.365000px;}
.y76{bottom:766.905000px;}
.y160{bottom:769.065000px;}
.y16{bottom:781.305000px;}
.y150{bottom:784.005000px;}
.yc1{bottom:789.045000px;}
.y4a{bottom:790.125000px;}
.y75{bottom:790.665000px;}
.y138{bottom:792.825000px;}
.y9c{bottom:798.945000px;}
.y15{bottom:804.525000px;}
.y100{bottom:807.225000px;}
.y15f{bottom:807.765000px;}
.ye0{bottom:808.305000px;}
.yc0{bottom:812.805000px;}
.y49{bottom:814.065000px;}
.y74{bottom:814.425000px;}
.y137{bottom:816.585000px;}
.y9b{bottom:822.705000px;}
.y14{bottom:827.565000px;}
.yff{bottom:831.165000px;}
.y15e{bottom:831.525000px;}
.ydf{bottom:836.745000px;}
.ybf{bottom:836.925000px;}
.y48{bottom:837.825000px;}
.y73{bottom:838.365000px;}
.y136{bottom:840.345000px;}
.y9a{bottom:846.645000px;}
.yfe{bottom:850.605000px;}
.y13{bottom:850.785000px;}
.y15d{bottom:855.465000px;}
.ybe{bottom:860.865000px;}
.y72{bottom:862.125000px;}
.y99{bottom:870.405000px;}
.y47{bottom:876.525000px;}
.y135{bottom:879.225000px;}
.y12{bottom:882.105000px;}
.ybd{bottom:884.625000px;}
.y71{bottom:885.885000px;}
.y98{bottom:894.165000px;}
.y46{bottom:900.465000px;}
.y11{bottom:902.085000px;}
.y134{bottom:902.985000px;}
.ybc{bottom:908.385000px;}
.y70{bottom:909.645000px;}
.y10{bottom:916.530000px;}
.y97{bottom:917.970000px;}
.y45{bottom:924.270000px;}
.y133{bottom:926.790000px;}
.ybb{bottom:932.190000px;}
.y6f{bottom:933.630000px;}
.yf{bottom:934.350000px;}
.y96{bottom:941.910000px;}
.y44{bottom:948.030000px;}
.yba{bottom:951.810000px;}
.y6e{bottom:957.390000px;}
.ye{bottom:962.070000px;}
.y132{bottom:965.670000px;}
.y43{bottom:971.790000px;}
.yd{bottom:973.590000px;}
.y95{bottom:980.610000px;}
.y6d{bottom:981.150000px;}
.yfd{bottom:986.370000px;}
.y30{bottom:987.120000px;}
.yb9{bottom:988.350000px;}
.y32{bottom:988.380000px;}
.y131{bottom:989.430000px;}
.yc{bottom:993.390000px;}
.yde{bottom:994.290000px;}
.y42{bottom:995.730000px;}
.y94{bottom:1004.370000px;}
.y6c{bottom:1004.910000px;}
.y120{bottom:1011.930000px;}
.yb8{bottom:1012.290000px;}
.y130{bottom:1013.190000px;}
.ydd{bottom:1018.050000px;}
.y41{bottom:1019.490000px;}
.yfc{bottom:1025.250000px;}
.yb{bottom:1027.590000px;}
.y93{bottom:1028.310000px;}
.y6b{bottom:1028.850000px;}
.y11f{bottom:1035.690000px;}
.yb7{bottom:1036.050000px;}
.y40{bottom:1043.250000px;}
.yfb{bottom:1049.010000px;}
.y92{bottom:1052.070000px;}
.y6a{bottom:1052.610000px;}
.ydc{bottom:1057.650000px;}
.y11e{bottom:1059.810000px;}
.ya{bottom:1062.870000px;}
.yb6{bottom:1066.650000px;}
.y3f{bottom:1067.010000px;}
.y12f{bottom:1075.830000px;}
.y69{bottom:1076.370000px;}
.yfa{bottom:1081.590000px;}
.y11d{bottom:1083.570000px;}
.y3e{bottom:1090.950000px;}
.y9{bottom:1101.030000px;}
.y68{bottom:1107.150000px;}
.y11c{bottom:1107.510000px;}
.y3d{bottom:1114.710000px;}
.y67{bottom:1138.110000px;}
.y3c{bottom:1138.470000px;}
.y8{bottom:1139.190000px;}
.y3a{bottom:1180.440000px;}
.y39{bottom:1196.280000px;}
.y66{bottom:1197.540000px;}
.y35{bottom:1207.980000px;}
.h18{height:13.500000px;}
.h16{height:14.580000px;}
.h1a{height:14.760000px;}
.h1f{height:18.000000px;}
.h20{height:18.180000px;}
.h25{height:23.745000px;}
.h26{height:23.925000px;}
.h1b{height:24.380859px;}
.h6{height:24.840000px;}
.hc{height:25.603594px;}
.ha{height:36.281250px;}
.h2{height:38.405391px;}
.h8{height:38.469727px;}
.h17{height:40.843828px;}
.h12{height:40.985156px;}
.h24{height:41.385000px;}
.h22{height:41.400000px;}
.h23{height:41.430000px;}
.h9{height:42.573164px;}
.h1c{height:43.057617px;}
.h1d{height:45.720703px;}
.h4{height:49.680000px;}
.h15{height:52.066406px;}
.h5{height:52.817344px;}
.h7{height:53.709961px;}
.hd{height:54.421875px;}
.he{height:54.597656px;}
.h19{height:59.439023px;}
.h13{height:60.960938px;}
.h10{height:65.837812px;}
.h3{height:65.884219px;}
.hf{height:67.824844px;}
.h11{height:70.664062px;}
.h14{height:72.562500px;}
.h1e{height:74.004654px;}
.h21{height:80.464922px;}
.hb{height:91.441406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:68.760000px;}
.w8{width:69.300000px;}
.w17{width:70.200000px;}
.w18{width:70.380000px;}
.w9{width:71.100000px;}
.wa{width:71.640000px;}
.w15{width:73.080000px;}
.w2{width:82.620000px;}
.w14{width:88.005000px;}
.we{width:89.629500px;}
.w12{width:98.265000px;}
.w10{width:98.280000px;}
.w13{width:98.301000px;}
.w11{width:98.316000px;}
.wf{width:98.481000px;}
.w7{width:107.100000px;}
.w4{width:152.460000px;}
.w5{width:174.780000px;}
.w6{width:221.400000px;}
.wb{width:222.319500px;}
.wd{width:226.815000px;}
.wc{width:230.430000px;}
.w3{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.729500px;}
.x3{left:10.950000px;}
.x13{left:13.860000px;}
.x12{left:35.535000px;}
.x4{left:93.960000px;}
.x1{left:108.036000px;}
.xe{left:109.116000px;}
.x10{left:115.020000px;}
.x16{left:127.476000px;}
.x1b{left:129.276000px;}
.xd{left:153.570000px;}
.x2a{left:162.030000px;}
.x6{left:177.690000px;}
.x17{left:181.470000px;}
.x29{left:189.030000px;}
.x20{left:199.125000px;}
.x15{left:222.870000px;}
.xa{left:241.410000px;}
.xc{left:246.090000px;}
.x19{left:252.210000px;}
.xb{left:261.930000px;}
.x9{left:269.490000px;}
.x21{left:298.335000px;}
.x14{left:329.295000px;}
.x1e{left:331.455000px;}
.x11{left:347.220000px;}
.x1c{left:360.435000px;}
.x22{left:397.335000px;}
.x8{left:435.135000px;}
.x7{left:446.475000px;}
.x5{left:454.965000px;}
.x23{left:496.380000px;}
.x1f{left:562.620000px;}
.x24{left:595.380000px;}
.xf{left:640.440000px;}
.x25{left:694.410000px;}
.x27{left:754.890000px;}
.x28{left:779.910000px;}
.x2{left:810.360000px;}
.x26{left:819.900000px;}
.x1a{left:821.880000px;}
.x18{left:823.680000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:37.760000pt;}
.lsc{letter-spacing:-0.464000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.134933pt;}
.lsf{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.220267pt;}
.ls7{letter-spacing:0.224533pt;}
.lse{letter-spacing:0.239360pt;}
.ls4{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.205333pt;}
.ls11{letter-spacing:9.600000pt;}
.ls6{letter-spacing:128.746667pt;}
.ls5{letter-spacing:143.466667pt;}
.ws2{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.552000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws1{word-spacing:-11.616853pt;}
.wsb{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.546453pt;}
.ws6{word-spacing:-9.658133pt;}
.ws3{word-spacing:-9.433600pt;}
.wsa{word-spacing:-8.944000pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-2.069760pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.221760pt;}
._b{width:2.158720pt;}
._9{width:3.904000pt;}
._a{width:5.215147pt;}
._11{width:6.336000pt;}
._15{width:7.339520pt;}
._8{width:9.024000pt;}
._f{width:10.368000pt;}
._10{width:11.332907pt;}
._13{width:12.283093pt;}
._19{width:13.353813pt;}
._5{width:14.736000pt;}
._c{width:15.920000pt;}
._e{width:16.821333pt;}
._d{width:18.218667pt;}
._1d{width:19.248000pt;}
._1c{width:20.224000pt;}
._6{width:21.952000pt;}
._7{width:22.986667pt;}
._12{width:24.356907pt;}
._14{width:25.371093pt;}
._1b{width:26.404907pt;}
._3{width:27.440000pt;}
._1a{width:28.932907pt;}
._2a{width:30.315520pt;}
._28{width:31.488000pt;}
._27{width:33.018240pt;}
._18{width:34.048000pt;}
._17{width:34.944000pt;}
._2f{width:41.018240pt;}
._2b{width:43.776000pt;}
._2c{width:44.848000pt;}
._2d{width:49.792000pt;}
._2e{width:50.852480pt;}
._23{width:56.544000pt;}
._1f{width:100.458667pt;}
._25{width:103.058987pt;}
._24{width:117.418667pt;}
._22{width:127.978667pt;}
._21{width:158.698667pt;}
._1e{width:174.954667pt;}
._20{width:176.000000pt;}
._26{width:248.960000pt;}
._29{width:271.978667pt;}
._4{width:970.273067pt;}
._2{width:1865.125333pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.120000pt;}
.y33{bottom:1.893333pt;}
.y31{bottom:2.853333pt;}
.yf9{bottom:2.880000pt;}
.y34{bottom:3.013333pt;}
.y3{bottom:4.000000pt;}
.y65{bottom:4.160000pt;}
.yb5{bottom:4.320000pt;}
.y91{bottom:4.320133pt;}
.y4{bottom:4.640000pt;}
.y38{bottom:5.920000pt;}
.ycf{bottom:6.226667pt;}
.yd1{bottom:6.386667pt;}
.yd4{bottom:6.546667pt;}
.yd2{bottom:6.706667pt;}
.y166{bottom:9.759867pt;}
.yb4{bottom:10.880000pt;}
.y11b{bottom:11.040000pt;}
.y64{bottom:11.200000pt;}
.ydb{bottom:11.360000pt;}
.y90{bottom:11.679867pt;}
.y3b{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.yc4{bottom:22.400000pt;}
.yc6{bottom:22.426667pt;}
.y37{bottom:23.520000pt;}
.y5{bottom:30.080000pt;}
.y36{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y6{bottom:55.680000pt;}
.y11a{bottom:101.760000pt;}
.y8f{bottom:107.360000pt;}
.y119{bottom:122.880000pt;}
.y14f{bottom:124.640000pt;}
.yf8{bottom:127.200000pt;}
.y12e{bottom:127.360000pt;}
.y8e{bottom:128.480000pt;}
.y63{bottom:131.520000pt;}
.y2f{bottom:135.520000pt;}
.yb3{bottom:138.080000pt;}
.y118{bottom:144.160000pt;}
.y14e{bottom:145.760000pt;}
.yf7{bottom:148.320000pt;}
.y12d{bottom:148.480000pt;}
.y8d{bottom:149.600000pt;}
.y62{bottom:152.480000pt;}
.y2e{bottom:156.640000pt;}
.yda{bottom:159.200000pt;}
.yb2{bottom:159.360000pt;}
.y117{bottom:165.280000pt;}
.y14d{bottom:166.880000pt;}
.yf6{bottom:169.440000pt;}
.y12c{bottom:169.600000pt;}
.y61{bottom:174.080000pt;}
.y2d{bottom:177.760000pt;}
.yd9{bottom:180.320000pt;}
.yb1{bottom:180.480000pt;}
.y8c{bottom:184.186667pt;}
.y116{bottom:186.426667pt;}
.y14c{bottom:188.186667pt;}
.yf5{bottom:190.586667pt;}
.yd8{bottom:196.200000pt;}
.y2c{bottom:199.066667pt;}
.yb0{bottom:201.626667pt;}
.y60{bottom:203.706667pt;}
.y12b{bottom:204.186667pt;}
.y8b{bottom:205.306667pt;}
.y115{bottom:207.546667pt;}
.y15c{bottom:209.306667pt;}
.yf4{bottom:211.866667pt;}
.yd7{bottom:218.760000pt;}
.y2b{bottom:220.186667pt;}
.y14b{bottom:222.586667pt;}
.yaf{bottom:222.746667pt;}
.y5f{bottom:224.826667pt;}
.y12a{bottom:225.306667pt;}
.y8a{bottom:226.426667pt;}
.y114{bottom:228.826667pt;}
.y15b{bottom:230.426667pt;}
.yf3{bottom:232.986667pt;}
.yd6{bottom:241.320000pt;}
.y14a{bottom:243.866667pt;}
.yae{bottom:244.026667pt;}
.y129{bottom:246.426667pt;}
.y2a{bottom:247.386667pt;}
.y89{bottom:247.546667pt;}
.y113{bottom:249.946667pt;}
.y5e{bottom:252.186667pt;}
.yf2{bottom:254.106667pt;}
.yd5{bottom:263.720000pt;}
.y15a{bottom:264.986667pt;}
.yad{bottom:265.146667pt;}
.y128{bottom:267.706667pt;}
.y88{bottom:268.826667pt;}
.y112{bottom:271.066667pt;}
.yf1{bottom:275.226667pt;}
.y149{bottom:278.266667pt;}
.y29{bottom:282.106667pt;}
.y159{bottom:286.106667pt;}
.yd3{bottom:286.280000pt;}
.y5d{bottom:286.906667pt;}
.y87{bottom:289.946667pt;}
.y111{bottom:292.186667pt;}
.yf0{bottom:296.506667pt;}
.y148{bottom:299.386667pt;}
.yac{bottom:299.546667pt;}
.y127{bottom:302.106667pt;}
.y28{bottom:303.706667pt;}
.y5c{bottom:308.186667pt;}
.yd0{bottom:308.680000pt;}
.y86{bottom:311.066667pt;}
.y110{bottom:313.466667pt;}
.yef{bottom:317.626667pt;}
.y147{bottom:320.666667pt;}
.yab{bottom:320.826667pt;}
.y126{bottom:323.386667pt;}
.y27{bottom:325.306667pt;}
.y5b{bottom:329.306667pt;}
.yce{bottom:331.240000pt;}
.y85{bottom:332.186667pt;}
.y165{bottom:333.946667pt;}
.y10f{bottom:334.586667pt;}
.yee{bottom:338.746667pt;}
.y146{bottom:341.786667pt;}
.yaa{bottom:342.106667pt;}
.y125{bottom:344.506667pt;}
.y26{bottom:346.906667pt;}
.y5a{bottom:350.426667pt;}
.y84{bottom:353.466667pt;}
.y164{bottom:355.066667pt;}
.y10e{bottom:355.706667pt;}
.yed{bottom:359.866667pt;}
.y145{bottom:362.906667pt;}
.ycd{bottom:368.026667pt;}
.y25{bottom:368.186667pt;}
.y59{bottom:371.546667pt;}
.y83{bottom:374.586667pt;}
.y163{bottom:376.186667pt;}
.y10d{bottom:376.826667pt;}
.y124{bottom:378.906667pt;}
.ya9{bottom:379.066667pt;}
.yec{bottom:381.146667pt;}
.y144{bottom:384.026667pt;}
.y58{bottom:392.866667pt;}
.y82{bottom:395.906667pt;}
.y24{bottom:396.866667pt;}
.y158{bottom:397.506667pt;}
.y10c{bottom:398.146667pt;}
.ya8{bottom:400.226667pt;}
.yeb{bottom:402.306667pt;}
.ycc{bottom:402.466667pt;}
.y162{bottom:410.786667pt;}
.y23{bottom:417.026667pt;}
.y143{bottom:418.626667pt;}
.y10b{bottom:419.266667pt;}
.y123{bottom:421.346667pt;}
.ya7{bottom:421.506667pt;}
.yea{bottom:423.426667pt;}
.ycb{bottom:423.586667pt;}
.y57{bottom:427.266667pt;}
.y161{bottom:431.906667pt;}
.y22{bottom:432.226667pt;}
.y81{bottom:432.866667pt;}
.y142{bottom:439.746667pt;}
.y10a{bottom:440.386667pt;}
.ya6{bottom:442.626667pt;}
.ye9{bottom:444.546667pt;}
.y56{bottom:448.386667pt;}
.y122{bottom:448.546667pt;}
.y157{bottom:453.026667pt;}
.y21{bottom:453.346667pt;}
.y80{bottom:454.146667pt;}
.yca{bottom:458.146667pt;}
.y141{bottom:460.866667pt;}
.y109{bottom:461.506667pt;}
.ya5{bottom:463.746667pt;}
.ye8{bottom:465.826667pt;}
.y55{bottom:469.666667pt;}
.y121{bottom:469.826667pt;}
.yc9{bottom:473.666667pt;}
.y156{bottom:474.306667pt;}
.y20{bottom:474.466667pt;}
.y108{bottom:482.626667pt;}
.ya4{bottom:484.866667pt;}
.ye7{bottom:486.946667pt;}
.y54{bottom:490.786667pt;}
.y7f{bottom:491.266667pt;}
.y140{bottom:495.426667pt;}
.y1f{bottom:495.586667pt;}
.y107{bottom:503.906667pt;}
.ya3{bottom:506.146667pt;}
.ye6{bottom:508.066667pt;}
.yc8{bottom:511.106667pt;}
.y53{bottom:511.906667pt;}
.y7e{bottom:512.386667pt;}
.y13f{bottom:516.546667pt;}
.y1e{bottom:516.866667pt;}
.y106{bottom:525.026667pt;}
.ye5{bottom:529.186667pt;}
.y155{bottom:529.826667pt;}
.y52{bottom:533.026667pt;}
.y7d{bottom:533.506667pt;}
.y13e{bottom:537.666667pt;}
.y1d{bottom:537.986667pt;}
.ya2{bottom:542.946667pt;}
.y105{bottom:546.146667pt;}
.yc7{bottom:548.546667pt;}
.ye4{bottom:550.466667pt;}
.y154{bottom:551.106667pt;}
.y51{bottom:554.306667pt;}
.y7c{bottom:554.626667pt;}
.y1c{bottom:559.106667pt;}
.y104{bottom:567.266667pt;}
.ye3{bottom:571.586667pt;}
.y13d{bottom:572.226667pt;}
.y50{bottom:575.426667pt;}
.y7b{bottom:575.906667pt;}
.ya1{bottom:577.666667pt;}
.y1b{bottom:580.226667pt;}
.yc5{bottom:586.146667pt;}
.y103{bottom:588.546667pt;}
.y13c{bottom:593.346667pt;}
.y4f{bottom:596.546667pt;}
.y7a{bottom:597.026667pt;}
.ya0{bottom:598.946667pt;}
.y1a{bottom:601.533333pt;}
.ye2{bottom:606.013333pt;}
.y153{bottom:606.813333pt;}
.y102{bottom:609.693333pt;}
.y13b{bottom:614.493333pt;}
.y4e{bottom:617.693333pt;}
.y79{bottom:618.173333pt;}
.y9f{bottom:620.093333pt;}
.yc3{bottom:623.613333pt;}
.ye1{bottom:625.053333pt;}
.y101{bottom:626.973333pt;}
.y152{bottom:627.933333pt;}
.y19{bottom:630.173333pt;}
.y4d{bottom:638.973333pt;}
.y78{bottom:639.293333pt;}
.y9e{bottom:641.213333pt;}
.y13a{bottom:649.053333pt;}
.y18{bottom:653.373333pt;}
.y4c{bottom:660.093333pt;}
.y77{bottom:660.573333pt;}
.y151{bottom:662.333333pt;}
.y139{bottom:670.173333pt;}
.yc2{bottom:673.693333pt;}
.y17{bottom:673.853333pt;}
.y9d{bottom:675.453333pt;}
.y4b{bottom:681.213333pt;}
.y76{bottom:681.693333pt;}
.y160{bottom:683.613333pt;}
.y16{bottom:694.493333pt;}
.y150{bottom:696.893333pt;}
.yc1{bottom:701.373333pt;}
.y4a{bottom:702.333333pt;}
.y75{bottom:702.813333pt;}
.y138{bottom:704.733333pt;}
.y9c{bottom:710.173333pt;}
.y15{bottom:715.133333pt;}
.y100{bottom:717.533333pt;}
.y15f{bottom:718.013333pt;}
.ye0{bottom:718.493333pt;}
.yc0{bottom:722.493333pt;}
.y49{bottom:723.613333pt;}
.y74{bottom:723.933333pt;}
.y137{bottom:725.853333pt;}
.y9b{bottom:731.293333pt;}
.y14{bottom:735.613333pt;}
.yff{bottom:738.813333pt;}
.y15e{bottom:739.133333pt;}
.ydf{bottom:743.773333pt;}
.ybf{bottom:743.933333pt;}
.y48{bottom:744.733333pt;}
.y73{bottom:745.213333pt;}
.y136{bottom:746.973333pt;}
.y9a{bottom:752.573333pt;}
.yfe{bottom:756.093333pt;}
.y13{bottom:756.253333pt;}
.y15d{bottom:760.413333pt;}
.ybe{bottom:765.213333pt;}
.y72{bottom:766.333333pt;}
.y99{bottom:773.693333pt;}
.y47{bottom:779.133333pt;}
.y135{bottom:781.533333pt;}
.y12{bottom:784.093333pt;}
.ybd{bottom:786.333333pt;}
.y71{bottom:787.453333pt;}
.y98{bottom:794.813333pt;}
.y46{bottom:800.413333pt;}
.y11{bottom:801.853333pt;}
.y134{bottom:802.653333pt;}
.ybc{bottom:807.453333pt;}
.y70{bottom:808.573333pt;}
.y10{bottom:814.693333pt;}
.y97{bottom:815.973333pt;}
.y45{bottom:821.573333pt;}
.y133{bottom:823.813333pt;}
.ybb{bottom:828.613333pt;}
.y6f{bottom:829.893333pt;}
.yf{bottom:830.533333pt;}
.y96{bottom:837.253333pt;}
.y44{bottom:842.693333pt;}
.yba{bottom:846.053333pt;}
.y6e{bottom:851.013333pt;}
.ye{bottom:855.173333pt;}
.y132{bottom:858.373333pt;}
.y43{bottom:863.813333pt;}
.yd{bottom:865.413333pt;}
.y95{bottom:871.653333pt;}
.y6d{bottom:872.133333pt;}
.yfd{bottom:876.773333pt;}
.y30{bottom:877.440000pt;}
.yb9{bottom:878.533333pt;}
.y32{bottom:878.560000pt;}
.y131{bottom:879.493333pt;}
.yc{bottom:883.013333pt;}
.yde{bottom:883.813333pt;}
.y42{bottom:885.093333pt;}
.y94{bottom:892.773333pt;}
.y6c{bottom:893.253333pt;}
.y120{bottom:899.493333pt;}
.yb8{bottom:899.813333pt;}
.y130{bottom:900.613333pt;}
.ydd{bottom:904.933333pt;}
.y41{bottom:906.213333pt;}
.yfc{bottom:911.333333pt;}
.yb{bottom:913.413333pt;}
.y93{bottom:914.053333pt;}
.y6b{bottom:914.533333pt;}
.y11f{bottom:920.613333pt;}
.yb7{bottom:920.933333pt;}
.y40{bottom:927.333333pt;}
.yfb{bottom:932.453333pt;}
.y92{bottom:935.173333pt;}
.y6a{bottom:935.653333pt;}
.ydc{bottom:940.133333pt;}
.y11e{bottom:942.053333pt;}
.ya{bottom:944.773333pt;}
.yb6{bottom:948.133333pt;}
.y3f{bottom:948.453333pt;}
.y12f{bottom:956.293333pt;}
.y69{bottom:956.773333pt;}
.yfa{bottom:961.413333pt;}
.y11d{bottom:963.173333pt;}
.y3e{bottom:969.733333pt;}
.y9{bottom:978.693333pt;}
.y68{bottom:984.133333pt;}
.y11c{bottom:984.453333pt;}
.y3d{bottom:990.853333pt;}
.y67{bottom:1011.653333pt;}
.y3c{bottom:1011.973333pt;}
.y8{bottom:1012.613333pt;}
.y3a{bottom:1049.280000pt;}
.y39{bottom:1063.360000pt;}
.y66{bottom:1064.480000pt;}
.y35{bottom:1073.760000pt;}
.h18{height:12.000000pt;}
.h16{height:12.960000pt;}
.h1a{height:13.120000pt;}
.h1f{height:16.000000pt;}
.h20{height:16.160000pt;}
.h25{height:21.106667pt;}
.h26{height:21.266667pt;}
.h1b{height:21.671875pt;}
.h6{height:22.080000pt;}
.hc{height:22.758750pt;}
.ha{height:32.250000pt;}
.h2{height:34.138125pt;}
.h8{height:34.195312pt;}
.h17{height:36.305625pt;}
.h12{height:36.431250pt;}
.h24{height:36.786667pt;}
.h22{height:36.800000pt;}
.h23{height:36.826667pt;}
.h9{height:37.842813pt;}
.h1c{height:38.273438pt;}
.h1d{height:40.640625pt;}
.h4{height:44.160000pt;}
.h15{height:46.281250pt;}
.h5{height:46.948750pt;}
.h7{height:47.742188pt;}
.hd{height:48.375000pt;}
.he{height:48.531250pt;}
.h19{height:52.834688pt;}
.h13{height:54.187500pt;}
.h10{height:58.522500pt;}
.h3{height:58.563750pt;}
.hf{height:60.288750pt;}
.h11{height:62.812500pt;}
.h14{height:64.500000pt;}
.h1e{height:65.781915pt;}
.h21{height:71.524375pt;}
.hb{height:81.281250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:61.120000pt;}
.w8{width:61.600000pt;}
.w17{width:62.400000pt;}
.w18{width:62.560000pt;}
.w9{width:63.200000pt;}
.wa{width:63.680000pt;}
.w15{width:64.960000pt;}
.w2{width:73.440000pt;}
.w14{width:78.226667pt;}
.we{width:79.670667pt;}
.w12{width:87.346667pt;}
.w10{width:87.360000pt;}
.w13{width:87.378667pt;}
.w11{width:87.392000pt;}
.wf{width:87.538667pt;}
.w7{width:95.200000pt;}
.w4{width:135.520000pt;}
.w5{width:155.360000pt;}
.w6{width:196.800000pt;}
.wb{width:197.617333pt;}
.wd{width:201.613333pt;}
.wc{width:204.826667pt;}
.w3{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.870667pt;}
.x3{left:9.733333pt;}
.x13{left:12.320000pt;}
.x12{left:31.586667pt;}
.x4{left:83.520000pt;}
.x1{left:96.032000pt;}
.xe{left:96.992000pt;}
.x10{left:102.240000pt;}
.x16{left:113.312000pt;}
.x1b{left:114.912000pt;}
.xd{left:136.506667pt;}
.x2a{left:144.026667pt;}
.x6{left:157.946667pt;}
.x17{left:161.306667pt;}
.x29{left:168.026667pt;}
.x20{left:177.000000pt;}
.x15{left:198.106667pt;}
.xa{left:214.586667pt;}
.xc{left:218.746667pt;}
.x19{left:224.186667pt;}
.xb{left:232.826667pt;}
.x9{left:239.546667pt;}
.x21{left:265.186667pt;}
.x14{left:292.706667pt;}
.x1e{left:294.626667pt;}
.x11{left:308.640000pt;}
.x1c{left:320.386667pt;}
.x22{left:353.186667pt;}
.x8{left:386.786667pt;}
.x7{left:396.866667pt;}
.x5{left:404.413333pt;}
.x23{left:441.226667pt;}
.x1f{left:500.106667pt;}
.x24{left:529.226667pt;}
.xf{left:569.280000pt;}
.x25{left:617.253333pt;}
.x27{left:671.013333pt;}
.x28{left:693.253333pt;}
.x2{left:720.320000pt;}
.x26{left:728.800000pt;}
.x1a{left:730.560000pt;}
.x18{left:732.160000pt;}
}




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