
    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_4b7dfe050e28dcfc187ad3ca.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_ff8f1ee1823a91c55abc49f3.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_f09fd8dbd26eceec8e6f7c7e.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_d705fa4ac840ba114beead77.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_1d022208ef0bb2570924f0ba.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_30dcac0168ad3162d47fc178.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4e66a443c11c090fecb4613b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.858398;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_f62e67c9f15076abf6830ca8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_9420a9281b3a187c8e0d7228.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_659f2a5f5dde3ca94da32b91.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e02af3423c153a58914e211f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e1c3c7315d7e1aac32e33be8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e4d7951fc11c132996a6180a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c873b6bf3264906b67c0f1db.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9072d24ae581094de8cbed34.woff2')format("woff");}.fff{font-family:fff;line-height:0.937988;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.249512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,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);}
.m7{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);}
.m8{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);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.034519px;}
.ls5{letter-spacing:0.062743px;}
.lsb{letter-spacing:0.068862px;}
.ls14{letter-spacing:0.068880px;}
.lsc{letter-spacing:0.068906px;}
.ls1{letter-spacing:0.203595px;}
.ls2{letter-spacing:0.319697px;}
.lsa{letter-spacing:2.588879px;}
.ls6{letter-spacing:32.671620px;}
.ls8{letter-spacing:34.087306px;}
.ls11{letter-spacing:57.853789px;}
.ls10{letter-spacing:57.890887px;}
.ls12{letter-spacing:57.891044px;}
.ls13{letter-spacing:57.892003px;}
.lsf{letter-spacing:57.892452px;}
.lse{letter-spacing:57.892726px;}
.lsd{letter-spacing:57.892777px;}
.ls4{letter-spacing:64.522291px;}
.ls3{letter-spacing:90.491883px;}
.ls0{letter-spacing:1512.190615px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(58,123,34),0 0.015em rgb(58,123,34),0.015em 0 rgb(58,123,34),0 -0.015em  rgb(58,123,34);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(58,123,34);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-35.450626px;}
.ws10{word-spacing:-33.636947px;}
.ws7{word-spacing:-32.462730px;}
.wsd{word-spacing:-31.191396px;}
.wse{word-spacing:-27.725101px;}
.wsf{word-spacing:-27.351205px;}
.wsb{word-spacing:-27.311461px;}
.wsa{word-spacing:-27.311317px;}
.ws12{word-spacing:-27.003733px;}
.ws11{word-spacing:-20.339992px;}
.ws13{word-spacing:-18.068855px;}
.ws9{word-spacing:-17.999993px;}
.ws4{word-spacing:-16.271993px;}
.ws6{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws2{word-spacing:-14.939994px;}
.ws3{word-spacing:-13.505755px;}
.ws5{word-spacing:-10.612796px;}
.ws1{word-spacing:-9.719996px;}
.ws8{word-spacing:0.000000px;}
._28{margin-left:-13.761372px;}
._2a{margin-left:-10.236652px;}
._2{margin-left:-8.687796px;}
._29{margin-left:-7.165426px;}
._5{margin-left:-5.770760px;}
._1{margin-left:-4.191630px;}
._4{margin-left:-2.526791px;}
._3{margin-left:-1.237776px;}
._0{width:1.152887px;}
._b{width:2.482792px;}
._a{width:3.680439px;}
._9{width:4.720315px;}
._8{width:6.650455px;}
._7{width:8.216254px;}
._c{width:9.599524px;}
._18{width:11.429360px;}
._16{width:12.608610px;}
._6{width:13.706742px;}
._1b{width:15.668415px;}
._13{width:17.087910px;}
._1a{width:19.455938px;}
._10{width:20.662288px;}
._d{width:21.786806px;}
._20{width:22.817790px;}
._f{width:23.912761px;}
._e{width:25.624287px;}
._17{width:26.692936px;}
._11{width:28.536689px;}
._24{width:30.266357px;}
._27{width:31.296972px;}
._12{width:33.184188px;}
._1f{width:36.337408px;}
._1d{width:37.819017px;}
._1c{width:38.856231px;}
._23{width:39.878661px;}
._15{width:42.894333px;}
._19{width:44.520835px;}
._1e{width:45.733087px;}
._25{width:46.870600px;}
._14{width:47.957228px;}
._22{width:50.021911px;}
._21{width:51.339410px;}
._26{width:85.217060px;}
.fc10{color:rgb(33,33,33);}
.fce{color:rgb(0,101,153);}
.fcd{color:rgb(0,112,192);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fca{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(14,40,65);}
.fc4{color:rgb(192,0,0);}
.fc11{color:rgb(43,50,34);}
.fcf{color:rgb(34,34,34);}
.fcb{color:rgb(0,101,204);}
.fc8{color:rgb(58,123,34);}
.fc5{color:rgb(0,32,96);}
.fc7{color:rgb(0,0,255);}
.fcc{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(44,62,80);}
.fs6{font-size:30.239988px;}
.fs5{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs8{font-size:51.119980px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs7{font-size:71.999971px;}
.fs9{font-size:81.359967px;}
.fs4{font-size:84.239966px;}
.y5{bottom:-14.399994px;}
.y0{bottom:0.000000px;}
.y39{bottom:2.699733px;}
.y14{bottom:2.879658px;}
.y18{bottom:2.879664px;}
.y1c{bottom:2.879670px;}
.y20{bottom:2.879676px;}
.y24{bottom:2.879682px;}
.y28{bottom:2.879687px;}
.y2e{bottom:2.879699px;}
.yb8{bottom:4.319805px;}
.y89{bottom:4.319935px;}
.y36{bottom:4.499576px;}
.ya{bottom:4.499980px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.080000px;}
.y7{bottom:50.579980px;}
.y8{bottom:52.199979px;}
.y143{bottom:135.359946px;}
.y8a{bottom:135.899946px;}
.yee{bottom:136.079946px;}
.y7c{bottom:138.779944px;}
.y55{bottom:143.099943px;}
.yae{bottom:148.859940px;}
.y142{bottom:156.059938px;}
.y88{bottom:158.400000px;}
.yed{bottom:158.760000px;}
.y76{bottom:159.839936px;}
.yac{bottom:164.879934px;}
.y7b{bottom:169.919932px;}
.y43{bottom:173.339931px;}
.y101{bottom:176.039930px;}
.y141{bottom:176.759929px;}
.ye9{bottom:179.459928px;}
.y5a{bottom:180.719928px;}
.yda{bottom:187.559925px;}
.y123{bottom:188.099925px;}
.yc1{bottom:190.439924px;}
.y75{bottom:190.979924px;}
.yaa{bottom:196.019922px;}
.y140{bottom:197.459921px;}
.y59{bottom:197.639921px;}
.y100{bottom:199.979920px;}
.y9a{bottom:200.879920px;}
.yab{bottom:202.679919px;}
.ye8{bottom:210.419916px;}
.y58{bottom:214.379914px;}
.y13f{bottom:218.159913px;}
.yd9{bottom:218.699913px;}
.y122{bottom:219.239912px;}
.yc0{bottom:221.399911px;}
.y74{bottom:221.939911px;}
.ya9{bottom:227.699909px;}
.yff{bottom:230.939908px;}
.y57{bottom:231.299907px;}
.y99{bottom:232.019907px;}
.y13e{bottom:238.859904px;}
.ye7{bottom:241.559903px;}
.y56{bottom:248.579901px;}
.yd8{bottom:249.659900px;}
.y121{bottom:250.199900px;}
.ybf{bottom:252.539899px;}
.y73{bottom:252.899899px;}
.ya8{bottom:258.659897px;}
.y13d{bottom:259.559896px;}
.yfe{bottom:261.899895px;}
.y98{bottom:262.979895px;}
.ye6{bottom:272.519891px;}
.y54{bottom:276.299889px;}
.y13c{bottom:280.259888px;}
.yd7{bottom:280.799888px;}
.y120{bottom:281.339887px;}
.ybe{bottom:283.499887px;}
.y72{bottom:284.039886px;}
.yfd{bottom:293.039883px;}
.y97{bottom:294.119882px;}
.y13b{bottom:300.959880px;}
.y11f{bottom:302.039879px;}
.y53{bottom:302.219879px;}
.ye5{bottom:303.659879px;}
.ya7{bottom:310.859876px;}
.yd6{bottom:311.759875px;}
.y42{bottom:312.839875px;}
.ybd{bottom:314.639874px;}
.y71{bottom:314.999874px;}
.y13a{bottom:321.659871px;}
.y11e{bottom:322.739871px;}
.yfc{bottom:323.999870px;}
.y96{bottom:325.079870px;}
.y52{bottom:327.959869px;}
.ye4{bottom:334.619866px;}
.ya6{bottom:341.999863px;}
.y139{bottom:342.359863px;}
.yd5{bottom:342.899863px;}
.y11d{bottom:343.439863px;}
.ybc{bottom:345.599862px;}
.y70{bottom:346.139862px;}
.y51{bottom:353.879858px;}
.yfb{bottom:355.139858px;}
.y95{bottom:356.219858px;}
.y138{bottom:363.059855px;}
.y11c{bottom:364.139854px;}
.ya5{bottom:373.499851px;}
.yd4{bottom:373.859850px;}
.ybb{bottom:376.739849px;}
.y6f{bottom:377.099849px;}
.y50{bottom:379.799848px;}
.y137{bottom:383.759846px;}
.yfa{bottom:386.099846px;}
.ye3{bottom:386.639845px;}
.y94{bottom:387.179845px;}
.ya4{bottom:404.459838px;}
.yd3{bottom:404.819838px;}
.y4f{bottom:405.719838px;}
.y7a{bottom:408.239837px;}
.y11b{bottom:410.219836px;}
.yf9{bottom:417.239833px;}
.y41{bottom:417.779833px;}
.y93{bottom:418.319833px;}
.y136{bottom:425.159830px;}
.yba{bottom:428.939828px;}
.y6e{bottom:429.299828px;}
.y4e{bottom:431.459827px;}
.ya3{bottom:435.599826px;}
.yad{bottom:439.199824px;}
.ye2{bottom:440.819824px;}
.y11a{bottom:441.179824px;}
.y135{bottom:445.859822px;}
.yf8{bottom:448.199821px;}
.yd2{bottom:457.019817px;}
.y4d{bottom:457.379817px;}
.yb9{bottom:459.539816px;}
.y6d{bottom:460.259816px;}
.ya1{bottom:463.319815px;}
.y134{bottom:466.559813px;}
.ya0{bottom:466.919813px;}
.y92{bottom:470.339812px;}
.y40{bottom:470.519812px;}
.ye1{bottom:471.959811px;}
.y119{bottom:472.319811px;}
.ya2{bottom:473.579811px;}
.y87{bottom:479.339808px;}
.yb7{bottom:482.220000px;}
.y4c{bottom:483.299807px;}
.y3f{bottom:485.819806px;}
.y133{bottom:487.259805px;}
.yd1{bottom:487.979805px;}
.y6c{bottom:491.399803px;}
.y9f{bottom:499.679800px;}
.y3e{bottom:501.119800px;}
.y91{bottom:501.299799px;}
.ye0{bottom:502.919799px;}
.y118{bottom:503.279799px;}
.y132{bottom:507.959797px;}
.y4b{bottom:509.219796px;}
.y86{bottom:510.299796px;}
.y3d{bottom:515.159794px;}
.yd0{bottom:519.119792px;}
.y6b{bottom:522.359791px;}
.y9e{bottom:527.759789px;}
.y131{bottom:528.659789px;}
.y9d{bottom:531.359787px;}
.y90{bottom:532.439787px;}
.ydf{bottom:534.059786px;}
.y117{bottom:534.419786px;}
.y4a{bottom:534.959786px;}
.y85{bottom:541.439783px;}
.yf7{bottom:543.419783px;}
.y130{bottom:549.359780px;}
.ycf{bottom:550.079780px;}
.y6a{bottom:553.499779px;}
.y9c{bottom:559.439776px;}
.y49{bottom:560.879776px;}
.y9b{bottom:563.039775px;}
.y8f{bottom:563.399775px;}
.yde{bottom:565.019774px;}
.y116{bottom:565.379774px;}
.y3c{bottom:566.639773px;}
.y12f{bottom:570.059772px;}
.y84{bottom:572.399771px;}
.yf6{bottom:574.379770px;}
.y69{bottom:584.459766px;}
.y48{bottom:586.799765px;}
.y12e{bottom:590.759764px;}
.y8e{bottom:594.539762px;}
.ydd{bottom:596.159762px;}
.y115{bottom:596.519761px;}
.yce{bottom:602.099759px;}
.y83{bottom:603.539759px;}
.yf5{bottom:605.519758px;}
.y12d{bottom:611.459755px;}
.y47{bottom:612.719755px;}
.y68{bottom:615.419754px;}
.y3b{bottom:618.299753px;}
.y8d{bottom:625.499750px;}
.y114{bottom:627.479749px;}
.y12c{bottom:632.159747px;}
.y3a{bottom:633.779746px;}
.y82{bottom:634.499746px;}
.yf4{bottom:636.479745px;}
.y46{bottom:638.459745px;}
.y67{bottom:646.559741px;}
.y153{bottom:647.099741px;}
.ydc{bottom:648.179741px;}
.y12b{bottom:652.859739px;}
.ycd{bottom:656.279737px;}
.y8c{bottom:656.639737px;}
.y113{bottom:658.619737px;}
.y44{bottom:661.319735px;}
.y45{bottom:664.379734px;}
.y38{bottom:664.380000px;}
.y81{bottom:665.639734px;}
.yf3{bottom:667.619733px;}
.y152{bottom:667.799733px;}
.y12a{bottom:673.559731px;}
.ydb{bottom:675.179730px;}
.y66{bottom:677.519729px;}
.ycc{bottom:687.419725px;}
.y8b{bottom:687.599725px;}
.y151{bottom:688.499725px;}
.y112{bottom:689.579724px;}
.y129{bottom:694.259722px;}
.y37{bottom:694.619722px;}
.y80{bottom:696.599721px;}
.y79{bottom:698.579721px;}
.y65{bottom:708.659717px;}
.y150{bottom:709.199716px;}
.y128{bottom:714.959714px;}
.ycb{bottom:718.379713px;}
.yec{bottom:718.739713px;}
.y111{bottom:720.719712px;}
.y2f{bottom:723.959710px;}
.y78{bottom:729.719708px;}
.y14f{bottom:729.899708px;}
.y127{bottom:735.659706px;}
.y7f{bottom:739.619704px;}
.y110{bottom:741.419703px;}
.y2d{bottom:748.440000px;}
.yca{bottom:749.519700px;}
.yeb{bottom:749.699700px;}
.y14e{bottom:750.599700px;}
.y2c{bottom:751.319699px;}
.y2b{bottom:755.099698px;}
.y126{bottom:756.359697px;}
.y64{bottom:760.679696px;}
.y10f{bottom:762.119695px;}
.y2a{bottom:766.439693px;}
.y29{bottom:770.939692px;}
.y14d{bottom:771.299691px;}
.y125{bottom:777.059689px;}
.y27{bottom:778.500000px;}
.yc9{bottom:780.479688px;}
.y26{bottom:781.379687px;}
.yf2{bottom:781.739687px;}
.y10e{bottom:782.819687px;}
.y25{bottom:785.879686px;}
.yb6{bottom:789.659684px;}
.y63{bottom:791.819683px;}
.y14c{bottom:791.999683px;}
.y23{bottom:793.260000px;}
.y22{bottom:796.139682px;}
.y124{bottom:797.759681px;}
.y21{bottom:800.639680px;}
.yea{bottom:801.719679px;}
.y10d{bottom:803.519679px;}
.y1f{bottom:808.200000px;}
.y1e{bottom:811.079676px;}
.yc8{bottom:811.619675px;}
.yf1{bottom:812.699675px;}
.y1d{bottom:815.579674px;}
.yb5{bottom:820.619672px;}
.y62{bottom:822.779671px;}
.y1b{bottom:823.140000px;}
.y10c{bottom:824.039670px;}
.y1a{bottom:826.019670px;}
.y19{bottom:830.519668px;}
.y14b{bottom:833.399667px;}
.y17{bottom:838.080000px;}
.yc7{bottom:839.159664px;}
.y16{bottom:840.959664px;}
.yc6{bottom:842.759663px;}
.yf0{bottom:843.839662px;}
.y10b{bottom:844.739662px;}
.y15{bottom:845.459662px;}
.yb4{bottom:851.759659px;}
.y13{bottom:852.840000px;}
.y61{bottom:853.919658px;}
.y14a{bottom:854.099658px;}
.y12{bottom:855.719658px;}
.y11{bottom:860.219656px;}
.y10a{bottom:865.439654px;}
.yc5{bottom:870.839652px;}
.yc4{bottom:874.439650px;}
.yef{bottom:874.799650px;}
.yf{bottom:880.739648px;}
.yb3{bottom:882.719647px;}
.y60{bottom:884.879646px;}
.y10{bottom:885.959646px;}
.y109{bottom:886.139646px;}
.y149{bottom:895.499642px;}
.yd{bottom:899.279640px;}
.ye{bottom:904.499638px;}
.yc3{bottom:905.939638px;}
.y108{bottom:906.839637px;}
.yb2{bottom:913.859634px;}
.y5f{bottom:916.019634px;}
.y148{bottom:916.199634px;}
.y107{bottom:927.539629px;}
.yc2{bottom:936.899625px;}
.yc{bottom:941.939623px;}
.yb1{bottom:944.819622px;}
.y5e{bottom:946.979621px;}
.y106{bottom:948.239621px;}
.y147{bottom:957.599617px;}
.y7e{bottom:968.039613px;}
.y105{bottom:968.939612px;}
.yb0{bottom:975.959610px;}
.y5d{bottom:977.939609px;}
.y34{bottom:978.119609px;}
.y146{bottom:978.299609px;}
.y30{bottom:982.799607px;}
.y104{bottom:989.639604px;}
.y33{bottom:997.919601px;}
.y7d{bottom:998.999600px;}
.y5c{bottom:1009.079596px;}
.y103{bottom:1013.579595px;}
.y145{bottom:1019.699592px;}
.yaf{bottom:1027.979589px;}
.y32{bottom:1028.879588px;}
.y77{bottom:1030.139588px;}
.y102{bottom:1037.339585px;}
.y144{bottom:1040.399584px;}
.y31{bottom:1056.419577px;}
.y35{bottom:1056.420000px;}
.y5b{bottom:1061.099576px;}
.y4{bottom:1082.339567px;}
.y6{bottom:1111.319555px;}
.y3{bottom:1114.019554px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h3{height:1.440000px;}
.hd{height:13.680000px;}
.h14{height:14.040000px;}
.h12{height:20.160000px;}
.h6{height:20.340000px;}
.h1b{height:20.520000px;}
.h10{height:20.568507px;}
.hb{height:20.996710px;}
.he{height:21.011476px;}
.ha{height:26.350302px;}
.hc{height:33.494752px;}
.hf{height:33.518307px;}
.h15{height:33.706744px;}
.h5{height:34.625377px;}
.h1e{height:36.517837px;}
.h17{height:36.624009px;}
.h4{height:36.703110px;}
.h18{height:36.914048px;}
.h16{height:39.339828px;}
.h9{height:40.501390px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h2{height:47.545293px;}
.h1c{height:48.796855px;}
.h1a{height:50.027324px;}
.h1d{height:51.433573px;}
.h13{height:51.679667px;}
.h19{height:52.417948px;}
.h20{height:52.453104px;}
.h8{height:57.092321px;}
.h11{height:57.585914px;}
.h1f{height:59.232281px;}
.h0{height:1188.000000px;}
.w2{width:5.040000px;}
.wd{width:7.020000px;}
.wa{width:8.280000px;}
.w1{width:9.720000px;}
.w5{width:32.400000px;}
.w9{width:47.160000px;}
.wb{width:55.440000px;}
.wc{width:58.140000px;}
.w6{width:71.100000px;}
.w3{width:81.900000px;}
.w8{width:122.760000px;}
.w4{width:235.260000px;}
.we{width:253.260000px;}
.wf{width:297.000000px;}
.w10{width:301.500000px;}
.w7{width:393.480000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3b{left:79.919968px;}
.x39{left:81.899967px;}
.x34{left:90.359964px;}
.x35{left:95.940000px;}
.x37{left:99.179960px;}
.x38{left:100.620013px;}
.x1{left:107.999957px;}
.x55{left:109.798747px;}
.x7{left:111.599955px;}
.x3c{left:128.519949px;}
.x4{left:133.199947px;}
.x40{left:134.999946px;}
.x3a{left:138.599945px;}
.x36{left:151.380000px;}
.x42{left:154.619938px;}
.x57{left:164.339934px;}
.x4e{left:165.599934px;}
.x25{left:204.839918px;}
.x26{left:208.613917px;}
.x27{left:215.279914px;}
.x28{left:219.059912px;}
.x22{left:221.579911px;}
.x3d{left:223.559911px;}
.x23{left:225.353910px;}
.x17{left:240.839904px;}
.x1b{left:242.279903px;}
.x8{left:243.719903px;}
.x1c{left:246.059902px;}
.x43{left:250.199900px;}
.x9{left:255.959898px;}
.x19{left:260.093896px;}
.x3e{left:262.079895px;}
.x3f{left:266.759893px;}
.x30{left:271.979865px;}
.x10{left:283.500447px;}
.x2a{left:285.479886px;}
.x47{left:290.879884px;}
.x1e{left:296.099882px;}
.x1f{left:299.879880px;}
.x48{left:301.499879px;}
.x2{left:302.579879px;}
.x2d{left:308.699877px;}
.x31{left:370.799852px;}
.x2e{left:377.639898px;}
.x49{left:378.899848px;}
.x11{left:385.379846px;}
.x12{left:390.239844px;}
.x4a{left:392.399843px;}
.x5{left:398.519841px;}
.x4b{left:400.679840px;}
.x50{left:418.499758px;}
.xa{left:426.059830px;}
.xb{left:430.919828px;}
.x2b{left:440.099824px;}
.x2c{left:443.879822px;}
.x53{left:450.539820px;}
.x51{left:479.339808px;}
.x52{left:484.919806px;}
.x44{left:501.659799px;}
.x13{left:507.959797px;}
.x14{left:512.819795px;}
.x21{left:524.520000px;}
.x2f{left:549.179780px;}
.x32{left:578.339769px;}
.xc{left:600.839760px;}
.xd{left:605.699758px;}
.x56{left:616.500000px;}
.x4f{left:621.000000px;}
.x15{left:629.639748px;}
.x16{left:634.499746px;}
.x41{left:664.740000px;}
.x3{left:681.479727px;}
.x1a{left:682.740000px;}
.x45{left:696.779721px;}
.x46{left:702.359719px;}
.x33{left:734.580000px;}
.x4c{left:748.799700px;}
.xe{left:757.259697px;}
.xf{left:762.119695px;}
.x4d{left:766.259693px;}
.x54{left:780.838340px;}
.x24{left:795.240000px;}
.x6{left:804.600000px;}
.x18{left:836.100000px;}
.x20{left:846.900000px;}
.x29{left:870.840000px;}
.x1d{left:885.600000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.030684pt;}
.ls5{letter-spacing:0.055772pt;}
.lsb{letter-spacing:0.061211pt;}
.ls14{letter-spacing:0.061227pt;}
.lsc{letter-spacing:0.061250pt;}
.ls1{letter-spacing:0.180973pt;}
.ls2{letter-spacing:0.284175pt;}
.lsa{letter-spacing:2.301226pt;}
.ls6{letter-spacing:29.041440pt;}
.ls8{letter-spacing:30.299828pt;}
.ls11{letter-spacing:51.425590pt;}
.ls10{letter-spacing:51.458566pt;}
.ls12{letter-spacing:51.458706pt;}
.ls13{letter-spacing:51.459558pt;}
.lsf{letter-spacing:51.459957pt;}
.lse{letter-spacing:51.460201pt;}
.lsd{letter-spacing:51.460246pt;}
.ls4{letter-spacing:57.353148pt;}
.ls3{letter-spacing:80.437229pt;}
.ls0{letter-spacing:1344.169436pt;}
.wsc{word-spacing:-31.511667pt;}
.ws10{word-spacing:-29.899508pt;}
.ws7{word-spacing:-28.855760pt;}
.wsd{word-spacing:-27.725685pt;}
.wse{word-spacing:-24.644534pt;}
.wsf{word-spacing:-24.312182pt;}
.wsb{word-spacing:-24.276854pt;}
.wsa{word-spacing:-24.276726pt;}
.ws12{word-spacing:-24.003318pt;}
.ws11{word-spacing:-18.079993pt;}
.ws13{word-spacing:-16.061204pt;}
.ws9{word-spacing:-15.999994pt;}
.ws4{word-spacing:-14.463994pt;}
.ws6{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws2{word-spacing:-13.279995pt;}
.ws3{word-spacing:-12.005115pt;}
.ws5{word-spacing:-9.433596pt;}
.ws1{word-spacing:-8.639997pt;}
.ws8{word-spacing:0.000000pt;}
._28{margin-left:-12.232331pt;}
._2a{margin-left:-9.099246pt;}
._2{margin-left:-7.722485pt;}
._29{margin-left:-6.369268pt;}
._5{margin-left:-5.129565pt;}
._1{margin-left:-3.725894pt;}
._4{margin-left:-2.246037pt;}
._3{margin-left:-1.100245pt;}
._0{width:1.024788pt;}
._b{width:2.206926pt;}
._a{width:3.271501pt;}
._9{width:4.195835pt;}
._8{width:5.911516pt;}
._7{width:7.303337pt;}
._c{width:8.532910pt;}
._18{width:10.159431pt;}
._16{width:11.207654pt;}
._6{width:12.183770pt;}
._1b{width:13.927480pt;}
._13{width:15.189254pt;}
._1a{width:17.294167pt;}
._10{width:18.366479pt;}
._d{width:19.366050pt;}
._20{width:20.282480pt;}
._f{width:21.255787pt;}
._e{width:22.777144pt;}
._17{width:23.727054pt;}
._11{width:25.365946pt;}
._24{width:26.903429pt;}
._27{width:27.819530pt;}
._12{width:29.497056pt;}
._1f{width:32.299919pt;}
._1d{width:33.616904pt;}
._1c{width:34.538872pt;}
._23{width:35.447699pt;}
._15{width:38.128296pt;}
._19{width:39.574076pt;}
._1e{width:40.651633pt;}
._25{width:41.662756pt;}
._14{width:42.628647pt;}
._22{width:44.463921pt;}
._21{width:45.635031pt;}
._26{width:75.748498pt;}
.fs6{font-size:26.879989pt;}
.fs5{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs8{font-size:45.439982pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs7{font-size:63.999974pt;}
.fs9{font-size:72.319971pt;}
.fs4{font-size:74.879970pt;}
.y5{bottom:-12.799995pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:2.399763pt;}
.y14{bottom:2.559696pt;}
.y18{bottom:2.559701pt;}
.y1c{bottom:2.559706pt;}
.y20{bottom:2.559712pt;}
.y24{bottom:2.559717pt;}
.y28{bottom:2.559722pt;}
.y2e{bottom:2.559733pt;}
.yb8{bottom:3.839827pt;}
.y89{bottom:3.839942pt;}
.y36{bottom:3.999623pt;}
.ya{bottom:3.999982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:40.960000pt;}
.y7{bottom:44.959982pt;}
.y8{bottom:46.399981pt;}
.y143{bottom:120.319952pt;}
.y8a{bottom:120.799952pt;}
.yee{bottom:120.959952pt;}
.y7c{bottom:123.359951pt;}
.y55{bottom:127.199949pt;}
.yae{bottom:132.319947pt;}
.y142{bottom:138.719945pt;}
.y88{bottom:140.800000pt;}
.yed{bottom:141.120000pt;}
.y76{bottom:142.079943pt;}
.yac{bottom:146.559941pt;}
.y7b{bottom:151.039940pt;}
.y43{bottom:154.079938pt;}
.y101{bottom:156.479937pt;}
.y141{bottom:157.119937pt;}
.ye9{bottom:159.519936pt;}
.y5a{bottom:160.639936pt;}
.yda{bottom:166.719933pt;}
.y123{bottom:167.199933pt;}
.yc1{bottom:169.279932pt;}
.y75{bottom:169.759932pt;}
.yaa{bottom:174.239930pt;}
.y140{bottom:175.519930pt;}
.y59{bottom:175.679930pt;}
.y100{bottom:177.759929pt;}
.y9a{bottom:178.559929pt;}
.yab{bottom:180.159928pt;}
.ye8{bottom:187.039925pt;}
.y58{bottom:190.559924pt;}
.y13f{bottom:193.919922pt;}
.yd9{bottom:194.399922pt;}
.y122{bottom:194.879922pt;}
.yc0{bottom:196.799921pt;}
.y74{bottom:197.279921pt;}
.ya9{bottom:202.399919pt;}
.yff{bottom:205.279918pt;}
.y57{bottom:205.599918pt;}
.y99{bottom:206.239918pt;}
.y13e{bottom:212.319915pt;}
.ye7{bottom:214.719914pt;}
.y56{bottom:220.959912pt;}
.yd8{bottom:221.919911pt;}
.y121{bottom:222.399911pt;}
.ybf{bottom:224.479910pt;}
.y73{bottom:224.799910pt;}
.ya8{bottom:229.919908pt;}
.y13d{bottom:230.719908pt;}
.yfe{bottom:232.799907pt;}
.y98{bottom:233.759906pt;}
.ye6{bottom:242.239903pt;}
.y54{bottom:245.599902pt;}
.y13c{bottom:249.119900pt;}
.yd7{bottom:249.599900pt;}
.y120{bottom:250.079900pt;}
.ybe{bottom:251.999899pt;}
.y72{bottom:252.479899pt;}
.yfd{bottom:260.479896pt;}
.y97{bottom:261.439895pt;}
.y13b{bottom:267.519893pt;}
.y11f{bottom:268.479893pt;}
.y53{bottom:268.639893pt;}
.ye5{bottom:269.919892pt;}
.ya7{bottom:276.319889pt;}
.yd6{bottom:277.119889pt;}
.y42{bottom:278.079889pt;}
.ybd{bottom:279.679888pt;}
.y71{bottom:279.999888pt;}
.y13a{bottom:285.919886pt;}
.y11e{bottom:286.879885pt;}
.yfc{bottom:287.999885pt;}
.y96{bottom:288.959884pt;}
.y52{bottom:291.519883pt;}
.ye4{bottom:297.439881pt;}
.ya6{bottom:303.999878pt;}
.y139{bottom:304.319878pt;}
.yd5{bottom:304.799878pt;}
.y11d{bottom:305.279878pt;}
.ybc{bottom:307.199877pt;}
.y70{bottom:307.679877pt;}
.y51{bottom:314.559874pt;}
.yfb{bottom:315.679874pt;}
.y95{bottom:316.639873pt;}
.y138{bottom:322.719871pt;}
.y11c{bottom:323.679871pt;}
.ya5{bottom:331.999867pt;}
.yd4{bottom:332.319867pt;}
.ybb{bottom:334.879866pt;}
.y6f{bottom:335.199866pt;}
.y50{bottom:337.599865pt;}
.y137{bottom:341.119864pt;}
.yfa{bottom:343.199863pt;}
.ye3{bottom:343.679863pt;}
.y94{bottom:344.159862pt;}
.ya4{bottom:359.519856pt;}
.yd3{bottom:359.839856pt;}
.y4f{bottom:360.639856pt;}
.y7a{bottom:362.879855pt;}
.y11b{bottom:364.639854pt;}
.yf9{bottom:370.879852pt;}
.y41{bottom:371.359851pt;}
.y93{bottom:371.839851pt;}
.y136{bottom:377.919849pt;}
.yba{bottom:381.279847pt;}
.y6e{bottom:381.599847pt;}
.y4e{bottom:383.519847pt;}
.ya3{bottom:387.199845pt;}
.yad{bottom:390.399844pt;}
.ye2{bottom:391.839843pt;}
.y11a{bottom:392.159843pt;}
.y135{bottom:396.319841pt;}
.yf8{bottom:398.399841pt;}
.yd2{bottom:406.239838pt;}
.y4d{bottom:406.559837pt;}
.yb9{bottom:408.479837pt;}
.y6d{bottom:409.119836pt;}
.ya1{bottom:411.839835pt;}
.y134{bottom:414.719834pt;}
.ya0{bottom:415.039834pt;}
.y92{bottom:418.079833pt;}
.y40{bottom:418.239833pt;}
.ye1{bottom:419.519832pt;}
.y119{bottom:419.839832pt;}
.ya2{bottom:420.959832pt;}
.y87{bottom:426.079830pt;}
.yb7{bottom:428.640000pt;}
.y4c{bottom:429.599828pt;}
.y3f{bottom:431.839827pt;}
.y133{bottom:433.119827pt;}
.yd1{bottom:433.759826pt;}
.y6c{bottom:436.799825pt;}
.y9f{bottom:444.159822pt;}
.y3e{bottom:445.439822pt;}
.y91{bottom:445.599822pt;}
.ye0{bottom:447.039821pt;}
.y118{bottom:447.359821pt;}
.y132{bottom:451.519819pt;}
.y4b{bottom:452.639819pt;}
.y86{bottom:453.599819pt;}
.y3d{bottom:457.919817pt;}
.yd0{bottom:461.439815pt;}
.y6b{bottom:464.319814pt;}
.y9e{bottom:469.119812pt;}
.y131{bottom:469.919812pt;}
.y9d{bottom:472.319811pt;}
.y90{bottom:473.279811pt;}
.ydf{bottom:474.719810pt;}
.y117{bottom:475.039810pt;}
.y4a{bottom:475.519810pt;}
.y85{bottom:481.279807pt;}
.yf7{bottom:483.039807pt;}
.y130{bottom:488.319805pt;}
.ycf{bottom:488.959804pt;}
.y6a{bottom:491.999803pt;}
.y9c{bottom:497.279801pt;}
.y49{bottom:498.559801pt;}
.y9b{bottom:500.479800pt;}
.y8f{bottom:500.799800pt;}
.yde{bottom:502.239799pt;}
.y116{bottom:502.559799pt;}
.y3c{bottom:503.679799pt;}
.y12f{bottom:506.719797pt;}
.y84{bottom:508.799796pt;}
.yf6{bottom:510.559796pt;}
.y69{bottom:519.519792pt;}
.y48{bottom:521.599791pt;}
.y12e{bottom:525.119790pt;}
.y8e{bottom:528.479789pt;}
.ydd{bottom:529.919788pt;}
.y115{bottom:530.239788pt;}
.yce{bottom:535.199786pt;}
.y83{bottom:536.479785pt;}
.yf5{bottom:538.239785pt;}
.y12d{bottom:543.519783pt;}
.y47{bottom:544.639782pt;}
.y68{bottom:547.039781pt;}
.y3b{bottom:549.599780pt;}
.y8d{bottom:555.999778pt;}
.y114{bottom:557.759777pt;}
.y12c{bottom:561.919775pt;}
.y3a{bottom:563.359775pt;}
.y82{bottom:563.999774pt;}
.yf4{bottom:565.759774pt;}
.y46{bottom:567.519773pt;}
.y67{bottom:574.719770pt;}
.y153{bottom:575.199770pt;}
.ydc{bottom:576.159770pt;}
.y12b{bottom:580.319768pt;}
.ycd{bottom:583.359767pt;}
.y8c{bottom:583.679767pt;}
.y113{bottom:585.439766pt;}
.y44{bottom:587.839765pt;}
.y45{bottom:590.559764pt;}
.y38{bottom:590.560000pt;}
.y81{bottom:591.679763pt;}
.yf3{bottom:593.439763pt;}
.y152{bottom:593.599763pt;}
.y12a{bottom:598.719761pt;}
.ydb{bottom:600.159760pt;}
.y66{bottom:602.239759pt;}
.ycc{bottom:611.039756pt;}
.y8b{bottom:611.199756pt;}
.y151{bottom:611.999755pt;}
.y112{bottom:612.959755pt;}
.y129{bottom:617.119753pt;}
.y37{bottom:617.439753pt;}
.y80{bottom:619.199752pt;}
.y79{bottom:620.959752pt;}
.y65{bottom:629.919748pt;}
.y150{bottom:630.399748pt;}
.y128{bottom:635.519746pt;}
.ycb{bottom:638.559745pt;}
.yec{bottom:638.879744pt;}
.y111{bottom:640.639744pt;}
.y2f{bottom:643.519743pt;}
.y78{bottom:648.639741pt;}
.y14f{bottom:648.799740pt;}
.y127{bottom:653.919738pt;}
.y7f{bottom:657.439737pt;}
.y110{bottom:659.039736pt;}
.y2d{bottom:665.280000pt;}
.yca{bottom:666.239734pt;}
.yeb{bottom:666.399733pt;}
.y14e{bottom:667.199733pt;}
.y2c{bottom:667.839733pt;}
.y2b{bottom:671.199732pt;}
.y126{bottom:672.319731pt;}
.y64{bottom:676.159730pt;}
.y10f{bottom:677.439729pt;}
.y2a{bottom:681.279727pt;}
.y29{bottom:685.279726pt;}
.y14d{bottom:685.599726pt;}
.y125{bottom:690.719724pt;}
.y27{bottom:692.000000pt;}
.yc9{bottom:693.759722pt;}
.y26{bottom:694.559722pt;}
.yf2{bottom:694.879722pt;}
.y10e{bottom:695.839722pt;}
.y25{bottom:698.559721pt;}
.yb6{bottom:701.919719pt;}
.y63{bottom:703.839718pt;}
.y14c{bottom:703.999718pt;}
.y23{bottom:705.120000pt;}
.y22{bottom:707.679717pt;}
.y124{bottom:709.119716pt;}
.y21{bottom:711.679715pt;}
.yea{bottom:712.639715pt;}
.y10d{bottom:714.239714pt;}
.y1f{bottom:718.400000pt;}
.y1e{bottom:720.959712pt;}
.yc8{bottom:721.439711pt;}
.yf1{bottom:722.399711pt;}
.y1d{bottom:724.959710pt;}
.yb5{bottom:729.439708pt;}
.y62{bottom:731.359707pt;}
.y1b{bottom:731.680000pt;}
.y10c{bottom:732.479707pt;}
.y1a{bottom:734.239706pt;}
.y19{bottom:738.239705pt;}
.y14b{bottom:740.799704pt;}
.y17{bottom:744.960000pt;}
.yc7{bottom:745.919702pt;}
.y16{bottom:747.519701pt;}
.yc6{bottom:749.119700pt;}
.yf0{bottom:750.079700pt;}
.y10b{bottom:750.879700pt;}
.y15{bottom:751.519699pt;}
.yb4{bottom:757.119697pt;}
.y13{bottom:758.080000pt;}
.y61{bottom:759.039696pt;}
.y14a{bottom:759.199696pt;}
.y12{bottom:760.639696pt;}
.y11{bottom:764.639694pt;}
.y10a{bottom:769.279692pt;}
.yc5{bottom:774.079690pt;}
.yc4{bottom:777.279689pt;}
.yef{bottom:777.599689pt;}
.yf{bottom:782.879687pt;}
.yb3{bottom:784.639686pt;}
.y60{bottom:786.559685pt;}
.y10{bottom:787.519685pt;}
.y109{bottom:787.679685pt;}
.y149{bottom:795.999682pt;}
.yd{bottom:799.359680pt;}
.ye{bottom:803.999678pt;}
.yc3{bottom:805.279678pt;}
.y108{bottom:806.079678pt;}
.yb2{bottom:812.319675pt;}
.y5f{bottom:814.239674pt;}
.y148{bottom:814.399674pt;}
.y107{bottom:824.479670pt;}
.yc2{bottom:832.799667pt;}
.yc{bottom:837.279665pt;}
.yb1{bottom:839.839664pt;}
.y5e{bottom:841.759663pt;}
.y106{bottom:842.879663pt;}
.y147{bottom:851.199660pt;}
.y7e{bottom:860.479656pt;}
.y105{bottom:861.279655pt;}
.yb0{bottom:867.519653pt;}
.y5d{bottom:869.279652pt;}
.y34{bottom:869.439652pt;}
.y146{bottom:869.599652pt;}
.y30{bottom:873.599651pt;}
.y104{bottom:879.679648pt;}
.y33{bottom:887.039645pt;}
.y7d{bottom:887.999645pt;}
.y5c{bottom:896.959641pt;}
.y103{bottom:900.959640pt;}
.y145{bottom:906.399637pt;}
.yaf{bottom:913.759634pt;}
.y32{bottom:914.559634pt;}
.y77{bottom:915.679634pt;}
.y102{bottom:922.079631pt;}
.y144{bottom:924.799630pt;}
.y31{bottom:939.039624pt;}
.y35{bottom:939.040000pt;}
.y5b{bottom:943.199623pt;}
.y4{bottom:962.079615pt;}
.y6{bottom:987.839605pt;}
.y3{bottom:990.239604pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h3{height:1.280000pt;}
.hd{height:12.160000pt;}
.h14{height:12.480000pt;}
.h12{height:17.920000pt;}
.h6{height:18.080000pt;}
.h1b{height:18.240000pt;}
.h10{height:18.283118pt;}
.hb{height:18.663743pt;}
.he{height:18.676868pt;}
.ha{height:23.422491pt;}
.hc{height:29.773113pt;}
.hf{height:29.794051pt;}
.h15{height:29.961551pt;}
.h5{height:30.778113pt;}
.h1e{height:32.460300pt;}
.h17{height:32.554674pt;}
.h4{height:32.624987pt;}
.h18{height:32.812487pt;}
.h16{height:34.968736pt;}
.h9{height:36.001236pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h2{height:42.262483pt;}
.h1c{height:43.374983pt;}
.h1a{height:44.468732pt;}
.h1d{height:45.718732pt;}
.h13{height:45.937482pt;}
.h19{height:46.593731pt;}
.h20{height:46.624981pt;}
.h8{height:50.748730pt;}
.h11{height:51.187480pt;}
.h1f{height:52.650916pt;}
.h0{height:1056.000000pt;}
.w2{width:4.480000pt;}
.wd{width:6.240000pt;}
.wa{width:7.360000pt;}
.w1{width:8.640000pt;}
.w5{width:28.800000pt;}
.w9{width:41.920000pt;}
.wb{width:49.280000pt;}
.wc{width:51.680000pt;}
.w6{width:63.200000pt;}
.w3{width:72.800000pt;}
.w8{width:109.120000pt;}
.w4{width:209.120000pt;}
.we{width:225.120000pt;}
.wf{width:264.000000pt;}
.w10{width:268.000000pt;}
.w7{width:349.760000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:71.039972pt;}
.x39{left:72.799971pt;}
.x34{left:80.319968pt;}
.x35{left:85.280000pt;}
.x37{left:88.159965pt;}
.x38{left:89.440012pt;}
.x1{left:95.999962pt;}
.x55{left:97.598886pt;}
.x7{left:99.199960pt;}
.x3c{left:114.239954pt;}
.x4{left:118.399953pt;}
.x40{left:119.999952pt;}
.x3a{left:123.199951pt;}
.x36{left:134.560000pt;}
.x42{left:137.439945pt;}
.x57{left:146.079942pt;}
.x4e{left:147.199941pt;}
.x25{left:182.079927pt;}
.x26{left:185.434592pt;}
.x27{left:191.359923pt;}
.x28{left:194.719922pt;}
.x22{left:196.959921pt;}
.x3d{left:198.719921pt;}
.x23{left:200.314587pt;}
.x17{left:214.079914pt;}
.x1b{left:215.359914pt;}
.x8{left:216.639913pt;}
.x1c{left:218.719913pt;}
.x43{left:222.399911pt;}
.x9{left:227.519909pt;}
.x19{left:231.194574pt;}
.x3e{left:232.959907pt;}
.x3f{left:237.119905pt;}
.x30{left:241.759880pt;}
.x10{left:252.000398pt;}
.x2a{left:253.759898pt;}
.x47{left:258.559897pt;}
.x1e{left:263.199895pt;}
.x1f{left:266.559893pt;}
.x48{left:267.999893pt;}
.x2{left:268.959892pt;}
.x2d{left:274.399890pt;}
.x31{left:329.599868pt;}
.x2e{left:335.679910pt;}
.x49{left:336.799865pt;}
.x11{left:342.559863pt;}
.x12{left:346.879861pt;}
.x4a{left:348.799860pt;}
.x5{left:354.239858pt;}
.x4b{left:356.159858pt;}
.x50{left:371.999785pt;}
.xa{left:378.719849pt;}
.xb{left:383.039847pt;}
.x2b{left:391.199844pt;}
.x2c{left:394.559842pt;}
.x53{left:400.479840pt;}
.x51{left:426.079830pt;}
.x52{left:431.039828pt;}
.x44{left:445.919822pt;}
.x13{left:451.519819pt;}
.x14{left:455.839818pt;}
.x21{left:466.240000pt;}
.x2f{left:488.159805pt;}
.x32{left:514.079794pt;}
.xc{left:534.079786pt;}
.xd{left:538.399785pt;}
.x56{left:548.000000pt;}
.x4f{left:552.000000pt;}
.x15{left:559.679776pt;}
.x16{left:563.999774pt;}
.x41{left:590.880000pt;}
.x3{left:605.759758pt;}
.x1a{left:606.880000pt;}
.x45{left:619.359752pt;}
.x46{left:624.319750pt;}
.x33{left:652.960000pt;}
.x4c{left:665.599734pt;}
.xe{left:673.119731pt;}
.xf{left:677.439729pt;}
.x4d{left:681.119728pt;}
.x54{left:694.078524pt;}
.x24{left:706.880000pt;}
.x6{left:715.200000pt;}
.x18{left:743.200000pt;}
.x20{left:752.800000pt;}
.x29{left:774.080000pt;}
.x1d{left:787.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; }
  