
    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_17e33fb5bce24c07a304776d.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_1e4f11ec3bd95792809264d6.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_04f55a6191630595f985d9c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_13d0186813d3c288852cf90d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_44fc967e4317b28378cbd315.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b293accf3f3ced9306d5fd9c.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_24b6ce2582e3e1ac7f87f5e4.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_958e9bdf5db62a0de40deb4b.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_e5a1dc31dc86035690ffe305.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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.853516;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_b8c5df26c3be5f92bba4292e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8e3b397916f5d1e7ef06cb3d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_45accf2586849f1e38fedb2f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ce9a7faf13d8f529e4925163.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_736ff6cfb0350664069b2617.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4c78cacb5be8c7f52d3812aa.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_89f0d01ca7515a00e0bdbddd.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;}
@font-face{font-family:ff16;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_9f97e8688f6f8038a9bd2be2.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.920410;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;}
.lsa{letter-spacing:-4.680000px;}
.ls19{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.249000px;}
.lsf{letter-spacing:-0.223200px;}
.ls8{letter-spacing:-0.127200px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.ls18{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.156000px;}
.ls5{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.lse{letter-spacing:0.312000px;}
.ls9{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls14{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.786240px;}
.lsd{letter-spacing:0.900000px;}
.ls1a{letter-spacing:15.786720px;}
.ls17{letter-spacing:45.306720px;}
.lsc{letter-spacing:63.450720px;}
.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;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wse{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.691000px;}
.ws9{word-spacing:-14.680200px;}
.ws10{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.ws8{word-spacing:-10.260000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._16{margin-left:-7.724400px;}
._15{margin-left:-5.752800px;}
._4{margin-left:-4.632000px;}
._2{margin-left:-3.246240px;}
._3{margin-left:-2.106000px;}
._0{margin-left:-1.050000px;}
._1{width:1.362000px;}
._10{width:2.715120px;}
._6{width:4.518000px;}
._5{width:5.653440px;}
._d{width:7.111440px;}
._e{width:8.897760px;}
._7{width:10.046160px;}
._14{width:11.202240px;}
._12{width:12.494400px;}
._11{width:13.919760px;}
._8{width:16.005840px;}
._13{width:17.208960px;}
._f{width:18.954240px;}
._a{width:20.845920px;}
._17{width:23.113680px;}
._c{width:24.416880px;}
._9{width:26.077920px;}
._b{width:27.424560px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(10,29,48);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(10,47,65);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.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;}
.y4b{bottom:3.240000px;}
.ydd{bottom:3.285000px;}
.y4{bottom:3.600000px;}
.y50{bottom:3.960000px;}
.yf{bottom:4.140000px;}
.y1c{bottom:5.040000px;}
.y4e{bottom:10.620000px;}
.ybd{bottom:11.340000px;}
.yc6{bottom:11.520000px;}
.y1e{bottom:12.420000px;}
.yd{bottom:13.680000px;}
.y6{bottom:15.480000px;}
.y3{bottom:20.160000px;}
.y4a{bottom:20.520000px;}
.y4f{bottom:22.320000px;}
.y4d{bottom:25.200000px;}
.y1b{bottom:29.340000px;}
.yc{bottom:30.060000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.756000px;}
.y1{bottom:37.800000px;}
.y1a{bottom:45.900000px;}
.yb{bottom:46.440000px;}
.y49{bottom:55.080000px;}
.y19{bottom:62.280000px;}
.y48{bottom:72.360000px;}
.ya{bottom:73.260000px;}
.y18{bottom:78.885000px;}
.y47{bottom:89.505000px;}
.y9{bottom:92.910000px;}
.y17{bottom:94.725000px;}
.y16{bottom:105.165000px;}
.y46{bottom:106.785000px;}
.y94{bottom:107.136000px;}
.yce{bottom:110.016000px;}
.y101{bottom:110.196000px;}
.y8{bottom:111.270000px;}
.y56{bottom:119.016000px;}
.y136{bottom:123.516000px;}
.y15{bottom:123.525000px;}
.y45{bottom:124.065000px;}
.y93{bottom:124.416000px;}
.ycd{bottom:127.296000px;}
.y144{bottom:128.736000px;}
.y100{bottom:133.416000px;}
.y55{bottom:136.296000px;}
.y135{bottom:140.796000px;}
.y44{bottom:141.345000px;}
.y92{bottom:141.696000px;}
.y14{bottom:142.425000px;}
.ycc{bottom:144.576000px;}
.y143{bottom:146.016000px;}
.y54{bottom:153.570000px;}
.y134{bottom:158.070000px;}
.y43{bottom:158.625000px;}
.yff{bottom:158.790000px;}
.y91{bottom:158.970000px;}
.ycb{bottom:161.850000px;}
.y142{bottom:163.290000px;}
.y13{bottom:168.165000px;}
.y53{bottom:170.670000px;}
.y133{bottom:175.170000px;}
.y42{bottom:175.905000px;}
.yfe{bottom:176.070000px;}
.y90{bottom:176.250000px;}
.yca{bottom:178.950000px;}
.y141{bottom:180.570000px;}
.y52{bottom:187.950000px;}
.y132{bottom:192.450000px;}
.y41{bottom:193.005000px;}
.yfd{bottom:193.170000px;}
.y12{bottom:193.905000px;}
.y8f{bottom:194.610000px;}
.y140{bottom:197.670000px;}
.yc9{bottom:197.850000px;}
.y51{bottom:205.230000px;}
.y131{bottom:209.730000px;}
.y40{bottom:210.285000px;}
.yfc{bottom:210.450000px;}
.y8e{bottom:211.710000px;}
.y13f{bottom:214.950000px;}
.y11{bottom:218.385000px;}
.y4c{bottom:219.270000px;}
.yc8{bottom:221.070000px;}
.y130{bottom:227.010000px;}
.y3f{bottom:227.565000px;}
.yfb{bottom:227.730000px;}
.y8d{bottom:228.990000px;}
.y13e{bottom:232.230000px;}
.y12f{bottom:244.290000px;}
.yc7{bottom:244.470000px;}
.y3e{bottom:244.845000px;}
.y8c{bottom:246.270000px;}
.yfa{bottom:246.630000px;}
.y13d{bottom:249.510000px;}
.y2e{bottom:252.225000px;}
.y1f{bottom:255.810000px;}
.y12e{bottom:261.570000px;}
.y3d{bottom:262.125000px;}
.y8b{bottom:263.550000px;}
.y13c{bottom:266.790000px;}
.y2d{bottom:266.805000px;}
.yc5{bottom:267.690000px;}
.yf9{bottom:269.850000px;}
.y12d{bottom:278.670000px;}
.y3c{bottom:279.405000px;}
.y8a{bottom:280.830000px;}
.y13b{bottom:284.070000px;}
.y2c{bottom:284.085000px;}
.yf8{bottom:293.070000px;}
.y12c{bottom:295.950000px;}
.y3b{bottom:296.505000px;}
.y89{bottom:297.930000px;}
.y13a{bottom:301.170000px;}
.y2b{bottom:301.365000px;}
.yc4{bottom:309.450000px;}
.y12b{bottom:313.230000px;}
.y3a{bottom:313.785000px;}
.y88{bottom:315.210000px;}
.yf7{bottom:316.290000px;}
.y139{bottom:318.450000px;}
.y2a{bottom:318.645000px;}
.yc3{bottom:326.730000px;}
.y12a{bottom:330.510000px;}
.y39{bottom:331.065000px;}
.y87{bottom:333.570000px;}
.y138{bottom:335.730000px;}
.y29{bottom:336.465000px;}
.yf6{bottom:339.735000px;}
.yc2{bottom:344.055000px;}
.y129{bottom:347.835000px;}
.y38{bottom:348.375000px;}
.y86{bottom:351.975000px;}
.y137{bottom:353.055000px;}
.y28{bottom:353.775000px;}
.yc1{bottom:361.335000px;}
.yf5{bottom:362.955000px;}
.y128{bottom:364.935000px;}
.y37{bottom:365.655000px;}
.y85{bottom:370.335000px;}
.y27{bottom:371.235000px;}
.yc0{bottom:378.615000px;}
.y127{bottom:382.215000px;}
.y36{bottom:382.755000px;}
.yf4{bottom:386.175000px;}
.y84{bottom:387.615000px;}
.y26{bottom:388.695000px;}
.ybf{bottom:397.515000px;}
.y126{bottom:399.495000px;}
.y35{bottom:400.035000px;}
.y83{bottom:404.715000px;}
.y25{bottom:405.975000px;}
.yf3{bottom:409.395000px;}
.y125{bottom:416.775000px;}
.y34{bottom:417.315000px;}
.ybe{bottom:420.735000px;}
.y82{bottom:421.995000px;}
.y24{bottom:423.435000px;}
.yf2{bottom:432.615000px;}
.y124{bottom:434.055000px;}
.y33{bottom:434.595000px;}
.y81{bottom:439.275000px;}
.y23{bottom:440.895000px;}
.ybc{bottom:443.955000px;}
.y123{bottom:451.335000px;}
.y32{bottom:451.875000px;}
.yf1{bottom:455.835000px;}
.y80{bottom:456.555000px;}
.y22{bottom:461.055000px;}
.y122{bottom:468.435000px;}
.y31{bottom:469.155000px;}
.y7f{bottom:473.835000px;}
.yf0{bottom:479.235000px;}
.ybb{bottom:485.715000px;}
.y30{bottom:486.255000px;}
.y121{bottom:487.335000px;}
.y21{bottom:488.595000px;}
.y7e{bottom:490.935000px;}
.yef{bottom:502.455000px;}
.yba{bottom:502.815000px;}
.y2f{bottom:503.535000px;}
.y20{bottom:506.235000px;}
.y7d{bottom:508.215000px;}
.y120{bottom:510.735000px;}
.yb9{bottom:520.095000px;}
.y7c{bottom:525.495000px;}
.yee{bottom:525.675000px;}
.y11f{bottom:533.955000px;}
.yb8{bottom:537.375000px;}
.y7b{bottom:542.775000px;}
.yed{bottom:551.055000px;}
.yb7{bottom:554.655000px;}
.y11e{bottom:557.175000px;}
.y7a{bottom:560.055000px;}
.yec{bottom:568.335000px;}
.yb6{bottom:571.935000px;}
.y79{bottom:577.335000px;}
.y11d{bottom:580.395000px;}
.yeb{bottom:585.435000px;}
.yb5{bottom:589.215000px;}
.y78{bottom:594.435000px;}
.yea{bottom:602.715000px;}
.y11c{bottom:605.805000px;}
.yb4{bottom:606.345000px;}
.y77{bottom:611.745000px;}
.ye9{bottom:620.025000px;}
.y11b{bottom:623.085000px;}
.yb3{bottom:623.625000px;}
.y76{bottom:629.025000px;}
.ye8{bottom:638.925000px;}
.y11a{bottom:640.365000px;}
.yb2{bottom:640.905000px;}
.y75{bottom:646.305000px;}
.y119{bottom:657.465000px;}
.yb1{bottom:658.185000px;}
.ye7{bottom:662.145000px;}
.y74{bottom:663.585000px;}
.y118{bottom:674.745000px;}
.yb0{bottom:675.465000px;}
.y73{bottom:680.865000px;}
.ye6{bottom:685.365000px;}
.yaf{bottom:692.565000px;}
.y117{bottom:693.645000px;}
.y72{bottom:697.965000px;}
.ye5{bottom:708.585000px;}
.yae{bottom:709.845000px;}
.y71{bottom:715.245000px;}
.y116{bottom:716.865000px;}
.yad{bottom:727.125000px;}
.ye4{bottom:731.985000px;}
.y70{bottom:732.525000px;}
.y115{bottom:740.085000px;}
.yac{bottom:744.405000px;}
.y6f{bottom:749.805000px;}
.ye3{bottom:755.205000px;}
.yab{bottom:761.685000px;}
.y114{bottom:763.485000px;}
.y6e{bottom:767.085000px;}
.y1d{bottom:773.385000px;}
.yaa{bottom:780.045000px;}
.ye2{bottom:780.585000px;}
.y6d{bottom:784.365000px;}
.y113{bottom:786.705000px;}
.ya9{bottom:797.145000px;}
.ye1{bottom:797.685000px;}
.y6c{bottom:801.465000px;}
.y10{bottom:802.905000px;}
.y112{bottom:809.925000px;}
.ya8{bottom:814.425000px;}
.ye0{bottom:814.965000px;}
.y6b{bottom:818.745000px;}
.ya7{bottom:831.705000px;}
.ydf{bottom:832.245000px;}
.y111{bottom:835.305000px;}
.y6a{bottom:836.025000px;}
.ya6{bottom:848.985000px;}
.yde{bottom:849.525000px;}
.y110{bottom:852.585000px;}
.y69{bottom:853.305000px;}
.ya5{bottom:866.265000px;}
.ydc{bottom:868.425000px;}
.y10f{bottom:869.685000px;}
.y68{bottom:870.630000px;}
.ya4{bottom:883.590000px;}
.y10e{bottom:887.010000px;}
.y67{bottom:887.730000px;}
.ydb{bottom:891.690000px;}
.ya3{bottom:901.770000px;}
.y10d{bottom:904.290000px;}
.y66{bottom:905.010000px;}
.yda{bottom:914.910000px;}
.ya2{bottom:919.050000px;}
.y65{bottom:922.290000px;}
.y10c{bottom:923.190000px;}
.ya1{bottom:936.330000px;}
.yd9{bottom:938.130000px;}
.y64{bottom:939.570000px;}
.y10b{bottom:946.410000px;}
.ya0{bottom:953.610000px;}
.y63{bottom:956.850000px;}
.yd8{bottom:963.510000px;}
.y10a{bottom:969.630000px;}
.y9f{bottom:970.890000px;}
.y62{bottom:974.130000px;}
.yd7{bottom:980.790000px;}
.y9e{bottom:987.990000px;}
.y61{bottom:991.230000px;}
.y109{bottom:992.850000px;}
.yd6{bottom:998.070000px;}
.y9d{bottom:1006.350000px;}
.y60{bottom:1008.510000px;}
.yd5{bottom:1015.350000px;}
.y108{bottom:1016.250000px;}
.y9c{bottom:1023.630000px;}
.y5f{bottom:1025.790000px;}
.yd4{bottom:1032.630000px;}
.ye{bottom:1036.410000px;}
.y107{bottom:1039.470000px;}
.y9b{bottom:1040.910000px;}
.y5e{bottom:1043.070000px;}
.yd3{bottom:1049.730000px;}
.y7{bottom:1056.390000px;}
.y9a{bottom:1058.190000px;}
.y5d{bottom:1060.350000px;}
.y106{bottom:1062.690000px;}
.yd2{bottom:1068.630000px;}
.y99{bottom:1075.470000px;}
.y5c{bottom:1077.630000px;}
.y105{bottom:1085.910000px;}
.yd1{bottom:1091.850000px;}
.y98{bottom:1092.570000px;}
.y5b{bottom:1094.730000px;}
.y104{bottom:1109.130000px;}
.y97{bottom:1109.850000px;}
.y5a{bottom:1112.010000px;}
.yd0{bottom:1115.250000px;}
.y96{bottom:1127.130000px;}
.y59{bottom:1129.290000px;}
.y103{bottom:1132.350000px;}
.ycf{bottom:1138.500000px;}
.y95{bottom:1145.520000px;}
.y58{bottom:1146.600000px;}
.y102{bottom:1155.780000px;}
.y57{bottom:1163.880000px;}
.h24{height:17.100000px;}
.h23{height:17.280000px;}
.h25{height:17.316000px;}
.hd{height:19.440000px;}
.h15{height:29.520000px;}
.h14{height:32.103633px;}
.h22{height:33.660000px;}
.h13{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.540000px;}
.h20{height:42.164648px;}
.h1d{height:42.186445px;}
.h1b{height:42.281367px;}
.h1c{height:43.215117px;}
.h21{height:43.506914px;}
.hf{height:44.002969px;}
.hb{height:44.820000px;}
.h5{height:47.223633px;}
.h18{height:47.980898px;}
.h2{height:49.536000px;}
.h1a{height:49.742227px;}
.h1f{height:52.260820px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h11{height:59.439023px;}
.h7{height:60.855469px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h6{height:67.824844px;}
.hc{height:71.613281px;}
.h16{height:73.722656px;}
.h8{height:121.536000px;}
.he{height:233.490000px;}
.h17{height:517.575000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2a{width:52.200000px;}
.w3{width:73.080000px;}
.w2b{width:89.640000px;}
.w26{width:111.240000px;}
.w27{width:124.596000px;}
.w1a{width:140.076000px;}
.w14{width:147.960000px;}
.wb{width:149.436000px;}
.w10{width:150.120000px;}
.w1b{width:150.300000px;}
.w18{width:151.380000px;}
.w5{width:151.950000px;}
.w1c{width:158.430000px;}
.w23{width:172.650000px;}
.w12{width:176.790000px;}
.we{width:179.100000px;}
.w25{width:180.570000px;}
.w16{width:180.900000px;}
.w17{width:187.590000px;}
.w11{width:188.490000px;}
.w21{width:191.190000px;}
.wd{width:191.370000px;}
.wf{width:192.450000px;}
.w1e{width:192.810000px;}
.w15{width:192.990000px;}
.wc{width:194.790000px;}
.w22{width:196.770000px;}
.w28{width:198.210000px;}
.w1f{width:198.390000px;}
.w13{width:199.695000px;}
.w8{width:216.075000px;}
.w29{width:244.695000px;}
.w24{width:248.475000px;}
.w19{width:264.135000px;}
.w1d{width:325.695000px;}
.w20{width:328.755000px;}
.wa{width:372.675000px;}
.w9{width:515.055000px;}
.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;}
.x15{left:1.080000px;}
.x2{left:8.676000px;}
.xc{left:13.536000px;}
.xb{left:50.976000px;}
.xf{left:70.770000px;}
.x1{left:81.000000px;}
.x14{left:84.420000px;}
.x4{left:98.130000px;}
.x10{left:103.350000px;}
.x37{left:107.855987px;}
.xe{left:122.070000px;}
.xd{left:145.650000px;}
.x24{left:205.589987px;}
.x32{left:212.790000px;}
.x11{left:215.175000px;}
.x2b{left:219.449987px;}
.x5{left:232.950000px;}
.x28{left:242.849987px;}
.x2e{left:249.869987px;}
.x2f{left:260.850000px;}
.x8{left:272.235000px;}
.x1d{left:276.690000px;}
.x19{left:279.615000px;}
.x21{left:281.235000px;}
.x13{left:288.434987px;}
.x12{left:297.075000px;}
.x1c{left:318.494987px;}
.x18{left:320.654987px;}
.x20{left:322.454987px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.x25{left:352.335000px;}
.xa{left:365.475000px;}
.x36{left:396.074987px;}
.x29{left:413.715000px;}
.x33{left:414.795000px;}
.x2c{left:416.955000px;}
.x9{left:439.500000px;}
.x1e{left:457.275000px;}
.x16{left:460.875000px;}
.x1a{left:462.495000px;}
.x22{left:465.915000px;}
.x26{left:496.185000px;}
.x30{left:513.105000px;}
.x2a{left:610.305000px;}
.x2d{left:611.925000px;}
.x17{left:613.905000px;}
.x27{left:650.265000px;}
.x23{left:657.330000px;}
.x1b{left:658.590000px;}
.x1f{left:660.750000px;}
.x34{left:663.090000px;}
.x31{left:697.470000px;}
.x35{left:719.070000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-4.160000pt;}
.ls19{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.221333pt;}
.lsf{letter-spacing:-0.198400pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.ls18{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.138667pt;}
.ls5{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.277333pt;}
.ls9{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls14{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.698880pt;}
.lsd{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:14.032640pt;}
.ls17{letter-spacing:40.272640pt;}
.lsc{letter-spacing:56.400640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.058667pt;}
.ws9{word-spacing:-13.049067pt;}
.ws10{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.ws8{word-spacing:-9.120000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._16{margin-left:-6.866133pt;}
._15{margin-left:-5.113600pt;}
._4{margin-left:-4.117333pt;}
._2{margin-left:-2.885547pt;}
._3{margin-left:-1.872000pt;}
._0{margin-left:-0.933333pt;}
._1{width:1.210667pt;}
._10{width:2.413440pt;}
._6{width:4.016000pt;}
._5{width:5.025280pt;}
._d{width:6.321280pt;}
._e{width:7.909120pt;}
._7{width:8.929920pt;}
._14{width:9.957547pt;}
._12{width:11.106133pt;}
._11{width:12.373120pt;}
._8{width:14.227413pt;}
._13{width:15.296853pt;}
._f{width:16.848213pt;}
._a{width:18.529707pt;}
._17{width:20.545493pt;}
._c{width:21.703893pt;}
._9{width:23.180373pt;}
._b{width:24.377387pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.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;}
.y4b{bottom:2.880000pt;}
.ydd{bottom:2.920000pt;}
.y4{bottom:3.200000pt;}
.y50{bottom:3.520000pt;}
.yf{bottom:3.680000pt;}
.y1c{bottom:4.480000pt;}
.y4e{bottom:9.440000pt;}
.ybd{bottom:10.080000pt;}
.yc6{bottom:10.240000pt;}
.y1e{bottom:11.040000pt;}
.yd{bottom:12.160000pt;}
.y6{bottom:13.760000pt;}
.y3{bottom:17.920000pt;}
.y4a{bottom:18.240000pt;}
.y4f{bottom:19.840000pt;}
.y4d{bottom:22.400000pt;}
.y1b{bottom:26.080000pt;}
.yc{bottom:26.720000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.672000pt;}
.y1{bottom:33.600000pt;}
.y1a{bottom:40.800000pt;}
.yb{bottom:41.280000pt;}
.y49{bottom:48.960000pt;}
.y19{bottom:55.360000pt;}
.y48{bottom:64.320000pt;}
.ya{bottom:65.120000pt;}
.y18{bottom:70.120000pt;}
.y47{bottom:79.560000pt;}
.y9{bottom:82.586667pt;}
.y17{bottom:84.200000pt;}
.y16{bottom:93.480000pt;}
.y46{bottom:94.920000pt;}
.y94{bottom:95.232000pt;}
.yce{bottom:97.792000pt;}
.y101{bottom:97.952000pt;}
.y8{bottom:98.906667pt;}
.y56{bottom:105.792000pt;}
.y136{bottom:109.792000pt;}
.y15{bottom:109.800000pt;}
.y45{bottom:110.280000pt;}
.y93{bottom:110.592000pt;}
.ycd{bottom:113.152000pt;}
.y144{bottom:114.432000pt;}
.y100{bottom:118.592000pt;}
.y55{bottom:121.152000pt;}
.y135{bottom:125.152000pt;}
.y44{bottom:125.640000pt;}
.y92{bottom:125.952000pt;}
.y14{bottom:126.600000pt;}
.ycc{bottom:128.512000pt;}
.y143{bottom:129.792000pt;}
.y54{bottom:136.506667pt;}
.y134{bottom:140.506667pt;}
.y43{bottom:141.000000pt;}
.yff{bottom:141.146667pt;}
.y91{bottom:141.306667pt;}
.ycb{bottom:143.866667pt;}
.y142{bottom:145.146667pt;}
.y13{bottom:149.480000pt;}
.y53{bottom:151.706667pt;}
.y133{bottom:155.706667pt;}
.y42{bottom:156.360000pt;}
.yfe{bottom:156.506667pt;}
.y90{bottom:156.666667pt;}
.yca{bottom:159.066667pt;}
.y141{bottom:160.506667pt;}
.y52{bottom:167.066667pt;}
.y132{bottom:171.066667pt;}
.y41{bottom:171.560000pt;}
.yfd{bottom:171.706667pt;}
.y12{bottom:172.360000pt;}
.y8f{bottom:172.986667pt;}
.y140{bottom:175.706667pt;}
.yc9{bottom:175.866667pt;}
.y51{bottom:182.426667pt;}
.y131{bottom:186.426667pt;}
.y40{bottom:186.920000pt;}
.yfc{bottom:187.066667pt;}
.y8e{bottom:188.186667pt;}
.y13f{bottom:191.066667pt;}
.y11{bottom:194.120000pt;}
.y4c{bottom:194.906667pt;}
.yc8{bottom:196.506667pt;}
.y130{bottom:201.786667pt;}
.y3f{bottom:202.280000pt;}
.yfb{bottom:202.426667pt;}
.y8d{bottom:203.546667pt;}
.y13e{bottom:206.426667pt;}
.y12f{bottom:217.146667pt;}
.yc7{bottom:217.306667pt;}
.y3e{bottom:217.640000pt;}
.y8c{bottom:218.906667pt;}
.yfa{bottom:219.226667pt;}
.y13d{bottom:221.786667pt;}
.y2e{bottom:224.200000pt;}
.y1f{bottom:227.386667pt;}
.y12e{bottom:232.506667pt;}
.y3d{bottom:233.000000pt;}
.y8b{bottom:234.266667pt;}
.y13c{bottom:237.146667pt;}
.y2d{bottom:237.160000pt;}
.yc5{bottom:237.946667pt;}
.yf9{bottom:239.866667pt;}
.y12d{bottom:247.706667pt;}
.y3c{bottom:248.360000pt;}
.y8a{bottom:249.626667pt;}
.y13b{bottom:252.506667pt;}
.y2c{bottom:252.520000pt;}
.yf8{bottom:260.506667pt;}
.y12c{bottom:263.066667pt;}
.y3b{bottom:263.560000pt;}
.y89{bottom:264.826667pt;}
.y13a{bottom:267.706667pt;}
.y2b{bottom:267.880000pt;}
.yc4{bottom:275.066667pt;}
.y12b{bottom:278.426667pt;}
.y3a{bottom:278.920000pt;}
.y88{bottom:280.186667pt;}
.yf7{bottom:281.146667pt;}
.y139{bottom:283.066667pt;}
.y2a{bottom:283.240000pt;}
.yc3{bottom:290.426667pt;}
.y12a{bottom:293.786667pt;}
.y39{bottom:294.280000pt;}
.y87{bottom:296.506667pt;}
.y138{bottom:298.426667pt;}
.y29{bottom:299.080000pt;}
.yf6{bottom:301.986667pt;}
.yc2{bottom:305.826667pt;}
.y129{bottom:309.186667pt;}
.y38{bottom:309.666667pt;}
.y86{bottom:312.866667pt;}
.y137{bottom:313.826667pt;}
.y28{bottom:314.466667pt;}
.yc1{bottom:321.186667pt;}
.yf5{bottom:322.626667pt;}
.y128{bottom:324.386667pt;}
.y37{bottom:325.026667pt;}
.y85{bottom:329.186667pt;}
.y27{bottom:329.986667pt;}
.yc0{bottom:336.546667pt;}
.y127{bottom:339.746667pt;}
.y36{bottom:340.226667pt;}
.yf4{bottom:343.266667pt;}
.y84{bottom:344.546667pt;}
.y26{bottom:345.506667pt;}
.ybf{bottom:353.346667pt;}
.y126{bottom:355.106667pt;}
.y35{bottom:355.586667pt;}
.y83{bottom:359.746667pt;}
.y25{bottom:360.866667pt;}
.yf3{bottom:363.906667pt;}
.y125{bottom:370.466667pt;}
.y34{bottom:370.946667pt;}
.ybe{bottom:373.986667pt;}
.y82{bottom:375.106667pt;}
.y24{bottom:376.386667pt;}
.yf2{bottom:384.546667pt;}
.y124{bottom:385.826667pt;}
.y33{bottom:386.306667pt;}
.y81{bottom:390.466667pt;}
.y23{bottom:391.906667pt;}
.ybc{bottom:394.626667pt;}
.y123{bottom:401.186667pt;}
.y32{bottom:401.666667pt;}
.yf1{bottom:405.186667pt;}
.y80{bottom:405.826667pt;}
.y22{bottom:409.826667pt;}
.y122{bottom:416.386667pt;}
.y31{bottom:417.026667pt;}
.y7f{bottom:421.186667pt;}
.yf0{bottom:425.986667pt;}
.ybb{bottom:431.746667pt;}
.y30{bottom:432.226667pt;}
.y121{bottom:433.186667pt;}
.y21{bottom:434.306667pt;}
.y7e{bottom:436.386667pt;}
.yef{bottom:446.626667pt;}
.yba{bottom:446.946667pt;}
.y2f{bottom:447.586667pt;}
.y20{bottom:449.986667pt;}
.y7d{bottom:451.746667pt;}
.y120{bottom:453.986667pt;}
.yb9{bottom:462.306667pt;}
.y7c{bottom:467.106667pt;}
.yee{bottom:467.266667pt;}
.y11f{bottom:474.626667pt;}
.yb8{bottom:477.666667pt;}
.y7b{bottom:482.466667pt;}
.yed{bottom:489.826667pt;}
.yb7{bottom:493.026667pt;}
.y11e{bottom:495.266667pt;}
.y7a{bottom:497.826667pt;}
.yec{bottom:505.186667pt;}
.yb6{bottom:508.386667pt;}
.y79{bottom:513.186667pt;}
.y11d{bottom:515.906667pt;}
.yeb{bottom:520.386667pt;}
.yb5{bottom:523.746667pt;}
.y78{bottom:528.386667pt;}
.yea{bottom:535.746667pt;}
.y11c{bottom:538.493333pt;}
.yb4{bottom:538.973333pt;}
.y77{bottom:543.773333pt;}
.ye9{bottom:551.133333pt;}
.y11b{bottom:553.853333pt;}
.yb3{bottom:554.333333pt;}
.y76{bottom:559.133333pt;}
.ye8{bottom:567.933333pt;}
.y11a{bottom:569.213333pt;}
.yb2{bottom:569.693333pt;}
.y75{bottom:574.493333pt;}
.y119{bottom:584.413333pt;}
.yb1{bottom:585.053333pt;}
.ye7{bottom:588.573333pt;}
.y74{bottom:589.853333pt;}
.y118{bottom:599.773333pt;}
.yb0{bottom:600.413333pt;}
.y73{bottom:605.213333pt;}
.ye6{bottom:609.213333pt;}
.yaf{bottom:615.613333pt;}
.y117{bottom:616.573333pt;}
.y72{bottom:620.413333pt;}
.ye5{bottom:629.853333pt;}
.yae{bottom:630.973333pt;}
.y71{bottom:635.773333pt;}
.y116{bottom:637.213333pt;}
.yad{bottom:646.333333pt;}
.ye4{bottom:650.653333pt;}
.y70{bottom:651.133333pt;}
.y115{bottom:657.853333pt;}
.yac{bottom:661.693333pt;}
.y6f{bottom:666.493333pt;}
.ye3{bottom:671.293333pt;}
.yab{bottom:677.053333pt;}
.y114{bottom:678.653333pt;}
.y6e{bottom:681.853333pt;}
.y1d{bottom:687.453333pt;}
.yaa{bottom:693.373333pt;}
.ye2{bottom:693.853333pt;}
.y6d{bottom:697.213333pt;}
.y113{bottom:699.293333pt;}
.ya9{bottom:708.573333pt;}
.ye1{bottom:709.053333pt;}
.y6c{bottom:712.413333pt;}
.y10{bottom:713.693333pt;}
.y112{bottom:719.933333pt;}
.ya8{bottom:723.933333pt;}
.ye0{bottom:724.413333pt;}
.y6b{bottom:727.773333pt;}
.ya7{bottom:739.293333pt;}
.ydf{bottom:739.773333pt;}
.y111{bottom:742.493333pt;}
.y6a{bottom:743.133333pt;}
.ya6{bottom:754.653333pt;}
.yde{bottom:755.133333pt;}
.y110{bottom:757.853333pt;}
.y69{bottom:758.493333pt;}
.ya5{bottom:770.013333pt;}
.ydc{bottom:771.933333pt;}
.y10f{bottom:773.053333pt;}
.y68{bottom:773.893333pt;}
.ya4{bottom:785.413333pt;}
.y10e{bottom:788.453333pt;}
.y67{bottom:789.093333pt;}
.ydb{bottom:792.613333pt;}
.ya3{bottom:801.573333pt;}
.y10d{bottom:803.813333pt;}
.y66{bottom:804.453333pt;}
.yda{bottom:813.253333pt;}
.ya2{bottom:816.933333pt;}
.y65{bottom:819.813333pt;}
.y10c{bottom:820.613333pt;}
.ya1{bottom:832.293333pt;}
.yd9{bottom:833.893333pt;}
.y64{bottom:835.173333pt;}
.y10b{bottom:841.253333pt;}
.ya0{bottom:847.653333pt;}
.y63{bottom:850.533333pt;}
.yd8{bottom:856.453333pt;}
.y10a{bottom:861.893333pt;}
.y9f{bottom:863.013333pt;}
.y62{bottom:865.893333pt;}
.yd7{bottom:871.813333pt;}
.y9e{bottom:878.213333pt;}
.y61{bottom:881.093333pt;}
.y109{bottom:882.533333pt;}
.yd6{bottom:887.173333pt;}
.y9d{bottom:894.533333pt;}
.y60{bottom:896.453333pt;}
.yd5{bottom:902.533333pt;}
.y108{bottom:903.333333pt;}
.y9c{bottom:909.893333pt;}
.y5f{bottom:911.813333pt;}
.yd4{bottom:917.893333pt;}
.ye{bottom:921.253333pt;}
.y107{bottom:923.973333pt;}
.y9b{bottom:925.253333pt;}
.y5e{bottom:927.173333pt;}
.yd3{bottom:933.093333pt;}
.y7{bottom:939.013333pt;}
.y9a{bottom:940.613333pt;}
.y5d{bottom:942.533333pt;}
.y106{bottom:944.613333pt;}
.yd2{bottom:949.893333pt;}
.y99{bottom:955.973333pt;}
.y5c{bottom:957.893333pt;}
.y105{bottom:965.253333pt;}
.yd1{bottom:970.533333pt;}
.y98{bottom:971.173333pt;}
.y5b{bottom:973.093333pt;}
.y104{bottom:985.893333pt;}
.y97{bottom:986.533333pt;}
.y5a{bottom:988.453333pt;}
.yd0{bottom:991.333333pt;}
.y96{bottom:1001.893333pt;}
.y59{bottom:1003.813333pt;}
.y103{bottom:1006.533333pt;}
.ycf{bottom:1012.000000pt;}
.y95{bottom:1018.240000pt;}
.y58{bottom:1019.200000pt;}
.y102{bottom:1027.360000pt;}
.y57{bottom:1034.560000pt;}
.h24{height:15.200000pt;}
.h23{height:15.360000pt;}
.h25{height:15.392000pt;}
.hd{height:17.280000pt;}
.h15{height:26.240000pt;}
.h14{height:28.536563pt;}
.h22{height:29.920000pt;}
.h13{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.480000pt;}
.h20{height:37.479688pt;}
.h1d{height:37.499062pt;}
.h1b{height:37.583438pt;}
.h1c{height:38.413438pt;}
.h21{height:38.672812pt;}
.hf{height:39.113750pt;}
.hb{height:39.840000pt;}
.h5{height:41.976562pt;}
.h18{height:42.649687pt;}
.h2{height:44.032000pt;}
.h1a{height:44.215312pt;}
.h1f{height:46.454062pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h11{height:52.834688pt;}
.h7{height:54.093750pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h6{height:60.288750pt;}
.hc{height:63.656250pt;}
.h16{height:65.531250pt;}
.h8{height:108.032000pt;}
.he{height:207.546667pt;}
.h17{height:460.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2a{width:46.400000pt;}
.w3{width:64.960000pt;}
.w2b{width:79.680000pt;}
.w26{width:98.880000pt;}
.w27{width:110.752000pt;}
.w1a{width:124.512000pt;}
.w14{width:131.520000pt;}
.wb{width:132.832000pt;}
.w10{width:133.440000pt;}
.w1b{width:133.600000pt;}
.w18{width:134.560000pt;}
.w5{width:135.066667pt;}
.w1c{width:140.826667pt;}
.w23{width:153.466667pt;}
.w12{width:157.146667pt;}
.we{width:159.200000pt;}
.w25{width:160.506667pt;}
.w16{width:160.800000pt;}
.w17{width:166.746667pt;}
.w11{width:167.546667pt;}
.w21{width:169.946667pt;}
.wd{width:170.106667pt;}
.wf{width:171.066667pt;}
.w1e{width:171.386667pt;}
.w15{width:171.546667pt;}
.wc{width:173.146667pt;}
.w22{width:174.906667pt;}
.w28{width:176.186667pt;}
.w1f{width:176.346667pt;}
.w13{width:177.506667pt;}
.w8{width:192.066667pt;}
.w29{width:217.506667pt;}
.w24{width:220.866667pt;}
.w19{width:234.786667pt;}
.w1d{width:289.506667pt;}
.w20{width:292.226667pt;}
.wa{width:331.266667pt;}
.w9{width:457.826667pt;}
.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;}
.x15{left:0.960000pt;}
.x2{left:7.712000pt;}
.xc{left:12.032000pt;}
.xb{left:45.312000pt;}
.xf{left:62.906667pt;}
.x1{left:72.000000pt;}
.x14{left:75.040000pt;}
.x4{left:87.226667pt;}
.x10{left:91.866667pt;}
.x37{left:95.871988pt;}
.xe{left:108.506667pt;}
.xd{left:129.466667pt;}
.x24{left:182.746655pt;}
.x32{left:189.146667pt;}
.x11{left:191.266667pt;}
.x2b{left:195.066655pt;}
.x5{left:207.066667pt;}
.x28{left:215.866655pt;}
.x2e{left:222.106655pt;}
.x2f{left:231.866667pt;}
.x8{left:241.986667pt;}
.x1d{left:245.946667pt;}
.x19{left:248.546667pt;}
.x21{left:249.986667pt;}
.x13{left:256.386655pt;}
.x12{left:264.066667pt;}
.x1c{left:283.106655pt;}
.x18{left:285.026655pt;}
.x20{left:286.626655pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.x25{left:313.186667pt;}
.xa{left:324.866667pt;}
.x36{left:352.066655pt;}
.x29{left:367.746667pt;}
.x33{left:368.706667pt;}
.x2c{left:370.626667pt;}
.x9{left:390.666667pt;}
.x1e{left:406.466667pt;}
.x16{left:409.666667pt;}
.x1a{left:411.106667pt;}
.x22{left:414.146667pt;}
.x26{left:441.053333pt;}
.x30{left:456.093333pt;}
.x2a{left:542.493333pt;}
.x2d{left:543.933333pt;}
.x17{left:545.693333pt;}
.x27{left:578.013333pt;}
.x23{left:584.293333pt;}
.x1b{left:585.413333pt;}
.x1f{left:587.333333pt;}
.x34{left:589.413333pt;}
.x31{left:619.973333pt;}
.x35{left:639.173333pt;}
.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; }
  