
    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_bbcb0dd80aab613b6290e0a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b23726451ea20e2e28bbd14b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_40c1c5202fd25d98dfe30173.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_e28c3e8a9e4f29441aec4864.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_bfce5b37a8097e4dc3e8c621.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-26.586914px;}
.v3{vertical-align:-12.418943px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321678px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:13.494140px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.000000px;}
.ws3{word-spacing:-10.800000px;}
.ws4{word-spacing:-8.952539px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-12.000000px;}
._0{margin-left:-9.281250px;}
._19{margin-left:-7.980468px;}
._10{margin-left:-6.541129px;}
._7{margin-left:-5.231171px;}
._9{margin-left:-3.998555px;}
._2{margin-left:-2.671873px;}
._1{margin-left:-1.300782px;}
._16{width:2.112020px;}
._4{width:4.477251px;}
._17{width:5.488011px;}
._3{width:8.905751px;}
._c{width:9.968151px;}
._5{width:13.403187px;}
._d{width:14.468130px;}
._6{width:17.881788px;}
._8{width:22.381742px;}
._15{width:23.446046px;}
._b{width:27.000027px;}
._a{width:31.499998px;}
._12{width:34.997813px;}
._f{width:36.000004px;}
._e{width:40.500002px;}
._14{width:45.000007px;}
._13{width:49.499997px;}
._18{width:53.931756px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.600001px;}
.fs5{font-size:43.200002px;}
.fs4{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:96.000003px;}
.fs0{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.yd7{bottom:3.496581px;}
.y3{bottom:3.496583px;}
.y10d{bottom:3.497315px;}
.y72{bottom:14.242683px;}
.y10c{bottom:26.110841px;}
.y2{bottom:26.111562px;}
.y32{bottom:26.111573px;}
.y71{bottom:45.290043px;}
.y70{bottom:76.337403px;}
.yeb{bottom:90.010249px;}
.y30{bottom:93.226133px;}
.yd5{bottom:93.479735px;}
.y73{bottom:95.986812px;}
.y10b{bottom:99.231445px;}
.y52{bottom:100.581120px;}
.y144{bottom:103.278802px;}
.y99{bottom:110.041261px;}
.yd4{bottom:112.453124px;}
.y8a{bottom:113.693849px;}
.y2f{bottom:113.924378px;}
.yea{bottom:121.057613px;}
.y143{bottom:123.977050px;}
.y6f{bottom:129.308344px;}
.y16c{bottom:130.278802px;}
.y10a{bottom:130.278813px;}
.yd3{bottom:131.426513px;}
.y51{bottom:131.628475px;}
.y89{bottom:132.667238px;}
.y2e{bottom:134.622623px;}
.y98{bottom:141.088624px;}
.y124{bottom:144.675288px;}
.y142{bottom:144.675293px;}
.yd2{bottom:150.399904px;}
.y16b{bottom:150.977048px;}
.y88{bottom:151.640629px;}
.ye9{bottom:152.104987px;}
.y2d{bottom:155.320868px;}
.y109{bottom:161.326176px;}
.y50{bottom:162.675838px;}
.y141{bottom:165.373538px;}
.yd1{bottom:169.373292px;}
.y87{bottom:170.614017px;}
.y16a{bottom:171.675293px;}
.y97{bottom:172.135988px;}
.y2c{bottom:175.370178px;}
.y123{bottom:175.722651px;}
.ye8{bottom:181.965823px;}
.y140{bottom:186.071770px;}
.y169{bottom:192.373538px;}
.y108{bottom:192.373539px;}
.y2b{bottom:192.618708px;}
.y4f{bottom:193.723210px;}
.y96{bottom:201.509757px;}
.y13f{bottom:206.770013px;}
.y122{bottom:206.770014px;}
.yd0{bottom:208.020262px;}
.y86{bottom:209.260981px;}
.y2a{bottom:209.867240px;}
.ye7{bottom:211.612797px;}
.y168{bottom:213.071783px;}
.y95{bottom:220.483145px;}
.y107{bottom:223.420903px;}
.y4e{bottom:224.770384px;}
.y29{bottom:227.115775px;}
.y13e{bottom:227.468257px;}
.y167{bottom:233.770015px;}
.y121{bottom:237.817378px;}
.y6e{bottom:237.818113px;}
.ycf{bottom:239.067621px;}
.y94{bottom:239.456534px;}
.y85{bottom:240.308344px;}
.y28{bottom:244.364310px;}
.y13d{bottom:248.166503px;}
.y166{bottom:254.468257px;}
.y106{bottom:254.468266px;}
.y4d{bottom:255.817747px;}
.y93{bottom:258.429923px;}
.y27{bottom:261.612854px;}
.y120{bottom:268.864741px;}
.y13c{bottom:268.864748px;}
.y6d{bottom:268.865476px;}
.yce{bottom:270.114984px;}
.y84{bottom:271.355707px;}
.y165{bottom:275.166503px;}
.y92{bottom:277.403314px;}
.y26{bottom:278.861390px;}
.y105{bottom:285.515629px;}
.y4c{bottom:286.865110px;}
.y13b{bottom:289.562992px;}
.y164{bottom:295.864750px;}
.y25{bottom:296.109925px;}
.y91{bottom:296.376702px;}
.y11f{bottom:299.912104px;}
.y6c{bottom:299.912839px;}
.y83{bottom:301.053952px;}
.ycd{bottom:301.162348px;}
.y13a{bottom:310.261238px;}
.y24{bottom:313.358460px;}
.yaf{bottom:315.812263px;}
.y104{bottom:316.562992px;}
.y4b{bottom:317.912478px;}
.y23{bottom:330.606995px;}
.y11e{bottom:330.959468px;}
.y139{bottom:330.959470px;}
.y6b{bottom:330.960202px;}
.ycc{bottom:332.209711px;}
.yc0{bottom:333.547120px;}
.y90{bottom:335.023688px;}
.y163{bottom:337.261238px;}
.yae{bottom:346.859626px;}
.y103{bottom:347.610359px;}
.y22{bottom:347.855531px;}
.y4a{bottom:348.959841px;}
.y82{bottom:350.101321px;}
.y138{bottom:351.657713px;}
.y162{bottom:357.959468px;}
.y11d{bottom:360.657713px;}
.y6a{bottom:362.007568px;}
.ycb{bottom:363.257074px;}
.ybf{bottom:364.594488px;}
.y21{bottom:365.104063px;}
.y8f{bottom:366.071048px;}
.y137{bottom:372.355957px;}
.yad{bottom:377.906989px;}
.y161{bottom:378.657713px;}
.y102{bottom:378.657715px;}
.y49{bottom:380.007204px;}
.y81{bottom:381.148684px;}
.y20{bottom:382.352598px;}
.y136{bottom:393.054202px;}
.y69{bottom:393.054931px;}
.yca{bottom:394.304438px;}
.ybe{bottom:395.641851px;}
.y8e{bottom:395.931883px;}
.y160{bottom:399.355963px;}
.yac{bottom:408.954353px;}
.y11c{bottom:409.705079px;}
.y101{bottom:409.705083px;}
.y1f{bottom:410.599177px;}
.y48{bottom:411.054568px;}
.y80{bottom:412.196048px;}
.y135{bottom:413.752448px;}
.y15f{bottom:420.054205px;}
.yc9{bottom:424.002682px;}
.y68{bottom:424.102294px;}
.y8d{bottom:425.578857px;}
.ybd{bottom:426.689214px;}
.y1e{bottom:430.648498px;}
.y134{bottom:434.450677px;}
.yab{bottom:438.328124px;}
.y100{bottom:440.752446px;}
.y15e{bottom:440.752448px;}
.y47{bottom:442.101931px;}
.y7f{bottom:443.243408px;}
.y1d{bottom:447.897033px;}
.y133{bottom:455.148923px;}
.y67{bottom:455.149657px;}
.yaa{bottom:457.301513px;}
.ybc{bottom:457.736578px;}
.y15d{bottom:461.450677px;}
.yff{bottom:471.799809px;}
.y11b{bottom:471.799814px;}
.yc8{bottom:473.050044px;}
.y7e{bottom:473.104243px;}
.y46{bottom:473.149294px;}
.y1c{bottom:473.769843px;}
.y132{bottom:475.847173px;}
.ya9{bottom:476.274904px;}
.y15c{bottom:482.148925px;}
.y66{bottom:484.847902px;}
.ybb{bottom:488.783941px;}
.y1b{bottom:491.018399px;}
.ya8{bottom:495.248292px;}
.y131{bottom:496.545415px;}
.y7d{bottom:502.751217px;}
.y15b{bottom:502.847168px;}
.y11a{bottom:502.847170px;}
.yfe{bottom:502.847173px;}
.yc7{bottom:504.097408px;}
.y45{bottom:504.196658px;}
.y1a{bottom:508.266933px;}
.y130{bottom:517.243658px;}
.yba{bottom:519.831304px;}
.y15a{bottom:523.545412px;}
.y19{bottom:525.515474px;}
.yfd{bottom:533.894536px;}
.y119{bottom:533.894538px;}
.y65{bottom:533.895259px;}
.ya7{bottom:533.895268px;}
.yc6{bottom:535.144771px;}
.y44{bottom:535.244013px;}
.y12f{bottom:537.941888px;}
.y18{bottom:542.764009px;}
.y159{bottom:544.243645px;}
.yb9{bottom:550.878667px;}
.y12e{bottom:558.640135px;}
.y17{bottom:560.012561px;}
.y158{bottom:564.941888px;}
.yfc{bottom:564.941899px;}
.y118{bottom:564.941901px;}
.y64{bottom:564.942622px;}
.ya6{bottom:564.942631px;}
.yc5{bottom:566.192134px;}
.y43{bottom:566.291376px;}
.y16{bottom:577.261096px;}
.y12d{bottom:579.338377px;}
.yb8{bottom:580.576897px;}
.y157{bottom:585.640133px;}
.y15{bottom:594.509631px;}
.yfb{bottom:595.989262px;}
.y117{bottom:595.989264px;}
.y63{bottom:595.989988px;}
.ya5{bottom:595.989994px;}
.yc4{bottom:597.239497px;}
.y42{bottom:597.338739px;}
.y156{bottom:606.338380px;}
.y12c{bottom:609.036623px;}
.y14{bottom:611.758167px;}
.yfa{bottom:627.036621px;}
.y155{bottom:627.036623px;}
.y116{bottom:627.036628px;}
.y62{bottom:627.037351px;}
.ya4{bottom:627.037358px;}
.yc3{bottom:627.099613px;}
.y41{bottom:628.386103px;}
.y13{bottom:629.006693px;}
.yb7{bottom:629.624266px;}
.y12{bottom:646.255229px;}
.y154{bottom:647.734868px;}
.yc2{bottom:655.560058px;}
.y12b{bottom:658.083979px;}
.yf9{bottom:658.083984px;}
.y115{bottom:658.083991px;}
.y61{bottom:658.084714px;}
.ya3{bottom:658.084717px;}
.y40{bottom:659.433466px;}
.yb6{bottom:660.671629px;}
.y11{bottom:663.503768px;}
.y153{bottom:668.433112px;}
.ye6{bottom:672.480473px;}
.y10{bottom:680.752348px;}
.yc1{bottom:685.207761px;}
.y12a{bottom:689.131342px;}
.yf8{bottom:689.131348px;}
.y114{bottom:689.131354px;}
.y60{bottom:689.132077px;}
.ya2{bottom:689.132084px;}
.y3f{bottom:690.480829px;}
.yb5{bottom:691.718992px;}
.yf{bottom:698.000883px;}
.ye5{bottom:703.527833px;}
.y152{bottom:709.829588px;}
.y129{bottom:720.178704px;}
.yf7{bottom:720.178711px;}
.y113{bottom:720.178717px;}
.ya1{bottom:720.179440px;}
.y5f{bottom:720.179455px;}
.y3e{bottom:721.528193px;}
.yb4{bottom:722.766352px;}
.y151{bottom:730.527835px;}
.ye{bottom:733.898348px;}
.ye4{bottom:734.575201px;}
.y128{bottom:751.226068px;}
.yf6{bottom:751.226074px;}
.y112{bottom:751.226077px;}
.y5e{bottom:751.226620px;}
.ya0{bottom:751.226808px;}
.y3d{bottom:752.575561px;}
.yb3{bottom:752.627203px;}
.ye3{bottom:765.622564px;}
.y150{bottom:771.924322px;}
.yd{bottom:772.596593px;}
.y127{bottom:782.273431px;}
.y111{bottom:782.273433px;}
.yf5{bottom:782.273438px;}
.y5d{bottom:782.273988px;}
.y9f{bottom:782.274171px;}
.yb2{bottom:782.274173px;}
.y3c{bottom:783.622928px;}
.y14f{bottom:792.622555px;}
.yc{bottom:793.294838px;}
.ye2{bottom:796.669928px;}
.y126{bottom:813.320794px;}
.y14e{bottom:813.320798px;}
.yf4{bottom:813.320799px;}
.y110{bottom:813.320800px;}
.y5c{bottom:813.321351px;}
.y8c{bottom:813.321532px;}
.y9e{bottom:813.321534px;}
.yb{bottom:813.993067px;}
.y3b{bottom:814.670284px;}
.ye1{bottom:826.043699px;}
.y14d{bottom:834.019043px;}
.y125{bottom:844.368158px;}
.yf3{bottom:844.368163px;}
.y5b{bottom:844.368714px;}
.y7c{bottom:844.368892px;}
.y9d{bottom:844.368898px;}
.ye0{bottom:845.017088px;}
.y3a{bottom:845.717652px;}
.ya{bottom:852.691312px;}
.y14c{bottom:854.717290px;}
.ydf{bottom:863.990479px;}
.yf2{bottom:875.415526px;}
.y14b{bottom:875.415532px;}
.y5a{bottom:875.416078px;}
.y7b{bottom:875.416252px;}
.y8b{bottom:875.416260px;}
.y9c{bottom:875.416261px;}
.y39{bottom:876.765015px;}
.yde{bottom:882.963867px;}
.y14a{bottom:896.113762px;}
.y9{bottom:901.738673px;}
.y171{bottom:906.383791px;}
.yf1{bottom:906.462889px;}
.y10f{bottom:906.462890px;}
.y59{bottom:906.463441px;}
.y7a{bottom:906.463623px;}
.y9b{bottom:906.463624px;}
.yb1{bottom:906.463628px;}
.y38{bottom:907.812378px;}
.y149{bottom:916.812007px;}
.ydd{bottom:921.610840px;}
.y170{bottom:927.161137px;}
.y8{bottom:932.786047px;}
.yf0{bottom:937.510252px;}
.y58{bottom:937.510804px;}
.y79{bottom:937.510986px;}
.y9a{bottom:937.510988px;}
.y37{bottom:938.859742px;}
.y16f{bottom:947.859367px;}
.ydc{bottom:952.658203px;}
.y148{bottom:958.208498px;}
.y16e{bottom:968.557613px;}
.y10e{bottom:968.557616px;}
.yef{bottom:968.557618px;}
.y57{bottom:968.558167px;}
.yb0{bottom:968.558347px;}
.y78{bottom:968.558350px;}
.y36{bottom:969.907105px;}
.y7{bottom:971.484277px;}
.y147{bottom:978.906742px;}
.ydb{bottom:983.705566px;}
.y16d{bottom:989.255858px;}
.yee{bottom:999.604981px;}
.y56{bottom:999.605530px;}
.y77{bottom:999.605713px;}
.y35{bottom:1000.954468px;}
.y6{bottom:1010.182525px;}
.yda{bottom:1014.752929px;}
.y146{bottom:1020.303222px;}
.yed{bottom:1030.652344px;}
.y55{bottom:1030.652893px;}
.y76{bottom:1030.653076px;}
.y34{bottom:1032.001831px;}
.y5{bottom:1039.880768px;}
.y145{bottom:1041.001465px;}
.yd9{bottom:1044.126710px;}
.yec{bottom:1061.699707px;}
.y33{bottom:1061.700073px;}
.y54{bottom:1061.700257px;}
.y75{bottom:1061.700439px;}
.y4{bottom:1063.028034px;}
.yd8{bottom:1063.100098px;}
.yd6{bottom:1078.504395px;}
.y31{bottom:1078.504761px;}
.y1{bottom:1078.504841px;}
.y53{bottom:1078.504944px;}
.y74{bottom:1078.505127px;}
.he{height:32.581056px;}
.h3{height:43.989259px;}
.h12{height:47.988281px;}
.h7{height:48.796875px;}
.h9{height:53.291014px;}
.h8{height:53.789061px;}
.h10{height:59.167970px;}
.h6{height:63.949219px;}
.h4{height:64.546875px;}
.hc{height:66.049805px;}
.h5{height:85.265628px;}
.hd{height:93.142090px;}
.h2{height:118.335940px;}
.hf{height:184.494873px;}
.hb{height:184.495056px;}
.h1{height:184.495159px;}
.ha{height:184.495239px;}
.h11{height:184.495605px;}
.h0{height:1263.000000px;}
.w2{width:678.375090px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xc{left:6.750000px;}
.x1{left:127.575005px;}
.xb{left:128.700005px;}
.x17{left:137.700005px;}
.x3{left:147.028279px;}
.x15{left:148.950005px;}
.x1a{left:170.325005px;}
.xf{left:180.450005px;}
.x18{left:206.363242px;}
.xa{left:213.075005px;}
.x4{left:248.862754px;}
.x5{left:258.658164px;}
.x14{left:274.764113px;}
.x2{left:282.239210px;}
.x13{left:287.325005px;}
.x10{left:297.450005px;}
.xd{left:307.195754px;}
.x16{left:316.331982px;}
.x11{left:343.217727px;}
.x8{left:494.893647px;}
.x7{left:619.707132px;}
.x9{left:629.498142px;}
.x12{left:704.531705px;}
.xe{left:726.075005px;}
.x19{left:784.406705px;}
.x6{left:807.863416px;}
@media print{
.v2{vertical-align:-23.632812pt;}
.v3{vertical-align:-11.039060pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285936pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:11.994791pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws3{word-spacing:-9.600000pt;}
.ws4{word-spacing:-7.957813pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-10.666667pt;}
._0{margin-left:-8.250000pt;}
._19{margin-left:-7.093750pt;}
._10{margin-left:-5.814337pt;}
._7{margin-left:-4.649929pt;}
._9{margin-left:-3.554271pt;}
._2{margin-left:-2.374998pt;}
._1{margin-left:-1.156250pt;}
._16{width:1.877351pt;}
._4{width:3.979779pt;}
._17{width:4.878232pt;}
._3{width:7.916223pt;}
._c{width:8.860579pt;}
._5{width:11.913944pt;}
._d{width:12.860560pt;}
._6{width:15.894922pt;}
._8{width:19.894882pt;}
._15{width:20.840930pt;}
._b{width:24.000024pt;}
._a{width:27.999999pt;}
._12{width:31.109167pt;}
._f{width:32.000004pt;}
._e{width:36.000002pt;}
._14{width:40.000006pt;}
._13{width:43.999998pt;}
._18{width:47.939339pt;}
.fs6{font-size:35.200001pt;}
.fs5{font-size:38.400002pt;}
.fs4{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.333336pt;}
.fs0{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:3.108072pt;}
.y3{bottom:3.108073pt;}
.y10d{bottom:3.108724pt;}
.y72{bottom:12.660163pt;}
.y10c{bottom:23.209636pt;}
.y2{bottom:23.210277pt;}
.y32{bottom:23.210287pt;}
.y71{bottom:40.257816pt;}
.y70{bottom:67.855469pt;}
.yeb{bottom:80.009110pt;}
.y30{bottom:82.867673pt;}
.yd5{bottom:83.093098pt;}
.y73{bottom:85.321610pt;}
.y10b{bottom:88.205729pt;}
.y52{bottom:89.405440pt;}
.y144{bottom:91.803380pt;}
.y99{bottom:97.814454pt;}
.yd4{bottom:99.958333pt;}
.y8a{bottom:101.061199pt;}
.y2f{bottom:101.266113pt;}
.yea{bottom:107.606767pt;}
.y143{bottom:110.201823pt;}
.y6f{bottom:114.940751pt;}
.y16c{bottom:115.803380pt;}
.y10a{bottom:115.803389pt;}
.yd3{bottom:116.823567pt;}
.y51{bottom:117.003089pt;}
.y89{bottom:117.926433pt;}
.y2e{bottom:119.664553pt;}
.y98{bottom:125.412110pt;}
.y124{bottom:128.600256pt;}
.y142{bottom:128.600260pt;}
.yd2{bottom:133.688804pt;}
.y16b{bottom:134.201820pt;}
.y88{bottom:134.791670pt;}
.ye9{bottom:135.204433pt;}
.y2d{bottom:138.062993pt;}
.y109{bottom:143.401045pt;}
.y50{bottom:144.600745pt;}
.y141{bottom:146.998700pt;}
.yd1{bottom:150.554038pt;}
.y87{bottom:151.656904pt;}
.y16a{bottom:152.600260pt;}
.y97{bottom:153.009767pt;}
.y2c{bottom:155.884603pt;}
.y123{bottom:156.197912pt;}
.ye8{bottom:161.747399pt;}
.y140{bottom:165.397129pt;}
.y169{bottom:170.998700pt;}
.y108{bottom:170.998701pt;}
.y2b{bottom:171.216630pt;}
.y4f{bottom:172.198409pt;}
.y96{bottom:179.119784pt;}
.y13f{bottom:183.795567pt;}
.y122{bottom:183.795568pt;}
.yd0{bottom:184.906900pt;}
.y86{bottom:186.009761pt;}
.y2a{bottom:186.548658pt;}
.ye7{bottom:188.100264pt;}
.y168{bottom:189.397140pt;}
.y95{bottom:195.985018pt;}
.y107{bottom:198.596358pt;}
.y4e{bottom:199.795897pt;}
.y29{bottom:201.880689pt;}
.y13e{bottom:202.194007pt;}
.y167{bottom:207.795569pt;}
.y121{bottom:211.393225pt;}
.y6e{bottom:211.393878pt;}
.ycf{bottom:212.504552pt;}
.y94{bottom:212.850253pt;}
.y85{bottom:213.607417pt;}
.y28{bottom:217.212720pt;}
.y13d{bottom:220.592447pt;}
.y166{bottom:226.194007pt;}
.y106{bottom:226.194014pt;}
.y4d{bottom:227.393553pt;}
.y93{bottom:229.715487pt;}
.y27{bottom:232.544759pt;}
.y120{bottom:238.990881pt;}
.y13c{bottom:238.990887pt;}
.y6d{bottom:238.991534pt;}
.yce{bottom:240.102208pt;}
.y84{bottom:241.205073pt;}
.y165{bottom:244.592447pt;}
.y92{bottom:246.580724pt;}
.y26{bottom:247.876791pt;}
.y105{bottom:253.791670pt;}
.y4c{bottom:254.991209pt;}
.y13b{bottom:257.389327pt;}
.y164{bottom:262.990889pt;}
.y25{bottom:263.208822pt;}
.y91{bottom:263.445958pt;}
.y11f{bottom:266.588537pt;}
.y6c{bottom:266.589190pt;}
.y83{bottom:267.603513pt;}
.ycd{bottom:267.699865pt;}
.y13a{bottom:275.787767pt;}
.y24{bottom:278.540853pt;}
.yaf{bottom:280.722012pt;}
.y104{bottom:281.389327pt;}
.y4b{bottom:282.588869pt;}
.y23{bottom:293.872884pt;}
.y11e{bottom:294.186193pt;}
.y139{bottom:294.186196pt;}
.y6b{bottom:294.186847pt;}
.ycc{bottom:295.297521pt;}
.yc0{bottom:296.486329pt;}
.y90{bottom:297.798833pt;}
.y163{bottom:299.787767pt;}
.yae{bottom:308.319668pt;}
.y103{bottom:308.986986pt;}
.y22{bottom:309.204916pt;}
.y4a{bottom:310.186525pt;}
.y82{bottom:311.201174pt;}
.y138{bottom:312.584633pt;}
.y162{bottom:318.186193pt;}
.y11d{bottom:320.584633pt;}
.y6a{bottom:321.784505pt;}
.ycb{bottom:322.895177pt;}
.ybf{bottom:324.083989pt;}
.y21{bottom:324.536945pt;}
.y8f{bottom:325.396487pt;}
.y137{bottom:330.983073pt;}
.yad{bottom:335.917324pt;}
.y161{bottom:336.584633pt;}
.y102{bottom:336.584636pt;}
.y49{bottom:337.784181pt;}
.y81{bottom:338.798830pt;}
.y20{bottom:339.868976pt;}
.y136{bottom:349.381513pt;}
.y69{bottom:349.382161pt;}
.yca{bottom:350.492833pt;}
.ybe{bottom:351.681645pt;}
.y8e{bottom:351.939452pt;}
.y160{bottom:354.983078pt;}
.yac{bottom:363.514980pt;}
.y11c{bottom:364.182292pt;}
.y101{bottom:364.182296pt;}
.y1f{bottom:364.977047pt;}
.y48{bottom:365.381838pt;}
.y80{bottom:366.396487pt;}
.y135{bottom:367.779953pt;}
.y15f{bottom:373.381516pt;}
.yc9{bottom:376.891273pt;}
.y68{bottom:376.979817pt;}
.y8d{bottom:378.292318pt;}
.ybd{bottom:379.279301pt;}
.y1e{bottom:382.798665pt;}
.y134{bottom:386.178380pt;}
.yab{bottom:389.624999pt;}
.y100{bottom:391.779952pt;}
.y15e{bottom:391.779953pt;}
.y47{bottom:392.979494pt;}
.y7f{bottom:393.994140pt;}
.y1d{bottom:398.130696pt;}
.y133{bottom:404.576820pt;}
.y67{bottom:404.577473pt;}
.yaa{bottom:406.490233pt;}
.ybc{bottom:406.876958pt;}
.y15d{bottom:410.178380pt;}
.yff{bottom:419.377608pt;}
.y11b{bottom:419.377612pt;}
.yc8{bottom:420.488928pt;}
.y7e{bottom:420.537105pt;}
.y46{bottom:420.577150pt;}
.y1c{bottom:421.128750pt;}
.y132{bottom:422.975264pt;}
.ya9{bottom:423.355470pt;}
.y15c{bottom:428.576823pt;}
.y66{bottom:430.975913pt;}
.ybb{bottom:434.474614pt;}
.y1b{bottom:436.460799pt;}
.ya8{bottom:440.220704pt;}
.y131{bottom:441.373703pt;}
.y7d{bottom:446.889971pt;}
.y15b{bottom:446.975260pt;}
.y11a{bottom:446.975262pt;}
.yfe{bottom:446.975265pt;}
.yc7{bottom:448.086585pt;}
.y45{bottom:448.174807pt;}
.y1a{bottom:451.792829pt;}
.y130{bottom:459.772140pt;}
.yba{bottom:462.072270pt;}
.y15a{bottom:465.373700pt;}
.y19{bottom:467.124865pt;}
.yfd{bottom:474.572921pt;}
.y119{bottom:474.572922pt;}
.y65{bottom:474.573563pt;}
.ya7{bottom:474.573572pt;}
.yc6{bottom:475.684241pt;}
.y44{bottom:475.772456pt;}
.y12f{bottom:478.170567pt;}
.y18{bottom:482.456896pt;}
.y159{bottom:483.772129pt;}
.yb9{bottom:489.669927pt;}
.y12e{bottom:496.569009pt;}
.y17{bottom:497.788943pt;}
.y158{bottom:502.170567pt;}
.yfc{bottom:502.170577pt;}
.y118{bottom:502.170578pt;}
.y64{bottom:502.171220pt;}
.ya6{bottom:502.171228pt;}
.yc5{bottom:503.281897pt;}
.y43{bottom:503.370112pt;}
.y16{bottom:513.120974pt;}
.y12d{bottom:514.967447pt;}
.yb8{bottom:516.068353pt;}
.y157{bottom:520.569007pt;}
.y15{bottom:528.453005pt;}
.yfb{bottom:529.768233pt;}
.y117{bottom:529.768234pt;}
.y63{bottom:529.768878pt;}
.ya5{bottom:529.768884pt;}
.yc4{bottom:530.879553pt;}
.y42{bottom:530.967768pt;}
.y156{bottom:538.967449pt;}
.y12c{bottom:541.365887pt;}
.y14{bottom:543.785037pt;}
.yfa{bottom:557.365885pt;}
.y155{bottom:557.365887pt;}
.y116{bottom:557.365891pt;}
.y62{bottom:557.366534pt;}
.ya4{bottom:557.366540pt;}
.yc3{bottom:557.421879pt;}
.y41{bottom:558.565425pt;}
.y13{bottom:559.117060pt;}
.yb7{bottom:559.666014pt;}
.y12{bottom:574.449092pt;}
.y154{bottom:575.764327pt;}
.yc2{bottom:582.720052pt;}
.y12b{bottom:584.963537pt;}
.yf9{bottom:584.963541pt;}
.y115{bottom:584.963547pt;}
.y61{bottom:584.964190pt;}
.ya3{bottom:584.964192pt;}
.y40{bottom:586.163081pt;}
.yb6{bottom:587.263670pt;}
.y11{bottom:589.781127pt;}
.y153{bottom:594.162767pt;}
.ye6{bottom:597.760420pt;}
.y10{bottom:605.113198pt;}
.yc1{bottom:609.073565pt;}
.y12a{bottom:612.561193pt;}
.yf8{bottom:612.561198pt;}
.y114{bottom:612.561203pt;}
.y60{bottom:612.561847pt;}
.ya2{bottom:612.561853pt;}
.y3f{bottom:613.760737pt;}
.yb5{bottom:614.861327pt;}
.yf{bottom:620.445230pt;}
.ye5{bottom:625.358073pt;}
.y152{bottom:630.959633pt;}
.y129{bottom:640.158848pt;}
.yf7{bottom:640.158854pt;}
.y113{bottom:640.158860pt;}
.ya1{bottom:640.159502pt;}
.y5f{bottom:640.159516pt;}
.y3e{bottom:641.358393pt;}
.yb4{bottom:642.458980pt;}
.y151{bottom:649.358076pt;}
.ye{bottom:652.354087pt;}
.ye4{bottom:652.955734pt;}
.y128{bottom:667.756505pt;}
.yf6{bottom:667.756510pt;}
.y112{bottom:667.756513pt;}
.y5e{bottom:667.756996pt;}
.ya0{bottom:667.757163pt;}
.y3d{bottom:668.956054pt;}
.yb3{bottom:669.001959pt;}
.ye3{bottom:680.553390pt;}
.y150{bottom:686.154953pt;}
.yd{bottom:686.752527pt;}
.y127{bottom:695.354161pt;}
.y111{bottom:695.354162pt;}
.yf5{bottom:695.354167pt;}
.y5d{bottom:695.354656pt;}
.y9f{bottom:695.354819pt;}
.yb2{bottom:695.354820pt;}
.y3c{bottom:696.553714pt;}
.y14f{bottom:704.553382pt;}
.yc{bottom:705.150967pt;}
.ye2{bottom:708.151047pt;}
.y126{bottom:722.951817pt;}
.y14e{bottom:722.951820pt;}
.yf4{bottom:722.951821pt;}
.y110{bottom:722.951823pt;}
.y5c{bottom:722.952312pt;}
.y8c{bottom:722.952473pt;}
.y9e{bottom:722.952474pt;}
.yb{bottom:723.549393pt;}
.y3b{bottom:724.151364pt;}
.ye1{bottom:734.261066pt;}
.y14d{bottom:741.350260pt;}
.y125{bottom:750.549473pt;}
.yf3{bottom:750.549478pt;}
.y5b{bottom:750.549968pt;}
.y7c{bottom:750.550127pt;}
.y9d{bottom:750.550132pt;}
.ye0{bottom:751.126300pt;}
.y3a{bottom:751.749024pt;}
.ya{bottom:757.947833pt;}
.y14c{bottom:759.748702pt;}
.ydf{bottom:767.991537pt;}
.yf2{bottom:778.147134pt;}
.y14b{bottom:778.147140pt;}
.y5a{bottom:778.147625pt;}
.y7b{bottom:778.147780pt;}
.y8b{bottom:778.147786pt;}
.y9c{bottom:778.147788pt;}
.y39{bottom:779.346680pt;}
.yde{bottom:784.856771pt;}
.y14a{bottom:796.545567pt;}
.y9{bottom:801.545487pt;}
.y171{bottom:805.674481pt;}
.yf1{bottom:805.744790pt;}
.y10f{bottom:805.744792pt;}
.y59{bottom:805.745281pt;}
.y7a{bottom:805.745442pt;}
.y9b{bottom:805.745443pt;}
.yb1{bottom:805.745447pt;}
.y38{bottom:806.944336pt;}
.y149{bottom:814.944007pt;}
.ydd{bottom:819.209635pt;}
.y170{bottom:824.143233pt;}
.y8{bottom:829.143153pt;}
.yf0{bottom:833.342447pt;}
.y58{bottom:833.342937pt;}
.y79{bottom:833.343098pt;}
.y9a{bottom:833.343100pt;}
.y37{bottom:834.541993pt;}
.y16f{bottom:842.541660pt;}
.ydc{bottom:846.807291pt;}
.y148{bottom:851.740887pt;}
.y16e{bottom:860.940100pt;}
.y10e{bottom:860.940104pt;}
.yef{bottom:860.940105pt;}
.y57{bottom:860.940593pt;}
.yb0{bottom:860.940753pt;}
.y78{bottom:860.940755pt;}
.y36{bottom:862.139649pt;}
.y7{bottom:863.541580pt;}
.y147{bottom:870.139327pt;}
.ydb{bottom:874.404947pt;}
.y16d{bottom:879.338540pt;}
.yee{bottom:888.537761pt;}
.y56{bottom:888.538249pt;}
.y77{bottom:888.538411pt;}
.y35{bottom:889.737305pt;}
.y6{bottom:897.940023pt;}
.yda{bottom:902.002604pt;}
.y146{bottom:906.936197pt;}
.yed{bottom:916.135417pt;}
.y55{bottom:916.135905pt;}
.y76{bottom:916.136067pt;}
.y34{bottom:917.334961pt;}
.y5{bottom:924.338460pt;}
.y145{bottom:925.334636pt;}
.yd9{bottom:928.112631pt;}
.yec{bottom:943.733073pt;}
.y33{bottom:943.733399pt;}
.y54{bottom:943.733561pt;}
.y75{bottom:943.733724pt;}
.y4{bottom:944.913808pt;}
.yd8{bottom:944.977865pt;}
.yd6{bottom:958.670573pt;}
.y31{bottom:958.670899pt;}
.y1{bottom:958.670969pt;}
.y53{bottom:958.671061pt;}
.y74{bottom:958.671224pt;}
.he{height:28.960939pt;}
.h3{height:39.101563pt;}
.h12{height:42.656250pt;}
.h7{height:43.375000pt;}
.h9{height:47.369790pt;}
.h8{height:47.812499pt;}
.h10{height:52.593751pt;}
.h6{height:56.843750pt;}
.h4{height:57.375000pt;}
.hc{height:58.710937pt;}
.h5{height:75.791669pt;}
.hd{height:82.792969pt;}
.h2{height:105.187502pt;}
.hf{height:163.995443pt;}
.hb{height:163.995605pt;}
.h1{height:163.995697pt;}
.ha{height:163.995768pt;}
.h11{height:163.996093pt;}
.h0{height:1122.666667pt;}
.w2{width:603.000080pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xc{left:6.000000pt;}
.x1{left:113.400004pt;}
.xb{left:114.400004pt;}
.x17{left:122.400004pt;}
.x3{left:130.691804pt;}
.x15{left:132.400004pt;}
.x1a{left:151.400004pt;}
.xf{left:160.400004pt;}
.x18{left:183.433993pt;}
.xa{left:189.400004pt;}
.x4{left:221.211337pt;}
.x5{left:229.918368pt;}
.x14{left:244.234767pt;}
.x2{left:250.879298pt;}
.x13{left:255.400004pt;}
.x10{left:264.400004pt;}
.xd{left:273.062892pt;}
.x16{left:281.183984pt;}
.x11{left:305.082424pt;}
.x8{left:439.905464pt;}
.x7{left:550.850784pt;}
.x9{left:559.553904pt;}
.x12{left:626.250404pt;}
.xe{left:645.400004pt;}
.x19{left:697.250404pt;}
.x6{left:718.100814pt;}
}




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