
    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_d767f49b600be7a04b0b5bce.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_571858d9b73d873546dc0e07.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b7be071d8eab95b673191c9a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3e568b78ef4ca2f7ba4a74de.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4e0e742593765447dc9a2927.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_f5280b21729e33c27cc88762.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_facf0571d8fe291e707988ad.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_efac0b82b04f5948f21283f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_61ce466df031fd14d27f454c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.834473;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_c6b6c7ee88a7b8caa1d221ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.114746;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_2b650f788a02131c7b2accc8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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_c2a37699a1cd2c51567a0c4c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933594;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_f951455e097be446b269fd00.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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_b0136898ccfc6c686fa6fca1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.767578;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_3b90d7e4c6dcd290ac9bb66c.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls2e{letter-spacing:-0.428400px;}
.ls3d{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.161400px;}
.ls22{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls23{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.113040px;}
.ls21{letter-spacing:0.174240px;}
.ls36{letter-spacing:0.208080px;}
.ls3f{letter-spacing:0.252720px;}
.ls27{letter-spacing:0.257040px;}
.ls24{letter-spacing:0.259800px;}
.ls3b{letter-spacing:0.275760px;}
.ls34{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.378600px;}
.ls4b{letter-spacing:0.540000px;}
.ls2f{letter-spacing:1.260000px;}
.lsb{letter-spacing:3.420000px;}
.ls7{letter-spacing:4.860000px;}
.ls0{letter-spacing:6.300000px;}
.ls3c{letter-spacing:9.180000px;}
.ls1d{letter-spacing:12.036000px;}
.ls1e{letter-spacing:12.060000px;}
.ls1a{letter-spacing:13.476000px;}
.ls1b{letter-spacing:13.500000px;}
.ls1f{letter-spacing:14.940000px;}
.ls9{letter-spacing:15.660000px;}
.ls16{letter-spacing:16.380000px;}
.ls15{letter-spacing:17.100000px;}
.ls44{letter-spacing:17.820000px;}
.ls45{letter-spacing:18.000000px;}
.ls4c{letter-spacing:18.540000px;}
.ls13{letter-spacing:19.260000px;}
.ls2b{letter-spacing:22.140000px;}
.ls35{letter-spacing:22.860000px;}
.ls30{letter-spacing:25.020000px;}
.ls4a{letter-spacing:27.180000px;}
.ls3a{letter-spacing:27.900000px;}
.ls32{letter-spacing:29.340000px;}
.ls3e{letter-spacing:30.060000px;}
.lsc{letter-spacing:34.380000px;}
.ls18{letter-spacing:37.260000px;}
.ls2d{letter-spacing:37.980000px;}
.lsf{letter-spacing:38.700000px;}
.ls43{letter-spacing:40.140000px;}
.lsd{letter-spacing:40.860000px;}
.lse{letter-spacing:41.580000px;}
.ls12{letter-spacing:44.460000px;}
.ls2a{letter-spacing:48.060000px;}
.ls26{letter-spacing:49.500000px;}
.ls25{letter-spacing:49.680000px;}
.ls19{letter-spacing:53.100000px;}
.ls49{letter-spacing:53.820000px;}
.ls17{letter-spacing:56.700000px;}
.ls1c{letter-spacing:57.420000px;}
.ls11{letter-spacing:58.860000px;}
.ls10{letter-spacing:59.040000px;}
.ls47{letter-spacing:59.580000px;}
.ls3{letter-spacing:63.900000px;}
.ls4{letter-spacing:64.620000px;}
.ls5{letter-spacing:65.340000px;}
.ls31{letter-spacing:84.036000px;}
.ls39{letter-spacing:84.756000px;}
.ls48{letter-spacing:88.380000px;}
.ls4d{letter-spacing:91.260000px;}
.ls2c{letter-spacing:100.080000px;}
.ls28{letter-spacing:112.860000px;}
.ls2{letter-spacing:113.580000px;}
.ls38{letter-spacing:166.860000px;}
.ls37{letter-spacing:167.040000px;}
.ls46{letter-spacing:250.901280px;}
.ls42{letter-spacing:359.100000px;}
.ls41{letter-spacing:359.220000px;}
.ls40{letter-spacing:359.280000px;}
.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;}
}
.ws1{word-spacing:-27.000000px;}
.ws4{word-spacing:-21.438600px;}
.ws9{word-spacing:-21.420000px;}
.wsf{word-spacing:-21.312720px;}
.ws2{word-spacing:-21.060000px;}
.wsa{word-spacing:-20.898600px;}
.wse{word-spacing:-20.681400px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsb{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._38{margin-left:-5.245440px;}
._1c{margin-left:-4.212000px;}
._1d{margin-left:-2.527200px;}
._1{margin-left:-1.460880px;}
._0{width:1.212000px;}
._4{width:2.459520px;}
._9{width:4.212000px;}
._c{width:5.477760px;}
._14{width:6.554400px;}
._3a{width:7.834320px;}
._31{width:9.042480px;}
._1e{width:10.390320px;}
._12{width:11.962080px;}
._13{width:13.591440px;}
._30{width:15.348720px;}
._19{width:16.511040px;}
._1a{width:17.605680px;}
._2e{width:19.207200px;}
._18{width:22.551840px;}
._17{width:23.587200px;}
._2d{width:24.875760px;}
._d{width:26.788320px;}
._e{width:27.996480px;}
._15{width:29.736720px;}
._29{width:31.590000px;}
._2a{width:33.215520px;}
._26{width:35.212320px;}
._2f{width:36.812880px;}
._32{width:37.893120px;}
._36{width:40.119120px;}
._1b{width:41.390640px;}
._43{width:42.547920px;}
._11{width:43.665120px;}
._25{width:45.686880px;}
._20{width:47.820720px;}
._21{width:49.135680px;}
._28{width:50.712480px;}
._27{width:51.752160px;}
._35{width:53.071200px;}
._34{width:54.078240px;}
._7{width:55.121760px;}
._8{width:56.188080px;}
._39{width:57.265680px;}
._37{width:58.435920px;}
._2b{width:59.810400px;}
._2c{width:61.271280px;}
._24{width:63.882720px;}
._b{width:65.622960px;}
._a{width:66.746880px;}
._3{width:69.471360px;}
._2{width:71.267040px;}
._45{width:75.394800px;}
._47{width:79.231680px;}
._40{width:84.036000px;}
._33{width:85.279680px;}
._16{width:87.048720px;}
._4a{width:88.565040px;}
._49{width:90.981600px;}
._23{width:92.271600px;}
._22{width:93.282480px;}
._10{width:95.472720px;}
._3e{width:99.571680px;}
._3f{width:109.877760px;}
._3c{width:111.339840px;}
._3d{width:112.598880px;}
._1f{width:113.837040px;}
._f{width:118.778400px;}
._48{width:122.409120px;}
._44{width:147.634560px;}
._6{width:160.027200px;}
._5{width:161.292960px;}
._42{width:166.558080px;}
._46{width:358.762800px;}
._4b{width:407.573040px;}
._41{width:508.476000px;}
._3b{width:2408.084640px;}
.fc4{color:rgb(31,77,120);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc5{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y72{bottom:-70.020000px;}
.y7d{bottom:-36.540000px;}
.y71{bottom:-34.380000px;}
.y87{bottom:-27.720000px;}
.y70{bottom:-3.420000px;}
.y7c{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.980000px;}
.y2{bottom:4.320000px;}
.y3{bottom:5.940000px;}
.y8{bottom:9.180000px;}
.y7f{bottom:10.800000px;}
.y7b{bottom:13.890000px;}
.y74{bottom:15.660000px;}
.y6f{bottom:16.020000px;}
.ya{bottom:21.420000px;}
.y86{bottom:21.600000px;}
.y8d{bottom:26.460000px;}
.y7a{bottom:31.170000px;}
.y85{bottom:38.880000px;}
.y8c{bottom:43.740000px;}
.y9{bottom:45.540000px;}
.y79{bottom:48.450000px;}
.y84{bottom:56.160000px;}
.y8b{bottom:61.020000px;}
.y7{bottom:73.836000px;}
.y78{bottom:76.530000px;}
.y83{bottom:84.240000px;}
.y8a{bottom:89.100000px;}
.y77{bottom:95.970000px;}
.y82{bottom:104.940000px;}
.y89{bottom:108.720000px;}
.y76{bottom:115.590000px;}
.y6d{bottom:130.176000px;}
.y56{bottom:131.076000px;}
.y6c{bottom:135.396000px;}
.y55{bottom:136.296000px;}
.y6b{bottom:148.716000px;}
.y54{bottom:149.796000px;}
.y40{bottom:151.050000px;}
.y26{bottom:151.230000px;}
.y3f{bottom:187.230000px;}
.y25{bottom:187.410000px;}
.y69{bottom:188.310000px;}
.y53{bottom:202.170000px;}
.y3e{bottom:223.410000px;}
.y24{bottom:223.590000px;}
.y68{bottom:224.670000px;}
.y52{bottom:238.350000px;}
.y3d{bottom:259.590000px;}
.y23{bottom:259.770000px;}
.y67{bottom:260.850000px;}
.y51{bottom:274.530000px;}
.y3c{bottom:295.770000px;}
.y22{bottom:296.130000px;}
.y66{bottom:297.030000px;}
.y50{bottom:310.710000px;}
.y3b{bottom:332.130000px;}
.y21{bottom:332.310000px;}
.y65{bottom:333.210000px;}
.y4f{bottom:346.935000px;}
.y3a{bottom:368.355000px;}
.y20{bottom:368.535000px;}
.y64{bottom:369.435000px;}
.y4e{bottom:383.295000px;}
.y39{bottom:404.535000px;}
.y1f{bottom:404.715000px;}
.y63{bottom:405.795000px;}
.y4d{bottom:414.975000px;}
.y38{bottom:440.715000px;}
.y1e{bottom:441.075000px;}
.y62{bottom:441.975000px;}
.y4c{bottom:455.655000px;}
.y7e{bottom:464.295000px;}
.y57{bottom:472.575000px;}
.y37{bottom:477.075000px;}
.y1d{bottom:477.255000px;}
.y61{bottom:478.155000px;}
.y81{bottom:491.655000px;}
.y4b{bottom:491.835000px;}
.y88{bottom:492.555000px;}
.y36{bottom:513.255000px;}
.y1c{bottom:513.435000px;}
.y60{bottom:514.335000px;}
.y80{bottom:520.275000px;}
.y4a{bottom:528.195000px;}
.y35{bottom:549.435000px;}
.y1b{bottom:549.615000px;}
.y5f{bottom:550.695000px;}
.y49{bottom:564.375000px;}
.y34{bottom:585.615000px;}
.y1a{bottom:585.975000px;}
.y5e{bottom:586.875000px;}
.y75{bottom:599.115000px;}
.y48{bottom:600.555000px;}
.y33{bottom:622.005000px;}
.y19{bottom:622.185000px;}
.y5d{bottom:623.085000px;}
.y47{bottom:636.765000px;}
.y32{bottom:658.185000px;}
.y18{bottom:658.365000px;}
.y5c{bottom:659.265000px;}
.y46{bottom:673.125000px;}
.y31{bottom:694.365000px;}
.y17{bottom:694.545000px;}
.y5b{bottom:695.625000px;}
.y6e{bottom:704.805000px;}
.y45{bottom:709.305000px;}
.y30{bottom:730.545000px;}
.y16{bottom:730.905000px;}
.y5a{bottom:731.805000px;}
.y73{bottom:735.585000px;}
.y44{bottom:745.485000px;}
.y2f{bottom:766.905000px;}
.y15{bottom:767.085000px;}
.y59{bottom:767.985000px;}
.y43{bottom:777.165000px;}
.y41{bottom:798.585000px;}
.y58{bottom:799.665000px;}
.y2e{bottom:803.085000px;}
.y14{bottom:803.265000px;}
.y6a{bottom:810.645000px;}
.y2d{bottom:839.265000px;}
.y13{bottom:839.445000px;}
.y2c{bottom:875.490000px;}
.y12{bottom:875.670000px;}
.y2b{bottom:911.670000px;}
.y11{bottom:912.030000px;}
.y2a{bottom:948.030000px;}
.y10{bottom:948.210000px;}
.y29{bottom:984.210000px;}
.yf{bottom:984.390000px;}
.y28{bottom:1020.390000px;}
.ye{bottom:1020.570000px;}
.y27{bottom:1056.570000px;}
.yd{bottom:1056.750000px;}
.yc{bottom:1092.930000px;}
.yb{bottom:1129.110000px;}
.y42{bottom:1136.670000px;}
.y6{bottom:1153.260000px;}
.y4{bottom:1172.880000px;}
.y1{bottom:1198.260000px;}
.h5{height:14.580000px;}
.h2{height:21.420000px;}
.h7{height:31.140000px;}
.h13{height:38.158594px;}
.hf{height:38.671172px;}
.h15{height:39.420000px;}
.h1b{height:41.493516px;}
.h17{height:41.940000px;}
.h16{height:45.140977px;}
.h1a{height:45.316055px;}
.h1c{height:52.971680px;}
.h4{height:52.998047px;}
.h18{height:54.386719px;}
.h12{height:54.421875px;}
.h1f{height:54.597656px;}
.hc{height:58.490859px;}
.h14{height:58.651172px;}
.he{height:59.066719px;}
.h10{height:59.439023px;}
.h11{height:65.606836px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hb{height:72.846211px;}
.hd{height:82.635820px;}
.h6{height:82.676953px;}
.ha{height:84.898125px;}
.h22{height:86.585445px;}
.h9{height:108.843750px;}
.h20{height:131.076000px;}
.h21{height:132.156000px;}
.h19{height:138.996000px;}
.h1e{height:183.990000px;}
.h1d{height:263.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:2.520000px;}
.wc{width:23.400000px;}
.w3{width:44.100000px;}
.w6{width:63.036000px;}
.w8{width:138.456000px;}
.wa{width:149.256000px;}
.we{width:158.070000px;}
.wd{width:158.970000px;}
.w9{width:290.235000px;}
.w5{width:728.430000px;}
.w2{width:840.240000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x5{left:8.640000px;}
.x9{left:11.160000px;}
.x1d{left:16.740000px;}
.x2d{left:18.540000px;}
.x27{left:19.980000px;}
.x2b{left:21.240000px;}
.x22{left:22.680000px;}
.x2c{left:25.380000px;}
.x20{left:27.360000px;}
.x30{left:31.860000px;}
.x25{left:33.120000px;}
.x24{left:34.200000px;}
.x4{left:35.640000px;}
.x23{left:39.240000px;}
.x21{left:45.540000px;}
.x29{left:50.574000px;}
.x2e{left:53.280000px;}
.x7{left:54.720000px;}
.x2{left:72.540000px;}
.x6{left:84.959987px;}
.x10{left:90.575987px;}
.xa{left:94.535987px;}
.x26{left:101.736000px;}
.x28{left:105.876000px;}
.x12{left:127.475987px;}
.xc{left:130.535987px;}
.xb{left:133.595987px;}
.xf{left:139.535987px;}
.x1f{left:169.770000px;}
.x2f{left:171.570000px;}
.x31{left:209.009987px;}
.xe{left:299.414987px;}
.x17{left:301.034987px;}
.x1c{left:356.655000px;}
.x2a{left:372.675000px;}
.x11{left:378.434987px;}
.xd{left:446.474987px;}
.x1e{left:463.755000px;}
.x1a{left:562.964973px;}
.x1b{left:569.804987px;}
.x14{left:605.444973px;}
.x15{left:612.284987px;}
.x16{left:753.089987px;}
.x8{left:783.150000px;}
.x18{left:801.149973px;}
.x13{left:807.989987px;}
.x19{left:825.989987px;}
.x3{left:844.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2e{letter-spacing:-0.380800pt;}
.ls3d{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.143467pt;}
.ls22{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls23{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.100480pt;}
.ls21{letter-spacing:0.154880pt;}
.ls36{letter-spacing:0.184960pt;}
.ls3f{letter-spacing:0.224640pt;}
.ls27{letter-spacing:0.228480pt;}
.ls24{letter-spacing:0.230933pt;}
.ls3b{letter-spacing:0.245120pt;}
.ls34{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.336533pt;}
.ls4b{letter-spacing:0.480000pt;}
.ls2f{letter-spacing:1.120000pt;}
.lsb{letter-spacing:3.040000pt;}
.ls7{letter-spacing:4.320000pt;}
.ls0{letter-spacing:5.600000pt;}
.ls3c{letter-spacing:8.160000pt;}
.ls1d{letter-spacing:10.698667pt;}
.ls1e{letter-spacing:10.720000pt;}
.ls1a{letter-spacing:11.978667pt;}
.ls1b{letter-spacing:12.000000pt;}
.ls1f{letter-spacing:13.280000pt;}
.ls9{letter-spacing:13.920000pt;}
.ls16{letter-spacing:14.560000pt;}
.ls15{letter-spacing:15.200000pt;}
.ls44{letter-spacing:15.840000pt;}
.ls45{letter-spacing:16.000000pt;}
.ls4c{letter-spacing:16.480000pt;}
.ls13{letter-spacing:17.120000pt;}
.ls2b{letter-spacing:19.680000pt;}
.ls35{letter-spacing:20.320000pt;}
.ls30{letter-spacing:22.240000pt;}
.ls4a{letter-spacing:24.160000pt;}
.ls3a{letter-spacing:24.800000pt;}
.ls32{letter-spacing:26.080000pt;}
.ls3e{letter-spacing:26.720000pt;}
.lsc{letter-spacing:30.560000pt;}
.ls18{letter-spacing:33.120000pt;}
.ls2d{letter-spacing:33.760000pt;}
.lsf{letter-spacing:34.400000pt;}
.ls43{letter-spacing:35.680000pt;}
.lsd{letter-spacing:36.320000pt;}
.lse{letter-spacing:36.960000pt;}
.ls12{letter-spacing:39.520000pt;}
.ls2a{letter-spacing:42.720000pt;}
.ls26{letter-spacing:44.000000pt;}
.ls25{letter-spacing:44.160000pt;}
.ls19{letter-spacing:47.200000pt;}
.ls49{letter-spacing:47.840000pt;}
.ls17{letter-spacing:50.400000pt;}
.ls1c{letter-spacing:51.040000pt;}
.ls11{letter-spacing:52.320000pt;}
.ls10{letter-spacing:52.480000pt;}
.ls47{letter-spacing:52.960000pt;}
.ls3{letter-spacing:56.800000pt;}
.ls4{letter-spacing:57.440000pt;}
.ls5{letter-spacing:58.080000pt;}
.ls31{letter-spacing:74.698667pt;}
.ls39{letter-spacing:75.338667pt;}
.ls48{letter-spacing:78.560000pt;}
.ls4d{letter-spacing:81.120000pt;}
.ls2c{letter-spacing:88.960000pt;}
.ls28{letter-spacing:100.320000pt;}
.ls2{letter-spacing:100.960000pt;}
.ls38{letter-spacing:148.320000pt;}
.ls37{letter-spacing:148.480000pt;}
.ls46{letter-spacing:223.023360pt;}
.ls42{letter-spacing:319.200000pt;}
.ls41{letter-spacing:319.306667pt;}
.ls40{letter-spacing:319.360000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws4{word-spacing:-19.056533pt;}
.ws9{word-spacing:-19.040000pt;}
.wsf{word-spacing:-18.944640pt;}
.ws2{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.576533pt;}
.wse{word-spacing:-18.383467pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.005120pt;}
.wsc{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._38{margin-left:-4.662613pt;}
._1c{margin-left:-3.744000pt;}
._1d{margin-left:-2.246400pt;}
._1{margin-left:-1.298560pt;}
._0{width:1.077333pt;}
._4{width:2.186240pt;}
._9{width:3.744000pt;}
._c{width:4.869120pt;}
._14{width:5.826133pt;}
._3a{width:6.963840pt;}
._31{width:8.037760pt;}
._1e{width:9.235840pt;}
._12{width:10.632960pt;}
._13{width:12.081280pt;}
._30{width:13.643307pt;}
._19{width:14.676480pt;}
._1a{width:15.649493pt;}
._2e{width:17.073067pt;}
._18{width:20.046080pt;}
._17{width:20.966400pt;}
._2d{width:22.111787pt;}
._d{width:23.811840pt;}
._e{width:24.885760pt;}
._15{width:26.432640pt;}
._29{width:28.080000pt;}
._2a{width:29.524907pt;}
._26{width:31.299840pt;}
._2f{width:32.722560pt;}
._32{width:33.682773pt;}
._36{width:35.661440pt;}
._1b{width:36.791680pt;}
._43{width:37.820373pt;}
._11{width:38.813440pt;}
._25{width:40.610560pt;}
._20{width:42.507307pt;}
._21{width:43.676160pt;}
._28{width:45.077760pt;}
._27{width:46.001920pt;}
._35{width:47.174400pt;}
._34{width:48.069547pt;}
._7{width:48.997120pt;}
._8{width:49.944960pt;}
._39{width:50.902827pt;}
._37{width:51.943040pt;}
._2b{width:53.164800pt;}
._2c{width:54.463360pt;}
._24{width:56.784640pt;}
._b{width:58.331520pt;}
._a{width:59.330560pt;}
._3{width:61.752320pt;}
._2{width:63.348480pt;}
._45{width:67.017600pt;}
._47{width:70.428160pt;}
._40{width:74.698667pt;}
._33{width:75.804160pt;}
._16{width:77.376640pt;}
._4a{width:78.724480pt;}
._49{width:80.872533pt;}
._23{width:82.019200pt;}
._22{width:82.917760pt;}
._10{width:84.864640pt;}
._3e{width:88.508160pt;}
._3f{width:97.669120pt;}
._3c{width:98.968747pt;}
._3d{width:100.087893pt;}
._1f{width:101.188480pt;}
._f{width:105.580800pt;}
._48{width:108.808107pt;}
._44{width:131.230720pt;}
._6{width:142.246400pt;}
._5{width:143.371520pt;}
._42{width:148.051627pt;}
._46{width:318.900267pt;}
._4b{width:362.287147pt;}
._41{width:451.978667pt;}
._3b{width:2140.519680pt;}
.fs4{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y72{bottom:-62.240000pt;}
.y7d{bottom:-32.480000pt;}
.y71{bottom:-30.560000pt;}
.y87{bottom:-24.640000pt;}
.y70{bottom:-3.040000pt;}
.y7c{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.760000pt;}
.y2{bottom:3.840000pt;}
.y3{bottom:5.280000pt;}
.y8{bottom:8.160000pt;}
.y7f{bottom:9.600000pt;}
.y7b{bottom:12.346667pt;}
.y74{bottom:13.920000pt;}
.y6f{bottom:14.240000pt;}
.ya{bottom:19.040000pt;}
.y86{bottom:19.200000pt;}
.y8d{bottom:23.520000pt;}
.y7a{bottom:27.706667pt;}
.y85{bottom:34.560000pt;}
.y8c{bottom:38.880000pt;}
.y9{bottom:40.480000pt;}
.y79{bottom:43.066667pt;}
.y84{bottom:49.920000pt;}
.y8b{bottom:54.240000pt;}
.y7{bottom:65.632000pt;}
.y78{bottom:68.026667pt;}
.y83{bottom:74.880000pt;}
.y8a{bottom:79.200000pt;}
.y77{bottom:85.306667pt;}
.y82{bottom:93.280000pt;}
.y89{bottom:96.640000pt;}
.y76{bottom:102.746667pt;}
.y6d{bottom:115.712000pt;}
.y56{bottom:116.512000pt;}
.y6c{bottom:120.352000pt;}
.y55{bottom:121.152000pt;}
.y6b{bottom:132.192000pt;}
.y54{bottom:133.152000pt;}
.y40{bottom:134.266667pt;}
.y26{bottom:134.426667pt;}
.y3f{bottom:166.426667pt;}
.y25{bottom:166.586667pt;}
.y69{bottom:167.386667pt;}
.y53{bottom:179.706667pt;}
.y3e{bottom:198.586667pt;}
.y24{bottom:198.746667pt;}
.y68{bottom:199.706667pt;}
.y52{bottom:211.866667pt;}
.y3d{bottom:230.746667pt;}
.y23{bottom:230.906667pt;}
.y67{bottom:231.866667pt;}
.y51{bottom:244.026667pt;}
.y3c{bottom:262.906667pt;}
.y22{bottom:263.226667pt;}
.y66{bottom:264.026667pt;}
.y50{bottom:276.186667pt;}
.y3b{bottom:295.226667pt;}
.y21{bottom:295.386667pt;}
.y65{bottom:296.186667pt;}
.y4f{bottom:308.386667pt;}
.y3a{bottom:327.426667pt;}
.y20{bottom:327.586667pt;}
.y64{bottom:328.386667pt;}
.y4e{bottom:340.706667pt;}
.y39{bottom:359.586667pt;}
.y1f{bottom:359.746667pt;}
.y63{bottom:360.706667pt;}
.y4d{bottom:368.866667pt;}
.y38{bottom:391.746667pt;}
.y1e{bottom:392.066667pt;}
.y62{bottom:392.866667pt;}
.y4c{bottom:405.026667pt;}
.y7e{bottom:412.706667pt;}
.y57{bottom:420.066667pt;}
.y37{bottom:424.066667pt;}
.y1d{bottom:424.226667pt;}
.y61{bottom:425.026667pt;}
.y81{bottom:437.026667pt;}
.y4b{bottom:437.186667pt;}
.y88{bottom:437.826667pt;}
.y36{bottom:456.226667pt;}
.y1c{bottom:456.386667pt;}
.y60{bottom:457.186667pt;}
.y80{bottom:462.466667pt;}
.y4a{bottom:469.506667pt;}
.y35{bottom:488.386667pt;}
.y1b{bottom:488.546667pt;}
.y5f{bottom:489.506667pt;}
.y49{bottom:501.666667pt;}
.y34{bottom:520.546667pt;}
.y1a{bottom:520.866667pt;}
.y5e{bottom:521.666667pt;}
.y75{bottom:532.546667pt;}
.y48{bottom:533.826667pt;}
.y33{bottom:552.893333pt;}
.y19{bottom:553.053333pt;}
.y5d{bottom:553.853333pt;}
.y47{bottom:566.013333pt;}
.y32{bottom:585.053333pt;}
.y18{bottom:585.213333pt;}
.y5c{bottom:586.013333pt;}
.y46{bottom:598.333333pt;}
.y31{bottom:617.213333pt;}
.y17{bottom:617.373333pt;}
.y5b{bottom:618.333333pt;}
.y6e{bottom:626.493333pt;}
.y45{bottom:630.493333pt;}
.y30{bottom:649.373333pt;}
.y16{bottom:649.693333pt;}
.y5a{bottom:650.493333pt;}
.y73{bottom:653.853333pt;}
.y44{bottom:662.653333pt;}
.y2f{bottom:681.693333pt;}
.y15{bottom:681.853333pt;}
.y59{bottom:682.653333pt;}
.y43{bottom:690.813333pt;}
.y41{bottom:709.853333pt;}
.y58{bottom:710.813333pt;}
.y2e{bottom:713.853333pt;}
.y14{bottom:714.013333pt;}
.y6a{bottom:720.573333pt;}
.y2d{bottom:746.013333pt;}
.y13{bottom:746.173333pt;}
.y2c{bottom:778.213333pt;}
.y12{bottom:778.373333pt;}
.y2b{bottom:810.373333pt;}
.y11{bottom:810.693333pt;}
.y2a{bottom:842.693333pt;}
.y10{bottom:842.853333pt;}
.y29{bottom:874.853333pt;}
.yf{bottom:875.013333pt;}
.y28{bottom:907.013333pt;}
.ye{bottom:907.173333pt;}
.y27{bottom:939.173333pt;}
.yd{bottom:939.333333pt;}
.yc{bottom:971.493333pt;}
.yb{bottom:1003.653333pt;}
.y42{bottom:1010.373333pt;}
.y6{bottom:1025.120000pt;}
.y4{bottom:1042.560000pt;}
.y1{bottom:1065.120000pt;}
.h5{height:12.960000pt;}
.h2{height:19.040000pt;}
.h7{height:27.680000pt;}
.h13{height:33.918750pt;}
.hf{height:34.374375pt;}
.h15{height:35.040000pt;}
.h1b{height:36.883125pt;}
.h17{height:37.280000pt;}
.h16{height:40.125312pt;}
.h1a{height:40.280938pt;}
.h1c{height:47.085938pt;}
.h4{height:47.109375pt;}
.h18{height:48.343750pt;}
.h12{height:48.375000pt;}
.h1f{height:48.531250pt;}
.hc{height:51.991875pt;}
.h14{height:52.134375pt;}
.he{height:52.503750pt;}
.h10{height:52.834688pt;}
.h11{height:58.317187pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hb{height:64.752187pt;}
.hd{height:73.454062pt;}
.h6{height:73.490625pt;}
.ha{height:75.465000pt;}
.h22{height:76.964840pt;}
.h9{height:96.750000pt;}
.h20{height:116.512000pt;}
.h21{height:117.472000pt;}
.h19{height:123.552000pt;}
.h1e{height:163.546667pt;}
.h1d{height:234.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:2.240000pt;}
.wc{width:20.800000pt;}
.w3{width:39.200000pt;}
.w6{width:56.032000pt;}
.w8{width:123.072000pt;}
.wa{width:132.672000pt;}
.we{width:140.506667pt;}
.wd{width:141.306667pt;}
.w9{width:257.986667pt;}
.w5{width:647.493333pt;}
.w2{width:746.880000pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x5{left:7.680000pt;}
.x9{left:9.920000pt;}
.x1d{left:14.880000pt;}
.x2d{left:16.480000pt;}
.x27{left:17.760000pt;}
.x2b{left:18.880000pt;}
.x22{left:20.160000pt;}
.x2c{left:22.560000pt;}
.x20{left:24.320000pt;}
.x30{left:28.320000pt;}
.x25{left:29.440000pt;}
.x24{left:30.400000pt;}
.x4{left:31.680000pt;}
.x23{left:34.880000pt;}
.x21{left:40.480000pt;}
.x29{left:44.954667pt;}
.x2e{left:47.360000pt;}
.x7{left:48.640000pt;}
.x2{left:64.480000pt;}
.x6{left:75.519988pt;}
.x10{left:80.511988pt;}
.xa{left:84.031988pt;}
.x26{left:90.432000pt;}
.x28{left:94.112000pt;}
.x12{left:113.311988pt;}
.xc{left:116.031988pt;}
.xb{left:118.751988pt;}
.xf{left:124.031988pt;}
.x1f{left:150.906667pt;}
.x2f{left:152.506667pt;}
.x31{left:185.786655pt;}
.xe{left:266.146655pt;}
.x17{left:267.586655pt;}
.x1c{left:317.026667pt;}
.x2a{left:331.266667pt;}
.x11{left:336.386655pt;}
.xd{left:396.866655pt;}
.x1e{left:412.226667pt;}
.x1a{left:500.413310pt;}
.x1b{left:506.493322pt;}
.x14{left:538.173310pt;}
.x15{left:544.253322pt;}
.x16{left:669.413322pt;}
.x8{left:696.133333pt;}
.x18{left:712.133310pt;}
.x13{left:718.213322pt;}
.x19{left:734.213322pt;}
.x3{left:750.720000pt;}
}




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