
    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_e0234a1820dee53b108eb763.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.730957;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_a7661bbdc1e68f5f4c7efa5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_6a5870f50200cb449d82b6d6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b2385496ad5ad20fe5f7d064.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_e87eb613561e3618afdde8fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_f0ea8f0eecd7790b159d6520.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_b6e0ab054e4828d4d40447dd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a50d9c46d603dcfd5f7d5208.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_071f16ed9738bd367800e66f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.730957;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_77caa4f784d950e1797d9c9f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692871;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_810e7b8456795040aa6c5bee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.979980;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_62c490bcc0e35bfc9a5b870f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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_79ad056739cfa209bc916e6e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.093262;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_5a8f1237f90609b527e51b9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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_b05ada60d0fd03efa50c34b1.woff2')format("woff");}.fff{font-family:fff;line-height:0.692871;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_eabeed8955992cad641219ff.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.093262;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_ac0324512204ff684d3c0da4.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_18702205e2215afdc357d059.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.683594;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_fada9fed2b3d382a7719cf80.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_71fd3a53541ad30d52dbe3a1.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.093262;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_dc217479fb0b57963ee8fa37.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.692871;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_484bc498d35942545f5de5a9.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.093262;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:ff17;src:url('chunks/assets/font_2bedeac4840926dad028ae17.woff2')format("woff");}.ff17{font-family:ff17;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;}
