
    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_f8c6f4e65e7cfbd46a69a0c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.047852;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_18ba75745645eb59d0d5a05c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_c481ba1981ab4eda29e8d0e4.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_b3ec6a3d543201ac8bfbc0e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_7877d75f7d810b0e83adf5be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_58a2d9852bc0cbb2ed94283f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_4a38b68a111a1aad0e7558a6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7b8026544bb6291e7ce0dd6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.835938;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;}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-2.645280px;}
.ls22{letter-spacing:-2.376000px;}
.ls18{letter-spacing:-2.016000px;}
.ls27{letter-spacing:-1.620000px;}
.ls13{letter-spacing:-1.563120px;}
.ls14{letter-spacing:-1.442880px;}
.ls19{letter-spacing:-1.322640px;}
.ls1e{letter-spacing:-1.152000px;}
.ls21{letter-spacing:-0.756000px;}
.ls26{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.360720px;}
.ls2{letter-spacing:-0.335520px;}
.ls1f{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.240480px;}
.ls9{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.192240px;}
.ls0{letter-spacing:-0.167760px;}
.lsa{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.120240px;}
.ls4{letter-spacing:-0.108000px;}
.ls1{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.095760px;}
.ls3{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.120240px;}
.ls7{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.240480px;}
.ls8{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.756000px;}
.lsb{letter-spacing:0.961920px;}
.ls23{letter-spacing:1.512000px;}
.lse{letter-spacing:1.683360px;}
.ls17{letter-spacing:23.927760px;}
.lsc{letter-spacing:54.829440px;}
.ls25{letter-spacing:61.992000px;}
.ls24{letter-spacing:62.748000px;}
.ls1c{letter-spacing:97.524000px;}
.ls1a{letter-spacing:124.200000px;}
.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;}
}
.ws19{word-spacing:-43.446240px;}
.wsf{word-spacing:-41.772240px;}
.wse{word-spacing:-41.604480px;}
.ws0{word-spacing:-34.390800px;}
.ws52{word-spacing:-34.223040px;}
.ws2a{word-spacing:-32.832000px;}
.ws10{word-spacing:-32.688000px;}
.ws11{word-spacing:-32.400000px;}
.ws26{word-spacing:-32.256000px;}
.ws33{word-spacing:-31.392000px;}
.ws28{word-spacing:-30.528000px;}
.ws1b{word-spacing:-27.414720px;}
.ws1e{word-spacing:-27.294480px;}
.ws1a{word-spacing:-27.054000px;}
.ws1c{word-spacing:-26.933760px;}
.ws21{word-spacing:-26.813520px;}
.ws2b{word-spacing:-25.851600px;}
.ws20{word-spacing:-25.731360px;}
.ws1f{word-spacing:-25.611120px;}
.ws31{word-spacing:-24.732000px;}
.ws36{word-spacing:-24.624000px;}
.ws1d{word-spacing:-24.528960px;}
.ws34{word-spacing:-24.516000px;}
.ws32{word-spacing:-24.408000px;}
.ws47{word-spacing:-24.300000px;}
.ws46{word-spacing:-24.192000px;}
.ws35{word-spacing:-24.084000px;}
.ws49{word-spacing:-23.760000px;}
.ws39{word-spacing:-23.652000px;}
.ws4a{word-spacing:-22.788000px;}
.ws37{word-spacing:-22.464000px;}
.ws2{word-spacing:-22.356000px;}
.ws1{word-spacing:-22.248000px;}
.ws38{word-spacing:-22.140000px;}
.ws3a{word-spacing:-22.032000px;}
.wsd{word-spacing:-18.144000px;}
.wsc{word-spacing:-17.712000px;}
.ws53{word-spacing:-9.226800px;}
.ws9{word-spacing:-7.992000px;}
.wsb{word-spacing:-7.776000px;}
.ws7{word-spacing:-4.865040px;}
.ws3d{word-spacing:-3.132000px;}
.ws3c{word-spacing:-2.916000px;}
.ws3e{word-spacing:-2.808000px;}
.wsa{word-spacing:-2.700000px;}
.ws4b{word-spacing:-2.484000px;}
.ws43{word-spacing:-2.052000px;}
.ws24{word-spacing:-1.923840px;}
.ws22{word-spacing:-1.872000px;}
.ws41{word-spacing:-1.512000px;}
.ws30{word-spacing:-1.442880px;}
.ws2d{word-spacing:-1.202400px;}
.ws16{word-spacing:-1.008000px;}
.ws40{word-spacing:-0.972000px;}
.ws4d{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.768960px;}
.ws44{word-spacing:-0.756000px;}
.ws2f{word-spacing:-0.721440px;}
.ws17{word-spacing:-0.720000px;}
.ws42{word-spacing:-0.648000px;}
.ws13{word-spacing:-0.432000px;}
.ws4f{word-spacing:-0.324000px;}
.ws23{word-spacing:-0.288000px;}
.ws2e{word-spacing:-0.240480px;}
.ws3f{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.144000px;}
.ws48{word-spacing:-0.108000px;}
.ws50{word-spacing:-0.095760px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.167760px;}
.ws2c{word-spacing:0.240480px;}
.ws12{word-spacing:0.288000px;}
.ws4c{word-spacing:0.324000px;}
.ws5{word-spacing:0.335520px;}
.ws51{word-spacing:0.432000px;}
.ws18{word-spacing:0.540000px;}
.ws4e{word-spacing:0.648000px;}
.ws6{word-spacing:0.838800px;}
.ws14{word-spacing:2.448000px;}
.ws4{word-spacing:2.851920px;}
.ws45{word-spacing:50.112000px;}
.ws27{word-spacing:64.224000px;}
.ws25{word-spacing:70.416000px;}
.ws29{word-spacing:78.048000px;}
._4{margin-left:-14.930640px;}
._c{margin-left:-12.582000px;}
._10{margin-left:-11.517120px;}
._5{margin-left:-10.401120px;}
._2{margin-left:-9.059040px;}
._a{margin-left:-8.052480px;}
._1{margin-left:-6.542640px;}
._e{margin-left:-5.361120px;}
._b{margin-left:-4.194000px;}
._0{margin-left:-3.019680px;}
._11{margin-left:-2.017440px;}
._3{margin-left:-1.006560px;}
._6{width:1.006560px;}
._d{width:2.052000px;}
._7{width:3.355200px;}
._14{width:4.393440px;}
._9{width:6.878160px;}
._8{width:8.388000px;}
._13{width:9.394560px;}
._f{width:23.927040px;}
._12{width:61.809840px;}
.fc3{color:rgb(150,236,176);}
.fc6{color:transparent;}
.fc2{color:rgb(15,85,37);}
.fc5{color:rgb(30,170,73);}
.fc1{color:rgb(22,127,55);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.fs0{font-size:167.760000px;}
.fs3{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:35.672550px;}
.y55{bottom:38.932650px;}
.yf{bottom:42.776550px;}
.y39{bottom:43.032900px;}
.y2c{bottom:45.991500px;}
.y5f{bottom:61.690200px;}
.y7d{bottom:62.186850px;}
.ye{bottom:75.176550px;}
.y38{bottom:86.232900px;}
.y30{bottom:89.428500px;}
.y7f{bottom:90.301650px;}
.y35{bottom:91.090950px;}
.y7c{bottom:94.586850px;}
.y72{bottom:98.061450px;}
.y54{bottom:100.509450px;}
.yd{bottom:107.576550px;}
.y2b{bottom:111.682050px;}
.y7b{bottom:126.986850px;}
.y37{bottom:129.432900px;}
.y71{bottom:130.461450px;}
.y2f{bottom:132.628500px;}
.y34{bottom:134.290950px;}
.y56{bottom:134.477700px;}
.y46{bottom:137.910600px;}
.yc{bottom:139.976550px;}
.y7a{bottom:159.386850px;}
.y59{bottom:165.727500px;}
.yb{bottom:172.376550px;}
.y36{bottom:172.632900px;}
.y86{bottom:183.851100px;}
.y5e{bottom:185.125500px;}
.y7e{bottom:192.058050px;}
.y8c{bottom:196.851450px;}
.y58{bottom:198.127500px;}
.y1d{bottom:202.070400px;}
.y99{bottom:208.605870px;}
.ya{bottom:208.736550px;}
.y12{bottom:213.245400px;}
.y16{bottom:213.551400px;}
.y57{bottom:214.779600px;}
.y85{bottom:216.251100px;}
.y1c{bottom:223.670400px;}
.y6a{bottom:224.354850px;}
.y8b{bottom:229.251450px;}
.y11{bottom:234.845400px;}
.y15{bottom:235.151400px;}
.y1b{bottom:245.270400px;}
.y84{bottom:248.651100px;}
.y79{bottom:251.398950px;}
.y9{bottom:254.276550px;}
.y14{bottom:256.751400px;}
.y69{bottom:256.754850px;}
.y98{bottom:259.017750px;}
.y53{bottom:264.255150px;}
.y1a{bottom:265.610400px;}
.y70{bottom:274.789350px;}
.y13{bottom:278.351400px;}
.y26{bottom:280.082400px;}
.y19{bottom:281.267400px;}
.y5d{bottom:282.091350px;}
.y78{bottom:283.798950px;}
.y8{bottom:287.853240px;}
.y20{bottom:288.272400px;}
.y68{bottom:289.154850px;}
.y25{bottom:301.682400px;}
.y18{bottom:302.867400px;}
.y97{bottom:309.429630px;}
.y1f{bottom:309.872400px;}
.y5c{bottom:314.491350px;}
.y52{bottom:316.760850px;}
.y67{bottom:321.554850px;}
.y3f{bottom:322.706010px;}
.y24{bottom:323.282400px;}
.y45{bottom:324.236610px;}
.y17{bottom:324.467400px;}
.y1e{bottom:331.472400px;}
.y7{bottom:338.265120px;}
.y33{bottom:343.033290px;}
.y23{bottom:344.882400px;}
.y66{bottom:353.954850px;}
.y3e{bottom:358.717890px;}
.y96{bottom:359.841510px;}
.y44{bottom:360.248490px;}
.y49{bottom:364.898250px;}
.y41{bottom:365.006370px;}
.y22{bottom:366.482400px;}
.y32{bottom:379.045170px;}
.y83{bottom:380.715750px;}
.y65{bottom:386.354850px;}
.y21{bottom:388.082400px;}
.y6{bottom:388.677000px;}
.y77{bottom:391.123200px;}
.y3d{bottom:394.729770px;}
.y6f{bottom:395.726850px;}
.y43{bottom:396.260370px;}
.y48{bottom:397.298250px;}
.y40{bottom:401.018250px;}
.y8a{bottom:401.500050px;}
.y95{bottom:410.253390px;}
.y82{bottom:413.115750px;}
.y60{bottom:415.027200px;}
.y31{bottom:415.057050px;}
.y64{bottom:418.754850px;}
.y76{bottom:423.523200px;}
.y6e{bottom:428.126850px;}
.y47{bottom:429.698250px;}
.y3c{bottom:430.741650px;}
.y42{bottom:432.272250px;}
.y89{bottom:433.900050px;}
.y5{bottom:439.088880px;}
.y63{bottom:451.154850px;}
.y75{bottom:455.923200px;}
.y6d{bottom:460.526850px;}
.y94{bottom:460.665270px;}
.y4a{bottom:462.069750px;}
.y4{bottom:489.500760px;}
.y28{bottom:502.663320px;}
.y93{bottom:511.077150px;}
.y61{bottom:534.773100px;}
.y88{bottom:537.999150px;}
.y51{bottom:538.743150px;}
.y3{bottom:539.912640px;}
.y2a{bottom:545.487900px;}
.y4d{bottom:545.947800px;}
.y27{bottom:553.075200px;}
.y81{bottom:561.380250px;}
.y92{bottom:561.489030px;}
.y74{bottom:564.135450px;}
.y6c{bottom:565.023450px;}
.y87{bottom:570.399150px;}
.y50{bottom:571.143150px;}
.y2e{bottom:577.129200px;}
.y29{bottom:577.887900px;}
.y4c{bottom:578.347800px;}
.y2{bottom:590.324520px;}
.y80{bottom:593.780250px;}
.y3b{bottom:594.688770px;}
.y73{bottom:596.535450px;}
.y6b{bottom:597.423450px;}
.y4f{bottom:603.543150px;}
.y91{bottom:611.900910px;}
.y5b{bottom:623.643750px;}
.y62{bottom:630.264450px;}
.y3a{bottom:630.700650px;}
.y4b{bottom:634.482900px;}
.y4e{bottom:635.943150px;}
.y1{bottom:640.736400px;}
.y90{bottom:662.312790px;}
.y10{bottom:700.264200px;}
.y2d{bottom:709.425450px;}
.y8f{bottom:712.724670px;}
.y8e{bottom:763.136550px;}
.y8d{bottom:813.536550px;}
.h6{height:48.616875px;}
.h5{height:72.562500px;}
.h10{height:74.830078px;}
.h2{height:77.430937px;}
.h11{height:78.973945px;}
.ha{height:83.310820px;}
.h3{height:87.328125px;}
.hf{height:89.068359px;}
.hc{height:99.162773px;}
.hd{height:99.773438px;}
.h8{height:108.843750px;}
.he{height:112.640625px;}
.hb{height:116.437500px;}
.h9{height:118.757812px;}
.h1{height:135.649687px;}
.h4{height:158.541680px;}
.h7{height:169.070625px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xd{left:186.112200px;}
.x2a{left:198.485850px;}
.x53{left:207.543900px;}
.x24{left:242.902350px;}
.x25{left:257.671350px;}
.x6{left:259.556280px;}
.xe{left:261.704550px;}
.x54{left:267.545700px;}
.xf{left:269.084550px;}
.x4f{left:274.319850px;}
.x48{left:275.672550px;}
.x46{left:280.880100px;}
.x4e{left:291.603750px;}
.x4c{left:292.863750px;}
.x36{left:301.451850px;}
.x3d{left:303.136200px;}
.x47{left:305.188800px;}
.x2d{left:307.800150px;}
.x29{left:312.763800px;}
.x50{left:319.328850px;}
.x42{left:322.066200px;}
.x39{left:330.670500px;}
.x4b{left:336.063750px;}
.x4d{left:337.683750px;}
.x3a{left:342.199500px;}
.x2{left:349.014300px;}
.x43{left:374.446200px;}
.x28{left:383.143800px;}
.x7{left:401.019900px;}
.x2f{left:408.434100px;}
.x57{left:411.717450px;}
.x30{left:414.385980px;}
.x56{left:418.899450px;}
.x3f{left:420.841200px;}
.x55{left:426.990450px;}
.x37{left:430.154700px;}
.x44{left:431.289750px;}
.x40{left:434.152200px;}
.x31{left:445.708500px;}
.x5e{left:451.429680px;}
.x45{left:455.375400px;}
.x5{left:460.071420px;}
.x5c{left:464.892420px;}
.x11{left:468.758550px;}
.x38{left:474.670500px;}
.x10{left:476.318550px;}
.x3c{left:481.330650px;}
.x13{left:482.978550px;}
.x12{left:518.978550px;}
.x2e{left:521.123250px;}
.x5d{left:564.625740px;}
.x5f{left:618.816000px;}
.x61{left:631.398000px;}
.x60{left:632.667000px;}
.x32{left:639.038550px;}
.x51{left:642.600000px;}
.x14{left:647.732550px;}
.x18{left:659.079750px;}
.x15{left:675.092550px;}
.x52{left:676.431000px;}
.x62{left:679.080000px;}
.x16{left:681.032550px;}
.x19{left:688.419750px;}
.x1a{left:689.499750px;}
.x49{left:710.771250px;}
.x17{left:729.279750px;}
.x3{left:732.220080px;}
.x4a{left:753.647250px;}
.x5b{left:779.736000px;}
.x2c{left:816.703200px;}
.x2b{left:831.463200px;}
.x59{left:845.319450px;}
.x1c{left:851.967750px;}
.x35{left:861.474480px;}
.x34{left:862.737000px;}
.x1d{left:866.187750px;}
.x33{left:869.951400px;}
.x58{left:877.008600px;}
.x3b{left:881.789100px;}
.x3e{left:883.424700px;}
.x5a{left:889.248450px;}
.x1b{left:896.067750px;}
.x41{left:939.482400px;}
.x1{left:943.723500px;}
.x9{left:1052.263500px;}
.x21{left:1055.007750px;}
.x20{left:1056.627750px;}
.x27{left:1057.816200px;}
.x26{left:1061.776200px;}
.x8{left:1069.166040px;}
.x1e{left:1075.347750px;}
.xb{left:1077.454500px;}
.xa{left:1079.803500px;}
.x1f{left:1093.167750px;}
.xc{left:1172.683500px;}
.x23{left:1202.071020px;}
.x22{left:1221.866700px;}
.x4{left:1374.111780px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-2.351360pt;}
.ls22{letter-spacing:-2.112000pt;}
.ls18{letter-spacing:-1.792000pt;}
.ls27{letter-spacing:-1.440000pt;}
.ls13{letter-spacing:-1.389440pt;}
.ls14{letter-spacing:-1.282560pt;}
.ls19{letter-spacing:-1.175680pt;}
.ls1e{letter-spacing:-1.024000pt;}
.ls21{letter-spacing:-0.672000pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.320640pt;}
.ls2{letter-spacing:-0.298240pt;}
.ls1f{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.213760pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.170880pt;}
.ls0{letter-spacing:-0.149120pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.106880pt;}
.ls4{letter-spacing:-0.096000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.085120pt;}
.ls3{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.106880pt;}
.ls7{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.213760pt;}
.ls8{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.672000pt;}
.lsb{letter-spacing:0.855040pt;}
.ls23{letter-spacing:1.344000pt;}
.lse{letter-spacing:1.496320pt;}
.ls17{letter-spacing:21.269120pt;}
.lsc{letter-spacing:48.737280pt;}
.ls25{letter-spacing:55.104000pt;}
.ls24{letter-spacing:55.776000pt;}
.ls1c{letter-spacing:86.688000pt;}
.ls1a{letter-spacing:110.400000pt;}
.ws19{word-spacing:-38.618880pt;}
.wsf{word-spacing:-37.130880pt;}
.wse{word-spacing:-36.981760pt;}
.ws0{word-spacing:-30.569600pt;}
.ws52{word-spacing:-30.420480pt;}
.ws2a{word-spacing:-29.184000pt;}
.ws10{word-spacing:-29.056000pt;}
.ws11{word-spacing:-28.800000pt;}
.ws26{word-spacing:-28.672000pt;}
.ws33{word-spacing:-27.904000pt;}
.ws28{word-spacing:-27.136000pt;}
.ws1b{word-spacing:-24.368640pt;}
.ws1e{word-spacing:-24.261760pt;}
.ws1a{word-spacing:-24.048000pt;}
.ws1c{word-spacing:-23.941120pt;}
.ws21{word-spacing:-23.834240pt;}
.ws2b{word-spacing:-22.979200pt;}
.ws20{word-spacing:-22.872320pt;}
.ws1f{word-spacing:-22.765440pt;}
.ws31{word-spacing:-21.984000pt;}
.ws36{word-spacing:-21.888000pt;}
.ws1d{word-spacing:-21.803520pt;}
.ws34{word-spacing:-21.792000pt;}
.ws32{word-spacing:-21.696000pt;}
.ws47{word-spacing:-21.600000pt;}
.ws46{word-spacing:-21.504000pt;}
.ws35{word-spacing:-21.408000pt;}
.ws49{word-spacing:-21.120000pt;}
.ws39{word-spacing:-21.024000pt;}
.ws4a{word-spacing:-20.256000pt;}
.ws37{word-spacing:-19.968000pt;}
.ws2{word-spacing:-19.872000pt;}
.ws1{word-spacing:-19.776000pt;}
.ws38{word-spacing:-19.680000pt;}
.ws3a{word-spacing:-19.584000pt;}
.wsd{word-spacing:-16.128000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws53{word-spacing:-8.201600pt;}
.ws9{word-spacing:-7.104000pt;}
.wsb{word-spacing:-6.912000pt;}
.ws7{word-spacing:-4.324480pt;}
.ws3d{word-spacing:-2.784000pt;}
.ws3c{word-spacing:-2.592000pt;}
.ws3e{word-spacing:-2.496000pt;}
.wsa{word-spacing:-2.400000pt;}
.ws4b{word-spacing:-2.208000pt;}
.ws43{word-spacing:-1.824000pt;}
.ws24{word-spacing:-1.710080pt;}
.ws22{word-spacing:-1.664000pt;}
.ws41{word-spacing:-1.344000pt;}
.ws30{word-spacing:-1.282560pt;}
.ws2d{word-spacing:-1.068800pt;}
.ws16{word-spacing:-0.896000pt;}
.ws40{word-spacing:-0.864000pt;}
.ws4d{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.683520pt;}
.ws44{word-spacing:-0.672000pt;}
.ws2f{word-spacing:-0.641280pt;}
.ws17{word-spacing:-0.640000pt;}
.ws42{word-spacing:-0.576000pt;}
.ws13{word-spacing:-0.384000pt;}
.ws4f{word-spacing:-0.288000pt;}
.ws23{word-spacing:-0.256000pt;}
.ws2e{word-spacing:-0.213760pt;}
.ws3f{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.128000pt;}
.ws48{word-spacing:-0.096000pt;}
.ws50{word-spacing:-0.085120pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.149120pt;}
.ws2c{word-spacing:0.213760pt;}
.ws12{word-spacing:0.256000pt;}
.ws4c{word-spacing:0.288000pt;}
.ws5{word-spacing:0.298240pt;}
.ws51{word-spacing:0.384000pt;}
.ws18{word-spacing:0.480000pt;}
.ws4e{word-spacing:0.576000pt;}
.ws6{word-spacing:0.745600pt;}
.ws14{word-spacing:2.176000pt;}
.ws4{word-spacing:2.535040pt;}
.ws45{word-spacing:44.544000pt;}
.ws27{word-spacing:57.088000pt;}
.ws25{word-spacing:62.592000pt;}
.ws29{word-spacing:69.376000pt;}
._4{margin-left:-13.271680pt;}
._c{margin-left:-11.184000pt;}
._10{margin-left:-10.237440pt;}
._5{margin-left:-9.245440pt;}
._2{margin-left:-8.052480pt;}
._a{margin-left:-7.157760pt;}
._1{margin-left:-5.815680pt;}
._e{margin-left:-4.765440pt;}
._b{margin-left:-3.728000pt;}
._0{margin-left:-2.684160pt;}
._11{margin-left:-1.793280pt;}
._3{margin-left:-0.894720pt;}
._6{width:0.894720pt;}
._d{width:1.824000pt;}
._7{width:2.982400pt;}
._14{width:3.905280pt;}
._9{width:6.113920pt;}
._8{width:7.456000pt;}
._13{width:8.350720pt;}
._f{width:21.268480pt;}
._12{width:54.942080pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.fs0{font-size:149.120000pt;}
.fs3{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:31.708933pt;}
.y55{bottom:34.606800pt;}
.yf{bottom:38.023600pt;}
.y39{bottom:38.251467pt;}
.y2c{bottom:40.881333pt;}
.y5f{bottom:54.835733pt;}
.y7d{bottom:55.277200pt;}
.ye{bottom:66.823600pt;}
.y38{bottom:76.651467pt;}
.y30{bottom:79.492000pt;}
.y7f{bottom:80.268133pt;}
.y35{bottom:80.969733pt;}
.y7c{bottom:84.077200pt;}
.y72{bottom:87.165733pt;}
.y54{bottom:89.341733pt;}
.yd{bottom:95.623600pt;}
.y2b{bottom:99.272933pt;}
.y7b{bottom:112.877200pt;}
.y37{bottom:115.051467pt;}
.y71{bottom:115.965733pt;}
.y2f{bottom:117.892000pt;}
.y34{bottom:119.369733pt;}
.y56{bottom:119.535733pt;}
.y46{bottom:122.587200pt;}
.yc{bottom:124.423600pt;}
.y7a{bottom:141.677200pt;}
.y59{bottom:147.313333pt;}
.yb{bottom:153.223600pt;}
.y36{bottom:153.451467pt;}
.y86{bottom:163.423200pt;}
.y5e{bottom:164.556000pt;}
.y7e{bottom:170.718267pt;}
.y8c{bottom:174.979067pt;}
.y58{bottom:176.113333pt;}
.y1d{bottom:179.618133pt;}
.y99{bottom:185.427440pt;}
.ya{bottom:185.543600pt;}
.y12{bottom:189.551467pt;}
.y16{bottom:189.823467pt;}
.y57{bottom:190.915200pt;}
.y85{bottom:192.223200pt;}
.y1c{bottom:198.818133pt;}
.y6a{bottom:199.426533pt;}
.y8b{bottom:203.779067pt;}
.y11{bottom:208.751467pt;}
.y15{bottom:209.023467pt;}
.y1b{bottom:218.018133pt;}
.y84{bottom:221.023200pt;}
.y79{bottom:223.465733pt;}
.y9{bottom:226.023600pt;}
.y14{bottom:228.223467pt;}
.y69{bottom:228.226533pt;}
.y98{bottom:230.238000pt;}
.y53{bottom:234.893467pt;}
.y1a{bottom:236.098133pt;}
.y70{bottom:244.257200pt;}
.y13{bottom:247.423467pt;}
.y26{bottom:248.962133pt;}
.y19{bottom:250.015467pt;}
.y5d{bottom:250.747867pt;}
.y78{bottom:252.265733pt;}
.y8{bottom:255.869547pt;}
.y20{bottom:256.242133pt;}
.y68{bottom:257.026533pt;}
.y25{bottom:268.162133pt;}
.y18{bottom:269.215467pt;}
.y97{bottom:275.048560pt;}
.y1f{bottom:275.442133pt;}
.y5c{bottom:279.547867pt;}
.y52{bottom:281.565200pt;}
.y67{bottom:285.826533pt;}
.y3f{bottom:286.849787pt;}
.y24{bottom:287.362133pt;}
.y45{bottom:288.210320pt;}
.y17{bottom:288.415467pt;}
.y1e{bottom:294.642133pt;}
.y7{bottom:300.680107pt;}
.y33{bottom:304.918480pt;}
.y23{bottom:306.562133pt;}
.y66{bottom:314.626533pt;}
.y3e{bottom:318.860347pt;}
.y96{bottom:319.859120pt;}
.y44{bottom:320.220880pt;}
.y49{bottom:324.354000pt;}
.y41{bottom:324.450107pt;}
.y22{bottom:325.762133pt;}
.y32{bottom:336.929040pt;}
.y83{bottom:338.414000pt;}
.y65{bottom:343.426533pt;}
.y21{bottom:344.962133pt;}
.y6{bottom:345.490667pt;}
.y77{bottom:347.665067pt;}
.y3d{bottom:350.870907pt;}
.y6f{bottom:351.757200pt;}
.y43{bottom:352.231440pt;}
.y48{bottom:353.154000pt;}
.y40{bottom:356.460667pt;}
.y8a{bottom:356.888933pt;}
.y95{bottom:364.669680pt;}
.y82{bottom:367.214000pt;}
.y60{bottom:368.913067pt;}
.y31{bottom:368.939600pt;}
.y64{bottom:372.226533pt;}
.y76{bottom:376.465067pt;}
.y6e{bottom:380.557200pt;}
.y47{bottom:381.954000pt;}
.y3c{bottom:382.881467pt;}
.y42{bottom:384.242000pt;}
.y89{bottom:385.688933pt;}
.y5{bottom:390.301227pt;}
.y63{bottom:401.026533pt;}
.y75{bottom:405.265067pt;}
.y6d{bottom:409.357200pt;}
.y94{bottom:409.480240pt;}
.y4a{bottom:410.728667pt;}
.y4{bottom:435.111787pt;}
.y28{bottom:446.811840pt;}
.y93{bottom:454.290800pt;}
.y61{bottom:475.353867pt;}
.y88{bottom:478.221467pt;}
.y51{bottom:478.882800pt;}
.y3{bottom:479.922347pt;}
.y2a{bottom:484.878133pt;}
.y4d{bottom:485.286933pt;}
.y27{bottom:491.622400pt;}
.y81{bottom:499.004667pt;}
.y92{bottom:499.101360pt;}
.y74{bottom:501.453733pt;}
.y6c{bottom:502.243067pt;}
.y87{bottom:507.021467pt;}
.y50{bottom:507.682800pt;}
.y2e{bottom:513.003733pt;}
.y29{bottom:513.678133pt;}
.y4c{bottom:514.086933pt;}
.y2{bottom:524.732907pt;}
.y80{bottom:527.804667pt;}
.y3b{bottom:528.612240pt;}
.y73{bottom:530.253733pt;}
.y6b{bottom:531.043067pt;}
.y4f{bottom:536.482800pt;}
.y91{bottom:543.911920pt;}
.y5b{bottom:554.350000pt;}
.y62{bottom:560.235067pt;}
.y3a{bottom:560.622800pt;}
.y4b{bottom:563.984800pt;}
.y4e{bottom:565.282800pt;}
.y1{bottom:569.543467pt;}
.y90{bottom:588.722480pt;}
.y10{bottom:622.457067pt;}
.y2d{bottom:630.600400pt;}
.y8f{bottom:633.533040pt;}
.y8e{bottom:678.343600pt;}
.y8d{bottom:723.143600pt;}
.h6{height:43.215000pt;}
.h5{height:64.500000pt;}
.h10{height:66.515625pt;}
.h2{height:68.827500pt;}
.h11{height:70.199062pt;}
.ha{height:74.054063pt;}
.h3{height:77.625000pt;}
.hf{height:79.171875pt;}
.hc{height:88.144687pt;}
.hd{height:88.687500pt;}
.h8{height:96.750000pt;}
.he{height:100.125000pt;}
.hb{height:103.500000pt;}
.h9{height:105.562500pt;}
.h1{height:120.577500pt;}
.h4{height:140.925938pt;}
.h7{height:150.285000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xd{left:165.433067pt;}
.x2a{left:176.431867pt;}
.x53{left:184.483467pt;}
.x24{left:215.913200pt;}
.x25{left:229.041200pt;}
.x6{left:230.716693pt;}
.xe{left:232.626267pt;}
.x54{left:237.818400pt;}
.xf{left:239.186267pt;}
.x4f{left:243.839867pt;}
.x48{left:245.042267pt;}
.x46{left:249.671200pt;}
.x4e{left:259.203333pt;}
.x4c{left:260.323333pt;}
.x36{left:267.957200pt;}
.x3d{left:269.454400pt;}
.x47{left:271.278933pt;}
.x2d{left:273.600133pt;}
.x29{left:278.012267pt;}
.x50{left:283.847867pt;}
.x42{left:286.281067pt;}
.x39{left:293.929333pt;}
.x4b{left:298.723333pt;}
.x4d{left:300.163333pt;}
.x3a{left:304.177333pt;}
.x2{left:310.234933pt;}
.x43{left:332.841067pt;}
.x28{left:340.572267pt;}
.x7{left:356.462133pt;}
.x2f{left:363.052533pt;}
.x57{left:365.971067pt;}
.x30{left:368.343093pt;}
.x56{left:372.355067pt;}
.x3f{left:374.081067pt;}
.x55{left:379.547067pt;}
.x37{left:382.359733pt;}
.x44{left:383.368667pt;}
.x40{left:385.913067pt;}
.x31{left:396.185333pt;}
.x5e{left:401.270827pt;}
.x45{left:404.778133pt;}
.x5{left:408.952373pt;}
.x5c{left:413.237707pt;}
.x11{left:416.674267pt;}
.x38{left:421.929333pt;}
.x10{left:423.394267pt;}
.x3c{left:427.849467pt;}
.x13{left:429.314267pt;}
.x12{left:461.314267pt;}
.x2e{left:463.220667pt;}
.x5d{left:501.889547pt;}
.x5f{left:550.058667pt;}
.x61{left:561.242667pt;}
.x60{left:562.370667pt;}
.x32{left:568.034267pt;}
.x51{left:571.200000pt;}
.x14{left:575.762267pt;}
.x18{left:585.848667pt;}
.x15{left:600.082267pt;}
.x52{left:601.272000pt;}
.x62{left:603.626667pt;}
.x16{left:605.362267pt;}
.x19{left:611.928667pt;}
.x1a{left:612.888667pt;}
.x49{left:631.796667pt;}
.x17{left:648.248667pt;}
.x3{left:650.862293pt;}
.x4a{left:669.908667pt;}
.x5b{left:693.098667pt;}
.x2c{left:725.958400pt;}
.x2b{left:739.078400pt;}
.x59{left:751.395067pt;}
.x1c{left:757.304667pt;}
.x35{left:765.755093pt;}
.x34{left:766.877333pt;}
.x1d{left:769.944667pt;}
.x33{left:773.290133pt;}
.x58{left:779.563200pt;}
.x3b{left:783.812533pt;}
.x3e{left:785.266400pt;}
.x5a{left:790.443067pt;}
.x1b{left:796.504667pt;}
.x41{left:835.095467pt;}
.x1{left:838.865333pt;}
.x9{left:935.345333pt;}
.x21{left:937.784667pt;}
.x20{left:939.224667pt;}
.x27{left:940.281067pt;}
.x26{left:943.801067pt;}
.x8{left:950.369813pt;}
.x1e{left:955.864667pt;}
.xb{left:957.737333pt;}
.xa{left:959.825333pt;}
.x1f{left:971.704667pt;}
.xc{left:1042.385333pt;}
.x23{left:1068.507573pt;}
.x22{left:1086.103733pt;}
.x4{left:1221.432693pt;}
}




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