
    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_294840bc4874b0a844884665.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d66e67d6a5e43b08a49eb128.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c8078bf69ad08279bb471c0b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0563752d839a09096aa8a2ed.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_21442c6a01f5013c0be3e5b0.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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_480cbcd2a402e7ad7338f8ba.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d0104c8ceefc83495f1581c0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b43f1e6838d79b5c0c52a07c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_5d59e06736f91084cd57e01e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_19048cc46f47f5df6344856a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_510b4d29af50315278f81ba3.woff2')format("woff");}.fff{font-family:fff;line-height:1.063477;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_4097ef81c7c62617d14358bb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.063477;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.738770;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_d1f6438dee4efa6930a480e9.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_7184ad1fc3bb02dc6f84afd4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.923340;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;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v1{vertical-align:20.880000px;}
.v6{vertical-align:40.320000px;}
.v3{vertical-align:47.640000px;}
.v7{vertical-align:62.760000px;}
.ls10{letter-spacing:-3.546000px;}
.ls1e{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.298200px;}
.ls5{letter-spacing:-0.127200px;}
.ls15{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.038160px;}
.ls4{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls1a{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.093000px;}
.ls13{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.132600px;}
.ls18{letter-spacing:0.135600px;}
.ls12{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.399600px;}
.ls19{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.828000px;}
.lsc{letter-spacing:2.460960px;}
.ls1c{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.ls9{letter-spacing:64.026720px;}
.lsa{letter-spacing:118.819200px;}
.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;}
}
.ws10{word-spacing:-59.772960px;}
.wsa{word-spacing:-59.760000px;}
.wsd{word-spacing:-46.268640px;}
.ws11{word-spacing:-43.224720px;}
.wsf{word-spacing:-43.200720px;}
.wsb{word-spacing:-42.480720px;}
.wsc{word-spacing:-26.219040px;}
.wse{word-spacing:-22.019040px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws12{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.ws19{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.146400px;}
.ws14{word-spacing:-14.993280px;}
.ws13{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.833200px;}
.ws4{word-spacing:-13.598760px;}
.ws8{word-spacing:-13.505760px;}
.ws7{word-spacing:-12.854880px;}
.ws6{word-spacing:-12.816720px;}
.ws0{word-spacing:-12.186000px;}
.ws18{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._15{margin-left:-6.633360px;}
._4{margin-left:-5.215920px;}
._5{margin-left:-4.142400px;}
._2{margin-left:-3.077760px;}
._3{margin-left:-2.050800px;}
._0{margin-left:-1.050000px;}
._1{width:1.038000px;}
._6{width:2.155440px;}
._11{width:3.742800px;}
._12{width:5.064000px;}
._14{width:6.932160px;}
._9{width:8.221680px;}
._d{width:10.242000px;}
._c{width:12.164880px;}
._b{width:13.532640px;}
._f{width:16.890000px;}
._e{width:18.107280px;}
._13{width:19.481760px;}
._18{width:21.073200px;}
._10{width:22.806240px;}
._19{width:23.806560px;}
._a{width:25.375920px;}
._7{width:27.362400px;}
._8{width:51.533280px;}
._17{width:76.672080px;}
._16{width:82.289520px;}
.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(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:0.180000px;}
.y44{bottom:3.240000px;}
.yd1{bottom:3.270000px;}
.yba{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y49{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y47{bottom:10.620000px;}
.y1c{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.ya0{bottom:17.280000px;}
.y4{bottom:17.316000px;}
.yb9{bottom:17.325000px;}
.yf0{bottom:19.620000px;}
.y2{bottom:20.196000px;}
.y43{bottom:20.340000px;}
.yc4{bottom:20.520000px;}
.yd0{bottom:20.550000px;}
.ye9{bottom:20.565000px;}
.yda{bottom:21.240000px;}
.y48{bottom:22.320000px;}
.y19{bottom:23.760000px;}
.y46{bottom:25.380000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.yef{bottom:36.900000px;}
.y42{bottom:37.620000px;}
.y18{bottom:40.365000px;}
.ya{bottom:46.440000px;}
.y1{bottom:53.820000px;}
.y41{bottom:54.900000px;}
.yfa{bottom:55.800000px;}
.y17{bottom:56.745000px;}
.y40{bottom:72.180000px;}
.y16{bottom:73.305000px;}
.y9{bottom:73.440000px;}
.y15{bottom:85.725000px;}
.y3f{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y14{bottom:100.305000px;}
.y3e{bottom:106.560000px;}
.y7{bottom:111.270000px;}
.yd8{bottom:112.176000px;}
.y2d{bottom:115.200000px;}
.y13{bottom:115.605000px;}
.y58{bottom:116.676000px;}
.y95{bottom:119.556000px;}
.y3d{bottom:123.840000px;}
.yd7{bottom:129.456000px;}
.y2c{bottom:130.500000px;}
.y112{bottom:131.256000px;}
.y57{bottom:133.956000px;}
.y12{bottom:134.685000px;}
.y94{bottom:136.836000px;}
.y3c{bottom:141.120000px;}
.yd6{bottom:143.496000px;}
.y111{bottom:148.536000px;}
.y2b{bottom:148.680000px;}
.y56{bottom:151.050000px;}
.y93{bottom:154.110000px;}
.y3b{bottom:158.400000px;}
.y11{bottom:160.425000px;}
.y110{bottom:165.810000px;}
.y2a{bottom:165.960000px;}
.y55{bottom:168.330000px;}
.y92{bottom:171.390000px;}
.y3a{bottom:175.680000px;}
.y10f{bottom:182.910000px;}
.y29{bottom:183.420000px;}
.y10{bottom:184.725000px;}
.y54{bottom:185.610000px;}
.y91{bottom:188.670000px;}
.y39{bottom:192.960000px;}
.y10e{bottom:200.190000px;}
.y139{bottom:200.730000px;}
.y28{bottom:200.910000px;}
.y53{bottom:202.890000px;}
.y90{bottom:205.950000px;}
.y38{bottom:210.090000px;}
.y10d{bottom:217.470000px;}
.y27{bottom:218.190000px;}
.y138{bottom:218.730000px;}
.y52{bottom:220.170000px;}
.y8f{bottom:224.130000px;}
.y37{bottom:227.370000px;}
.y10c{bottom:234.750000px;}
.y26{bottom:235.650000px;}
.y137{bottom:236.370000px;}
.y51{bottom:237.270000px;}
.y8e{bottom:242.490000px;}
.y36{bottom:244.650000px;}
.y10b{bottom:252.030000px;}
.y25{bottom:253.110000px;}
.y136{bottom:253.470000px;}
.y50{bottom:254.550000px;}
.y8d{bottom:259.770000px;}
.y35{bottom:261.930000px;}
.ybe{bottom:265.530000px;}
.y10a{bottom:269.130000px;}
.y24{bottom:270.390000px;}
.y135{bottom:270.750000px;}
.y4f{bottom:271.830000px;}
.y8c{bottom:277.050000px;}
.y34{bottom:279.210000px;}
.ybd{bottom:280.290000px;}
.y109{bottom:286.410000px;}
.y23{bottom:287.850000px;}
.y134{bottom:288.030000px;}
.y4e{bottom:289.110000px;}
.y8b{bottom:294.330000px;}
.y33{bottom:296.490000px;}
.ybc{bottom:298.290000px;}
.y108{bottom:303.690000px;}
.y22{bottom:305.310000px;}
.y4d{bottom:306.390000px;}
.y8a{bottom:311.430000px;}
.y32{bottom:313.590000px;}
.ybb{bottom:316.290000px;}
.y107{bottom:320.970000px;}
.y21{bottom:322.590000px;}
.y4c{bottom:323.670000px;}
.y89{bottom:328.710000px;}
.y31{bottom:330.870000px;}
.yb8{bottom:334.290000px;}
.y106{bottom:338.295000px;}
.y133{bottom:339.915000px;}
.y20{bottom:340.230000px;}
.y4b{bottom:340.815000px;}
.y88{bottom:346.035000px;}
.y30{bottom:348.150000px;}
.yb7{bottom:352.335000px;}
.y105{bottom:355.575000px;}
.y132{bottom:357.015000px;}
.y4a{bottom:358.095000px;}
.y87{bottom:363.315000px;}
.y2f{bottom:365.430000px;}
.y1f{bottom:367.590000px;}
.yb6{bottom:370.335000px;}
.y45{bottom:372.135000px;}
.y104{bottom:372.675000px;}
.y131{bottom:374.295000px;}
.y86{bottom:380.595000px;}
.y2e{bottom:382.710000px;}
.y1e{bottom:385.230000px;}
.yb5{bottom:388.335000px;}
.y103{bottom:389.955000px;}
.y130{bottom:391.575000px;}
.y85{bottom:397.875000px;}
.yd5{bottom:400.935000px;}
.y101{bottom:404.715000px;}
.yb4{bottom:406.335000px;}
.y1d{bottom:408.855000px;}
.y84{bottom:414.975000px;}
.ye0{bottom:416.595000px;}
.y102{bottom:422.715000px;}
.yb3{bottom:424.335000px;}
.y12f{bottom:426.135000px;}
.y83{bottom:432.255000px;}
.ydf{bottom:435.315000px;}
.yff{bottom:440.715000px;}
.yb2{bottom:442.335000px;}
.y12e{bottom:443.415000px;}
.y82{bottom:449.535000px;}
.yde{bottom:454.035000px;}
.y100{bottom:458.715000px;}
.yb1{bottom:460.335000px;}
.y12d{bottom:460.515000px;}
.y81{bottom:466.815000px;}
.ydd{bottom:472.035000px;}
.yfd{bottom:476.715000px;}
.y12c{bottom:477.795000px;}
.yb0{bottom:478.335000px;}
.y80{bottom:484.095000px;}
.ydc{bottom:490.035000px;}
.yfe{bottom:494.715000px;}
.y12b{bottom:495.075000px;}
.yaf{bottom:496.335000px;}
.y7f{bottom:501.375000px;}
.yd9{bottom:508.035000px;}
.y12a{bottom:512.355000px;}
.yfc{bottom:512.715000px;}
.yae{bottom:514.335000px;}
.y7e{bottom:519.735000px;}
.ydb{bottom:526.035000px;}
.y129{bottom:529.635000px;}
.yf9{bottom:530.715000px;}
.yad{bottom:532.335000px;}
.y7d{bottom:540.075000px;}
.y128{bottom:546.735000px;}
.yac{bottom:550.335000px;}
.yd4{bottom:552.495000px;}
.y7c{bottom:558.435000px;}
.y127{bottom:564.015000px;}
.yfb{bottom:565.995000px;}
.yab{bottom:568.335000px;}
.yd3{bottom:569.595000px;}
.y7b{bottom:575.715000px;}
.y126{bottom:581.295000px;}
.yd2{bottom:584.355000px;}
.yaa{bottom:586.335000px;}
.y7a{bottom:589.755000px;}
.y125{bottom:598.575000px;}
.y79{bottom:599.835000px;}
.ycf{bottom:602.355000px;}
.ya9{bottom:604.365000px;}
.yf8{bottom:604.545000px;}
.y124{bottom:615.885000px;}
.yf7{bottom:621.825000px;}
.ya8{bottom:622.365000px;}
.y78{bottom:627.225000px;}
.y123{bottom:633.165000px;}
.yf5{bottom:636.585000px;}
.yce{bottom:637.665000px;}
.ya7{bottom:640.365000px;}
.y77{bottom:644.505000px;}
.y122{bottom:650.265000px;}
.yf6{bottom:654.585000px;}
.ycd{bottom:655.665000px;}
.ya6{bottom:658.365000px;}
.y76{bottom:661.785000px;}
.y121{bottom:667.545000px;}
.yf3{bottom:672.585000px;}
.ycc{bottom:673.665000px;}
.y75{bottom:679.065000px;}
.ya5{bottom:679.605000px;}
.y120{bottom:684.825000px;}
.yf4{bottom:690.585000px;}
.ycb{bottom:691.665000px;}
.y74{bottom:696.345000px;}
.ya4{bottom:696.885000px;}
.y11f{bottom:702.105000px;}
.yf1{bottom:708.585000px;}
.ya3{bottom:711.645000px;}
.y73{bottom:714.525000px;}
.y11e{bottom:719.385000px;}
.yf2{bottom:726.585000px;}
.yca{bottom:726.945000px;}
.ya2{bottom:729.645000px;}
.y72{bottom:732.885000px;}
.y11d{bottom:736.665000px;}
.yed{bottom:744.585000px;}
.yc9{bottom:744.945000px;}
.ya1{bottom:747.645000px;}
.y71{bottom:751.245000px;}
.y11c{bottom:753.765000px;}
.yc8{bottom:762.945000px;}
.y9f{bottom:765.645000px;}
.y70{bottom:769.605000px;}
.y11b{bottom:771.045000px;}
.yc7{bottom:780.945000px;}
.y9e{bottom:783.645000px;}
.y6f{bottom:787.965000px;}
.y11a{bottom:788.325000px;}
.yee{bottom:796.245000px;}
.yc6{bottom:798.945000px;}
.y9d{bottom:801.645000px;}
.y6e{bottom:805.065000px;}
.y1a{bottom:805.425000px;}
.y119{bottom:805.605000px;}
.yc5{bottom:816.945000px;}
.yec{bottom:817.485000px;}
.y6d{bottom:822.345000px;}
.y9c{bottom:822.885000px;}
.yeb{bottom:834.765000px;}
.yc3{bottom:834.945000px;}
.yf{bottom:835.125000px;}
.y9b{bottom:839.985000px;}
.y6c{bottom:840.705000px;}
.yea{bottom:849.525000px;}
.y9a{bottom:857.265000px;}
.y6b{bottom:859.065000px;}
.ye8{bottom:867.525000px;}
.yc2{bottom:873.510000px;}
.y99{bottom:874.590000px;}
.y6a{bottom:876.390000px;}
.yc1{bottom:890.790000px;}
.y98{bottom:891.870000px;}
.y69{bottom:893.670000px;}
.ye7{bottom:902.850000px;}
.yc0{bottom:907.890000px;}
.y97{bottom:909.150000px;}
.y68{bottom:910.770000px;}
.ye6{bottom:920.850000px;}
.ybf{bottom:921.930000px;}
.y96{bottom:926.430000px;}
.y67{bottom:927.690000px;}
.ye5{bottom:938.850000px;}
.y66{bottom:943.530000px;}
.ye4{bottom:956.850000px;}
.y65{bottom:960.810000px;}
.ye3{bottom:974.850000px;}
.y64{bottom:978.090000px;}
.y63{bottom:995.370000px;}
.y62{bottom:1012.650000px;}
.ye2{bottom:1013.190000px;}
.y61{bottom:1029.930000px;}
.ye1{bottom:1030.470000px;}
.yd{bottom:1034.970000px;}
.y118{bottom:1045.230000px;}
.y60{bottom:1047.030000px;}
.y6{bottom:1060.350000px;}
.y117{bottom:1063.230000px;}
.y5f{bottom:1064.310000px;}
.y116{bottom:1081.230000px;}
.y5e{bottom:1081.590000px;}
.y5d{bottom:1098.870000px;}
.y115{bottom:1099.230000px;}
.y5c{bottom:1116.150000px;}
.y114{bottom:1117.230000px;}
.y5b{bottom:1133.430000px;}
.y113{bottom:1135.230000px;}
.y5a{bottom:1150.560000px;}
.y59{bottom:1167.840000px;}
.h28{height:17.100000px;}
.h21{height:17.280000px;}
.h22{height:17.316000px;}
.hb{height:25.020000px;}
.h12{height:29.700000px;}
.h11{height:32.103633px;}
.h2{height:32.976000px;}
.h29{height:34.380000px;}
.h24{height:34.560000px;}
.h25{height:34.596000px;}
.h2c{height:35.100000px;}
.h26{height:35.280000px;}
.h8{height:36.180000px;}
.h19{height:36.720000px;}
.h1c{height:38.100586px;}
.h23{height:40.472227px;}
.h1b{height:42.164648px;}
.h17{height:42.186445px;}
.h18{height:43.215117px;}
.h1d{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h15{height:47.980898px;}
.h2e{height:48.312422px;}
.h27{height:48.995859px;}
.h16{height:49.742227px;}
.h20{height:50.364141px;}
.h2b{height:50.940000px;}
.h1a{height:52.260820px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h2a{height:68.940000px;}
.h2d{height:69.840000px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h1f{height:97.954219px;}
.h1e{height:98.004141px;}
.h7{height:121.536000px;}
.hc{height:199.830000px;}
.h14{height:396.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:64.620000px;}
.w13{width:67.500000px;}
.w3{width:74.880000px;}
.w2c{width:80.460000px;}
.w18{width:84.600000px;}
.w1e{width:89.676000px;}
.w39{width:90.216000px;}
.w24{width:90.360000px;}
.w25{width:90.396000px;}
.w12{width:90.900000px;}
.w20{width:91.080000px;}
.w3f{width:92.160000px;}
.w30{width:93.996000px;}
.w3d{width:94.716000px;}
.w34{width:97.740000px;}
.w3a{width:99.216000px;}
.w16{width:104.076000px;}
.w26{width:104.220000px;}
.w28{width:104.400000px;}
.w23{width:104.796000px;}
.w27{width:105.516000px;}
.w3e{width:106.776000px;}
.w10{width:110.196000px;}
.w17{width:112.716000px;}
.w1a{width:113.256000px;}
.w2b{width:115.596000px;}
.w11{width:119.916000px;}
.w42{width:121.860000px;}
.w41{width:121.896000px;}
.w35{width:122.076000px;}
.w22{width:123.876000px;}
.wf{width:127.620000px;}
.w32{width:135.360000px;}
.w2e{width:138.600000px;}
.w2d{width:138.636000px;}
.w36{width:141.336000px;}
.w38{width:142.416000px;}
.w5{width:151.950000px;}
.w2f{width:160.050000px;}
.wa{width:163.110000px;}
.w3b{width:164.190000px;}
.wb{width:166.530000px;}
.w14{width:183.630000px;}
.w3c{width:189.930000px;}
.w15{width:193.170000px;}
.wc{width:198.750000px;}
.wd{width:216.030000px;}
.w1f{width:216.210000px;}
.w1d{width:218.010000px;}
.w8{width:223.275000px;}
.we{width:226.875000px;}
.w31{width:233.355000px;}
.w40{width:244.470000px;}
.w29{width:254.775000px;}
.w33{width:264.135000px;}
.w2a{width:277.950000px;}
.w1c{width:308.010000px;}
.w1b{width:308.415000px;}
.w37{width:400.215000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w21{width:730.410000px;}
.w43{width:731.130000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:7.560000px;}
.x2{left:8.640000px;}
.x15{left:12.600000px;}
.x10{left:17.676000px;}
.xc{left:26.676000px;}
.xf{left:50.076000px;}
.x12{left:56.196000px;}
.xd{left:60.876000px;}
.x11{left:63.216000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x16{left:108.035987px;}
.x25{left:115.415987px;}
.x47{left:135.035987px;}
.xe{left:160.590000px;}
.x1d{left:174.449987px;}
.x2f{left:194.970000px;}
.x2d{left:203.069987px;}
.x33{left:206.130000px;}
.x13{left:215.175000px;}
.x6{left:224.850000px;}
.x2b{left:232.769987px;}
.x1a{left:237.090000px;}
.x3e{left:241.770000px;}
.x19{left:243.569987px;}
.x26{left:257.610000px;}
.x43{left:271.830000px;}
.x9{left:288.435000px;}
.x14{left:296.175000px;}
.x1e{left:300.855000px;}
.x34{left:311.655000px;}
.x3f{left:315.435000px;}
.x3a{left:336.495000px;}
.x24{left:342.974987px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x17{left:389.054987px;}
.x35{left:402.915000px;}
.x1b{left:404.355000px;}
.x31{left:413.715000px;}
.x1f{left:429.195000px;}
.x2e{left:446.474987px;}
.x27{left:451.515000px;}
.x18{left:452.774987px;}
.xa{left:455.700000px;}
.x44{left:474.765000px;}
.x3d{left:475.845000px;}
.x37{left:494.025000px;}
.x30{left:504.105000px;}
.x20{left:540.105000px;}
.x42{left:551.445000px;}
.x28{left:556.305000px;}
.x45{left:567.645000px;}
.x41{left:574.305000px;}
.x38{left:598.965000px;}
.x1c{left:603.825000px;}
.x3b{left:615.345000px;}
.x21{left:660.750000px;}
.x29{left:669.750000px;}
.x46{left:690.270000px;}
.x2c{left:692.969987px;}
.x39{left:705.390000px;}
.x40{left:716.550000px;}
.x32{left:721.050000px;}
.x3c{left:731.670000px;}
.x23{left:737.249987px;}
.x3{left:745.890000px;}
.x22{left:752.370000px;}
.x2a{left:755.250000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v1{vertical-align:18.560000pt;}
.v6{vertical-align:35.840000pt;}
.v3{vertical-align:42.346667pt;}
.v7{vertical-align:55.786667pt;}
.ls10{letter-spacing:-3.152000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.265067pt;}
.ls5{letter-spacing:-0.113067pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.033920pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls1a{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.082667pt;}
.ls13{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.117867pt;}
.ls18{letter-spacing:0.120533pt;}
.ls12{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.355200pt;}
.ls19{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.736000pt;}
.lsc{letter-spacing:2.187520pt;}
.ls1c{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ls9{letter-spacing:56.912640pt;}
.lsa{letter-spacing:105.617067pt;}
.ws10{word-spacing:-53.131520pt;}
.wsa{word-spacing:-53.120000pt;}
.wsd{word-spacing:-41.127680pt;}
.ws11{word-spacing:-38.421973pt;}
.wsf{word-spacing:-38.400640pt;}
.wsb{word-spacing:-37.760640pt;}
.wsc{word-spacing:-23.305813pt;}
.wse{word-spacing:-19.572480pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws12{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.ws19{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.327360pt;}
.ws13{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.185067pt;}
.ws4{word-spacing:-12.087787pt;}
.ws8{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.426560pt;}
.ws6{word-spacing:-11.392640pt;}
.ws0{word-spacing:-10.832000pt;}
.ws18{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._15{margin-left:-5.896320pt;}
._4{margin-left:-4.636373pt;}
._5{margin-left:-3.682133pt;}
._2{margin-left:-2.735787pt;}
._3{margin-left:-1.822933pt;}
._0{margin-left:-0.933333pt;}
._1{width:0.922667pt;}
._6{width:1.915947pt;}
._11{width:3.326933pt;}
._12{width:4.501333pt;}
._14{width:6.161920pt;}
._9{width:7.308160pt;}
._d{width:9.104000pt;}
._c{width:10.813227pt;}
._b{width:12.029013pt;}
._f{width:15.013333pt;}
._e{width:16.095360pt;}
._13{width:17.317120pt;}
._18{width:18.731733pt;}
._10{width:20.272213pt;}
._19{width:21.161387pt;}
._a{width:22.556373pt;}
._7{width:24.322133pt;}
._8{width:45.807360pt;}
._17{width:68.152960pt;}
._16{width:73.146240pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:0.160000pt;}
.y44{bottom:2.880000pt;}
.yd1{bottom:2.906667pt;}
.yba{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y49{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y47{bottom:9.440000pt;}
.y1c{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.ya0{bottom:15.360000pt;}
.y4{bottom:15.392000pt;}
.yb9{bottom:15.400000pt;}
.yf0{bottom:17.440000pt;}
.y2{bottom:17.952000pt;}
.y43{bottom:18.080000pt;}
.yc4{bottom:18.240000pt;}
.yd0{bottom:18.266667pt;}
.ye9{bottom:18.280000pt;}
.yda{bottom:18.880000pt;}
.y48{bottom:19.840000pt;}
.y19{bottom:21.120000pt;}
.y46{bottom:22.560000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.yef{bottom:32.800000pt;}
.y42{bottom:33.440000pt;}
.y18{bottom:35.880000pt;}
.ya{bottom:41.280000pt;}
.y1{bottom:47.840000pt;}
.y41{bottom:48.800000pt;}
.yfa{bottom:49.600000pt;}
.y17{bottom:50.440000pt;}
.y40{bottom:64.160000pt;}
.y16{bottom:65.160000pt;}
.y9{bottom:65.280000pt;}
.y15{bottom:76.200000pt;}
.y3f{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y14{bottom:89.160000pt;}
.y3e{bottom:94.720000pt;}
.y7{bottom:98.906667pt;}
.yd8{bottom:99.712000pt;}
.y2d{bottom:102.400000pt;}
.y13{bottom:102.760000pt;}
.y58{bottom:103.712000pt;}
.y95{bottom:106.272000pt;}
.y3d{bottom:110.080000pt;}
.yd7{bottom:115.072000pt;}
.y2c{bottom:116.000000pt;}
.y112{bottom:116.672000pt;}
.y57{bottom:119.072000pt;}
.y12{bottom:119.720000pt;}
.y94{bottom:121.632000pt;}
.y3c{bottom:125.440000pt;}
.yd6{bottom:127.552000pt;}
.y111{bottom:132.032000pt;}
.y2b{bottom:132.160000pt;}
.y56{bottom:134.266667pt;}
.y93{bottom:136.986667pt;}
.y3b{bottom:140.800000pt;}
.y11{bottom:142.600000pt;}
.y110{bottom:147.386667pt;}
.y2a{bottom:147.520000pt;}
.y55{bottom:149.626667pt;}
.y92{bottom:152.346667pt;}
.y3a{bottom:156.160000pt;}
.y10f{bottom:162.586667pt;}
.y29{bottom:163.040000pt;}
.y10{bottom:164.200000pt;}
.y54{bottom:164.986667pt;}
.y91{bottom:167.706667pt;}
.y39{bottom:171.520000pt;}
.y10e{bottom:177.946667pt;}
.y139{bottom:178.426667pt;}
.y28{bottom:178.586667pt;}
.y53{bottom:180.346667pt;}
.y90{bottom:183.066667pt;}
.y38{bottom:186.746667pt;}
.y10d{bottom:193.306667pt;}
.y27{bottom:193.946667pt;}
.y138{bottom:194.426667pt;}
.y52{bottom:195.706667pt;}
.y8f{bottom:199.226667pt;}
.y37{bottom:202.106667pt;}
.y10c{bottom:208.666667pt;}
.y26{bottom:209.466667pt;}
.y137{bottom:210.106667pt;}
.y51{bottom:210.906667pt;}
.y8e{bottom:215.546667pt;}
.y36{bottom:217.466667pt;}
.y10b{bottom:224.026667pt;}
.y25{bottom:224.986667pt;}
.y136{bottom:225.306667pt;}
.y50{bottom:226.266667pt;}
.y8d{bottom:230.906667pt;}
.y35{bottom:232.826667pt;}
.ybe{bottom:236.026667pt;}
.y10a{bottom:239.226667pt;}
.y24{bottom:240.346667pt;}
.y135{bottom:240.666667pt;}
.y4f{bottom:241.626667pt;}
.y8c{bottom:246.266667pt;}
.y34{bottom:248.186667pt;}
.ybd{bottom:249.146667pt;}
.y109{bottom:254.586667pt;}
.y23{bottom:255.866667pt;}
.y134{bottom:256.026667pt;}
.y4e{bottom:256.986667pt;}
.y8b{bottom:261.626667pt;}
.y33{bottom:263.546667pt;}
.ybc{bottom:265.146667pt;}
.y108{bottom:269.946667pt;}
.y22{bottom:271.386667pt;}
.y4d{bottom:272.346667pt;}
.y8a{bottom:276.826667pt;}
.y32{bottom:278.746667pt;}
.ybb{bottom:281.146667pt;}
.y107{bottom:285.306667pt;}
.y21{bottom:286.746667pt;}
.y4c{bottom:287.706667pt;}
.y89{bottom:292.186667pt;}
.y31{bottom:294.106667pt;}
.yb8{bottom:297.146667pt;}
.y106{bottom:300.706667pt;}
.y133{bottom:302.146667pt;}
.y20{bottom:302.426667pt;}
.y4b{bottom:302.946667pt;}
.y88{bottom:307.586667pt;}
.y30{bottom:309.466667pt;}
.yb7{bottom:313.186667pt;}
.y105{bottom:316.066667pt;}
.y132{bottom:317.346667pt;}
.y4a{bottom:318.306667pt;}
.y87{bottom:322.946667pt;}
.y2f{bottom:324.826667pt;}
.y1f{bottom:326.746667pt;}
.yb6{bottom:329.186667pt;}
.y45{bottom:330.786667pt;}
.y104{bottom:331.266667pt;}
.y131{bottom:332.706667pt;}
.y86{bottom:338.306667pt;}
.y2e{bottom:340.186667pt;}
.y1e{bottom:342.426667pt;}
.yb5{bottom:345.186667pt;}
.y103{bottom:346.626667pt;}
.y130{bottom:348.066667pt;}
.y85{bottom:353.666667pt;}
.yd5{bottom:356.386667pt;}
.y101{bottom:359.746667pt;}
.yb4{bottom:361.186667pt;}
.y1d{bottom:363.426667pt;}
.y84{bottom:368.866667pt;}
.ye0{bottom:370.306667pt;}
.y102{bottom:375.746667pt;}
.yb3{bottom:377.186667pt;}
.y12f{bottom:378.786667pt;}
.y83{bottom:384.226667pt;}
.ydf{bottom:386.946667pt;}
.yff{bottom:391.746667pt;}
.yb2{bottom:393.186667pt;}
.y12e{bottom:394.146667pt;}
.y82{bottom:399.586667pt;}
.yde{bottom:403.586667pt;}
.y100{bottom:407.746667pt;}
.yb1{bottom:409.186667pt;}
.y12d{bottom:409.346667pt;}
.y81{bottom:414.946667pt;}
.ydd{bottom:419.586667pt;}
.yfd{bottom:423.746667pt;}
.y12c{bottom:424.706667pt;}
.yb0{bottom:425.186667pt;}
.y80{bottom:430.306667pt;}
.ydc{bottom:435.586667pt;}
.yfe{bottom:439.746667pt;}
.y12b{bottom:440.066667pt;}
.yaf{bottom:441.186667pt;}
.y7f{bottom:445.666667pt;}
.yd9{bottom:451.586667pt;}
.y12a{bottom:455.426667pt;}
.yfc{bottom:455.746667pt;}
.yae{bottom:457.186667pt;}
.y7e{bottom:461.986667pt;}
.ydb{bottom:467.586667pt;}
.y129{bottom:470.786667pt;}
.yf9{bottom:471.746667pt;}
.yad{bottom:473.186667pt;}
.y7d{bottom:480.066667pt;}
.y128{bottom:485.986667pt;}
.yac{bottom:489.186667pt;}
.yd4{bottom:491.106667pt;}
.y7c{bottom:496.386667pt;}
.y127{bottom:501.346667pt;}
.yfb{bottom:503.106667pt;}
.yab{bottom:505.186667pt;}
.yd3{bottom:506.306667pt;}
.y7b{bottom:511.746667pt;}
.y126{bottom:516.706667pt;}
.yd2{bottom:519.426667pt;}
.yaa{bottom:521.186667pt;}
.y7a{bottom:524.226667pt;}
.y125{bottom:532.066667pt;}
.y79{bottom:533.186667pt;}
.ycf{bottom:535.426667pt;}
.ya9{bottom:537.213333pt;}
.yf8{bottom:537.373333pt;}
.y124{bottom:547.453333pt;}
.yf7{bottom:552.733333pt;}
.ya8{bottom:553.213333pt;}
.y78{bottom:557.533333pt;}
.y123{bottom:562.813333pt;}
.yf5{bottom:565.853333pt;}
.yce{bottom:566.813333pt;}
.ya7{bottom:569.213333pt;}
.y77{bottom:572.893333pt;}
.y122{bottom:578.013333pt;}
.yf6{bottom:581.853333pt;}
.ycd{bottom:582.813333pt;}
.ya6{bottom:585.213333pt;}
.y76{bottom:588.253333pt;}
.y121{bottom:593.373333pt;}
.yf3{bottom:597.853333pt;}
.ycc{bottom:598.813333pt;}
.y75{bottom:603.613333pt;}
.ya5{bottom:604.093333pt;}
.y120{bottom:608.733333pt;}
.yf4{bottom:613.853333pt;}
.ycb{bottom:614.813333pt;}
.y74{bottom:618.973333pt;}
.ya4{bottom:619.453333pt;}
.y11f{bottom:624.093333pt;}
.yf1{bottom:629.853333pt;}
.ya3{bottom:632.573333pt;}
.y73{bottom:635.133333pt;}
.y11e{bottom:639.453333pt;}
.yf2{bottom:645.853333pt;}
.yca{bottom:646.173333pt;}
.ya2{bottom:648.573333pt;}
.y72{bottom:651.453333pt;}
.y11d{bottom:654.813333pt;}
.yed{bottom:661.853333pt;}
.yc9{bottom:662.173333pt;}
.ya1{bottom:664.573333pt;}
.y71{bottom:667.773333pt;}
.y11c{bottom:670.013333pt;}
.yc8{bottom:678.173333pt;}
.y9f{bottom:680.573333pt;}
.y70{bottom:684.093333pt;}
.y11b{bottom:685.373333pt;}
.yc7{bottom:694.173333pt;}
.y9e{bottom:696.573333pt;}
.y6f{bottom:700.413333pt;}
.y11a{bottom:700.733333pt;}
.yee{bottom:707.773333pt;}
.yc6{bottom:710.173333pt;}
.y9d{bottom:712.573333pt;}
.y6e{bottom:715.613333pt;}
.y1a{bottom:715.933333pt;}
.y119{bottom:716.093333pt;}
.yc5{bottom:726.173333pt;}
.yec{bottom:726.653333pt;}
.y6d{bottom:730.973333pt;}
.y9c{bottom:731.453333pt;}
.yeb{bottom:742.013333pt;}
.yc3{bottom:742.173333pt;}
.yf{bottom:742.333333pt;}
.y9b{bottom:746.653333pt;}
.y6c{bottom:747.293333pt;}
.yea{bottom:755.133333pt;}
.y9a{bottom:762.013333pt;}
.y6b{bottom:763.613333pt;}
.ye8{bottom:771.133333pt;}
.yc2{bottom:776.453333pt;}
.y99{bottom:777.413333pt;}
.y6a{bottom:779.013333pt;}
.yc1{bottom:791.813333pt;}
.y98{bottom:792.773333pt;}
.y69{bottom:794.373333pt;}
.ye7{bottom:802.533333pt;}
.yc0{bottom:807.013333pt;}
.y97{bottom:808.133333pt;}
.y68{bottom:809.573333pt;}
.ye6{bottom:818.533333pt;}
.ybf{bottom:819.493333pt;}
.y96{bottom:823.493333pt;}
.y67{bottom:824.613333pt;}
.ye5{bottom:834.533333pt;}
.y66{bottom:838.693333pt;}
.ye4{bottom:850.533333pt;}
.y65{bottom:854.053333pt;}
.ye3{bottom:866.533333pt;}
.y64{bottom:869.413333pt;}
.y63{bottom:884.773333pt;}
.y62{bottom:900.133333pt;}
.ye2{bottom:900.613333pt;}
.y61{bottom:915.493333pt;}
.ye1{bottom:915.973333pt;}
.yd{bottom:919.973333pt;}
.y118{bottom:929.093333pt;}
.y60{bottom:930.693333pt;}
.y6{bottom:942.533333pt;}
.y117{bottom:945.093333pt;}
.y5f{bottom:946.053333pt;}
.y116{bottom:961.093333pt;}
.y5e{bottom:961.413333pt;}
.y5d{bottom:976.773333pt;}
.y115{bottom:977.093333pt;}
.y5c{bottom:992.133333pt;}
.y114{bottom:993.093333pt;}
.y5b{bottom:1007.493333pt;}
.y113{bottom:1009.093333pt;}
.y5a{bottom:1022.720000pt;}
.y59{bottom:1038.080000pt;}
.h28{height:15.200000pt;}
.h21{height:15.360000pt;}
.h22{height:15.392000pt;}
.hb{height:22.240000pt;}
.h12{height:26.400000pt;}
.h11{height:28.536563pt;}
.h2{height:29.312000pt;}
.h29{height:30.560000pt;}
.h24{height:30.720000pt;}
.h25{height:30.752000pt;}
.h2c{height:31.200000pt;}
.h26{height:31.360000pt;}
.h8{height:32.160000pt;}
.h19{height:32.640000pt;}
.h1c{height:33.867188pt;}
.h23{height:35.975313pt;}
.h1b{height:37.479688pt;}
.h17{height:37.499062pt;}
.h18{height:38.413438pt;}
.h1d{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h15{height:42.649687pt;}
.h2e{height:42.944375pt;}
.h27{height:43.551875pt;}
.h16{height:44.215312pt;}
.h20{height:44.768125pt;}
.h2b{height:45.280000pt;}
.h1a{height:46.454062pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h2a{height:61.280000pt;}
.h2d{height:62.080000pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h1f{height:87.070417pt;}
.h1e{height:87.114792pt;}
.h7{height:108.032000pt;}
.hc{height:177.626667pt;}
.h14{height:352.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:57.440000pt;}
.w13{width:60.000000pt;}
.w3{width:66.560000pt;}
.w2c{width:71.520000pt;}
.w18{width:75.200000pt;}
.w1e{width:79.712000pt;}
.w39{width:80.192000pt;}
.w24{width:80.320000pt;}
.w25{width:80.352000pt;}
.w12{width:80.800000pt;}
.w20{width:80.960000pt;}
.w3f{width:81.920000pt;}
.w30{width:83.552000pt;}
.w3d{width:84.192000pt;}
.w34{width:86.880000pt;}
.w3a{width:88.192000pt;}
.w16{width:92.512000pt;}
.w26{width:92.640000pt;}
.w28{width:92.800000pt;}
.w23{width:93.152000pt;}
.w27{width:93.792000pt;}
.w3e{width:94.912000pt;}
.w10{width:97.952000pt;}
.w17{width:100.192000pt;}
.w1a{width:100.672000pt;}
.w2b{width:102.752000pt;}
.w11{width:106.592000pt;}
.w42{width:108.320000pt;}
.w41{width:108.352000pt;}
.w35{width:108.512000pt;}
.w22{width:110.112000pt;}
.wf{width:113.440000pt;}
.w32{width:120.320000pt;}
.w2e{width:123.200000pt;}
.w2d{width:123.232000pt;}
.w36{width:125.632000pt;}
.w38{width:126.592000pt;}
.w5{width:135.066667pt;}
.w2f{width:142.266667pt;}
.wa{width:144.986667pt;}
.w3b{width:145.946667pt;}
.wb{width:148.026667pt;}
.w14{width:163.226667pt;}
.w3c{width:168.826667pt;}
.w15{width:171.706667pt;}
.wc{width:176.666667pt;}
.wd{width:192.026667pt;}
.w1f{width:192.186667pt;}
.w1d{width:193.786667pt;}
.w8{width:198.466667pt;}
.we{width:201.666667pt;}
.w31{width:207.426667pt;}
.w40{width:217.306667pt;}
.w29{width:226.466667pt;}
.w33{width:234.786667pt;}
.w2a{width:247.066667pt;}
.w1c{width:273.786667pt;}
.w1b{width:274.146667pt;}
.w37{width:355.746667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w21{width:649.253333pt;}
.w43{width:649.893333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:6.720000pt;}
.x2{left:7.680000pt;}
.x15{left:11.200000pt;}
.x10{left:15.712000pt;}
.xc{left:23.712000pt;}
.xf{left:44.512000pt;}
.x12{left:49.952000pt;}
.xd{left:54.112000pt;}
.x11{left:56.192000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x16{left:96.031988pt;}
.x25{left:102.591988pt;}
.x47{left:120.031988pt;}
.xe{left:142.746667pt;}
.x1d{left:155.066655pt;}
.x2f{left:173.306667pt;}
.x2d{left:180.506655pt;}
.x33{left:183.226667pt;}
.x13{left:191.266667pt;}
.x6{left:199.866667pt;}
.x2b{left:206.906655pt;}
.x1a{left:210.746667pt;}
.x3e{left:214.906667pt;}
.x19{left:216.506655pt;}
.x26{left:228.986667pt;}
.x43{left:241.626667pt;}
.x9{left:256.386667pt;}
.x14{left:263.266667pt;}
.x1e{left:267.426667pt;}
.x34{left:277.026667pt;}
.x3f{left:280.386667pt;}
.x3a{left:299.106667pt;}
.x24{left:304.866655pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x17{left:345.826655pt;}
.x35{left:358.146667pt;}
.x1b{left:359.426667pt;}
.x31{left:367.746667pt;}
.x1f{left:381.506667pt;}
.x2e{left:396.866655pt;}
.x27{left:401.346667pt;}
.x18{left:402.466655pt;}
.xa{left:405.066667pt;}
.x44{left:422.013333pt;}
.x3d{left:422.973333pt;}
.x37{left:439.133333pt;}
.x30{left:448.093333pt;}
.x20{left:480.093333pt;}
.x42{left:490.173333pt;}
.x28{left:494.493333pt;}
.x45{left:504.573333pt;}
.x41{left:510.493333pt;}
.x38{left:532.413333pt;}
.x1c{left:536.733333pt;}
.x3b{left:546.973333pt;}
.x21{left:587.333333pt;}
.x29{left:595.333333pt;}
.x46{left:613.573333pt;}
.x2c{left:615.973322pt;}
.x39{left:627.013333pt;}
.x40{left:636.933333pt;}
.x32{left:640.933333pt;}
.x3c{left:650.373333pt;}
.x23{left:655.333322pt;}
.x3{left:663.013333pt;}
.x22{left:668.773333pt;}
.x2a{left:671.333333pt;}
}




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