
    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_27ecb649bf9beb584b25b551.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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_4acc96afedf9a2f734f88dd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_986a09330723b21b1823eb74.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919434;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_19b9766615ab864de10daa45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_e1e38d341adf3ac01e2e324d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b9fe7dba5856c11d4d97c83d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_0f497834bc85ca78755cb312.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921875;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_6a8c35fd8136730224408fdd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cfd5e84e2ed8f5b2f3c08b9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ed92b9d5ca276afe0ef6e9d2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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(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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.008000px;}
.ls15{letter-spacing:-0.774000px;}
.ls2e{letter-spacing:-0.381600px;}
.ls23{letter-spacing:-0.306600px;}
.ls2f{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.226200px;}
.ls18{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.089400px;}
.ls17{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.053280px;}
.ls1e{letter-spacing:-0.018720px;}
.lse{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.007920px;}
.lsb{letter-spacing:0.056920px;}
.lsa{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.120000px;}
.ls2c{letter-spacing:0.126720px;}
.ls27{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.338400px;}
.ls0{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.385200px;}
.ls1f{letter-spacing:0.413280px;}
.ls1a{letter-spacing:0.418320px;}
.ls24{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.666000px;}
.ls29{letter-spacing:0.666720px;}
.ls4{letter-spacing:0.979920px;}
.ls6{letter-spacing:2.106720px;}
.ls5{letter-spacing:2.826720px;}
.ls22{letter-spacing:3.546720px;}
.ls3{letter-spacing:4.266720px;}
.ls2{letter-spacing:4.986720px;}
.ls1{letter-spacing:5.706720px;}
.ls7{letter-spacing:6.426720px;}
.ls26{letter-spacing:7.146720px;}
.ls8{letter-spacing:8.586720px;}
.ls1b{letter-spacing:9.306720px;}
.ls2a{letter-spacing:12.186720px;}
.ls2d{letter-spacing:36.666720px;}
.ls2b{letter-spacing:37.386720px;}
.ls21{letter-spacing:40.986720px;}
.ls1c{letter-spacing:41.706720px;}
.ls28{letter-spacing:55.386720px;}
.ls19{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-59.760000px;}
.ws10{word-spacing:-17.511760px;}
.ws11{word-spacing:-17.225280px;}
.wsf{word-spacing:-17.031600px;}
.ws6{word-spacing:-16.951680px;}
.ws4{word-spacing:-16.613280px;}
.wse{word-spacing:-16.594560px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.506480px;}
.ws13{word-spacing:-16.353480px;}
.ws14{word-spacing:-16.306680px;}
.ws12{word-spacing:-16.231680px;}
.ws9{word-spacing:-15.823879px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.174000px;}
.wsb{word-spacing:-15.012000px;}
.ws15{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws8{word-spacing:-13.392000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.ws7{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._2{margin-left:-12.384720px;}
._8{margin-left:-8.312160px;}
._12{margin-left:-7.238132px;}
._4{margin-left:-5.115840px;}
._10{margin-left:-3.756748px;}
._b{margin-left:-2.685120px;}
._0{margin-left:-1.093680px;}
._1{width:1.302960px;}
._7{width:2.847600px;}
._a{width:3.902400px;}
._5{width:4.976400px;}
._6{width:6.297360px;}
._9{width:7.888320px;}
._c{width:8.979360px;}
._f{width:10.144320px;}
._3{width:11.456640px;}
._d{width:13.010640px;}
._e{width:14.554080px;}
._14{width:17.688960px;}
._11{width:30.888000px;}
._13{width:32.501565px;}
._15{width:67.607280px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsb{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y42{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y37{bottom:4.140000px;}
.y4f{bottom:5.010000px;}
.y62{bottom:7.020000px;}
.y61{bottom:7.200000px;}
.y2{bottom:9.930000px;}
.y41{bottom:10.260000px;}
.y4d{bottom:18.720000px;}
.y4{bottom:22.710000px;}
.y36{bottom:27.225000px;}
.y40{bottom:39.960000px;}
.y4c{bottom:42.300000px;}
.y3{bottom:47.910000px;}
.y3f{bottom:51.114000px;}
.y35{bottom:53.325000px;}
.y7{bottom:57.060000px;}
.y3e{bottom:62.994000px;}
.y4b{bottom:64.614000px;}
.y3d{bottom:75.954000px;}
.y34{bottom:79.425000px;}
.y4a{bottom:84.234000px;}
.y3c{bottom:88.914000px;}
.y7a{bottom:101.016000px;}
.y49{bottom:103.674000px;}
.y33{bottom:105.525000px;}
.y38{bottom:107.496000px;}
.y48{bottom:110.334000px;}
.y3b{bottom:111.054000px;}
.y9c{bottom:119.556000px;}
.y79{bottom:123.876000px;}
.y47{bottom:125.814000px;}
.y32{bottom:128.745000px;}
.y46{bottom:141.294000px;}
.y9b{bottom:142.416000px;}
.y78{bottom:150.150000px;}
.y31{bottom:151.785000px;}
.y45{bottom:156.774000px;}
.y9a{bottom:168.690000px;}
.y44{bottom:172.434000px;}
.y3a{bottom:172.974000px;}
.y77{bottom:173.370000px;}
.y30{bottom:177.885000px;}
.y39{bottom:183.594000px;}
.y43{bottom:187.914000px;}
.y99{bottom:194.790000px;}
.y76{bottom:196.230000px;}
.y2f{bottom:204.165000px;}
.y75{bottom:219.450000px;}
.y98{bottom:220.890000px;}
.y2e{bottom:230.265000px;}
.y74{bottom:242.670000px;}
.y97{bottom:244.110000px;}
.y2d{bottom:256.365000px;}
.y73{bottom:265.710000px;}
.y96{bottom:267.150000px;}
.y2c{bottom:279.585000px;}
.y72{bottom:291.810000px;}
.y95{bottom:293.250000px;}
.y1d{bottom:295.455000px;}
.y2b{bottom:302.655000px;}
.y71{bottom:317.910000px;}
.y94{bottom:319.350000px;}
.y1c{bottom:319.575000px;}
.ye{bottom:321.150000px;}
.y2a{bottom:328.755000px;}
.y1b{bottom:343.875000px;}
.y70{bottom:344.055000px;}
.y93{bottom:345.495000px;}
.y29{bottom:354.855000px;}
.y1a{bottom:367.995000px;}
.y6f{bottom:370.155000px;}
.y92{bottom:371.775000px;}
.y28{bottom:380.955000px;}
.y19{bottom:392.115000px;}
.y6e{bottom:396.435000px;}
.y91{bottom:397.875000px;}
.y27{bottom:407.055000px;}
.y18{bottom:416.235000px;}
.y6d{bottom:422.535000px;}
.y90{bottom:423.975000px;}
.y26{bottom:430.275000px;}
.y17{bottom:440.355000px;}
.y6c{bottom:448.635000px;}
.y8f{bottom:450.075000px;}
.y25{bottom:453.315000px;}
.y16{bottom:464.475000px;}
.y6b{bottom:474.735000px;}
.y8e{bottom:476.175000px;}
.y24{bottom:479.415000px;}
.y15{bottom:488.775000px;}
.y6a{bottom:497.955000px;}
.y8d{bottom:499.395000px;}
.yb4{bottom:499.935000px;}
.y23{bottom:502.635000px;}
.y14{bottom:512.895000px;}
.y8c{bottom:519.555000px;}
.y69{bottom:520.995000px;}
.yb3{bottom:522.255000px;}
.y22{bottom:525.675000px;}
.y13{bottom:537.015000px;}
.yb2{bottom:539.355000px;}
.y8b{bottom:542.595000px;}
.y68{bottom:544.215000px;}
.y21{bottom:551.820000px;}
.yb1{bottom:556.635000px;}
.y12{bottom:561.180000px;}
.y8a{bottom:565.815000px;}
.y67{bottom:567.255000px;}
.yb0{bottom:577.695000px;}
.y20{bottom:578.100000px;}
.y11{bottom:585.300000px;}
.y89{bottom:585.795000px;}
.y66{bottom:593.355000px;}
.yaf{bottom:603.825000px;}
.y1f{bottom:604.200000px;}
.y10{bottom:609.420000px;}
.y88{bottom:611.925000px;}
.y65{bottom:619.485000px;}
.yae{bottom:627.045000px;}
.y1e{bottom:627.420000px;}
.yf{bottom:633.720000px;}
.y87{bottom:638.025000px;}
.y64{bottom:639.285000px;}
.yad{bottom:650.085000px;}
.y86{bottom:664.125000px;}
.y63{bottom:666.285000px;}
.yac{bottom:676.185000px;}
.y85{bottom:687.345000px;}
.y60{bottom:693.105000px;}
.yab{bottom:702.465000px;}
.y84{bottom:713.445000px;}
.y5f{bottom:719.925000px;}
.yaa{bottom:725.685000px;}
.y83{bottom:739.545000px;}
.y5e{bottom:740.805000px;}
.ya9{bottom:748.545000px;}
.y82{bottom:765.645000px;}
.y5d{bottom:768.705000px;}
.ya8{bottom:774.825000px;}
.y5c{bottom:791.925000px;}
.ya7{bottom:800.925000px;}
.y5b{bottom:814.965000px;}
.y81{bottom:815.145000px;}
.ya6{bottom:824.145000px;}
.y80{bottom:838.005000px;}
.y5a{bottom:841.065000px;}
.ya5{bottom:847.185000px;}
.y59{bottom:864.285000px;}
.ya4{bottom:873.330000px;}
.y58{bottom:887.370000px;}
.y7f{bottom:890.430000px;}
.ya3{bottom:899.430000px;}
.y57{bottom:910.590000px;}
.y7e{bottom:916.530000px;}
.ya2{bottom:925.530000px;}
.y56{bottom:933.630000px;}
.y7d{bottom:942.630000px;}
.ya1{bottom:948.750000px;}
.y55{bottom:959.730000px;}
.y7c{bottom:965.850000px;}
.yd{bottom:967.110000px;}
.ya0{bottom:968.910000px;}
.yc{bottom:972.690000px;}
.y54{bottom:985.830000px;}
.y7b{bottom:988.890000px;}
.y9f{bottom:989.070000px;}
.yb{bottom:995.550000px;}
.y53{bottom:1011.930000px;}
.ya{bottom:1018.770000px;}
.y52{bottom:1035.150000px;}
.y9e{bottom:1038.210000px;}
.y9{bottom:1040.370000px;}
.y51{bottom:1058.190000px;}
.y9d{bottom:1061.430000px;}
.y8{bottom:1071.870000px;}
.y4e{bottom:1075.140000px;}
.y50{bottom:1084.290000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.ha{height:4.064063px;}
.h16{height:4.210313px;}
.h1c{height:20.160000px;}
.h12{height:21.114844px;}
.h11{height:25.136719px;}
.h1d{height:26.100000px;}
.h1a{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h15{height:38.100586px;}
.h13{height:38.997070px;}
.h14{height:39.471680px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h1f{height:43.506914px;}
.h5{height:46.251562px;}
.h19{height:50.500205px;}
.hf{height:53.019492px;}
.h1e{height:55.886893px;}
.h18{height:57.243164px;}
.h17{height:60.338990px;}
.h9{height:63.349102px;}
.h1b{height:64.002656px;}
.h3{height:65.884219px;}
.he{height:66.775148px;}
.h2{height:84.996000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.h10{height:212.940000px;}
.hb{height:643.425000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.660000px;}
.w8{width:143.496000px;}
.w7{width:162.900000px;}
.w9{width:494.715000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:7.056000px;}
.x19{left:8.100000px;}
.x4{left:12.780000px;}
.x15{left:14.940000px;}
.x17{left:16.560000px;}
.x24{left:18.180000px;}
.x39{left:21.240000px;}
.x16{left:22.320000px;}
.x6{left:26.640000px;}
.x26{left:29.160000px;}
.xf{left:43.740000px;}
.x25{left:47.700000px;}
.x10{left:50.760000px;}
.xe{left:54.900000px;}
.x28{left:57.060000px;}
.x1a{left:62.145000px;}
.x27{left:66.234000px;}
.x3a{left:68.940000px;}
.x14{left:70.554000px;}
.x13{left:73.254000px;}
.x1{left:78.300000px;}
.x3b{left:80.280000px;}
.x12{left:84.594000px;}
.x9{left:86.435987px;}
.x40{left:89.135987px;}
.x33{left:91.485000px;}
.x2{left:95.790000px;}
.x29{left:102.774000px;}
.x23{left:106.734000px;}
.x37{left:113.435987px;}
.x2a{left:123.345000px;}
.x11{left:124.554000px;}
.x2b{left:127.485000px;}
.x34{left:139.545000px;}
.x5{left:141.345000px;}
.x1b{left:158.085000px;}
.x3{left:182.370000px;}
.x35{left:192.825000px;}
.x18{left:219.090000px;}
.x2c{left:226.695000px;}
.x1c{left:229.935000px;}
.x1d{left:238.575000px;}
.x38{left:271.515000px;}
.x2d{left:287.535000px;}
.x2e{left:295.815000px;}
.x1e{left:329.835000px;}
.x1f{left:338.655000px;}
.x3c{left:390.674987px;}
.x32{left:431.760000px;}
.x3d{left:446.504987px;}
.x20{left:456.060000px;}
.x3e{left:478.004987px;}
.x21{left:490.080000px;}
.x2f{left:500.880000px;}
.x30{left:509.160000px;}
.xc{left:528.584987px;}
.x31{left:551.310000px;}
.x3f{left:557.924987px;}
.x22{left:588.390000px;}
.xb{left:625.649987px;}
.xa{left:678.929987px;}
.x8{left:766.049987px;}
.x7{left:784.439987px;}
.xd{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.896000pt;}
.ls15{letter-spacing:-0.688000pt;}
.ls2e{letter-spacing:-0.339200pt;}
.ls23{letter-spacing:-0.272533pt;}
.ls2f{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.201067pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.079467pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls1e{letter-spacing:-0.016640pt;}
.lse{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.007040pt;}
.lsb{letter-spacing:0.050596pt;}
.lsa{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.106667pt;}
.ls2c{letter-spacing:0.112640pt;}
.ls27{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.300800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.342400pt;}
.ls1f{letter-spacing:0.367360pt;}
.ls1a{letter-spacing:0.371840pt;}
.ls24{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.592000pt;}
.ls29{letter-spacing:0.592640pt;}
.ls4{letter-spacing:0.871040pt;}
.ls6{letter-spacing:1.872640pt;}
.ls5{letter-spacing:2.512640pt;}
.ls22{letter-spacing:3.152640pt;}
.ls3{letter-spacing:3.792640pt;}
.ls2{letter-spacing:4.432640pt;}
.ls1{letter-spacing:5.072640pt;}
.ls7{letter-spacing:5.712640pt;}
.ls26{letter-spacing:6.352640pt;}
.ls8{letter-spacing:7.632640pt;}
.ls1b{letter-spacing:8.272640pt;}
.ls2a{letter-spacing:10.832640pt;}
.ls2d{letter-spacing:32.592640pt;}
.ls2b{letter-spacing:33.232640pt;}
.ls21{letter-spacing:36.432640pt;}
.ls1c{letter-spacing:37.072640pt;}
.ls28{letter-spacing:49.232640pt;}
.ls19{letter-spacing:56.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws10{word-spacing:-15.566009pt;}
.ws11{word-spacing:-15.311360pt;}
.wsf{word-spacing:-15.139200pt;}
.ws6{word-spacing:-15.068160pt;}
.ws4{word-spacing:-14.767360pt;}
.wse{word-spacing:-14.750720pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.672427pt;}
.ws13{word-spacing:-14.536427pt;}
.ws14{word-spacing:-14.494827pt;}
.ws12{word-spacing:-14.428160pt;}
.ws9{word-spacing:-14.065670pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.488000pt;}
.wsb{word-spacing:-13.344000pt;}
.ws15{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws8{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.ws7{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._2{margin-left:-11.008640pt;}
._8{margin-left:-7.388587pt;}
._12{margin-left:-6.433895pt;}
._4{margin-left:-4.547413pt;}
._10{margin-left:-3.339332pt;}
._b{margin-left:-2.386773pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.158187pt;}
._7{width:2.531200pt;}
._a{width:3.468800pt;}
._5{width:4.423467pt;}
._6{width:5.597653pt;}
._9{width:7.011840pt;}
._c{width:7.981653pt;}
._f{width:9.017173pt;}
._3{width:10.183680pt;}
._d{width:11.565013pt;}
._e{width:12.936960pt;}
._14{width:15.723520pt;}
._11{width:27.456000pt;}
._13{width:28.890280pt;}
._15{width:60.095360pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsb{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y37{bottom:3.680000pt;}
.y4f{bottom:4.453333pt;}
.y62{bottom:6.240000pt;}
.y61{bottom:6.400000pt;}
.y2{bottom:8.826667pt;}
.y41{bottom:9.120000pt;}
.y4d{bottom:16.640000pt;}
.y4{bottom:20.186667pt;}
.y36{bottom:24.200000pt;}
.y40{bottom:35.520000pt;}
.y4c{bottom:37.600000pt;}
.y3{bottom:42.586667pt;}
.y3f{bottom:45.434667pt;}
.y35{bottom:47.400000pt;}
.y7{bottom:50.720000pt;}
.y3e{bottom:55.994667pt;}
.y4b{bottom:57.434667pt;}
.y3d{bottom:67.514667pt;}
.y34{bottom:70.600000pt;}
.y4a{bottom:74.874667pt;}
.y3c{bottom:79.034667pt;}
.y7a{bottom:89.792000pt;}
.y49{bottom:92.154667pt;}
.y33{bottom:93.800000pt;}
.y38{bottom:95.552000pt;}
.y48{bottom:98.074667pt;}
.y3b{bottom:98.714667pt;}
.y9c{bottom:106.272000pt;}
.y79{bottom:110.112000pt;}
.y47{bottom:111.834667pt;}
.y32{bottom:114.440000pt;}
.y46{bottom:125.594667pt;}
.y9b{bottom:126.592000pt;}
.y78{bottom:133.466667pt;}
.y31{bottom:134.920000pt;}
.y45{bottom:139.354667pt;}
.y9a{bottom:149.946667pt;}
.y44{bottom:153.274667pt;}
.y3a{bottom:153.754667pt;}
.y77{bottom:154.106667pt;}
.y30{bottom:158.120000pt;}
.y39{bottom:163.194667pt;}
.y43{bottom:167.034667pt;}
.y99{bottom:173.146667pt;}
.y76{bottom:174.426667pt;}
.y2f{bottom:181.480000pt;}
.y75{bottom:195.066667pt;}
.y98{bottom:196.346667pt;}
.y2e{bottom:204.680000pt;}
.y74{bottom:215.706667pt;}
.y97{bottom:216.986667pt;}
.y2d{bottom:227.880000pt;}
.y73{bottom:236.186667pt;}
.y96{bottom:237.466667pt;}
.y2c{bottom:248.520000pt;}
.y72{bottom:259.386667pt;}
.y95{bottom:260.666667pt;}
.y1d{bottom:262.626667pt;}
.y2b{bottom:269.026667pt;}
.y71{bottom:282.586667pt;}
.y94{bottom:283.866667pt;}
.y1c{bottom:284.066667pt;}
.ye{bottom:285.466667pt;}
.y2a{bottom:292.226667pt;}
.y1b{bottom:305.666667pt;}
.y70{bottom:305.826667pt;}
.y93{bottom:307.106667pt;}
.y29{bottom:315.426667pt;}
.y1a{bottom:327.106667pt;}
.y6f{bottom:329.026667pt;}
.y92{bottom:330.466667pt;}
.y28{bottom:338.626667pt;}
.y19{bottom:348.546667pt;}
.y6e{bottom:352.386667pt;}
.y91{bottom:353.666667pt;}
.y27{bottom:361.826667pt;}
.y18{bottom:369.986667pt;}
.y6d{bottom:375.586667pt;}
.y90{bottom:376.866667pt;}
.y26{bottom:382.466667pt;}
.y17{bottom:391.426667pt;}
.y6c{bottom:398.786667pt;}
.y8f{bottom:400.066667pt;}
.y25{bottom:402.946667pt;}
.y16{bottom:412.866667pt;}
.y6b{bottom:421.986667pt;}
.y8e{bottom:423.266667pt;}
.y24{bottom:426.146667pt;}
.y15{bottom:434.466667pt;}
.y6a{bottom:442.626667pt;}
.y8d{bottom:443.906667pt;}
.yb4{bottom:444.386667pt;}
.y23{bottom:446.786667pt;}
.y14{bottom:455.906667pt;}
.y8c{bottom:461.826667pt;}
.y69{bottom:463.106667pt;}
.yb3{bottom:464.226667pt;}
.y22{bottom:467.266667pt;}
.y13{bottom:477.346667pt;}
.yb2{bottom:479.426667pt;}
.y8b{bottom:482.306667pt;}
.y68{bottom:483.746667pt;}
.y21{bottom:490.506667pt;}
.yb1{bottom:494.786667pt;}
.y12{bottom:498.826667pt;}
.y8a{bottom:502.946667pt;}
.y67{bottom:504.226667pt;}
.yb0{bottom:513.506667pt;}
.y20{bottom:513.866667pt;}
.y11{bottom:520.266667pt;}
.y89{bottom:520.706667pt;}
.y66{bottom:527.426667pt;}
.yaf{bottom:536.733333pt;}
.y1f{bottom:537.066667pt;}
.y10{bottom:541.706667pt;}
.y88{bottom:543.933333pt;}
.y65{bottom:550.653333pt;}
.yae{bottom:557.373333pt;}
.y1e{bottom:557.706667pt;}
.yf{bottom:563.306667pt;}
.y87{bottom:567.133333pt;}
.y64{bottom:568.253333pt;}
.yad{bottom:577.853333pt;}
.y86{bottom:590.333333pt;}
.y63{bottom:592.253333pt;}
.yac{bottom:601.053333pt;}
.y85{bottom:610.973333pt;}
.y60{bottom:616.093333pt;}
.yab{bottom:624.413333pt;}
.y84{bottom:634.173333pt;}
.y5f{bottom:639.933333pt;}
.yaa{bottom:645.053333pt;}
.y83{bottom:657.373333pt;}
.y5e{bottom:658.493333pt;}
.ya9{bottom:665.373333pt;}
.y82{bottom:680.573333pt;}
.y5d{bottom:683.293333pt;}
.ya8{bottom:688.733333pt;}
.y5c{bottom:703.933333pt;}
.ya7{bottom:711.933333pt;}
.y5b{bottom:724.413333pt;}
.y81{bottom:724.573333pt;}
.ya6{bottom:732.573333pt;}
.y80{bottom:744.893333pt;}
.y5a{bottom:747.613333pt;}
.ya5{bottom:753.053333pt;}
.y59{bottom:768.253333pt;}
.ya4{bottom:776.293333pt;}
.y58{bottom:788.773333pt;}
.y7f{bottom:791.493333pt;}
.ya3{bottom:799.493333pt;}
.y57{bottom:809.413333pt;}
.y7e{bottom:814.693333pt;}
.ya2{bottom:822.693333pt;}
.y56{bottom:829.893333pt;}
.y7d{bottom:837.893333pt;}
.ya1{bottom:843.333333pt;}
.y55{bottom:853.093333pt;}
.y7c{bottom:858.533333pt;}
.yd{bottom:859.653333pt;}
.ya0{bottom:861.253333pt;}
.yc{bottom:864.613333pt;}
.y54{bottom:876.293333pt;}
.y7b{bottom:879.013333pt;}
.y9f{bottom:879.173333pt;}
.yb{bottom:884.933333pt;}
.y53{bottom:899.493333pt;}
.ya{bottom:905.573333pt;}
.y52{bottom:920.133333pt;}
.y9e{bottom:922.853333pt;}
.y9{bottom:924.773333pt;}
.y51{bottom:940.613333pt;}
.y9d{bottom:943.493333pt;}
.y8{bottom:952.773333pt;}
.y4e{bottom:955.680000pt;}
.y50{bottom:963.813333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.ha{height:3.612500pt;}
.h16{height:3.742500pt;}
.h1c{height:17.920000pt;}
.h12{height:18.768750pt;}
.h11{height:22.343750pt;}
.h1d{height:23.200000pt;}
.h1a{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h15{height:33.867188pt;}
.h13{height:34.664062pt;}
.h14{height:35.085938pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h1f{height:38.672812pt;}
.h5{height:41.112500pt;}
.h19{height:44.889071pt;}
.hf{height:47.128438pt;}
.h1e{height:49.677238pt;}
.h18{height:50.882812pt;}
.h17{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1b{height:56.891250pt;}
.h3{height:58.563750pt;}
.he{height:59.355688pt;}
.h2{height:75.552000pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.h10{height:189.280000pt;}
.hb{height:571.933333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.920000pt;}
.w8{width:127.552000pt;}
.w7{width:144.800000pt;}
.w9{width:439.746667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:6.272000pt;}
.x19{left:7.200000pt;}
.x4{left:11.360000pt;}
.x15{left:13.280000pt;}
.x17{left:14.720000pt;}
.x24{left:16.160000pt;}
.x39{left:18.880000pt;}
.x16{left:19.840000pt;}
.x6{left:23.680000pt;}
.x26{left:25.920000pt;}
.xf{left:38.880000pt;}
.x25{left:42.400000pt;}
.x10{left:45.120000pt;}
.xe{left:48.800000pt;}
.x28{left:50.720000pt;}
.x1a{left:55.240000pt;}
.x27{left:58.874667pt;}
.x3a{left:61.280000pt;}
.x14{left:62.714667pt;}
.x13{left:65.114667pt;}
.x1{left:69.600000pt;}
.x3b{left:71.360000pt;}
.x12{left:75.194667pt;}
.x9{left:76.831988pt;}
.x40{left:79.231988pt;}
.x33{left:81.320000pt;}
.x2{left:85.146667pt;}
.x29{left:91.354667pt;}
.x23{left:94.874667pt;}
.x37{left:100.831988pt;}
.x2a{left:109.640000pt;}
.x11{left:110.714667pt;}
.x2b{left:113.320000pt;}
.x34{left:124.040000pt;}
.x5{left:125.640000pt;}
.x1b{left:140.520000pt;}
.x3{left:162.106667pt;}
.x35{left:171.400000pt;}
.x18{left:194.746667pt;}
.x2c{left:201.506667pt;}
.x1c{left:204.386667pt;}
.x1d{left:212.066667pt;}
.x38{left:241.346667pt;}
.x2d{left:255.586667pt;}
.x2e{left:262.946667pt;}
.x1e{left:293.186667pt;}
.x1f{left:301.026667pt;}
.x3c{left:347.266655pt;}
.x32{left:383.786667pt;}
.x3d{left:396.893322pt;}
.x20{left:405.386667pt;}
.x3e{left:424.893322pt;}
.x21{left:435.626667pt;}
.x2f{left:445.226667pt;}
.x30{left:452.586667pt;}
.xc{left:469.853322pt;}
.x31{left:490.053333pt;}
.x3f{left:495.933322pt;}
.x22{left:523.013333pt;}
.xb{left:556.133322pt;}
.xa{left:603.493322pt;}
.x8{left:680.933322pt;}
.x7{left:697.279988pt;}
.xd{left:717.279988pt;}
}




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