
    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_d599c1632cfe85f098edf5bf.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_46d2482780b546364177598c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c9d12858a1b96c94f444cebd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9bbe8eb03987d5d3072dc16d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_04acbf0b18682c267e66cdde.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7f9053c4e044ccadd5a5ac1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_82ddb062cecce855da036315.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_08d86f6986fc2b6febe2d6ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053711;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_2469736038317b52016a1a4f.woff2')format("woff");}.ffa{font-family:ffa;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: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;}
.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;}
.v1{vertical-align:38.100000px;}
.v2{vertical-align:68.340000px;}
.lsf{letter-spacing:-2.304000px;}
.ls18{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.290000px;}
.ls14{letter-spacing:-1.110000px;}
.ls4{letter-spacing:-1.098000px;}
.lse{letter-spacing:-0.834000px;}
.ls2{letter-spacing:-0.580200px;}
.ls1b{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.354000px;}
.ls5{letter-spacing:-0.352200px;}
.ls1e{letter-spacing:-0.181800px;}
.ls1c{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.099000px;}
.ls1{letter-spacing:-0.021600px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.048000px;}
.ls15{letter-spacing:0.056100px;}
.ls19{letter-spacing:0.069300px;}
.ls1a{letter-spacing:0.324000px;}
.ls1d{letter-spacing:1.662000px;}
.ls6{letter-spacing:2.010000px;}
.ls16{letter-spacing:24.921300px;}
.lsb{letter-spacing:48.383400px;}
.ls13{letter-spacing:64.650300px;}
.lsa{letter-spacing:64.893300px;}
.lsc{letter-spacing:72.015000px;}
.lsd{letter-spacing:72.067500px;}
.ls11{letter-spacing:75.022500px;}
.ls12{letter-spacing:75.075000px;}
.ls7{letter-spacing:92.602500px;}
.ls9{letter-spacing:168.795000px;}
.ls8{letter-spacing:168.847500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-62.138700px;}
.ws5{word-spacing:-48.883800px;}
.wse{word-spacing:-37.696800px;}
.ws12{word-spacing:-32.611800px;}
.ws0{word-spacing:-32.577900px;}
.ws1{word-spacing:-27.526800px;}
.wsf{word-spacing:-27.492900px;}
.ws11{word-spacing:-24.441900px;}
.ws16{word-spacing:-23.151900px;}
.ws17{word-spacing:-23.001900px;}
.ws15{word-spacing:-22.137900px;}
.ws1a{word-spacing:-17.934000px;}
.wsc{word-spacing:-16.305900px;}
.ws19{word-spacing:-16.272000px;}
.ws18{word-spacing:-15.768000px;}
.ws2{word-spacing:-15.725700px;}
.wsa{word-spacing:-12.204000px;}
.wsd{word-spacing:-2.154750px;}
.ws9{word-spacing:-2.127000px;}
.ws14{word-spacing:-0.554100px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:0.230100px;}
.ws4{word-spacing:1.224600px;}
.wsb{word-spacing:1.373100px;}
.ws8{word-spacing:88.273800px;}
.ws6{word-spacing:88.563450px;}
.ws7{word-spacing:89.289750px;}
.ws10{word-spacing:257.728800px;}
._1c{margin-left:-19.899600px;}
._1b{margin-left:-18.187650px;}
._b{margin-left:-15.192000px;}
._10{margin-left:-13.912350px;}
._e{margin-left:-10.932900px;}
._c{margin-left:-9.178650px;}
._f{margin-left:-8.118150px;}
._8{margin-left:-6.976950px;}
._6{margin-left:-5.257800px;}
._2{margin-left:-4.036200px;}
._4{margin-left:-3.027150px;}
._1{margin-left:-1.441500px;}
._0{width:1.441500px;}
._5{width:2.734950px;}
._3{width:3.747900px;}
._18{width:4.898400px;}
._1e{width:6.597600px;}
._1f{width:13.412550px;}
._20{width:14.992200px;}
._17{width:17.717400px;}
._9{width:24.684750px;}
._1a{width:35.393700px;}
._1d{width:39.363450px;}
._19{width:41.238750px;}
._15{width:42.910200px;}
._13{width:44.145150px;}
._14{width:45.549750px;}
._12{width:133.178850px;}
._11{width:134.338950px;}
._d{width:382.738050px;}
._a{width:490.570500px;}
._7{width:503.496300px;}
._16{width:2111.692350px;}
.fcc{color:rgb(15,17,21);}
.fcb{color:rgb(255,129,129);}
.fc7{color:rgb(0,80,158);}
.fc8{color:rgb(85,166,255);}
.fc3{color:transparent;}
.fc2{color:rgb(135,131,95);}
.fca{color:rgb(137,137,137);}
.fc9{color:rgb(49,49,49);}
.fc6{color:rgb(127,127,127);}
.fc5{color:rgb(103,167,255);}
.fc4{color:rgb(242,112,60);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:36.000000px;}
.fsa{font-size:49.500000px;}
.fs9{font-size:49.650000px;}
.fsd{font-size:54.000000px;}
.fse{font-size:54.150000px;}
.fs18{font-size:58.500000px;}
.fs17{font-size:58.650000px;}
.fs5{font-size:67.500000px;}
.fsf{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fs1d{font-size:94.500000px;}
.fs12{font-size:94.650000px;}
.fs7{font-size:108.150000px;}
.fs2{font-size:121.650000px;}
.fs3{font-size:121.800000px;}
.fs13{font-size:135.150000px;}
.fs8{font-size:135.300000px;}
.fs0{font-size:144.150000px;}
.fs1{font-size:144.300000px;}
.fs16{font-size:148.650000px;}
.fs15{font-size:148.800000px;}
.fs1c{font-size:157.650000px;}
.fs1b{font-size:157.800000px;}
.fs14{font-size:166.650000px;}
.fs11{font-size:166.800000px;}
.fs1a{font-size:180.150000px;}
.fs19{font-size:180.300000px;}
.fsb{font-size:193.650000px;}
.fsc{font-size:193.800000px;}
.fs6{font-size:216.300000px;}
.fs1f{font-size:274.950000px;}
.fs1e{font-size:301.800000px;}
.y0{bottom:0.000000px;}
.y43{bottom:22.987500px;}
.yb{bottom:27.450000px;}
.y91{bottom:33.750000px;}
.y63{bottom:37.987500px;}
.y5a{bottom:43.200000px;}
.y26{bottom:43.687500px;}
.ya{bottom:64.650000px;}
.yb2{bottom:69.675000px;}
.y51{bottom:77.212500px;}
.y7c{bottom:81.600000px;}
.y96{bottom:82.125000px;}
.yb1{bottom:84.300000px;}
.y25{bottom:89.662500px;}
.y22{bottom:90.712500px;}
.y50{bottom:95.212500px;}
.y6c{bottom:97.612500px;}
.y9{bottom:101.812500px;}
.y7f{bottom:104.700000px;}
.y8c{bottom:104.820000px;}
.y97{bottom:104.895000px;}
.y86{bottom:105.345000px;}
.y99{bottom:107.100000px;}
.y4f{bottom:113.250000px;}
.yb0{bottom:114.712500px;}
.y8e{bottom:115.875000px;}
.yaf{bottom:130.500000px;}
.y8{bottom:138.975000px;}
.y98{bottom:139.762500px;}
.y4e{bottom:149.287500px;}
.y70{bottom:150.120000px;}
.y6b{bottom:153.930000px;}
.yae{bottom:159.795000px;}
.y4d{bottom:167.325000px;}
.y16{bottom:172.650000px;}
.y7{bottom:175.050000px;}
.yad{bottom:175.575000px;}
.y2e{bottom:181.875000px;}
.y2f{bottom:182.925000px;}
.y15{bottom:187.305000px;}
.y90{bottom:201.525000px;}
.y89{bottom:202.050000px;}
.y93{bottom:202.125000px;}
.y83{bottom:202.530000px;}
.y4c{bottom:203.370000px;}
.yac{bottom:205.995000px;}
.y6{bottom:212.220000px;}
.yab{bottom:220.620000px;}
.y40{bottom:221.280000px;}
.y4b{bottom:221.400000px;}
.y6a{bottom:227.175000px;}
.y8f{bottom:234.195000px;}
.y88{bottom:234.720000px;}
.y92{bottom:234.780000px;}
.y81{bottom:235.245000px;}
.y95{bottom:235.875000px;}
.y2d{bottom:237.225000px;}
.y1e{bottom:242.970000px;}
.y87{bottom:244.125000px;}
.y8d{bottom:245.250000px;}
.yaa{bottom:251.025000px;}
.y23{bottom:252.900000px;}
.ya9{bottom:265.695000px;}
.y3f{bottom:267.495000px;}
.y94{bottom:268.530000px;}
.y2c{bottom:273.255000px;}
.y69{bottom:284.625000px;}
.y62{bottom:285.675000px;}
.y58{bottom:287.445000px;}
.y6f{bottom:291.750000px;}
.y8b{bottom:292.500000px;}
.ya8{bottom:296.100000px;}
.ye{bottom:298.695000px;}
.y2b{bottom:309.330000px;}
.ya7{bottom:310.755000px;}
.y4a{bottom:313.200000px;}
.y61{bottom:318.345000px;}
.yd{bottom:320.100000px;}
.ya6{bottom:326.505000px;}
.y13{bottom:340.695000px;}
.yc{bottom:341.505000px;}
.y2a{bottom:345.375000px;}
.y76{bottom:349.830000px;}
.y49{bottom:353.745000px;}
.y68{bottom:356.730000px;}
.ya5{bottom:356.925000px;}
.y7b{bottom:357.720000px;}
.y57{bottom:365.175000px;}
.y1d{bottom:365.400000px;}
.ya4{bottom:371.595000px;}
.y80{bottom:372.375000px;}
.y8a{bottom:373.500000px;}
.y1c{bottom:386.820000px;}
.y3e{bottom:388.005000px;}
.y29{bottom:391.905000px;}
.y48{bottom:394.320000px;}
.y60{bottom:396.075000px;}
.ya3{bottom:402.000000px;}
.y56{bottom:408.000000px;}
.y12{bottom:409.050000px;}
.y21{bottom:410.445000px;}
.y67{bottom:414.195000px;}
.y6e{bottom:414.495000px;}
.ya2{bottom:416.625000px;}
.y85{bottom:420.750000px;}
.y20{bottom:431.850000px;}
.y3d{bottom:433.080000px;}
.y5f{bottom:438.870000px;}
.ya1{bottom:447.075000px;}
.y55{bottom:451.920000px;}
.y7a{bottom:452.325000px;}
.ya0{bottom:462.825000px;}
.y75{bottom:465.870000px;}
.y11{bottom:467.655000px;}
.y39{bottom:474.045000px;}
.y35{bottom:479.475000px;}
.y5e{bottom:482.820000px;}
.y66{bottom:487.425000px;}
.y9f{bottom:492.120000px;}
.y3c{bottom:493.905000px;}
.y54{bottom:494.745000px;}
.y79{bottom:500.775000px;}
.y47{bottom:505.845000px;}
.y38{bottom:506.745000px;}
.y31{bottom:507.750000px;}
.y9e{bottom:507.900000px;}
.y34{bottom:508.755000px;}
.y74{bottom:509.775000px;}
.y3a{bottom:522.495000px;}
.y30{bottom:523.320000px;}
.y5d{bottom:525.600000px;}
.y10{bottom:526.245000px;}
.y24{bottom:533.025000px;}
.y33{bottom:536.925000px;}
.y9d{bottom:537.195000px;}
.y6d{bottom:537.255000px;}
.y53{bottom:538.695000px;}
.y37{bottom:539.400000px;}
.y65{bottom:543.750000px;}
.y1b{bottom:546.000000px;}
.y46{bottom:546.420000px;}
.y78{bottom:548.100000px;}
.y7e{bottom:550.125000px;}
.y1f{bottom:552.720000px;}
.y9c{bottom:552.975000px;}
.y73{bottom:553.725000px;}
.y3b{bottom:554.745000px;}
.y1a{bottom:561.750000px;}
.y32{bottom:566.220000px;}
.y9b{bottom:567.600000px;}
.y5c{bottom:569.550000px;}
.y36{bottom:572.070000px;}
.y84{bottom:574.905000px;}
.y19{bottom:578.670000px;}
.y52{bottom:581.475000px;}
.y45{bottom:586.950000px;}
.yf{bottom:587.130000px;}
.y77{bottom:598.800000px;}
.y72{bottom:602.175000px;}
.y5{bottom:605.130000px;}
.y82{bottom:607.620000px;}
.y5b{bottom:612.375000px;}
.y44{bottom:627.525000px;}
.y4{bottom:643.470000px;}
.y42{bottom:658.995000px;}
.y14{bottom:664.995000px;}
.y18{bottom:669.120000px;}
.yb3{bottom:669.405000px;}
.y64{bottom:677.100000px;}
.y3{bottom:682.875000px;}
.y59{bottom:684.600000px;}
.y71{bottom:691.380000px;}
.y27{bottom:695.625000px;}
.y41{bottom:717.570000px;}
.y2{bottom:721.200000px;}
.y7d{bottom:725.475000px;}
.y17{bottom:726.570000px;}
.y9a{bottom:733.155000px;}
.y1{bottom:760.620000px;}
.y28{bottom:767.970000px;}
.h13{height:36.861328px;}
.hc{height:50.684326px;}
.h1f{height:50.701904px;}
.h1e{height:50.831909px;}
.hb{height:50.837915px;}
.hf{height:55.291992px;}
.h2a{height:58.334985px;}
.h1b{height:58.502197px;}
.h6{height:67.137451px;}
.h16{height:71.613281px;}
.h5{height:71.762476px;}
.h12{height:73.722656px;}
.h11{height:73.876245px;}
.h29{height:92.900684px;}
.h27{height:93.015234px;}
.h18{height:94.141626px;}
.h9{height:102.974854px;}
.h14{height:107.569116px;}
.h2c{height:110.737573px;}
.h10{height:111.976245px;}
.h3{height:120.996606px;}
.h4{height:121.145801px;}
.h20{height:137.252197px;}
.h21{height:137.395020px;}
.ha{height:138.537158px;}
.h1d{height:141.536865px;}
.h1c{height:141.679688px;}
.h1{height:147.598901px;}
.h2{height:147.752490px;}
.h26{height:156.803247px;}
.h25{height:156.952441px;}
.h23{height:157.850537px;}
.h19{height:165.754907px;}
.h1a{height:165.904102px;}
.h15{height:170.790820px;}
.h24{height:171.529541px;}
.h22{height:171.672363px;}
.h17{height:175.909116px;}
.h28{height:179.331592px;}
.hd{height:198.283228px;}
.he{height:198.436816px;}
.h8{height:215.138232px;}
.h7{height:221.475146px;}
.h2b{height:227.250000px;}
.h2e{height:228.375000px;}
.h33{height:281.528394px;}
.h32{height:309.020801px;}
.h31{height:360.000000px;}
.h2d{height:437.625000px;}
.h2f{height:454.500000px;}
.h30{height:455.625000px;}
.h0{height:810.000000px;}
.w2{width:577.125000px;}
.w3{width:729.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3e{left:11.400000px;}
.x2{left:35.474979px;}
.x34{left:47.512479px;}
.x2d{left:52.162479px;}
.x3d{left:55.125000px;}
.x30{left:57.299979px;}
.x7{left:58.649979px;}
.x37{left:59.737479px;}
.x33{left:63.074979px;}
.x32{left:65.962479px;}
.x31{left:68.099979px;}
.x18{left:69.712479px;}
.x35{left:84.337479px;}
.x17{left:107.062479px;}
.xb{left:115.162479px;}
.x42{left:120.487479px;}
.x49{left:130.612479px;}
.x1e{left:153.899979px;}
.x2c{left:162.599979px;}
.x48{left:166.469979px;}
.x3b{left:187.004979px;}
.x9{left:193.124979px;}
.x38{left:207.674979px;}
.xd{left:229.169979px;}
.xc{left:234.824979px;}
.x3a{left:244.829979px;}
.x39{left:251.024979px;}
.x1f{left:335.444979px;}
.x46{left:350.279979px;}
.x44{left:355.245000px;}
.x3{left:359.744979px;}
.x16{left:410.249979px;}
.x41{left:427.800000px;}
.x40{left:443.144979px;}
.x47{left:510.299979px;}
.x20{left:511.529979px;}
.x1d{left:512.924979px;}
.x2f{left:576.419979px;}
.x2e{left:581.369979px;}
.x10{left:627.119979px;}
.x11{left:629.954979px;}
.x3f{left:631.125000px;}
.x3c{left:652.469979px;}
.x12{left:656.819979px;}
.x22{left:677.069979px;}
.x23{left:678.224979px;}
.x21{left:679.424979px;}
.x15{left:697.694979px;}
.xf{left:733.694979px;}
.x8{left:794.849979px;}
.xe{left:820.079979px;}
.x25{left:828.194979px;}
.x45{left:838.724979px;}
.x26{left:846.674979px;}
.x27{left:851.774979px;}
.x24{left:855.869979px;}
.x4{left:911.204979px;}
.x1a{left:918.794979px;}
.x1b{left:926.954979px;}
.x1c{left:960.749979px;}
.x43{left:978.104979px;}
.x13{left:988.154979px;}
.x2a{left:1003.574979px;}
.x2b{left:1013.594979px;}
.x1{left:1016.624979px;}
.x28{left:1023.524979px;}
.x29{left:1025.699979px;}
.x5{left:1067.174979px;}
.x14{left:1080.749979px;}
.xa{left:1254.254979px;}
.x6{left:1274.699979px;}
.x36{left:1336.424979px;}
.x19{left:1350.149979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:33.866667pt;}
.v2{vertical-align:60.746667pt;}
.lsf{letter-spacing:-2.048000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-1.146667pt;}
.ls14{letter-spacing:-0.986667pt;}
.ls4{letter-spacing:-0.976000pt;}
.lse{letter-spacing:-0.741333pt;}
.ls2{letter-spacing:-0.515733pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.314667pt;}
.ls5{letter-spacing:-0.313067pt;}
.ls1e{letter-spacing:-0.161600pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.088000pt;}
.ls1{letter-spacing:-0.019200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.042667pt;}
.ls15{letter-spacing:0.049867pt;}
.ls19{letter-spacing:0.061600pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:1.477333pt;}
.ls6{letter-spacing:1.786667pt;}
.ls16{letter-spacing:22.152267pt;}
.lsb{letter-spacing:43.007467pt;}
.ls13{letter-spacing:57.466933pt;}
.lsa{letter-spacing:57.682933pt;}
.lsc{letter-spacing:64.013333pt;}
.lsd{letter-spacing:64.060000pt;}
.ls11{letter-spacing:66.686667pt;}
.ls12{letter-spacing:66.733333pt;}
.ls7{letter-spacing:82.313333pt;}
.ls9{letter-spacing:150.040000pt;}
.ls8{letter-spacing:150.086667pt;}
.ws1b{word-spacing:-55.234400pt;}
.ws5{word-spacing:-43.452267pt;}
.wse{word-spacing:-33.508267pt;}
.ws12{word-spacing:-28.988267pt;}
.ws0{word-spacing:-28.958133pt;}
.ws1{word-spacing:-24.468267pt;}
.wsf{word-spacing:-24.438133pt;}
.ws11{word-spacing:-21.726133pt;}
.ws16{word-spacing:-20.579467pt;}
.ws17{word-spacing:-20.446133pt;}
.ws15{word-spacing:-19.678133pt;}
.ws1a{word-spacing:-15.941333pt;}
.wsc{word-spacing:-14.494133pt;}
.ws19{word-spacing:-14.464000pt;}
.ws18{word-spacing:-14.016000pt;}
.ws2{word-spacing:-13.978400pt;}
.wsa{word-spacing:-10.848000pt;}
.wsd{word-spacing:-1.915333pt;}
.ws9{word-spacing:-1.890667pt;}
.ws14{word-spacing:-0.492533pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:0.204533pt;}
.ws4{word-spacing:1.088533pt;}
.wsb{word-spacing:1.220533pt;}
.ws8{word-spacing:78.465600pt;}
.ws6{word-spacing:78.723067pt;}
.ws7{word-spacing:79.368667pt;}
.ws10{word-spacing:229.092267pt;}
._1c{margin-left:-17.688533pt;}
._1b{margin-left:-16.166800pt;}
._b{margin-left:-13.504000pt;}
._10{margin-left:-12.366533pt;}
._e{margin-left:-9.718133pt;}
._c{margin-left:-8.158800pt;}
._f{margin-left:-7.216133pt;}
._8{margin-left:-6.201733pt;}
._6{margin-left:-4.673600pt;}
._2{margin-left:-3.587733pt;}
._4{margin-left:-2.690800pt;}
._1{margin-left:-1.281333pt;}
._0{width:1.281333pt;}
._5{width:2.431067pt;}
._3{width:3.331467pt;}
._18{width:4.354133pt;}
._1e{width:5.864533pt;}
._1f{width:11.922267pt;}
._20{width:13.326400pt;}
._17{width:15.748800pt;}
._9{width:21.942000pt;}
._1a{width:31.461067pt;}
._1d{width:34.989733pt;}
._19{width:36.656667pt;}
._15{width:38.142400pt;}
._13{width:39.240133pt;}
._14{width:40.488667pt;}
._12{width:118.381200pt;}
._11{width:119.412400pt;}
._d{width:340.211600pt;}
._a{width:436.062667pt;}
._7{width:447.552267pt;}
._16{width:1877.059867pt;}
.fs10{font-size:32.000000pt;}
.fsa{font-size:44.000000pt;}
.fs9{font-size:44.133333pt;}
.fsd{font-size:48.000000pt;}
.fse{font-size:48.133333pt;}
.fs18{font-size:52.000000pt;}
.fs17{font-size:52.133333pt;}
.fs5{font-size:60.000000pt;}
.fsf{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fs1d{font-size:84.000000pt;}
.fs12{font-size:84.133333pt;}
.fs7{font-size:96.133333pt;}
.fs2{font-size:108.133333pt;}
.fs3{font-size:108.266667pt;}
.fs13{font-size:120.133333pt;}
.fs8{font-size:120.266667pt;}
.fs0{font-size:128.133333pt;}
.fs1{font-size:128.266667pt;}
.fs16{font-size:132.133333pt;}
.fs15{font-size:132.266667pt;}
.fs1c{font-size:140.133333pt;}
.fs1b{font-size:140.266667pt;}
.fs14{font-size:148.133333pt;}
.fs11{font-size:148.266667pt;}
.fs1a{font-size:160.133333pt;}
.fs19{font-size:160.266667pt;}
.fsb{font-size:172.133333pt;}
.fsc{font-size:172.266667pt;}
.fs6{font-size:192.266667pt;}
.fs1f{font-size:244.400000pt;}
.fs1e{font-size:268.266667pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:20.433333pt;}
.yb{bottom:24.400000pt;}
.y91{bottom:30.000000pt;}
.y63{bottom:33.766667pt;}
.y5a{bottom:38.400000pt;}
.y26{bottom:38.833333pt;}
.ya{bottom:57.466667pt;}
.yb2{bottom:61.933333pt;}
.y51{bottom:68.633333pt;}
.y7c{bottom:72.533333pt;}
.y96{bottom:73.000000pt;}
.yb1{bottom:74.933333pt;}
.y25{bottom:79.700000pt;}
.y22{bottom:80.633333pt;}
.y50{bottom:84.633333pt;}
.y6c{bottom:86.766667pt;}
.y9{bottom:90.500000pt;}
.y7f{bottom:93.066667pt;}
.y8c{bottom:93.173333pt;}
.y97{bottom:93.240000pt;}
.y86{bottom:93.640000pt;}
.y99{bottom:95.200000pt;}
.y4f{bottom:100.666667pt;}
.yb0{bottom:101.966667pt;}
.y8e{bottom:103.000000pt;}
.yaf{bottom:116.000000pt;}
.y8{bottom:123.533333pt;}
.y98{bottom:124.233333pt;}
.y4e{bottom:132.700000pt;}
.y70{bottom:133.440000pt;}
.y6b{bottom:136.826667pt;}
.yae{bottom:142.040000pt;}
.y4d{bottom:148.733333pt;}
.y16{bottom:153.466667pt;}
.y7{bottom:155.600000pt;}
.yad{bottom:156.066667pt;}
.y2e{bottom:161.666667pt;}
.y2f{bottom:162.600000pt;}
.y15{bottom:166.493333pt;}
.y90{bottom:179.133333pt;}
.y89{bottom:179.600000pt;}
.y93{bottom:179.666667pt;}
.y83{bottom:180.026667pt;}
.y4c{bottom:180.773333pt;}
.yac{bottom:183.106667pt;}
.y6{bottom:188.640000pt;}
.yab{bottom:196.106667pt;}
.y40{bottom:196.693333pt;}
.y4b{bottom:196.800000pt;}
.y6a{bottom:201.933333pt;}
.y8f{bottom:208.173333pt;}
.y88{bottom:208.640000pt;}
.y92{bottom:208.693333pt;}
.y81{bottom:209.106667pt;}
.y95{bottom:209.666667pt;}
.y2d{bottom:210.866667pt;}
.y1e{bottom:215.973333pt;}
.y87{bottom:217.000000pt;}
.y8d{bottom:218.000000pt;}
.yaa{bottom:223.133333pt;}
.y23{bottom:224.800000pt;}
.ya9{bottom:236.173333pt;}
.y3f{bottom:237.773333pt;}
.y94{bottom:238.693333pt;}
.y2c{bottom:242.893333pt;}
.y69{bottom:253.000000pt;}
.y62{bottom:253.933333pt;}
.y58{bottom:255.506667pt;}
.y6f{bottom:259.333333pt;}
.y8b{bottom:260.000000pt;}
.ya8{bottom:263.200000pt;}
.ye{bottom:265.506667pt;}
.y2b{bottom:274.960000pt;}
.ya7{bottom:276.226667pt;}
.y4a{bottom:278.400000pt;}
.y61{bottom:282.973333pt;}
.yd{bottom:284.533333pt;}
.ya6{bottom:290.226667pt;}
.y13{bottom:302.840000pt;}
.yc{bottom:303.560000pt;}
.y2a{bottom:307.000000pt;}
.y76{bottom:310.960000pt;}
.y49{bottom:314.440000pt;}
.y68{bottom:317.093333pt;}
.ya5{bottom:317.266667pt;}
.y7b{bottom:317.973333pt;}
.y57{bottom:324.600000pt;}
.y1d{bottom:324.800000pt;}
.ya4{bottom:330.306667pt;}
.y80{bottom:331.000000pt;}
.y8a{bottom:332.000000pt;}
.y1c{bottom:343.840000pt;}
.y3e{bottom:344.893333pt;}
.y29{bottom:348.360000pt;}
.y48{bottom:350.506667pt;}
.y60{bottom:352.066667pt;}
.ya3{bottom:357.333333pt;}
.y56{bottom:362.666667pt;}
.y12{bottom:363.600000pt;}
.y21{bottom:364.840000pt;}
.y67{bottom:368.173333pt;}
.y6e{bottom:368.440000pt;}
.ya2{bottom:370.333333pt;}
.y85{bottom:374.000000pt;}
.y20{bottom:383.866667pt;}
.y3d{bottom:384.960000pt;}
.y5f{bottom:390.106667pt;}
.ya1{bottom:397.400000pt;}
.y55{bottom:401.706667pt;}
.y7a{bottom:402.066667pt;}
.ya0{bottom:411.400000pt;}
.y75{bottom:414.106667pt;}
.y11{bottom:415.693333pt;}
.y39{bottom:421.373333pt;}
.y35{bottom:426.200000pt;}
.y5e{bottom:429.173333pt;}
.y66{bottom:433.266667pt;}
.y9f{bottom:437.440000pt;}
.y3c{bottom:439.026667pt;}
.y54{bottom:439.773333pt;}
.y79{bottom:445.133333pt;}
.y47{bottom:449.640000pt;}
.y38{bottom:450.440000pt;}
.y31{bottom:451.333333pt;}
.y9e{bottom:451.466667pt;}
.y34{bottom:452.226667pt;}
.y74{bottom:453.133333pt;}
.y3a{bottom:464.440000pt;}
.y30{bottom:465.173333pt;}
.y5d{bottom:467.200000pt;}
.y10{bottom:467.773333pt;}
.y24{bottom:473.800000pt;}
.y33{bottom:477.266667pt;}
.y9d{bottom:477.506667pt;}
.y6d{bottom:477.560000pt;}
.y53{bottom:478.840000pt;}
.y37{bottom:479.466667pt;}
.y65{bottom:483.333333pt;}
.y1b{bottom:485.333333pt;}
.y46{bottom:485.706667pt;}
.y78{bottom:487.200000pt;}
.y7e{bottom:489.000000pt;}
.y1f{bottom:491.306667pt;}
.y9c{bottom:491.533333pt;}
.y73{bottom:492.200000pt;}
.y3b{bottom:493.106667pt;}
.y1a{bottom:499.333333pt;}
.y32{bottom:503.306667pt;}
.y9b{bottom:504.533333pt;}
.y5c{bottom:506.266667pt;}
.y36{bottom:508.506667pt;}
.y84{bottom:511.026667pt;}
.y19{bottom:514.373333pt;}
.y52{bottom:516.866667pt;}
.y45{bottom:521.733333pt;}
.yf{bottom:521.893333pt;}
.y77{bottom:532.266667pt;}
.y72{bottom:535.266667pt;}
.y5{bottom:537.893333pt;}
.y82{bottom:540.106667pt;}
.y5b{bottom:544.333333pt;}
.y44{bottom:557.800000pt;}
.y4{bottom:571.973333pt;}
.y42{bottom:585.773333pt;}
.y14{bottom:591.106667pt;}
.y18{bottom:594.773333pt;}
.yb3{bottom:595.026667pt;}
.y64{bottom:601.866667pt;}
.y3{bottom:607.000000pt;}
.y59{bottom:608.533333pt;}
.y71{bottom:614.560000pt;}
.y27{bottom:618.333333pt;}
.y41{bottom:637.840000pt;}
.y2{bottom:641.066667pt;}
.y7d{bottom:644.866667pt;}
.y17{bottom:645.840000pt;}
.y9a{bottom:651.693333pt;}
.y1{bottom:676.106667pt;}
.y28{bottom:682.640000pt;}
.h13{height:32.765625pt;}
.hc{height:45.052734pt;}
.h1f{height:45.068359pt;}
.h1e{height:45.183919pt;}
.hb{height:45.189258pt;}
.hf{height:49.148438pt;}
.h2a{height:51.853320pt;}
.h1b{height:52.001953pt;}
.h6{height:59.677734pt;}
.h16{height:63.656250pt;}
.h5{height:63.788867pt;}
.h12{height:65.531250pt;}
.h11{height:65.667773pt;}
.h29{height:82.578385pt;}
.h27{height:82.680208pt;}
.h18{height:83.681445pt;}
.h9{height:91.533203pt;}
.h14{height:95.616992pt;}
.h2c{height:98.433398pt;}
.h10{height:99.534440pt;}
.h3{height:107.552539pt;}
.h4{height:107.685156pt;}
.h20{height:122.001953pt;}
.h21{height:122.128906pt;}
.ha{height:123.144141pt;}
.h1d{height:125.810547pt;}
.h1c{height:125.937500pt;}
.h1{height:131.199023pt;}
.h2{height:131.335547pt;}
.h26{height:139.380664pt;}
.h25{height:139.513281pt;}
.h23{height:140.311589pt;}
.h19{height:147.337695pt;}
.h1a{height:147.470313pt;}
.h15{height:151.814063pt;}
.h24{height:152.470703pt;}
.h22{height:152.597656pt;}
.h17{height:156.363659pt;}
.h28{height:159.405859pt;}
.hd{height:176.251758pt;}
.he{height:176.388281pt;}
.h8{height:191.233984pt;}
.h7{height:196.866797pt;}
.h2b{height:202.000000pt;}
.h2e{height:203.000000pt;}
.h33{height:250.247461pt;}
.h32{height:274.685156pt;}
.h31{height:320.000000pt;}
.h2d{height:389.000000pt;}
.h2f{height:404.000000pt;}
.h30{height:405.000000pt;}
.h0{height:720.000000pt;}
.w2{width:513.000000pt;}
.w3{width:648.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:10.133333pt;}
.x2{left:31.533314pt;}
.x34{left:42.233314pt;}
.x2d{left:46.366648pt;}
.x3d{left:49.000000pt;}
.x30{left:50.933314pt;}
.x7{left:52.133314pt;}
.x37{left:53.099981pt;}
.x33{left:56.066648pt;}
.x32{left:58.633314pt;}
.x31{left:60.533314pt;}
.x18{left:61.966648pt;}
.x35{left:74.966648pt;}
.x17{left:95.166648pt;}
.xb{left:102.366648pt;}
.x42{left:107.099981pt;}
.x49{left:116.099981pt;}
.x1e{left:136.799981pt;}
.x2c{left:144.533314pt;}
.x48{left:147.973314pt;}
.x3b{left:166.226648pt;}
.x9{left:171.666648pt;}
.x38{left:184.599981pt;}
.xd{left:203.706648pt;}
.xc{left:208.733314pt;}
.x3a{left:217.626648pt;}
.x39{left:223.133314pt;}
.x1f{left:298.173314pt;}
.x46{left:311.359981pt;}
.x44{left:315.773333pt;}
.x3{left:319.773314pt;}
.x16{left:364.666648pt;}
.x41{left:380.266667pt;}
.x40{left:393.906648pt;}
.x47{left:453.599981pt;}
.x20{left:454.693314pt;}
.x1d{left:455.933314pt;}
.x2f{left:512.373314pt;}
.x2e{left:516.773314pt;}
.x10{left:557.439981pt;}
.x11{left:559.959981pt;}
.x3f{left:561.000000pt;}
.x3c{left:579.973314pt;}
.x12{left:583.839981pt;}
.x22{left:601.839981pt;}
.x23{left:602.866648pt;}
.x21{left:603.933314pt;}
.x15{left:620.173314pt;}
.xf{left:652.173314pt;}
.x8{left:706.533314pt;}
.xe{left:728.959981pt;}
.x25{left:736.173314pt;}
.x45{left:745.533314pt;}
.x26{left:752.599981pt;}
.x27{left:757.133314pt;}
.x24{left:760.773314pt;}
.x4{left:809.959981pt;}
.x1a{left:816.706648pt;}
.x1b{left:823.959981pt;}
.x1c{left:853.999981pt;}
.x43{left:869.426648pt;}
.x13{left:878.359981pt;}
.x2a{left:892.066648pt;}
.x2b{left:900.973314pt;}
.x1{left:903.666648pt;}
.x28{left:909.799981pt;}
.x29{left:911.733314pt;}
.x5{left:948.599981pt;}
.x14{left:960.666648pt;}
.xa{left:1114.893314pt;}
.x6{left:1133.066648pt;}
.x36{left:1187.933314pt;}
.x19{left:1200.133314pt;}
}




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