
    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_3921da4af81c5e3529be355e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0766b0f5973f0b96e300d495.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_fb314222641c19498ff5ecfa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6c31745b315c1b720eb94cb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_05ee0d489a1f72aec204081d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_34d87ca6732004fe05c61e93.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_cead0fa7be32f342a9e9abbd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_58e590db25ed33d5574d9cf1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ada9eacb3799288b0de11857.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aa0f26f935075458997f394b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a833fe05efa6344b31bbee49.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250668,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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls7{letter-spacing:-2.220000px;}
.lsf{letter-spacing:-0.453991px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.127200px;}
.lse{letter-spacing:-0.058273px;}
.ls5{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.085730px;}
.ls1{letter-spacing:0.132600px;}
.ls10{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.513600px;}
.lsb{letter-spacing:0.828000px;}
.ls11{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-21.367200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.wsd{word-spacing:-12.251486px;}
.wsc{word-spacing:-12.226595px;}
.wsb{word-spacing:-12.194077px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
.wse{word-spacing:60.245657px;}
._1d{margin-left:-7.988640px;}
._18{margin-left:-6.035760px;}
._5{margin-left:-4.840560px;}
._4{margin-left:-3.300000px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.134000px;}
._1{width:1.092000px;}
._3{width:2.592000px;}
._9{width:3.981120px;}
._7{width:5.123040px;}
._a{width:6.688080px;}
._12{width:8.605440px;}
._f{width:10.159200px;}
._10{width:11.180400px;}
._13{width:12.429600px;}
._11{width:13.918800px;}
._6{width:16.290960px;}
._c{width:17.314080px;}
._1b{width:18.406080px;}
._b{width:19.824000px;}
._14{width:21.155040px;}
._15{width:22.230720px;}
._d{width:23.326560px;}
._8{width:24.441840px;}
._1c{width:31.835760px;}
._e{width:36.497040px;}
._17{width:48.449040px;}
._16{width:49.780080px;}
._19{width:63.561095px;}
._1a{width:116.970876px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc8{color:rgb(51,51,51);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fsf{font-size:49.729940px;}
.fsb{font-size:53.956093px;}
.fs0{font-size:54.000000px;}
.fsc{font-size:54.099976px;}
.fsd{font-size:54.210115px;}
.fs8{font-size:56.880000px;}
.fs9{font-size:59.711410px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fse{font-size:85.870017px;}
.fsa{font-size:108.056069px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.yaf{bottom:3.780000px;}
.y46{bottom:3.960000px;}
.yb1{bottom:4.170000px;}
.ye{bottom:9.540000px;}
.ya4{bottom:9.720000px;}
.y44{bottom:10.620000px;}
.yad{bottom:11.700000px;}
.y1f{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.yc6{bottom:16.950315px;}
.y4{bottom:17.460000px;}
.y5{bottom:19.260000px;}
.y2{bottom:20.160000px;}
.y9f{bottom:20.340000px;}
.y40{bottom:20.520000px;}
.y99{bottom:21.060000px;}
.y45{bottom:22.140000px;}
.y1d{bottom:23.760000px;}
.y43{bottom:25.200000px;}
.ya3{bottom:27.000000px;}
.yac{bottom:28.980000px;}
.yb{bottom:30.240000px;}
.y1c{bottom:36.540000px;}
.y9e{bottom:37.620000px;}
.y3f{bottom:37.800000px;}
.y1{bottom:41.760000px;}
.ya2{bottom:44.280000px;}
.yab{bottom:46.254000px;}
.ya{bottom:46.620000px;}
.yc4{bottom:48.012850px;}
.yc2{bottom:48.012863px;}
.y9d{bottom:54.900000px;}
.y3e{bottom:55.080000px;}
.y1b{bottom:56.700000px;}
.ya1{bottom:61.560000px;}
.yaa{bottom:63.534000px;}
.yc3{bottom:64.552170px;}
.yc1{bottom:64.552183px;}
.y3d{bottom:72.180000px;}
.y1a{bottom:73.260000px;}
.y9{bottom:73.470000px;}
.ya9{bottom:80.634000px;}
.ybc{bottom:81.502180px;}
.y3c{bottom:89.460000px;}
.y19{bottom:89.820000px;}
.y8{bottom:93.090000px;}
.ya8{bottom:97.914000px;}
.ybd{bottom:100.020236px;}
.y18{bottom:101.745000px;}
.yb8{bottom:102.408215px;}
.y92{bottom:105.156000px;}
.y9c{bottom:106.560000px;}
.y3b{bottom:106.740000px;}
.y7{bottom:111.450000px;}
.ya5{bottom:114.876000px;}
.ya7{bottom:115.194000px;}
.yde{bottom:115.956000px;}
.y2d{bottom:116.280000px;}
.ybe{bottom:118.538292px;}
.y17{bottom:119.385000px;}
.yb4{bottom:120.069843px;}
.y91{bottom:122.256000px;}
.y9b{bottom:123.840000px;}
.y3a{bottom:124.020000px;}
.yb7{bottom:127.695638px;}
.yb5{bottom:130.645237px;}
.y2c{bottom:131.580000px;}
.y16{bottom:131.805000px;}
.ya6{bottom:132.474000px;}
.ydd{bottom:133.056000px;}
.ybf{bottom:137.056347px;}
.y53{bottom:137.736000px;}
.y90{bottom:139.536000px;}
.y39{bottom:141.300000px;}
.y15{bottom:146.565000px;}
.y2b{bottom:149.040000px;}
.ydc{bottom:150.330000px;}
.y52{bottom:155.010000px;}
.yc0{bottom:155.580377px;}
.y8f{bottom:156.810000px;}
.y38{bottom:158.580000px;}
.y14{bottom:161.865000px;}
.y2a{bottom:166.320000px;}
.ydb{bottom:167.610000px;}
.y51{bottom:172.290000px;}
.y8e{bottom:174.090000px;}
.y37{bottom:175.680000px;}
.y13{bottom:180.765000px;}
.y29{bottom:183.600000px;}
.yda{bottom:184.890000px;}
.y50{bottom:189.390000px;}
.y8d{bottom:191.370000px;}
.y36{bottom:192.960000px;}
.y28{bottom:201.420000px;}
.yd9{bottom:202.170000px;}
.y12{bottom:206.505000px;}
.y4f{bottom:206.670000px;}
.y8c{bottom:208.470000px;}
.y35{bottom:210.270000px;}
.yc5{bottom:214.718674px;}
.y27{bottom:218.730000px;}
.yd8{bottom:219.450000px;}
.y4e{bottom:223.950000px;}
.y8b{bottom:225.750000px;}
.y34{bottom:227.550000px;}
.y11{bottom:232.245000px;}
.y26{bottom:236.190000px;}
.yd7{bottom:236.550000px;}
.y4d{bottom:241.230000px;}
.y8a{bottom:243.030000px;}
.y33{bottom:244.830000px;}
.yb6{bottom:247.373250px;}
.y25{bottom:253.650000px;}
.yd6{bottom:253.830000px;}
.y10{bottom:256.725000px;}
.y4c{bottom:258.510000px;}
.y89{bottom:260.310000px;}
.y32{bottom:261.930000px;}
.ya0{bottom:262.110000px;}
.y24{bottom:270.930000px;}
.yd5{bottom:271.110000px;}
.y4b{bottom:275.790000px;}
.y88{bottom:277.590000px;}
.y31{bottom:279.210000px;}
.yd4{bottom:288.390000px;}
.y23{bottom:288.570000px;}
.y4a{bottom:292.890000px;}
.y87{bottom:294.870000px;}
.y30{bottom:296.490000px;}
.yd3{bottom:305.670000px;}
.y49{bottom:310.170000px;}
.y86{bottom:311.970000px;}
.y2f{bottom:313.770000px;}
.y22{bottom:315.930000px;}
.yd2{bottom:322.950000px;}
.y48{bottom:327.450000px;}
.y85{bottom:329.250000px;}
.y2e{bottom:331.050000px;}
.y21{bottom:333.750000px;}
.y9a{bottom:338.475000px;}
.yd1{bottom:340.095000px;}
.y47{bottom:344.775000px;}
.y84{bottom:346.575000px;}
.yd0{bottom:357.375000px;}
.y42{bottom:358.815000px;}
.y83{bottom:363.855000px;}
.ycf{bottom:374.655000px;}
.y82{bottom:381.135000px;}
.yce{bottom:391.935000px;}
.y20{bottom:395.355000px;}
.y81{bottom:398.415000px;}
.ycd{bottom:409.215000px;}
.y80{bottom:415.515000px;}
.ycc{bottom:426.495000px;}
.y7f{bottom:432.795000px;}
.ycb{bottom:443.595000px;}
.y7e{bottom:450.075000px;}
.yca{bottom:460.875000px;}
.y7d{bottom:467.355000px;}
.y98{bottom:477.075000px;}
.yc9{bottom:478.875000px;}
.y7c{bottom:484.635000px;}
.yc8{bottom:499.575000px;}
.y7b{bottom:501.735000px;}
.y97{bottom:516.135000px;}
.yc7{bottom:516.315000px;}
.y7a{bottom:519.015000px;}
.ybb{bottom:521.931307px;}
.y96{bottom:533.235000px;}
.y79{bottom:536.295000px;}
.y95{bottom:547.995000px;}
.y78{bottom:553.575000px;}
.y94{bottom:565.995000px;}
.y77{bottom:570.855000px;}
.y93{bottom:583.995000px;}
.y76{bottom:588.135000px;}
.y75{bottom:605.265000px;}
.y74{bottom:622.545000px;}
.y73{bottom:639.825000px;}
.y72{bottom:657.105000px;}
.y71{bottom:674.385000px;}
.y70{bottom:691.665000px;}
.y6f{bottom:708.765000px;}
.y6e{bottom:726.045000px;}
.y1e{bottom:740.445000px;}
.y6d{bottom:743.325000px;}
.y6c{bottom:760.605000px;}
.yf{bottom:769.965000px;}
.y6b{bottom:777.885000px;}
.y6a{bottom:795.165000px;}
.yba{bottom:798.585000px;}
.y69{bottom:812.265000px;}
.yb9{bottom:815.325000px;}
.yb3{bottom:820.930900px;}
.y68{bottom:829.545000px;}
.y67{bottom:846.825000px;}
.y66{bottom:864.105000px;}
.y65{bottom:881.430000px;}
.y64{bottom:898.530000px;}
.y63{bottom:915.810000px;}
.y62{bottom:933.090000px;}
.y61{bottom:950.370000px;}
.y60{bottom:967.650000px;}
.y5f{bottom:984.930000px;}
.y5e{bottom:1002.030000px;}
.y5d{bottom:1019.310000px;}
.y5c{bottom:1036.590000px;}
.yd{bottom:1041.810000px;}
.y5b{bottom:1053.870000px;}
.y6{bottom:1067.010000px;}
.y5a{bottom:1071.150000px;}
.y59{bottom:1088.430000px;}
.y58{bottom:1105.530000px;}
.yb2{bottom:1116.150000px;}
.y57{bottom:1122.810000px;}
.yb0{bottom:1133.970000px;}
.y56{bottom:1140.120000px;}
.yae{bottom:1152.900000px;}
.y55{bottom:1157.400000px;}
.y54{bottom:1174.680000px;}
.h20{height:17.280000px;}
.h25{height:18.216000px;}
.hb{height:24.840000px;}
.h12{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:33.156000px;}
.h21{height:34.920000px;}
.h8{height:36.180000px;}
.h11{height:36.296016px;}
.h1d{height:36.540000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h19{height:42.281367px;}
.h13{height:43.453125px;}
.h1f{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h17{height:47.980898px;}
.h1e{height:48.088125px;}
.h30{height:49.462836px;}
.h2b{height:50.273438px;}
.h2c{height:50.800781px;}
.h29{height:53.666290px;}
.h4{height:53.709961px;}
.h2a{height:53.809400px;}
.h2e{height:53.918947px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:59.439023px;}
.h27{height:61.140052px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h23{height:75.456000px;}
.h2f{height:87.924524px;}
.h28{height:110.641395px;}
.h7{height:121.536000px;}
.h22{height:137.880000px;}
.h24{height:146.520000px;}
.h2d{height:246.409654px;}
.hc{height:271.830000px;}
.h26{height:284.348611px;}
.h16{height:345.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.wf{width:152.640000px;}
.we{width:178.050000px;}
.wb{width:185.430000px;}
.w8{width:223.275000px;}
.wc{width:248.430000px;}
.wa{width:311.115000px;}
.w10{width:404.984249px;}
.wd{width:414.465000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w11{width:660.344881px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.560000px;}
.x2{left:8.640000px;}
.x17{left:12.600000px;}
.xc{left:21.276000px;}
.x13{left:22.536000px;}
.xd{left:31.896000px;}
.x12{left:50.076000px;}
.xf{left:52.236000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x2b{left:84.489710px;}
.x11{left:86.430000px;}
.x2a{left:91.340227px;}
.x24{left:96.548251px;}
.x5{left:98.130000px;}
.x18{left:108.035987px;}
.x2c{left:116.196746px;}
.x15{left:117.390000px;}
.x10{left:131.610000px;}
.x33{left:135.035987px;}
.x29{left:140.705168px;}
.x25{left:160.808740px;}
.x1e{left:182.549987px;}
.x23{left:209.481854px;}
.x16{left:215.175000px;}
.x6{left:224.850000px;}
.x2d{left:253.551475px;}
.x2f{left:255.498063px;}
.x22{left:271.379749px;}
.x9{left:288.435000px;}
.x14{left:295.815000px;}
.x30{left:307.037914px;}
.x28{left:321.014987px;}
.x19{left:330.014987px;}
.xe{left:340.635000px;}
.x7{left:348.195000px;}
.x26{left:349.981382px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x1a{left:385.275000px;}
.x32{left:438.194987px;}
.x1d{left:446.474987px;}
.xa{left:455.700000px;}
.x2e{left:464.337751px;}
.x21{left:473.504987px;}
.x1f{left:488.445000px;}
.x1c{left:571.425000px;}
.x20{left:667.230000px;}
.x27{left:681.809987px;}
.x3{left:745.890000px;}
.x31{left:806.729987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls7{letter-spacing:-1.973333pt;}
.lsf{letter-spacing:-0.403548pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.113067pt;}
.lse{letter-spacing:-0.051798pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.076205pt;}
.ls1{letter-spacing:0.117867pt;}
.ls10{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.456533pt;}
.lsb{letter-spacing:0.736000pt;}
.ls11{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.ws3{word-spacing:-18.993067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsd{word-spacing:-10.890210pt;}
.wsc{word-spacing:-10.868084pt;}
.wsb{word-spacing:-10.839180pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
.wse{word-spacing:53.551695pt;}
._1d{margin-left:-7.101013pt;}
._18{margin-left:-5.365120pt;}
._5{margin-left:-4.302720pt;}
._4{margin-left:-2.933333pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.970667pt;}
._3{width:2.304000pt;}
._9{width:3.538773pt;}
._7{width:4.553813pt;}
._a{width:5.944960pt;}
._12{width:7.649280pt;}
._f{width:9.030400pt;}
._10{width:9.938133pt;}
._13{width:11.048533pt;}
._11{width:12.372267pt;}
._6{width:14.480853pt;}
._c{width:15.390293pt;}
._1b{width:16.360960pt;}
._b{width:17.621333pt;}
._14{width:18.804480pt;}
._15{width:19.760640pt;}
._d{width:20.734720pt;}
._8{width:21.726080pt;}
._1c{width:28.298453pt;}
._e{width:32.441813pt;}
._17{width:43.065813pt;}
._16{width:44.248960pt;}
._19{width:56.498751pt;}
._1a{width:103.974112pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fsf{font-size:44.204391pt;}
.fsb{font-size:47.960972pt;}
.fs0{font-size:48.000000pt;}
.fsc{font-size:48.088868pt;}
.fsd{font-size:48.186769pt;}
.fs8{font-size:50.560000pt;}
.fs9{font-size:53.076809pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fse{font-size:76.328904pt;}
.fsa{font-size:96.049839pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.yaf{bottom:3.360000pt;}
.y46{bottom:3.520000pt;}
.yb1{bottom:3.706667pt;}
.ye{bottom:8.480000pt;}
.ya4{bottom:8.640000pt;}
.y44{bottom:9.440000pt;}
.yad{bottom:10.400000pt;}
.y1f{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.yc6{bottom:15.066946pt;}
.y4{bottom:15.520000pt;}
.y5{bottom:17.120000pt;}
.y2{bottom:17.920000pt;}
.y9f{bottom:18.080000pt;}
.y40{bottom:18.240000pt;}
.y99{bottom:18.720000pt;}
.y45{bottom:19.680000pt;}
.y1d{bottom:21.120000pt;}
.y43{bottom:22.400000pt;}
.ya3{bottom:24.000000pt;}
.yac{bottom:25.760000pt;}
.yb{bottom:26.880000pt;}
.y1c{bottom:32.480000pt;}
.y9e{bottom:33.440000pt;}
.y3f{bottom:33.600000pt;}
.y1{bottom:37.120000pt;}
.ya2{bottom:39.360000pt;}
.yab{bottom:41.114667pt;}
.ya{bottom:41.440000pt;}
.yc4{bottom:42.678089pt;}
.yc2{bottom:42.678101pt;}
.y9d{bottom:48.800000pt;}
.y3e{bottom:48.960000pt;}
.y1b{bottom:50.400000pt;}
.ya1{bottom:54.720000pt;}
.yaa{bottom:56.474667pt;}
.yc3{bottom:57.379707pt;}
.yc1{bottom:57.379719pt;}
.y3d{bottom:64.160000pt;}
.y1a{bottom:65.120000pt;}
.y9{bottom:65.306667pt;}
.ya9{bottom:71.674667pt;}
.ybc{bottom:72.446382pt;}
.y3c{bottom:79.520000pt;}
.y19{bottom:79.840000pt;}
.y8{bottom:82.746667pt;}
.ya8{bottom:87.034667pt;}
.ybd{bottom:88.906876pt;}
.y18{bottom:90.440000pt;}
.yb8{bottom:91.029525pt;}
.y92{bottom:93.472000pt;}
.y9c{bottom:94.720000pt;}
.y3b{bottom:94.880000pt;}
.y7{bottom:99.066667pt;}
.ya5{bottom:102.112000pt;}
.ya7{bottom:102.394667pt;}
.yde{bottom:103.072000pt;}
.y2d{bottom:103.360000pt;}
.ybe{bottom:105.367370pt;}
.y17{bottom:106.120000pt;}
.yb4{bottom:106.728750pt;}
.y91{bottom:108.672000pt;}
.y9b{bottom:110.080000pt;}
.y3a{bottom:110.240000pt;}
.yb7{bottom:113.507234pt;}
.yb5{bottom:116.129100pt;}
.y2c{bottom:116.960000pt;}
.y16{bottom:117.160000pt;}
.ya6{bottom:117.754667pt;}
.ydd{bottom:118.272000pt;}
.ybf{bottom:121.827864pt;}
.y53{bottom:122.432000pt;}
.y90{bottom:124.032000pt;}
.y39{bottom:125.600000pt;}
.y15{bottom:130.280000pt;}
.y2b{bottom:132.480000pt;}
.ydc{bottom:133.626667pt;}
.y52{bottom:137.786667pt;}
.yc0{bottom:138.293668pt;}
.y8f{bottom:139.386667pt;}
.y38{bottom:140.960000pt;}
.y14{bottom:143.880000pt;}
.y2a{bottom:147.840000pt;}
.ydb{bottom:148.986667pt;}
.y51{bottom:153.146667pt;}
.y8e{bottom:154.746667pt;}
.y37{bottom:156.160000pt;}
.y13{bottom:160.680000pt;}
.y29{bottom:163.200000pt;}
.yda{bottom:164.346667pt;}
.y50{bottom:168.346667pt;}
.y8d{bottom:170.106667pt;}
.y36{bottom:171.520000pt;}
.y28{bottom:179.040000pt;}
.yd9{bottom:179.706667pt;}
.y12{bottom:183.560000pt;}
.y4f{bottom:183.706667pt;}
.y8c{bottom:185.306667pt;}
.y35{bottom:186.906667pt;}
.yc5{bottom:190.861043pt;}
.y27{bottom:194.426667pt;}
.yd8{bottom:195.066667pt;}
.y4e{bottom:199.066667pt;}
.y8b{bottom:200.666667pt;}
.y34{bottom:202.266667pt;}
.y11{bottom:206.440000pt;}
.y26{bottom:209.946667pt;}
.yd7{bottom:210.266667pt;}
.y4d{bottom:214.426667pt;}
.y8a{bottom:216.026667pt;}
.y33{bottom:217.626667pt;}
.yb6{bottom:219.887333pt;}
.y25{bottom:225.466667pt;}
.yd6{bottom:225.626667pt;}
.y10{bottom:228.200000pt;}
.y4c{bottom:229.786667pt;}
.y89{bottom:231.386667pt;}
.y32{bottom:232.826667pt;}
.ya0{bottom:232.986667pt;}
.y24{bottom:240.826667pt;}
.yd5{bottom:240.986667pt;}
.y4b{bottom:245.146667pt;}
.y88{bottom:246.746667pt;}
.y31{bottom:248.186667pt;}
.yd4{bottom:256.346667pt;}
.y23{bottom:256.506667pt;}
.y4a{bottom:260.346667pt;}
.y87{bottom:262.106667pt;}
.y30{bottom:263.546667pt;}
.yd3{bottom:271.706667pt;}
.y49{bottom:275.706667pt;}
.y86{bottom:277.306667pt;}
.y2f{bottom:278.906667pt;}
.y22{bottom:280.826667pt;}
.yd2{bottom:287.066667pt;}
.y48{bottom:291.066667pt;}
.y85{bottom:292.666667pt;}
.y2e{bottom:294.266667pt;}
.y21{bottom:296.666667pt;}
.y9a{bottom:300.866667pt;}
.yd1{bottom:302.306667pt;}
.y47{bottom:306.466667pt;}
.y84{bottom:308.066667pt;}
.yd0{bottom:317.666667pt;}
.y42{bottom:318.946667pt;}
.y83{bottom:323.426667pt;}
.ycf{bottom:333.026667pt;}
.y82{bottom:338.786667pt;}
.yce{bottom:348.386667pt;}
.y20{bottom:351.426667pt;}
.y81{bottom:354.146667pt;}
.ycd{bottom:363.746667pt;}
.y80{bottom:369.346667pt;}
.ycc{bottom:379.106667pt;}
.y7f{bottom:384.706667pt;}
.ycb{bottom:394.306667pt;}
.y7e{bottom:400.066667pt;}
.yca{bottom:409.666667pt;}
.y7d{bottom:415.426667pt;}
.y98{bottom:424.066667pt;}
.yc9{bottom:425.666667pt;}
.y7c{bottom:430.786667pt;}
.yc8{bottom:444.066667pt;}
.y7b{bottom:445.986667pt;}
.y97{bottom:458.786667pt;}
.yc7{bottom:458.946667pt;}
.y7a{bottom:461.346667pt;}
.ybb{bottom:463.938939pt;}
.y96{bottom:473.986667pt;}
.y79{bottom:476.706667pt;}
.y95{bottom:487.106667pt;}
.y78{bottom:492.066667pt;}
.y94{bottom:503.106667pt;}
.y77{bottom:507.426667pt;}
.y93{bottom:519.106667pt;}
.y76{bottom:522.786667pt;}
.y75{bottom:538.013333pt;}
.y74{bottom:553.373333pt;}
.y73{bottom:568.733333pt;}
.y72{bottom:584.093333pt;}
.y71{bottom:599.453333pt;}
.y70{bottom:614.813333pt;}
.y6f{bottom:630.013333pt;}
.y6e{bottom:645.373333pt;}
.y1e{bottom:658.173333pt;}
.y6d{bottom:660.733333pt;}
.y6c{bottom:676.093333pt;}
.yf{bottom:684.413333pt;}
.y6b{bottom:691.453333pt;}
.y6a{bottom:706.813333pt;}
.yba{bottom:709.853333pt;}
.y69{bottom:722.013333pt;}
.yb9{bottom:724.733333pt;}
.yb3{bottom:729.716356pt;}
.y68{bottom:737.373333pt;}
.y67{bottom:752.733333pt;}
.y66{bottom:768.093333pt;}
.y65{bottom:783.493333pt;}
.y64{bottom:798.693333pt;}
.y63{bottom:814.053333pt;}
.y62{bottom:829.413333pt;}
.y61{bottom:844.773333pt;}
.y60{bottom:860.133333pt;}
.y5f{bottom:875.493333pt;}
.y5e{bottom:890.693333pt;}
.y5d{bottom:906.053333pt;}
.y5c{bottom:921.413333pt;}
.yd{bottom:926.053333pt;}
.y5b{bottom:936.773333pt;}
.y6{bottom:948.453333pt;}
.y5a{bottom:952.133333pt;}
.y59{bottom:967.493333pt;}
.y58{bottom:982.693333pt;}
.yb2{bottom:992.133333pt;}
.y57{bottom:998.053333pt;}
.yb0{bottom:1007.973333pt;}
.y56{bottom:1013.440000pt;}
.yae{bottom:1024.800000pt;}
.y55{bottom:1028.800000pt;}
.y54{bottom:1044.160000pt;}
.h20{height:15.360000pt;}
.h25{height:16.192000pt;}
.hb{height:22.080000pt;}
.h12{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.472000pt;}
.h21{height:31.040000pt;}
.h8{height:32.160000pt;}
.h11{height:32.263125pt;}
.h1d{height:32.480000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h19{height:37.583438pt;}
.h13{height:38.625000pt;}
.h1f{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h30{height:43.966965pt;}
.h2b{height:44.687500pt;}
.h2c{height:45.156250pt;}
.h29{height:47.703369pt;}
.h4{height:47.742188pt;}
.h2a{height:47.830578pt;}
.h2e{height:47.927953pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:52.834688pt;}
.h27{height:54.346713pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h23{height:67.072000pt;}
.h2f{height:78.155133pt;}
.h28{height:98.347907pt;}
.h7{height:108.032000pt;}
.h22{height:122.560000pt;}
.h24{height:130.240000pt;}
.h2d{height:219.030803pt;}
.hc{height:241.626667pt;}
.h26{height:252.754321pt;}
.h16{height:306.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.wf{width:135.680000pt;}
.we{width:158.266667pt;}
.wb{width:164.826667pt;}
.w8{width:198.466667pt;}
.wc{width:220.826667pt;}
.wa{width:276.546667pt;}
.w10{width:359.985999pt;}
.wd{width:368.413333pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w11{width:586.973228pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.720000pt;}
.x2{left:7.680000pt;}
.x17{left:11.200000pt;}
.xc{left:18.912000pt;}
.x13{left:20.032000pt;}
.xd{left:28.352000pt;}
.x12{left:44.512000pt;}
.xf{left:46.432000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x2b{left:75.101964pt;}
.x11{left:76.826667pt;}
.x2a{left:81.191313pt;}
.x24{left:85.820667pt;}
.x5{left:87.226667pt;}
.x18{left:96.031988pt;}
.x2c{left:103.285997pt;}
.x15{left:104.346667pt;}
.x10{left:116.986667pt;}
.x33{left:120.031988pt;}
.x29{left:125.071260pt;}
.x25{left:142.941103pt;}
.x1e{left:162.266655pt;}
.x23{left:186.206092pt;}
.x16{left:191.266667pt;}
.x6{left:199.866667pt;}
.x2d{left:225.379089pt;}
.x2f{left:227.109390pt;}
.x22{left:241.226443pt;}
.x9{left:256.386667pt;}
.x14{left:262.946667pt;}
.x30{left:272.922590pt;}
.x28{left:285.346655pt;}
.x19{left:293.346655pt;}
.xe{left:302.786667pt;}
.x7{left:309.506667pt;}
.x26{left:311.094562pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x1a{left:342.466667pt;}
.x32{left:389.506655pt;}
.x1d{left:396.866655pt;}
.xa{left:405.066667pt;}
.x2e{left:412.744667pt;}
.x21{left:420.893322pt;}
.x1f{left:434.173333pt;}
.x1c{left:507.933333pt;}
.x20{left:593.093333pt;}
.x27{left:606.053322pt;}
.x3{left:663.013333pt;}
.x31{left:717.093322pt;}
}




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