
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_1a9695504dca46aaef555450.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_c5dda87e6d76460bb624504a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_45ea86cf5262966d6eead983.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_9869ec3d5b2e7ccd5a8b5647.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_808e43a54e503dbbf0474418.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d4d6e97eec79bd307e159e38.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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:ffa;src:url('chunks/assets/font_c313c09d16004c3e84e7e68c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.378906;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:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d3df5900aa21ac73b7370c8e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.274800px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.ls15{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.567600px;}
.lsa{letter-spacing:5.760000px;}
.lsb{letter-spacing:6.480000px;}
.ls17{letter-spacing:6.785280px;}
.ls9{letter-spacing:17.280000px;}
.lsd{letter-spacing:25.200000px;}
.lse{letter-spacing:30.960000px;}
.lsf{letter-spacing:31.680000px;}
.ls8{letter-spacing:33.840000px;}
.ls16{letter-spacing:39.905280px;}
.ls14{letter-spacing:59.345280px;}
.ls10{letter-spacing:64.026720px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.wsa{word-spacing:-59.760000px;}
.ws8{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.127600px;}
.wsd{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._27{margin-left:-14.400000px;}
._25{margin-left:-2.095200px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._6{width:2.842560px;}
._4{width:4.040640px;}
._5{width:5.100480px;}
._9{width:6.888960px;}
._15{width:8.095680px;}
._13{width:9.354240px;}
._7{width:10.598400px;}
._14{width:11.606400px;}
._1c{width:13.049280px;}
._3{width:14.312640px;}
._32{width:15.338400px;}
._26{width:17.865600px;}
._a{width:18.878400px;}
._1e{width:20.099520px;}
._19{width:21.263040px;}
._18{width:22.320000px;}
._8{width:24.243840px;}
._b{width:25.516800px;}
._12{width:27.025920px;}
._23{width:28.100160px;}
._c{width:29.808000px;}
._10{width:31.213440px;}
._f{width:32.258880px;}
._16{width:33.598080px;}
._d{width:34.709760px;}
._e{width:35.930880px;}
._30{width:37.278720px;}
._31{width:38.689440px;}
._21{width:40.472640px;}
._17{width:42.341760px;}
._1f{width:44.461440px;}
._24{width:45.838080px;}
._22{width:47.361600px;}
._11{width:48.700800px;}
._28{width:50.209920px;}
._29{width:51.765120px;}
._2f{width:53.694240px;}
._1a{width:54.910080px;}
._1b{width:56.048640px;}
._2e{width:58.152480px;}
._2c{width:59.783040px;}
._2d{width:61.285920px;}
._20{width:62.640000px;}
._1d{width:64.120320px;}
._35{width:65.378880px;}
._36{width:66.850560px;}
._39{width:68.169120px;}
._37{width:76.043520px;}
._34{width:77.633280px;}
._33{width:78.668640px;}
._38{width:128.923200px;}
._2b{width:217.598400px;}
._2a{width:219.031200px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y38{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y37{bottom:37.080000px;}
.y39{bottom:48.420000px;}
.y3a{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y36{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y5{bottom:68.976000px;}
.y84{bottom:89.856000px;}
.y103{bottom:93.096000px;}
.y33{bottom:97.236000px;}
.y30{bottom:97.596000px;}
.yda{bottom:99.036000px;}
.y5e{bottom:99.756000px;}
.y95{bottom:104.616000px;}
.y71{bottom:105.516000px;}
.y106{bottom:105.876000px;}
.ye7{bottom:111.456000px;}
.y83{bottom:118.296000px;}
.y102{bottom:121.536000px;}
.y32{bottom:125.676000px;}
.y2f{bottom:126.036000px;}
.yd9{bottom:127.476000px;}
.y5d{bottom:128.196000px;}
.y94{bottom:133.056000px;}
.y70{bottom:133.596000px;}
.y105{bottom:134.316000px;}
.ya9{bottom:138.636000px;}
.ye6{bottom:140.076000px;}
.y82{bottom:147.096000px;}
.y101{bottom:149.976000px;}
.y2e{bottom:154.470000px;}
.yd8{bottom:155.910000px;}
.y5c{bottom:156.630000px;}
.y93{bottom:157.710000px;}
.y104{bottom:158.790000px;}
.y6f{bottom:162.570000px;}
.ya8{bottom:167.070000px;}
.ye5{bottom:169.590000px;}
.y81{bottom:175.710000px;}
.y100{bottom:178.410000px;}
.y2d{bottom:182.910000px;}
.yd7{bottom:184.350000px;}
.y5b{bottom:185.250000px;}
.y6e{bottom:191.010000px;}
.ya7{bottom:195.510000px;}
.ye4{bottom:198.210000px;}
.y80{bottom:200.190000px;}
.yff{bottom:206.850000px;}
.y2c{bottom:211.350000px;}
.yd6{bottom:212.970000px;}
.y5a{bottom:213.690000px;}
.y6d{bottom:219.450000px;}
.ya6{bottom:223.950000px;}
.ye3{bottom:227.730000px;}
.yfe{bottom:235.290000px;}
.y2b{bottom:239.790000px;}
.yd5{bottom:241.410000px;}
.y59{bottom:242.130000px;}
.y6c{bottom:247.890000px;}
.ya5{bottom:252.390000px;}
.ybb{bottom:255.630000px;}
.ye2{bottom:256.350000px;}
.yfd{bottom:263.730000px;}
.y2a{bottom:268.230000px;}
.yd4{bottom:269.850000px;}
.y58{bottom:270.570000px;}
.y6b{bottom:272.370000px;}
.ya4{bottom:280.830000px;}
.yba{bottom:284.070000px;}
.ye1{bottom:285.870000px;}
.yfc{bottom:292.170000px;}
.y29{bottom:296.490000px;}
.y31{bottom:296.850000px;}
.yd3{bottom:298.290000px;}
.y57{bottom:299.010000px;}
.ya3{bottom:309.450000px;}
.y92{bottom:311.430000px;}
.yb9{bottom:312.510000px;}
.ye0{bottom:314.490000px;}
.y7f{bottom:314.850000px;}
.yfb{bottom:320.655000px;}
.yd2{bottom:326.775000px;}
.y56{bottom:327.495000px;}
.y28{bottom:328.935000px;}
.ya2{bottom:337.935000px;}
.y91{bottom:339.915000px;}
.yb8{bottom:340.995000px;}
.y7e{bottom:343.335000px;}
.ydf{bottom:344.055000px;}
.yfa{bottom:349.275000px;}
.yd1{bottom:355.215000px;}
.y55{bottom:355.935000px;}
.y27{bottom:357.555000px;}
.ya1{bottom:366.375000px;}
.y90{bottom:368.355000px;}
.yb7{bottom:369.435000px;}
.y7d{bottom:371.775000px;}
.yde{bottom:372.495000px;}
.yf9{bottom:377.715000px;}
.yd0{bottom:383.655000px;}
.y54{bottom:384.375000px;}
.y26{bottom:385.995000px;}
.ya0{bottom:394.815000px;}
.y8f{bottom:396.975000px;}
.yb6{bottom:397.875000px;}
.y7c{bottom:400.215000px;}
.ydd{bottom:400.575000px;}
.yf8{bottom:406.155000px;}
.ycf{bottom:412.095000px;}
.y53{bottom:412.815000px;}
.y25{bottom:414.435000px;}
.y9f{bottom:423.255000px;}
.y8e{bottom:425.415000px;}
.yb5{bottom:426.315000px;}
.y7b{bottom:428.655000px;}
.ydc{bottom:429.375000px;}
.y6a{bottom:430.095000px;}
.yf7{bottom:434.235000px;}
.yce{bottom:440.535000px;}
.y52{bottom:441.435000px;}
.y24{bottom:442.875000px;}
.y9e{bottom:451.695000px;}
.y8d{bottom:453.855000px;}
.yb4{bottom:454.935000px;}
.y7a{bottom:457.095000px;}
.ydb{bottom:457.815000px;}
.y69{bottom:458.535000px;}
.yf6{bottom:463.035000px;}
.ycd{bottom:469.155000px;}
.y51{bottom:469.875000px;}
.y23{bottom:471.315000px;}
.y9d{bottom:480.135000px;}
.y8c{bottom:482.295000px;}
.yb3{bottom:483.375000px;}
.y79{bottom:485.535000px;}
.y68{bottom:487.155000px;}
.yf5{bottom:491.475000px;}
.ycc{bottom:497.595000px;}
.y50{bottom:498.315000px;}
.y22{bottom:499.755000px;}
.y9c{bottom:508.575000px;}
.y8b{bottom:510.735000px;}
.yb2{bottom:511.815000px;}
.y78{bottom:514.155000px;}
.y67{bottom:515.595000px;}
.yf4{bottom:516.135000px;}
.ycb{bottom:526.035000px;}
.y4f{bottom:526.755000px;}
.y21{bottom:528.195000px;}
.y9b{bottom:537.015000px;}
.y8a{bottom:539.175000px;}
.yb1{bottom:539.895000px;}
.y77{bottom:542.595000px;}
.y66{bottom:544.035000px;}
.yca{bottom:554.475000px;}
.y4e{bottom:555.195000px;}
.y20{bottom:556.635000px;}
.y9a{bottom:565.635000px;}
.y89{bottom:567.615000px;}
.yb0{bottom:568.725000px;}
.y76{bottom:570.705000px;}
.y65{bottom:572.505000px;}
.yc9{bottom:582.945000px;}
.y4d{bottom:583.665000px;}
.y1f{bottom:585.105000px;}
.y99{bottom:593.745000px;}
.y88{bottom:595.725000px;}
.yaf{bottom:597.165000px;}
.y75{bottom:599.505000px;}
.y64{bottom:600.585000px;}
.yc8{bottom:611.385000px;}
.y4c{bottom:612.105000px;}
.y1e{bottom:613.725000px;}
.yae{bottom:621.645000px;}
.y98{bottom:622.545000px;}
.y87{bottom:624.705000px;}
.y74{bottom:627.945000px;}
.y63{bottom:629.385000px;}
.yc7{bottom:639.825000px;}
.y108{bottom:640.185000px;}
.y4b{bottom:640.545000px;}
.y1d{bottom:642.165000px;}
.y97{bottom:650.985000px;}
.y86{bottom:653.145000px;}
.y73{bottom:656.385000px;}
.y62{bottom:657.825000px;}
.yf3{bottom:659.985000px;}
.yc6{bottom:668.265000px;}
.y4a{bottom:668.985000px;}
.y1c{bottom:670.605000px;}
.y96{bottom:675.465000px;}
.y85{bottom:677.625000px;}
.y72{bottom:681.045000px;}
.y61{bottom:686.265000px;}
.yf2{bottom:688.425000px;}
.yc5{bottom:696.885000px;}
.y49{bottom:697.605000px;}
.y1b{bottom:704.985000px;}
.y60{bottom:710.925000px;}
.yf1{bottom:716.865000px;}
.yc4{bottom:725.325000px;}
.y48{bottom:726.045000px;}
.y1a{bottom:727.485000px;}
.yf0{bottom:745.305000px;}
.yc3{bottom:753.765000px;}
.y47{bottom:754.485000px;}
.y19{bottom:761.865000px;}
.yef{bottom:773.745000px;}
.yc2{bottom:782.205000px;}
.y46{bottom:782.925000px;}
.y18{bottom:784.365000px;}
.yee{bottom:802.365000px;}
.yad{bottom:808.305000px;}
.yc1{bottom:810.645000px;}
.y45{bottom:811.365000px;}
.y17{bottom:818.745000px;}
.yed{bottom:830.850000px;}
.yac{bottom:836.970000px;}
.yc0{bottom:838.770000px;}
.y44{bottom:839.850000px;}
.y16{bottom:841.290000px;}
.yec{bottom:859.290000px;}
.yab{bottom:865.410000px;}
.ybf{bottom:867.570000px;}
.y43{bottom:868.290000px;}
.y15{bottom:875.850000px;}
.yeb{bottom:887.370000px;}
.yaa{bottom:889.890000px;}
.ybe{bottom:896.010000px;}
.y42{bottom:896.730000px;}
.y14{bottom:898.350000px;}
.yea{bottom:916.170000px;}
.ybd{bottom:924.450000px;}
.y107{bottom:924.810000px;}
.y41{bottom:925.170000px;}
.y13{bottom:932.730000px;}
.ye9{bottom:944.610000px;}
.ybc{bottom:949.110000px;}
.y40{bottom:953.790000px;}
.y12{bottom:955.230000px;}
.ye8{bottom:969.090000px;}
.y3f{bottom:982.230000px;}
.y11{bottom:989.610000px;}
.y3e{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y4{bottom:1032.810000px;}
.y3d{bottom:1039.110000px;}
.y3{bottom:1052.790000px;}
.y3c{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.y3b{bottom:1095.660000px;}
.y5f{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y35{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y34{bottom:1131.660000px;}
.h6{height:33.480000px;}
.hb{height:41.250938px;}
.h11{height:47.901094px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h13{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h12{height:73.096875px;}
.h14{height:111.043838px;}
.hf{height:111.043849px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xd{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x13{left:166.529986px;}
.x18{left:184.889986px;}
.x12{left:186.689986px;}
.x15{left:196.589986px;}
.xc{left:198.029986px;}
.x1b{left:211.529986px;}
.xe{left:220.709986px;}
.x16{left:279.029986px;}
.x8{left:486.104986px;}
.xf{left:513.104986px;}
.x5{left:521.025000px;}
.x14{left:594.644986px;}
.x10{left:650.804986px;}
.x11{left:666.104986px;}
.x1a{left:684.149986px;}
.x17{left:707.549986px;}
.x19{left:735.989986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.244267pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls15{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.504533pt;}
.lsa{letter-spacing:5.120000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls17{letter-spacing:6.031360pt;}
.ls9{letter-spacing:15.360000pt;}
.lsd{letter-spacing:22.400000pt;}
.lse{letter-spacing:27.520000pt;}
.lsf{letter-spacing:28.160000pt;}
.ls8{letter-spacing:30.080000pt;}
.ls16{letter-spacing:35.471360pt;}
.ls14{letter-spacing:52.751360pt;}
.ls10{letter-spacing:56.912640pt;}
.ls0{letter-spacing:184.370347pt;}
.ws9{word-spacing:-58.880000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws8{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.224533pt;}
.wsd{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._27{margin-left:-12.800000pt;}
._25{margin-left:-1.862400pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._6{width:2.526720pt;}
._4{width:3.591680pt;}
._5{width:4.533760pt;}
._9{width:6.123520pt;}
._15{width:7.196160pt;}
._13{width:8.314880pt;}
._7{width:9.420800pt;}
._14{width:10.316800pt;}
._1c{width:11.599360pt;}
._3{width:12.722347pt;}
._32{width:13.634133pt;}
._26{width:15.880533pt;}
._a{width:16.780800pt;}
._1e{width:17.866240pt;}
._19{width:18.900480pt;}
._18{width:19.840000pt;}
._8{width:21.550080pt;}
._b{width:22.681600pt;}
._12{width:24.023040pt;}
._23{width:24.977920pt;}
._c{width:26.496000pt;}
._10{width:27.745280pt;}
._f{width:28.674560pt;}
._16{width:29.864960pt;}
._d{width:30.853120pt;}
._e{width:31.938560pt;}
._30{width:33.136640pt;}
._31{width:34.390613pt;}
._21{width:35.975680pt;}
._17{width:37.637120pt;}
._1f{width:39.521280pt;}
._24{width:40.744960pt;}
._22{width:42.099200pt;}
._11{width:43.289600pt;}
._28{width:44.631040pt;}
._29{width:46.013440pt;}
._2f{width:47.728213pt;}
._1a{width:48.808960pt;}
._1b{width:49.821013pt;}
._2e{width:51.691093pt;}
._2c{width:53.140480pt;}
._2d{width:54.476373pt;}
._20{width:55.680000pt;}
._1d{width:56.995840pt;}
._35{width:58.114560pt;}
._36{width:59.422720pt;}
._39{width:60.594773pt;}
._37{width:67.594240pt;}
._34{width:69.007360pt;}
._33{width:69.927680pt;}
._38{width:114.598400pt;}
._2b{width:193.420800pt;}
._2a{width:194.694400pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y38{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:32.960000pt;}
.y39{bottom:43.040000pt;}
.y3a{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y36{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y5{bottom:61.312000pt;}
.y84{bottom:79.872000pt;}
.y103{bottom:82.752000pt;}
.y33{bottom:86.432000pt;}
.y30{bottom:86.752000pt;}
.yda{bottom:88.032000pt;}
.y5e{bottom:88.672000pt;}
.y95{bottom:92.992000pt;}
.y71{bottom:93.792000pt;}
.y106{bottom:94.112000pt;}
.ye7{bottom:99.072000pt;}
.y83{bottom:105.152000pt;}
.y102{bottom:108.032000pt;}
.y32{bottom:111.712000pt;}
.y2f{bottom:112.032000pt;}
.yd9{bottom:113.312000pt;}
.y5d{bottom:113.952000pt;}
.y94{bottom:118.272000pt;}
.y70{bottom:118.752000pt;}
.y105{bottom:119.392000pt;}
.ya9{bottom:123.232000pt;}
.ye6{bottom:124.512000pt;}
.y82{bottom:130.752000pt;}
.y101{bottom:133.312000pt;}
.y2e{bottom:137.306667pt;}
.yd8{bottom:138.586667pt;}
.y5c{bottom:139.226667pt;}
.y93{bottom:140.186667pt;}
.y104{bottom:141.146667pt;}
.y6f{bottom:144.506667pt;}
.ya8{bottom:148.506667pt;}
.ye5{bottom:150.746667pt;}
.y81{bottom:156.186667pt;}
.y100{bottom:158.586667pt;}
.y2d{bottom:162.586667pt;}
.yd7{bottom:163.866667pt;}
.y5b{bottom:164.666667pt;}
.y6e{bottom:169.786667pt;}
.ya7{bottom:173.786667pt;}
.ye4{bottom:176.186667pt;}
.y80{bottom:177.946667pt;}
.yff{bottom:183.866667pt;}
.y2c{bottom:187.866667pt;}
.yd6{bottom:189.306667pt;}
.y5a{bottom:189.946667pt;}
.y6d{bottom:195.066667pt;}
.ya6{bottom:199.066667pt;}
.ye3{bottom:202.426667pt;}
.yfe{bottom:209.146667pt;}
.y2b{bottom:213.146667pt;}
.yd5{bottom:214.586667pt;}
.y59{bottom:215.226667pt;}
.y6c{bottom:220.346667pt;}
.ya5{bottom:224.346667pt;}
.ybb{bottom:227.226667pt;}
.ye2{bottom:227.866667pt;}
.yfd{bottom:234.426667pt;}
.y2a{bottom:238.426667pt;}
.yd4{bottom:239.866667pt;}
.y58{bottom:240.506667pt;}
.y6b{bottom:242.106667pt;}
.ya4{bottom:249.626667pt;}
.yba{bottom:252.506667pt;}
.ye1{bottom:254.106667pt;}
.yfc{bottom:259.706667pt;}
.y29{bottom:263.546667pt;}
.y31{bottom:263.866667pt;}
.yd3{bottom:265.146667pt;}
.y57{bottom:265.786667pt;}
.ya3{bottom:275.066667pt;}
.y92{bottom:276.826667pt;}
.yb9{bottom:277.786667pt;}
.ye0{bottom:279.546667pt;}
.y7f{bottom:279.866667pt;}
.yfb{bottom:285.026667pt;}
.yd2{bottom:290.466667pt;}
.y56{bottom:291.106667pt;}
.y28{bottom:292.386667pt;}
.ya2{bottom:300.386667pt;}
.y91{bottom:302.146667pt;}
.yb8{bottom:303.106667pt;}
.y7e{bottom:305.186667pt;}
.ydf{bottom:305.826667pt;}
.yfa{bottom:310.466667pt;}
.yd1{bottom:315.746667pt;}
.y55{bottom:316.386667pt;}
.y27{bottom:317.826667pt;}
.ya1{bottom:325.666667pt;}
.y90{bottom:327.426667pt;}
.yb7{bottom:328.386667pt;}
.y7d{bottom:330.466667pt;}
.yde{bottom:331.106667pt;}
.yf9{bottom:335.746667pt;}
.yd0{bottom:341.026667pt;}
.y54{bottom:341.666667pt;}
.y26{bottom:343.106667pt;}
.ya0{bottom:350.946667pt;}
.y8f{bottom:352.866667pt;}
.yb6{bottom:353.666667pt;}
.y7c{bottom:355.746667pt;}
.ydd{bottom:356.066667pt;}
.yf8{bottom:361.026667pt;}
.ycf{bottom:366.306667pt;}
.y53{bottom:366.946667pt;}
.y25{bottom:368.386667pt;}
.y9f{bottom:376.226667pt;}
.y8e{bottom:378.146667pt;}
.yb5{bottom:378.946667pt;}
.y7b{bottom:381.026667pt;}
.ydc{bottom:381.666667pt;}
.y6a{bottom:382.306667pt;}
.yf7{bottom:385.986667pt;}
.yce{bottom:391.586667pt;}
.y52{bottom:392.386667pt;}
.y24{bottom:393.666667pt;}
.y9e{bottom:401.506667pt;}
.y8d{bottom:403.426667pt;}
.yb4{bottom:404.386667pt;}
.y7a{bottom:406.306667pt;}
.ydb{bottom:406.946667pt;}
.y69{bottom:407.586667pt;}
.yf6{bottom:411.586667pt;}
.ycd{bottom:417.026667pt;}
.y51{bottom:417.666667pt;}
.y23{bottom:418.946667pt;}
.y9d{bottom:426.786667pt;}
.y8c{bottom:428.706667pt;}
.yb3{bottom:429.666667pt;}
.y79{bottom:431.586667pt;}
.y68{bottom:433.026667pt;}
.yf5{bottom:436.866667pt;}
.ycc{bottom:442.306667pt;}
.y50{bottom:442.946667pt;}
.y22{bottom:444.226667pt;}
.y9c{bottom:452.066667pt;}
.y8b{bottom:453.986667pt;}
.yb2{bottom:454.946667pt;}
.y78{bottom:457.026667pt;}
.y67{bottom:458.306667pt;}
.yf4{bottom:458.786667pt;}
.ycb{bottom:467.586667pt;}
.y4f{bottom:468.226667pt;}
.y21{bottom:469.506667pt;}
.y9b{bottom:477.346667pt;}
.y8a{bottom:479.266667pt;}
.yb1{bottom:479.906667pt;}
.y77{bottom:482.306667pt;}
.y66{bottom:483.586667pt;}
.yca{bottom:492.866667pt;}
.y4e{bottom:493.506667pt;}
.y20{bottom:494.786667pt;}
.y9a{bottom:502.786667pt;}
.y89{bottom:504.546667pt;}
.yb0{bottom:505.533333pt;}
.y76{bottom:507.293333pt;}
.y65{bottom:508.893333pt;}
.yc9{bottom:518.173333pt;}
.y4d{bottom:518.813333pt;}
.y1f{bottom:520.093333pt;}
.y99{bottom:527.773333pt;}
.y88{bottom:529.533333pt;}
.yaf{bottom:530.813333pt;}
.y75{bottom:532.893333pt;}
.y64{bottom:533.853333pt;}
.yc8{bottom:543.453333pt;}
.y4c{bottom:544.093333pt;}
.y1e{bottom:545.533333pt;}
.yae{bottom:552.573333pt;}
.y98{bottom:553.373333pt;}
.y87{bottom:555.293333pt;}
.y74{bottom:558.173333pt;}
.y63{bottom:559.453333pt;}
.yc7{bottom:568.733333pt;}
.y108{bottom:569.053333pt;}
.y4b{bottom:569.373333pt;}
.y1d{bottom:570.813333pt;}
.y97{bottom:578.653333pt;}
.y86{bottom:580.573333pt;}
.y73{bottom:583.453333pt;}
.y62{bottom:584.733333pt;}
.yf3{bottom:586.653333pt;}
.yc6{bottom:594.013333pt;}
.y4a{bottom:594.653333pt;}
.y1c{bottom:596.093333pt;}
.y96{bottom:600.413333pt;}
.y85{bottom:602.333333pt;}
.y72{bottom:605.373333pt;}
.y61{bottom:610.013333pt;}
.yf2{bottom:611.933333pt;}
.yc5{bottom:619.453333pt;}
.y49{bottom:620.093333pt;}
.y1b{bottom:626.653333pt;}
.y60{bottom:631.933333pt;}
.yf1{bottom:637.213333pt;}
.yc4{bottom:644.733333pt;}
.y48{bottom:645.373333pt;}
.y1a{bottom:646.653333pt;}
.yf0{bottom:662.493333pt;}
.yc3{bottom:670.013333pt;}
.y47{bottom:670.653333pt;}
.y19{bottom:677.213333pt;}
.yef{bottom:687.773333pt;}
.yc2{bottom:695.293333pt;}
.y46{bottom:695.933333pt;}
.y18{bottom:697.213333pt;}
.yee{bottom:713.213333pt;}
.yad{bottom:718.493333pt;}
.yc1{bottom:720.573333pt;}
.y45{bottom:721.213333pt;}
.y17{bottom:727.773333pt;}
.yed{bottom:738.533333pt;}
.yac{bottom:743.973333pt;}
.yc0{bottom:745.573333pt;}
.y44{bottom:746.533333pt;}
.y16{bottom:747.813333pt;}
.yec{bottom:763.813333pt;}
.yab{bottom:769.253333pt;}
.ybf{bottom:771.173333pt;}
.y43{bottom:771.813333pt;}
.y15{bottom:778.533333pt;}
.yeb{bottom:788.773333pt;}
.yaa{bottom:791.013333pt;}
.ybe{bottom:796.453333pt;}
.y42{bottom:797.093333pt;}
.y14{bottom:798.533333pt;}
.yea{bottom:814.373333pt;}
.ybd{bottom:821.733333pt;}
.y107{bottom:822.053333pt;}
.y41{bottom:822.373333pt;}
.y13{bottom:829.093333pt;}
.ye9{bottom:839.653333pt;}
.ybc{bottom:843.653333pt;}
.y40{bottom:847.813333pt;}
.y12{bottom:849.093333pt;}
.ye8{bottom:861.413333pt;}
.y3f{bottom:873.093333pt;}
.y11{bottom:879.653333pt;}
.y3e{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y4{bottom:918.053333pt;}
.y3d{bottom:923.653333pt;}
.y3{bottom:935.813333pt;}
.y3c{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.y3b{bottom:973.920000pt;}
.y5f{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y35{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y34{bottom:1005.920000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h11{height:42.578750pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h13{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h12{height:64.975000pt;}
.h14{height:98.705634pt;}
.hf{height:98.705643pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xd{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x13{left:148.026655pt;}
.x18{left:164.346655pt;}
.x12{left:165.946655pt;}
.x15{left:174.746655pt;}
.xc{left:176.026655pt;}
.x1b{left:188.026655pt;}
.xe{left:196.186655pt;}
.x16{left:248.026655pt;}
.x8{left:432.093321pt;}
.xf{left:456.093321pt;}
.x5{left:463.133333pt;}
.x14{left:528.573321pt;}
.x10{left:578.493321pt;}
.x11{left:592.093321pt;}
.x1a{left:608.133321pt;}
.x17{left:628.933321pt;}
.x19{left:654.213321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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