
    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_52f65ba1918c6af326104849.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921000;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_96429a49c13a452421095471.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_b57bf702b20880e6865dfadb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_24e3b1e8f443703bab796c73.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b42728ef9a5094e1ebf82b65.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.718750;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_86632171a3ca274f97cc035a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079590;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_d23662e138359ee55d601062.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_574eeb1577223f3503689e34.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.745000;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_bf8021d13ed9089416e3863b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_455f2c806c74e3a46608db42.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_54690205ad4ed8c3c40a6d8a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.119629;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_0b9626ff4a59c2abb2da0a47.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975098;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_e6fb03677fee68b259760296.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.975098;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_788392ba18d285cacfc64b4c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.158691;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_14d8b0d78f338c9c3b06ac95.woff2')format("woff");}.fff{font-family:fff;line-height:1.158691;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:ff10;src:url('chunks/assets/font_0b7f7f9e223ca2ba866ab3dc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;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:ff11;src:url('chunks/assets/font_edc239a6df472081fafb1aa5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.044000;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:ff12;src:url('chunks/assets/font_3c94ebc3d34f61e29f31c45b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726562;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:ff13;src:url('chunks/assets/font_130844872aabdfc0c01e0022.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.127000;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:ff14;src:url('chunks/assets/font_d9bcffc26cd21e89496f5873.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_e7d626d4216ebbd2be923849.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.921000;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:ff16;src:url('chunks/assets/font_2af171fa9c553c36ae23f3d6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.127000;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;}
.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);}
.m1{transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286675,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-13.985400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls19{letter-spacing:-0.624000px;}
.ls15{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.048000px;}
.lsc{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.003984px;}
.lse{letter-spacing:0.234000px;}
.ls14{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.780000px;}
.ls8{letter-spacing:1.008000px;}
.ls7{letter-spacing:1.056000px;}
.lsb{letter-spacing:1.104000px;}
.ls5{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.248000px;}
.ls2{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.344000px;}
.lsa{letter-spacing:1.392000px;}
.ls4{letter-spacing:1.440000px;}
.ls3{letter-spacing:2.520000px;}
.ls17{letter-spacing:4.608000px;}
.ls16{letter-spacing:7.632000px;}
.lsf{letter-spacing:34.848000px;}
.ls1{letter-spacing:725.125200px;}
.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;}
}
.ws1a{word-spacing:-48.000000px;}
.ws1b{word-spacing:-16.680000px;}
.ws1d{word-spacing:-15.600000px;}
.ws18{word-spacing:-15.360000px;}
.ws17{word-spacing:-15.312000px;}
.ws1e{word-spacing:-13.344000px;}
.ws0{word-spacing:-9.576000px;}
.ws21{word-spacing:-7.632000px;}
.ws22{word-spacing:-4.608000px;}
.ws15{word-spacing:-2.880000px;}
.ws5{word-spacing:-2.520000px;}
.wsd{word-spacing:-1.920000px;}
.ws6{word-spacing:-1.440000px;}
.wsc{word-spacing:-1.392000px;}
.wsb{word-spacing:-1.344000px;}
.ws4{word-spacing:-1.260000px;}
.ws8{word-spacing:-1.248000px;}
.ws7{word-spacing:-1.152000px;}
.ws12{word-spacing:-1.104000px;}
.ws9{word-spacing:-1.056000px;}
.wsa{word-spacing:-1.008000px;}
.ws20{word-spacing:-0.528000px;}
.ws3{word-spacing:-0.234000px;}
.ws1{word-spacing:0.000000px;}
.ws23{word-spacing:0.048000px;}
.ws1c{word-spacing:0.480000px;}
.ws13{word-spacing:0.576000px;}
.ws24{word-spacing:0.624000px;}
.wsf{word-spacing:1.392000px;}
.ws11{word-spacing:1.584000px;}
.ws10{word-spacing:2.736000px;}
.ws14{word-spacing:3.696000px;}
.wse{word-spacing:5.520000px;}
.ws19{word-spacing:135.648000px;}
.ws1f{word-spacing:136.080000px;}
.ws2{word-spacing:197.064000px;}
.ws16{word-spacing:202.848000px;}
._c{margin-left:-6.660000px;}
._2{margin-left:-4.628400px;}
._5{margin-left:-3.429000px;}
._0{margin-left:-2.196000px;}
._1{margin-left:-1.029600px;}
._6{width:1.932000px;}
._7{width:3.409800px;}
._8{width:5.105400px;}
._9{width:6.440400px;}
._e{width:7.593600px;}
._13{width:9.018000px;}
._d{width:10.374000px;}
._f{width:11.430000px;}
._10{width:12.564000px;}
._12{width:14.082000px;}
._11{width:15.612000px;}
._4{width:17.661000px;}
._3{width:19.668600px;}
._14{width:21.690000px;}
._15{width:22.707000px;}
._1a{width:23.711400px;}
._18{width:24.726000px;}
._17{width:33.456000px;}
._16{width:1242.964800px;}
._b{width:1243.972800px;}
._19{width:1510.456800px;}
._a{width:1511.575200px;}
.fc6{color:rgb(254,0,0);}
.fc5{color:rgb(26,102,186);}
.fc4{color:rgb(238,37,43);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(45,99,183);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(238,39,44);}
.fs5{font-size:24.486000px;}
.fs4{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.357700px;}
.y3f{bottom:98.610300px;}
.y3d{bottom:135.868500px;}
.y8f{bottom:162.748950px;}
.yb9{bottom:163.891050px;}
.yb8{bottom:176.641050px;}
.y8e{bottom:183.748950px;}
.y66{bottom:185.627850px;}
.yb7{bottom:189.091050px;}
.y65{bottom:206.627850px;}
.yb6{bottom:210.045000px;}
.yb5{bottom:222.495000px;}
.y8d{bottom:226.008750px;}
.y64{bottom:227.627850px;}
.yb4{bottom:234.944850px;}
.y8c{bottom:247.008750px;}
.y63{bottom:248.627850px;}
.yb3{bottom:255.898800px;}
.y8b{bottom:268.008750px;}
.y62{bottom:269.627850px;}
.yb2{bottom:276.852750px;}
.y17{bottom:279.499800px;}
.y3c{bottom:286.676550px;}
.yb1{bottom:289.302750px;}
.y61{bottom:290.627850px;}
.y16{bottom:300.759600px;}
.y3b{bottom:306.609300px;}
.y8a{bottom:307.268550px;}
.yb0{bottom:310.256700px;}
.y60{bottom:311.627850px;}
.y15{bottom:322.019400px;}
.yaf{bottom:322.706700px;}
.y89{bottom:325.268550px;}
.y5f{bottom:332.627850px;}
.y3a{bottom:335.565300px;}
.y88{bottom:343.268550px;}
.y14{bottom:343.279350px;}
.yae{bottom:343.660650px;}
.y39{bottom:347.565300px;}
.y5e{bottom:353.627850px;}
.yad{bottom:356.110650px;}
.y38{bottom:359.565300px;}
.y87{bottom:361.268550px;}
.y13{bottom:364.539150px;}
.y37{bottom:371.565300px;}
.yac{bottom:377.064600px;}
.y86{bottom:379.268550px;}
.y36{bottom:383.565300px;}
.y12{bottom:385.798950px;}
.yab{bottom:389.514600px;}
.y35{bottom:395.565300px;}
.y5d{bottom:395.887650px;}
.y85{bottom:397.268550px;}
.yaa{bottom:401.964600px;}
.y11{bottom:407.058900px;}
.y34{bottom:407.565300px;}
.y5c{bottom:416.887650px;}
.y33{bottom:419.565300px;}
.ya9{bottom:422.918550px;}
.y10{bottom:428.318700px;}
.y32{bottom:431.565300px;}
.ya8{bottom:435.368550px;}
.y84{bottom:436.528350px;}
.y5b{bottom:437.887650px;}
.y31{bottom:443.565300px;}
.yf{bottom:445.656600px;}
.ya7{bottom:447.818550px;}
.y83{bottom:454.528350px;}
.y30{bottom:455.565300px;}
.ye{bottom:456.121500px;}
.y5a{bottom:458.887650px;}
.yd{bottom:466.586400px;}
.y2f{bottom:467.565300px;}
.y82{bottom:472.528350px;}
.ya6{bottom:473.024400px;}
.yc{bottom:477.051300px;}
.y2e{bottom:479.565300px;}
.y59{bottom:479.887650px;}
.yb{bottom:487.516050px;}
.y81{bottom:490.528350px;}
.y2d{bottom:491.565300px;}
.y58{bottom:500.887650px;}
.y2c{bottom:503.565300px;}
.ya{bottom:504.854100px;}
.y80{bottom:508.528350px;}
.y2b{bottom:519.817350px;}
.y57{bottom:521.887650px;}
.y7f{bottom:526.528350px;}
.ya5{bottom:529.292250px;}
.y2a{bottom:540.879150px;}
.y7e{bottom:544.528350px;}
.ya4{bottom:550.292250px;}
.y56{bottom:559.895550px;}
.y29{bottom:560.793000px;}
.y7d{bottom:562.528350px;}
.ya3{bottom:571.292250px;}
.y7c{bottom:580.528350px;}
.yd9{bottom:586.722300px;}
.y28{bottom:589.749000px;}
.ya2{bottom:592.292250px;}
.yd8{bottom:599.472300px;}
.y55{bottom:600.655350px;}
.y27{bottom:601.749000px;}
.ya1{bottom:613.292250px;}
.y26{bottom:613.749000px;}
.y7b{bottom:615.536250px;}
.yd7{bottom:620.726250px;}
.y54{bottom:621.655350px;}
.y25{bottom:625.749000px;}
.yd6{bottom:633.476250px;}
.ya0{bottom:634.292250px;}
.y24{bottom:637.749000px;}
.y53{bottom:642.655350px;}
.y23{bottom:649.749000px;}
.yd5{bottom:654.730200px;}
.y7a{bottom:654.796050px;}
.y9f{bottom:655.292250px;}
.y22{bottom:661.749000px;}
.y52{bottom:663.655350px;}
.yd4{bottom:667.480200px;}
.y79{bottom:672.796050px;}
.y21{bottom:673.749000px;}
.y9e{bottom:676.292250px;}
.y51{bottom:684.655350px;}
.y20{bottom:685.749000px;}
.yd3{bottom:688.734150px;}
.y78{bottom:690.796050px;}
.y9d{bottom:697.292250px;}
.y1f{bottom:697.749000px;}
.yd2{bottom:701.484150px;}
.y77{bottom:708.796050px;}
.y1e{bottom:709.749000px;}
.y1d{bottom:721.749000px;}
.yd1{bottom:722.738100px;}
.y76{bottom:726.796200px;}
.y50{bottom:726.915300px;}
.y1c{bottom:733.749000px;}
.yd0{bottom:735.488100px;}
.y9c{bottom:739.552050px;}
.y75{bottom:744.796200px;}
.y1b{bottom:745.749000px;}
.y4f{bottom:747.915300px;}
.ycf{bottom:756.742050px;}
.y1a{bottom:757.749000px;}
.y74{bottom:762.796200px;}
.y4e{bottom:768.915300px;}
.yce{bottom:769.492050px;}
.y19{bottom:769.749000px;}
.y18{bottom:786.000900px;}
.y4d{bottom:789.915300px;}
.ycd{bottom:790.745850px;}
.y9b{bottom:795.819750px;}
.y73{bottom:797.803950px;}
.ycc{bottom:803.495850px;}
.y4c{bottom:810.915300px;}
.ycb{bottom:816.245850px;}
.y9a{bottom:816.819750px;}
.y4b{bottom:831.915300px;}
.y72{bottom:837.063750px;}
.yca{bottom:837.499950px;}
.y99{bottom:837.819750px;}
.yc9{bottom:850.249950px;}
.y4a{bottom:852.915300px;}
.y71{bottom:855.063750px;}
.y98{bottom:858.819750px;}
.y8{bottom:870.283500px;}
.yc8{bottom:871.503900px;}
.y70{bottom:873.063750px;}
.y49{bottom:873.915300px;}
.y7{bottom:882.883500px;}
.yc7{bottom:884.253900px;}
.y6f{bottom:891.063750px;}
.y48{bottom:894.915300px;}
.yc6{bottom:897.003900px;}
.y97{bottom:901.079550px;}
.y6e{bottom:909.063750px;}
.y6{bottom:912.508500px;}
.y47{bottom:915.915300px;}
.yc5{bottom:918.257700px;}
.y96{bottom:922.079550px;}
.y6d{bottom:927.063750px;}
.y5{bottom:928.604850px;}
.yc4{bottom:931.007700px;}
.y46{bottom:936.915300px;}
.y95{bottom:943.079550px;}
.yc3{bottom:943.757700px;}
.y45{bottom:957.915300px;}
.y4{bottom:959.008500px;}
.y6c{bottom:962.071650px;}
.y94{bottom:964.079550px;}
.yc2{bottom:965.011650px;}
.yc1{bottom:977.761650px;}
.y44{bottom:978.915300px;}
.yc0{bottom:999.015600px;}
.y43{bottom:999.915300px;}
.y6b{bottom:1001.331600px;}
.y3{bottom:1002.520350px;}
.y93{bottom:1006.339350px;}
.ybf{bottom:1011.765600px;}
.y6a{bottom:1019.331600px;}
.y42{bottom:1020.915300px;}
.ybe{bottom:1024.515600px;}
.y92{bottom:1027.339350px;}
.y69{bottom:1037.331600px;}
.ybd{bottom:1045.769550px;}
.y91{bottom:1048.339350px;}
.y2{bottom:1051.432050px;}
.y68{bottom:1055.331600px;}
.ybc{bottom:1058.519550px;}
.y90{bottom:1069.339350px;}
.ybb{bottom:1079.773500px;}
.y9{bottom:1084.650750px;}
.y41{bottom:1088.686950px;}
.y67{bottom:1090.339350px;}
.yba{bottom:1092.523500px;}
.y3e{bottom:1111.393800px;}
.y40{bottom:1154.834700px;}
.h6{height:22.518506px;}
.h9{height:30.577148px;}
.h7{height:36.503906px;}
.ha{height:37.877930px;}
.hf{height:38.016000px;}
.hb{height:38.185547px;}
.h2{height:38.556000px;}
.h14{height:41.718750px;}
.hd{height:43.289062px;}
.h10{height:43.344000px;}
.he{height:43.640625px;}
.hc{height:46.218750px;}
.h12{height:52.148438px;}
.h13{height:53.203125px;}
.h4{height:53.320312px;}
.h5{height:53.367188px;}
.h8{height:58.800000px;}
.h11{height:63.843750px;}
.h3{height:72.773438px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:63.779550px;}
.x5{left:68.031450px;}
.xb{left:89.060100px;}
.xa{left:92.370150px;}
.x12{left:98.301600px;}
.x7{left:99.319200px;}
.x1a{left:106.299150px;}
.x19{left:107.362200px;}
.x9{left:113.716800px;}
.x8{left:115.386450px;}
.xf{left:129.250500px;}
.x18{left:148.818900px;}
.x11{left:151.204650px;}
.x1b{left:159.448800px;}
.xc{left:169.679250px;}
.xe{left:174.035700px;}
.x2{left:187.096950px;}
.x3{left:232.080450px;}
.x10{left:242.843700px;}
.xd{left:269.614950px;}
.x13{left:318.147600px;}
.x4{left:337.328850px;}
.x17{left:378.235500px;}
.x1{left:380.019750px;}
.x15{left:401.675850px;}
.x1c{left:502.598250px;}
.x14{left:715.491450px;}
.x16{left:751.480050px;}
@media print{
.v2{vertical-align:-12.431467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls19{letter-spacing:-0.554667pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.042667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.003541pt;}
.lse{letter-spacing:0.208000pt;}
.ls14{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.693333pt;}
.ls8{letter-spacing:0.896000pt;}
.ls7{letter-spacing:0.938667pt;}
.lsb{letter-spacing:0.981333pt;}
.ls5{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.109333pt;}
.ls2{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.194667pt;}
.lsa{letter-spacing:1.237333pt;}
.ls4{letter-spacing:1.280000pt;}
.ls3{letter-spacing:2.240000pt;}
.ls17{letter-spacing:4.096000pt;}
.ls16{letter-spacing:6.784000pt;}
.lsf{letter-spacing:30.976000pt;}
.ls1{letter-spacing:644.555733pt;}
.ws1a{word-spacing:-42.666667pt;}
.ws1b{word-spacing:-14.826667pt;}
.ws1d{word-spacing:-13.866667pt;}
.ws18{word-spacing:-13.653333pt;}
.ws17{word-spacing:-13.610667pt;}
.ws1e{word-spacing:-11.861333pt;}
.ws0{word-spacing:-8.512000pt;}
.ws21{word-spacing:-6.784000pt;}
.ws22{word-spacing:-4.096000pt;}
.ws15{word-spacing:-2.560000pt;}
.ws5{word-spacing:-2.240000pt;}
.wsd{word-spacing:-1.706667pt;}
.ws6{word-spacing:-1.280000pt;}
.wsc{word-spacing:-1.237333pt;}
.wsb{word-spacing:-1.194667pt;}
.ws4{word-spacing:-1.120000pt;}
.ws8{word-spacing:-1.109333pt;}
.ws7{word-spacing:-1.024000pt;}
.ws12{word-spacing:-0.981333pt;}
.ws9{word-spacing:-0.938667pt;}
.wsa{word-spacing:-0.896000pt;}
.ws20{word-spacing:-0.469333pt;}
.ws3{word-spacing:-0.208000pt;}
.ws1{word-spacing:0.000000pt;}
.ws23{word-spacing:0.042667pt;}
.ws1c{word-spacing:0.426667pt;}
.ws13{word-spacing:0.512000pt;}
.ws24{word-spacing:0.554667pt;}
.wsf{word-spacing:1.237333pt;}
.ws11{word-spacing:1.408000pt;}
.ws10{word-spacing:2.432000pt;}
.ws14{word-spacing:3.285333pt;}
.wse{word-spacing:4.906667pt;}
.ws19{word-spacing:120.576000pt;}
.ws1f{word-spacing:120.960000pt;}
.ws2{word-spacing:175.168000pt;}
.ws16{word-spacing:180.309333pt;}
._c{margin-left:-5.920000pt;}
._2{margin-left:-4.114133pt;}
._5{margin-left:-3.048000pt;}
._0{margin-left:-1.952000pt;}
._1{margin-left:-0.915200pt;}
._6{width:1.717333pt;}
._7{width:3.030933pt;}
._8{width:4.538133pt;}
._9{width:5.724800pt;}
._e{width:6.749867pt;}
._13{width:8.016000pt;}
._d{width:9.221333pt;}
._f{width:10.160000pt;}
._10{width:11.168000pt;}
._12{width:12.517333pt;}
._11{width:13.877333pt;}
._4{width:15.698667pt;}
._3{width:17.483200pt;}
._14{width:19.280000pt;}
._15{width:20.184000pt;}
._1a{width:21.076800pt;}
._18{width:21.978667pt;}
._17{width:29.738667pt;}
._16{width:1104.857600pt;}
._b{width:1105.753600pt;}
._19{width:1342.628267pt;}
._a{width:1343.622400pt;}
.fs5{font-size:21.765333pt;}
.fs4{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:52.762400pt;}
.y3f{bottom:87.653600pt;}
.y3d{bottom:120.772000pt;}
.y8f{bottom:144.665733pt;}
.yb9{bottom:145.680933pt;}
.yb8{bottom:157.014267pt;}
.y8e{bottom:163.332400pt;}
.y66{bottom:165.002533pt;}
.yb7{bottom:168.080933pt;}
.y65{bottom:183.669200pt;}
.yb6{bottom:186.706667pt;}
.yb5{bottom:197.773333pt;}
.y8d{bottom:200.896667pt;}
.y64{bottom:202.335867pt;}
.yb4{bottom:208.839867pt;}
.y8c{bottom:219.563333pt;}
.y63{bottom:221.002533pt;}
.yb3{bottom:227.465600pt;}
.y8b{bottom:238.230000pt;}
.y62{bottom:239.669200pt;}
.yb2{bottom:246.091333pt;}
.y17{bottom:248.444267pt;}
.y3c{bottom:254.823600pt;}
.yb1{bottom:257.158000pt;}
.y61{bottom:258.335867pt;}
.y16{bottom:267.341867pt;}
.y3b{bottom:272.541600pt;}
.y8a{bottom:273.127600pt;}
.yb0{bottom:275.783733pt;}
.y60{bottom:277.002533pt;}
.y15{bottom:286.239467pt;}
.yaf{bottom:286.850400pt;}
.y89{bottom:289.127600pt;}
.y5f{bottom:295.669200pt;}
.y3a{bottom:298.280267pt;}
.y88{bottom:305.127600pt;}
.y14{bottom:305.137200pt;}
.yae{bottom:305.476133pt;}
.y39{bottom:308.946933pt;}
.y5e{bottom:314.335867pt;}
.yad{bottom:316.542800pt;}
.y38{bottom:319.613600pt;}
.y87{bottom:321.127600pt;}
.y13{bottom:324.034800pt;}
.y37{bottom:330.280267pt;}
.yac{bottom:335.168533pt;}
.y86{bottom:337.127600pt;}
.y36{bottom:340.946933pt;}
.y12{bottom:342.932400pt;}
.yab{bottom:346.235200pt;}
.y35{bottom:351.613600pt;}
.y5d{bottom:351.900133pt;}
.y85{bottom:353.127600pt;}
.yaa{bottom:357.301867pt;}
.y11{bottom:361.830133pt;}
.y34{bottom:362.280267pt;}
.y5c{bottom:370.566800pt;}
.y33{bottom:372.946933pt;}
.ya9{bottom:375.927600pt;}
.y10{bottom:380.727733pt;}
.y32{bottom:383.613600pt;}
.ya8{bottom:386.994267pt;}
.y84{bottom:388.025200pt;}
.y5b{bottom:389.233467pt;}
.y31{bottom:394.280267pt;}
.yf{bottom:396.139200pt;}
.ya7{bottom:398.060933pt;}
.y83{bottom:404.025200pt;}
.y30{bottom:404.946933pt;}
.ye{bottom:405.441333pt;}
.y5a{bottom:407.900133pt;}
.yd{bottom:414.743467pt;}
.y2f{bottom:415.613600pt;}
.y82{bottom:420.025200pt;}
.ya6{bottom:420.466133pt;}
.yc{bottom:424.045600pt;}
.y2e{bottom:426.280267pt;}
.y59{bottom:426.566800pt;}
.yb{bottom:433.347600pt;}
.y81{bottom:436.025200pt;}
.y2d{bottom:436.946933pt;}
.y58{bottom:445.233467pt;}
.y2c{bottom:447.613600pt;}
.ya{bottom:448.759200pt;}
.y80{bottom:452.025200pt;}
.y2b{bottom:462.059867pt;}
.y57{bottom:463.900133pt;}
.y7f{bottom:468.025200pt;}
.ya5{bottom:470.482000pt;}
.y2a{bottom:480.781467pt;}
.y7e{bottom:484.025200pt;}
.ya4{bottom:489.148667pt;}
.y56{bottom:497.684933pt;}
.y29{bottom:498.482667pt;}
.y7d{bottom:500.025200pt;}
.ya3{bottom:507.815333pt;}
.y7c{bottom:516.025200pt;}
.yd9{bottom:521.530933pt;}
.y28{bottom:524.221333pt;}
.ya2{bottom:526.482000pt;}
.yd8{bottom:532.864267pt;}
.y55{bottom:533.915867pt;}
.y27{bottom:534.888000pt;}
.ya1{bottom:545.148667pt;}
.y26{bottom:545.554667pt;}
.y7b{bottom:547.143333pt;}
.yd7{bottom:551.756667pt;}
.y54{bottom:552.582533pt;}
.y25{bottom:556.221333pt;}
.yd6{bottom:563.090000pt;}
.ya0{bottom:563.815333pt;}
.y24{bottom:566.888000pt;}
.y53{bottom:571.249200pt;}
.y23{bottom:577.554667pt;}
.yd5{bottom:581.982400pt;}
.y7a{bottom:582.040933pt;}
.y9f{bottom:582.482000pt;}
.y22{bottom:588.221333pt;}
.y52{bottom:589.915867pt;}
.yd4{bottom:593.315733pt;}
.y79{bottom:598.040933pt;}
.y21{bottom:598.888000pt;}
.y9e{bottom:601.148667pt;}
.y51{bottom:608.582533pt;}
.y20{bottom:609.554667pt;}
.yd3{bottom:612.208133pt;}
.y78{bottom:614.040933pt;}
.y9d{bottom:619.815333pt;}
.y1f{bottom:620.221333pt;}
.yd2{bottom:623.541467pt;}
.y77{bottom:630.040933pt;}
.y1e{bottom:630.888000pt;}
.y1d{bottom:641.554667pt;}
.yd1{bottom:642.433867pt;}
.y76{bottom:646.041067pt;}
.y50{bottom:646.146933pt;}
.y1c{bottom:652.221333pt;}
.yd0{bottom:653.767200pt;}
.y9c{bottom:657.379600pt;}
.y75{bottom:662.041067pt;}
.y1b{bottom:662.888000pt;}
.y4f{bottom:664.813600pt;}
.ycf{bottom:672.659600pt;}
.y1a{bottom:673.554667pt;}
.y74{bottom:678.041067pt;}
.y4e{bottom:683.480267pt;}
.yce{bottom:683.992933pt;}
.y19{bottom:684.221333pt;}
.y18{bottom:698.667467pt;}
.y4d{bottom:702.146933pt;}
.ycd{bottom:702.885200pt;}
.y9b{bottom:707.395333pt;}
.y73{bottom:709.159067pt;}
.ycc{bottom:714.218533pt;}
.y4c{bottom:720.813600pt;}
.ycb{bottom:725.551867pt;}
.y9a{bottom:726.062000pt;}
.y4b{bottom:739.480267pt;}
.y72{bottom:744.056667pt;}
.yca{bottom:744.444400pt;}
.y99{bottom:744.728667pt;}
.yc9{bottom:755.777733pt;}
.y4a{bottom:758.146933pt;}
.y71{bottom:760.056667pt;}
.y98{bottom:763.395333pt;}
.y8{bottom:773.585333pt;}
.yc8{bottom:774.670133pt;}
.y70{bottom:776.056667pt;}
.y49{bottom:776.813600pt;}
.y7{bottom:784.785333pt;}
.yc7{bottom:786.003467pt;}
.y6f{bottom:792.056667pt;}
.y48{bottom:795.480267pt;}
.yc6{bottom:797.336800pt;}
.y97{bottom:800.959600pt;}
.y6e{bottom:808.056667pt;}
.y6{bottom:811.118667pt;}
.y47{bottom:814.146933pt;}
.yc5{bottom:816.229067pt;}
.y96{bottom:819.626267pt;}
.y6d{bottom:824.056667pt;}
.y5{bottom:825.426533pt;}
.yc4{bottom:827.562400pt;}
.y46{bottom:832.813600pt;}
.y95{bottom:838.292933pt;}
.yc3{bottom:838.895733pt;}
.y45{bottom:851.480267pt;}
.y4{bottom:852.452000pt;}
.y6c{bottom:855.174800pt;}
.y94{bottom:856.959600pt;}
.yc2{bottom:857.788133pt;}
.yc1{bottom:869.121467pt;}
.y44{bottom:870.146933pt;}
.yc0{bottom:888.013867pt;}
.y43{bottom:888.813600pt;}
.y6b{bottom:890.072533pt;}
.y3{bottom:891.129200pt;}
.y93{bottom:894.523867pt;}
.ybf{bottom:899.347200pt;}
.y6a{bottom:906.072533pt;}
.y42{bottom:907.480267pt;}
.ybe{bottom:910.680533pt;}
.y92{bottom:913.190533pt;}
.y69{bottom:922.072533pt;}
.ybd{bottom:929.572933pt;}
.y91{bottom:931.857200pt;}
.y2{bottom:934.606267pt;}
.y68{bottom:938.072533pt;}
.ybc{bottom:940.906267pt;}
.y90{bottom:950.523867pt;}
.ybb{bottom:959.798667pt;}
.y9{bottom:964.134000pt;}
.y41{bottom:967.721733pt;}
.y67{bottom:969.190533pt;}
.yba{bottom:971.132000pt;}
.y3e{bottom:987.905600pt;}
.y40{bottom:1026.519733pt;}
.h6{height:20.016450pt;}
.h9{height:27.179688pt;}
.h7{height:32.447917pt;}
.ha{height:33.669271pt;}
.hf{height:33.792000pt;}
.hb{height:33.942708pt;}
.h2{height:34.272000pt;}
.h14{height:37.083333pt;}
.hd{height:38.479167pt;}
.h10{height:38.528000pt;}
.he{height:38.791667pt;}
.hc{height:41.083333pt;}
.h12{height:46.354167pt;}
.h13{height:47.291667pt;}
.h4{height:47.395833pt;}
.h5{height:47.437500pt;}
.h8{height:52.266667pt;}
.h11{height:56.750000pt;}
.h3{height:64.687500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.692933pt;}
.x5{left:60.472400pt;}
.xb{left:79.164533pt;}
.xa{left:82.106800pt;}
.x12{left:87.379200pt;}
.x7{left:88.283733pt;}
.x1a{left:94.488133pt;}
.x19{left:95.433067pt;}
.x9{left:101.081600pt;}
.x8{left:102.565733pt;}
.xf{left:114.889333pt;}
.x18{left:132.283467pt;}
.x11{left:134.404133pt;}
.x1b{left:141.732267pt;}
.xc{left:150.826000pt;}
.xe{left:154.698400pt;}
.x2{left:166.308400pt;}
.x3{left:206.293733pt;}
.x10{left:215.861067pt;}
.xd{left:239.657733pt;}
.x13{left:282.797867pt;}
.x4{left:299.847867pt;}
.x17{left:336.209333pt;}
.x1{left:337.795333pt;}
.x15{left:357.045200pt;}
.x1c{left:446.754000pt;}
.x14{left:635.992400pt;}
.x16{left:667.982267pt;}
}




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