
    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_033ee0c9abf2c2ba0a1c3ba1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088000;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_738f33e3da01a5155c5284ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_47162bf84024df829bcfd20b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907000;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_749d52128a22023868182387.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.800000px;}
.v1{vertical-align:41.400000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:82.440000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-34.560000px;}
.ws1{word-spacing:-23.040000px;}
.ws0{word-spacing:-20.160000px;}
.ws5{word-spacing:-19.320000px;}
.ws2{word-spacing:-15.960000px;}
.wsa{word-spacing:-15.360000px;}
.wsd{word-spacing:-13.440000px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:95.640000px;}
.ws14{word-spacing:99.456000px;}
.ws12{word-spacing:112.704000px;}
.ws9{word-spacing:194.385000px;}
.ws8{word-spacing:198.759000px;}
.ws13{word-spacing:227.904000px;}
.wsf{word-spacing:234.480000px;}
.ws6{word-spacing:242.121000px;}
.ws18{word-spacing:242.880000px;}
.ws16{word-spacing:244.800000px;}
.ws15{word-spacing:250.224000px;}
.wsb{word-spacing:253.152000px;}
.wse{word-spacing:254.232000px;}
.ws17{word-spacing:256.848000px;}
.ws11{word-spacing:281.304000px;}
.ws7{word-spacing:294.150000px;}
.wsc{word-spacing:1282.104000px;}
._13{margin-left:-1295.352000px;}
._7{margin-left:-7.968000px;}
._2b{margin-left:-6.744000px;}
._a{margin-left:-5.616000px;}
._d{margin-left:-4.608000px;}
._2{margin-left:-3.264000px;}
._0{margin-left:-2.016000px;}
._3{margin-left:-1.008000px;}
._1{width:1.440000px;}
._5{width:2.568000px;}
._4{width:3.696000px;}
._9{width:4.728000px;}
._8{width:6.216000px;}
._6{width:7.248000px;}
._c{width:9.072000px;}
._b{width:10.656000px;}
._6c{width:83.097000px;}
._2f{width:98.160000px;}
._31{width:109.560000px;}
._30{width:125.688000px;}
._2e{width:132.360000px;}
._7c{width:153.744000px;}
._52{width:157.608000px;}
._35{width:160.344000px;}
._e{width:163.392000px;}
._f{width:165.108000px;}
._7a{width:167.088000px;}
._51{width:183.000000px;}
._4d{width:189.912000px;}
._8b{width:191.487000px;}
._7e{width:194.976000px;}
._34{width:197.448000px;}
._12{width:203.004000px;}
._79{width:204.936000px;}
._28{width:206.616000px;}
._43{width:209.016000px;}
._73{width:212.103000px;}
._56{width:213.528000px;}
._61{width:215.520000px;}
._7d{width:216.744000px;}
._71{width:222.168000px;}
._41{width:223.968000px;}
._4c{width:226.296000px;}
._58{width:228.768000px;}
._8a{width:229.812000px;}
._78{width:231.168000px;}
._3d{width:233.568000px;}
._65{width:235.968000px;}
._37{width:237.168000px;}
._54{width:238.368000px;}
._38{width:239.448000px;}
._60{width:241.032000px;}
._76{width:242.616000px;}
._55{width:244.008000px;}
._42{width:245.496000px;}
._7f{width:247.260000px;}
._4f{width:248.568000px;}
._47{width:249.897000px;}
._32{width:251.784000px;}
._6a{width:253.368000px;}
._5e{width:255.168000px;}
._59{width:257.916000px;}
._6e{width:259.800000px;}
._46{width:263.520000px;}
._24{width:265.416000px;}
._63{width:267.120000px;}
._89{width:269.544000px;}
._68{width:270.624000px;}
._5c{width:274.080000px;}
._86{width:277.776000px;}
._87{width:279.264000px;}
._75{width:281.064000px;}
._3f{width:284.616000px;}
._49{width:288.480000px;}
._81{width:298.152000px;}
._5b{width:300.552000px;}
._72{width:302.664000px;}
._3b{width:304.128000px;}
._23{width:307.710000px;}
._11{width:312.171000px;}
._85{width:314.400000px;}
._10{width:318.510000px;}
._3e{width:336.696000px;}
._66{width:337.968000px;}
._26{width:341.478000px;}
._88{width:343.872000px;}
._74{width:345.480000px;}
._7b{width:346.560000px;}
._4b{width:347.808000px;}
._50{width:351.000000px;}
._48{width:353.616000px;}
._80{width:356.496000px;}
._62{width:362.823000px;}
._6b{width:365.736000px;}
._83{width:368.520000px;}
._45{width:370.008000px;}
._5f{width:373.272000px;}
._5a{width:374.280000px;}
._33{width:375.336000px;}
._6d{width:380.640000px;}
._3a{width:383.760000px;}
._70{width:390.072000px;}
._6f{width:391.092000px;}
._25{width:398.352000px;}
._40{width:421.368000px;}
._84{width:425.370000px;}
._36{width:472.296000px;}
._57{width:481.512000px;}
._53{width:498.456000px;}
._39{width:504.732000px;}
._2d{width:534.960000px;}
._1d{width:550.308000px;}
._29{width:584.934000px;}
._16{width:606.855000px;}
._27{width:609.057000px;}
._44{width:620.376000px;}
._3c{width:650.664000px;}
._2c{width:663.612000px;}
._19{width:680.004000px;}
._17{width:682.032000px;}
._15{width:706.812000px;}
._64{width:729.912000px;}
._20{width:731.343000px;}
._4e{width:745.848000px;}
._1e{width:779.550000px;}
._4a{width:792.216000px;}
._5d{width:899.544000px;}
._21{width:943.773000px;}
._1b{width:944.829000px;}
._67{width:1059.540000px;}
._1a{width:1063.455000px;}
._1f{width:1101.246000px;}
._1c{width:1130.598000px;}
._69{width:1211.976000px;}
._77{width:1213.032000px;}
._82{width:1239.672000px;}
._14{width:1255.968000px;}
._18{width:1329.489000px;}
._2a{width:1525.917000px;}
._22{width:1553.733000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1b{bottom:90.708000px;}
.y73{bottom:155.958000px;}
.yec{bottom:156.258000px;}
.y4e{bottom:157.308000px;}
.yeb{bottom:163.458000px;}
.y90{bottom:169.308000px;}
.y72{bottom:180.708000px;}
.y2d{bottom:182.808000px;}
.y103{bottom:187.158000px;}
.y4d{bottom:192.558000px;}
.yc0{bottom:194.658000px;}
.yea{bottom:197.958000px;}
.y71{bottom:205.458000px;}
.y2c{bottom:207.558000px;}
.y8f{bottom:210.258000px;}
.y102{bottom:218.358000px;}
.ybf{bottom:219.408000px;}
.ye9{bottom:225.258000px;}
.y4c{bottom:227.808000px;}
.y70{bottom:240.708000px;}
.y2b{bottom:242.808000px;}
.y101{bottom:245.658000px;}
.y8e{bottom:251.208000px;}
.ye8{bottom:252.708000px;}
.y100{bottom:252.858000px;}
.ybe{bottom:254.658000px;}
.y4b{bottom:263.058000px;}
.y6f{bottom:265.458000px;}
.y2a{bottom:267.558000px;}
.ya9{bottom:275.508000px;}
.ybd{bottom:279.408000px;}
.ye7{bottom:283.908000px;}
.yff{bottom:287.508000px;}
.y6e{bottom:290.208000px;}
.y8d{bottom:292.158000px;}
.y4a{bottom:298.308000px;}
.yca{bottom:300.408000px;}
.y29{bottom:302.808000px;}
.ybc{bottom:304.158000px;}
.ya8{bottom:309.558000px;}
.ye6{bottom:311.208000px;}
.yfe{bottom:314.808000px;}
.yc9{bottom:325.158000px;}
.y6d{bottom:325.458000px;}
.y28{bottom:327.558000px;}
.y1a{bottom:328.608000px;}
.y8c{bottom:329.658000px;}
.y49{bottom:333.558000px;}
.yfd{bottom:338.208000px;}
.ye5{bottom:338.658000px;}
.ybb{bottom:339.408000px;}
.ya7{bottom:343.608000px;}
.y6c{bottom:350.208000px;}
.y8b{bottom:350.358000px;}
.yc8{bottom:360.408000px;}
.yfc{bottom:361.608000px;}
.y27{bottom:362.808000px;}
.y19{bottom:363.858000px;}
.yba{bottom:364.158000px;}
.y48{bottom:368.808000px;}
.ye4{bottom:369.858000px;}
.ya6{bottom:374.658000px;}
.y8a{bottom:384.408000px;}
.yc7{bottom:385.158000px;}
.y6b{bottom:385.458000px;}
.y26{bottom:387.558000px;}
.y18{bottom:388.608000px;}
.yb9{bottom:399.408000px;}
.ye3{bottom:401.208000px;}
.yfb{bottom:403.308000px;}
.y47{bottom:404.058000px;}
.y89{bottom:405.108000px;}
.ya5{bottom:409.908000px;}
.y6a{bottom:410.208000px;}
.y25{bottom:412.308000px;}
.y17{bottom:413.358000px;}
.yb8{bottom:424.158000px;}
.y88{bottom:425.808000px;}
.y46{bottom:428.808000px;}
.ye2{bottom:432.408000px;}
.ya4{bottom:434.658000px;}
.y16{bottom:438.108000px;}
.y69{bottom:445.458000px;}
.yb7{bottom:448.908000px;}
.y45{bottom:453.558000px;}
.ya3{bottom:459.408000px;}
.y15{bottom:462.858000px;}
.y87{bottom:463.308000px;}
.ye1{bottom:463.758000px;}
.yfa{bottom:465.858000px;}
.yc6{bottom:469.908000px;}
.y68{bottom:470.208000px;}
.yb6{bottom:473.658000px;}
.ya2{bottom:484.158000px;}
.y14{bottom:487.608000px;}
.y44{bottom:488.808000px;}
.yc5{bottom:494.658000px;}
.y67{bottom:494.958000px;}
.yf9{bottom:497.208000px;}
.yb5{bottom:498.408000px;}
.y86{bottom:504.258000px;}
.ya1{bottom:508.908000px;}
.y13{bottom:512.358000px;}
.y43{bottom:513.558000px;}
.yc4{bottom:519.408000px;}
.ye0{bottom:526.308000px;}
.yf8{bottom:528.408000px;}
.y66{bottom:530.208000px;}
.ya0{bottom:533.658000px;}
.y12{bottom:537.108000px;}
.y42{bottom:538.308000px;}
.y85{bottom:541.758000px;}
.yc3{bottom:544.158000px;}
.y84{bottom:552.108000px;}
.ydf{bottom:553.608000px;}
.yf7{bottom:555.708000px;}
.y9f{bottom:558.408000px;}
.yd4{bottom:559.758000px;}
.yde{bottom:560.808000px;}
.y11{bottom:561.858000px;}
.yf6{bottom:562.908000px;}
.y41{bottom:563.058000px;}
.y65{bottom:565.458000px;}
.yc2{bottom:568.908000px;}
.yb4{bottom:583.158000px;}
.yd3{bottom:584.508000px;}
.y10{bottom:586.608000px;}
.y40{bottom:587.808000px;}
.ydd{bottom:591.408000px;}
.y83{bottom:593.658000px;}
.yf5{bottom:597.558000px;}
.ydc{bottom:598.608000px;}
.y64{bottom:600.708000px;}
.yb3{bottom:607.908000px;}
.yf{bottom:611.358000px;}
.y9e{bottom:611.658000px;}
.y3f{bottom:612.558000px;}
.yd2{bottom:613.608000px;}
.y82{bottom:618.408000px;}
.yf4{bottom:628.758000px;}
.yb2{bottom:632.658000px;}
.ydb{bottom:633.108000px;}
.y63{bottom:635.958000px;}
.ye{bottom:636.108000px;}
.y3e{bottom:637.308000px;}
.yd1{bottom:642.558000px;}
.yc1{bottom:643.158000px;}
.y9d{bottom:645.708000px;}
.y81{bottom:653.658000px;}
.yf3{bottom:656.058000px;}
.yb1{bottom:657.408000px;}
.yd{bottom:660.858000px;}
.y3d{bottom:662.058000px;}
.yf2{bottom:663.258000px;}
.yda{bottom:664.458000px;}
.y62{bottom:671.208000px;}
.yd0{bottom:671.658000px;}
.y80{bottom:678.408000px;}
.y9c{bottom:679.758000px;}
.y3c{bottom:686.808000px;}
.yd9{bottom:691.758000px;}
.yb0{bottom:692.658000px;}
.y61{bottom:695.958000px;}
.yf1{bottom:697.908000px;}
.yd8{bottom:698.958000px;}
.y7f{bottom:703.158000px;}
.ycf{bottom:706.908000px;}
.y9b{bottom:710.808000px;}
.yaf{bottom:717.408000px;}
.y60{bottom:720.708000px;}
.y3b{bottom:722.058000px;}
.yf0{bottom:725.208000px;}
.y7e{bottom:727.908000px;}
.yc{bottom:731.358000px;}
.yce{bottom:731.658000px;}
.yef{bottom:732.408000px;}
.yd7{bottom:733.608000px;}
.yd6{bottom:740.808000px;}
.yae{bottom:742.158000px;}
.y9a{bottom:746.058000px;}
.y3a{bottom:746.808000px;}
.y7d{bottom:752.658000px;}
.yb{bottom:752.808000px;}
.y58{bottom:764.808000px;}
.yad{bottom:766.908000px;}
.y39{bottom:771.558000px;}
.y5f{bottom:773.808000px;}
.ya{bottom:774.408000px;}
.y7c{bottom:777.408000px;}
.y57{bottom:789.558000px;}
.ycd{bottom:791.658000px;}
.y5e{bottom:794.508000px;}
.y9{bottom:795.858000px;}
.y38{bottom:796.308000px;}
.yd5{bottom:796.458000px;}
.yee{bottom:798.258000px;}
.yac{bottom:802.158000px;}
.y99{bottom:802.758000px;}
.yed{bottom:805.458000px;}
.y7b{bottom:812.658000px;}
.y56{bottom:814.308000px;}
.y5d{bottom:815.208000px;}
.y77{bottom:824.808000px;}
.yab{bottom:826.908000px;}
.y37{bottom:831.558000px;}
.y5c{bottom:835.908000px;}
.y7a{bottom:837.408000px;}
.y55{bottom:839.058000px;}
.y98{bottom:840.258000px;}
.y76{bottom:849.558000px;}
.yaa{bottom:851.658000px;}
.y36{bottom:856.308000px;}
.y97{bottom:860.958000px;}
.y79{bottom:862.158000px;}
.y8{bottom:869.508000px;}
.y5b{bottom:869.958000px;}
.y23{bottom:872.658000px;}
.y54{bottom:874.308000px;}
.ycc{bottom:876.408000px;}
.y35{bottom:881.058000px;}
.y75{bottom:884.808000px;}
.y78{bottom:886.908000px;}
.y7{bottom:896.208000px;}
.y22{bottom:897.408000px;}
.y96{bottom:898.458000px;}
.y5a{bottom:901.158000px;}
.y34{bottom:905.808000px;}
.y53{bottom:909.558000px;}
.y24{bottom:911.658000px;}
.y74{bottom:920.058000px;}
.y21{bottom:922.158000px;}
.y6{bottom:922.908000px;}
.y59{bottom:936.408000px;}
.y95{bottom:939.408000px;}
.y33{bottom:941.058000px;}
.y52{bottom:944.808000px;}
.y20{bottom:946.908000px;}
.y5{bottom:949.608000px;}
.ycb{bottom:961.158000px;}
.y32{bottom:965.808000px;}
.y1f{bottom:971.658000px;}
.y51{bottom:980.058000px;}
.y94{bottom:980.358000px;}
.y1e{bottom:996.408000px;}
.y31{bottom:1001.058000px;}
.y4{bottom:1014.108000px;}
.y50{bottom:1015.308000px;}
.y1d{bottom:1021.158000px;}
.y93{bottom:1021.308000px;}
.y30{bottom:1025.808000px;}
.y3{bottom:1047.108000px;}
.y4f{bottom:1050.558000px;}
.y92{bottom:1058.808000px;}
.y2f{bottom:1061.058000px;}
.y1c{bottom:1066.458000px;}
.y91{bottom:1069.158000px;}
.y2{bottom:1080.108000px;}
.y2e{bottom:1085.808000px;}
.h11{height:41.472000px;}
.hf{height:42.480000px;}
.h5{height:49.248000px;}
.hb{height:51.624000px;}
.h8{height:59.616000px;}
.h7{height:61.065000px;}
.h3{height:62.208000px;}
.h4{height:63.720000px;}
.h10{height:70.272000px;}
.he{height:71.280000px;}
.h2{height:84.960000px;}
.h6{height:95.580000px;}
.ha{height:101.016000px;}
.h9{height:102.465000px;}
.hd{height:917.956500px;}
.hc{height:918.000000px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.w3{width:1187.956500px;}
.w2{width:1188.000000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x7{left:91.500000px;}
.x11{left:92.700000px;}
.x12{left:94.350000px;}
.x3{left:96.300000px;}
.x2{left:97.350000px;}
.x16{left:98.700000px;}
.x14{left:99.750000px;}
.x4{left:112.200000px;}
.x6{left:117.750000px;}
.xf{left:126.600000px;}
.x5{left:139.200000px;}
.x19{left:175.050000px;}
.x1a{left:180.750000px;}
.x17{left:188.400000px;}
.x10{left:211.350000px;}
.x18{left:228.150000px;}
.xc{left:234.900000px;}
.x8{left:274.650000px;}
.x15{left:289.650000px;}
.x9{left:344.100000px;}
.xa{left:465.150000px;}
.xd{left:612.600000px;}
.xe{left:656.550000px;}
.xb{left:667.800000px;}
.x13{left:1000.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:25.600000pt;}
.v1{vertical-align:36.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:73.280000pt;}
.ws4{word-spacing:-30.720000pt;}
.ws1{word-spacing:-20.480000pt;}
.ws0{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.173333pt;}
.ws2{word-spacing:-14.186667pt;}
.wsa{word-spacing:-13.653333pt;}
.wsd{word-spacing:-11.946667pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:85.013333pt;}
.ws14{word-spacing:88.405333pt;}
.ws12{word-spacing:100.181333pt;}
.ws9{word-spacing:172.786667pt;}
.ws8{word-spacing:176.674667pt;}
.ws13{word-spacing:202.581333pt;}
.wsf{word-spacing:208.426667pt;}
.ws6{word-spacing:215.218667pt;}
.ws18{word-spacing:215.893333pt;}
.ws16{word-spacing:217.600000pt;}
.ws15{word-spacing:222.421333pt;}
.wsb{word-spacing:225.024000pt;}
.wse{word-spacing:225.984000pt;}
.ws17{word-spacing:228.309333pt;}
.ws11{word-spacing:250.048000pt;}
.ws7{word-spacing:261.466667pt;}
.wsc{word-spacing:1139.648000pt;}
._13{margin-left:-1151.424000pt;}
._7{margin-left:-7.082667pt;}
._2b{margin-left:-5.994667pt;}
._a{margin-left:-4.992000pt;}
._d{margin-left:-4.096000pt;}
._2{margin-left:-2.901333pt;}
._0{margin-left:-1.792000pt;}
._3{margin-left:-0.896000pt;}
._1{width:1.280000pt;}
._5{width:2.282667pt;}
._4{width:3.285333pt;}
._9{width:4.202667pt;}
._8{width:5.525333pt;}
._6{width:6.442667pt;}
._c{width:8.064000pt;}
._b{width:9.472000pt;}
._6c{width:73.864000pt;}
._2f{width:87.253333pt;}
._31{width:97.386667pt;}
._30{width:111.722667pt;}
._2e{width:117.653333pt;}
._7c{width:136.661333pt;}
._52{width:140.096000pt;}
._35{width:142.528000pt;}
._e{width:145.237333pt;}
._f{width:146.762667pt;}
._7a{width:148.522667pt;}
._51{width:162.666667pt;}
._4d{width:168.810667pt;}
._8b{width:170.210667pt;}
._7e{width:173.312000pt;}
._34{width:175.509333pt;}
._12{width:180.448000pt;}
._79{width:182.165333pt;}
._28{width:183.658667pt;}
._43{width:185.792000pt;}
._73{width:188.536000pt;}
._56{width:189.802667pt;}
._61{width:191.573333pt;}
._7d{width:192.661333pt;}
._71{width:197.482667pt;}
._41{width:199.082667pt;}
._4c{width:201.152000pt;}
._58{width:203.349333pt;}
._8a{width:204.277333pt;}
._78{width:205.482667pt;}
._3d{width:207.616000pt;}
._65{width:209.749333pt;}
._37{width:210.816000pt;}
._54{width:211.882667pt;}
._38{width:212.842667pt;}
._60{width:214.250667pt;}
._76{width:215.658667pt;}
._55{width:216.896000pt;}
._42{width:218.218667pt;}
._7f{width:219.786667pt;}
._4f{width:220.949333pt;}
._47{width:222.130667pt;}
._32{width:223.808000pt;}
._6a{width:225.216000pt;}
._5e{width:226.816000pt;}
._59{width:229.258667pt;}
._6e{width:230.933333pt;}
._46{width:234.240000pt;}
._24{width:235.925333pt;}
._63{width:237.440000pt;}
._89{width:239.594667pt;}
._68{width:240.554667pt;}
._5c{width:243.626667pt;}
._86{width:246.912000pt;}
._87{width:248.234667pt;}
._75{width:249.834667pt;}
._3f{width:252.992000pt;}
._49{width:256.426667pt;}
._81{width:265.024000pt;}
._5b{width:267.157333pt;}
._72{width:269.034667pt;}
._3b{width:270.336000pt;}
._23{width:273.520000pt;}
._11{width:277.485333pt;}
._85{width:279.466667pt;}
._10{width:283.120000pt;}
._3e{width:299.285333pt;}
._66{width:300.416000pt;}
._26{width:303.536000pt;}
._88{width:305.664000pt;}
._74{width:307.093333pt;}
._7b{width:308.053333pt;}
._4b{width:309.162667pt;}
._50{width:312.000000pt;}
._48{width:314.325333pt;}
._80{width:316.885333pt;}
._62{width:322.509333pt;}
._6b{width:325.098667pt;}
._83{width:327.573333pt;}
._45{width:328.896000pt;}
._5f{width:331.797333pt;}
._5a{width:332.693333pt;}
._33{width:333.632000pt;}
._6d{width:338.346667pt;}
._3a{width:341.120000pt;}
._70{width:346.730667pt;}
._6f{width:347.637333pt;}
._25{width:354.090667pt;}
._40{width:374.549333pt;}
._84{width:378.106667pt;}
._36{width:419.818667pt;}
._57{width:428.010667pt;}
._53{width:443.072000pt;}
._39{width:448.650667pt;}
._2d{width:475.520000pt;}
._1d{width:489.162667pt;}
._29{width:519.941333pt;}
._16{width:539.426667pt;}
._27{width:541.384000pt;}
._44{width:551.445333pt;}
._3c{width:578.368000pt;}
._2c{width:589.877333pt;}
._19{width:604.448000pt;}
._17{width:606.250667pt;}
._15{width:628.277333pt;}
._64{width:648.810667pt;}
._20{width:650.082667pt;}
._4e{width:662.976000pt;}
._1e{width:692.933333pt;}
._4a{width:704.192000pt;}
._5d{width:799.594667pt;}
._21{width:838.909333pt;}
._1b{width:839.848000pt;}
._67{width:941.813333pt;}
._1a{width:945.293333pt;}
._1f{width:978.885333pt;}
._1c{width:1004.976000pt;}
._69{width:1077.312000pt;}
._77{width:1078.250667pt;}
._82{width:1101.930667pt;}
._14{width:1116.416000pt;}
._18{width:1181.768000pt;}
._2a{width:1356.370667pt;}
._22{width:1381.096000pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1b{bottom:80.629333pt;}
.y73{bottom:138.629333pt;}
.yec{bottom:138.896000pt;}
.y4e{bottom:139.829333pt;}
.yeb{bottom:145.296000pt;}
.y90{bottom:150.496000pt;}
.y72{bottom:160.629333pt;}
.y2d{bottom:162.496000pt;}
.y103{bottom:166.362667pt;}
.y4d{bottom:171.162667pt;}
.yc0{bottom:173.029333pt;}
.yea{bottom:175.962667pt;}
.y71{bottom:182.629333pt;}
.y2c{bottom:184.496000pt;}
.y8f{bottom:186.896000pt;}
.y102{bottom:194.096000pt;}
.ybf{bottom:195.029333pt;}
.ye9{bottom:200.229333pt;}
.y4c{bottom:202.496000pt;}
.y70{bottom:213.962667pt;}
.y2b{bottom:215.829333pt;}
.y101{bottom:218.362667pt;}
.y8e{bottom:223.296000pt;}
.ye8{bottom:224.629333pt;}
.y100{bottom:224.762667pt;}
.ybe{bottom:226.362667pt;}
.y4b{bottom:233.829333pt;}
.y6f{bottom:235.962667pt;}
.y2a{bottom:237.829333pt;}
.ya9{bottom:244.896000pt;}
.ybd{bottom:248.362667pt;}
.ye7{bottom:252.362667pt;}
.yff{bottom:255.562667pt;}
.y6e{bottom:257.962667pt;}
.y8d{bottom:259.696000pt;}
.y4a{bottom:265.162667pt;}
.yca{bottom:267.029333pt;}
.y29{bottom:269.162667pt;}
.ybc{bottom:270.362667pt;}
.ya8{bottom:275.162667pt;}
.ye6{bottom:276.629333pt;}
.yfe{bottom:279.829333pt;}
.yc9{bottom:289.029333pt;}
.y6d{bottom:289.296000pt;}
.y28{bottom:291.162667pt;}
.y1a{bottom:292.096000pt;}
.y8c{bottom:293.029333pt;}
.y49{bottom:296.496000pt;}
.yfd{bottom:300.629333pt;}
.ye5{bottom:301.029333pt;}
.ybb{bottom:301.696000pt;}
.ya7{bottom:305.429333pt;}
.y6c{bottom:311.296000pt;}
.y8b{bottom:311.429333pt;}
.yc8{bottom:320.362667pt;}
.yfc{bottom:321.429333pt;}
.y27{bottom:322.496000pt;}
.y19{bottom:323.429333pt;}
.yba{bottom:323.696000pt;}
.y48{bottom:327.829333pt;}
.ye4{bottom:328.762667pt;}
.ya6{bottom:333.029333pt;}
.y8a{bottom:341.696000pt;}
.yc7{bottom:342.362667pt;}
.y6b{bottom:342.629333pt;}
.y26{bottom:344.496000pt;}
.y18{bottom:345.429333pt;}
.yb9{bottom:355.029333pt;}
.ye3{bottom:356.629333pt;}
.yfb{bottom:358.496000pt;}
.y47{bottom:359.162667pt;}
.y89{bottom:360.096000pt;}
.ya5{bottom:364.362667pt;}
.y6a{bottom:364.629333pt;}
.y25{bottom:366.496000pt;}
.y17{bottom:367.429333pt;}
.yb8{bottom:377.029333pt;}
.y88{bottom:378.496000pt;}
.y46{bottom:381.162667pt;}
.ye2{bottom:384.362667pt;}
.ya4{bottom:386.362667pt;}
.y16{bottom:389.429333pt;}
.y69{bottom:395.962667pt;}
.yb7{bottom:399.029333pt;}
.y45{bottom:403.162667pt;}
.ya3{bottom:408.362667pt;}
.y15{bottom:411.429333pt;}
.y87{bottom:411.829333pt;}
.ye1{bottom:412.229333pt;}
.yfa{bottom:414.096000pt;}
.yc6{bottom:417.696000pt;}
.y68{bottom:417.962667pt;}
.yb6{bottom:421.029333pt;}
.ya2{bottom:430.362667pt;}
.y14{bottom:433.429333pt;}
.y44{bottom:434.496000pt;}
.yc5{bottom:439.696000pt;}
.y67{bottom:439.962667pt;}
.yf9{bottom:441.962667pt;}
.yb5{bottom:443.029333pt;}
.y86{bottom:448.229333pt;}
.ya1{bottom:452.362667pt;}
.y13{bottom:455.429333pt;}
.y43{bottom:456.496000pt;}
.yc4{bottom:461.696000pt;}
.ye0{bottom:467.829333pt;}
.yf8{bottom:469.696000pt;}
.y66{bottom:471.296000pt;}
.ya0{bottom:474.362667pt;}
.y12{bottom:477.429333pt;}
.y42{bottom:478.496000pt;}
.y85{bottom:481.562667pt;}
.yc3{bottom:483.696000pt;}
.y84{bottom:490.762667pt;}
.ydf{bottom:492.096000pt;}
.yf7{bottom:493.962667pt;}
.y9f{bottom:496.362667pt;}
.yd4{bottom:497.562667pt;}
.yde{bottom:498.496000pt;}
.y11{bottom:499.429333pt;}
.yf6{bottom:500.362667pt;}
.y41{bottom:500.496000pt;}
.y65{bottom:502.629333pt;}
.yc2{bottom:505.696000pt;}
.yb4{bottom:518.362667pt;}
.yd3{bottom:519.562667pt;}
.y10{bottom:521.429333pt;}
.y40{bottom:522.496000pt;}
.ydd{bottom:525.696000pt;}
.y83{bottom:527.696000pt;}
.yf5{bottom:531.162667pt;}
.ydc{bottom:532.096000pt;}
.y64{bottom:533.962667pt;}
.yb3{bottom:540.362667pt;}
.yf{bottom:543.429333pt;}
.y9e{bottom:543.696000pt;}
.y3f{bottom:544.496000pt;}
.yd2{bottom:545.429333pt;}
.y82{bottom:549.696000pt;}
.yf4{bottom:558.896000pt;}
.yb2{bottom:562.362667pt;}
.ydb{bottom:562.762667pt;}
.y63{bottom:565.296000pt;}
.ye{bottom:565.429333pt;}
.y3e{bottom:566.496000pt;}
.yd1{bottom:571.162667pt;}
.yc1{bottom:571.696000pt;}
.y9d{bottom:573.962667pt;}
.y81{bottom:581.029333pt;}
.yf3{bottom:583.162667pt;}
.yb1{bottom:584.362667pt;}
.yd{bottom:587.429333pt;}
.y3d{bottom:588.496000pt;}
.yf2{bottom:589.562667pt;}
.yda{bottom:590.629333pt;}
.y62{bottom:596.629333pt;}
.yd0{bottom:597.029333pt;}
.y80{bottom:603.029333pt;}
.y9c{bottom:604.229333pt;}
.y3c{bottom:610.496000pt;}
.yd9{bottom:614.896000pt;}
.yb0{bottom:615.696000pt;}
.y61{bottom:618.629333pt;}
.yf1{bottom:620.362667pt;}
.yd8{bottom:621.296000pt;}
.y7f{bottom:625.029333pt;}
.ycf{bottom:628.362667pt;}
.y9b{bottom:631.829333pt;}
.yaf{bottom:637.696000pt;}
.y60{bottom:640.629333pt;}
.y3b{bottom:641.829333pt;}
.yf0{bottom:644.629333pt;}
.y7e{bottom:647.029333pt;}
.yc{bottom:650.096000pt;}
.yce{bottom:650.362667pt;}
.yef{bottom:651.029333pt;}
.yd7{bottom:652.096000pt;}
.yd6{bottom:658.496000pt;}
.yae{bottom:659.696000pt;}
.y9a{bottom:663.162667pt;}
.y3a{bottom:663.829333pt;}
.y7d{bottom:669.029333pt;}
.yb{bottom:669.162667pt;}
.y58{bottom:679.829333pt;}
.yad{bottom:681.696000pt;}
.y39{bottom:685.829333pt;}
.y5f{bottom:687.829333pt;}
.ya{bottom:688.362667pt;}
.y7c{bottom:691.029333pt;}
.y57{bottom:701.829333pt;}
.ycd{bottom:703.696000pt;}
.y5e{bottom:706.229333pt;}
.y9{bottom:707.429333pt;}
.y38{bottom:707.829333pt;}
.yd5{bottom:707.962667pt;}
.yee{bottom:709.562667pt;}
.yac{bottom:713.029333pt;}
.y99{bottom:713.562667pt;}
.yed{bottom:715.962667pt;}
.y7b{bottom:722.362667pt;}
.y56{bottom:723.829333pt;}
.y5d{bottom:724.629333pt;}
.y77{bottom:733.162667pt;}
.yab{bottom:735.029333pt;}
.y37{bottom:739.162667pt;}
.y5c{bottom:743.029333pt;}
.y7a{bottom:744.362667pt;}
.y55{bottom:745.829333pt;}
.y98{bottom:746.896000pt;}
.y76{bottom:755.162667pt;}
.yaa{bottom:757.029333pt;}
.y36{bottom:761.162667pt;}
.y97{bottom:765.296000pt;}
.y79{bottom:766.362667pt;}
.y8{bottom:772.896000pt;}
.y5b{bottom:773.296000pt;}
.y23{bottom:775.696000pt;}
.y54{bottom:777.162667pt;}
.ycc{bottom:779.029333pt;}
.y35{bottom:783.162667pt;}
.y75{bottom:786.496000pt;}
.y78{bottom:788.362667pt;}
.y7{bottom:796.629333pt;}
.y22{bottom:797.696000pt;}
.y96{bottom:798.629333pt;}
.y5a{bottom:801.029333pt;}
.y34{bottom:805.162667pt;}
.y53{bottom:808.496000pt;}
.y24{bottom:810.362667pt;}
.y74{bottom:817.829333pt;}
.y21{bottom:819.696000pt;}
.y6{bottom:820.362667pt;}
.y59{bottom:832.362667pt;}
.y95{bottom:835.029333pt;}
.y33{bottom:836.496000pt;}
.y52{bottom:839.829333pt;}
.y20{bottom:841.696000pt;}
.y5{bottom:844.096000pt;}
.ycb{bottom:854.362667pt;}
.y32{bottom:858.496000pt;}
.y1f{bottom:863.696000pt;}
.y51{bottom:871.162667pt;}
.y94{bottom:871.429333pt;}
.y1e{bottom:885.696000pt;}
.y31{bottom:889.829333pt;}
.y4{bottom:901.429333pt;}
.y50{bottom:902.496000pt;}
.y1d{bottom:907.696000pt;}
.y93{bottom:907.829333pt;}
.y30{bottom:911.829333pt;}
.y3{bottom:930.762667pt;}
.y4f{bottom:933.829333pt;}
.y92{bottom:941.162667pt;}
.y2f{bottom:943.162667pt;}
.y1c{bottom:947.962667pt;}
.y91{bottom:950.362667pt;}
.y2{bottom:960.096000pt;}
.y2e{bottom:965.162667pt;}
.h11{height:36.864000pt;}
.hf{height:37.760000pt;}
.h5{height:43.776000pt;}
.hb{height:45.888000pt;}
.h8{height:52.992000pt;}
.h7{height:54.280000pt;}
.h3{height:55.296000pt;}
.h4{height:56.640000pt;}
.h10{height:62.464000pt;}
.he{height:63.360000pt;}
.h2{height:75.520000pt;}
.h6{height:84.960000pt;}
.ha{height:89.792000pt;}
.h9{height:91.080000pt;}
.hd{height:815.961333pt;}
.hc{height:816.000000pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.w3{width:1055.961333pt;}
.w2{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x7{left:81.333333pt;}
.x11{left:82.400000pt;}
.x12{left:83.866667pt;}
.x3{left:85.600000pt;}
.x2{left:86.533333pt;}
.x16{left:87.733333pt;}
.x14{left:88.666667pt;}
.x4{left:99.733333pt;}
.x6{left:104.666667pt;}
.xf{left:112.533333pt;}
.x5{left:123.733333pt;}
.x19{left:155.600000pt;}
.x1a{left:160.666667pt;}
.x17{left:167.466667pt;}
.x10{left:187.866667pt;}
.x18{left:202.800000pt;}
.xc{left:208.800000pt;}
.x8{left:244.133333pt;}
.x15{left:257.466667pt;}
.x9{left:305.866667pt;}
.xa{left:413.466667pt;}
.xd{left:544.533333pt;}
.xe{left:583.600000pt;}
.xb{left:593.600000pt;}
.x13{left:889.600000pt;}
}




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