
    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_27d2574b9615efea486b6baa.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_e13c198f6ef381ffdc7522ae.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_784af8b0e15cffe282079c39.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4d1b9c61c45881327cefa752.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_26cfa06b04ebded0dfc9ea4d.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_a84ab1c921ee2b264d4362fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b1c9f7bd5852b87d60472778.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_53d9b548b69ea2acfe376eec.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_97ebb629ea9934f28711ba0a.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_eb3b3f90a2f0833cf29de745.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f9f6511c9e63e1746da1e7bc.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_3729537b5f5299313fe99b93.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6f8511395919101872090dcb.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m9{transform:matrix(0.241187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241187,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.241996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241996,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245131,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245482,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245548,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246035,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249491,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);}
.m8{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);}
.mb{transform:matrix(0.368163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368163,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.419888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419888,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-36.719985px;}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.062743px;}
.ls2{letter-spacing:0.063403px;}
.ls0{letter-spacing:0.209232px;}
.ls5{letter-spacing:0.274574px;}
.lsa{letter-spacing:0.277573px;}
.ls8{letter-spacing:0.781080px;}
.ls4{letter-spacing:70.184091px;}
.ls7{letter-spacing:130.059548px;}
.ls3{letter-spacing:186.327970px;}
.ls1{letter-spacing:1828.007929px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.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(227,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-32.462730px;}
.ws5{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.623396px;}
.ws2{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.ws6{word-spacing:-14.219994px;}
.ws7{word-spacing:-12.059995px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-6.283328px;}
._1a{margin-left:-5.237255px;}
._18{margin-left:-3.986555px;}
._2{margin-left:-2.949050px;}
._0{margin-left:-1.438524px;}
._1{width:1.247001px;}
._9{width:2.319719px;}
._5{width:3.717698px;}
._6{width:4.772936px;}
._14{width:6.012332px;}
._7{width:7.191517px;}
._3{width:8.818222px;}
._f{width:10.661697px;}
._d{width:11.777939px;}
._16{width:13.295684px;}
._1c{width:15.228669px;}
._4{width:16.323890px;}
._15{width:17.370169px;}
._8{width:18.843482px;}
._e{width:19.856158px;}
._a{width:21.255537px;}
._13{width:22.709115px;}
._1b{width:23.724492px;}
._12{width:26.832198px;}
._11{width:27.867848px;}
._19{width:28.920962px;}
._10{width:30.246049px;}
._c{width:90.764491px;}
._b{width:91.769440px;}
.fca{color:rgb(0,0,255);}
.fc7{color:rgb(227,108,10);}
.fc5{color:rgb(0,32,96);}
.fcb{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fc8{color:rgb(44,62,80);}
.fc3{color:rgb(31,73,124);}
.fc9{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:20.879992px;}
.fs8{font-size:41.759983px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs7{font-size:56.879977px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs6{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.fs5{font-size:95.759962px;}
.y23{bottom:-0.000379px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.059952px;}
.y2b{bottom:3.239805px;}
.ya{bottom:3.959980px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.260000px;}
.y7{bottom:50.219980px;}
.y8{bottom:51.839979px;}
.yea{bottom:99.359960px;}
.y21{bottom:101.879959px;}
.ybb{bottom:106.739957px;}
.y108{bottom:109.979956px;}
.y74{bottom:112.859955px;}
.ye9{bottom:117.539953px;}
.y36{bottom:117.900000px;}
.yba{bottom:124.559950px;}
.y107{bottom:127.799949px;}
.y73{bottom:130.679948px;}
.ye8{bottom:136.259945px;}
.yb9{bottom:142.559943px;}
.y106{bottom:145.799942px;}
.y72{bottom:148.679941px;}
.y5{bottom:149.219940px;}
.ye7{bottom:154.979938px;}
.y46{bottom:159.119936px;}
.y105{bottom:163.799934px;}
.y71{bottom:166.499933px;}
.yb8{bottom:170.099932px;}
.y9e{bottom:171.719931px;}
.ye6{bottom:172.979931px;}
.y45{bottom:174.779930px;}
.y9d{bottom:181.259927px;}
.y70{bottom:184.499926px;}
.y104{bottom:187.199925px;}
.y44{bottom:190.259924px;}
.ye5{bottom:190.799924px;}
.yb7{bottom:195.479922px;}
.y9c{bottom:199.079920px;}
.y43{bottom:205.739918px;}
.y103{bottom:206.459917px;}
.ye4{bottom:209.699916px;}
.y6f{bottom:210.599916px;}
.yb6{bottom:213.299915px;}
.y9b{bottom:217.079913px;}
.y42{bottom:221.939911px;}
.ye3{bottom:227.519909px;}
.y102{bottom:232.559907px;}
.yb5{bottom:238.139905px;}
.y9a{bottom:241.019904px;}
.y35{bottom:242.459903px;}
.y6e{bottom:243.359903px;}
.ye2{bottom:253.259899px;}
.y6d{bottom:261.179896px;}
.y101{bottom:262.079895px;}
.ye1{bottom:270.719892px;}
.yb4{bottom:271.079892px;}
.y99{bottom:272.339891px;}
.y41{bottom:278.999888px;}
.y6c{bottom:279.179888px;}
.ye0{bottom:288.719885px;}
.yb3{bottom:288.899884px;}
.y98{bottom:290.159884px;}
.y6b{bottom:297.539881px;}
.ydf{bottom:306.539877px;}
.y40{bottom:307.619877px;}
.y97{bottom:308.159877px;}
.y34{bottom:311.759875px;}
.yb2{bottom:313.739875px;}
.y6a{bottom:315.899874px;}
.y3f{bottom:322.739871px;}
.yde{bottom:324.539870px;}
.y96{bottom:325.979870px;}
.y33{bottom:328.679869px;}
.y69{bottom:333.899866px;}
.y95{bottom:343.799862px;}
.yb1{bottom:346.859861px;}
.ydd{bottom:350.279860px;}
.y68{bottom:351.719859px;}
.y32{bottom:354.419858px;}
.y94{bottom:361.799855px;}
.y12f{bottom:364.139854px;}
.yb0{bottom:364.679854px;}
.ydc{bottom:367.559853px;}
.y31{bottom:369.719852px;}
.y3e{bottom:372.239851px;}
.y12e{bottom:377.459849px;}
.y93{bottom:379.619848px;}
.yaf{bottom:382.499847px;}
.y30{bottom:385.019846px;}
.ydb{bottom:385.739846px;}
.y67{bottom:387.539845px;}
.y3d{bottom:390.239844px;}
.y12d{bottom:391.139844px;}
.y2f{bottom:399.059840px;}
.y92{bottom:400.499840px;}
.yda{bottom:403.559839px;}
.y12c{bottom:404.459838px;}
.y66{bottom:405.899838px;}
.yae{bottom:407.339837px;}
.y3c{bottom:408.059837px;}
.y12b{bottom:417.959833px;}
.yd9{bottom:421.379831px;}
.y2e{bottom:423.539831px;}
.y65{bottom:424.439830px;}
.y3b{bottom:426.059830px;}
.y12a{bottom:431.459827px;}
.yad{bottom:440.459824px;}
.y64{bottom:442.259823px;}
.y3a{bottom:443.879822px;}
.y129{bottom:444.779822px;}
.yd8{bottom:447.299821px;}
.y2d{bottom:448.019821px;}
.y91{bottom:452.159819px;}
.yac{bottom:458.279817px;}
.y128{bottom:458.459817px;}
.y63{bottom:460.259816px;}
.y39{bottom:461.879815px;}
.y2c{bottom:463.679815px;}
.y90{bottom:469.979812px;}
.yd7{bottom:470.339812px;}
.y127{bottom:471.779811px;}
.yab{bottom:476.099810px;}
.y62{bottom:478.079809px;}
.y126{bottom:485.099806px;}
.y2a{bottom:485.460000px;}
.y8f{bottom:487.979805px;}
.yd6{bottom:488.339805px;}
.y38{bottom:488.879804px;}
.y61{bottom:495.899802px;}
.y125{bottom:498.779800px;}
.yaa{bottom:500.939800px;}
.y8e{bottom:505.799798px;}
.yd5{bottom:511.739795px;}
.y124{bottom:512.099795px;}
.y29{bottom:514.439794px;}
.y8d{bottom:523.619791px;}
.y123{bottom:525.599790px;}
.yd4{bottom:529.739788px;}
.y60{bottom:532.799787px;}
.ya9{bottom:533.879786px;}
.y122{bottom:539.099784px;}
.y8c{bottom:541.619783px;}
.y20{bottom:546.119782px;}
.yd3{bottom:547.559781px;}
.y5f{bottom:550.799780px;}
.ya8{bottom:551.879779px;}
.y121{bottom:552.599779px;}
.y8b{bottom:559.439776px;}
.y1f{bottom:563.399775px;}
.yd2{bottom:565.379774px;}
.y120{bottom:566.099774px;}
.y5e{bottom:568.619773px;}
.ya7{bottom:569.699772px;}
.y8a{bottom:577.439769px;}
.y11f{bottom:579.419768px;}
.y1e{bottom:580.679768px;}
.y5d{bottom:586.619765px;}
.yd1{bottom:588.959764px;}
.y11e{bottom:592.919763px;}
.ya6{bottom:594.539762px;}
.y100{bottom:594.899762px;}
.y89{bottom:595.259762px;}
.y1d{bottom:597.959761px;}
.y5c{bottom:604.439758px;}
.y11d{bottom:606.239758px;}
.yd0{bottom:606.779757px;}
.yff{bottom:612.719755px;}
.y88{bottom:613.079755px;}
.y1c{bottom:615.239754px;}
.y11c{bottom:619.919752px;}
.y5b{bottom:622.439751px;}
.ya5{bottom:627.479749px;}
.yfe{bottom:630.719748px;}
.y1b{bottom:632.339747px;}
.y11b{bottom:633.239747px;}
.ycf{bottom:633.779746px;}
.y87{bottom:634.139746px;}
.y5a{bottom:640.799744px;}
.ya4{bottom:645.299742px;}
.y11a{bottom:646.559741px;}
.yfd{bottom:648.539741px;}
.y1a{bottom:649.619740px;}
.yce{bottom:651.059740px;}
.y86{bottom:657.359737px;}
.y119{bottom:660.059736px;}
.yfc{bottom:666.359733px;}
.y19{bottom:666.899733px;}
.y59{bottom:667.979733px;}
.ya3{bottom:670.319732px;}
.ycd{bottom:672.299731px;}
.y118{bottom:682.919727px;}
.y18{bottom:684.179726px;}
.yfb{bottom:685.079726px;}
.y58{bottom:685.799726px;}
.ya2{bottom:686.879725px;}
.ycc{bottom:690.299724px;}
.y17{bottom:701.459719px;}
.y85{bottom:703.619719px;}
.yfa{bottom:703.979718px;}
.ya1{bottom:706.319717px;}
.ycb{bottom:708.119717px;}
.y57{bottom:712.259715px;}
.y117{bottom:713.699715px;}
.y16{bottom:718.739713px;}
.ya0{bottom:720.179712px;}
.y84{bottom:721.619711px;}
.yf9{bottom:721.799711px;}
.y116{bottom:731.519707px;}
.yca{bottom:735.119706px;}
.y15{bottom:735.839706px;}
.y83{bottom:739.439704px;}
.yf8{bottom:739.619704px;}
.y9f{bottom:741.599703px;}
.y56{bottom:745.379702px;}
.y115{bottom:749.519700px;}
.yc9{bottom:752.399699px;}
.y14{bottom:753.119699px;}
.y82{bottom:757.439697px;}
.y55{bottom:763.199695px;}
.y114{bottom:767.339693px;}
.y13{bottom:770.399692px;}
.yc8{bottom:773.639691px;}
.y81{bottom:775.259690px;}
.yf7{bottom:776.159690px;}
.y54{bottom:781.019688px;}
.y113{bottom:785.159686px;}
.y12{bottom:787.679685px;}
.yc7{bottom:791.639683px;}
.yf6{bottom:795.059682px;}
.y80{bottom:798.479681px;}
.y53{bottom:799.019680px;}
.y11{bottom:804.959678px;}
.y112{bottom:808.559677px;}
.yc6{bottom:809.459676px;}
.yf5{bottom:812.879675px;}
.y7f{bottom:816.299673px;}
.y52{bottom:817.019673px;}
.y10{bottom:822.239671px;}
.y111{bottom:826.379669px;}
.yc5{bottom:827.459669px;}
.yf4{bottom:830.879668px;}
.y51{bottom:835.379666px;}
.yf{bottom:839.339664px;}
.y7e{bottom:839.699664px;}
.y110{bottom:844.379662px;}
.yf3{bottom:848.699661px;}
.y50{bottom:853.739659px;}
.yc4{bottom:854.459658px;}
.ye{bottom:856.619657px;}
.y10f{bottom:862.199655px;}
.y7d{bottom:864.359654px;}
.yf2{bottom:867.419653px;}
.y4f{bottom:871.739651px;}
.yd{bottom:884.339646px;}
.y10e{bottom:885.599646px;}
.yf1{bottom:886.139646px;}
.y4e{bottom:889.559644px;}
.yc3{bottom:892.799643px;}
.y7c{bottom:897.119641px;}
.yf0{bottom:904.139638px;}
.y4d{bottom:907.559637px;}
.yc{bottom:908.819636px;}
.yc2{bottom:910.619636px;}
.y10d{bottom:916.379633px;}
.yef{bottom:921.959631px;}
.y7b{bottom:922.319631px;}
.y4c{bottom:925.919630px;}
.yc1{bottom:928.619629px;}
.y7a{bottom:940.319624px;}
.yee{bottom:940.859624px;}
.yc0{bottom:946.439621px;}
.y10c{bottom:946.979621px;}
.y22{bottom:948.600000px;}
.y27{bottom:952.199619px;}
.y4b{bottom:952.919619px;}
.y79{bottom:958.139617px;}
.y10b{bottom:964.979614px;}
.yed{bottom:969.299612px;}
.y26{bottom:969.479612px;}
.y4a{bottom:970.919612px;}
.y78{bottom:975.959610px;}
.ybf{bottom:977.399609px;}
.y10a{bottom:982.799607px;}
.yec{bottom:987.299605px;}
.y49{bottom:988.739605px;}
.y77{bottom:993.959602px;}
.ybe{bottom:997.379601px;}
.y25{bottom:997.739601px;}
.y109{bottom:1000.619600px;}
.yeb{bottom:1005.119598px;}
.y48{bottom:1006.559597px;}
.y76{bottom:1011.779595px;}
.ybd{bottom:1018.619593px;}
.y24{bottom:1025.279590px;}
.y28{bottom:1033.559587px;}
.y47{bottom:1033.739587px;}
.ybc{bottom:1036.439585px;}
.y75{bottom:1036.619585px;}
.y4{bottom:1054.259578px;}
.y6{bottom:1083.239567px;}
.y3{bottom:1085.399566px;}
.y2{bottom:1102.679559px;}
.y1{bottom:1119.959552px;}
.h9{height:13.500000px;}
.h17{height:14.507924px;}
.h10{height:16.380000px;}
.hc{height:17.280000px;}
.h5{height:18.720000px;}
.h16{height:30.402410px;}
.h18{height:32.693893px;}
.h4{height:33.518307px;}
.h19{height:35.143580px;}
.h3{height:36.597642px;}
.hf{height:36.624009px;}
.h11{height:37.520493px;}
.h15{height:38.549516px;}
.he{height:39.339828px;}
.h6{height:39.830258px;}
.h8{height:40.501390px;}
.h1{height:41.522679px;}
.hd{height:41.756116px;}
.hb{height:43.682678px;}
.h2{height:46.025138px;}
.h13{height:48.796855px;}
.h12{height:50.027324px;}
.h14{height:52.417948px;}
.h7{height:57.092321px;}
.ha{height:64.899818px;}
.h0{height:1188.000000px;}
.w1{width:7.560000px;}
.w3{width:8.820000px;}
.w2{width:142.200000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3e{left:36.899985px;}
.x3c{left:43.019983px;}
.x3d{left:56.879977px;}
.x1{left:64.439974px;}
.x1b{left:73.259971px;}
.x25{left:75.779970px;}
.x3a{left:77.219969px;}
.x16{left:79.020000px;}
.x26{left:81.899967px;}
.x29{left:87.119965px;}
.x27{left:88.739965px;}
.x4{left:91.439963px;}
.x1d{left:94.319962px;}
.x19{left:98.819981px;}
.x18{left:101.699959px;}
.x2b{left:103.139959px;}
.x36{left:104.759958px;}
.x7{left:107.459957px;}
.x34{left:111.959955px;}
.x37{left:115.739954px;}
.x1c{left:133.919946px;}
.x1a{left:135.899946px;}
.x1e{left:150.119940px;}
.x2f{left:154.079938px;}
.x2c{left:160.379936px;}
.x3b{left:161.459935px;}
.x2d{left:173.159931px;}
.x38{left:183.419927px;}
.x11{left:194.040000px;}
.x28{left:195.659922px;}
.x35{left:196.919921px;}
.x1f{left:219.959851px;}
.x17{left:221.220000px;}
.x39{left:222.299911px;}
.x20{left:243.899902px;}
.xb{left:252.179720px;}
.x2{left:259.019896px;}
.x21{left:265.140263px;}
.x24{left:268.379893px;}
.x2e{left:277.559889px;}
.x8{left:278.819653px;}
.x22{left:280.072388px;}
.x30{left:302.399879px;}
.x33{left:313.559875px;}
.x2a{left:317.159873px;}
.x31{left:319.139872px;}
.x13{left:323.279871px;}
.xa{left:325.979629px;}
.xf{left:327.780322px;}
.x23{left:354.959858px;}
.x5{left:360.539856px;}
.x14{left:395.999767px;}
.x12{left:397.799871px;}
.x10{left:408.059837px;}
.xd{left:409.859836px;}
.xe{left:417.419833px;}
.x9{left:419.399832px;}
.x32{left:421.919831px;}
.xc{left:458.820364px;}
.x15{left:682.199543px;}
.x3{left:729.539708px;}
.x6{left:845.640000px;}
@media print{
.v3{vertical-align:-32.639987pt;}
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.055772pt;}
.ls2{letter-spacing:0.056358pt;}
.ls0{letter-spacing:0.185984pt;}
.ls5{letter-spacing:0.244066pt;}
.lsa{letter-spacing:0.246731pt;}
.ls8{letter-spacing:0.694293pt;}
.ls4{letter-spacing:62.385859pt;}
.ls7{letter-spacing:115.608487pt;}
.ls3{letter-spacing:165.624862pt;}
.ls1{letter-spacing:1624.895937pt;}
.ws3{word-spacing:-28.855760pt;}
.ws5{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.776352pt;}
.ws2{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.ws6{word-spacing:-12.639995pt;}
.ws7{word-spacing:-10.719996pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-5.585180pt;}
._1a{margin-left:-4.655338pt;}
._18{margin-left:-3.543605pt;}
._2{margin-left:-2.621378pt;}
._0{margin-left:-1.278688pt;}
._1{width:1.108445pt;}
._9{width:2.061972pt;}
._5{width:3.304620pt;}
._6{width:4.242610pt;}
._14{width:5.344295pt;}
._7{width:6.392460pt;}
._3{width:7.838420pt;}
._f{width:9.477064pt;}
._d{width:10.469279pt;}
._16{width:11.818385pt;}
._1c{width:13.536595pt;}
._4{width:14.510125pt;}
._15{width:15.440151pt;}
._8{width:16.749762pt;}
._e{width:17.649919pt;}
._a{width:18.893811pt;}
._13{width:20.185880pt;}
._1b{width:21.088437pt;}
._12{width:23.850842pt;}
._11{width:24.771420pt;}
._19{width:25.707522pt;}
._10{width:26.885377pt;}
._c{width:80.679547pt;}
._b{width:81.572835pt;}
.fs9{font-size:18.559993pt;}
.fs8{font-size:37.119985pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs7{font-size:50.559980pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs6{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.fs5{font-size:85.119966pt;}
.y23{bottom:-0.000337pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:2.719957pt;}
.y2b{bottom:2.879826pt;}
.ya{bottom:3.519982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:41.120000pt;}
.y7{bottom:44.639982pt;}
.y8{bottom:46.079982pt;}
.yea{bottom:88.319965pt;}
.y21{bottom:90.559964pt;}
.ybb{bottom:94.879962pt;}
.y108{bottom:97.759961pt;}
.y74{bottom:100.319960pt;}
.ye9{bottom:104.479958pt;}
.y36{bottom:104.800000pt;}
.yba{bottom:110.719956pt;}
.y107{bottom:113.599955pt;}
.y73{bottom:116.159954pt;}
.ye8{bottom:121.119952pt;}
.yb9{bottom:126.719949pt;}
.y106{bottom:129.599948pt;}
.y72{bottom:132.159947pt;}
.y5{bottom:132.639947pt;}
.ye7{bottom:137.759945pt;}
.y46{bottom:141.439943pt;}
.y105{bottom:145.599942pt;}
.y71{bottom:147.999941pt;}
.yb8{bottom:151.199940pt;}
.y9e{bottom:152.639939pt;}
.ye6{bottom:153.759938pt;}
.y45{bottom:155.359938pt;}
.y9d{bottom:161.119936pt;}
.y70{bottom:163.999934pt;}
.y104{bottom:166.399933pt;}
.y44{bottom:169.119932pt;}
.ye5{bottom:169.599932pt;}
.yb7{bottom:173.759930pt;}
.y9c{bottom:176.959929pt;}
.y43{bottom:182.879927pt;}
.y103{bottom:183.519927pt;}
.ye4{bottom:186.399925pt;}
.y6f{bottom:187.199925pt;}
.yb6{bottom:189.599924pt;}
.y9b{bottom:192.959923pt;}
.y42{bottom:197.279921pt;}
.ye3{bottom:202.239919pt;}
.y102{bottom:206.719917pt;}
.yb5{bottom:211.679915pt;}
.y9a{bottom:214.239914pt;}
.y35{bottom:215.519914pt;}
.y6e{bottom:216.319913pt;}
.ye2{bottom:225.119910pt;}
.y6d{bottom:232.159907pt;}
.y101{bottom:232.959907pt;}
.ye1{bottom:240.639904pt;}
.yb4{bottom:240.959904pt;}
.y99{bottom:242.079903pt;}
.y41{bottom:247.999901pt;}
.y6c{bottom:248.159901pt;}
.ye0{bottom:256.639897pt;}
.yb3{bottom:256.799897pt;}
.y98{bottom:257.919897pt;}
.y6b{bottom:264.479894pt;}
.ydf{bottom:272.479891pt;}
.y40{bottom:273.439891pt;}
.y97{bottom:273.919890pt;}
.y34{bottom:277.119889pt;}
.yb2{bottom:278.879888pt;}
.y6a{bottom:280.799888pt;}
.y3f{bottom:286.879885pt;}
.yde{bottom:288.479885pt;}
.y96{bottom:289.759884pt;}
.y33{bottom:292.159883pt;}
.y69{bottom:296.799881pt;}
.y95{bottom:305.599878pt;}
.yb1{bottom:308.319877pt;}
.ydd{bottom:311.359875pt;}
.y68{bottom:312.639875pt;}
.y32{bottom:315.039874pt;}
.y94{bottom:321.599871pt;}
.y12f{bottom:323.679871pt;}
.yb0{bottom:324.159870pt;}
.ydc{bottom:326.719869pt;}
.y31{bottom:328.639869pt;}
.y3e{bottom:330.879868pt;}
.y12e{bottom:335.519866pt;}
.y93{bottom:337.439865pt;}
.yaf{bottom:339.999864pt;}
.y30{bottom:342.239863pt;}
.ydb{bottom:342.879863pt;}
.y67{bottom:344.479862pt;}
.y3d{bottom:346.879861pt;}
.y12d{bottom:347.679861pt;}
.y2f{bottom:354.719858pt;}
.y92{bottom:355.999858pt;}
.yda{bottom:358.719857pt;}
.y12c{bottom:359.519856pt;}
.y66{bottom:360.799856pt;}
.yae{bottom:362.079855pt;}
.y3c{bottom:362.719855pt;}
.y12b{bottom:371.519851pt;}
.yd9{bottom:374.559850pt;}
.y2e{bottom:376.479849pt;}
.y65{bottom:377.279849pt;}
.y3b{bottom:378.719849pt;}
.y12a{bottom:383.519847pt;}
.yad{bottom:391.519843pt;}
.y64{bottom:393.119843pt;}
.y3a{bottom:394.559842pt;}
.y129{bottom:395.359842pt;}
.yd8{bottom:397.599841pt;}
.y2d{bottom:398.239841pt;}
.y91{bottom:401.919839pt;}
.yac{bottom:407.359837pt;}
.y128{bottom:407.519837pt;}
.y63{bottom:409.119836pt;}
.y39{bottom:410.559836pt;}
.y2c{bottom:412.159835pt;}
.y90{bottom:417.759833pt;}
.yd7{bottom:418.079833pt;}
.y127{bottom:419.359832pt;}
.yab{bottom:423.199831pt;}
.y62{bottom:424.959830pt;}
.y126{bottom:431.199828pt;}
.y2a{bottom:431.520000pt;}
.y8f{bottom:433.759826pt;}
.yd6{bottom:434.079826pt;}
.y38{bottom:434.559826pt;}
.y61{bottom:440.799824pt;}
.y125{bottom:443.359823pt;}
.yaa{bottom:445.279822pt;}
.y8e{bottom:449.599820pt;}
.yd5{bottom:454.879818pt;}
.y124{bottom:455.199818pt;}
.y29{bottom:457.279817pt;}
.y8d{bottom:465.439814pt;}
.y123{bottom:467.199813pt;}
.yd4{bottom:470.879812pt;}
.y60{bottom:473.599811pt;}
.ya9{bottom:474.559810pt;}
.y122{bottom:479.199808pt;}
.y8c{bottom:481.439807pt;}
.y20{bottom:485.439806pt;}
.yd3{bottom:486.719805pt;}
.y5f{bottom:489.599804pt;}
.ya8{bottom:490.559804pt;}
.y121{bottom:491.199804pt;}
.y8b{bottom:497.279801pt;}
.y1f{bottom:500.799800pt;}
.yd2{bottom:502.559799pt;}
.y120{bottom:503.199799pt;}
.y5e{bottom:505.439798pt;}
.ya7{bottom:506.399797pt;}
.y8a{bottom:513.279795pt;}
.y11f{bottom:515.039794pt;}
.y1e{bottom:516.159794pt;}
.y5d{bottom:521.439791pt;}
.yd1{bottom:523.519791pt;}
.y11e{bottom:527.039789pt;}
.ya6{bottom:528.479789pt;}
.y100{bottom:528.799788pt;}
.y89{bottom:529.119788pt;}
.y1d{bottom:531.519787pt;}
.y5c{bottom:537.279785pt;}
.y11d{bottom:538.879784pt;}
.yd0{bottom:539.359784pt;}
.yff{bottom:544.639782pt;}
.y88{bottom:544.959782pt;}
.y1c{bottom:546.879781pt;}
.y11c{bottom:551.039780pt;}
.y5b{bottom:553.279779pt;}
.ya5{bottom:557.759777pt;}
.yfe{bottom:560.639776pt;}
.y1b{bottom:562.079775pt;}
.y11b{bottom:562.879775pt;}
.ycf{bottom:563.359775pt;}
.y87{bottom:563.679775pt;}
.y5a{bottom:569.599772pt;}
.ya4{bottom:573.599771pt;}
.y11a{bottom:574.719770pt;}
.yfd{bottom:576.479769pt;}
.y1a{bottom:577.439769pt;}
.yce{bottom:578.719769pt;}
.y86{bottom:584.319766pt;}
.y119{bottom:586.719765pt;}
.yfc{bottom:592.319763pt;}
.y19{bottom:592.799763pt;}
.y59{bottom:593.759762pt;}
.ya3{bottom:595.839762pt;}
.ycd{bottom:597.599761pt;}
.y118{bottom:607.039757pt;}
.y18{bottom:608.159757pt;}
.yfb{bottom:608.959756pt;}
.y58{bottom:609.599756pt;}
.ya2{bottom:610.559756pt;}
.ycc{bottom:613.599755pt;}
.y17{bottom:623.519751pt;}
.y85{bottom:625.439750pt;}
.yfa{bottom:625.759750pt;}
.ya1{bottom:627.839749pt;}
.ycb{bottom:629.439748pt;}
.y57{bottom:633.119747pt;}
.y117{bottom:634.399746pt;}
.y16{bottom:638.879744pt;}
.ya0{bottom:640.159744pt;}
.y84{bottom:641.439743pt;}
.yf9{bottom:641.599743pt;}
.y116{bottom:650.239740pt;}
.yca{bottom:653.439739pt;}
.y15{bottom:654.079738pt;}
.y83{bottom:657.279737pt;}
.yf8{bottom:657.439737pt;}
.y9f{bottom:659.199736pt;}
.y56{bottom:662.559735pt;}
.y115{bottom:666.239734pt;}
.yc9{bottom:668.799732pt;}
.y14{bottom:669.439732pt;}
.y82{bottom:673.279731pt;}
.y55{bottom:678.399729pt;}
.y114{bottom:682.079727pt;}
.y13{bottom:684.799726pt;}
.yc8{bottom:687.679725pt;}
.y81{bottom:689.119724pt;}
.yf7{bottom:689.919724pt;}
.y54{bottom:694.239722pt;}
.y113{bottom:697.919721pt;}
.y12{bottom:700.159720pt;}
.yc7{bottom:703.679719pt;}
.yf6{bottom:706.719717pt;}
.y80{bottom:709.759716pt;}
.y53{bottom:710.239716pt;}
.y11{bottom:715.519714pt;}
.y112{bottom:718.719713pt;}
.yc6{bottom:719.519712pt;}
.yf5{bottom:722.559711pt;}
.y7f{bottom:725.599710pt;}
.y52{bottom:726.239710pt;}
.y10{bottom:730.879708pt;}
.y111{bottom:734.559706pt;}
.yc5{bottom:735.519706pt;}
.yf4{bottom:738.559705pt;}
.y51{bottom:742.559703pt;}
.yf{bottom:746.079702pt;}
.y7e{bottom:746.399701pt;}
.y110{bottom:750.559700pt;}
.yf3{bottom:754.399698pt;}
.y50{bottom:758.879696pt;}
.yc4{bottom:759.519696pt;}
.ye{bottom:761.439695pt;}
.y10f{bottom:766.399693pt;}
.y7d{bottom:768.319693pt;}
.yf2{bottom:771.039692pt;}
.y4f{bottom:774.879690pt;}
.yd{bottom:786.079686pt;}
.y10e{bottom:787.199685pt;}
.yf1{bottom:787.679685pt;}
.y4e{bottom:790.719684pt;}
.yc3{bottom:793.599683pt;}
.y7c{bottom:797.439681pt;}
.yf0{bottom:803.679679pt;}
.y4d{bottom:806.719677pt;}
.yc{bottom:807.839677pt;}
.yc2{bottom:809.439676pt;}
.y10d{bottom:814.559674pt;}
.yef{bottom:819.519672pt;}
.y7b{bottom:819.839672pt;}
.y4c{bottom:823.039671pt;}
.yc1{bottom:825.439670pt;}
.y7a{bottom:835.839666pt;}
.yee{bottom:836.319665pt;}
.yc0{bottom:841.279663pt;}
.y10c{bottom:841.759663pt;}
.y22{bottom:843.200000pt;}
.y27{bottom:846.399661pt;}
.y4b{bottom:847.039661pt;}
.y79{bottom:851.679659pt;}
.y10b{bottom:857.759657pt;}
.yed{bottom:861.599655pt;}
.y26{bottom:861.759655pt;}
.y4a{bottom:863.039655pt;}
.y78{bottom:867.519653pt;}
.ybf{bottom:868.799652pt;}
.y10a{bottom:873.599651pt;}
.yec{bottom:877.599649pt;}
.y49{bottom:878.879648pt;}
.y77{bottom:883.519647pt;}
.ybe{bottom:886.559645pt;}
.y25{bottom:886.879645pt;}
.y109{bottom:889.439644pt;}
.yeb{bottom:893.439643pt;}
.y48{bottom:894.719642pt;}
.y76{bottom:899.359640pt;}
.ybd{bottom:905.439638pt;}
.y24{bottom:911.359635pt;}
.y28{bottom:918.719633pt;}
.y47{bottom:918.879632pt;}
.ybc{bottom:921.279631pt;}
.y75{bottom:921.439631pt;}
.y4{bottom:937.119625pt;}
.y6{bottom:962.879615pt;}
.y3{bottom:964.799614pt;}
.y2{bottom:980.159608pt;}
.y1{bottom:995.519602pt;}
.h9{height:12.000000pt;}
.h17{height:12.895932pt;}
.h10{height:14.560000pt;}
.hc{height:15.360000pt;}
.h5{height:16.640000pt;}
.h16{height:27.024364pt;}
.h18{height:29.061238pt;}
.h4{height:29.794051pt;}
.h19{height:31.238738pt;}
.h3{height:32.531237pt;}
.hf{height:32.554674pt;}
.h11{height:33.351549pt;}
.h15{height:34.266236pt;}
.he{height:34.968736pt;}
.h6{height:35.404673pt;}
.h8{height:36.001236pt;}
.h1{height:36.909048pt;}
.hd{height:37.116548pt;}
.hb{height:38.829047pt;}
.h2{height:40.911234pt;}
.h13{height:43.374983pt;}
.h12{height:44.468732pt;}
.h14{height:46.593731pt;}
.h7{height:50.748730pt;}
.ha{height:57.688727pt;}
.h0{height:1056.000000pt;}
.w1{width:6.720000pt;}
.w3{width:7.840000pt;}
.w2{width:126.400000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:32.799987pt;}
.x3c{left:38.239985pt;}
.x3d{left:50.559980pt;}
.x1{left:57.279977pt;}
.x1b{left:65.119974pt;}
.x25{left:67.359973pt;}
.x3a{left:68.639973pt;}
.x16{left:70.240000pt;}
.x26{left:72.799971pt;}
.x29{left:77.439969pt;}
.x27{left:78.879968pt;}
.x4{left:81.279967pt;}
.x1d{left:83.839966pt;}
.x19{left:87.839983pt;}
.x18{left:90.399964pt;}
.x2b{left:91.679963pt;}
.x36{left:93.119963pt;}
.x7{left:95.519962pt;}
.x34{left:99.519960pt;}
.x37{left:102.879959pt;}
.x1c{left:119.039952pt;}
.x1a{left:120.799952pt;}
.x1e{left:133.439947pt;}
.x2f{left:136.959945pt;}
.x2c{left:142.559943pt;}
.x3b{left:143.519943pt;}
.x2d{left:153.919938pt;}
.x38{left:163.039935pt;}
.x11{left:172.480000pt;}
.x28{left:173.919930pt;}
.x35{left:175.039930pt;}
.x1f{left:195.519867pt;}
.x17{left:196.640000pt;}
.x39{left:197.599921pt;}
.x20{left:216.799913pt;}
.xb{left:224.159751pt;}
.x2{left:230.239908pt;}
.x21{left:235.680234pt;}
.x24{left:238.559905pt;}
.x2e{left:246.719901pt;}
.x8{left:247.839692pt;}
.x22{left:248.953234pt;}
.x30{left:268.799892pt;}
.x33{left:278.719889pt;}
.x2a{left:281.919887pt;}
.x31{left:283.679887pt;}
.x13{left:287.359885pt;}
.xa{left:289.759670pt;}
.xf{left:291.360286pt;}
.x23{left:315.519874pt;}
.x5{left:320.479872pt;}
.x14{left:351.999793pt;}
.x12{left:353.599885pt;}
.x10{left:362.719855pt;}
.xd{left:364.319854pt;}
.xe{left:371.039852pt;}
.x9{left:372.799851pt;}
.x32{left:375.039850pt;}
.xc{left:407.840324pt;}
.x15{left:606.399594pt;}
.x3{left:648.479741pt;}
.x6{left:751.680000pt;}
}




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