.m1{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,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);}
.m2{transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.500000px;}
.v2{vertical-align:3.000000px;}
.v4{vertical-align:5.700060px;}
.v1{vertical-align:7.200000px;}
.ls0{letter-spacing:-6.000000px;}
.ls8{letter-spacing:-3.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.861000px;}
.ls7{letter-spacing:3.000000px;}
.ls4{letter-spacing:6.000000px;}
.ls2{letter-spacing:8.172000px;}
.ls6{letter-spacing:9.000000px;}
.ls5{letter-spacing:14.244000px;}
.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;}
}
.ws2{word-spacing:-43.320000px;}
.ws0{word-spacing:-34.656000px;}
.ws8{word-spacing:-24.000000px;}
.ws5{word-spacing:-15.000000px;}
.ws7{word-spacing:-12.000000px;}
.ws9{word-spacing:-9.000000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:358.860000px;}
.ws3{word-spacing:371.580000px;}
.ws6{word-spacing:536.460000px;}
._25{margin-left:-29.040000px;}
._38{margin-left:-27.084000px;}
._20{margin-left:-22.740000px;}
._2c{margin-left:-21.060000px;}
._2d{margin-left:-19.560000px;}
._26{margin-left:-18.300000px;}
._35{margin-left:-17.100000px;}
._19{margin-left:-15.840000px;}
._2b{margin-left:-14.784000px;}
._1e{margin-left:-13.500000px;}
._22{margin-left:-12.396000px;}
._17{margin-left:-10.860000px;}
._21{margin-left:-9.360000px;}
._1c{margin-left:-8.040000px;}
._23{margin-left:-6.756000px;}
._1b{margin-left:-5.700000px;}
._12{margin-left:-4.200000px;}
._7{margin-left:-2.952000px;}
._0{margin-left:-1.728000px;}
._4{width:1.536000px;}
._5{width:3.120000px;}
._2{width:4.464000px;}
._f{width:6.168000px;}
._8{width:7.224000px;}
._6{width:9.036000px;}
._a{width:10.356000px;}
._d{width:11.712000px;}
._1{width:12.864000px;}
._2e{width:13.908000px;}
._9{width:16.884000px;}
._c{width:18.144000px;}
._b{width:19.608000px;}
._e{width:20.700000px;}
._29{width:21.852000px;}
._11{width:22.908000px;}
._10{width:24.060000px;}
._30{width:25.116000px;}
._3{width:26.496000px;}
._13{width:28.296000px;}
._15{width:30.492000px;}
._31{width:36.252000px;}
._1a{width:38.100000px;}
._28{width:43.476000px;}
._14{width:52.224000px;}
._1d{width:58.410000px;}
._2a{width:61.944000px;}
._18{width:77.964000px;}
._27{width:91.494000px;}
._32{width:126.636000px;}
._36{width:133.440000px;}
._16{width:153.192000px;}
._39{width:202.500000px;}
._24{width:207.048000px;}
._33{width:250.740000px;}
._1f{width:460.188000px;}
._3a{width:633.456000px;}
._2f{width:678.588000px;}
._34{width:838.920000px;}
._37{width:1035.840000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:67.372785px;}
.y19{bottom:114.928575px;}
.y6b{bottom:121.747785px;}
.y4b{bottom:123.171135px;}
.yc2{bottom:123.904650px;}
.yd6{bottom:124.227000px;}
.y96{bottom:124.228500px;}
.ye0{bottom:126.381000px;}
.y18{bottom:130.753575px;}
.y4a{bottom:139.371135px;}
.yc1{bottom:141.529650px;}
.yd5{bottom:141.550500px;}
.y95{bottom:141.552000px;}
.y6a{bottom:142.072785px;}
.y17{bottom:146.578575px;}
.y49{bottom:155.196135px;}
.yd4{bottom:157.375500px;}
.y94{bottom:157.377000px;}
.yc0{bottom:157.729650px;}
.y69{bottom:158.346285px;}
.y16{bottom:162.402075px;}
.y48{bottom:171.394635px;}
.yd3{bottom:173.200500px;}
.y93{bottom:173.202000px;}
.ybf{bottom:173.554650px;}
.y68{bottom:174.619785px;}
.y15{bottom:178.602075px;}
.y47{bottom:187.594635px;}
.yd2{bottom:189.399000px;}
.y92{bottom:189.400500px;}
.ybe{bottom:189.753150px;}
.y67{bottom:190.893285px;}
.y14{bottom:194.125575px;}
.y46{bottom:203.418135px;}
.ybd{bottom:205.201650px;}
.yd1{bottom:205.222500px;}
.y91{bottom:205.224000px;}
.y66{bottom:206.718285px;}
.y13{bottom:209.950575px;}
.y45{bottom:219.318135px;}
.ybc{bottom:221.101650px;}
.yd0{bottom:221.122500px;}
.y90{bottom:221.124000px;}
.y65{bottom:222.543285px;}
.y12{bottom:225.774075px;}
.y44{bottom:235.143135px;}
.y8f{bottom:236.199000px;}
.ycf{bottom:236.572500px;}
.ybb{bottom:237.976650px;}
.y64{bottom:238.368285px;}
.y11{bottom:241.597575px;}
.y43{bottom:250.968135px;}
.yce{bottom:252.397500px;}
.y8e{bottom:252.399000px;}
.yba{bottom:252.751650px;}
.y63{bottom:253.893285px;}
.y10{bottom:257.422575px;}
.y42{bottom:266.416635px;}
.ycd{bottom:268.597500px;}
.y8d{bottom:268.599000px;}
.yb9{bottom:268.951650px;}
.y62{bottom:269.716785px;}
.y41{bottom:282.316635px;}
.yb8{bottom:284.400150px;}
.ycc{bottom:284.421000px;}
.y8c{bottom:284.422500px;}
.y61{bottom:285.540285px;}
.y40{bottom:298.141635px;}
.ycb{bottom:299.571000px;}
.y8b{bottom:299.572500px;}
.yb7{bottom:300.300150px;}
.y60{bottom:301.740285px;}
.y3f{bottom:314.341635px;}
.yca{bottom:315.771000px;}
.y8a{bottom:315.772500px;}
.yb6{bottom:316.500150px;}
.y5f{bottom:317.565285px;}
.y3e{bottom:329.790135px;}
.y89{bottom:331.596000px;}
.yb5{bottom:332.700150px;}
.y5e{bottom:333.390285px;}
.y3d{bottom:346.365135px;}
.yb4{bottom:347.100000px;}
.y88{bottom:347.419500px;}
.y3c{bottom:362.190135px;}
.y87{bottom:363.319500px;}
.yb3{bottom:363.600000px;}
.yc9{bottom:363.619500px;}
.y5d{bottom:365.113785px;}
.y3b{bottom:377.715135px;}
.y5a{bottom:379.138785px;}
.y86{bottom:379.144500px;}
.yb2{bottom:379.800000px;}
.y5c{bottom:380.938785px;}
.y3a{bottom:393.913635px;}
.y85{bottom:395.344500px;}
.yb1{bottom:395.700000px;}
.y5b{bottom:396.762285px;}
.yb0{bottom:409.725000px;}
.y39{bottom:409.738635px;}
.yaf{bottom:409.744500px;}
.y84{bottom:411.168000px;}
.yf{bottom:423.382575px;}
.y38{bottom:424.138485px;}
.y83{bottom:426.993000px;}
.yae{bottom:427.369500px;}
.y59{bottom:428.113785px;}
.ye{bottom:439.207575px;}
.y37{bottom:441.763485px;}
.y82{bottom:442.816500px;}
.yad{bottom:443.568000px;}
.y58{bottom:444.613785px;}
.yd{bottom:455.107575px;}
.y36{bottom:457.588485px;}
.y81{bottom:458.341500px;}
.yac{bottom:459.391500px;}
.y57{bottom:460.137285px;}
.yc{bottom:470.931075px;}
.y35{bottom:473.786985px;}
.yab{bottom:473.791500px;}
.y80{bottom:474.165000px;}
.y56{bottom:480.312285px;}
.yb{bottom:486.754575px;}
.y34{bottom:489.611985px;}
.y7f{bottom:490.365000px;}
.yaa{bottom:491.116500px;}
.y55{bottom:492.162135px;}
.ya{bottom:502.954575px;}
.y33{bottom:505.510485px;}
.y7e{bottom:506.188500px;}
.ya9{bottom:506.940000px;}
.y54{bottom:507.987135px;}
.y9{bottom:518.403075px;}
.y32{bottom:521.335485px;}
.y7d{bottom:521.713500px;}
.yc8{bottom:522.012000px;}
.ya8{bottom:522.763500px;}
.y53{bottom:523.810635px;}
.y8{bottom:534.678000px;}
.y31{bottom:537.160485px;}
.y7c{bottom:537.537000px;}
.yc7{bottom:537.912000px;}
.ya7{bottom:538.962000px;}
.y52{bottom:540.009135px;}
.y7{bottom:550.503000px;}
.y30{bottom:553.358985px;}
.y7b{bottom:553.737000px;}
.ya6{bottom:554.787000px;}
.y51{bottom:555.534135px;}
.y6{bottom:566.328000px;}
.y4c{bottom:567.756135px;}
.y2f{bottom:569.557485px;}
.y7a{bottom:569.560500px;}
.ydf{bottom:569.931000px;}
.ya5{bottom:570.612000px;}
.y50{bottom:571.359135px;}
.y5{bottom:582.526500px;}
.y79{bottom:585.009000px;}
.y2e{bottom:585.380985px;}
.yc6{bottom:585.384000px;}
.ya4{bottom:586.810500px;}
.y4f{bottom:587.557635px;}
.yde{bottom:588.306000px;}
.y4{bottom:598.351500px;}
.yc5{bottom:600.909000px;}
.y2d{bottom:601.205985px;}
.y78{bottom:601.209000px;}
.ya3{bottom:602.710500px;}
.y4e{bottom:603.006135px;}
.ydd{bottom:607.729500px;}
.y2c{bottom:616.730985px;}
.y77{bottom:617.109000px;}
.ya2{bottom:618.534000px;}
.y4d{bottom:618.906135px;}
.ydc{bottom:627.153000px;}
.y2b{bottom:632.930970px;}
.y76{bottom:632.932500px;}
.ya1{bottom:633.984000px;}
.y3{bottom:635.775000px;}
.ydb{bottom:646.203000px;}
.y2a{bottom:648.755970px;}
.y75{bottom:649.131000px;}
.ya0{bottom:650.182500px;}
.y29{bottom:664.956000px;}
.y9f{bottom:666.006000px;}
.yda{bottom:675.376500px;}
.y28{bottom:680.406000px;}
.y74{bottom:681.154500px;}
.y9e{bottom:682.206000px;}
.y73{bottom:696.979500px;}
.y23{bottom:696.981000px;}
.y9d{bottom:698.106000px;}
.y27{bottom:698.406000px;}
.y72{bottom:712.803000px;}
.y22{bottom:712.804500px;}
.y9c{bottom:713.929500px;}
.y26{bottom:714.606000px;}
.y71{bottom:728.703000px;}
.y21{bottom:728.704500px;}
.y9b{bottom:729.754500px;}
.y25{bottom:730.131000px;}
.y70{bottom:744.526500px;}
.y20{bottom:745.204500px;}
.y9a{bottom:745.953000px;}
.y24{bottom:746.704500px;}
.y6f{bottom:760.726500px;}
.y1c{bottom:761.401500px;}
.y99{bottom:762.151500px;}
.y1f{bottom:762.528000px;}
.yd9{bottom:767.926500px;}
.y2{bottom:772.200000px;}
.y6e{bottom:776.176500px;}
.yc4{bottom:776.551500px;}
.y1b{bottom:777.600000px;}
.y98{bottom:777.975000px;}
.y1e{bottom:777.976500px;}
.yd8{bottom:783.751500px;}
.y6d{bottom:792.375000px;}
.yc3{bottom:792.750000px;}
.y1a{bottom:793.800000px;}
.y97{bottom:794.175000px;}
.y1d{bottom:794.176500px;}
.yd7{bottom:799.950000px;}
.y1{bottom:817.200000px;}
.hc{height:26.412598px;}
.h4{height:41.660156px;}
.h2{height:42.117188px;}
.hb{height:42.332520px;}
.hd{height:44.749512px;}
.h6{height:52.346784px;}
.h5{height:52.646484px;}
.h3{height:52.825195px;}
.ha{height:58.346544px;}
.h8{height:59.846364px;}
.h9{height:59.846484px;}
.h7{height:62.846484px;}
.h1{height:69.000000px;}
.h0{height:882.750000px;}
.w1{width:638.250000px;}
.w0{width:648.000000px;}
.x0{left:0.000000px;}
.x4{left:66.976500px;}
.x8{left:68.024970px;}
.x26{left:71.625000px;}
.x27{left:76.350000px;}
.x5{left:82.425000px;}
.x6{left:83.835000px;}
.x9{left:84.973470px;}
.x28{left:87.150000px;}
.x29{left:88.202835px;}
.x7{left:98.623470px;}
.x3{left:123.451500px;}
.x2d{left:127.050000px;}
.x15{left:135.371820px;}
.x14{left:138.221820px;}
.x13{left:141.446820px;}
.x2b{left:142.950000px;}
.x12{left:152.621820px;}
.x10{left:153.749820px;}
.xa{left:154.800000px;}
.x2f{left:167.025000px;}
.x11{left:170.620320px;}
.xd{left:172.438485px;}
.x25{left:229.348170px;}
.x2{left:236.175000px;}
.x24{left:241.948020px;}
.xb{left:270.373500px;}
.x2c{left:301.350000px;}
.xf{left:327.974820px;}
.x16{left:330.146820px;}
.x1e{left:331.573020px;}
.x20{left:332.622870px;}
.xc{left:341.248485px;}
.x17{left:349.195320px;}
.xe{left:350.248485px;}
.x18{left:353.170170px;}
.x19{left:354.220320px;}
.x1f{left:357.822870px;}
.x1b{left:359.245170px;}
.x1c{left:361.046520px;}
.x1a{left:368.245170px;}
.x1d{left:370.046520px;}
.x22{left:373.348020px;}
.x21{left:376.572870px;}
.x23{left:381.223020px;}
.x1{left:481.650000px;}
.x2a{left:514.425000px;}
.x2e{left:578.835000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.333333pt;}
.v2{vertical-align:2.666667pt;}
.v4{vertical-align:5.066720pt;}
.v1{vertical-align:6.400000pt;}
.ls0{letter-spacing:-5.333333pt;}
.ls8{letter-spacing:-2.666667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.765333pt;}
.ls7{letter-spacing:2.666667pt;}
.ls4{letter-spacing:5.333333pt;}
.ls2{letter-spacing:7.264000pt;}
.ls6{letter-spacing:8.000000pt;}
.ls5{letter-spacing:12.661333pt;}
.ws2{word-spacing:-38.506667pt;}
.ws0{word-spacing:-30.805333pt;}
.ws8{word-spacing:-21.333333pt;}
.ws5{word-spacing:-13.333333pt;}
.ws7{word-spacing:-10.666667pt;}
.ws9{word-spacing:-8.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:318.986667pt;}
.ws3{word-spacing:330.293333pt;}
.ws6{word-spacing:476.853333pt;}
._25{margin-left:-25.813333pt;}
._38{margin-left:-24.074667pt;}
._20{margin-left:-20.213333pt;}
._2c{margin-left:-18.720000pt;}
._2d{margin-left:-17.386667pt;}
._26{margin-left:-16.266667pt;}
._35{margin-left:-15.200000pt;}
._19{margin-left:-14.080000pt;}
._2b{margin-left:-13.141333pt;}
._1e{margin-left:-12.000000pt;}
._22{margin-left:-11.018667pt;}
._17{margin-left:-9.653333pt;}
._21{margin-left:-8.320000pt;}
._1c{margin-left:-7.146667pt;}
._23{margin-left:-6.005333pt;}
._1b{margin-left:-5.066667pt;}
._12{margin-left:-3.733333pt;}
._7{margin-left:-2.624000pt;}
._0{margin-left:-1.536000pt;}
._4{width:1.365333pt;}
._5{width:2.773333pt;}
._2{width:3.968000pt;}
._f{width:5.482667pt;}
._8{width:6.421333pt;}
._6{width:8.032000pt;}
._a{width:9.205333pt;}
._d{width:10.410667pt;}
._1{width:11.434667pt;}
._2e{width:12.362667pt;}
._9{width:15.008000pt;}
._c{width:16.128000pt;}
._b{width:17.429333pt;}
._e{width:18.400000pt;}
._29{width:19.424000pt;}
._11{width:20.362667pt;}
._10{width:21.386667pt;}
._30{width:22.325333pt;}
._3{width:23.552000pt;}
._13{width:25.152000pt;}
._15{width:27.104000pt;}
._31{width:32.224000pt;}
._1a{width:33.866667pt;}
._28{width:38.645333pt;}
._14{width:46.421333pt;}
._1d{width:51.920000pt;}
._2a{width:55.061333pt;}
._18{width:69.301333pt;}
._27{width:81.328000pt;}
._32{width:112.565333pt;}
._36{width:118.613333pt;}
._16{width:136.170667pt;}
._39{width:180.000000pt;}
._24{width:184.042667pt;}
._33{width:222.880000pt;}
._1f{width:409.056000pt;}
._3a{width:563.072000pt;}
._2f{width:603.189333pt;}
._34{width:745.706667pt;}
._37{width:920.746667pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:34.666667pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:59.886920pt;}
.y19{bottom:102.158733pt;}
.y6b{bottom:108.220253pt;}
.y4b{bottom:109.485453pt;}
.yc2{bottom:110.137467pt;}
.yd6{bottom:110.424000pt;}
.y96{bottom:110.425333pt;}
.ye0{bottom:112.338667pt;}
.y18{bottom:116.225400pt;}
.y4a{bottom:123.885453pt;}
.yc1{bottom:125.804133pt;}
.yd5{bottom:125.822667pt;}
.y95{bottom:125.824000pt;}
.y6a{bottom:126.286920pt;}
.y17{bottom:130.292067pt;}
.y49{bottom:137.952120pt;}
.yd4{bottom:139.889333pt;}
.y94{bottom:139.890667pt;}
.yc0{bottom:140.204133pt;}
.y69{bottom:140.752253pt;}
.y16{bottom:144.357400pt;}
.y48{bottom:152.350787pt;}
.yd3{bottom:153.956000pt;}
.y93{bottom:153.957333pt;}
.ybf{bottom:154.270800pt;}
.y68{bottom:155.217587pt;}
.y15{bottom:158.757400pt;}
.y47{bottom:166.750787pt;}
.yd2{bottom:168.354667pt;}
.y92{bottom:168.356000pt;}
.ybe{bottom:168.669467pt;}
.y67{bottom:169.682920pt;}
.y14{bottom:172.556067pt;}
.y46{bottom:180.816120pt;}
.ybd{bottom:182.401467pt;}
.yd1{bottom:182.420000pt;}
.y91{bottom:182.421333pt;}
.y66{bottom:183.749587pt;}
.y13{bottom:186.622733pt;}
.y45{bottom:194.949453pt;}
.ybc{bottom:196.534800pt;}
.yd0{bottom:196.553333pt;}
.y90{bottom:196.554667pt;}
.y65{bottom:197.816253pt;}
.y12{bottom:200.688067pt;}
.y44{bottom:209.016120pt;}
.y8f{bottom:209.954667pt;}
.ycf{bottom:210.286667pt;}
.ybb{bottom:211.534800pt;}
.y64{bottom:211.882920pt;}
.y11{bottom:214.753400pt;}
.y43{bottom:223.082787pt;}
.yce{bottom:224.353333pt;}
.y8e{bottom:224.354667pt;}
.yba{bottom:224.668133pt;}
.y63{bottom:225.682920pt;}
.y10{bottom:228.820067pt;}
.y42{bottom:236.814787pt;}
.ycd{bottom:238.753333pt;}
.y8d{bottom:238.754667pt;}
.yb9{bottom:239.068133pt;}
.y62{bottom:239.748253pt;}
.y41{bottom:250.948120pt;}
.yb8{bottom:252.800133pt;}
.ycc{bottom:252.818667pt;}
.y8c{bottom:252.820000pt;}
.y61{bottom:253.813587pt;}
.y40{bottom:265.014787pt;}
.ycb{bottom:266.285333pt;}
.y8b{bottom:266.286667pt;}
.yb7{bottom:266.933467pt;}
.y60{bottom:268.213587pt;}
.y3f{bottom:279.414787pt;}
.yca{bottom:280.685333pt;}
.y8a{bottom:280.686667pt;}
.yb6{bottom:281.333467pt;}
.y5f{bottom:282.280253pt;}
.y3e{bottom:293.146787pt;}
.y89{bottom:294.752000pt;}
.yb5{bottom:295.733467pt;}
.y5e{bottom:296.346920pt;}
.y3d{bottom:307.880120pt;}
.yb4{bottom:308.533333pt;}
.y88{bottom:308.817333pt;}
.y3c{bottom:321.946787pt;}
.y87{bottom:322.950667pt;}
.yb3{bottom:323.200000pt;}
.yc9{bottom:323.217333pt;}
.y5d{bottom:324.545587pt;}
.y3b{bottom:335.746787pt;}
.y5a{bottom:337.012253pt;}
.y86{bottom:337.017333pt;}
.yb2{bottom:337.600000pt;}
.y5c{bottom:338.612253pt;}
.y3a{bottom:350.145453pt;}
.y85{bottom:351.417333pt;}
.yb1{bottom:351.733333pt;}
.y5b{bottom:352.677587pt;}
.yb0{bottom:364.200000pt;}
.y39{bottom:364.212120pt;}
.yaf{bottom:364.217333pt;}
.y84{bottom:365.482667pt;}
.yf{bottom:376.340067pt;}
.y38{bottom:377.011987pt;}
.y83{bottom:379.549333pt;}
.yae{bottom:379.884000pt;}
.y59{bottom:380.545587pt;}
.ye{bottom:390.406733pt;}
.y37{bottom:392.678653pt;}
.y82{bottom:393.614667pt;}
.yad{bottom:394.282667pt;}
.y58{bottom:395.212253pt;}
.yd{bottom:404.540067pt;}
.y36{bottom:406.745320pt;}
.y81{bottom:407.414667pt;}
.yac{bottom:408.348000pt;}
.y57{bottom:409.010920pt;}
.yc{bottom:418.605400pt;}
.y35{bottom:421.143987pt;}
.yab{bottom:421.148000pt;}
.y80{bottom:421.480000pt;}
.y56{bottom:426.944253pt;}
.yb{bottom:432.670733pt;}
.y34{bottom:435.210653pt;}
.y7f{bottom:435.880000pt;}
.yaa{bottom:436.548000pt;}
.y55{bottom:437.477453pt;}
.ya{bottom:447.070733pt;}
.y33{bottom:449.342653pt;}
.y7e{bottom:449.945333pt;}
.ya9{bottom:450.613333pt;}
.y54{bottom:451.544120pt;}
.y9{bottom:460.802733pt;}
.y32{bottom:463.409320pt;}
.y7d{bottom:463.745333pt;}
.yc8{bottom:464.010667pt;}
.ya8{bottom:464.678667pt;}
.y53{bottom:465.609453pt;}
.y8{bottom:475.269333pt;}
.y31{bottom:477.475987pt;}
.y7c{bottom:477.810667pt;}
.yc7{bottom:478.144000pt;}
.ya7{bottom:479.077333pt;}
.y52{bottom:480.008120pt;}
.y7{bottom:489.336000pt;}
.y30{bottom:491.874653pt;}
.y7b{bottom:492.210667pt;}
.ya6{bottom:493.144000pt;}
.y51{bottom:493.808120pt;}
.y6{bottom:503.402667pt;}
.y4c{bottom:504.672120pt;}
.y2f{bottom:506.273320pt;}
.y7a{bottom:506.276000pt;}
.ydf{bottom:506.605333pt;}
.ya5{bottom:507.210667pt;}
.y50{bottom:507.874787pt;}
.y5{bottom:517.801333pt;}
.y79{bottom:520.008000pt;}
.y2e{bottom:520.338653pt;}
.yc6{bottom:520.341333pt;}
.ya4{bottom:521.609333pt;}
.y4f{bottom:522.273453pt;}
.yde{bottom:522.938667pt;}
.y4{bottom:531.868000pt;}
.yc5{bottom:534.141333pt;}
.y2d{bottom:534.405320pt;}
.y78{bottom:534.408000pt;}
.ya3{bottom:535.742667pt;}
.y4e{bottom:536.005453pt;}
.ydd{bottom:540.204000pt;}
.y2c{bottom:548.205320pt;}
.y77{bottom:548.541333pt;}
.ya2{bottom:549.808000pt;}
.y4d{bottom:550.138787pt;}
.ydc{bottom:557.469333pt;}
.y2b{bottom:562.605307pt;}
.y76{bottom:562.606667pt;}
.ya1{bottom:563.541333pt;}
.y3{bottom:565.133333pt;}
.ydb{bottom:574.402667pt;}
.y2a{bottom:576.671973pt;}
.y75{bottom:577.005333pt;}
.ya0{bottom:577.940000pt;}
.y29{bottom:591.072000pt;}
.y9f{bottom:592.005333pt;}
.yda{bottom:600.334667pt;}
.y28{bottom:604.805333pt;}
.y74{bottom:605.470667pt;}
.y9e{bottom:606.405333pt;}
.y73{bottom:619.537333pt;}
.y23{bottom:619.538667pt;}
.y9d{bottom:620.538667pt;}
.y27{bottom:620.805333pt;}
.y72{bottom:633.602667pt;}
.y22{bottom:633.604000pt;}
.y9c{bottom:634.604000pt;}
.y26{bottom:635.205333pt;}
.y71{bottom:647.736000pt;}
.y21{bottom:647.737333pt;}
.y9b{bottom:648.670667pt;}
.y25{bottom:649.005333pt;}
.y70{bottom:661.801333pt;}
.y20{bottom:662.404000pt;}
.y9a{bottom:663.069333pt;}
.y24{bottom:663.737333pt;}
.y6f{bottom:676.201333pt;}
.y1c{bottom:676.801333pt;}
.y99{bottom:677.468000pt;}
.y1f{bottom:677.802667pt;}
.yd9{bottom:682.601333pt;}
.y2{bottom:686.400000pt;}
.y6e{bottom:689.934667pt;}
.yc4{bottom:690.268000pt;}
.y1b{bottom:691.200000pt;}
.y98{bottom:691.533333pt;}
.y1e{bottom:691.534667pt;}
.yd8{bottom:696.668000pt;}
.y6d{bottom:704.333333pt;}
.yc3{bottom:704.666667pt;}
.y1a{bottom:705.600000pt;}
.y97{bottom:705.933333pt;}
.y1d{bottom:705.934667pt;}
.yd7{bottom:711.066667pt;}
.y1{bottom:726.400000pt;}
.hc{height:23.477865pt;}
.h4{height:37.031250pt;}
.h2{height:37.437500pt;}
.hb{height:37.628906pt;}
.hd{height:39.777344pt;}
.h6{height:46.530475pt;}
.h5{height:46.796875pt;}
.h3{height:46.955729pt;}
.ha{height:51.863595pt;}
.h8{height:53.196768pt;}
.h9{height:53.196875pt;}
.h7{height:55.863542pt;}
.h1{height:61.333333pt;}
.h0{height:784.666667pt;}
.w1{width:567.333333pt;}
.w0{width:576.000000pt;}
.x0{left:0.000000pt;}
.x4{left:59.534667pt;}
.x8{left:60.466640pt;}
.x26{left:63.666667pt;}
.x27{left:67.866667pt;}
.x5{left:73.266667pt;}
.x6{left:74.520000pt;}
.x9{left:75.531973pt;}
.x28{left:77.466667pt;}
.x29{left:78.402520pt;}
.x7{left:87.665307pt;}
.x3{left:109.734667pt;}
.x2d{left:112.933333pt;}
.x15{left:120.330507pt;}
.x14{left:122.863840pt;}
.x13{left:125.730507pt;}
.x2b{left:127.066667pt;}
.x12{left:135.663840pt;}
.x10{left:136.666507pt;}
.xa{left:137.600000pt;}
.x2f{left:148.466667pt;}
.x11{left:151.662507pt;}
.xd{left:153.278653pt;}
.x25{left:203.865040pt;}
.x2{left:209.933333pt;}
.x24{left:215.064907pt;}
.xb{left:240.332000pt;}
.x2c{left:267.866667pt;}
.xf{left:291.533173pt;}
.x16{left:293.463840pt;}
.x1e{left:294.731573pt;}
.x20{left:295.664773pt;}
.xc{left:303.331987pt;}
.x17{left:310.395840pt;}
.xe{left:311.331987pt;}
.x18{left:313.929040pt;}
.x19{left:314.862507pt;}
.x1f{left:318.064773pt;}
.x1b{left:319.329040pt;}
.x1c{left:320.930240pt;}
.x1a{left:327.329040pt;}
.x1d{left:328.930240pt;}
.x22{left:331.864907pt;}
.x21{left:334.731440pt;}
.x23{left:338.864907pt;}
.x1{left:428.133333pt;}
.x2a{left:457.266667pt;}
.x2e{left:514.520000pt;}
}




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