
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d66ea11d03a5dcb2905ac608.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c801d2b6706dca1bdf78349a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_72f234d5677ddd59b5cae300.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_d3fc246b2c5511ff1cd4ccfd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_c89d407c126d9b09012c1ab5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_3889adf0329e40e80d900bcf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_b522682943cd319cd34b21a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940430;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_42f9f004d06c8bfc82bda740.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_6265b5d6b827e492f20257b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_7bf23e8201a2848dc7d8ed19.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_d868cf0fe021c8956114394c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_ed49b50d152f2b31ea3c1956.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3f62b614dbb0d9a4eac10b6f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9eae94890efd4e0c2c9b6559.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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;}
.m2{transform:matrix(0.239634,0.000000,-0.079870,0.236898,0,0);-ms-transform:matrix(0.239634,0.000000,-0.079870,0.236898,0,0);-webkit-transform:matrix(0.239634,0.000000,-0.079870,0.236898,0,0);}
.m4{transform:matrix(0.240569,0.000000,-0.080182,0.236793,0,0);-ms-transform:matrix(0.240569,0.000000,-0.080182,0.236793,0,0);-webkit-transform:matrix(0.240569,0.000000,-0.080182,0.236793,0,0);}
.mb{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m6{transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252204,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252887,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253987,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255072,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-74.777734px;}
.v1{vertical-align:-53.811240px;}
.v3{vertical-align:-24.974762px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.974762px;}
.v7{vertical-align:27.360000px;}
.v5{vertical-align:51.763387px;}
.ls14{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls7{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.504000px;}
.ls18{letter-spacing:1.116000px;}
.ls3{letter-spacing:2.160000px;}
.ls1{letter-spacing:3.600000px;}
.ls12{letter-spacing:4.464000px;}
.ls16{letter-spacing:5.760000px;}
.ls5{letter-spacing:8.640000px;}
.ls1a{letter-spacing:12.960000px;}
.ls9{letter-spacing:16.560000px;}
.ls15{letter-spacing:18.720000px;}
.ls8{letter-spacing:22.320000px;}
.lsd{letter-spacing:30.214111px;}
.ls10{letter-spacing:33.840000px;}
.ls6{letter-spacing:39.600000px;}
.ls17{letter-spacing:40.637280px;}
.lsf{letter-spacing:52.560000px;}
.ls11{letter-spacing:60.480000px;}
.ls2{letter-spacing:72.720000px;}
.lsc{letter-spacing:258.069401px;}
.lse{letter-spacing:297.528893px;}
.lsa{letter-spacing:360.734488px;}
.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;}
}
.ws5{word-spacing:-74.333484px;}
.ws2{word-spacing:-72.000000px;}
.wsb{word-spacing:-54.850108px;}
.wsa{word-spacing:-54.376036px;}
.wsc{word-spacing:-51.665597px;}
.ws6{word-spacing:-45.784182px;}
.wsf{word-spacing:-21.420000px;}
.ws0{word-spacing:-21.396960px;}
.wsd{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.wse{word-spacing:-17.280000px;}
.ws7{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:49.638750px;}
.ws8{word-spacing:222.371372px;}
.ws9{word-spacing:249.572042px;}
._1b{margin-left:-449.729594px;}
._1d{margin-left:-427.470762px;}
._1a{margin-left:-398.627183px;}
._1c{margin-left:-330.797162px;}
._1f{margin-left:-295.507999px;}
._1e{margin-left:-280.431682px;}
._20{margin-left:-251.472092px;}
._21{margin-left:-236.308289px;}
._22{margin-left:-137.216876px;}
._25{margin-left:-129.408785px;}
._2{margin-left:-2.304000px;}
._0{margin-left:-1.080000px;}
._1{width:1.224000px;}
._b{width:2.256000px;}
._5{width:3.504000px;}
._16{width:4.752000px;}
._15{width:5.832000px;}
._d{width:7.704000px;}
._4{width:9.288000px;}
._3{width:10.656000px;}
._c{width:11.736000px;}
._e{width:13.320000px;}
._26{width:15.480000px;}
._17{width:16.776000px;}
._2a{width:19.296000px;}
._8{width:20.448000px;}
._12{width:22.248000px;}
._f{width:23.976000px;}
._10{width:25.092000px;}
._2d{width:26.784000px;}
._23{width:28.872000px;}
._24{width:29.964000px;}
._2b{width:31.416000px;}
._9{width:33.192000px;}
._a{width:34.488000px;}
._14{width:39.444000px;}
._13{width:40.968000px;}
._28{width:42.552000px;}
._27{width:46.008000px;}
._18{width:47.016000px;}
._29{width:52.320000px;}
._11{width:53.424000px;}
._19{width:55.188000px;}
._2c{width:59.520000px;}
._7{width:71.076000px;}
._6{width:72.432000px;}
.fc7{color:rgb(5,99,193);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(204,0,102);}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.248220px;}
.fse{font-size:41.464017px;}
.fsc{font-size:42.196662px;}
.fs8{font-size:43.350049px;}
.fs9{font-size:48.240000px;}
.fs15{font-size:54.867049px;}
.fs4{font-size:56.369538px;}
.fsb{font-size:57.729460px;}
.fs12{font-size:58.327307px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:70.306433px;}
.fsf{font-size:71.101036px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:72.357350px;}
.fs5{font-size:83.395595px;}
.fs2{font-size:84.240000px;}
.fs14{font-size:94.108556px;}
.fsa{font-size:99.045602px;}
.fs10{font-size:99.909122px;}
.fs13{font-size:106.400635px;}
.fs3{font-size:135.397967px;}
.fs16{font-size:141.351250px;}
.fs11{font-size:149.757760px;}
.y0{bottom:0.000000px;}
.y52{bottom:3.307435px;}
.y44{bottom:3.524491px;}
.y55{bottom:4.714244px;}
.y46{bottom:6.097326px;}
.y6b{bottom:6.526558px;}
.y5d{bottom:6.865210px;}
.y53{bottom:7.814180px;}
.y66{bottom:8.222221px;}
.y56{bottom:9.178532px;}
.y45{bottom:10.502976px;}
.y41{bottom:11.559737px;}
.y4e{bottom:12.685619px;}
.y40{bottom:20.077731px;}
.y70{bottom:25.221025px;}
.y6d{bottom:25.221049px;}
.y60{bottom:26.670052px;}
.y5f{bottom:26.670079px;}
.y68{bottom:30.886868px;}
.y6f{bottom:37.387366px;}
.y6c{bottom:42.887976px;}
.y5e{bottom:45.389741px;}
.y67{bottom:47.909444px;}
.y7{bottom:48.276000px;}
.y6e{bottom:53.423938px;}
.y61{bottom:56.601191px;}
.y6{bottom:68.616000px;}
.y5{bottom:92.376000px;}
.y58{bottom:120.456000px;}
.ya7{bottom:130.896000px;}
.y31{bottom:135.036000px;}
.y8c{bottom:135.756000px;}
.y54{bottom:139.965000px;}
.y57{bottom:148.896000px;}
.ya6{bottom:154.650000px;}
.y30{bottom:158.790000px;}
.y8b{bottom:159.510000px;}
.y51{bottom:170.190000px;}
.y50{bottom:177.690000px;}
.ya5{bottom:178.410000px;}
.y2f{bottom:182.550000px;}
.y8a{bottom:183.270000px;}
.y4d{bottom:199.140000px;}
.ya4{bottom:202.350000px;}
.y2e{bottom:206.490000px;}
.y89{bottom:207.030000px;}
.y4f{bottom:208.110000px;}
.ya3{bottom:228.810000px;}
.y2d{bottom:230.250000px;}
.y88{bottom:230.970000px;}
.y4c{bottom:248.070000px;}
.ya2{bottom:252.570000px;}
.y2c{bottom:254.010000px;}
.y87{bottom:254.730000px;}
.y4b{bottom:272.010000px;}
.ya1{bottom:276.510000px;}
.y2b{bottom:277.770000px;}
.y86{bottom:278.490000px;}
.y4a{bottom:295.815000px;}
.y2a{bottom:301.755000px;}
.y85{bottom:302.295000px;}
.ya0{bottom:303.015000px;}
.y49{bottom:319.575000px;}
.y29{bottom:325.515000px;}
.y84{bottom:326.235000px;}
.y9f{bottom:326.955000px;}
.y48{bottom:343.335000px;}
.y28{bottom:349.275000px;}
.y83{bottom:349.995000px;}
.y9e{bottom:350.715000px;}
.y47{bottom:367.275000px;}
.y27{bottom:373.035000px;}
.y82{bottom:373.755000px;}
.y9d{bottom:377.355000px;}
.y43{bottom:386.714959px;}
.y26{bottom:396.975000px;}
.y42{bottom:397.155000px;}
.y81{bottom:397.515000px;}
.y9c{bottom:401.115000px;}
.y3f{bottom:418.740000px;}
.y25{bottom:420.735000px;}
.y80{bottom:421.455000px;}
.y9b{bottom:425.055000px;}
.y3e{bottom:429.195000px;}
.y24{bottom:444.495000px;}
.y7f{bottom:445.215000px;}
.y9a{bottom:451.515000px;}
.y23{bottom:468.255000px;}
.y7e{bottom:468.975000px;}
.y99{bottom:478.155000px;}
.y3d{bottom:488.955000px;}
.y22{bottom:492.195000px;}
.y7d{bottom:492.735000px;}
.y98{bottom:502.095000px;}
.y3c{bottom:514.695000px;}
.y21{bottom:515.955000px;}
.y7c{bottom:516.675000px;}
.y97{bottom:528.555000px;}
.y3b{bottom:538.455000px;}
.y20{bottom:539.715000px;}
.y7b{bottom:540.435000px;}
.y96{bottom:552.495000px;}
.y3a{bottom:562.395000px;}
.y1f{bottom:563.475000px;}
.y7a{bottom:564.195000px;}
.y95{bottom:578.985000px;}
.y39{bottom:585.825000px;}
.y1e{bottom:587.265000px;}
.y79{bottom:587.985000px;}
.y94{bottom:605.625000px;}
.y38{bottom:605.805000px;}
.y1d{bottom:611.205000px;}
.y78{bottom:611.745000px;}
.y93{bottom:632.085000px;}
.y1c{bottom:634.965000px;}
.y77{bottom:635.685000px;}
.y92{bottom:656.025000px;}
.y1b{bottom:658.725000px;}
.y76{bottom:659.445000px;}
.y91{bottom:682.125000px;}
.y1a{bottom:682.485000px;}
.y75{bottom:683.205000px;}
.y90{bottom:706.065000px;}
.y19{bottom:706.425000px;}
.y74{bottom:706.965000px;}
.y18{bottom:730.185000px;}
.y73{bottom:730.905000px;}
.y17{bottom:753.945000px;}
.y72{bottom:754.665000px;}
.y16{bottom:777.345000px;}
.y8f{bottom:777.705000px;}
.y71{bottom:778.425000px;}
.y65{bottom:797.864919px;}
.y37{bottom:798.945000px;}
.y6a{bottom:799.439919px;}
.y15{bottom:801.645000px;}
.y69{bottom:818.925000px;}
.y36{bottom:822.705000px;}
.y14{bottom:825.405000px;}
.y35{bottom:846.465000px;}
.y13{bottom:849.210000px;}
.y34{bottom:870.450000px;}
.y12{bottom:872.610000px;}
.y8e{bottom:872.970000px;}
.y64{bottom:881.250000px;}
.y33{bottom:893.850000px;}
.y11{bottom:896.910000px;}
.y63{bottom:908.250000px;}
.y32{bottom:913.830000px;}
.y10{bottom:920.670000px;}
.y5c{bottom:929.789919px;}
.yf{bottom:944.430000px;}
.y62{bottom:949.290000px;}
.ye{bottom:967.830000px;}
.y8d{bottom:968.190000px;}
.yd{bottom:992.130000px;}
.yc{bottom:1015.890000px;}
.yb{bottom:1039.650000px;}
.ya{bottom:1063.050000px;}
.y5b{bottom:1063.410000px;}
.y9{bottom:1086.810000px;}
.y5a{bottom:1087.170000px;}
.y8{bottom:1110.750000px;}
.y59{bottom:1111.110000px;}
.y4{bottom:1131.660000px;}
.y3{bottom:1152.360000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1194.300000px;}
.h13{height:25.949835px;}
.h16{height:27.000188px;}
.hd{height:28.125230px;}
.he{height:28.691247px;}
.h10{height:32.110364px;}
.h17{height:40.674419px;}
.h14{height:41.393113px;}
.h11{height:41.623923px;}
.h8{height:52.628906px;}
.h23{height:56.394680px;}
.ha{height:59.624844px;}
.h1d{height:59.951280px;}
.hc{height:61.773007px;}
.h5{height:63.457031px;}
.h4{height:63.673594px;}
.h2{height:65.884219px;}
.hf{height:68.967590px;}
.h25{height:69.708339px;}
.h18{height:69.747061px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h15{height:70.979451px;}
.h3{height:72.562500px;}
.h1e{height:73.051069px;}
.h9{height:74.004654px;}
.h1c{height:74.004950px;}
.h21{height:74.401750px;}
.h19{height:78.826602px;}
.h26{height:86.585445px;}
.h22{height:92.316449px;}
.h12{height:97.159480px;}
.h1a{height:98.006556px;}
.h20{height:104.374451px;}
.h24{height:104.702074px;}
.h1f{height:109.363086px;}
.hb{height:132.819588px;}
.h1b{height:162.692353px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:25.950485px;}
.w6{width:25.950496px;}
.w4{width:31.500648px;}
.w9{width:93.448913px;}
.w5{width:137.318858px;}
.wa{width:143.994842px;}
.w8{width:159.677786px;}
.w3{width:204.821897px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:2.714275px;}
.x23{left:4.174582px;}
.x1b{left:14.321564px;}
.x1f{left:15.773482px;}
.x19{left:22.214816px;}
.x30{left:46.552366px;}
.x24{left:56.654228px;}
.x29{left:58.431580px;}
.x28{left:72.895454px;}
.x2f{left:78.039236px;}
.x2d{left:103.506473px;}
.x2c{left:106.538481px;}
.x22{left:114.999654px;}
.x1{left:117.035987px;}
.x16{left:118.883902px;}
.x2e{left:127.203114px;}
.x8{left:132.155987px;}
.x25{left:142.681512px;}
.x10{left:149.075987px;}
.x33{left:159.509987px;}
.x32{left:164.009987px;}
.xf{left:170.129987px;}
.x15{left:177.880257px;}
.x2{left:185.249987px;}
.x27{left:188.129987px;}
.x5{left:191.729987px;}
.x21{left:196.049987px;}
.x1e{left:240.539980px;}
.x18{left:245.940000px;}
.x2a{left:263.549987px;}
.x20{left:266.429987px;}
.x1c{left:277.409987px;}
.x6{left:293.294987px;}
.x1d{left:307.514987px;}
.xc{left:314.354987px;}
.x9{left:316.694987px;}
.xb{left:321.734987px;}
.xd{left:324.254987px;}
.x26{left:329.834987px;}
.x2b{left:335.039980px;}
.x7{left:354.854987px;}
.xe{left:387.434987px;}
.xa{left:389.594987px;}
.x14{left:413.190000px;}
.x11{left:421.274987px;}
.x4{left:422.714987px;}
.x3{left:473.114987px;}
.x31{left:479.054987px;}
.x34{left:594.464987px;}
.x17{left:618.044987px;}
.x12{left:662.864987px;}
.x13{left:771.809987px;}
@media print{
.v6{vertical-align:-66.469097pt;}
.v1{vertical-align:-47.832214pt;}
.v3{vertical-align:-22.199789pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:22.199789pt;}
.v7{vertical-align:24.320000pt;}
.v5{vertical-align:46.011900pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.992000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls1{letter-spacing:3.200000pt;}
.ls12{letter-spacing:3.968000pt;}
.ls16{letter-spacing:5.120000pt;}
.ls5{letter-spacing:7.680000pt;}
.ls1a{letter-spacing:11.520000pt;}
.ls9{letter-spacing:14.720000pt;}
.ls15{letter-spacing:16.640000pt;}
.ls8{letter-spacing:19.840000pt;}
.lsd{letter-spacing:26.856988pt;}
.ls10{letter-spacing:30.080000pt;}
.ls6{letter-spacing:35.200000pt;}
.ls17{letter-spacing:36.122027pt;}
.lsf{letter-spacing:46.720000pt;}
.ls11{letter-spacing:53.760000pt;}
.ls2{letter-spacing:64.640000pt;}
.lsc{letter-spacing:229.395023pt;}
.lse{letter-spacing:264.470127pt;}
.lsa{letter-spacing:320.652878pt;}
.ws5{word-spacing:-66.074208pt;}
.ws2{word-spacing:-64.000000pt;}
.wsb{word-spacing:-48.755651pt;}
.wsa{word-spacing:-48.334254pt;}
.wsc{word-spacing:-45.924975pt;}
.ws6{word-spacing:-40.697051pt;}
.wsf{word-spacing:-19.040000pt;}
.ws0{word-spacing:-19.019520pt;}
.wsd{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.360000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:44.123334pt;}
.ws8{word-spacing:197.663442pt;}
.ws9{word-spacing:221.841815pt;}
._1b{margin-left:-399.759639pt;}
._1d{margin-left:-379.974010pt;}
._1a{margin-left:-354.335273pt;}
._1c{margin-left:-294.041922pt;}
._1f{margin-left:-262.673777pt;}
._1e{margin-left:-249.272606pt;}
._20{margin-left:-223.530748pt;}
._21{margin-left:-210.051812pt;}
._22{margin-left:-121.970557pt;}
._25{margin-left:-115.030031pt;}
._2{margin-left:-2.048000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.088000pt;}
._b{width:2.005333pt;}
._5{width:3.114667pt;}
._16{width:4.224000pt;}
._15{width:5.184000pt;}
._d{width:6.848000pt;}
._4{width:8.256000pt;}
._3{width:9.472000pt;}
._c{width:10.432000pt;}
._e{width:11.840000pt;}
._26{width:13.760000pt;}
._17{width:14.912000pt;}
._2a{width:17.152000pt;}
._8{width:18.176000pt;}
._12{width:19.776000pt;}
._f{width:21.312000pt;}
._10{width:22.304000pt;}
._2d{width:23.808000pt;}
._23{width:25.664000pt;}
._24{width:26.634667pt;}
._2b{width:27.925333pt;}
._9{width:29.504000pt;}
._a{width:30.656000pt;}
._14{width:35.061333pt;}
._13{width:36.416000pt;}
._28{width:37.824000pt;}
._27{width:40.896000pt;}
._18{width:41.792000pt;}
._29{width:46.506667pt;}
._11{width:47.488000pt;}
._19{width:49.056000pt;}
._2c{width:52.906667pt;}
._7{width:63.178667pt;}
._6{width:64.384000pt;}
.fs6{font-size:25.998418pt;}
.fse{font-size:36.856904pt;}
.fsc{font-size:37.508144pt;}
.fs8{font-size:38.533377pt;}
.fs9{font-size:42.880000pt;}
.fs15{font-size:48.770710pt;}
.fs4{font-size:50.106256pt;}
.fsb{font-size:51.315076pt;}
.fs12{font-size:51.846495pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:62.494607pt;}
.fsf{font-size:63.200921pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:64.317644pt;}
.fs5{font-size:74.129418pt;}
.fs2{font-size:74.880000pt;}
.fs14{font-size:83.652049pt;}
.fsa{font-size:88.040535pt;}
.fs10{font-size:88.808108pt;}
.fs13{font-size:94.578342pt;}
.fs3{font-size:120.353748pt;}
.fs16{font-size:125.645556pt;}
.fs11{font-size:133.118009pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:2.939942pt;}
.y44{bottom:3.132881pt;}
.y55{bottom:4.190439pt;}
.y46{bottom:5.419845pt;}
.y6b{bottom:5.801384pt;}
.y5d{bottom:6.102409pt;}
.y53{bottom:6.945938pt;}
.y66{bottom:7.308641pt;}
.y56{bottom:8.158695pt;}
.y45{bottom:9.335979pt;}
.y41{bottom:10.275321pt;}
.y4e{bottom:11.276106pt;}
.y40{bottom:17.846872pt;}
.y70{bottom:22.418689pt;}
.y6d{bottom:22.418710pt;}
.y60{bottom:23.706713pt;}
.y5f{bottom:23.706737pt;}
.y68{bottom:27.454994pt;}
.y6f{bottom:33.233214pt;}
.y6c{bottom:38.122646pt;}
.y5e{bottom:40.346436pt;}
.y67{bottom:42.586173pt;}
.y7{bottom:42.912000pt;}
.y6e{bottom:47.487945pt;}
.y61{bottom:50.312169pt;}
.y6{bottom:60.992000pt;}
.y5{bottom:82.112000pt;}
.y58{bottom:107.072000pt;}
.ya7{bottom:116.352000pt;}
.y31{bottom:120.032000pt;}
.y8c{bottom:120.672000pt;}
.y54{bottom:124.413333pt;}
.y57{bottom:132.352000pt;}
.ya6{bottom:137.466667pt;}
.y30{bottom:141.146667pt;}
.y8b{bottom:141.786667pt;}
.y51{bottom:151.280000pt;}
.y50{bottom:157.946667pt;}
.ya5{bottom:158.586667pt;}
.y2f{bottom:162.266667pt;}
.y8a{bottom:162.906667pt;}
.y4d{bottom:177.013333pt;}
.ya4{bottom:179.866667pt;}
.y2e{bottom:183.546667pt;}
.y89{bottom:184.026667pt;}
.y4f{bottom:184.986667pt;}
.ya3{bottom:203.386667pt;}
.y2d{bottom:204.666667pt;}
.y88{bottom:205.306667pt;}
.y4c{bottom:220.506667pt;}
.ya2{bottom:224.506667pt;}
.y2c{bottom:225.786667pt;}
.y87{bottom:226.426667pt;}
.y4b{bottom:241.786667pt;}
.ya1{bottom:245.786667pt;}
.y2b{bottom:246.906667pt;}
.y86{bottom:247.546667pt;}
.y4a{bottom:262.946667pt;}
.y2a{bottom:268.226667pt;}
.y85{bottom:268.706667pt;}
.ya0{bottom:269.346667pt;}
.y49{bottom:284.066667pt;}
.y29{bottom:289.346667pt;}
.y84{bottom:289.986667pt;}
.y9f{bottom:290.626667pt;}
.y48{bottom:305.186667pt;}
.y28{bottom:310.466667pt;}
.y83{bottom:311.106667pt;}
.y9e{bottom:311.746667pt;}
.y47{bottom:326.466667pt;}
.y27{bottom:331.586667pt;}
.y82{bottom:332.226667pt;}
.y9d{bottom:335.426667pt;}
.y43{bottom:343.746630pt;}
.y26{bottom:352.866667pt;}
.y42{bottom:353.026667pt;}
.y81{bottom:353.346667pt;}
.y9c{bottom:356.546667pt;}
.y3f{bottom:372.213333pt;}
.y25{bottom:373.986667pt;}
.y80{bottom:374.626667pt;}
.y9b{bottom:377.826667pt;}
.y3e{bottom:381.506667pt;}
.y24{bottom:395.106667pt;}
.y7f{bottom:395.746667pt;}
.y9a{bottom:401.346667pt;}
.y23{bottom:416.226667pt;}
.y7e{bottom:416.866667pt;}
.y99{bottom:425.026667pt;}
.y3d{bottom:434.626667pt;}
.y22{bottom:437.506667pt;}
.y7d{bottom:437.986667pt;}
.y98{bottom:446.306667pt;}
.y3c{bottom:457.506667pt;}
.y21{bottom:458.626667pt;}
.y7c{bottom:459.266667pt;}
.y97{bottom:469.826667pt;}
.y3b{bottom:478.626667pt;}
.y20{bottom:479.746667pt;}
.y7b{bottom:480.386667pt;}
.y96{bottom:491.106667pt;}
.y3a{bottom:499.906667pt;}
.y1f{bottom:500.866667pt;}
.y7a{bottom:501.506667pt;}
.y95{bottom:514.653333pt;}
.y39{bottom:520.733333pt;}
.y1e{bottom:522.013333pt;}
.y79{bottom:522.653333pt;}
.y94{bottom:538.333333pt;}
.y38{bottom:538.493333pt;}
.y1d{bottom:543.293333pt;}
.y78{bottom:543.773333pt;}
.y93{bottom:561.853333pt;}
.y1c{bottom:564.413333pt;}
.y77{bottom:565.053333pt;}
.y92{bottom:583.133333pt;}
.y1b{bottom:585.533333pt;}
.y76{bottom:586.173333pt;}
.y91{bottom:606.333333pt;}
.y1a{bottom:606.653333pt;}
.y75{bottom:607.293333pt;}
.y90{bottom:627.613333pt;}
.y19{bottom:627.933333pt;}
.y74{bottom:628.413333pt;}
.y18{bottom:649.053333pt;}
.y73{bottom:649.693333pt;}
.y17{bottom:670.173333pt;}
.y72{bottom:670.813333pt;}
.y16{bottom:690.973333pt;}
.y8f{bottom:691.293333pt;}
.y71{bottom:691.933333pt;}
.y65{bottom:709.213261pt;}
.y37{bottom:710.173333pt;}
.y6a{bottom:710.613261pt;}
.y15{bottom:712.573333pt;}
.y69{bottom:727.933333pt;}
.y36{bottom:731.293333pt;}
.y14{bottom:733.693333pt;}
.y35{bottom:752.413333pt;}
.y13{bottom:754.853333pt;}
.y34{bottom:773.733333pt;}
.y12{bottom:775.653333pt;}
.y8e{bottom:775.973333pt;}
.y64{bottom:783.333333pt;}
.y33{bottom:794.533333pt;}
.y11{bottom:797.253333pt;}
.y63{bottom:807.333333pt;}
.y32{bottom:812.293333pt;}
.y10{bottom:818.373333pt;}
.y5c{bottom:826.479928pt;}
.yf{bottom:839.493333pt;}
.y62{bottom:843.813333pt;}
.ye{bottom:860.293333pt;}
.y8d{bottom:860.613333pt;}
.yd{bottom:881.893333pt;}
.yc{bottom:903.013333pt;}
.yb{bottom:924.133333pt;}
.ya{bottom:944.933333pt;}
.y5b{bottom:945.253333pt;}
.y9{bottom:966.053333pt;}
.y5a{bottom:966.373333pt;}
.y8{bottom:987.333333pt;}
.y59{bottom:987.653333pt;}
.y4{bottom:1005.920000pt;}
.y3{bottom:1024.320000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1061.600000pt;}
.h13{height:23.066520pt;}
.h16{height:24.000167pt;}
.hd{height:25.000205pt;}
.he{height:25.503331pt;}
.h10{height:28.542546pt;}
.h17{height:36.155039pt;}
.h14{height:36.793878pt;}
.h11{height:36.999042pt;}
.h8{height:46.781250pt;}
.h23{height:50.128605pt;}
.ha{height:52.999861pt;}
.h1d{height:53.290027pt;}
.hc{height:54.909340pt;}
.h5{height:56.406250pt;}
.h4{height:56.598750pt;}
.h2{height:58.563750pt;}
.hf{height:61.304524pt;}
.h25{height:61.962968pt;}
.h18{height:61.997387pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h15{height:63.092846pt;}
.h3{height:64.500000pt;}
.h1e{height:64.934283pt;}
.h9{height:65.781915pt;}
.h1c{height:65.782178pt;}
.h21{height:66.134889pt;}
.h19{height:70.068091pt;}
.h26{height:76.964840pt;}
.h22{height:82.059066pt;}
.h12{height:86.363982pt;}
.h1a{height:87.116938pt;}
.h20{height:92.777290pt;}
.h24{height:93.068510pt;}
.h1f{height:97.211632pt;}
.hb{height:118.061856pt;}
.h1b{height:144.615425pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:23.067098pt;}
.w6{width:23.067107pt;}
.w4{width:28.000576pt;}
.w9{width:83.065700pt;}
.w5{width:122.061207pt;}
.wa{width:127.995415pt;}
.w8{width:141.935810pt;}
.w3{width:182.063909pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:2.412688pt;}
.x23{left:3.710740pt;}
.x1b{left:12.730279pt;}
.x1f{left:14.020873pt;}
.x19{left:19.746503pt;}
.x30{left:41.379881pt;}
.x24{left:50.359314pt;}
.x29{left:51.939182pt;}
.x28{left:64.795959pt;}
.x2f{left:69.368210pt;}
.x2d{left:92.005754pt;}
.x2c{left:94.700872pt;}
.x22{left:102.221914pt;}
.x1{left:104.031988pt;}
.x16{left:105.674579pt;}
.x2e{left:113.069435pt;}
.x8{left:117.471988pt;}
.x25{left:126.828011pt;}
.x10{left:132.511988pt;}
.x33{left:141.786655pt;}
.x32{left:145.786655pt;}
.xf{left:151.226655pt;}
.x15{left:158.115784pt;}
.x2{left:164.666655pt;}
.x27{left:167.226655pt;}
.x5{left:170.426655pt;}
.x21{left:174.266655pt;}
.x1e{left:213.813315pt;}
.x18{left:218.613333pt;}
.x2a{left:234.266655pt;}
.x20{left:236.826655pt;}
.x1c{left:246.586655pt;}
.x6{left:260.706655pt;}
.x1d{left:273.346655pt;}
.xc{left:279.426655pt;}
.x9{left:281.506655pt;}
.xb{left:285.986655pt;}
.xd{left:288.226655pt;}
.x26{left:293.186655pt;}
.x2b{left:297.813315pt;}
.x7{left:315.426655pt;}
.xe{left:344.386655pt;}
.xa{left:346.306655pt;}
.x14{left:367.280000pt;}
.x11{left:374.466655pt;}
.x4{left:375.746655pt;}
.x3{left:420.546655pt;}
.x31{left:425.826655pt;}
.x34{left:528.413322pt;}
.x17{left:549.373322pt;}
.x12{left:589.213322pt;}
.x13{left:686.053322pt;}
}




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