
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8e903d609ad4d298aa437db9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_7ac5546079789b8dbc5e2de5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_7953a41bb93208552abada13.woff')format("woff");}.ff5{font-family:ff5;line-height:0.908000;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_2c9996aefb0696f755d62d99.woff')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_8ecc7dbd95afec7992078300.woff')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_a5ede986a2e330a3365aefeb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.019000;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_61834635478953453a29cb77.woff')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_23597700381cf48d7331efad.woff')format("woff");}.ffa{font-family:ffa;line-height:0.950000;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_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.009000;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_7c7265c91fd9087039d1eb0f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.061000;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_01ff34b41d0fb8072e6e8a02.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c8e3add865e6216cf350d3e7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.902344;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_2a65aae6deadd5c9f8d6ee77.woff')format("woff");}.fff{font-family:fff;line-height:0.851562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m5{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);}
.m4{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.392400px;}
.lsd{letter-spacing:-0.385800px;}
.ls9{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.136800px;}
.ls13{letter-spacing:-0.103200px;}
.lsc{letter-spacing:-0.067200px;}
.ls6{letter-spacing:-0.013680px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.040320px;}
.ls10{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.303576px;}
.ls1{letter-spacing:0.378720px;}
.ls11{letter-spacing:0.406800px;}
.ls8{letter-spacing:3.816000px;}
.lsf{letter-spacing:16.776000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(27,28,29),0 0.015em rgb(27,28,29),0.015em 0 rgb(27,28,29),0 -0.015em  rgb(27,28,29);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(27,28,29);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-72.000000px;}
.ws2{word-spacing:-19.872000px;}
.ws6{word-spacing:-19.051200px;}
.wsf{word-spacing:-18.648000px;}
.wsa{word-spacing:-18.504000px;}
.ws10{word-spacing:-18.360000px;}
.wse{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.282240px;}
.ws9{word-spacing:-18.144000px;}
.ws4{word-spacing:-17.023680px;}
.wsb{word-spacing:-13.968000px;}
.wsc{word-spacing:-13.878000px;}
.ws3{word-spacing:-10.732320px;}
.ws1{word-spacing:-10.565280px;}
.ws0{word-spacing:-0.156240px;}
.ws8{word-spacing:-0.142560px;}
.ws7{word-spacing:0.000000px;}
._14{margin-left:-4.906560px;}
._b{margin-left:-3.108480px;}
._1{margin-left:-1.157760px;}
._2{width:1.002240px;}
._6{width:2.341440px;}
._3{width:3.437760px;}
._7{width:4.835520px;}
._10{width:6.180480px;}
._e{width:7.560000px;}
._8{width:9.538560px;}
._c{width:10.627200px;}
._9{width:11.658240px;}
._11{width:12.888000px;}
._12{width:13.968000px;}
._17{width:14.976000px;}
._d{width:16.704000px;}
._a{width:18.048960px;}
._1f{width:20.183040px;}
._16{width:21.415680px;}
._4{width:22.654080px;}
._13{width:23.713920px;}
._5{width:24.999360px;}
._1e{width:27.000000px;}
._20{width:28.224000px;}
._1b{width:29.448000px;}
._1a{width:30.744000px;}
._1c{width:32.057760px;}
._36{width:33.984000px;}
._32{width:35.712000px;}
._31{width:37.152000px;}
._f{width:38.304000px;}
._15{width:39.384000px;}
._33{width:40.758240px;}
._19{width:42.336000px;}
._27{width:47.628000px;}
._18{width:49.032000px;}
._25{width:50.058000px;}
._24{width:51.354000px;}
._23{width:56.646000px;}
._22{width:58.212000px;}
._35{width:61.488000px;}
._34{width:62.856000px;}
._1d{width:64.656000px;}
._2c{width:77.706000px;}
._21{width:80.694000px;}
._2f{width:100.926000px;}
._2a{width:143.964000px;}
._29{width:145.260000px;}
._26{width:153.630000px;}
._2d{width:155.466000px;}
._28{width:196.146000px;}
._30{width:234.252000px;}
._2e{width:382.374000px;}
._2b{width:491.724000px;}
._0{width:1481.489760px;}
.fc6{color:rgb(21,27,28);}
.fc5{color:rgb(27,28,29);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:56.920429px;}
.fsa{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fs9{font-size:77.760000px;}
.fsd{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y43{bottom:6.660000px;}
.y76{bottom:10.260000px;}
.y79{bottom:10.485000px;}
.yb{bottom:16.740000px;}
.y8d{bottom:19.620000px;}
.y6{bottom:19.650000px;}
.y89{bottom:19.800000px;}
.ya{bottom:24.156000px;}
.y7{bottom:26.820000px;}
.yb0{bottom:29.154000px;}
.y83{bottom:29.160000px;}
.y42{bottom:30.450000px;}
.y91{bottom:38.520000px;}
.y88{bottom:38.700000px;}
.y44{bottom:39.450000px;}
.y9{bottom:47.520000px;}
.yaf{bottom:48.054000px;}
.y82{bottom:48.060000px;}
.yb2{bottom:48.090000px;}
.y41{bottom:54.210000px;}
.y87{bottom:57.600000px;}
.y4{bottom:58.320000px;}
.y81{bottom:66.960000px;}
.yae{bottom:67.134000px;}
.yab{bottom:67.140000px;}
.y86{bottom:76.500000px;}
.y90{bottom:76.530000px;}
.y3{bottom:78.156000px;}
.y84{bottom:85.860000px;}
.y92{bottom:85.890000px;}
.yad{bottom:86.034000px;}
.y8a{bottom:86.040000px;}
.y8c{bottom:95.400000px;}
.y2{bottom:98.676000px;}
.y8e{bottom:104.940000px;}
.y3f{bottom:120.456000px;}
.yde{bottom:122.256000px;}
.y74{bottom:125.316000px;}
.yac{bottom:130.356000px;}
.y5{bottom:131.220000px;}
.y3e{bottom:142.416000px;}
.ydd{bottom:144.216000px;}
.y73{bottom:147.276000px;}
.y7d{bottom:156.090000px;}
.y3d{bottom:164.370000px;}
.y72{bottom:169.230000px;}
.ydc{bottom:169.770000px;}
.y3c{bottom:186.330000px;}
.y71{bottom:191.190000px;}
.ydb{bottom:193.170000px;}
.y7c{bottom:198.570000px;}
.y3b{bottom:208.290000px;}
.y70{bottom:213.150000px;}
.y8b{bottom:218.370000px;}
.yda{bottom:218.730000px;}
.y3a{bottom:230.250000px;}
.y6f{bottom:235.110000px;}
.y7b{bottom:241.230000px;}
.yd9{bottom:242.130000px;}
.yaa{bottom:248.610000px;}
.y39{bottom:252.210000px;}
.y6e{bottom:257.070000px;}
.yd8{bottom:266.790000px;}
.y38{bottom:274.170000px;}
.y6d{bottom:279.030000px;}
.y7a{bottom:283.710000px;}
.yd7{bottom:288.750000px;}
.y37{bottom:296.130000px;}
.y6c{bottom:300.990000px;}
.yd6{bottom:310.710000px;}
.y36{bottom:317.910000px;}
.y6b{bottom:322.950000px;}
.y78{bottom:326.190000px;}
.yd5{bottom:332.670000px;}
.y35{bottom:339.915000px;}
.y6a{bottom:344.775000px;}
.yd4{bottom:354.675000px;}
.y85{bottom:355.575000px;}
.y34{bottom:361.875000px;}
.y69{bottom:366.735000px;}
.ya9{bottom:366.915000px;}
.y77{bottom:368.895000px;}
.yd3{bottom:376.635000px;}
.y33{bottom:383.835000px;}
.y68{bottom:388.695000px;}
.yd2{bottom:398.595000px;}
.y32{bottom:405.795000px;}
.y67{bottom:410.655000px;}
.y75{bottom:411.375000px;}
.yd1{bottom:420.555000px;}
.y31{bottom:427.755000px;}
.y66{bottom:432.615000px;}
.yd0{bottom:442.515000px;}
.y30{bottom:449.715000px;}
.y65{bottom:461.055000px;}
.ycf{bottom:464.295000px;}
.y2f{bottom:471.675000px;}
.y80{bottom:473.835000px;}
.ya8{bottom:485.175000px;}
.y64{bottom:486.075000px;}
.yce{bottom:486.255000px;}
.y2e{bottom:493.275000px;}
.y63{bottom:502.095000px;}
.ycd{bottom:508.215000px;}
.y2d{bottom:514.695000px;}
.y62{bottom:524.055000px;}
.y2c{bottom:526.215000px;}
.ycc{bottom:530.175000px;}
.y61{bottom:545.835000px;}
.y2b{bottom:546.375000px;}
.ycb{bottom:552.135000px;}
.y2a{bottom:566.355000px;}
.y60{bottom:567.795000px;}
.yca{bottom:574.095000px;}
.ya7{bottom:584.535000px;}
.y29{bottom:586.515000px;}
.y5f{bottom:589.755000px;}
.y7f{bottom:592.095000px;}
.yc9{bottom:596.055000px;}
.y28{bottom:606.705000px;}
.y5e{bottom:611.745000px;}
.yc8{bottom:618.045000px;}
.y27{bottom:626.865000px;}
.ya6{bottom:628.305000px;}
.y5d{bottom:633.705000px;}
.y7e{bottom:636.585000px;}
.yc7{bottom:640.005000px;}
.ya5{bottom:645.945000px;}
.y26{bottom:646.845000px;}
.y5c{bottom:655.665000px;}
.yc6{bottom:661.965000px;}
.y25{bottom:667.005000px;}
.ya4{bottom:667.905000px;}
.y5b{bottom:677.625000px;}
.yc5{bottom:683.745000px;}
.y24{bottom:687.165000px;}
.ya3{bottom:689.865000px;}
.y5a{bottom:699.585000px;}
.yc4{bottom:705.705000px;}
.y23{bottom:707.325000px;}
.ya2{bottom:711.825000px;}
.y59{bottom:721.545000px;}
.y22{bottom:727.305000px;}
.yc3{bottom:727.665000px;}
.ya1{bottom:733.785000px;}
.yf1{bottom:742.245000px;}
.y58{bottom:743.505000px;}
.y21{bottom:747.465000px;}
.yc2{bottom:749.625000px;}
.ya0{bottom:755.745000px;}
.yf0{bottom:764.205000px;}
.y57{bottom:765.285000px;}
.y20{bottom:767.625000px;}
.yc1{bottom:771.585000px;}
.y9f{bottom:777.705000px;}
.yef{bottom:786.165000px;}
.y56{bottom:787.245000px;}
.y1f{bottom:787.785000px;}
.yc0{bottom:793.545000px;}
.y9e{bottom:799.665000px;}
.y1e{bottom:807.765000px;}
.yee{bottom:808.125000px;}
.y55{bottom:809.205000px;}
.ybf{bottom:815.505000px;}
.y9d{bottom:821.445000px;}
.y1d{bottom:827.925000px;}
.yed{bottom:830.085000px;}
.y54{bottom:831.165000px;}
.ybe{bottom:837.465000px;}
.y9c{bottom:843.405000px;}
.y1c{bottom:848.085000px;}
.y53{bottom:853.125000px;}
.yec{bottom:854.925000px;}
.ybd{bottom:859.425000px;}
.y9b{bottom:865.365000px;}
.y1b{bottom:868.245000px;}
.y52{bottom:875.130000px;}
.yeb{bottom:876.930000px;}
.ybc{bottom:881.430000px;}
.y9a{bottom:887.370000px;}
.y1a{bottom:888.270000px;}
.y51{bottom:897.090000px;}
.yea{bottom:901.770000px;}
.ybb{bottom:903.210000px;}
.y19{bottom:905.550000px;}
.y99{bottom:909.330000px;}
.y18{bottom:914.370000px;}
.y50{bottom:919.050000px;}
.ye9{bottom:924.450000px;}
.yba{bottom:925.170000px;}
.y98{bottom:931.290000px;}
.y17{bottom:933.450000px;}
.y4f{bottom:941.010000px;}
.y16{bottom:946.410000px;}
.yb9{bottom:947.130000px;}
.ye8{bottom:947.670000px;}
.y97{bottom:953.250000px;}
.y15{bottom:958.290000px;}
.y4e{bottom:962.970000px;}
.yb8{bottom:969.090000px;}
.ye7{bottom:972.510000px;}
.y96{bottom:975.210000px;}
.y14{bottom:980.250000px;}
.y4d{bottom:984.750000px;}
.yb7{bottom:991.050000px;}
.ye6{bottom:994.470000px;}
.y95{bottom:997.170000px;}
.y13{bottom:1002.210000px;}
.y4c{bottom:1006.710000px;}
.yb6{bottom:1013.010000px;}
.y94{bottom:1019.130000px;}
.ye5{bottom:1019.310000px;}
.y4b{bottom:1028.670000px;}
.yb5{bottom:1034.970000px;}
.y93{bottom:1040.910000px;}
.ye4{bottom:1041.990000px;}
.y12{bottom:1045.230000px;}
.y4a{bottom:1050.630000px;}
.yb4{bottom:1056.930000px;}
.ye3{bottom:1066.830000px;}
.y11{bottom:1068.090000px;}
.y8f{bottom:1068.630000px;}
.y49{bottom:1072.590000px;}
.yb3{bottom:1078.890000px;}
.ye2{bottom:1088.790000px;}
.y48{bottom:1094.550000px;}
.yb1{bottom:1106.430000px;}
.ye1{bottom:1110.750000px;}
.y40{bottom:1114.710000px;}
.y47{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.ye0{bottom:1135.590000px;}
.y46{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.ydf{bottom:1157.580000px;}
.y45{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h10{height:16.398000px;}
.h6{height:17.280000px;}
.h1a{height:23.400000px;}
.h1d{height:23.436000px;}
.h1c{height:23.616000px;}
.h13{height:26.097120px;}
.hf{height:27.548640px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h17{height:36.038880px;}
.h9{height:36.228240px;}
.h7{height:39.315600px;}
.h1b{height:46.602000px;}
.h22{height:49.122330px;}
.h19{height:53.928000px;}
.h18{height:54.362045px;}
.hd{height:56.234880px;}
.h3{height:56.436480px;}
.h11{height:57.165120px;}
.h12{height:60.344640px;}
.h25{height:61.236000px;}
.h14{height:62.136000px;}
.h16{height:63.374400px;}
.he{height:65.592000px;}
.h2{height:65.884219px;}
.h26{height:72.699120px;}
.h15{height:73.116000px;}
.h23{height:80.100000px;}
.h27{height:86.585445px;}
.h1e{height:99.000000px;}
.h21{height:99.036000px;}
.h1f{height:99.180000px;}
.h24{height:99.216000px;}
.h20{height:118.116000px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w9{width:147.240000px;}
.wc{width:168.480000px;}
.w8{width:227.910000px;}
.wd{width:243.615000px;}
.w7{width:252.255000px;}
.wb{width:265.710000px;}
.wa{width:286.095000px;}
.we{width:286.950000px;}
.w4{width:317.415000px;}
.w6{width:438.195000px;}
.w5{width:797.400000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.x14{left:12.960000px;}
.x26{left:14.040000px;}
.xf{left:17.640000px;}
.x1d{left:19.980000px;}
.x29{left:21.780000px;}
.x25{left:23.940000px;}
.x20{left:26.100000px;}
.x10{left:28.080000px;}
.x1c{left:29.520000px;}
.x1a{left:30.960000px;}
.x1b{left:33.480000px;}
.x2a{left:34.740000px;}
.x1e{left:36.045000px;}
.x23{left:37.620000px;}
.x27{left:39.600000px;}
.x2d{left:40.680000px;}
.x16{left:43.200000px;}
.x22{left:44.460000px;}
.x24{left:50.085000px;}
.x21{left:53.100000px;}
.x2c{left:54.720000px;}
.x28{left:68.760000px;}
.x6{left:70.740000px;}
.x2e{left:73.800000px;}
.x1{left:80.999987px;}
.x19{left:91.440000px;}
.x34{left:98.135987px;}
.x1f{left:103.005000px;}
.x5{left:105.165000px;}
.x2b{left:112.725000px;}
.xc{left:127.475987px;}
.xd{left:134.135987px;}
.xa{left:137.375987px;}
.x31{left:140.615987px;}
.x11{left:146.880000px;}
.xb{left:147.995987px;}
.x32{left:151.769987px;}
.x35{left:156.089987px;}
.x36{left:158.069987px;}
.x37{left:165.269987px;}
.x33{left:170.849987px;}
.x13{left:220.530000px;}
.x17{left:252.930000px;}
.x2f{left:273.449987px;}
.x9{left:283.575000px;}
.xe{left:285.735000px;}
.x12{left:335.414987px;}
.x15{left:473.865000px;}
.x30{left:518.865000px;}
.x18{left:540.105000px;}
.x4{left:554.145000px;}
.x7{left:717.810000px;}
.x8{left:786.600000px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.348800pt;}
.lsd{letter-spacing:-0.342933pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.121600pt;}
.ls13{letter-spacing:-0.091733pt;}
.lsc{letter-spacing:-0.059733pt;}
.ls6{letter-spacing:-0.012160pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.035840pt;}
.ls10{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.269845pt;}
.ls1{letter-spacing:0.336640pt;}
.ls11{letter-spacing:0.361600pt;}
.ls8{letter-spacing:3.392000pt;}
.lsf{letter-spacing:14.912000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws2{word-spacing:-17.664000pt;}
.ws6{word-spacing:-16.934400pt;}
.wsf{word-spacing:-16.576000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws10{word-spacing:-16.320000pt;}
.wse{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.250880pt;}
.ws9{word-spacing:-16.128000pt;}
.ws4{word-spacing:-15.132160pt;}
.wsb{word-spacing:-12.416000pt;}
.wsc{word-spacing:-12.336000pt;}
.ws3{word-spacing:-9.539840pt;}
.ws1{word-spacing:-9.391360pt;}
.ws0{word-spacing:-0.138880pt;}
.ws8{word-spacing:-0.126720pt;}
.ws7{word-spacing:0.000000pt;}
._14{margin-left:-4.361387pt;}
._b{margin-left:-2.763093pt;}
._1{margin-left:-1.029120pt;}
._2{width:0.890880pt;}
._6{width:2.081280pt;}
._3{width:3.055787pt;}
._7{width:4.298240pt;}
._10{width:5.493760pt;}
._e{width:6.720000pt;}
._8{width:8.478720pt;}
._c{width:9.446400pt;}
._9{width:10.362880pt;}
._11{width:11.456000pt;}
._12{width:12.416000pt;}
._17{width:13.312000pt;}
._d{width:14.848000pt;}
._a{width:16.043520pt;}
._1f{width:17.940480pt;}
._16{width:19.036160pt;}
._4{width:20.136960pt;}
._13{width:21.079040pt;}
._5{width:22.221653pt;}
._1e{width:24.000000pt;}
._20{width:25.088000pt;}
._1b{width:26.176000pt;}
._1a{width:27.328000pt;}
._1c{width:28.495787pt;}
._36{width:30.208000pt;}
._32{width:31.744000pt;}
._31{width:33.024000pt;}
._f{width:34.048000pt;}
._15{width:35.008000pt;}
._33{width:36.229547pt;}
._19{width:37.632000pt;}
._27{width:42.336000pt;}
._18{width:43.584000pt;}
._25{width:44.496000pt;}
._24{width:45.648000pt;}
._23{width:50.352000pt;}
._22{width:51.744000pt;}
._35{width:54.656000pt;}
._34{width:55.872000pt;}
._1d{width:57.472000pt;}
._2c{width:69.072000pt;}
._21{width:71.728000pt;}
._2f{width:89.712000pt;}
._2a{width:127.968000pt;}
._29{width:129.120000pt;}
._26{width:136.560000pt;}
._2d{width:138.192000pt;}
._28{width:174.352000pt;}
._30{width:208.224000pt;}
._2e{width:339.888000pt;}
._2b{width:437.088000pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.595937pt;}
.fsa{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fs9{font-size:69.120000pt;}
.fsd{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y43{bottom:5.920000pt;}
.y76{bottom:9.120000pt;}
.y79{bottom:9.320000pt;}
.yb{bottom:14.880000pt;}
.y8d{bottom:17.440000pt;}
.y6{bottom:17.466667pt;}
.y89{bottom:17.600000pt;}
.ya{bottom:21.472000pt;}
.y7{bottom:23.840000pt;}
.yb0{bottom:25.914667pt;}
.y83{bottom:25.920000pt;}
.y42{bottom:27.066667pt;}
.y91{bottom:34.240000pt;}
.y88{bottom:34.400000pt;}
.y44{bottom:35.066667pt;}
.y9{bottom:42.240000pt;}
.yaf{bottom:42.714667pt;}
.y82{bottom:42.720000pt;}
.yb2{bottom:42.746667pt;}
.y41{bottom:48.186667pt;}
.y87{bottom:51.200000pt;}
.y4{bottom:51.840000pt;}
.y81{bottom:59.520000pt;}
.yae{bottom:59.674667pt;}
.yab{bottom:59.680000pt;}
.y86{bottom:68.000000pt;}
.y90{bottom:68.026667pt;}
.y3{bottom:69.472000pt;}
.y84{bottom:76.320000pt;}
.y92{bottom:76.346667pt;}
.yad{bottom:76.474667pt;}
.y8a{bottom:76.480000pt;}
.y8c{bottom:84.800000pt;}
.y2{bottom:87.712000pt;}
.y8e{bottom:93.280000pt;}
.y3f{bottom:107.072000pt;}
.yde{bottom:108.672000pt;}
.y74{bottom:111.392000pt;}
.yac{bottom:115.872000pt;}
.y5{bottom:116.640000pt;}
.y3e{bottom:126.592000pt;}
.ydd{bottom:128.192000pt;}
.y73{bottom:130.912000pt;}
.y7d{bottom:138.746667pt;}
.y3d{bottom:146.106667pt;}
.y72{bottom:150.426667pt;}
.ydc{bottom:150.906667pt;}
.y3c{bottom:165.626667pt;}
.y71{bottom:169.946667pt;}
.ydb{bottom:171.706667pt;}
.y7c{bottom:176.506667pt;}
.y3b{bottom:185.146667pt;}
.y70{bottom:189.466667pt;}
.y8b{bottom:194.106667pt;}
.yda{bottom:194.426667pt;}
.y3a{bottom:204.666667pt;}
.y6f{bottom:208.986667pt;}
.y7b{bottom:214.426667pt;}
.yd9{bottom:215.226667pt;}
.yaa{bottom:220.986667pt;}
.y39{bottom:224.186667pt;}
.y6e{bottom:228.506667pt;}
.yd8{bottom:237.146667pt;}
.y38{bottom:243.706667pt;}
.y6d{bottom:248.026667pt;}
.y7a{bottom:252.186667pt;}
.yd7{bottom:256.666667pt;}
.y37{bottom:263.226667pt;}
.y6c{bottom:267.546667pt;}
.yd6{bottom:276.186667pt;}
.y36{bottom:282.586667pt;}
.y6b{bottom:287.066667pt;}
.y78{bottom:289.946667pt;}
.yd5{bottom:295.706667pt;}
.y35{bottom:302.146667pt;}
.y6a{bottom:306.466667pt;}
.yd4{bottom:315.266667pt;}
.y85{bottom:316.066667pt;}
.y34{bottom:321.666667pt;}
.y69{bottom:325.986667pt;}
.ya9{bottom:326.146667pt;}
.y77{bottom:327.906667pt;}
.yd3{bottom:334.786667pt;}
.y33{bottom:341.186667pt;}
.y68{bottom:345.506667pt;}
.yd2{bottom:354.306667pt;}
.y32{bottom:360.706667pt;}
.y67{bottom:365.026667pt;}
.y75{bottom:365.666667pt;}
.yd1{bottom:373.826667pt;}
.y31{bottom:380.226667pt;}
.y66{bottom:384.546667pt;}
.yd0{bottom:393.346667pt;}
.y30{bottom:399.746667pt;}
.y65{bottom:409.826667pt;}
.ycf{bottom:412.706667pt;}
.y2f{bottom:419.266667pt;}
.y80{bottom:421.186667pt;}
.ya8{bottom:431.266667pt;}
.y64{bottom:432.066667pt;}
.yce{bottom:432.226667pt;}
.y2e{bottom:438.466667pt;}
.y63{bottom:446.306667pt;}
.ycd{bottom:451.746667pt;}
.y2d{bottom:457.506667pt;}
.y62{bottom:465.826667pt;}
.y2c{bottom:467.746667pt;}
.ycc{bottom:471.266667pt;}
.y61{bottom:485.186667pt;}
.y2b{bottom:485.666667pt;}
.ycb{bottom:490.786667pt;}
.y2a{bottom:503.426667pt;}
.y60{bottom:504.706667pt;}
.yca{bottom:510.306667pt;}
.ya7{bottom:519.586667pt;}
.y29{bottom:521.346667pt;}
.y5f{bottom:524.226667pt;}
.y7f{bottom:526.306667pt;}
.yc9{bottom:529.826667pt;}
.y28{bottom:539.293333pt;}
.y5e{bottom:543.773333pt;}
.yc8{bottom:549.373333pt;}
.y27{bottom:557.213333pt;}
.ya6{bottom:558.493333pt;}
.y5d{bottom:563.293333pt;}
.y7e{bottom:565.853333pt;}
.yc7{bottom:568.893333pt;}
.ya5{bottom:574.173333pt;}
.y26{bottom:574.973333pt;}
.y5c{bottom:582.813333pt;}
.yc6{bottom:588.413333pt;}
.y25{bottom:592.893333pt;}
.ya4{bottom:593.693333pt;}
.y5b{bottom:602.333333pt;}
.yc5{bottom:607.773333pt;}
.y24{bottom:610.813333pt;}
.ya3{bottom:613.213333pt;}
.y5a{bottom:621.853333pt;}
.yc4{bottom:627.293333pt;}
.y23{bottom:628.733333pt;}
.ya2{bottom:632.733333pt;}
.y59{bottom:641.373333pt;}
.y22{bottom:646.493333pt;}
.yc3{bottom:646.813333pt;}
.ya1{bottom:652.253333pt;}
.yf1{bottom:659.773333pt;}
.y58{bottom:660.893333pt;}
.y21{bottom:664.413333pt;}
.yc2{bottom:666.333333pt;}
.ya0{bottom:671.773333pt;}
.yf0{bottom:679.293333pt;}
.y57{bottom:680.253333pt;}
.y20{bottom:682.333333pt;}
.yc1{bottom:685.853333pt;}
.y9f{bottom:691.293333pt;}
.yef{bottom:698.813333pt;}
.y56{bottom:699.773333pt;}
.y1f{bottom:700.253333pt;}
.yc0{bottom:705.373333pt;}
.y9e{bottom:710.813333pt;}
.y1e{bottom:718.013333pt;}
.yee{bottom:718.333333pt;}
.y55{bottom:719.293333pt;}
.ybf{bottom:724.893333pt;}
.y9d{bottom:730.173333pt;}
.y1d{bottom:735.933333pt;}
.yed{bottom:737.853333pt;}
.y54{bottom:738.813333pt;}
.ybe{bottom:744.413333pt;}
.y9c{bottom:749.693333pt;}
.y1c{bottom:753.853333pt;}
.y53{bottom:758.333333pt;}
.yec{bottom:759.933333pt;}
.ybd{bottom:763.933333pt;}
.y9b{bottom:769.213333pt;}
.y1b{bottom:771.773333pt;}
.y52{bottom:777.893333pt;}
.yeb{bottom:779.493333pt;}
.ybc{bottom:783.493333pt;}
.y9a{bottom:788.773333pt;}
.y1a{bottom:789.573333pt;}
.y51{bottom:797.413333pt;}
.yea{bottom:801.573333pt;}
.ybb{bottom:802.853333pt;}
.y19{bottom:804.933333pt;}
.y99{bottom:808.293333pt;}
.y18{bottom:812.773333pt;}
.y50{bottom:816.933333pt;}
.ye9{bottom:821.733333pt;}
.yba{bottom:822.373333pt;}
.y98{bottom:827.813333pt;}
.y17{bottom:829.733333pt;}
.y4f{bottom:836.453333pt;}
.y16{bottom:841.253333pt;}
.yb9{bottom:841.893333pt;}
.ye8{bottom:842.373333pt;}
.y97{bottom:847.333333pt;}
.y15{bottom:851.813333pt;}
.y4e{bottom:855.973333pt;}
.yb8{bottom:861.413333pt;}
.ye7{bottom:864.453333pt;}
.y96{bottom:866.853333pt;}
.y14{bottom:871.333333pt;}
.y4d{bottom:875.333333pt;}
.yb7{bottom:880.933333pt;}
.ye6{bottom:883.973333pt;}
.y95{bottom:886.373333pt;}
.y13{bottom:890.853333pt;}
.y4c{bottom:894.853333pt;}
.yb6{bottom:900.453333pt;}
.y94{bottom:905.893333pt;}
.ye5{bottom:906.053333pt;}
.y4b{bottom:914.373333pt;}
.yb5{bottom:919.973333pt;}
.y93{bottom:925.253333pt;}
.ye4{bottom:926.213333pt;}
.y12{bottom:929.093333pt;}
.y4a{bottom:933.893333pt;}
.yb4{bottom:939.493333pt;}
.ye3{bottom:948.293333pt;}
.y11{bottom:949.413333pt;}
.y8f{bottom:949.893333pt;}
.y49{bottom:953.413333pt;}
.yb3{bottom:959.013333pt;}
.ye2{bottom:967.813333pt;}
.y48{bottom:972.933333pt;}
.yb1{bottom:983.493333pt;}
.ye1{bottom:987.333333pt;}
.y40{bottom:990.853333pt;}
.y47{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.ye0{bottom:1009.413333pt;}
.y46{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.ydf{bottom:1028.960000pt;}
.y45{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h10{height:14.576000pt;}
.h6{height:15.360000pt;}
.h1a{height:20.800000pt;}
.h1d{height:20.832000pt;}
.h1c{height:20.992000pt;}
.h13{height:23.197440pt;}
.hf{height:24.487680pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h17{height:32.034560pt;}
.h9{height:32.202880pt;}
.h7{height:34.947200pt;}
.h1b{height:41.424000pt;}
.h22{height:43.664293pt;}
.h19{height:47.936000pt;}
.h18{height:48.321818pt;}
.hd{height:49.986560pt;}
.h3{height:50.165760pt;}
.h11{height:50.813440pt;}
.h12{height:53.639680pt;}
.h25{height:54.432000pt;}
.h14{height:55.232000pt;}
.h16{height:56.332800pt;}
.he{height:58.304000pt;}
.h2{height:58.563750pt;}
.h26{height:64.621440pt;}
.h15{height:64.992000pt;}
.h23{height:71.200000pt;}
.h27{height:76.964840pt;}
.h1e{height:88.000000pt;}
.h21{height:88.032000pt;}
.h1f{height:88.160000pt;}
.h24{height:88.192000pt;}
.h20{height:104.992000pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w9{width:130.880000pt;}
.wc{width:149.760000pt;}
.w8{width:202.586667pt;}
.wd{width:216.546667pt;}
.w7{width:224.226667pt;}
.wb{width:236.186667pt;}
.wa{width:254.306667pt;}
.we{width:255.066667pt;}
.w4{width:282.146667pt;}
.w6{width:389.506667pt;}
.w5{width:708.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.x14{left:11.520000pt;}
.x26{left:12.480000pt;}
.xf{left:15.680000pt;}
.x1d{left:17.760000pt;}
.x29{left:19.360000pt;}
.x25{left:21.280000pt;}
.x20{left:23.200000pt;}
.x10{left:24.960000pt;}
.x1c{left:26.240000pt;}
.x1a{left:27.520000pt;}
.x1b{left:29.760000pt;}
.x2a{left:30.880000pt;}
.x1e{left:32.040000pt;}
.x23{left:33.440000pt;}
.x27{left:35.200000pt;}
.x2d{left:36.160000pt;}
.x16{left:38.400000pt;}
.x22{left:39.520000pt;}
.x24{left:44.520000pt;}
.x21{left:47.200000pt;}
.x2c{left:48.640000pt;}
.x28{left:61.120000pt;}
.x6{left:62.880000pt;}
.x2e{left:65.600000pt;}
.x1{left:71.999988pt;}
.x19{left:81.280000pt;}
.x34{left:87.231988pt;}
.x1f{left:91.560000pt;}
.x5{left:93.480000pt;}
.x2b{left:100.200000pt;}
.xc{left:113.311988pt;}
.xd{left:119.231988pt;}
.xa{left:122.111988pt;}
.x31{left:124.991988pt;}
.x11{left:130.560000pt;}
.xb{left:131.551988pt;}
.x32{left:134.906655pt;}
.x35{left:138.746655pt;}
.x36{left:140.506655pt;}
.x37{left:146.906655pt;}
.x33{left:151.866655pt;}
.x13{left:196.026667pt;}
.x17{left:224.826667pt;}
.x2f{left:243.066655pt;}
.x9{left:252.066667pt;}
.xe{left:253.986667pt;}
.x12{left:298.146655pt;}
.x15{left:421.213333pt;}
.x30{left:461.213333pt;}
.x18{left:480.093333pt;}
.x4{left:492.573333pt;}
.x7{left:638.053333pt;}
.x8{left:699.200000pt;}
.x2{left:737.120000pt;}
}




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