
    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_f35b79a94a166dd3e86288f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_1f6e53690287b44e05ff9c74.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_d069b2ccb8753c9a1440e80d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_cc6e59626088fb9d0decd41a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_bd92a00d63d2f40a45106ae0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_9ded2ab930222af508d337d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_8f48028c1f6efb6fd75a1e64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_8016e1f5739aeb37cda54448.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_6eea8c532731801e34930638.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4d9fc54ec37bbd3ee9c4a0c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898926;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_73473db5921261dda42f61ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964844;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_8e573e58cd95b7f947714b3d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_53b7a617c8382c10a052cda8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6f1a1c95dc84a52f395d2864.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.937500;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);}
.v2{vertical-align:-30.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.000000px;}
.ls22{letter-spacing:-1.572000px;}
.ls34{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.552000px;}
.ls29{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.372000px;}
.ls9{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.276000px;}
.ls17{letter-spacing:-0.096000px;}
.ls2{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.150000px;}
.ls10{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.322800px;}
.ls14{letter-spacing:0.540000px;}
.ls2b{letter-spacing:0.570000px;}
.ls5{letter-spacing:0.600000px;}
.lse{letter-spacing:0.660000px;}
.ls2e{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.780000px;}
.ls6{letter-spacing:0.840000px;}
.ls18{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.860000px;}
.lsf{letter-spacing:5.400000px;}
.ls13{letter-spacing:6.540000px;}
.lsc{letter-spacing:6.600000px;}
.ls12{letter-spacing:7.800000px;}
.ls35{letter-spacing:11.400000px;}
.ls36{letter-spacing:12.600000px;}
.ls1f{letter-spacing:12.660000px;}
.ls3{letter-spacing:18.600000px;}
.ls28{letter-spacing:21.000000px;}
.ls1d{letter-spacing:22.140000px;}
.ls1e{letter-spacing:22.200000px;}
.ls1c{letter-spacing:22.260000px;}
.ls31{letter-spacing:23.400000px;}
.ls32{letter-spacing:23.460000px;}
.ls23{letter-spacing:24.600000px;}
.ls24{letter-spacing:24.780000px;}
.ls21{letter-spacing:25.980000px;}
.ls27{letter-spacing:30.720000px;}
.ls38{letter-spacing:34.140000px;}
.ls37{letter-spacing:34.380000px;}
.ls30{letter-spacing:36.600000px;}
.ls2f{letter-spacing:36.780000px;}
.ls4{letter-spacing:39.060000px;}
.ls25{letter-spacing:41.580000px;}
.ls19{letter-spacing:42.600000px;}
.ls2c{letter-spacing:45.000000px;}
.ls2a{letter-spacing:47.400000px;}
.ls1b{letter-spacing:54.600000px;}
.ls33{letter-spacing:55.800000px;}
.ls1a{letter-spacing:102.600000px;}
.ls1{letter-spacing:126.780000px;}
.ls2d{letter-spacing:131.400000px;}
.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;}
}
.ws4{word-spacing:-84.000000px;}
.wsc{word-spacing:-82.800000px;}
.ws2{word-spacing:-60.000000px;}
.ws8{word-spacing:-22.200000px;}
.ws0{word-spacing:-21.000000px;}
.ws6{word-spacing:-20.904000px;}
.ws5{word-spacing:-20.724000px;}
.ws7{word-spacing:-20.448000px;}
.wsa{word-spacing:-14.100000px;}
.ws3{word-spacing:-13.560000px;}
.ws9{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.900000px;}
.ws1{word-spacing:0.000000px;}
._46{margin-left:-4.914000px;}
._19{margin-left:-3.906000px;}
._0{margin-left:-2.526000px;}
._2{margin-left:-1.140000px;}
._1{width:1.236000px;}
._3{width:3.102000px;}
._7{width:4.608000px;}
._8{width:6.324000px;}
._15{width:8.076000px;}
._6{width:9.144000px;}
._36{width:10.284000px;}
._2f{width:11.484000px;}
._12{width:12.720000px;}
._11{width:14.076000px;}
._1a{width:16.068000px;}
._42{width:17.364000px;}
._1c{width:18.444000px;}
._3a{width:19.950000px;}
._14{width:22.764000px;}
._13{width:23.820000px;}
._30{width:24.948000px;}
._20{width:26.004000px;}
._1f{width:27.720000px;}
._37{width:29.202000px;}
._17{width:30.912000px;}
._16{width:32.406000px;}
._b{width:33.600000px;}
._c{width:35.028000px;}
._e{width:36.360000px;}
._21{width:37.686000px;}
._5{width:39.192000px;}
._4{width:40.404000px;}
._26{width:42.126000px;}
._29{width:43.140000px;}
._25{width:44.184000px;}
._10{width:45.768000px;}
._3f{width:46.974000px;}
._38{width:48.384000px;}
._3b{width:51.816000px;}
._2e{width:53.724000px;}
._28{width:54.936000px;}
._d{width:56.688000px;}
._3e{width:58.392000px;}
._1d{width:59.664000px;}
._1e{width:60.984000px;}
._2d{width:64.848000px;}
._2c{width:66.360000px;}
._24{width:68.208000px;}
._1b{width:69.834000px;}
._a{width:71.232000px;}
._9{width:72.492000px;}
._3c{width:73.824000px;}
._3d{width:74.928000px;}
._22{width:77.868000px;}
._23{width:79.428000px;}
._43{width:80.916000px;}
._40{width:83.322000px;}
._39{width:84.654000px;}
._18{width:86.268000px;}
._34{width:88.764000px;}
._35{width:90.138000px;}
._33{width:91.200000px;}
._2a{width:101.244000px;}
._2b{width:102.510000px;}
._41{width:106.596000px;}
._32{width:111.042000px;}
._31{width:112.308000px;}
._27{width:116.088000px;}
._f{width:126.528000px;}
._44{width:131.370000px;}
._45{width:132.762000px;}
.fc2{color:rgb(79,97,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,192,0);}
.fs5{font-size:39.600000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:12.900000px;}
.y6{bottom:39.337500px;}
.y5{bottom:57.337500px;}
.y3c{bottom:99.337500px;}
.y2b{bottom:102.037500px;}
.y74{bottom:104.737500px;}
.y3b{bottom:117.637500px;}
.y73{bottom:118.237500px;}
.yc6{bottom:120.637500px;}
.y3a{bottom:123.037500px;}
.yb8{bottom:128.137500px;}
.y2a{bottom:129.937500px;}
.yb7{bottom:133.537500px;}
.y5b{bottom:135.637500px;}
.y39{bottom:135.937500px;}
.y95{bottom:138.937500px;}
.y72{bottom:140.137500px;}
.y71{bottom:145.537500px;}
.yb6{bottom:151.245000px;}
.yc5{bottom:152.130000px;}
.y38{bottom:154.245000px;}
.y29{bottom:157.830000px;}
.y37{bottom:159.645000px;}
.y94{bottom:162.330000px;}
.y70{bottom:162.930000px;}
.yb5{bottom:169.545000px;}
.y5a{bottom:170.745000px;}
.y36{bottom:173.145000px;}
.yb4{bottom:174.930000px;}
.yc4{bottom:183.375000px;}
.y93{bottom:184.275000px;}
.y28{bottom:185.475000px;}
.yb3{bottom:188.475000px;}
.y92{bottom:189.675000px;}
.y35{bottom:192.675000px;}
.y59{bottom:198.375000px;}
.y91{bottom:210.075000px;}
.yb2{bottom:210.375000px;}
.yc3{bottom:212.775000px;}
.y27{bottom:213.375000px;}
.y34{bottom:214.575000px;}
.yb1{bottom:215.775000px;}
.y33{bottom:219.975000px;}
.y58{bottom:226.275000px;}
.y90{bottom:236.175000px;}
.y32{bottom:240.375000px;}
.y26{bottom:240.975000px;}
.y8f{bottom:241.575000px;}
.yc2{bottom:242.475000px;}
.y57{bottom:253.875000px;}
.y8e{bottom:259.275000px;}
.yb0{bottom:259.575000px;}
.y31{bottom:263.775000px;}
.y25{bottom:268.875000px;}
.yc1{bottom:273.675000px;}
.y8d{bottom:277.575000px;}
.yaf{bottom:281.775000px;}
.y8c{bottom:282.975000px;}
.y56{bottom:283.875000px;}
.y30{bottom:285.975000px;}
.yae{bottom:287.175000px;}
.y2f{bottom:291.375000px;}
.y24{bottom:296.475000px;}
.y8b{bottom:298.575000px;}
.yad{bottom:304.575000px;}
.yc0{bottom:305.175000px;}
.y2e{bottom:308.775000px;}
.y55{bottom:315.075000px;}
.y23{bottom:324.375000px;}
.y8a{bottom:324.675000px;}
.y89{bottom:330.075000px;}
.y6f{bottom:334.275000px;}
.ybf{bottom:336.375000px;}
.yac{bottom:345.075000px;}
.y54{bottom:346.620000px;}
.y88{bottom:350.505000px;}
.y22{bottom:352.320000px;}
.y6e{bottom:362.220000px;}
.ybe{bottom:367.905000px;}
.yab{bottom:372.720000px;}
.y53{bottom:375.720000px;}
.y87{bottom:376.620000px;}
.y21{bottom:379.920000px;}
.y86{bottom:382.020000px;}
.y2d{bottom:387.420000px;}
.y6d{bottom:389.820000px;}
.ybd{bottom:397.005000px;}
.y85{bottom:399.420000px;}
.yaa{bottom:400.620000px;}
.y52{bottom:405.705000px;}
.y20{bottom:407.820000px;}
.y2c{bottom:415.320000px;}
.y6c{bottom:417.720000px;}
.ybc{bottom:427.005000px;}
.ya9{bottom:428.505000px;}
.y51{bottom:434.820000px;}
.y1f{bottom:435.420000px;}
.y84{bottom:442.005000px;}
.y6b{bottom:445.620000px;}
.ya8{bottom:456.120000px;}
.ybb{bottom:458.220000px;}
.y50{bottom:462.705000px;}
.y1e{bottom:463.320000px;}
.y83{bottom:469.620000px;}
.y6a{bottom:473.205000px;}
.ya7{bottom:484.005000px;}
.yba{bottom:487.620000px;}
.y4f{bottom:490.320000px;}
.y1d{bottom:490.920000px;}
.y82{bottom:497.505000px;}
.y69{bottom:503.220000px;}
.ya6{bottom:511.620000px;}
.yb9{bottom:517.350000px;}
.y4e{bottom:518.250000px;}
.y1c{bottom:518.850000px;}
.y81{bottom:525.150000px;}
.y68{bottom:532.350000px;}
.ya5{bottom:539.550000px;}
.y4d{bottom:545.850000px;}
.y1b{bottom:546.450000px;}
.y80{bottom:553.050000px;}
.y67{bottom:560.250000px;}
.ya4{bottom:567.150000px;}
.y1a{bottom:574.350000px;}
.y4c{bottom:575.850000px;}
.y7f{bottom:582.750000px;}
.y66{bottom:587.850000px;}
.ya3{bottom:595.050000px;}
.y19{bottom:602.250000px;}
.y4b{bottom:607.050000px;}
.y7e{bottom:614.250000px;}
.y65{bottom:615.750000px;}
.ya2{bottom:622.950000px;}
.y18{bottom:629.850000px;}
.y4a{bottom:638.550000px;}
.y64{bottom:643.350000px;}
.y7d{bottom:645.450000px;}
.ya1{bottom:650.550000px;}
.y17{bottom:657.750000px;}
.y49{bottom:667.650000px;}
.y63{bottom:673.350000px;}
.y7c{bottom:674.850000px;}
.ya0{bottom:678.450000px;}
.y16{bottom:685.395000px;}
.y47{bottom:697.695000px;}
.y7b{bottom:702.495000px;}
.y62{bottom:704.595000px;}
.y48{bottom:705.195000px;}
.y9f{bottom:708.195000px;}
.y15{bottom:713.280000px;}
.y46{bottom:726.780000px;}
.y79{bottom:730.380000px;}
.y61{bottom:733.995000px;}
.y9e{bottom:737.595000px;}
.y7a{bottom:737.895000px;}
.y14{bottom:740.895000px;}
.y45{bottom:756.780000px;}
.y78{bottom:760.095000px;}
.y60{bottom:761.595000px;}
.y9d{bottom:765.195000px;}
.y13{bottom:768.795000px;}
.y44{bottom:787.995000px;}
.y5f{bottom:789.480000px;}
.y77{bottom:791.580000px;}
.y9c{bottom:793.080000px;}
.y12{bottom:796.695000px;}
.y43{bottom:817.080000px;}
.y5e{bottom:819.195000px;}
.y9a{bottom:820.695000px;}
.y76{bottom:822.795000px;}
.y11{bottom:824.295000px;}
.y9b{bottom:828.195000px;}
.y42{bottom:847.080000px;}
.y99{bottom:848.580000px;}
.y5d{bottom:850.725000px;}
.y10{bottom:852.225000px;}
.y75{bottom:859.725000px;}
.y41{bottom:876.225000px;}
.yf{bottom:879.825000px;}
.ycd{bottom:888.525000px;}
.y40{bottom:904.125000px;}
.y98{bottom:906.225000px;}
.ye{bottom:907.725000px;}
.ycc{bottom:919.725000px;}
.y3f{bottom:932.025000px;}
.yd{bottom:935.325000px;}
.ycb{bottom:950.925000px;}
.y3e{bottom:959.625000px;}
.yc{bottom:963.225000px;}
.yca{bottom:982.425000px;}
.y3d{bottom:989.625000px;}
.yb{bottom:991.125000px;}
.y97{bottom:998.625000px;}
.yc9{bottom:1013.625000px;}
.ya{bottom:1018.755000px;}
.y96{bottom:1026.255000px;}
.yc8{bottom:1043.070000px;}
.y9{bottom:1046.670000px;}
.yc7{bottom:1072.755000px;}
.y8{bottom:1074.255000px;}
.y5c{bottom:1081.755000px;}
.y4{bottom:1098.255000px;}
.y3{bottom:1126.170000px;}
.y2{bottom:1171.170000px;}
.y1{bottom:1198.500000px;}
.h4{height:36.300000px;}
.ha{height:39.387305px;}
.h1{height:48.049805px;}
.h9{height:52.998047px;}
.h8{height:56.929688px;}
.hc{height:58.886719px;}
.hb{height:59.677734px;}
.h3{height:64.775391px;}
.h7{height:75.304688px;}
.h5{height:82.441406px;}
.hf{height:82.938047px;}
.hd{height:82.998047px;}
.he{height:83.058047px;}
.h6{height:84.656250px;}
.h2{height:108.843750px;}
.h0{height:1263.000000px;}
.w3{width:55.237500px;}
.w1{width:893.250000px;}
.w4{width:893.399973px;}
.w2{width:893.399987px;}
.w0{width:893.400000px;}
.x0{left:0.000000px;}
.x7{left:12.000000px;}
.x6{left:27.000000px;}
.x5{left:84.937487px;}
.x19{left:90.037487px;}
.x2b{left:95.137487px;}
.x9{left:122.737487px;}
.x2e{left:144.037473px;}
.x2f{left:157.829987px;}
.xa{left:197.774987px;}
.x3{left:213.674987px;}
.x1a{left:219.074973px;}
.x1b{left:225.974987px;}
.x12{left:228.974973px;}
.xc{left:230.474987px;}
.x13{left:235.874987px;}
.x2{left:267.674987px;}
.x30{left:281.474973px;}
.xd{left:287.174987px;}
.xe{left:289.274987px;}
.x31{left:295.319987px;}
.x18{left:301.019987px;}
.x20{left:345.404973px;}
.x21{left:352.319987px;}
.xb{left:370.319987px;}
.x26{left:387.404973px;}
.xf{left:393.404987px;}
.x27{left:401.219987px;}
.x14{left:428.249973px;}
.x15{left:435.149987px;}
.x4{left:445.349987px;}
.x8{left:446.549987px;}
.x22{left:451.649973px;}
.x23{left:458.549987px;}
.x1c{left:469.349973px;}
.x1d{left:476.249987px;}
.x28{left:489.449987px;}
.x32{left:503.249973px;}
.x33{left:517.049987px;}
.x1{left:581.594987px;}
.x29{left:622.394973px;}
.x24{left:628.994973px;}
.x1e{left:633.194973px;}
.x2a{left:636.194987px;}
.x1f{left:640.079987px;}
.x25{left:642.779987px;}
.x2c{left:739.424973px;}
.x2d{left:753.224987px;}
.x16{left:794.654973px;}
.x10{left:796.454973px;}
.x17{left:801.569987px;}
.x11{left:803.369987px;}
@media print{
.v2{vertical-align:-26.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.ls22{letter-spacing:-1.397333pt;}
.ls34{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.490667pt;}
.ls29{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.330667pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.245333pt;}
.ls17{letter-spacing:-0.085333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.133333pt;}
.ls10{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.286933pt;}
.ls14{letter-spacing:0.480000pt;}
.ls2b{letter-spacing:0.506667pt;}
.ls5{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.586667pt;}
.ls2e{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.693333pt;}
.ls6{letter-spacing:0.746667pt;}
.ls18{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.653333pt;}
.lsf{letter-spacing:4.800000pt;}
.ls13{letter-spacing:5.813333pt;}
.lsc{letter-spacing:5.866667pt;}
.ls12{letter-spacing:6.933333pt;}
.ls35{letter-spacing:10.133333pt;}
.ls36{letter-spacing:11.200000pt;}
.ls1f{letter-spacing:11.253333pt;}
.ls3{letter-spacing:16.533333pt;}
.ls28{letter-spacing:18.666667pt;}
.ls1d{letter-spacing:19.680000pt;}
.ls1e{letter-spacing:19.733333pt;}
.ls1c{letter-spacing:19.786667pt;}
.ls31{letter-spacing:20.800000pt;}
.ls32{letter-spacing:20.853333pt;}
.ls23{letter-spacing:21.866667pt;}
.ls24{letter-spacing:22.026667pt;}
.ls21{letter-spacing:23.093333pt;}
.ls27{letter-spacing:27.306667pt;}
.ls38{letter-spacing:30.346667pt;}
.ls37{letter-spacing:30.560000pt;}
.ls30{letter-spacing:32.533333pt;}
.ls2f{letter-spacing:32.693333pt;}
.ls4{letter-spacing:34.720000pt;}
.ls25{letter-spacing:36.960000pt;}
.ls19{letter-spacing:37.866667pt;}
.ls2c{letter-spacing:40.000000pt;}
.ls2a{letter-spacing:42.133333pt;}
.ls1b{letter-spacing:48.533333pt;}
.ls33{letter-spacing:49.600000pt;}
.ls1a{letter-spacing:91.200000pt;}
.ls1{letter-spacing:112.693333pt;}
.ls2d{letter-spacing:116.800000pt;}
.ws4{word-spacing:-74.666667pt;}
.wsc{word-spacing:-73.600000pt;}
.ws2{word-spacing:-53.333333pt;}
.ws8{word-spacing:-19.733333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws6{word-spacing:-18.581333pt;}
.ws5{word-spacing:-18.421333pt;}
.ws7{word-spacing:-18.176000pt;}
.wsa{word-spacing:-12.533333pt;}
.ws3{word-spacing:-12.053333pt;}
.ws9{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.466667pt;}
.ws1{word-spacing:0.000000pt;}
._46{margin-left:-4.368000pt;}
._19{margin-left:-3.472000pt;}
._0{margin-left:-2.245333pt;}
._2{margin-left:-1.013333pt;}
._1{width:1.098667pt;}
._3{width:2.757333pt;}
._7{width:4.096000pt;}
._8{width:5.621333pt;}
._15{width:7.178667pt;}
._6{width:8.128000pt;}
._36{width:9.141333pt;}
._2f{width:10.208000pt;}
._12{width:11.306667pt;}
._11{width:12.512000pt;}
._1a{width:14.282667pt;}
._42{width:15.434667pt;}
._1c{width:16.394667pt;}
._3a{width:17.733333pt;}
._14{width:20.234667pt;}
._13{width:21.173333pt;}
._30{width:22.176000pt;}
._20{width:23.114667pt;}
._1f{width:24.640000pt;}
._37{width:25.957333pt;}
._17{width:27.477333pt;}
._16{width:28.805333pt;}
._b{width:29.866667pt;}
._c{width:31.136000pt;}
._e{width:32.320000pt;}
._21{width:33.498667pt;}
._5{width:34.837333pt;}
._4{width:35.914667pt;}
._26{width:37.445333pt;}
._29{width:38.346667pt;}
._25{width:39.274667pt;}
._10{width:40.682667pt;}
._3f{width:41.754667pt;}
._38{width:43.008000pt;}
._3b{width:46.058667pt;}
._2e{width:47.754667pt;}
._28{width:48.832000pt;}
._d{width:50.389333pt;}
._3e{width:51.904000pt;}
._1d{width:53.034667pt;}
._1e{width:54.208000pt;}
._2d{width:57.642667pt;}
._2c{width:58.986667pt;}
._24{width:60.629333pt;}
._1b{width:62.074667pt;}
._a{width:63.317333pt;}
._9{width:64.437333pt;}
._3c{width:65.621333pt;}
._3d{width:66.602667pt;}
._22{width:69.216000pt;}
._23{width:70.602667pt;}
._43{width:71.925333pt;}
._40{width:74.064000pt;}
._39{width:75.248000pt;}
._18{width:76.682667pt;}
._34{width:78.901333pt;}
._35{width:80.122667pt;}
._33{width:81.066667pt;}
._2a{width:89.994667pt;}
._2b{width:91.120000pt;}
._41{width:94.752000pt;}
._32{width:98.704000pt;}
._31{width:99.829333pt;}
._27{width:103.189333pt;}
._f{width:112.469333pt;}
._44{width:116.773333pt;}
._45{width:118.010667pt;}
.fs5{font-size:35.200000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:11.466667pt;}
.y6{bottom:34.966667pt;}
.y5{bottom:50.966667pt;}
.y3c{bottom:88.300000pt;}
.y2b{bottom:90.700000pt;}
.y74{bottom:93.100000pt;}
.y3b{bottom:104.566667pt;}
.y73{bottom:105.100000pt;}
.yc6{bottom:107.233333pt;}
.y3a{bottom:109.366667pt;}
.yb8{bottom:113.900000pt;}
.y2a{bottom:115.500000pt;}
.yb7{bottom:118.700000pt;}
.y5b{bottom:120.566667pt;}
.y39{bottom:120.833333pt;}
.y95{bottom:123.500000pt;}
.y72{bottom:124.566667pt;}
.y71{bottom:129.366667pt;}
.yb6{bottom:134.440000pt;}
.yc5{bottom:135.226667pt;}
.y38{bottom:137.106667pt;}
.y29{bottom:140.293333pt;}
.y37{bottom:141.906667pt;}
.y94{bottom:144.293333pt;}
.y70{bottom:144.826667pt;}
.yb5{bottom:150.706667pt;}
.y5a{bottom:151.773333pt;}
.y36{bottom:153.906667pt;}
.yb4{bottom:155.493333pt;}
.yc4{bottom:163.000000pt;}
.y93{bottom:163.800000pt;}
.y28{bottom:164.866667pt;}
.yb3{bottom:167.533333pt;}
.y92{bottom:168.600000pt;}
.y35{bottom:171.266667pt;}
.y59{bottom:176.333333pt;}
.y91{bottom:186.733333pt;}
.yb2{bottom:187.000000pt;}
.yc3{bottom:189.133333pt;}
.y27{bottom:189.666667pt;}
.y34{bottom:190.733333pt;}
.yb1{bottom:191.800000pt;}
.y33{bottom:195.533333pt;}
.y58{bottom:201.133333pt;}
.y90{bottom:209.933333pt;}
.y32{bottom:213.666667pt;}
.y26{bottom:214.200000pt;}
.y8f{bottom:214.733333pt;}
.yc2{bottom:215.533333pt;}
.y57{bottom:225.666667pt;}
.y8e{bottom:230.466667pt;}
.yb0{bottom:230.733333pt;}
.y31{bottom:234.466667pt;}
.y25{bottom:239.000000pt;}
.yc1{bottom:243.266667pt;}
.y8d{bottom:246.733333pt;}
.yaf{bottom:250.466667pt;}
.y8c{bottom:251.533333pt;}
.y56{bottom:252.333333pt;}
.y30{bottom:254.200000pt;}
.yae{bottom:255.266667pt;}
.y2f{bottom:259.000000pt;}
.y24{bottom:263.533333pt;}
.y8b{bottom:265.400000pt;}
.yad{bottom:270.733333pt;}
.yc0{bottom:271.266667pt;}
.y2e{bottom:274.466667pt;}
.y55{bottom:280.066667pt;}
.y23{bottom:288.333333pt;}
.y8a{bottom:288.600000pt;}
.y89{bottom:293.400000pt;}
.y6f{bottom:297.133333pt;}
.ybf{bottom:299.000000pt;}
.yac{bottom:306.733333pt;}
.y54{bottom:308.106667pt;}
.y88{bottom:311.560000pt;}
.y22{bottom:313.173333pt;}
.y6e{bottom:321.973333pt;}
.ybe{bottom:327.026667pt;}
.yab{bottom:331.306667pt;}
.y53{bottom:333.973333pt;}
.y87{bottom:334.773333pt;}
.y21{bottom:337.706667pt;}
.y86{bottom:339.573333pt;}
.y2d{bottom:344.373333pt;}
.y6d{bottom:346.506667pt;}
.ybd{bottom:352.893333pt;}
.y85{bottom:355.040000pt;}
.yaa{bottom:356.106667pt;}
.y52{bottom:360.626667pt;}
.y20{bottom:362.506667pt;}
.y2c{bottom:369.173333pt;}
.y6c{bottom:371.306667pt;}
.ybc{bottom:379.560000pt;}
.ya9{bottom:380.893333pt;}
.y51{bottom:386.506667pt;}
.y1f{bottom:387.040000pt;}
.y84{bottom:392.893333pt;}
.y6b{bottom:396.106667pt;}
.ya8{bottom:405.440000pt;}
.ybb{bottom:407.306667pt;}
.y50{bottom:411.293333pt;}
.y1e{bottom:411.840000pt;}
.y83{bottom:417.440000pt;}
.y6a{bottom:420.626667pt;}
.ya7{bottom:430.226667pt;}
.yba{bottom:433.440000pt;}
.y4f{bottom:435.840000pt;}
.y1d{bottom:436.373333pt;}
.y82{bottom:442.226667pt;}
.y69{bottom:447.306667pt;}
.ya6{bottom:454.773333pt;}
.yb9{bottom:459.866667pt;}
.y4e{bottom:460.666667pt;}
.y1c{bottom:461.200000pt;}
.y81{bottom:466.800000pt;}
.y68{bottom:473.200000pt;}
.ya5{bottom:479.600000pt;}
.y4d{bottom:485.200000pt;}
.y1b{bottom:485.733333pt;}
.y80{bottom:491.600000pt;}
.y67{bottom:498.000000pt;}
.ya4{bottom:504.133333pt;}
.y1a{bottom:510.533333pt;}
.y4c{bottom:511.866667pt;}
.y7f{bottom:518.000000pt;}
.y66{bottom:522.533333pt;}
.ya3{bottom:528.933333pt;}
.y19{bottom:535.333333pt;}
.y4b{bottom:539.600000pt;}
.y7e{bottom:546.000000pt;}
.y65{bottom:547.333333pt;}
.ya2{bottom:553.733333pt;}
.y18{bottom:559.866667pt;}
.y4a{bottom:567.600000pt;}
.y64{bottom:571.866667pt;}
.y7d{bottom:573.733333pt;}
.ya1{bottom:578.266667pt;}
.y17{bottom:584.666667pt;}
.y49{bottom:593.466667pt;}
.y63{bottom:598.533333pt;}
.y7c{bottom:599.866667pt;}
.ya0{bottom:603.066667pt;}
.y16{bottom:609.240000pt;}
.y47{bottom:620.173333pt;}
.y7b{bottom:624.440000pt;}
.y62{bottom:626.306667pt;}
.y48{bottom:626.840000pt;}
.y9f{bottom:629.506667pt;}
.y15{bottom:634.026667pt;}
.y46{bottom:646.026667pt;}
.y79{bottom:649.226667pt;}
.y61{bottom:652.440000pt;}
.y9e{bottom:655.640000pt;}
.y7a{bottom:655.906667pt;}
.y14{bottom:658.573333pt;}
.y45{bottom:672.693333pt;}
.y78{bottom:675.640000pt;}
.y60{bottom:676.973333pt;}
.y9d{bottom:680.173333pt;}
.y13{bottom:683.373333pt;}
.y44{bottom:700.440000pt;}
.y5f{bottom:701.760000pt;}
.y77{bottom:703.626667pt;}
.y9c{bottom:704.960000pt;}
.y12{bottom:708.173333pt;}
.y43{bottom:726.293333pt;}
.y5e{bottom:728.173333pt;}
.y9a{bottom:729.506667pt;}
.y76{bottom:731.373333pt;}
.y11{bottom:732.706667pt;}
.y9b{bottom:736.173333pt;}
.y42{bottom:752.960000pt;}
.y99{bottom:754.293333pt;}
.y5d{bottom:756.200000pt;}
.y10{bottom:757.533333pt;}
.y75{bottom:764.200000pt;}
.y41{bottom:778.866667pt;}
.yf{bottom:782.066667pt;}
.ycd{bottom:789.800000pt;}
.y40{bottom:803.666667pt;}
.y98{bottom:805.533333pt;}
.ye{bottom:806.866667pt;}
.ycc{bottom:817.533333pt;}
.y3f{bottom:828.466667pt;}
.yd{bottom:831.400000pt;}
.ycb{bottom:845.266667pt;}
.y3e{bottom:853.000000pt;}
.yc{bottom:856.200000pt;}
.yca{bottom:873.266667pt;}
.y3d{bottom:879.666667pt;}
.yb{bottom:881.000000pt;}
.y97{bottom:887.666667pt;}
.yc9{bottom:901.000000pt;}
.ya{bottom:905.560000pt;}
.y96{bottom:912.226667pt;}
.yc8{bottom:927.173333pt;}
.y9{bottom:930.373333pt;}
.yc7{bottom:953.560000pt;}
.y8{bottom:954.893333pt;}
.y5c{bottom:961.560000pt;}
.y4{bottom:976.226667pt;}
.y3{bottom:1001.040000pt;}
.y2{bottom:1041.040000pt;}
.y1{bottom:1065.333333pt;}
.h4{height:32.266667pt;}
.ha{height:35.010937pt;}
.h1{height:42.710938pt;}
.h9{height:47.109375pt;}
.h8{height:50.604167pt;}
.hc{height:52.343750pt;}
.hb{height:53.046875pt;}
.h3{height:57.578125pt;}
.h7{height:66.937500pt;}
.h5{height:73.281250pt;}
.hf{height:73.722708pt;}
.hd{height:73.776042pt;}
.he{height:73.829375pt;}
.h6{height:75.250000pt;}
.h2{height:96.750000pt;}
.h0{height:1122.666667pt;}
.w3{width:49.100000pt;}
.w1{width:794.000000pt;}
.w4{width:794.133310pt;}
.w2{width:794.133322pt;}
.w0{width:794.133333pt;}
.x0{left:0.000000pt;}
.x7{left:10.666667pt;}
.x6{left:24.000000pt;}
.x5{left:75.499988pt;}
.x19{left:80.033321pt;}
.x2b{left:84.566655pt;}
.x9{left:109.099988pt;}
.x2e{left:128.033310pt;}
.x2f{left:140.293321pt;}
.xa{left:175.799988pt;}
.x3{left:189.933322pt;}
.x1a{left:194.733310pt;}
.x1b{left:200.866655pt;}
.x12{left:203.533310pt;}
.xc{left:204.866655pt;}
.x13{left:209.666655pt;}
.x2{left:237.933321pt;}
.x30{left:250.199976pt;}
.xd{left:255.266655pt;}
.xe{left:257.133322pt;}
.x31{left:262.506655pt;}
.x18{left:267.573321pt;}
.x20{left:307.026643pt;}
.x21{left:313.173321pt;}
.xb{left:329.173321pt;}
.x26{left:344.359976pt;}
.xf{left:349.693321pt;}
.x27{left:356.639988pt;}
.x14{left:380.666643pt;}
.x15{left:386.799988pt;}
.x4{left:395.866655pt;}
.x8{left:396.933321pt;}
.x22{left:401.466643pt;}
.x23{left:407.599988pt;}
.x1c{left:417.199976pt;}
.x1d{left:423.333321pt;}
.x28{left:435.066655pt;}
.x32{left:447.333310pt;}
.x33{left:459.599988pt;}
.x1{left:516.973321pt;}
.x29{left:553.239976pt;}
.x24{left:559.106643pt;}
.x1e{left:562.839976pt;}
.x2a{left:565.506655pt;}
.x1f{left:568.959988pt;}
.x25{left:571.359988pt;}
.x2c{left:657.266643pt;}
.x2d{left:669.533322pt;}
.x16{left:706.359976pt;}
.x10{left:707.959976pt;}
.x17{left:712.506655pt;}
.x11{left:714.106655pt;}
}




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