
    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_1fcffbb495c43be84852d85e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5355b8e68518146c93b83ac8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_7f8511eff794a7d358054e04.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_c85aa066e2e294a93003dcb7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_05a624d60b4678b074f61665.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_f8c56a17923351381d070f5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_ce7464528abd70be03e5a507.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_efb55b68aaaf4d1c33f62b41.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aeca1fabdc754e8d85afbc97.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6ab3d190474cd46d6162ee5b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_84b4ed6fba5b64ec86f60057.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_59ce042270e1bc1b6a1aa0cb.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_9fc1f4f0e033cc91674c1e51.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_3e6a23c551e9a468a195c7ba.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls19{letter-spacing:-3.960000px;}
.ls10{letter-spacing:-3.546000px;}
.ls1a{letter-spacing:-1.902000px;}
.ls16{letter-spacing:-1.386000px;}
.ls14{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls9{letter-spacing:-0.127200px;}
.ls15{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.090000px;}
.ls18{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lse{letter-spacing:0.087600px;}
.ls1f{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls11{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls1b{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.786240px;}
.ls1d{letter-spacing:16.506720px;}
.ls1c{letter-spacing:46.026720px;}
.ls12{letter-spacing:55.362720px;}
.lsf{letter-spacing:64.026720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.860000px;}
.wse{word-spacing:-13.554000px;}
.ws9{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.038000px;}
.ws5{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws10{word-spacing:-10.980000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._19{margin-left:-8.158800px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.323120px;}
._2{margin-left:-2.795040px;}
._0{margin-left:-1.080000px;}
._1{width:1.038000px;}
._9{width:2.184960px;}
._10{width:3.862320px;}
._17{width:5.079600px;}
._18{width:6.195600px;}
._d{width:7.856640px;}
._c{width:8.979840px;}
._15{width:10.495680px;}
._16{width:11.593440px;}
._f{width:12.786480px;}
._5{width:13.889520px;}
._e{width:16.613280px;}
._8{width:18.487920px;}
._7{width:19.698720px;}
._a{width:20.893920px;}
._b{width:21.916320px;}
._1b{width:25.295520px;}
._12{width:26.934000px;}
._11{width:28.206720px;}
._14{width:37.589040px;}
._13{width:38.846880px;}
._6{width:45.694320px;}
._1a{width:50.355600px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:3.240000px;}
.yd0{bottom:3.285000px;}
.y4{bottom:3.600000px;}
.y4f{bottom:3.960000px;}
.yf{bottom:9.540000px;}
.y4d{bottom:10.620000px;}
.y1b{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y5{bottom:17.496000px;}
.y3{bottom:20.196000px;}
.y106{bottom:20.340000px;}
.y49{bottom:20.520000px;}
.y4e{bottom:22.320000px;}
.y19{bottom:23.985000px;}
.y4c{bottom:25.200000px;}
.yc{bottom:30.240000px;}
.y48{bottom:37.800000px;}
.y18{bottom:40.545000px;}
.y6{bottom:41.940000px;}
.yb{bottom:46.440000px;}
.y47{bottom:55.080000px;}
.y17{bottom:56.925000px;}
.y2{bottom:64.440000px;}
.y16{bottom:70.065000px;}
.y46{bottom:72.360000px;}
.ya{bottom:73.290000px;}
.y15{bottom:88.245000px;}
.y45{bottom:89.460000px;}
.y9{bottom:92.910000px;}
.y14{bottom:106.605000px;}
.y44{bottom:106.785000px;}
.y8{bottom:111.270000px;}
.y54{bottom:112.536000px;}
.y92{bottom:114.156000px;}
.yc2{bottom:115.236000px;}
.y123{bottom:115.416000px;}
.yf6{bottom:120.636000px;}
.y43{bottom:124.065000px;}
.y13{bottom:125.685000px;}
.y53{bottom:129.816000px;}
.y91{bottom:131.436000px;}
.yc1{bottom:132.516000px;}
.yf5{bottom:137.916000px;}
.y42{bottom:141.345000px;}
.y52{bottom:146.916000px;}
.y90{bottom:148.716000px;}
.yc0{bottom:149.796000px;}
.y12{bottom:151.425000px;}
.yf4{bottom:152.670000px;}
.y137{bottom:155.010000px;}
.y41{bottom:158.625000px;}
.y122{bottom:160.410000px;}
.y51{bottom:164.190000px;}
.y8f{bottom:165.810000px;}
.ybf{bottom:166.890000px;}
.yf3{bottom:170.670000px;}
.y136{bottom:172.290000px;}
.y11{bottom:175.725000px;}
.y50{bottom:182.190000px;}
.y121{bottom:182.910000px;}
.y8e{bottom:183.090000px;}
.ybe{bottom:184.170000px;}
.yf2{bottom:188.670000px;}
.y135{bottom:189.570000px;}
.y40{bottom:193.005000px;}
.y4b{bottom:196.590000px;}
.y8d{bottom:200.370000px;}
.ybd{bottom:201.450000px;}
.y120{bottom:205.410000px;}
.yf1{bottom:206.670000px;}
.y134{bottom:206.850000px;}
.y3f{bottom:210.285000px;}
.y8c{bottom:217.650000px;}
.ybc{bottom:218.730000px;}
.y133{bottom:224.130000px;}
.yf0{bottom:224.670000px;}
.y3e{bottom:227.565000px;}
.y11f{bottom:228.630000px;}
.y1c{bottom:233.130000px;}
.y8b{bottom:234.930000px;}
.ybb{bottom:236.010000px;}
.y132{bottom:241.410000px;}
.yef{bottom:242.670000px;}
.y3d{bottom:244.845000px;}
.y11e{bottom:251.130000px;}
.y8a{bottom:253.110000px;}
.y131{bottom:258.510000px;}
.yee{bottom:260.670000px;}
.y3c{bottom:262.125000px;}
.yba{bottom:270.390000px;}
.y89{bottom:271.470000px;}
.y11d{bottom:273.630000px;}
.y130{bottom:275.790000px;}
.yed{bottom:278.670000px;}
.y3b{bottom:279.225000px;}
.yb9{bottom:287.670000px;}
.y88{bottom:289.830000px;}
.y12f{bottom:293.070000px;}
.y11c{bottom:296.130000px;}
.y3a{bottom:296.505000px;}
.yec{bottom:296.670000px;}
.yb8{bottom:304.950000px;}
.y87{bottom:307.110000px;}
.y12e{bottom:310.350000px;}
.y39{bottom:313.785000px;}
.yeb{bottom:317.730000px;}
.y11b{bottom:318.630000px;}
.yb7{bottom:322.230000px;}
.y86{bottom:324.390000px;}
.y12d{bottom:327.630000px;}
.y38{bottom:331.065000px;}
.yea{bottom:335.010000px;}
.yb6{bottom:339.555000px;}
.y11a{bottom:341.175000px;}
.y85{bottom:342.795000px;}
.y12c{bottom:344.775000px;}
.y37{bottom:348.345000px;}
.ye9{bottom:349.815000px;}
.yb5{bottom:356.655000px;}
.y29{bottom:357.705000px;}
.y84{bottom:360.975000px;}
.y12b{bottom:362.055000px;}
.y119{bottom:363.675000px;}
.y36{bottom:365.625000px;}
.ye8{bottom:367.815000px;}
.y28{bottom:373.035000px;}
.yb4{bottom:373.935000px;}
.y83{bottom:379.335000px;}
.y35{bottom:382.755000px;}
.ye7{bottom:385.815000px;}
.y118{bottom:386.175000px;}
.y27{bottom:390.675000px;}
.yb3{bottom:391.215000px;}
.y82{bottom:396.615000px;}
.y34{bottom:400.035000px;}
.ye6{bottom:403.815000px;}
.y26{bottom:407.955000px;}
.y117{bottom:408.675000px;}
.yb2{bottom:409.575000px;}
.y81{bottom:413.895000px;}
.y33{bottom:417.315000px;}
.ye5{bottom:421.815000px;}
.y25{bottom:425.235000px;}
.yb1{bottom:427.935000px;}
.y80{bottom:431.175000px;}
.y32{bottom:434.595000px;}
.y24{bottom:442.875000px;}
.yb0{bottom:446.115000px;}
.y7f{bottom:448.275000px;}
.y31{bottom:451.875000px;}
.y116{bottom:453.675000px;}
.ye4{bottom:457.095000px;}
.y23{bottom:460.335000px;}
.yaf{bottom:463.395000px;}
.y7e{bottom:465.555000px;}
.y30{bottom:469.155000px;}
.ye3{bottom:475.095000px;}
.y115{bottom:476.175000px;}
.y22{bottom:477.795000px;}
.yae{bottom:480.675000px;}
.y7d{bottom:482.835000px;}
.y2f{bottom:486.255000px;}
.ye2{bottom:493.095000px;}
.y21{bottom:495.075000px;}
.yad{bottom:497.955000px;}
.y114{bottom:498.675000px;}
.y7c{bottom:500.115000px;}
.y2e{bottom:503.535000px;}
.ye1{bottom:511.095000px;}
.y20{bottom:512.535000px;}
.yac{bottom:515.235000px;}
.y7b{bottom:517.395000px;}
.y2d{bottom:520.815000px;}
.y113{bottom:521.175000px;}
.y1f{bottom:530.175000px;}
.yab{bottom:532.515000px;}
.y7a{bottom:534.675000px;}
.y2c{bottom:538.095000px;}
.y112{bottom:543.675000px;}
.yaa{bottom:549.615000px;}
.y79{bottom:551.775000px;}
.y2b{bottom:555.375000px;}
.y1e{bottom:557.535000px;}
.y111{bottom:566.175000px;}
.ya9{bottom:566.895000px;}
.y78{bottom:569.055000px;}
.y2a{bottom:572.475000px;}
.y1d{bottom:575.175000px;}
.ye0{bottom:581.655000px;}
.ya8{bottom:584.175000px;}
.y77{bottom:586.335000px;}
.y110{bottom:588.675000px;}
.ydf{bottom:599.655000px;}
.ya7{bottom:601.455000px;}
.y76{bottom:603.645000px;}
.y10f{bottom:611.205000px;}
.yde{bottom:617.685000px;}
.ya6{bottom:618.765000px;}
.y75{bottom:620.925000px;}
.y10e{bottom:633.705000px;}
.ydd{bottom:635.685000px;}
.ya5{bottom:636.045000px;}
.y74{bottom:638.205000px;}
.ya4{bottom:653.145000px;}
.y73{bottom:655.305000px;}
.ydc{bottom:656.925000px;}
.y10d{bottom:658.365000px;}
.ya3{bottom:670.425000px;}
.y72{bottom:672.585000px;}
.ydb{bottom:674.025000px;}
.y10c{bottom:675.645000px;}
.ya2{bottom:687.705000px;}
.yda{bottom:688.785000px;}
.y71{bottom:689.865000px;}
.y10b{bottom:690.405000px;}
.ya1{bottom:704.985000px;}
.yd9{bottom:706.785000px;}
.y70{bottom:707.145000px;}
.y10a{bottom:708.405000px;}
.ya0{bottom:722.265000px;}
.y6f{bottom:724.425000px;}
.yd8{bottom:724.785000px;}
.y109{bottom:726.405000px;}
.y9f{bottom:739.545000px;}
.y6e{bottom:741.525000px;}
.yd7{bottom:742.785000px;}
.y108{bottom:744.405000px;}
.y9e{bottom:756.645000px;}
.y6d{bottom:758.805000px;}
.yd6{bottom:760.785000px;}
.y107{bottom:762.405000px;}
.y9d{bottom:773.925000px;}
.y6c{bottom:776.085000px;}
.yd5{bottom:778.785000px;}
.y9c{bottom:791.205000px;}
.y6b{bottom:793.365000px;}
.y105{bottom:797.685000px;}
.yd4{bottom:800.025000px;}
.y9b{bottom:808.485000px;}
.y6a{bottom:810.645000px;}
.yd3{bottom:817.305000px;}
.y1a{bottom:819.645000px;}
.y9a{bottom:825.765000px;}
.y69{bottom:827.925000px;}
.yd2{bottom:832.065000px;}
.y104{bottom:832.785000px;}
.y99{bottom:842.865000px;}
.y68{bottom:845.025000px;}
.y10{bottom:849.165000px;}
.yd1{bottom:850.065000px;}
.y98{bottom:860.145000px;}
.y67{bottom:862.305000px;}
.ycf{bottom:868.065000px;}
.y103{bottom:871.350000px;}
.y97{bottom:877.470000px;}
.y66{bottom:879.630000px;}
.yce{bottom:886.110000px;}
.y102{bottom:888.630000px;}
.y96{bottom:894.750000px;}
.y65{bottom:896.910000px;}
.y101{bottom:903.390000px;}
.ycd{bottom:907.350000px;}
.y95{bottom:913.110000px;}
.y64{bottom:914.190000px;}
.ycc{bottom:924.630000px;}
.y94{bottom:930.390000px;}
.y63{bottom:931.470000px;}
.ycb{bottom:941.910000px;}
.y93{bottom:947.490000px;}
.y62{bottom:948.570000px;}
.y100{bottom:955.950000px;}
.yca{bottom:956.670000px;}
.y61{bottom:965.850000px;}
.yc9{bottom:974.670000px;}
.y60{bottom:983.130000px;}
.yc8{bottom:992.670000px;}
.yff{bottom:994.470000px;}
.y5f{bottom:1000.410000px;}
.yc7{bottom:1010.670000px;}
.yfe{bottom:1011.570000px;}
.y5e{bottom:1017.690000px;}
.yfd{bottom:1026.330000px;}
.yc6{bottom:1028.670000px;}
.y12a{bottom:1034.790000px;}
.y5d{bottom:1034.970000px;}
.ye{bottom:1040.010000px;}
.yfc{bottom:1044.330000px;}
.yc5{bottom:1046.670000px;}
.y5c{bottom:1052.070000px;}
.y129{bottom:1052.970000px;}
.yfb{bottom:1062.330000px;}
.yc4{bottom:1064.670000px;}
.y7{bottom:1065.390000px;}
.y5b{bottom:1069.350000px;}
.y128{bottom:1075.470000px;}
.yfa{bottom:1080.330000px;}
.yc3{bottom:1082.670000px;}
.y5a{bottom:1086.630000px;}
.y127{bottom:1097.970000px;}
.yf9{bottom:1098.330000px;}
.y59{bottom:1103.910000px;}
.yf8{bottom:1116.330000px;}
.y126{bottom:1120.470000px;}
.y58{bottom:1121.190000px;}
.yf7{bottom:1134.330000px;}
.y57{bottom:1138.320000px;}
.y125{bottom:1143.000000px;}
.y56{bottom:1155.600000px;}
.y124{bottom:1165.500000px;}
.y55{bottom:1172.880000px;}
.y1{bottom:1191.780000px;}
.h24{height:17.100000px;}
.h21{height:17.280000px;}
.h22{height:17.316000px;}
.hb{height:25.020000px;}
.h14{height:29.520000px;}
.h12{height:31.923633px;}
.h11{height:32.103633px;}
.h3{height:32.976000px;}
.h25{height:34.380000px;}
.h23{height:34.560000px;}
.h8{height:36.180000px;}
.h1e{height:36.540000px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h1b{height:42.186445px;}
.h20{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h5{height:47.223633px;}
.h17{height:47.980898px;}
.h1a{height:49.255313px;}
.h19{height:49.742227px;}
.h26{height:51.840000px;}
.h1f{height:52.260820px;}
.h13{height:53.709961px;}
.h9{height:54.000000px;}
.h4{height:55.291992px;}
.h18{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h6{height:67.824844px;}
.h2{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:190.830000px;}
.h16{height:586.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w27{width:69.660000px;}
.w4{width:73.080000px;}
.w25{width:97.596000px;}
.w17{width:111.636000px;}
.w20{width:122.940000px;}
.w1d{width:128.700000px;}
.w24{width:139.860000px;}
.w22{width:145.440000px;}
.w18{width:149.580000px;}
.w5{width:151.950000px;}
.w1a{width:169.950000px;}
.w26{width:171.390000px;}
.wd{width:175.530000px;}
.w11{width:177.690000px;}
.w1e{width:177.870000px;}
.wb{width:180.030000px;}
.w14{width:194.970000px;}
.w8{width:223.455000px;}
.w23{width:230.655000px;}
.we{width:232.095000px;}
.w1b{width:235.110000px;}
.w12{width:245.730000px;}
.wc{width:248.610000px;}
.w13{width:263.595000px;}
.w15{width:269.670000px;}
.wa{width:299.595000px;}
.w10{width:304.815000px;}
.wf{width:320.430000px;}
.w19{width:323.175000px;}
.w1c{width:421.665000px;}
.w16{width:467.025000px;}
.w21{width:471.165000px;}
.w1f{width:493.665000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w3{width:658.050000px;}
.w7{width:731.130000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:1.080000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xb{left:18.756000px;}
.x1{left:80.999987px;}
.x2e{left:84.420000px;}
.x4{left:98.130000px;}
.x13{left:108.035987px;}
.xd{left:119.010000px;}
.x15{left:131.975987px;}
.x14{left:135.035987px;}
.x16{left:158.969987px;}
.x10{left:160.050000px;}
.x1c{left:168.689987px;}
.x21{left:175.709987px;}
.xf{left:191.190000px;}
.x2d{left:196.949987px;}
.x11{left:215.175000px;}
.xe{left:224.535000px;}
.x5{left:232.950000px;}
.x2a{left:250.409987px;}
.x1a{left:257.970000px;}
.x8{left:272.235000px;}
.x26{left:283.034987px;}
.x19{left:286.454987px;}
.xc{left:305.355000px;}
.x30{left:318.855000px;}
.x6{left:331.995000px;}
.x1f{left:346.035000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x17{left:382.035000px;}
.x1d{left:387.255000px;}
.x24{left:405.615000px;}
.x9{left:439.500000px;}
.x31{left:462.495000px;}
.x1b{left:490.965000px;}
.x27{left:504.105000px;}
.x20{left:541.725000px;}
.x22{left:549.465000px;}
.x2b{left:553.605000px;}
.x18{left:562.785000px;}
.x32{left:563.865000px;}
.x1e{left:565.665000px;}
.x25{left:576.285000px;}
.x28{left:633.525000px;}
.x23{left:661.830000px;}
.x2c{left:665.970000px;}
.x29{left:688.470000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls19{letter-spacing:-3.520000pt;}
.ls10{letter-spacing:-3.152000pt;}
.ls1a{letter-spacing:-1.690667pt;}
.ls16{letter-spacing:-1.232000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls15{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.077867pt;}
.ls1f{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls11{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls1b{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.698880pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls1c{letter-spacing:40.912640pt;}
.ls12{letter-spacing:49.211307pt;}
.lsf{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.048000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.589333pt;}
.ws5{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws10{word-spacing:-9.760000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._19{margin-left:-7.252267pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.842773pt;}
._2{margin-left:-2.484480pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.922667pt;}
._9{width:1.942187pt;}
._10{width:3.433173pt;}
._17{width:4.515200pt;}
._18{width:5.507200pt;}
._d{width:6.983680pt;}
._c{width:7.982080pt;}
._15{width:9.329493pt;}
._16{width:10.305280pt;}
._f{width:11.365760pt;}
._5{width:12.346240pt;}
._e{width:14.767360pt;}
._8{width:16.433707pt;}
._7{width:17.509973pt;}
._a{width:18.572373pt;}
._b{width:19.481173pt;}
._1b{width:22.484907pt;}
._12{width:23.941333pt;}
._11{width:25.072640pt;}
._14{width:33.412480pt;}
._13{width:34.530560pt;}
._6{width:40.617173pt;}
._1a{width:44.760533pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.880000pt;}
.yd0{bottom:2.920000pt;}
.y4{bottom:3.200000pt;}
.y4f{bottom:3.520000pt;}
.yf{bottom:8.480000pt;}
.y4d{bottom:9.440000pt;}
.y1b{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y5{bottom:15.552000pt;}
.y3{bottom:17.952000pt;}
.y106{bottom:18.080000pt;}
.y49{bottom:18.240000pt;}
.y4e{bottom:19.840000pt;}
.y19{bottom:21.320000pt;}
.y4c{bottom:22.400000pt;}
.yc{bottom:26.880000pt;}
.y48{bottom:33.600000pt;}
.y18{bottom:36.040000pt;}
.y6{bottom:37.280000pt;}
.yb{bottom:41.280000pt;}
.y47{bottom:48.960000pt;}
.y17{bottom:50.600000pt;}
.y2{bottom:57.280000pt;}
.y16{bottom:62.280000pt;}
.y46{bottom:64.320000pt;}
.ya{bottom:65.146667pt;}
.y15{bottom:78.440000pt;}
.y45{bottom:79.520000pt;}
.y9{bottom:82.586667pt;}
.y14{bottom:94.760000pt;}
.y44{bottom:94.920000pt;}
.y8{bottom:98.906667pt;}
.y54{bottom:100.032000pt;}
.y92{bottom:101.472000pt;}
.yc2{bottom:102.432000pt;}
.y123{bottom:102.592000pt;}
.yf6{bottom:107.232000pt;}
.y43{bottom:110.280000pt;}
.y13{bottom:111.720000pt;}
.y53{bottom:115.392000pt;}
.y91{bottom:116.832000pt;}
.yc1{bottom:117.792000pt;}
.yf5{bottom:122.592000pt;}
.y42{bottom:125.640000pt;}
.y52{bottom:130.592000pt;}
.y90{bottom:132.192000pt;}
.yc0{bottom:133.152000pt;}
.y12{bottom:134.600000pt;}
.yf4{bottom:135.706667pt;}
.y137{bottom:137.786667pt;}
.y41{bottom:141.000000pt;}
.y122{bottom:142.586667pt;}
.y51{bottom:145.946667pt;}
.y8f{bottom:147.386667pt;}
.ybf{bottom:148.346667pt;}
.yf3{bottom:151.706667pt;}
.y136{bottom:153.146667pt;}
.y11{bottom:156.200000pt;}
.y50{bottom:161.946667pt;}
.y121{bottom:162.586667pt;}
.y8e{bottom:162.746667pt;}
.ybe{bottom:163.706667pt;}
.yf2{bottom:167.706667pt;}
.y135{bottom:168.506667pt;}
.y40{bottom:171.560000pt;}
.y4b{bottom:174.746667pt;}
.y8d{bottom:178.106667pt;}
.ybd{bottom:179.066667pt;}
.y120{bottom:182.586667pt;}
.yf1{bottom:183.706667pt;}
.y134{bottom:183.866667pt;}
.y3f{bottom:186.920000pt;}
.y8c{bottom:193.466667pt;}
.ybc{bottom:194.426667pt;}
.y133{bottom:199.226667pt;}
.yf0{bottom:199.706667pt;}
.y3e{bottom:202.280000pt;}
.y11f{bottom:203.226667pt;}
.y1c{bottom:207.226667pt;}
.y8b{bottom:208.826667pt;}
.ybb{bottom:209.786667pt;}
.y132{bottom:214.586667pt;}
.yef{bottom:215.706667pt;}
.y3d{bottom:217.640000pt;}
.y11e{bottom:223.226667pt;}
.y8a{bottom:224.986667pt;}
.y131{bottom:229.786667pt;}
.yee{bottom:231.706667pt;}
.y3c{bottom:233.000000pt;}
.yba{bottom:240.346667pt;}
.y89{bottom:241.306667pt;}
.y11d{bottom:243.226667pt;}
.y130{bottom:245.146667pt;}
.yed{bottom:247.706667pt;}
.y3b{bottom:248.200000pt;}
.yb9{bottom:255.706667pt;}
.y88{bottom:257.626667pt;}
.y12f{bottom:260.506667pt;}
.y11c{bottom:263.226667pt;}
.y3a{bottom:263.560000pt;}
.yec{bottom:263.706667pt;}
.yb8{bottom:271.066667pt;}
.y87{bottom:272.986667pt;}
.y12e{bottom:275.866667pt;}
.y39{bottom:278.920000pt;}
.yeb{bottom:282.426667pt;}
.y11b{bottom:283.226667pt;}
.yb7{bottom:286.426667pt;}
.y86{bottom:288.346667pt;}
.y12d{bottom:291.226667pt;}
.y38{bottom:294.280000pt;}
.yea{bottom:297.786667pt;}
.yb6{bottom:301.826667pt;}
.y11a{bottom:303.266667pt;}
.y85{bottom:304.706667pt;}
.y12c{bottom:306.466667pt;}
.y37{bottom:309.640000pt;}
.ye9{bottom:310.946667pt;}
.yb5{bottom:317.026667pt;}
.y29{bottom:317.960000pt;}
.y84{bottom:320.866667pt;}
.y12b{bottom:321.826667pt;}
.y119{bottom:323.266667pt;}
.y36{bottom:325.000000pt;}
.ye8{bottom:326.946667pt;}
.y28{bottom:331.586667pt;}
.yb4{bottom:332.386667pt;}
.y83{bottom:337.186667pt;}
.y35{bottom:340.226667pt;}
.ye7{bottom:342.946667pt;}
.y118{bottom:343.266667pt;}
.y27{bottom:347.266667pt;}
.yb3{bottom:347.746667pt;}
.y82{bottom:352.546667pt;}
.y34{bottom:355.586667pt;}
.ye6{bottom:358.946667pt;}
.y26{bottom:362.626667pt;}
.y117{bottom:363.266667pt;}
.yb2{bottom:364.066667pt;}
.y81{bottom:367.906667pt;}
.y33{bottom:370.946667pt;}
.ye5{bottom:374.946667pt;}
.y25{bottom:377.986667pt;}
.yb1{bottom:380.386667pt;}
.y80{bottom:383.266667pt;}
.y32{bottom:386.306667pt;}
.y24{bottom:393.666667pt;}
.yb0{bottom:396.546667pt;}
.y7f{bottom:398.466667pt;}
.y31{bottom:401.666667pt;}
.y116{bottom:403.266667pt;}
.ye4{bottom:406.306667pt;}
.y23{bottom:409.186667pt;}
.yaf{bottom:411.906667pt;}
.y7e{bottom:413.826667pt;}
.y30{bottom:417.026667pt;}
.ye3{bottom:422.306667pt;}
.y115{bottom:423.266667pt;}
.y22{bottom:424.706667pt;}
.yae{bottom:427.266667pt;}
.y7d{bottom:429.186667pt;}
.y2f{bottom:432.226667pt;}
.ye2{bottom:438.306667pt;}
.y21{bottom:440.066667pt;}
.yad{bottom:442.626667pt;}
.y114{bottom:443.266667pt;}
.y7c{bottom:444.546667pt;}
.y2e{bottom:447.586667pt;}
.ye1{bottom:454.306667pt;}
.y20{bottom:455.586667pt;}
.yac{bottom:457.986667pt;}
.y7b{bottom:459.906667pt;}
.y2d{bottom:462.946667pt;}
.y113{bottom:463.266667pt;}
.y1f{bottom:471.266667pt;}
.yab{bottom:473.346667pt;}
.y7a{bottom:475.266667pt;}
.y2c{bottom:478.306667pt;}
.y112{bottom:483.266667pt;}
.yaa{bottom:488.546667pt;}
.y79{bottom:490.466667pt;}
.y2b{bottom:493.666667pt;}
.y1e{bottom:495.586667pt;}
.y111{bottom:503.266667pt;}
.ya9{bottom:503.906667pt;}
.y78{bottom:505.826667pt;}
.y2a{bottom:508.866667pt;}
.y1d{bottom:511.266667pt;}
.ye0{bottom:517.026667pt;}
.ya8{bottom:519.266667pt;}
.y77{bottom:521.186667pt;}
.y110{bottom:523.266667pt;}
.ydf{bottom:533.026667pt;}
.ya7{bottom:534.626667pt;}
.y76{bottom:536.573333pt;}
.y10f{bottom:543.293333pt;}
.yde{bottom:549.053333pt;}
.ya6{bottom:550.013333pt;}
.y75{bottom:551.933333pt;}
.y10e{bottom:563.293333pt;}
.ydd{bottom:565.053333pt;}
.ya5{bottom:565.373333pt;}
.y74{bottom:567.293333pt;}
.ya4{bottom:580.573333pt;}
.y73{bottom:582.493333pt;}
.ydc{bottom:583.933333pt;}
.y10d{bottom:585.213333pt;}
.ya3{bottom:595.933333pt;}
.y72{bottom:597.853333pt;}
.ydb{bottom:599.133333pt;}
.y10c{bottom:600.573333pt;}
.ya2{bottom:611.293333pt;}
.yda{bottom:612.253333pt;}
.y71{bottom:613.213333pt;}
.y10b{bottom:613.693333pt;}
.ya1{bottom:626.653333pt;}
.yd9{bottom:628.253333pt;}
.y70{bottom:628.573333pt;}
.y10a{bottom:629.693333pt;}
.ya0{bottom:642.013333pt;}
.y6f{bottom:643.933333pt;}
.yd8{bottom:644.253333pt;}
.y109{bottom:645.693333pt;}
.y9f{bottom:657.373333pt;}
.y6e{bottom:659.133333pt;}
.yd7{bottom:660.253333pt;}
.y108{bottom:661.693333pt;}
.y9e{bottom:672.573333pt;}
.y6d{bottom:674.493333pt;}
.yd6{bottom:676.253333pt;}
.y107{bottom:677.693333pt;}
.y9d{bottom:687.933333pt;}
.y6c{bottom:689.853333pt;}
.yd5{bottom:692.253333pt;}
.y9c{bottom:703.293333pt;}
.y6b{bottom:705.213333pt;}
.y105{bottom:709.053333pt;}
.yd4{bottom:711.133333pt;}
.y9b{bottom:718.653333pt;}
.y6a{bottom:720.573333pt;}
.yd3{bottom:726.493333pt;}
.y1a{bottom:728.573333pt;}
.y9a{bottom:734.013333pt;}
.y69{bottom:735.933333pt;}
.yd2{bottom:739.613333pt;}
.y104{bottom:740.253333pt;}
.y99{bottom:749.213333pt;}
.y68{bottom:751.133333pt;}
.y10{bottom:754.813333pt;}
.yd1{bottom:755.613333pt;}
.y98{bottom:764.573333pt;}
.y67{bottom:766.493333pt;}
.ycf{bottom:771.613333pt;}
.y103{bottom:774.533333pt;}
.y97{bottom:779.973333pt;}
.y66{bottom:781.893333pt;}
.yce{bottom:787.653333pt;}
.y102{bottom:789.893333pt;}
.y96{bottom:795.333333pt;}
.y65{bottom:797.253333pt;}
.y101{bottom:803.013333pt;}
.ycd{bottom:806.533333pt;}
.y95{bottom:811.653333pt;}
.y64{bottom:812.613333pt;}
.ycc{bottom:821.893333pt;}
.y94{bottom:827.013333pt;}
.y63{bottom:827.973333pt;}
.ycb{bottom:837.253333pt;}
.y93{bottom:842.213333pt;}
.y62{bottom:843.173333pt;}
.y100{bottom:849.733333pt;}
.yca{bottom:850.373333pt;}
.y61{bottom:858.533333pt;}
.yc9{bottom:866.373333pt;}
.y60{bottom:873.893333pt;}
.yc8{bottom:882.373333pt;}
.yff{bottom:883.973333pt;}
.y5f{bottom:889.253333pt;}
.yc7{bottom:898.373333pt;}
.yfe{bottom:899.173333pt;}
.y5e{bottom:904.613333pt;}
.yfd{bottom:912.293333pt;}
.yc6{bottom:914.373333pt;}
.y12a{bottom:919.813333pt;}
.y5d{bottom:919.973333pt;}
.ye{bottom:924.453333pt;}
.yfc{bottom:928.293333pt;}
.yc5{bottom:930.373333pt;}
.y5c{bottom:935.173333pt;}
.y129{bottom:935.973333pt;}
.yfb{bottom:944.293333pt;}
.yc4{bottom:946.373333pt;}
.y7{bottom:947.013333pt;}
.y5b{bottom:950.533333pt;}
.y128{bottom:955.973333pt;}
.yfa{bottom:960.293333pt;}
.yc3{bottom:962.373333pt;}
.y5a{bottom:965.893333pt;}
.y127{bottom:975.973333pt;}
.yf9{bottom:976.293333pt;}
.y59{bottom:981.253333pt;}
.yf8{bottom:992.293333pt;}
.y126{bottom:995.973333pt;}
.y58{bottom:996.613333pt;}
.yf7{bottom:1008.293333pt;}
.y57{bottom:1011.840000pt;}
.y125{bottom:1016.000000pt;}
.y56{bottom:1027.200000pt;}
.y124{bottom:1036.000000pt;}
.y55{bottom:1042.560000pt;}
.y1{bottom:1059.360000pt;}
.h24{height:15.200000pt;}
.h21{height:15.360000pt;}
.h22{height:15.392000pt;}
.hb{height:22.240000pt;}
.h14{height:26.240000pt;}
.h12{height:28.376562pt;}
.h11{height:28.536563pt;}
.h3{height:29.312000pt;}
.h25{height:30.560000pt;}
.h23{height:30.720000pt;}
.h8{height:32.160000pt;}
.h1e{height:32.480000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h1b{height:37.499062pt;}
.h20{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h5{height:41.976562pt;}
.h17{height:42.649687pt;}
.h1a{height:43.782500pt;}
.h19{height:44.215312pt;}
.h26{height:46.080000pt;}
.h1f{height:46.454062pt;}
.h13{height:47.742188pt;}
.h9{height:48.000000pt;}
.h4{height:49.148438pt;}
.h18{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h6{height:60.288750pt;}
.h2{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:169.626667pt;}
.h16{height:521.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w27{width:61.920000pt;}
.w4{width:64.960000pt;}
.w25{width:86.752000pt;}
.w17{width:99.232000pt;}
.w20{width:109.280000pt;}
.w1d{width:114.400000pt;}
.w24{width:124.320000pt;}
.w22{width:129.280000pt;}
.w18{width:132.960000pt;}
.w5{width:135.066667pt;}
.w1a{width:151.066667pt;}
.w26{width:152.346667pt;}
.wd{width:156.026667pt;}
.w11{width:157.946667pt;}
.w1e{width:158.106667pt;}
.wb{width:160.026667pt;}
.w14{width:173.306667pt;}
.w8{width:198.626667pt;}
.w23{width:205.026667pt;}
.we{width:206.306667pt;}
.w1b{width:208.986667pt;}
.w12{width:218.426667pt;}
.wc{width:220.986667pt;}
.w13{width:234.306667pt;}
.w15{width:239.706667pt;}
.wa{width:266.306667pt;}
.w10{width:270.946667pt;}
.wf{width:284.826667pt;}
.w19{width:287.266667pt;}
.w1c{width:374.813333pt;}
.w16{width:415.133333pt;}
.w21{width:418.813333pt;}
.w1f{width:438.813333pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w3{width:584.933333pt;}
.w7{width:649.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:0.960000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xb{left:16.672000pt;}
.x1{left:71.999988pt;}
.x2e{left:75.040000pt;}
.x4{left:87.226667pt;}
.x13{left:96.031988pt;}
.xd{left:105.786667pt;}
.x15{left:117.311988pt;}
.x14{left:120.031988pt;}
.x16{left:141.306655pt;}
.x10{left:142.266667pt;}
.x1c{left:149.946655pt;}
.x21{left:156.186655pt;}
.xf{left:169.946667pt;}
.x2d{left:175.066655pt;}
.x11{left:191.266667pt;}
.xe{left:199.586667pt;}
.x5{left:207.066667pt;}
.x2a{left:222.586655pt;}
.x1a{left:229.306667pt;}
.x8{left:241.986667pt;}
.x26{left:251.586655pt;}
.x19{left:254.626655pt;}
.xc{left:271.426667pt;}
.x30{left:283.426667pt;}
.x6{left:295.106667pt;}
.x1f{left:307.586667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x17{left:339.586667pt;}
.x1d{left:344.226667pt;}
.x24{left:360.546667pt;}
.x9{left:390.666667pt;}
.x31{left:411.106667pt;}
.x1b{left:436.413333pt;}
.x27{left:448.093333pt;}
.x20{left:481.533333pt;}
.x22{left:488.413333pt;}
.x2b{left:492.093333pt;}
.x18{left:500.253333pt;}
.x32{left:501.213333pt;}
.x1e{left:502.813333pt;}
.x25{left:512.253333pt;}
.x28{left:563.133333pt;}
.x23{left:588.293333pt;}
.x2c{left:591.973333pt;}
.x29{left:611.973333pt;}
.x3{left:656.933333pt;}
}




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