
    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_d3edd3c111a0ae2afc075722.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_346909a2e3a7ce855e93dafa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691895;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_71ebea51520b6614c84677c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691895;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_b532f6f625a52fe66d614e9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0d1f7b72de0ed910cc853555.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_8463873ac8adc90ed58f5c0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.703613;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_065965328d0ef4461f92bc2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1df2ed401a5b0501abf4f76a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_953d34a65671eac66b52d526.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_16134debb12c2f2d4505381c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_e1d198df625df6719812a42f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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:-72.000000px;}
.v4{vertical-align:-69.300000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-3.672000px;}
.ls1c{letter-spacing:-2.052000px;}
.lsb{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.305400px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.018215px;}
.ls1d{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.091200px;}
.ls1{letter-spacing:0.105120px;}
.ls11{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.144000px;}
.lse{letter-spacing:0.178560px;}
.ls16{letter-spacing:0.190560px;}
.ls10{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.339840px;}
.lsd{letter-spacing:0.464160px;}
.ls5{letter-spacing:0.519840px;}
.ls1b{letter-spacing:0.630720px;}
.ls8{letter-spacing:0.642720px;}
.lsa{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.984000px;}
.ls13{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.452000px;}
.ls15{letter-spacing:1.809120px;}
.ls1f{letter-spacing:53.758560px;}
.ls1e{letter-spacing:82.558560px;}
.ls18{letter-spacing:337.836000px;}
.ls19{letter-spacing:396.876000px;}
.ls1a{letter-spacing:408.396000px;}
.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;}
}
.ws0{word-spacing:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws8{word-spacing:-20.880000px;}
.ws2{word-spacing:-19.457280px;}
.wsb{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.865400px;}
.ws4{word-spacing:-16.696659px;}
.ws9{word-spacing:-16.560000px;}
.wse{word-spacing:-16.254600px;}
.ws10{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.400000px;}
.ws3{word-spacing:-14.328000px;}
.wsd{word-spacing:-10.440000px;}
.ws6{word-spacing:-0.077760px;}
.ws7{word-spacing:-0.063360px;}
.wsa{word-spacing:0.000000px;}
._1a{margin-left:-9.576960px;}
._5{margin-left:-8.465280px;}
._3{margin-left:-7.197120px;}
._15{margin-left:-5.705280px;}
._4{margin-left:-4.068000px;}
._d{margin-left:-3.048960px;}
._0{margin-left:-1.995840px;}
._2{width:1.088640px;}
._1{width:2.661120px;}
._6{width:3.728160px;}
._21{width:4.735680px;}
._a{width:5.806080px;}
._9{width:7.378560px;}
._b{width:8.818080px;}
._8{width:10.475040px;}
._c{width:11.625120px;}
._7{width:12.942720px;}
._14{width:13.948320px;}
._16{width:15.036000px;}
._13{width:16.511040px;}
._12{width:17.519520px;}
._11{width:18.930240px;}
._17{width:20.322240px;}
._1b{width:21.432000px;}
._10{width:22.473600px;}
._f{width:23.612160px;}
._e{width:24.675840px;}
._1c{width:25.990080px;}
._1d{width:27.198720px;}
._19{width:28.956000px;}
._18{width:29.975520px;}
._25{width:31.515840px;}
._1f{width:32.892480px;}
._1e{width:33.969600px;}
._20{width:36.233280px;}
._22{width:37.480320px;}
._3a{width:43.164960px;}
._39{width:44.205120px;}
._38{width:51.952320px;}
._23{width:53.907840px;}
._24{width:55.816800px;}
._2a{width:64.773120px;}
._29{width:66.072000px;}
._33{width:67.919040px;}
._34{width:69.124800px;}
._2f{width:83.825280px;}
._2e{width:85.095360px;}
._30{width:86.123520px;}
._31{width:93.988800px;}
._32{width:95.132160px;}
._37{width:97.009920px;}
._36{width:99.005760px;}
._27{width:116.872320px;}
._28{width:118.348800px;}
._26{width:119.508480px;}
._3d{width:132.451200px;}
._3e{width:134.681760px;}
._2c{width:159.546240px;}
._2d{width:160.962240px;}
._2b{width:162.449280px;}
._3b{width:228.553920px;}
._3c{width:230.670720px;}
._35{width:280.663680px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs4{font-size:50.400000px;}
.fsd{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fsa{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs8{font-size:66.786636px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs7{font-size:81.965417px;}
.fsb{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:111.276000px;}
.y121{bottom:139.716000px;}
.y10f{bottom:140.076000px;}
.y96{bottom:141.516000px;}
.yca{bottom:155.190000px;}
.y63{bottom:156.990000px;}
.y31{bottom:157.350000px;}
.y120{bottom:158.790000px;}
.y10e{bottom:159.150000px;}
.y136{bottom:160.230000px;}
.y95{bottom:160.590000px;}
.ye2{bottom:162.030000px;}
.yc9{bottom:174.270000px;}
.y62{bottom:176.070000px;}
.y30{bottom:176.430000px;}
.y135{bottom:177.150000px;}
.y11f{bottom:177.510000px;}
.y10d{bottom:178.230000px;}
.y94{bottom:179.310000px;}
.ye1{bottom:181.110000px;}
.yc8{bottom:193.350000px;}
.y134{bottom:194.475000px;}
.y61{bottom:194.835000px;}
.y2f{bottom:195.195000px;}
.y11e{bottom:196.635000px;}
.y10c{bottom:196.995000px;}
.y93{bottom:198.435000px;}
.ye0{bottom:200.235000px;}
.yf8{bottom:203.115000px;}
.y133{bottom:211.755000px;}
.yc7{bottom:212.115000px;}
.y60{bottom:213.915000px;}
.y2e{bottom:214.275000px;}
.y11d{bottom:215.715000px;}
.y10b{bottom:216.075000px;}
.y92{bottom:217.515000px;}
.ydf{bottom:218.955000px;}
.yf7{bottom:221.835000px;}
.y132{bottom:229.035000px;}
.yc6{bottom:231.195000px;}
.y5f{bottom:232.995000px;}
.y2d{bottom:233.355000px;}
.y11c{bottom:234.795000px;}
.y10a{bottom:235.155000px;}
.y91{bottom:236.235000px;}
.ye4{bottom:236.595000px;}
.yde{bottom:238.035000px;}
.yf6{bottom:240.915000px;}
.y131{bottom:246.315000px;}
.yc5{bottom:250.275000px;}
.y5e{bottom:251.715000px;}
.y2c{bottom:252.075000px;}
.y11b{bottom:253.515000px;}
.y90{bottom:255.315000px;}
.ydd{bottom:257.115000px;}
.yf5{bottom:259.995000px;}
.y130{bottom:263.595000px;}
.yc4{bottom:268.995000px;}
.y5d{bottom:270.795000px;}
.y2b{bottom:271.155000px;}
.y11a{bottom:272.595000px;}
.y8f{bottom:274.395000px;}
.ydc{bottom:276.195000px;}
.yf4{bottom:279.075000px;}
.y12f{bottom:280.875000px;}
.yc3{bottom:288.075000px;}
.y5c{bottom:289.875000px;}
.y2a{bottom:290.955000px;}
.y109{bottom:291.675000px;}
.y8e{bottom:293.115000px;}
.ydb{bottom:294.915000px;}
.yf3{bottom:297.795000px;}
.y12e{bottom:298.155000px;}
.y108{bottom:306.795000px;}
.yc2{bottom:307.155000px;}
.y5b{bottom:308.955000px;}
.y119{bottom:310.395000px;}
.y8d{bottom:312.195000px;}
.yda{bottom:313.995000px;}
.y29{bottom:314.355000px;}
.y12d{bottom:315.435000px;}
.yf2{bottom:316.875000px;}
.yc1{bottom:325.905000px;}
.y5a{bottom:327.705000px;}
.y118{bottom:329.505000px;}
.y8c{bottom:331.305000px;}
.y28{bottom:332.745000px;}
.yd9{bottom:333.105000px;}
.yf1{bottom:335.985000px;}
.yc0{bottom:344.985000px;}
.y59{bottom:346.785000px;}
.y117{bottom:348.585000px;}
.y27{bottom:350.025000px;}
.y8b{bottom:350.385000px;}
.yd8{bottom:351.825000px;}
.yf0{bottom:354.705000px;}
.y163{bottom:355.065000px;}
.ybf{bottom:364.065000px;}
.y58{bottom:365.865000px;}
.y12c{bottom:366.945000px;}
.y26{bottom:367.305000px;}
.y8a{bottom:369.105000px;}
.yd7{bottom:370.905000px;}
.y162{bottom:372.345000px;}
.yef{bottom:373.785000px;}
.ybe{bottom:383.145000px;}
.y57{bottom:384.585000px;}
.y25{bottom:384.945000px;}
.y116{bottom:386.385000px;}
.y89{bottom:388.185000px;}
.y161{bottom:389.625000px;}
.yd6{bottom:389.985000px;}
.yee{bottom:392.865000px;}
.ybd{bottom:401.865000px;}
.y56{bottom:403.665000px;}
.y12b{bottom:404.025000px;}
.y24{bottom:404.385000px;}
.y115{bottom:405.465000px;}
.y160{bottom:406.905000px;}
.y88{bottom:407.265000px;}
.yd5{bottom:408.705000px;}
.yed{bottom:411.945000px;}
.ybc{bottom:420.945000px;}
.y55{bottom:422.745000px;}
.y15f{bottom:424.185000px;}
.y114{bottom:424.545000px;}
.y87{bottom:425.985000px;}
.y23{bottom:426.345000px;}
.yd4{bottom:427.785000px;}
.yec{bottom:431.025000px;}
.ybb{bottom:440.025000px;}
.y15e{bottom:441.105000px;}
.y54{bottom:441.465000px;}
.y113{bottom:443.265000px;}
.y22{bottom:445.065000px;}
.yd3{bottom:446.910000px;}
.yeb{bottom:451.590000px;}
.y15d{bottom:458.430000px;}
.yba{bottom:458.790000px;}
.y53{bottom:460.590000px;}
.y21{bottom:462.390000px;}
.y86{bottom:464.190000px;}
.yd2{bottom:465.990000px;}
.y15c{bottom:475.710000px;}
.yb9{bottom:477.870000px;}
.y20{bottom:479.670000px;}
.y112{bottom:481.470000px;}
.y85{bottom:482.910000px;}
.yd1{bottom:484.710000px;}
.yea{bottom:487.950000px;}
.y15b{bottom:492.990000px;}
.y1f{bottom:496.950000px;}
.ye7{bottom:498.750000px;}
.y52{bottom:500.190000px;}
.y84{bottom:501.990000px;}
.yd0{bottom:503.790000px;}
.ye9{bottom:504.510000px;}
.y15a{bottom:510.270000px;}
.y1e{bottom:514.230000px;}
.yb8{bottom:517.470000px;}
.y51{bottom:519.270000px;}
.y83{bottom:521.070000px;}
.ycf{bottom:522.870000px;}
.y159{bottom:527.550000px;}
.y1d{bottom:531.150000px;}
.yb7{bottom:536.550000px;}
.y50{bottom:538.350000px;}
.y82{bottom:540.150000px;}
.yce{bottom:541.590000px;}
.y158{bottom:544.830000px;}
.y1c{bottom:548.430000px;}
.yb6{bottom:555.630000px;}
.y4f{bottom:557.430000px;}
.y81{bottom:558.870000px;}
.y107{bottom:559.590000px;}
.ycd{bottom:560.670000px;}
.y157{bottom:562.110000px;}
.y1b{bottom:565.710000px;}
.yb5{bottom:574.380000px;}
.y4e{bottom:576.180000px;}
.y80{bottom:577.980000px;}
.y106{bottom:578.700000px;}
.y156{bottom:579.420000px;}
.ycc{bottom:579.780000px;}
.y1a{bottom:583.020000px;}
.yb4{bottom:593.460000px;}
.y4d{bottom:595.260000px;}
.y155{bottom:596.700000px;}
.y7f{bottom:597.060000px;}
.y105{bottom:597.780000px;}
.ycb{bottom:598.860000px;}
.y19{bottom:600.300000px;}
.yb3{bottom:612.540000px;}
.y154{bottom:613.980000px;}
.y4c{bottom:614.340000px;}
.y99{bottom:615.780000px;}
.y7e{bottom:616.140000px;}
.y104{bottom:616.500000px;}
.y18{bottom:617.580000px;}
.y153{bottom:631.260000px;}
.yb2{bottom:631.620000px;}
.ye6{bottom:632.700000px;}
.y111{bottom:633.060000px;}
.y4b{bottom:633.780000px;}
.y17{bottom:634.860000px;}
.y103{bottom:635.580000px;}
.y7d{bottom:636.660000px;}
.y152{bottom:648.180000px;}
.yb1{bottom:650.340000px;}
.y16{bottom:652.140000px;}
.ye5{bottom:652.860000px;}
.y98{bottom:653.940000px;}
.y102{bottom:654.660000px;}
.y7c{bottom:655.740000px;}
.y4a{bottom:657.180000px;}
.y151{bottom:665.460000px;}
.y15{bottom:669.420000px;}
.y12a{bottom:671.220000px;}
.y110{bottom:671.940000px;}
.y97{bottom:673.020000px;}
.y101{bottom:673.380000px;}
.y7b{bottom:674.460000px;}
.y49{bottom:676.260000px;}
.y150{bottom:682.740000px;}
.y14{bottom:686.700000px;}
.yb0{bottom:688.500000px;}
.y129{bottom:689.940000px;}
.y100{bottom:692.460000px;}
.y7a{bottom:693.540000px;}
.y48{bottom:695.340000px;}
.y14f{bottom:700.050000px;}
.y13{bottom:704.370000px;}
.yaf{bottom:707.250000px;}
.y128{bottom:709.050000px;}
.yff{bottom:711.570000px;}
.y79{bottom:712.650000px;}
.y47{bottom:714.450000px;}
.y14e{bottom:717.330000px;}
.y12{bottom:723.810000px;}
.yae{bottom:726.330000px;}
.y127{bottom:728.130000px;}
.yfe{bottom:730.290000px;}
.y78{bottom:731.370000px;}
.y46{bottom:733.170000px;}
.y14d{bottom:734.610000px;}
.yad{bottom:745.410000px;}
.y126{bottom:747.210000px;}
.y11{bottom:747.570000px;}
.yfd{bottom:749.370000px;}
.y77{bottom:750.450000px;}
.y14c{bottom:751.890000px;}
.y45{bottom:752.250000px;}
.yac{bottom:764.130000px;}
.y125{bottom:765.930000px;}
.yfc{bottom:768.450000px;}
.y14b{bottom:769.170000px;}
.y76{bottom:769.530000px;}
.y44{bottom:771.330000px;}
.y10{bottom:773.850000px;}
.yab{bottom:783.210000px;}
.y124{bottom:785.010000px;}
.y14a{bottom:786.450000px;}
.y75{bottom:788.610000px;}
.yfb{bottom:788.970000px;}
.y43{bottom:790.050000px;}
.yf{bottom:801.210000px;}
.yaa{bottom:802.290000px;}
.y149{bottom:803.730000px;}
.y123{bottom:804.090000px;}
.y74{bottom:807.330000px;}
.y42{bottom:809.130000px;}
.ye{bottom:815.250000px;}
.y148{bottom:821.010000px;}
.ya9{bottom:821.370000px;}
.y122{bottom:822.810000px;}
.yfa{bottom:825.015000px;}
.y73{bottom:826.455000px;}
.y41{bottom:828.255000px;}
.y147{bottom:837.975000px;}
.ya8{bottom:840.135000px;}
.yf9{bottom:840.495000px;}
.yd{bottom:842.655000px;}
.y72{bottom:845.535000px;}
.y40{bottom:846.975000px;}
.y146{bottom:855.255000px;}
.yc{bottom:856.695000px;}
.ya7{bottom:859.215000px;}
.y71{bottom:864.255000px;}
.y3f{bottom:866.055000px;}
.y145{bottom:872.535000px;}
.ya6{bottom:878.295000px;}
.y70{bottom:883.335000px;}
.yb{bottom:884.055000px;}
.y3e{bottom:885.135000px;}
.y144{bottom:889.815000px;}
.ya5{bottom:897.015000px;}
.y6f{bottom:902.415000px;}
.y3d{bottom:904.215000px;}
.ya{bottom:904.935000px;}
.y143{bottom:907.095000px;}
.ya4{bottom:916.095000px;}
.y9{bottom:918.975000px;}
.y6e{bottom:921.135000px;}
.y3c{bottom:922.935000px;}
.y142{bottom:924.375000px;}
.ya3{bottom:935.175000px;}
.y6d{bottom:940.215000px;}
.y8{bottom:941.295000px;}
.y141{bottom:941.655000px;}
.y3b{bottom:942.015000px;}
.ya2{bottom:954.285000px;}
.y140{bottom:958.965000px;}
.y6c{bottom:959.325000px;}
.y3a{bottom:961.125000px;}
.y7{bottom:966.885000px;}
.ya1{bottom:974.805000px;}
.y13f{bottom:976.245000px;}
.y6b{bottom:978.405000px;}
.y39{bottom:979.845000px;}
.y13e{bottom:993.525000px;}
.ya0{bottom:993.885000px;}
.y6a{bottom:997.125000px;}
.ye8{bottom:997.485000px;}
.y38{bottom:998.925000px;}
.y6{bottom:1000.725000px;}
.y13d{bottom:1010.805000px;}
.y9f{bottom:1012.605000px;}
.y69{bottom:1016.205000px;}
.y37{bottom:1018.005000px;}
.y13c{bottom:1028.085000px;}
.y9e{bottom:1031.685000px;}
.y5{bottom:1034.565000px;}
.y68{bottom:1035.285000px;}
.y36{bottom:1036.725000px;}
.y13b{bottom:1045.005000px;}
.y9d{bottom:1050.765000px;}
.y67{bottom:1054.005000px;}
.ye3{bottom:1054.365000px;}
.y35{bottom:1055.805000px;}
.y13a{bottom:1062.285000px;}
.y4{bottom:1068.045000px;}
.y9c{bottom:1069.845000px;}
.y66{bottom:1073.085000px;}
.y34{bottom:1074.885000px;}
.y139{bottom:1079.610000px;}
.y9b{bottom:1088.610000px;}
.y65{bottom:1092.210000px;}
.y33{bottom:1094.010000px;}
.y138{bottom:1096.890000px;}
.y3{bottom:1101.930000px;}
.y9a{bottom:1108.410000px;}
.y64{bottom:1111.290000px;}
.y32{bottom:1112.730000px;}
.y137{bottom:1114.170000px;}
.y1{bottom:1141.170000px;}
.hf{height:46.251562px;}
.h6{height:46.638281px;}
.h9{height:56.391247px;}
.hb{height:59.328281px;}
.h2{height:59.357813px;}
.h13{height:62.163910px;}
.ha{height:65.010937px;}
.h11{height:66.757500px;}
.h10{height:68.345156px;}
.h7{height:70.664062px;}
.h12{height:72.562500px;}
.he{height:74.953125px;}
.hc{height:76.279219px;}
.h4{height:76.317188px;}
.h5{height:78.367500px;}
.h3{height:80.944453px;}
.hd{height:86.945625px;}
.h8{height:100.437187px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xf{left:123.155987px;}
.x2{left:125.315987px;}
.x5{left:136.115987px;}
.x1{left:138.635987px;}
.x6{left:151.994987px;}
.xd{left:157.394987px;}
.x4{left:160.994987px;}
.x14{left:165.674987px;}
.x9{left:206.714987px;}
.xb{left:214.274987px;}
.x8{left:215.714987px;}
.xa{left:258.944987px;}
.x7{left:326.984987px;}
.xe{left:343.229987px;}
.xc{left:350.069987px;}
.x3{left:446.579987px;}
.x13{left:597.089987px;}
.x12{left:621.254987px;}
.x11{left:714.164987px;}
.x10{left:754.844987px;}
@media print{
.v3{vertical-align:-64.000000pt;}
.v4{vertical-align:-61.600000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-3.264000pt;}
.ls1c{letter-spacing:-1.824000pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.016191pt;}
.ls1d{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.081067pt;}
.ls1{letter-spacing:0.093440pt;}
.ls11{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.158720pt;}
.ls16{letter-spacing:0.169387pt;}
.ls10{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.302080pt;}
.lsd{letter-spacing:0.412587pt;}
.ls5{letter-spacing:0.462080pt;}
.ls1b{letter-spacing:0.560640pt;}
.ls8{letter-spacing:0.571307pt;}
.lsa{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.874667pt;}
.ls13{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.290667pt;}
.ls15{letter-spacing:1.608107pt;}
.ls1f{letter-spacing:47.785387pt;}
.ls1e{letter-spacing:73.385387pt;}
.ls18{letter-spacing:300.298667pt;}
.ls19{letter-spacing:352.778667pt;}
.ls1a{letter-spacing:363.018667pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws8{word-spacing:-18.560000pt;}
.ws2{word-spacing:-17.295360pt;}
.wsb{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.991467pt;}
.ws4{word-spacing:-14.841475pt;}
.ws9{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.448533pt;}
.ws10{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.wsf{word-spacing:-12.800000pt;}
.ws3{word-spacing:-12.736000pt;}
.wsd{word-spacing:-9.280000pt;}
.ws6{word-spacing:-0.069120pt;}
.ws7{word-spacing:-0.056320pt;}
.wsa{word-spacing:0.000000pt;}
._1a{margin-left:-8.512853pt;}
._5{margin-left:-7.524693pt;}
._3{margin-left:-6.397440pt;}
._15{margin-left:-5.071360pt;}
._4{margin-left:-3.616000pt;}
._d{margin-left:-2.710187pt;}
._0{margin-left:-1.774080pt;}
._2{width:0.967680pt;}
._1{width:2.365440pt;}
._6{width:3.313920pt;}
._21{width:4.209493pt;}
._a{width:5.160960pt;}
._9{width:6.558720pt;}
._b{width:7.838293pt;}
._8{width:9.311147pt;}
._c{width:10.333440pt;}
._7{width:11.504640pt;}
._14{width:12.398507pt;}
._16{width:13.365333pt;}
._13{width:14.676480pt;}
._12{width:15.572907pt;}
._11{width:16.826880pt;}
._17{width:18.064213pt;}
._1b{width:19.050667pt;}
._10{width:19.976533pt;}
._f{width:20.988587pt;}
._e{width:21.934080pt;}
._1c{width:23.102293pt;}
._1d{width:24.176640pt;}
._19{width:25.738667pt;}
._18{width:26.644907pt;}
._25{width:28.014080pt;}
._1f{width:29.237760pt;}
._1e{width:30.195200pt;}
._20{width:32.207360pt;}
._22{width:33.315840pt;}
._3a{width:38.368853pt;}
._39{width:39.293440pt;}
._38{width:46.179840pt;}
._23{width:47.918080pt;}
._24{width:49.614933pt;}
._2a{width:57.576107pt;}
._29{width:58.730667pt;}
._33{width:60.372480pt;}
._34{width:61.444267pt;}
._2f{width:74.511360pt;}
._2e{width:75.640320pt;}
._30{width:76.554240pt;}
._31{width:83.545600pt;}
._32{width:84.561920pt;}
._37{width:86.231040pt;}
._36{width:88.005120pt;}
._27{width:103.886507pt;}
._28{width:105.198933pt;}
._26{width:106.229760pt;}
._3d{width:117.734400pt;}
._3e{width:119.717120pt;}
._2c{width:141.818880pt;}
._2d{width:143.077547pt;}
._2b{width:144.399360pt;}
._3b{width:203.159040pt;}
._3c{width:205.040640pt;}
._35{width:249.478827pt;}
.fsc{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs4{font-size:44.800000pt;}
.fsd{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fsa{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs8{font-size:59.365899pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs7{font-size:72.858149pt;}
.fsb{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:98.912000pt;}
.y121{bottom:124.192000pt;}
.y10f{bottom:124.512000pt;}
.y96{bottom:125.792000pt;}
.yca{bottom:137.946667pt;}
.y63{bottom:139.546667pt;}
.y31{bottom:139.866667pt;}
.y120{bottom:141.146667pt;}
.y10e{bottom:141.466667pt;}
.y136{bottom:142.426667pt;}
.y95{bottom:142.746667pt;}
.ye2{bottom:144.026667pt;}
.yc9{bottom:154.906667pt;}
.y62{bottom:156.506667pt;}
.y30{bottom:156.826667pt;}
.y135{bottom:157.466667pt;}
.y11f{bottom:157.786667pt;}
.y10d{bottom:158.426667pt;}
.y94{bottom:159.386667pt;}
.ye1{bottom:160.986667pt;}
.yc8{bottom:171.866667pt;}
.y134{bottom:172.866667pt;}
.y61{bottom:173.186667pt;}
.y2f{bottom:173.506667pt;}
.y11e{bottom:174.786667pt;}
.y10c{bottom:175.106667pt;}
.y93{bottom:176.386667pt;}
.ye0{bottom:177.986667pt;}
.yf8{bottom:180.546667pt;}
.y133{bottom:188.226667pt;}
.yc7{bottom:188.546667pt;}
.y60{bottom:190.146667pt;}
.y2e{bottom:190.466667pt;}
.y11d{bottom:191.746667pt;}
.y10b{bottom:192.066667pt;}
.y92{bottom:193.346667pt;}
.ydf{bottom:194.626667pt;}
.yf7{bottom:197.186667pt;}
.y132{bottom:203.586667pt;}
.yc6{bottom:205.506667pt;}
.y5f{bottom:207.106667pt;}
.y2d{bottom:207.426667pt;}
.y11c{bottom:208.706667pt;}
.y10a{bottom:209.026667pt;}
.y91{bottom:209.986667pt;}
.ye4{bottom:210.306667pt;}
.yde{bottom:211.586667pt;}
.yf6{bottom:214.146667pt;}
.y131{bottom:218.946667pt;}
.yc5{bottom:222.466667pt;}
.y5e{bottom:223.746667pt;}
.y2c{bottom:224.066667pt;}
.y11b{bottom:225.346667pt;}
.y90{bottom:226.946667pt;}
.ydd{bottom:228.546667pt;}
.yf5{bottom:231.106667pt;}
.y130{bottom:234.306667pt;}
.yc4{bottom:239.106667pt;}
.y5d{bottom:240.706667pt;}
.y2b{bottom:241.026667pt;}
.y11a{bottom:242.306667pt;}
.y8f{bottom:243.906667pt;}
.ydc{bottom:245.506667pt;}
.yf4{bottom:248.066667pt;}
.y12f{bottom:249.666667pt;}
.yc3{bottom:256.066667pt;}
.y5c{bottom:257.666667pt;}
.y2a{bottom:258.626667pt;}
.y109{bottom:259.266667pt;}
.y8e{bottom:260.546667pt;}
.ydb{bottom:262.146667pt;}
.yf3{bottom:264.706667pt;}
.y12e{bottom:265.026667pt;}
.y108{bottom:272.706667pt;}
.yc2{bottom:273.026667pt;}
.y5b{bottom:274.626667pt;}
.y119{bottom:275.906667pt;}
.y8d{bottom:277.506667pt;}
.yda{bottom:279.106667pt;}
.y29{bottom:279.426667pt;}
.y12d{bottom:280.386667pt;}
.yf2{bottom:281.666667pt;}
.yc1{bottom:289.693333pt;}
.y5a{bottom:291.293333pt;}
.y118{bottom:292.893333pt;}
.y8c{bottom:294.493333pt;}
.y28{bottom:295.773333pt;}
.yd9{bottom:296.093333pt;}
.yf1{bottom:298.653333pt;}
.yc0{bottom:306.653333pt;}
.y59{bottom:308.253333pt;}
.y117{bottom:309.853333pt;}
.y27{bottom:311.133333pt;}
.y8b{bottom:311.453333pt;}
.yd8{bottom:312.733333pt;}
.yf0{bottom:315.293333pt;}
.y163{bottom:315.613333pt;}
.ybf{bottom:323.613333pt;}
.y58{bottom:325.213333pt;}
.y12c{bottom:326.173333pt;}
.y26{bottom:326.493333pt;}
.y8a{bottom:328.093333pt;}
.yd7{bottom:329.693333pt;}
.y162{bottom:330.973333pt;}
.yef{bottom:332.253333pt;}
.ybe{bottom:340.573333pt;}
.y57{bottom:341.853333pt;}
.y25{bottom:342.173333pt;}
.y116{bottom:343.453333pt;}
.y89{bottom:345.053333pt;}
.y161{bottom:346.333333pt;}
.yd6{bottom:346.653333pt;}
.yee{bottom:349.213333pt;}
.ybd{bottom:357.213333pt;}
.y56{bottom:358.813333pt;}
.y12b{bottom:359.133333pt;}
.y24{bottom:359.453333pt;}
.y115{bottom:360.413333pt;}
.y160{bottom:361.693333pt;}
.y88{bottom:362.013333pt;}
.yd5{bottom:363.293333pt;}
.yed{bottom:366.173333pt;}
.ybc{bottom:374.173333pt;}
.y55{bottom:375.773333pt;}
.y15f{bottom:377.053333pt;}
.y114{bottom:377.373333pt;}
.y87{bottom:378.653333pt;}
.y23{bottom:378.973333pt;}
.yd4{bottom:380.253333pt;}
.yec{bottom:383.133333pt;}
.ybb{bottom:391.133333pt;}
.y15e{bottom:392.093333pt;}
.y54{bottom:392.413333pt;}
.y113{bottom:394.013333pt;}
.y22{bottom:395.613333pt;}
.yd3{bottom:397.253333pt;}
.yeb{bottom:401.413333pt;}
.y15d{bottom:407.493333pt;}
.yba{bottom:407.813333pt;}
.y53{bottom:409.413333pt;}
.y21{bottom:411.013333pt;}
.y86{bottom:412.613333pt;}
.yd2{bottom:414.213333pt;}
.y15c{bottom:422.853333pt;}
.yb9{bottom:424.773333pt;}
.y20{bottom:426.373333pt;}
.y112{bottom:427.973333pt;}
.y85{bottom:429.253333pt;}
.yd1{bottom:430.853333pt;}
.yea{bottom:433.733333pt;}
.y15b{bottom:438.213333pt;}
.y1f{bottom:441.733333pt;}
.ye7{bottom:443.333333pt;}
.y52{bottom:444.613333pt;}
.y84{bottom:446.213333pt;}
.yd0{bottom:447.813333pt;}
.ye9{bottom:448.453333pt;}
.y15a{bottom:453.573333pt;}
.y1e{bottom:457.093333pt;}
.yb8{bottom:459.973333pt;}
.y51{bottom:461.573333pt;}
.y83{bottom:463.173333pt;}
.ycf{bottom:464.773333pt;}
.y159{bottom:468.933333pt;}
.y1d{bottom:472.133333pt;}
.yb7{bottom:476.933333pt;}
.y50{bottom:478.533333pt;}
.y82{bottom:480.133333pt;}
.yce{bottom:481.413333pt;}
.y158{bottom:484.293333pt;}
.y1c{bottom:487.493333pt;}
.yb6{bottom:493.893333pt;}
.y4f{bottom:495.493333pt;}
.y81{bottom:496.773333pt;}
.y107{bottom:497.413333pt;}
.ycd{bottom:498.373333pt;}
.y157{bottom:499.653333pt;}
.y1b{bottom:502.853333pt;}
.yb5{bottom:510.560000pt;}
.y4e{bottom:512.160000pt;}
.y80{bottom:513.760000pt;}
.y106{bottom:514.400000pt;}
.y156{bottom:515.040000pt;}
.ycc{bottom:515.360000pt;}
.y1a{bottom:518.240000pt;}
.yb4{bottom:527.520000pt;}
.y4d{bottom:529.120000pt;}
.y155{bottom:530.400000pt;}
.y7f{bottom:530.720000pt;}
.y105{bottom:531.360000pt;}
.ycb{bottom:532.320000pt;}
.y19{bottom:533.600000pt;}
.yb3{bottom:544.480000pt;}
.y154{bottom:545.760000pt;}
.y4c{bottom:546.080000pt;}
.y99{bottom:547.360000pt;}
.y7e{bottom:547.680000pt;}
.y104{bottom:548.000000pt;}
.y18{bottom:548.960000pt;}
.y153{bottom:561.120000pt;}
.yb2{bottom:561.440000pt;}
.ye6{bottom:562.400000pt;}
.y111{bottom:562.720000pt;}
.y4b{bottom:563.360000pt;}
.y17{bottom:564.320000pt;}
.y103{bottom:564.960000pt;}
.y7d{bottom:565.920000pt;}
.y152{bottom:576.160000pt;}
.yb1{bottom:578.080000pt;}
.y16{bottom:579.680000pt;}
.ye5{bottom:580.320000pt;}
.y98{bottom:581.280000pt;}
.y102{bottom:581.920000pt;}
.y7c{bottom:582.880000pt;}
.y4a{bottom:584.160000pt;}
.y151{bottom:591.520000pt;}
.y15{bottom:595.040000pt;}
.y12a{bottom:596.640000pt;}
.y110{bottom:597.280000pt;}
.y97{bottom:598.240000pt;}
.y101{bottom:598.560000pt;}
.y7b{bottom:599.520000pt;}
.y49{bottom:601.120000pt;}
.y150{bottom:606.880000pt;}
.y14{bottom:610.400000pt;}
.yb0{bottom:612.000000pt;}
.y129{bottom:613.280000pt;}
.y100{bottom:615.520000pt;}
.y7a{bottom:616.480000pt;}
.y48{bottom:618.080000pt;}
.y14f{bottom:622.266667pt;}
.y13{bottom:626.106667pt;}
.yaf{bottom:628.666667pt;}
.y128{bottom:630.266667pt;}
.yff{bottom:632.506667pt;}
.y79{bottom:633.466667pt;}
.y47{bottom:635.066667pt;}
.y14e{bottom:637.626667pt;}
.y12{bottom:643.386667pt;}
.yae{bottom:645.626667pt;}
.y127{bottom:647.226667pt;}
.yfe{bottom:649.146667pt;}
.y78{bottom:650.106667pt;}
.y46{bottom:651.706667pt;}
.y14d{bottom:652.986667pt;}
.yad{bottom:662.586667pt;}
.y126{bottom:664.186667pt;}
.y11{bottom:664.506667pt;}
.yfd{bottom:666.106667pt;}
.y77{bottom:667.066667pt;}
.y14c{bottom:668.346667pt;}
.y45{bottom:668.666667pt;}
.yac{bottom:679.226667pt;}
.y125{bottom:680.826667pt;}
.yfc{bottom:683.066667pt;}
.y14b{bottom:683.706667pt;}
.y76{bottom:684.026667pt;}
.y44{bottom:685.626667pt;}
.y10{bottom:687.866667pt;}
.yab{bottom:696.186667pt;}
.y124{bottom:697.786667pt;}
.y14a{bottom:699.066667pt;}
.y75{bottom:700.986667pt;}
.yfb{bottom:701.306667pt;}
.y43{bottom:702.266667pt;}
.yf{bottom:712.186667pt;}
.yaa{bottom:713.146667pt;}
.y149{bottom:714.426667pt;}
.y123{bottom:714.746667pt;}
.y74{bottom:717.626667pt;}
.y42{bottom:719.226667pt;}
.ye{bottom:724.666667pt;}
.y148{bottom:729.786667pt;}
.ya9{bottom:730.106667pt;}
.y122{bottom:731.386667pt;}
.yfa{bottom:733.346667pt;}
.y73{bottom:734.626667pt;}
.y41{bottom:736.226667pt;}
.y147{bottom:744.866667pt;}
.ya8{bottom:746.786667pt;}
.yf9{bottom:747.106667pt;}
.yd{bottom:749.026667pt;}
.y72{bottom:751.586667pt;}
.y40{bottom:752.866667pt;}
.y146{bottom:760.226667pt;}
.yc{bottom:761.506667pt;}
.ya7{bottom:763.746667pt;}
.y71{bottom:768.226667pt;}
.y3f{bottom:769.826667pt;}
.y145{bottom:775.586667pt;}
.ya6{bottom:780.706667pt;}
.y70{bottom:785.186667pt;}
.yb{bottom:785.826667pt;}
.y3e{bottom:786.786667pt;}
.y144{bottom:790.946667pt;}
.ya5{bottom:797.346667pt;}
.y6f{bottom:802.146667pt;}
.y3d{bottom:803.746667pt;}
.ya{bottom:804.386667pt;}
.y143{bottom:806.306667pt;}
.ya4{bottom:814.306667pt;}
.y9{bottom:816.866667pt;}
.y6e{bottom:818.786667pt;}
.y3c{bottom:820.386667pt;}
.y142{bottom:821.666667pt;}
.ya3{bottom:831.266667pt;}
.y6d{bottom:835.746667pt;}
.y8{bottom:836.706667pt;}
.y141{bottom:837.026667pt;}
.y3b{bottom:837.346667pt;}
.ya2{bottom:848.253333pt;}
.y140{bottom:852.413333pt;}
.y6c{bottom:852.733333pt;}
.y3a{bottom:854.333333pt;}
.y7{bottom:859.453333pt;}
.ya1{bottom:866.493333pt;}
.y13f{bottom:867.773333pt;}
.y6b{bottom:869.693333pt;}
.y39{bottom:870.973333pt;}
.y13e{bottom:883.133333pt;}
.ya0{bottom:883.453333pt;}
.y6a{bottom:886.333333pt;}
.ye8{bottom:886.653333pt;}
.y38{bottom:887.933333pt;}
.y6{bottom:889.533333pt;}
.y13d{bottom:898.493333pt;}
.y9f{bottom:900.093333pt;}
.y69{bottom:903.293333pt;}
.y37{bottom:904.893333pt;}
.y13c{bottom:913.853333pt;}
.y9e{bottom:917.053333pt;}
.y5{bottom:919.613333pt;}
.y68{bottom:920.253333pt;}
.y36{bottom:921.533333pt;}
.y13b{bottom:928.893333pt;}
.y9d{bottom:934.013333pt;}
.y67{bottom:936.893333pt;}
.ye3{bottom:937.213333pt;}
.y35{bottom:938.493333pt;}
.y13a{bottom:944.253333pt;}
.y4{bottom:949.373333pt;}
.y9c{bottom:950.973333pt;}
.y66{bottom:953.853333pt;}
.y34{bottom:955.453333pt;}
.y139{bottom:959.653333pt;}
.y9b{bottom:967.653333pt;}
.y65{bottom:970.853333pt;}
.y33{bottom:972.453333pt;}
.y138{bottom:975.013333pt;}
.y3{bottom:979.493333pt;}
.y9a{bottom:985.253333pt;}
.y64{bottom:987.813333pt;}
.y32{bottom:989.093333pt;}
.y137{bottom:990.373333pt;}
.y1{bottom:1014.373333pt;}
.hf{height:41.112500pt;}
.h6{height:41.456250pt;}
.h9{height:50.125553pt;}
.hb{height:52.736250pt;}
.h2{height:52.762500pt;}
.h13{height:55.256809pt;}
.ha{height:57.787500pt;}
.h11{height:59.340000pt;}
.h10{height:60.751250pt;}
.h7{height:62.812500pt;}
.h12{height:64.500000pt;}
.he{height:66.625000pt;}
.hc{height:67.803750pt;}
.h4{height:67.837500pt;}
.h5{height:69.660000pt;}
.h3{height:71.950625pt;}
.hd{height:77.285000pt;}
.h8{height:89.277500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xf{left:109.471988pt;}
.x2{left:111.391988pt;}
.x5{left:120.991988pt;}
.x1{left:123.231988pt;}
.x6{left:135.106655pt;}
.xd{left:139.906655pt;}
.x4{left:143.106655pt;}
.x14{left:147.266655pt;}
.x9{left:183.746655pt;}
.xb{left:190.466655pt;}
.x8{left:191.746655pt;}
.xa{left:230.173322pt;}
.x7{left:290.653322pt;}
.xe{left:305.093322pt;}
.xc{left:311.173322pt;}
.x3{left:396.959988pt;}
.x13{left:530.746655pt;}
.x12{left:552.226655pt;}
.x11{left:634.813322pt;}
.x10{left:670.973322pt;}
}




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