
    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_ce9a515299643aea0e898377.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_f4433feea627b668a2535985.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_e53ecbeeef016ab56865a207.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d406dacd960e381a0228b5ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b19cf1dc638bd4a06a9e8921.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b293accf3f3ced9306d5fd9c.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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cc61da050af7b883e6785999.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1dbe0e5bcee84c71255aca66.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_56235a8e610629db7e9d0b11.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ce7c0dc5abfdcc4d65860187.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_72e19f8ac08454742e55a996.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_b290cd1aa6e684f1d64139c2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_75b1b544c077ef4b23d4a880.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d3ec5583c4e3356d75d3ca53.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_548423cfeb72d8670ca62056.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.127200px;}
.lse{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.100200px;}
.ls19{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls15{letter-spacing:-0.008640px;}
.ls13{letter-spacing:-0.004320px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.087600px;}
.ls11{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.379920px;}
.lsd{letter-spacing:0.618000px;}
.ls4{letter-spacing:0.786240px;}
.lsc{letter-spacing:9.540000px;}
.ls1b{letter-spacing:10.260000px;}
.ls1c{letter-spacing:16.506720px;}
.ls1a{letter-spacing:46.026720px;}
.lsf{letter-spacing:201.204000px;}
.ls1{letter-spacing:360.120000px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws3{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.186000px;}
.wsd{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.715680px;}
.wse{word-spacing:-9.711360px;}
.ws6{word-spacing:0.000000px;}
._21{margin-left:-8.268720px;}
._22{margin-left:-6.891840px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.397760px;}
._17{margin-left:-3.385920px;}
._2{margin-left:-2.338320px;}
._0{margin-left:-1.284000px;}
._1{width:1.080000px;}
._d{width:2.889120px;}
._7{width:4.178880px;}
._8{width:5.442480px;}
._11{width:6.547680px;}
._15{width:7.790400px;}
._9{width:9.198720px;}
._6{width:10.278720px;}
._a{width:11.506320px;}
._b{width:12.546240px;}
._5{width:13.708080px;}
._13{width:16.728480px;}
._16{width:17.735520px;}
._12{width:18.879840px;}
._c{width:20.653200px;}
._f{width:22.465440px;}
._10{width:25.486560px;}
._14{width:27.097920px;}
._19{width:32.221200px;}
._1a{width:33.365520px;}
._18{width:34.780320px;}
._1f{width:37.290240px;}
._e{width:45.238320px;}
._1b{width:53.903520px;}
._1e{width:74.221920px;}
._1d{width:110.772720px;}
._1c{width:121.019280px;}
._20{width:137.866320px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{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;}
.y17{bottom:0.180000px;}
.y42{bottom:3.240000px;}
.y9e{bottom:3.285000px;}
.yeb{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y47{bottom:3.780000px;}
.yee{bottom:4.140000px;}
.y15{bottom:4.500000px;}
.yf0{bottom:4.680000px;}
.ya4{bottom:5.220000px;}
.ya9{bottom:5.940000px;}
.y9a{bottom:7.020000px;}
.ya5{bottom:7.200000px;}
.yce{bottom:8.460000px;}
.yc5{bottom:8.505000px;}
.yaa{bottom:8.640000px;}
.y45{bottom:8.820000px;}
.ydf{bottom:9.000000px;}
.ye7{bottom:9.030000px;}
.yb6{bottom:9.570000px;}
.ye{bottom:10.800000px;}
.ycd{bottom:12.780000px;}
.yc4{bottom:13.140000px;}
.y18{bottom:14.085000px;}
.yab{bottom:14.400000px;}
.yde{bottom:14.580000px;}
.ye6{bottom:14.610000px;}
.yc0{bottom:14.760000px;}
.yd2{bottom:15.120000px;}
.yb7{bottom:16.050000px;}
.y4{bottom:17.316000px;}
.yae{bottom:19.800000px;}
.y2{bottom:20.196000px;}
.ycb{bottom:20.340000px;}
.y41{bottom:20.520000px;}
.ybe{bottom:20.880000px;}
.y46{bottom:21.060000px;}
.yb0{bottom:21.240000px;}
.y44{bottom:23.400000px;}
.yc{bottom:23.580000px;}
.y99{bottom:24.300000px;}
.ya2{bottom:26.100000px;}
.yc2{bottom:36.405000px;}
.y40{bottom:37.800000px;}
.ybd{bottom:38.160000px;}
.yd0{bottom:38.520000px;}
.yb{bottom:39.960000px;}
.y14{bottom:40.500000px;}
.yb8{bottom:41.400000px;}
.y98{bottom:41.625000px;}
.ya1{bottom:43.200000px;}
.y5{bottom:43.380000px;}
.yb4{bottom:54.900000px;}
.y3f{bottom:55.080000px;}
.ya{bottom:56.160000px;}
.y13{bottom:58.860000px;}
.y97{bottom:58.905000px;}
.y1{bottom:64.440000px;}
.y3e{bottom:72.180000px;}
.yb3{bottom:72.210000px;}
.y9{bottom:73.260000px;}
.y96{bottom:76.185000px;}
.yc8{bottom:77.220000px;}
.y12{bottom:77.760000px;}
.y3d{bottom:89.460000px;}
.y8{bottom:92.910000px;}
.y95{bottom:93.285000px;}
.yc7{bottom:94.500000px;}
.y11{bottom:103.500000px;}
.y3c{bottom:106.740000px;}
.y104{bottom:110.736000px;}
.y7{bottom:111.270000px;}
.y92{bottom:111.456000px;}
.y54{bottom:119.556000px;}
.y3b{bottom:124.020000px;}
.y10{bottom:127.980000px;}
.y103{bottom:128.016000px;}
.y91{bottom:128.736000px;}
.y53{bottom:136.836000px;}
.y3a{bottom:141.300000px;}
.y102{bottom:145.296000px;}
.y90{bottom:146.016000px;}
.yd3{bottom:153.390000px;}
.y52{bottom:154.110000px;}
.y39{bottom:158.400000px;}
.y101{bottom:162.570000px;}
.y8f{bottom:163.290000px;}
.ycf{bottom:168.150000px;}
.y51{bottom:171.390000px;}
.y38{bottom:175.680000px;}
.y100{bottom:179.850000px;}
.y8e{bottom:180.570000px;}
.y50{bottom:188.490000px;}
.y37{bottom:192.960000px;}
.yff{bottom:196.950000px;}
.y8d{bottom:197.670000px;}
.yd1{bottom:198.030000px;}
.y4f{bottom:205.770000px;}
.y36{bottom:210.240000px;}
.yfe{bottom:214.230000px;}
.y8c{bottom:214.950000px;}
.yc6{bottom:221.430000px;}
.y4e{bottom:223.050000px;}
.y35{bottom:227.550000px;}
.yfd{bottom:228.270000px;}
.y27{bottom:228.630000px;}
.y8b{bottom:232.230000px;}
.y4d{bottom:240.330000px;}
.y26{bottom:243.930000px;}
.ycc{bottom:244.650000px;}
.y34{bottom:244.830000px;}
.yfc{bottom:247.350000px;}
.y8a{bottom:249.510000px;}
.y4c{bottom:257.610000px;}
.y25{bottom:261.570000px;}
.y33{bottom:261.930000px;}
.yfb{bottom:266.430000px;}
.y89{bottom:266.790000px;}
.yca{bottom:272.190000px;}
.y4b{bottom:274.890000px;}
.y24{bottom:278.850000px;}
.y32{bottom:279.210000px;}
.y88{bottom:284.070000px;}
.yfa{bottom:285.510000px;}
.y4a{bottom:291.990000px;}
.y23{bottom:296.130000px;}
.y31{bottom:296.490000px;}
.y87{bottom:301.170000px;}
.yf9{bottom:304.410000px;}
.yc9{bottom:307.290000px;}
.y49{bottom:309.270000px;}
.y30{bottom:313.770000px;}
.y22{bottom:313.950000px;}
.y86{bottom:318.450000px;}
.yf8{bottom:323.490000px;}
.yc1{bottom:330.690000px;}
.y2f{bottom:331.050000px;}
.y21{bottom:331.230000px;}
.y85{bottom:335.730000px;}
.y48{bottom:340.995000px;}
.yf7{bottom:342.615000px;}
.y2e{bottom:348.330000px;}
.y20{bottom:348.690000px;}
.y84{bottom:353.055000px;}
.yc3{bottom:353.955000px;}
.y43{bottom:357.735000px;}
.yf6{bottom:361.695000px;}
.y2d{bottom:365.430000px;}
.y1f{bottom:366.150000px;}
.y83{bottom:370.335000px;}
.yf5{bottom:380.775000px;}
.ybc{bottom:381.855000px;}
.y2c{bottom:382.710000px;}
.y1e{bottom:383.430000px;}
.y82{bottom:387.615000px;}
.y19{bottom:392.475000px;}
.yf4{bottom:399.855000px;}
.y2b{bottom:399.990000px;}
.y1d{bottom:400.890000px;}
.y81{bottom:404.715000px;}
.ybf{bottom:411.375000px;}
.y2a{bottom:417.270000px;}
.y1c{bottom:418.530000px;}
.yf3{bottom:418.755000px;}
.y80{bottom:421.995000px;}
.y29{bottom:434.550000px;}
.ybb{bottom:434.775000px;}
.y1b{bottom:436.710000px;}
.yf2{bottom:437.835000px;}
.y7f{bottom:439.275000px;}
.y28{bottom:451.830000px;}
.y1a{bottom:454.350000px;}
.y7e{bottom:456.555000px;}
.yf1{bottom:457.635000px;}
.y7d{bottom:473.835000px;}
.yef{bottom:482.835000px;}
.y7c{bottom:490.935000px;}
.yed{bottom:504.615000px;}
.y7b{bottom:508.215000px;}
.yba{bottom:514.155000px;}
.yec{bottom:524.415000px;}
.y7a{bottom:525.495000px;}
.yb9{bottom:531.435000px;}
.y79{bottom:542.775000px;}
.yea{bottom:543.495000px;}
.yb2{bottom:546.195000px;}
.y78{bottom:560.055000px;}
.ye9{bottom:562.935000px;}
.y77{bottom:577.335000px;}
.ye8{bottom:582.015000px;}
.y76{bottom:594.435000px;}
.ye5{bottom:600.915000px;}
.yb5{bottom:602.355000px;}
.y75{bottom:611.745000px;}
.y74{bottom:629.025000px;}
.ye4{bottom:631.365000px;}
.yaf{bottom:633.165000px;}
.y73{bottom:646.305000px;}
.ye3{bottom:650.445000px;}
.yb1{bottom:651.165000px;}
.y72{bottom:663.585000px;}
.yac{bottom:669.165000px;}
.ye2{bottom:670.245000px;}
.y71{bottom:680.865000px;}
.ye1{bottom:695.445000px;}
.y70{bottom:697.965000px;}
.yad{bottom:703.725000px;}
.y6f{bottom:715.245000px;}
.ye0{bottom:715.605000px;}
.ya7{bottom:721.725000px;}
.y6e{bottom:732.525000px;}
.ydd{bottom:734.685000px;}
.y6d{bottom:749.805000px;}
.ya8{bottom:750.885000px;}
.ydc{bottom:765.105000px;}
.y6c{bottom:767.085000px;}
.ya0{bottom:774.285000px;}
.ydb{bottom:784.185000px;}
.y6b{bottom:784.365000px;}
.ya6{bottom:792.285000px;}
.y6a{bottom:801.465000px;}
.yda{bottom:803.985000px;}
.ya3{bottom:810.285000px;}
.y69{bottom:818.745000px;}
.yd9{bottom:827.025000px;}
.y94{bottom:832.245000px;}
.y68{bottom:836.025000px;}
.yd8{bottom:844.305000px;}
.y9f{bottom:850.245000px;}
.y67{bottom:853.305000px;}
.y16{bottom:858.165000px;}
.yd7{bottom:861.585000px;}
.y9d{bottom:868.245000px;}
.y66{bottom:870.630000px;}
.yd6{bottom:878.730000px;}
.y9c{bottom:886.290000px;}
.y65{bottom:887.730000px;}
.yf{bottom:887.910000px;}
.yd5{bottom:896.010000px;}
.y9b{bottom:904.290000px;}
.y64{bottom:905.010000px;}
.yd4{bottom:910.050000px;}
.y63{bottom:922.290000px;}
.y62{bottom:939.570000px;}
.y93{bottom:940.290000px;}
.y61{bottom:956.850000px;}
.y60{bottom:974.130000px;}
.y5f{bottom:991.230000px;}
.y5e{bottom:1008.510000px;}
.y5d{bottom:1025.790000px;}
.yd{bottom:1031.010000px;}
.y5c{bottom:1043.070000px;}
.y6{bottom:1056.390000px;}
.y5b{bottom:1060.350000px;}
.y5a{bottom:1077.630000px;}
.y59{bottom:1094.730000px;}
.y58{bottom:1112.010000px;}
.y57{bottom:1129.290000px;}
.y56{bottom:1146.600000px;}
.y55{bottom:1163.880000px;}
.h26{height:17.100000px;}
.h22{height:17.280000px;}
.h23{height:17.316000px;}
.h3f{height:17.640000px;}
.h40{height:18.000000px;}
.h3d{height:18.360000px;}
.h41{height:19.980000px;}
.h25{height:21.240000px;}
.h28{height:22.500000px;}
.h36{height:22.536000px;}
.h32{height:22.680000px;}
.hc{height:24.840000px;}
.h39{height:26.820000px;}
.h35{height:27.180000px;}
.h29{height:28.260000px;}
.h3c{height:28.620000px;}
.h3e{height:28.656000px;}
.h33{height:28.800000px;}
.h3b{height:29.160000px;}
.h14{height:29.736000px;}
.h2e{height:30.096000px;}
.h2{height:32.976000px;}
.h2b{height:33.840000px;}
.h38{height:34.380000px;}
.h1d{height:34.740000px;}
.h2c{height:35.280000px;}
.h8{height:36.180000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h13{height:43.453125px;}
.h42{height:43.506914px;}
.hf{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h1f{height:46.980000px;}
.h16{height:47.980898px;}
.h21{height:48.027656px;}
.h19{height:49.255313px;}
.hd{height:49.680000px;}
.h1e{height:50.273438px;}
.h34{height:50.436000px;}
.h27{height:51.660000px;}
.h2a{height:51.840000px;}
.h31{height:52.200000px;}
.h3a{height:52.560000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h2f{height:55.260000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h24{height:57.240000px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.hb{height:71.613281px;}
.h30{height:75.420000px;}
.h2d{height:86.256000px;}
.h20{height:107.316000px;}
.h37{height:108.360000px;}
.h7{height:121.536000px;}
.he{height:143.100000px;}
.h15{height:465.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:21.096000px;}
.w1b{width:34.920000px;}
.w1c{width:66.600000px;}
.w3{width:74.880000px;}
.w15{width:77.760000px;}
.we{width:78.300000px;}
.w10{width:78.336000px;}
.w14{width:81.000000px;}
.wc{width:82.080000px;}
.w11{width:84.420000px;}
.wf{width:84.600000px;}
.wd{width:84.636000px;}
.w17{width:91.080000px;}
.w18{width:91.116000px;}
.w16{width:94.176000px;}
.w13{width:107.316000px;}
.w12{width:107.856000px;}
.wb{width:110.736000px;}
.wa{width:116.676000px;}
.w5{width:155.370000px;}
.w8{width:220.935000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w1a{width:612.825000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.560000px;}
.x2{left:8.640000px;}
.xa{left:10.260000px;}
.x11{left:12.600000px;}
.xe{left:19.476000px;}
.x13{left:21.996000px;}
.x14{left:39.636000px;}
.x16{left:57.240000px;}
.x1{left:72.360000px;}
.x1c{left:75.105000px;}
.x28{left:78.840000px;}
.x4{left:80.999987px;}
.x12{left:90.215987px;}
.x27{left:91.295987px;}
.x29{left:99.936000px;}
.x2b{left:108.035987px;}
.x1f{left:181.830000px;}
.x15{left:190.830000px;}
.xf{left:215.175000px;}
.xb{left:225.795000px;}
.x5{left:228.270000px;}
.x8{left:285.015000px;}
.xd{left:287.355000px;}
.x20{left:289.875000px;}
.x10{left:293.835000px;}
.x17{left:302.475000px;}
.x6{left:344.775000px;}
.x7{left:364.035000px;}
.x21{left:371.595000px;}
.xc{left:373.575000px;}
.x18{left:385.275000px;}
.x22{left:450.075000px;}
.x9{left:452.280000px;}
.x19{left:470.625000px;}
.x23{left:545.145000px;}
.x1a{left:549.645000px;}
.x1b{left:634.965000px;}
.x24{left:636.945000px;}
.x2a{left:712.770000px;}
.x1d{left:714.030000px;}
.x25{left:728.790000px;}
.x3{left:745.890000px;}
.x26{left:746.969987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.113067pt;}
.lse{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.089067pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls15{letter-spacing:-0.007680pt;}
.ls13{letter-spacing:-0.003840pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.077867pt;}
.ls11{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.337707pt;}
.lsd{letter-spacing:0.549333pt;}
.ls4{letter-spacing:0.698880pt;}
.lsc{letter-spacing:8.480000pt;}
.ls1b{letter-spacing:9.120000pt;}
.ls1c{letter-spacing:14.672640pt;}
.ls1a{letter-spacing:40.912640pt;}
.lsf{letter-spacing:178.848000pt;}
.ls1{letter-spacing:320.106667pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws3{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsd{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.636160pt;}
.wse{word-spacing:-8.632320pt;}
.ws6{word-spacing:0.000000pt;}
._21{margin-left:-7.349973pt;}
._22{margin-left:-6.126080pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.909120pt;}
._17{margin-left:-3.009707pt;}
._2{margin-left:-2.078507pt;}
._0{margin-left:-1.141333pt;}
._1{width:0.960000pt;}
._d{width:2.568107pt;}
._7{width:3.714560pt;}
._8{width:4.837760pt;}
._11{width:5.820160pt;}
._15{width:6.924800pt;}
._9{width:8.176640pt;}
._6{width:9.136640pt;}
._a{width:10.227840pt;}
._b{width:11.152213pt;}
._5{width:12.184960pt;}
._13{width:14.869760pt;}
._16{width:15.764907pt;}
._12{width:16.782080pt;}
._c{width:18.358400pt;}
._f{width:19.969280pt;}
._10{width:22.654720pt;}
._14{width:24.087040pt;}
._19{width:28.641067pt;}
._1a{width:29.658240pt;}
._18{width:30.915840pt;}
._1f{width:33.146880pt;}
._e{width:40.211840pt;}
._1b{width:47.914240pt;}
._1e{width:65.975040pt;}
._1d{width:98.464640pt;}
._1c{width:107.572693pt;}
._20{width:122.547840pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{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;}
.y17{bottom:0.160000pt;}
.y42{bottom:2.880000pt;}
.y9e{bottom:2.920000pt;}
.yeb{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y47{bottom:3.360000pt;}
.yee{bottom:3.680000pt;}
.y15{bottom:4.000000pt;}
.yf0{bottom:4.160000pt;}
.ya4{bottom:4.640000pt;}
.ya9{bottom:5.280000pt;}
.y9a{bottom:6.240000pt;}
.ya5{bottom:6.400000pt;}
.yce{bottom:7.520000pt;}
.yc5{bottom:7.560000pt;}
.yaa{bottom:7.680000pt;}
.y45{bottom:7.840000pt;}
.ydf{bottom:8.000000pt;}
.ye7{bottom:8.026667pt;}
.yb6{bottom:8.506667pt;}
.ye{bottom:9.600000pt;}
.ycd{bottom:11.360000pt;}
.yc4{bottom:11.680000pt;}
.y18{bottom:12.520000pt;}
.yab{bottom:12.800000pt;}
.yde{bottom:12.960000pt;}
.ye6{bottom:12.986667pt;}
.yc0{bottom:13.120000pt;}
.yd2{bottom:13.440000pt;}
.yb7{bottom:14.266667pt;}
.y4{bottom:15.392000pt;}
.yae{bottom:17.600000pt;}
.y2{bottom:17.952000pt;}
.ycb{bottom:18.080000pt;}
.y41{bottom:18.240000pt;}
.ybe{bottom:18.560000pt;}
.y46{bottom:18.720000pt;}
.yb0{bottom:18.880000pt;}
.y44{bottom:20.800000pt;}
.yc{bottom:20.960000pt;}
.y99{bottom:21.600000pt;}
.ya2{bottom:23.200000pt;}
.yc2{bottom:32.360000pt;}
.y40{bottom:33.600000pt;}
.ybd{bottom:33.920000pt;}
.yd0{bottom:34.240000pt;}
.yb{bottom:35.520000pt;}
.y14{bottom:36.000000pt;}
.yb8{bottom:36.800000pt;}
.y98{bottom:37.000000pt;}
.ya1{bottom:38.400000pt;}
.y5{bottom:38.560000pt;}
.yb4{bottom:48.800000pt;}
.y3f{bottom:48.960000pt;}
.ya{bottom:49.920000pt;}
.y13{bottom:52.320000pt;}
.y97{bottom:52.360000pt;}
.y1{bottom:57.280000pt;}
.y3e{bottom:64.160000pt;}
.yb3{bottom:64.186667pt;}
.y9{bottom:65.120000pt;}
.y96{bottom:67.720000pt;}
.yc8{bottom:68.640000pt;}
.y12{bottom:69.120000pt;}
.y3d{bottom:79.520000pt;}
.y8{bottom:82.586667pt;}
.y95{bottom:82.920000pt;}
.yc7{bottom:84.000000pt;}
.y11{bottom:92.000000pt;}
.y3c{bottom:94.880000pt;}
.y104{bottom:98.432000pt;}
.y7{bottom:98.906667pt;}
.y92{bottom:99.072000pt;}
.y54{bottom:106.272000pt;}
.y3b{bottom:110.240000pt;}
.y10{bottom:113.760000pt;}
.y103{bottom:113.792000pt;}
.y91{bottom:114.432000pt;}
.y53{bottom:121.632000pt;}
.y3a{bottom:125.600000pt;}
.y102{bottom:129.152000pt;}
.y90{bottom:129.792000pt;}
.yd3{bottom:136.346667pt;}
.y52{bottom:136.986667pt;}
.y39{bottom:140.800000pt;}
.y101{bottom:144.506667pt;}
.y8f{bottom:145.146667pt;}
.ycf{bottom:149.466667pt;}
.y51{bottom:152.346667pt;}
.y38{bottom:156.160000pt;}
.y100{bottom:159.866667pt;}
.y8e{bottom:160.506667pt;}
.y50{bottom:167.546667pt;}
.y37{bottom:171.520000pt;}
.yff{bottom:175.066667pt;}
.y8d{bottom:175.706667pt;}
.yd1{bottom:176.026667pt;}
.y4f{bottom:182.906667pt;}
.y36{bottom:186.880000pt;}
.yfe{bottom:190.426667pt;}
.y8c{bottom:191.066667pt;}
.yc6{bottom:196.826667pt;}
.y4e{bottom:198.266667pt;}
.y35{bottom:202.266667pt;}
.yfd{bottom:202.906667pt;}
.y27{bottom:203.226667pt;}
.y8b{bottom:206.426667pt;}
.y4d{bottom:213.626667pt;}
.y26{bottom:216.826667pt;}
.ycc{bottom:217.466667pt;}
.y34{bottom:217.626667pt;}
.yfc{bottom:219.866667pt;}
.y8a{bottom:221.786667pt;}
.y4c{bottom:228.986667pt;}
.y25{bottom:232.506667pt;}
.y33{bottom:232.826667pt;}
.yfb{bottom:236.826667pt;}
.y89{bottom:237.146667pt;}
.yca{bottom:241.946667pt;}
.y4b{bottom:244.346667pt;}
.y24{bottom:247.866667pt;}
.y32{bottom:248.186667pt;}
.y88{bottom:252.506667pt;}
.yfa{bottom:253.786667pt;}
.y4a{bottom:259.546667pt;}
.y23{bottom:263.226667pt;}
.y31{bottom:263.546667pt;}
.y87{bottom:267.706667pt;}
.yf9{bottom:270.586667pt;}
.yc9{bottom:273.146667pt;}
.y49{bottom:274.906667pt;}
.y30{bottom:278.906667pt;}
.y22{bottom:279.066667pt;}
.y86{bottom:283.066667pt;}
.yf8{bottom:287.546667pt;}
.yc1{bottom:293.946667pt;}
.y2f{bottom:294.266667pt;}
.y21{bottom:294.426667pt;}
.y85{bottom:298.426667pt;}
.y48{bottom:303.106667pt;}
.yf7{bottom:304.546667pt;}
.y2e{bottom:309.626667pt;}
.y20{bottom:309.946667pt;}
.y84{bottom:313.826667pt;}
.yc3{bottom:314.626667pt;}
.y43{bottom:317.986667pt;}
.yf6{bottom:321.506667pt;}
.y2d{bottom:324.826667pt;}
.y1f{bottom:325.466667pt;}
.y83{bottom:329.186667pt;}
.yf5{bottom:338.466667pt;}
.ybc{bottom:339.426667pt;}
.y2c{bottom:340.186667pt;}
.y1e{bottom:340.826667pt;}
.y82{bottom:344.546667pt;}
.y19{bottom:348.866667pt;}
.yf4{bottom:355.426667pt;}
.y2b{bottom:355.546667pt;}
.y1d{bottom:356.346667pt;}
.y81{bottom:359.746667pt;}
.ybf{bottom:365.666667pt;}
.y2a{bottom:370.906667pt;}
.y1c{bottom:372.026667pt;}
.yf3{bottom:372.226667pt;}
.y80{bottom:375.106667pt;}
.y29{bottom:386.266667pt;}
.ybb{bottom:386.466667pt;}
.y1b{bottom:388.186667pt;}
.yf2{bottom:389.186667pt;}
.y7f{bottom:390.466667pt;}
.y28{bottom:401.626667pt;}
.y1a{bottom:403.866667pt;}
.y7e{bottom:405.826667pt;}
.yf1{bottom:406.786667pt;}
.y7d{bottom:421.186667pt;}
.yef{bottom:429.186667pt;}
.y7c{bottom:436.386667pt;}
.yed{bottom:448.546667pt;}
.y7b{bottom:451.746667pt;}
.yba{bottom:457.026667pt;}
.yec{bottom:466.146667pt;}
.y7a{bottom:467.106667pt;}
.yb9{bottom:472.386667pt;}
.y79{bottom:482.466667pt;}
.yea{bottom:483.106667pt;}
.yb2{bottom:485.506667pt;}
.y78{bottom:497.826667pt;}
.ye9{bottom:500.386667pt;}
.y77{bottom:513.186667pt;}
.ye8{bottom:517.346667pt;}
.y76{bottom:528.386667pt;}
.ye5{bottom:534.146667pt;}
.yb5{bottom:535.426667pt;}
.y75{bottom:543.773333pt;}
.y74{bottom:559.133333pt;}
.ye4{bottom:561.213333pt;}
.yaf{bottom:562.813333pt;}
.y73{bottom:574.493333pt;}
.ye3{bottom:578.173333pt;}
.yb1{bottom:578.813333pt;}
.y72{bottom:589.853333pt;}
.yac{bottom:594.813333pt;}
.ye2{bottom:595.773333pt;}
.y71{bottom:605.213333pt;}
.ye1{bottom:618.173333pt;}
.y70{bottom:620.413333pt;}
.yad{bottom:625.533333pt;}
.y6f{bottom:635.773333pt;}
.ye0{bottom:636.093333pt;}
.ya7{bottom:641.533333pt;}
.y6e{bottom:651.133333pt;}
.ydd{bottom:653.053333pt;}
.y6d{bottom:666.493333pt;}
.ya8{bottom:667.453333pt;}
.ydc{bottom:680.093333pt;}
.y6c{bottom:681.853333pt;}
.ya0{bottom:688.253333pt;}
.ydb{bottom:697.053333pt;}
.y6b{bottom:697.213333pt;}
.ya6{bottom:704.253333pt;}
.y6a{bottom:712.413333pt;}
.yda{bottom:714.653333pt;}
.ya3{bottom:720.253333pt;}
.y69{bottom:727.773333pt;}
.yd9{bottom:735.133333pt;}
.y94{bottom:739.773333pt;}
.y68{bottom:743.133333pt;}
.yd8{bottom:750.493333pt;}
.y9f{bottom:755.773333pt;}
.y67{bottom:758.493333pt;}
.y16{bottom:762.813333pt;}
.yd7{bottom:765.853333pt;}
.y9d{bottom:771.773333pt;}
.y66{bottom:773.893333pt;}
.yd6{bottom:781.093333pt;}
.y9c{bottom:787.813333pt;}
.y65{bottom:789.093333pt;}
.yf{bottom:789.253333pt;}
.yd5{bottom:796.453333pt;}
.y9b{bottom:803.813333pt;}
.y64{bottom:804.453333pt;}
.yd4{bottom:808.933333pt;}
.y63{bottom:819.813333pt;}
.y62{bottom:835.173333pt;}
.y93{bottom:835.813333pt;}
.y61{bottom:850.533333pt;}
.y60{bottom:865.893333pt;}
.y5f{bottom:881.093333pt;}
.y5e{bottom:896.453333pt;}
.y5d{bottom:911.813333pt;}
.yd{bottom:916.453333pt;}
.y5c{bottom:927.173333pt;}
.y6{bottom:939.013333pt;}
.y5b{bottom:942.533333pt;}
.y5a{bottom:957.893333pt;}
.y59{bottom:973.093333pt;}
.y58{bottom:988.453333pt;}
.y57{bottom:1003.813333pt;}
.y56{bottom:1019.200000pt;}
.y55{bottom:1034.560000pt;}
.h26{height:15.200000pt;}
.h22{height:15.360000pt;}
.h23{height:15.392000pt;}
.h3f{height:15.680000pt;}
.h40{height:16.000000pt;}
.h3d{height:16.320000pt;}
.h41{height:17.760000pt;}
.h25{height:18.880000pt;}
.h28{height:20.000000pt;}
.h36{height:20.032000pt;}
.h32{height:20.160000pt;}
.hc{height:22.080000pt;}
.h39{height:23.840000pt;}
.h35{height:24.160000pt;}
.h29{height:25.120000pt;}
.h3c{height:25.440000pt;}
.h3e{height:25.472000pt;}
.h33{height:25.600000pt;}
.h3b{height:25.920000pt;}
.h14{height:26.432000pt;}
.h2e{height:26.752000pt;}
.h2{height:29.312000pt;}
.h2b{height:30.080000pt;}
.h38{height:30.560000pt;}
.h1d{height:30.880000pt;}
.h2c{height:31.360000pt;}
.h8{height:32.160000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h13{height:38.625000pt;}
.h42{height:38.672812pt;}
.hf{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h1f{height:41.760000pt;}
.h16{height:42.649687pt;}
.h21{height:42.691250pt;}
.h19{height:43.782500pt;}
.hd{height:44.160000pt;}
.h1e{height:44.687500pt;}
.h34{height:44.832000pt;}
.h27{height:45.920000pt;}
.h2a{height:46.080000pt;}
.h31{height:46.400000pt;}
.h3a{height:46.720000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h2f{height:49.120000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h24{height:50.880000pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.hb{height:63.656250pt;}
.h30{height:67.040000pt;}
.h2d{height:76.672000pt;}
.h20{height:95.392000pt;}
.h37{height:96.320000pt;}
.h7{height:108.032000pt;}
.he{height:127.200000pt;}
.h15{height:413.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:18.752000pt;}
.w1b{width:31.040000pt;}
.w1c{width:59.200000pt;}
.w3{width:66.560000pt;}
.w15{width:69.120000pt;}
.we{width:69.600000pt;}
.w10{width:69.632000pt;}
.w14{width:72.000000pt;}
.wc{width:72.960000pt;}
.w11{width:75.040000pt;}
.wf{width:75.200000pt;}
.wd{width:75.232000pt;}
.w17{width:80.960000pt;}
.w18{width:80.992000pt;}
.w16{width:83.712000pt;}
.w13{width:95.392000pt;}
.w12{width:95.872000pt;}
.wb{width:98.432000pt;}
.wa{width:103.712000pt;}
.w5{width:138.106667pt;}
.w8{width:196.386667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w1a{width:544.733333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.720000pt;}
.x2{left:7.680000pt;}
.xa{left:9.120000pt;}
.x11{left:11.200000pt;}
.xe{left:17.312000pt;}
.x13{left:19.552000pt;}
.x14{left:35.232000pt;}
.x16{left:50.880000pt;}
.x1{left:64.320000pt;}
.x1c{left:66.760000pt;}
.x28{left:70.080000pt;}
.x4{left:71.999988pt;}
.x12{left:80.191988pt;}
.x27{left:81.151988pt;}
.x29{left:88.832000pt;}
.x2b{left:96.031988pt;}
.x1f{left:161.626667pt;}
.x15{left:169.626667pt;}
.xf{left:191.266667pt;}
.xb{left:200.706667pt;}
.x5{left:202.906667pt;}
.x8{left:253.346667pt;}
.xd{left:255.426667pt;}
.x20{left:257.666667pt;}
.x10{left:261.186667pt;}
.x17{left:268.866667pt;}
.x6{left:306.466667pt;}
.x7{left:323.586667pt;}
.x21{left:330.306667pt;}
.xc{left:332.066667pt;}
.x18{left:342.466667pt;}
.x22{left:400.066667pt;}
.x9{left:402.026667pt;}
.x19{left:418.333333pt;}
.x23{left:484.573333pt;}
.x1a{left:488.573333pt;}
.x1b{left:564.413333pt;}
.x24{left:566.173333pt;}
.x2a{left:633.573333pt;}
.x1d{left:634.693333pt;}
.x25{left:647.813333pt;}
.x3{left:663.013333pt;}
.x26{left:663.973322pt;}
}




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