
    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_d22c3fafe372a49991ee9ac8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_bffdcfdb2c44ad41b7a37d84.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_864c6400cfe40e9eb71c267f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7fd5744fdf6dd0ef6f2a8333.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_77d40dae5620d5c8c95b0678.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005859;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_c235707e1262bdb15ad0cc1d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_efeb10be3f4e8a13d83f546a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_fa3c423c58efa41ec8b3b947.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_1c2a503548cf33361c90d2ff.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_661b8a2d5212121eb256a0e9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.942383;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_b49c6a146f0bd5e16e403f59.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_149a7c5f1ed80194e76007b3.woff')format("woff");}.fff{font-family:fff;line-height:0.934082;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsf{letter-spacing:-2.766000px;}
.ls18{letter-spacing:-1.740000px;}
.lse{letter-spacing:-1.596000px;}
.lsa{letter-spacing:-1.482000px;}
.ls9{letter-spacing:-1.128000px;}
.lsb{letter-spacing:-0.961323px;}
.lsc{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.780000px;}
.ls8{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045000px;}
.ls13{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.690000px;}
.ls15{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.723500px;}
.ls1{letter-spacing:1.854000px;}
.ls2{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.026500px;}
.ls17{letter-spacing:2.164500px;}
.ls7{letter-spacing:2.190000px;}
.ls0{letter-spacing:2.250000px;}
.ls12{letter-spacing:2.310000px;}
.ls5{letter-spacing:2.322000px;}
.ls1b{letter-spacing:2.370000px;}
.ls4{letter-spacing:2.430000px;}
.ls6{letter-spacing:4.779000px;}
.ls1c{letter-spacing:15.387000px;}
.ls1a{letter-spacing:46.887000px;}
.ls16{letter-spacing:55.737000px;}
.ls14{letter-spacing:64.887000px;}
.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:-61.663798px;}
.ws3{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.ws5{word-spacing:-16.146000px;}
.ws4{word-spacing:-15.354000px;}
.ws0{word-spacing:-14.625000px;}
.ws1{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.266000px;}
.ws8{word-spacing:-13.221000px;}
.ws7{word-spacing:-11.859000px;}
.ws6{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-6.484500px;}
._12{margin-left:-4.905000px;}
._5{margin-left:-3.627000px;}
._0{margin-left:-1.755000px;}
._3{width:1.696500px;}
._2{width:2.808000px;}
._1{width:4.329000px;}
._7{width:5.670000px;}
._6{width:7.032000px;}
._9{width:8.847000px;}
._8{width:9.861000px;}
._11{width:11.398500px;}
._d{width:12.523500px;}
._13{width:15.981000px;}
._c{width:17.257500px;}
._14{width:19.120500px;}
._f{width:20.523000px;}
._10{width:21.999000px;}
._15{width:24.126000px;}
._e{width:26.053500px;}
._16{width:27.355500px;}
._b{width:30.318000px;}
._17{width:32.377500px;}
._a{width:34.617000px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:40.500000px;}
.fs5{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:61.663798px;}
.fs4{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:3.375000px;}
.ya3{bottom:3.390000px;}
.y18{bottom:4.500000px;}
.y97{bottom:4.515000px;}
.y41{bottom:11.250000px;}
.yd{bottom:11.295000px;}
.yb{bottom:13.500000px;}
.y1a{bottom:13.545000px;}
.y3{bottom:15.750000px;}
.y3d{bottom:20.250000px;}
.y42{bottom:22.530000px;}
.y40{bottom:25.905000px;}
.y17{bottom:27.045000px;}
.ya{bottom:30.405000px;}
.y2{bottom:36.037500px;}
.y4{bottom:37.162500px;}
.y3c{bottom:38.295000px;}
.y16{bottom:43.920000px;}
.y9{bottom:46.155000px;}
.y3b{bottom:55.170000px;}
.y1{bottom:59.662500px;}
.y15{bottom:59.670000px;}
.y3a{bottom:72.090000px;}
.y8{bottom:73.185000px;}
.y14{bottom:76.575000px;}
.y13{bottom:86.700000px;}
.y39{bottom:90.075000px;}
.y7{bottom:93.435000px;}
.y12{bottom:104.700000px;}
.y38{bottom:106.950000px;}
.y6{bottom:110.355000px;}
.yc0{bottom:120.487500px;}
.y89{bottom:122.737500px;}
.y11{bottom:123.870000px;}
.ybf{bottom:137.362500px;}
.y88{bottom:139.612500px;}
.y37{bottom:141.870000px;}
.y4e{bottom:144.112500px;}
.yda{bottom:149.737500px;}
.y10{bottom:149.775000px;}
.ybe{bottom:154.245000px;}
.y87{bottom:156.480000px;}
.y36{bottom:158.790000px;}
.y4d{bottom:162.150000px;}
.yd9{bottom:167.775000px;}
.ybd{bottom:172.275000px;}
.yf{bottom:174.525000px;}
.y35{bottom:175.665000px;}
.y4c{bottom:179.025000px;}
.yd8{bottom:184.650000px;}
.ybc{bottom:189.150000px;}
.y86{bottom:191.400000px;}
.y34{bottom:193.695000px;}
.y4b{bottom:195.900000px;}
.yd7{bottom:201.570000px;}
.ybb{bottom:206.070000px;}
.y85{bottom:208.320000px;}
.y33{bottom:210.570000px;}
.y4a{bottom:213.945000px;}
.yd6{bottom:219.570000px;}
.yba{bottom:224.070000px;}
.y84{bottom:225.195000px;}
.y32{bottom:227.445000px;}
.y49{bottom:230.820000px;}
.y26{bottom:235.365000px;}
.yd5{bottom:236.445000px;}
.yb9{bottom:240.945000px;}
.y83{bottom:243.225000px;}
.y31{bottom:245.490000px;}
.y48{bottom:247.725000px;}
.y25{bottom:249.990000px;}
.yd4{bottom:253.350000px;}
.yb8{bottom:257.850000px;}
.y82{bottom:260.100000px;}
.y30{bottom:262.365000px;}
.y47{bottom:265.725000px;}
.y24{bottom:269.115000px;}
.yd3{bottom:271.350000px;}
.yb7{bottom:272.475000px;}
.y81{bottom:278.100000px;}
.y2f{bottom:279.270000px;}
.y46{bottom:282.600000px;}
.y23{bottom:286.020000px;}
.yd2{bottom:288.270000px;}
.yb6{bottom:290.505000px;}
.y80{bottom:296.130000px;}
.y2e{bottom:297.270000px;}
.y45{bottom:299.505000px;}
.y22{bottom:302.895000px;}
.yd1{bottom:305.145000px;}
.yb5{bottom:308.505000px;}
.y7f{bottom:313.005000px;}
.y2d{bottom:314.145000px;}
.y44{bottom:317.505000px;}
.y21{bottom:320.940000px;}
.yd0{bottom:323.130000px;}
.yb4{bottom:326.550000px;}
.y7e{bottom:331.050000px;}
.y2c{bottom:331.065000px;}
.y43{bottom:334.425000px;}
.y20{bottom:337.815000px;}
.ycf{bottom:340.050000px;}
.yb3{bottom:344.550000px;}
.y3f{bottom:347.925000px;}
.y2b{bottom:349.050000px;}
.y1f{bottom:355.800000px;}
.yce{bottom:356.925000px;}
.yb2{bottom:362.550000px;}
.y7d{bottom:365.925000px;}
.y2a{bottom:365.970000px;}
.ycd{bottom:374.955000px;}
.y1e{bottom:374.970000px;}
.y29{bottom:382.845000px;}
.y7c{bottom:383.955000px;}
.y1b{bottom:385.080000px;}
.ycc{bottom:391.830000px;}
.y28{bottom:400.875000px;}
.y7b{bottom:401.955000px;}
.y1d{bottom:402.000000px;}
.ycb{bottom:408.705000px;}
.yb1{bottom:415.500000px;}
.y27{bottom:417.750000px;}
.y7a{bottom:418.875000px;}
.y1c{bottom:420.000000px;}
.yca{bottom:426.750000px;}
.yb0{bottom:433.500000px;}
.y79{bottom:436.875000px;}
.yc9{bottom:443.625000px;}
.yaf{bottom:451.530000px;}
.y78{bottom:456.045000px;}
.yc8{bottom:460.545000px;}
.yae{bottom:469.530000px;}
.y77{bottom:474.045000px;}
.yc7{bottom:478.530000px;}
.y76{bottom:490.920000px;}
.yad{bottom:492.030000px;}
.yc6{bottom:495.450000px;}
.y75{bottom:508.950000px;}
.yc5{bottom:512.325000px;}
.yac{bottom:523.575000px;}
.y74{bottom:526.950000px;}
.yc4{bottom:530.325000px;}
.yab{bottom:541.605000px;}
.y73{bottom:544.980000px;}
.yc3{bottom:547.245000px;}
.yaa{bottom:559.605000px;}
.y72{bottom:561.855000px;}
.yc2{bottom:564.120000px;}
.ya9{bottom:577.650000px;}
.y71{bottom:579.900000px;}
.yc1{bottom:582.150000px;}
.y70{bottom:597.900000px;}
.ya8{bottom:599.025000px;}
.y6f{bottom:615.900000px;}
.ya7{bottom:630.570000px;}
.y6e{bottom:633.945000px;}
.ya6{bottom:648.570000px;}
.y6d{bottom:650.820000px;}
.ya5{bottom:666.600000px;}
.y6c{bottom:667.725000px;}
.ya4{bottom:684.600000px;}
.y6b{bottom:685.725000px;}
.ya2{bottom:702.630000px;}
.y6a{bottom:702.645000px;}
.y69{bottom:719.520000px;}
.ya1{bottom:724.005000px;}
.y68{bottom:737.505000px;}
.ya0{bottom:740.880000px;}
.y67{bottom:754.425000px;}
.y9f{bottom:755.550000px;}
.y66{bottom:771.300000px;}
.y9e{bottom:773.550000px;}
.y65{bottom:789.330000px;}
.y9d{bottom:791.580000px;}
.y64{bottom:806.205000px;}
.y9c{bottom:809.580000px;}
.y19{bottom:816.330000px;}
.y63{bottom:823.080000px;}
.y9b{bottom:827.625000px;}
.y62{bottom:841.125000px;}
.ye{bottom:845.625000px;}
.y9a{bottom:849.000000px;}
.y61{bottom:858.000000px;}
.y99{bottom:867.000000px;}
.y60{bottom:874.920000px;}
.y98{bottom:880.545000px;}
.y5f{bottom:892.920000px;}
.y96{bottom:898.530000px;}
.y5e{bottom:909.795000px;}
.y95{bottom:916.575000px;}
.y5d{bottom:926.700000px;}
.y94{bottom:934.575000px;}
.y5c{bottom:944.700000px;}
.y93{bottom:952.620000px;}
.y5b{bottom:961.620000px;}
.y92{bottom:970.620000px;}
.y5a{bottom:978.495000px;}
.y91{bottom:993.120000px;}
.y59{bottom:996.525000px;}
.y90{bottom:1010.025000px;}
.y58{bottom:1013.400000px;}
.y8f{bottom:1026.900000px;}
.y57{bottom:1030.275000px;}
.yc{bottom:1034.775000px;}
.y8e{bottom:1044.945000px;}
.y56{bottom:1048.320000px;}
.y5{bottom:1060.695000px;}
.y8d{bottom:1061.820000px;}
.y55{bottom:1065.195000px;}
.y8c{bottom:1079.850000px;}
.y54{bottom:1082.100000px;}
.y8b{bottom:1098.975000px;}
.y53{bottom:1100.100000px;}
.y8a{bottom:1115.850000px;}
.y52{bottom:1116.975000px;}
.y51{bottom:1133.880000px;}
.y50{bottom:1151.880000px;}
.y4f{bottom:1168.800000px;}
.h22{height:16.875000px;}
.h23{height:16.912500px;}
.h1f{height:17.985000px;}
.h21{height:18.000000px;}
.h20{height:18.037500px;}
.hd{height:25.912500px;}
.h15{height:27.738281px;}
.h16{height:29.287500px;}
.h14{height:35.806641px;}
.h9{height:37.125000px;}
.h1d{height:37.162500px;}
.h1b{height:37.801758px;}
.h1c{height:40.847168px;}
.h5{height:41.275635px;}
.h1e{height:42.589600px;}
.h3{height:42.760986px;}
.h10{height:43.075195px;}
.hb{height:43.875000px;}
.h1a{height:44.674805px;}
.h19{height:49.234131px;}
.h2{height:49.537500px;}
.h6{height:50.273438px;}
.he{height:50.625000px;}
.h4{height:51.968611px;}
.ha{height:54.000000px;}
.h12{height:58.185791px;}
.h13{height:59.899658px;}
.h11{height:64.237500px;}
.h8{height:67.137451px;}
.h17{height:69.114990px;}
.hc{height:71.613281px;}
.h7{height:121.612500px;}
.hf{height:189.150000px;}
.h18{height:431.250000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w12{width:85.612500px;}
.wc{width:95.737500px;}
.w17{width:102.525000px;}
.w4{width:152.055000px;}
.w11{width:153.180000px;}
.wb{width:175.725000px;}
.w14{width:192.630000px;}
.w10{width:193.755000px;}
.wa{width:221.925000px;}
.w7{width:223.020000px;}
.w9{width:252.300000px;}
.w16{width:288.345000px;}
.we{width:303.000000px;}
.wf{width:313.125000px;}
.w13{width:315.375000px;}
.w15{width:354.825000px;}
.wd{width:443.820000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.875000px;}
.x2{left:9.037500px;}
.x17{left:12.420000px;}
.x1{left:72.075000px;}
.x7{left:73.237500px;}
.x6{left:81.112487px;}
.x10{left:87.862500px;}
.x8{left:97.987500px;}
.x18{left:108.149987px;}
.x19{left:135.187487px;}
.x1a{left:162.224987px;}
.x11{left:195.982500px;}
.x2a{left:198.269987px;}
.x14{left:201.607500px;}
.x15{left:214.012500px;}
.x9{left:225.300000px;}
.x1b{left:228.674987px;}
.x12{left:232.012500px;}
.x13{left:245.557500px;}
.x1f{left:275.969987px;}
.x28{left:284.999987px;}
.xd{left:290.625000px;}
.x21{left:293.999987px;}
.x16{left:296.250000px;}
.x1c{left:326.670000px;}
.x25{left:336.779987px;}
.xb{left:345.780000px;}
.xc{left:364.950000px;}
.xf{left:373.957500px;}
.x29{left:386.370000px;}
.x22{left:387.495000px;}
.x26{left:388.620000px;}
.x2b{left:429.195000px;}
.xe{left:453.945000px;}
.x3{left:514.800000px;}
.x20{left:518.175000px;}
.x4{left:542.970000px;}
.x1d{left:549.720000px;}
.x23{left:581.250000px;}
.x27{left:582.375000px;}
.x2c{left:718.650000px;}
.x1e{left:725.445000px;}
.x24{left:735.570000px;}
.x5{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsf{letter-spacing:-2.458667pt;}
.ls18{letter-spacing:-1.546667pt;}
.lse{letter-spacing:-1.418667pt;}
.lsa{letter-spacing:-1.317333pt;}
.ls9{letter-spacing:-1.002667pt;}
.lsb{letter-spacing:-0.854509pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040000pt;}
.ls13{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.613333pt;}
.ls15{letter-spacing:0.800000pt;}
.ls19{letter-spacing:1.532000pt;}
.ls1{letter-spacing:1.648000pt;}
.ls2{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.801333pt;}
.ls17{letter-spacing:1.924000pt;}
.ls7{letter-spacing:1.946667pt;}
.ls0{letter-spacing:2.000000pt;}
.ls12{letter-spacing:2.053333pt;}
.ls5{letter-spacing:2.064000pt;}
.ls1b{letter-spacing:2.106667pt;}
.ls4{letter-spacing:2.160000pt;}
.ls6{letter-spacing:4.248000pt;}
.ls1c{letter-spacing:13.677333pt;}
.ls1a{letter-spacing:41.677333pt;}
.ls16{letter-spacing:49.544000pt;}
.ls14{letter-spacing:57.677333pt;}
.ws2{word-spacing:-54.812265pt;}
.ws3{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.ws5{word-spacing:-14.352000pt;}
.ws4{word-spacing:-13.648000pt;}
.ws0{word-spacing:-13.000000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.792000pt;}
.ws8{word-spacing:-11.752000pt;}
.ws7{word-spacing:-10.541333pt;}
.ws6{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-5.764000pt;}
._12{margin-left:-4.360000pt;}
._5{margin-left:-3.224000pt;}
._0{margin-left:-1.560000pt;}
._3{width:1.508000pt;}
._2{width:2.496000pt;}
._1{width:3.848000pt;}
._7{width:5.040000pt;}
._6{width:6.250667pt;}
._9{width:7.864000pt;}
._8{width:8.765333pt;}
._11{width:10.132000pt;}
._d{width:11.132000pt;}
._13{width:14.205333pt;}
._c{width:15.340000pt;}
._14{width:16.996000pt;}
._f{width:18.242667pt;}
._10{width:19.554667pt;}
._15{width:21.445333pt;}
._e{width:23.158667pt;}
._16{width:24.316000pt;}
._b{width:26.949333pt;}
._17{width:28.780000pt;}
._a{width:30.770667pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:36.000000pt;}
.fs5{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:54.812265pt;}
.fs4{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:3.000000pt;}
.ya3{bottom:3.013333pt;}
.y18{bottom:4.000000pt;}
.y97{bottom:4.013333pt;}
.y41{bottom:10.000000pt;}
.yd{bottom:10.040000pt;}
.yb{bottom:12.000000pt;}
.y1a{bottom:12.040000pt;}
.y3{bottom:14.000000pt;}
.y3d{bottom:18.000000pt;}
.y42{bottom:20.026667pt;}
.y40{bottom:23.026667pt;}
.y17{bottom:24.040000pt;}
.ya{bottom:27.026667pt;}
.y2{bottom:32.033333pt;}
.y4{bottom:33.033333pt;}
.y3c{bottom:34.040000pt;}
.y16{bottom:39.040000pt;}
.y9{bottom:41.026667pt;}
.y3b{bottom:49.040000pt;}
.y1{bottom:53.033333pt;}
.y15{bottom:53.040000pt;}
.y3a{bottom:64.080000pt;}
.y8{bottom:65.053333pt;}
.y14{bottom:68.066667pt;}
.y13{bottom:77.066667pt;}
.y39{bottom:80.066667pt;}
.y7{bottom:83.053333pt;}
.y12{bottom:93.066667pt;}
.y38{bottom:95.066667pt;}
.y6{bottom:98.093333pt;}
.yc0{bottom:107.100000pt;}
.y89{bottom:109.100000pt;}
.y11{bottom:110.106667pt;}
.ybf{bottom:122.100000pt;}
.y88{bottom:124.100000pt;}
.y37{bottom:126.106667pt;}
.y4e{bottom:128.100000pt;}
.yda{bottom:133.100000pt;}
.y10{bottom:133.133333pt;}
.ybe{bottom:137.106667pt;}
.y87{bottom:139.093333pt;}
.y36{bottom:141.146667pt;}
.y4d{bottom:144.133333pt;}
.yd9{bottom:149.133333pt;}
.ybd{bottom:153.133333pt;}
.yf{bottom:155.133333pt;}
.y35{bottom:156.146667pt;}
.y4c{bottom:159.133333pt;}
.yd8{bottom:164.133333pt;}
.ybc{bottom:168.133333pt;}
.y86{bottom:170.133333pt;}
.y34{bottom:172.173333pt;}
.y4b{bottom:174.133333pt;}
.yd7{bottom:179.173333pt;}
.ybb{bottom:183.173333pt;}
.y85{bottom:185.173333pt;}
.y33{bottom:187.173333pt;}
.y4a{bottom:190.173333pt;}
.yd6{bottom:195.173333pt;}
.yba{bottom:199.173333pt;}
.y84{bottom:200.173333pt;}
.y32{bottom:202.173333pt;}
.y49{bottom:205.173333pt;}
.y26{bottom:209.213333pt;}
.yd5{bottom:210.173333pt;}
.yb9{bottom:214.173333pt;}
.y83{bottom:216.200000pt;}
.y31{bottom:218.213333pt;}
.y48{bottom:220.200000pt;}
.y25{bottom:222.213333pt;}
.yd4{bottom:225.200000pt;}
.yb8{bottom:229.200000pt;}
.y82{bottom:231.200000pt;}
.y30{bottom:233.213333pt;}
.y47{bottom:236.200000pt;}
.y24{bottom:239.213333pt;}
.yd3{bottom:241.200000pt;}
.yb7{bottom:242.200000pt;}
.y81{bottom:247.200000pt;}
.y2f{bottom:248.240000pt;}
.y46{bottom:251.200000pt;}
.y23{bottom:254.240000pt;}
.yd2{bottom:256.240000pt;}
.yb6{bottom:258.226667pt;}
.y80{bottom:263.226667pt;}
.y2e{bottom:264.240000pt;}
.y45{bottom:266.226667pt;}
.y22{bottom:269.240000pt;}
.yd1{bottom:271.240000pt;}
.yb5{bottom:274.226667pt;}
.y7f{bottom:278.226667pt;}
.y2d{bottom:279.240000pt;}
.y44{bottom:282.226667pt;}
.y21{bottom:285.280000pt;}
.yd0{bottom:287.226667pt;}
.yb4{bottom:290.266667pt;}
.y7e{bottom:294.266667pt;}
.y2c{bottom:294.280000pt;}
.y43{bottom:297.266667pt;}
.y20{bottom:300.280000pt;}
.ycf{bottom:302.266667pt;}
.yb3{bottom:306.266667pt;}
.y3f{bottom:309.266667pt;}
.y2b{bottom:310.266667pt;}
.y1f{bottom:316.266667pt;}
.yce{bottom:317.266667pt;}
.yb2{bottom:322.266667pt;}
.y7d{bottom:325.266667pt;}
.y2a{bottom:325.306667pt;}
.ycd{bottom:333.293333pt;}
.y1e{bottom:333.306667pt;}
.y29{bottom:340.306667pt;}
.y7c{bottom:341.293333pt;}
.y1b{bottom:342.293333pt;}
.ycc{bottom:348.293333pt;}
.y28{bottom:356.333333pt;}
.y7b{bottom:357.293333pt;}
.y1d{bottom:357.333333pt;}
.ycb{bottom:363.293333pt;}
.yb1{bottom:369.333333pt;}
.y27{bottom:371.333333pt;}
.y7a{bottom:372.333333pt;}
.y1c{bottom:373.333333pt;}
.yca{bottom:379.333333pt;}
.yb0{bottom:385.333333pt;}
.y79{bottom:388.333333pt;}
.yc9{bottom:394.333333pt;}
.yaf{bottom:401.360000pt;}
.y78{bottom:405.373333pt;}
.yc8{bottom:409.373333pt;}
.yae{bottom:417.360000pt;}
.y77{bottom:421.373333pt;}
.yc7{bottom:425.360000pt;}
.y76{bottom:436.373333pt;}
.yad{bottom:437.360000pt;}
.yc6{bottom:440.400000pt;}
.y75{bottom:452.400000pt;}
.yc5{bottom:455.400000pt;}
.yac{bottom:465.400000pt;}
.y74{bottom:468.400000pt;}
.yc4{bottom:471.400000pt;}
.yab{bottom:481.426667pt;}
.y73{bottom:484.426667pt;}
.yc3{bottom:486.440000pt;}
.yaa{bottom:497.426667pt;}
.y72{bottom:499.426667pt;}
.yc2{bottom:501.440000pt;}
.ya9{bottom:513.466667pt;}
.y71{bottom:515.466667pt;}
.yc1{bottom:517.466667pt;}
.y70{bottom:531.466667pt;}
.ya8{bottom:532.466667pt;}
.y6f{bottom:547.466667pt;}
.ya7{bottom:560.506667pt;}
.y6e{bottom:563.506667pt;}
.ya6{bottom:576.506667pt;}
.y6d{bottom:578.506667pt;}
.ya5{bottom:592.533333pt;}
.y6c{bottom:593.533333pt;}
.ya4{bottom:608.533333pt;}
.y6b{bottom:609.533333pt;}
.ya2{bottom:624.560000pt;}
.y6a{bottom:624.573333pt;}
.y69{bottom:639.573333pt;}
.ya1{bottom:643.560000pt;}
.y68{bottom:655.560000pt;}
.ya0{bottom:658.560000pt;}
.y67{bottom:670.600000pt;}
.y9f{bottom:671.600000pt;}
.y66{bottom:685.600000pt;}
.y9e{bottom:687.600000pt;}
.y65{bottom:701.626667pt;}
.y9d{bottom:703.626667pt;}
.y64{bottom:716.626667pt;}
.y9c{bottom:719.626667pt;}
.y19{bottom:725.626667pt;}
.y63{bottom:731.626667pt;}
.y9b{bottom:735.666667pt;}
.y62{bottom:747.666667pt;}
.ye{bottom:751.666667pt;}
.y9a{bottom:754.666667pt;}
.y61{bottom:762.666667pt;}
.y99{bottom:770.666667pt;}
.y60{bottom:777.706667pt;}
.y98{bottom:782.706667pt;}
.y5f{bottom:793.706667pt;}
.y96{bottom:798.693333pt;}
.y5e{bottom:808.706667pt;}
.y95{bottom:814.733333pt;}
.y5d{bottom:823.733333pt;}
.y94{bottom:830.733333pt;}
.y5c{bottom:839.733333pt;}
.y93{bottom:846.773333pt;}
.y5b{bottom:854.773333pt;}
.y92{bottom:862.773333pt;}
.y5a{bottom:869.773333pt;}
.y91{bottom:882.773333pt;}
.y59{bottom:885.800000pt;}
.y90{bottom:897.800000pt;}
.y58{bottom:900.800000pt;}
.y8f{bottom:912.800000pt;}
.y57{bottom:915.800000pt;}
.yc{bottom:919.800000pt;}
.y8e{bottom:928.840000pt;}
.y56{bottom:931.840000pt;}
.y5{bottom:942.840000pt;}
.y8d{bottom:943.840000pt;}
.y55{bottom:946.840000pt;}
.y8c{bottom:959.866667pt;}
.y54{bottom:961.866667pt;}
.y8b{bottom:976.866667pt;}
.y53{bottom:977.866667pt;}
.y8a{bottom:991.866667pt;}
.y52{bottom:992.866667pt;}
.y51{bottom:1007.893333pt;}
.y50{bottom:1023.893333pt;}
.y4f{bottom:1038.933333pt;}
.h22{height:15.000000pt;}
.h23{height:15.033333pt;}
.h1f{height:15.986667pt;}
.h21{height:16.000000pt;}
.h20{height:16.033333pt;}
.hd{height:23.033333pt;}
.h15{height:24.656250pt;}
.h16{height:26.033333pt;}
.h14{height:31.828125pt;}
.h9{height:33.000000pt;}
.h1d{height:33.033333pt;}
.h1b{height:33.601562pt;}
.h1c{height:36.308594pt;}
.h5{height:36.689453pt;}
.h1e{height:37.857422pt;}
.h3{height:38.009766pt;}
.h10{height:38.289062pt;}
.hb{height:39.000000pt;}
.h1a{height:39.710938pt;}
.h19{height:43.763672pt;}
.h2{height:44.033333pt;}
.h6{height:44.687500pt;}
.he{height:45.000000pt;}
.h4{height:46.194321pt;}
.ha{height:48.000000pt;}
.h12{height:51.720703pt;}
.h13{height:53.244141pt;}
.h11{height:57.100000pt;}
.h8{height:59.677734pt;}
.h17{height:61.435547pt;}
.hc{height:63.656250pt;}
.h7{height:108.100000pt;}
.hf{height:168.133333pt;}
.h18{height:383.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w12{width:76.100000pt;}
.wc{width:85.100000pt;}
.w17{width:91.133333pt;}
.w4{width:135.160000pt;}
.w11{width:136.160000pt;}
.wb{width:156.200000pt;}
.w14{width:171.226667pt;}
.w10{width:172.226667pt;}
.wa{width:197.266667pt;}
.w7{width:198.240000pt;}
.w9{width:224.266667pt;}
.w16{width:256.306667pt;}
.we{width:269.333333pt;}
.wf{width:278.333333pt;}
.w13{width:280.333333pt;}
.w15{width:315.400000pt;}
.wd{width:394.506667pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.000000pt;}
.x2{left:8.033333pt;}
.x17{left:11.040000pt;}
.x1{left:64.066667pt;}
.x7{left:65.100000pt;}
.x6{left:72.099988pt;}
.x10{left:78.100000pt;}
.x8{left:87.100000pt;}
.x18{left:96.133322pt;}
.x19{left:120.166655pt;}
.x1a{left:144.199988pt;}
.x11{left:174.206667pt;}
.x2a{left:176.239988pt;}
.x14{left:179.206667pt;}
.x15{left:190.233333pt;}
.x9{left:200.266667pt;}
.x1b{left:203.266655pt;}
.x12{left:206.233333pt;}
.x13{left:218.273333pt;}
.x1f{left:245.306655pt;}
.x28{left:253.333322pt;}
.xd{left:258.333333pt;}
.x21{left:261.333322pt;}
.x16{left:263.333333pt;}
.x1c{left:290.373333pt;}
.x25{left:299.359988pt;}
.xb{left:307.360000pt;}
.xc{left:324.400000pt;}
.xf{left:332.406667pt;}
.x29{left:343.440000pt;}
.x22{left:344.440000pt;}
.x26{left:345.440000pt;}
.x2b{left:381.506667pt;}
.xe{left:403.506667pt;}
.x3{left:457.600000pt;}
.x20{left:460.600000pt;}
.x4{left:482.640000pt;}
.x1d{left:488.640000pt;}
.x23{left:516.666667pt;}
.x27{left:517.666667pt;}
.x2c{left:638.800000pt;}
.x1e{left:644.840000pt;}
.x24{left:653.840000pt;}
.x5{left:663.840000pt;}
}




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