
    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_07fede479f902ea654b36dca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120117;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_db70aacbebdcaa98764218f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.111816;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_eb483a7ccfac2b076c96c5cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_d7c845f0e6bccbfca8337510.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_70f94b2cfca92f69b3b5d7f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.330566;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_420da35f6b32828d8015e3f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.080024px;}
.lsa{letter-spacing:-0.589823px;}
.ls8{letter-spacing:-0.531372px;}
.ls3{letter-spacing:-0.504011px;}
.ls2{letter-spacing:-0.432010px;}
.ls11{letter-spacing:-0.072722px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.288006px;}
.lsb{letter-spacing:0.295207px;}
.ls6{letter-spacing:0.413290px;}
.ls7{letter-spacing:0.504011px;}
.lsf{letter-spacing:0.576013px;}
.ls4{letter-spacing:0.719296px;}
.ls9{letter-spacing:1.712790px;}
.ls12{letter-spacing:2.304052px;}
.ls10{letter-spacing:6.624149px;}
.lsc{letter-spacing:13.824311px;}
.lsd{letter-spacing:16.703656px;}
.lse{letter-spacing:18.143631px;}
.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;}
}
.wsb{word-spacing:-16.992382px;}
.ws9{word-spacing:-16.920381px;}
.ws2{word-spacing:-16.704376px;}
.ws0{word-spacing:-16.416369px;}
.wsc{word-spacing:-16.343648px;}
.ws1{word-spacing:-15.984360px;}
.ws3{word-spacing:-15.912358px;}
.ws5{word-spacing:-13.874724px;}
.wsa{word-spacing:-13.756642px;}
.ws7{word-spacing:-13.461435px;}
.ws6{word-spacing:-12.930062px;}
.ws8{word-spacing:-12.871611px;}
.ws4{word-spacing:0.000000px;}
._1f{margin-left:-14.473704px;}
._26{margin-left:-5.699264px;}
._20{margin-left:-3.582367px;}
._4{margin-left:-2.482417px;}
._1{margin-left:-1.080024px;}
._0{width:1.368031px;}
._c{width:2.383928px;}
._8{width:3.418438px;}
._5{width:4.824109px;}
._6{width:6.169432px;}
._7{width:7.461582px;}
._e{width:8.640194px;}
._9{width:10.075270px;}
._a{width:11.520259px;}
._d{width:12.536447px;}
._3{width:13.748227px;}
._2{width:15.120340px;}
._b{width:17.561244px;}
._16{width:19.330796px;}
._f{width:20.664465px;}
._10{width:21.960494px;}
._13{width:23.256523px;}
._18{width:25.018924px;}
._17{width:26.856604px;}
._15{width:29.058554px;}
._14{width:30.305656px;}
._11{width:32.184724px;}
._12{width:33.371112px;}
._1e{width:36.769407px;}
._1a{width:38.016855px;}
._1b{width:39.131695px;}
._19{width:40.248452px;}
._2b{width:45.569379px;}
._1d{width:47.448614px;}
._29{width:56.881280px;}
._2a{width:58.177309px;}
._21{width:72.577633px;}
._28{width:88.621266px;}
._27{width:89.642017px;}
._1c{width:106.489942px;}
._24{width:129.523597px;}
._25{width:130.537669px;}
._2e{width:141.405512px;}
._2c{width:178.846354px;}
._22{width:205.845222px;}
._23{width:207.151164px;}
._2d{width:395.216892px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.041380px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:64.801500px;}
.fs0{font-size:72.001620px;}
.y0{bottom:0.000000px;}
.y36{bottom:4.875615px;}
.y1{bottom:18.120075px;}
.y34{bottom:42.450000px;}
.y68{bottom:93.960000px;}
.y161{bottom:94.319985px;}
.y1c6{bottom:98.279985px;}
.ycc{bottom:102.599970px;}
.y78{bottom:104.040000px;}
.y9c{bottom:109.799985px;}
.y33{bottom:110.159970px;}
.y67{bottom:114.479985px;}
.y160{bottom:115.199985px;}
.y11c{bottom:119.519985px;}
.y1c5{bottom:122.040000px;}
.ycb{bottom:124.199985px;}
.y77{bottom:125.639970px;}
.y32{bottom:130.679985px;}
.y181{bottom:132.839925px;}
.y66{bottom:134.999925px;}
.y15f{bottom:135.719925px;}
.y11b{bottom:140.039925px;}
.y13f{bottom:144.359940px;}
.yca{bottom:145.079925px;}
.y1c4{bottom:145.799925px;}
.y1a3{bottom:147.239940px;}
.y76{bottom:148.679940px;}
.y31{bottom:151.199925px;}
.y65{bottom:155.879925px;}
.y15e{bottom:156.239940px;}
.y180{bottom:156.599925px;}
.y11a{bottom:158.039925px;}
.yf9{bottom:165.239940px;}
.yc9{bottom:165.599925px;}
.y75{bottom:169.199925px;}
.y1c3{bottom:169.559925px;}
.y1a2{bottom:170.999925px;}
.y9b{bottom:171.719925px;}
.y30{bottom:172.079925px;}
.y119{bottom:175.319910px;}
.y64{bottom:176.399910px;}
.y15d{bottom:177.119925px;}
.y13e{bottom:182.519910px;}
.yf8{bottom:185.759925px;}
.yc8{bottom:188.639925px;}
.y74{bottom:191.879925px;}
.y2f{bottom:192.599925px;}
.y118{bottom:193.319910px;}
.y1a1{bottom:194.759925px;}
.y17f{bottom:195.479940px;}
.y63{bottom:197.279940px;}
.y15c{bottom:197.639925px;}
.y13d{bottom:201.959925px;}
.yf7{bottom:206.639925px;}
.yc7{bottom:209.159910px;}
.y117{bottom:211.319910px;}
.y73{bottom:212.759925px;}
.y2e{bottom:213.119925px;}
.y62{bottom:217.799925px;}
.y15b{bottom:218.519910px;}
.y17e{bottom:219.239910px;}
.y13c{bottom:219.959925px;}
.yf6{bottom:227.159910px;}
.y116{bottom:229.319910px;}
.yc6{bottom:231.839925px;}
.y1c2{bottom:232.199910px;}
.y72{bottom:233.279940px;}
.y9a{bottom:233.639925px;}
.y2d{bottom:233.999925px;}
.y13b{bottom:237.239910px;}
.y61{bottom:238.319910px;}
.y15a{bottom:239.039925px;}
.y1a0{bottom:242.279940px;}
.y17d{bottom:242.639925px;}
.y115{bottom:246.239910px;}
.yf5{bottom:247.679925px;}
.yc5{bottom:252.719925px;}
.y71{bottom:254.159910px;}
.y2c{bottom:254.519910px;}
.y13a{bottom:255.239910px;}
.y1c1{bottom:255.959925px;}
.y60{bottom:259.199910px;}
.y159{bottom:259.559925px;}
.y114{bottom:263.519910px;}
.y19f{bottom:266.039925px;}
.y17c{bottom:266.399910px;}
.yf4{bottom:268.559925px;}
.yc4{bottom:273.239910px;}
.y70{bottom:274.679925px;}
.y2b{bottom:275.039925px;}
.y5f{bottom:279.719925px;}
.y158{bottom:280.439910px;}
.y113{bottom:281.519910px;}
.yf3{bottom:289.079925px;}
.y17b{bottom:290.159910px;}
.y139{bottom:291.239910px;}
.yc3{bottom:293.759925px;}
.y6f{bottom:295.199910px;}
.y99{bottom:295.559925px;}
.y2a{bottom:295.919925px;}
.y112{bottom:299.519910px;}
.y5e{bottom:300.239910px;}
.y157{bottom:300.959925px;}
.y1c0{bottom:303.479940px;}
.y19e{bottom:304.919925px;}
.y138{bottom:308.159910px;}
.yf2{bottom:309.599925px;}
.y17a{bottom:313.919925px;}
.yc2{bottom:314.639925px;}
.y6e{bottom:316.079925px;}
.y29{bottom:316.439910px;}
.y111{bottom:316.799925px;}
.y5d{bottom:321.119910px;}
.y156{bottom:321.479940px;}
.y137{bottom:325.439910px;}
.y1bf{bottom:327.239910px;}
.y19d{bottom:328.679925px;}
.yf1{bottom:330.479940px;}
.y110{bottom:334.799925px;}
.yc1{bottom:335.159910px;}
.y6d{bottom:336.599925px;}
.y98{bottom:336.959925px;}
.y28{bottom:337.319910px;}
.y5c{bottom:341.639925px;}
.y155{bottom:342.359910px;}
.y136{bottom:343.439910px;}
.y1be{bottom:350.639925px;}
.yf0{bottom:350.999925px;}
.y19c{bottom:352.439910px;}
.y10f{bottom:352.799925px;}
.yc0{bottom:356.039910px;}
.y6c{bottom:357.119910px;}
.y27{bottom:357.839925px;}
.y135{bottom:361.439910px;}
.y5b{bottom:362.519910px;}
.y154{bottom:362.879925px;}
.y10e{bottom:369.719925px;}
.yef{bottom:371.879925px;}
.y19b{bottom:376.199925px;}
.ybf{bottom:376.559925px;}
.y6b{bottom:377.999910px;}
.y26{bottom:378.359940px;}
.y134{bottom:378.719925px;}
.y5a{bottom:383.039925px;}
.y153{bottom:383.759895px;}
.y1bd{bottom:386.279940px;}
.y10d{bottom:387.719925px;}
.yee{bottom:392.399910px;}
.y133{bottom:396.719925px;}
.ybe{bottom:397.079955px;}
.y97{bottom:398.879925px;}
.y25{bottom:399.239910px;}
.y19a{bottom:399.959925px;}
.y179{bottom:400.319910px;}
.y59{bottom:403.559925px;}
.y152{bottom:404.279940px;}
.y10c{bottom:405.719925px;}
.y1bc{bottom:406.799925px;}
.yed{bottom:412.919910px;}
.y132{bottom:414.719925px;}
.y6a{bottom:417.239910px;}
.ybd{bottom:417.959925px;}
.y24{bottom:419.759895px;}
.y10b{bottom:422.999910px;}
.y199{bottom:423.719925px;}
.y58{bottom:424.439940px;}
.y151{bottom:424.799925px;}
.y1bb{bottom:427.319910px;}
.y131{bottom:431.639925px;}
.yec{bottom:433.799925px;}
.ybc{bottom:438.479910px;}
.y178{bottom:439.199925px;}
.y23{bottom:440.279940px;}
.y69{bottom:440.639925px;}
.y10a{bottom:440.999910px;}
.y57{bottom:444.959925px;}
.y150{bottom:445.679940px;}
.y1ba{bottom:448.199925px;}
.y130{bottom:449.639925px;}
.yeb{bottom:454.319910px;}
.ybb{bottom:458.999910px;}
.y96{bottom:460.799925px;}
.y22{bottom:461.159910px;}
.y198{bottom:462.239910px;}
.y177{bottom:462.959925px;}
.y56{bottom:465.479910px;}
.y14f{bottom:466.199925px;}
.y12f{bottom:467.639925px;}
.y1b9{bottom:468.719925px;}
.yea{bottom:474.839895px;}
.y109{bottom:476.279940px;}
.yba{bottom:479.879925px;}
.y21{bottom:481.679940px;}
.y12e{bottom:484.919910px;}
.y197{bottom:485.999910px;}
.y55{bottom:486.359940px;}
.y14e{bottom:486.719925px;}
.y108{bottom:493.919910px;}
.ye9{bottom:495.719925px;}
.yb9{bottom:500.399910px;}
.y176{bottom:501.479910px;}
.y95{bottom:502.199925px;}
.y20{bottom:502.559925px;}
.y12d{bottom:502.919910px;}
.y54{bottom:506.879925px;}
.y14d{bottom:507.599895px;}
.y1b8{bottom:507.959925px;}
.y196{bottom:509.759895px;}
.y107{bottom:511.199925px;}
.ye8{bottom:516.239910px;}
.y12c{bottom:520.919910px;}
.yb8{bottom:521.279940px;}
.y1f{bottom:523.079955px;}
.y175{bottom:525.239910px;}
.y1d6{bottom:525.599895px;}
.y53{bottom:527.759895px;}
.y14c{bottom:528.119925px;}
.y106{bottom:529.199925px;}
.y1b7{bottom:531.719925px;}
.y195{bottom:533.519895px;}
.ye7{bottom:537.119925px;}
.y12b{bottom:538.199925px;}
.y1e{bottom:543.599895px;}
.y94{bottom:545.759895px;}
.y1d5{bottom:546.119925px;}
.y105{bottom:546.479910px;}
.y52{bottom:548.279940px;}
.y14b{bottom:548.999910px;}
.y1b6{bottom:555.479910px;}
.y12a{bottom:556.199925px;}
.ye6{bottom:557.639925px;}
.yb7{bottom:560.159910px;}
.y1d{bottom:564.479910px;}
.y93{bottom:566.279940px;}
.y1d4{bottom:566.999910px;}
.y51{bottom:568.799925px;}
.y14a{bottom:569.519895px;}
.y194{bottom:572.399910px;}
.y129{bottom:573.119925px;}
.ye5{bottom:578.159910px;}
.y1b5{bottom:579.239910px;}
.yb6{bottom:580.679940px;}
.y104{bottom:582.479910px;}
.y1c{bottom:584.999910px;}
.y92{bottom:587.159910px;}
.y1d3{bottom:587.519895px;}
.y174{bottom:587.879925px;}
.y50{bottom:589.679940px;}
.y149{bottom:590.039925px;}
.y128{bottom:591.119925px;}
.y193{bottom:596.159910px;}
.ye4{bottom:599.039925px;}
.y103{bottom:600.479910px;}
.yb5{bottom:601.199925px;}
.y1b4{bottom:602.999910px;}
.y1b{bottom:605.519895px;}
.y91{bottom:607.679940px;}
.y1d2{bottom:608.039925px;}
.y127{bottom:608.399910px;}
.y4f{bottom:610.199925px;}
.y148{bottom:610.919910px;}
.y173{bottom:611.639925px;}
.y102{bottom:618.479910px;}
.ye3{bottom:619.559925px;}
.y192{bottom:619.919910px;}
.yb4{bottom:621.719925px;}
.y1a{bottom:626.399910px;}
.y1b3{bottom:626.759895px;}
.y90{bottom:628.559925px;}
.y4e{bottom:630.719925px;}
.y147{bottom:631.439895px;}
.y172{bottom:635.399910px;}
.y101{bottom:636.119925px;}
.ye2{bottom:640.079955px;}
.yb3{bottom:642.599895px;}
.y126{bottom:644.399910px;}
.y19{bottom:646.919910px;}
.y1d1{bottom:647.279940px;}
.y8f{bottom:649.079955px;}
.y4d{bottom:651.599895px;}
.y146{bottom:651.959925px;}
.y100{bottom:654.119925px;}
.y191{bottom:658.439895px;}
.y171{bottom:659.159910px;}
.ye1{bottom:660.959925px;}
.y125{bottom:662.399910px;}
.yb2{bottom:663.119925px;}
.y1b2{bottom:665.279940px;}
.y18{bottom:667.799925px;}
.y8e{bottom:669.599895px;}
.y1d0{bottom:671.039925px;}
.y4c{bottom:672.119925px;}
.y145{bottom:672.839895px;}
.y124{bottom:680.399910px;}
.ye0{bottom:681.479910px;}
.y190{bottom:682.199880px;}
.y170{bottom:682.919910px;}
.yb1{bottom:683.639925px;}
.y17{bottom:688.319910px;}
.y1b1{bottom:689.039925px;}
.yff{bottom:689.399910px;}
.y8d{bottom:690.479910px;}
.y4b{bottom:692.999910px;}
.y144{bottom:693.359895px;}
.y1cf{bottom:694.799925px;}
.y123{bottom:698.399910px;}
.ydf{bottom:702.359895px;}
.yb0{bottom:704.519895px;}
.y18f{bottom:705.959925px;}
.yfe{bottom:707.399910px;}
.y16{bottom:708.839895px;}
.y8c{bottom:710.999910px;}
.y1b0{bottom:712.799925px;}
.y4a{bottom:713.519895px;}
.y143{bottom:714.239910px;}
.y122{bottom:716.039925px;}
.y16f{bottom:721.439895px;}
.yde{bottom:722.879925px;}
.yaf{bottom:725.039925px;}
.yfd{bottom:725.399910px;}
.y15{bottom:729.719925px;}
.y8b{bottom:731.519895px;}
.y1ce{bottom:733.679940px;}
.y49{bottom:734.039925px;}
.y142{bottom:734.759895px;}
.y1af{bottom:736.559925px;}
.ydd{bottom:743.399910px;}
.y16e{bottom:745.199880px;}
.yae{bottom:745.919910px;}
.y14{bottom:750.240090px;}
.y121{bottom:751.319865px;}
.y8a{bottom:752.400090px;}
.y48{bottom:754.919910px;}
.y1cd{bottom:757.439895px;}
.yfc{bottom:761.400090px;}
.ydc{bottom:764.279985px;}
.yad{bottom:766.439895px;}
.y18e{bottom:768.599895px;}
.y16d{bottom:768.959880px;}
.y120{bottom:769.319865px;}
.y13{bottom:770.759895px;}
.y89{bottom:772.919910px;}
.y141{bottom:773.999955px;}
.y47{bottom:775.439895px;}
.yfb{bottom:779.039925px;}
.y1cc{bottom:780.839940px;}
.ydb{bottom:784.799880px;}
.yac{bottom:786.959880px;}
.y11f{bottom:787.319865px;}
.y12{bottom:791.639880px;}
.y18d{bottom:792.359940px;}
.y88{bottom:793.799880px;}
.y46{bottom:795.959880px;}
.yfa{bottom:796.319865px;}
.y1ae{bottom:799.199925px;}
.y1cb{bottom:804.599895px;}
.yda{bottom:805.319865px;}
.yab{bottom:807.839940px;}
.y11{bottom:812.159865px;}
.y140{bottom:812.519940px;}
.y87{bottom:814.319865px;}
.y18c{bottom:816.119880px;}
.y45{bottom:816.839940px;}
.y1ad{bottom:822.959880px;}
.y11e{bottom:823.319865px;}
.yd9{bottom:826.199925px;}
.yaa{bottom:828.359940px;}
.y16c{bottom:831.599895px;}
.y10{bottom:833.039925px;}
.y86{bottom:834.839940px;}
.y44{bottom:837.359940px;}
.y18b{bottom:839.879925px;}
.y11d{bottom:841.319865px;}
.yd8{bottom:846.719925px;}
.ya9{bottom:848.879925px;}
.y1ca{bottom:852.119880px;}
.yf{bottom:853.560015px;}
.y16b{bottom:855.359940px;}
.y85{bottom:855.719925px;}
.y43{bottom:858.240090px;}
.y18a{bottom:863.639880px;}
.yd7{bottom:867.599895px;}
.ya8{bottom:869.759895px;}
.y1ac{bottom:870.479955px;}
.ye{bottom:874.079910px;}
.y84{bottom:876.240090px;}
.y42{bottom:878.759895px;}
.y16a{bottom:879.119880px;}
.yd6{bottom:888.119880px;}
.ya7{bottom:890.279985px;}
.y1c9{bottom:890.999865px;}
.y1ab{bottom:894.240090px;}
.yd{bottom:894.959880px;}
.y83{bottom:898.199925px;}
.y41{bottom:899.279985px;}
.y189{bottom:902.519940px;}
.y169{bottom:902.879925px;}
.yd5{bottom:908.639880px;}
.ya6{bottom:911.159865px;}
.y1c8{bottom:914.759895px;}
.yc{bottom:915.479955px;}
.y1aa{bottom:917.999865px;}
.y82{bottom:918.719925px;}
.y40{bottom:920.159865px;}
.y188{bottom:926.279985px;}
.yd4{bottom:929.519940px;}
.ya5{bottom:931.679940px;}
.yb{bottom:935.999865px;}
.y81{bottom:939.240090px;}
.y3f{bottom:940.679940px;}
.y168{bottom:941.759895px;}
.yd3{bottom:950.039925px;}
.ya4{bottom:952.199925px;}
.y1a9{bottom:953.279985px;}
.ya{bottom:956.879925px;}
.y80{bottom:960.119880px;}
.y3e{bottom:961.199925px;}
.y167{bottom:961.919910px;}
.yd2{bottom:970.559925px;}
.ya3{bottom:973.079910px;}
.y1a8{bottom:973.799880px;}
.y9{bottom:977.400000px;}
.y7f{bottom:981.719925px;}
.y3d{bottom:982.079910px;}
.y166{bottom:982.439895px;}
.y187{bottom:988.559925px;}
.yd1{bottom:991.439895px;}
.y1a7{bottom:994.319865px;}
.ya2{bottom:996.119880px;}
.y8{bottom:998.279985px;}
.y3c{bottom:1002.599895px;}
.y165{bottom:1003.319865px;}
.yd0{bottom:1011.959880px;}
.y186{bottom:1012.319865px;}
.y1a6{bottom:1015.199925px;}
.ya1{bottom:1016.639880px;}
.y7{bottom:1018.799880px;}
.y7e{bottom:1023.119880px;}
.y3b{bottom:1023.479955px;}
.y164{bottom:1023.839940px;}
.ycf{bottom:1032.839940px;}
.y1a5{bottom:1035.719925px;}
.y185{bottom:1036.079910px;}
.ya0{bottom:1037.159865px;}
.y6{bottom:1039.319865px;}
.y3a{bottom:1043.999865px;}
.y1c7{bottom:1051.199925px;}
.yce{bottom:1053.359940px;}
.y7d{bottom:1055.159865px;}
.y9f{bottom:1058.039925px;}
.y184{bottom:1059.839850px;}
.y5{bottom:1060.199925px;}
.y163{bottom:1063.079910px;}
.y39{bottom:1064.519940px;}
.y1a4{bottom:1074.959880px;}
.y7c{bottom:1076.039925px;}
.ycd{bottom:1076.399910px;}
.y9e{bottom:1078.559925px;}
.y4{bottom:1080.719925px;}
.y38{bottom:1085.399910px;}
.y7b{bottom:1097.999865px;}
.y183{bottom:1098.719925px;}
.y9d{bottom:1099.079910px;}
.y3{bottom:1101.240000px;}
.y162{bottom:1101.599895px;}
.y79{bottom:1119.959880px;}
.y7a{bottom:1121.039925px;}
.y2{bottom:1122.119880px;}
.y182{bottom:1122.479955px;}
.y37{bottom:1123.559925px;}
.y35{bottom:1213.360500px;}
.h5{height:19.965000px;}
.h8{height:52.419148px;}
.h9{height:53.217963px;}
.ha{height:53.708052px;}
.hb{height:58.409946px;}
.h4{height:58.886719px;}
.h7{height:58.947849px;}
.h6{height:60.351562px;}
.h3{height:64.899898px;}
.h2{height:65.497567px;}
.h1{height:1226.879970px;}
.h0{height:1263.000000px;}
.w10{width:48.959970px;}
.w12{width:49.320000px;}
.wa{width:54.360015px;}
.w9{width:73.800000px;}
.w11{width:75.599985px;}
.w8{width:77.399985px;}
.wf{width:88.559970px;}
.wb{width:95.039985px;}
.w7{width:115.920000px;}
.wd{width:125.279985px;}
.we{width:125.639970px;}
.w6{width:202.680000px;}
.w3{width:203.760000px;}
.wc{width:311.760000px;}
.w5{width:437.760000px;}
.w4{width:438.840000px;}
.w2{width:451.470000px;}
.w1{width:856.439940px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1b{left:7.920000px;}
.x10{left:9.360015px;}
.x25{left:12.599985px;}
.x21{left:14.039970px;}
.x17{left:16.920000px;}
.x1{left:18.000000px;}
.x1d{left:21.599985px;}
.x27{left:22.679985px;}
.x23{left:25.560015px;}
.x14{left:26.640015px;}
.x24{left:27.720015px;}
.x18{left:28.800015px;}
.x19{left:33.120000px;}
.x26{left:43.920000px;}
.xc{left:109.440015px;}
.xf{left:118.080000px;}
.x1a{left:119.520015px;}
.x2{left:139.320000px;}
.xe{left:220.515000px;}
.x12{left:232.920000px;}
.xa{left:294.840000px;}
.x13{left:309.239985px;}
.x7{left:311.760000px;}
.x11{left:320.760000px;}
.x6{left:329.040000px;}
.x3{left:335.519985px;}
.x8{left:339.840000px;}
.x9{left:345.600015px;}
.x5{left:349.200000px;}
.xb{left:352.080000px;}
.x15{left:381.960000px;}
.x4{left:428.400015px;}
.x1c{left:432.000000px;}
.x16{left:435.240000px;}
.x20{left:481.680000px;}
.x1e{left:558.000000px;}
.x22{left:608.039985px;}
.x1f{left:684.359985px;}
.xd{left:827.550015px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.960022pt;}
.lsa{letter-spacing:-0.524287pt;}
.ls8{letter-spacing:-0.472331pt;}
.ls3{letter-spacing:-0.448010pt;}
.ls2{letter-spacing:-0.384009pt;}
.ls11{letter-spacing:-0.064641pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.256006pt;}
.lsb{letter-spacing:0.262406pt;}
.ls6{letter-spacing:0.367369pt;}
.ls7{letter-spacing:0.448010pt;}
.lsf{letter-spacing:0.512012pt;}
.ls4{letter-spacing:0.639374pt;}
.ls9{letter-spacing:1.522480pt;}
.ls12{letter-spacing:2.048046pt;}
.ls10{letter-spacing:5.888132pt;}
.lsc{letter-spacing:12.288276pt;}
.lsd{letter-spacing:14.847694pt;}
.lse{letter-spacing:16.127672pt;}
.wsb{word-spacing:-15.104340pt;}
.ws9{word-spacing:-15.040338pt;}
.ws2{word-spacing:-14.848334pt;}
.ws0{word-spacing:-14.592328pt;}
.wsc{word-spacing:-14.527687pt;}
.ws1{word-spacing:-14.208320pt;}
.ws3{word-spacing:-14.144318pt;}
.ws5{word-spacing:-12.333088pt;}
.wsa{word-spacing:-12.228126pt;}
.ws7{word-spacing:-11.965720pt;}
.ws6{word-spacing:-11.493389pt;}
.ws8{word-spacing:-11.441432pt;}
.ws4{word-spacing:0.000000pt;}
._1f{margin-left:-12.865515pt;}
._26{margin-left:-5.066013pt;}
._20{margin-left:-3.184327pt;}
._4{margin-left:-2.206593pt;}
._1{margin-left:-0.960022pt;}
._0{width:1.216027pt;}
._c{width:2.119047pt;}
._8{width:3.038612pt;}
._5{width:4.288096pt;}
._6{width:5.483939pt;}
._7{width:6.632517pt;}
._e{width:7.680173pt;}
._9{width:8.955795pt;}
._a{width:10.240230pt;}
._d{width:11.143508pt;}
._3{width:12.220646pt;}
._2{width:13.440302pt;}
._b{width:15.609995pt;}
._16{width:17.182930pt;}
._f{width:18.368413pt;}
._10{width:19.520439pt;}
._13{width:20.672465pt;}
._18{width:22.239044pt;}
._17{width:23.872537pt;}
._15{width:25.829826pt;}
._14{width:26.938361pt;}
._11{width:28.608644pt;}
._12{width:29.663211pt;}
._1e{width:32.683918pt;}
._1a{width:33.792760pt;}
._1b{width:34.783729pt;}
._19{width:35.776402pt;}
._2b{width:40.506115pt;}
._1d{width:42.176546pt;}
._29{width:50.561138pt;}
._2a{width:51.713164pt;}
._21{width:64.513452pt;}
._28{width:78.774459pt;}
._27{width:79.681793pt;}
._1c{width:94.657727pt;}
._24{width:115.132086pt;}
._25{width:116.033483pt;}
._2e{width:125.693788pt;}
._2c{width:158.974537pt;}
._22{width:182.973530pt;}
._23{width:184.134368pt;}
._2d{width:351.303904pt;}
.fs3{font-size:52.481227pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:57.601333pt;}
.fs0{font-size:64.001440pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:4.333880pt;}
.y1{bottom:16.106733pt;}
.y34{bottom:37.733333pt;}
.y68{bottom:83.520000pt;}
.y161{bottom:83.839987pt;}
.y1c6{bottom:87.359987pt;}
.ycc{bottom:91.199973pt;}
.y78{bottom:92.480000pt;}
.y9c{bottom:97.599987pt;}
.y33{bottom:97.919973pt;}
.y67{bottom:101.759987pt;}
.y160{bottom:102.399987pt;}
.y11c{bottom:106.239987pt;}
.y1c5{bottom:108.480000pt;}
.ycb{bottom:110.399987pt;}
.y77{bottom:111.679973pt;}
.y32{bottom:116.159987pt;}
.y181{bottom:118.079933pt;}
.y66{bottom:119.999933pt;}
.y15f{bottom:120.639933pt;}
.y11b{bottom:124.479933pt;}
.y13f{bottom:128.319947pt;}
.yca{bottom:128.959933pt;}
.y1c4{bottom:129.599933pt;}
.y1a3{bottom:130.879947pt;}
.y76{bottom:132.159947pt;}
.y31{bottom:134.399933pt;}
.y65{bottom:138.559933pt;}
.y15e{bottom:138.879947pt;}
.y180{bottom:139.199933pt;}
.y11a{bottom:140.479933pt;}
.yf9{bottom:146.879947pt;}
.yc9{bottom:147.199933pt;}
.y75{bottom:150.399933pt;}
.y1c3{bottom:150.719933pt;}
.y1a2{bottom:151.999933pt;}
.y9b{bottom:152.639933pt;}
.y30{bottom:152.959933pt;}
.y119{bottom:155.839920pt;}
.y64{bottom:156.799920pt;}
.y15d{bottom:157.439933pt;}
.y13e{bottom:162.239920pt;}
.yf8{bottom:165.119933pt;}
.yc8{bottom:167.679933pt;}
.y74{bottom:170.559933pt;}
.y2f{bottom:171.199933pt;}
.y118{bottom:171.839920pt;}
.y1a1{bottom:173.119933pt;}
.y17f{bottom:173.759947pt;}
.y63{bottom:175.359947pt;}
.y15c{bottom:175.679933pt;}
.y13d{bottom:179.519933pt;}
.yf7{bottom:183.679933pt;}
.yc7{bottom:185.919920pt;}
.y117{bottom:187.839920pt;}
.y73{bottom:189.119933pt;}
.y2e{bottom:189.439933pt;}
.y62{bottom:193.599933pt;}
.y15b{bottom:194.239920pt;}
.y17e{bottom:194.879920pt;}
.y13c{bottom:195.519933pt;}
.yf6{bottom:201.919920pt;}
.y116{bottom:203.839920pt;}
.yc6{bottom:206.079933pt;}
.y1c2{bottom:206.399920pt;}
.y72{bottom:207.359947pt;}
.y9a{bottom:207.679933pt;}
.y2d{bottom:207.999933pt;}
.y13b{bottom:210.879920pt;}
.y61{bottom:211.839920pt;}
.y15a{bottom:212.479933pt;}
.y1a0{bottom:215.359947pt;}
.y17d{bottom:215.679933pt;}
.y115{bottom:218.879920pt;}
.yf5{bottom:220.159933pt;}
.yc5{bottom:224.639933pt;}
.y71{bottom:225.919920pt;}
.y2c{bottom:226.239920pt;}
.y13a{bottom:226.879920pt;}
.y1c1{bottom:227.519933pt;}
.y60{bottom:230.399920pt;}
.y159{bottom:230.719933pt;}
.y114{bottom:234.239920pt;}
.y19f{bottom:236.479933pt;}
.y17c{bottom:236.799920pt;}
.yf4{bottom:238.719933pt;}
.yc4{bottom:242.879920pt;}
.y70{bottom:244.159933pt;}
.y2b{bottom:244.479933pt;}
.y5f{bottom:248.639933pt;}
.y158{bottom:249.279920pt;}
.y113{bottom:250.239920pt;}
.yf3{bottom:256.959933pt;}
.y17b{bottom:257.919920pt;}
.y139{bottom:258.879920pt;}
.yc3{bottom:261.119933pt;}
.y6f{bottom:262.399920pt;}
.y99{bottom:262.719933pt;}
.y2a{bottom:263.039933pt;}
.y112{bottom:266.239920pt;}
.y5e{bottom:266.879920pt;}
.y157{bottom:267.519933pt;}
.y1c0{bottom:269.759947pt;}
.y19e{bottom:271.039933pt;}
.y138{bottom:273.919920pt;}
.yf2{bottom:275.199933pt;}
.y17a{bottom:279.039933pt;}
.yc2{bottom:279.679933pt;}
.y6e{bottom:280.959933pt;}
.y29{bottom:281.279920pt;}
.y111{bottom:281.599933pt;}
.y5d{bottom:285.439920pt;}
.y156{bottom:285.759947pt;}
.y137{bottom:289.279920pt;}
.y1bf{bottom:290.879920pt;}
.y19d{bottom:292.159933pt;}
.yf1{bottom:293.759947pt;}
.y110{bottom:297.599933pt;}
.yc1{bottom:297.919920pt;}
.y6d{bottom:299.199933pt;}
.y98{bottom:299.519933pt;}
.y28{bottom:299.839920pt;}
.y5c{bottom:303.679933pt;}
.y155{bottom:304.319920pt;}
.y136{bottom:305.279920pt;}
.y1be{bottom:311.679933pt;}
.yf0{bottom:311.999933pt;}
.y19c{bottom:313.279920pt;}
.y10f{bottom:313.599933pt;}
.yc0{bottom:316.479920pt;}
.y6c{bottom:317.439920pt;}
.y27{bottom:318.079933pt;}
.y135{bottom:321.279920pt;}
.y5b{bottom:322.239920pt;}
.y154{bottom:322.559933pt;}
.y10e{bottom:328.639933pt;}
.yef{bottom:330.559933pt;}
.y19b{bottom:334.399933pt;}
.ybf{bottom:334.719933pt;}
.y6b{bottom:335.999920pt;}
.y26{bottom:336.319947pt;}
.y134{bottom:336.639933pt;}
.y5a{bottom:340.479933pt;}
.y153{bottom:341.119907pt;}
.y1bd{bottom:343.359947pt;}
.y10d{bottom:344.639933pt;}
.yee{bottom:348.799920pt;}
.y133{bottom:352.639933pt;}
.ybe{bottom:352.959960pt;}
.y97{bottom:354.559933pt;}
.y25{bottom:354.879920pt;}
.y19a{bottom:355.519933pt;}
.y179{bottom:355.839920pt;}
.y59{bottom:358.719933pt;}
.y152{bottom:359.359947pt;}
.y10c{bottom:360.639933pt;}
.y1bc{bottom:361.599933pt;}
.yed{bottom:367.039920pt;}
.y132{bottom:368.639933pt;}
.y6a{bottom:370.879920pt;}
.ybd{bottom:371.519933pt;}
.y24{bottom:373.119907pt;}
.y10b{bottom:375.999920pt;}
.y199{bottom:376.639933pt;}
.y58{bottom:377.279947pt;}
.y151{bottom:377.599933pt;}
.y1bb{bottom:379.839920pt;}
.y131{bottom:383.679933pt;}
.yec{bottom:385.599933pt;}
.ybc{bottom:389.759920pt;}
.y178{bottom:390.399933pt;}
.y23{bottom:391.359947pt;}
.y69{bottom:391.679933pt;}
.y10a{bottom:391.999920pt;}
.y57{bottom:395.519933pt;}
.y150{bottom:396.159947pt;}
.y1ba{bottom:398.399933pt;}
.y130{bottom:399.679933pt;}
.yeb{bottom:403.839920pt;}
.ybb{bottom:407.999920pt;}
.y96{bottom:409.599933pt;}
.y22{bottom:409.919920pt;}
.y198{bottom:410.879920pt;}
.y177{bottom:411.519933pt;}
.y56{bottom:413.759920pt;}
.y14f{bottom:414.399933pt;}
.y12f{bottom:415.679933pt;}
.y1b9{bottom:416.639933pt;}
.yea{bottom:422.079907pt;}
.y109{bottom:423.359947pt;}
.yba{bottom:426.559933pt;}
.y21{bottom:428.159947pt;}
.y12e{bottom:431.039920pt;}
.y197{bottom:431.999920pt;}
.y55{bottom:432.319947pt;}
.y14e{bottom:432.639933pt;}
.y108{bottom:439.039920pt;}
.ye9{bottom:440.639933pt;}
.yb9{bottom:444.799920pt;}
.y176{bottom:445.759920pt;}
.y95{bottom:446.399933pt;}
.y20{bottom:446.719933pt;}
.y12d{bottom:447.039920pt;}
.y54{bottom:450.559933pt;}
.y14d{bottom:451.199907pt;}
.y1b8{bottom:451.519933pt;}
.y196{bottom:453.119907pt;}
.y107{bottom:454.399933pt;}
.ye8{bottom:458.879920pt;}
.y12c{bottom:463.039920pt;}
.yb8{bottom:463.359947pt;}
.y1f{bottom:464.959960pt;}
.y175{bottom:466.879920pt;}
.y1d6{bottom:467.199907pt;}
.y53{bottom:469.119907pt;}
.y14c{bottom:469.439933pt;}
.y106{bottom:470.399933pt;}
.y1b7{bottom:472.639933pt;}
.y195{bottom:474.239907pt;}
.ye7{bottom:477.439933pt;}
.y12b{bottom:478.399933pt;}
.y1e{bottom:483.199907pt;}
.y94{bottom:485.119907pt;}
.y1d5{bottom:485.439933pt;}
.y105{bottom:485.759920pt;}
.y52{bottom:487.359947pt;}
.y14b{bottom:487.999920pt;}
.y1b6{bottom:493.759920pt;}
.y12a{bottom:494.399933pt;}
.ye6{bottom:495.679933pt;}
.yb7{bottom:497.919920pt;}
.y1d{bottom:501.759920pt;}
.y93{bottom:503.359947pt;}
.y1d4{bottom:503.999920pt;}
.y51{bottom:505.599933pt;}
.y14a{bottom:506.239907pt;}
.y194{bottom:508.799920pt;}
.y129{bottom:509.439933pt;}
.ye5{bottom:513.919920pt;}
.y1b5{bottom:514.879920pt;}
.yb6{bottom:516.159947pt;}
.y104{bottom:517.759920pt;}
.y1c{bottom:519.999920pt;}
.y92{bottom:521.919920pt;}
.y1d3{bottom:522.239907pt;}
.y174{bottom:522.559933pt;}
.y50{bottom:524.159947pt;}
.y149{bottom:524.479933pt;}
.y128{bottom:525.439933pt;}
.y193{bottom:529.919920pt;}
.ye4{bottom:532.479933pt;}
.y103{bottom:533.759920pt;}
.yb5{bottom:534.399933pt;}
.y1b4{bottom:535.999920pt;}
.y1b{bottom:538.239907pt;}
.y91{bottom:540.159947pt;}
.y1d2{bottom:540.479933pt;}
.y127{bottom:540.799920pt;}
.y4f{bottom:542.399933pt;}
.y148{bottom:543.039920pt;}
.y173{bottom:543.679933pt;}
.y102{bottom:549.759920pt;}
.ye3{bottom:550.719933pt;}
.y192{bottom:551.039920pt;}
.yb4{bottom:552.639933pt;}
.y1a{bottom:556.799920pt;}
.y1b3{bottom:557.119907pt;}
.y90{bottom:558.719933pt;}
.y4e{bottom:560.639933pt;}
.y147{bottom:561.279907pt;}
.y172{bottom:564.799920pt;}
.y101{bottom:565.439933pt;}
.ye2{bottom:568.959960pt;}
.yb3{bottom:571.199907pt;}
.y126{bottom:572.799920pt;}
.y19{bottom:575.039920pt;}
.y1d1{bottom:575.359947pt;}
.y8f{bottom:576.959960pt;}
.y4d{bottom:579.199907pt;}
.y146{bottom:579.519933pt;}
.y100{bottom:581.439933pt;}
.y191{bottom:585.279907pt;}
.y171{bottom:585.919920pt;}
.ye1{bottom:587.519933pt;}
.y125{bottom:588.799920pt;}
.yb2{bottom:589.439933pt;}
.y1b2{bottom:591.359947pt;}
.y18{bottom:593.599933pt;}
.y8e{bottom:595.199907pt;}
.y1d0{bottom:596.479933pt;}
.y4c{bottom:597.439933pt;}
.y145{bottom:598.079907pt;}
.y124{bottom:604.799920pt;}
.ye0{bottom:605.759920pt;}
.y190{bottom:606.399893pt;}
.y170{bottom:607.039920pt;}
.yb1{bottom:607.679933pt;}
.y17{bottom:611.839920pt;}
.y1b1{bottom:612.479933pt;}
.yff{bottom:612.799920pt;}
.y8d{bottom:613.759920pt;}
.y4b{bottom:615.999920pt;}
.y144{bottom:616.319907pt;}
.y1cf{bottom:617.599933pt;}
.y123{bottom:620.799920pt;}
.ydf{bottom:624.319907pt;}
.yb0{bottom:626.239907pt;}
.y18f{bottom:627.519933pt;}
.yfe{bottom:628.799920pt;}
.y16{bottom:630.079907pt;}
.y8c{bottom:631.999920pt;}
.y1b0{bottom:633.599933pt;}
.y4a{bottom:634.239907pt;}
.y143{bottom:634.879920pt;}
.y122{bottom:636.479933pt;}
.y16f{bottom:641.279907pt;}
.yde{bottom:642.559933pt;}
.yaf{bottom:644.479933pt;}
.yfd{bottom:644.799920pt;}
.y15{bottom:648.639933pt;}
.y8b{bottom:650.239907pt;}
.y1ce{bottom:652.159947pt;}
.y49{bottom:652.479933pt;}
.y142{bottom:653.119907pt;}
.y1af{bottom:654.719933pt;}
.ydd{bottom:660.799920pt;}
.y16e{bottom:662.399893pt;}
.yae{bottom:663.039920pt;}
.y14{bottom:666.880080pt;}
.y121{bottom:667.839880pt;}
.y8a{bottom:668.800080pt;}
.y48{bottom:671.039920pt;}
.y1cd{bottom:673.279907pt;}
.yfc{bottom:676.800080pt;}
.ydc{bottom:679.359987pt;}
.yad{bottom:681.279907pt;}
.y18e{bottom:683.199907pt;}
.y16d{bottom:683.519893pt;}
.y120{bottom:683.839880pt;}
.y13{bottom:685.119907pt;}
.y89{bottom:687.039920pt;}
.y141{bottom:687.999960pt;}
.y47{bottom:689.279907pt;}
.yfb{bottom:692.479933pt;}
.y1cc{bottom:694.079947pt;}
.ydb{bottom:697.599893pt;}
.yac{bottom:699.519893pt;}
.y11f{bottom:699.839880pt;}
.y12{bottom:703.679893pt;}
.y18d{bottom:704.319947pt;}
.y88{bottom:705.599893pt;}
.y46{bottom:707.519893pt;}
.yfa{bottom:707.839880pt;}
.y1ae{bottom:710.399933pt;}
.y1cb{bottom:715.199907pt;}
.yda{bottom:715.839880pt;}
.yab{bottom:718.079947pt;}
.y11{bottom:721.919880pt;}
.y140{bottom:722.239947pt;}
.y87{bottom:723.839880pt;}
.y18c{bottom:725.439893pt;}
.y45{bottom:726.079947pt;}
.y1ad{bottom:731.519893pt;}
.y11e{bottom:731.839880pt;}
.yd9{bottom:734.399933pt;}
.yaa{bottom:736.319947pt;}
.y16c{bottom:739.199907pt;}
.y10{bottom:740.479933pt;}
.y86{bottom:742.079947pt;}
.y44{bottom:744.319947pt;}
.y18b{bottom:746.559933pt;}
.y11d{bottom:747.839880pt;}
.yd8{bottom:752.639933pt;}
.ya9{bottom:754.559933pt;}
.y1ca{bottom:757.439893pt;}
.yf{bottom:758.720013pt;}
.y16b{bottom:760.319947pt;}
.y85{bottom:760.639933pt;}
.y43{bottom:762.880080pt;}
.y18a{bottom:767.679893pt;}
.yd7{bottom:771.199907pt;}
.ya8{bottom:773.119907pt;}
.y1ac{bottom:773.759960pt;}
.ye{bottom:776.959920pt;}
.y84{bottom:778.880080pt;}
.y42{bottom:781.119907pt;}
.y16a{bottom:781.439893pt;}
.yd6{bottom:789.439893pt;}
.ya7{bottom:791.359987pt;}
.y1c9{bottom:791.999880pt;}
.y1ab{bottom:794.880080pt;}
.yd{bottom:795.519893pt;}
.y83{bottom:798.399933pt;}
.y41{bottom:799.359987pt;}
.y189{bottom:802.239947pt;}
.y169{bottom:802.559933pt;}
.yd5{bottom:807.679893pt;}
.ya6{bottom:809.919880pt;}
.y1c8{bottom:813.119907pt;}
.yc{bottom:813.759960pt;}
.y1aa{bottom:815.999880pt;}
.y82{bottom:816.639933pt;}
.y40{bottom:817.919880pt;}
.y188{bottom:823.359987pt;}
.yd4{bottom:826.239947pt;}
.ya5{bottom:828.159947pt;}
.yb{bottom:831.999880pt;}
.y81{bottom:834.880080pt;}
.y3f{bottom:836.159947pt;}
.y168{bottom:837.119907pt;}
.yd3{bottom:844.479933pt;}
.ya4{bottom:846.399933pt;}
.y1a9{bottom:847.359987pt;}
.ya{bottom:850.559933pt;}
.y80{bottom:853.439893pt;}
.y3e{bottom:854.399933pt;}
.y167{bottom:855.039920pt;}
.yd2{bottom:862.719933pt;}
.ya3{bottom:864.959920pt;}
.y1a8{bottom:865.599893pt;}
.y9{bottom:868.800000pt;}
.y7f{bottom:872.639933pt;}
.y3d{bottom:872.959920pt;}
.y166{bottom:873.279907pt;}
.y187{bottom:878.719933pt;}
.yd1{bottom:881.279907pt;}
.y1a7{bottom:883.839880pt;}
.ya2{bottom:885.439893pt;}
.y8{bottom:887.359987pt;}
.y3c{bottom:891.199907pt;}
.y165{bottom:891.839880pt;}
.yd0{bottom:899.519893pt;}
.y186{bottom:899.839880pt;}
.y1a6{bottom:902.399933pt;}
.ya1{bottom:903.679893pt;}
.y7{bottom:905.599893pt;}
.y7e{bottom:909.439893pt;}
.y3b{bottom:909.759960pt;}
.y164{bottom:910.079947pt;}
.ycf{bottom:918.079947pt;}
.y1a5{bottom:920.639933pt;}
.y185{bottom:920.959920pt;}
.ya0{bottom:921.919880pt;}
.y6{bottom:923.839880pt;}
.y3a{bottom:927.999880pt;}
.y1c7{bottom:934.399933pt;}
.yce{bottom:936.319947pt;}
.y7d{bottom:937.919880pt;}
.y9f{bottom:940.479933pt;}
.y184{bottom:942.079867pt;}
.y5{bottom:942.399933pt;}
.y163{bottom:944.959920pt;}
.y39{bottom:946.239947pt;}
.y1a4{bottom:955.519893pt;}
.y7c{bottom:956.479933pt;}
.ycd{bottom:956.799920pt;}
.y9e{bottom:958.719933pt;}
.y4{bottom:960.639933pt;}
.y38{bottom:964.799920pt;}
.y7b{bottom:975.999880pt;}
.y183{bottom:976.639933pt;}
.y9d{bottom:976.959920pt;}
.y3{bottom:978.880000pt;}
.y162{bottom:979.199907pt;}
.y79{bottom:995.519893pt;}
.y7a{bottom:996.479933pt;}
.y2{bottom:997.439893pt;}
.y182{bottom:997.759960pt;}
.y37{bottom:998.719933pt;}
.y35{bottom:1078.542667pt;}
.h5{height:17.746667pt;}
.h8{height:46.594798pt;}
.h9{height:47.304856pt;}
.ha{height:47.740491pt;}
.hb{height:51.919952pt;}
.h4{height:52.343750pt;}
.h7{height:52.398088pt;}
.h6{height:53.645833pt;}
.h3{height:57.688798pt;}
.h2{height:58.220060pt;}
.h1{height:1090.559973pt;}
.h0{height:1122.666667pt;}
.w10{width:43.519973pt;}
.w12{width:43.840000pt;}
.wa{width:48.320013pt;}
.w9{width:65.600000pt;}
.w11{width:67.199987pt;}
.w8{width:68.799987pt;}
.wf{width:78.719973pt;}
.wb{width:84.479987pt;}
.w7{width:103.040000pt;}
.wd{width:111.359987pt;}
.we{width:111.679973pt;}
.w6{width:180.160000pt;}
.w3{width:181.120000pt;}
.wc{width:277.120000pt;}
.w5{width:389.120000pt;}
.w4{width:390.080000pt;}
.w2{width:401.306667pt;}
.w1{width:761.279947pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1b{left:7.040000pt;}
.x10{left:8.320013pt;}
.x25{left:11.199987pt;}
.x21{left:12.479973pt;}
.x17{left:15.040000pt;}
.x1{left:16.000000pt;}
.x1d{left:19.199987pt;}
.x27{left:20.159987pt;}
.x23{left:22.720013pt;}
.x14{left:23.680013pt;}
.x24{left:24.640013pt;}
.x18{left:25.600013pt;}
.x19{left:29.440000pt;}
.x26{left:39.040000pt;}
.xc{left:97.280013pt;}
.xf{left:104.960000pt;}
.x1a{left:106.240013pt;}
.x2{left:123.840000pt;}
.xe{left:196.013333pt;}
.x12{left:207.040000pt;}
.xa{left:262.080000pt;}
.x13{left:274.879987pt;}
.x7{left:277.120000pt;}
.x11{left:285.120000pt;}
.x6{left:292.480000pt;}
.x3{left:298.239987pt;}
.x8{left:302.080000pt;}
.x9{left:307.200013pt;}
.x5{left:310.400000pt;}
.xb{left:312.960000pt;}
.x15{left:339.520000pt;}
.x4{left:380.800013pt;}
.x1c{left:384.000000pt;}
.x16{left:386.880000pt;}
.x20{left:428.160000pt;}
.x1e{left:496.000000pt;}
.x22{left:540.479987pt;}
.x1f{left:608.319987pt;}
.xd{left:735.600013pt;}
}




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