
    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_c4df22dbbb8d2ac21793aeee.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_84d890afaaf8091b0b66812b.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_bc0dc724f76dbe39941121d6.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_2ee9c04087d4972a26ba8e1d.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_bb2024edfeaa04436d1b344e.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_1d2c53baa8ab8e5891f7d970.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_baed5403ee16bc1b6c4b7084.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e6ec898913068ddfece8c62.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_71f4c18de2613db8807b8d81.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_192ba68cdee341a60a01e8ba.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_290b59fa716614c2ed15f17e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1c8553c54d533770c0ff7eed.woff2')format("woff");}.ffc{font-family:ffc;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;}
.mb{transform:matrix(0.202877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202877,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.204773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204773,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m9{transform:matrix(0.220304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220304,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);}
.m6{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-34.559986px;}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.062743px;}
.ls1{letter-spacing:0.063403px;}
.ls6{letter-spacing:0.116648px;}
.ls7{letter-spacing:6.663957px;}
.ls9{letter-spacing:46.147902px;}
.ls3{letter-spacing:70.905482px;}
.ls5{letter-spacing:70.905572px;}
.ls2{letter-spacing:185.606580px;}
.ls0{letter-spacing:1702.487859px;}
.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;}
}
.ws4{word-spacing:-32.462730px;}
.ws0{word-spacing:-16.623396px;}
.ws5{word-spacing:-16.613273px;}
.ws3{word-spacing:-15.011994px;}
.ws2{word-spacing:-14.939994px;}
.ws1{word-spacing:-14.219994px;}
.ws7{word-spacing:-12.059995px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-6.493657px;}
._7{margin-left:-5.465858px;}
._1{margin-left:-4.191607px;}
._6{margin-left:-2.774412px;}
._2{margin-left:-1.750216px;}
._0{width:1.152810px;}
._4{width:2.541030px;}
._5{width:3.989255px;}
._8{width:5.950905px;}
._9{width:7.273712px;}
._b{width:8.285933px;}
._10{width:9.860756px;}
._12{width:11.023388px;}
._11{width:12.071878px;}
._a{width:13.587002px;}
._15{width:15.999499px;}
._14{width:17.203106px;}
._c{width:18.517485px;}
._f{width:19.939291px;}
._e{width:21.053304px;}
._16{width:22.955369px;}
._17{width:23.977500px;}
._d{width:31.948839px;}
._13{width:33.696259px;}
.fcc{color:transparent;}
.fc9{color:rgb(0,32,96);}
.fc8{color:rgb(227,108,10);}
.fc7{color:rgb(79,129,189);}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fca{color:rgb(44,62,80);}
.fc2{color:rgb(31,73,124);}
.fcb{color:rgb(51,51,51);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs6{font-size:56.879977px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y4{bottom:-14.039994px;}
.y0{bottom:0.000000px;}
.yb9{bottom:3.239815px;}
.ybc{bottom:3.239831px;}
.yc2{bottom:3.239863px;}
.ybf{bottom:3.419847px;}
.y9{bottom:3.959980px;}
.ya{bottom:28.259989px;}
.y8{bottom:46.260000px;}
.y6{bottom:50.219980px;}
.y7{bottom:51.839979px;}
.y90{bottom:132.839947px;}
.y6d{bottom:134.099946px;}
.y17{bottom:142.199943px;}
.ycc{bottom:143.099943px;}
.yab{bottom:149.399940px;}
.y8f{bottom:150.119940px;}
.y6c{bottom:151.379939px;}
.ycb{bottom:156.599937px;}
.y16{bottom:159.479936px;}
.yaa{bottom:166.679933px;}
.y8e{bottom:167.399933px;}
.y6b{bottom:168.659933px;}
.y15{bottom:176.759929px;}
.yca{bottom:179.639928px;}
.ya9{bottom:183.959926px;}
.y8d{bottom:184.679926px;}
.y8c{bottom:201.779919px;}
.yc9{bottom:202.499919px;}
.y6a{bottom:203.399919px;}
.y14{bottom:209.519916px;}
.ya8{bottom:213.839914px;}
.y8b{bottom:220.859912px;}
.yc8{bottom:225.179910px;}
.y13{bottom:236.699905px;}
.y69{bottom:237.419905px;}
.y8a{bottom:238.139905px;}
.ya7{bottom:242.999903px;}
.yc7{bottom:247.859901px;}
.y89{bottom:257.039897px;}
.ya6{bottom:259.919896px;}
.yc6{bottom:261.359895px;}
.y68{bottom:271.619891px;}
.y88{bottom:274.319890px;}
.ya5{bottom:276.839889px;}
.yc5{bottom:284.399886px;}
.y67{bottom:288.899884px;}
.y40{bottom:291.599883px;}
.yc4{bottom:300.959880px;}
.y66{bottom:306.179878px;}
.y2a{bottom:306.359877px;}
.y87{bottom:308.699877px;}
.y3f{bottom:308.879876px;}
.y65{bottom:323.459871px;}
.y3e{bottom:326.159870px;}
.yc3{bottom:327.239869px;}
.ya4{bottom:335.699866px;}
.yc1{bottom:339.660000px;}
.y64{bottom:340.739864px;}
.y3d{bottom:344.159862px;}
.y86{bottom:345.239862px;}
.y63{bottom:358.019857px;}
.yc0{bottom:360.179856px;}
.y85{bottom:363.959854px;}
.ya3{bottom:365.579854px;}
.y62{bottom:375.479850px;}
.ybe{bottom:379.620000px;}
.ya2{bottom:384.479846px;}
.y61{bottom:392.759843px;}
.y84{bottom:396.179842px;}
.ybd{bottom:400.319840px;}
.y3c{bottom:402.659839px;}
.ya1{bottom:403.379839px;}
.y60{bottom:410.039836px;}
.y83{bottom:418.679833px;}
.ybb{bottom:419.760000px;}
.ya0{bottom:422.459831px;}
.y5f{bottom:427.319829px;}
.y29{bottom:427.679829px;}
.y3b{bottom:431.459827px;}
.y82{bottom:435.959826px;}
.yba{bottom:440.279824px;}
.y9f{bottom:441.359823px;}
.y5e{bottom:444.599822px;}
.y81{bottom:453.239819px;}
.yb8{bottom:459.720000px;}
.y9e{bottom:460.439816px;}
.y5d{bottom:461.879815px;}
.y3a{bottom:462.419815px;}
.y80{bottom:470.519812px;}
.y39{bottom:478.979808px;}
.yb7{bottom:480.239808px;}
.y5c{bottom:484.559806px;}
.y7f{bottom:487.799805px;}
.y38{bottom:495.539802px;}
.y9d{bottom:496.079802px;}
.y28{bottom:496.979801px;}
.y5b{bottom:501.839799px;}
.yb6{bottom:502.919799px;}
.y7e{bottom:505.079798px;}
.y37{bottom:511.919795px;}
.y9c{bottom:513.359795px;}
.yb5{bottom:520.199792px;}
.y7d{bottom:522.359791px;}
.y27{bottom:522.899791px;}
.y36{bottom:528.479789px;}
.y5a{bottom:529.199788px;}
.y9b{bottom:530.639788px;}
.y7c{bottom:539.819784px;}
.yb4{bottom:542.519783px;}
.y35{bottom:545.039782px;}
.y59{bottom:556.019778px;}
.y26{bottom:557.639777px;}
.y9a{bottom:560.519776px;}
.y34{bottom:561.599775px;}
.y25{bottom:572.939771px;}
.y58{bottom:573.299771px;}
.y7b{bottom:573.659771px;}
.yb3{bottom:574.379770px;}
.y33{bottom:578.159769px;}
.y99{bottom:585.539766px;}
.y24{bottom:588.239765px;}
.yb2{bottom:591.659763px;}
.y32{bottom:594.719762px;}
.y57{bottom:600.839760px;}
.y23{bottom:602.459759px;}
.y98{bottom:605.519758px;}
.y7a{bottom:608.399757px;}
.yb1{bottom:608.939756px;}
.y31{bottom:611.099756px;}
.yb0{bottom:626.219750px;}
.y30{bottom:627.659749px;}
.y56{bottom:628.559749px;}
.y22{bottom:635.939746px;}
.y79{bottom:642.959743px;}
.yaf{bottom:643.499743px;}
.y2f{bottom:644.219742px;}
.y55{bottom:645.659742px;}
.y2e{bottom:660.779736px;}
.y21{bottom:669.419732px;}
.y54{bottom:673.019731px;}
.y2d{bottom:677.339729px;}
.y78{bottom:677.519729px;}
.yae{bottom:677.879729px;}
.y20{bottom:684.899726px;}
.y53{bottom:690.299724px;}
.y2c{bottom:693.899722px;}
.y77{bottom:694.799722px;}
.yad{bottom:695.159722px;}
.y52{bottom:707.579717px;}
.y76{bottom:712.079715px;}
.y1f{bottom:718.919712px;}
.y2b{bottom:719.099712px;}
.y51{bottom:724.859710px;}
.y50{bottom:741.959703px;}
.y1e{bottom:744.839702px;}
.y75{bottom:746.279701px;}
.y4f{bottom:759.239696px;}
.y12{bottom:776.519689px;}
.y74{bottom:780.839688px;}
.y11{bottom:793.799682px;}
.y4e{bottom:811.079676px;}
.y10{bottom:812.159675px;}
.y73{bottom:815.399674px;}
.y4d{bottom:828.359669px;}
.yf{bottom:830.519668px;}
.ye{bottom:848.699661px;}
.y72{bottom:849.959660px;}
.y4c{bottom:857.159657px;}
.yd{bottom:866.879653px;}
.y71{bottom:867.239653px;}
.y97{bottom:882.899647px;}
.y4b{bottom:884.519646px;}
.yc{bottom:885.779646px;}
.y96{bottom:900.179640px;}
.y4a{bottom:901.799639px;}
.yb{bottom:914.759634px;}
.y95{bottom:917.279633px;}
.y49{bottom:919.079632px;}
.y94{bottom:934.559626px;}
.y48{bottom:936.179626px;}
.y93{bottom:951.839619px;}
.y47{bottom:953.459619px;}
.y70{bottom:953.639619px;}
.y1c{bottom:954.539618px;}
.y92{bottom:969.119612px;}
.y46{bottom:970.739612px;}
.y18{bottom:975.239610px;}
.y1b{bottom:977.939609px;}
.y6f{bottom:987.839605px;}
.y45{bottom:988.019605px;}
.y91{bottom:1005.119598px;}
.y44{bottom:1005.299598px;}
.y1a{bottom:1013.579595px;}
.y6e{bottom:1022.399591px;}
.y43{bottom:1022.579591px;}
.y42{bottom:1039.679584px;}
.y19{bottom:1045.979582px;}
.y1d{bottom:1050.659580px;}
.y41{bottom:1056.959577px;}
.yac{bottom:1057.139577px;}
.y5{bottom:1111.139556px;}
.y3{bottom:1114.019554px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h3{height:0.720000px;}
.h16{height:16.560000px;}
.h17{height:16.740000px;}
.h6{height:18.720000px;}
.h5{height:33.518307px;}
.h18{height:35.143580px;}
.h4{height:36.597642px;}
.h10{height:36.624009px;}
.h11{height:37.520493px;}
.hc{height:38.549516px;}
.hf{height:39.339828px;}
.h7{height:39.830258px;}
.h14{height:40.501390px;}
.ha{height:41.493499px;}
.h1{height:41.522679px;}
.he{height:41.756116px;}
.h15{height:43.506897px;}
.h13{height:43.536076px;}
.hd{height:43.682678px;}
.h9{height:44.893107px;}
.h2{height:46.025138px;}
.hb{height:48.796855px;}
.h12{height:50.027324px;}
.h8{height:57.092321px;}
.h0{height:1188.000000px;}
.w18{width:2.340000px;}
.w20{width:2.700000px;}
.w26{width:2.880000px;}
.w4{width:3.060000px;}
.wd{width:3.240000px;}
.w9{width:3.420000px;}
.w24{width:3.600000px;}
.w7{width:3.780000px;}
.w1c{width:3.960000px;}
.w11{width:4.140000px;}
.w1a{width:4.320000px;}
.w2d{width:4.500000px;}
.wf{width:4.860000px;}
.w2{width:6.480000px;}
.w1{width:7.560000px;}
.w1d{width:10.620000px;}
.w22{width:14.760000px;}
.w29{width:18.900000px;}
.w8{width:21.420000px;}
.wc{width:21.600000px;}
.w31{width:21.780000px;}
.we{width:25.200000px;}
.w1f{width:28.260000px;}
.w14{width:28.800000px;}
.w1b{width:30.960000px;}
.w33{width:32.580000px;}
.w28{width:32.760000px;}
.w5{width:33.300000px;}
.w10{width:33.480000px;}
.wa{width:34.560000px;}
.w2c{width:35.820000px;}
.wb{width:36.360000px;}
.w2f{width:37.620000px;}
.w23{width:38.160000px;}
.w12{width:38.340000px;}
.w16{width:40.140000px;}
.w2a{width:40.860000px;}
.w25{width:42.120000px;}
.w32{width:43.200000px;}
.w30{width:47.520000px;}
.w27{width:48.780000px;}
.w15{width:49.860000px;}
.w17{width:50.580000px;}
.w21{width:51.300000px;}
.w1e{width:53.100000px;}
.w19{width:57.420000px;}
.w3{width:57.600000px;}
.w6{width:60.480000px;}
.w2b{width:61.740000px;}
.w2e{width:62.280000px;}
.w13{width:68.940000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:80.999968px;}
.x1d{left:89.819964px;}
.x1a{left:95.579962px;}
.x4{left:107.279957px;}
.x1f{left:110.879956px;}
.x1b{left:113.759954px;}
.x29{left:115.199954px;}
.xe{left:116.999442px;}
.xf{left:118.079953px;}
.x19{left:123.479951px;}
.x10{left:124.919950px;}
.x27{left:128.519949px;}
.x25{left:131.039948px;}
.x26{left:132.652597px;}
.x28{left:133.739947px;}
.x67{left:144.179942px;}
.x1e{left:150.479940px;}
.x1c{left:152.459939px;}
.x2c{left:162.541960px;}
.x20{left:166.679933px;}
.x8{left:168.659933px;}
.x4e{left:190.800000px;}
.x4f{left:193.500000px;}
.x12{left:194.759922px;}
.x2e{left:220.140000px;}
.x2f{left:223.200000px;}
.x11{left:231.839907px;}
.x40{left:235.260000px;}
.x21{left:236.519844px;}
.x22{left:237.599905px;}
.x50{left:244.800000px;}
.x7{left:252.719899px;}
.x30{left:256.500000px;}
.xd{left:260.099854px;}
.x15{left:262.259895px;}
.x41{left:263.880000px;}
.x2a{left:270.899892px;}
.x2{left:275.579890px;}
.x23{left:281.699898px;}
.x13{left:285.119886px;}
.x5a{left:299.700000px;}
.xb{left:328.132456px;}
.x9{left:336.952365px;}
.x16{left:340.559864px;}
.x2b{left:345.779862px;}
.x14{left:347.039861px;}
.xa{left:353.872374px;}
.x2d{left:358.741179px;}
.x5{left:376.379849px;}
.x5b{left:394.380000px;}
.xc{left:396.719737px;}
.x5c{left:398.880000px;}
.x42{left:408.600000px;}
.x43{left:412.380000px;}
.x31{left:419.220000px;}
.x32{left:423.000000px;}
.x51{left:437.940000px;}
.x52{left:442.800000px;}
.x33{left:444.420000px;}
.x34{left:447.840000px;}
.x44{left:452.520000px;}
.x45{left:456.300000px;}
.x5d{left:461.160000px;}
.x5e{left:464.220000px;}
.x53{left:480.960000px;}
.x35{left:482.400000px;}
.x54{left:484.560000px;}
.x36{left:486.180000px;}
.x5f{left:501.660000px;}
.x60{left:505.800000px;}
.x46{left:506.880000px;}
.x47{left:509.220000px;}
.x37{left:522.540000px;}
.x38{left:526.320000px;}
.x55{left:529.920000px;}
.x39{left:547.740000px;}
.x3a{left:550.980000px;}
.x56{left:554.040000px;}
.x61{left:556.920000px;}
.x48{left:566.640000px;}
.x24{left:570.059772px;}
.x3b{left:576.180000px;}
.x62{left:578.700000px;}
.x3c{left:581.040000px;}
.x63{left:582.300000px;}
.x49{left:601.920000px;}
.x4a{left:605.880000px;}
.x17{left:607.139757px;}
.x3d{left:614.340000px;}
.x4b{left:616.500000px;}
.x3e{left:618.480000px;}
.x4c{left:621.360000px;}
.x64{left:625.500000px;}
.x65{left:629.100000px;}
.x57{left:639.360000px;}
.x58{left:643.680000px;}
.x3f{left:656.820000px;}
.x66{left:661.500000px;}
.x59{left:662.580000px;}
.x4d{left:674.460000px;}
.x18{left:703.439793px;}
.x3{left:718.199713px;}
.x6{left:830.160000px;}
@media print{
.v3{vertical-align:-30.719988pt;}
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.055772pt;}
.ls1{letter-spacing:0.056358pt;}
.ls6{letter-spacing:0.103687pt;}
.ls7{letter-spacing:5.923518pt;}
.ls9{letter-spacing:41.020357pt;}
.ls3{letter-spacing:63.027095pt;}
.ls5{letter-spacing:63.027175pt;}
.ls2{letter-spacing:164.983626pt;}
.ls0{letter-spacing:1513.322541pt;}
.ws4{word-spacing:-28.855760pt;}
.ws0{word-spacing:-14.776352pt;}
.ws5{word-spacing:-14.767354pt;}
.ws3{word-spacing:-13.343995pt;}
.ws2{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.639995pt;}
.ws7{word-spacing:-10.719996pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-5.772139pt;}
._7{margin-left:-4.858541pt;}
._1{margin-left:-3.725872pt;}
._6{margin-left:-2.466144pt;}
._2{margin-left:-1.555748pt;}
._0{width:1.024720pt;}
._4{width:2.258694pt;}
._5{width:3.546004pt;}
._8{width:5.289693pt;}
._9{width:6.465521pt;}
._b{width:7.365274pt;}
._10{width:8.765116pt;}
._12{width:9.798567pt;}
._11{width:10.730559pt;}
._a{width:12.077335pt;}
._15{width:14.221777pt;}
._14{width:15.291650pt;}
._c{width:16.459987pt;}
._f{width:17.723815pt;}
._e{width:18.714048pt;}
._16{width:20.404773pt;}
._17{width:21.313333pt;}
._d{width:28.398968pt;}
._13{width:29.952230pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs6{font-size:50.559980pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y4{bottom:-12.479995pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:2.879835pt;}
.ybc{bottom:2.879850pt;}
.yc2{bottom:2.879878pt;}
.ybf{bottom:3.039864pt;}
.y9{bottom:3.519982pt;}
.ya{bottom:25.119990pt;}
.y8{bottom:41.120000pt;}
.y6{bottom:44.639982pt;}
.y7{bottom:46.079982pt;}
.y90{bottom:118.079953pt;}
.y6d{bottom:119.199952pt;}
.y17{bottom:126.399949pt;}
.ycc{bottom:127.199949pt;}
.yab{bottom:132.799947pt;}
.y8f{bottom:133.439947pt;}
.y6c{bottom:134.559946pt;}
.ycb{bottom:139.199944pt;}
.y16{bottom:141.759943pt;}
.yaa{bottom:148.159941pt;}
.y8e{bottom:148.799940pt;}
.y6b{bottom:149.919940pt;}
.y15{bottom:157.119937pt;}
.yca{bottom:159.679936pt;}
.ya9{bottom:163.519935pt;}
.y8d{bottom:164.159934pt;}
.y8c{bottom:179.359928pt;}
.yc9{bottom:179.999928pt;}
.y6a{bottom:180.799928pt;}
.y14{bottom:186.239926pt;}
.ya8{bottom:190.079924pt;}
.y8b{bottom:196.319921pt;}
.yc8{bottom:200.159920pt;}
.y13{bottom:210.399916pt;}
.y69{bottom:211.039916pt;}
.y8a{bottom:211.679915pt;}
.ya7{bottom:215.999914pt;}
.yc7{bottom:220.319912pt;}
.y89{bottom:228.479909pt;}
.ya6{bottom:231.039908pt;}
.yc6{bottom:232.319907pt;}
.y68{bottom:241.439903pt;}
.y88{bottom:243.839902pt;}
.ya5{bottom:246.079902pt;}
.yc5{bottom:252.799899pt;}
.y67{bottom:256.799897pt;}
.y40{bottom:259.199896pt;}
.yc4{bottom:267.519893pt;}
.y66{bottom:272.159891pt;}
.y2a{bottom:272.319891pt;}
.y87{bottom:274.399890pt;}
.y3f{bottom:274.559890pt;}
.y65{bottom:287.519885pt;}
.y3e{bottom:289.919884pt;}
.yc3{bottom:290.879884pt;}
.ya4{bottom:298.399881pt;}
.yc1{bottom:301.920000pt;}
.y64{bottom:302.879879pt;}
.y3d{bottom:305.919878pt;}
.y86{bottom:306.879877pt;}
.y63{bottom:318.239873pt;}
.yc0{bottom:320.159872pt;}
.y85{bottom:323.519871pt;}
.ya3{bottom:324.959870pt;}
.y62{bottom:333.759866pt;}
.ybe{bottom:337.440000pt;}
.ya2{bottom:341.759863pt;}
.y61{bottom:349.119860pt;}
.y84{bottom:352.159859pt;}
.ybd{bottom:355.839858pt;}
.y3c{bottom:357.919857pt;}
.ya1{bottom:358.559857pt;}
.y60{bottom:364.479854pt;}
.y83{bottom:372.159851pt;}
.ybb{bottom:373.120000pt;}
.ya0{bottom:375.519850pt;}
.y5f{bottom:379.839848pt;}
.y29{bottom:380.159848pt;}
.y3b{bottom:383.519847pt;}
.y82{bottom:387.519845pt;}
.yba{bottom:391.359843pt;}
.y9f{bottom:392.319843pt;}
.y5e{bottom:395.199842pt;}
.y81{bottom:402.879839pt;}
.yb8{bottom:408.640000pt;}
.y9e{bottom:409.279836pt;}
.y5d{bottom:410.559836pt;}
.y3a{bottom:411.039836pt;}
.y80{bottom:418.239833pt;}
.y39{bottom:425.759830pt;}
.yb7{bottom:426.879829pt;}
.y5c{bottom:430.719828pt;}
.y7f{bottom:433.599827pt;}
.y38{bottom:440.479824pt;}
.y9d{bottom:440.959824pt;}
.y28{bottom:441.759823pt;}
.y5b{bottom:446.079822pt;}
.yb6{bottom:447.039821pt;}
.y7e{bottom:448.959820pt;}
.y37{bottom:455.039818pt;}
.y9c{bottom:456.319817pt;}
.yb5{bottom:462.399815pt;}
.y7d{bottom:464.319814pt;}
.y27{bottom:464.799814pt;}
.y36{bottom:469.759812pt;}
.y5a{bottom:470.399812pt;}
.y9b{bottom:471.679811pt;}
.y7c{bottom:479.839808pt;}
.yb4{bottom:482.239807pt;}
.y35{bottom:484.479806pt;}
.y59{bottom:494.239802pt;}
.y26{bottom:495.679802pt;}
.y9a{bottom:498.239801pt;}
.y34{bottom:499.199800pt;}
.y25{bottom:509.279796pt;}
.y58{bottom:509.599796pt;}
.y7b{bottom:509.919796pt;}
.yb3{bottom:510.559796pt;}
.y33{bottom:513.919794pt;}
.y99{bottom:520.479792pt;}
.y24{bottom:522.879791pt;}
.yb2{bottom:525.919790pt;}
.y32{bottom:528.639789pt;}
.y57{bottom:534.079786pt;}
.y23{bottom:535.519786pt;}
.y98{bottom:538.239785pt;}
.y7a{bottom:540.799784pt;}
.yb1{bottom:541.279783pt;}
.y31{bottom:543.199783pt;}
.yb0{bottom:556.639777pt;}
.y30{bottom:557.919777pt;}
.y56{bottom:558.719777pt;}
.y22{bottom:565.279774pt;}
.y79{bottom:571.519771pt;}
.yaf{bottom:571.999771pt;}
.y2f{bottom:572.639771pt;}
.y55{bottom:573.919770pt;}
.y2e{bottom:587.359765pt;}
.y21{bottom:595.039762pt;}
.y54{bottom:598.239761pt;}
.y2d{bottom:602.079759pt;}
.y78{bottom:602.239759pt;}
.yae{bottom:602.559759pt;}
.y20{bottom:608.799756pt;}
.y53{bottom:613.599755pt;}
.y2c{bottom:616.799753pt;}
.y77{bottom:617.599753pt;}
.yad{bottom:617.919753pt;}
.y52{bottom:628.959748pt;}
.y76{bottom:632.959747pt;}
.y1f{bottom:639.039744pt;}
.y2b{bottom:639.199744pt;}
.y51{bottom:644.319742pt;}
.y50{bottom:659.519736pt;}
.y1e{bottom:662.079735pt;}
.y75{bottom:663.359735pt;}
.y4f{bottom:674.879730pt;}
.y12{bottom:690.239724pt;}
.y74{bottom:694.079722pt;}
.y11{bottom:705.599718pt;}
.y4e{bottom:720.959712pt;}
.y10{bottom:721.919711pt;}
.y73{bottom:724.799710pt;}
.y4d{bottom:736.319705pt;}
.yf{bottom:738.239705pt;}
.ye{bottom:754.399698pt;}
.y72{bottom:755.519698pt;}
.y4c{bottom:761.919695pt;}
.yd{bottom:770.559692pt;}
.y71{bottom:770.879692pt;}
.y97{bottom:784.799686pt;}
.y4b{bottom:786.239686pt;}
.yc{bottom:787.359685pt;}
.y96{bottom:800.159680pt;}
.y4a{bottom:801.599679pt;}
.yb{bottom:813.119675pt;}
.y95{bottom:815.359674pt;}
.y49{bottom:816.959673pt;}
.y94{bottom:830.719668pt;}
.y48{bottom:832.159667pt;}
.y93{bottom:846.079662pt;}
.y47{bottom:847.519661pt;}
.y70{bottom:847.679661pt;}
.y1c{bottom:848.479661pt;}
.y92{bottom:861.439655pt;}
.y46{bottom:862.879655pt;}
.y18{bottom:866.879653pt;}
.y1b{bottom:869.279652pt;}
.y6f{bottom:878.079649pt;}
.y45{bottom:878.239649pt;}
.y91{bottom:893.439643pt;}
.y44{bottom:893.599643pt;}
.y1a{bottom:900.959640pt;}
.y6e{bottom:908.799636pt;}
.y43{bottom:908.959636pt;}
.y42{bottom:924.159630pt;}
.y19{bottom:929.759628pt;}
.y1d{bottom:933.919626pt;}
.y41{bottom:939.519624pt;}
.yac{bottom:939.679624pt;}
.y5{bottom:987.679605pt;}
.y3{bottom:990.239604pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h3{height:0.640000pt;}
.h16{height:14.720000pt;}
.h17{height:14.880000pt;}
.h6{height:16.640000pt;}
.h5{height:29.794051pt;}
.h18{height:31.238738pt;}
.h4{height:32.531237pt;}
.h10{height:32.554674pt;}
.h11{height:33.351549pt;}
.hc{height:34.266236pt;}
.hf{height:34.968736pt;}
.h7{height:35.404673pt;}
.h14{height:36.001236pt;}
.ha{height:36.883110pt;}
.h1{height:36.909048pt;}
.he{height:37.116548pt;}
.h15{height:38.672797pt;}
.h13{height:38.698735pt;}
.hd{height:38.829047pt;}
.h9{height:39.904984pt;}
.h2{height:40.911234pt;}
.hb{height:43.374983pt;}
.h12{height:44.468732pt;}
.h8{height:50.748730pt;}
.h0{height:1056.000000pt;}
.w18{width:2.080000pt;}
.w20{width:2.400000pt;}
.w26{width:2.560000pt;}
.w4{width:2.720000pt;}
.wd{width:2.880000pt;}
.w9{width:3.040000pt;}
.w24{width:3.200000pt;}
.w7{width:3.360000pt;}
.w1c{width:3.520000pt;}
.w11{width:3.680000pt;}
.w1a{width:3.840000pt;}
.w2d{width:4.000000pt;}
.wf{width:4.320000pt;}
.w2{width:5.760000pt;}
.w1{width:6.720000pt;}
.w1d{width:9.440000pt;}
.w22{width:13.120000pt;}
.w29{width:16.800000pt;}
.w8{width:19.040000pt;}
.wc{width:19.200000pt;}
.w31{width:19.360000pt;}
.we{width:22.400000pt;}
.w1f{width:25.120000pt;}
.w14{width:25.600000pt;}
.w1b{width:27.520000pt;}
.w33{width:28.960000pt;}
.w28{width:29.120000pt;}
.w5{width:29.600000pt;}
.w10{width:29.760000pt;}
.wa{width:30.720000pt;}
.w2c{width:31.840000pt;}
.wb{width:32.320000pt;}
.w2f{width:33.440000pt;}
.w23{width:33.920000pt;}
.w12{width:34.080000pt;}
.w16{width:35.680000pt;}
.w2a{width:36.320000pt;}
.w25{width:37.440000pt;}
.w32{width:38.400000pt;}
.w30{width:42.240000pt;}
.w27{width:43.360000pt;}
.w15{width:44.320000pt;}
.w17{width:44.960000pt;}
.w21{width:45.600000pt;}
.w1e{width:47.200000pt;}
.w19{width:51.040000pt;}
.w3{width:51.200000pt;}
.w6{width:53.760000pt;}
.w2b{width:54.880000pt;}
.w2e{width:55.360000pt;}
.w13{width:61.280000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.999971pt;}
.x1d{left:79.839968pt;}
.x1a{left:84.959966pt;}
.x4{left:95.359962pt;}
.x1f{left:98.559961pt;}
.x1b{left:101.119960pt;}
.x29{left:102.399959pt;}
.xe{left:103.999504pt;}
.xf{left:104.959958pt;}
.x19{left:109.759956pt;}
.x10{left:111.039956pt;}
.x27{left:114.239954pt;}
.x25{left:116.479953pt;}
.x26{left:117.913420pt;}
.x28{left:118.879952pt;}
.x67{left:128.159949pt;}
.x1e{left:133.759946pt;}
.x1c{left:135.519946pt;}
.x2c{left:144.481743pt;}
.x20{left:148.159941pt;}
.x8{left:149.919940pt;}
.x4e{left:169.600000pt;}
.x4f{left:172.000000pt;}
.x12{left:173.119931pt;}
.x2e{left:195.680000pt;}
.x2f{left:198.400000pt;}
.x11{left:206.079918pt;}
.x40{left:209.120000pt;}
.x21{left:210.239861pt;}
.x22{left:211.199916pt;}
.x50{left:217.600000pt;}
.x7{left:224.639910pt;}
.x30{left:228.000000pt;}
.xd{left:231.199870pt;}
.x15{left:233.119907pt;}
.x41{left:234.560000pt;}
.x2a{left:240.799904pt;}
.x2{left:244.959902pt;}
.x23{left:250.399910pt;}
.x13{left:253.439899pt;}
.x5a{left:266.400000pt;}
.xb{left:291.673295pt;}
.x9{left:299.513214pt;}
.x16{left:302.719879pt;}
.x2b{left:307.359877pt;}
.x14{left:308.479877pt;}
.xa{left:314.553221pt;}
.x2d{left:318.881048pt;}
.x5{left:334.559866pt;}
.x5b{left:350.560000pt;}
.xc{left:352.639766pt;}
.x5c{left:354.560000pt;}
.x42{left:363.200000pt;}
.x43{left:366.560000pt;}
.x31{left:372.640000pt;}
.x32{left:376.000000pt;}
.x51{left:389.280000pt;}
.x52{left:393.600000pt;}
.x33{left:395.040000pt;}
.x34{left:398.080000pt;}
.x44{left:402.240000pt;}
.x45{left:405.600000pt;}
.x5d{left:409.920000pt;}
.x5e{left:412.640000pt;}
.x53{left:427.520000pt;}
.x35{left:428.800000pt;}
.x54{left:430.720000pt;}
.x36{left:432.160000pt;}
.x5f{left:445.920000pt;}
.x60{left:449.600000pt;}
.x46{left:450.560000pt;}
.x47{left:452.640000pt;}
.x37{left:464.480000pt;}
.x38{left:467.840000pt;}
.x55{left:471.040000pt;}
.x39{left:486.880000pt;}
.x3a{left:489.760000pt;}
.x56{left:492.480000pt;}
.x61{left:495.040000pt;}
.x48{left:503.680000pt;}
.x24{left:506.719797pt;}
.x3b{left:512.160000pt;}
.x62{left:514.400000pt;}
.x3c{left:516.480000pt;}
.x63{left:517.600000pt;}
.x49{left:535.040000pt;}
.x4a{left:538.560000pt;}
.x17{left:539.679784pt;}
.x3d{left:546.080000pt;}
.x4b{left:548.000000pt;}
.x3e{left:549.760000pt;}
.x4c{left:552.320000pt;}
.x64{left:556.000000pt;}
.x65{left:559.200000pt;}
.x57{left:568.320000pt;}
.x58{left:572.160000pt;}
.x3f{left:583.840000pt;}
.x66{left:588.000000pt;}
.x59{left:588.960000pt;}
.x4d{left:599.520000pt;}
.x18{left:625.279816pt;}
.x3{left:638.399745pt;}
.x6{left:737.920000pt;}
}




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