
    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_832f0b21416a0c8fb50272a4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_4242192a464695ff8382c89f.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_ec67dae4b9b7d0499c2d2ce2.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_e7481f1253bf2cbb142e0585.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_12b3d1c27fbbd27bd148b961.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8185f4f438bee412bb1596a5.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d9fdfb3c0fa62aabeea129e4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.122559;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_b1b9d8be646024683e7286b1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d64ba3e494c62f1f895a2ae9.woff')format("woff");}.ffe{font-family:ffe;line-height:1.122559;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_72b6902ea513f9c96c59eb4f.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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;}
.ls9{letter-spacing:-0.624000px;}
.ls11{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.414600px;}
.ls20{letter-spacing:-0.342000px;}
.ls14{letter-spacing:-0.335400px;}
.ls1e{letter-spacing:-0.322800px;}
.ls1c{letter-spacing:-0.262200px;}
.ls21{letter-spacing:-0.161400px;}
.lse{letter-spacing:-0.158400px;}
.ls22{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.136800px;}
.lsc{letter-spacing:-0.109200px;}
.ls24{letter-spacing:-0.072000px;}
.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;}
.ls27{letter-spacing:0.126000px;}
.ls19{letter-spacing:0.204000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.226200px;}
.ls25{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.256200px;}
.ls1b{letter-spacing:0.305400px;}
.ls1f{letter-spacing:0.316800px;}
.ls29{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.384600px;}
.ls1d{letter-spacing:0.397200px;}
.ls18{letter-spacing:0.398400px;}
.ls0{letter-spacing:0.561600px;}
.ls23{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.610560px;}
.ls28{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.666000px;}
.ls7{letter-spacing:0.839520px;}
.ls4{letter-spacing:1.104480px;}
.ls16{letter-spacing:3.444000px;}
.ls26{letter-spacing:849.168000px;}
.ls8{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;}
}
.ws15{word-spacing:-72.000000px;}
.wsd{word-spacing:-30.240000px;}
.ws1c{word-spacing:-12.312000px;}
.ws1d{word-spacing:-12.168000px;}
.ws17{word-spacing:-11.655360px;}
.ws16{word-spacing:-10.342080px;}
.ws18{word-spacing:-9.918480px;}
.ws19{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;}
.ws1a{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:5.395680px;}
._5{width:6.875280px;}
._14{width:7.920480px;}
._8{width:9.052080px;}
._3{width:10.103520px;}
._e{width:11.430720px;}
._d{width:12.487680px;}
._16{width:13.662000px;}
._10{width:14.696640px;}
._15{width:16.260480px;}
._f{width:17.871840px;}
._c{width:19.776960px;}
._b{width:20.812320px;}
._13{width:23.723280px;}
._9{width:26.218080px;}
._a{width:27.466560px;}
._23{width:46.224000px;}
._19{width:57.294000px;}
._1a{width:58.340160px;}
._1f{width:61.020000px;}
._20{width:62.760000px;}
._25{width:67.952160px;}
._17{width:69.552000px;}
._18{width:71.226000px;}
._11{width:73.117440px;}
._12{width:74.183040px;}
._1e{width:82.378560px;}
._1d{width:83.484000px;}
._21{width:140.454000px;}
._22{width:141.460800px;}
._24{width:179.982000px;}
._26{width:199.962000px;}
._1b{width:259.416000px;}
._1c{width:260.942400px;}
.fc2{color:rgb(255,0,0);}
.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;}
.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;}
.y6{bottom:56.700000px;}
.yd7{bottom:59.940000px;}
.y191{bottom:63.540000px;}
.y9e{bottom:66.420000px;}
.y6f{bottom:67.140000px;}
.y5{bottom:70.560000px;}
.yd6{bottom:75.420000px;}
.y110{bottom:76.140000px;}
.y150{bottom:76.500000px;}
.y190{bottom:79.020000px;}
.y9d{bottom:81.900000px;}
.y6e{bottom:82.620000px;}
.y11b{bottom:84.420000px;}
.y16f{bottom:87.300000px;}
.yd5{bottom:90.900000px;}
.ybb{bottom:91.620000px;}
.y18f{bottom:94.500000px;}
.y9c{bottom:97.380000px;}
.y6d{bottom:98.100000px;}
.y11a{bottom:99.900000px;}
.y14f{bottom:100.980000px;}
.y16e{bottom:102.780000px;}
.yd4{bottom:106.380000px;}
.yba{bottom:107.100000px;}
.y18e{bottom:109.980000px;}
.y3c{bottom:112.140000px;}
.y9b{bottom:112.860000px;}
.y6c{bottom:113.580000px;}
.y119{bottom:115.380000px;}
.y16d{bottom:118.260000px;}
.yd3{bottom:121.860000px;}
.yb9{bottom:122.580000px;}
.y3b{bottom:125.460000px;}
.y103{bottom:128.340000px;}
.y6b{bottom:129.060000px;}
.y118{bottom:130.860000px;}
.y16c{bottom:133.740000px;}
.y9a{bottom:137.340000px;}
.yb8{bottom:138.060000px;}
.y14e{bottom:141.120000px;}
.y102{bottom:143.820000px;}
.y6a{bottom:144.540000px;}
.y117{bottom:146.340000px;}
.y16b{bottom:149.220000px;}
.y99{bottom:152.820000px;}
.yb7{bottom:153.540000px;}
.y3a{bottom:155.880000px;}
.y14d{bottom:156.600000px;}
.y101{bottom:159.300000px;}
.y69{bottom:160.020000px;}
.yd2{bottom:161.820000px;}
.y10f{bottom:162.540000px;}
.y18d{bottom:165.600000px;}
.y98{bottom:168.300000px;}
.yb6{bottom:169.050000px;}
.y39{bottom:169.950000px;}
.y14c{bottom:172.110000px;}
.y16a{bottom:173.730000px;}
.y100{bottom:174.810000px;}
.y68{bottom:175.530000px;}
.yd1{bottom:177.330000px;}
.y10e{bottom:178.050000px;}
.y38{bottom:183.810000px;}
.yb5{bottom:184.530000px;}
.y14b{bottom:187.590000px;}
.y169{bottom:189.390000px;}
.y18c{bottom:190.110000px;}
.yff{bottom:190.290000px;}
.y67{bottom:191.010000px;}
.yd0{bottom:192.810000px;}
.y10d{bottom:193.530000px;}
.y37{bottom:197.850000px;}
.y97{bottom:199.290000px;}
.y124{bottom:200.010000px;}
.y168{bottom:204.870000px;}
.yfe{bottom:205.770000px;}
.ycf{bottom:208.290000px;}
.yb4{bottom:209.010000px;}
.y36{bottom:211.710000px;}
.y14a{bottom:212.070000px;}
.y18b{bottom:214.590000px;}
.y96{bottom:214.770000px;}
.y66{bottom:215.490000px;}
.yfd{bottom:221.250000px;}
.yce{bottom:223.770000px;}
.yb3{bottom:224.490000px;}
.y35{bottom:225.570000px;}
.y149{bottom:227.550000px;}
.y167{bottom:229.350000px;}
.y18a{bottom:230.070000px;}
.y95{bottom:230.250000px;}
.y65{bottom:231.150000px;}
.yfc{bottom:236.730000px;}
.ycd{bottom:239.250000px;}
.y34{bottom:239.610000px;}
.ye4{bottom:239.970000px;}
.yb2{bottom:240.150000px;}
.y166{bottom:244.830000px;}
.y189{bottom:245.550000px;}
.y94{bottom:245.730000px;}
.y64{bottom:246.630000px;}
.y10c{bottom:249.150000px;}
.y148{bottom:252.030000px;}
.yfb{bottom:252.390000px;}
.y33{bottom:253.470000px;}
.ycc{bottom:254.730000px;}
.yb1{bottom:255.630000px;}
.y93{bottom:261.390000px;}
.y63{bottom:262.110000px;}
.ye3{bottom:264.450000px;}
.y10b{bottom:264.630000px;}
.y32{bottom:267.510000px;}
.yfa{bottom:267.870000px;}
.y165{bottom:269.310000px;}
.y188{bottom:270.030000px;}
.ycb{bottom:270.390000px;}
.yb0{bottom:271.110000px;}
.y62{bottom:277.590000px;}
.ye2{bottom:279.930000px;}
.y10a{bottom:280.110000px;}
.y31{bottom:281.370000px;}
.yf9{bottom:283.350000px;}
.y164{bottom:284.790000px;}
.y187{bottom:285.510000px;}
.y92{bottom:285.870000px;}
.yaf{bottom:286.590000px;}
.y147{bottom:291.990000px;}
.y123{bottom:293.070000px;}
.y30{bottom:295.230000px;}
.ye1{bottom:295.410000px;}
.y109{bottom:295.590000px;}
.y163{bottom:300.270000px;}
.y91{bottom:301.350000px;}
.y61{bottom:302.070000px;}
.y146{bottom:307.470000px;}
.yf8{bottom:307.830000px;}
.y122{bottom:308.550000px;}
.y2f{bottom:309.270000px;}
.y186{bottom:309.990000px;}
.ye0{bottom:310.890000px;}
.y162{bottom:315.750000px;}
.y90{bottom:316.830000px;}
.y60{bottom:317.550000px;}
.y108{bottom:320.070000px;}
.y145{bottom:322.950000px;}
.y2e{bottom:323.130000px;}
.yf7{bottom:323.310000px;}
.y121{bottom:324.030000px;}
.y185{bottom:325.470000px;}
.yca{bottom:325.830000px;}
.yae{bottom:326.550000px;}
.y8f{bottom:332.310000px;}
.y5f{bottom:333.030000px;}
.y107{bottom:335.550000px;}
.y2d{bottom:337.170000px;}
.yf6{bottom:338.790000px;}
.y120{bottom:339.510000px;}
.y161{bottom:340.230000px;}
.yc9{bottom:341.310000px;}
.yad{bottom:342.030000px;}
.y144{bottom:347.475000px;}
.y8e{bottom:347.835000px;}
.y184{bottom:349.995000px;}
.y2c{bottom:351.075000px;}
.yf5{bottom:354.315000px;}
.y11f{bottom:355.035000px;}
.yc8{bottom:356.835000px;}
.y5e{bottom:357.555000px;}
.y143{bottom:362.955000px;}
.y8d{bottom:363.315000px;}
.y160{bottom:364.755000px;}
.y2b{bottom:364.935000px;}
.y183{bottom:365.475000px;}
.y106{bottom:366.555000px;}
.yf4{bottom:369.795000px;}
.yc7{bottom:372.315000px;}
.y5d{bottom:373.035000px;}
.y142{bottom:378.435000px;}
.y8c{bottom:378.795000px;}
.y2a{bottom:378.975000px;}
.y11e{bottom:379.515000px;}
.y15f{bottom:380.235000px;}
.yac{bottom:382.035000px;}
.yc6{bottom:387.795000px;}
.y5c{bottom:388.515000px;}
.y182{bottom:389.955000px;}
.y29{bottom:392.835000px;}
.y8b{bottom:394.275000px;}
.y15e{bottom:395.715000px;}
.yab{bottom:397.515000px;}
.y141{bottom:402.915000px;}
.yc5{bottom:403.275000px;}
.y5b{bottom:403.995000px;}
.y181{bottom:405.435000px;}
.y28{bottom:406.695000px;}
.y8a{bottom:409.755000px;}
.yaa{bottom:412.995000px;}
.yc4{bottom:418.755000px;}
.y15d{bottom:420.195000px;}
.y27{bottom:420.735000px;}
.yf3{bottom:425.235000px;}
.y140{bottom:427.395000px;}
.y5a{bottom:428.475000px;}
.y180{bottom:429.915000px;}
.y89{bottom:434.235000px;}
.y26{bottom:434.595000px;}
.yf2{bottom:440.715000px;}
.y13f{bottom:443.055000px;}
.y59{bottom:443.955000px;}
.y15c{bottom:444.675000px;}
.y17f{bottom:445.395000px;}
.y25{bottom:448.635000px;}
.y88{bottom:449.715000px;}
.y58{bottom:459.435000px;}
.y15b{bottom:460.155000px;}
.y24{bottom:462.495000px;}
.y87{bottom:465.195000px;}
.y13e{bottom:467.535000px;}
.y17e{bottom:470.055000px;}
.yc3{bottom:474.195000px;}
.ya9{bottom:474.915000px;}
.y15a{bottom:475.635000px;}
.y23{bottom:476.355000px;}
.y86{bottom:480.675000px;}
.y13d{bottom:483.015000px;}
.y57{bottom:483.915000px;}
.y17d{bottom:485.535000px;}
.y116{bottom:489.675000px;}
.y22{bottom:490.395000px;}
.y85{bottom:496.155000px;}
.y13c{bottom:498.495000px;}
.yc2{bottom:498.675000px;}
.y56{bottom:499.395000px;}
.y159{bottom:500.115000px;}
.y17c{bottom:501.015000px;}
.y21{bottom:504.255000px;}
.y115{bottom:505.155000px;}
.ydf{bottom:505.875000px;}
.ya8{bottom:506.055000px;}
.y84{bottom:511.635000px;}
.y55{bottom:515.055000px;}
.y158{bottom:515.775000px;}
.y17b{bottom:516.495000px;}
.y20{bottom:518.295000px;}
.y114{bottom:520.635000px;}
.yde{bottom:521.355000px;}
.ya7{bottom:521.535000px;}
.y13b{bottom:523.005000px;}
.yc1{bottom:523.185000px;}
.y83{bottom:527.145000px;}
.y54{bottom:530.565000px;}
.y1f{bottom:532.185000px;}
.yf1{bottom:536.145000px;}
.ydd{bottom:536.865000px;}
.y11d{bottom:537.045000px;}
.y13a{bottom:538.485000px;}
.yc0{bottom:538.665000px;}
.y157{bottom:540.285000px;}
.y17a{bottom:541.005000px;}
.y53{bottom:546.045000px;}
.y1e{bottom:546.405000px;}
.y82{bottom:551.805000px;}
.ydc{bottom:552.345000px;}
.y11c{bottom:552.525000px;}
.ybf{bottom:554.145000px;}
.y156{bottom:555.765000px;}
.y179{bottom:556.485000px;}
.y113{bottom:560.805000px;}
.y1d{bottom:561.345000px;}
.y52{bottom:561.525000px;}
.y139{bottom:562.965000px;}
.y81{bottom:567.285000px;}
.ydb{bottom:567.825000px;}
.ybe{bottom:569.805000px;}
.y178{bottom:571.965000px;}
.y112{bottom:576.285000px;}
.y1c{bottom:576.645000px;}
.y51{bottom:577.005000px;}
.y138{bottom:578.445000px;}
.y155{bottom:580.245000px;}
.yf0{bottom:582.765000px;}
.yda{bottom:583.305000px;}
.ybd{bottom:585.285000px;}
.y1b{bottom:589.605000px;}
.y80{bottom:591.765000px;}
.y50{bottom:592.485000px;}
.y177{bottom:596.445000px;}
.yef{bottom:598.245000px;}
.yd9{bottom:598.965000px;}
.ybc{bottom:600.765000px;}
.y1a{bottom:602.565000px;}
.y137{bottom:602.925000px;}
.y154{bottom:604.725000px;}
.y111{bottom:607.245000px;}
.y4f{bottom:607.965000px;}
.yee{bottom:613.725000px;}
.yd8{bottom:614.445000px;}
.y19{bottom:615.705000px;}
.y7f{bottom:616.245000px;}
.y136{bottom:618.405000px;}
.y153{bottom:620.205000px;}
.y176{bottom:620.925000px;}
.y12e{bottom:622.725000px;}
.y4e{bottom:623.445000px;}
.y18{bottom:628.665000px;}
.yed{bottom:629.205000px;}
.y7e{bottom:631.725000px;}
.y175{bottom:636.405000px;}
.y12d{bottom:638.205000px;}
.y4d{bottom:638.925000px;}
.y17{bottom:641.625000px;}
.y135{bottom:642.885000px;}
.yec{bottom:644.685000px;}
.y7d{bottom:647.205000px;}
.y174{bottom:651.885000px;}
.y12c{bottom:653.685000px;}
.y4c{bottom:654.405000px;}
.y16{bottom:655.125000px;}
.y134{bottom:658.365000px;}
.yeb{bottom:660.165000px;}
.y7c{bottom:662.685000px;}
.y105{bottom:663.405000px;}
.y4b{bottom:669.885000px;}
.y15{bottom:671.145000px;}
.y133{bottom:673.845000px;}
.yea{bottom:675.645000px;}
.y173{bottom:676.365000px;}
.y7b{bottom:678.165000px;}
.ya6{bottom:678.885000px;}
.y4a{bottom:685.365000px;}
.y14{bottom:689.505000px;}
.ye9{bottom:691.125000px;}
.y172{bottom:691.845000px;}
.y7a{bottom:693.645000px;}
.ya5{bottom:694.365000px;}
.y132{bottom:698.370000px;}
.y152{bottom:700.170000px;}
.y49{bottom:700.890000px;}
.ye8{bottom:706.650000px;}
.y171{bottom:707.370000px;}
.y13{bottom:707.550000px;}
.y12b{bottom:709.170000px;}
.ya4{bottom:709.890000px;}
.y151{bottom:715.650000px;}
.y79{bottom:718.170000px;}
.y131{bottom:722.850000px;}
.y12a{bottom:724.650000px;}
.y48{bottom:725.370000px;}
.y12{bottom:729.870000px;}
.ye7{bottom:731.130000px;}
.y170{bottom:731.850000px;}
.y78{bottom:733.650000px;}
.y129{bottom:740.130000px;}
.y47{bottom:740.850000px;}
.ye6{bottom:746.610000px;}
.y130{bottom:747.330000px;}
.y77{bottom:749.130000px;}
.y104{bottom:749.850000px;}
.y128{bottom:755.610000px;}
.y46{bottom:756.330000px;}
.y12f{bottom:762.810000px;}
.y11{bottom:763.710000px;}
.y76{bottom:764.610000px;}
.ya3{bottom:765.330000px;}
.ye5{bottom:771.090000px;}
.y45{bottom:771.810000px;}
.y75{bottom:780.090000px;}
.y10{bottom:780.450000px;}
.ya2{bottom:780.810000px;}
.y127{bottom:786.570000px;}
.y44{bottom:787.470000px;}
.yf{bottom:789.270000px;}
.y74{bottom:795.570000px;}
.ya1{bottom:796.470000px;}
.ye{bottom:797.910000px;}
.y126{bottom:802.050000px;}
.y43{bottom:802.950000px;}
.yd{bottom:806.730000px;}
.y73{bottom:811.050000px;}
.ya0{bottom:811.950000px;}
.yc{bottom:815.550000px;}
.y125{bottom:817.710000px;}
.y42{bottom:818.430000px;}
.yb{bottom:824.370000px;}
.y72{bottom:826.710000px;}
.y9f{bottom:827.430000px;}
.ya{bottom:837.870000px;}
.y71{bottom:842.190000px;}
.y41{bottom:842.910000px;}
.y70{bottom:857.670000px;}
.y40{bottom:857.850000px;}
.y9{bottom:867.570000px;}
.y3f{bottom:869.730000px;}
.y3e{bottom:881.820000px;}
.y4{bottom:887.040000px;}
.y3d{bottom:893.880000px;}
.h7{height:11.880000px;}
.h2{height:17.460000px;}
.hb{height:21.671719px;}
.h3{height:27.272109px;}
.h17{height:28.995469px;}
.h8{height:30.077578px;}
.h11{height:33.023320px;}
.h12{height:37.661484px;}
.h16{height:37.987734px;}
.he{height:39.313477px;}
.h10{height:40.908164px;}
.h15{height:41.262539px;}
.h6{height:41.535703px;}
.h14{height:43.882383px;}
.h13{height:46.627031px;}
.h19{height:48.700195px;}
.hf{height:49.122070px;}
.h18{height:49.253906px;}
.h5{height:49.992188px;}
.hc{height:59.738906px;}
.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;}
.w3{width:639.179990px;}
.w0{width:639.180000px;}
.x0{left:0.000000px;}
.x8{left:10.800000px;}
.x2{left:16.020000px;}
.x12{left:53.999990px;}
.x4{left:67.539000px;}
.xa{left:69.335990px;}
.x17{left:75.275990px;}
.xc{left:84.995990px;}
.x9{left:117.935990px;}
.x1{left:125.136000px;}
.x11{left:155.009990px;}
.x10{left:207.974990px;}
.xb{left:215.174990px;}
.xd{left:227.054990px;}
.xe{left:240.734990px;}
.xf{left:263.774990px;}
.x15{left:281.414990px;}
.x18{left:306.824990px;}
.x6{left:319.604990px;}
.x14{left:330.944990px;}
.x3{left:338.694000px;}
.x13{left:429.449990px;}
.x19{left:454.649990px;}
.x7{left:527.010000px;}
.x1a{left:575.819990px;}
.x16{left:580.499990px;}
.x5{left:585.359990px;}
@media print{
.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;}
.ls9{letter-spacing:-0.554667pt;}
.ls11{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls20{letter-spacing:-0.304000pt;}
.ls14{letter-spacing:-0.298133pt;}
.ls1e{letter-spacing:-0.286933pt;}
.ls1c{letter-spacing:-0.233067pt;}
.ls21{letter-spacing:-0.143467pt;}
.lse{letter-spacing:-0.140800pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.121600pt;}
.lsc{letter-spacing:-0.097067pt;}
.ls24{letter-spacing:-0.064000pt;}
.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;}
.ls27{letter-spacing:0.112000pt;}
.ls19{letter-spacing:0.181333pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.201067pt;}
.ls25{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls1f{letter-spacing:0.281600pt;}
.ls29{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.341867pt;}
.ls1d{letter-spacing:0.353067pt;}
.ls18{letter-spacing:0.354133pt;}
.ls0{letter-spacing:0.499200pt;}
.ls23{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.542720pt;}
.ls28{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.592000pt;}
.ls7{letter-spacing:0.746240pt;}
.ls4{letter-spacing:0.981760pt;}
.ls16{letter-spacing:3.061333pt;}
.ls26{letter-spacing:754.816000pt;}
.ls8{letter-spacing:754.922667pt;}
.ws15{word-spacing:-64.000000pt;}
.wsd{word-spacing:-26.880000pt;}
.ws1c{word-spacing:-10.944000pt;}
.ws1d{word-spacing:-10.816000pt;}
.ws17{word-spacing:-10.360320pt;}
.ws16{word-spacing:-9.192960pt;}
.ws18{word-spacing:-8.816427pt;}
.ws19{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;}
.ws1a{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.796160pt;}
._5{width:6.111360pt;}
._14{width:7.040427pt;}
._8{width:8.046293pt;}
._3{width:8.980907pt;}
._e{width:10.160640pt;}
._d{width:11.100160pt;}
._16{width:12.144000pt;}
._10{width:13.063680pt;}
._15{width:14.453760pt;}
._f{width:15.886080pt;}
._c{width:17.579520pt;}
._b{width:18.499840pt;}
._13{width:21.087360pt;}
._9{width:23.304960pt;}
._a{width:24.414720pt;}
._23{width:41.088000pt;}
._19{width:50.928000pt;}
._1a{width:51.857920pt;}
._1f{width:54.240000pt;}
._20{width:55.786667pt;}
._25{width:60.401920pt;}
._17{width:61.824000pt;}
._18{width:63.312000pt;}
._11{width:64.993280pt;}
._12{width:65.940480pt;}
._1e{width:73.225387pt;}
._1d{width:74.208000pt;}
._21{width:124.848000pt;}
._22{width:125.742933pt;}
._24{width:159.984000pt;}
._26{width:177.744000pt;}
._1b{width:230.592000pt;}
._1c{width:231.948800pt;}
.fs7{font-size:13.440000pt;}
.fs6{font-size:21.120000pt;}
.fs9{font-size:24.320000pt;}
.fs0{font-size:26.880000pt;}
.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;}
.y6{bottom:50.400000pt;}
.yd7{bottom:53.280000pt;}
.y191{bottom:56.480000pt;}
.y9e{bottom:59.040000pt;}
.y6f{bottom:59.680000pt;}
.y5{bottom:62.720000pt;}
.yd6{bottom:67.040000pt;}
.y110{bottom:67.680000pt;}
.y150{bottom:68.000000pt;}
.y190{bottom:70.240000pt;}
.y9d{bottom:72.800000pt;}
.y6e{bottom:73.440000pt;}
.y11b{bottom:75.040000pt;}
.y16f{bottom:77.600000pt;}
.yd5{bottom:80.800000pt;}
.ybb{bottom:81.440000pt;}
.y18f{bottom:84.000000pt;}
.y9c{bottom:86.560000pt;}
.y6d{bottom:87.200000pt;}
.y11a{bottom:88.800000pt;}
.y14f{bottom:89.760000pt;}
.y16e{bottom:91.360000pt;}
.yd4{bottom:94.560000pt;}
.yba{bottom:95.200000pt;}
.y18e{bottom:97.760000pt;}
.y3c{bottom:99.680000pt;}
.y9b{bottom:100.320000pt;}
.y6c{bottom:100.960000pt;}
.y119{bottom:102.560000pt;}
.y16d{bottom:105.120000pt;}
.yd3{bottom:108.320000pt;}
.yb9{bottom:108.960000pt;}
.y3b{bottom:111.520000pt;}
.y103{bottom:114.080000pt;}
.y6b{bottom:114.720000pt;}
.y118{bottom:116.320000pt;}
.y16c{bottom:118.880000pt;}
.y9a{bottom:122.080000pt;}
.yb8{bottom:122.720000pt;}
.y14e{bottom:125.440000pt;}
.y102{bottom:127.840000pt;}
.y6a{bottom:128.480000pt;}
.y117{bottom:130.080000pt;}
.y16b{bottom:132.640000pt;}
.y99{bottom:135.840000pt;}
.yb7{bottom:136.480000pt;}
.y3a{bottom:138.560000pt;}
.y14d{bottom:139.200000pt;}
.y101{bottom:141.600000pt;}
.y69{bottom:142.240000pt;}
.yd2{bottom:143.840000pt;}
.y10f{bottom:144.480000pt;}
.y18d{bottom:147.200000pt;}
.y98{bottom:149.600000pt;}
.yb6{bottom:150.266667pt;}
.y39{bottom:151.066667pt;}
.y14c{bottom:152.986667pt;}
.y16a{bottom:154.426667pt;}
.y100{bottom:155.386667pt;}
.y68{bottom:156.026667pt;}
.yd1{bottom:157.626667pt;}
.y10e{bottom:158.266667pt;}
.y38{bottom:163.386667pt;}
.yb5{bottom:164.026667pt;}
.y14b{bottom:166.746667pt;}
.y169{bottom:168.346667pt;}
.y18c{bottom:168.986667pt;}
.yff{bottom:169.146667pt;}
.y67{bottom:169.786667pt;}
.yd0{bottom:171.386667pt;}
.y10d{bottom:172.026667pt;}
.y37{bottom:175.866667pt;}
.y97{bottom:177.146667pt;}
.y124{bottom:177.786667pt;}
.y168{bottom:182.106667pt;}
.yfe{bottom:182.906667pt;}
.ycf{bottom:185.146667pt;}
.yb4{bottom:185.786667pt;}
.y36{bottom:188.186667pt;}
.y14a{bottom:188.506667pt;}
.y18b{bottom:190.746667pt;}
.y96{bottom:190.906667pt;}
.y66{bottom:191.546667pt;}
.yfd{bottom:196.666667pt;}
.yce{bottom:198.906667pt;}
.yb3{bottom:199.546667pt;}
.y35{bottom:200.506667pt;}
.y149{bottom:202.266667pt;}
.y167{bottom:203.866667pt;}
.y18a{bottom:204.506667pt;}
.y95{bottom:204.666667pt;}
.y65{bottom:205.466667pt;}
.yfc{bottom:210.426667pt;}
.ycd{bottom:212.666667pt;}
.y34{bottom:212.986667pt;}
.ye4{bottom:213.306667pt;}
.yb2{bottom:213.466667pt;}
.y166{bottom:217.626667pt;}
.y189{bottom:218.266667pt;}
.y94{bottom:218.426667pt;}
.y64{bottom:219.226667pt;}
.y10c{bottom:221.466667pt;}
.y148{bottom:224.026667pt;}
.yfb{bottom:224.346667pt;}
.y33{bottom:225.306667pt;}
.ycc{bottom:226.426667pt;}
.yb1{bottom:227.226667pt;}
.y93{bottom:232.346667pt;}
.y63{bottom:232.986667pt;}
.ye3{bottom:235.066667pt;}
.y10b{bottom:235.226667pt;}
.y32{bottom:237.786667pt;}
.yfa{bottom:238.106667pt;}
.y165{bottom:239.386667pt;}
.y188{bottom:240.026667pt;}
.ycb{bottom:240.346667pt;}
.yb0{bottom:240.986667pt;}
.y62{bottom:246.746667pt;}
.ye2{bottom:248.826667pt;}
.y10a{bottom:248.986667pt;}
.y31{bottom:250.106667pt;}
.yf9{bottom:251.866667pt;}
.y164{bottom:253.146667pt;}
.y187{bottom:253.786667pt;}
.y92{bottom:254.106667pt;}
.yaf{bottom:254.746667pt;}
.y147{bottom:259.546667pt;}
.y123{bottom:260.506667pt;}
.y30{bottom:262.426667pt;}
.ye1{bottom:262.586667pt;}
.y109{bottom:262.746667pt;}
.y163{bottom:266.906667pt;}
.y91{bottom:267.866667pt;}
.y61{bottom:268.506667pt;}
.y146{bottom:273.306667pt;}
.yf8{bottom:273.626667pt;}
.y122{bottom:274.266667pt;}
.y2f{bottom:274.906667pt;}
.y186{bottom:275.546667pt;}
.ye0{bottom:276.346667pt;}
.y162{bottom:280.666667pt;}
.y90{bottom:281.626667pt;}
.y60{bottom:282.266667pt;}
.y108{bottom:284.506667pt;}
.y145{bottom:287.066667pt;}
.y2e{bottom:287.226667pt;}
.yf7{bottom:287.386667pt;}
.y121{bottom:288.026667pt;}
.y185{bottom:289.306667pt;}
.yca{bottom:289.626667pt;}
.yae{bottom:290.266667pt;}
.y8f{bottom:295.386667pt;}
.y5f{bottom:296.026667pt;}
.y107{bottom:298.266667pt;}
.y2d{bottom:299.706667pt;}
.yf6{bottom:301.146667pt;}
.y120{bottom:301.786667pt;}
.y161{bottom:302.426667pt;}
.yc9{bottom:303.386667pt;}
.yad{bottom:304.026667pt;}
.y144{bottom:308.866667pt;}
.y8e{bottom:309.186667pt;}
.y184{bottom:311.106667pt;}
.y2c{bottom:312.066667pt;}
.yf5{bottom:314.946667pt;}
.y11f{bottom:315.586667pt;}
.yc8{bottom:317.186667pt;}
.y5e{bottom:317.826667pt;}
.y143{bottom:322.626667pt;}
.y8d{bottom:322.946667pt;}
.y160{bottom:324.226667pt;}
.y2b{bottom:324.386667pt;}
.y183{bottom:324.866667pt;}
.y106{bottom:325.826667pt;}
.yf4{bottom:328.706667pt;}
.yc7{bottom:330.946667pt;}
.y5d{bottom:331.586667pt;}
.y142{bottom:336.386667pt;}
.y8c{bottom:336.706667pt;}
.y2a{bottom:336.866667pt;}
.y11e{bottom:337.346667pt;}
.y15f{bottom:337.986667pt;}
.yac{bottom:339.586667pt;}
.yc6{bottom:344.706667pt;}
.y5c{bottom:345.346667pt;}
.y182{bottom:346.626667pt;}
.y29{bottom:349.186667pt;}
.y8b{bottom:350.466667pt;}
.y15e{bottom:351.746667pt;}
.yab{bottom:353.346667pt;}
.y141{bottom:358.146667pt;}
.yc5{bottom:358.466667pt;}
.y5b{bottom:359.106667pt;}
.y181{bottom:360.386667pt;}
.y28{bottom:361.506667pt;}
.y8a{bottom:364.226667pt;}
.yaa{bottom:367.106667pt;}
.yc4{bottom:372.226667pt;}
.y15d{bottom:373.506667pt;}
.y27{bottom:373.986667pt;}
.yf3{bottom:377.986667pt;}
.y140{bottom:379.906667pt;}
.y5a{bottom:380.866667pt;}
.y180{bottom:382.146667pt;}
.y89{bottom:385.986667pt;}
.y26{bottom:386.306667pt;}
.yf2{bottom:391.746667pt;}
.y13f{bottom:393.826667pt;}
.y59{bottom:394.626667pt;}
.y15c{bottom:395.266667pt;}
.y17f{bottom:395.906667pt;}
.y25{bottom:398.786667pt;}
.y88{bottom:399.746667pt;}
.y58{bottom:408.386667pt;}
.y15b{bottom:409.026667pt;}
.y24{bottom:411.106667pt;}
.y87{bottom:413.506667pt;}
.y13e{bottom:415.586667pt;}
.y17e{bottom:417.826667pt;}
.yc3{bottom:421.506667pt;}
.ya9{bottom:422.146667pt;}
.y15a{bottom:422.786667pt;}
.y23{bottom:423.426667pt;}
.y86{bottom:427.266667pt;}
.y13d{bottom:429.346667pt;}
.y57{bottom:430.146667pt;}
.y17d{bottom:431.586667pt;}
.y116{bottom:435.266667pt;}
.y22{bottom:435.906667pt;}
.y85{bottom:441.026667pt;}
.y13c{bottom:443.106667pt;}
.yc2{bottom:443.266667pt;}
.y56{bottom:443.906667pt;}
.y159{bottom:444.546667pt;}
.y17c{bottom:445.346667pt;}
.y21{bottom:448.226667pt;}
.y115{bottom:449.026667pt;}
.ydf{bottom:449.666667pt;}
.ya8{bottom:449.826667pt;}
.y84{bottom:454.786667pt;}
.y55{bottom:457.826667pt;}
.y158{bottom:458.466667pt;}
.y17b{bottom:459.106667pt;}
.y20{bottom:460.706667pt;}
.y114{bottom:462.786667pt;}
.yde{bottom:463.426667pt;}
.ya7{bottom:463.586667pt;}
.y13b{bottom:464.893333pt;}
.yc1{bottom:465.053333pt;}
.y83{bottom:468.573333pt;}
.y54{bottom:471.613333pt;}
.y1f{bottom:473.053333pt;}
.yf1{bottom:476.573333pt;}
.ydd{bottom:477.213333pt;}
.y11d{bottom:477.373333pt;}
.y13a{bottom:478.653333pt;}
.yc0{bottom:478.813333pt;}
.y157{bottom:480.253333pt;}
.y17a{bottom:480.893333pt;}
.y53{bottom:485.373333pt;}
.y1e{bottom:485.693333pt;}
.y82{bottom:490.493333pt;}
.ydc{bottom:490.973333pt;}
.y11c{bottom:491.133333pt;}
.ybf{bottom:492.573333pt;}
.y156{bottom:494.013333pt;}
.y179{bottom:494.653333pt;}
.y113{bottom:498.493333pt;}
.y1d{bottom:498.973333pt;}
.y52{bottom:499.133333pt;}
.y139{bottom:500.413333pt;}
.y81{bottom:504.253333pt;}
.ydb{bottom:504.733333pt;}
.ybe{bottom:506.493333pt;}
.y178{bottom:508.413333pt;}
.y112{bottom:512.253333pt;}
.y1c{bottom:512.573333pt;}
.y51{bottom:512.893333pt;}
.y138{bottom:514.173333pt;}
.y155{bottom:515.773333pt;}
.yf0{bottom:518.013333pt;}
.yda{bottom:518.493333pt;}
.ybd{bottom:520.253333pt;}
.y1b{bottom:524.093333pt;}
.y80{bottom:526.013333pt;}
.y50{bottom:526.653333pt;}
.y177{bottom:530.173333pt;}
.yef{bottom:531.773333pt;}
.yd9{bottom:532.413333pt;}
.ybc{bottom:534.013333pt;}
.y1a{bottom:535.613333pt;}
.y137{bottom:535.933333pt;}
.y154{bottom:537.533333pt;}
.y111{bottom:539.773333pt;}
.y4f{bottom:540.413333pt;}
.yee{bottom:545.533333pt;}
.yd8{bottom:546.173333pt;}
.y19{bottom:547.293333pt;}
.y7f{bottom:547.773333pt;}
.y136{bottom:549.693333pt;}
.y153{bottom:551.293333pt;}
.y176{bottom:551.933333pt;}
.y12e{bottom:553.533333pt;}
.y4e{bottom:554.173333pt;}
.y18{bottom:558.813333pt;}
.yed{bottom:559.293333pt;}
.y7e{bottom:561.533333pt;}
.y175{bottom:565.693333pt;}
.y12d{bottom:567.293333pt;}
.y4d{bottom:567.933333pt;}
.y17{bottom:570.333333pt;}
.y135{bottom:571.453333pt;}
.yec{bottom:573.053333pt;}
.y7d{bottom:575.293333pt;}
.y174{bottom:579.453333pt;}
.y12c{bottom:581.053333pt;}
.y4c{bottom:581.693333pt;}
.y16{bottom:582.333333pt;}
.y134{bottom:585.213333pt;}
.yeb{bottom:586.813333pt;}
.y7c{bottom:589.053333pt;}
.y105{bottom:589.693333pt;}
.y4b{bottom:595.453333pt;}
.y15{bottom:596.573333pt;}
.y133{bottom:598.973333pt;}
.yea{bottom:600.573333pt;}
.y173{bottom:601.213333pt;}
.y7b{bottom:602.813333pt;}
.ya6{bottom:603.453333pt;}
.y4a{bottom:609.213333pt;}
.y14{bottom:612.893333pt;}
.ye9{bottom:614.333333pt;}
.y172{bottom:614.973333pt;}
.y7a{bottom:616.573333pt;}
.ya5{bottom:617.213333pt;}
.y132{bottom:620.773333pt;}
.y152{bottom:622.373333pt;}
.y49{bottom:623.013333pt;}
.ye8{bottom:628.133333pt;}
.y171{bottom:628.773333pt;}
.y13{bottom:628.933333pt;}
.y12b{bottom:630.373333pt;}
.ya4{bottom:631.013333pt;}
.y151{bottom:636.133333pt;}
.y79{bottom:638.373333pt;}
.y131{bottom:642.533333pt;}
.y12a{bottom:644.133333pt;}
.y48{bottom:644.773333pt;}
.y12{bottom:648.773333pt;}
.ye7{bottom:649.893333pt;}
.y170{bottom:650.533333pt;}
.y78{bottom:652.133333pt;}
.y129{bottom:657.893333pt;}
.y47{bottom:658.533333pt;}
.ye6{bottom:663.653333pt;}
.y130{bottom:664.293333pt;}
.y77{bottom:665.893333pt;}
.y104{bottom:666.533333pt;}
.y128{bottom:671.653333pt;}
.y46{bottom:672.293333pt;}
.y12f{bottom:678.053333pt;}
.y11{bottom:678.853333pt;}
.y76{bottom:679.653333pt;}
.ya3{bottom:680.293333pt;}
.ye5{bottom:685.413333pt;}
.y45{bottom:686.053333pt;}
.y75{bottom:693.413333pt;}
.y10{bottom:693.733333pt;}
.ya2{bottom:694.053333pt;}
.y127{bottom:699.173333pt;}
.y44{bottom:699.973333pt;}
.yf{bottom:701.573333pt;}
.y74{bottom:707.173333pt;}
.ya1{bottom:707.973333pt;}
.ye{bottom:709.253333pt;}
.y126{bottom:712.933333pt;}
.y43{bottom:713.733333pt;}
.yd{bottom:717.093333pt;}
.y73{bottom:720.933333pt;}
.ya0{bottom:721.733333pt;}
.yc{bottom:724.933333pt;}
.y125{bottom:726.853333pt;}
.y42{bottom:727.493333pt;}
.yb{bottom:732.773333pt;}
.y72{bottom:734.853333pt;}
.y9f{bottom:735.493333pt;}
.ya{bottom:744.773333pt;}
.y71{bottom:748.613333pt;}
.y41{bottom:749.253333pt;}
.y70{bottom:762.373333pt;}
.y40{bottom:762.533333pt;}
.y9{bottom:771.173333pt;}
.y3f{bottom:773.093333pt;}
.y3e{bottom:783.840000pt;}
.y4{bottom:788.480000pt;}
.y3d{bottom:794.560000pt;}
.h7{height:10.560000pt;}
.h2{height:15.520000pt;}
.hb{height:19.263750pt;}
.h3{height:24.241875pt;}
.h17{height:25.773750pt;}
.h8{height:26.735625pt;}
.h11{height:29.354062pt;}
.h12{height:33.476875pt;}
.h16{height:33.766875pt;}
.he{height:34.945312pt;}
.h10{height:36.362812pt;}
.h15{height:36.677812pt;}
.h6{height:36.920625pt;}
.h14{height:39.006562pt;}
.h13{height:41.446250pt;}
.h19{height:43.289062pt;}
.hf{height:43.664062pt;}
.h18{height:43.781250pt;}
.h5{height:44.437500pt;}
.hc{height:53.101250pt;}
.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;}
.w3{width:568.159992pt;}
.w0{width:568.160000pt;}
.x0{left:0.000000pt;}
.x8{left:9.600000pt;}
.x2{left:14.240000pt;}
.x12{left:47.999992pt;}
.x4{left:60.034667pt;}
.xa{left:61.631992pt;}
.x17{left:66.911992pt;}
.xc{left:75.551992pt;}
.x9{left:104.831992pt;}
.x1{left:111.232000pt;}
.x11{left:137.786658pt;}
.x10{left:184.866658pt;}
.xb{left:191.266658pt;}
.xd{left:201.826658pt;}
.xe{left:213.986658pt;}
.xf{left:234.466658pt;}
.x15{left:250.146658pt;}
.x18{left:272.733325pt;}
.x6{left:284.093325pt;}
.x14{left:294.173325pt;}
.x3{left:301.061333pt;}
.x13{left:381.733325pt;}
.x19{left:404.133325pt;}
.x7{left:468.453333pt;}
.x1a{left:511.839992pt;}
.x16{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; }
  