
    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_86c8f370e0042606205ca6cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.765137;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_547c3fde997bae03a3c88f6d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_915bdb101a5679400fb80280.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cc22e3386dfecd7626f6964d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_1eb897b15df9e00221a6acb5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_252e1c41d8aa384f142b6e52.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952148;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_9d7b73facbac63d2e867e527.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.795410;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_73ae4ec9d6af3f83991b834e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_448787e2eaa5a573608206a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_665fbfa419ba079b30d00839.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_21f9bd50806f33a5552f21d6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952148;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_f0b7fcff705679416d68671e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3c18cf6bc44e35200c8794f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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_f37ec657eb343353177d1bf9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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;}
.m5{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261892,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.640000px;}
.ls36{letter-spacing:-1.034208px;}
.ls37{letter-spacing:-0.898128px;}
.lsb{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.015552px;}
.ls21{letter-spacing:0.036000px;}
.ls2f{letter-spacing:0.036144px;}
.ls34{letter-spacing:0.046656px;}
.ls2c{letter-spacing:0.054432px;}
.ls32{letter-spacing:0.077760px;}
.ls2a{letter-spacing:0.085536px;}
.ls16{letter-spacing:0.093312px;}
.ls1d{letter-spacing:0.101088px;}
.ls29{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.108576px;}
.ls19{letter-spacing:0.108864px;}
.ls1f{letter-spacing:0.109008px;}
.ls18{letter-spacing:0.109152px;}
.ls17{letter-spacing:0.109440px;}
.ls1b{letter-spacing:0.116640px;}
.ls1a{letter-spacing:0.124416px;}
.ls1c{letter-spacing:0.132192px;}
.ls1e{letter-spacing:0.139968px;}
.ls2d{letter-spacing:0.147744px;}
.ls20{letter-spacing:0.155520px;}
.ls2b{letter-spacing:0.163296px;}
.ls22{letter-spacing:0.186624px;}
.ls26{letter-spacing:0.194400px;}
.ls33{letter-spacing:0.202176px;}
.ls24{letter-spacing:0.328032px;}
.ls2e{letter-spacing:0.424512px;}
.ls25{letter-spacing:0.434160px;}
.ls28{letter-spacing:0.472752px;}
.ls35{letter-spacing:0.562464px;}
.ls3{letter-spacing:0.773280px;}
.ls27{letter-spacing:0.865440px;}
.lse{letter-spacing:1.439424px;}
.ls4{letter-spacing:1.518048px;}
.lsd{letter-spacing:3.229632px;}
.ls2{letter-spacing:3.314304px;}
.ls0{letter-spacing:3.465504px;}
.ls1{letter-spacing:3.473280px;}
.lsc{letter-spacing:4.965408px;}
.ls8{letter-spacing:5.971073px;}
.ls6{letter-spacing:5.971082px;}
.ls9{letter-spacing:5.971093px;}
.ls13{letter-spacing:5.985883px;}
.ls7{letter-spacing:6.070589px;}
.ls15{letter-spacing:6.628235px;}
.lsa{letter-spacing:7.094864px;}
.ls12{letter-spacing:7.369412px;}
.ls14{letter-spacing:7.845882px;}
.ls10{letter-spacing:11.664000px;}
.lsf{letter-spacing:12.024000px;}
.ls11{letter-spacing:12.225600px;}
.ls30{letter-spacing:43.568352px;}
.ls5{letter-spacing:196.888320px;}
.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;}
}
.ws7{word-spacing:-40.087058px;}
.ws11{word-spacing:-29.513232px;}
.wsd{word-spacing:-29.474640px;}
.ws16{word-spacing:-29.464992px;}
.wsc{word-spacing:-29.368512px;}
.ws1a{word-spacing:-27.497232px;}
.ws18{word-spacing:-24.541056px;}
.wse{word-spacing:-24.533280px;}
.ws15{word-spacing:-24.525504px;}
.wsb{word-spacing:-24.494400px;}
.ws12{word-spacing:-24.478848px;}
.ws9{word-spacing:-24.471072px;}
.ws14{word-spacing:-24.463296px;}
.ws13{word-spacing:-24.455520px;}
.ws10{word-spacing:-24.447744px;}
.wsf{word-spacing:-24.439968px;}
.ws17{word-spacing:-24.432192px;}
.ws19{word-spacing:-24.385536px;}
.wsa{word-spacing:-24.354432px;}
.ws0{word-spacing:-24.077088px;}
.ws2{word-spacing:-22.577184px;}
.ws1{word-spacing:-22.425984px;}
.ws4{word-spacing:-20.629728px;}
.ws6{word-spacing:-6.141177px;}
.ws5{word-spacing:-6.056471px;}
.ws3{word-spacing:-0.060480px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-125.100000px;}
._2{margin-left:-13.848192px;}
._b{margin-left:-5.676480px;}
._a{margin-left:-4.665600px;}
._d{margin-left:-3.163257px;}
._6{margin-left:-2.073092px;}
._0{margin-left:-1.028160px;}
._7{width:1.107810px;}
._e{width:2.721600px;}
._8{width:5.021623px;}
._5{width:6.642377px;}
._1{width:8.344325px;}
._9{width:9.642240px;}
._c{width:11.119680px;}
._f{width:19.128960px;}
._10{width:20.139840px;}
._3{width:1232.100000px;}
.fc4{color:rgb(235,231,231);}
.fc3{color:transparent;}
.fc2{color:rgb(0,129,129);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:70.588238px;}
.fs6{font-size:77.760000px;}
.fs8{font-size:90.720000px;}
.fs7{font-size:96.480000px;}
.fs4{font-size:105.882350px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:22.560000px;}
.y68{bottom:23.040000px;}
.y8a{bottom:23.340000px;}
.y3e{bottom:23.760000px;}
.y40{bottom:23.880000px;}
.y8{bottom:56.640000px;}
.y7{bottom:79.680000px;}
.ye5{bottom:89.040000px;}
.y6{bottom:102.720000px;}
.y5{bottom:125.760000px;}
.y4{bottom:148.800000px;}
.y67{bottom:165.000000px;}
.ye4{bottom:171.480000px;}
.y3c{bottom:175.800000px;}
.y88{bottom:176.880000px;}
.yc7{bottom:183.360000px;}
.y7b{bottom:192.000000px;}
.ye3{bottom:198.120000px;}
.y3b{bottom:199.200000px;}
.y87{bottom:200.280000px;}
.yc6{bottom:207.120000px;}
.ya1{bottom:208.560000px;}
.y7a{bottom:215.760000px;}
.y3a{bottom:222.960000px;}
.y86{bottom:224.040000px;}
.ye2{bottom:225.120000px;}
.yc5{bottom:230.520000px;}
.ya0{bottom:231.960000px;}
.y66{bottom:235.560000px;}
.y79{bottom:239.160000px;}
.y39{bottom:246.360000px;}
.y85{bottom:247.440000px;}
.ye1{bottom:252.480000px;}
.yc4{bottom:253.920000px;}
.y9f{bottom:255.720000px;}
.y65{bottom:258.960000px;}
.y78{bottom:262.560000px;}
.y38{bottom:269.760000px;}
.y84{bottom:271.200000px;}
.yc3{bottom:277.680000px;}
.y9e{bottom:279.120000px;}
.y64{bottom:282.360000px;}
.y77{bottom:286.320000px;}
.y3f{bottom:288.000000px;}
.ye0{bottom:294.240000px;}
.y83{bottom:294.600000px;}
.yc2{bottom:301.080000px;}
.y9d{bottom:302.520000px;}
.y63{bottom:306.120000px;}
.y76{bottom:309.720000px;}
.y82{bottom:318.000000px;}
.yc1{bottom:324.840000px;}
.y9c{bottom:326.280000px;}
.y62{bottom:329.520000px;}
.y75{bottom:333.120000px;}
.ydf{bottom:336.000000px;}
.y81{bottom:341.760000px;}
.yc0{bottom:348.240000px;}
.y9b{bottom:349.680000px;}
.y37{bottom:352.560000px;}
.y61{bottom:352.920000px;}
.y74{bottom:356.880000px;}
.y80{bottom:365.160000px;}
.ybf{bottom:371.640000px;}
.y9a{bottom:373.440000px;}
.y36{bottom:375.960000px;}
.y60{bottom:376.680000px;}
.yde{bottom:377.760000px;}
.y73{bottom:380.280000px;}
.y19{bottom:385.672800px;}
.y7f{bottom:388.560000px;}
.ybe{bottom:395.400000px;}
.y99{bottom:396.840000px;}
.y35{bottom:399.360000px;}
.y5f{bottom:400.080000px;}
.y72{bottom:404.040000px;}
.y7e{bottom:412.320000px;}
.ybd{bottom:418.800000px;}
.ydd{bottom:419.880000px;}
.y98{bottom:420.240000px;}
.y34{bottom:423.120000px;}
.y5e{bottom:423.840000px;}
.y18{bottom:427.072800px;}
.y71{bottom:427.440000px;}
.y7d{bottom:435.720000px;}
.ybc{bottom:442.560000px;}
.y97{bottom:444.000000px;}
.y33{bottom:446.520000px;}
.y5d{bottom:447.240000px;}
.y70{bottom:450.840000px;}
.y89{bottom:454.500000px;}
.y7c{bottom:455.160000px;}
.ydc{bottom:461.640000px;}
.ybb{bottom:465.960000px;}
.y96{bottom:467.400000px;}
.y17{bottom:468.832800px;}
.y32{bottom:469.920000px;}
.y5c{bottom:470.640000px;}
.y6f{bottom:474.600000px;}
.yba{bottom:489.360000px;}
.y95{bottom:490.800000px;}
.y31{bottom:493.680000px;}
.y5b{bottom:494.400000px;}
.y6e{bottom:498.000000px;}
.ydb{bottom:503.400000px;}
.y16{bottom:510.232800px;}
.yb9{bottom:513.120000px;}
.y94{bottom:514.560000px;}
.y30{bottom:517.080000px;}
.y5a{bottom:517.800000px;}
.y6d{bottom:521.400000px;}
.yb8{bottom:536.520000px;}
.y93{bottom:537.960000px;}
.y2f{bottom:540.840000px;}
.y59{bottom:541.560000px;}
.y6c{bottom:545.160000px;}
.yda{bottom:545.520000px;}
.y14{bottom:547.584600px;}
.y15{bottom:547.672800px;}
.yb7{bottom:559.920000px;}
.y92{bottom:561.720000px;}
.y2e{bottom:564.240000px;}
.y58{bottom:564.960000px;}
.y6b{bottom:568.560000px;}
.y13{bottom:579.352944px;}
.yb6{bottom:583.680000px;}
.y91{bottom:585.120000px;}
.yd9{bottom:587.280000px;}
.y2d{bottom:587.640000px;}
.y57{bottom:588.360000px;}
.y6a{bottom:592.320000px;}
.yb5{bottom:607.080000px;}
.y90{bottom:608.520000px;}
.y2c{bottom:611.400000px;}
.y69{bottom:611.760000px;}
.y56{bottom:612.120000px;}
.y12{bottom:620.752944px;}
.yd8{bottom:629.040000px;}
.yb4{bottom:630.840000px;}
.y8f{bottom:632.280000px;}
.y2b{bottom:634.800000px;}
.y55{bottom:635.520000px;}
.yb3{bottom:654.240000px;}
.y8e{bottom:655.680000px;}
.y2a{bottom:658.200000px;}
.y54{bottom:658.920000px;}
.y11{bottom:660.720000px;}
.yd7{bottom:670.800000px;}
.yb2{bottom:677.640000px;}
.y8d{bottom:679.080000px;}
.y29{bottom:681.960000px;}
.y53{bottom:682.680000px;}
.yb1{bottom:701.400000px;}
.y8c{bottom:702.840000px;}
.y10{bottom:705.360000px;}
.y52{bottom:706.080000px;}
.yd6{bottom:712.920000px;}
.yb0{bottom:724.800000px;}
.y8b{bottom:726.240000px;}
.y28{bottom:729.120000px;}
.y51{bottom:729.840000px;}
.yaf{bottom:748.200000px;}
.yf{bottom:750.000000px;}
.y27{bottom:752.520000px;}
.y50{bottom:753.240000px;}
.yd5{bottom:754.680000px;}
.ya2{bottom:768.000000px;}
.yae{bottom:771.960000px;}
.y26{bottom:775.920000px;}
.y4f{bottom:776.640000px;}
.ye{bottom:792.120000px;}
.yad{bottom:795.360000px;}
.yd4{bottom:796.440000px;}
.y25{bottom:799.680000px;}
.y4e{bottom:800.400000px;}
.yac{bottom:819.120000px;}
.y24{bottom:823.080000px;}
.y4d{bottom:823.800000px;}
.yd3{bottom:838.200000px;}
.yab{bottom:842.520000px;}
.y23{bottom:846.840000px;}
.y4c{bottom:847.200000px;}
.yaa{bottom:865.920000px;}
.y22{bottom:870.240000px;}
.y4b{bottom:870.960000px;}
.yd{bottom:875.280000px;}
.yd2{bottom:880.320000px;}
.ya9{bottom:889.680000px;}
.y21{bottom:893.640000px;}
.y4a{bottom:894.360000px;}
.ya8{bottom:913.080000px;}
.y20{bottom:917.400000px;}
.y49{bottom:918.120000px;}
.yc{bottom:920.280000px;}
.yd1{bottom:922.080000px;}
.ya7{bottom:936.840000px;}
.y1f{bottom:940.800000px;}
.y48{bottom:941.520000px;}
.ya6{bottom:960.240000px;}
.yd0{bottom:963.840000px;}
.y1e{bottom:964.200000px;}
.yb{bottom:964.920000px;}
.ya5{bottom:983.640000px;}
.y1d{bottom:987.960000px;}
.y47{bottom:988.680000px;}
.ycf{bottom:991.200000px;}
.y9{bottom:1004.160000px;}
.ya{bottom:1004.880000px;}
.ya4{bottom:1007.400000px;}
.y1c{bottom:1011.360000px;}
.y46{bottom:1012.080000px;}
.yce{bottom:1018.200000px;}
.ya3{bottom:1030.800000px;}
.y1b{bottom:1035.120000px;}
.y45{bottom:1035.840000px;}
.ycd{bottom:1045.560000px;}
.yc8{bottom:1050.000000px;}
.y44{bottom:1059.240000px;}
.y1a{bottom:1063.200000px;}
.ycc{bottom:1072.560000px;}
.y43{bottom:1082.640000px;}
.y3d{bottom:1083.000000px;}
.ycb{bottom:1099.920000px;}
.y42{bottom:1106.400000px;}
.yca{bottom:1126.920000px;}
.y41{bottom:1129.800000px;}
.y3{bottom:1152.480000px;}
.y2{bottom:1172.640000px;}
.y1{bottom:1192.440000px;}
.h5{height:40.310156px;}
.h3{height:46.629844px;}
.h2{height:49.680000px;}
.ha{height:51.827344px;}
.h9{height:54.423256px;}
.he{height:58.320000px;}
.hf{height:58.500000px;}
.hb{height:59.459063px;}
.hc{height:60.000000px;}
.h10{height:68.925938px;}
.hd{height:72.077344px;}
.h8{height:82.927388px;}
.h4{height:91.269844px;}
.h6{height:103.654688px;}
.h7{height:107.578125px;}
.h1{height:1236.000000px;}
.h0{height:1263.000000px;}
.w2{width:298.500000px;}
.w3{width:300.000000px;}
.w4{width:306.000000px;}
.w1{width:865.500000px;}
.w0{width:892.500000px;}
.x2{left:-27.000000px;}
.x0{left:0.000000px;}
.xc{left:3.149801px;}
.x1{left:27.000000px;}
.x3{left:47.250000px;}
.x4{left:53.174927px;}
.x14{left:69.000000px;}
.x7{left:74.474856px;}
.xe{left:76.500000px;}
.x6{left:111.825072px;}
.x10{left:116.993784px;}
.xd{left:129.284544px;}
.x15{left:154.177752px;}
.xf{left:160.617924px;}
.x13{left:244.708392px;}
.x18{left:275.259888px;}
.x17{left:279.839340px;}
.x16{left:303.498405px;}
.x9{left:361.510969px;}
.x12{left:372.914820px;}
.x5{left:404.025120px;}
.x8{left:523.143397px;}
.xb{left:564.082963px;}
.x11{left:729.675000px;}
.xa{left:807.975061px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.680000pt;}
.ls36{letter-spacing:-0.919296pt;}
.ls37{letter-spacing:-0.798336pt;}
.lsb{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.013824pt;}
.ls21{letter-spacing:0.032000pt;}
.ls2f{letter-spacing:0.032128pt;}
.ls34{letter-spacing:0.041472pt;}
.ls2c{letter-spacing:0.048384pt;}
.ls32{letter-spacing:0.069120pt;}
.ls2a{letter-spacing:0.076032pt;}
.ls16{letter-spacing:0.082944pt;}
.ls1d{letter-spacing:0.089856pt;}
.ls29{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.096512pt;}
.ls19{letter-spacing:0.096768pt;}
.ls1f{letter-spacing:0.096896pt;}
.ls18{letter-spacing:0.097024pt;}
.ls17{letter-spacing:0.097280pt;}
.ls1b{letter-spacing:0.103680pt;}
.ls1a{letter-spacing:0.110592pt;}
.ls1c{letter-spacing:0.117504pt;}
.ls1e{letter-spacing:0.124416pt;}
.ls2d{letter-spacing:0.131328pt;}
.ls20{letter-spacing:0.138240pt;}
.ls2b{letter-spacing:0.145152pt;}
.ls22{letter-spacing:0.165888pt;}
.ls26{letter-spacing:0.172800pt;}
.ls33{letter-spacing:0.179712pt;}
.ls24{letter-spacing:0.291584pt;}
.ls2e{letter-spacing:0.377344pt;}
.ls25{letter-spacing:0.385920pt;}
.ls28{letter-spacing:0.420224pt;}
.ls35{letter-spacing:0.499968pt;}
.ls3{letter-spacing:0.687360pt;}
.ls27{letter-spacing:0.769280pt;}
.lse{letter-spacing:1.279488pt;}
.ls4{letter-spacing:1.349376pt;}
.lsd{letter-spacing:2.870784pt;}
.ls2{letter-spacing:2.946048pt;}
.ls0{letter-spacing:3.080448pt;}
.ls1{letter-spacing:3.087360pt;}
.lsc{letter-spacing:4.413696pt;}
.ls8{letter-spacing:5.307620pt;}
.ls6{letter-spacing:5.307628pt;}
.ls9{letter-spacing:5.307638pt;}
.ls13{letter-spacing:5.320785pt;}
.ls7{letter-spacing:5.396079pt;}
.ls15{letter-spacing:5.891765pt;}
.lsa{letter-spacing:6.306546pt;}
.ls12{letter-spacing:6.550588pt;}
.ls14{letter-spacing:6.974117pt;}
.ls10{letter-spacing:10.368000pt;}
.lsf{letter-spacing:10.688000pt;}
.ls11{letter-spacing:10.867200pt;}
.ls30{letter-spacing:38.727424pt;}
.ls5{letter-spacing:175.011840pt;}
.ws7{word-spacing:-35.632940pt;}
.ws11{word-spacing:-26.233984pt;}
.wsd{word-spacing:-26.199680pt;}
.ws16{word-spacing:-26.191104pt;}
.wsc{word-spacing:-26.105344pt;}
.ws1a{word-spacing:-24.441984pt;}
.ws18{word-spacing:-21.814272pt;}
.wse{word-spacing:-21.807360pt;}
.ws15{word-spacing:-21.800448pt;}
.wsb{word-spacing:-21.772800pt;}
.ws12{word-spacing:-21.758976pt;}
.ws9{word-spacing:-21.752064pt;}
.ws14{word-spacing:-21.745152pt;}
.ws13{word-spacing:-21.738240pt;}
.ws10{word-spacing:-21.731328pt;}
.wsf{word-spacing:-21.724416pt;}
.ws17{word-spacing:-21.717504pt;}
.ws19{word-spacing:-21.676032pt;}
.wsa{word-spacing:-21.648384pt;}
.ws0{word-spacing:-21.401856pt;}
.ws2{word-spacing:-20.068608pt;}
.ws1{word-spacing:-19.934208pt;}
.ws4{word-spacing:-18.337536pt;}
.ws6{word-spacing:-5.458824pt;}
.ws5{word-spacing:-5.383530pt;}
.ws3{word-spacing:-0.053760pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-111.200000pt;}
._2{margin-left:-12.309504pt;}
._b{margin-left:-5.045760pt;}
._a{margin-left:-4.147200pt;}
._d{margin-left:-2.811784pt;}
._6{margin-left:-1.842748pt;}
._0{margin-left:-0.913920pt;}
._7{width:0.984720pt;}
._e{width:2.419200pt;}
._8{width:4.463665pt;}
._5{width:5.904335pt;}
._1{width:7.417178pt;}
._9{width:8.570880pt;}
._c{width:9.884160pt;}
._f{width:17.003520pt;}
._10{width:17.902080pt;}
._3{width:1095.200000pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:62.745101pt;}
.fs6{font-size:69.120000pt;}
.fs8{font-size:80.640000pt;}
.fs7{font-size:85.760000pt;}
.fs4{font-size:94.117645pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:20.053333pt;}
.y68{bottom:20.480000pt;}
.y8a{bottom:20.746667pt;}
.y3e{bottom:21.120000pt;}
.y40{bottom:21.226667pt;}
.y8{bottom:50.346667pt;}
.y7{bottom:70.826667pt;}
.ye5{bottom:79.146667pt;}
.y6{bottom:91.306667pt;}
.y5{bottom:111.786667pt;}
.y4{bottom:132.266667pt;}
.y67{bottom:146.666667pt;}
.ye4{bottom:152.426667pt;}
.y3c{bottom:156.266667pt;}
.y88{bottom:157.226667pt;}
.yc7{bottom:162.986667pt;}
.y7b{bottom:170.666667pt;}
.ye3{bottom:176.106667pt;}
.y3b{bottom:177.066667pt;}
.y87{bottom:178.026667pt;}
.yc6{bottom:184.106667pt;}
.ya1{bottom:185.386667pt;}
.y7a{bottom:191.786667pt;}
.y3a{bottom:198.186667pt;}
.y86{bottom:199.146667pt;}
.ye2{bottom:200.106667pt;}
.yc5{bottom:204.906667pt;}
.ya0{bottom:206.186667pt;}
.y66{bottom:209.386667pt;}
.y79{bottom:212.586667pt;}
.y39{bottom:218.986667pt;}
.y85{bottom:219.946667pt;}
.ye1{bottom:224.426667pt;}
.yc4{bottom:225.706667pt;}
.y9f{bottom:227.306667pt;}
.y65{bottom:230.186667pt;}
.y78{bottom:233.386667pt;}
.y38{bottom:239.786667pt;}
.y84{bottom:241.066667pt;}
.yc3{bottom:246.826667pt;}
.y9e{bottom:248.106667pt;}
.y64{bottom:250.986667pt;}
.y77{bottom:254.506667pt;}
.y3f{bottom:256.000000pt;}
.ye0{bottom:261.546667pt;}
.y83{bottom:261.866667pt;}
.yc2{bottom:267.626667pt;}
.y9d{bottom:268.906667pt;}
.y63{bottom:272.106667pt;}
.y76{bottom:275.306667pt;}
.y82{bottom:282.666667pt;}
.yc1{bottom:288.746667pt;}
.y9c{bottom:290.026667pt;}
.y62{bottom:292.906667pt;}
.y75{bottom:296.106667pt;}
.ydf{bottom:298.666667pt;}
.y81{bottom:303.786667pt;}
.yc0{bottom:309.546667pt;}
.y9b{bottom:310.826667pt;}
.y37{bottom:313.386667pt;}
.y61{bottom:313.706667pt;}
.y74{bottom:317.226667pt;}
.y80{bottom:324.586667pt;}
.ybf{bottom:330.346667pt;}
.y9a{bottom:331.946667pt;}
.y36{bottom:334.186667pt;}
.y60{bottom:334.826667pt;}
.yde{bottom:335.786667pt;}
.y73{bottom:338.026667pt;}
.y19{bottom:342.820267pt;}
.y7f{bottom:345.386667pt;}
.ybe{bottom:351.466667pt;}
.y99{bottom:352.746667pt;}
.y35{bottom:354.986667pt;}
.y5f{bottom:355.626667pt;}
.y72{bottom:359.146667pt;}
.y7e{bottom:366.506667pt;}
.ybd{bottom:372.266667pt;}
.ydd{bottom:373.226667pt;}
.y98{bottom:373.546667pt;}
.y34{bottom:376.106667pt;}
.y5e{bottom:376.746667pt;}
.y18{bottom:379.620267pt;}
.y71{bottom:379.946667pt;}
.y7d{bottom:387.306667pt;}
.ybc{bottom:393.386667pt;}
.y97{bottom:394.666667pt;}
.y33{bottom:396.906667pt;}
.y5d{bottom:397.546667pt;}
.y70{bottom:400.746667pt;}
.y89{bottom:404.000000pt;}
.y7c{bottom:404.586667pt;}
.ydc{bottom:410.346667pt;}
.ybb{bottom:414.186667pt;}
.y96{bottom:415.466667pt;}
.y17{bottom:416.740267pt;}
.y32{bottom:417.706667pt;}
.y5c{bottom:418.346667pt;}
.y6f{bottom:421.866667pt;}
.yba{bottom:434.986667pt;}
.y95{bottom:436.266667pt;}
.y31{bottom:438.826667pt;}
.y5b{bottom:439.466667pt;}
.y6e{bottom:442.666667pt;}
.ydb{bottom:447.466667pt;}
.y16{bottom:453.540267pt;}
.yb9{bottom:456.106667pt;}
.y94{bottom:457.386667pt;}
.y30{bottom:459.626667pt;}
.y5a{bottom:460.266667pt;}
.y6d{bottom:463.466667pt;}
.yb8{bottom:476.906667pt;}
.y93{bottom:478.186667pt;}
.y2f{bottom:480.746667pt;}
.y59{bottom:481.386667pt;}
.y6c{bottom:484.586667pt;}
.yda{bottom:484.906667pt;}
.y14{bottom:486.741867pt;}
.y15{bottom:486.820267pt;}
.yb7{bottom:497.706667pt;}
.y92{bottom:499.306667pt;}
.y2e{bottom:501.546667pt;}
.y58{bottom:502.186667pt;}
.y6b{bottom:505.386667pt;}
.y13{bottom:514.980395pt;}
.yb6{bottom:518.826667pt;}
.y91{bottom:520.106667pt;}
.yd9{bottom:522.026667pt;}
.y2d{bottom:522.346667pt;}
.y57{bottom:522.986667pt;}
.y6a{bottom:526.506667pt;}
.yb5{bottom:539.626667pt;}
.y90{bottom:540.906667pt;}
.y2c{bottom:543.466667pt;}
.y69{bottom:543.786667pt;}
.y56{bottom:544.106667pt;}
.y12{bottom:551.780395pt;}
.yd8{bottom:559.146667pt;}
.yb4{bottom:560.746667pt;}
.y8f{bottom:562.026667pt;}
.y2b{bottom:564.266667pt;}
.y55{bottom:564.906667pt;}
.yb3{bottom:581.546667pt;}
.y8e{bottom:582.826667pt;}
.y2a{bottom:585.066667pt;}
.y54{bottom:585.706667pt;}
.y11{bottom:587.306667pt;}
.yd7{bottom:596.266667pt;}
.yb2{bottom:602.346667pt;}
.y8d{bottom:603.626667pt;}
.y29{bottom:606.186667pt;}
.y53{bottom:606.826667pt;}
.yb1{bottom:623.466667pt;}
.y8c{bottom:624.746667pt;}
.y10{bottom:626.986667pt;}
.y52{bottom:627.626667pt;}
.yd6{bottom:633.706667pt;}
.yb0{bottom:644.266667pt;}
.y8b{bottom:645.546667pt;}
.y28{bottom:648.106667pt;}
.y51{bottom:648.746667pt;}
.yaf{bottom:665.066667pt;}
.yf{bottom:666.666667pt;}
.y27{bottom:668.906667pt;}
.y50{bottom:669.546667pt;}
.yd5{bottom:670.826667pt;}
.ya2{bottom:682.666667pt;}
.yae{bottom:686.186667pt;}
.y26{bottom:689.706667pt;}
.y4f{bottom:690.346667pt;}
.ye{bottom:704.106667pt;}
.yad{bottom:706.986667pt;}
.yd4{bottom:707.946667pt;}
.y25{bottom:710.826667pt;}
.y4e{bottom:711.466667pt;}
.yac{bottom:728.106667pt;}
.y24{bottom:731.626667pt;}
.y4d{bottom:732.266667pt;}
.yd3{bottom:745.066667pt;}
.yab{bottom:748.906667pt;}
.y23{bottom:752.746667pt;}
.y4c{bottom:753.066667pt;}
.yaa{bottom:769.706667pt;}
.y22{bottom:773.546667pt;}
.y4b{bottom:774.186667pt;}
.yd{bottom:778.026667pt;}
.yd2{bottom:782.506667pt;}
.ya9{bottom:790.826667pt;}
.y21{bottom:794.346667pt;}
.y4a{bottom:794.986667pt;}
.ya8{bottom:811.626667pt;}
.y20{bottom:815.466667pt;}
.y49{bottom:816.106667pt;}
.yc{bottom:818.026667pt;}
.yd1{bottom:819.626667pt;}
.ya7{bottom:832.746667pt;}
.y1f{bottom:836.266667pt;}
.y48{bottom:836.906667pt;}
.ya6{bottom:853.546667pt;}
.yd0{bottom:856.746667pt;}
.y1e{bottom:857.066667pt;}
.yb{bottom:857.706667pt;}
.ya5{bottom:874.346667pt;}
.y1d{bottom:878.186667pt;}
.y47{bottom:878.826667pt;}
.ycf{bottom:881.066667pt;}
.y9{bottom:892.586667pt;}
.ya{bottom:893.226667pt;}
.ya4{bottom:895.466667pt;}
.y1c{bottom:898.986667pt;}
.y46{bottom:899.626667pt;}
.yce{bottom:905.066667pt;}
.ya3{bottom:916.266667pt;}
.y1b{bottom:920.106667pt;}
.y45{bottom:920.746667pt;}
.ycd{bottom:929.386667pt;}
.yc8{bottom:933.333333pt;}
.y44{bottom:941.546667pt;}
.y1a{bottom:945.066667pt;}
.ycc{bottom:953.386667pt;}
.y43{bottom:962.346667pt;}
.y3d{bottom:962.666667pt;}
.ycb{bottom:977.706667pt;}
.y42{bottom:983.466667pt;}
.yca{bottom:1001.706667pt;}
.y41{bottom:1004.266667pt;}
.y3{bottom:1024.426667pt;}
.y2{bottom:1042.346667pt;}
.y1{bottom:1059.946667pt;}
.h5{height:35.831250pt;}
.h3{height:41.448750pt;}
.h2{height:44.160000pt;}
.ha{height:46.068750pt;}
.h9{height:48.376228pt;}
.he{height:51.840000pt;}
.hf{height:52.000000pt;}
.hb{height:52.852500pt;}
.hc{height:53.333333pt;}
.h10{height:61.267500pt;}
.hd{height:64.068750pt;}
.h8{height:73.713234pt;}
.h4{height:81.128750pt;}
.h6{height:92.137500pt;}
.h7{height:95.625000pt;}
.h1{height:1098.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:265.333333pt;}
.w3{width:266.666667pt;}
.w4{width:272.000000pt;}
.w1{width:769.333333pt;}
.w0{width:793.333333pt;}
.x2{left:-24.000000pt;}
.x0{left:0.000000pt;}
.xc{left:2.799823pt;}
.x1{left:24.000000pt;}
.x3{left:42.000000pt;}
.x4{left:47.266602pt;}
.x14{left:61.333333pt;}
.x7{left:66.199872pt;}
.xe{left:68.000000pt;}
.x6{left:99.400064pt;}
.x10{left:103.994475pt;}
.xd{left:114.919595pt;}
.x15{left:137.046891pt;}
.xf{left:142.771488pt;}
.x13{left:217.518571pt;}
.x18{left:244.675456pt;}
.x17{left:248.746080pt;}
.x16{left:269.776360pt;}
.x9{left:321.343084pt;}
.x12{left:331.479840pt;}
.x5{left:359.133440pt;}
.x8{left:465.016353pt;}
.xb{left:501.407079pt;}
.x11{left:648.600000pt;}
.xa{left:718.200055pt;}
}




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