
    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_168dcda17db80dc1666d4b60.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_2e747aa5d7ec3884e2bafe3c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_aa5ff4bd66653bafaca41382.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_4cc43a25191dda5206c64c4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_e9b6778a5595b487b94fd63f.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_9f805de47b68805eb7279272.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_1b18a8042fbd08394a5e36d1.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_61a520d8d3387f0a79a8d414.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_092791189b2059f57ea7c119.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9d5371d0f5eae5a4c308eea9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a21261192b459e00fe9c1c53.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_de281f0c72b44198d1ed6995.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_394d3f530fd9933789ff19cb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.946777;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff14{font-family:ff14;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;}
.v5{vertical-align:28.080000px;}
.v3{vertical-align:46.080000px;}
.v6{vertical-align:49.680000px;}
.v4{vertical-align:72.000000px;}
.ls19{letter-spacing:-3.546000px;}
.ls1b{letter-spacing:-2.520000px;}
.ls20{letter-spacing:-0.978000px;}
.ls21{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls9{letter-spacing:-0.127200px;}
.ls1f{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.038160px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.087600px;}
.ls5{letter-spacing:0.112800px;}
.ls1{letter-spacing:0.132600px;}
.ls10{letter-spacing:0.135360px;}
.ls15{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.174240px;}
.ls17{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls18{letter-spacing:0.900000px;}
.lsf{letter-spacing:2.880000px;}
.lse{letter-spacing:10.215360px;}
.ls1d{letter-spacing:16.506720px;}
.ls13{letter-spacing:46.026720px;}
.ls16{letter-spacing:55.386720px;}
.ls12{letter-spacing:64.026720px;}
.ls11{letter-spacing:95.880000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.wsd{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws10{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws7{word-spacing:-12.854880px;}
.ws6{word-spacing:-12.816720px;}
.wsf{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._14{margin-left:-7.829280px;}
._e{margin-left:-6.812640px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.329600px;}
._2{margin-left:-2.970000px;}
._0{margin-left:-1.242000px;}
._1{width:1.128000px;}
._9{width:2.248560px;}
._8{width:3.891840px;}
._12{width:5.344080px;}
._11{width:6.361440px;}
._f{width:7.782720px;}
._d{width:8.784720px;}
._15{width:10.059600px;}
._b{width:11.115360px;}
._c{width:12.391200px;}
._21{width:13.598400px;}
._10{width:15.970800px;}
._a{width:17.098800px;}
._5{width:19.046880px;}
._6{width:20.545680px;}
._16{width:24.969600px;}
._1f{width:33.413280px;}
._18{width:34.481520px;}
._7{width:37.835520px;}
._13{width:43.333440px;}
._19{width:81.678960px;}
._20{width:88.638480px;}
._17{width:98.484480px;}
._1d{width:104.789280px;}
._1c{width:106.056000px;}
._1a{width:113.125680px;}
._1e{width:125.376480px;}
._1b{width:186.916320px;}
.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;}
.y4d{bottom:3.240000px;}
.yea{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y52{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y50{bottom:10.620000px;}
.y1e{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.yfd{bottom:20.340000px;}
.y12c{bottom:20.370000px;}
.y4c{bottom:20.520000px;}
.y123{bottom:20.550000px;}
.y51{bottom:22.320000px;}
.y1c{bottom:23.940000px;}
.y4f{bottom:25.380000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y4b{bottom:37.620000px;}
.y1b{bottom:40.320000px;}
.ya{bottom:46.620000px;}
.y1{bottom:53.820000px;}
.y4a{bottom:54.900000px;}
.y1a{bottom:56.880000px;}
.y49{bottom:72.180000px;}
.y19{bottom:73.440000px;}
.y9{bottom:73.470000px;}
.y48{bottom:89.460000px;}
.y18{bottom:89.865000px;}
.y8{bottom:93.090000px;}
.y56{bottom:97.956000px;}
.y105{bottom:99.396000px;}
.y17{bottom:106.425000px;}
.y47{bottom:106.740000px;}
.ycc{bottom:106.956000px;}
.y12a{bottom:110.556000px;}
.y7{bottom:111.450000px;}
.y94{bottom:112.716000px;}
.y55{bottom:115.236000px;}
.y104{bottom:117.396000px;}
.y161{bottom:117.576000px;}
.y16{bottom:119.385000px;}
.y46{bottom:124.020000px;}
.ycb{bottom:124.236000px;}
.y129{bottom:127.836000px;}
.y93{bottom:129.816000px;}
.y54{bottom:132.516000px;}
.y160{bottom:134.856000px;}
.y103{bottom:135.396000px;}
.y15{bottom:137.745000px;}
.y45{bottom:141.165000px;}
.yca{bottom:142.596000px;}
.y128{bottom:145.116000px;}
.y92{bottom:147.096000px;}
.y53{bottom:150.510000px;}
.y15f{bottom:152.130000px;}
.y102{bottom:153.390000px;}
.y14{bottom:156.105000px;}
.y44{bottom:158.445000px;}
.yc9{bottom:160.950000px;}
.y127{bottom:162.390000px;}
.y91{bottom:164.370000px;}
.y4e{bottom:164.730000px;}
.y15e{bottom:169.410000px;}
.y101{bottom:171.390000px;}
.y176{bottom:173.910000px;}
.y13{bottom:174.285000px;}
.y43{bottom:175.725000px;}
.yc8{bottom:179.130000px;}
.y126{bottom:179.670000px;}
.y90{bottom:181.650000px;}
.y15d{bottom:186.510000px;}
.y175{bottom:191.010000px;}
.y100{bottom:192.630000px;}
.y42{bottom:193.005000px;}
.y12{bottom:193.365000px;}
.y125{bottom:193.710000px;}
.yc7{bottom:196.410000px;}
.y8f{bottom:198.930000px;}
.y1f{bottom:201.450000px;}
.y15c{bottom:203.790000px;}
.y174{bottom:208.290000px;}
.yff{bottom:209.910000px;}
.y41{bottom:210.285000px;}
.y119{bottom:213.510000px;}
.yc6{bottom:213.690000px;}
.y8e{bottom:216.210000px;}
.y11{bottom:219.105000px;}
.y15b{bottom:221.070000px;}
.yfe{bottom:224.670000px;}
.y173{bottom:225.570000px;}
.y40{bottom:227.565000px;}
.y118{bottom:230.790000px;}
.yc5{bottom:230.970000px;}
.y8d{bottom:233.310000px;}
.y15a{bottom:238.350000px;}
.yfc{bottom:242.670000px;}
.y172{bottom:242.850000px;}
.y10{bottom:243.405000px;}
.y3f{bottom:244.665000px;}
.y117{bottom:244.830000px;}
.yc4{bottom:249.330000px;}
.y8c{bottom:250.590000px;}
.y159{bottom:255.630000px;}
.y171{bottom:260.130000px;}
.y3e{bottom:261.945000px;}
.yc3{bottom:267.690000px;}
.y8b{bottom:267.870000px;}
.y158{bottom:272.910000px;}
.y170{bottom:277.410000px;}
.yfb{bottom:277.770000px;}
.y3d{bottom:279.225000px;}
.yb8{bottom:280.650000px;}
.y8a{bottom:285.150000px;}
.yc2{bottom:285.870000px;}
.y157{bottom:290.010000px;}
.y16f{bottom:294.510000px;}
.y3c{bottom:296.505000px;}
.yb7{bottom:297.750000px;}
.y89{bottom:302.430000px;}
.yc1{bottom:304.230000px;}
.y2d{bottom:305.325000px;}
.y156{bottom:307.290000px;}
.y16e{bottom:311.790000px;}
.y3b{bottom:313.785000px;}
.yb6{bottom:315.030000px;}
.yfa{bottom:316.290000px;}
.y88{bottom:319.710000px;}
.y2c{bottom:320.625000px;}
.yc0{bottom:321.510000px;}
.y155{bottom:324.570000px;}
.y16d{bottom:329.070000px;}
.y3a{bottom:330.885000px;}
.yb5{bottom:332.310000px;}
.yf9{bottom:333.570000px;}
.y87{bottom:336.855000px;}
.y2b{bottom:338.805000px;}
.ybf{bottom:338.835000px;}
.y154{bottom:341.895000px;}
.y16c{bottom:346.395000px;}
.y39{bottom:348.165000px;}
.yf8{bottom:348.375000px;}
.yb4{bottom:349.635000px;}
.y86{bottom:354.135000px;}
.y2a{bottom:356.085000px;}
.ybe{bottom:356.115000px;}
.y153{bottom:359.175000px;}
.y16b{bottom:363.675000px;}
.y38{bottom:365.445000px;}
.yf7{bottom:366.375000px;}
.yb3{bottom:366.915000px;}
.y85{bottom:371.415000px;}
.ybd{bottom:373.215000px;}
.y29{bottom:373.545000px;}
.y152{bottom:376.275000px;}
.y16a{bottom:380.775000px;}
.y37{bottom:382.725000px;}
.yb2{bottom:384.195000px;}
.yf6{bottom:384.375000px;}
.y84{bottom:388.695000px;}
.y28{bottom:391.005000px;}
.y151{bottom:393.555000px;}
.y169{bottom:398.055000px;}
.y36{bottom:400.005000px;}
.yb1{bottom:401.295000px;}
.yf5{bottom:402.375000px;}
.y83{bottom:405.975000px;}
.y27{bottom:408.315000px;}
.y150{bottom:410.835000px;}
.y168{bottom:415.335000px;}
.y35{bottom:417.315000px;}
.yb0{bottom:418.575000px;}
.yf4{bottom:420.375000px;}
.y82{bottom:424.155000px;}
.y26{bottom:425.775000px;}
.y14f{bottom:428.115000px;}
.y167{bottom:432.615000px;}
.y34{bottom:434.415000px;}
.yaf{bottom:435.855000px;}
.yf3{bottom:438.375000px;}
.y81{bottom:442.515000px;}
.y25{bottom:443.235000px;}
.y14e{bottom:445.395000px;}
.y166{bottom:449.895000px;}
.y33{bottom:451.695000px;}
.yae{bottom:453.135000px;}
.yf2{bottom:456.375000px;}
.y24{bottom:460.515000px;}
.y80{bottom:460.875000px;}
.y14d{bottom:462.675000px;}
.y165{bottom:467.175000px;}
.y32{bottom:468.975000px;}
.yad{bottom:470.415000px;}
.yf1{bottom:474.375000px;}
.y23{bottom:477.975000px;}
.y7f{bottom:479.235000px;}
.y14c{bottom:479.775000px;}
.y164{bottom:484.275000px;}
.y31{bottom:486.255000px;}
.yac{bottom:487.515000px;}
.yf0{bottom:492.375000px;}
.y7e{bottom:493.275000px;}
.y22{bottom:495.615000px;}
.y14b{bottom:497.055000px;}
.y163{bottom:501.555000px;}
.y30{bottom:503.535000px;}
.yab{bottom:504.795000px;}
.y7d{bottom:505.695000px;}
.yef{bottom:510.375000px;}
.y14a{bottom:514.335000px;}
.y162{bottom:518.835000px;}
.y2f{bottom:520.815000px;}
.yaa{bottom:522.075000px;}
.y21{bottom:522.975000px;}
.yee{bottom:528.375000px;}
.y149{bottom:531.615000px;}
.y7c{bottom:536.115000px;}
.y2e{bottom:537.915000px;}
.ya9{bottom:539.355000px;}
.y20{bottom:540.615000px;}
.yed{bottom:546.375000px;}
.y148{bottom:548.895000px;}
.y7b{bottom:553.395000px;}
.y116{bottom:556.275000px;}
.ya8{bottom:557.715000px;}
.yec{bottom:564.375000px;}
.y147{bottom:566.175000px;}
.y7a{bottom:570.675000px;}
.y115{bottom:573.555000px;}
.ya7{bottom:576.075000px;}
.yeb{bottom:582.375000px;}
.y146{bottom:583.275000px;}
.y124{bottom:586.875000px;}
.y114{bottom:587.595000px;}
.y79{bottom:587.775000px;}
.ya6{bottom:594.255000px;}
.ye9{bottom:600.375000px;}
.y145{bottom:600.555000px;}
.y122{bottom:601.635000px;}
.y78{bottom:605.085000px;}
.ya5{bottom:611.565000px;}
.y144{bottom:617.865000px;}
.ye8{bottom:618.405000px;}
.y77{bottom:622.365000px;}
.ya4{bottom:628.845000px;}
.y143{bottom:635.145000px;}
.ye7{bottom:636.405000px;}
.y121{bottom:636.945000px;}
.y76{bottom:639.645000px;}
.ya3{bottom:647.205000px;}
.y142{bottom:652.425000px;}
.ye6{bottom:654.405000px;}
.y120{bottom:654.945000px;}
.y75{bottom:656.925000px;}
.ya2{bottom:664.485000px;}
.y141{bottom:669.525000px;}
.ye5{bottom:672.405000px;}
.y11f{bottom:672.945000px;}
.y74{bottom:674.025000px;}
.ya1{bottom:682.665000px;}
.y140{bottom:686.805000px;}
.ye4{bottom:690.405000px;}
.y11e{bottom:690.945000px;}
.y73{bottom:691.305000px;}
.ya0{bottom:699.945000px;}
.y13f{bottom:704.085000px;}
.y72{bottom:708.585000px;}
.ye3{bottom:711.645000px;}
.y9f{bottom:718.305000px;}
.y13e{bottom:721.365000px;}
.y71{bottom:725.865000px;}
.ye2{bottom:728.925000px;}
.y11d{bottom:729.465000px;}
.y9e{bottom:735.585000px;}
.y13d{bottom:738.645000px;}
.y70{bottom:743.145000px;}
.ye1{bottom:743.685000px;}
.y11c{bottom:746.745000px;}
.y1d{bottom:753.405000px;}
.y9d{bottom:753.945000px;}
.y13c{bottom:755.925000px;}
.y6f{bottom:760.425000px;}
.ye0{bottom:761.685000px;}
.y11b{bottom:763.845000px;}
.y9c{bottom:772.305000px;}
.ybc{bottom:773.025000px;}
.y6e{bottom:777.525000px;}
.y11a{bottom:777.885000px;}
.ydf{bottom:779.685000px;}
.yf{bottom:782.925000px;}
.y9b{bottom:789.405000px;}
.ybb{bottom:790.305000px;}
.y6d{bottom:794.805000px;}
.yde{bottom:797.685000px;}
.y9a{bottom:806.685000px;}
.yba{bottom:807.585000px;}
.y6c{bottom:812.085000px;}
.ydd{bottom:815.685000px;}
.yb9{bottom:821.625000px;}
.y13b{bottom:824.865000px;}
.y99{bottom:825.045000px;}
.y6b{bottom:829.365000px;}
.ydc{bottom:833.685000px;}
.y13a{bottom:842.145000px;}
.y98{bottom:843.405000px;}
.y6a{bottom:846.645000px;}
.ydb{bottom:854.925000px;}
.y139{bottom:859.425000px;}
.y97{bottom:860.685000px;}
.y69{bottom:863.925000px;}
.yda{bottom:872.070000px;}
.y138{bottom:876.570000px;}
.y96{bottom:878.910000px;}
.y68{bottom:881.070000px;}
.yd9{bottom:889.350000px;}
.y137{bottom:893.850000px;}
.y95{bottom:897.270000px;}
.y67{bottom:898.350000px;}
.yd8{bottom:904.110000px;}
.y136{bottom:911.130000px;}
.y66{bottom:915.630000px;}
.yd7{bottom:922.110000px;}
.y135{bottom:928.410000px;}
.y65{bottom:932.910000px;}
.y113{bottom:939.570000px;}
.yd6{bottom:940.110000px;}
.y134{bottom:945.690000px;}
.y64{bottom:950.190000px;}
.y112{bottom:954.330000px;}
.yd5{bottom:958.110000px;}
.y133{bottom:962.970000px;}
.y63{bottom:967.470000px;}
.y111{bottom:972.330000px;}
.yd4{bottom:976.110000px;}
.y132{bottom:980.070000px;}
.y62{bottom:984.570000px;}
.y110{bottom:990.330000px;}
.yd3{bottom:994.110000px;}
.y131{bottom:997.350000px;}
.y61{bottom:1001.850000px;}
.y10f{bottom:1008.330000px;}
.y130{bottom:1014.630000px;}
.y60{bottom:1019.130000px;}
.y10e{bottom:1026.330000px;}
.y12f{bottom:1029.390000px;}
.yd2{bottom:1032.630000px;}
.y5f{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.y10d{bottom:1044.330000px;}
.yd1{bottom:1049.910000px;}
.y5e{bottom:1053.690000px;}
.y10c{bottom:1062.330000px;}
.yd0{bottom:1064.670000px;}
.y6{bottom:1066.830000px;}
.y5d{bottom:1070.790000px;}
.y10b{bottom:1080.330000px;}
.ycf{bottom:1082.670000px;}
.y5c{bottom:1088.070000px;}
.y10a{bottom:1098.330000px;}
.y12e{bottom:1099.950000px;}
.yce{bottom:1100.670000px;}
.y5b{bottom:1105.350000px;}
.y109{bottom:1116.330000px;}
.y12d{bottom:1117.950000px;}
.ycd{bottom:1118.670000px;}
.y5a{bottom:1122.630000px;}
.y108{bottom:1134.330000px;}
.y12b{bottom:1135.950000px;}
.y59{bottom:1139.940000px;}
.y107{bottom:1152.360000px;}
.y58{bottom:1157.220000px;}
.y106{bottom:1170.360000px;}
.y57{bottom:1174.320000px;}
.h23{height:17.100000px;}
.h21{height:17.280000px;}
.h24{height:17.316000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.976000px;}
.h25{height:34.380000px;}
.h27{height:34.416000px;}
.h22{height:34.560000px;}
.h26{height:34.596000px;}
.h8{height:36.180000px;}
.h1b{height:36.720000px;}
.h18{height:38.818125px;}
.h1a{height:41.726953px;}
.h19{height:42.164648px;}
.h20{height:43.506914px;}
.h1f{height:43.681992px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h1e{height:91.406953px;}
.h1d{height:101.158594px;}
.h7{height:121.536000px;}
.hc{height:258.510000px;}
.h14{height:551.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:52.200000px;}
.w21{width:64.620000px;}
.w3{width:73.080000px;}
.w1f{width:79.596000px;}
.w20{width:82.080000px;}
.w11{width:83.196000px;}
.w13{width:83.556000px;}
.wf{width:97.416000px;}
.w23{width:98.496000px;}
.w27{width:101.556000px;}
.w2b{width:104.616000px;}
.w12{width:104.940000px;}
.w10{width:105.120000px;}
.w16{width:106.416000px;}
.we{width:110.916000px;}
.w28{width:118.476000px;}
.w2c{width:122.940000px;}
.w1c{width:133.956000px;}
.w24{width:139.176000px;}
.w14{width:139.680000px;}
.wa{width:141.516000px;}
.wb{width:147.996000px;}
.w1e{width:149.256000px;}
.w17{width:150.120000px;}
.w1a{width:151.020000px;}
.w25{width:151.200000px;}
.w5{width:151.950000px;}
.w29{width:158.940000px;}
.w18{width:163.290000px;}
.w1b{width:164.010000px;}
.w2d{width:166.170000px;}
.w26{width:172.110000px;}
.w2a{width:175.710000px;}
.w2e{width:184.890000px;}
.wc{width:209.910000px;}
.w8{width:223.455000px;}
.wd{width:227.910000px;}
.w15{width:307.695000px;}
.w22{width:338.655000px;}
.w19{width:413.205000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:7.560000px;}
.x2{left:8.676000px;}
.x16{left:12.600000px;}
.xb{left:22.716000px;}
.xd{left:33.336000px;}
.x12{left:66.636000px;}
.xc{left:68.976000px;}
.x1{left:81.000000px;}
.x44{left:82.799987px;}
.x10{left:85.890000px;}
.x2a{left:87.119987px;}
.x4{left:98.130000px;}
.xf{left:106.230000px;}
.x19{left:108.035987px;}
.x13{left:109.110000px;}
.x11{left:113.790000px;}
.x1b{left:135.035987px;}
.x2f{left:158.609987px;}
.x1a{left:162.029987px;}
.x1e{left:180.929987px;}
.x23{left:193.530000px;}
.x3d{left:196.949987px;}
.xe{left:206.715000px;}
.x14{left:215.175000px;}
.x31{left:216.390000px;}
.x1f{left:224.130000px;}
.x47{left:230.430000px;}
.x5{left:232.950000px;}
.x22{left:239.969987px;}
.x1d{left:243.029987px;}
.x3f{left:254.550000px;}
.x35{left:260.129987px;}
.x46{left:262.649987px;}
.x32{left:269.310000px;}
.x8{left:272.235000px;}
.x3e{left:279.434987px;}
.x25{left:291.675000px;}
.x15{left:304.455000px;}
.x6{left:331.995000px;}
.x48{left:335.775000px;}
.x7{left:351.255000px;}
.x40{left:356.835000px;}
.xa{left:365.475000px;}
.x20{left:372.855000px;}
.x45{left:386.714987px;}
.x2c{left:390.135000px;}
.x26{left:397.515000px;}
.x17{left:407.234987px;}
.x33{left:419.475000px;}
.x36{left:421.095000px;}
.x2b{left:424.874987px;}
.x9{left:439.500000px;}
.x3a{left:446.474987px;}
.x18{left:449.174987px;}
.x49{left:459.435000px;}
.x41{left:476.025000px;}
.x27{left:481.605000px;}
.x30{left:495.645000px;}
.x2d{left:497.265000px;}
.x34{left:499.785000px;}
.x37{left:520.305000px;}
.x21{left:583.485000px;}
.x28{left:587.445000px;}
.x4a{left:626.505000px;}
.x1c{left:631.364987px;}
.x42{left:635.685000px;}
.x2e{left:648.105000px;}
.x38{left:660.210000px;}
.x39{left:661.829987px;}
.x29{left:671.730000px;}
.x43{left:704.129987px;}
.x3b{left:720.329987px;}
.x3c{left:721.769987px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:24.960000pt;}
.v3{vertical-align:40.960000pt;}
.v6{vertical-align:44.160000pt;}
.v4{vertical-align:64.000000pt;}
.ls19{letter-spacing:-3.152000pt;}
.ls1b{letter-spacing:-2.240000pt;}
.ls20{letter-spacing:-0.869333pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls1f{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.033920pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.077867pt;}
.ls5{letter-spacing:0.100267pt;}
.ls1{letter-spacing:0.117867pt;}
.ls10{letter-spacing:0.120320pt;}
.ls15{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.154880pt;}
.ls17{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls18{letter-spacing:0.800000pt;}
.lsf{letter-spacing:2.560000pt;}
.lse{letter-spacing:9.080320pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls13{letter-spacing:40.912640pt;}
.ls16{letter-spacing:49.232640pt;}
.ls12{letter-spacing:56.912640pt;}
.ls11{letter-spacing:85.226667pt;}
.wsc{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.wsd{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.426560pt;}
.ws6{word-spacing:-11.392640pt;}
.wsf{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._14{margin-left:-6.959360pt;}
._e{margin-left:-6.055680pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.848533pt;}
._2{margin-left:-2.640000pt;}
._0{margin-left:-1.104000pt;}
._1{width:1.002667pt;}
._9{width:1.998720pt;}
._8{width:3.459413pt;}
._12{width:4.750293pt;}
._11{width:5.654613pt;}
._f{width:6.917973pt;}
._d{width:7.808640pt;}
._15{width:8.941867pt;}
._b{width:9.880320pt;}
._c{width:11.014400pt;}
._21{width:12.087467pt;}
._10{width:14.196267pt;}
._a{width:15.198933pt;}
._5{width:16.930560pt;}
._6{width:18.262827pt;}
._16{width:22.195200pt;}
._1f{width:29.700693pt;}
._18{width:30.650240pt;}
._7{width:33.631573pt;}
._13{width:38.518613pt;}
._19{width:72.603520pt;}
._20{width:78.789760pt;}
._17{width:87.541760pt;}
._1d{width:93.146027pt;}
._1c{width:94.272000pt;}
._1a{width:100.556160pt;}
._1e{width:111.445760pt;}
._1b{width:166.147840pt;}
.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;}
.y4d{bottom:2.880000pt;}
.yea{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y52{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y50{bottom:9.440000pt;}
.y1e{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.yfd{bottom:18.080000pt;}
.y12c{bottom:18.106667pt;}
.y4c{bottom:18.240000pt;}
.y123{bottom:18.266667pt;}
.y51{bottom:19.840000pt;}
.y1c{bottom:21.280000pt;}
.y4f{bottom:22.560000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y4b{bottom:33.440000pt;}
.y1b{bottom:35.840000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:47.840000pt;}
.y4a{bottom:48.800000pt;}
.y1a{bottom:50.560000pt;}
.y49{bottom:64.160000pt;}
.y19{bottom:65.280000pt;}
.y9{bottom:65.306667pt;}
.y48{bottom:79.520000pt;}
.y18{bottom:79.880000pt;}
.y8{bottom:82.746667pt;}
.y56{bottom:87.072000pt;}
.y105{bottom:88.352000pt;}
.y17{bottom:94.600000pt;}
.y47{bottom:94.880000pt;}
.ycc{bottom:95.072000pt;}
.y12a{bottom:98.272000pt;}
.y7{bottom:99.066667pt;}
.y94{bottom:100.192000pt;}
.y55{bottom:102.432000pt;}
.y104{bottom:104.352000pt;}
.y161{bottom:104.512000pt;}
.y16{bottom:106.120000pt;}
.y46{bottom:110.240000pt;}
.ycb{bottom:110.432000pt;}
.y129{bottom:113.632000pt;}
.y93{bottom:115.392000pt;}
.y54{bottom:117.792000pt;}
.y160{bottom:119.872000pt;}
.y103{bottom:120.352000pt;}
.y15{bottom:122.440000pt;}
.y45{bottom:125.480000pt;}
.yca{bottom:126.752000pt;}
.y128{bottom:128.992000pt;}
.y92{bottom:130.752000pt;}
.y53{bottom:133.786667pt;}
.y15f{bottom:135.226667pt;}
.y102{bottom:136.346667pt;}
.y14{bottom:138.760000pt;}
.y44{bottom:140.840000pt;}
.yc9{bottom:143.066667pt;}
.y127{bottom:144.346667pt;}
.y91{bottom:146.106667pt;}
.y4e{bottom:146.426667pt;}
.y15e{bottom:150.586667pt;}
.y101{bottom:152.346667pt;}
.y176{bottom:154.586667pt;}
.y13{bottom:154.920000pt;}
.y43{bottom:156.200000pt;}
.yc8{bottom:159.226667pt;}
.y126{bottom:159.706667pt;}
.y90{bottom:161.466667pt;}
.y15d{bottom:165.786667pt;}
.y175{bottom:169.786667pt;}
.y100{bottom:171.226667pt;}
.y42{bottom:171.560000pt;}
.y12{bottom:171.880000pt;}
.y125{bottom:172.186667pt;}
.yc7{bottom:174.586667pt;}
.y8f{bottom:176.826667pt;}
.y1f{bottom:179.066667pt;}
.y15c{bottom:181.146667pt;}
.y174{bottom:185.146667pt;}
.yff{bottom:186.586667pt;}
.y41{bottom:186.920000pt;}
.y119{bottom:189.786667pt;}
.yc6{bottom:189.946667pt;}
.y8e{bottom:192.186667pt;}
.y11{bottom:194.760000pt;}
.y15b{bottom:196.506667pt;}
.yfe{bottom:199.706667pt;}
.y173{bottom:200.506667pt;}
.y40{bottom:202.280000pt;}
.y118{bottom:205.146667pt;}
.yc5{bottom:205.306667pt;}
.y8d{bottom:207.386667pt;}
.y15a{bottom:211.866667pt;}
.yfc{bottom:215.706667pt;}
.y172{bottom:215.866667pt;}
.y10{bottom:216.360000pt;}
.y3f{bottom:217.480000pt;}
.y117{bottom:217.626667pt;}
.yc4{bottom:221.626667pt;}
.y8c{bottom:222.746667pt;}
.y159{bottom:227.226667pt;}
.y171{bottom:231.226667pt;}
.y3e{bottom:232.840000pt;}
.yc3{bottom:237.946667pt;}
.y8b{bottom:238.106667pt;}
.y158{bottom:242.586667pt;}
.y170{bottom:246.586667pt;}
.yfb{bottom:246.906667pt;}
.y3d{bottom:248.200000pt;}
.yb8{bottom:249.466667pt;}
.y8a{bottom:253.466667pt;}
.yc2{bottom:254.106667pt;}
.y157{bottom:257.786667pt;}
.y16f{bottom:261.786667pt;}
.y3c{bottom:263.560000pt;}
.yb7{bottom:264.666667pt;}
.y89{bottom:268.826667pt;}
.yc1{bottom:270.426667pt;}
.y2d{bottom:271.400000pt;}
.y156{bottom:273.146667pt;}
.y16e{bottom:277.146667pt;}
.y3b{bottom:278.920000pt;}
.yb6{bottom:280.026667pt;}
.yfa{bottom:281.146667pt;}
.y88{bottom:284.186667pt;}
.y2c{bottom:285.000000pt;}
.yc0{bottom:285.786667pt;}
.y155{bottom:288.506667pt;}
.y16d{bottom:292.506667pt;}
.y3a{bottom:294.120000pt;}
.yb5{bottom:295.386667pt;}
.yf9{bottom:296.506667pt;}
.y87{bottom:299.426667pt;}
.y2b{bottom:301.160000pt;}
.ybf{bottom:301.186667pt;}
.y154{bottom:303.906667pt;}
.y16c{bottom:307.906667pt;}
.y39{bottom:309.480000pt;}
.yf8{bottom:309.666667pt;}
.yb4{bottom:310.786667pt;}
.y86{bottom:314.786667pt;}
.y2a{bottom:316.520000pt;}
.ybe{bottom:316.546667pt;}
.y153{bottom:319.266667pt;}
.y16b{bottom:323.266667pt;}
.y38{bottom:324.840000pt;}
.yf7{bottom:325.666667pt;}
.yb3{bottom:326.146667pt;}
.y85{bottom:330.146667pt;}
.ybd{bottom:331.746667pt;}
.y29{bottom:332.040000pt;}
.y152{bottom:334.466667pt;}
.y16a{bottom:338.466667pt;}
.y37{bottom:340.200000pt;}
.yb2{bottom:341.506667pt;}
.yf6{bottom:341.666667pt;}
.y84{bottom:345.506667pt;}
.y28{bottom:347.560000pt;}
.y151{bottom:349.826667pt;}
.y169{bottom:353.826667pt;}
.y36{bottom:355.560000pt;}
.yb1{bottom:356.706667pt;}
.yf5{bottom:357.666667pt;}
.y83{bottom:360.866667pt;}
.y27{bottom:362.946667pt;}
.y150{bottom:365.186667pt;}
.y168{bottom:369.186667pt;}
.y35{bottom:370.946667pt;}
.yb0{bottom:372.066667pt;}
.yf4{bottom:373.666667pt;}
.y82{bottom:377.026667pt;}
.y26{bottom:378.466667pt;}
.y14f{bottom:380.546667pt;}
.y167{bottom:384.546667pt;}
.y34{bottom:386.146667pt;}
.yaf{bottom:387.426667pt;}
.yf3{bottom:389.666667pt;}
.y81{bottom:393.346667pt;}
.y25{bottom:393.986667pt;}
.y14e{bottom:395.906667pt;}
.y166{bottom:399.906667pt;}
.y33{bottom:401.506667pt;}
.yae{bottom:402.786667pt;}
.yf2{bottom:405.666667pt;}
.y24{bottom:409.346667pt;}
.y80{bottom:409.666667pt;}
.y14d{bottom:411.266667pt;}
.y165{bottom:415.266667pt;}
.y32{bottom:416.866667pt;}
.yad{bottom:418.146667pt;}
.yf1{bottom:421.666667pt;}
.y23{bottom:424.866667pt;}
.y7f{bottom:425.986667pt;}
.y14c{bottom:426.466667pt;}
.y164{bottom:430.466667pt;}
.y31{bottom:432.226667pt;}
.yac{bottom:433.346667pt;}
.yf0{bottom:437.666667pt;}
.y7e{bottom:438.466667pt;}
.y22{bottom:440.546667pt;}
.y14b{bottom:441.826667pt;}
.y163{bottom:445.826667pt;}
.y30{bottom:447.586667pt;}
.yab{bottom:448.706667pt;}
.y7d{bottom:449.506667pt;}
.yef{bottom:453.666667pt;}
.y14a{bottom:457.186667pt;}
.y162{bottom:461.186667pt;}
.y2f{bottom:462.946667pt;}
.yaa{bottom:464.066667pt;}
.y21{bottom:464.866667pt;}
.yee{bottom:469.666667pt;}
.y149{bottom:472.546667pt;}
.y7c{bottom:476.546667pt;}
.y2e{bottom:478.146667pt;}
.ya9{bottom:479.426667pt;}
.y20{bottom:480.546667pt;}
.yed{bottom:485.666667pt;}
.y148{bottom:487.906667pt;}
.y7b{bottom:491.906667pt;}
.y116{bottom:494.466667pt;}
.ya8{bottom:495.746667pt;}
.yec{bottom:501.666667pt;}
.y147{bottom:503.266667pt;}
.y7a{bottom:507.266667pt;}
.y115{bottom:509.826667pt;}
.ya7{bottom:512.066667pt;}
.yeb{bottom:517.666667pt;}
.y146{bottom:518.466667pt;}
.y124{bottom:521.666667pt;}
.y114{bottom:522.306667pt;}
.y79{bottom:522.466667pt;}
.ya6{bottom:528.226667pt;}
.ye9{bottom:533.666667pt;}
.y145{bottom:533.826667pt;}
.y122{bottom:534.786667pt;}
.y78{bottom:537.853333pt;}
.ya5{bottom:543.613333pt;}
.y144{bottom:549.213333pt;}
.ye8{bottom:549.693333pt;}
.y77{bottom:553.213333pt;}
.ya4{bottom:558.973333pt;}
.y143{bottom:564.573333pt;}
.ye7{bottom:565.693333pt;}
.y121{bottom:566.173333pt;}
.y76{bottom:568.573333pt;}
.ya3{bottom:575.293333pt;}
.y142{bottom:579.933333pt;}
.ye6{bottom:581.693333pt;}
.y120{bottom:582.173333pt;}
.y75{bottom:583.933333pt;}
.ya2{bottom:590.653333pt;}
.y141{bottom:595.133333pt;}
.ye5{bottom:597.693333pt;}
.y11f{bottom:598.173333pt;}
.y74{bottom:599.133333pt;}
.ya1{bottom:606.813333pt;}
.y140{bottom:610.493333pt;}
.ye4{bottom:613.693333pt;}
.y11e{bottom:614.173333pt;}
.y73{bottom:614.493333pt;}
.ya0{bottom:622.173333pt;}
.y13f{bottom:625.853333pt;}
.y72{bottom:629.853333pt;}
.ye3{bottom:632.573333pt;}
.y9f{bottom:638.493333pt;}
.y13e{bottom:641.213333pt;}
.y71{bottom:645.213333pt;}
.ye2{bottom:647.933333pt;}
.y11d{bottom:648.413333pt;}
.y9e{bottom:653.853333pt;}
.y13d{bottom:656.573333pt;}
.y70{bottom:660.573333pt;}
.ye1{bottom:661.053333pt;}
.y11c{bottom:663.773333pt;}
.y1d{bottom:669.693333pt;}
.y9d{bottom:670.173333pt;}
.y13c{bottom:671.933333pt;}
.y6f{bottom:675.933333pt;}
.ye0{bottom:677.053333pt;}
.y11b{bottom:678.973333pt;}
.y9c{bottom:686.493333pt;}
.ybc{bottom:687.133333pt;}
.y6e{bottom:691.133333pt;}
.y11a{bottom:691.453333pt;}
.ydf{bottom:693.053333pt;}
.yf{bottom:695.933333pt;}
.y9b{bottom:701.693333pt;}
.ybb{bottom:702.493333pt;}
.y6d{bottom:706.493333pt;}
.yde{bottom:709.053333pt;}
.y9a{bottom:717.053333pt;}
.yba{bottom:717.853333pt;}
.y6c{bottom:721.853333pt;}
.ydd{bottom:725.053333pt;}
.yb9{bottom:730.333333pt;}
.y13b{bottom:733.213333pt;}
.y99{bottom:733.373333pt;}
.y6b{bottom:737.213333pt;}
.ydc{bottom:741.053333pt;}
.y13a{bottom:748.573333pt;}
.y98{bottom:749.693333pt;}
.y6a{bottom:752.573333pt;}
.ydb{bottom:759.933333pt;}
.y139{bottom:763.933333pt;}
.y97{bottom:765.053333pt;}
.y69{bottom:767.933333pt;}
.yda{bottom:775.173333pt;}
.y138{bottom:779.173333pt;}
.y96{bottom:781.253333pt;}
.y68{bottom:783.173333pt;}
.yd9{bottom:790.533333pt;}
.y137{bottom:794.533333pt;}
.y95{bottom:797.573333pt;}
.y67{bottom:798.533333pt;}
.yd8{bottom:803.653333pt;}
.y136{bottom:809.893333pt;}
.y66{bottom:813.893333pt;}
.yd7{bottom:819.653333pt;}
.y135{bottom:825.253333pt;}
.y65{bottom:829.253333pt;}
.y113{bottom:835.173333pt;}
.yd6{bottom:835.653333pt;}
.y134{bottom:840.613333pt;}
.y64{bottom:844.613333pt;}
.y112{bottom:848.293333pt;}
.yd5{bottom:851.653333pt;}
.y133{bottom:855.973333pt;}
.y63{bottom:859.973333pt;}
.y111{bottom:864.293333pt;}
.yd4{bottom:867.653333pt;}
.y132{bottom:871.173333pt;}
.y62{bottom:875.173333pt;}
.y110{bottom:880.293333pt;}
.yd3{bottom:883.653333pt;}
.y131{bottom:886.533333pt;}
.y61{bottom:890.533333pt;}
.y10f{bottom:896.293333pt;}
.y130{bottom:901.893333pt;}
.y60{bottom:905.893333pt;}
.y10e{bottom:912.293333pt;}
.y12f{bottom:915.013333pt;}
.yd2{bottom:917.893333pt;}
.y5f{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.y10d{bottom:928.293333pt;}
.yd1{bottom:933.253333pt;}
.y5e{bottom:936.613333pt;}
.y10c{bottom:944.293333pt;}
.yd0{bottom:946.373333pt;}
.y6{bottom:948.293333pt;}
.y5d{bottom:951.813333pt;}
.y10b{bottom:960.293333pt;}
.ycf{bottom:962.373333pt;}
.y5c{bottom:967.173333pt;}
.y10a{bottom:976.293333pt;}
.y12e{bottom:977.733333pt;}
.yce{bottom:978.373333pt;}
.y5b{bottom:982.533333pt;}
.y109{bottom:992.293333pt;}
.y12d{bottom:993.733333pt;}
.ycd{bottom:994.373333pt;}
.y5a{bottom:997.893333pt;}
.y108{bottom:1008.293333pt;}
.y12b{bottom:1009.733333pt;}
.y59{bottom:1013.280000pt;}
.y107{bottom:1024.320000pt;}
.y58{bottom:1028.640000pt;}
.y106{bottom:1040.320000pt;}
.y57{bottom:1043.840000pt;}
.h23{height:15.200000pt;}
.h21{height:15.360000pt;}
.h24{height:15.392000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.312000pt;}
.h25{height:30.560000pt;}
.h27{height:30.592000pt;}
.h22{height:30.720000pt;}
.h26{height:30.752000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.640000pt;}
.h18{height:34.505000pt;}
.h1a{height:37.090625pt;}
.h19{height:37.479688pt;}
.h20{height:38.672812pt;}
.h1f{height:38.828437pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h1e{height:81.250625pt;}
.h1d{height:89.918750pt;}
.h7{height:108.032000pt;}
.hc{height:229.786667pt;}
.h14{height:490.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:46.400000pt;}
.w21{width:57.440000pt;}
.w3{width:64.960000pt;}
.w1f{width:70.752000pt;}
.w20{width:72.960000pt;}
.w11{width:73.952000pt;}
.w13{width:74.272000pt;}
.wf{width:86.592000pt;}
.w23{width:87.552000pt;}
.w27{width:90.272000pt;}
.w2b{width:92.992000pt;}
.w12{width:93.280000pt;}
.w10{width:93.440000pt;}
.w16{width:94.592000pt;}
.we{width:98.592000pt;}
.w28{width:105.312000pt;}
.w2c{width:109.280000pt;}
.w1c{width:119.072000pt;}
.w24{width:123.712000pt;}
.w14{width:124.160000pt;}
.wa{width:125.792000pt;}
.wb{width:131.552000pt;}
.w1e{width:132.672000pt;}
.w17{width:133.440000pt;}
.w1a{width:134.240000pt;}
.w25{width:134.400000pt;}
.w5{width:135.066667pt;}
.w29{width:141.280000pt;}
.w18{width:145.146667pt;}
.w1b{width:145.786667pt;}
.w2d{width:147.706667pt;}
.w26{width:152.986667pt;}
.w2a{width:156.186667pt;}
.w2e{width:164.346667pt;}
.wc{width:186.586667pt;}
.w8{width:198.626667pt;}
.wd{width:202.586667pt;}
.w15{width:273.506667pt;}
.w22{width:301.026667pt;}
.w19{width:367.293333pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.720000pt;}
.x2{left:7.712000pt;}
.x16{left:11.200000pt;}
.xb{left:20.192000pt;}
.xd{left:29.632000pt;}
.x12{left:59.232000pt;}
.xc{left:61.312000pt;}
.x1{left:72.000000pt;}
.x44{left:73.599988pt;}
.x10{left:76.346667pt;}
.x2a{left:77.439988pt;}
.x4{left:87.226667pt;}
.xf{left:94.426667pt;}
.x19{left:96.031988pt;}
.x13{left:96.986667pt;}
.x11{left:101.146667pt;}
.x1b{left:120.031988pt;}
.x2f{left:140.986655pt;}
.x1a{left:144.026655pt;}
.x1e{left:160.826655pt;}
.x23{left:172.026667pt;}
.x3d{left:175.066655pt;}
.xe{left:183.746667pt;}
.x14{left:191.266667pt;}
.x31{left:192.346667pt;}
.x1f{left:199.226667pt;}
.x47{left:204.826667pt;}
.x5{left:207.066667pt;}
.x22{left:213.306655pt;}
.x1d{left:216.026655pt;}
.x3f{left:226.266667pt;}
.x35{left:231.226655pt;}
.x46{left:233.466655pt;}
.x32{left:239.386667pt;}
.x8{left:241.986667pt;}
.x3e{left:248.386655pt;}
.x25{left:259.266667pt;}
.x15{left:270.626667pt;}
.x6{left:295.106667pt;}
.x48{left:298.466667pt;}
.x7{left:312.226667pt;}
.x40{left:317.186667pt;}
.xa{left:324.866667pt;}
.x20{left:331.426667pt;}
.x45{left:343.746655pt;}
.x2c{left:346.786667pt;}
.x26{left:353.346667pt;}
.x17{left:361.986655pt;}
.x33{left:372.866667pt;}
.x36{left:374.306667pt;}
.x2b{left:377.666655pt;}
.x9{left:390.666667pt;}
.x3a{left:396.866655pt;}
.x18{left:399.266655pt;}
.x49{left:408.386667pt;}
.x41{left:423.133333pt;}
.x27{left:428.093333pt;}
.x30{left:440.573333pt;}
.x2d{left:442.013333pt;}
.x34{left:444.253333pt;}
.x37{left:462.493333pt;}
.x21{left:518.653333pt;}
.x28{left:522.173333pt;}
.x4a{left:556.893333pt;}
.x1c{left:561.213322pt;}
.x42{left:565.053333pt;}
.x2e{left:576.093333pt;}
.x38{left:586.853333pt;}
.x39{left:588.293322pt;}
.x29{left:597.093333pt;}
.x43{left:625.893322pt;}
.x3b{left:640.293322pt;}
.x3c{left:641.573322pt;}
.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; }
  