
    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_37128b29d3858d4e55a2d048.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_4b3a929f5701c16a8f2d2b82.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_413b1ffcf1a4558f72fab288.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_ab02e73484aae86489c628c1.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_1805baeaaa350931486202f5.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_2c0b3ec40bc4fa594308a51c.woff2')format("woff");}.ff6{font-family:ff6;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: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_f811a8240c4a6b89861eba92.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_996bfe4833d1684c032356a4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f3701f1851eb6bb868fe6ee2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffb{font-family:ffb;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.211738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211738,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.214009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214009,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,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);}
.m5{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.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);}
.mc{transform:matrix(0.254082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254082,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.255507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255507,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.257138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257138,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257747,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.258827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258827,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.031745px;}
.ls5{letter-spacing:0.062787px;}
.ls1{letter-spacing:0.063403px;}
.ls2{letter-spacing:0.137375px;}
.ls8{letter-spacing:0.234679px;}
.ls4{letter-spacing:0.274574px;}
.ls6{letter-spacing:9.584278px;}
.ls0{letter-spacing:1365.603534px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.462774px;}
.ws5{word-spacing:-18.414713px;}
.ws0{word-spacing:-16.623396px;}
.ws3{word-spacing:-15.011994px;}
.ws2{word-spacing:-14.939994px;}
.ws8{word-spacing:-13.734673px;}
.ws1{word-spacing:-13.499995px;}
.ws7{word-spacing:-12.059995px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-5.233909px;}
._3{margin-left:-3.557707px;}
._4{margin-left:-2.531586px;}
._1{margin-left:-1.100702px;}
._0{width:1.152887px;}
._b{width:2.202333px;}
._6{width:3.255798px;}
._9{width:5.004717px;}
._8{width:6.397214px;}
._2{width:7.464208px;}
._7{width:8.862742px;}
._5{width:9.909856px;}
._c{width:11.468552px;}
._11{width:12.493780px;}
._13{width:15.290357px;}
._15{width:16.793111px;}
._a{width:18.663921px;}
._18{width:19.776530px;}
._e{width:21.345303px;}
._d{width:22.396716px;}
._1a{width:24.476341px;}
._14{width:26.089165px;}
._17{width:27.137349px;}
._19{width:28.523627px;}
._12{width:30.430505px;}
._1c{width:36.428932px;}
._1b{width:38.062243px;}
._f{width:39.430814px;}
._10{width:61.466975px;}
.fce{color:rgb(0,101,204);}
.fcd{color:rgb(51,51,51);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc7{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc0{color:rgb(0,0,0);}
.fcc{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(68,113,195);}
.fc9{color:rgb(79,129,189);}
.fca{color:rgb(83,129,53);}
.fcf{color:transparent;}
.fc8{color:rgb(0,0,255);}
.fcb{color:rgb(0,32,96);}
.fs7{font-size:41.759983px;}
.fs5{font-size:45.359982px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs6{font-size:71.999971px;}
.fs4{font-size:95.759962px;}
.y5{bottom:-14.039994px;}
.y0{bottom:0.000000px;}
.y25{bottom:3.599727px;}
.y1d{bottom:3.959618px;}
.ya{bottom:3.959980px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.260000px;}
.y7{bottom:50.219980px;}
.y8{bottom:51.839979px;}
.y7e{bottom:102.959959px;}
.ye0{bottom:105.479958px;}
.y1b{bottom:112.139955px;}
.y9d{bottom:114.299954px;}
.y7d{bottom:121.679951px;}
.ydf{bottom:124.019950px;}
.y7c{bottom:140.399944px;}
.yde{bottom:140.579944px;}
.y4b{bottom:143.279943px;}
.y9c{bottom:148.319941px;}
.y50{bottom:149.219940px;}
.y31{bottom:155.519938px;}
.ydd{bottom:159.299936px;}
.y4a{bottom:162.179935px;}
.y9b{bottom:167.039933px;}
.y7b{bottom:176.579929px;}
.ydc{bottom:177.839929px;}
.y49{bottom:181.259927px;}
.y9a{bottom:185.759926px;}
.ydb{bottom:197.459921px;}
.y48{bottom:200.159920px;}
.y99{bottom:204.479918px;}
.y7a{bottom:210.779916px;}
.yda{bottom:215.999914px;}
.y47{bottom:219.779912px;}
.y79{bottom:229.499908px;}
.yd9{bottom:235.799906px;}
.y98{bottom:236.339905px;}
.y78{bottom:248.219901px;}
.yd8{bottom:254.339898px;}
.y46{bottom:257.039897px;}
.y77{bottom:266.939893px;}
.y97{bottom:270.179892px;}
.yd7{bottom:274.139890px;}
.y45{bottom:277.199889px;}
.y76{bottom:285.839886px;}
.y30{bottom:286.019886px;}
.y96{bottom:288.899884px;}
.yd6{bottom:292.499883px;}
.y44{bottom:295.919882px;}
.y75{bottom:304.379878px;}
.yd5{bottom:309.239876px;}
.y95{bottom:319.319872px;}
.y43{bottom:325.979870px;}
.yd4{bottom:327.779869px;}
.y74{bottom:334.619866px;}
.y42{bottom:344.699862px;}
.yd3{bottom:346.319861px;}
.y94{bottom:350.819860px;}
.y73{bottom:353.519859px;}
.ybb{bottom:354.959858px;}
.y41{bottom:363.599855px;}
.yd2{bottom:365.939854px;}
.yba{bottom:368.819852px;}
.y93{bottom:369.539852px;}
.y72{bottom:372.239851px;}
.y40{bottom:382.319847px;}
.yd1{bottom:384.479846px;}
.y71{bottom:390.959844px;}
.yb9{bottom:396.179842px;}
.y2f{bottom:399.959840px;}
.y3f{bottom:401.039840px;}
.yd0{bottom:404.279838px;}
.y70{bottom:409.679836px;}
.yb8{bottom:414.899834px;}
.y3e{bottom:419.759832px;}
.ycf{bottom:422.819831px;}
.y6f{bottom:428.399829px;}
.y92{bottom:431.099828px;}
.yb7{bottom:433.619827px;}
.y3d{bottom:438.479825px;}
.yce{bottom:442.439823px;}
.y6e{bottom:447.299821px;}
.y91{bottom:449.999820px;}
.yb6{bottom:452.339819px;}
.y2e{bottom:452.699819px;}
.y3c{bottom:457.379817px;}
.ycd{bottom:460.979816px;}
.y2d{bottom:467.999813px;}
.y6d{bottom:468.179813px;}
.yb5{bottom:471.239812px;}
.y3b{bottom:476.099810px;}
.y90{bottom:480.599808px;}
.ycc{bottom:480.779808px;}
.y2c{bottom:483.299807px;}
.yb4{bottom:489.959804px;}
.y6c{bottom:491.039804px;}
.y2b{bottom:497.339801px;}
.ycb{bottom:499.679800px;}
.y3a{bottom:506.159798px;}
.y8f{bottom:506.699797px;}
.y6b{bottom:509.759796px;}
.yca{bottom:518.399793px;}
.yb3{bottom:520.019792px;}
.y39{bottom:524.879790px;}
.y8e{bottom:525.419790px;}
.y6a{bottom:528.479789px;}
.yc9{bottom:537.119785px;}
.yb2{bottom:538.739785px;}
.y38{bottom:543.599783px;}
.y69{bottom:547.199781px;}
.y2a{bottom:548.999780px;}
.yc8{bottom:552.599779px;}
.y8d{bottom:555.299778px;}
.yb1{bottom:557.459777px;}
.y37{bottom:562.499775px;}
.y68{bottom:566.099774px;}
.yc7{bottom:569.879772px;}
.yb0{bottom:576.359769px;}
.y36{bottom:581.219768px;}
.y67{bottom:584.819766px;}
.y8c{bottom:588.239765px;}
.yc6{bottom:588.779764px;}
.yaf{bottom:595.079762px;}
.y35{bottom:599.939760px;}
.y29{bottom:600.479760px;}
.y66{bottom:603.539759px;}
.y8b{bottom:607.139757px;}
.yc5{bottom:612.179755px;}
.yae{bottom:613.799754px;}
.y28{bottom:615.959754px;}
.y34{bottom:618.659753px;}
.y65{bottom:622.259751px;}
.y8a{bottom:625.679750px;}
.yc4{bottom:630.899748px;}
.y33{bottom:637.559745px;}
.y64{bottom:640.979744px;}
.y89{bottom:643.319743px;}
.yad{bottom:643.679743px;}
.yc3{bottom:649.619740px;}
.y32{bottom:649.799740px;}
.y27{bottom:652.679739px;}
.y63{bottom:659.879736px;}
.y88{bottom:661.679735px;}
.yac{bottom:662.399735px;}
.yc2{bottom:668.339733px;}
.y24{bottom:678.240000px;}
.y62{bottom:678.599729px;}
.yab{bottom:681.299727px;}
.y23{bottom:681.839727px;}
.y26{bottom:683.279727px;}
.yc1{bottom:687.059725px;}
.y61{bottom:697.319721px;}
.yaa{bottom:700.019720px;}
.y1a{bottom:701.819719px;}
.yc0{bottom:705.959718px;}
.y60{bottom:716.039714px;}
.y19{bottom:716.939713px;}
.ya9{bottom:718.739713px;}
.ybf{bottom:724.679710px;}
.y18{bottom:729.899708px;}
.ya8{bottom:737.459705px;}
.y17{bottom:742.859703px;}
.ybe{bottom:743.399703px;}
.y5f{bottom:745.919702px;}
.y16{bottom:755.819698px;}
.y5e{bottom:768.779692px;}
.ya7{bottom:768.959692px;}
.y15{bottom:769.139692px;}
.ybd{bottom:774.539690px;}
.y14{bottom:784.259686px;}
.y5d{bottom:787.679685px;}
.ybc{bottom:793.259683px;}
.y13{bottom:797.579681px;}
.ya6{bottom:801.539679px;}
.y5c{bottom:806.399677px;}
.y12{bottom:812.699675px;}
.ya5{bottom:820.259672px;}
.y5b{bottom:825.119670px;}
.y11{bottom:826.019670px;}
.y10{bottom:841.139664px;}
.y5a{bottom:843.839662px;}
.ya4{bottom:850.139660px;}
.yf{bottom:854.459658px;}
.ye{bottom:869.579652px;}
.y59{bottom:873.899650px;}
.ya3{bottom:880.199648px;}
.yd{bottom:882.899647px;}
.y87{bottom:891.179644px;}
.y58{bottom:892.619643px;}
.ya2{bottom:898.919640px;}
.y86{bottom:906.659637px;}
.yc{bottom:909.719636px;}
.y57{bottom:911.339635px;}
.y85{bottom:925.379630px;}
.ya1{bottom:928.979628px;}
.y56{bottom:930.239628px;}
.y84{bottom:944.099622px;}
.y55{bottom:948.959620px;}
.y1c{bottom:951.120000px;}
.y21{bottom:952.379619px;}
.ya0{bottom:959.039616px;}
.y83{bottom:962.819615px;}
.y54{bottom:967.679613px;}
.y20{bottom:975.779610px;}
.y9f{bottom:977.759609px;}
.y82{bottom:981.719607px;}
.y53{bottom:986.399605px;}
.y81{bottom:1000.439600px;}
.y1f{bottom:1000.799600px;}
.y9e{bottom:1007.819597px;}
.y80{bottom:1019.159592px;}
.y52{bottom:1022.399591px;}
.y1e{bottom:1028.699589px;}
.y22{bottom:1030.499588px;}
.y7f{bottom:1037.879585px;}
.y4f{bottom:1054.259578px;}
.y4{bottom:1078.379569px;}
.y51{bottom:1081.979567px;}
.y4e{bottom:1085.399566px;}
.y4d{bottom:1102.679559px;}
.y6{bottom:1106.099558px;}
.y3{bottom:1109.699556px;}
.y4c{bottom:1119.959552px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:0.720000px;}
.h6{height:18.720000px;}
.h15{height:28.302176px;}
.h9{height:31.495066px;}
.h13{height:32.693893px;}
.h5{height:33.518307px;}
.h14{height:35.120025px;}
.h16{height:35.991197px;}
.h4{height:36.597642px;}
.hf{height:36.624009px;}
.h17{height:37.494126px;}
.he{height:37.520493px;}
.ha{height:39.339828px;}
.h7{height:39.830258px;}
.hc{height:40.501390px;}
.h10{height:40.618109px;}
.h1{height:41.522679px;}
.h12{height:43.506897px;}
.hd{height:44.893107px;}
.h2{height:46.025138px;}
.h11{height:48.256856px;}
.hb{height:48.796855px;}
.h8{height:64.899818px;}
.h0{height:1188.000000px;}
.w3{width:3.600000px;}
.w2{width:4.320000px;}
.w1{width:7.560000px;}
.w4{width:14.040000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:126.359949px;}
.x1{left:129.059948px;}
.x20{left:139.139944px;}
.x1e{left:141.119944px;}
.x35{left:143.099943px;}
.x1b{left:144.179942px;}
.x5{left:150.479940px;}
.x22{left:156.059938px;}
.x1d{left:159.119936px;}
.x4b{left:165.599934px;}
.x4c{left:172.079931px;}
.x32{left:179.099928px;}
.x21{left:187.739925px;}
.x4d{left:190.799924px;}
.x1f{left:197.819921px;}
.x14{left:206.640000px;}
.x52{left:222.839911px;}
.x3d{left:227.339909px;}
.x8{left:231.839907px;}
.x17{left:245.879902px;}
.x66{left:249.119900px;}
.x5f{left:258.119897px;}
.x3a{left:259.559896px;}
.x3c{left:261.539895px;}
.x50{left:265.319894px;}
.x55{left:268.559893px;}
.x23{left:282.059887px;}
.x36{left:284.759886px;}
.x11{left:291.053884px;}
.xa{left:296.813881px;}
.x49{left:298.079881px;}
.xe{left:299.693880px;}
.xd{left:302.393879px;}
.x15{left:306.179878px;}
.x61{left:317.159873px;}
.x3e{left:320.759872px;}
.x2{left:323.639871px;}
.x1c{left:324.899870px;}
.x29{left:326.159870px;}
.x40{left:328.319869px;}
.x24{left:334.259866px;}
.x18{left:336.419865px;}
.x53{left:347.579861px;}
.x16{left:359.099856px;}
.x39{left:361.619855px;}
.x37{left:370.259852px;}
.x6a{left:374.039850px;}
.x3b{left:375.299850px;}
.x34{left:383.219847px;}
.x3f{left:387.539845px;}
.xb{left:415.433834px;}
.x6{left:417.599833px;}
.x28{left:419.759832px;}
.x2f{left:422.279831px;}
.x2a{left:425.872330px;}
.x9{left:428.573829px;}
.x56{left:430.199828px;}
.x45{left:431.459827px;}
.xf{left:442.792323px;}
.x30{left:443.879822px;}
.x57{left:445.859822px;}
.x58{left:453.052319px;}
.x47{left:460.799816px;}
.x12{left:462.059815px;}
.x33{left:471.239812px;}
.x13{left:473.399811px;}
.x27{left:475.019810px;}
.x10{left:481.319807px;}
.x2c{left:494.279802px;}
.x59{left:495.539802px;}
.x67{left:497.159801px;}
.x5a{left:507.052297px;}
.xc{left:509.039796px;}
.x43{left:511.739795px;}
.x4e{left:522.899791px;}
.x62{left:531.352287px;}
.x38{left:545.759782px;}
.x60{left:554.039778px;}
.x5b{left:561.059776px;}
.x44{left:577.259769px;}
.x4f{left:592.559763px;}
.x19{left:606.239758px;}
.x51{left:614.159754px;}
.x41{left:616.139754px;}
.x5c{left:617.219753px;}
.x4a{left:622.259751px;}
.x68{left:624.239750px;}
.x25{left:625.679750px;}
.x48{left:663.299735px;}
.x54{left:664.739734px;}
.x26{left:667.439733px;}
.x5d{left:669.052232px;}
.x69{left:671.039732px;}
.x3{left:676.259729px;}
.x2b{left:687.599725px;}
.x1a{left:691.199783px;}
.x65{left:701.639719px;}
.x46{left:707.219717px;}
.x2e{left:714.239714px;}
.x2d{left:716.579713px;}
.x42{left:718.019713px;}
.x63{left:739.799704px;}
.x31{left:740.879704px;}
.x5e{left:762.839695px;}
.x64{left:777.059689px;}
.x7{left:787.320000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.028218pt;}
.ls5{letter-spacing:0.055811pt;}
.ls1{letter-spacing:0.056358pt;}
.ls2{letter-spacing:0.122111pt;}
.ls8{letter-spacing:0.208603pt;}
.ls4{letter-spacing:0.244066pt;}
.ls6{letter-spacing:8.519358pt;}
.ls0{letter-spacing:1213.869808pt;}
.ws4{word-spacing:-28.855799pt;}
.ws5{word-spacing:-16.368633pt;}
.ws0{word-spacing:-14.776352pt;}
.ws3{word-spacing:-13.343995pt;}
.ws2{word-spacing:-13.279995pt;}
.ws8{word-spacing:-12.208598pt;}
.ws1{word-spacing:-11.999995pt;}
.ws7{word-spacing:-10.719996pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-4.652364pt;}
._3{margin-left:-3.162406pt;}
._4{margin-left:-2.250299pt;}
._1{margin-left:-0.978402pt;}
._0{width:1.024788pt;}
._b{width:1.957629pt;}
._6{width:2.894042pt;}
._9{width:4.448637pt;}
._8{width:5.686413pt;}
._2{width:6.634851pt;}
._7{width:7.877993pt;}
._5{width:8.808761pt;}
._c{width:10.194268pt;}
._11{width:11.105582pt;}
._13{width:13.591429pt;}
._15{width:14.927209pt;}
._a{width:16.590152pt;}
._18{width:17.579138pt;}
._e{width:18.973602pt;}
._d{width:19.908192pt;}
._1a{width:21.756748pt;}
._14{width:23.190369pt;}
._17{width:24.122088pt;}
._19{width:25.354335pt;}
._12{width:27.049338pt;}
._1c{width:32.381273pt;}
._1b{width:33.833105pt;}
._f{width:35.049613pt;}
._10{width:54.637311pt;}
.fs7{font-size:37.119985pt;}
.fs5{font-size:40.319984pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs6{font-size:63.999974pt;}
.fs4{font-size:85.119966pt;}
.y5{bottom:-12.479995pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:3.199758pt;}
.y1d{bottom:3.519660pt;}
.ya{bottom:3.519982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:41.120000pt;}
.y7{bottom:44.639982pt;}
.y8{bottom:46.079982pt;}
.y7e{bottom:91.519963pt;}
.ye0{bottom:93.759962pt;}
.y1b{bottom:99.679960pt;}
.y9d{bottom:101.599959pt;}
.y7d{bottom:108.159957pt;}
.ydf{bottom:110.239956pt;}
.y7c{bottom:124.799950pt;}
.yde{bottom:124.959950pt;}
.y4b{bottom:127.359949pt;}
.y9c{bottom:131.839947pt;}
.y50{bottom:132.639947pt;}
.y31{bottom:138.239945pt;}
.ydd{bottom:141.599943pt;}
.y4a{bottom:144.159942pt;}
.y9b{bottom:148.479941pt;}
.y7b{bottom:156.959937pt;}
.ydc{bottom:158.079937pt;}
.y49{bottom:161.119936pt;}
.y9a{bottom:165.119934pt;}
.ydb{bottom:175.519930pt;}
.y48{bottom:177.919929pt;}
.y99{bottom:181.759927pt;}
.y7a{bottom:187.359925pt;}
.yda{bottom:191.999923pt;}
.y47{bottom:195.359922pt;}
.y79{bottom:203.999918pt;}
.yd9{bottom:209.599916pt;}
.y98{bottom:210.079916pt;}
.y78{bottom:220.639912pt;}
.yd8{bottom:226.079910pt;}
.y46{bottom:228.479909pt;}
.y77{bottom:237.279905pt;}
.y97{bottom:240.159904pt;}
.yd7{bottom:243.679903pt;}
.y45{bottom:246.399901pt;}
.y76{bottom:254.079898pt;}
.y30{bottom:254.239898pt;}
.y96{bottom:256.799897pt;}
.yd6{bottom:259.999896pt;}
.y44{bottom:263.039895pt;}
.y75{bottom:270.559892pt;}
.yd5{bottom:274.879890pt;}
.y95{bottom:283.839886pt;}
.y43{bottom:289.759884pt;}
.yd4{bottom:291.359883pt;}
.y74{bottom:297.439881pt;}
.y42{bottom:306.399877pt;}
.yd3{bottom:307.839877pt;}
.y94{bottom:311.839875pt;}
.y73{bottom:314.239874pt;}
.ybb{bottom:315.519874pt;}
.y41{bottom:323.199871pt;}
.yd2{bottom:325.279870pt;}
.yba{bottom:327.839869pt;}
.y93{bottom:328.479869pt;}
.y72{bottom:330.879868pt;}
.y40{bottom:339.839864pt;}
.yd1{bottom:341.759863pt;}
.y71{bottom:347.519861pt;}
.yb9{bottom:352.159859pt;}
.y2f{bottom:355.519858pt;}
.y3f{bottom:356.479857pt;}
.yd0{bottom:359.359856pt;}
.y70{bottom:364.159854pt;}
.yb8{bottom:368.799852pt;}
.y3e{bottom:373.119851pt;}
.ycf{bottom:375.839850pt;}
.y6f{bottom:380.799848pt;}
.y92{bottom:383.199847pt;}
.yb7{bottom:385.439846pt;}
.y3d{bottom:389.759844pt;}
.yce{bottom:393.279843pt;}
.y6e{bottom:397.599841pt;}
.y91{bottom:399.999840pt;}
.yb6{bottom:402.079839pt;}
.y2e{bottom:402.399839pt;}
.y3c{bottom:406.559837pt;}
.ycd{bottom:409.759836pt;}
.y2d{bottom:415.999834pt;}
.y6d{bottom:416.159834pt;}
.yb5{bottom:418.879832pt;}
.y3b{bottom:423.199831pt;}
.y90{bottom:427.199829pt;}
.ycc{bottom:427.359829pt;}
.y2c{bottom:429.599828pt;}
.yb4{bottom:435.519826pt;}
.y6c{bottom:436.479825pt;}
.y2b{bottom:442.079823pt;}
.ycb{bottom:444.159822pt;}
.y3a{bottom:449.919820pt;}
.y8f{bottom:450.399820pt;}
.y6b{bottom:453.119819pt;}
.yca{bottom:460.799816pt;}
.yb3{bottom:462.239815pt;}
.y39{bottom:466.559813pt;}
.y8e{bottom:467.039813pt;}
.y6a{bottom:469.759812pt;}
.yc9{bottom:477.439809pt;}
.yb2{bottom:478.879808pt;}
.y38{bottom:483.199807pt;}
.y69{bottom:486.399805pt;}
.y2a{bottom:487.999805pt;}
.yc8{bottom:491.199804pt;}
.y8d{bottom:493.599803pt;}
.yb1{bottom:495.519802pt;}
.y37{bottom:499.999800pt;}
.y68{bottom:503.199799pt;}
.yc7{bottom:506.559797pt;}
.yb0{bottom:512.319795pt;}
.y36{bottom:516.639793pt;}
.y67{bottom:519.839792pt;}
.y8c{bottom:522.879791pt;}
.yc6{bottom:523.359791pt;}
.yaf{bottom:528.959788pt;}
.y35{bottom:533.279787pt;}
.y29{bottom:533.759786pt;}
.y66{bottom:536.479785pt;}
.y8b{bottom:539.679784pt;}
.yc5{bottom:544.159782pt;}
.yae{bottom:545.599782pt;}
.y28{bottom:547.519781pt;}
.y34{bottom:549.919780pt;}
.y65{bottom:553.119779pt;}
.y8a{bottom:556.159778pt;}
.yc4{bottom:560.799776pt;}
.y33{bottom:566.719773pt;}
.y64{bottom:569.759772pt;}
.y89{bottom:571.839771pt;}
.yad{bottom:572.159771pt;}
.yc3{bottom:577.439769pt;}
.y32{bottom:577.599769pt;}
.y27{bottom:580.159768pt;}
.y63{bottom:586.559765pt;}
.y88{bottom:588.159765pt;}
.yac{bottom:588.799764pt;}
.yc2{bottom:594.079762pt;}
.y24{bottom:602.880000pt;}
.y62{bottom:603.199759pt;}
.yab{bottom:605.599758pt;}
.y23{bottom:606.079758pt;}
.y26{bottom:607.359757pt;}
.yc1{bottom:610.719756pt;}
.y61{bottom:619.839752pt;}
.yaa{bottom:622.239751pt;}
.y1a{bottom:623.839750pt;}
.yc0{bottom:627.519749pt;}
.y60{bottom:636.479745pt;}
.y19{bottom:637.279745pt;}
.ya9{bottom:638.879744pt;}
.ybf{bottom:644.159742pt;}
.y18{bottom:648.799740pt;}
.ya8{bottom:655.519738pt;}
.y17{bottom:660.319736pt;}
.ybe{bottom:660.799736pt;}
.y5f{bottom:663.039735pt;}
.y16{bottom:671.839731pt;}
.y5e{bottom:683.359727pt;}
.ya7{bottom:683.519727pt;}
.y15{bottom:683.679727pt;}
.ybd{bottom:688.479725pt;}
.y14{bottom:697.119721pt;}
.y5d{bottom:700.159720pt;}
.ybc{bottom:705.119718pt;}
.y13{bottom:708.959716pt;}
.ya6{bottom:712.479715pt;}
.y5c{bottom:716.799713pt;}
.y12{bottom:722.399711pt;}
.ya5{bottom:729.119708pt;}
.y5b{bottom:733.439707pt;}
.y11{bottom:734.239706pt;}
.y10{bottom:747.679701pt;}
.y5a{bottom:750.079700pt;}
.ya4{bottom:755.679698pt;}
.yf{bottom:759.519696pt;}
.ye{bottom:772.959691pt;}
.y59{bottom:776.799689pt;}
.ya3{bottom:782.399687pt;}
.yd{bottom:784.799686pt;}
.y87{bottom:792.159683pt;}
.y58{bottom:793.439683pt;}
.ya2{bottom:799.039680pt;}
.y86{bottom:805.919678pt;}
.yc{bottom:808.639677pt;}
.y57{bottom:810.079676pt;}
.y85{bottom:822.559671pt;}
.ya1{bottom:825.759670pt;}
.y56{bottom:826.879669pt;}
.y84{bottom:839.199664pt;}
.y55{bottom:843.519663pt;}
.y1c{bottom:845.440000pt;}
.y21{bottom:846.559661pt;}
.ya0{bottom:852.479659pt;}
.y83{bottom:855.839658pt;}
.y54{bottom:860.159656pt;}
.y20{bottom:867.359653pt;}
.y9f{bottom:869.119652pt;}
.y82{bottom:872.639651pt;}
.y53{bottom:876.799649pt;}
.y81{bottom:889.279644pt;}
.y1f{bottom:889.599644pt;}
.y9e{bottom:895.839642pt;}
.y80{bottom:905.919638pt;}
.y52{bottom:908.799636pt;}
.y1e{bottom:914.399634pt;}
.y22{bottom:915.999634pt;}
.y7f{bottom:922.559631pt;}
.y4f{bottom:937.119625pt;}
.y4{bottom:958.559617pt;}
.y51{bottom:961.759615pt;}
.y4e{bottom:964.799614pt;}
.y4d{bottom:980.159608pt;}
.y6{bottom:983.199607pt;}
.y3{bottom:986.399605pt;}
.y4c{bottom:995.519602pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:0.640000pt;}
.h6{height:16.640000pt;}
.h15{height:25.157490pt;}
.h9{height:27.995614pt;}
.h13{height:29.061238pt;}
.h5{height:29.794051pt;}
.h14{height:31.217800pt;}
.h16{height:31.992175pt;}
.h4{height:32.531237pt;}
.hf{height:32.554674pt;}
.h17{height:33.328112pt;}
.he{height:33.351549pt;}
.ha{height:34.968736pt;}
.h7{height:35.404673pt;}
.hc{height:36.001236pt;}
.h10{height:36.104986pt;}
.h1{height:36.909048pt;}
.h12{height:38.672797pt;}
.hd{height:39.904984pt;}
.h2{height:40.911234pt;}
.h11{height:42.894983pt;}
.hb{height:43.374983pt;}
.h8{height:57.688727pt;}
.h0{height:1056.000000pt;}
.w3{width:3.200000pt;}
.w2{width:3.840000pt;}
.w1{width:6.720000pt;}
.w4{width:12.480000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:112.319955pt;}
.x1{left:114.719954pt;}
.x20{left:123.679951pt;}
.x1e{left:125.439950pt;}
.x35{left:127.199949pt;}
.x1b{left:128.159949pt;}
.x5{left:133.759946pt;}
.x22{left:138.719945pt;}
.x1d{left:141.439943pt;}
.x4b{left:147.199941pt;}
.x4c{left:152.959939pt;}
.x32{left:159.199936pt;}
.x21{left:166.879933pt;}
.x4d{left:169.599932pt;}
.x1f{left:175.839930pt;}
.x14{left:183.680000pt;}
.x52{left:198.079921pt;}
.x3d{left:202.079919pt;}
.x8{left:206.079918pt;}
.x17{left:218.559913pt;}
.x66{left:221.439911pt;}
.x5f{left:229.439908pt;}
.x3a{left:230.719908pt;}
.x3c{left:232.479907pt;}
.x50{left:235.839906pt;}
.x55{left:238.719905pt;}
.x23{left:250.719900pt;}
.x36{left:253.119899pt;}
.x11{left:258.714563pt;}
.xa{left:263.834561pt;}
.x49{left:264.959894pt;}
.xe{left:266.394560pt;}
.xd{left:268.794559pt;}
.x15{left:272.159891pt;}
.x61{left:281.919887pt;}
.x3e{left:285.119886pt;}
.x2{left:287.679885pt;}
.x1c{left:288.799884pt;}
.x29{left:289.919884pt;}
.x40{left:291.839883pt;}
.x24{left:297.119881pt;}
.x18{left:299.039880pt;}
.x53{left:308.959876pt;}
.x16{left:319.199872pt;}
.x39{left:321.439871pt;}
.x37{left:329.119868pt;}
.x6a{left:332.479867pt;}
.x3b{left:333.599867pt;}
.x34{left:340.639864pt;}
.x3f{left:344.479862pt;}
.xb{left:369.274519pt;}
.x6{left:371.199852pt;}
.x28{left:373.119851pt;}
.x2f{left:375.359850pt;}
.x2a{left:378.553182pt;}
.x9{left:380.954514pt;}
.x56{left:382.399847pt;}
.x45{left:383.519847pt;}
.xf{left:393.593176pt;}
.x30{left:394.559842pt;}
.x57{left:396.319841pt;}
.x58{left:402.713172pt;}
.x47{left:409.599836pt;}
.x12{left:410.719836pt;}
.x33{left:418.879832pt;}
.x13{left:420.799832pt;}
.x27{left:422.239831pt;}
.x10{left:427.839829pt;}
.x2c{left:439.359824pt;}
.x59{left:440.479824pt;}
.x67{left:441.919823pt;}
.x5a{left:450.713153pt;}
.xc{left:452.479819pt;}
.x43{left:454.879818pt;}
.x4e{left:464.799814pt;}
.x62{left:472.313144pt;}
.x38{left:485.119806pt;}
.x60{left:492.479803pt;}
.x5b{left:498.719801pt;}
.x44{left:513.119795pt;}
.x4f{left:526.719789pt;}
.x19{left:538.879784pt;}
.x51{left:545.919782pt;}
.x41{left:547.679781pt;}
.x5c{left:548.639781pt;}
.x4a{left:553.119779pt;}
.x68{left:554.879778pt;}
.x25{left:556.159778pt;}
.x48{left:589.599764pt;}
.x54{left:590.879764pt;}
.x26{left:593.279763pt;}
.x5d{left:594.713095pt;}
.x69{left:596.479761pt;}
.x3{left:601.119760pt;}
.x2b{left:611.199756pt;}
.x1a{left:614.399807pt;}
.x65{left:623.679751pt;}
.x46{left:628.639749pt;}
.x2e{left:634.879746pt;}
.x2d{left:636.959745pt;}
.x42{left:638.239745pt;}
.x63{left:657.599737pt;}
.x31{left:658.559737pt;}
.x5e{left:678.079729pt;}
.x64{left:690.719724pt;}
.x7{left:699.840000pt;}
}




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