
    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_3e0d06c8b5ce38cc60f03821.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_374bcbb0219dad1042bcd7a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_271225dd2f0d33a34122aa37.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_f143cd3a66756108c64f1011.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_97b2c6c36f4c19a8f6719ea2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.051771px;}
.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;}
}
.ws7{word-spacing:-27.963234px;}
.ws5{word-spacing:-26.284284px;}
.wsa{word-spacing:-24.599394px;}
.ws10{word-spacing:-23.758434px;}
.ws9{word-spacing:-22.465404px;}
.wsf{word-spacing:-21.077085px;}
.wse{word-spacing:-21.025314px;}
.ws1{word-spacing:-20.668284px;}
.ws2{word-spacing:-19.343394px;}
.ws3{word-spacing:-17.451234px;}
.wsb{word-spacing:-0.704252px;}
.ws8{word-spacing:-0.359950px;}
.ws4{word-spacing:0.000000px;}
.ws11{word-spacing:0.118857px;}
.ws0{word-spacing:15.336056px;}
.wsc{word-spacing:23.484608px;}
.wsd{word-spacing:72.151437px;}
.ws6{word-spacing:123.727830px;}
._28{margin-left:-7.520507px;}
._26{margin-left:-6.463070px;}
._27{margin-left:-5.419031px;}
._37{margin-left:-4.399396px;}
._c{margin-left:-3.338002px;}
._6{margin-left:-2.156244px;}
._1{margin-left:-1.074957px;}
._0{width:1.004857px;}
._14{width:2.200022px;}
._4{width:3.231414px;}
._b{width:4.395256px;}
._e{width:5.819595px;}
._13{width:6.966985px;}
._2d{width:8.290627px;}
._17{width:9.478517px;}
._f{width:11.003243px;}
._7{width:12.104924px;}
._2{width:13.858953px;}
._3{width:14.975172px;}
._43{width:16.187257px;}
._25{width:17.208298px;}
._8{width:18.374568px;}
._9{width:19.429768px;}
._15{width:20.560446px;}
._23{width:22.191556px;}
._d{width:23.223605px;}
._30{width:25.249747px;}
._5{width:26.671463px;}
._2c{width:28.517858px;}
._39{width:30.023139px;}
._3f{width:31.864977px;}
._38{width:33.390921px;}
._a{width:34.421835px;}
._12{width:36.087485px;}
._10{width:37.470340px;}
._11{width:38.601856px;}
._29{width:40.100635px;}
._2a{width:41.188144px;}
._2b{width:42.568237px;}
._45{width:43.723148px;}
._24{width:45.690173px;}
._19{width:47.023547px;}
._18{width:48.062582px;}
._36{width:50.206858px;}
._2e{width:51.575325px;}
._2f{width:52.681961px;}
._34{width:53.720527px;}
._47{width:55.223287px;}
._46{width:56.949787px;}
._3a{width:59.694192px;}
._3b{width:60.783333px;}
._31{width:62.004205px;}
._32{width:63.011025px;}
._48{width:64.742993px;}
._44{width:66.857109px;}
._35{width:71.765362px;}
._3e{width:73.115428px;}
._3d{width:74.209554px;}
._3c{width:75.757126px;}
._4b{width:76.950077px;}
._21{width:79.978443px;}
._22{width:81.227121px;}
._40{width:86.173699px;}
._33{width:88.520727px;}
._49{width:89.804721px;}
._4c{width:91.966164px;}
._4a{width:108.991377px;}
._1b{width:134.666590px;}
._42{width:138.344458px;}
._41{width:139.763647px;}
._16{width:151.691064px;}
._50{width:182.445579px;}
._51{width:200.290059px;}
._53{width:229.955373px;}
._1c{width:239.919884px;}
._54{width:245.220777px;}
._1a{width:246.667910px;}
._52{width:248.893007px;}
._1f{width:275.259479px;}
._1d{width:282.356891px;}
._1e{width:298.905423px;}
._20{width:977.936486px;}
._4d{width:1043.372794px;}
._4f{width:1329.502603px;}
._4e{width:1410.324439px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(68,114,196);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.764500px;}
.fs0{font-size:66.244500px;}
.fs4{font-size:72.004500px;}
.fs6{font-size:77.764500px;}
.fs5{font-size:81.364500px;}
.fs3{font-size:84.244500px;}
.fs1{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.y2c{bottom:88.200000px;}
.y79{bottom:98.100000px;}
.yab{bottom:99.540150px;}
.y9a{bottom:103.680000px;}
.y2b{bottom:106.200000px;}
.y9b{bottom:109.080000px;}
.y2a{bottom:124.380000px;}
.y136{bottom:126.540000px;}
.y78{bottom:136.080000px;}
.y80{bottom:141.480000px;}
.y99{bottom:141.660000px;}
.yaa{bottom:143.100150px;}
.y7a{bottom:147.240000px;}
.y135{bottom:159.120150px;}
.y46{bottom:159.300000px;}
.y29{bottom:160.560000px;}
.y127{bottom:162.000000px;}
.y77{bottom:174.060000px;}
.y28{bottom:178.740000px;}
.y7f{bottom:179.640000px;}
.y98{bottom:179.820000px;}
.y60{bottom:185.220000px;}
.y134{bottom:191.700150px;}
.ya9{bottom:192.420150px;}
.y27{bottom:196.920000px;}
.y45{bottom:197.280000px;}
.y126{bottom:201.960150px;}
.y76{bottom:212.220000px;}
.ya8{bottom:214.200150px;}
.y7e{bottom:217.620000px;}
.y97{bottom:217.800000px;}
.yed{bottom:221.040000px;}
.y5f{bottom:223.200000px;}
.y44{bottom:235.440000px;}
.ya7{bottom:235.980150px;}
.y125{bottom:242.100150px;}
.y26{bottom:248.760000px;}
.y75{bottom:250.200000px;}
.y102{bottom:253.440150px;}
.y7d{bottom:255.600000px;}
.y96{bottom:255.780000px;}
.yec{bottom:257.400000px;}
.y5e{bottom:261.180000px;}
.y25{bottom:268.560000px;}
.y43{bottom:273.420000px;}
.yda{bottom:274.500000px;}
.yeb{bottom:284.760000px;}
.ya6{bottom:285.300150px;}
.y74{bottom:288.180000px;}
.y24{bottom:288.540000px;}
.y133{bottom:289.620000px;}
.y101{bottom:289.800150px;}
.y112{bottom:292.860000px;}
.y7c{bottom:293.580000px;}
.y95{bottom:293.760000px;}
.y5d{bottom:299.340000px;}
.yd9{bottom:301.680000px;}
.y124{bottom:307.080000px;}
.ya5{bottom:307.080150px;}
.y23{bottom:308.520000px;}
.y42{bottom:311.400000px;}
.yea{bottom:312.120000px;}
.yc8{bottom:314.460150px;}
.y100{bottom:317.160150px;}
.yd8{bottom:321.120000px;}
.y73{bottom:326.160000px;}
.y22{bottom:328.320000px;}
.ya4{bottom:328.860150px;}
.y132{bottom:329.580000px;}
.y94{bottom:331.920000px;}
.yc7{bottom:336.240150px;}
.y5c{bottom:337.320000px;}
.yff{bottom:344.520150px;}
.yd7{bottom:345.240000px;}
.y123{bottom:347.040000px;}
.y21{bottom:348.300000px;}
.y41{bottom:349.380000px;}
.yd6{bottom:363.420000px;}
.y72{bottom:364.320000px;}
.y111{bottom:366.840000px;}
.y20{bottom:368.280000px;}
.y131{bottom:369.540000px;}
.y93{bottom:369.900000px;}
.y7b{bottom:372.240000px;}
.y5b{bottom:375.300000px;}
.ya3{bottom:378.360150px;}
.yd5{bottom:382.680000px;}
.yc6{bottom:385.740150px;}
.y122{bottom:387.000000px;}
.y40{bottom:387.540000px;}
.y1f{bottom:388.080000px;}
.ye9{bottom:390.060000px;}
.ya2{bottom:399.960150px;}
.y71{bottom:402.300000px;}
.y110{bottom:403.020000px;}
.yc5{bottom:407.340150px;}
.y92{bottom:407.880000px;}
.y1e{bottom:408.060000px;}
.y130{bottom:409.500000px;}
.y5a{bottom:413.280000px;}
.ya1{bottom:421.740000px;}
.yfe{bottom:422.280150px;}
.yd4{bottom:424.980000px;}
.y3f{bottom:425.520000px;}
.ye8{bottom:426.240000px;}
.y121{bottom:426.960000px;}
.y1d{bottom:428.040000px;}
.yc4{bottom:429.120000px;}
.y10f{bottom:430.380000px;}
.y12f{bottom:434.520000px;}
.y70{bottom:440.280000px;}
.yd3{bottom:442.980000px;}
.y91{bottom:445.860000px;}
.y1c{bottom:447.840000px;}
.y59{bottom:451.260000px;}
.yfd{bottom:458.640150px;}
.y12e{bottom:459.540000px;}
.yd2{bottom:461.160000px;}
.y3e{bottom:463.500000px;}
.y120{bottom:466.920000px;}
.y1b{bottom:467.820000px;}
.ya0{bottom:471.240000px;}
.y6f{bottom:478.440000px;}
.yc3{bottom:478.620000px;}
.y90{bottom:483.840000px;}
.yfc{bottom:486.000150px;}
.y1a{bottom:487.800000px;}
.y58{bottom:489.420000px;}
.y11f{bottom:491.940000px;}
.y9f{bottom:492.840000px;}
.y12d{bottom:499.500000px;}
.yc2{bottom:500.400000px;}
.y3d{bottom:501.480000px;}
.ye7{bottom:505.980000px;}
.y19{bottom:507.600000px;}
.y10e{bottom:508.320000px;}
.yfb{bottom:513.360150px;}
.y9e{bottom:514.620000px;}
.y6e{bottom:516.600000px;}
.y8f{bottom:522.000000px;}
.y57{bottom:527.400000px;}
.y18{bottom:527.580000px;}
.y11e{bottom:531.900000px;}
.y12c{bottom:538.740000px;}
.y3c{bottom:539.460000px;}
.yfa{bottom:540.720150px;}
.yc1{bottom:543.780000px;}
.y10d{bottom:544.680000px;}
.y6d{bottom:554.400000px;}
.y8e{bottom:559.980000px;}
.y56{bottom:565.380000px;}
.y17{bottom:567.360000px;}
.y9d{bottom:569.520000px;}
.y11d{bottom:571.860150px;}
.y10c{bottom:572.040000px;}
.y12b{bottom:577.260000px;}
.y3b{bottom:577.620000px;}
.y16{bottom:587.340000px;}
.ye6{bottom:591.480000px;}
.y6c{bottom:592.380000px;}
.yc0{bottom:593.280000px;}
.y8d{bottom:597.780000px;}
.y12a{bottom:602.280000px;}
.y55{bottom:603.180000px;}
.y11c{bottom:611.820000px;}
.ybf{bottom:614.880000px;}
.y3a{bottom:615.600000px;}
.yf9{bottom:620.460000px;}
.y15{bottom:627.120000px;}
.y6b{bottom:630.360000px;}
.ye5{bottom:630.900000px;}
.y8c{bottom:635.760000px;}
.ybe{bottom:636.660000px;}
.y54{bottom:641.340000px;}
.y14{bottom:646.920000px;}
.y10b{bottom:649.800000px;}
.y11b{bottom:651.780000px;}
.y129{bottom:652.320150px;}
.y39{bottom:653.580000px;}
.ybd{bottom:658.440000px;}
.y13{bottom:666.900000px;}
.y6a{bottom:668.340000px;}
.y8b{bottom:673.920000px;}
.y11a{bottom:676.800000px;}
.y53{bottom:679.320000px;}
.ybc{bottom:680.220000px;}
.y10a{bottom:686.160000px;}
.y12{bottom:686.880000px;}
.y38{bottom:691.560000px;}
.ybb{bottom:704.880000px;}
.yf8{bottom:705.060000px;}
.y69{bottom:706.500000px;}
.y11{bottom:706.680000px;}
.ye4{bottom:709.560000px;}
.y8a{bottom:711.900000px;}
.y109{bottom:713.520000px;}
.y119{bottom:716.760000px;}
.y52{bottom:717.300000px;}
.yba{bottom:726.660000px;}
.y10{bottom:726.840000px;}
.y128{bottom:729.540000px;}
.y37{bottom:729.900000px;}
.yd1{bottom:736.740000px;}
.y108{bottom:740.880000px;}
.yf7{bottom:741.420150px;}
.y68{bottom:744.480000px;}
.yf{bottom:746.820000px;}
.yb9{bottom:748.260000px;}
.ye3{bottom:748.980000px;}
.y89{bottom:749.880000px;}
.y51{bottom:755.280000px;}
.y118{bottom:756.900000px;}
.yd0{bottom:764.820000px;}
.ye{bottom:766.620000px;}
.y36{bottom:768.060000px;}
.yf6{bottom:768.780150px;}
.yb8{bottom:770.040150px;}
.ye2{bottom:776.340000px;}
.y67{bottom:782.460000px;}
.yd{bottom:786.600000px;}
.y88{bottom:787.860000px;}
.ycf{bottom:793.080000px;}
.y50{bottom:793.440000px;}
.yf5{bottom:796.140150px;}
.y117{bottom:796.860150px;}
.ye1{bottom:803.700000px;}
.y35{bottom:806.040000px;}
.yc{bottom:806.580000px;}
.y107{bottom:818.640000px;}
.yb7{bottom:819.540150px;}
.y66{bottom:820.440000px;}
.yf4{bottom:823.500150px;}
.y87{bottom:826.020000px;}
.yb{bottom:826.380000px;}
.y4f{bottom:831.420000px;}
.yb6{bottom:841.140150px;}
.y34{bottom:844.020000px;}
.ya{bottom:846.360000px;}
.yce{bottom:849.420000px;}
.yf3{bottom:850.860150px;}
.y106{bottom:855.000000px;}
.y65{bottom:858.600000px;}
.y116{bottom:862.380000px;}
.yb5{bottom:862.920150px;}
.y86{bottom:864.000000px;}
.y9{bottom:866.340000px;}
.y4e{bottom:869.400000px;}
.ycd{bottom:877.500000px;}
.ye0{bottom:881.460000px;}
.y33{bottom:882.000000px;}
.y105{bottom:882.360000px;}
.yb4{bottom:884.700000px;}
.y8{bottom:886.140000px;}
.y64{bottom:896.580000px;}
.y85{bottom:901.980000px;}
.ycc{bottom:905.760000px;}
.y7{bottom:906.120000px;}
.yb3{bottom:906.480000px;}
.y4d{bottom:907.380000px;}
.ydf{bottom:917.820000px;}
.y32{bottom:920.160000px;}
.y6{bottom:925.920000px;}
.yb2{bottom:928.260000px;}
.yf2{bottom:928.620000px;}
.ycb{bottom:933.840000px;}
.y63{bottom:934.560000px;}
.y84{bottom:939.960000px;}
.y9c{bottom:942.480000px;}
.yde{bottom:945.180000px;}
.y4c{bottom:945.360000px;}
.y5{bottom:945.900000px;}
.y115{bottom:948.780000px;}
.yca{bottom:962.100000px;}
.yf1{bottom:964.980000px;}
.y62{bottom:972.540000px;}
.y31{bottom:975.240000px;}
.yb1{bottom:977.580000px;}
.y83{bottom:977.940000px;}
.y4b{bottom:983.520000px;}
.y114{bottom:991.980000px;}
.yf0{bottom:992.340000px;}
.yb0{bottom:999.360000px;}
.y30{bottom:1004.040000px;}
.y61{bottom:1010.700000px;}
.y82{bottom:1016.100000px;}
.y4{bottom:1016.280000px;}
.yaf{bottom:1021.140000px;}
.y4a{bottom:1021.500000px;}
.y113{bottom:1035.000000px;}
.yc9{bottom:1035.540000px;}
.y104{bottom:1042.740000px;}
.ydd{bottom:1051.200000px;}
.y81{bottom:1054.080000px;}
.y49{bottom:1059.480000px;}
.yef{bottom:1070.100000px;}
.yae{bottom:1070.460000px;}
.y103{bottom:1079.100000px;}
.y2f{bottom:1080.360000px;}
.y3{bottom:1089.180000px;}
.yad{bottom:1092.240000px;}
.y48{bottom:1097.460000px;}
.y2e{bottom:1100.340000px;}
.yee{bottom:1106.460000px;}
.yac{bottom:1114.020000px;}
.y2{bottom:1132.740000px;}
.ydc{bottom:1133.820000px;}
.y47{bottom:1135.620000px;}
.y2d{bottom:1173.960000px;}
.ydb{bottom:1193.220000px;}
.y1{bottom:1194.120000px;}
.h2{height:44.928521px;}
.h8{height:54.628488px;}
.h7{height:56.291856px;}
.h6{height:60.551613px;}
.h5{height:62.395332px;}
.ha{height:65.816613px;}
.hb{height:67.820645px;}
.hc{height:68.643694px;}
.hf{height:73.245957px;}
.he{height:76.636778px;}
.h9{height:77.004738px;}
.hd{height:79.349434px;}
.h4{height:87.534738px;}
.h3{height:90.200059px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.200000px;}
.x26{left:108.000000px;}
.x9{left:116.820000px;}
.x2a{left:130.140000px;}
.x17{left:137.340000px;}
.x8{left:148.140000px;}
.x1b{left:149.220000px;}
.x7{left:159.300000px;}
.xa{left:170.100000px;}
.x19{left:187.920000px;}
.x23{left:192.060000px;}
.x18{left:211.140000px;}
.x2c{left:212.400000px;}
.x2f{left:214.200000px;}
.x2{left:238.320000px;}
.x29{left:255.240000px;}
.x3{left:277.920000px;}
.x13{left:287.640000px;}
.x1d{left:290.700000px;}
.x22{left:305.640000px;}
.x1e{left:323.460000px;}
.x25{left:347.220000px;}
.x2b{left:352.800000px;}
.x1c{left:356.220000px;}
.x12{left:357.840000px;}
.x4{left:369.720000px;}
.x20{left:370.980000px;}
.x1f{left:387.540000px;}
.x21{left:402.480000px;}
.x24{left:419.760000px;}
.x1a{left:422.640000px;}
.xc{left:425.340000px;}
.x2d{left:426.960000px;}
.x1{left:433.800000px;}
.xd{left:442.620000px;}
.xb{left:444.240000px;}
.x6{left:447.660000px;}
.x2e{left:451.260000px;}
.x16{left:505.260000px;}
.x28{left:518.220000px;}
.xe{left:526.320000px;}
.x30{left:532.440000px;}
.x14{left:537.120000px;}
.x10{left:574.920000px;}
.x15{left:593.460000px;}
.x31{left:690.840000px;}
.xf{left:721.440000px;}
.x27{left:754.380000px;}
.x11{left:781.380000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.046019pt;}
.ws7{word-spacing:-24.856208pt;}
.ws5{word-spacing:-23.363808pt;}
.wsa{word-spacing:-21.866128pt;}
.ws10{word-spacing:-21.118608pt;}
.ws9{word-spacing:-19.969248pt;}
.wsf{word-spacing:-18.735187pt;}
.wse{word-spacing:-18.689168pt;}
.ws1{word-spacing:-18.371808pt;}
.ws2{word-spacing:-17.194128pt;}
.ws3{word-spacing:-15.512208pt;}
.wsb{word-spacing:-0.626002pt;}
.ws8{word-spacing:-0.319956pt;}
.ws4{word-spacing:0.000000pt;}
.ws11{word-spacing:0.105650pt;}
.ws0{word-spacing:13.632049pt;}
.wsc{word-spacing:20.875207pt;}
.wsd{word-spacing:64.134611pt;}
.ws6{word-spacing:109.980293pt;}
._28{margin-left:-6.684895pt;}
._26{margin-left:-5.744951pt;}
._27{margin-left:-4.816916pt;}
._37{margin-left:-3.910574pt;}
._c{margin-left:-2.967113pt;}
._6{margin-left:-1.916662pt;}
._1{margin-left:-0.955517pt;}
._0{width:0.893206pt;}
._14{width:1.955575pt;}
._4{width:2.872368pt;}
._b{width:3.906895pt;}
._e{width:5.172973pt;}
._13{width:6.192875pt;}
._2d{width:7.369446pt;}
._17{width:8.425349pt;}
._f{width:9.780660pt;}
._7{width:10.759932pt;}
._2{width:12.319069pt;}
._3{width:13.311264pt;}
._43{width:14.388673pt;}
._25{width:15.296265pt;}
._8{width:16.332949pt;}
._9{width:17.270905pt;}
._15{width:18.275952pt;}
._23{width:19.725827pt;}
._d{width:20.643205pt;}
._30{width:22.444220pt;}
._5{width:23.707967pt;}
._2c{width:25.349207pt;}
._39{width:26.687235pt;}
._3f{width:28.324424pt;}
._38{width:29.680819pt;}
._a{width:30.597186pt;}
._12{width:32.077765pt;}
._10{width:33.306969pt;}
._11{width:34.312760pt;}
._29{width:35.645009pt;}
._2a{width:36.611683pt;}
._2b{width:37.838433pt;}
._45{width:38.865021pt;}
._24{width:40.613487pt;}
._19{width:41.798708pt;}
._18{width:42.722295pt;}
._36{width:44.628318pt;}
._2e{width:45.844734pt;}
._2f{width:46.828410pt;}
._34{width:47.751580pt;}
._47{width:49.087366pt;}
._46{width:50.622033pt;}
._3a{width:53.061504pt;}
._3b{width:54.029630pt;}
._31{width:55.114849pt;}
._32{width:56.009800pt;}
._48{width:57.549327pt;}
._44{width:59.428541pt;}
._35{width:63.791433pt;}
._3e{width:64.991491pt;}
._3d{width:65.964048pt;}
._3c{width:67.339667pt;}
._4b{width:68.400069pt;}
._21{width:71.091949pt;}
._22{width:72.201886pt;}
._40{width:76.598844pt;}
._33{width:78.685091pt;}
._49{width:79.826419pt;}
._4c{width:81.747701pt;}
._4a{width:96.881224pt;}
._1b{width:119.703636pt;}
._42{width:122.972851pt;}
._41{width:124.234353pt;}
._16{width:134.836501pt;}
._50{width:162.173848pt;}
._51{width:178.035608pt;}
._53{width:204.404776pt;}
._1c{width:213.262119pt;}
._54{width:217.974024pt;}
._1a{width:219.260364pt;}
._52{width:221.238228pt;}
._1f{width:244.675092pt;}
._1d{width:250.983903pt;}
._1e{width:265.693709pt;}
._20{width:869.276876pt;}
._4d{width:927.442484pt;}
._4f{width:1181.780092pt;}
._4e{width:1253.621724pt;}
.fs2{font-size:53.124000pt;}
.fs0{font-size:58.884000pt;}
.fs4{font-size:64.004000pt;}
.fs6{font-size:69.124000pt;}
.fs5{font-size:72.324000pt;}
.fs3{font-size:74.884000pt;}
.fs1{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:78.400000pt;}
.y79{bottom:87.200000pt;}
.yab{bottom:88.480133pt;}
.y9a{bottom:92.160000pt;}
.y2b{bottom:94.400000pt;}
.y9b{bottom:96.960000pt;}
.y2a{bottom:110.560000pt;}
.y136{bottom:112.480000pt;}
.y78{bottom:120.960000pt;}
.y80{bottom:125.760000pt;}
.y99{bottom:125.920000pt;}
.yaa{bottom:127.200133pt;}
.y7a{bottom:130.880000pt;}
.y135{bottom:141.440133pt;}
.y46{bottom:141.600000pt;}
.y29{bottom:142.720000pt;}
.y127{bottom:144.000000pt;}
.y77{bottom:154.720000pt;}
.y28{bottom:158.880000pt;}
.y7f{bottom:159.680000pt;}
.y98{bottom:159.840000pt;}
.y60{bottom:164.640000pt;}
.y134{bottom:170.400133pt;}
.ya9{bottom:171.040133pt;}
.y27{bottom:175.040000pt;}
.y45{bottom:175.360000pt;}
.y126{bottom:179.520133pt;}
.y76{bottom:188.640000pt;}
.ya8{bottom:190.400133pt;}
.y7e{bottom:193.440000pt;}
.y97{bottom:193.600000pt;}
.yed{bottom:196.480000pt;}
.y5f{bottom:198.400000pt;}
.y44{bottom:209.280000pt;}
.ya7{bottom:209.760133pt;}
.y125{bottom:215.200133pt;}
.y26{bottom:221.120000pt;}
.y75{bottom:222.400000pt;}
.y102{bottom:225.280133pt;}
.y7d{bottom:227.200000pt;}
.y96{bottom:227.360000pt;}
.yec{bottom:228.800000pt;}
.y5e{bottom:232.160000pt;}
.y25{bottom:238.720000pt;}
.y43{bottom:243.040000pt;}
.yda{bottom:244.000000pt;}
.yeb{bottom:253.120000pt;}
.ya6{bottom:253.600133pt;}
.y74{bottom:256.160000pt;}
.y24{bottom:256.480000pt;}
.y133{bottom:257.440000pt;}
.y101{bottom:257.600133pt;}
.y112{bottom:260.320000pt;}
.y7c{bottom:260.960000pt;}
.y95{bottom:261.120000pt;}
.y5d{bottom:266.080000pt;}
.yd9{bottom:268.160000pt;}
.y124{bottom:272.960000pt;}
.ya5{bottom:272.960133pt;}
.y23{bottom:274.240000pt;}
.y42{bottom:276.800000pt;}
.yea{bottom:277.440000pt;}
.yc8{bottom:279.520133pt;}
.y100{bottom:281.920133pt;}
.yd8{bottom:285.440000pt;}
.y73{bottom:289.920000pt;}
.y22{bottom:291.840000pt;}
.ya4{bottom:292.320133pt;}
.y132{bottom:292.960000pt;}
.y94{bottom:295.040000pt;}
.yc7{bottom:298.880133pt;}
.y5c{bottom:299.840000pt;}
.yff{bottom:306.240133pt;}
.yd7{bottom:306.880000pt;}
.y123{bottom:308.480000pt;}
.y21{bottom:309.600000pt;}
.y41{bottom:310.560000pt;}
.yd6{bottom:323.040000pt;}
.y72{bottom:323.840000pt;}
.y111{bottom:326.080000pt;}
.y20{bottom:327.360000pt;}
.y131{bottom:328.480000pt;}
.y93{bottom:328.800000pt;}
.y7b{bottom:330.880000pt;}
.y5b{bottom:333.600000pt;}
.ya3{bottom:336.320133pt;}
.yd5{bottom:340.160000pt;}
.yc6{bottom:342.880133pt;}
.y122{bottom:344.000000pt;}
.y40{bottom:344.480000pt;}
.y1f{bottom:344.960000pt;}
.ye9{bottom:346.720000pt;}
.ya2{bottom:355.520133pt;}
.y71{bottom:357.600000pt;}
.y110{bottom:358.240000pt;}
.yc5{bottom:362.080133pt;}
.y92{bottom:362.560000pt;}
.y1e{bottom:362.720000pt;}
.y130{bottom:364.000000pt;}
.y5a{bottom:367.360000pt;}
.ya1{bottom:374.880000pt;}
.yfe{bottom:375.360133pt;}
.yd4{bottom:377.760000pt;}
.y3f{bottom:378.240000pt;}
.ye8{bottom:378.880000pt;}
.y121{bottom:379.520000pt;}
.y1d{bottom:380.480000pt;}
.yc4{bottom:381.440000pt;}
.y10f{bottom:382.560000pt;}
.y12f{bottom:386.240000pt;}
.y70{bottom:391.360000pt;}
.yd3{bottom:393.760000pt;}
.y91{bottom:396.320000pt;}
.y1c{bottom:398.080000pt;}
.y59{bottom:401.120000pt;}
.yfd{bottom:407.680133pt;}
.y12e{bottom:408.480000pt;}
.yd2{bottom:409.920000pt;}
.y3e{bottom:412.000000pt;}
.y120{bottom:415.040000pt;}
.y1b{bottom:415.840000pt;}
.ya0{bottom:418.880000pt;}
.y6f{bottom:425.280000pt;}
.yc3{bottom:425.440000pt;}
.y90{bottom:430.080000pt;}
.yfc{bottom:432.000133pt;}
.y1a{bottom:433.600000pt;}
.y58{bottom:435.040000pt;}
.y11f{bottom:437.280000pt;}
.y9f{bottom:438.080000pt;}
.y12d{bottom:444.000000pt;}
.yc2{bottom:444.800000pt;}
.y3d{bottom:445.760000pt;}
.ye7{bottom:449.760000pt;}
.y19{bottom:451.200000pt;}
.y10e{bottom:451.840000pt;}
.yfb{bottom:456.320133pt;}
.y9e{bottom:457.440000pt;}
.y6e{bottom:459.200000pt;}
.y8f{bottom:464.000000pt;}
.y57{bottom:468.800000pt;}
.y18{bottom:468.960000pt;}
.y11e{bottom:472.800000pt;}
.y12c{bottom:478.880000pt;}
.y3c{bottom:479.520000pt;}
.yfa{bottom:480.640133pt;}
.yc1{bottom:483.360000pt;}
.y10d{bottom:484.160000pt;}
.y6d{bottom:492.800000pt;}
.y8e{bottom:497.760000pt;}
.y56{bottom:502.560000pt;}
.y17{bottom:504.320000pt;}
.y9d{bottom:506.240000pt;}
.y11d{bottom:508.320133pt;}
.y10c{bottom:508.480000pt;}
.y12b{bottom:513.120000pt;}
.y3b{bottom:513.440000pt;}
.y16{bottom:522.080000pt;}
.ye6{bottom:525.760000pt;}
.y6c{bottom:526.560000pt;}
.yc0{bottom:527.360000pt;}
.y8d{bottom:531.360000pt;}
.y12a{bottom:535.360000pt;}
.y55{bottom:536.160000pt;}
.y11c{bottom:543.840000pt;}
.ybf{bottom:546.560000pt;}
.y3a{bottom:547.200000pt;}
.yf9{bottom:551.520000pt;}
.y15{bottom:557.440000pt;}
.y6b{bottom:560.320000pt;}
.ye5{bottom:560.800000pt;}
.y8c{bottom:565.120000pt;}
.ybe{bottom:565.920000pt;}
.y54{bottom:570.080000pt;}
.y14{bottom:575.040000pt;}
.y10b{bottom:577.600000pt;}
.y11b{bottom:579.360000pt;}
.y129{bottom:579.840133pt;}
.y39{bottom:580.960000pt;}
.ybd{bottom:585.280000pt;}
.y13{bottom:592.800000pt;}
.y6a{bottom:594.080000pt;}
.y8b{bottom:599.040000pt;}
.y11a{bottom:601.600000pt;}
.y53{bottom:603.840000pt;}
.ybc{bottom:604.640000pt;}
.y10a{bottom:609.920000pt;}
.y12{bottom:610.560000pt;}
.y38{bottom:614.720000pt;}
.ybb{bottom:626.560000pt;}
.yf8{bottom:626.720000pt;}
.y69{bottom:628.000000pt;}
.y11{bottom:628.160000pt;}
.ye4{bottom:630.720000pt;}
.y8a{bottom:632.800000pt;}
.y109{bottom:634.240000pt;}
.y119{bottom:637.120000pt;}
.y52{bottom:637.600000pt;}
.yba{bottom:645.920000pt;}
.y10{bottom:646.080000pt;}
.y128{bottom:648.480000pt;}
.y37{bottom:648.800000pt;}
.yd1{bottom:654.880000pt;}
.y108{bottom:658.560000pt;}
.yf7{bottom:659.040133pt;}
.y68{bottom:661.760000pt;}
.yf{bottom:663.840000pt;}
.yb9{bottom:665.120000pt;}
.ye3{bottom:665.760000pt;}
.y89{bottom:666.560000pt;}
.y51{bottom:671.360000pt;}
.y118{bottom:672.800000pt;}
.yd0{bottom:679.840000pt;}
.ye{bottom:681.440000pt;}
.y36{bottom:682.720000pt;}
.yf6{bottom:683.360133pt;}
.yb8{bottom:684.480133pt;}
.ye2{bottom:690.080000pt;}
.y67{bottom:695.520000pt;}
.yd{bottom:699.200000pt;}
.y88{bottom:700.320000pt;}
.ycf{bottom:704.960000pt;}
.y50{bottom:705.280000pt;}
.yf5{bottom:707.680133pt;}
.y117{bottom:708.320133pt;}
.ye1{bottom:714.400000pt;}
.y35{bottom:716.480000pt;}
.yc{bottom:716.960000pt;}
.y107{bottom:727.680000pt;}
.yb7{bottom:728.480133pt;}
.y66{bottom:729.280000pt;}
.yf4{bottom:732.000133pt;}
.y87{bottom:734.240000pt;}
.yb{bottom:734.560000pt;}
.y4f{bottom:739.040000pt;}
.yb6{bottom:747.680133pt;}
.y34{bottom:750.240000pt;}
.ya{bottom:752.320000pt;}
.yce{bottom:755.040000pt;}
.yf3{bottom:756.320133pt;}
.y106{bottom:760.000000pt;}
.y65{bottom:763.200000pt;}
.y116{bottom:766.560000pt;}
.yb5{bottom:767.040133pt;}
.y86{bottom:768.000000pt;}
.y9{bottom:770.080000pt;}
.y4e{bottom:772.800000pt;}
.ycd{bottom:780.000000pt;}
.ye0{bottom:783.520000pt;}
.y33{bottom:784.000000pt;}
.y105{bottom:784.320000pt;}
.yb4{bottom:786.400000pt;}
.y8{bottom:787.680000pt;}
.y64{bottom:796.960000pt;}
.y85{bottom:801.760000pt;}
.ycc{bottom:805.120000pt;}
.y7{bottom:805.440000pt;}
.yb3{bottom:805.760000pt;}
.y4d{bottom:806.560000pt;}
.ydf{bottom:815.840000pt;}
.y32{bottom:817.920000pt;}
.y6{bottom:823.040000pt;}
.yb2{bottom:825.120000pt;}
.yf2{bottom:825.440000pt;}
.ycb{bottom:830.080000pt;}
.y63{bottom:830.720000pt;}
.y84{bottom:835.520000pt;}
.y9c{bottom:837.760000pt;}
.yde{bottom:840.160000pt;}
.y4c{bottom:840.320000pt;}
.y5{bottom:840.800000pt;}
.y115{bottom:843.360000pt;}
.yca{bottom:855.200000pt;}
.yf1{bottom:857.760000pt;}
.y62{bottom:864.480000pt;}
.y31{bottom:866.880000pt;}
.yb1{bottom:868.960000pt;}
.y83{bottom:869.280000pt;}
.y4b{bottom:874.240000pt;}
.y114{bottom:881.760000pt;}
.yf0{bottom:882.080000pt;}
.yb0{bottom:888.320000pt;}
.y30{bottom:892.480000pt;}
.y61{bottom:898.400000pt;}
.y82{bottom:903.200000pt;}
.y4{bottom:903.360000pt;}
.yaf{bottom:907.680000pt;}
.y4a{bottom:908.000000pt;}
.y113{bottom:920.000000pt;}
.yc9{bottom:920.480000pt;}
.y104{bottom:926.880000pt;}
.ydd{bottom:934.400000pt;}
.y81{bottom:936.960000pt;}
.y49{bottom:941.760000pt;}
.yef{bottom:951.200000pt;}
.yae{bottom:951.520000pt;}
.y103{bottom:959.200000pt;}
.y2f{bottom:960.320000pt;}
.y3{bottom:968.160000pt;}
.yad{bottom:970.880000pt;}
.y48{bottom:975.520000pt;}
.y2e{bottom:978.080000pt;}
.yee{bottom:983.520000pt;}
.yac{bottom:990.240000pt;}
.y2{bottom:1006.880000pt;}
.ydc{bottom:1007.840000pt;}
.y47{bottom:1009.440000pt;}
.y2d{bottom:1043.520000pt;}
.ydb{bottom:1060.640000pt;}
.y1{bottom:1061.440000pt;}
.h2{height:39.936463pt;}
.h8{height:48.558656pt;}
.h7{height:50.037205pt;}
.h6{height:53.823656pt;}
.h5{height:55.462518pt;}
.ha{height:58.503656pt;}
.hb{height:60.285018pt;}
.hc{height:61.016617pt;}
.hf{height:65.107518pt;}
.he{height:68.121580pt;}
.h9{height:68.448656pt;}
.hd{height:70.532830pt;}
.h4{height:77.808656pt;}
.h3{height:80.177830pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.400000pt;}
.x26{left:96.000000pt;}
.x9{left:103.840000pt;}
.x2a{left:115.680000pt;}
.x17{left:122.080000pt;}
.x8{left:131.680000pt;}
.x1b{left:132.640000pt;}
.x7{left:141.600000pt;}
.xa{left:151.200000pt;}
.x19{left:167.040000pt;}
.x23{left:170.720000pt;}
.x18{left:187.680000pt;}
.x2c{left:188.800000pt;}
.x2f{left:190.400000pt;}
.x2{left:211.840000pt;}
.x29{left:226.880000pt;}
.x3{left:247.040000pt;}
.x13{left:255.680000pt;}
.x1d{left:258.400000pt;}
.x22{left:271.680000pt;}
.x1e{left:287.520000pt;}
.x25{left:308.640000pt;}
.x2b{left:313.600000pt;}
.x1c{left:316.640000pt;}
.x12{left:318.080000pt;}
.x4{left:328.640000pt;}
.x20{left:329.760000pt;}
.x1f{left:344.480000pt;}
.x21{left:357.760000pt;}
.x24{left:373.120000pt;}
.x1a{left:375.680000pt;}
.xc{left:378.080000pt;}
.x2d{left:379.520000pt;}
.x1{left:385.600000pt;}
.xd{left:393.440000pt;}
.xb{left:394.880000pt;}
.x6{left:397.920000pt;}
.x2e{left:401.120000pt;}
.x16{left:449.120000pt;}
.x28{left:460.640000pt;}
.xe{left:467.840000pt;}
.x30{left:473.280000pt;}
.x14{left:477.440000pt;}
.x10{left:511.040000pt;}
.x15{left:527.520000pt;}
.x31{left:614.080000pt;}
.xf{left:641.280000pt;}
.x27{left:670.560000pt;}
.x11{left:694.560000pt;}
}




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