
    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_db7937089ca149a60ff696a9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_16382525d9015a431ac85d6b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d756c9bea1a754af4e063254.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5b335ccf3637052a2d73b12d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_029788eacc8662a6edad9f2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001465;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_4154249b6f2fdb3a9b4853a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001465;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_1ec03e643bf23e7db0140f9f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9e873514a61db36a3900b23c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7f0c3cb079d6c24500b8a352.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2eeed39b8eb71fccc12b26ce.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c55b0514a4711a010d09e0d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942383;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_b59ab54cf00d6f196fd7ea2c.woff2')format("woff");}.fff{font-family:fff;line-height:0.942383;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_f79b85826d745d4e366da404.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_124108c3513ec5b95b3e2103.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_4b7b25a895d32e2b12790f29.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_ac7cfc3d9d055a69751535d4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_4d30c5a3ff25eee246a75131.woff2')format("woff");}.ff15{font-family:ff15;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-2.076000px;}
.ls10{letter-spacing:-1.500000px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.127200px;}
.ls19{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.038160px;}
.ls11{letter-spacing:-0.018000px;}
.ls1b{letter-spacing:-0.008640px;}
.lsb{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.012960px;}
.lsd{letter-spacing:0.013661px;}
.ls8{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.087600px;}
.ls5{letter-spacing:0.132600px;}
.lsa{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206640px;}
.ls2{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.336969px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.370080px;}
.ls18{letter-spacing:0.370200px;}
.ls7{letter-spacing:0.786240px;}
.ls0{letter-spacing:0.900000px;}
.ls1e{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.ls9{letter-spacing:64.026720px;}
.ls17{letter-spacing:70.506720px;}
.ls1d{letter-spacing:201.204000px;}
.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;}
.wsa{word-spacing:-56.880000px;}
.ws5{word-spacing:-22.087200px;}
.ws4{word-spacing:-21.511200px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws1{word-spacing:-15.300000px;}
.ws10{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.505760px;}
.wsb{word-spacing:-12.816720px;}
.ws9{word-spacing:-12.204000px;}
.ws8{word-spacing:-12.186000px;}
.ws11{word-spacing:-9.732960px;}
.wsf{word-spacing:-9.720000px;}
.ws12{word-spacing:-9.711360px;}
.ws6{word-spacing:-8.786880px;}
.ws7{word-spacing:-8.136000px;}
.wse{word-spacing:0.000000px;}
._1b{margin-left:-7.169280px;}
._4{margin-left:-5.679840px;}
._1a{margin-left:-4.470000px;}
._2{margin-left:-3.261840px;}
._0{margin-left:-1.254960px;}
._1{width:1.374480px;}
._3{width:2.450160px;}
._9{width:3.525840px;}
._a{width:4.900320px;}
._5{width:6.573600px;}
._6{width:7.589520px;}
._c{width:8.625600px;}
._b{width:10.507680px;}
._f{width:11.593440px;}
._10{width:12.728880px;}
._e{width:13.744800px;}
._d{width:16.015680px;}
._8{width:17.987760px;}
._7{width:19.063440px;}
._1c{width:20.135520px;}
._16{width:25.039440px;}
._12{width:26.413920px;}
._11{width:27.728640px;}
._13{width:38.635680px;}
._15{width:42.250320px;}
._19{width:90.894960px;}
._17{width:104.221440px;}
._18{width:107.807040px;}
._14{width:121.973520px;}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:62.991941px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y12d{bottom:3.234000px;}
.y47{bottom:3.240000px;}
.yb3{bottom:3.600000px;}
.y4c{bottom:3.960000px;}
.y19{bottom:4.500000px;}
.y4a{bottom:10.620000px;}
.ye{bottom:10.800000px;}
.ydd{bottom:11.520000px;}
.yce{bottom:11.880000px;}
.y12b{bottom:12.234000px;}
.yae{bottom:12.240000px;}
.yd1{bottom:12.270000px;}
.ye3{bottom:12.285000px;}
.yc{bottom:13.680000px;}
.y1b{bottom:13.860000px;}
.y3{bottom:16.560000px;}
.y138{bottom:17.640000px;}
.yaf{bottom:17.670000px;}
.y14a{bottom:20.160000px;}
.y46{bottom:20.520000px;}
.yb2{bottom:20.880000px;}
.y4b{bottom:22.320000px;}
.y49{bottom:25.200000px;}
.ydb{bottom:25.920000px;}
.y5{bottom:26.640000px;}
.y18{bottom:27.540000px;}
.y149{bottom:29.160000px;}
.yb{bottom:30.060000px;}
.yee{bottom:30.240000px;}
.y147{bottom:34.560000px;}
.y2{bottom:35.136000px;}
.y4{bottom:35.316000px;}
.y45{bottom:37.800000px;}
.y17{bottom:44.145000px;}
.ya{bottom:46.440000px;}
.ye7{bottom:48.240000px;}
.ydf{bottom:48.285000px;}
.y1{bottom:48.780000px;}
.y44{bottom:55.080000px;}
.y16{bottom:60.525000px;}
.yf7{bottom:66.240000px;}
.y43{bottom:72.405000px;}
.y9{bottom:73.260000px;}
.y15{bottom:76.365000px;}
.y14{bottom:86.805000px;}
.y42{bottom:89.685000px;}
.y8{bottom:92.910000px;}
.y13{bottom:105.165000px;}
.y41{bottom:106.785000px;}
.y7{bottom:111.270000px;}
.y91{bottom:111.456000px;}
.y129{bottom:112.716000px;}
.yed{bottom:115.776000px;}
.yac{bottom:116.856000px;}
.y53{bottom:122.076000px;}
.y12{bottom:124.065000px;}
.y90{bottom:128.556000px;}
.y177{bottom:128.736000px;}
.y12e{bottom:130.716000px;}
.yf1{bottom:133.776000px;}
.yab{bottom:134.136000px;}
.y15e{bottom:139.176000px;}
.y52{bottom:139.356000px;}
.y40{bottom:141.345000px;}
.y8f{bottom:145.836000px;}
.y176{bottom:146.016000px;}
.y12a{bottom:148.716000px;}
.y11{bottom:149.805000px;}
.yaa{bottom:151.410000px;}
.yef{bottom:151.770000px;}
.y15d{bottom:156.450000px;}
.y51{bottom:156.630000px;}
.y3f{bottom:158.625000px;}
.y8e{bottom:163.110000px;}
.y175{bottom:163.290000px;}
.y12c{bottom:166.710000px;}
.ya9{bottom:168.690000px;}
.yf0{bottom:169.770000px;}
.y15c{bottom:173.730000px;}
.y50{bottom:173.910000px;}
.y10{bottom:174.285000px;}
.y3e{bottom:175.905000px;}
.y8d{bottom:180.390000px;}
.y174{bottom:180.570000px;}
.y127{bottom:184.710000px;}
.ya8{bottom:185.790000px;}
.ye6{bottom:187.770000px;}
.y15b{bottom:191.010000px;}
.y4f{bottom:191.190000px;}
.y3d{bottom:193.185000px;}
.y8c{bottom:197.670000px;}
.y128{bottom:202.710000px;}
.ya7{bottom:203.070000px;}
.yec{bottom:205.770000px;}
.y4e{bottom:208.290000px;}
.y3c{bottom:210.285000px;}
.y8b{bottom:214.950000px;}
.ya6{bottom:220.350000px;}
.y125{bottom:220.710000px;}
.yea{bottom:223.770000px;}
.y4d{bottom:225.570000px;}
.y3b{bottom:227.565000px;}
.y8a{bottom:232.050000px;}
.y173{bottom:232.230000px;}
.ya5{bottom:237.630000px;}
.y48{bottom:239.610000px;}
.yeb{bottom:241.770000px;}
.y15a{bottom:242.670000px;}
.y3a{bottom:244.845000px;}
.y89{bottom:249.330000px;}
.y172{bottom:249.510000px;}
.ya4{bottom:254.910000px;}
.y126{bottom:255.270000px;}
.ye8{bottom:259.770000px;}
.y159{bottom:259.950000px;}
.y39{bottom:262.125000px;}
.y88{bottom:266.610000px;}
.y171{bottom:266.790000px;}
.ya3{bottom:272.010000px;}
.y1c{bottom:276.150000px;}
.y124{bottom:276.510000px;}
.y158{bottom:277.230000px;}
.ye9{bottom:277.770000px;}
.y38{bottom:279.405000px;}
.y87{bottom:283.890000px;}
.y170{bottom:284.070000px;}
.ya2{bottom:289.290000px;}
.y123{bottom:293.790000px;}
.y157{bottom:294.510000px;}
.yde{bottom:295.770000px;}
.y37{bottom:296.505000px;}
.y86{bottom:301.170000px;}
.y29{bottom:304.425000px;}
.ya1{bottom:306.570000px;}
.y122{bottom:311.070000px;}
.y156{bottom:311.790000px;}
.ye5{bottom:313.770000px;}
.y36{bottom:313.785000px;}
.y85{bottom:318.450000px;}
.y28{bottom:319.725000px;}
.ya0{bottom:323.850000px;}
.y121{bottom:328.170000px;}
.y155{bottom:329.070000px;}
.y35{bottom:331.095000px;}
.ye2{bottom:331.770000px;}
.y84{bottom:335.550000px;}
.y16f{bottom:335.730000px;}
.y27{bottom:337.215000px;}
.y9f{bottom:341.175000px;}
.y120{bottom:345.495000px;}
.y154{bottom:346.215000px;}
.y34{bottom:348.375000px;}
.ye4{bottom:349.815000px;}
.y83{bottom:352.875000px;}
.y16e{bottom:353.055000px;}
.y26{bottom:354.495000px;}
.y9e{bottom:358.455000px;}
.y11f{bottom:362.775000px;}
.y153{bottom:363.495000px;}
.y33{bottom:366.735000px;}
.ye0{bottom:367.815000px;}
.y82{bottom:370.155000px;}
.y16d{bottom:370.335000px;}
.y25{bottom:371.775000px;}
.y9d{bottom:375.555000px;}
.y152{bottom:378.255000px;}
.y11e{bottom:380.055000px;}
.y32{bottom:384.015000px;}
.ye1{bottom:385.815000px;}
.y81{bottom:387.435000px;}
.y16c{bottom:387.615000px;}
.y24{bottom:389.595000px;}
.y9c{bottom:392.835000px;}
.y151{bottom:396.255000px;}
.y11d{bottom:397.335000px;}
.y31{bottom:401.115000px;}
.yda{bottom:403.815000px;}
.y80{bottom:404.715000px;}
.y23{bottom:406.875000px;}
.y9b{bottom:410.115000px;}
.y14f{bottom:414.255000px;}
.y11c{bottom:414.615000px;}
.y30{bottom:418.395000px;}
.y7f{bottom:421.815000px;}
.y16b{bottom:421.995000px;}
.y22{bottom:424.335000px;}
.y9a{bottom:427.395000px;}
.y11b{bottom:429.375000px;}
.y150{bottom:432.255000px;}
.y2f{bottom:435.675000px;}
.ydc{bottom:438.375000px;}
.y7e{bottom:439.095000px;}
.y16a{bottom:439.275000px;}
.y21{bottom:441.795000px;}
.y99{bottom:444.675000px;}
.y11a{bottom:447.375000px;}
.y14d{bottom:450.255000px;}
.y2e{bottom:452.955000px;}
.y7d{bottom:456.375000px;}
.y169{bottom:456.555000px;}
.y20{bottom:459.075000px;}
.yd9{bottom:459.615000px;}
.y98{bottom:461.955000px;}
.y119{bottom:465.195000px;}
.y14e{bottom:468.255000px;}
.y2d{bottom:470.235000px;}
.y7c{bottom:473.655000px;}
.y168{bottom:473.835000px;}
.yd8{bottom:476.715000px;}
.y97{bottom:479.055000px;}
.y1f{bottom:479.415000px;}
.y14b{bottom:486.255000px;}
.y2c{bottom:487.515000px;}
.y7b{bottom:490.935000px;}
.yd7{bottom:493.995000px;}
.y96{bottom:496.335000px;}
.y118{bottom:503.715000px;}
.y14c{bottom:504.255000px;}
.y2b{bottom:504.615000px;}
.y1e{bottom:506.955000px;}
.y7a{bottom:508.215000px;}
.y95{bottom:510.375000px;}
.yd6{bottom:511.275000px;}
.y117{bottom:520.995000px;}
.y2a{bottom:521.895000px;}
.y146{bottom:522.255000px;}
.y1d{bottom:524.595000px;}
.y79{bottom:525.315000px;}
.y167{bottom:525.495000px;}
.yd5{bottom:528.555000px;}
.y116{bottom:538.275000px;}
.y78{bottom:542.595000px;}
.y166{bottom:542.775000px;}
.yd4{bottom:545.835000px;}
.y115{bottom:555.555000px;}
.y77{bottom:559.875000px;}
.y165{bottom:560.055000px;}
.yd3{bottom:562.935000px;}
.y114{bottom:572.835000px;}
.y148{bottom:574.095000px;}
.y76{bottom:577.155000px;}
.y164{bottom:577.335000px;}
.yd2{bottom:580.215000px;}
.y113{bottom:589.935000px;}
.y75{bottom:594.435000px;}
.yd0{bottom:594.975000px;}
.y145{bottom:595.335000px;}
.y112{bottom:607.245000px;}
.y74{bottom:611.745000px;}
.y144{bottom:612.465000px;}
.ycf{bottom:613.005000px;}
.y111{bottom:624.525000px;}
.y73{bottom:628.845000px;}
.y163{bottom:629.025000px;}
.y143{bottom:629.745000px;}
.ycd{bottom:631.005000px;}
.y110{bottom:641.805000px;}
.y72{bottom:646.125000px;}
.y162{bottom:646.305000px;}
.y142{bottom:647.025000px;}
.y10f{bottom:659.085000px;}
.y71{bottom:663.405000px;}
.y161{bottom:663.585000px;}
.y141{bottom:664.305000px;}
.ycc{bottom:669.525000px;}
.y10b{bottom:673.845000px;}
.y140{bottom:679.065000px;}
.y70{bottom:680.685000px;}
.y160{bottom:680.865000px;}
.ycb{bottom:686.805000px;}
.y10e{bottom:691.845000px;}
.y13f{bottom:697.065000px;}
.y6f{bottom:697.965000px;}
.yca{bottom:704.085000px;}
.y10c{bottom:709.845000px;}
.y6e{bottom:715.065000px;}
.y15f{bottom:715.245000px;}
.yc9{bottom:721.365000px;}
.y10d{bottom:727.845000px;}
.y6d{bottom:732.525000px;}
.y13e{bottom:733.065000px;}
.yc8{bottom:738.465000px;}
.y105{bottom:745.845000px;}
.y6c{bottom:749.805000px;}
.y13c{bottom:751.065000px;}
.yc7{bottom:755.745000px;}
.y10a{bottom:763.845000px;}
.y6b{bottom:767.085000px;}
.y13d{bottom:769.065000px;}
.yc6{bottom:773.025000px;}
.y108{bottom:781.845000px;}
.y6a{bottom:784.365000px;}
.y13a{bottom:787.065000px;}
.yc5{bottom:790.305000px;}
.y109{bottom:799.845000px;}
.y69{bottom:801.465000px;}
.y13b{bottom:805.065000px;}
.yc4{bottom:807.585000px;}
.y1a{bottom:812.085000px;}
.y106{bottom:817.845000px;}
.y68{bottom:818.745000px;}
.y137{bottom:823.065000px;}
.yc3{bottom:824.685000px;}
.y107{bottom:835.845000px;}
.y67{bottom:836.025000px;}
.y139{bottom:841.065000px;}
.yf{bottom:841.605000px;}
.yc2{bottom:841.965000px;}
.y66{bottom:853.305000px;}
.yff{bottom:853.845000px;}
.yc1{bottom:859.245000px;}
.y136{bottom:862.305000px;}
.y94{bottom:868.245000px;}
.y65{bottom:870.630000px;}
.y104{bottom:871.890000px;}
.yc0{bottom:876.570000px;}
.y135{bottom:879.630000px;}
.y93{bottom:885.570000px;}
.y64{bottom:887.730000px;}
.y102{bottom:889.890000px;}
.ybf{bottom:893.850000px;}
.y134{bottom:896.730000px;}
.y92{bottom:899.610000px;}
.y63{bottom:905.010000px;}
.y103{bottom:907.890000px;}
.ybe{bottom:908.610000px;}
.y133{bottom:914.010000px;}
.y62{bottom:922.290000px;}
.y100{bottom:925.890000px;}
.ybd{bottom:926.610000px;}
.y132{bottom:931.290000px;}
.y61{bottom:939.570000px;}
.y101{bottom:943.890000px;}
.ybb{bottom:944.610000px;}
.y131{bottom:948.570000px;}
.y60{bottom:956.850000px;}
.yf6{bottom:961.890000px;}
.ybc{bottom:962.610000px;}
.y130{bottom:965.850000px;}
.y5f{bottom:974.130000px;}
.yfe{bottom:979.890000px;}
.yb9{bottom:980.610000px;}
.y12f{bottom:983.130000px;}
.y5e{bottom:991.230000px;}
.yfc{bottom:997.890000px;}
.yba{bottom:998.610000px;}
.y5d{bottom:1008.510000px;}
.yfd{bottom:1015.890000px;}
.yb7{bottom:1016.610000px;}
.y5c{bottom:1025.790000px;}
.yd{bottom:1031.010000px;}
.yfa{bottom:1033.890000px;}
.yb8{bottom:1034.610000px;}
.y5b{bottom:1043.070000px;}
.yfb{bottom:1051.890000px;}
.yb5{bottom:1052.610000px;}
.y6{bottom:1056.390000px;}
.y5a{bottom:1060.350000px;}
.yf8{bottom:1069.890000px;}
.yb6{bottom:1070.610000px;}
.y59{bottom:1077.630000px;}
.yf9{bottom:1087.890000px;}
.yb1{bottom:1088.610000px;}
.y58{bottom:1094.730000px;}
.yf4{bottom:1105.890000px;}
.yb4{bottom:1106.610000px;}
.y57{bottom:1112.010000px;}
.yf5{bottom:1123.890000px;}
.yad{bottom:1124.610000px;}
.y56{bottom:1129.290000px;}
.yf2{bottom:1141.920000px;}
.yb0{bottom:1142.640000px;}
.y55{bottom:1146.600000px;}
.yf3{bottom:1159.920000px;}
.y54{bottom:1163.880000px;}
.h28{height:17.100000px;}
.h2f{height:17.136000px;}
.h23{height:17.280000px;}
.h24{height:17.316000px;}
.hd{height:24.840000px;}
.h15{height:27.492188px;}
.h16{height:29.520000px;}
.h29{height:33.660000px;}
.h34{height:33.840000px;}
.h26{height:34.560000px;}
.h2d{height:35.100000px;}
.h2e{height:35.136000px;}
.h25{height:35.280000px;}
.h22{height:35.316000px;}
.h14{height:35.806641px;}
.h9{height:36.180000px;}
.h1f{height:36.540000px;}
.h1c{height:36.839531px;}
.h1d{height:41.726953px;}
.h5{height:42.164648px;}
.h3{height:42.281367px;}
.h1b{height:43.437656px;}
.h1e{height:43.506914px;}
.h10{height:44.002969px;}
.hb{height:44.820000px;}
.h20{height:45.637031px;}
.h19{height:47.980898px;}
.h21{height:48.027656px;}
.h2{height:49.176000px;}
.he{height:49.680000px;}
.h6{height:50.273438px;}
.h37{height:50.940000px;}
.h27{height:51.660000px;}
.h33{height:51.840000px;}
.h4{height:53.087935px;}
.ha{height:54.000000px;}
.h1a{height:56.574492px;}
.h12{height:59.439023px;}
.h13{height:61.189805px;}
.h11{height:63.180000px;}
.h8{height:65.884219px;}
.h17{height:67.824844px;}
.h36{height:68.940000px;}
.h35{height:71.136000px;}
.h2c{height:71.280000px;}
.hc{height:71.613281px;}
.h32{height:107.100000px;}
.h31{height:107.136000px;}
.h2b{height:107.280000px;}
.h2a{height:107.316000px;}
.h7{height:121.536000px;}
.h30{height:143.100000px;}
.hf{height:189.390000px;}
.h18{height:535.935000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:44.856000px;}
.w23{width:45.576000px;}
.w1d{width:56.880000px;}
.w2b{width:57.456000px;}
.w1b{width:64.836000px;}
.w1f{width:66.060000px;}
.w2a{width:67.320000px;}
.wb{width:69.336000px;}
.w15{width:70.020000px;}
.w2d{width:70.200000px;}
.w2e{width:70.380000px;}
.w26{width:70.920000px;}
.w16{width:73.980000px;}
.w3{width:74.880000px;}
.w1a{width:81.180000px;}
.w17{width:86.976000px;}
.w18{width:87.120000px;}
.w28{width:88.200000px;}
.w27{width:88.236000px;}
.w19{width:92.556000px;}
.w29{width:93.636000px;}
.w24{width:97.740000px;}
.w13{width:99.540000px;}
.w21{width:100.800000px;}
.w25{width:101.016000px;}
.w14{width:102.816000px;}
.w30{width:103.356000px;}
.w38{width:104.076000px;}
.w32{width:104.256000px;}
.w37{width:119.196000px;}
.w31{width:119.376000px;}
.wd{width:122.940000px;}
.w34{width:123.840000px;}
.w3a{width:124.020000px;}
.w1e{width:125.136000px;}
.wa{width:152.130000px;}
.w2f{width:153.900000px;}
.w20{width:153.930000px;}
.w5{width:155.370000px;}
.w36{width:172.830000px;}
.w3b{width:173.010000px;}
.wf{width:173.550000px;}
.w11{width:176.070000px;}
.w22{width:178.770000px;}
.w8{width:220.935000px;}
.w35{width:223.410000px;}
.we{width:225.570000px;}
.w1c{width:255.450000px;}
.w2c{width:257.970000px;}
.w33{width:396.975000px;}
.w39{width:397.155000px;}
.wc{width:400.035000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w10{width:746.610000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:7.560000px;}
.x2{left:8.640000px;}
.x16{left:12.600000px;}
.xe{left:29.736000px;}
.x17{left:35.100000px;}
.x18{left:62.100000px;}
.x1{left:72.360000px;}
.x6{left:80.999987px;}
.x40{left:85.139987px;}
.x2d{left:91.655987px;}
.x43{left:94.355987px;}
.x7{left:98.130000px;}
.x19{left:108.035987px;}
.xf{left:110.550000px;}
.x34{left:112.175987px;}
.x25{left:119.555987px;}
.x10{left:135.750000px;}
.x12{left:158.790000px;}
.x11{left:167.430000px;}
.x35{left:175.349987px;}
.x13{left:186.870000px;}
.x42{left:193.350000px;}
.x1f{left:201.809987px;}
.x14{left:215.175000px;}
.x20{left:226.110000px;}
.x8{left:228.270000px;}
.x3c{left:235.650000px;}
.x2e{left:238.709987px;}
.x2f{left:248.430000px;}
.x27{left:250.050000px;}
.x36{left:252.750000px;}
.x3b{left:260.849987px;}
.xb{left:285.015000px;}
.x15{left:293.835000px;}
.x21{left:296.175000px;}
.x45{left:297.975000px;}
.x37{left:299.055000px;}
.x30{left:313.995000px;}
.x26{left:330.194987px;}
.x44{left:342.794987px;}
.x9{left:344.775000px;}
.xa{left:364.035000px;}
.xd{left:373.575000px;}
.x28{left:396.075000px;}
.x38{left:397.515000px;}
.x41{left:413.174987px;}
.x1c{left:447.734987px;}
.xc{left:452.280000px;}
.x1e{left:459.794987px;}
.x33{left:468.645000px;}
.x1a{left:473.504987px;}
.x29{left:499.605000px;}
.x23{left:522.645000px;}
.x3d{left:552.525000px;}
.x3{left:564.585000px;}
.x2a{left:570.345000px;}
.x4{left:602.790000px;}
.x3e{left:623.445000px;}
.x31{left:627.945000px;}
.x39{left:642.705000px;}
.x2b{left:645.045000px;}
.x46{left:695.850000px;}
.x22{left:696.930000px;}
.x1b{left:717.089987px;}
.x1d{left:719.609987px;}
.x3a{left:731.670000px;}
.x2c{left:732.750000px;}
.x5{left:745.890000px;}
.x3f{left:749.490000px;}
.x32{left:753.810000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-1.845333pt;}
.ls10{letter-spacing:-1.333333pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.113067pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.033920pt;}
.ls11{letter-spacing:-0.016000pt;}
.ls1b{letter-spacing:-0.007680pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.011520pt;}
.lsd{letter-spacing:0.012143pt;}
.ls8{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.077867pt;}
.ls5{letter-spacing:0.117867pt;}
.lsa{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183680pt;}
.ls2{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.299528pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.328960pt;}
.ls18{letter-spacing:0.329067pt;}
.ls7{letter-spacing:0.698880pt;}
.ls0{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls9{letter-spacing:56.912640pt;}
.ls17{letter-spacing:62.672640pt;}
.ls1d{letter-spacing:178.848000pt;}
.wsc{word-spacing:-53.120000pt;}
.wsa{word-spacing:-50.560000pt;}
.ws5{word-spacing:-19.633067pt;}
.ws4{word-spacing:-19.121067pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws1{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.392640pt;}
.ws9{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.832000pt;}
.ws11{word-spacing:-8.651520pt;}
.wsf{word-spacing:-8.640000pt;}
.ws12{word-spacing:-8.632320pt;}
.ws6{word-spacing:-7.810560pt;}
.ws7{word-spacing:-7.232000pt;}
.wse{word-spacing:0.000000pt;}
._1b{margin-left:-6.372693pt;}
._4{margin-left:-5.048747pt;}
._1a{margin-left:-3.973333pt;}
._2{margin-left:-2.899413pt;}
._0{margin-left:-1.115520pt;}
._1{width:1.221760pt;}
._3{width:2.177920pt;}
._9{width:3.134080pt;}
._a{width:4.355840pt;}
._5{width:5.843200pt;}
._6{width:6.746240pt;}
._c{width:7.667200pt;}
._b{width:9.340160pt;}
._f{width:10.305280pt;}
._10{width:11.314560pt;}
._e{width:12.217600pt;}
._d{width:14.236160pt;}
._8{width:15.989120pt;}
._7{width:16.945280pt;}
._1c{width:17.898240pt;}
._16{width:22.257280pt;}
._12{width:23.479040pt;}
._11{width:24.647680pt;}
._13{width:34.342827pt;}
._15{width:37.555840pt;}
._19{width:80.795520pt;}
._17{width:92.641280pt;}
._18{width:95.828480pt;}
._14{width:108.420907pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:55.992837pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:2.874667pt;}
.y47{bottom:2.880000pt;}
.yb3{bottom:3.200000pt;}
.y4c{bottom:3.520000pt;}
.y19{bottom:4.000000pt;}
.y4a{bottom:9.440000pt;}
.ye{bottom:9.600000pt;}
.ydd{bottom:10.240000pt;}
.yce{bottom:10.560000pt;}
.y12b{bottom:10.874667pt;}
.yae{bottom:10.880000pt;}
.yd1{bottom:10.906667pt;}
.ye3{bottom:10.920000pt;}
.yc{bottom:12.160000pt;}
.y1b{bottom:12.320000pt;}
.y3{bottom:14.720000pt;}
.y138{bottom:15.680000pt;}
.yaf{bottom:15.706667pt;}
.y14a{bottom:17.920000pt;}
.y46{bottom:18.240000pt;}
.yb2{bottom:18.560000pt;}
.y4b{bottom:19.840000pt;}
.y49{bottom:22.400000pt;}
.ydb{bottom:23.040000pt;}
.y5{bottom:23.680000pt;}
.y18{bottom:24.480000pt;}
.y149{bottom:25.920000pt;}
.yb{bottom:26.720000pt;}
.yee{bottom:26.880000pt;}
.y147{bottom:30.720000pt;}
.y2{bottom:31.232000pt;}
.y4{bottom:31.392000pt;}
.y45{bottom:33.600000pt;}
.y17{bottom:39.240000pt;}
.ya{bottom:41.280000pt;}
.ye7{bottom:42.880000pt;}
.ydf{bottom:42.920000pt;}
.y1{bottom:43.360000pt;}
.y44{bottom:48.960000pt;}
.y16{bottom:53.800000pt;}
.yf7{bottom:58.880000pt;}
.y43{bottom:64.360000pt;}
.y9{bottom:65.120000pt;}
.y15{bottom:67.880000pt;}
.y14{bottom:77.160000pt;}
.y42{bottom:79.720000pt;}
.y8{bottom:82.586667pt;}
.y13{bottom:93.480000pt;}
.y41{bottom:94.920000pt;}
.y7{bottom:98.906667pt;}
.y91{bottom:99.072000pt;}
.y129{bottom:100.192000pt;}
.yed{bottom:102.912000pt;}
.yac{bottom:103.872000pt;}
.y53{bottom:108.512000pt;}
.y12{bottom:110.280000pt;}
.y90{bottom:114.272000pt;}
.y177{bottom:114.432000pt;}
.y12e{bottom:116.192000pt;}
.yf1{bottom:118.912000pt;}
.yab{bottom:119.232000pt;}
.y15e{bottom:123.712000pt;}
.y52{bottom:123.872000pt;}
.y40{bottom:125.640000pt;}
.y8f{bottom:129.632000pt;}
.y176{bottom:129.792000pt;}
.y12a{bottom:132.192000pt;}
.y11{bottom:133.160000pt;}
.yaa{bottom:134.586667pt;}
.yef{bottom:134.906667pt;}
.y15d{bottom:139.066667pt;}
.y51{bottom:139.226667pt;}
.y3f{bottom:141.000000pt;}
.y8e{bottom:144.986667pt;}
.y175{bottom:145.146667pt;}
.y12c{bottom:148.186667pt;}
.ya9{bottom:149.946667pt;}
.yf0{bottom:150.906667pt;}
.y15c{bottom:154.426667pt;}
.y50{bottom:154.586667pt;}
.y10{bottom:154.920000pt;}
.y3e{bottom:156.360000pt;}
.y8d{bottom:160.346667pt;}
.y174{bottom:160.506667pt;}
.y127{bottom:164.186667pt;}
.ya8{bottom:165.146667pt;}
.ye6{bottom:166.906667pt;}
.y15b{bottom:169.786667pt;}
.y4f{bottom:169.946667pt;}
.y3d{bottom:171.720000pt;}
.y8c{bottom:175.706667pt;}
.y128{bottom:180.186667pt;}
.ya7{bottom:180.506667pt;}
.yec{bottom:182.906667pt;}
.y4e{bottom:185.146667pt;}
.y3c{bottom:186.920000pt;}
.y8b{bottom:191.066667pt;}
.ya6{bottom:195.866667pt;}
.y125{bottom:196.186667pt;}
.yea{bottom:198.906667pt;}
.y4d{bottom:200.506667pt;}
.y3b{bottom:202.280000pt;}
.y8a{bottom:206.266667pt;}
.y173{bottom:206.426667pt;}
.ya5{bottom:211.226667pt;}
.y48{bottom:212.986667pt;}
.yeb{bottom:214.906667pt;}
.y15a{bottom:215.706667pt;}
.y3a{bottom:217.640000pt;}
.y89{bottom:221.626667pt;}
.y172{bottom:221.786667pt;}
.ya4{bottom:226.586667pt;}
.y126{bottom:226.906667pt;}
.ye8{bottom:230.906667pt;}
.y159{bottom:231.066667pt;}
.y39{bottom:233.000000pt;}
.y88{bottom:236.986667pt;}
.y171{bottom:237.146667pt;}
.ya3{bottom:241.786667pt;}
.y1c{bottom:245.466667pt;}
.y124{bottom:245.786667pt;}
.y158{bottom:246.426667pt;}
.ye9{bottom:246.906667pt;}
.y38{bottom:248.360000pt;}
.y87{bottom:252.346667pt;}
.y170{bottom:252.506667pt;}
.ya2{bottom:257.146667pt;}
.y123{bottom:261.146667pt;}
.y157{bottom:261.786667pt;}
.yde{bottom:262.906667pt;}
.y37{bottom:263.560000pt;}
.y86{bottom:267.706667pt;}
.y29{bottom:270.600000pt;}
.ya1{bottom:272.506667pt;}
.y122{bottom:276.506667pt;}
.y156{bottom:277.146667pt;}
.ye5{bottom:278.906667pt;}
.y36{bottom:278.920000pt;}
.y85{bottom:283.066667pt;}
.y28{bottom:284.200000pt;}
.ya0{bottom:287.866667pt;}
.y121{bottom:291.706667pt;}
.y155{bottom:292.506667pt;}
.y35{bottom:294.306667pt;}
.ye2{bottom:294.906667pt;}
.y84{bottom:298.266667pt;}
.y16f{bottom:298.426667pt;}
.y27{bottom:299.746667pt;}
.y9f{bottom:303.266667pt;}
.y120{bottom:307.106667pt;}
.y154{bottom:307.746667pt;}
.y34{bottom:309.666667pt;}
.ye4{bottom:310.946667pt;}
.y83{bottom:313.666667pt;}
.y16e{bottom:313.826667pt;}
.y26{bottom:315.106667pt;}
.y9e{bottom:318.626667pt;}
.y11f{bottom:322.466667pt;}
.y153{bottom:323.106667pt;}
.y33{bottom:325.986667pt;}
.ye0{bottom:326.946667pt;}
.y82{bottom:329.026667pt;}
.y16d{bottom:329.186667pt;}
.y25{bottom:330.466667pt;}
.y9d{bottom:333.826667pt;}
.y152{bottom:336.226667pt;}
.y11e{bottom:337.826667pt;}
.y32{bottom:341.346667pt;}
.ye1{bottom:342.946667pt;}
.y81{bottom:344.386667pt;}
.y16c{bottom:344.546667pt;}
.y24{bottom:346.306667pt;}
.y9c{bottom:349.186667pt;}
.y151{bottom:352.226667pt;}
.y11d{bottom:353.186667pt;}
.y31{bottom:356.546667pt;}
.yda{bottom:358.946667pt;}
.y80{bottom:359.746667pt;}
.y23{bottom:361.666667pt;}
.y9b{bottom:364.546667pt;}
.y14f{bottom:368.226667pt;}
.y11c{bottom:368.546667pt;}
.y30{bottom:371.906667pt;}
.y7f{bottom:374.946667pt;}
.y16b{bottom:375.106667pt;}
.y22{bottom:377.186667pt;}
.y9a{bottom:379.906667pt;}
.y11b{bottom:381.666667pt;}
.y150{bottom:384.226667pt;}
.y2f{bottom:387.266667pt;}
.ydc{bottom:389.666667pt;}
.y7e{bottom:390.306667pt;}
.y16a{bottom:390.466667pt;}
.y21{bottom:392.706667pt;}
.y99{bottom:395.266667pt;}
.y11a{bottom:397.666667pt;}
.y14d{bottom:400.226667pt;}
.y2e{bottom:402.626667pt;}
.y7d{bottom:405.666667pt;}
.y169{bottom:405.826667pt;}
.y20{bottom:408.066667pt;}
.yd9{bottom:408.546667pt;}
.y98{bottom:410.626667pt;}
.y119{bottom:413.506667pt;}
.y14e{bottom:416.226667pt;}
.y2d{bottom:417.986667pt;}
.y7c{bottom:421.026667pt;}
.y168{bottom:421.186667pt;}
.yd8{bottom:423.746667pt;}
.y97{bottom:425.826667pt;}
.y1f{bottom:426.146667pt;}
.y14b{bottom:432.226667pt;}
.y2c{bottom:433.346667pt;}
.y7b{bottom:436.386667pt;}
.yd7{bottom:439.106667pt;}
.y96{bottom:441.186667pt;}
.y118{bottom:447.746667pt;}
.y14c{bottom:448.226667pt;}
.y2b{bottom:448.546667pt;}
.y1e{bottom:450.626667pt;}
.y7a{bottom:451.746667pt;}
.y95{bottom:453.666667pt;}
.yd6{bottom:454.466667pt;}
.y117{bottom:463.106667pt;}
.y2a{bottom:463.906667pt;}
.y146{bottom:464.226667pt;}
.y1d{bottom:466.306667pt;}
.y79{bottom:466.946667pt;}
.y167{bottom:467.106667pt;}
.yd5{bottom:469.826667pt;}
.y116{bottom:478.466667pt;}
.y78{bottom:482.306667pt;}
.y166{bottom:482.466667pt;}
.yd4{bottom:485.186667pt;}
.y115{bottom:493.826667pt;}
.y77{bottom:497.666667pt;}
.y165{bottom:497.826667pt;}
.yd3{bottom:500.386667pt;}
.y114{bottom:509.186667pt;}
.y148{bottom:510.306667pt;}
.y76{bottom:513.026667pt;}
.y164{bottom:513.186667pt;}
.yd2{bottom:515.746667pt;}
.y113{bottom:524.386667pt;}
.y75{bottom:528.386667pt;}
.yd0{bottom:528.866667pt;}
.y145{bottom:529.186667pt;}
.y112{bottom:539.773333pt;}
.y74{bottom:543.773333pt;}
.y144{bottom:544.413333pt;}
.ycf{bottom:544.893333pt;}
.y111{bottom:555.133333pt;}
.y73{bottom:558.973333pt;}
.y163{bottom:559.133333pt;}
.y143{bottom:559.773333pt;}
.ycd{bottom:560.893333pt;}
.y110{bottom:570.493333pt;}
.y72{bottom:574.333333pt;}
.y162{bottom:574.493333pt;}
.y142{bottom:575.133333pt;}
.y10f{bottom:585.853333pt;}
.y71{bottom:589.693333pt;}
.y161{bottom:589.853333pt;}
.y141{bottom:590.493333pt;}
.ycc{bottom:595.133333pt;}
.y10b{bottom:598.973333pt;}
.y140{bottom:603.613333pt;}
.y70{bottom:605.053333pt;}
.y160{bottom:605.213333pt;}
.ycb{bottom:610.493333pt;}
.y10e{bottom:614.973333pt;}
.y13f{bottom:619.613333pt;}
.y6f{bottom:620.413333pt;}
.yca{bottom:625.853333pt;}
.y10c{bottom:630.973333pt;}
.y6e{bottom:635.613333pt;}
.y15f{bottom:635.773333pt;}
.yc9{bottom:641.213333pt;}
.y10d{bottom:646.973333pt;}
.y6d{bottom:651.133333pt;}
.y13e{bottom:651.613333pt;}
.yc8{bottom:656.413333pt;}
.y105{bottom:662.973333pt;}
.y6c{bottom:666.493333pt;}
.y13c{bottom:667.613333pt;}
.yc7{bottom:671.773333pt;}
.y10a{bottom:678.973333pt;}
.y6b{bottom:681.853333pt;}
.y13d{bottom:683.613333pt;}
.yc6{bottom:687.133333pt;}
.y108{bottom:694.973333pt;}
.y6a{bottom:697.213333pt;}
.y13a{bottom:699.613333pt;}
.yc5{bottom:702.493333pt;}
.y109{bottom:710.973333pt;}
.y69{bottom:712.413333pt;}
.y13b{bottom:715.613333pt;}
.yc4{bottom:717.853333pt;}
.y1a{bottom:721.853333pt;}
.y106{bottom:726.973333pt;}
.y68{bottom:727.773333pt;}
.y137{bottom:731.613333pt;}
.yc3{bottom:733.053333pt;}
.y107{bottom:742.973333pt;}
.y67{bottom:743.133333pt;}
.y139{bottom:747.613333pt;}
.yf{bottom:748.093333pt;}
.yc2{bottom:748.413333pt;}
.y66{bottom:758.493333pt;}
.yff{bottom:758.973333pt;}
.yc1{bottom:763.773333pt;}
.y136{bottom:766.493333pt;}
.y94{bottom:771.773333pt;}
.y65{bottom:773.893333pt;}
.y104{bottom:775.013333pt;}
.yc0{bottom:779.173333pt;}
.y135{bottom:781.893333pt;}
.y93{bottom:787.173333pt;}
.y64{bottom:789.093333pt;}
.y102{bottom:791.013333pt;}
.ybf{bottom:794.533333pt;}
.y134{bottom:797.093333pt;}
.y92{bottom:799.653333pt;}
.y63{bottom:804.453333pt;}
.y103{bottom:807.013333pt;}
.ybe{bottom:807.653333pt;}
.y133{bottom:812.453333pt;}
.y62{bottom:819.813333pt;}
.y100{bottom:823.013333pt;}
.ybd{bottom:823.653333pt;}
.y132{bottom:827.813333pt;}
.y61{bottom:835.173333pt;}
.y101{bottom:839.013333pt;}
.ybb{bottom:839.653333pt;}
.y131{bottom:843.173333pt;}
.y60{bottom:850.533333pt;}
.yf6{bottom:855.013333pt;}
.ybc{bottom:855.653333pt;}
.y130{bottom:858.533333pt;}
.y5f{bottom:865.893333pt;}
.yfe{bottom:871.013333pt;}
.yb9{bottom:871.653333pt;}
.y12f{bottom:873.893333pt;}
.y5e{bottom:881.093333pt;}
.yfc{bottom:887.013333pt;}
.yba{bottom:887.653333pt;}
.y5d{bottom:896.453333pt;}
.yfd{bottom:903.013333pt;}
.yb7{bottom:903.653333pt;}
.y5c{bottom:911.813333pt;}
.yd{bottom:916.453333pt;}
.yfa{bottom:919.013333pt;}
.yb8{bottom:919.653333pt;}
.y5b{bottom:927.173333pt;}
.yfb{bottom:935.013333pt;}
.yb5{bottom:935.653333pt;}
.y6{bottom:939.013333pt;}
.y5a{bottom:942.533333pt;}
.yf8{bottom:951.013333pt;}
.yb6{bottom:951.653333pt;}
.y59{bottom:957.893333pt;}
.yf9{bottom:967.013333pt;}
.yb1{bottom:967.653333pt;}
.y58{bottom:973.093333pt;}
.yf4{bottom:983.013333pt;}
.yb4{bottom:983.653333pt;}
.y57{bottom:988.453333pt;}
.yf5{bottom:999.013333pt;}
.yad{bottom:999.653333pt;}
.y56{bottom:1003.813333pt;}
.yf2{bottom:1015.040000pt;}
.yb0{bottom:1015.680000pt;}
.y55{bottom:1019.200000pt;}
.yf3{bottom:1031.040000pt;}
.y54{bottom:1034.560000pt;}
.h28{height:15.200000pt;}
.h2f{height:15.232000pt;}
.h23{height:15.360000pt;}
.h24{height:15.392000pt;}
.hd{height:22.080000pt;}
.h15{height:24.437500pt;}
.h16{height:26.240000pt;}
.h29{height:29.920000pt;}
.h34{height:30.080000pt;}
.h26{height:30.720000pt;}
.h2d{height:31.200000pt;}
.h2e{height:31.232000pt;}
.h25{height:31.360000pt;}
.h22{height:31.392000pt;}
.h14{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1f{height:32.480000pt;}
.h1c{height:32.746250pt;}
.h1d{height:37.090625pt;}
.h5{height:37.479688pt;}
.h3{height:37.583438pt;}
.h1b{height:38.611250pt;}
.h1e{height:38.672812pt;}
.h10{height:39.113750pt;}
.hb{height:39.840000pt;}
.h20{height:40.566250pt;}
.h19{height:42.649687pt;}
.h21{height:42.691250pt;}
.h2{height:43.712000pt;}
.he{height:44.160000pt;}
.h6{height:44.687500pt;}
.h37{height:45.280000pt;}
.h27{height:45.920000pt;}
.h33{height:46.080000pt;}
.h4{height:47.189275pt;}
.ha{height:48.000000pt;}
.h1a{height:50.288438pt;}
.h12{height:52.834688pt;}
.h13{height:54.390938pt;}
.h11{height:56.160000pt;}
.h8{height:58.563750pt;}
.h17{height:60.288750pt;}
.h36{height:61.280000pt;}
.h35{height:63.232000pt;}
.h2c{height:63.360000pt;}
.hc{height:63.656250pt;}
.h32{height:95.200000pt;}
.h31{height:95.232000pt;}
.h2b{height:95.360000pt;}
.h2a{height:95.392000pt;}
.h7{height:108.032000pt;}
.h30{height:127.200000pt;}
.hf{height:168.346667pt;}
.h18{height:476.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:39.872000pt;}
.w23{width:40.512000pt;}
.w1d{width:50.560000pt;}
.w2b{width:51.072000pt;}
.w1b{width:57.632000pt;}
.w1f{width:58.720000pt;}
.w2a{width:59.840000pt;}
.wb{width:61.632000pt;}
.w15{width:62.240000pt;}
.w2d{width:62.400000pt;}
.w2e{width:62.560000pt;}
.w26{width:63.040000pt;}
.w16{width:65.760000pt;}
.w3{width:66.560000pt;}
.w1a{width:72.160000pt;}
.w17{width:77.312000pt;}
.w18{width:77.440000pt;}
.w28{width:78.400000pt;}
.w27{width:78.432000pt;}
.w19{width:82.272000pt;}
.w29{width:83.232000pt;}
.w24{width:86.880000pt;}
.w13{width:88.480000pt;}
.w21{width:89.600000pt;}
.w25{width:89.792000pt;}
.w14{width:91.392000pt;}
.w30{width:91.872000pt;}
.w38{width:92.512000pt;}
.w32{width:92.672000pt;}
.w37{width:105.952000pt;}
.w31{width:106.112000pt;}
.wd{width:109.280000pt;}
.w34{width:110.080000pt;}
.w3a{width:110.240000pt;}
.w1e{width:111.232000pt;}
.wa{width:135.226667pt;}
.w2f{width:136.800000pt;}
.w20{width:136.826667pt;}
.w5{width:138.106667pt;}
.w36{width:153.626667pt;}
.w3b{width:153.786667pt;}
.wf{width:154.266667pt;}
.w11{width:156.506667pt;}
.w22{width:158.906667pt;}
.w8{width:196.386667pt;}
.w35{width:198.586667pt;}
.we{width:200.506667pt;}
.w1c{width:227.066667pt;}
.w2c{width:229.306667pt;}
.w33{width:352.866667pt;}
.w39{width:353.026667pt;}
.wc{width:355.586667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w10{width:663.653333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.720000pt;}
.x2{left:7.680000pt;}
.x16{left:11.200000pt;}
.xe{left:26.432000pt;}
.x17{left:31.200000pt;}
.x18{left:55.200000pt;}
.x1{left:64.320000pt;}
.x6{left:71.999988pt;}
.x40{left:75.679988pt;}
.x2d{left:81.471988pt;}
.x43{left:83.871988pt;}
.x7{left:87.226667pt;}
.x19{left:96.031988pt;}
.xf{left:98.266667pt;}
.x34{left:99.711988pt;}
.x25{left:106.271988pt;}
.x10{left:120.666667pt;}
.x12{left:141.146667pt;}
.x11{left:148.826667pt;}
.x35{left:155.866655pt;}
.x13{left:166.106667pt;}
.x42{left:171.866667pt;}
.x1f{left:179.386655pt;}
.x14{left:191.266667pt;}
.x20{left:200.986667pt;}
.x8{left:202.906667pt;}
.x3c{left:209.466667pt;}
.x2e{left:212.186655pt;}
.x2f{left:220.826667pt;}
.x27{left:222.266667pt;}
.x36{left:224.666667pt;}
.x3b{left:231.866655pt;}
.xb{left:253.346667pt;}
.x15{left:261.186667pt;}
.x21{left:263.266667pt;}
.x45{left:264.866667pt;}
.x37{left:265.826667pt;}
.x30{left:279.106667pt;}
.x26{left:293.506655pt;}
.x44{left:304.706655pt;}
.x9{left:306.466667pt;}
.xa{left:323.586667pt;}
.xd{left:332.066667pt;}
.x28{left:352.066667pt;}
.x38{left:353.346667pt;}
.x41{left:367.266655pt;}
.x1c{left:397.986655pt;}
.xc{left:402.026667pt;}
.x1e{left:408.706655pt;}
.x33{left:416.573333pt;}
.x1a{left:420.893322pt;}
.x29{left:444.093333pt;}
.x23{left:464.573333pt;}
.x3d{left:491.133333pt;}
.x3{left:501.853333pt;}
.x2a{left:506.973333pt;}
.x4{left:535.813333pt;}
.x3e{left:554.173333pt;}
.x31{left:558.173333pt;}
.x39{left:571.293333pt;}
.x2b{left:573.373333pt;}
.x46{left:618.533333pt;}
.x22{left:619.493333pt;}
.x1b{left:637.413322pt;}
.x1d{left:639.653322pt;}
.x3a{left:650.373333pt;}
.x2c{left:651.333333pt;}
.x5{left:663.013333pt;}
.x3f{left:666.213333pt;}
.x32{left:670.053333pt;}
}




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