
    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_5d63ae2452c08657c0365154.woff')format("woff");}.ff1{font-family:ff1;line-height:1.111816;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_4ef6f4e6d15bf238f5514eff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.848000;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_ba96d1ebf14d5e326f2d6ea9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.120117;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_8bb76cce59c59f7fd270cf68.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931152;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_0daf9bd3661449e0d398e877.woff')format("woff");}.ff7{font-family:ff7;line-height:0.769531;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_3090fbf0a242d61c538d0684.woff')format("woff");}.ff8{font-family:ff8;line-height:1.128906;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_f6f0c3f744dc1f232f3436b1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_25296a3acf4862a9d16e00b2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.121582;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_357fec2017c1464d7bd9f11e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.111816;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_b4feb020e884746ba36338c3.woff')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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_25f674c7c77d0c6a3c9b8523.woff')format("woff");}.ffd{font-family:ffd;line-height:1.120117;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_cf9f6d16430008c58f469fb1.woff')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_ec1837c01af5cfeea9593d63.woff')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,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);}
.m2{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);}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.760000px;}
.v2{vertical-align:12.240000px;}
.lsf{letter-spacing:-0.876000px;}
.lsb{letter-spacing:-0.828000px;}
.ls28{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.624000px;}
.ls11{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.414600px;}
.ls14{letter-spacing:-0.335400px;}
.ls1e{letter-spacing:-0.322800px;}
.ls1c{letter-spacing:-0.198600px;}
.ls1f{letter-spacing:-0.161400px;}
.lse{letter-spacing:-0.158400px;}
.ls27{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.136800px;}
.lsc{letter-spacing:-0.109200px;}
.lsa{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018720px;}
.ls17{letter-spacing:0.064800px;}
.ls13{letter-spacing:0.096000px;}
.ls6{letter-spacing:0.119520px;}
.ls26{letter-spacing:0.126000px;}
.ls21{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.204000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.226200px;}
.ls29{letter-spacing:0.241920px;}
.ls24{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.256200px;}
.ls1b{letter-spacing:0.305400px;}
.ls10{letter-spacing:0.384600px;}
.ls1d{letter-spacing:0.397200px;}
.ls18{letter-spacing:0.398400px;}
.ls25{letter-spacing:0.450000px;}
.ls0{letter-spacing:0.561600px;}
.ls23{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.610560px;}
.ls12{letter-spacing:0.666000px;}
.ls20{letter-spacing:1.036800px;}
.ls4{letter-spacing:1.104480px;}
.ls8{letter-spacing:1.278720px;}
.ls16{letter-spacing:3.444000px;}
.ls7{letter-spacing:849.264000px;}
.ls22{letter-spacing:849.288000px;}
.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;}
}
.wsd{word-spacing:-30.240000px;}
.ws1d{word-spacing:-12.564000px;}
.ws1a{word-spacing:-12.492000px;}
.ws1c{word-spacing:-12.312000px;}
.ws1e{word-spacing:-12.168000px;}
.ws15{word-spacing:-11.655360px;}
.ws16{word-spacing:-10.998720px;}
.ws17{word-spacing:-9.918480px;}
.ws18{word-spacing:-9.198480px;}
.wsf{word-spacing:-9.170160px;}
.ws8{word-spacing:-7.560720px;}
.ws7{word-spacing:-7.279320px;}
.ws4{word-spacing:-7.150920px;}
.ws6{word-spacing:-7.120920px;}
.ws9{word-spacing:-6.990720px;}
.ws3{word-spacing:-6.894720px;}
.ws2{word-spacing:-6.785520px;}
.ws5{word-spacing:-6.736320px;}
.wsa{word-spacing:-6.559320px;}
.wsb{word-spacing:-6.480120px;}
.ws0{word-spacing:-6.270720px;}
.ws1b{word-spacing:-6.238080px;}
.ws11{word-spacing:-6.124560px;}
.ws1{word-spacing:-6.066720px;}
.ws14{word-spacing:-6.031560px;}
.wsc{word-spacing:-6.018720px;}
.ws12{word-spacing:-5.930160px;}
.ws13{word-spacing:-5.589360px;}
.ws10{word-spacing:-3.643920px;}
.wse{word-spacing:-0.054000px;}
.ws19{word-spacing:0.000000px;}
._2{margin-left:-3.184560px;}
._1{margin-left:-1.964160px;}
._0{width:1.713600px;}
._6{width:2.727120px;}
._4{width:3.851760px;}
._7{width:4.918560px;}
._5{width:6.875280px;}
._f{width:8.584560px;}
._3{width:10.103520px;}
._15{width:11.176560px;}
._c{width:12.248640px;}
._b{width:13.410720px;}
._8{width:15.195600px;}
._9{width:16.387920px;}
._14{width:17.658000px;}
._d{width:20.019600px;}
._16{width:21.057840px;}
._12{width:22.624560px;}
._13{width:23.646960px;}
._17{width:25.704000px;}
._a{width:27.545040px;}
._10{width:29.329920px;}
._11{width:30.738240px;}
._e{width:44.814960px;}
.fc1{color:rgb(216,110,204);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:15.120000px;}
.fs6{font-size:23.760000px;}
.fs9{font-size:27.360000px;}
.fs0{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs8{font-size:45.360000px;}
.fsb{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.800000px;}
.y8{bottom:4.140000px;}
.y2{bottom:10.440000px;}
.y1{bottom:45.000000px;}
.y7{bottom:47.520000px;}
.y75{bottom:55.980000px;}
.y6{bottom:56.700000px;}
.yc6{bottom:58.140000px;}
.y158{bottom:59.040000px;}
.yd9{bottom:63.900000px;}
.y74{bottom:68.040000px;}
.y5{bottom:70.560000px;}
.y157{bottom:71.100000px;}
.yc5{bottom:73.620000px;}
.yd8{bottom:79.380000px;}
.y73{bottom:80.100000px;}
.y156{bottom:82.440000px;}
.y3e{bottom:82.800000px;}
.ya1{bottom:85.860000px;}
.yef{bottom:86.580000px;}
.yc4{bottom:89.100000px;}
.y14b{bottom:89.460000px;}
.y72{bottom:92.160000px;}
.y3d{bottom:94.860000px;}
.yee{bottom:102.060000px;}
.y71{bottom:104.220000px;}
.y3c{bottom:106.920000px;}
.ya0{bottom:110.340000px;}
.yc3{bottom:113.580000px;}
.y14a{bottom:114.120000px;}
.y70{bottom:116.280000px;}
.yed{bottom:117.540000px;}
.y3b{bottom:118.980000px;}
.y3a{bottom:122.040000px;}
.y9f{bottom:125.820000px;}
.y11a{bottom:126.540000px;}
.y6f{bottom:128.340000px;}
.yc2{bottom:129.060000px;}
.yec{bottom:133.020000px;}
.y39{bottom:133.380000px;}
.y149{bottom:138.600000px;}
.y6e{bottom:140.400000px;}
.y9e{bottom:141.300000px;}
.y119{bottom:142.020000px;}
.y6d{bottom:143.460000px;}
.y129{bottom:143.820000px;}
.yc1{bottom:144.540000px;}
.y10b{bottom:150.300000px;}
.y148{bottom:154.080000px;}
.y6c{bottom:154.800000px;}
.y9d{bottom:156.780000px;}
.yeb{bottom:157.500000px;}
.y128{bottom:159.300000px;}
.y38{bottom:159.480000px;}
.yc0{bottom:160.020000px;}
.yd7{bottom:165.780000px;}
.yea{bottom:173.010000px;}
.y127{bottom:174.810000px;}
.y37{bottom:175.350000px;}
.ybf{bottom:175.530000px;}
.y147{bottom:178.590000px;}
.y9c{bottom:181.290000px;}
.y6b{bottom:184.530000px;}
.ye9{bottom:188.490000px;}
.y36{bottom:188.670000px;}
.y126{bottom:190.290000px;}
.ybe{bottom:191.010000px;}
.y9b{bottom:196.770000px;}
.y6a{bottom:200.010000px;}
.y146{bottom:203.070000px;}
.ye8{bottom:204.150000px;}
.y10a{bottom:205.770000px;}
.ybd{bottom:206.490000px;}
.y9a{bottom:212.250000px;}
.y118{bottom:213.150000px;}
.y125{bottom:214.770000px;}
.y69{bottom:215.490000px;}
.y145{bottom:218.550000px;}
.y35{bottom:219.270000px;}
.y109{bottom:221.250000px;}
.ybc{bottom:222.150000px;}
.y99{bottom:227.730000px;}
.ye7{bottom:228.630000px;}
.y124{bottom:230.250000px;}
.y68{bottom:231.150000px;}
.y34{bottom:234.210000px;}
.y108{bottom:236.730000px;}
.ybb{bottom:237.630000px;}
.y144{bottom:243.030000px;}
.y98{bottom:243.390000px;}
.ye6{bottom:244.110000px;}
.y123{bottom:245.730000px;}
.y67{bottom:246.630000px;}
.y33{bottom:249.150000px;}
.y107{bottom:252.390000px;}
.yba{bottom:253.110000px;}
.y143{bottom:258.510000px;}
.ye5{bottom:259.590000px;}
.y122{bottom:261.390000px;}
.y32{bottom:263.910000px;}
.y97{bottom:267.870000px;}
.y66{bottom:271.110000px;}
.ye4{bottom:275.070000px;}
.y106{bottom:276.870000px;}
.yb9{bottom:277.590000px;}
.y31{bottom:278.850000px;}
.y142{bottom:282.990000px;}
.y96{bottom:283.350000px;}
.y65{bottom:286.590000px;}
.y117{bottom:290.550000px;}
.y105{bottom:292.350000px;}
.y30{bottom:293.610000px;}
.y141{bottom:298.470000px;}
.yd6{bottom:298.830000px;}
.ye3{bottom:299.550000px;}
.y64{bottom:302.070000px;}
.y116{bottom:306.030000px;}
.y95{bottom:307.830000px;}
.y2f{bottom:308.550000px;}
.yd5{bottom:314.310000px;}
.ye2{bottom:315.030000px;}
.y63{bottom:317.550000px;}
.y140{bottom:322.950000px;}
.y2e{bottom:323.310000px;}
.yb8{bottom:326.550000px;}
.yd4{bottom:329.790000px;}
.ye1{bottom:330.510000px;}
.y121{bottom:332.310000px;}
.y62{bottom:333.030000px;}
.y2d{bottom:338.250000px;}
.y94{bottom:338.790000px;}
.yb7{bottom:342.030000px;}
.ye0{bottom:346.035000px;}
.y13f{bottom:347.475000px;}
.y104{bottom:347.835000px;}
.y61{bottom:348.555000px;}
.y2c{bottom:353.055000px;}
.y93{bottom:354.315000px;}
.yb6{bottom:357.555000px;}
.y115{bottom:361.515000px;}
.y13e{bottom:362.955000px;}
.y103{bottom:363.315000px;}
.y60{bottom:364.035000px;}
.y2b{bottom:367.995000px;}
.y92{bottom:369.795000px;}
.ydf{bottom:370.515000px;}
.yb5{bottom:373.035000px;}
.y114{bottom:376.995000px;}
.y102{bottom:378.795000px;}
.y5f{bottom:379.515000px;}
.y2a{bottom:382.755000px;}
.y91{bottom:385.275000px;}
.yde{bottom:385.995000px;}
.y13d{bottom:387.435000px;}
.yb4{bottom:388.515000px;}
.y113{bottom:392.475000px;}
.y101{bottom:394.275000px;}
.y29{bottom:397.695000px;}
.yd3{bottom:400.755000px;}
.ydd{bottom:401.475000px;}
.y5e{bottom:403.995000px;}
.y112{bottom:407.955000px;}
.y90{bottom:409.755000px;}
.y13c{bottom:411.915000px;}
.y28{bottom:412.635000px;}
.yd2{bottom:416.235000px;}
.ydc{bottom:416.955000px;}
.y5d{bottom:419.475000px;}
.y8f{bottom:425.235000px;}
.y27{bottom:427.395000px;}
.ydb{bottom:432.435000px;}
.y120{bottom:434.235000px;}
.y5c{bottom:434.955000px;}
.y8e{bottom:440.715000px;}
.y26{bottom:442.335000px;}
.y111{bottom:447.915000px;}
.y100{bottom:449.715000px;}
.y5b{bottom:450.435000px;}
.y13b{bottom:452.055000px;}
.y8d{bottom:456.195000px;}
.yda{bottom:456.915000px;}
.y25{bottom:457.095000px;}
.yb3{bottom:459.435000px;}
.y110{bottom:463.395000px;}
.yff{bottom:465.195000px;}
.y59{bottom:465.915000px;}
.y13a{bottom:467.535000px;}
.y5a{bottom:469.695000px;}
.y8c{bottom:471.675000px;}
.y24{bottom:472.035000px;}
.yb2{bottom:474.915000px;}
.y10f{bottom:479.055000px;}
.yfe{bottom:480.675000px;}
.y58{bottom:481.395000px;}
.y139{bottom:483.015000px;}
.y23{bottom:486.795000px;}
.y8b{bottom:487.155000px;}
.yb1{bottom:490.395000px;}
.y10e{bottom:494.535000px;}
.yfd{bottom:496.155000px;}
.y57{bottom:497.055000px;}
.y22{bottom:501.735000px;}
.y8a{bottom:502.635000px;}
.yb0{bottom:506.055000px;}
.y138{bottom:507.495000px;}
.yd1{bottom:511.635000px;}
.y56{bottom:512.535000px;}
.y21{bottom:516.495000px;}
.y89{bottom:518.115000px;}
.y10d{bottom:519.015000px;}
.y11f{bottom:520.635000px;}
.yaf{bottom:521.535000px;}
.y137{bottom:523.005000px;}
.yd0{bottom:527.145000px;}
.y55{bottom:528.045000px;}
.y20{bottom:531.465000px;}
.y88{bottom:533.805000px;}
.yfc{bottom:536.145000px;}
.yae{bottom:537.045000px;}
.ycf{bottom:542.805000px;}
.y10c{bottom:543.525000px;}
.y1f{bottom:546.405000px;}
.y155{bottom:546.585000px;}
.y136{bottom:547.485000px;}
.yfb{bottom:551.805000px;}
.y54{bottom:552.525000px;}
.y87{bottom:558.285000px;}
.y1e{bottom:561.345000px;}
.y135{bottom:562.965000px;}
.yfa{bottom:567.285000px;}
.y53{bottom:568.005000px;}
.y86{bottom:573.765000px;}
.y11e{bottom:576.285000px;}
.y1d{bottom:576.645000px;}
.yce{bottom:582.765000px;}
.y52{bottom:583.485000px;}
.y134{bottom:587.445000px;}
.y85{bottom:589.245000px;}
.y1c{bottom:589.605000px;}
.y11d{bottom:591.765000px;}
.yad{bottom:592.485000px;}
.ycd{bottom:598.245000px;}
.y51{bottom:598.965000px;}
.y1b{bottom:602.565000px;}
.y133{bottom:602.925000px;}
.y84{bottom:604.725000px;}
.yf9{bottom:607.245000px;}
.yac{bottom:607.965000px;}
.ycc{bottom:613.725000px;}
.y50{bottom:614.445000px;}
.y19{bottom:615.705000px;}
.y1a{bottom:618.765000px;}
.y83{bottom:620.205000px;}
.yf8{bottom:622.725000px;}
.yab{bottom:623.445000px;}
.y132{bottom:627.405000px;}
.y18{bottom:628.665000px;}
.ycb{bottom:629.205000px;}
.y4f{bottom:629.925000px;}
.y82{bottom:635.685000px;}
.yf7{bottom:638.205000px;}
.yaa{bottom:638.925000px;}
.y17{bottom:641.625000px;}
.y131{bottom:642.885000px;}
.yca{bottom:644.685000px;}
.y154{bottom:651.165000px;}
.yf6{bottom:653.685000px;}
.y4e{bottom:654.405000px;}
.y16{bottom:655.125000px;}
.y130{bottom:658.365000px;}
.y81{bottom:660.165000px;}
.y11c{bottom:662.685000px;}
.y153{bottom:666.645000px;}
.yf5{bottom:669.165000px;}
.y4d{bottom:669.885000px;}
.y15{bottom:671.145000px;}
.y11b{bottom:678.165000px;}
.y152{bottom:682.125000px;}
.y12f{bottom:682.845000px;}
.y80{bottom:684.645000px;}
.y4c{bottom:685.365000px;}
.y14{bottom:689.505000px;}
.yf4{bottom:693.645000px;}
.ya9{bottom:694.365000px;}
.y151{bottom:697.605000px;}
.y12e{bottom:698.370000px;}
.yc9{bottom:700.170000px;}
.y4b{bottom:700.890000px;}
.y13{bottom:707.550000px;}
.y7f{bottom:709.170000px;}
.ya8{bottom:709.890000px;}
.y150{bottom:713.130000px;}
.yc8{bottom:715.650000px;}
.y4a{bottom:716.370000px;}
.y12d{bottom:722.850000px;}
.y7e{bottom:724.650000px;}
.ya7{bottom:725.370000px;}
.y14e{bottom:728.610000px;}
.y12{bottom:729.870000px;}
.yc7{bottom:731.130000px;}
.y49{bottom:731.850000px;}
.y14f{bottom:732.390000px;}
.y12c{bottom:738.330000px;}
.y7d{bottom:740.130000px;}
.ya6{bottom:740.850000px;}
.y14d{bottom:753.090000px;}
.y12b{bottom:753.810000px;}
.y7c{bottom:755.610000px;}
.y48{bottom:756.330000px;}
.y11{bottom:763.710000px;}
.yf3{bottom:764.610000px;}
.y7b{bottom:771.090000px;}
.y47{bottom:771.810000px;}
.y14c{bottom:777.570000px;}
.y12a{bottom:778.470000px;}
.yf2{bottom:780.090000px;}
.y10{bottom:780.450000px;}
.ya5{bottom:780.810000px;}
.y7a{bottom:786.570000px;}
.y46{bottom:787.470000px;}
.yf{bottom:789.270000px;}
.yf1{bottom:795.570000px;}
.ya4{bottom:796.470000px;}
.ye{bottom:797.910000px;}
.y79{bottom:802.050000px;}
.y45{bottom:802.950000px;}
.yd{bottom:806.730000px;}
.yf0{bottom:811.050000px;}
.ya3{bottom:811.950000px;}
.yc{bottom:815.550000px;}
.y44{bottom:818.430000px;}
.yb{bottom:824.370000px;}
.y78{bottom:826.710000px;}
.ya2{bottom:827.430000px;}
.ya{bottom:837.870000px;}
.y77{bottom:842.190000px;}
.y43{bottom:842.910000px;}
.y76{bottom:857.670000px;}
.y42{bottom:857.850000px;}
.y9{bottom:867.570000px;}
.y41{bottom:869.730000px;}
.y40{bottom:881.820000px;}
.y4{bottom:887.040000px;}
.y3f{bottom:893.880000px;}
.h7{height:11.880000px;}
.h2{height:17.460000px;}
.hb{height:21.671719px;}
.h12{height:22.015547px;}
.h17{height:24.661406px;}
.h1d{height:25.401094px;}
.h3{height:27.257344px;}
.h19{height:28.995469px;}
.h8{height:30.077578px;}
.h1c{height:32.449219px;}
.h11{height:33.023320px;}
.h13{height:37.641094px;}
.h18{height:37.987734px;}
.he{height:39.313477px;}
.h10{height:40.886016px;}
.h6{height:41.535703px;}
.h16{height:43.481953px;}
.h15{height:43.882383px;}
.h14{height:46.627031px;}
.h1b{height:48.673828px;}
.hf{height:49.122070px;}
.h1a{height:49.253906px;}
.h5{height:49.992188px;}
.hc{height:59.706562px;}
.h9{height:60.256406px;}
.hd{height:65.496094px;}
.h4{height:65.884219px;}
.ha{height:98.507812px;}
.h0{height:956.880000px;}
.h1{height:957.000000px;}
.w4{width:57.816000px;}
.w2{width:389.085000px;}
.w1{width:639.000000px;}
.w5{width:639.179981px;}
.w3{width:639.179990px;}
.w0{width:639.180000px;}
.x0{left:0.000000px;}
.x8{left:10.800000px;}
.x2{left:16.020000px;}
.xa{left:54.539990px;}
.x17{left:57.095990px;}
.x4{left:67.539000px;}
.x1a{left:75.275990px;}
.xc{left:96.695990px;}
.x9{left:117.935990px;}
.x1{left:125.136000px;}
.x13{left:155.009990px;}
.xb{left:169.409990px;}
.x10{left:175.529990px;}
.x20{left:226.334981px;}
.x21{left:230.474990px;}
.xd{left:234.794990px;}
.xe{left:240.734990px;}
.x1b{left:242.714981px;}
.x1c{left:246.854990px;}
.xf{left:254.054990px;}
.x16{left:270.074990px;}
.x1d{left:306.824990px;}
.x6{left:319.604990px;}
.x15{left:330.944990px;}
.x3{left:338.694000px;}
.x22{left:352.004981px;}
.x23{left:356.144990px;}
.x14{left:429.449990px;}
.x1e{left:454.649990px;}
.x11{left:460.229981px;}
.x12{left:463.649990px;}
.x18{left:486.689990px;}
.x7{left:527.010000px;}
.x1f{left:575.819990px;}
.x19{left:580.499990px;}
.x5{left:585.359990px;}
@media print{
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.120000pt;}
.v2{vertical-align:10.880000pt;}
.lsf{letter-spacing:-0.778667pt;}
.lsb{letter-spacing:-0.736000pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.554667pt;}
.ls11{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls14{letter-spacing:-0.298133pt;}
.ls1e{letter-spacing:-0.286933pt;}
.ls1c{letter-spacing:-0.176533pt;}
.ls1f{letter-spacing:-0.143467pt;}
.lse{letter-spacing:-0.140800pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.121600pt;}
.lsc{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016640pt;}
.ls17{letter-spacing:0.057600pt;}
.ls13{letter-spacing:0.085333pt;}
.ls6{letter-spacing:0.106240pt;}
.ls26{letter-spacing:0.112000pt;}
.ls21{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.181333pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.201067pt;}
.ls29{letter-spacing:0.215040pt;}
.ls24{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls10{letter-spacing:0.341867pt;}
.ls1d{letter-spacing:0.353067pt;}
.ls18{letter-spacing:0.354133pt;}
.ls25{letter-spacing:0.400000pt;}
.ls0{letter-spacing:0.499200pt;}
.ls23{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.542720pt;}
.ls12{letter-spacing:0.592000pt;}
.ls20{letter-spacing:0.921600pt;}
.ls4{letter-spacing:0.981760pt;}
.ls8{letter-spacing:1.136640pt;}
.ls16{letter-spacing:3.061333pt;}
.ls7{letter-spacing:754.901333pt;}
.ls22{letter-spacing:754.922667pt;}
.wsd{word-spacing:-26.880000pt;}
.ws1d{word-spacing:-11.168000pt;}
.ws1a{word-spacing:-11.104000pt;}
.ws1c{word-spacing:-10.944000pt;}
.ws1e{word-spacing:-10.816000pt;}
.ws15{word-spacing:-10.360320pt;}
.ws16{word-spacing:-9.776640pt;}
.ws17{word-spacing:-8.816427pt;}
.ws18{word-spacing:-8.176427pt;}
.wsf{word-spacing:-8.151253pt;}
.ws8{word-spacing:-6.720640pt;}
.ws7{word-spacing:-6.470507pt;}
.ws4{word-spacing:-6.356373pt;}
.ws6{word-spacing:-6.329707pt;}
.ws9{word-spacing:-6.213973pt;}
.ws3{word-spacing:-6.128640pt;}
.ws2{word-spacing:-6.031573pt;}
.ws5{word-spacing:-5.987840pt;}
.wsa{word-spacing:-5.830507pt;}
.wsb{word-spacing:-5.760107pt;}
.ws0{word-spacing:-5.573973pt;}
.ws1b{word-spacing:-5.544960pt;}
.ws11{word-spacing:-5.444053pt;}
.ws1{word-spacing:-5.392640pt;}
.ws14{word-spacing:-5.361387pt;}
.wsc{word-spacing:-5.349973pt;}
.ws12{word-spacing:-5.271253pt;}
.ws13{word-spacing:-4.968320pt;}
.ws10{word-spacing:-3.239040pt;}
.wse{word-spacing:-0.048000pt;}
.ws19{word-spacing:0.000000pt;}
._2{margin-left:-2.830720pt;}
._1{margin-left:-1.745920pt;}
._0{width:1.523200pt;}
._6{width:2.424107pt;}
._4{width:3.423787pt;}
._7{width:4.372053pt;}
._5{width:6.111360pt;}
._f{width:7.630720pt;}
._3{width:8.980907pt;}
._15{width:9.934720pt;}
._c{width:10.887680pt;}
._b{width:11.920640pt;}
._8{width:13.507200pt;}
._9{width:14.567040pt;}
._14{width:15.696000pt;}
._d{width:17.795200pt;}
._16{width:18.718080pt;}
._12{width:20.110720pt;}
._13{width:21.019520pt;}
._17{width:22.848000pt;}
._a{width:24.484480pt;}
._10{width:26.071040pt;}
._11{width:27.322880pt;}
._e{width:39.835520pt;}
.fs7{font-size:13.440000pt;}
.fs6{font-size:21.120000pt;}
.fs9{font-size:24.320000pt;}
.fs0{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs8{font-size:40.320000pt;}
.fsb{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.600000pt;}
.y8{bottom:3.680000pt;}
.y2{bottom:9.280000pt;}
.y1{bottom:40.000000pt;}
.y7{bottom:42.240000pt;}
.y75{bottom:49.760000pt;}
.y6{bottom:50.400000pt;}
.yc6{bottom:51.680000pt;}
.y158{bottom:52.480000pt;}
.yd9{bottom:56.800000pt;}
.y74{bottom:60.480000pt;}
.y5{bottom:62.720000pt;}
.y157{bottom:63.200000pt;}
.yc5{bottom:65.440000pt;}
.yd8{bottom:70.560000pt;}
.y73{bottom:71.200000pt;}
.y156{bottom:73.280000pt;}
.y3e{bottom:73.600000pt;}
.ya1{bottom:76.320000pt;}
.yef{bottom:76.960000pt;}
.yc4{bottom:79.200000pt;}
.y14b{bottom:79.520000pt;}
.y72{bottom:81.920000pt;}
.y3d{bottom:84.320000pt;}
.yee{bottom:90.720000pt;}
.y71{bottom:92.640000pt;}
.y3c{bottom:95.040000pt;}
.ya0{bottom:98.080000pt;}
.yc3{bottom:100.960000pt;}
.y14a{bottom:101.440000pt;}
.y70{bottom:103.360000pt;}
.yed{bottom:104.480000pt;}
.y3b{bottom:105.760000pt;}
.y3a{bottom:108.480000pt;}
.y9f{bottom:111.840000pt;}
.y11a{bottom:112.480000pt;}
.y6f{bottom:114.080000pt;}
.yc2{bottom:114.720000pt;}
.yec{bottom:118.240000pt;}
.y39{bottom:118.560000pt;}
.y149{bottom:123.200000pt;}
.y6e{bottom:124.800000pt;}
.y9e{bottom:125.600000pt;}
.y119{bottom:126.240000pt;}
.y6d{bottom:127.520000pt;}
.y129{bottom:127.840000pt;}
.yc1{bottom:128.480000pt;}
.y10b{bottom:133.600000pt;}
.y148{bottom:136.960000pt;}
.y6c{bottom:137.600000pt;}
.y9d{bottom:139.360000pt;}
.yeb{bottom:140.000000pt;}
.y128{bottom:141.600000pt;}
.y38{bottom:141.760000pt;}
.yc0{bottom:142.240000pt;}
.yd7{bottom:147.360000pt;}
.yea{bottom:153.786667pt;}
.y127{bottom:155.386667pt;}
.y37{bottom:155.866667pt;}
.ybf{bottom:156.026667pt;}
.y147{bottom:158.746667pt;}
.y9c{bottom:161.146667pt;}
.y6b{bottom:164.026667pt;}
.ye9{bottom:167.546667pt;}
.y36{bottom:167.706667pt;}
.y126{bottom:169.146667pt;}
.ybe{bottom:169.786667pt;}
.y9b{bottom:174.906667pt;}
.y6a{bottom:177.786667pt;}
.y146{bottom:180.506667pt;}
.ye8{bottom:181.466667pt;}
.y10a{bottom:182.906667pt;}
.ybd{bottom:183.546667pt;}
.y9a{bottom:188.666667pt;}
.y118{bottom:189.466667pt;}
.y125{bottom:190.906667pt;}
.y69{bottom:191.546667pt;}
.y145{bottom:194.266667pt;}
.y35{bottom:194.906667pt;}
.y109{bottom:196.666667pt;}
.ybc{bottom:197.466667pt;}
.y99{bottom:202.426667pt;}
.ye7{bottom:203.226667pt;}
.y124{bottom:204.666667pt;}
.y68{bottom:205.466667pt;}
.y34{bottom:208.186667pt;}
.y108{bottom:210.426667pt;}
.ybb{bottom:211.226667pt;}
.y144{bottom:216.026667pt;}
.y98{bottom:216.346667pt;}
.ye6{bottom:216.986667pt;}
.y123{bottom:218.426667pt;}
.y67{bottom:219.226667pt;}
.y33{bottom:221.466667pt;}
.y107{bottom:224.346667pt;}
.yba{bottom:224.986667pt;}
.y143{bottom:229.786667pt;}
.ye5{bottom:230.746667pt;}
.y122{bottom:232.346667pt;}
.y32{bottom:234.586667pt;}
.y97{bottom:238.106667pt;}
.y66{bottom:240.986667pt;}
.ye4{bottom:244.506667pt;}
.y106{bottom:246.106667pt;}
.yb9{bottom:246.746667pt;}
.y31{bottom:247.866667pt;}
.y142{bottom:251.546667pt;}
.y96{bottom:251.866667pt;}
.y65{bottom:254.746667pt;}
.y117{bottom:258.266667pt;}
.y105{bottom:259.866667pt;}
.y30{bottom:260.986667pt;}
.y141{bottom:265.306667pt;}
.yd6{bottom:265.626667pt;}
.ye3{bottom:266.266667pt;}
.y64{bottom:268.506667pt;}
.y116{bottom:272.026667pt;}
.y95{bottom:273.626667pt;}
.y2f{bottom:274.266667pt;}
.yd5{bottom:279.386667pt;}
.ye2{bottom:280.026667pt;}
.y63{bottom:282.266667pt;}
.y140{bottom:287.066667pt;}
.y2e{bottom:287.386667pt;}
.yb8{bottom:290.266667pt;}
.yd4{bottom:293.146667pt;}
.ye1{bottom:293.786667pt;}
.y121{bottom:295.386667pt;}
.y62{bottom:296.026667pt;}
.y2d{bottom:300.666667pt;}
.y94{bottom:301.146667pt;}
.yb7{bottom:304.026667pt;}
.ye0{bottom:307.586667pt;}
.y13f{bottom:308.866667pt;}
.y104{bottom:309.186667pt;}
.y61{bottom:309.826667pt;}
.y2c{bottom:313.826667pt;}
.y93{bottom:314.946667pt;}
.yb6{bottom:317.826667pt;}
.y115{bottom:321.346667pt;}
.y13e{bottom:322.626667pt;}
.y103{bottom:322.946667pt;}
.y60{bottom:323.586667pt;}
.y2b{bottom:327.106667pt;}
.y92{bottom:328.706667pt;}
.ydf{bottom:329.346667pt;}
.yb5{bottom:331.586667pt;}
.y114{bottom:335.106667pt;}
.y102{bottom:336.706667pt;}
.y5f{bottom:337.346667pt;}
.y2a{bottom:340.226667pt;}
.y91{bottom:342.466667pt;}
.yde{bottom:343.106667pt;}
.y13d{bottom:344.386667pt;}
.yb4{bottom:345.346667pt;}
.y113{bottom:348.866667pt;}
.y101{bottom:350.466667pt;}
.y29{bottom:353.506667pt;}
.yd3{bottom:356.226667pt;}
.ydd{bottom:356.866667pt;}
.y5e{bottom:359.106667pt;}
.y112{bottom:362.626667pt;}
.y90{bottom:364.226667pt;}
.y13c{bottom:366.146667pt;}
.y28{bottom:366.786667pt;}
.yd2{bottom:369.986667pt;}
.ydc{bottom:370.626667pt;}
.y5d{bottom:372.866667pt;}
.y8f{bottom:377.986667pt;}
.y27{bottom:379.906667pt;}
.ydb{bottom:384.386667pt;}
.y120{bottom:385.986667pt;}
.y5c{bottom:386.626667pt;}
.y8e{bottom:391.746667pt;}
.y26{bottom:393.186667pt;}
.y111{bottom:398.146667pt;}
.y100{bottom:399.746667pt;}
.y5b{bottom:400.386667pt;}
.y13b{bottom:401.826667pt;}
.y8d{bottom:405.506667pt;}
.yda{bottom:406.146667pt;}
.y25{bottom:406.306667pt;}
.yb3{bottom:408.386667pt;}
.y110{bottom:411.906667pt;}
.yff{bottom:413.506667pt;}
.y59{bottom:414.146667pt;}
.y13a{bottom:415.586667pt;}
.y5a{bottom:417.506667pt;}
.y8c{bottom:419.266667pt;}
.y24{bottom:419.586667pt;}
.yb2{bottom:422.146667pt;}
.y10f{bottom:425.826667pt;}
.yfe{bottom:427.266667pt;}
.y58{bottom:427.906667pt;}
.y139{bottom:429.346667pt;}
.y23{bottom:432.706667pt;}
.y8b{bottom:433.026667pt;}
.yb1{bottom:435.906667pt;}
.y10e{bottom:439.586667pt;}
.yfd{bottom:441.026667pt;}
.y57{bottom:441.826667pt;}
.y22{bottom:445.986667pt;}
.y8a{bottom:446.786667pt;}
.yb0{bottom:449.826667pt;}
.y138{bottom:451.106667pt;}
.yd1{bottom:454.786667pt;}
.y56{bottom:455.586667pt;}
.y21{bottom:459.106667pt;}
.y89{bottom:460.546667pt;}
.y10d{bottom:461.346667pt;}
.y11f{bottom:462.786667pt;}
.yaf{bottom:463.586667pt;}
.y137{bottom:464.893333pt;}
.yd0{bottom:468.573333pt;}
.y55{bottom:469.373333pt;}
.y20{bottom:472.413333pt;}
.y88{bottom:474.493333pt;}
.yfc{bottom:476.573333pt;}
.yae{bottom:477.373333pt;}
.ycf{bottom:482.493333pt;}
.y10c{bottom:483.133333pt;}
.y1f{bottom:485.693333pt;}
.y155{bottom:485.853333pt;}
.y136{bottom:486.653333pt;}
.yfb{bottom:490.493333pt;}
.y54{bottom:491.133333pt;}
.y87{bottom:496.253333pt;}
.y1e{bottom:498.973333pt;}
.y135{bottom:500.413333pt;}
.yfa{bottom:504.253333pt;}
.y53{bottom:504.893333pt;}
.y86{bottom:510.013333pt;}
.y11e{bottom:512.253333pt;}
.y1d{bottom:512.573333pt;}
.yce{bottom:518.013333pt;}
.y52{bottom:518.653333pt;}
.y134{bottom:522.173333pt;}
.y85{bottom:523.773333pt;}
.y1c{bottom:524.093333pt;}
.y11d{bottom:526.013333pt;}
.yad{bottom:526.653333pt;}
.ycd{bottom:531.773333pt;}
.y51{bottom:532.413333pt;}
.y1b{bottom:535.613333pt;}
.y133{bottom:535.933333pt;}
.y84{bottom:537.533333pt;}
.yf9{bottom:539.773333pt;}
.yac{bottom:540.413333pt;}
.ycc{bottom:545.533333pt;}
.y50{bottom:546.173333pt;}
.y19{bottom:547.293333pt;}
.y1a{bottom:550.013333pt;}
.y83{bottom:551.293333pt;}
.yf8{bottom:553.533333pt;}
.yab{bottom:554.173333pt;}
.y132{bottom:557.693333pt;}
.y18{bottom:558.813333pt;}
.ycb{bottom:559.293333pt;}
.y4f{bottom:559.933333pt;}
.y82{bottom:565.053333pt;}
.yf7{bottom:567.293333pt;}
.yaa{bottom:567.933333pt;}
.y17{bottom:570.333333pt;}
.y131{bottom:571.453333pt;}
.yca{bottom:573.053333pt;}
.y154{bottom:578.813333pt;}
.yf6{bottom:581.053333pt;}
.y4e{bottom:581.693333pt;}
.y16{bottom:582.333333pt;}
.y130{bottom:585.213333pt;}
.y81{bottom:586.813333pt;}
.y11c{bottom:589.053333pt;}
.y153{bottom:592.573333pt;}
.yf5{bottom:594.813333pt;}
.y4d{bottom:595.453333pt;}
.y15{bottom:596.573333pt;}
.y11b{bottom:602.813333pt;}
.y152{bottom:606.333333pt;}
.y12f{bottom:606.973333pt;}
.y80{bottom:608.573333pt;}
.y4c{bottom:609.213333pt;}
.y14{bottom:612.893333pt;}
.yf4{bottom:616.573333pt;}
.ya9{bottom:617.213333pt;}
.y151{bottom:620.093333pt;}
.y12e{bottom:620.773333pt;}
.yc9{bottom:622.373333pt;}
.y4b{bottom:623.013333pt;}
.y13{bottom:628.933333pt;}
.y7f{bottom:630.373333pt;}
.ya8{bottom:631.013333pt;}
.y150{bottom:633.893333pt;}
.yc8{bottom:636.133333pt;}
.y4a{bottom:636.773333pt;}
.y12d{bottom:642.533333pt;}
.y7e{bottom:644.133333pt;}
.ya7{bottom:644.773333pt;}
.y14e{bottom:647.653333pt;}
.y12{bottom:648.773333pt;}
.yc7{bottom:649.893333pt;}
.y49{bottom:650.533333pt;}
.y14f{bottom:651.013333pt;}
.y12c{bottom:656.293333pt;}
.y7d{bottom:657.893333pt;}
.ya6{bottom:658.533333pt;}
.y14d{bottom:669.413333pt;}
.y12b{bottom:670.053333pt;}
.y7c{bottom:671.653333pt;}
.y48{bottom:672.293333pt;}
.y11{bottom:678.853333pt;}
.yf3{bottom:679.653333pt;}
.y7b{bottom:685.413333pt;}
.y47{bottom:686.053333pt;}
.y14c{bottom:691.173333pt;}
.y12a{bottom:691.973333pt;}
.yf2{bottom:693.413333pt;}
.y10{bottom:693.733333pt;}
.ya5{bottom:694.053333pt;}
.y7a{bottom:699.173333pt;}
.y46{bottom:699.973333pt;}
.yf{bottom:701.573333pt;}
.yf1{bottom:707.173333pt;}
.ya4{bottom:707.973333pt;}
.ye{bottom:709.253333pt;}
.y79{bottom:712.933333pt;}
.y45{bottom:713.733333pt;}
.yd{bottom:717.093333pt;}
.yf0{bottom:720.933333pt;}
.ya3{bottom:721.733333pt;}
.yc{bottom:724.933333pt;}
.y44{bottom:727.493333pt;}
.yb{bottom:732.773333pt;}
.y78{bottom:734.853333pt;}
.ya2{bottom:735.493333pt;}
.ya{bottom:744.773333pt;}
.y77{bottom:748.613333pt;}
.y43{bottom:749.253333pt;}
.y76{bottom:762.373333pt;}
.y42{bottom:762.533333pt;}
.y9{bottom:771.173333pt;}
.y41{bottom:773.093333pt;}
.y40{bottom:783.840000pt;}
.y4{bottom:788.480000pt;}
.y3f{bottom:794.560000pt;}
.h7{height:10.560000pt;}
.h2{height:15.520000pt;}
.hb{height:19.263750pt;}
.h12{height:19.569375pt;}
.h17{height:21.921250pt;}
.h1d{height:22.578750pt;}
.h3{height:24.228750pt;}
.h19{height:25.773750pt;}
.h8{height:26.735625pt;}
.h1c{height:28.843750pt;}
.h11{height:29.354062pt;}
.h13{height:33.458750pt;}
.h18{height:33.766875pt;}
.he{height:34.945312pt;}
.h10{height:36.343125pt;}
.h6{height:36.920625pt;}
.h16{height:38.650625pt;}
.h15{height:39.006562pt;}
.h14{height:41.446250pt;}
.h1b{height:43.265625pt;}
.hf{height:43.664062pt;}
.h1a{height:43.781250pt;}
.h5{height:44.437500pt;}
.hc{height:53.072500pt;}
.h9{height:53.561250pt;}
.hd{height:58.218750pt;}
.h4{height:58.563750pt;}
.ha{height:87.562500pt;}
.h0{height:850.560000pt;}
.h1{height:850.666667pt;}
.w4{width:51.392000pt;}
.w2{width:345.853333pt;}
.w1{width:568.000000pt;}
.w5{width:568.159983pt;}
.w3{width:568.159992pt;}
.w0{width:568.160000pt;}
.x0{left:0.000000pt;}
.x8{left:9.600000pt;}
.x2{left:14.240000pt;}
.xa{left:48.479992pt;}
.x17{left:50.751992pt;}
.x4{left:60.034667pt;}
.x1a{left:66.911992pt;}
.xc{left:85.951992pt;}
.x9{left:104.831992pt;}
.x1{left:111.232000pt;}
.x13{left:137.786658pt;}
.xb{left:150.586658pt;}
.x10{left:156.026658pt;}
.x20{left:201.186650pt;}
.x21{left:204.866658pt;}
.xd{left:208.706658pt;}
.xe{left:213.986658pt;}
.x1b{left:215.746650pt;}
.x1c{left:219.426658pt;}
.xf{left:225.826658pt;}
.x16{left:240.066658pt;}
.x1d{left:272.733325pt;}
.x6{left:284.093325pt;}
.x15{left:294.173325pt;}
.x3{left:301.061333pt;}
.x22{left:312.893316pt;}
.x23{left:316.573325pt;}
.x14{left:381.733325pt;}
.x1e{left:404.133325pt;}
.x11{left:409.093316pt;}
.x12{left:412.133325pt;}
.x18{left:432.613325pt;}
.x7{left:468.453333pt;}
.x1f{left:511.839992pt;}
.x19{left:515.999992pt;}
.x5{left:520.319992pt;}
}




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