
    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_e6ced89f1e408d6aa12eb68d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_39ecf6df2679f285819265cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_5c142ee1de04d0d3c467042d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_32be90c2dfdf6a32f0fd518b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_342ab88967780c475a699bfc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_f37ad3883919b0283055853b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_3c19861f8e144e79a2a45953.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1df4663e974fff1d3d8afa42.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_3bf50729d705feae93fe163c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.lse{letter-spacing:0.720000px;}
.ls8{letter-spacing:5.040000px;}
.ls0{letter-spacing:5.760000px;}
.ls4{letter-spacing:7.920000px;}
.lsc{letter-spacing:15.120000px;}
.ls6{letter-spacing:18.000000px;}
.ls5{letter-spacing:27.360000px;}
.ls9{letter-spacing:32.544000px;}
.ls1{letter-spacing:37.440000px;}
.ls11{letter-spacing:41.381280px;}
.ls3{letter-spacing:47.520000px;}
.ls10{letter-spacing:54.144000px;}
.lsb{letter-spacing:159.984000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.940000px;}
.wsa{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._31{margin-left:-9.960000px;}
._34{margin-left:-8.676000px;}
._2d{margin-left:-7.278000px;}
._32{margin-left:-5.814000px;}
._3{margin-left:-4.644000px;}
._1{margin-left:-3.570000px;}
._0{margin-left:-1.566000px;}
._2{width:1.062000px;}
._5{width:2.227440px;}
._1c{width:3.559680px;}
._7{width:5.064000px;}
._6{width:6.168000px;}
._18{width:7.272000px;}
._b{width:8.352000px;}
._a{width:9.432000px;}
._e{width:11.376000px;}
._1d{width:12.888000px;}
._1a{width:14.256000px;}
._19{width:15.480000px;}
._14{width:16.488000px;}
._13{width:20.016000px;}
._12{width:21.024000px;}
._1b{width:22.464000px;}
._10{width:23.904000px;}
._11{width:25.050000px;}
._17{width:26.316000px;}
._16{width:27.558000px;}
._c{width:28.872000px;}
._25{width:30.312000px;}
._21{width:31.464000px;}
._2c{width:33.192000px;}
._2e{width:35.328000px;}
._d{width:36.864000px;}
._2b{width:38.952000px;}
._27{width:40.176000px;}
._26{width:41.256000px;}
._2a{width:42.696000px;}
._15{width:43.992000px;}
._f{width:45.288000px;}
._9{width:48.312000px;}
._1e{width:50.040000px;}
._1f{width:51.174000px;}
._24{width:52.272000px;}
._20{width:58.032000px;}
._29{width:63.936000px;}
._28{width:65.088000px;}
._36{width:70.018560px;}
._37{width:72.059760px;}
._38{width:73.598640px;}
._33{width:83.574000px;}
._8{width:87.696000px;}
._35{width:98.400000px;}
._30{width:99.408000px;}
._2f{width:100.512000px;}
._23{width:147.744000px;}
._22{width:149.904000px;}
._4{width:1241.976000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.536000px;}
.y64{bottom:7.020000px;}
.y67{bottom:7.200000px;}
.y6c{bottom:7.245000px;}
.y7{bottom:7.416000px;}
.ya6{bottom:8.460000px;}
.yab{bottom:10.260000px;}
.ya3{bottom:10.800000px;}
.ya1{bottom:11.160000px;}
.ya9{bottom:12.060000px;}
.y62{bottom:18.900000px;}
.y68{bottom:19.080000px;}
.y6d{bottom:19.125000px;}
.ya7{bottom:20.340000px;}
.y9{bottom:26.640000px;}
.y63{bottom:30.780000px;}
.y66{bottom:30.960000px;}
.y6b{bottom:31.005000px;}
.ya5{bottom:32.220000px;}
.y8{bottom:47.700000px;}
.y5{bottom:68.040000px;}
.ye1{bottom:100.296000px;}
.y86{bottom:104.796000px;}
.y34{bottom:104.976000px;}
.yf6{bottom:105.336000px;}
.y9c{bottom:111.636000px;}
.y60{bottom:113.076000px;}
.ye0{bottom:124.236000px;}
.y85{bottom:128.556000px;}
.y33{bottom:128.916000px;}
.yf5{bottom:129.096000px;}
.y9b{bottom:135.396000px;}
.y5f{bottom:136.836000px;}
.ydf{bottom:147.996000px;}
.y84{bottom:152.310000px;}
.y32{bottom:152.670000px;}
.yf4{bottom:152.850000px;}
.y9a{bottom:159.150000px;}
.y5e{bottom:160.590000px;}
.yde{bottom:171.750000px;}
.y83{bottom:176.070000px;}
.y31{bottom:176.430000px;}
.y99{bottom:183.090000px;}
.y5d{bottom:184.350000px;}
.ydd{bottom:195.510000px;}
.y82{bottom:200.010000px;}
.y30{bottom:200.190000px;}
.yf3{bottom:201.810000px;}
.y98{bottom:206.850000px;}
.y5c{bottom:208.290000px;}
.ydc{bottom:219.450000px;}
.y81{bottom:223.770000px;}
.y2f{bottom:224.130000px;}
.yf2{bottom:225.570000px;}
.yc4{bottom:230.250000px;}
.y97{bottom:230.610000px;}
.y5b{bottom:232.050000px;}
.ydb{bottom:243.210000px;}
.y80{bottom:247.530000px;}
.y2e{bottom:247.890000px;}
.yf1{bottom:249.330000px;}
.y96{bottom:250.410000px;}
.yc3{bottom:254.010000px;}
.y5a{bottom:255.810000px;}
.yda{bottom:266.970000px;}
.y7f{bottom:271.290000px;}
.y2d{bottom:271.650000px;}
.yf0{bottom:273.090000px;}
.yc2{bottom:277.950000px;}
.y59{bottom:279.570000px;}
.y7e{bottom:295.230000px;}
.y2c{bottom:295.410000px;}
.yd9{bottom:296.850000px;}
.yef{bottom:298.290000px;}
.yc1{bottom:301.710000px;}
.y58{bottom:303.330000px;}
.y7d{bottom:318.990000px;}
.y2b{bottom:319.350000px;}
.yd8{bottom:320.610000px;}
.yee{bottom:322.050000px;}
.yc0{bottom:325.470000px;}
.y57{bottom:327.270000px;}
.y7c{bottom:342.795000px;}
.y2a{bottom:343.155000px;}
.yd7{bottom:344.415000px;}
.yed{bottom:345.675000px;}
.ybf{bottom:349.275000px;}
.y56{bottom:351.075000px;}
.y7b{bottom:362.595000px;}
.yd6{bottom:364.215000px;}
.y29{bottom:366.915000px;}
.yec{bottom:371.055000px;}
.ybe{bottom:373.035000px;}
.y55{bottom:374.835000px;}
.y28{bottom:390.675000px;}
.yeb{bottom:394.815000px;}
.ybd{bottom:398.055000px;}
.y54{bottom:398.595000px;}
.y95{bottom:413.355000px;}
.y27{bottom:414.615000px;}
.yea{bottom:418.575000px;}
.y53{bottom:422.535000px;}
.ybc{bottom:423.075000px;}
.y94{bottom:437.295000px;}
.y26{bottom:438.375000px;}
.ye9{bottom:442.335000px;}
.y52{bottom:446.295000px;}
.ybb{bottom:448.275000px;}
.y93{bottom:460.875000px;}
.y25{bottom:462.135000px;}
.ye8{bottom:467.535000px;}
.y51{bottom:470.055000px;}
.yba{bottom:473.295000px;}
.y24{bottom:485.895000px;}
.y92{bottom:486.075000px;}
.ye7{bottom:491.295000px;}
.y50{bottom:493.815000px;}
.yb9{bottom:498.495000px;}
.y23{bottom:509.835000px;}
.y7a{bottom:510.195000px;}
.ye6{bottom:515.055000px;}
.y4f{bottom:517.755000px;}
.yb8{bottom:523.695000px;}
.y22{bottom:533.595000px;}
.y79{bottom:533.955000px;}
.y91{bottom:535.035000px;}
.ye5{bottom:538.815000px;}
.y4e{bottom:541.515000px;}
.yb7{bottom:547.455000px;}
.y21{bottom:557.355000px;}
.y78{bottom:557.715000px;}
.y90{bottom:558.615000px;}
.ye4{bottom:564.015000px;}
.yd5{bottom:564.915000px;}
.y4d{bottom:565.275000px;}
.yb6{bottom:571.215000px;}
.y20{bottom:581.115000px;}
.y77{bottom:581.655000px;}
.y8f{bottom:583.995000px;}
.ye3{bottom:587.775000px;}
.yd4{bottom:588.675000px;}
.y4c{bottom:589.035000px;}
.yb5{bottom:595.155000px;}
.y1f{bottom:605.085000px;}
.y76{bottom:605.445000px;}
.y8e{bottom:607.785000px;}
.ye2{bottom:611.565000px;}
.yd3{bottom:612.465000px;}
.y4b{bottom:613.005000px;}
.yb4{bottom:618.945000px;}
.y1e{bottom:628.845000px;}
.y75{bottom:629.205000px;}
.y8d{bottom:631.365000px;}
.yd2{bottom:636.225000px;}
.y4a{bottom:636.765000px;}
.yb3{bottom:642.705000px;}
.y1d{bottom:652.605000px;}
.y74{bottom:652.965000px;}
.y8c{bottom:656.745000px;}
.y49{bottom:660.525000px;}
.yd1{bottom:661.245000px;}
.yb2{bottom:666.465000px;}
.y1c{bottom:676.365000px;}
.y73{bottom:676.905000px;}
.yf8{bottom:677.445000px;}
.y8b{bottom:680.325000px;}
.y48{bottom:684.285000px;}
.yd0{bottom:686.265000px;}
.yb1{bottom:690.405000px;}
.y72{bottom:694.365000px;}
.y1b{bottom:700.125000px;}
.yf7{bottom:705.345000px;}
.y8a{bottom:705.525000px;}
.y47{bottom:708.225000px;}
.ycf{bottom:711.465000px;}
.yb0{bottom:714.165000px;}
.y1a{bottom:724.065000px;}
.y89{bottom:729.285000px;}
.y46{bottom:731.985000px;}
.yce{bottom:736.485000px;}
.yaf{bottom:737.925000px;}
.y71{bottom:742.605000px;}
.y19{bottom:747.825000px;}
.y88{bottom:754.485000px;}
.y45{bottom:755.745000px;}
.yae{bottom:761.685000px;}
.y70{bottom:767.265000px;}
.y18{bottom:771.585000px;}
.y87{bottom:778.065000px;}
.y44{bottom:779.505000px;}
.yad{bottom:785.625000px;}
.ycd{bottom:786.885000px;}
.y17{bottom:795.345000px;}
.y43{bottom:803.265000px;}
.yac{bottom:809.385000px;}
.ycc{bottom:810.645000px;}
.y6f{bottom:815.505000px;}
.y16{bottom:819.285000px;}
.yaa{bottom:826.845000px;}
.y42{bottom:827.205000px;}
.ycb{bottom:834.405000px;}
.y6e{bottom:840.165000px;}
.y15{bottom:843.045000px;}
.y41{bottom:850.965000px;}
.ya8{bottom:857.805000px;}
.yca{bottom:858.345000px;}
.y6a{bottom:864.645000px;}
.y14{bottom:866.805000px;}
.y40{bottom:874.770000px;}
.yc9{bottom:882.150000px;}
.y13{bottom:890.610000px;}
.ya4{bottom:892.590000px;}
.y3f{bottom:898.530000px;}
.yc8{bottom:905.910000px;}
.y69{bottom:913.110000px;}
.y12{bottom:914.550000px;}
.y3e{bottom:922.470000px;}
.yc7{bottom:929.670000px;}
.y65{bottom:937.590000px;}
.y11{bottom:938.310000px;}
.ya2{bottom:943.890000px;}
.y3d{bottom:946.230000px;}
.yc6{bottom:953.610000px;}
.y10{bottom:962.070000px;}
.y3c{bottom:969.990000px;}
.yc5{bottom:973.410000px;}
.ya0{bottom:975.750000px;}
.yf{bottom:985.830000px;}
.y61{bottom:986.010000px;}
.y3b{bottom:993.750000px;}
.y9f{bottom:1008.330000px;}
.ye{bottom:1009.770000px;}
.y3a{bottom:1017.690000px;}
.yd{bottom:1035.870000px;}
.y39{bottom:1041.450000px;}
.y9e{bottom:1056.750000px;}
.y38{bottom:1065.210000px;}
.yc{bottom:1067.550000px;}
.y37{bottom:1088.970000px;}
.yb{bottom:1099.410000px;}
.y9d{bottom:1104.990000px;}
.y36{bottom:1112.910000px;}
.ya{bottom:1131.090000px;}
.y35{bottom:1136.670000px;}
.y4{bottom:1157.220000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1192.320000px;}
.y1{bottom:1207.800000px;}
.he{height:23.760000px;}
.h10{height:23.940000px;}
.h5{height:24.156000px;}
.h16{height:30.060000px;}
.h13{height:31.140000px;}
.h12{height:31.860000px;}
.h15{height:33.876000px;}
.h2{height:46.696289px;}
.hc{height:47.520000px;}
.hd{height:47.700000px;}
.hf{height:47.736000px;}
.hb{height:49.992188px;}
.h7{height:50.484375px;}
.h14{height:50.580000px;}
.h3{height:51.677227px;}
.ha{height:51.996094px;}
.h11{height:52.417969px;}
.h4{height:54.000000px;}
.h6{height:59.066719px;}
.h17{height:61.329023px;}
.h9{height:62.261719px;}
.h8{height:82.808086px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:126.360000px;}
.w7{width:126.936000px;}
.w4{width:133.596000px;}
.w8{width:137.556000px;}
.wa{width:147.780000px;}
.wd{width:152.670000px;}
.wb{width:158.790000px;}
.w6{width:168.840000px;}
.wc{width:189.030000px;}
.w3{width:287.130000px;}
.w5{width:301.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x21{left:12.060000px;}
.x28{left:18.540000px;}
.x2f{left:23.400000px;}
.x34{left:25.740000px;}
.x29{left:31.140000px;}
.x30{left:33.120000px;}
.x35{left:34.605000px;}
.x27{left:38.880000px;}
.x23{left:41.805000px;}
.x2a{left:45.225000px;}
.x7{left:53.280000px;}
.x33{left:55.800000px;}
.x25{left:56.880000px;}
.x31{left:58.905000px;}
.x2c{left:61.014000px;}
.x2d{left:64.125000px;}
.x36{left:65.385000px;}
.x37{left:66.645000px;}
.x2b{left:68.430000px;}
.x32{left:83.550000px;}
.x2e{left:86.070000px;}
.x4{left:95.795987px;}
.x3e{left:102.635987px;}
.xf{left:112.355987px;}
.x1{left:121.715987px;}
.x3f{left:127.835987px;}
.x14{left:138.275987px;}
.x5{left:143.634000px;}
.x13{left:145.115987px;}
.x12{left:148.895987px;}
.x2{left:150.149987px;}
.x3d{left:155.729987px;}
.xa{left:170.849987px;}
.xb{left:176.249987px;}
.x15{left:188.669987px;}
.x3c{left:191.549987px;}
.x20{left:234.389987px;}
.x9{left:240.149987px;}
.x22{left:245.010000px;}
.x17{left:266.070000px;}
.x11{left:295.814987px;}
.xe{left:299.054987px;}
.x1c{left:309.494987px;}
.x1e{left:351.974987px;}
.x3b{left:353.414987px;}
.xc{left:360.434987px;}
.x39{left:366.374987px;}
.x6{left:383.295000px;}
.x10{left:391.214987px;}
.x18{left:393.735000px;}
.x3{left:402.554987px;}
.x24{left:404.535000px;}
.xd{left:446.654987px;}
.x1f{left:473.144987px;}
.x8{left:517.605000px;}
.x19{left:532.005000px;}
.x3a{left:569.984987px;}
.x38{left:581.144987px;}
.x26{left:594.285000px;}
.x1b{left:604.724987px;}
.x1d{left:610.484987px;}
.x1a{left:670.290000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.640000pt;}
.ls8{letter-spacing:4.480000pt;}
.ls0{letter-spacing:5.120000pt;}
.ls4{letter-spacing:7.040000pt;}
.lsc{letter-spacing:13.440000pt;}
.ls6{letter-spacing:16.000000pt;}
.ls5{letter-spacing:24.320000pt;}
.ls9{letter-spacing:28.928000pt;}
.ls1{letter-spacing:33.280000pt;}
.ls11{letter-spacing:36.783360pt;}
.ls3{letter-spacing:42.240000pt;}
.ls10{letter-spacing:48.128000pt;}
.lsb{letter-spacing:142.208000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.280000pt;}
.wsa{word-spacing:-19.040000pt;}
.wsb{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._31{margin-left:-8.853333pt;}
._34{margin-left:-7.712000pt;}
._2d{margin-left:-6.469333pt;}
._32{margin-left:-5.168000pt;}
._3{margin-left:-4.128000pt;}
._1{margin-left:-3.173333pt;}
._0{margin-left:-1.392000pt;}
._2{width:0.944000pt;}
._5{width:1.979947pt;}
._1c{width:3.164160pt;}
._7{width:4.501333pt;}
._6{width:5.482667pt;}
._18{width:6.464000pt;}
._b{width:7.424000pt;}
._a{width:8.384000pt;}
._e{width:10.112000pt;}
._1d{width:11.456000pt;}
._1a{width:12.672000pt;}
._19{width:13.760000pt;}
._14{width:14.656000pt;}
._13{width:17.792000pt;}
._12{width:18.688000pt;}
._1b{width:19.968000pt;}
._10{width:21.248000pt;}
._11{width:22.266667pt;}
._17{width:23.392000pt;}
._16{width:24.496000pt;}
._c{width:25.664000pt;}
._25{width:26.944000pt;}
._21{width:27.968000pt;}
._2c{width:29.504000pt;}
._2e{width:31.402667pt;}
._d{width:32.768000pt;}
._2b{width:34.624000pt;}
._27{width:35.712000pt;}
._26{width:36.672000pt;}
._2a{width:37.952000pt;}
._15{width:39.104000pt;}
._f{width:40.256000pt;}
._9{width:42.944000pt;}
._1e{width:44.480000pt;}
._1f{width:45.488000pt;}
._24{width:46.464000pt;}
._20{width:51.584000pt;}
._29{width:56.832000pt;}
._28{width:57.856000pt;}
._36{width:62.238720pt;}
._37{width:64.053120pt;}
._38{width:65.421013pt;}
._33{width:74.288000pt;}
._8{width:77.952000pt;}
._35{width:87.466667pt;}
._30{width:88.362667pt;}
._2f{width:89.344000pt;}
._23{width:131.328000pt;}
._22{width:133.248000pt;}
._4{width:1103.978667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.032000pt;}
.y64{bottom:6.240000pt;}
.y67{bottom:6.400000pt;}
.y6c{bottom:6.440000pt;}
.y7{bottom:6.592000pt;}
.ya6{bottom:7.520000pt;}
.yab{bottom:9.120000pt;}
.ya3{bottom:9.600000pt;}
.ya1{bottom:9.920000pt;}
.ya9{bottom:10.720000pt;}
.y62{bottom:16.800000pt;}
.y68{bottom:16.960000pt;}
.y6d{bottom:17.000000pt;}
.ya7{bottom:18.080000pt;}
.y9{bottom:23.680000pt;}
.y63{bottom:27.360000pt;}
.y66{bottom:27.520000pt;}
.y6b{bottom:27.560000pt;}
.ya5{bottom:28.640000pt;}
.y8{bottom:42.400000pt;}
.y5{bottom:60.480000pt;}
.ye1{bottom:89.152000pt;}
.y86{bottom:93.152000pt;}
.y34{bottom:93.312000pt;}
.yf6{bottom:93.632000pt;}
.y9c{bottom:99.232000pt;}
.y60{bottom:100.512000pt;}
.ye0{bottom:110.432000pt;}
.y85{bottom:114.272000pt;}
.y33{bottom:114.592000pt;}
.yf5{bottom:114.752000pt;}
.y9b{bottom:120.352000pt;}
.y5f{bottom:121.632000pt;}
.ydf{bottom:131.552000pt;}
.y84{bottom:135.386667pt;}
.y32{bottom:135.706667pt;}
.yf4{bottom:135.866667pt;}
.y9a{bottom:141.466667pt;}
.y5e{bottom:142.746667pt;}
.yde{bottom:152.666667pt;}
.y83{bottom:156.506667pt;}
.y31{bottom:156.826667pt;}
.y99{bottom:162.746667pt;}
.y5d{bottom:163.866667pt;}
.ydd{bottom:173.786667pt;}
.y82{bottom:177.786667pt;}
.y30{bottom:177.946667pt;}
.yf3{bottom:179.386667pt;}
.y98{bottom:183.866667pt;}
.y5c{bottom:185.146667pt;}
.ydc{bottom:195.066667pt;}
.y81{bottom:198.906667pt;}
.y2f{bottom:199.226667pt;}
.yf2{bottom:200.506667pt;}
.yc4{bottom:204.666667pt;}
.y97{bottom:204.986667pt;}
.y5b{bottom:206.266667pt;}
.ydb{bottom:216.186667pt;}
.y80{bottom:220.026667pt;}
.y2e{bottom:220.346667pt;}
.yf1{bottom:221.626667pt;}
.y96{bottom:222.586667pt;}
.yc3{bottom:225.786667pt;}
.y5a{bottom:227.386667pt;}
.yda{bottom:237.306667pt;}
.y7f{bottom:241.146667pt;}
.y2d{bottom:241.466667pt;}
.yf0{bottom:242.746667pt;}
.yc2{bottom:247.066667pt;}
.y59{bottom:248.506667pt;}
.y7e{bottom:262.426667pt;}
.y2c{bottom:262.586667pt;}
.yd9{bottom:263.866667pt;}
.yef{bottom:265.146667pt;}
.yc1{bottom:268.186667pt;}
.y58{bottom:269.626667pt;}
.y7d{bottom:283.546667pt;}
.y2b{bottom:283.866667pt;}
.yd8{bottom:284.986667pt;}
.yee{bottom:286.266667pt;}
.yc0{bottom:289.306667pt;}
.y57{bottom:290.906667pt;}
.y7c{bottom:304.706667pt;}
.y2a{bottom:305.026667pt;}
.yd7{bottom:306.146667pt;}
.yed{bottom:307.266667pt;}
.ybf{bottom:310.466667pt;}
.y56{bottom:312.066667pt;}
.y7b{bottom:322.306667pt;}
.yd6{bottom:323.746667pt;}
.y29{bottom:326.146667pt;}
.yec{bottom:329.826667pt;}
.ybe{bottom:331.586667pt;}
.y55{bottom:333.186667pt;}
.y28{bottom:347.266667pt;}
.yeb{bottom:350.946667pt;}
.ybd{bottom:353.826667pt;}
.y54{bottom:354.306667pt;}
.y95{bottom:367.426667pt;}
.y27{bottom:368.546667pt;}
.yea{bottom:372.066667pt;}
.y53{bottom:375.586667pt;}
.ybc{bottom:376.066667pt;}
.y94{bottom:388.706667pt;}
.y26{bottom:389.666667pt;}
.ye9{bottom:393.186667pt;}
.y52{bottom:396.706667pt;}
.ybb{bottom:398.466667pt;}
.y93{bottom:409.666667pt;}
.y25{bottom:410.786667pt;}
.ye8{bottom:415.586667pt;}
.y51{bottom:417.826667pt;}
.yba{bottom:420.706667pt;}
.y24{bottom:431.906667pt;}
.y92{bottom:432.066667pt;}
.ye7{bottom:436.706667pt;}
.y50{bottom:438.946667pt;}
.yb9{bottom:443.106667pt;}
.y23{bottom:453.186667pt;}
.y7a{bottom:453.506667pt;}
.ye6{bottom:457.826667pt;}
.y4f{bottom:460.226667pt;}
.yb8{bottom:465.506667pt;}
.y22{bottom:474.306667pt;}
.y79{bottom:474.626667pt;}
.y91{bottom:475.586667pt;}
.ye5{bottom:478.946667pt;}
.y4e{bottom:481.346667pt;}
.yb7{bottom:486.626667pt;}
.y21{bottom:495.426667pt;}
.y78{bottom:495.746667pt;}
.y90{bottom:496.546667pt;}
.ye4{bottom:501.346667pt;}
.yd5{bottom:502.146667pt;}
.y4d{bottom:502.466667pt;}
.yb6{bottom:507.746667pt;}
.y20{bottom:516.546667pt;}
.y77{bottom:517.026667pt;}
.y8f{bottom:519.106667pt;}
.ye3{bottom:522.466667pt;}
.yd4{bottom:523.266667pt;}
.y4c{bottom:523.586667pt;}
.yb5{bottom:529.026667pt;}
.y1f{bottom:537.853333pt;}
.y76{bottom:538.173333pt;}
.y8e{bottom:540.253333pt;}
.ye2{bottom:543.613333pt;}
.yd3{bottom:544.413333pt;}
.y4b{bottom:544.893333pt;}
.yb4{bottom:550.173333pt;}
.y1e{bottom:558.973333pt;}
.y75{bottom:559.293333pt;}
.y8d{bottom:561.213333pt;}
.yd2{bottom:565.533333pt;}
.y4a{bottom:566.013333pt;}
.yb3{bottom:571.293333pt;}
.y1d{bottom:580.093333pt;}
.y74{bottom:580.413333pt;}
.y8c{bottom:583.773333pt;}
.y49{bottom:587.133333pt;}
.yd1{bottom:587.773333pt;}
.yb2{bottom:592.413333pt;}
.y1c{bottom:601.213333pt;}
.y73{bottom:601.693333pt;}
.yf8{bottom:602.173333pt;}
.y8b{bottom:604.733333pt;}
.y48{bottom:608.253333pt;}
.yd0{bottom:610.013333pt;}
.yb1{bottom:613.693333pt;}
.y72{bottom:617.213333pt;}
.y1b{bottom:622.333333pt;}
.yf7{bottom:626.973333pt;}
.y8a{bottom:627.133333pt;}
.y47{bottom:629.533333pt;}
.ycf{bottom:632.413333pt;}
.yb0{bottom:634.813333pt;}
.y1a{bottom:643.613333pt;}
.y89{bottom:648.253333pt;}
.y46{bottom:650.653333pt;}
.yce{bottom:654.653333pt;}
.yaf{bottom:655.933333pt;}
.y71{bottom:660.093333pt;}
.y19{bottom:664.733333pt;}
.y88{bottom:670.653333pt;}
.y45{bottom:671.773333pt;}
.yae{bottom:677.053333pt;}
.y70{bottom:682.013333pt;}
.y18{bottom:685.853333pt;}
.y87{bottom:691.613333pt;}
.y44{bottom:692.893333pt;}
.yad{bottom:698.333333pt;}
.ycd{bottom:699.453333pt;}
.y17{bottom:706.973333pt;}
.y43{bottom:714.013333pt;}
.yac{bottom:719.453333pt;}
.ycc{bottom:720.573333pt;}
.y6f{bottom:724.893333pt;}
.y16{bottom:728.253333pt;}
.yaa{bottom:734.973333pt;}
.y42{bottom:735.293333pt;}
.ycb{bottom:741.693333pt;}
.y6e{bottom:746.813333pt;}
.y15{bottom:749.373333pt;}
.y41{bottom:756.413333pt;}
.ya8{bottom:762.493333pt;}
.yca{bottom:762.973333pt;}
.y6a{bottom:768.573333pt;}
.y14{bottom:770.493333pt;}
.y40{bottom:777.573333pt;}
.yc9{bottom:784.133333pt;}
.y13{bottom:791.653333pt;}
.ya4{bottom:793.413333pt;}
.y3f{bottom:798.693333pt;}
.yc8{bottom:805.253333pt;}
.y69{bottom:811.653333pt;}
.y12{bottom:812.933333pt;}
.y3e{bottom:819.973333pt;}
.yc7{bottom:826.373333pt;}
.y65{bottom:833.413333pt;}
.y11{bottom:834.053333pt;}
.ya2{bottom:839.013333pt;}
.y3d{bottom:841.093333pt;}
.yc6{bottom:847.653333pt;}
.y10{bottom:855.173333pt;}
.y3c{bottom:862.213333pt;}
.yc5{bottom:865.253333pt;}
.ya0{bottom:867.333333pt;}
.yf{bottom:876.293333pt;}
.y61{bottom:876.453333pt;}
.y3b{bottom:883.333333pt;}
.y9f{bottom:896.293333pt;}
.ye{bottom:897.573333pt;}
.y3a{bottom:904.613333pt;}
.yd{bottom:920.773333pt;}
.y39{bottom:925.733333pt;}
.y9e{bottom:939.333333pt;}
.y38{bottom:946.853333pt;}
.yc{bottom:948.933333pt;}
.y37{bottom:967.973333pt;}
.yb{bottom:977.253333pt;}
.y9d{bottom:982.213333pt;}
.y36{bottom:989.253333pt;}
.ya{bottom:1005.413333pt;}
.y35{bottom:1010.373333pt;}
.y4{bottom:1028.640000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1059.840000pt;}
.y1{bottom:1073.600000pt;}
.he{height:21.120000pt;}
.h10{height:21.280000pt;}
.h5{height:21.472000pt;}
.h16{height:26.720000pt;}
.h13{height:27.680000pt;}
.h12{height:28.320000pt;}
.h15{height:30.112000pt;}
.h2{height:41.507812pt;}
.hc{height:42.240000pt;}
.hd{height:42.400000pt;}
.hf{height:42.432000pt;}
.hb{height:44.437500pt;}
.h7{height:44.875000pt;}
.h14{height:44.960000pt;}
.h3{height:45.935313pt;}
.ha{height:46.218750pt;}
.h11{height:46.593750pt;}
.h4{height:48.000000pt;}
.h6{height:52.503750pt;}
.h17{height:54.514687pt;}
.h9{height:55.343750pt;}
.h8{height:73.607188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:112.320000pt;}
.w7{width:112.832000pt;}
.w4{width:118.752000pt;}
.w8{width:122.272000pt;}
.wa{width:131.360000pt;}
.wd{width:135.706667pt;}
.wb{width:141.146667pt;}
.w6{width:150.080000pt;}
.wc{width:168.026667pt;}
.w3{width:255.226667pt;}
.w5{width:267.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x21{left:10.720000pt;}
.x28{left:16.480000pt;}
.x2f{left:20.800000pt;}
.x34{left:22.880000pt;}
.x29{left:27.680000pt;}
.x30{left:29.440000pt;}
.x35{left:30.760000pt;}
.x27{left:34.560000pt;}
.x23{left:37.160000pt;}
.x2a{left:40.200000pt;}
.x7{left:47.360000pt;}
.x33{left:49.600000pt;}
.x25{left:50.560000pt;}
.x31{left:52.360000pt;}
.x2c{left:54.234667pt;}
.x2d{left:57.000000pt;}
.x36{left:58.120000pt;}
.x37{left:59.240000pt;}
.x2b{left:60.826667pt;}
.x32{left:74.266667pt;}
.x2e{left:76.506667pt;}
.x4{left:85.151988pt;}
.x3e{left:91.231988pt;}
.xf{left:99.871988pt;}
.x1{left:108.191988pt;}
.x3f{left:113.631988pt;}
.x14{left:122.911988pt;}
.x5{left:127.674667pt;}
.x13{left:128.991988pt;}
.x12{left:132.351988pt;}
.x2{left:133.466655pt;}
.x3d{left:138.426655pt;}
.xa{left:151.866655pt;}
.xb{left:156.666655pt;}
.x15{left:167.706655pt;}
.x3c{left:170.266655pt;}
.x20{left:208.346655pt;}
.x9{left:213.466655pt;}
.x22{left:217.786667pt;}
.x17{left:236.506667pt;}
.x11{left:262.946655pt;}
.xe{left:265.826655pt;}
.x1c{left:275.106655pt;}
.x1e{left:312.866655pt;}
.x3b{left:314.146655pt;}
.xc{left:320.386655pt;}
.x39{left:325.666655pt;}
.x6{left:340.706667pt;}
.x10{left:347.746655pt;}
.x18{left:349.986667pt;}
.x3{left:357.826655pt;}
.x24{left:359.586667pt;}
.xd{left:397.026655pt;}
.x1f{left:420.573322pt;}
.x8{left:460.093333pt;}
.x19{left:472.893333pt;}
.x3a{left:506.653322pt;}
.x38{left:516.573322pt;}
.x26{left:528.253333pt;}
.x1b{left:537.533322pt;}
.x1d{left:542.653322pt;}
.x1a{left:595.813333pt;}
}




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