
    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_483641f4f35da70e4b1899ea.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_ce7f47a76bc05936cdab77b3.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_fdab8a341eaf59f2e8572a6e.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_1236c492fa48cd72b356a4e4.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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_198294d2ee48aaf1f672424f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f94c2988722869b67cfc9f5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8effda9b1afa31fea92e934c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a7d859a2e13bc04fdd96a2a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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_183a8fc466fdd6ea0a72c611.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6312e07768b7d60f9b6158df.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_248a4b258a74096e5c59affa.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_df798dd2da4b162352b6e691.woff2')format("woff");}.fff{font-family:fff;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;}
.m6{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,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);}
.m5{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);}
.m4{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m7{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;}
.v2{vertical-align:1.439999px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.068862px;}
.ls5{letter-spacing:0.068906px;}
.ls8{letter-spacing:0.142260px;}
.ls1{letter-spacing:0.178760px;}
.ls3{letter-spacing:0.180111px;}
.ls7{letter-spacing:0.272520px;}
.ls2{letter-spacing:62.240015px;}
.ls6{letter-spacing:74.879970px;}
.lsb{letter-spacing:911.135636px;}
.lsa{letter-spacing:955.859618px;}
.ls0{letter-spacing:1507.140957px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{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);}
.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(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-46.433501px;}
.ws3{word-spacing:-32.399987px;}
.ws8{word-spacing:-18.068855px;}
.ws7{word-spacing:-17.999993px;}
.ws2{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:-14.374074px;}
.ws5{word-spacing:-13.505755px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-8.590020px;}
._1{margin-left:-4.191630px;}
._6{margin-left:-2.330630px;}
._3{margin-left:-1.237605px;}
._0{width:1.152887px;}
._4{width:2.164467px;}
._7{width:3.188408px;}
._8{width:4.205645px;}
._10{width:5.435910px;}
._a{width:6.698132px;}
._9{width:7.704772px;}
._5{width:8.861705px;}
._d{width:10.180533px;}
._c{width:11.218009px;}
._e{width:12.746120px;}
._11{width:14.383843px;}
._12{width:16.273378px;}
._13{width:19.468065px;}
._14{width:20.480758px;}
._17{width:21.915029px;}
._19{width:23.145241px;}
._15{width:24.327701px;}
._16{width:25.481084px;}
._1a{width:26.714458px;}
._18{width:27.802286px;}
._27{width:29.848285px;}
._b{width:32.974138px;}
._24{width:35.645498px;}
._f{width:36.906510px;}
._1b{width:39.037104px;}
._26{width:40.159350px;}
._4c{width:51.965025px;}
._4d{width:54.129200px;}
._1e{width:76.021109px;}
._21{width:77.461829px;}
._4b{width:86.716566px;}
._30{width:91.237957px;}
._22{width:93.333502px;}
._1f{width:95.497821px;}
._20{width:96.940333px;}
._23{width:98.380700px;}
._1d{width:112.741352px;}
._2d{width:116.173394px;}
._49{width:117.751522px;}
._4a{width:118.795486px;}
._25{width:130.052306px;}
._1c{width:131.497345px;}
._44{width:136.685147px;}
._3b{width:148.295604px;}
._48{width:150.459923px;}
._34{width:156.977427px;}
._41{width:158.113807px;}
._2e{width:174.796624px;}
._39{width:185.497588px;}
._29{width:194.237237px;}
._37{width:195.851267px;}
._2c{width:200.783195px;}
._46{width:226.684913px;}
._35{width:230.514218px;}
._31{width:244.891656px;}
._40{width:250.661450px;}
._2f{width:258.356563px;}
._2a{width:262.056238px;}
._3c{width:263.819348px;}
._36{width:302.315479px;}
._33{width:319.835830px;}
._42{width:324.483340px;}
._47{width:329.865811px;}
._45{width:358.147698px;}
._3e{width:363.827268px;}
._3a{width:411.667641px;}
._38{width:509.053274px;}
._3d{width:545.053518px;}
._32{width:601.973441px;}
._28{width:643.871997px;}
._43{width:675.681327px;}
._3f{width:687.777681px;}
._2b{width:841.230126px;}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcb{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcc{color:rgb(0,101,204);}
.fs6{font-size:12.239995px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y5{bottom:-14.399994px;}
.yb1{bottom:-2.700376px;}
.y0{bottom:0.000000px;}
.y16{bottom:3.239705px;}
.y33{bottom:3.419882px;}
.yc0{bottom:3.959863px;}
.yc2{bottom:3.959871px;}
.yc4{bottom:3.959880px;}
.yc6{bottom:3.959888px;}
.yf9{bottom:4.319597px;}
.yd0{bottom:4.319684px;}
.y14{bottom:4.319694px;}
.yd4{bottom:4.319709px;}
.y12a{bottom:4.319731px;}
.yd8{bottom:4.319733px;}
.y12d{bottom:4.319744px;}
.ydc{bottom:4.319758px;}
.ye0{bottom:4.319782px;}
.ye4{bottom:4.319807px;}
.ye7{bottom:4.319831px;}
.yeb{bottom:4.319856px;}
.yef{bottom:4.319880px;}
.y3e{bottom:4.499578px;}
.y13{bottom:4.499694px;}
.ya{bottom:4.499980px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.080000px;}
.y7{bottom:50.579980px;}
.y8{bottom:52.199979px;}
.y38{bottom:132.659947px;}
.y13a{bottom:133.199947px;}
.y115{bottom:147.419941px;}
.y125{bottom:148.319941px;}
.yf2{bottom:154.799938px;}
.y95{bottom:157.679937px;}
.y5f{bottom:159.839936px;}
.y166{bottom:161.639935px;}
.y37{bottom:163.799934px;}
.y139{bottom:165.059934px;}
.yc9{bottom:175.859930px;}
.yaa{bottom:178.199929px;}
.y114{bottom:178.379929px;}
.y124{bottom:179.279928px;}
.y70{bottom:182.159927px;}
.y165{bottom:182.339927px;}
.yf1{bottom:185.939926px;}
.y94{bottom:188.639925px;}
.y5e{bottom:190.979924px;}
.y36{bottom:194.759922px;}
.y138{bottom:196.199922px;}
.yc8{bottom:206.999917px;}
.ya9{bottom:209.159916px;}
.y113{bottom:209.519916px;}
.y142{bottom:210.959916px;}
.y164{bottom:212.039915px;}
.y6f{bottom:213.299915px;}
.y123{bottom:214.199914px;}
.yf0{bottom:216.899913px;}
.y93{bottom:219.779912px;}
.y5d{bottom:221.939911px;}
.y35{bottom:225.899910px;}
.y137{bottom:227.879909px;}
.y163{bottom:232.739907px;}
.yc7{bottom:237.959905px;}
.ya8{bottom:240.299904px;}
.yf5{bottom:242.999903px;}
.y6e{bottom:244.259902px;}
.y122{bottom:250.379900px;}
.y92{bottom:250.739900px;}
.y5c{bottom:252.899899px;}
.y162{bottom:253.439899px;}
.y34{bottom:256.859897px;}
.y112{bottom:261.539895px;}
.y141{bottom:262.979895px;}
.y6d{bottom:275.399890px;}
.yed{bottom:275.579890px;}
.yc5{bottom:276.480000px;}
.y136{bottom:280.799888px;}
.y91{bottom:281.879887px;}
.y161{bottom:283.139887px;}
.y84{bottom:284.039886px;}
.y121{bottom:286.919885px;}
.ya7{bottom:289.259884px;}
.y32{bottom:292.320000px;}
.y111{bottom:292.679883px;}
.y140{bottom:294.119882px;}
.yf4{bottom:295.019882px;}
.yee{bottom:295.200000px;}
.yc3{bottom:297.180000px;}
.yec{bottom:299.519880px;}
.y160{bottom:303.839878px;}
.y20{bottom:304.019878px;}
.y5b{bottom:305.099878px;}
.y6c{bottom:306.359877px;}
.y83{bottom:314.999874px;}
.yc1{bottom:317.880000px;}
.y120{bottom:322.919871px;}
.y110{bottom:323.639871px;}
.y15f{bottom:324.539870px;}
.y13f{bottom:325.079870px;}
.yf3{bottom:325.979870px;}
.y135{bottom:332.819867px;}
.y90{bottom:333.899866px;}
.y5a{bottom:336.059866px;}
.ye9{bottom:337.319865px;}
.y6b{bottom:337.499865px;}
.ya6{bottom:338.399865px;}
.ybf{bottom:339.300000px;}
.ybe{bottom:343.259863px;}
.y82{bottom:346.139862px;}
.y43{bottom:350.639860px;}
.y15e{bottom:354.239858px;}
.y10f{bottom:354.779858px;}
.y13e{bottom:356.219858px;}
.yea{bottom:356.760000px;}
.y7f{bottom:357.119857px;}
.y11f{bottom:358.739857px;}
.ye8{bottom:361.079856px;}
.y59{bottom:367.199853px;}
.y42{bottom:367.559853px;}
.y6a{bottom:368.459853px;}
.y15d{bottom:374.939850px;}
.y81{bottom:377.099849px;}
.y41{bottom:384.299846px;}
.y134{bottom:384.839846px;}
.y10e{bottom:385.739846px;}
.y8f{bottom:385.919846px;}
.y13d{bottom:387.179845px;}
.ya5{bottom:387.359845px;}
.y7e{bottom:388.079845px;}
.ybd{bottom:395.999842px;}
.y58{bottom:398.159841px;}
.y69{bottom:399.419840px;}
.y40{bottom:401.039840px;}
.y15c{bottom:404.639838px;}
.y11e{bottom:406.619837px;}
.y133{bottom:415.799834px;}
.y8e{bottom:416.879833px;}
.ye6{bottom:417.600000px;}
.y13c{bottom:418.319833px;}
.y3f{bottom:418.499833px;}
.y7d{bottom:419.219832px;}
.ye5{bottom:421.919831px;}
.y15b{bottom:425.339830px;}
.y1f{bottom:428.399829px;}
.y57{bottom:429.299828px;}
.y11d{bottom:433.619827px;}
.ya4{bottom:436.499825px;}
.y132{bottom:446.939821px;}
.y10d{bottom:447.839821px;}
.y8d{bottom:448.019821px;}
.y7c{bottom:450.179820px;}
.y31{bottom:450.719820px;}
.y68{bottom:451.619819px;}
.y15a{bottom:455.039818px;}
.ye2{bottom:459.899816px;}
.y56{bottom:460.259816px;}
.y11c{bottom:460.439816px;}
.y13b{bottom:470.339812px;}
.y159{bottom:475.739810px;}
.y30{bottom:476.819809px;}
.y131{bottom:477.899809px;}
.y10c{bottom:478.799808px;}
.y8c{bottom:478.979808px;}
.ybc{bottom:479.159808px;}
.ye3{bottom:479.340000px;}
.y7b{bottom:481.319807px;}
.y17d{bottom:483.299807px;}
.ye1{bottom:483.659807px;}
.ya3{bottom:485.459806px;}
.y11b{bottom:487.439805px;}
.y55{bottom:491.399803px;}
.y2f{bottom:494.099802px;}
.y158{bottom:496.439801px;}
.y67{bottom:500.579800px;}
.y130{bottom:508.859796px;}
.y10b{bottom:509.939796px;}
.y8b{bottom:510.119796px;}
.y2e{bottom:511.379795px;}
.y7a{bottom:512.279795px;}
.y17c{bottom:512.999795px;}
.ya2{bottom:516.419793px;}
.yde{bottom:520.559792px;}
.y54{bottom:522.359791px;}
.y1e{bottom:524.519790px;}
.y157{bottom:526.139790px;}
.y2d{bottom:528.659789px;}
.y66{bottom:536.219786px;}
.y11a{bottom:539.459784px;}
.ydf{bottom:540.000000px;}
.y10a{bottom:540.899784px;}
.y8a{bottom:541.079784px;}
.y17b{bottom:542.699783px;}
.y79{bottom:543.419783px;}
.ydd{bottom:544.319782px;}
.y2c{bottom:545.939782px;}
.y156{bottom:546.839781px;}
.y53{bottom:553.499779px;}
.y12f{bottom:561.059776px;}
.ybb{bottom:562.139775px;}
.y2b{bottom:563.219775px;}
.y17a{bottom:563.399775px;}
.ya1{bottom:565.559774px;}
.y155{bottom:567.539773px;}
.y1d{bottom:568.079773px;}
.y119{bottom:571.319771px;}
.y89{bottom:572.219771px;}
.y78{bottom:574.379770px;}
.y2a{bottom:580.499768px;}
.yda{bottom:582.299767px;}
.y1c{bottom:583.379767px;}
.y52{bottom:584.459766px;}
.y12e{bottom:592.019763px;}
.y179{bottom:593.099763px;}
.y109{bottom:594.359762px;}
.y154{bottom:597.239761px;}
.y29{bottom:597.599761px;}
.y1b{bottom:598.679761px;}
.ydb{bottom:601.740000px;}
.y118{bottom:602.999759px;}
.y88{bottom:603.179759px;}
.y77{bottom:605.519758px;}
.yd9{bottom:606.059758px;}
.y1a{bottom:612.899755px;}
.y178{bottom:613.799754px;}
.yba{bottom:614.339754px;}
.ya0{bottom:614.519754px;}
.y28{bottom:614.879754px;}
.y51{bottom:615.419754px;}
.y153{bottom:617.939753px;}
.y108{bottom:618.299753px;}
.y12b{bottom:623.879750px;}
.y27{bottom:632.159747px;}
.y87{bottom:634.139746px;}
.y117{bottom:634.859746px;}
.y12c{bottom:636.300000px;}
.y76{bottom:636.479745px;}
.y107{bottom:642.059743px;}
.yd6{bottom:643.139743px;}
.y177{bottom:643.499743px;}
.y9f{bottom:645.659742px;}
.y65{bottom:646.559741px;}
.y152{bottom:647.639741px;}
.y26{bottom:649.439740px;}
.y128{bottom:655.019738px;}
.y19{bottom:655.379738px;}
.yd7{bottom:662.580000px;}
.y176{bottom:664.199734px;}
.y106{bottom:665.819734px;}
.yb9{bottom:666.359733px;}
.y25{bottom:666.719733px;}
.yd5{bottom:666.899733px;}
.y129{bottom:667.440000px;}
.y50{bottom:667.619733px;}
.y9e{bottom:676.619729px;}
.y151{bottom:677.339729px;}
.y64{bottom:677.519729px;}
.y24{bottom:683.819726px;}
.y175{bottom:684.899726px;}
.y127{bottom:686.159726px;}
.y116{bottom:687.599725px;}
.y105{bottom:689.579724px;}
.y18{bottom:697.859721px;}
.yb8{bottom:698.219721px;}
.y4f{bottom:698.579721px;}
.y23{bottom:701.099720px;}
.yd2{bottom:704.699718px;}
.y150{bottom:707.039717px;}
.y9d{bottom:707.759717px;}
.y63{bottom:708.659717px;}
.y17{bottom:713.339715px;}
.y104{bottom:713.519715px;}
.y174{bottom:714.599714px;}
.y126{bottom:718.019713px;}
.y22{bottom:718.379713px;}
.yd3{bottom:724.320000px;}
.y14f{bottom:727.739709px;}
.yd1{bottom:728.639709px;}
.y4e{bottom:729.719708px;}
.y15{bottom:735.120000px;}
.y21{bottom:735.299706px;}
.y103{bottom:737.279705px;}
.y9c{bottom:738.719705px;}
.y62{bottom:739.619704px;}
.y14e{bottom:748.439701px;}
.y75{bottom:750.599700px;}
.y173{bottom:755.999698px;}
.y4d{bottom:760.679696px;}
.y102{bottom:761.039696px;}
.y12{bottom:761.220000px;}
.yce{bottom:766.259693px;}
.y9b{bottom:769.859692px;}
.y61{bottom:770.759692px;}
.y172{bottom:776.699689px;}
.y14d{bottom:778.139689px;}
.y74{bottom:781.739687px;}
.y101{bottom:784.799686px;}
.ycf{bottom:785.700000px;}
.ycd{bottom:790.019684px;}
.y4c{bottom:791.819683px;}
.y14c{bottom:798.839680px;}
.y60{bottom:801.719679px;}
.y11{bottom:805.319678px;}
.y171{bottom:806.399677px;}
.y100{bottom:808.739677px;}
.y73{bottom:812.699675px;}
.y9a{bottom:821.879671px;}
.y4b{bottom:822.779671px;}
.y170{bottom:827.099669px;}
.y14b{bottom:828.539669px;}
.yff{bottom:832.499667px;}
.y10{bottom:836.459665px;}
.yf{bottom:842.399663px;}
.ycc{bottom:842.939663px;}
.y72{bottom:843.839662px;}
.y16f{bottom:847.799661px;}
.y14a{bottom:849.239660px;}
.y4a{bottom:853.919658px;}
.yfe{bottom:856.259657px;}
.y16e{bottom:868.499653px;}
.ye{bottom:869.759652px;}
.y99{bottom:873.899650px;}
.y71{bottom:874.799650px;}
.y149{bottom:878.939648px;}
.yfd{bottom:880.019648px;}
.y49{bottom:884.879646px;}
.ycb{bottom:894.959642px;}
.y16d{bottom:898.199641px;}
.y148{bottom:899.639640px;}
.yfc{bottom:903.779638px;}
.y98{bottom:905.039638px;}
.yd{bottom:905.939638px;}
.y80{bottom:916.019634px;}
.y16c{bottom:918.899632px;}
.y147{bottom:920.339632px;}
.yca{bottom:925.919630px;}
.yfb{bottom:936.179626px;}
.y48{bottom:936.899625px;}
.y16b{bottom:939.599624px;}
.yc{bottom:942.119623px;}
.yb0{bottom:943.380000px;}
.yb7{bottom:944.460000px;}
.y86{bottom:946.979621px;}
.y146{bottom:950.039620px;}
.y97{bottom:957.059617px;}
.yfa{bottom:959.939616px;}
.yaf{bottom:960.299616px;}
.yb6{bottom:961.379615px;}
.y47{bottom:968.039613px;}
.y16a{bottom:969.299612px;}
.y145{bottom:970.739612px;}
.y85{bottom:977.939609px;}
.yae{bottom:982.259607px;}
.yb5{bottom:983.519607px;}
.yf7{bottom:984.599606px;}
.y169{bottom:989.999604px;}
.y3c{bottom:995.399602px;}
.y46{bottom:998.999600px;}
.y144{bottom:1000.439600px;}
.yf8{bottom:1004.040000px;}
.yad{bottom:1004.399598px;}
.yb4{bottom:1005.479598px;}
.yf6{bottom:1008.359597px;}
.y96{bottom:1009.079596px;}
.y168{bottom:1010.699596px;}
.y3b{bottom:1015.199594px;}
.y143{bottom:1021.139592px;}
.yac{bottom:1026.359589px;}
.yb3{bottom:1027.439589px;}
.y45{bottom:1030.139588px;}
.y3a{bottom:1034.819586px;}
.y167{bottom:1040.399584px;}
.yab{bottom:1048.319581px;}
.yb2{bottom:1049.399580px;}
.y3d{bottom:1050.480000px;}
.y39{bottom:1054.079578px;}
.y44{bottom:1061.099576px;}
.y4{bottom:1082.339567px;}
.y6{bottom:1110.059556px;}
.y3{bottom:1114.019554px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h3{height:1.440000px;}
.h1b{height:4.320000px;}
.h17{height:8.295465px;}
.h19{height:13.140000px;}
.h10{height:14.580000px;}
.h15{height:16.740000px;}
.hd{height:20.160000px;}
.h6{height:20.340000px;}
.h1a{height:20.520000px;}
.ha{height:32.693893px;}
.h5{height:34.625377px;}
.h12{height:36.624009px;}
.h4{height:36.703110px;}
.h11{height:39.339828px;}
.h16{height:40.793187px;}
.h14{height:41.493499px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h13{height:42.962678px;}
.he{height:44.149201px;}
.hf{height:45.022482px;}
.h2{height:47.545293px;}
.hb{height:48.796855px;}
.h18{height:49.992168px;}
.hc{height:50.027324px;}
.h8{height:57.092321px;}
.h9{height:58.531969px;}
.h0{height:1188.000000px;}
.w5{width:3.600000px;}
.w2{width:5.040000px;}
.wb{width:7.020000px;}
.wc{width:7.560000px;}
.w8{width:8.100000px;}
.w7{width:8.280000px;}
.wd{width:9.000000px;}
.w1{width:9.720000px;}
.w10{width:18.000000px;}
.w3{width:18.720000px;}
.wf{width:27.000000px;}
.w6{width:33.660000px;}
.w4{width:58.320000px;}
.we{width:66.960000px;}
.w9{width:70.380000px;}
.w11{width:76.860000px;}
.wa{width:106.380000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:105.839958px;}
.x1{left:107.999957px;}
.x30{left:116.099454px;}
.xf{left:121.500000px;}
.x7{left:123.119951px;}
.x17{left:125.460000px;}
.x8{left:128.339955px;}
.x4{left:133.199947px;}
.x10{left:140.220000px;}
.x1b{left:154.439938px;}
.x4c{left:162.001595px;}
.x2b{left:163.439935px;}
.x19{left:164.519934px;}
.x2a{left:167.939933px;}
.x36{left:183.060000px;}
.x31{left:188.100000px;}
.x3a{left:192.960000px;}
.x11{left:198.540000px;}
.x12{left:202.140000px;}
.xe{left:229.319908px;}
.x18{left:231.840000px;}
.x13{left:235.800000px;}
.x1c{left:248.399966px;}
.x1d{left:249.479900px;}
.x2c{left:253.080000px;}
.x1e{left:257.939897px;}
.x14{left:268.200000px;}
.x15{left:287.100000px;}
.x24{left:290.339884px;}
.x20{left:301.319879px;}
.x2{left:302.579879px;}
.xa{left:312.659875px;}
.xb{left:318.779872px;}
.x9{left:321.480050px;}
.x32{left:339.119864px;}
.x26{left:351.000889px;}
.x16{left:357.300000px;}
.x37{left:366.120000px;}
.x27{left:386.280862px;}
.x25{left:392.040338px;}
.x5{left:399.779840px;}
.x1f{left:401.219840px;}
.x28{left:406.440824px;}
.x33{left:421.200000px;}
.x21{left:422.459831px;}
.x42{left:425.879617px;}
.x29{left:438.300743px;}
.xc{left:444.239822px;}
.xd{left:450.359820px;}
.x43{left:485.099667px;}
.x4b{left:498.960000px;}
.x3b{left:503.819386px;}
.x22{left:518.579793px;}
.x44{left:539.999735px;}
.x2d{left:555.479778px;}
.x2e{left:559.439776px;}
.x34{left:574.199770px;}
.x39{left:592.200000px;}
.x45{left:594.899803px;}
.x38{left:601.200000px;}
.x3c{left:613.799478px;}
.x2f{left:650.700000px;}
.x35{left:659.160000px;}
.x49{left:664.560000px;}
.x3d{left:668.879502px;}
.x3{left:691.199724px;}
.x46{left:709.199877px;}
.x3e{left:728.639568px;}
.x23{left:738.000000px;}
.x47{left:753.120000px;}
.x4a{left:755.460000px;}
.x48{left:769.499692px;}
.x3f{left:772.560000px;}
.x40{left:788.759684px;}
.x6{left:804.600000px;}
.x41{left:820.260000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.061211pt;}
.ls5{letter-spacing:0.061250pt;}
.ls8{letter-spacing:0.126453pt;}
.ls1{letter-spacing:0.158898pt;}
.ls3{letter-spacing:0.160098pt;}
.ls7{letter-spacing:0.242240pt;}
.ls2{letter-spacing:55.324458pt;}
.ls6{letter-spacing:66.559973pt;}
.lsb{letter-spacing:809.898343pt;}
.lsa{letter-spacing:849.652993pt;}
.ls0{letter-spacing:1339.680851pt;}
.ws4{word-spacing:-41.274223pt;}
.ws3{word-spacing:-28.799988pt;}
.ws8{word-spacing:-16.061204pt;}
.ws7{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:-12.776955pt;}
.ws5{word-spacing:-12.005115pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-7.635573pt;}
._1{margin-left:-3.725894pt;}
._6{margin-left:-2.071671pt;}
._3{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._4{width:1.923970pt;}
._7{width:2.834141pt;}
._8{width:3.738351pt;}
._10{width:4.831920pt;}
._a{width:5.953896pt;}
._9{width:6.848687pt;}
._5{width:7.877071pt;}
._d{width:9.049363pt;}
._c{width:9.971564pt;}
._e{width:11.329885pt;}
._11{width:12.785638pt;}
._12{width:14.465225pt;}
._13{width:17.304946pt;}
._14{width:18.205119pt;}
._17{width:19.480026pt;}
._19{width:20.573547pt;}
._15{width:21.624623pt;}
._16{width:22.649853pt;}
._1a{width:23.746185pt;}
._18{width:24.713143pt;}
._27{width:26.531809pt;}
._b{width:29.310345pt;}
._24{width:31.684887pt;}
._f{width:32.805787pt;}
._1b{width:34.699648pt;}
._26{width:35.697200pt;}
._4c{width:46.191133pt;}
._4d{width:48.114844pt;}
._1e{width:67.574319pt;}
._21{width:68.854959pt;}
._4b{width:77.081392pt;}
._30{width:81.100406pt;}
._22{width:82.963113pt;}
._1f{width:84.886952pt;}
._20{width:86.169185pt;}
._23{width:87.449511pt;}
._1d{width:100.214536pt;}
._2d{width:103.265239pt;}
._49{width:104.668020pt;}
._4a{width:105.595987pt;}
._25{width:115.602049pt;}
._1c{width:116.886529pt;}
._44{width:121.497908pt;}
._3b{width:131.818315pt;}
._48{width:133.742154pt;}
._34{width:139.535490pt;}
._41{width:140.545606pt;}
._2e{width:155.374777pt;}
._39{width:164.886745pt;}
._29{width:172.655322pt;}
._37{width:174.090016pt;}
._2c{width:178.473951pt;}
._46{width:201.497701pt;}
._35{width:204.901527pt;}
._31{width:217.681472pt;}
._40{width:222.810178pt;}
._2f{width:229.650278pt;}
._2a{width:232.938878pt;}
._3c{width:234.506087pt;}
._36{width:268.724870pt;}
._33{width:284.298515pt;}
._42{width:288.429636pt;}
._47{width:293.214054pt;}
._45{width:318.353510pt;}
._3e{width:323.402016pt;}
._3a{width:365.926792pt;}
._38{width:452.491799pt;}
._3d{width:484.492016pt;}
._32{width:535.087503pt;}
._28{width:572.330664pt;}
._43{width:600.605624pt;}
._3f{width:611.357939pt;}
._2b{width:747.760112pt;}
.fs6{font-size:10.879996pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y5{bottom:-12.799995pt;}
.yb1{bottom:-2.400334pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.879737pt;}
.y33{bottom:3.039895pt;}
.yc0{bottom:3.519878pt;}
.yc2{bottom:3.519886pt;}
.yc4{bottom:3.519893pt;}
.yc6{bottom:3.519900pt;}
.yf9{bottom:3.839641pt;}
.yd0{bottom:3.839719pt;}
.y14{bottom:3.839728pt;}
.yd4{bottom:3.839741pt;}
.y12a{bottom:3.839761pt;}
.yd8{bottom:3.839763pt;}
.y12d{bottom:3.839772pt;}
.ydc{bottom:3.839785pt;}
.ye0{bottom:3.839806pt;}
.ye4{bottom:3.839828pt;}
.ye7{bottom:3.839850pt;}
.yeb{bottom:3.839872pt;}
.yef{bottom:3.839894pt;}
.y3e{bottom:3.999625pt;}
.y13{bottom:3.999728pt;}
.ya{bottom:3.999982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:40.960000pt;}
.y7{bottom:44.959982pt;}
.y8{bottom:46.399981pt;}
.y38{bottom:117.919953pt;}
.y13a{bottom:118.399953pt;}
.y115{bottom:131.039948pt;}
.y125{bottom:131.839947pt;}
.yf2{bottom:137.599945pt;}
.y95{bottom:140.159944pt;}
.y5f{bottom:142.079943pt;}
.y166{bottom:143.679943pt;}
.y37{bottom:145.599942pt;}
.y139{bottom:146.719941pt;}
.yc9{bottom:156.319937pt;}
.yaa{bottom:158.399937pt;}
.y114{bottom:158.559937pt;}
.y124{bottom:159.359936pt;}
.y70{bottom:161.919935pt;}
.y165{bottom:162.079935pt;}
.yf1{bottom:165.279934pt;}
.y94{bottom:167.679933pt;}
.y5e{bottom:169.759932pt;}
.y36{bottom:173.119931pt;}
.y138{bottom:174.399930pt;}
.yc8{bottom:183.999926pt;}
.ya9{bottom:185.919926pt;}
.y113{bottom:186.239926pt;}
.y142{bottom:187.519925pt;}
.y164{bottom:188.479925pt;}
.y6f{bottom:189.599924pt;}
.y123{bottom:190.399924pt;}
.yf0{bottom:192.799923pt;}
.y93{bottom:195.359922pt;}
.y5d{bottom:197.279921pt;}
.y35{bottom:200.799920pt;}
.y137{bottom:202.559919pt;}
.y163{bottom:206.879917pt;}
.yc7{bottom:211.519915pt;}
.ya8{bottom:213.599915pt;}
.yf5{bottom:215.999914pt;}
.y6e{bottom:217.119913pt;}
.y122{bottom:222.559911pt;}
.y92{bottom:222.879911pt;}
.y5c{bottom:224.799910pt;}
.y162{bottom:225.279910pt;}
.y34{bottom:228.319909pt;}
.y112{bottom:232.479907pt;}
.y141{bottom:233.759906pt;}
.y6d{bottom:244.799902pt;}
.yed{bottom:244.959902pt;}
.yc5{bottom:245.760000pt;}
.y136{bottom:249.599900pt;}
.y91{bottom:250.559900pt;}
.y161{bottom:251.679899pt;}
.y84{bottom:252.479899pt;}
.y121{bottom:255.039898pt;}
.ya7{bottom:257.119897pt;}
.y32{bottom:259.840000pt;}
.y111{bottom:260.159896pt;}
.y140{bottom:261.439895pt;}
.yf4{bottom:262.239895pt;}
.yee{bottom:262.400000pt;}
.yc3{bottom:264.160000pt;}
.yec{bottom:266.239894pt;}
.y160{bottom:270.079892pt;}
.y20{bottom:270.239892pt;}
.y5b{bottom:271.199892pt;}
.y6c{bottom:272.319891pt;}
.y83{bottom:279.999888pt;}
.yc1{bottom:282.560000pt;}
.y120{bottom:287.039885pt;}
.y110{bottom:287.679885pt;}
.y15f{bottom:288.479885pt;}
.y13f{bottom:288.959884pt;}
.yf3{bottom:289.759884pt;}
.y135{bottom:295.839882pt;}
.y90{bottom:296.799881pt;}
.y5a{bottom:298.719881pt;}
.ye9{bottom:299.839880pt;}
.y6b{bottom:299.999880pt;}
.ya6{bottom:300.799880pt;}
.ybf{bottom:301.600000pt;}
.ybe{bottom:305.119878pt;}
.y82{bottom:307.679877pt;}
.y43{bottom:311.679875pt;}
.y15e{bottom:314.879874pt;}
.y10f{bottom:315.359874pt;}
.y13e{bottom:316.639873pt;}
.yea{bottom:317.120000pt;}
.y7f{bottom:317.439873pt;}
.y11f{bottom:318.879872pt;}
.ye8{bottom:320.959872pt;}
.y59{bottom:326.399869pt;}
.y42{bottom:326.719869pt;}
.y6a{bottom:327.519869pt;}
.y15d{bottom:333.279867pt;}
.y81{bottom:335.199866pt;}
.y41{bottom:341.599863pt;}
.y134{bottom:342.079863pt;}
.y10e{bottom:342.879863pt;}
.y8f{bottom:343.039863pt;}
.y13d{bottom:344.159862pt;}
.ya5{bottom:344.319862pt;}
.y7e{bottom:344.959862pt;}
.ybd{bottom:351.999859pt;}
.y58{bottom:353.919858pt;}
.y69{bottom:355.039858pt;}
.y40{bottom:356.479857pt;}
.y15c{bottom:359.679856pt;}
.y11e{bottom:361.439855pt;}
.y133{bottom:369.599852pt;}
.y8e{bottom:370.559852pt;}
.ye6{bottom:371.200000pt;}
.y13c{bottom:371.839851pt;}
.y3f{bottom:371.999851pt;}
.y7d{bottom:372.639851pt;}
.ye5{bottom:375.039850pt;}
.y15b{bottom:378.079849pt;}
.y1f{bottom:380.799848pt;}
.y57{bottom:381.599847pt;}
.y11d{bottom:385.439846pt;}
.ya4{bottom:387.999845pt;}
.y132{bottom:397.279841pt;}
.y10d{bottom:398.079841pt;}
.y8d{bottom:398.239841pt;}
.y7c{bottom:400.159840pt;}
.y31{bottom:400.639840pt;}
.y68{bottom:401.439839pt;}
.y15a{bottom:404.479838pt;}
.ye2{bottom:408.799836pt;}
.y56{bottom:409.119836pt;}
.y11c{bottom:409.279836pt;}
.y13b{bottom:418.079833pt;}
.y159{bottom:422.879831pt;}
.y30{bottom:423.839830pt;}
.y131{bottom:424.799830pt;}
.y10c{bottom:425.599830pt;}
.y8c{bottom:425.759830pt;}
.ybc{bottom:425.919830pt;}
.ye3{bottom:426.080000pt;}
.y7b{bottom:427.839829pt;}
.y17d{bottom:429.599828pt;}
.ye1{bottom:429.919828pt;}
.ya3{bottom:431.519827pt;}
.y11b{bottom:433.279827pt;}
.y55{bottom:436.799825pt;}
.y2f{bottom:439.199824pt;}
.y158{bottom:441.279823pt;}
.y67{bottom:444.959822pt;}
.y130{bottom:452.319819pt;}
.y10b{bottom:453.279819pt;}
.y8b{bottom:453.439819pt;}
.y2e{bottom:454.559818pt;}
.y7a{bottom:455.359818pt;}
.y17c{bottom:455.999818pt;}
.ya2{bottom:459.039816pt;}
.yde{bottom:462.719815pt;}
.y54{bottom:464.319814pt;}
.y1e{bottom:466.239814pt;}
.y157{bottom:467.679813pt;}
.y2d{bottom:469.919812pt;}
.y66{bottom:476.639809pt;}
.y11a{bottom:479.519808pt;}
.ydf{bottom:480.000000pt;}
.y10a{bottom:480.799808pt;}
.y8a{bottom:480.959808pt;}
.y17b{bottom:482.399807pt;}
.y79{bottom:483.039807pt;}
.ydd{bottom:483.839806pt;}
.y2c{bottom:485.279806pt;}
.y156{bottom:486.079806pt;}
.y53{bottom:491.999803pt;}
.y12f{bottom:498.719801pt;}
.ybb{bottom:499.679800pt;}
.y2b{bottom:500.639800pt;}
.y17a{bottom:500.799800pt;}
.ya1{bottom:502.719799pt;}
.y155{bottom:504.479798pt;}
.y1d{bottom:504.959798pt;}
.y119{bottom:507.839797pt;}
.y89{bottom:508.639797pt;}
.y78{bottom:510.559796pt;}
.y2a{bottom:515.999794pt;}
.yda{bottom:517.599793pt;}
.y1c{bottom:518.559793pt;}
.y52{bottom:519.519792pt;}
.y12e{bottom:526.239790pt;}
.y179{bottom:527.199789pt;}
.y109{bottom:528.319789pt;}
.y154{bottom:530.879788pt;}
.y29{bottom:531.199788pt;}
.y1b{bottom:532.159787pt;}
.ydb{bottom:534.880000pt;}
.y118{bottom:535.999786pt;}
.y88{bottom:536.159786pt;}
.y77{bottom:538.239785pt;}
.yd9{bottom:538.719785pt;}
.y1a{bottom:544.799782pt;}
.y178{bottom:545.599782pt;}
.yba{bottom:546.079782pt;}
.ya0{bottom:546.239782pt;}
.y28{bottom:546.559781pt;}
.y51{bottom:547.039781pt;}
.y153{bottom:549.279780pt;}
.y108{bottom:549.599780pt;}
.y12b{bottom:554.559778pt;}
.y27{bottom:561.919775pt;}
.y87{bottom:563.679775pt;}
.y117{bottom:564.319774pt;}
.y12c{bottom:565.600000pt;}
.y76{bottom:565.759774pt;}
.y107{bottom:570.719772pt;}
.yd6{bottom:571.679771pt;}
.y177{bottom:571.999771pt;}
.y9f{bottom:573.919770pt;}
.y65{bottom:574.719770pt;}
.y152{bottom:575.679770pt;}
.y26{bottom:577.279769pt;}
.y128{bottom:582.239767pt;}
.y19{bottom:582.559767pt;}
.yd7{bottom:588.960000pt;}
.y176{bottom:590.399764pt;}
.y106{bottom:591.839763pt;}
.yb9{bottom:592.319763pt;}
.y25{bottom:592.639763pt;}
.yd5{bottom:592.799763pt;}
.y129{bottom:593.280000pt;}
.y50{bottom:593.439763pt;}
.y9e{bottom:601.439759pt;}
.y151{bottom:602.079759pt;}
.y64{bottom:602.239759pt;}
.y24{bottom:607.839757pt;}
.y175{bottom:608.799756pt;}
.y127{bottom:609.919756pt;}
.y116{bottom:611.199756pt;}
.y105{bottom:612.959755pt;}
.y18{bottom:620.319752pt;}
.yb8{bottom:620.639752pt;}
.y4f{bottom:620.959752pt;}
.y23{bottom:623.199751pt;}
.yd2{bottom:626.399749pt;}
.y150{bottom:628.479749pt;}
.y9d{bottom:629.119748pt;}
.y63{bottom:629.919748pt;}
.y17{bottom:634.079746pt;}
.y104{bottom:634.239746pt;}
.y174{bottom:635.199746pt;}
.y126{bottom:638.239745pt;}
.y22{bottom:638.559745pt;}
.yd3{bottom:643.840000pt;}
.y14f{bottom:646.879741pt;}
.yd1{bottom:647.679741pt;}
.y4e{bottom:648.639741pt;}
.y15{bottom:653.440000pt;}
.y21{bottom:653.599739pt;}
.y103{bottom:655.359738pt;}
.y9c{bottom:656.639737pt;}
.y62{bottom:657.439737pt;}
.y14e{bottom:665.279734pt;}
.y75{bottom:667.199733pt;}
.y173{bottom:671.999731pt;}
.y4d{bottom:676.159730pt;}
.y102{bottom:676.479729pt;}
.y12{bottom:676.640000pt;}
.yce{bottom:681.119728pt;}
.y9b{bottom:684.319726pt;}
.y61{bottom:685.119726pt;}
.y172{bottom:690.399724pt;}
.y14d{bottom:691.679723pt;}
.y74{bottom:694.879722pt;}
.y101{bottom:697.599721pt;}
.ycf{bottom:698.400000pt;}
.ycd{bottom:702.239719pt;}
.y4c{bottom:703.839718pt;}
.y14c{bottom:710.079716pt;}
.y60{bottom:712.639715pt;}
.y11{bottom:715.839714pt;}
.y171{bottom:716.799713pt;}
.y100{bottom:718.879712pt;}
.y73{bottom:722.399711pt;}
.y9a{bottom:730.559708pt;}
.y4b{bottom:731.359707pt;}
.y170{bottom:735.199706pt;}
.y14b{bottom:736.479705pt;}
.yff{bottom:739.999704pt;}
.y10{bottom:743.519703pt;}
.yf{bottom:748.799700pt;}
.ycc{bottom:749.279700pt;}
.y72{bottom:750.079700pt;}
.y16f{bottom:753.599699pt;}
.y14a{bottom:754.879698pt;}
.y4a{bottom:759.039696pt;}
.yfe{bottom:761.119696pt;}
.y16e{bottom:771.999691pt;}
.ye{bottom:773.119691pt;}
.y99{bottom:776.799689pt;}
.y71{bottom:777.599689pt;}
.y149{bottom:781.279687pt;}
.yfd{bottom:782.239687pt;}
.y49{bottom:786.559685pt;}
.ycb{bottom:795.519682pt;}
.y16d{bottom:798.399681pt;}
.y148{bottom:799.679680pt;}
.yfc{bottom:803.359679pt;}
.y98{bottom:804.479678pt;}
.yd{bottom:805.279678pt;}
.y80{bottom:814.239674pt;}
.y16c{bottom:816.799673pt;}
.y147{bottom:818.079673pt;}
.yca{bottom:823.039671pt;}
.yfb{bottom:832.159667pt;}
.y48{bottom:832.799667pt;}
.y16b{bottom:835.199666pt;}
.yc{bottom:837.439665pt;}
.yb0{bottom:838.560000pt;}
.yb7{bottom:839.520000pt;}
.y86{bottom:841.759663pt;}
.y146{bottom:844.479662pt;}
.y97{bottom:850.719660pt;}
.yfa{bottom:853.279659pt;}
.yaf{bottom:853.599659pt;}
.yb6{bottom:854.559658pt;}
.y47{bottom:860.479656pt;}
.y16a{bottom:861.599655pt;}
.y145{bottom:862.879655pt;}
.y85{bottom:869.279652pt;}
.yae{bottom:873.119651pt;}
.yb5{bottom:874.239650pt;}
.yf7{bottom:875.199650pt;}
.y169{bottom:879.999648pt;}
.y3c{bottom:884.799646pt;}
.y46{bottom:887.999645pt;}
.y144{bottom:889.279644pt;}
.yf8{bottom:892.480000pt;}
.yad{bottom:892.799643pt;}
.yb4{bottom:893.759642pt;}
.yf6{bottom:896.319641pt;}
.y96{bottom:896.959641pt;}
.y168{bottom:898.399641pt;}
.y3b{bottom:902.399639pt;}
.y143{bottom:907.679637pt;}
.yac{bottom:912.319635pt;}
.yb3{bottom:913.279635pt;}
.y45{bottom:915.679634pt;}
.y3a{bottom:919.839632pt;}
.y167{bottom:924.799630pt;}
.yab{bottom:931.839627pt;}
.yb2{bottom:932.799627pt;}
.y3d{bottom:933.760000pt;}
.y39{bottom:936.959625pt;}
.y44{bottom:943.199623pt;}
.y4{bottom:962.079615pt;}
.y6{bottom:986.719605pt;}
.y3{bottom:990.239604pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h3{height:1.280000pt;}
.h1b{height:3.840000pt;}
.h17{height:7.373747pt;}
.h19{height:11.680000pt;}
.h10{height:12.960000pt;}
.h15{height:14.880000pt;}
.hd{height:17.920000pt;}
.h6{height:18.080000pt;}
.h1a{height:18.240000pt;}
.ha{height:29.061238pt;}
.h5{height:30.778113pt;}
.h12{height:32.554674pt;}
.h4{height:32.624987pt;}
.h11{height:34.968736pt;}
.h16{height:36.260610pt;}
.h14{height:36.883110pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h13{height:38.189047pt;}
.he{height:39.243734pt;}
.hf{height:40.019984pt;}
.h2{height:42.262483pt;}
.hb{height:43.374983pt;}
.h18{height:44.437482pt;}
.hc{height:44.468732pt;}
.h8{height:50.748730pt;}
.h9{height:52.028417pt;}
.h0{height:1056.000000pt;}
.w5{width:3.200000pt;}
.w2{width:4.480000pt;}
.wb{width:6.240000pt;}
.wc{width:6.720000pt;}
.w8{width:7.200000pt;}
.w7{width:7.360000pt;}
.wd{width:8.000000pt;}
.w1{width:8.640000pt;}
.w10{width:16.000000pt;}
.w3{width:16.640000pt;}
.wf{width:24.000000pt;}
.w6{width:29.920000pt;}
.w4{width:51.840000pt;}
.we{width:59.520000pt;}
.w9{width:62.560000pt;}
.w11{width:68.320000pt;}
.wa{width:94.560000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:94.079962pt;}
.x1{left:95.999962pt;}
.x30{left:103.199515pt;}
.xf{left:108.000000pt;}
.x7{left:109.439956pt;}
.x17{left:111.520000pt;}
.x8{left:114.079960pt;}
.x4{left:118.399953pt;}
.x10{left:124.640000pt;}
.x1b{left:137.279945pt;}
.x4c{left:144.001417pt;}
.x2b{left:145.279942pt;}
.x19{left:146.239942pt;}
.x2a{left:149.279940pt;}
.x36{left:162.720000pt;}
.x31{left:167.200000pt;}
.x3a{left:171.520000pt;}
.x11{left:176.480000pt;}
.x12{left:179.680000pt;}
.xe{left:203.839918pt;}
.x18{left:206.080000pt;}
.x13{left:209.600000pt;}
.x1c{left:220.799970pt;}
.x1d{left:221.759911pt;}
.x2c{left:224.960000pt;}
.x1e{left:229.279908pt;}
.x14{left:238.400000pt;}
.x15{left:255.200000pt;}
.x24{left:258.079897pt;}
.x20{left:267.839893pt;}
.x2{left:268.959892pt;}
.xa{left:277.919889pt;}
.xb{left:283.359887pt;}
.x9{left:285.760044pt;}
.x32{left:301.439879pt;}
.x26{left:312.000791pt;}
.x16{left:317.600000pt;}
.x37{left:325.440000pt;}
.x27{left:343.360766pt;}
.x25{left:348.480300pt;}
.x5{left:355.359858pt;}
.x1f{left:356.639857pt;}
.x28{left:361.280733pt;}
.x33{left:374.400000pt;}
.x21{left:375.519850pt;}
.x42{left:378.559660pt;}
.x29{left:389.600660pt;}
.xc{left:394.879842pt;}
.xd{left:400.319840pt;}
.x43{left:431.199704pt;}
.x4b{left:443.520000pt;}
.x3b{left:447.839454pt;}
.x22{left:460.959816pt;}
.x44{left:479.999765pt;}
.x2d{left:493.759802pt;}
.x2e{left:497.279801pt;}
.x34{left:510.399796pt;}
.x39{left:526.400000pt;}
.x45{left:528.799825pt;}
.x38{left:534.400000pt;}
.x3c{left:545.599536pt;}
.x2f{left:578.400000pt;}
.x35{left:585.920000pt;}
.x49{left:590.720000pt;}
.x3d{left:594.559557pt;}
.x3{left:614.399754pt;}
.x46{left:630.399890pt;}
.x3e{left:647.679616pt;}
.x23{left:656.000000pt;}
.x47{left:669.440000pt;}
.x4a{left:671.520000pt;}
.x48{left:683.999726pt;}
.x3f{left:686.720000pt;}
.x40{left:701.119720pt;}
.x6{left:715.200000pt;}
.x41{left:729.120000pt;}
}




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