
    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_008e8ef5e8e51389b7227647.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_5093c16384beab3616aaf1d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_0d2fc6195efae0e593c95ca3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717285;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_9fd5d07479b90511faa892e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_32d99970d10d1be3ff1dbb79.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_e1261c67f7d8414da95d66d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_779a960d4964cafc7069cc67.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:32.399940px;}
.ls33{letter-spacing:-11.988000px;}
.ls2b{letter-spacing:-7.635600px;}
.ls16{letter-spacing:-0.096000px;}
.ls14{letter-spacing:-0.086400px;}
.ls2f{letter-spacing:-0.084000px;}
.ls5{letter-spacing:-0.076800px;}
.ls29{letter-spacing:-0.067200px;}
.ls3a{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.057600px;}
.ls21{letter-spacing:-0.054000px;}
.ls3d{letter-spacing:-0.050400px;}
.ls30{letter-spacing:-0.043200px;}
.ls7{letter-spacing:-0.038400px;}
.ls2e{letter-spacing:-0.033600px;}
.ls22{letter-spacing:-0.032400px;}
.lsf{letter-spacing:-0.028800px;}
.ls20{letter-spacing:-0.021600px;}
.ls3c{letter-spacing:-0.019200px;}
.ls32{letter-spacing:-0.014400px;}
.ls11{letter-spacing:-0.009600px;}
.ls1{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.000846px;}
.ls25{letter-spacing:0.006240px;}
.ls26{letter-spacing:0.007800px;}
.ls8{letter-spacing:0.010680px;}
.lsa{letter-spacing:0.010800px;}
.ls38{letter-spacing:0.012468px;}
.ls23{letter-spacing:0.012480px;}
.ls2d{letter-spacing:0.012600px;}
.ls4{letter-spacing:0.014040px;}
.ls3{letter-spacing:0.014220px;}
.ls3b{letter-spacing:0.014280px;}
.lsc{letter-spacing:0.014400px;}
.ls2a{letter-spacing:0.016800px;}
.ls2{letter-spacing:0.019200px;}
.ls0{letter-spacing:0.021600px;}
.ls24{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.026400px;}
.ls1f{letter-spacing:0.028800px;}
.ls28{letter-spacing:0.032400px;}
.ls2c{letter-spacing:0.033600px;}
.ls13{letter-spacing:0.038400px;}
.lsd{letter-spacing:0.043200px;}
.ls1e{letter-spacing:0.050400px;}
.ls27{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.057600px;}
.ls39{letter-spacing:0.064332px;}
.ls31{letter-spacing:0.064800px;}
.ls1d{letter-spacing:0.067200px;}
.ls10{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.076800px;}
.ls3e{letter-spacing:0.079200px;}
.ls1c{letter-spacing:0.084000px;}
.ls15{letter-spacing:0.086400px;}
.ls17{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.099600px;}
.ls19{letter-spacing:0.105600px;}
.lsb{letter-spacing:0.115200px;}
.ls3f{letter-spacing:0.132000px;}
.ls35{letter-spacing:3.057600px;}
.ls12{letter-spacing:50.156100px;}
.ls1b{letter-spacing:59.824104px;}
.ls34{letter-spacing:59.824152px;}
.ls37{letter-spacing:69.492078px;}
.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;}
}
.ws34{word-spacing:-53.376000px;}
.ws1a{word-spacing:-40.060800px;}
.ws1c{word-spacing:-30.045600px;}
.ws1b{word-spacing:-30.024000px;}
.ws2e{word-spacing:-18.036000px;}
.ws33{word-spacing:-0.396000px;}
.ws15{word-spacing:-0.369600px;}
.ws2d{word-spacing:-0.336000px;}
.ws11{word-spacing:-0.307200px;}
.ws14{word-spacing:-0.290400px;}
.ws12{word-spacing:-0.288000px;}
.ws2c{word-spacing:-0.280800px;}
.ws30{word-spacing:-0.268800px;}
.ws13{word-spacing:-0.264000px;}
.wsb{word-spacing:-0.259200px;}
.ws17{word-spacing:-0.252000px;}
.ws21{word-spacing:-0.240000px;}
.ws1{word-spacing:-0.237600px;}
.ws18{word-spacing:-0.235200px;}
.wsf{word-spacing:-0.230400px;}
.ws19{word-spacing:-0.218400px;}
.ws0{word-spacing:-0.216000px;}
.ws5{word-spacing:-0.211200px;}
.ws9{word-spacing:-0.201600px;}
.ws31{word-spacing:-0.194400px;}
.ws4{word-spacing:-0.192000px;}
.wsd{word-spacing:-0.187200px;}
.ws29{word-spacing:-0.184800px;}
.ws2{word-spacing:-0.174000px;}
.ws2b{word-spacing:-0.172800px;}
.ws16{word-spacing:-0.168000px;}
.ws25{word-spacing:-0.162000px;}
.wsc{word-spacing:-0.158400px;}
.ws7{word-spacing:-0.153600px;}
.ws2f{word-spacing:-0.151200px;}
.wsa{word-spacing:-0.144000px;}
.ws26{word-spacing:-0.140400px;}
.ws28{word-spacing:-0.134400px;}
.wse{word-spacing:-0.129600px;}
.ws1d{word-spacing:-0.120000px;}
.ws24{word-spacing:-0.118800px;}
.ws32{word-spacing:-0.117600px;}
.ws6{word-spacing:-0.115200px;}
.ws23{word-spacing:-0.108000px;}
.ws22{word-spacing:-0.100800px;}
.ws10{word-spacing:-0.096000px;}
.ws8{word-spacing:-0.086400px;}
.ws2a{word-spacing:-0.084000px;}
.ws20{word-spacing:-0.075600px;}
.ws27{word-spacing:-0.072000px;}
.ws1f{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws1e{word-spacing:886.862400px;}
._d{margin-left:-48.384000px;}
._1{margin-left:-39.637200px;}
._6{margin-left:-28.814184px;}
._9{margin-left:-14.246400px;}
._c{margin-left:-12.667200px;}
._7{margin-left:-11.491200px;}
._5{margin-left:-7.992000px;}
._b{margin-left:-6.283200px;}
._4{margin-left:-4.050000px;}
._3{margin-left:-2.376000px;}
._2{margin-left:-1.056600px;}
._0{width:1.049964px;}
._8{width:11.988000px;}
._a{width:83.352000px;}
.fc1{color:rgb(141,141,141);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(42,42,42);}
.fcb{color:rgb(0,176,80);}
.fc3{color:rgb(0,86,141);}
.fc6{color:rgb(0,152,195);}
.fc0{color:rgb(0,61,100);}
.fc4{color:rgb(0,128,0);}
.fc7{color:rgb(0,176,240);}
.fca{color:rgb(0,112,192);}
.fc8{color:rgb(0,124,203);}
.fcd{color:rgb(0,0,255);}
.fc9{color:transparent;}
.fcc{color:rgb(0,0,144);}
.fs4{font-size:48.000000px;}
.fsc{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.fsa{font-size:120.000000px;}
.fs1{font-size:144.000000px;}
.fs9{font-size:168.000000px;}
.fs2{font-size:174.000000px;}
.fs3{font-size:192.000000px;}
.fs0{font-size:216.000000px;}
.fsb{font-size:240.000000px;}
.fs7{font-size:264.000000px;}
.y4f{bottom:-235.844870px;}
.y4e{bottom:-198.344870px;}
.y4d{bottom:-157.844975px;}
.y4c{bottom:-96.345005px;}
.y4b{bottom:-34.844990px;}
.y83{bottom:-16.837595px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y17{bottom:16.612390px;}
.y73{bottom:25.099915px;}
.yac{bottom:27.667180px;}
.y8f{bottom:30.186205px;}
.y84{bottom:35.160925px;}
.yb3{bottom:36.910975px;}
.y6a{bottom:40.537420px;}
.y82{bottom:41.662435px;}
.ya9{bottom:46.662460px;}
.ybf{bottom:51.282835px;}
.ya2{bottom:54.776425px;}
.y24{bottom:55.099900px;}
.yc6{bottom:56.971855px;}
.y16{bottom:59.099950px;}
.y1a{bottom:65.258215px;}
.ya1{bottom:90.776395px;}
.y4a{bottom:94.154950px;}
.y81{bottom:98.662405px;}
.y15{bottom:102.599980px;}
.yd5{bottom:125.886265px;}
.y49{bottom:143.654980px;}
.y33{bottom:144.150115px;}
.y14{bottom:146.099965px;}
.yba{bottom:147.704980px;}
.y40{bottom:148.599865px;}
.y63{bottom:152.099815px;}
.ycd{bottom:154.154980px;}
.y80{bottom:157.162315px;}
.ybe{bottom:161.662465px;}
.yb2{bottom:166.154980px;}
.y72{bottom:181.562515px;}
.y32{bottom:186.150115px;}
.y13{bottom:189.599965px;}
.y3f{bottom:190.599865px;}
.y89{bottom:197.654980px;}
.yc9{bottom:199.154980px;}
.y62{bottom:203.099815px;}
.y48{bottom:207.599965px;}
.yb9{bottom:209.204980px;}
.y23{bottom:210.599965px;}
.y7f{bottom:214.162315px;}
.ycc{bottom:223.154980px;}
.y31{bottom:229.650265px;}
.y12{bottom:233.099965px;}
.yb1{bottom:235.154980px;}
.y36{bottom:245.506165px;}
.y61{bottom:253.154830px;}
.y88{bottom:253.154980px;}
.y71{bottom:253.562365px;}
.y22{bottom:260.099965px;}
.y47{bottom:264.599965px;}
.yaa{bottom:265.154980px;}
.yc8{bottom:269.099965px;}
.y7e{bottom:271.162315px;}
.yb8{bottom:272.204980px;}
.y30{bottom:273.150115px;}
.y11{bottom:275.099965px;}
.y35{bottom:278.506165px;}
.ya0{bottom:288.224965px;}
.yc5{bottom:290.474965px;}
.y3d{bottom:298.349965px;}
.yb0{bottom:303.599965px;}
.y87{bottom:307.154980px;}
.y34{bottom:310.006165px;}
.y21{bottom:310.154980px;}
.y2f{bottom:313.650115px;}
.y60{bottom:315.599815px;}
.yd0{bottom:315.599965px;}
.y10{bottom:318.599965px;}
.y46{bottom:322.154980px;}
.yc4{bottom:323.474965px;}
.y9f{bottom:324.224965px;}
.y96{bottom:325.529980px;}
.y70{bottom:325.562365px;}
.y8e{bottom:326.654980px;}
.y7d{bottom:329.662315px;}
.yb7{bottom:333.704980px;}
.yd1{bottom:338.099965px;}
.y76{bottom:338.654980px;}
.y2e{bottom:339.150115px;}
.y3c{bottom:340.349965px;}
.yc3{bottom:354.974965px;}
.y9e{bottom:360.224965px;}
.yb{bottom:361.154980px;}
.yf{bottom:362.099965px;}
.y2d{bottom:363.150115px;}
.y5f{bottom:365.099815px;}
.y20{bottom:372.599965px;}
.y3a{bottom:373.006015px;}
.ycf{bottom:373.154980px;}
.y95{bottom:379.529980px;}
.y54{bottom:382.154980px;}
.y6f{bottom:384.599965px;}
.y7c{bottom:386.662315px;}
.y8d{bottom:388.154980px;}
.y2c{bottom:388.650115px;}
.y45{bottom:389.654980px;}
.yb6{bottom:394.724965px;}
.yc7{bottom:395.099965px;}
.y9d{bottom:396.224965px;}
.y75{bottom:400.154980px;}
.ye{bottom:405.599965px;}
.y39{bottom:409.006015px;}
.y2b{bottom:414.150115px;}
.y5e{bottom:415.154830px;}
.y86{bottom:416.654980px;}
.y3e{bottom:416.756215px;}
.y1f{bottom:423.599965px;}
.y6e{bottom:427.154980px;}
.ya{bottom:430.154980px;}
.ya8{bottom:431.255065px;}
.y9c{bottom:432.224965px;}
.y94{bottom:435.029980px;}
.y2a{bottom:439.650115px;}
.yce{bottom:441.599965px;}
.y53{bottom:443.654980px;}
.y7b{bottom:443.662315px;}
.y38{bottom:448.006015px;}
.yd{bottom:449.099965px;}
.y8c{bottom:451.154980px;}
.y44{bottom:453.599965px;}
.y74{bottom:461.654980px;}
.y29{bottom:468.150115px;}
.y9b{bottom:468.224965px;}
.y85{bottom:470.654980px;}
.y1e{bottom:473.099965px;}
.y5d{bottom:477.599815px;}
.y6d{bottom:482.099965px;}
.ya7{bottom:482.255065px;}
.yc2{bottom:486.592330px;}
.y93{bottom:489.029980px;}
.yc{bottom:491.099965px;}
.y7a{bottom:493.162315px;}
.y5{bottom:495.741130px;}
.y9{bottom:499.154980px;}
.yaf{bottom:500.099965px;}
.y9a{bottom:504.224965px;}
.y37{bottom:505.006015px;}
.y52{bottom:505.154980px;}
.y28{bottom:510.150115px;}
.y43{bottom:510.599965px;}
.y8b{bottom:512.654980px;}
.y1d{bottom:524.099965px;}
.y6c{bottom:526.154980px;}
.y5c{bottom:528.599815px;}
.ya6{bottom:531.755065px;}
.y41{bottom:535.912315px;}
.y99{bottom:540.224965px;}
.y79{bottom:544.162315px;}
.yc1{bottom:555.037315px;}
.yae{bottom:557.099965px;}
.y4{bottom:558.186115px;}
.yb5{bottom:559.049965px;}
.y8{bottom:567.599965px;}
.ybd{bottom:570.029980px;}
.yab{bottom:571.390315px;}
.y1c{bottom:573.599965px;}
.y98{bottom:576.224965px;}
.y5b{bottom:578.099815px;}
.y6b{bottom:579.599965px;}
.ya5{bottom:582.755065px;}
.y92{bottom:589.529980px;}
.y78{bottom:593.662315px;}
.y42{bottom:607.537315px;}
.y3b{bottom:613.162315px;}
.y27{bottom:613.175515px;}
.yad{bottom:614.099965px;}
.yd4{bottom:620.985565px;}
.yb4{bottom:623.549965px;}
.y69{bottom:626.654980px;}
.y5a{bottom:629.099815px;}
.ya4{bottom:632.255065px;}
.y91{bottom:636.974965px;}
.ybc{bottom:638.474965px;}
.y3{bottom:642.739465px;}
.ycb{bottom:645.262315px;}
.y51{bottom:650.062315px;}
.y58{bottom:651.862315px;}
.y66{bottom:656.362315px;}
.y7{bottom:662.662315px;}
.y68{bottom:674.099815px;}
.yd3{bottom:677.985565px;}
.y59{bottom:678.599815px;}
.y57{bottom:683.362315px;}
.y1b{bottom:683.662315px;}
.y18{bottom:688.462315px;}
.y19{bottom:690.862315px;}
.y8a{bottom:693.262315px;}
.y97{bottom:694.837315px;}
.y26{bottom:699.599815px;}
.y2{bottom:707.239465px;}
.y56{bottom:716.362315px;}
.ya3{bottom:718.181065px;}
.y6{bottom:719.662315px;}
.y65{bottom:720.862315px;}
.y50{bottom:722.062315px;}
.yca{bottom:723.262315px;}
.y77{bottom:727.424815px;}
.y67{bottom:727.931065px;}
.yd2{bottom:734.985565px;}
.y90{bottom:740.643715px;}
.y64{bottom:741.131065px;}
.yc0{bottom:743.043565px;}
.ybb{bottom:745.443565px;}
.y55{bottom:747.862315px;}
.y25{bottom:756.599965px;}
.h6{height:34.453125px;}
.h10{height:60.292969px;}
.hc{height:61.236328px;}
.hf{height:75.093750px;}
.h12{height:77.519531px;}
.h18{height:78.679688px;}
.h7{height:78.732422px;}
.h13{height:84.079627px;}
.hd{height:86.132812px;}
.h19{height:87.480469px;}
.he{height:100.125000px;}
.h5{height:103.359375px;}
.hb{height:104.976562px;}
.h1a{height:116.812500px;}
.h9{height:120.585938px;}
.h3{height:120.984375px;}
.h17{height:121.406250px;}
.h1b{height:122.390625px;}
.h15{height:122.472656px;}
.h14{height:133.500000px;}
.h4{height:137.812500px;}
.h16{height:139.968750px;}
.ha{height:150.187500px;}
.h2{height:155.039062px;}
.h11{height:172.265625px;}
.h8{height:189.492188px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x34{left:4.067125px;}
.x20{left:10.799999px;}
.x23{left:15.300000px;}
.x7{left:23.550000px;}
.x31{left:26.800769px;}
.x33{left:33.300000px;}
.x21{left:34.536328px;}
.x22{left:35.892778px;}
.x24{left:37.300035px;}
.x27{left:38.724915px;}
.x1{left:41.462109px;}
.x30{left:52.987560px;}
.x5{left:64.799985px;}
.x10{left:66.174915px;}
.x29{left:67.300020px;}
.x28{left:76.800581px;}
.xb{left:78.800664px;}
.x9{left:80.800755px;}
.x1c{left:87.179865px;}
.x1d{left:91.927425px;}
.x6{left:96.675780px;}
.xc{left:100.799985px;}
.x25{left:102.134457px;}
.xa{left:108.902235px;}
.xd{left:112.999170px;}
.x2a{left:116.369820px;}
.x1e{left:120.009495px;}
.x26{left:127.799985px;}
.x2d{left:184.438184px;}
.x2{left:221.602800px;}
.x15{left:234.300000px;}
.x2e{left:256.717965px;}
.x14{left:258.487500px;}
.x16{left:277.800000px;}
.x2c{left:283.439655px;}
.x1a{left:313.320270px;}
.x3{left:333.787800px;}
.xe{left:338.327250px;}
.x2b{left:373.423500px;}
.x11{left:463.024515px;}
.xf{left:467.599215px;}
.x1b{left:484.612500px;}
.x4{left:501.309450px;}
.x2f{left:530.804850px;}
.x12{left:572.612400px;}
.x17{left:577.692150px;}
.x32{left:589.987500px;}
.x13{left:615.112500px;}
.x18{left:666.862500px;}
.x19{left:710.362500px;}
.x1f{left:1031.760900px;}
.x8{left:1037.842950px;}
@media print{
.v1{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.799947pt;}
.ls33{letter-spacing:-10.656000pt;}
.ls2b{letter-spacing:-6.787200pt;}
.ls16{letter-spacing:-0.085333pt;}
.ls14{letter-spacing:-0.076800pt;}
.ls2f{letter-spacing:-0.074667pt;}
.ls5{letter-spacing:-0.068267pt;}
.ls29{letter-spacing:-0.059733pt;}
.ls3a{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051200pt;}
.ls21{letter-spacing:-0.048000pt;}
.ls3d{letter-spacing:-0.044800pt;}
.ls30{letter-spacing:-0.038400pt;}
.ls7{letter-spacing:-0.034133pt;}
.ls2e{letter-spacing:-0.029867pt;}
.ls22{letter-spacing:-0.028800pt;}
.lsf{letter-spacing:-0.025600pt;}
.ls20{letter-spacing:-0.019200pt;}
.ls3c{letter-spacing:-0.017067pt;}
.ls32{letter-spacing:-0.012800pt;}
.ls11{letter-spacing:-0.008533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.000752pt;}
.ls25{letter-spacing:0.005547pt;}
.ls26{letter-spacing:0.006933pt;}
.ls8{letter-spacing:0.009493pt;}
.lsa{letter-spacing:0.009600pt;}
.ls38{letter-spacing:0.011083pt;}
.ls23{letter-spacing:0.011093pt;}
.ls2d{letter-spacing:0.011200pt;}
.ls4{letter-spacing:0.012480pt;}
.ls3{letter-spacing:0.012640pt;}
.ls3b{letter-spacing:0.012693pt;}
.lsc{letter-spacing:0.012800pt;}
.ls2a{letter-spacing:0.014933pt;}
.ls2{letter-spacing:0.017067pt;}
.ls0{letter-spacing:0.019200pt;}
.ls24{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.023467pt;}
.ls1f{letter-spacing:0.025600pt;}
.ls28{letter-spacing:0.028800pt;}
.ls2c{letter-spacing:0.029867pt;}
.ls13{letter-spacing:0.034133pt;}
.lsd{letter-spacing:0.038400pt;}
.ls1e{letter-spacing:0.044800pt;}
.ls27{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.051200pt;}
.ls39{letter-spacing:0.057184pt;}
.ls31{letter-spacing:0.057600pt;}
.ls1d{letter-spacing:0.059733pt;}
.ls10{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.068267pt;}
.ls3e{letter-spacing:0.070400pt;}
.ls1c{letter-spacing:0.074667pt;}
.ls15{letter-spacing:0.076800pt;}
.ls17{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.088533pt;}
.ls19{letter-spacing:0.093867pt;}
.lsb{letter-spacing:0.102400pt;}
.ls3f{letter-spacing:0.117333pt;}
.ls35{letter-spacing:2.717867pt;}
.ls12{letter-spacing:44.583200pt;}
.ls1b{letter-spacing:53.176981pt;}
.ls34{letter-spacing:53.177024pt;}
.ls37{letter-spacing:61.770736pt;}
.ws34{word-spacing:-47.445333pt;}
.ws1a{word-spacing:-35.609600pt;}
.ws1c{word-spacing:-26.707200pt;}
.ws1b{word-spacing:-26.688000pt;}
.ws2e{word-spacing:-16.032000pt;}
.ws33{word-spacing:-0.352000pt;}
.ws15{word-spacing:-0.328533pt;}
.ws2d{word-spacing:-0.298667pt;}
.ws11{word-spacing:-0.273067pt;}
.ws14{word-spacing:-0.258133pt;}
.ws12{word-spacing:-0.256000pt;}
.ws2c{word-spacing:-0.249600pt;}
.ws30{word-spacing:-0.238933pt;}
.ws13{word-spacing:-0.234667pt;}
.wsb{word-spacing:-0.230400pt;}
.ws17{word-spacing:-0.224000pt;}
.ws21{word-spacing:-0.213333pt;}
.ws1{word-spacing:-0.211200pt;}
.ws18{word-spacing:-0.209067pt;}
.wsf{word-spacing:-0.204800pt;}
.ws19{word-spacing:-0.194133pt;}
.ws0{word-spacing:-0.192000pt;}
.ws5{word-spacing:-0.187733pt;}
.ws9{word-spacing:-0.179200pt;}
.ws31{word-spacing:-0.172800pt;}
.ws4{word-spacing:-0.170667pt;}
.wsd{word-spacing:-0.166400pt;}
.ws29{word-spacing:-0.164267pt;}
.ws2{word-spacing:-0.154667pt;}
.ws2b{word-spacing:-0.153600pt;}
.ws16{word-spacing:-0.149333pt;}
.ws25{word-spacing:-0.144000pt;}
.wsc{word-spacing:-0.140800pt;}
.ws7{word-spacing:-0.136533pt;}
.ws2f{word-spacing:-0.134400pt;}
.wsa{word-spacing:-0.128000pt;}
.ws26{word-spacing:-0.124800pt;}
.ws28{word-spacing:-0.119467pt;}
.wse{word-spacing:-0.115200pt;}
.ws1d{word-spacing:-0.106667pt;}
.ws24{word-spacing:-0.105600pt;}
.ws32{word-spacing:-0.104533pt;}
.ws6{word-spacing:-0.102400pt;}
.ws23{word-spacing:-0.096000pt;}
.ws22{word-spacing:-0.089600pt;}
.ws10{word-spacing:-0.085333pt;}
.ws8{word-spacing:-0.076800pt;}
.ws2a{word-spacing:-0.074667pt;}
.ws20{word-spacing:-0.067200pt;}
.ws27{word-spacing:-0.064000pt;}
.ws1f{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1e{word-spacing:788.322133pt;}
._d{margin-left:-43.008000pt;}
._1{margin-left:-35.233067pt;}
._6{margin-left:-25.612608pt;}
._9{margin-left:-12.663467pt;}
._c{margin-left:-11.259733pt;}
._7{margin-left:-10.214400pt;}
._5{margin-left:-7.104000pt;}
._b{margin-left:-5.585067pt;}
._4{margin-left:-3.600000pt;}
._3{margin-left:-2.112000pt;}
._2{margin-left:-0.939200pt;}
._0{width:0.933301pt;}
._8{width:10.656000pt;}
._a{width:74.090667pt;}
.fs4{font-size:42.666667pt;}
.fsc{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.fsa{font-size:106.666667pt;}
.fs1{font-size:128.000000pt;}
.fs9{font-size:149.333333pt;}
.fs2{font-size:154.666667pt;}
.fs3{font-size:170.666667pt;}
.fs0{font-size:192.000000pt;}
.fsb{font-size:213.333333pt;}
.fs7{font-size:234.666667pt;}
.y4f{bottom:-209.639884pt;}
.y4e{bottom:-176.306551pt;}
.y4d{bottom:-140.306644pt;}
.y4c{bottom:-85.640004pt;}
.y4b{bottom:-30.973324pt;}
.y83{bottom:-14.966751pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y17{bottom:14.766569pt;}
.y73{bottom:22.311036pt;}
.yac{bottom:24.593049pt;}
.y8f{bottom:26.832182pt;}
.y84{bottom:31.254156pt;}
.yb3{bottom:32.809756pt;}
.y6a{bottom:36.033262pt;}
.y82{bottom:37.033276pt;}
.ya9{bottom:41.477742pt;}
.ybf{bottom:45.584742pt;}
.ya2{bottom:48.690156pt;}
.y24{bottom:48.977689pt;}
.yc6{bottom:50.641649pt;}
.y16{bottom:52.533289pt;}
.y1a{bottom:58.007302pt;}
.ya1{bottom:80.690129pt;}
.y4a{bottom:83.693289pt;}
.y81{bottom:87.699916pt;}
.y15{bottom:91.199982pt;}
.yd5{bottom:111.898902pt;}
.y49{bottom:127.693316pt;}
.y33{bottom:128.133436pt;}
.y14{bottom:129.866636pt;}
.yba{bottom:131.293316pt;}
.y40{bottom:132.088769pt;}
.y63{bottom:135.199836pt;}
.ycd{bottom:137.026649pt;}
.y80{bottom:139.699836pt;}
.ybe{bottom:143.699969pt;}
.yb2{bottom:147.693316pt;}
.y72{bottom:161.388902pt;}
.y32{bottom:165.466769pt;}
.y13{bottom:168.533302pt;}
.y3f{bottom:169.422102pt;}
.y89{bottom:175.693316pt;}
.yc9{bottom:177.026649pt;}
.y62{bottom:180.533169pt;}
.y48{bottom:184.533302pt;}
.yb9{bottom:185.959982pt;}
.y23{bottom:187.199969pt;}
.y7f{bottom:190.366502pt;}
.ycc{bottom:198.359982pt;}
.y31{bottom:204.133569pt;}
.y12{bottom:207.199969pt;}
.yb1{bottom:209.026649pt;}
.y36{bottom:218.227702pt;}
.y61{bottom:225.026516pt;}
.y88{bottom:225.026649pt;}
.y71{bottom:225.388769pt;}
.y22{bottom:231.199969pt;}
.y47{bottom:235.199969pt;}
.yaa{bottom:235.693316pt;}
.yc8{bottom:239.199969pt;}
.y7e{bottom:241.033169pt;}
.yb8{bottom:241.959982pt;}
.y30{bottom:242.800102pt;}
.y11{bottom:244.533302pt;}
.y35{bottom:247.561036pt;}
.ya0{bottom:256.199969pt;}
.yc5{bottom:258.199969pt;}
.y3d{bottom:265.199969pt;}
.yb0{bottom:269.866636pt;}
.y87{bottom:273.026649pt;}
.y34{bottom:275.561036pt;}
.y21{bottom:275.693316pt;}
.y2f{bottom:278.800102pt;}
.y60{bottom:280.533169pt;}
.yd0{bottom:280.533302pt;}
.y10{bottom:283.199969pt;}
.y46{bottom:286.359982pt;}
.yc4{bottom:287.533302pt;}
.y9f{bottom:288.199969pt;}
.y96{bottom:289.359982pt;}
.y70{bottom:289.388769pt;}
.y8e{bottom:290.359982pt;}
.y7d{bottom:293.033169pt;}
.yb7{bottom:296.626649pt;}
.yd1{bottom:300.533302pt;}
.y76{bottom:301.026649pt;}
.y2e{bottom:301.466769pt;}
.y3c{bottom:302.533302pt;}
.yc3{bottom:315.533302pt;}
.y9e{bottom:320.199969pt;}
.yb{bottom:321.026649pt;}
.yf{bottom:321.866636pt;}
.y2d{bottom:322.800102pt;}
.y5f{bottom:324.533169pt;}
.y20{bottom:331.199969pt;}
.y3a{bottom:331.560902pt;}
.ycf{bottom:331.693316pt;}
.y95{bottom:337.359982pt;}
.y54{bottom:339.693316pt;}
.y6f{bottom:341.866636pt;}
.y7c{bottom:343.699836pt;}
.y8d{bottom:345.026649pt;}
.y2c{bottom:345.466769pt;}
.y45{bottom:346.359982pt;}
.yb6{bottom:350.866636pt;}
.yc7{bottom:351.199969pt;}
.y9d{bottom:352.199969pt;}
.y75{bottom:355.693316pt;}
.ye{bottom:360.533302pt;}
.y39{bottom:363.560902pt;}
.y2b{bottom:368.133436pt;}
.y5e{bottom:369.026516pt;}
.y86{bottom:370.359982pt;}
.y3e{bottom:370.449969pt;}
.y1f{bottom:376.533302pt;}
.y6e{bottom:379.693316pt;}
.ya{bottom:382.359982pt;}
.ya8{bottom:383.337836pt;}
.y9c{bottom:384.199969pt;}
.y94{bottom:386.693316pt;}
.y2a{bottom:390.800102pt;}
.yce{bottom:392.533302pt;}
.y53{bottom:394.359982pt;}
.y7b{bottom:394.366502pt;}
.y38{bottom:398.227569pt;}
.yd{bottom:399.199969pt;}
.y8c{bottom:401.026649pt;}
.y44{bottom:403.199969pt;}
.y74{bottom:410.359982pt;}
.y29{bottom:416.133436pt;}
.y9b{bottom:416.199969pt;}
.y85{bottom:418.359982pt;}
.y1e{bottom:420.533302pt;}
.y5d{bottom:424.533169pt;}
.y6d{bottom:428.533302pt;}
.ya7{bottom:428.671169pt;}
.yc2{bottom:432.526516pt;}
.y93{bottom:434.693316pt;}
.yc{bottom:436.533302pt;}
.y7a{bottom:438.366502pt;}
.y5{bottom:440.658782pt;}
.y9{bottom:443.693316pt;}
.yaf{bottom:444.533302pt;}
.y9a{bottom:448.199969pt;}
.y37{bottom:448.894236pt;}
.y52{bottom:449.026649pt;}
.y28{bottom:453.466769pt;}
.y43{bottom:453.866636pt;}
.y8b{bottom:455.693316pt;}
.y1d{bottom:465.866636pt;}
.y6c{bottom:467.693316pt;}
.y5c{bottom:469.866502pt;}
.ya6{bottom:472.671169pt;}
.y41{bottom:476.366502pt;}
.y99{bottom:480.199969pt;}
.y79{bottom:483.699836pt;}
.yc1{bottom:493.366502pt;}
.yae{bottom:495.199969pt;}
.y4{bottom:496.165436pt;}
.yb5{bottom:496.933302pt;}
.y8{bottom:504.533302pt;}
.ybd{bottom:506.693316pt;}
.yab{bottom:507.902502pt;}
.y1c{bottom:509.866636pt;}
.y98{bottom:512.199969pt;}
.y5b{bottom:513.866502pt;}
.y6b{bottom:515.199969pt;}
.ya5{bottom:518.004502pt;}
.y92{bottom:524.026649pt;}
.y78{bottom:527.699836pt;}
.y42{bottom:540.033169pt;}
.y3b{bottom:545.033169pt;}
.y27{bottom:545.044902pt;}
.yad{bottom:545.866636pt;}
.yd4{bottom:551.987169pt;}
.yb4{bottom:554.266636pt;}
.y69{bottom:557.026649pt;}
.y5a{bottom:559.199836pt;}
.ya4{bottom:562.004502pt;}
.y91{bottom:566.199969pt;}
.ybc{bottom:567.533302pt;}
.y3{bottom:571.323969pt;}
.ycb{bottom:573.566502pt;}
.y51{bottom:577.833169pt;}
.y58{bottom:579.433169pt;}
.y66{bottom:583.433169pt;}
.y7{bottom:589.033169pt;}
.y68{bottom:599.199836pt;}
.yd3{bottom:602.653836pt;}
.y59{bottom:603.199836pt;}
.y57{bottom:607.433169pt;}
.y1b{bottom:607.699836pt;}
.y18{bottom:611.966502pt;}
.y19{bottom:614.099836pt;}
.y8a{bottom:616.233169pt;}
.y97{bottom:617.633169pt;}
.y26{bottom:621.866502pt;}
.y2{bottom:628.657302pt;}
.y56{bottom:636.766502pt;}
.ya3{bottom:638.383169pt;}
.y6{bottom:639.699836pt;}
.y65{bottom:640.766502pt;}
.y50{bottom:641.833169pt;}
.yca{bottom:642.899836pt;}
.y77{bottom:646.599836pt;}
.y67{bottom:647.049836pt;}
.yd2{bottom:653.320502pt;}
.y90{bottom:658.349969pt;}
.y64{bottom:658.783169pt;}
.yc0{bottom:660.483169pt;}
.ybb{bottom:662.616502pt;}
.y55{bottom:664.766502pt;}
.y25{bottom:672.533302pt;}
.h6{height:30.625000pt;}
.h10{height:53.593750pt;}
.hc{height:54.432292pt;}
.hf{height:66.750000pt;}
.h12{height:68.906250pt;}
.h18{height:69.937500pt;}
.h7{height:69.984375pt;}
.h13{height:74.737447pt;}
.hd{height:76.562500pt;}
.h19{height:77.760417pt;}
.he{height:89.000000pt;}
.h5{height:91.875000pt;}
.hb{height:93.312500pt;}
.h1a{height:103.833333pt;}
.h9{height:107.187500pt;}
.h3{height:107.541667pt;}
.h17{height:107.916667pt;}
.h1b{height:108.791667pt;}
.h15{height:108.864583pt;}
.h14{height:118.666667pt;}
.h4{height:122.500000pt;}
.h16{height:124.416667pt;}
.ha{height:133.500000pt;}
.h2{height:137.812500pt;}
.h11{height:153.125000pt;}
.h8{height:168.437500pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x34{left:3.615223pt;}
.x20{left:9.599999pt;}
.x23{left:13.600000pt;}
.x7{left:20.933333pt;}
.x31{left:23.822905pt;}
.x33{left:29.600000pt;}
.x21{left:30.698959pt;}
.x22{left:31.904692pt;}
.x24{left:33.155587pt;}
.x27{left:34.422147pt;}
.x1{left:36.855208pt;}
.x30{left:47.100053pt;}
.x5{left:57.599987pt;}
.x10{left:58.822147pt;}
.x29{left:59.822240pt;}
.x28{left:68.267183pt;}
.xb{left:70.045035pt;}
.x9{left:71.822893pt;}
.x1c{left:77.493213pt;}
.x1d{left:81.713267pt;}
.x6{left:85.934027pt;}
.xc{left:89.599987pt;}
.x25{left:90.786184pt;}
.xa{left:96.801987pt;}
.xd{left:100.443707pt;}
.x2a{left:103.439840pt;}
.x1e{left:106.675107pt;}
.x26{left:113.599987pt;}
.x2d{left:163.945052pt;}
.x2{left:196.980267pt;}
.x15{left:208.266667pt;}
.x2e{left:228.193747pt;}
.x14{left:229.766667pt;}
.x16{left:246.933333pt;}
.x2c{left:251.946360pt;}
.x1a{left:278.506907pt;}
.x3{left:296.700267pt;}
.xe{left:300.735333pt;}
.x2b{left:331.932000pt;}
.x11{left:411.577347pt;}
.xf{left:415.643747pt;}
.x1b{left:430.766667pt;}
.x4{left:445.608400pt;}
.x2f{left:471.826533pt;}
.x12{left:508.988800pt;}
.x17{left:513.504133pt;}
.x32{left:524.433333pt;}
.x13{left:546.766667pt;}
.x18{left:592.766667pt;}
.x19{left:631.433333pt;}
.x1f{left:917.120800pt;}
.x8{left:922.527067pt;}
}




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