
    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_60e20a49fc06f8cd7c49903b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_80035842b3c7ef7cd0a367e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6ed3401d30f6379574ada03e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_861aa910fcc7fe0dc7145142.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_793fc59a5ed1ad8b12e8ca94.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940430;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_55a321f1323ccfcf1cc0140e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_2b713ef1aec2377cfb20ed2f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.540000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106560px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:41.706720px;}
.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;}
}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._31{margin-left:-6.939840px;}
._6{margin-left:-5.662080px;}
._f{margin-left:-3.892080px;}
._7{margin-left:-2.617920px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._8{width:2.992800px;}
._2{width:4.185120px;}
._12{width:5.258880px;}
._b{width:6.446400px;}
._c{width:7.500720px;}
._11{width:8.507040px;}
._a{width:9.628560px;}
._9{width:10.936080px;}
._d{width:12.362640px;}
._e{width:13.521120px;}
._10{width:16.196400px;}
._1b{width:18.159360px;}
._1c{width:19.265760px;}
._32{width:20.414880px;}
._1d{width:21.931920px;}
._14{width:23.784480px;}
._13{width:24.860160px;}
._16{width:26.294400px;}
._15{width:27.728640px;}
._29{width:30.828480px;}
._17{width:32.233680px;}
._22{width:34.063200px;}
._2a{width:38.178960px;}
._2e{width:39.202560px;}
._2f{width:40.688880px;}
._1f{width:41.772240px;}
._19{width:43.975680px;}
._2b{width:45.357360px;}
._24{width:46.911600px;}
._1a{width:49.055280px;}
._25{width:52.529040px;}
._26{width:53.724240px;}
._28{width:56.106960px;}
._35{width:63.039120px;}
._36{width:64.691280px;}
._18{width:72.959280px;}
._27{width:75.178080px;}
._23{width:82.409040px;}
._2c{width:85.389360px;}
._2d{width:86.532480px;}
._21{width:91.193760px;}
._20{width:92.329200px;}
._30{width:95.137920px;}
._5{width:136.056000px;}
._33{width:145.814400px;}
._34{width:149.384400px;}
._1e{width:161.643120px;}
._4{width:636.906000px;}
._3{width:748.236000px;}
.fc4{color:rgb(28,30,33);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:4.500000px;}
.y95{bottom:4.680000px;}
.y78{bottom:13.860000px;}
.y79{bottom:23.040000px;}
.y94{bottom:23.220000px;}
.y9e{bottom:23.265000px;}
.yb{bottom:36.720000px;}
.y88{bottom:41.760000px;}
.y9d{bottom:41.805000px;}
.ya5{bottom:41.934000px;}
.y93{bottom:41.940000px;}
.ya1{bottom:51.114000px;}
.ya{bottom:56.880000px;}
.y87{bottom:60.300000px;}
.ya4{bottom:60.474000px;}
.y92{bottom:60.480000px;}
.y99{bottom:60.525000px;}
.y97{bottom:69.705000px;}
.ya9{bottom:69.885000px;}
.y9{bottom:75.456000px;}
.y86{bottom:79.020000px;}
.y98{bottom:79.065000px;}
.ya3{bottom:79.194000px;}
.y7e{bottom:88.200000px;}
.y85{bottom:97.560000px;}
.y9c{bottom:97.605000px;}
.ya2{bottom:97.734000px;}
.y91{bottom:97.740000px;}
.yab{bottom:97.785000px;}
.y7c{bottom:106.920000px;}
.y72{bottom:113.076000px;}
.ya0{bottom:113.796000px;}
.y124{bottom:114.156000px;}
.y84{bottom:116.280000px;}
.y9b{bottom:116.325000px;}
.y105{bottom:116.856000px;}
.yd2{bottom:120.636000px;}
.y7d{bottom:125.460000px;}
.y8a{bottom:125.670000px;}
.y3d{bottom:130.176000px;}
.y71{bottom:130.356000px;}
.y123{bottom:132.696000px;}
.y104{bottom:134.136000px;}
.y83{bottom:134.820000px;}
.y9a{bottom:134.865000px;}
.y90{bottom:135.030000px;}
.yaa{bottom:135.045000px;}
.yd1{bottom:137.736000px;}
.y70{bottom:147.636000px;}
.y3c{bottom:148.716000px;}
.y122{bottom:151.230000px;}
.y103{bottom:151.410000px;}
.y82{bottom:153.405000px;}
.y8f{bottom:153.570000px;}
.yd0{bottom:155.010000px;}
.y6f{bottom:166.170000px;}
.y3b{bottom:167.430000px;}
.y102{bottom:168.510000px;}
.y8e{bottom:172.110000px;}
.y81{bottom:172.125000px;}
.ycf{bottom:172.290000px;}
.y6e{bottom:184.710000px;}
.y101{bottom:185.790000px;}
.y3a{bottom:185.970000px;}
.yce{bottom:189.570000px;}
.y80{bottom:190.665000px;}
.y8d{bottom:190.830000px;}
.y100{bottom:203.070000px;}
.y6d{bottom:203.430000px;}
.y39{bottom:204.510000px;}
.ycd{bottom:206.850000px;}
.y8c{bottom:209.370000px;}
.y7f{bottom:209.385000px;}
.yff{bottom:220.350000px;}
.y6c{bottom:221.970000px;}
.y38{bottom:223.230000px;}
.ycc{bottom:224.130000px;}
.y8b{bottom:228.090000px;}
.y9f{bottom:230.070000px;}
.yfe{bottom:237.630000px;}
.y6b{bottom:240.690000px;}
.ycb{bottom:241.230000px;}
.y37{bottom:241.770000px;}
.yfd{bottom:254.910000px;}
.yca{bottom:258.510000px;}
.y6a{bottom:259.230000px;}
.y36{bottom:260.490000px;}
.yfc{bottom:272.010000px;}
.yc9{bottom:275.790000px;}
.y69{bottom:276.510000px;}
.y35{bottom:279.030000px;}
.yfb{bottom:289.290000px;}
.yc8{bottom:293.070000px;}
.y68{bottom:293.790000px;}
.y34{bottom:297.570000px;}
.yfa{bottom:306.570000px;}
.yc7{bottom:310.350000px;}
.y67{bottom:311.070000px;}
.y33{bottom:316.290000px;}
.yf9{bottom:323.850000px;}
.y96{bottom:327.630000px;}
.y66{bottom:328.350000px;}
.y32{bottom:334.830000px;}
.yf8{bottom:341.175000px;}
.yc6{bottom:344.775000px;}
.y65{bottom:345.495000px;}
.y31{bottom:353.595000px;}
.yf7{bottom:358.275000px;}
.yc5{bottom:362.055000px;}
.y64{bottom:362.775000px;}
.y30{bottom:372.135000px;}
.yf6{bottom:375.555000px;}
.yc4{bottom:379.335000px;}
.y63{bottom:380.055000px;}
.y2f{bottom:390.855000px;}
.yf5{bottom:392.835000px;}
.yc3{bottom:396.615000px;}
.y62{bottom:397.335000px;}
.y2e{bottom:409.395000px;}
.yf4{bottom:410.115000px;}
.y121{bottom:411.375000px;}
.yc2{bottom:413.895000px;}
.y61{bottom:414.615000px;}
.yf3{bottom:427.395000px;}
.y2d{bottom:427.935000px;}
.y120{bottom:430.095000px;}
.yc1{bottom:430.995000px;}
.y60{bottom:431.895000px;}
.yf2{bottom:444.675000px;}
.y2c{bottom:446.655000px;}
.y11f{bottom:447.375000px;}
.yc0{bottom:448.275000px;}
.y5f{bottom:448.995000px;}
.yf1{bottom:461.775000px;}
.y11e{bottom:464.655000px;}
.y2b{bottom:465.195000px;}
.ybf{bottom:465.555000px;}
.y5e{bottom:466.275000px;}
.yf0{bottom:479.055000px;}
.y89{bottom:481.035000px;}
.y11d{bottom:481.755000px;}
.ybe{bottom:482.835000px;}
.y5d{bottom:483.555000px;}
.y2a{bottom:483.915000px;}
.yef{bottom:496.335000px;}
.y11c{bottom:499.035000px;}
.ybd{bottom:500.115000px;}
.y5c{bottom:500.835000px;}
.y29{bottom:502.455000px;}
.y12a{bottom:511.275000px;}
.yee{bottom:513.615000px;}
.y11b{bottom:516.315000px;}
.ybc{bottom:517.395000px;}
.y5b{bottom:519.375000px;}
.y28{bottom:520.995000px;}
.y129{bottom:529.815000px;}
.y119{bottom:530.895000px;}
.yed{bottom:532.155000px;}
.y11a{bottom:533.595000px;}
.ybb{bottom:534.495000px;}
.y5a{bottom:536.655000px;}
.y27{bottom:539.715000px;}
.y118{bottom:548.175000px;}
.y128{bottom:548.355000px;}
.yec{bottom:550.875000px;}
.yba{bottom:551.775000px;}
.y59{bottom:553.935000px;}
.y26{bottom:560.595000px;}
.y117{bottom:565.275000px;}
.y127{bottom:567.075000px;}
.yeb{bottom:568.155000px;}
.yb9{bottom:569.055000px;}
.y58{bottom:571.215000px;}
.y25{bottom:579.135000px;}
.y116{bottom:582.555000px;}
.yea{bottom:585.255000px;}
.y126{bottom:585.615000px;}
.yb8{bottom:586.335000px;}
.y57{bottom:588.495000px;}
.y24{bottom:597.855000px;}
.y115{bottom:599.835000px;}
.ye9{bottom:602.535000px;}
.yb7{bottom:603.645000px;}
.y125{bottom:604.365000px;}
.y56{bottom:605.625000px;}
.y23{bottom:616.425000px;}
.y114{bottom:617.145000px;}
.ye8{bottom:619.845000px;}
.yb6{bottom:620.925000px;}
.y55{bottom:622.905000px;}
.y113{bottom:634.425000px;}
.y22{bottom:634.965000px;}
.ye7{bottom:637.125000px;}
.yb5{bottom:638.025000px;}
.y54{bottom:641.445000px;}
.y112{bottom:651.705000px;}
.y21{bottom:653.685000px;}
.ye6{bottom:654.405000px;}
.yb4{bottom:655.305000px;}
.y53{bottom:660.165000px;}
.y111{bottom:668.805000px;}
.ye5{bottom:671.685000px;}
.y20{bottom:672.225000px;}
.yb3{bottom:672.585000px;}
.y52{bottom:678.705000px;}
.y110{bottom:686.085000px;}
.ye4{bottom:688.785000px;}
.yb2{bottom:689.865000px;}
.y1f{bottom:690.945000px;}
.y51{bottom:697.425000px;}
.y10f{bottom:703.365000px;}
.ye3{bottom:706.065000px;}
.yb1{bottom:707.145000px;}
.y1e{bottom:709.485000px;}
.y50{bottom:715.965000px;}
.y10e{bottom:720.645000px;}
.ye2{bottom:723.345000px;}
.yb0{bottom:724.425000px;}
.y7b{bottom:727.665000px;}
.y1d{bottom:728.025000px;}
.y4f{bottom:734.505000px;}
.y10d{bottom:737.925000px;}
.ye1{bottom:740.625000px;}
.yaf{bottom:741.525000px;}
.y1c{bottom:746.745000px;}
.y4e{bottom:753.225000px;}
.y10c{bottom:755.025000px;}
.ye0{bottom:757.905000px;}
.yae{bottom:758.805000px;}
.y1b{bottom:765.285000px;}
.y4d{bottom:771.765000px;}
.y10b{bottom:772.305000px;}
.ydf{bottom:775.005000px;}
.yad{bottom:776.085000px;}
.y1a{bottom:784.005000px;}
.y10a{bottom:789.585000px;}
.y4c{bottom:790.485000px;}
.yde{bottom:792.285000px;}
.yac{bottom:793.365000px;}
.y19{bottom:802.545000px;}
.y109{bottom:806.865000px;}
.y4b{bottom:809.025000px;}
.ydd{bottom:809.565000px;}
.ya8{bottom:810.645000px;}
.y18{bottom:821.085000px;}
.y108{bottom:824.145000px;}
.ydc{bottom:826.845000px;}
.y4a{bottom:827.745000px;}
.y17{bottom:839.805000px;}
.y107{bottom:842.685000px;}
.ydb{bottom:844.125000px;}
.y49{bottom:846.285000px;}
.y16{bottom:858.345000px;}
.y106{bottom:861.225000px;}
.yda{bottom:861.405000px;}
.y48{bottom:864.825000px;}
.y15{bottom:877.110000px;}
.yd9{bottom:878.550000px;}
.y47{bottom:883.590000px;}
.y14{bottom:895.650000px;}
.yd8{bottom:895.830000px;}
.y46{bottom:902.130000px;}
.yd7{bottom:913.110000px;}
.y13{bottom:914.370000px;}
.y45{bottom:920.850000px;}
.yd6{bottom:930.390000px;}
.y12{bottom:939.030000px;}
.y44{bottom:939.390000px;}
.yd5{bottom:947.670000px;}
.y11{bottom:951.090000px;}
.y77{bottom:955.590000px;}
.y43{bottom:957.930000px;}
.ya7{bottom:964.230000px;}
.yd4{bottom:964.950000px;}
.y10{bottom:968.370000px;}
.y42{bottom:976.650000px;}
.yd3{bottom:982.050000px;}
.yf{bottom:986.370000px;}
.y41{bottom:995.190000px;}
.y76{bottom:999.330000px;}
.ye{bottom:1007.070000px;}
.y40{bottom:1013.910000px;}
.y75{bottom:1016.610000px;}
.ya6{bottom:1024.530000px;}
.yd{bottom:1027.770000px;}
.y3f{bottom:1032.450000px;}
.y74{bottom:1033.890000px;}
.yc{bottom:1048.290000px;}
.y3e{bottom:1050.990000px;}
.y73{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h9{height:28.115859px;}
.ha{height:37.080000px;}
.h10{height:37.260000px;}
.h6{height:39.049805px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.h13{height:43.302656px;}
.h15{height:43.506914px;}
.h14{height:45.461953px;}
.h3{height:47.901094px;}
.h4{height:50.800781px;}
.h8{height:52.066406px;}
.h11{height:55.800000px;}
.h7{height:65.884219px;}
.he{height:93.060000px;}
.hf{height:111.780000px;}
.hd{height:148.896000px;}
.h12{height:149.076000px;}
.hb{height:223.410000px;}
.hc{height:242.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:102.456000px;}
.w3{width:121.500000px;}
.w7{width:126.360000px;}
.w4{width:130.716000px;}
.w5{width:223.410000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.080000px;}
.x1f{left:4.500000px;}
.x1e{left:5.940000px;}
.x20{left:7.200000px;}
.x19{left:8.280000px;}
.x14{left:11.340000px;}
.x12{left:12.960000px;}
.x23{left:16.020000px;}
.x22{left:17.640000px;}
.x21{left:20.700000px;}
.x17{left:21.960000px;}
.x1d{left:23.220000px;}
.x10{left:24.480000px;}
.x1a{left:25.740000px;}
.x24{left:27.360000px;}
.x16{left:29.520000px;}
.x1b{left:39.960000px;}
.x26{left:41.220000px;}
.x25{left:43.560000px;}
.xf{left:89.856000px;}
.x1{left:108.035987px;}
.x2{left:123.155987px;}
.x7{left:144.215987px;}
.x4{left:157.169987px;}
.x2b{left:162.029987px;}
.x29{left:189.029987px;}
.x11{left:213.690000px;}
.x2a{left:216.029987px;}
.xc{left:242.129987px;}
.x27{left:243.569987px;}
.xb{left:246.089987px;}
.xe{left:342.254987px;}
.x13{left:346.755000px;}
.xa{left:360.614987px;}
.x28{left:370.334987px;}
.x8{left:383.834987px;}
.xd{left:386.534987px;}
.x6{left:396.434987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x3{left:518.504987px;}
.x15{left:572.505000px;}
.x18{left:677.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094720pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:37.072640pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._31{margin-left:-6.168747pt;}
._6{margin-left:-5.032960pt;}
._f{margin-left:-3.459627pt;}
._7{margin-left:-2.327040pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._8{width:2.660267pt;}
._2{width:3.720107pt;}
._12{width:4.674560pt;}
._b{width:5.730133pt;}
._c{width:6.667307pt;}
._11{width:7.561813pt;}
._a{width:8.558720pt;}
._9{width:9.720960pt;}
._d{width:10.989013pt;}
._e{width:12.018773pt;}
._10{width:14.396800pt;}
._1b{width:16.141653pt;}
._1c{width:17.125120pt;}
._32{width:18.146560pt;}
._1d{width:19.495040pt;}
._14{width:21.141760pt;}
._13{width:22.097920pt;}
._16{width:23.372800pt;}
._15{width:24.647680pt;}
._29{width:27.403093pt;}
._17{width:28.652160pt;}
._22{width:30.278400pt;}
._2a{width:33.936853pt;}
._2e{width:34.846720pt;}
._2f{width:36.167893pt;}
._1f{width:37.130880pt;}
._19{width:39.089493pt;}
._2b{width:40.317653pt;}
._24{width:41.699200pt;}
._1a{width:43.604693pt;}
._25{width:46.692480pt;}
._26{width:47.754880pt;}
._28{width:49.872853pt;}
._35{width:56.034773pt;}
._36{width:57.503360pt;}
._18{width:64.852693pt;}
._27{width:66.824960pt;}
._23{width:73.252480pt;}
._2c{width:75.901653pt;}
._2d{width:76.917760pt;}
._21{width:81.061120pt;}
._20{width:82.070400pt;}
._30{width:84.567040pt;}
._5{width:120.938667pt;}
._33{width:129.612800pt;}
._34{width:132.786133pt;}
._1e{width:143.682773pt;}
._4{width:566.138667pt;}
._3{width:665.098667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:4.000000pt;}
.y95{bottom:4.160000pt;}
.y78{bottom:12.320000pt;}
.y79{bottom:20.480000pt;}
.y94{bottom:20.640000pt;}
.y9e{bottom:20.680000pt;}
.yb{bottom:32.640000pt;}
.y88{bottom:37.120000pt;}
.y9d{bottom:37.160000pt;}
.ya5{bottom:37.274667pt;}
.y93{bottom:37.280000pt;}
.ya1{bottom:45.434667pt;}
.ya{bottom:50.560000pt;}
.y87{bottom:53.600000pt;}
.ya4{bottom:53.754667pt;}
.y92{bottom:53.760000pt;}
.y99{bottom:53.800000pt;}
.y97{bottom:61.960000pt;}
.ya9{bottom:62.120000pt;}
.y9{bottom:67.072000pt;}
.y86{bottom:70.240000pt;}
.y98{bottom:70.280000pt;}
.ya3{bottom:70.394667pt;}
.y7e{bottom:78.400000pt;}
.y85{bottom:86.720000pt;}
.y9c{bottom:86.760000pt;}
.ya2{bottom:86.874667pt;}
.y91{bottom:86.880000pt;}
.yab{bottom:86.920000pt;}
.y7c{bottom:95.040000pt;}
.y72{bottom:100.512000pt;}
.ya0{bottom:101.152000pt;}
.y124{bottom:101.472000pt;}
.y84{bottom:103.360000pt;}
.y9b{bottom:103.400000pt;}
.y105{bottom:103.872000pt;}
.yd2{bottom:107.232000pt;}
.y7d{bottom:111.520000pt;}
.y8a{bottom:111.706667pt;}
.y3d{bottom:115.712000pt;}
.y71{bottom:115.872000pt;}
.y123{bottom:117.952000pt;}
.y104{bottom:119.232000pt;}
.y83{bottom:119.840000pt;}
.y9a{bottom:119.880000pt;}
.y90{bottom:120.026667pt;}
.yaa{bottom:120.040000pt;}
.yd1{bottom:122.432000pt;}
.y70{bottom:131.232000pt;}
.y3c{bottom:132.192000pt;}
.y122{bottom:134.426667pt;}
.y103{bottom:134.586667pt;}
.y82{bottom:136.360000pt;}
.y8f{bottom:136.506667pt;}
.yd0{bottom:137.786667pt;}
.y6f{bottom:147.706667pt;}
.y3b{bottom:148.826667pt;}
.y102{bottom:149.786667pt;}
.y8e{bottom:152.986667pt;}
.y81{bottom:153.000000pt;}
.ycf{bottom:153.146667pt;}
.y6e{bottom:164.186667pt;}
.y101{bottom:165.146667pt;}
.y3a{bottom:165.306667pt;}
.yce{bottom:168.506667pt;}
.y80{bottom:169.480000pt;}
.y8d{bottom:169.626667pt;}
.y100{bottom:180.506667pt;}
.y6d{bottom:180.826667pt;}
.y39{bottom:181.786667pt;}
.ycd{bottom:183.866667pt;}
.y8c{bottom:186.106667pt;}
.y7f{bottom:186.120000pt;}
.yff{bottom:195.866667pt;}
.y6c{bottom:197.306667pt;}
.y38{bottom:198.426667pt;}
.ycc{bottom:199.226667pt;}
.y8b{bottom:202.746667pt;}
.y9f{bottom:204.506667pt;}
.yfe{bottom:211.226667pt;}
.y6b{bottom:213.946667pt;}
.ycb{bottom:214.426667pt;}
.y37{bottom:214.906667pt;}
.yfd{bottom:226.586667pt;}
.yca{bottom:229.786667pt;}
.y6a{bottom:230.426667pt;}
.y36{bottom:231.546667pt;}
.yfc{bottom:241.786667pt;}
.yc9{bottom:245.146667pt;}
.y69{bottom:245.786667pt;}
.y35{bottom:248.026667pt;}
.yfb{bottom:257.146667pt;}
.yc8{bottom:260.506667pt;}
.y68{bottom:261.146667pt;}
.y34{bottom:264.506667pt;}
.yfa{bottom:272.506667pt;}
.yc7{bottom:275.866667pt;}
.y67{bottom:276.506667pt;}
.y33{bottom:281.146667pt;}
.yf9{bottom:287.866667pt;}
.y96{bottom:291.226667pt;}
.y66{bottom:291.866667pt;}
.y32{bottom:297.626667pt;}
.yf8{bottom:303.266667pt;}
.yc6{bottom:306.466667pt;}
.y65{bottom:307.106667pt;}
.y31{bottom:314.306667pt;}
.yf7{bottom:318.466667pt;}
.yc5{bottom:321.826667pt;}
.y64{bottom:322.466667pt;}
.y30{bottom:330.786667pt;}
.yf6{bottom:333.826667pt;}
.yc4{bottom:337.186667pt;}
.y63{bottom:337.826667pt;}
.y2f{bottom:347.426667pt;}
.yf5{bottom:349.186667pt;}
.yc3{bottom:352.546667pt;}
.y62{bottom:353.186667pt;}
.y2e{bottom:363.906667pt;}
.yf4{bottom:364.546667pt;}
.y121{bottom:365.666667pt;}
.yc2{bottom:367.906667pt;}
.y61{bottom:368.546667pt;}
.yf3{bottom:379.906667pt;}
.y2d{bottom:380.386667pt;}
.y120{bottom:382.306667pt;}
.yc1{bottom:383.106667pt;}
.y60{bottom:383.906667pt;}
.yf2{bottom:395.266667pt;}
.y2c{bottom:397.026667pt;}
.y11f{bottom:397.666667pt;}
.yc0{bottom:398.466667pt;}
.y5f{bottom:399.106667pt;}
.yf1{bottom:410.466667pt;}
.y11e{bottom:413.026667pt;}
.y2b{bottom:413.506667pt;}
.ybf{bottom:413.826667pt;}
.y5e{bottom:414.466667pt;}
.yf0{bottom:425.826667pt;}
.y89{bottom:427.586667pt;}
.y11d{bottom:428.226667pt;}
.ybe{bottom:429.186667pt;}
.y5d{bottom:429.826667pt;}
.y2a{bottom:430.146667pt;}
.yef{bottom:441.186667pt;}
.y11c{bottom:443.586667pt;}
.ybd{bottom:444.546667pt;}
.y5c{bottom:445.186667pt;}
.y29{bottom:446.626667pt;}
.y12a{bottom:454.466667pt;}
.yee{bottom:456.546667pt;}
.y11b{bottom:458.946667pt;}
.ybc{bottom:459.906667pt;}
.y5b{bottom:461.666667pt;}
.y28{bottom:463.106667pt;}
.y129{bottom:470.946667pt;}
.y119{bottom:471.906667pt;}
.yed{bottom:473.026667pt;}
.y11a{bottom:474.306667pt;}
.ybb{bottom:475.106667pt;}
.y5a{bottom:477.026667pt;}
.y27{bottom:479.746667pt;}
.y118{bottom:487.266667pt;}
.y128{bottom:487.426667pt;}
.yec{bottom:489.666667pt;}
.yba{bottom:490.466667pt;}
.y59{bottom:492.386667pt;}
.y26{bottom:498.306667pt;}
.y117{bottom:502.466667pt;}
.y127{bottom:504.066667pt;}
.yeb{bottom:505.026667pt;}
.yb9{bottom:505.826667pt;}
.y58{bottom:507.746667pt;}
.y25{bottom:514.786667pt;}
.y116{bottom:517.826667pt;}
.yea{bottom:520.226667pt;}
.y126{bottom:520.546667pt;}
.yb8{bottom:521.186667pt;}
.y57{bottom:523.106667pt;}
.y24{bottom:531.426667pt;}
.y115{bottom:533.186667pt;}
.ye9{bottom:535.586667pt;}
.yb7{bottom:536.573333pt;}
.y125{bottom:537.213333pt;}
.y56{bottom:538.333333pt;}
.y23{bottom:547.933333pt;}
.y114{bottom:548.573333pt;}
.ye8{bottom:550.973333pt;}
.yb6{bottom:551.933333pt;}
.y55{bottom:553.693333pt;}
.y113{bottom:563.933333pt;}
.y22{bottom:564.413333pt;}
.ye7{bottom:566.333333pt;}
.yb5{bottom:567.133333pt;}
.y54{bottom:570.173333pt;}
.y112{bottom:579.293333pt;}
.y21{bottom:581.053333pt;}
.ye6{bottom:581.693333pt;}
.yb4{bottom:582.493333pt;}
.y53{bottom:586.813333pt;}
.y111{bottom:594.493333pt;}
.ye5{bottom:597.053333pt;}
.y20{bottom:597.533333pt;}
.yb3{bottom:597.853333pt;}
.y52{bottom:603.293333pt;}
.y110{bottom:609.853333pt;}
.ye4{bottom:612.253333pt;}
.yb2{bottom:613.213333pt;}
.y1f{bottom:614.173333pt;}
.y51{bottom:619.933333pt;}
.y10f{bottom:625.213333pt;}
.ye3{bottom:627.613333pt;}
.yb1{bottom:628.573333pt;}
.y1e{bottom:630.653333pt;}
.y50{bottom:636.413333pt;}
.y10e{bottom:640.573333pt;}
.ye2{bottom:642.973333pt;}
.yb0{bottom:643.933333pt;}
.y7b{bottom:646.813333pt;}
.y1d{bottom:647.133333pt;}
.y4f{bottom:652.893333pt;}
.y10d{bottom:655.933333pt;}
.ye1{bottom:658.333333pt;}
.yaf{bottom:659.133333pt;}
.y1c{bottom:663.773333pt;}
.y4e{bottom:669.533333pt;}
.y10c{bottom:671.133333pt;}
.ye0{bottom:673.693333pt;}
.yae{bottom:674.493333pt;}
.y1b{bottom:680.253333pt;}
.y4d{bottom:686.013333pt;}
.y10b{bottom:686.493333pt;}
.ydf{bottom:688.893333pt;}
.yad{bottom:689.853333pt;}
.y1a{bottom:696.893333pt;}
.y10a{bottom:701.853333pt;}
.y4c{bottom:702.653333pt;}
.yde{bottom:704.253333pt;}
.yac{bottom:705.213333pt;}
.y19{bottom:713.373333pt;}
.y109{bottom:717.213333pt;}
.y4b{bottom:719.133333pt;}
.ydd{bottom:719.613333pt;}
.ya8{bottom:720.573333pt;}
.y18{bottom:729.853333pt;}
.y108{bottom:732.573333pt;}
.ydc{bottom:734.973333pt;}
.y4a{bottom:735.773333pt;}
.y17{bottom:746.493333pt;}
.y107{bottom:749.053333pt;}
.ydb{bottom:750.333333pt;}
.y49{bottom:752.253333pt;}
.y16{bottom:762.973333pt;}
.y106{bottom:765.533333pt;}
.yda{bottom:765.693333pt;}
.y48{bottom:768.733333pt;}
.y15{bottom:779.653333pt;}
.yd9{bottom:780.933333pt;}
.y47{bottom:785.413333pt;}
.y14{bottom:796.133333pt;}
.yd8{bottom:796.293333pt;}
.y46{bottom:801.893333pt;}
.yd7{bottom:811.653333pt;}
.y13{bottom:812.773333pt;}
.y45{bottom:818.533333pt;}
.yd6{bottom:827.013333pt;}
.y12{bottom:834.693333pt;}
.y44{bottom:835.013333pt;}
.yd5{bottom:842.373333pt;}
.y11{bottom:845.413333pt;}
.y77{bottom:849.413333pt;}
.y43{bottom:851.493333pt;}
.ya7{bottom:857.093333pt;}
.yd4{bottom:857.733333pt;}
.y10{bottom:860.773333pt;}
.y42{bottom:868.133333pt;}
.yd3{bottom:872.933333pt;}
.yf{bottom:876.773333pt;}
.y41{bottom:884.613333pt;}
.y76{bottom:888.293333pt;}
.ye{bottom:895.173333pt;}
.y40{bottom:901.253333pt;}
.y75{bottom:903.653333pt;}
.ya6{bottom:910.693333pt;}
.yd{bottom:913.573333pt;}
.y3f{bottom:917.733333pt;}
.y74{bottom:919.013333pt;}
.yc{bottom:931.813333pt;}
.y3e{bottom:934.213333pt;}
.y73{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h9{height:24.991875pt;}
.ha{height:32.960000pt;}
.h10{height:33.120000pt;}
.h6{height:34.710938pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.h13{height:38.491250pt;}
.h15{height:38.672812pt;}
.h14{height:40.410625pt;}
.h3{height:42.578750pt;}
.h4{height:45.156250pt;}
.h8{height:46.281250pt;}
.h11{height:49.600000pt;}
.h7{height:58.563750pt;}
.he{height:82.720000pt;}
.hf{height:99.360000pt;}
.hd{height:132.352000pt;}
.h12{height:132.512000pt;}
.hb{height:198.586667pt;}
.hc{height:215.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:91.072000pt;}
.w3{width:108.000000pt;}
.w7{width:112.320000pt;}
.w4{width:116.192000pt;}
.w5{width:198.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:0.960000pt;}
.x1f{left:4.000000pt;}
.x1e{left:5.280000pt;}
.x20{left:6.400000pt;}
.x19{left:7.360000pt;}
.x14{left:10.080000pt;}
.x12{left:11.520000pt;}
.x23{left:14.240000pt;}
.x22{left:15.680000pt;}
.x21{left:18.400000pt;}
.x17{left:19.520000pt;}
.x1d{left:20.640000pt;}
.x10{left:21.760000pt;}
.x1a{left:22.880000pt;}
.x24{left:24.320000pt;}
.x16{left:26.240000pt;}
.x1b{left:35.520000pt;}
.x26{left:36.640000pt;}
.x25{left:38.720000pt;}
.xf{left:79.872000pt;}
.x1{left:96.031988pt;}
.x2{left:109.471988pt;}
.x7{left:128.191988pt;}
.x4{left:139.706655pt;}
.x2b{left:144.026655pt;}
.x29{left:168.026655pt;}
.x11{left:189.946667pt;}
.x2a{left:192.026655pt;}
.xc{left:215.226655pt;}
.x27{left:216.506655pt;}
.xb{left:218.746655pt;}
.xe{left:304.226655pt;}
.x13{left:308.226667pt;}
.xa{left:320.546655pt;}
.x28{left:329.186655pt;}
.x8{left:341.186655pt;}
.xd{left:343.586655pt;}
.x6{left:352.386655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x3{left:460.893322pt;}
.x15{left:508.893333pt;}
.x18{left:601.893333pt;}
}




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