
    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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_68959f5c60170849903dc30d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.899902;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_28868e4de8440ef9355f193f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_16cdce713685614b5eeacf54.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_6b8825d96f53501c950705eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_86d9406863ffbb73b312ba67.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_24e995b9ed5d034ab5a23de7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_86ad9f044215dcffd9e309ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.030762;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_943dbe82eefb75ea522d456e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.030762;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8c99b13a1d8e1b196facc3e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8162fc91a4da2090a3871dd0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.859375;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_064ab48fb96824219aa821d5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172363;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_438fe57dc7bc0ffa5a996b4d.woff2')format("woff");}.fff{font-family:fff;line-height:0.944824;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_fc5cb6b0129b3fda2cce410c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.944824;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(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;}
.ls24{letter-spacing:-6.600000px;}
.ls8{letter-spacing:-3.468000px;}
.ls2f{letter-spacing:-3.024000px;}
.ls7{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.576000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.060000px;}
.lse{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.129600px;}
.lsd{letter-spacing:0.266400px;}
.ls23{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.630000px;}
.ls1b{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.734400px;}
.ls5{letter-spacing:0.768000px;}
.ls2a{letter-spacing:0.840000px;}
.ls11{letter-spacing:1.020000px;}
.ls1{letter-spacing:1.374000px;}
.lsf{letter-spacing:1.470000px;}
.ls29{letter-spacing:1.644000px;}
.ls12{letter-spacing:1.677600px;}
.lsb{letter-spacing:1.728000px;}
.ls15{letter-spacing:1.800000px;}
.ls18{letter-spacing:1.920000px;}
.lsa{letter-spacing:1.980000px;}
.ls25{letter-spacing:2.160000px;}
.lsc{letter-spacing:2.418000px;}
.ls20{letter-spacing:2.448000px;}
.ls17{letter-spacing:3.720000px;}
.ls16{letter-spacing:3.780000px;}
.ls10{letter-spacing:4.620000px;}
.ls21{letter-spacing:5.760000px;}
.ls2b{letter-spacing:5.880000px;}
.ls1e{letter-spacing:5.940000px;}
.ls2{letter-spacing:6.607200px;}
.ls1f{letter-spacing:9.360000px;}
.ls26{letter-spacing:20.100000px;}
.ls27{letter-spacing:20.160000px;}
.ls1a{letter-spacing:20.220000px;}
.ls28{letter-spacing:20.280000px;}
.ls1c{letter-spacing:20.340000px;}
.ls1d{letter-spacing:23.760000px;}
.ls2c{letter-spacing:30.960000px;}
.ls2d{letter-spacing:31.140000px;}
.ls19{letter-spacing:34.164000px;}
.ls2e{letter-spacing:34.680000px;}
.ls13{letter-spacing:45.501600px;}
.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;}
}
.ws9{word-spacing:-82.800000px;}
.wsc{word-spacing:-72.648000px;}
.wsb{word-spacing:-72.000000px;}
.wsd{word-spacing:-71.280000px;}
.ws7{word-spacing:-20.358000px;}
.ws8{word-spacing:-20.100000px;}
.ws2{word-spacing:-18.630000px;}
.ws3{word-spacing:-16.200000px;}
.ws6{word-spacing:-15.850800px;}
.wsa{word-spacing:-15.624000px;}
.ws1{word-spacing:-15.205200px;}
.ws4{word-spacing:-14.538000px;}
.ws5{word-spacing:-13.770000px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-4.582800px;}
._a{margin-left:-3.070800px;}
._2{margin-left:-1.450800px;}
._0{width:1.123200px;}
._4{width:2.191200px;}
._1{width:3.378000px;}
._3{width:5.216400px;}
._1e{width:6.832800px;}
._c{width:8.292000px;}
._b{width:9.338400px;}
._7{width:10.476000px;}
._6{width:12.420000px;}
._d{width:13.424400px;}
._21{width:14.490000px;}
._5{width:15.526800px;}
._1c{width:17.524800px;}
._f{width:19.606800px;}
._12{width:20.716800px;}
._10{width:22.417200px;}
._11{width:23.493600px;}
._1d{width:24.796800px;}
._3c{width:26.317200px;}
._24{width:27.698400px;}
._22{width:29.056800px;}
._23{width:31.010400px;}
._20{width:32.090400px;}
._3b{width:33.901200px;}
._1f{width:35.182800px;}
._2b{width:36.216000px;}
._15{width:37.492800px;}
._16{width:38.530800px;}
._25{width:39.627600px;}
._17{width:41.306400px;}
._14{width:43.189200px;}
._18{width:45.147600px;}
._2a{width:46.413600px;}
._19{width:47.700000px;}
._3a{width:48.738000px;}
._29{width:50.444400px;}
._2e{width:53.533200px;}
._30{width:57.217200px;}
._9{width:58.896000px;}
._13{width:60.307200px;}
._2f{width:61.512000px;}
._35{width:63.508800px;}
._8{width:64.532400px;}
._28{width:67.966800px;}
._36{width:72.003600px;}
._26{width:75.699600px;}
._27{width:78.416400px;}
._31{width:82.291200px;}
._3d{width:88.005600px;}
._32{width:93.770400px;}
._37{width:97.312800px;}
._2c{width:103.741200px;}
._39{width:106.654800px;}
._2d{width:107.823600px;}
._1b{width:111.090000px;}
._1a{width:115.182000px;}
._34{width:178.806000px;}
._33{width:180.066000px;}
._38{width:183.754800px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(83,129,53);}
.fc1{color:transparent;}
.fc3{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs1{font-size:46.800000px;}
.fs4{font-size:50.400000px;}
.fs2{font-size:61.200000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:82.800000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.437500px;}
.y5{bottom:41.400000px;}
.y4{bottom:56.737500px;}
.y37{bottom:111.675000px;}
.y78{bottom:116.175000px;}
.yb4{bottom:118.875000px;}
.y62{bottom:126.075000px;}
.y36{bottom:128.775000px;}
.y82{bottom:134.175000px;}
.y95{bottom:137.775000px;}
.y77{bottom:140.475000px;}
.yb3{bottom:143.175000px;}
.y35{bottom:145.875000px;}
.yce{bottom:148.575000px;}
.y61{bottom:150.405000px;}
.y34{bottom:151.305000px;}
.y81{bottom:157.620000px;}
.y33{bottom:162.105000px;}
.y76{bottom:164.805000px;}
.yb2{bottom:167.505000px;}
.ycd{bottom:169.305000px;}
.y60{bottom:174.705000px;}
.y80{bottom:181.905000px;}
.y94{bottom:186.420000px;}
.y75{bottom:188.205000px;}
.ycc{bottom:190.005000px;}
.yb1{bottom:190.905000px;}
.y5f{bottom:198.120000px;}
.y32{bottom:201.750000px;}
.y7f{bottom:206.250000px;}
.y93{bottom:210.750000px;}
.y74{bottom:212.550000px;}
.yb0{bottom:215.250000px;}
.y5e{bottom:222.450000px;}
.y31{bottom:226.050000px;}
.y7e{bottom:228.750000px;}
.ycb{bottom:231.450000px;}
.y92{bottom:234.150000px;}
.y73{bottom:236.850000px;}
.yaf{bottom:239.550000px;}
.y5d{bottom:246.750000px;}
.y30{bottom:250.350000px;}
.yca{bottom:252.150000px;}
.y7d{bottom:254.880000px;}
.y91{bottom:258.495000px;}
.y72{bottom:261.195000px;}
.yae{bottom:263.880000px;}
.y5c{bottom:271.095000px;}
.yc9{bottom:271.995000px;}
.y2f{bottom:273.780000px;}
.y7c{bottom:280.995000px;}
.y90{bottom:282.780000px;}
.y71{bottom:284.595000px;}
.yad{bottom:287.280000px;}
.yc8{bottom:292.695000px;}
.y5b{bottom:294.495000px;}
.y2e{bottom:298.095000px;}
.y7b{bottom:301.695000px;}
.y8f{bottom:306.225000px;}
.y70{bottom:308.925000px;}
.yac{bottom:311.625000px;}
.yc7{bottom:313.425000px;}
.y7a{bottom:315.225000px;}
.y5a{bottom:318.825000px;}
.y2d{bottom:322.425000px;}
.y8e{bottom:330.525000px;}
.y6f{bottom:333.225000px;}
.yc6{bottom:334.125000px;}
.yab{bottom:335.925000px;}
.y59{bottom:343.125000px;}
.y2c{bottom:346.725000px;}
.y8d{bottom:354.825000px;}
.y6e{bottom:357.555000px;}
.yaa{bottom:360.255000px;}
.y58{bottom:367.455000px;}
.y2b{bottom:370.155000px;}
.yc5{bottom:375.570000px;}
.y8c{bottom:379.170000px;}
.y6d{bottom:380.955000px;}
.ya9{bottom:383.655000px;}
.y57{bottom:390.855000px;}
.y2a{bottom:394.455000px;}
.yc4{bottom:396.255000px;}
.y8b{bottom:403.455000px;}
.y6c{bottom:405.255000px;}
.ya8{bottom:407.955000px;}
.y56{bottom:415.200000px;}
.yc3{bottom:417.000000px;}
.y29{bottom:418.800000px;}
.y6b{bottom:429.600000px;}
.y8a{bottom:431.400000px;}
.ya7{bottom:432.300000px;}
.yc2{bottom:437.700000px;}
.y55{bottom:439.500000px;}
.y28{bottom:443.100000px;}
.y6a{bottom:453.000000px;}
.y89{bottom:454.800000px;}
.ya6{bottom:456.600000px;}
.yc1{bottom:458.400000px;}
.y54{bottom:463.830000px;}
.y27{bottom:466.545000px;}
.y69{bottom:477.330000px;}
.yc0{bottom:479.130000px;}
.ya5{bottom:480.045000px;}
.y88{bottom:480.945000px;}
.y53{bottom:487.245000px;}
.y26{bottom:489.945000px;}
.ybf{bottom:499.830000px;}
.y68{bottom:501.630000px;}
.ya4{bottom:504.345000px;}
.y87{bottom:505.230000px;}
.y25{bottom:510.630000px;}
.y52{bottom:511.530000px;}
.ybe{bottom:519.675000px;}
.y67{bottom:525.975000px;}
.ya3{bottom:528.675000px;}
.y86{bottom:530.475000px;}
.y24{bottom:531.375000px;}
.y51{bottom:535.875000px;}
.ybd{bottom:540.375000px;}
.y66{bottom:551.175000px;}
.y23{bottom:552.075000px;}
.ya2{bottom:552.975000px;}
.y85{bottom:554.775000px;}
.y50{bottom:560.175000px;}
.ybc{bottom:561.075000px;}
.y22{bottom:572.805000px;}
.ya1{bottom:576.405000px;}
.y65{bottom:577.320000px;}
.y79{bottom:580.905000px;}
.ybb{bottom:581.820000px;}
.y4f{bottom:583.620000px;}
.y21{bottom:593.505000px;}
.ya0{bottom:600.720000px;}
.y64{bottom:602.505000px;}
.yba{bottom:603.405000px;}
.y84{bottom:604.320000px;}
.y4e{bottom:607.905000px;}
.y20{bottom:614.220000px;}
.y9f{bottom:625.050000px;}
.yb9{bottom:627.750000px;}
.y63{bottom:628.650000px;}
.y83{bottom:630.450000px;}
.y4d{bottom:632.250000px;}
.y1f{bottom:634.050000px;}
.y9e{bottom:648.450000px;}
.yb8{bottom:650.250000px;}
.y1e{bottom:654.750000px;}
.y4c{bottom:655.650000px;}
.ye4{bottom:663.750000px;}
.y9d{bottom:672.780000px;}
.y1d{bottom:675.480000px;}
.yb7{bottom:677.280000px;}
.y4b{bottom:679.995000px;}
.ye3{bottom:687.195000px;}
.y1c{bottom:696.180000px;}
.y9c{bottom:697.095000px;}
.yb6{bottom:701.580000px;}
.y4a{bottom:704.280000px;}
.ye2{bottom:707.880000px;}
.y1b{bottom:716.880000px;}
.y9b{bottom:719.580000px;}
.yb5{bottom:725.925000px;}
.y49{bottom:728.625000px;}
.y1a{bottom:737.625000px;}
.y9a{bottom:745.725000px;}
.ye1{bottom:749.325000px;}
.y48{bottom:752.025000px;}
.y19{bottom:758.325000px;}
.ye0{bottom:769.125000px;}
.y99{bottom:771.855000px;}
.y47{bottom:776.355000px;}
.y18{bottom:779.070000px;}
.ydf{bottom:789.855000px;}
.y98{bottom:792.570000px;}
.y17{bottom:799.755000px;}
.y46{bottom:800.670000px;}
.y97{bottom:806.955000px;}
.yde{bottom:810.570000px;}
.y16{bottom:820.455000px;}
.y45{bottom:825.000000px;}
.ydd{bottom:831.300000px;}
.y15{bottom:841.200000px;}
.y44{bottom:848.400000px;}
.ydc{bottom:852.000000px;}
.y14{bottom:861.900000px;}
.y43{bottom:872.700000px;}
.y13{bottom:881.730000px;}
.ydb{bottom:893.445000px;}
.y42{bottom:897.045000px;}
.y12{bottom:903.330000px;}
.yda{bottom:913.245000px;}
.y41{bottom:921.330000px;}
.y11{bottom:927.675000px;}
.yd9{bottom:933.975000px;}
.y40{bottom:944.775000px;}
.y10{bottom:951.975000px;}
.yd8{bottom:954.675000px;}
.y3f{bottom:969.075000px;}
.yd7{bottom:975.375000px;}
.yf{bottom:976.275000px;}
.y3e{bottom:993.420000px;}
.yd6{bottom:996.105000px;}
.ye{bottom:999.705000px;}
.yd5{bottom:1015.920000px;}
.y3d{bottom:1017.705000px;}
.yc{bottom:1024.005000px;}
.yd{bottom:1031.250000px;}
.yd4{bottom:1036.650000px;}
.y3c{bottom:1041.150000px;}
.yb{bottom:1049.250000px;}
.yd3{bottom:1057.350000px;}
.y3b{bottom:1065.450000px;}
.ya{bottom:1074.450000px;}
.yd2{bottom:1078.050000px;}
.y3a{bottom:1089.780000px;}
.yd1{bottom:1098.795000px;}
.y9{bottom:1099.695000px;}
.y39{bottom:1114.080000px;}
.yd0{bottom:1119.480000px;}
.y8{bottom:1124.880000px;}
.y96{bottom:1134.825000px;}
.y38{bottom:1137.525000px;}
.ycf{bottom:1140.225000px;}
.y7{bottom:1142.025000px;}
.y1{bottom:1160.925000px;}
.y3{bottom:1174.425000px;}
.y2{bottom:1196.955000px;}
.h5{height:22.537500px;}
.hc{height:27.000000px;}
.h3{height:35.328516px;}
.h9{height:37.800000px;}
.h6{height:45.900000px;}
.h12{height:49.605469px;}
.hb{height:54.000000px;}
.h7{height:60.361523px;}
.h2{height:60.855469px;}
.h4{height:60.871289px;}
.ha{height:62.100000px;}
.hf{height:66.304688px;}
.h11{height:71.613281px;}
.h10{height:74.004654px;}
.he{height:82.355273px;}
.h8{height:84.781055px;}
.hd{height:85.105352px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:66.675000px;}
.w1{width:892.500000px;}
.w4{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:20.737500px;}
.x4{left:74.775000px;}
.x1{left:127.949987px;}
.x3{left:216.224987px;}
.x11{left:220.724987px;}
.x19{left:248.669987px;}
.x2{left:252.269987px;}
.x8{left:259.469987px;}
.x16{left:269.369987px;}
.x9{left:275.699987px;}
.x13{left:285.599987px;}
.x17{left:307.199987px;}
.x14{left:312.629987px;}
.xa{left:332.444987px;}
.xe{left:336.029987px;}
.x18{left:342.344987px;}
.xf{left:350.474987px;}
.xd{left:365.774987px;}
.x10{left:432.449987px;}
.x7{left:446.849987px;}
.x6{left:478.379987px;}
.xb{left:555.854973px;}
.xc{left:561.269987px;}
.x15{left:677.504987px;}
.x12{left:752.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-5.866667pt;}
.ls8{letter-spacing:-3.082667pt;}
.ls2f{letter-spacing:-2.688000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.115200pt;}
.lsd{letter-spacing:0.236800pt;}
.ls23{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.560000pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.652800pt;}
.ls5{letter-spacing:0.682667pt;}
.ls2a{letter-spacing:0.746667pt;}
.ls11{letter-spacing:0.906667pt;}
.ls1{letter-spacing:1.221333pt;}
.lsf{letter-spacing:1.306667pt;}
.ls29{letter-spacing:1.461333pt;}
.ls12{letter-spacing:1.491200pt;}
.lsb{letter-spacing:1.536000pt;}
.ls15{letter-spacing:1.600000pt;}
.ls18{letter-spacing:1.706667pt;}
.lsa{letter-spacing:1.760000pt;}
.ls25{letter-spacing:1.920000pt;}
.lsc{letter-spacing:2.149333pt;}
.ls20{letter-spacing:2.176000pt;}
.ls17{letter-spacing:3.306667pt;}
.ls16{letter-spacing:3.360000pt;}
.ls10{letter-spacing:4.106667pt;}
.ls21{letter-spacing:5.120000pt;}
.ls2b{letter-spacing:5.226667pt;}
.ls1e{letter-spacing:5.280000pt;}
.ls2{letter-spacing:5.873067pt;}
.ls1f{letter-spacing:8.320000pt;}
.ls26{letter-spacing:17.866667pt;}
.ls27{letter-spacing:17.920000pt;}
.ls1a{letter-spacing:17.973333pt;}
.ls28{letter-spacing:18.026667pt;}
.ls1c{letter-spacing:18.080000pt;}
.ls1d{letter-spacing:21.120000pt;}
.ls2c{letter-spacing:27.520000pt;}
.ls2d{letter-spacing:27.680000pt;}
.ls19{letter-spacing:30.368000pt;}
.ls2e{letter-spacing:30.826667pt;}
.ls13{letter-spacing:40.445867pt;}
.ws9{word-spacing:-73.600000pt;}
.wsc{word-spacing:-64.576000pt;}
.wsb{word-spacing:-64.000000pt;}
.wsd{word-spacing:-63.360000pt;}
.ws7{word-spacing:-18.096000pt;}
.ws8{word-spacing:-17.866667pt;}
.ws2{word-spacing:-16.560000pt;}
.ws3{word-spacing:-14.400000pt;}
.ws6{word-spacing:-14.089600pt;}
.wsa{word-spacing:-13.888000pt;}
.ws1{word-spacing:-13.515733pt;}
.ws4{word-spacing:-12.922667pt;}
.ws5{word-spacing:-12.240000pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-4.073600pt;}
._a{margin-left:-2.729600pt;}
._2{margin-left:-1.289600pt;}
._0{width:0.998400pt;}
._4{width:1.947733pt;}
._1{width:3.002667pt;}
._3{width:4.636800pt;}
._1e{width:6.073600pt;}
._c{width:7.370667pt;}
._b{width:8.300800pt;}
._7{width:9.312000pt;}
._6{width:11.040000pt;}
._d{width:11.932800pt;}
._21{width:12.880000pt;}
._5{width:13.801600pt;}
._1c{width:15.577600pt;}
._f{width:17.428267pt;}
._12{width:18.414933pt;}
._10{width:19.926400pt;}
._11{width:20.883200pt;}
._1d{width:22.041600pt;}
._3c{width:23.393067pt;}
._24{width:24.620800pt;}
._22{width:25.828267pt;}
._23{width:27.564800pt;}
._20{width:28.524800pt;}
._3b{width:30.134400pt;}
._1f{width:31.273600pt;}
._2b{width:32.192000pt;}
._15{width:33.326933pt;}
._16{width:34.249600pt;}
._25{width:35.224533pt;}
._17{width:36.716800pt;}
._14{width:38.390400pt;}
._18{width:40.131200pt;}
._2a{width:41.256533pt;}
._19{width:42.400000pt;}
._3a{width:43.322667pt;}
._29{width:44.839467pt;}
._2e{width:47.585067pt;}
._30{width:50.859733pt;}
._9{width:52.352000pt;}
._13{width:53.606400pt;}
._2f{width:54.677333pt;}
._35{width:56.452267pt;}
._8{width:57.362133pt;}
._28{width:60.414933pt;}
._36{width:64.003200pt;}
._26{width:67.288533pt;}
._27{width:69.703467pt;}
._31{width:73.147733pt;}
._3d{width:78.227200pt;}
._32{width:83.351467pt;}
._37{width:86.500267pt;}
._2c{width:92.214400pt;}
._39{width:94.804267pt;}
._2d{width:95.843200pt;}
._1b{width:98.746667pt;}
._1a{width:102.384000pt;}
._34{width:158.938667pt;}
._33{width:160.058667pt;}
._38{width:163.337600pt;}
.fs5{font-size:32.000000pt;}
.fs1{font-size:41.600000pt;}
.fs4{font-size:44.800000pt;}
.fs2{font-size:54.400000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:73.600000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.833333pt;}
.y5{bottom:36.800000pt;}
.y4{bottom:50.433333pt;}
.y37{bottom:99.266667pt;}
.y78{bottom:103.266667pt;}
.yb4{bottom:105.666667pt;}
.y62{bottom:112.066667pt;}
.y36{bottom:114.466667pt;}
.y82{bottom:119.266667pt;}
.y95{bottom:122.466667pt;}
.y77{bottom:124.866667pt;}
.yb3{bottom:127.266667pt;}
.y35{bottom:129.666667pt;}
.yce{bottom:132.066667pt;}
.y61{bottom:133.693333pt;}
.y34{bottom:134.493333pt;}
.y81{bottom:140.106667pt;}
.y33{bottom:144.093333pt;}
.y76{bottom:146.493333pt;}
.yb2{bottom:148.893333pt;}
.ycd{bottom:150.493333pt;}
.y60{bottom:155.293333pt;}
.y80{bottom:161.693333pt;}
.y94{bottom:165.706667pt;}
.y75{bottom:167.293333pt;}
.ycc{bottom:168.893333pt;}
.yb1{bottom:169.693333pt;}
.y5f{bottom:176.106667pt;}
.y32{bottom:179.333333pt;}
.y7f{bottom:183.333333pt;}
.y93{bottom:187.333333pt;}
.y74{bottom:188.933333pt;}
.yb0{bottom:191.333333pt;}
.y5e{bottom:197.733333pt;}
.y31{bottom:200.933333pt;}
.y7e{bottom:203.333333pt;}
.ycb{bottom:205.733333pt;}
.y92{bottom:208.133333pt;}
.y73{bottom:210.533333pt;}
.yaf{bottom:212.933333pt;}
.y5d{bottom:219.333333pt;}
.y30{bottom:222.533333pt;}
.yca{bottom:224.133333pt;}
.y7d{bottom:226.560000pt;}
.y91{bottom:229.773333pt;}
.y72{bottom:232.173333pt;}
.yae{bottom:234.560000pt;}
.y5c{bottom:240.973333pt;}
.yc9{bottom:241.773333pt;}
.y2f{bottom:243.360000pt;}
.y7c{bottom:249.773333pt;}
.y90{bottom:251.360000pt;}
.y71{bottom:252.973333pt;}
.yad{bottom:255.360000pt;}
.yc8{bottom:260.173333pt;}
.y5b{bottom:261.773333pt;}
.y2e{bottom:264.973333pt;}
.y7b{bottom:268.173333pt;}
.y8f{bottom:272.200000pt;}
.y70{bottom:274.600000pt;}
.yac{bottom:277.000000pt;}
.yc7{bottom:278.600000pt;}
.y7a{bottom:280.200000pt;}
.y5a{bottom:283.400000pt;}
.y2d{bottom:286.600000pt;}
.y8e{bottom:293.800000pt;}
.y6f{bottom:296.200000pt;}
.yc6{bottom:297.000000pt;}
.yab{bottom:298.600000pt;}
.y59{bottom:305.000000pt;}
.y2c{bottom:308.200000pt;}
.y8d{bottom:315.400000pt;}
.y6e{bottom:317.826667pt;}
.yaa{bottom:320.226667pt;}
.y58{bottom:326.626667pt;}
.y2b{bottom:329.026667pt;}
.yc5{bottom:333.840000pt;}
.y8c{bottom:337.040000pt;}
.y6d{bottom:338.626667pt;}
.ya9{bottom:341.026667pt;}
.y57{bottom:347.426667pt;}
.y2a{bottom:350.626667pt;}
.yc4{bottom:352.226667pt;}
.y8b{bottom:358.626667pt;}
.y6c{bottom:360.226667pt;}
.ya8{bottom:362.626667pt;}
.y56{bottom:369.066667pt;}
.yc3{bottom:370.666667pt;}
.y29{bottom:372.266667pt;}
.y6b{bottom:381.866667pt;}
.y8a{bottom:383.466667pt;}
.ya7{bottom:384.266667pt;}
.yc2{bottom:389.066667pt;}
.y55{bottom:390.666667pt;}
.y28{bottom:393.866667pt;}
.y6a{bottom:402.666667pt;}
.y89{bottom:404.266667pt;}
.ya6{bottom:405.866667pt;}
.yc1{bottom:407.466667pt;}
.y54{bottom:412.293333pt;}
.y27{bottom:414.706667pt;}
.y69{bottom:424.293333pt;}
.yc0{bottom:425.893333pt;}
.ya5{bottom:426.706667pt;}
.y88{bottom:427.506667pt;}
.y53{bottom:433.106667pt;}
.y26{bottom:435.506667pt;}
.ybf{bottom:444.293333pt;}
.y68{bottom:445.893333pt;}
.ya4{bottom:448.306667pt;}
.y87{bottom:449.093333pt;}
.y25{bottom:453.893333pt;}
.y52{bottom:454.693333pt;}
.ybe{bottom:461.933333pt;}
.y67{bottom:467.533333pt;}
.ya3{bottom:469.933333pt;}
.y86{bottom:471.533333pt;}
.y24{bottom:472.333333pt;}
.y51{bottom:476.333333pt;}
.ybd{bottom:480.333333pt;}
.y66{bottom:489.933333pt;}
.y23{bottom:490.733333pt;}
.ya2{bottom:491.533333pt;}
.y85{bottom:493.133333pt;}
.y50{bottom:497.933333pt;}
.ybc{bottom:498.733333pt;}
.y22{bottom:509.160000pt;}
.ya1{bottom:512.360000pt;}
.y65{bottom:513.173333pt;}
.y79{bottom:516.360000pt;}
.ybb{bottom:517.173333pt;}
.y4f{bottom:518.773333pt;}
.y21{bottom:527.560000pt;}
.ya0{bottom:533.973333pt;}
.y64{bottom:535.560000pt;}
.yba{bottom:536.360000pt;}
.y84{bottom:537.173333pt;}
.y4e{bottom:540.360000pt;}
.y20{bottom:545.973333pt;}
.y9f{bottom:555.600000pt;}
.yb9{bottom:558.000000pt;}
.y63{bottom:558.800000pt;}
.y83{bottom:560.400000pt;}
.y4d{bottom:562.000000pt;}
.y1f{bottom:563.600000pt;}
.y9e{bottom:576.400000pt;}
.yb8{bottom:578.000000pt;}
.y1e{bottom:582.000000pt;}
.y4c{bottom:582.800000pt;}
.ye4{bottom:590.000000pt;}
.y9d{bottom:598.026667pt;}
.y1d{bottom:600.426667pt;}
.yb7{bottom:602.026667pt;}
.y4b{bottom:604.440000pt;}
.ye3{bottom:610.840000pt;}
.y1c{bottom:618.826667pt;}
.y9c{bottom:619.640000pt;}
.yb6{bottom:623.626667pt;}
.y4a{bottom:626.026667pt;}
.ye2{bottom:629.226667pt;}
.y1b{bottom:637.226667pt;}
.y9b{bottom:639.626667pt;}
.yb5{bottom:645.266667pt;}
.y49{bottom:647.666667pt;}
.y1a{bottom:655.666667pt;}
.y9a{bottom:662.866667pt;}
.ye1{bottom:666.066667pt;}
.y48{bottom:668.466667pt;}
.y19{bottom:674.066667pt;}
.ye0{bottom:683.666667pt;}
.y99{bottom:686.093333pt;}
.y47{bottom:690.093333pt;}
.y18{bottom:692.506667pt;}
.ydf{bottom:702.093333pt;}
.y98{bottom:704.506667pt;}
.y17{bottom:710.893333pt;}
.y46{bottom:711.706667pt;}
.y97{bottom:717.293333pt;}
.yde{bottom:720.506667pt;}
.y16{bottom:729.293333pt;}
.y45{bottom:733.333333pt;}
.ydd{bottom:738.933333pt;}
.y15{bottom:747.733333pt;}
.y44{bottom:754.133333pt;}
.ydc{bottom:757.333333pt;}
.y14{bottom:766.133333pt;}
.y43{bottom:775.733333pt;}
.y13{bottom:783.760000pt;}
.ydb{bottom:794.173333pt;}
.y42{bottom:797.373333pt;}
.y12{bottom:802.960000pt;}
.yda{bottom:811.773333pt;}
.y41{bottom:818.960000pt;}
.y11{bottom:824.600000pt;}
.yd9{bottom:830.200000pt;}
.y40{bottom:839.800000pt;}
.y10{bottom:846.200000pt;}
.yd8{bottom:848.600000pt;}
.y3f{bottom:861.400000pt;}
.yd7{bottom:867.000000pt;}
.yf{bottom:867.800000pt;}
.y3e{bottom:883.040000pt;}
.yd6{bottom:885.426667pt;}
.ye{bottom:888.626667pt;}
.yd5{bottom:903.040000pt;}
.y3d{bottom:904.626667pt;}
.yc{bottom:910.226667pt;}
.yd{bottom:916.666667pt;}
.yd4{bottom:921.466667pt;}
.y3c{bottom:925.466667pt;}
.yb{bottom:932.666667pt;}
.yd3{bottom:939.866667pt;}
.y3b{bottom:947.066667pt;}
.ya{bottom:955.066667pt;}
.yd2{bottom:958.266667pt;}
.y3a{bottom:968.693333pt;}
.yd1{bottom:976.706667pt;}
.y9{bottom:977.506667pt;}
.y39{bottom:990.293333pt;}
.yd0{bottom:995.093333pt;}
.y8{bottom:999.893333pt;}
.y96{bottom:1008.733333pt;}
.y38{bottom:1011.133333pt;}
.ycf{bottom:1013.533333pt;}
.y7{bottom:1015.133333pt;}
.y1{bottom:1031.933333pt;}
.y3{bottom:1043.933333pt;}
.y2{bottom:1063.960000pt;}
.h5{height:20.033333pt;}
.hc{height:24.000000pt;}
.h3{height:31.403125pt;}
.h9{height:33.600000pt;}
.h6{height:40.800000pt;}
.h12{height:44.093750pt;}
.hb{height:48.000000pt;}
.h7{height:53.654688pt;}
.h2{height:54.093750pt;}
.h4{height:54.107812pt;}
.ha{height:55.200000pt;}
.hf{height:58.937500pt;}
.h11{height:63.656250pt;}
.h10{height:65.781915pt;}
.he{height:73.204688pt;}
.h8{height:75.360938pt;}
.hd{height:75.649202pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:59.266667pt;}
.w1{width:793.333333pt;}
.w4{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:18.433333pt;}
.x4{left:66.466667pt;}
.x1{left:113.733322pt;}
.x3{left:192.199988pt;}
.x11{left:196.199988pt;}
.x19{left:221.039988pt;}
.x2{left:224.239988pt;}
.x8{left:230.639988pt;}
.x16{left:239.439988pt;}
.x9{left:245.066655pt;}
.x13{left:253.866655pt;}
.x17{left:273.066655pt;}
.x14{left:277.893322pt;}
.xa{left:295.506655pt;}
.xe{left:298.693322pt;}
.x18{left:304.306655pt;}
.xf{left:311.533322pt;}
.xd{left:325.133322pt;}
.x10{left:384.399988pt;}
.x7{left:397.199988pt;}
.x6{left:425.226655pt;}
.xb{left:494.093310pt;}
.xc{left:498.906655pt;}
.x15{left:602.226655pt;}
.x12{left:668.693333pt;}
}




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