
    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_029450c277cb3400e0a63a99.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_05d3c7541d241ec672b4f0a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_152cb3bfdc9f79ccbde7dddd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_29a6afed2f06d0b189b75a7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_62c6c33c8718d7eea97784fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.753418;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_d586b9f66a73c81249a6881e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766113;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_26cfa06b04ebded0dfc9ea4d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686523;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_9eb9b06cb1c3b64fb0cab481.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_b1c9f7bd5852b87d60472778.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0543e70b32a5a76ca9fc47a8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740723;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_7fb79635caca9c134171eaf5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_c8cd1d96aab7117776d2fd1d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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_0a416d5a7c182540bc615eca.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.818848;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_3b88022cbb1a151c904402aa.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.062743px;}
.ls3{letter-spacing:0.272520px;}
.ls0{letter-spacing:1507.140957px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.462730px;}
.ws8{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws5{word-spacing:-14.939994px;}
.ws2{word-spacing:-14.374074px;}
.ws1{word-spacing:-13.505755px;}
.ws6{word-spacing:-12.203995px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-8.589990px;}
._1{margin-left:-4.191630px;}
._f{margin-left:-2.375606px;}
._3{margin-left:-1.237776px;}
._0{width:1.152887px;}
._a{width:2.164092px;}
._5{width:3.261415px;}
._14{width:4.752002px;}
._13{width:6.566201px;}
._6{width:7.756134px;}
._12{width:9.234583px;}
._11{width:10.467890px;}
._e{width:12.165223px;}
._b{width:13.658172px;}
._10{width:14.737225px;}
._7{width:15.945124px;}
._8{width:17.533980px;}
._4{width:18.756460px;}
._17{width:20.261923px;}
._9{width:21.522300px;}
._15{width:22.924222px;}
._d{width:24.785157px;}
._c{width:26.140876px;}
._2c{width:27.442147px;}
._2a{width:28.698380px;}
._2b{width:29.718028px;}
._29{width:31.731780px;}
._28{width:32.920838px;}
._32{width:34.490031px;}
._33{width:36.094689px;}
._18{width:37.401360px;}
._16{width:39.591027px;}
._5d{width:41.109165px;}
._5e{width:42.152987px;}
._5a{width:50.224617px;}
._5c{width:59.250834px;}
._34{width:62.042610px;}
._23{width:70.970671px;}
._30{width:72.413407px;}
._26{width:79.631782px;}
._27{width:80.706143px;}
._5b{width:81.966052px;}
._24{width:85.398385px;}
._2f{width:86.841265px;}
._40{width:88.352198px;}
._3b{width:94.766080px;}
._25{width:97.661421px;}
._21{width:102.642637px;}
._22{width:106.970555px;}
._3d{width:110.673334px;}
._20{width:117.791430px;}
._31{width:122.119349px;}
._4c{width:144.689126px;}
._36{width:149.744645px;}
._45{width:155.324981px;}
._3e{width:166.140067px;}
._61{width:168.986770px;}
._60{width:170.088738px;}
._58{width:177.632424px;}
._4a{width:183.333269px;}
._48{width:190.080470px;}
._3c{width:198.356315px;}
._56{width:200.887521px;}
._39{width:204.705762px;}
._52{width:223.640859px;}
._46{width:224.743420px;}
._55{width:237.608396px;}
._41{width:239.841578px;}
._51{width:247.790658px;}
._44{width:250.631012px;}
._3f{width:254.749364px;}
._4d{width:258.048550px;}
._5f{width:263.258797px;}
._47{width:298.708280px;}
._43{width:314.064312px;}
._50{width:315.585264px;}
._57{width:318.966388px;}
._53{width:338.910694px;}
._4e{width:358.056471px;}
._3a{width:394.904958px;}
._59{width:405.758399px;}
._4b{width:441.896367px;}
._4f{width:485.070402px;}
._54{width:520.926559px;}
._49{width:537.839840px;}
._1d{width:543.460283px;}
._37{width:547.642617px;}
._19{width:563.260539px;}
._1a{width:571.632551px;}
._1b{width:583.348080px;}
._42{width:593.316884px;}
._38{width:616.881095px;}
._35{width:737.648359px;}
._1c{width:791.594304px;}
._1e{width:827.590227px;}
._2d{width:847.655661px;}
._2e{width:915.316438px;}
._1f{width:926.865233px;}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc6{color:rgb(0,176,80);}
.fcb{color:rgb(51,51,51);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fcc{color:rgb(0,101,204);}
.fc8{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,0,255);}
.fc9{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fs3{font-size:48.239981px;}
.fs5{font-size:51.119980px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.y5{bottom:-14.399994px;}
.y0{bottom:0.000000px;}
.y3a{bottom:2.699924px;}
.yd0{bottom:3.959598px;}
.yd5{bottom:4.319624px;}
.y117{bottom:4.319648px;}
.y15{bottom:4.319660px;}
.y119{bottom:4.319673px;}
.ydc{bottom:4.319686px;}
.y11b{bottom:4.319698px;}
.ye1{bottom:4.319710px;}
.y11d{bottom:4.319735px;}
.y14b{bottom:4.319738px;}
.ye5{bottom:4.319748px;}
.y11f{bottom:4.319760px;}
.ye9{bottom:4.319773px;}
.y121{bottom:4.319785px;}
.yef{bottom:4.319797px;}
.yed{bottom:4.319810px;}
.yf4{bottom:4.319822px;}
.y123{bottom:4.319835px;}
.yf8{bottom:4.319859px;}
.yfc{bottom:4.319884px;}
.y143{bottom:4.319894px;}
.y146{bottom:4.319907px;}
.y16{bottom:4.499660px;}
.y23{bottom:4.499671px;}
.ya{bottom:4.499980px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.080000px;}
.y7{bottom:50.579980px;}
.y8{bottom:52.199979px;}
.ybf{bottom:185.579926px;}
.y115{bottom:185.759926px;}
.y39{bottom:186.480000px;}
.y126{bottom:186.659925px;}
.y16d{bottom:187.559925px;}
.y58{bottom:196.739921px;}
.y87{bottom:198.179921px;}
.y135{bottom:203.939918px;}
.y38{bottom:204.299918px;}
.y71{bottom:207.359917px;}
.y90{bottom:207.539917px;}
.y125{bottom:211.499915px;}
.y144{bottom:216.719913px;}
.ybe{bottom:217.259913px;}
.y16c{bottom:218.519913px;}
.y57{bottom:227.699909px;}
.y86{bottom:229.139908px;}
.y145{bottom:229.140000px;}
.y114{bottom:231.479907px;}
.ycc{bottom:232.919907px;}
.y70{bottom:234.179906px;}
.yaf{bottom:235.979906px;}
.y37{bottom:236.159906px;}
.y124{bottom:236.339905px;}
.y8f{bottom:238.679905px;}
.y155{bottom:242.459903px;}
.y141{bottom:248.219901px;}
.y94{bottom:248.759900px;}
.y16b{bottom:249.659900px;}
.y113{bottom:256.319897px;}
.y134{bottom:256.859897px;}
.yfa{bottom:258.119897px;}
.y56{bottom:258.839896px;}
.y85{bottom:260.279896px;}
.y142{bottom:260.640000px;}
.y6f{bottom:261.179896px;}
.ycb{bottom:263.879894px;}
.y3e{bottom:264.779894px;}
.yae{bottom:266.939893px;}
.y8e{bottom:269.639892px;}
.y140{bottom:279.359888px;}
.y93{bottom:279.719888px;}
.y16a{bottom:280.619888px;}
.y3d{bottom:282.419887px;}
.yfb{bottom:284.940000px;}
.y6e{bottom:287.999885px;}
.yf9{bottom:289.259884px;}
.y133{bottom:289.439884px;}
.ya0{bottom:289.799884px;}
.y154{bottom:294.659882px;}
.yad{bottom:298.079881px;}
.y3c{bottom:300.239880px;}
.y8d{bottom:300.779880px;}
.y21{bottom:301.319879px;}
.y112{bottom:302.219879px;}
.y84{bottom:308.159877px;}
.y55{bottom:310.859876px;}
.y13f{bottom:311.579875px;}
.y169{bottom:311.759875px;}
.y6d{bottom:314.999874px;}
.yca{bottom:315.899874px;}
.y3b{bottom:317.879873px;}
.yf6{bottom:320.219872px;}
.y15b{bottom:320.939872px;}
.y132{bottom:321.479871px;}
.yac{bottom:329.039868px;}
.y8c{bottom:331.739867px;}
.y54{bottom:341.819863px;}
.y168{bottom:342.719863px;}
.y153{bottom:346.679861px;}
.yf7{bottom:347.040000px;}
.y111{bottom:348.119861px;}
.y36{bottom:349.919860px;}
.yf5{bottom:351.359859px;}
.y15a{bottom:351.899859px;}
.y83{bottom:356.039858px;}
.yab{bottom:360.179856px;}
.y97{bottom:362.879855px;}
.y13e{bottom:364.319854px;}
.yc9{bottom:367.919853px;}
.y53{bottom:372.959851px;}
.y167{bottom:373.859850px;}
.y131{bottom:374.399850px;}
.y35{bottom:375.839850px;}
.y152{bottom:377.639849px;}
.yf2{bottom:382.319847px;}
.y159{bottom:382.859847px;}
.y8b{bottom:383.939846px;}
.y6c{bottom:393.839842px;}
.y110{bottom:397.799841px;}
.yc8{bottom:399.059840px;}
.y52{bottom:403.919838px;}
.y166{bottom:404.819838px;}
.y151{bottom:408.779836px;}
.y122{bottom:409.140000px;}
.y34{bottom:410.759836px;}
.yaa{bottom:412.199835px;}
.yf1{bottom:413.459835px;}
.y158{bottom:413.999834px;}
.y8a{bottom:414.899834px;}
.y13d{bottom:416.339833px;}
.y9f{bottom:424.979830px;}
.y130{bottom:426.419829px;}
.y20{bottom:429.659828px;}
.yc7{bottom:430.019828px;}
.y51{bottom:435.059826px;}
.y165{bottom:435.959826px;}
.y33{bottom:436.679825px;}
.y150{bottom:439.739824px;}
.yf3{bottom:440.100000px;}
.y10f{bottom:443.519823px;}
.yf0{bottom:444.419822px;}
.y157{bottom:444.959822px;}
.y6b{bottom:445.859822px;}
.y82{bottom:451.979819px;}
.y9e{bottom:455.939818px;}
.y32{bottom:462.419815px;}
.ya9{bottom:464.219814px;}
.y50{bottom:466.019814px;}
.y164{bottom:466.919813px;}
.y10e{bottom:468.359813px;}
.y14f{bottom:470.879812px;}
.yec{bottom:471.240000px;}
.y12f{bottom:472.319811px;}
.yeb{bottom:475.559810px;}
.y156{bottom:476.099810px;}
.y6a{bottom:476.999809px;}
.y81{bottom:478.979808px;}
.y9d{bottom:487.079805px;}
.y31{bottom:488.339805px;}
.y10d{bottom:493.199803px;}
.y4f{bottom:497.159801px;}
.y163{bottom:498.059801px;}
.yc6{bottom:498.419801px;}
.y13c{bottom:499.499800px;}
.y14e{bottom:501.839799px;}
.yee{bottom:502.200000px;}
.yea{bottom:506.519797px;}
.y69{bottom:507.959797px;}
.y30{bottom:514.259794px;}
.ya8{bottom:516.239794px;}
.y9c{bottom:518.039793px;}
.y12e{bottom:521.999791px;}
.y80{bottom:527.219789px;}
.y4e{bottom:528.119789px;}
.y162{bottom:529.019788px;}
.y13b{bottom:530.459788px;}
.y120{bottom:533.340000px;}
.ye7{bottom:537.659785px;}
.y68{bottom:539.099784px;}
.y2f{bottom:540.179784px;}
.y10c{bottom:542.879783px;}
.y1f{bottom:543.599783px;}
.yc5{bottom:545.039782px;}
.ya7{bottom:547.379781px;}
.y9b{bottom:549.179780px;}
.y14d{bottom:553.859778px;}
.y4d{bottom:559.259776px;}
.y161{bottom:560.159776px;}
.y13a{bottom:561.599775px;}
.ye8{bottom:564.300000px;}
.y2e{bottom:565.919774px;}
.y10b{bottom:567.719773px;}
.ye6{bottom:568.619773px;}
.y67{bottom:570.059772px;}
.y7f{bottom:575.099770px;}
.y9a{bottom:580.139768px;}
.y4c{bottom:590.219764px;}
.y160{bottom:591.119764px;}
.y2d{bottom:591.839763px;}
.y10a{bottom:592.559763px;}
.yc4{bottom:593.279763px;}
.y11e{bottom:595.440000px;}
.ya6{bottom:599.399760px;}
.ye3{bottom:599.759760px;}
.y66{bottom:601.199760px;}
.y7e{bottom:602.099759px;}
.y1e{bottom:605.339758px;}
.y14c{bottom:607.859757px;}
.y99{bottom:611.279755px;}
.y139{bottom:613.619755px;}
.y109{bottom:617.399753px;}
.y2c{bottom:617.759753px;}
.y1d{bottom:620.639752px;}
.y4b{bottom:621.359751px;}
.y15f{bottom:622.259751px;}
.ye4{bottom:626.400000px;}
.y7d{bottom:628.919748px;}
.ye2{bottom:630.719748px;}
.y65{bottom:632.159747px;}
.y1c{bottom:635.939746px;}
.y149{bottom:638.819744px;}
.yc3{bottom:640.619744px;}
.y98{bottom:642.239743px;}
.y2b{bottom:643.679743px;}
.y1b{bottom:649.979740px;}
.y14a{bottom:651.240000px;}
.ya5{bottom:651.419739px;}
.y4a{bottom:652.319739px;}
.y15e{bottom:653.219739px;}
.y11c{bottom:657.540000px;}
.ydf{bottom:661.859735px;}
.y64{bottom:663.299735px;}
.y138{bottom:665.639734px;}
.y12d{bottom:667.079733px;}
.y2a{bottom:669.419732px;}
.y148{bottom:671.759731px;}
.y92{bottom:673.379731px;}
.yb4{bottom:675.899730px;}
.y7c{bottom:676.799729px;}
.yba{bottom:680.939728px;}
.y15d{bottom:684.359726px;}
.y108{bottom:688.139725px;}
.y12c{bottom:691.919723px;}
.yde{bottom:692.819723px;}
.yc2{bottom:693.359723px;}
.y63{bottom:694.259722px;}
.y29{bottom:695.339722px;}
.yb3{bottom:698.219721px;}
.yb9{bottom:703.259719px;}
.ya4{bottom:703.439719px;}
.y49{bottom:704.339718px;}
.y1a{bottom:710.459716px;}
.y107{bottom:712.979715px;}
.y15c{bottom:715.319714px;}
.y12b{bottom:716.759713px;}
.ye0{bottom:719.640000px;}
.y137{bottom:720.179712px;}
.yb2{bottom:720.539712px;}
.y28{bottom:721.259711px;}
.ydd{bottom:723.959710px;}
.y147{bottom:724.499710px;}
.y7b{bottom:724.859710px;}
.y62{bottom:725.399710px;}
.yb8{bottom:725.579710px;}
.y48{bottom:735.479706px;}
.y106{bottom:737.819705px;}
.y12a{bottom:741.599703px;}
.yb1{bottom:742.859703px;}
.yc1{bottom:745.379702px;}
.y96{bottom:746.459701px;}
.y27{bottom:747.179701px;}
.yb7{bottom:747.899701px;}
.y11a{bottom:750.600000px;}
.y7a{bottom:751.679699px;}
.y136{bottom:754.739698px;}
.yda{bottom:754.919698px;}
.ya3{bottom:755.459698px;}
.y61{bottom:756.359697px;}
.y105{bottom:762.659695px;}
.yb0{bottom:765.179694px;}
.y47{bottom:766.439693px;}
.yb6{bottom:770.219692px;}
.y19{bottom:771.119692px;}
.y26{bottom:772.919691px;}
.yc0{bottom:776.519689px;}
.y95{bottom:777.419689px;}
.ydb{bottom:781.560000px;}
.yd9{bottom:785.879686px;}
.y18{bottom:786.599685px;}
.y60{bottom:787.499685px;}
.y46{bottom:797.579681px;}
.y25{bottom:798.839680px;}
.y79{bottom:799.559680px;}
.yb5{bottom:804.599678px;}
.ya2{bottom:807.479677px;}
.y89{bottom:808.379677px;}
.y104{bottom:812.339675px;}
.y118{bottom:812.700000px;}
.yd7{bottom:817.019673px;}
.y5f{bottom:818.459673px;}
.y22{bottom:818.640000px;}
.y17{bottom:819.899672px;}
.y24{bottom:824.759670px;}
.y45{bottom:828.539669px;}
.y129{bottom:837.179665px;}
.y88{bottom:839.519664px;}
.yd8{bottom:843.660000px;}
.y14{bottom:845.280000px;}
.y78{bottom:847.439661px;}
.yd6{bottom:847.979661px;}
.y91{bottom:849.599660px;}
.y103{bottom:858.059657px;}
.y44{bottom:859.679656px;}
.y128{bottom:862.019655px;}
.y5e{bottom:870.479652px;}
.y116{bottom:874.800000px;}
.yd3{bottom:879.119648px;}
.ybd{bottom:880.559648px;}
.yf{bottom:882.539647px;}
.y102{bottom:882.899647px;}
.y127{bottom:886.859645px;}
.y43{bottom:890.639644px;}
.y77{bottom:895.319642px;}
.ye{bottom:900.539640px;}
.y5d{bottom:901.619639px;}
.y101{bottom:907.739637px;}
.yd2{bottom:910.079636px;}
.ya1{bottom:911.699635px;}
.y42{bottom:921.779631px;}
.y76{bottom:922.319631px;}
.y5c{bottom:932.579627px;}
.yd4{bottom:936.900000px;}
.yd1{bottom:941.219624px;}
.yd{bottom:942.119623px;}
.ybc{bottom:942.659623px;}
.y75{bottom:949.139620px;}
.y41{bottom:952.739619px;}
.y100{bottom:957.419617px;}
.yc{bottom:962.819615px;}
.y5b{bottom:963.719615px;}
.yce{bottom:973.079611px;}
.ybb{bottom:973.799610px;}
.y74{bottom:976.139610px;}
.yff{bottom:982.259607px;}
.y5a{bottom:994.679602px;}
.ycf{bottom:1000.080000px;}
.y73{bottom:1002.959599px;}
.ycd{bottom:1004.039598px;}
.y40{bottom:1004.759598px;}
.y12{bottom:1006.739597px;}
.yfe{bottom:1007.099597px;}
.y59{bottom:1025.819590px;}
.y11{bottom:1026.359589px;}
.y72{bottom:1029.959588px;}
.yfd{bottom:1031.939587px;}
.y3f{bottom:1056.779577px;}
.y10{bottom:1072.619571px;}
.y4{bottom:1078.019569px;}
.y13{bottom:1082.339567px;}
.y6{bottom:1106.999557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:1.440000px;}
.h18{height:4.320000px;}
.h13{height:14.220000px;}
.hb{height:20.160000px;}
.h6{height:20.340000px;}
.h17{height:20.520000px;}
.h11{height:32.788112px;}
.he{height:33.706744px;}
.h5{height:34.625377px;}
.h12{height:35.419556px;}
.h14{height:35.519400px;}
.h10{height:36.624009px;}
.h4{height:36.703110px;}
.h15{height:38.759750px;}
.hf{height:39.313461px;}
.h9{height:40.793187px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.hc{height:44.149201px;}
.hd{height:45.022482px;}
.ha{height:46.283888px;}
.h2{height:47.545293px;}
.h8{height:48.796855px;}
.h16{height:50.027324px;}
.h0{height:1188.000000px;}
.w4{width:3.600000px;}
.w2{width:5.040000px;}
.w9{width:6.300000px;}
.w7{width:8.100000px;}
.w6{width:8.280000px;}
.wa{width:9.000000px;}
.w1{width:9.720000px;}
.w5{width:33.660000px;}
.w3{width:58.500000px;}
.w8{width:70.380000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:82.619967px;}
.x19{left:84.599966px;}
.x16{left:98.639961px;}
.x1d{left:99.719960px;}
.x18{left:102.599975px;}
.x17{left:106.019958px;}
.x1{left:107.999957px;}
.x26{left:116.099454px;}
.x23{left:120.599952px;}
.x1c{left:131.219948px;}
.x4{left:133.199947px;}
.x1a{left:141.299943px;}
.x22{left:152.639939px;}
.x7{left:155.519938px;}
.x38{left:161.998600px;}
.x10{left:166.140000px;}
.x11{left:169.740000px;}
.x8{left:200.339650px;}
.x12{left:203.400000px;}
.x1e{left:225.359975px;}
.x1f{left:226.439909px;}
.xc{left:234.359906px;}
.x13{left:248.580000px;}
.xb{left:250.739900px;}
.xa{left:267.479893px;}
.x14{left:269.820000px;}
.x21{left:273.059891px;}
.x20{left:276.840000px;}
.x2{left:302.579879px;}
.x9{left:304.379878px;}
.x15{left:340.020000px;}
.x5{left:399.779840px;}
.xd{left:415.259834px;}
.x30{left:420.480000px;}
.x31{left:433.800357px;}
.x27{left:436.679346px;}
.x25{left:478.259809px;}
.x32{left:491.400357px;}
.x28{left:493.019358px;}
.x35{left:495.180000px;}
.x24{left:497.519801px;}
.xe{left:511.379795px;}
.x29{left:545.579405px;}
.x36{left:555.840000px;}
.x2a{left:599.219335px;}
.x37{left:651.059740px;}
.x2b{left:652.859266px;}
.x33{left:659.340000px;}
.x3{left:686.159726px;}
.xf{left:687.960279px;}
.x2c{left:710.099205px;}
.x34{left:749.340000px;}
.x2d{left:754.020000px;}
.x2e{left:770.399692px;}
.x2f{left:801.900000px;}
.x6{left:804.600000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.055772pt;}
.ls3{letter-spacing:0.242240pt;}
.ls0{letter-spacing:1339.680851pt;}
.ws4{word-spacing:-28.855760pt;}
.ws8{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws5{word-spacing:-13.279995pt;}
.ws2{word-spacing:-12.776955pt;}
.ws1{word-spacing:-12.005115pt;}
.ws6{word-spacing:-10.847996pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-7.635546pt;}
._1{margin-left:-3.725894pt;}
._f{margin-left:-2.111650pt;}
._3{margin-left:-1.100245pt;}
._0{width:1.024788pt;}
._a{width:1.923638pt;}
._5{width:2.899035pt;}
._14{width:4.224002pt;}
._13{width:5.836623pt;}
._6{width:6.894341pt;}
._12{width:8.208518pt;}
._11{width:9.304791pt;}
._e{width:10.813532pt;}
._b{width:12.140598pt;}
._10{width:13.099755pt;}
._7{width:14.173444pt;}
._8{width:15.585760pt;}
._4{width:16.672408pt;}
._17{width:18.010598pt;}
._9{width:19.130934pt;}
._15{width:20.377086pt;}
._d{width:22.031250pt;}
._c{width:23.236334pt;}
._2c{width:24.393020pt;}
._2a{width:25.509671pt;}
._2b{width:26.416025pt;}
._29{width:28.206027pt;}
._28{width:29.262967pt;}
._32{width:30.657805pt;}
._33{width:32.084168pt;}
._18{width:33.245653pt;}
._16{width:35.192024pt;}
._5d{width:36.541480pt;}
._5e{width:37.469322pt;}
._5a{width:44.644104pt;}
._5c{width:52.667408pt;}
._34{width:55.148987pt;}
._23{width:63.085041pt;}
._30{width:64.367473pt;}
._26{width:70.783806pt;}
._27{width:71.738794pt;}
._5b{width:72.858713pt;}
._24{width:75.909676pt;}
._2f{width:77.192235pt;}
._40{width:78.535287pt;}
._3b{width:84.236515pt;}
._25{width:86.810152pt;}
._21{width:91.237899pt;}
._22{width:95.084938pt;}
._3d{width:98.376297pt;}
._20{width:104.703494pt;}
._31{width:108.550532pt;}
._4c{width:128.612556pt;}
._36{width:133.106351pt;}
._45{width:138.066650pt;}
._3e{width:147.680060pt;}
._61{width:150.210462pt;}
._60{width:151.189989pt;}
._58{width:157.895488pt;}
._4a{width:162.962906pt;}
._48{width:168.960418pt;}
._3c{width:176.316724pt;}
._56{width:178.566686pt;}
._39{width:181.960677pt;}
._52{width:198.791875pt;}
._46{width:199.771929pt;}
._55{width:211.207464pt;}
._41{width:213.192513pt;}
._51{width:220.258362pt;}
._44{width:222.783122pt;}
._3f{width:226.443879pt;}
._4d{width:229.376489pt;}
._5f{width:234.007820pt;}
._47{width:265.518471pt;}
._43{width:279.168277pt;}
._50{width:280.520235pt;}
._57{width:283.525678pt;}
._53{width:301.253951pt;}
._4e{width:318.272418pt;}
._3a{width:351.026629pt;}
._59{width:360.674133pt;}
._4b{width:392.796771pt;}
._4f{width:431.173691pt;}
._54{width:463.045830pt;}
._49{width:478.079858pt;}
._1d{width:483.075807pt;}
._37{width:486.793437pt;}
._19{width:500.676035pt;}
._1a{width:508.117823pt;}
._1b{width:518.531627pt;}
._42{width:527.392786pt;}
._38{width:548.338751pt;}
._35{width:655.687431pt;}
._1c{width:703.639381pt;}
._1e{width:735.635758pt;}
._2d{width:753.471699pt;}
._2e{width:813.614611pt;}
._1f{width:823.880207pt;}
.fs3{font-size:42.879983pt;}
.fs5{font-size:45.439982pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.y5{bottom:-12.799995pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.399933pt;}
.yd0{bottom:3.519643pt;}
.yd5{bottom:3.839665pt;}
.y117{bottom:3.839687pt;}
.y15{bottom:3.839698pt;}
.y119{bottom:3.839710pt;}
.ydc{bottom:3.839721pt;}
.y11b{bottom:3.839732pt;}
.ye1{bottom:3.839743pt;}
.y11d{bottom:3.839765pt;}
.y14b{bottom:3.839767pt;}
.ye5{bottom:3.839776pt;}
.y11f{bottom:3.839787pt;}
.ye9{bottom:3.839798pt;}
.y121{bottom:3.839809pt;}
.yef{bottom:3.839820pt;}
.yed{bottom:3.839831pt;}
.yf4{bottom:3.839842pt;}
.y123{bottom:3.839853pt;}
.yf8{bottom:3.839875pt;}
.yfc{bottom:3.839897pt;}
.y143{bottom:3.839906pt;}
.y146{bottom:3.839917pt;}
.y16{bottom:3.999698pt;}
.y23{bottom:3.999707pt;}
.ya{bottom:3.999982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:40.960000pt;}
.y7{bottom:44.959982pt;}
.y8{bottom:46.399981pt;}
.ybf{bottom:164.959934pt;}
.y115{bottom:165.119934pt;}
.y39{bottom:165.760000pt;}
.y126{bottom:165.919934pt;}
.y16d{bottom:166.719933pt;}
.y58{bottom:174.879930pt;}
.y87{bottom:176.159930pt;}
.y135{bottom:181.279927pt;}
.y38{bottom:181.599927pt;}
.y71{bottom:184.319926pt;}
.y90{bottom:184.479926pt;}
.y125{bottom:187.999925pt;}
.y144{bottom:192.639923pt;}
.ybe{bottom:193.119923pt;}
.y16c{bottom:194.239922pt;}
.y57{bottom:202.399919pt;}
.y86{bottom:203.679919pt;}
.y145{bottom:203.680000pt;}
.y114{bottom:205.759918pt;}
.ycc{bottom:207.039917pt;}
.y70{bottom:208.159917pt;}
.yaf{bottom:209.759916pt;}
.y37{bottom:209.919916pt;}
.y124{bottom:210.079916pt;}
.y8f{bottom:212.159915pt;}
.y155{bottom:215.519914pt;}
.y141{bottom:220.639912pt;}
.y94{bottom:221.119912pt;}
.y16b{bottom:221.919911pt;}
.y113{bottom:227.839909pt;}
.y134{bottom:228.319909pt;}
.yfa{bottom:229.439908pt;}
.y56{bottom:230.079908pt;}
.y85{bottom:231.359907pt;}
.y142{bottom:231.680000pt;}
.y6f{bottom:232.159907pt;}
.ycb{bottom:234.559906pt;}
.y3e{bottom:235.359906pt;}
.yae{bottom:237.279905pt;}
.y8e{bottom:239.679904pt;}
.y140{bottom:248.319901pt;}
.y93{bottom:248.639901pt;}
.y16a{bottom:249.439900pt;}
.y3d{bottom:251.039900pt;}
.yfb{bottom:253.280000pt;}
.y6e{bottom:255.999898pt;}
.yf9{bottom:257.119897pt;}
.y133{bottom:257.279897pt;}
.ya0{bottom:257.599897pt;}
.y154{bottom:261.919895pt;}
.yad{bottom:264.959894pt;}
.y3c{bottom:266.879893pt;}
.y8d{bottom:267.359893pt;}
.y21{bottom:267.839893pt;}
.y112{bottom:268.639893pt;}
.y84{bottom:273.919890pt;}
.y55{bottom:276.319889pt;}
.y13f{bottom:276.959889pt;}
.y169{bottom:277.119889pt;}
.y6d{bottom:279.999888pt;}
.yca{bottom:280.799888pt;}
.y3b{bottom:282.559887pt;}
.yf6{bottom:284.639886pt;}
.y15b{bottom:285.279886pt;}
.y132{bottom:285.759886pt;}
.yac{bottom:292.479883pt;}
.y8c{bottom:294.879882pt;}
.y54{bottom:303.839878pt;}
.y168{bottom:304.639878pt;}
.y153{bottom:308.159877pt;}
.yf7{bottom:308.480000pt;}
.y111{bottom:309.439876pt;}
.y36{bottom:311.039876pt;}
.yf5{bottom:312.319875pt;}
.y15a{bottom:312.799875pt;}
.y83{bottom:316.479873pt;}
.yab{bottom:320.159872pt;}
.y97{bottom:322.559871pt;}
.y13e{bottom:323.839870pt;}
.yc9{bottom:327.039869pt;}
.y53{bottom:331.519867pt;}
.y167{bottom:332.319867pt;}
.y131{bottom:332.799867pt;}
.y35{bottom:334.079866pt;}
.y152{bottom:335.679866pt;}
.yf2{bottom:339.839864pt;}
.y159{bottom:340.319864pt;}
.y8b{bottom:341.279863pt;}
.y6c{bottom:350.079860pt;}
.y110{bottom:353.599859pt;}
.yc8{bottom:354.719858pt;}
.y52{bottom:359.039856pt;}
.y166{bottom:359.839856pt;}
.y151{bottom:363.359855pt;}
.y122{bottom:363.680000pt;}
.y34{bottom:365.119854pt;}
.yaa{bottom:366.399853pt;}
.yf1{bottom:367.519853pt;}
.y158{bottom:367.999853pt;}
.y8a{bottom:368.799852pt;}
.y13d{bottom:370.079852pt;}
.y9f{bottom:377.759849pt;}
.y130{bottom:379.039848pt;}
.y20{bottom:381.919847pt;}
.yc7{bottom:382.239847pt;}
.y51{bottom:386.719845pt;}
.y165{bottom:387.519845pt;}
.y33{bottom:388.159845pt;}
.y150{bottom:390.879844pt;}
.yf3{bottom:391.200000pt;}
.y10f{bottom:394.239842pt;}
.yf0{bottom:395.039842pt;}
.y157{bottom:395.519842pt;}
.y6b{bottom:396.319841pt;}
.y82{bottom:401.759839pt;}
.y9e{bottom:405.279838pt;}
.y32{bottom:411.039836pt;}
.ya9{bottom:412.639835pt;}
.y50{bottom:414.239834pt;}
.y164{bottom:415.039834pt;}
.y10e{bottom:416.319833pt;}
.y14f{bottom:418.559833pt;}
.yec{bottom:418.880000pt;}
.y12f{bottom:419.839832pt;}
.yeb{bottom:422.719831pt;}
.y156{bottom:423.199831pt;}
.y6a{bottom:423.999830pt;}
.y81{bottom:425.759830pt;}
.y9d{bottom:432.959827pt;}
.y31{bottom:434.079826pt;}
.y10d{bottom:438.399825pt;}
.y4f{bottom:441.919823pt;}
.y163{bottom:442.719823pt;}
.yc6{bottom:443.039823pt;}
.y13c{bottom:443.999822pt;}
.y14e{bottom:446.079822pt;}
.yee{bottom:446.400000pt;}
.yea{bottom:450.239820pt;}
.y69{bottom:451.519819pt;}
.y30{bottom:457.119817pt;}
.ya8{bottom:458.879816pt;}
.y9c{bottom:460.479816pt;}
.y12e{bottom:463.999814pt;}
.y80{bottom:468.639813pt;}
.y4e{bottom:469.439812pt;}
.y162{bottom:470.239812pt;}
.y13b{bottom:471.519811pt;}
.y120{bottom:474.080000pt;}
.ye7{bottom:477.919809pt;}
.y68{bottom:479.199808pt;}
.y2f{bottom:480.159808pt;}
.y10c{bottom:482.559807pt;}
.y1f{bottom:483.199807pt;}
.yc5{bottom:484.479806pt;}
.ya7{bottom:486.559805pt;}
.y9b{bottom:488.159805pt;}
.y14d{bottom:492.319803pt;}
.y4d{bottom:497.119801pt;}
.y161{bottom:497.919801pt;}
.y13a{bottom:499.199800pt;}
.ye8{bottom:501.600000pt;}
.y2e{bottom:503.039799pt;}
.y10b{bottom:504.639798pt;}
.ye6{bottom:505.439798pt;}
.y67{bottom:506.719797pt;}
.y7f{bottom:511.199796pt;}
.y9a{bottom:515.679794pt;}
.y4c{bottom:524.639790pt;}
.y160{bottom:525.439790pt;}
.y2d{bottom:526.079790pt;}
.y10a{bottom:526.719789pt;}
.yc4{bottom:527.359789pt;}
.y11e{bottom:529.280000pt;}
.ya6{bottom:532.799787pt;}
.ye3{bottom:533.119787pt;}
.y66{bottom:534.399786pt;}
.y7e{bottom:535.199786pt;}
.y1e{bottom:538.079785pt;}
.y14c{bottom:540.319784pt;}
.y99{bottom:543.359783pt;}
.y139{bottom:545.439782pt;}
.y109{bottom:548.799780pt;}
.y2c{bottom:549.119780pt;}
.y1d{bottom:551.679779pt;}
.y4b{bottom:552.319779pt;}
.y15f{bottom:553.119779pt;}
.ye4{bottom:556.800000pt;}
.y7d{bottom:559.039776pt;}
.ye2{bottom:560.639776pt;}
.y65{bottom:561.919775pt;}
.y1c{bottom:565.279774pt;}
.y149{bottom:567.839773pt;}
.yc3{bottom:569.439772pt;}
.y98{bottom:570.879772pt;}
.y2b{bottom:572.159771pt;}
.y1b{bottom:577.759769pt;}
.y14a{bottom:578.880000pt;}
.ya5{bottom:579.039768pt;}
.y4a{bottom:579.839768pt;}
.y15e{bottom:580.639768pt;}
.y11c{bottom:584.480000pt;}
.ydf{bottom:588.319765pt;}
.y64{bottom:589.599764pt;}
.y138{bottom:591.679763pt;}
.y12d{bottom:592.959763pt;}
.y2a{bottom:595.039762pt;}
.y148{bottom:597.119761pt;}
.y92{bottom:598.559761pt;}
.yb4{bottom:600.799760pt;}
.y7c{bottom:601.599759pt;}
.yba{bottom:605.279758pt;}
.y15d{bottom:608.319757pt;}
.y108{bottom:611.679755pt;}
.y12c{bottom:615.039754pt;}
.yde{bottom:615.839754pt;}
.yc2{bottom:616.319753pt;}
.y63{bottom:617.119753pt;}
.y29{bottom:618.079753pt;}
.yb3{bottom:620.639752pt;}
.yb9{bottom:625.119750pt;}
.ya4{bottom:625.279750pt;}
.y49{bottom:626.079750pt;}
.y1a{bottom:631.519747pt;}
.y107{bottom:633.759746pt;}
.y15c{bottom:635.839746pt;}
.y12b{bottom:637.119745pt;}
.ye0{bottom:639.680000pt;}
.y137{bottom:640.159744pt;}
.yb2{bottom:640.479744pt;}
.y28{bottom:641.119744pt;}
.ydd{bottom:643.519743pt;}
.y147{bottom:643.999742pt;}
.y7b{bottom:644.319742pt;}
.y62{bottom:644.799742pt;}
.yb8{bottom:644.959742pt;}
.y48{bottom:653.759738pt;}
.y106{bottom:655.839738pt;}
.y12a{bottom:659.199736pt;}
.yb1{bottom:660.319736pt;}
.yc1{bottom:662.559735pt;}
.y96{bottom:663.519735pt;}
.y27{bottom:664.159734pt;}
.yb7{bottom:664.799734pt;}
.y11a{bottom:667.200000pt;}
.y7a{bottom:668.159733pt;}
.y136{bottom:670.879732pt;}
.yda{bottom:671.039732pt;}
.ya3{bottom:671.519731pt;}
.y61{bottom:672.319731pt;}
.y105{bottom:677.919729pt;}
.yb0{bottom:680.159728pt;}
.y47{bottom:681.279727pt;}
.yb6{bottom:684.639726pt;}
.y19{bottom:685.439726pt;}
.y26{bottom:687.039725pt;}
.yc0{bottom:690.239724pt;}
.y95{bottom:691.039724pt;}
.ydb{bottom:694.720000pt;}
.yd9{bottom:698.559721pt;}
.y18{bottom:699.199720pt;}
.y60{bottom:699.999720pt;}
.y46{bottom:708.959716pt;}
.y25{bottom:710.079716pt;}
.y79{bottom:710.719716pt;}
.yb5{bottom:715.199714pt;}
.ya2{bottom:717.759713pt;}
.y89{bottom:718.559713pt;}
.y104{bottom:722.079711pt;}
.y118{bottom:722.400000pt;}
.yd7{bottom:726.239710pt;}
.y5f{bottom:727.519709pt;}
.y22{bottom:727.680000pt;}
.y17{bottom:728.799708pt;}
.y24{bottom:733.119707pt;}
.y45{bottom:736.479705pt;}
.y129{bottom:744.159702pt;}
.y88{bottom:746.239702pt;}
.yd8{bottom:749.920000pt;}
.y14{bottom:751.360000pt;}
.y78{bottom:753.279699pt;}
.yd6{bottom:753.759698pt;}
.y91{bottom:755.199698pt;}
.y103{bottom:762.719695pt;}
.y44{bottom:764.159694pt;}
.y128{bottom:766.239694pt;}
.y5e{bottom:773.759690pt;}
.y116{bottom:777.600000pt;}
.yd3{bottom:781.439687pt;}
.ybd{bottom:782.719687pt;}
.yf{bottom:784.479686pt;}
.y102{bottom:784.799686pt;}
.y127{bottom:788.319685pt;}
.y43{bottom:791.679683pt;}
.y77{bottom:795.839682pt;}
.ye{bottom:800.479680pt;}
.y5d{bottom:801.439679pt;}
.y101{bottom:806.879677pt;}
.yd2{bottom:808.959676pt;}
.ya1{bottom:810.399676pt;}
.y42{bottom:819.359672pt;}
.y76{bottom:819.839672pt;}
.y5c{bottom:828.959668pt;}
.yd4{bottom:832.800000pt;}
.yd1{bottom:836.639665pt;}
.yd{bottom:837.439665pt;}
.ybc{bottom:837.919665pt;}
.y75{bottom:843.679663pt;}
.y41{bottom:846.879661pt;}
.y100{bottom:851.039660pt;}
.yc{bottom:855.839658pt;}
.y5b{bottom:856.639657pt;}
.yce{bottom:864.959654pt;}
.ybb{bottom:865.599654pt;}
.y74{bottom:867.679653pt;}
.yff{bottom:873.119651pt;}
.y5a{bottom:884.159646pt;}
.ycf{bottom:888.960000pt;}
.y73{bottom:891.519643pt;}
.ycd{bottom:892.479643pt;}
.y40{bottom:893.119643pt;}
.y12{bottom:894.879642pt;}
.yfe{bottom:895.199642pt;}
.y59{bottom:911.839635pt;}
.y11{bottom:912.319635pt;}
.y72{bottom:915.519634pt;}
.yfd{bottom:917.279633pt;}
.y3f{bottom:939.359624pt;}
.y10{bottom:953.439619pt;}
.y4{bottom:958.239617pt;}
.y13{bottom:962.079615pt;}
.y6{bottom:983.999606pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:1.280000pt;}
.h18{height:3.840000pt;}
.h13{height:12.640000pt;}
.hb{height:17.920000pt;}
.h6{height:18.080000pt;}
.h17{height:18.240000pt;}
.h11{height:29.144988pt;}
.he{height:29.961551pt;}
.h5{height:30.778113pt;}
.h12{height:31.484050pt;}
.h14{height:31.572800pt;}
.h10{height:32.554674pt;}
.h4{height:32.624987pt;}
.h15{height:34.453111pt;}
.hf{height:34.945299pt;}
.h9{height:36.260610pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.hc{height:39.243734pt;}
.hd{height:40.019984pt;}
.ha{height:41.141234pt;}
.h2{height:42.262483pt;}
.h8{height:43.374983pt;}
.h16{height:44.468732pt;}
.h0{height:1056.000000pt;}
.w4{width:3.200000pt;}
.w2{width:4.480000pt;}
.w9{width:5.600000pt;}
.w7{width:7.200000pt;}
.w6{width:7.360000pt;}
.wa{width:8.000000pt;}
.w1{width:8.640000pt;}
.w5{width:29.920000pt;}
.w3{width:52.000000pt;}
.w8{width:62.560000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:73.439971pt;}
.x19{left:75.199970pt;}
.x16{left:87.679965pt;}
.x1d{left:88.639965pt;}
.x18{left:91.199978pt;}
.x17{left:94.239962pt;}
.x1{left:95.999962pt;}
.x26{left:103.199515pt;}
.x23{left:107.199957pt;}
.x1c{left:116.639953pt;}
.x4{left:118.399953pt;}
.x1a{left:125.599950pt;}
.x22{left:135.679946pt;}
.x7{left:138.239945pt;}
.x38{left:143.998756pt;}
.x10{left:147.680000pt;}
.x11{left:150.880000pt;}
.x8{left:178.079689pt;}
.x12{left:180.800000pt;}
.x1e{left:200.319978pt;}
.x1f{left:201.279919pt;}
.xc{left:208.319917pt;}
.x13{left:220.960000pt;}
.xb{left:222.879911pt;}
.xa{left:237.759905pt;}
.x14{left:239.840000pt;}
.x21{left:242.719903pt;}
.x20{left:246.080000pt;}
.x2{left:268.959892pt;}
.x9{left:270.559892pt;}
.x15{left:302.240000pt;}
.x5{left:355.359858pt;}
.xd{left:369.119852pt;}
.x30{left:373.760000pt;}
.x31{left:385.600317pt;}
.x27{left:388.159419pt;}
.x25{left:425.119830pt;}
.x32{left:436.800317pt;}
.x28{left:438.239429pt;}
.x35{left:440.160000pt;}
.x24{left:442.239823pt;}
.xe{left:454.559818pt;}
.x29{left:484.959471pt;}
.x36{left:494.080000pt;}
.x2a{left:532.639409pt;}
.x37{left:578.719769pt;}
.x2b{left:580.319347pt;}
.x33{left:586.080000pt;}
.x3{left:609.919756pt;}
.xf{left:611.520248pt;}
.x2c{left:631.199294pt;}
.x34{left:666.080000pt;}
.x2d{left:670.240000pt;}
.x2e{left:684.799726pt;}
.x2f{left:712.800000pt;}
.x6{left:715.200000pt;}
}




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