
    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_ed9dd56aa0d25da7831908c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_3cba8237223e596156e17cab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_8a61ab762365014c8d5d9e02.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_28bc3469328bb991c6b5c4f4.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_f42ec2be90f991496573509b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_7cfdd090a4f19bb406ee0fdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_b38914f9ddd7f74eee370f2e.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_718913027fca67fdf08edc80.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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;}
.m8{transform:matrix(0.140245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140245,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.219513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219513,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221155,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.231708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231708,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,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);}
.m4{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);}
.v5{vertical-align:-82.080000px;}
.v7{vertical-align:-79.320000px;}
.v8{vertical-align:-77.760000px;}
.v4{vertical-align:-74.880000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-16.920000px;}
.ls33{letter-spacing:-1.548000px;}
.lsf{letter-spacing:-1.026000px;}
.ls34{letter-spacing:-0.984000px;}
.ls2f{letter-spacing:-0.870000px;}
.lsd{letter-spacing:-0.828000px;}
.ls20{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.414600px;}
.ls13{letter-spacing:-0.305400px;}
.ls25{letter-spacing:-0.262200px;}
.ls10{letter-spacing:-0.219000px;}
.ls15{letter-spacing:-0.152400px;}
.lse{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.106800px;}
.ls2e{letter-spacing:-0.089400px;}
.ls1d{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.028080px;}
.ls22{letter-spacing:0.029424px;}
.ls12{letter-spacing:0.051840px;}
.ls2a{letter-spacing:0.070560px;}
.ls16{letter-spacing:0.092160px;}
.lsc{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.229476px;}
.lsb{letter-spacing:0.261600px;}
.ls23{letter-spacing:0.262080px;}
.ls1f{letter-spacing:0.262200px;}
.ls8{letter-spacing:0.264000px;}
.ls1c{letter-spacing:0.305280px;}
.ls14{letter-spacing:0.305400px;}
.ls31{letter-spacing:0.328320px;}
.ls1e{letter-spacing:0.414600px;}
.ls35{letter-spacing:0.457800px;}
.ls2d{letter-spacing:0.459000px;}
.ls24{letter-spacing:0.499800px;}
.ls30{letter-spacing:0.610560px;}
.ls26{letter-spacing:0.684828px;}
.ls0{letter-spacing:0.756000px;}
.ls2c{letter-spacing:0.870000px;}
.ls32{letter-spacing:1.025280px;}
.ls27{letter-spacing:1.135791px;}
.ls19{letter-spacing:2.465280px;}
.ls1b{letter-spacing:8.945280px;}
.ls1a{letter-spacing:9.665280px;}
.ls17{letter-spacing:11.105280px;}
.ls5{letter-spacing:14.580000px;}
.ls18{letter-spacing:15.605280px;}
.ls29{letter-spacing:19.422720px;}
.ls2b{letter-spacing:19.745280px;}
.ls4{letter-spacing:22.986720px;}
.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:-30.024000px;}
.ws8{word-spacing:-21.634560px;}
.ws6{word-spacing:-21.625920px;}
.ws7{word-spacing:-20.232000px;}
.ws14{word-spacing:-20.016000px;}
.ws13{word-spacing:-19.944000px;}
.ws1b{word-spacing:-18.873720px;}
.ws20{word-spacing:-18.872520px;}
.ws16{word-spacing:-18.829320px;}
.ws10{word-spacing:-18.720120px;}
.ws17{word-spacing:-18.676920px;}
.ws15{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.305520px;}
.ws11{word-spacing:-18.262320px;}
.ws1a{word-spacing:-18.152520px;}
.wsf{word-spacing:-18.109320px;}
.ws2{word-spacing:-18.000120px;}
.ws19{word-spacing:-17.956920px;}
.ws18{word-spacing:-17.694720px;}
.wse{word-spacing:-17.665920px;}
.wsc{word-spacing:-17.614080px;}
.ws9{word-spacing:-17.586720px;}
.ws1d{word-spacing:-17.544720px;}
.ws1f{word-spacing:-17.430720px;}
.wsd{word-spacing:-17.395080px;}
.wsb{word-spacing:-17.388720px;}
.ws3{word-spacing:-16.877280px;}
.ws1e{word-spacing:-16.866720px;}
.ws4{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.506480px;}
.ws1{word-spacing:-11.609280px;}
.ws1c{word-spacing:-11.519880px;}
.ws12{word-spacing:0.000000px;}
._6{margin-left:-17.580000px;}
._5{margin-left:-12.605760px;}
._3{margin-left:-11.483040px;}
._18{margin-left:-8.681760px;}
._4{margin-left:-6.780000px;}
._23{margin-left:-5.134560px;}
._b{margin-left:-3.479040px;}
._2{margin-left:-2.408160px;}
._0{margin-left:-1.080000px;}
._1{width:1.492080px;}
._a{width:2.658240px;}
._7{width:4.173120px;}
._8{width:5.510160px;}
._1c{width:6.913200px;}
._1b{width:8.025600px;}
._21{width:9.136080px;}
._10{width:10.154880px;}
._e{width:11.778240px;}
._f{width:13.046160px;}
._13{width:14.114400px;}
._12{width:15.371280px;}
._9{width:17.106480px;}
._1d{width:19.669680px;}
._24{width:20.947920px;}
._c{width:22.840320px;}
._d{width:24.022080px;}
._11{width:26.843520px;}
._20{width:28.256880px;}
._1e{width:29.563200px;}
._1f{width:30.746400px;}
._1a{width:34.986240px;}
._19{width:36.158400px;}
._17{width:63.926400px;}
._16{width:66.367200px;}
._15{width:67.461120px;}
._14{width:69.542400px;}
._22{width:83.844480px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:51.120000px;}
.fse{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fsc{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.fsd{font-size:102.240000px;}
.fsb{font-size:105.120000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:3.960000px;}
.y7d{bottom:4.140000px;}
.y82{bottom:4.320000px;}
.y76{bottom:4.500000px;}
.y51{bottom:4.860000px;}
.y2{bottom:5.040000px;}
.y47{bottom:5.220000px;}
.ya2{bottom:5.400000px;}
.ya4{bottom:5.580000px;}
.y6a{bottom:6.840000px;}
.y63{bottom:7.020000px;}
.yae{bottom:7.065000px;}
.y53{bottom:7.200000px;}
.ya8{bottom:7.380000px;}
.y66{bottom:7.410000px;}
.yb0{bottom:7.425000px;}
.y86{bottom:7.560000px;}
.y65{bottom:7.590000px;}
.y9a{bottom:7.740000px;}
.y49{bottom:7.920000px;}
.y72{bottom:8.100000px;}
.y5e{bottom:8.280000px;}
.y5a{bottom:8.460000px;}
.y89{bottom:8.640000px;}
.yaa{bottom:12.780000px;}
.ya6{bottom:12.960000px;}
.yaf{bottom:13.005000px;}
.y96{bottom:22.674000px;}
.y7b{bottom:22.680000px;}
.y50{bottom:22.725000px;}
.y4c{bottom:22.860000px;}
.y9c{bottom:22.890000px;}
.y97{bottom:23.034000px;}
.y8b{bottom:23.040000px;}
.y9d{bottom:23.070000px;}
.y7c{bottom:23.220000px;}
.y94{bottom:23.400000px;}
.y79{bottom:23.580000px;}
.y9e{bottom:23.610000px;}
.y81{bottom:24.120000px;}
.y75{bottom:24.300000px;}
.y61{bottom:24.480000px;}
.y71{bottom:27.000000px;}
.y5d{bottom:27.180000px;}
.y56{bottom:27.360000px;}
.y6e{bottom:27.540000px;}
.y85{bottom:27.570000px;}
.y5c{bottom:27.720000px;}
.y84{bottom:27.750000px;}
.y55{bottom:27.900000px;}
.y59{bottom:28.080000px;}
.y6c{bottom:33.660000px;}
.y4b{bottom:41.580000px;}
.y4f{bottom:41.625000px;}
.y91{bottom:41.760000px;}
.y78{bottom:42.480000px;}
.y74{bottom:43.740000px;}
.y80{bottom:43.920000px;}
.y60{bottom:43.950000px;}
.y3{bottom:71.676000px;}
.y1{bottom:73.296000px;}
.y99{bottom:95.796000px;}
.y13c{bottom:105.696000px;}
.yf0{bottom:118.476000px;}
.y5b{bottom:119.556000px;}
.y98{bottom:119.916000px;}
.y160{bottom:123.156000px;}
.y129{bottom:126.576000px;}
.ycb{bottom:132.156000px;}
.y95{bottom:144.036000px;}
.y13b{bottom:144.216000px;}
.y128{bottom:145.476000px;}
.y112{bottom:145.656000px;}
.yca{bottom:154.470000px;}
.yef{bottom:156.810000px;}
.y58{bottom:164.190000px;}
.y111{bottom:164.550000px;}
.y13a{bottom:166.530000px;}
.y27{bottom:173.010000px;}
.yc9{bottom:173.550000px;}
.yee{bottom:179.310000px;}
.y15f{bottom:183.450000px;}
.y93{bottom:183.630000px;}
.y127{bottom:183.990000px;}
.y139{bottom:185.430000px;}
.y26{bottom:195.510000px;}
.y110{bottom:203.070000px;}
.y126{bottom:206.310000px;}
.y57{bottom:209.190000px;}
.yc8{bottom:211.890000px;}
.yed{bottom:217.650000px;}
.y25{bottom:218.010000px;}
.y15e{bottom:221.970000px;}
.y92{bottom:223.590000px;}
.y138{bottom:223.950000px;}
.y125{bottom:225.210000px;}
.y10f{bottom:225.390000px;}
.yc7{bottom:234.210000px;}
.yec{bottom:240.150000px;}
.y24{bottom:240.510000px;}
.y10e{bottom:244.290000px;}
.y15d{bottom:244.830000px;}
.y137{bottom:246.630000px;}
.y90{bottom:247.530000px;}
.yc6{bottom:253.110000px;}
.y54{bottom:254.010000px;}
.yeb{bottom:259.230000px;}
.y23{bottom:263.010000px;}
.y124{bottom:263.730000px;}
.y15c{bottom:265.170000px;}
.y136{bottom:267.150000px;}
.y10d{bottom:282.810000px;}
.y22{bottom:285.690000px;}
.y123{bottom:286.050000px;}
.yc5{bottom:291.630000px;}
.yea{bottom:297.570000px;}
.y52{bottom:298.830000px;}
.y15b{bottom:303.690000px;}
.y10c{bottom:305.130000px;}
.y8f{bottom:306.390000px;}
.y21{bottom:308.190000px;}
.yc4{bottom:314.130000px;}
.ye9{bottom:320.070000px;}
.y4e{bottom:322.950000px;}
.y10b{bottom:324.030000px;}
.y122{bottom:324.570000px;}
.y15a{bottom:326.010000px;}
.y20{bottom:330.690000px;}
.ye8{bottom:339.015000px;}
.y159{bottom:345.135000px;}
.y8e{bottom:346.215000px;}
.y121{bottom:347.115000px;}
.yc3{bottom:352.515000px;}
.y10a{bottom:362.595000px;}
.y120{bottom:366.015000px;}
.y1f{bottom:373.755000px;}
.yc2{bottom:375.015000px;}
.ye7{bottom:377.535000px;}
.y4a{bottom:381.855000px;}
.y158{bottom:383.655000px;}
.y109{bottom:384.915000px;}
.y8d{bottom:385.995000px;}
.yc1{bottom:393.915000px;}
.y1e{bottom:399.495000px;}
.ye6{bottom:399.855000px;}
.y108{bottom:403.815000px;}
.y11f{bottom:404.535000px;}
.y157{bottom:405.975000px;}
.y1d{bottom:423.255000px;}
.y156{bottom:424.875000px;}
.y8c{bottom:425.775000px;}
.y11e{bottom:426.855000px;}
.yc0{bottom:432.435000px;}
.ye5{bottom:438.195000px;}
.y48{bottom:440.535000px;}
.y107{bottom:442.515000px;}
.y11d{bottom:445.935000px;}
.ybf{bottom:454.755000px;}
.y1c{bottom:455.655000px;}
.ye4{bottom:460.875000px;}
.y155{bottom:463.395000px;}
.y106{bottom:464.835000px;}
.y8a{bottom:465.555000px;}
.y46{bottom:466.815000px;}
.y1b{bottom:477.975000px;}
.ye3{bottom:479.775000px;}
.y105{bottom:483.735000px;}
.y11c{bottom:484.275000px;}
.y154{bottom:485.715000px;}
.y45{bottom:491.295000px;}
.ybe{bottom:493.095000px;}
.y1a{bottom:501.015000px;}
.y153{bottom:504.795000px;}
.ye2{bottom:505.155000px;}
.y88{bottom:505.335000px;}
.y11b{bottom:506.595000px;}
.y44{bottom:511.275000px;}
.ybd{bottom:515.595000px;}
.ye1{bottom:521.895000px;}
.y104{bottom:522.255000px;}
.y11a{bottom:525.495000px;}
.y43{bottom:530.895000px;}
.y19{bottom:531.975000px;}
.y152{bottom:543.135000px;}
.y103{bottom:544.575000px;}
.y135{bottom:545.115000px;}
.y87{bottom:550.155000px;}
.y42{bottom:550.695000px;}
.ybc{bottom:553.935000px;}
.y18{bottom:554.475000px;}
.ye0{bottom:560.235000px;}
.y119{bottom:564.015000px;}
.y151{bottom:565.455000px;}
.y134{bottom:567.435000px;}
.y41{bottom:570.315000px;}
.ybb{bottom:576.435000px;}
.ydf{bottom:582.375000px;}
.y102{bottom:583.095000px;}
.y150{bottom:584.535000px;}
.y118{bottom:586.515000px;}
.y40{bottom:590.115000px;}
.y83{bottom:594.975000px;}
.y17{bottom:595.695000px;}
.y171{bottom:601.455000px;}
.y101{bottom:605.445000px;}
.y133{bottom:605.985000px;}
.y3f{bottom:609.765000px;}
.y16{bottom:614.085000px;}
.yba{bottom:615.165000px;}
.y170{bottom:620.385000px;}
.yde{bottom:620.925000px;}
.y14f{bottom:622.905000px;}
.y100{bottom:624.525000px;}
.y132{bottom:628.305000px;}
.y3e{bottom:629.385000px;}
.yb9{bottom:637.485000px;}
.y7f{bottom:639.645000px;}
.y15{bottom:641.985000px;}
.ydd{bottom:643.425000px;}
.y14e{bottom:645.405000px;}
.y131{bottom:647.385000px;}
.y3d{bottom:649.185000px;}
.y16f{bottom:658.905000px;}
.yff{bottom:662.865000px;}
.yb8{bottom:664.485000px;}
.y3c{bottom:668.805000px;}
.y14{bottom:675.465000px;}
.yb7{bottom:680.145000px;}
.y16e{bottom:681.405000px;}
.ydc{bottom:681.765000px;}
.y14d{bottom:683.925000px;}
.yfe{bottom:685.185000px;}
.y130{bottom:685.725000px;}
.y3b{bottom:688.425000px;}
.y16d{bottom:700.485000px;}
.y7e{bottom:700.665000px;}
.y117{bottom:704.085000px;}
.ydb{bottom:704.265000px;}
.y14c{bottom:706.245000px;}
.y12f{bottom:708.045000px;}
.y3a{bottom:708.225000px;}
.yb6{bottom:719.925000px;}
.yda{bottom:723.345000px;}
.yfd{bottom:723.705000px;}
.y7a{bottom:724.605000px;}
.y14b{bottom:725.325000px;}
.y13{bottom:726.405000px;}
.y12e{bottom:727.125000px;}
.y39{bottom:727.845000px;}
.y16c{bottom:738.825000px;}
.y116{bottom:742.785000px;}
.yb5{bottom:744.045000px;}
.y12{bottom:744.405000px;}
.yfc{bottom:746.205000px;}
.y38{bottom:747.465000px;}
.y16b{bottom:761.145000px;}
.yd9{bottom:761.685000px;}
.y14a{bottom:763.665000px;}
.y77{bottom:764.385000px;}
.y115{bottom:765.105000px;}
.y12d{bottom:765.465000px;}
.y37{bottom:767.445000px;}
.yb4{bottom:768.165000px;}
.y11{bottom:772.665000px;}
.yd8{bottom:784.185000px;}
.yfb{bottom:784.545000px;}
.y149{bottom:785.985000px;}
.y12c{bottom:787.965000px;}
.yb3{bottom:792.105000px;}
.y10{bottom:795.345000px;}
.y16a{bottom:799.485000px;}
.y36{bottom:805.605000px;}
.y12b{bottom:806.865000px;}
.yfa{bottom:807.045000px;}
.yb2{bottom:816.045000px;}
.yf{bottom:820.185000px;}
.y169{bottom:821.985000px;}
.yd7{bottom:822.525000px;}
.y35{bottom:823.785000px;}
.y73{bottom:823.965000px;}
.y148{bottom:824.325000px;}
.y12a{bottom:825.945000px;}
.ye{bottom:838.905000px;}
.yb1{bottom:840.165000px;}
.yd6{bottom:844.845000px;}
.yf9{bottom:845.385000px;}
.y34{bottom:846.105000px;}
.y147{bottom:846.825000px;}
.y168{bottom:860.325000px;}
.yd{bottom:863.745000px;}
.y114{bottom:863.925000px;}
.yad{bottom:864.285000px;}
.y146{bottom:865.905000px;}
.yf8{bottom:867.705000px;}
.y33{bottom:877.470000px;}
.y167{bottom:882.870000px;}
.yd5{bottom:883.230000px;}
.y70{bottom:885.030000px;}
.yf7{bottom:886.830000px;}
.yac{bottom:888.450000px;}
.yc{bottom:891.690000px;}
.y32{bottom:900.150000px;}
.y113{bottom:902.310000px;}
.y145{bottom:904.470000px;}
.yd4{bottom:905.730000px;}
.yab{bottom:912.390000px;}
.yb{bottom:919.770000px;}
.y166{bottom:921.210000px;}
.yd3{bottom:924.810000px;}
.y144{bottom:926.790000px;}
.y6f{bottom:929.670000px;}
.y31{bottom:931.290000px;}
.ya9{bottom:936.510000px;}
.y165{bottom:943.890000px;}
.yf6{bottom:944.250000px;}
.y143{bottom:945.690000px;}
.ya{bottom:947.490000px;}
.y30{bottom:955.230000px;}
.ya7{bottom:960.450000px;}
.y164{bottom:962.790000px;}
.yd2{bottom:963.150000px;}
.yf5{bottom:966.570000px;}
.y9{bottom:968.190000px;}
.y6d{bottom:974.670000px;}
.y2f{bottom:977.730000px;}
.y142{bottom:984.030000px;}
.ya5{bottom:984.570000px;}
.yd1{bottom:985.650000px;}
.y8{bottom:987.450000px;}
.y2e{bottom:1000.230000px;}
.y163{bottom:1001.310000px;}
.y141{bottom:1006.350000px;}
.ya3{bottom:1008.510000px;}
.y7{bottom:1013.730000px;}
.y6b{bottom:1019.490000px;}
.y2d{bottom:1023.090000px;}
.y162{bottom:1023.450000px;}
.yd0{bottom:1024.170000px;}
.y140{bottom:1025.430000px;}
.ya1{bottom:1032.630000px;}
.ycf{bottom:1046.310000px;}
.yf4{bottom:1046.490000px;}
.y2c{bottom:1053.690000px;}
.ya0{bottom:1056.750000px;}
.y6{bottom:1058.370000px;}
.y161{bottom:1061.970000px;}
.y13f{bottom:1063.770000px;}
.y69{bottom:1064.490000px;}
.yce{bottom:1065.390000px;}
.y2b{bottom:1077.630000px;}
.y62{bottom:1081.410000px;}
.ycd{bottom:1084.290000px;}
.yf3{bottom:1084.830000px;}
.y13e{bottom:1086.450000px;}
.y68{bottom:1088.250000px;}
.y5{bottom:1094.190000px;}
.y9f{bottom:1096.350000px;}
.y2a{bottom:1100.130000px;}
.y5f{bottom:1105.350000px;}
.yf2{bottom:1107.150000px;}
.y67{bottom:1112.190000px;}
.y9b{bottom:1120.470000px;}
.y29{bottom:1122.630000px;}
.ycc{bottom:1122.810000px;}
.y13d{bottom:1124.250000px;}
.yf1{bottom:1126.230000px;}
.y4{bottom:1129.830000px;}
.y64{bottom:1136.310000px;}
.y28{bottom:1145.160000px;}
.h10{height:19.260000px;}
.h2{height:21.420000px;}
.h1c{height:22.320000px;}
.h19{height:22.500000px;}
.h1a{height:22.536000px;}
.h14{height:22.680000px;}
.h28{height:22.716000px;}
.h11{height:24.840000px;}
.h23{height:38.160000px;}
.h20{height:38.340000px;}
.h24{height:38.376000px;}
.h26{height:38.520000px;}
.h1e{height:43.020000px;}
.h17{height:43.200000px;}
.h22{height:43.236000px;}
.h15{height:43.380000px;}
.h1d{height:43.554375px;}
.h16{height:43.560000px;}
.h4{height:53.316562px;}
.h29{height:56.320312px;}
.h12{height:57.060000px;}
.h25{height:57.240000px;}
.h13{height:57.276000px;}
.h1f{height:57.960000px;}
.h27{height:59.415469px;}
.h18{height:59.436000px;}
.h21{height:59.580000px;}
.h7{height:62.327813px;}
.h1b{height:68.084282px;}
.h3{height:69.086250px;}
.hb{height:69.333750px;}
.he{height:75.093750px;}
.h9{height:78.367500px;}
.ha{height:81.101250px;}
.h8{height:90.863438px;}
.hd{height:93.867188px;}
.h6{height:99.874688px;}
.hf{height:106.633125px;}
.hc{height:109.636875px;}
.h5{height:112.640625px;}
.h1{height:1263.750000px;}
.h0{height:1263.780000px;}
.w2{width:27.360000px;}
.w5{width:225.210000px;}
.w4{width:225.570000px;}
.w1{width:894.000000px;}
.w3{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x2{left:4.500000px;}
.xf{left:8.100000px;}
.x14{left:13.680000px;}
.x17{left:16.200000px;}
.x18{left:19.440000px;}
.x19{left:21.060000px;}
.x21{left:25.200000px;}
.x1b{left:29.520000px;}
.x22{left:33.480000px;}
.x1c{left:37.800000px;}
.x12{left:40.500000px;}
.x15{left:43.914000px;}
.x1e{left:46.620000px;}
.x13{left:51.300000px;}
.x20{left:53.274000px;}
.x1a{left:57.774000px;}
.x1d{left:66.414000px;}
.x3{left:95.975987px;}
.x5{left:104.975987px;}
.x6{left:106.055987px;}
.xe{left:109.116000px;}
.xc{left:110.915987px;}
.xa{left:119.915987px;}
.x8{left:131.435987px;}
.x9{left:132.515987px;}
.x7{left:135.215987px;}
.x23{left:136.620000px;}
.xd{left:141.155987px;}
.x16{left:145.470000px;}
.x1f{left:150.150000px;}
.xb{left:160.229987px;}
.x4{left:164.189987px;}
.x10{left:336.315000px;}
.x1{left:433.515000px;}
.x11{left:563.145000px;}
@media print{
.v5{vertical-align:-72.960000pt;}
.v7{vertical-align:-70.506667pt;}
.v8{vertical-align:-69.120000pt;}
.v4{vertical-align:-66.560000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-15.040000pt;}
.ls33{letter-spacing:-1.376000pt;}
.lsf{letter-spacing:-0.912000pt;}
.ls34{letter-spacing:-0.874667pt;}
.ls2f{letter-spacing:-0.773333pt;}
.lsd{letter-spacing:-0.736000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls25{letter-spacing:-0.233067pt;}
.ls10{letter-spacing:-0.194667pt;}
.ls15{letter-spacing:-0.135467pt;}
.lse{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls2e{letter-spacing:-0.079467pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.024960pt;}
.ls22{letter-spacing:0.026155pt;}
.ls12{letter-spacing:0.046080pt;}
.ls2a{letter-spacing:0.062720pt;}
.ls16{letter-spacing:0.081920pt;}
.lsc{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.203978pt;}
.lsb{letter-spacing:0.232533pt;}
.ls23{letter-spacing:0.232960pt;}
.ls1f{letter-spacing:0.233067pt;}
.ls8{letter-spacing:0.234667pt;}
.ls1c{letter-spacing:0.271360pt;}
.ls14{letter-spacing:0.271467pt;}
.ls31{letter-spacing:0.291840pt;}
.ls1e{letter-spacing:0.368533pt;}
.ls35{letter-spacing:0.406933pt;}
.ls2d{letter-spacing:0.408000pt;}
.ls24{letter-spacing:0.444267pt;}
.ls30{letter-spacing:0.542720pt;}
.ls26{letter-spacing:0.608736pt;}
.ls0{letter-spacing:0.672000pt;}
.ls2c{letter-spacing:0.773333pt;}
.ls32{letter-spacing:0.911360pt;}
.ls27{letter-spacing:1.009592pt;}
.ls19{letter-spacing:2.191360pt;}
.ls1b{letter-spacing:7.951360pt;}
.ls1a{letter-spacing:8.591360pt;}
.ls17{letter-spacing:9.871360pt;}
.ls5{letter-spacing:12.960000pt;}
.ls18{letter-spacing:13.871360pt;}
.ls29{letter-spacing:17.264640pt;}
.ls2b{letter-spacing:17.551360pt;}
.ls4{letter-spacing:20.432640pt;}
.ws0{word-spacing:-26.688000pt;}
.ws8{word-spacing:-19.230720pt;}
.ws6{word-spacing:-19.223040pt;}
.ws7{word-spacing:-17.984000pt;}
.ws14{word-spacing:-17.792000pt;}
.ws13{word-spacing:-17.728000pt;}
.ws1b{word-spacing:-16.776640pt;}
.ws20{word-spacing:-16.775573pt;}
.ws16{word-spacing:-16.737173pt;}
.ws10{word-spacing:-16.640107pt;}
.ws17{word-spacing:-16.601707pt;}
.ws15{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.271573pt;}
.ws11{word-spacing:-16.233173pt;}
.ws1a{word-spacing:-16.135573pt;}
.wsf{word-spacing:-16.097173pt;}
.ws2{word-spacing:-16.000107pt;}
.ws19{word-spacing:-15.961707pt;}
.ws18{word-spacing:-15.728640pt;}
.wse{word-spacing:-15.703040pt;}
.wsc{word-spacing:-15.656960pt;}
.ws9{word-spacing:-15.632640pt;}
.ws1d{word-spacing:-15.595307pt;}
.ws1f{word-spacing:-15.493973pt;}
.wsd{word-spacing:-15.462293pt;}
.wsb{word-spacing:-15.456640pt;}
.ws3{word-spacing:-15.002027pt;}
.ws1e{word-spacing:-14.992640pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.672427pt;}
.ws1{word-spacing:-10.319360pt;}
.ws1c{word-spacing:-10.239893pt;}
.ws12{word-spacing:0.000000pt;}
._6{margin-left:-15.626667pt;}
._5{margin-left:-11.205120pt;}
._3{margin-left:-10.207147pt;}
._18{margin-left:-7.717120pt;}
._4{margin-left:-6.026667pt;}
._23{margin-left:-4.564053pt;}
._b{margin-left:-3.092480pt;}
._2{margin-left:-2.140587pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.326293pt;}
._a{width:2.362880pt;}
._7{width:3.709440pt;}
._8{width:4.897920pt;}
._1c{width:6.145067pt;}
._1b{width:7.133867pt;}
._21{width:8.120960pt;}
._10{width:9.026560pt;}
._e{width:10.469547pt;}
._f{width:11.596587pt;}
._13{width:12.546133pt;}
._12{width:13.663360pt;}
._9{width:15.205760pt;}
._1d{width:17.484160pt;}
._24{width:18.620373pt;}
._c{width:20.302507pt;}
._d{width:21.352960pt;}
._11{width:23.860907pt;}
._20{width:25.117227pt;}
._1e{width:26.278400pt;}
._1f{width:27.330133pt;}
._1a{width:31.098880pt;}
._19{width:32.140800pt;}
._17{width:56.823467pt;}
._16{width:58.993067pt;}
._15{width:59.965440pt;}
._14{width:61.815467pt;}
._22{width:74.528427pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:45.440000pt;}
.fse{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fsc{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.fsd{font-size:90.880000pt;}
.fsb{font-size:93.440000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:3.520000pt;}
.y7d{bottom:3.680000pt;}
.y82{bottom:3.840000pt;}
.y76{bottom:4.000000pt;}
.y51{bottom:4.320000pt;}
.y2{bottom:4.480000pt;}
.y47{bottom:4.640000pt;}
.ya2{bottom:4.800000pt;}
.ya4{bottom:4.960000pt;}
.y6a{bottom:6.080000pt;}
.y63{bottom:6.240000pt;}
.yae{bottom:6.280000pt;}
.y53{bottom:6.400000pt;}
.ya8{bottom:6.560000pt;}
.y66{bottom:6.586667pt;}
.yb0{bottom:6.600000pt;}
.y86{bottom:6.720000pt;}
.y65{bottom:6.746667pt;}
.y9a{bottom:6.880000pt;}
.y49{bottom:7.040000pt;}
.y72{bottom:7.200000pt;}
.y5e{bottom:7.360000pt;}
.y5a{bottom:7.520000pt;}
.y89{bottom:7.680000pt;}
.yaa{bottom:11.360000pt;}
.ya6{bottom:11.520000pt;}
.yaf{bottom:11.560000pt;}
.y96{bottom:20.154667pt;}
.y7b{bottom:20.160000pt;}
.y50{bottom:20.200000pt;}
.y4c{bottom:20.320000pt;}
.y9c{bottom:20.346667pt;}
.y97{bottom:20.474667pt;}
.y8b{bottom:20.480000pt;}
.y9d{bottom:20.506667pt;}
.y7c{bottom:20.640000pt;}
.y94{bottom:20.800000pt;}
.y79{bottom:20.960000pt;}
.y9e{bottom:20.986667pt;}
.y81{bottom:21.440000pt;}
.y75{bottom:21.600000pt;}
.y61{bottom:21.760000pt;}
.y71{bottom:24.000000pt;}
.y5d{bottom:24.160000pt;}
.y56{bottom:24.320000pt;}
.y6e{bottom:24.480000pt;}
.y85{bottom:24.506667pt;}
.y5c{bottom:24.640000pt;}
.y84{bottom:24.666667pt;}
.y55{bottom:24.800000pt;}
.y59{bottom:24.960000pt;}
.y6c{bottom:29.920000pt;}
.y4b{bottom:36.960000pt;}
.y4f{bottom:37.000000pt;}
.y91{bottom:37.120000pt;}
.y78{bottom:37.760000pt;}
.y74{bottom:38.880000pt;}
.y80{bottom:39.040000pt;}
.y60{bottom:39.066667pt;}
.y3{bottom:63.712000pt;}
.y1{bottom:65.152000pt;}
.y99{bottom:85.152000pt;}
.y13c{bottom:93.952000pt;}
.yf0{bottom:105.312000pt;}
.y5b{bottom:106.272000pt;}
.y98{bottom:106.592000pt;}
.y160{bottom:109.472000pt;}
.y129{bottom:112.512000pt;}
.ycb{bottom:117.472000pt;}
.y95{bottom:128.032000pt;}
.y13b{bottom:128.192000pt;}
.y128{bottom:129.312000pt;}
.y112{bottom:129.472000pt;}
.yca{bottom:137.306667pt;}
.yef{bottom:139.386667pt;}
.y58{bottom:145.946667pt;}
.y111{bottom:146.266667pt;}
.y13a{bottom:148.026667pt;}
.y27{bottom:153.786667pt;}
.yc9{bottom:154.266667pt;}
.yee{bottom:159.386667pt;}
.y15f{bottom:163.066667pt;}
.y93{bottom:163.226667pt;}
.y127{bottom:163.546667pt;}
.y139{bottom:164.826667pt;}
.y26{bottom:173.786667pt;}
.y110{bottom:180.506667pt;}
.y126{bottom:183.386667pt;}
.y57{bottom:185.946667pt;}
.yc8{bottom:188.346667pt;}
.yed{bottom:193.466667pt;}
.y25{bottom:193.786667pt;}
.y15e{bottom:197.306667pt;}
.y92{bottom:198.746667pt;}
.y138{bottom:199.066667pt;}
.y125{bottom:200.186667pt;}
.y10f{bottom:200.346667pt;}
.yc7{bottom:208.186667pt;}
.yec{bottom:213.466667pt;}
.y24{bottom:213.786667pt;}
.y10e{bottom:217.146667pt;}
.y15d{bottom:217.626667pt;}
.y137{bottom:219.226667pt;}
.y90{bottom:220.026667pt;}
.yc6{bottom:224.986667pt;}
.y54{bottom:225.786667pt;}
.yeb{bottom:230.426667pt;}
.y23{bottom:233.786667pt;}
.y124{bottom:234.426667pt;}
.y15c{bottom:235.706667pt;}
.y136{bottom:237.466667pt;}
.y10d{bottom:251.386667pt;}
.y22{bottom:253.946667pt;}
.y123{bottom:254.266667pt;}
.yc5{bottom:259.226667pt;}
.yea{bottom:264.506667pt;}
.y52{bottom:265.626667pt;}
.y15b{bottom:269.946667pt;}
.y10c{bottom:271.226667pt;}
.y8f{bottom:272.346667pt;}
.y21{bottom:273.946667pt;}
.yc4{bottom:279.226667pt;}
.ye9{bottom:284.506667pt;}
.y4e{bottom:287.066667pt;}
.y10b{bottom:288.026667pt;}
.y122{bottom:288.506667pt;}
.y15a{bottom:289.786667pt;}
.y20{bottom:293.946667pt;}
.ye8{bottom:301.346667pt;}
.y159{bottom:306.786667pt;}
.y8e{bottom:307.746667pt;}
.y121{bottom:308.546667pt;}
.yc3{bottom:313.346667pt;}
.y10a{bottom:322.306667pt;}
.y120{bottom:325.346667pt;}
.y1f{bottom:332.226667pt;}
.yc2{bottom:333.346667pt;}
.ye7{bottom:335.586667pt;}
.y4a{bottom:339.426667pt;}
.y158{bottom:341.026667pt;}
.y109{bottom:342.146667pt;}
.y8d{bottom:343.106667pt;}
.yc1{bottom:350.146667pt;}
.y1e{bottom:355.106667pt;}
.ye6{bottom:355.426667pt;}
.y108{bottom:358.946667pt;}
.y11f{bottom:359.586667pt;}
.y157{bottom:360.866667pt;}
.y1d{bottom:376.226667pt;}
.y156{bottom:377.666667pt;}
.y8c{bottom:378.466667pt;}
.y11e{bottom:379.426667pt;}
.yc0{bottom:384.386667pt;}
.ye5{bottom:389.506667pt;}
.y48{bottom:391.586667pt;}
.y107{bottom:393.346667pt;}
.y11d{bottom:396.386667pt;}
.ybf{bottom:404.226667pt;}
.y1c{bottom:405.026667pt;}
.ye4{bottom:409.666667pt;}
.y155{bottom:411.906667pt;}
.y106{bottom:413.186667pt;}
.y8a{bottom:413.826667pt;}
.y46{bottom:414.946667pt;}
.y1b{bottom:424.866667pt;}
.ye3{bottom:426.466667pt;}
.y105{bottom:429.986667pt;}
.y11c{bottom:430.466667pt;}
.y154{bottom:431.746667pt;}
.y45{bottom:436.706667pt;}
.ybe{bottom:438.306667pt;}
.y1a{bottom:445.346667pt;}
.y153{bottom:448.706667pt;}
.ye2{bottom:449.026667pt;}
.y88{bottom:449.186667pt;}
.y11b{bottom:450.306667pt;}
.y44{bottom:454.466667pt;}
.ybd{bottom:458.306667pt;}
.ye1{bottom:463.906667pt;}
.y104{bottom:464.226667pt;}
.y11a{bottom:467.106667pt;}
.y43{bottom:471.906667pt;}
.y19{bottom:472.866667pt;}
.y152{bottom:482.786667pt;}
.y103{bottom:484.066667pt;}
.y135{bottom:484.546667pt;}
.y87{bottom:489.026667pt;}
.y42{bottom:489.506667pt;}
.ybc{bottom:492.386667pt;}
.y18{bottom:492.866667pt;}
.ye0{bottom:497.986667pt;}
.y119{bottom:501.346667pt;}
.y151{bottom:502.626667pt;}
.y134{bottom:504.386667pt;}
.y41{bottom:506.946667pt;}
.ybb{bottom:512.386667pt;}
.ydf{bottom:517.666667pt;}
.y102{bottom:518.306667pt;}
.y150{bottom:519.586667pt;}
.y118{bottom:521.346667pt;}
.y40{bottom:524.546667pt;}
.y83{bottom:528.866667pt;}
.y17{bottom:529.506667pt;}
.y171{bottom:534.626667pt;}
.y101{bottom:538.173333pt;}
.y133{bottom:538.653333pt;}
.y3f{bottom:542.013333pt;}
.y16{bottom:545.853333pt;}
.yba{bottom:546.813333pt;}
.y170{bottom:551.453333pt;}
.yde{bottom:551.933333pt;}
.y14f{bottom:553.693333pt;}
.y100{bottom:555.133333pt;}
.y132{bottom:558.493333pt;}
.y3e{bottom:559.453333pt;}
.yb9{bottom:566.653333pt;}
.y7f{bottom:568.573333pt;}
.y15{bottom:570.653333pt;}
.ydd{bottom:571.933333pt;}
.y14e{bottom:573.693333pt;}
.y131{bottom:575.453333pt;}
.y3d{bottom:577.053333pt;}
.y16f{bottom:585.693333pt;}
.yff{bottom:589.213333pt;}
.yb8{bottom:590.653333pt;}
.y3c{bottom:594.493333pt;}
.y14{bottom:600.413333pt;}
.yb7{bottom:604.573333pt;}
.y16e{bottom:605.693333pt;}
.ydc{bottom:606.013333pt;}
.y14d{bottom:607.933333pt;}
.yfe{bottom:609.053333pt;}
.y130{bottom:609.533333pt;}
.y3b{bottom:611.933333pt;}
.y16d{bottom:622.653333pt;}
.y7e{bottom:622.813333pt;}
.y117{bottom:625.853333pt;}
.ydb{bottom:626.013333pt;}
.y14c{bottom:627.773333pt;}
.y12f{bottom:629.373333pt;}
.y3a{bottom:629.533333pt;}
.yb6{bottom:639.933333pt;}
.yda{bottom:642.973333pt;}
.yfd{bottom:643.293333pt;}
.y7a{bottom:644.093333pt;}
.y14b{bottom:644.733333pt;}
.y13{bottom:645.693333pt;}
.y12e{bottom:646.333333pt;}
.y39{bottom:646.973333pt;}
.y16c{bottom:656.733333pt;}
.y116{bottom:660.253333pt;}
.yb5{bottom:661.373333pt;}
.y12{bottom:661.693333pt;}
.yfc{bottom:663.293333pt;}
.y38{bottom:664.413333pt;}
.y16b{bottom:676.573333pt;}
.yd9{bottom:677.053333pt;}
.y14a{bottom:678.813333pt;}
.y77{bottom:679.453333pt;}
.y115{bottom:680.093333pt;}
.y12d{bottom:680.413333pt;}
.y37{bottom:682.173333pt;}
.yb4{bottom:682.813333pt;}
.y11{bottom:686.813333pt;}
.yd8{bottom:697.053333pt;}
.yfb{bottom:697.373333pt;}
.y149{bottom:698.653333pt;}
.y12c{bottom:700.413333pt;}
.yb3{bottom:704.093333pt;}
.y10{bottom:706.973333pt;}
.y16a{bottom:710.653333pt;}
.y36{bottom:716.093333pt;}
.y12b{bottom:717.213333pt;}
.yfa{bottom:717.373333pt;}
.yb2{bottom:725.373333pt;}
.yf{bottom:729.053333pt;}
.y169{bottom:730.653333pt;}
.yd7{bottom:731.133333pt;}
.y35{bottom:732.253333pt;}
.y73{bottom:732.413333pt;}
.y148{bottom:732.733333pt;}
.y12a{bottom:734.173333pt;}
.ye{bottom:745.693333pt;}
.yb1{bottom:746.813333pt;}
.yd6{bottom:750.973333pt;}
.yf9{bottom:751.453333pt;}
.y34{bottom:752.093333pt;}
.y147{bottom:752.733333pt;}
.y168{bottom:764.733333pt;}
.yd{bottom:767.773333pt;}
.y114{bottom:767.933333pt;}
.yad{bottom:768.253333pt;}
.y146{bottom:769.693333pt;}
.yf8{bottom:771.293333pt;}
.y33{bottom:779.973333pt;}
.y167{bottom:784.773333pt;}
.yd5{bottom:785.093333pt;}
.y70{bottom:786.693333pt;}
.yf7{bottom:788.293333pt;}
.yac{bottom:789.733333pt;}
.yc{bottom:792.613333pt;}
.y32{bottom:800.133333pt;}
.y113{bottom:802.053333pt;}
.y145{bottom:803.973333pt;}
.yd4{bottom:805.093333pt;}
.yab{bottom:811.013333pt;}
.yb{bottom:817.573333pt;}
.y166{bottom:818.853333pt;}
.yd3{bottom:822.053333pt;}
.y144{bottom:823.813333pt;}
.y6f{bottom:826.373333pt;}
.y31{bottom:827.813333pt;}
.ya9{bottom:832.453333pt;}
.y165{bottom:839.013333pt;}
.yf6{bottom:839.333333pt;}
.y143{bottom:840.613333pt;}
.ya{bottom:842.213333pt;}
.y30{bottom:849.093333pt;}
.ya7{bottom:853.733333pt;}
.y164{bottom:855.813333pt;}
.yd2{bottom:856.133333pt;}
.yf5{bottom:859.173333pt;}
.y9{bottom:860.613333pt;}
.y6d{bottom:866.373333pt;}
.y2f{bottom:869.093333pt;}
.y142{bottom:874.693333pt;}
.ya5{bottom:875.173333pt;}
.yd1{bottom:876.133333pt;}
.y8{bottom:877.733333pt;}
.y2e{bottom:889.093333pt;}
.y163{bottom:890.053333pt;}
.y141{bottom:894.533333pt;}
.ya3{bottom:896.453333pt;}
.y7{bottom:901.093333pt;}
.y6b{bottom:906.213333pt;}
.y2d{bottom:909.413333pt;}
.y162{bottom:909.733333pt;}
.yd0{bottom:910.373333pt;}
.y140{bottom:911.493333pt;}
.ya1{bottom:917.893333pt;}
.ycf{bottom:930.053333pt;}
.yf4{bottom:930.213333pt;}
.y2c{bottom:936.613333pt;}
.ya0{bottom:939.333333pt;}
.y6{bottom:940.773333pt;}
.y161{bottom:943.973333pt;}
.y13f{bottom:945.573333pt;}
.y69{bottom:946.213333pt;}
.yce{bottom:947.013333pt;}
.y2b{bottom:957.893333pt;}
.y62{bottom:961.253333pt;}
.ycd{bottom:963.813333pt;}
.yf3{bottom:964.293333pt;}
.y13e{bottom:965.733333pt;}
.y68{bottom:967.333333pt;}
.y5{bottom:972.613333pt;}
.y9f{bottom:974.533333pt;}
.y2a{bottom:977.893333pt;}
.y5f{bottom:982.533333pt;}
.yf2{bottom:984.133333pt;}
.y67{bottom:988.613333pt;}
.y9b{bottom:995.973333pt;}
.y29{bottom:997.893333pt;}
.ycc{bottom:998.053333pt;}
.y13d{bottom:999.333333pt;}
.yf1{bottom:1001.093333pt;}
.y4{bottom:1004.293333pt;}
.y64{bottom:1010.053333pt;}
.y28{bottom:1017.920000pt;}
.h10{height:17.120000pt;}
.h2{height:19.040000pt;}
.h1c{height:19.840000pt;}
.h19{height:20.000000pt;}
.h1a{height:20.032000pt;}
.h14{height:20.160000pt;}
.h28{height:20.192000pt;}
.h11{height:22.080000pt;}
.h23{height:33.920000pt;}
.h20{height:34.080000pt;}
.h24{height:34.112000pt;}
.h26{height:34.240000pt;}
.h1e{height:38.240000pt;}
.h17{height:38.400000pt;}
.h22{height:38.432000pt;}
.h15{height:38.560000pt;}
.h1d{height:38.715000pt;}
.h16{height:38.720000pt;}
.h4{height:47.392500pt;}
.h29{height:50.062500pt;}
.h12{height:50.720000pt;}
.h25{height:50.880000pt;}
.h13{height:50.912000pt;}
.h1f{height:51.520000pt;}
.h27{height:52.813750pt;}
.h18{height:52.832000pt;}
.h21{height:52.960000pt;}
.h7{height:55.402500pt;}
.h1b{height:60.519362pt;}
.h3{height:61.410000pt;}
.hb{height:61.630000pt;}
.he{height:66.750000pt;}
.h9{height:69.660000pt;}
.ha{height:72.090000pt;}
.h8{height:80.767500pt;}
.hd{height:83.437500pt;}
.h6{height:88.777500pt;}
.hf{height:94.785000pt;}
.hc{height:97.455000pt;}
.h5{height:100.125000pt;}
.h1{height:1123.333333pt;}
.h0{height:1123.360000pt;}
.w2{width:24.320000pt;}
.w5{width:200.186667pt;}
.w4{width:200.506667pt;}
.w1{width:794.666667pt;}
.w3{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x2{left:4.000000pt;}
.xf{left:7.200000pt;}
.x14{left:12.160000pt;}
.x17{left:14.400000pt;}
.x18{left:17.280000pt;}
.x19{left:18.720000pt;}
.x21{left:22.400000pt;}
.x1b{left:26.240000pt;}
.x22{left:29.760000pt;}
.x1c{left:33.600000pt;}
.x12{left:36.000000pt;}
.x15{left:39.034667pt;}
.x1e{left:41.440000pt;}
.x13{left:45.600000pt;}
.x20{left:47.354667pt;}
.x1a{left:51.354667pt;}
.x1d{left:59.034667pt;}
.x3{left:85.311988pt;}
.x5{left:93.311988pt;}
.x6{left:94.271988pt;}
.xe{left:96.992000pt;}
.xc{left:98.591988pt;}
.xa{left:106.591988pt;}
.x8{left:116.831988pt;}
.x9{left:117.791988pt;}
.x7{left:120.191988pt;}
.x23{left:121.440000pt;}
.xd{left:125.471988pt;}
.x16{left:129.306667pt;}
.x1f{left:133.466667pt;}
.xb{left:142.426655pt;}
.x4{left:145.946655pt;}
.x10{left:298.946667pt;}
.x1{left:385.346667pt;}
.x11{left:500.573333pt;}
}




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