
    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_c9dc6b392e05def847eb2c5a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6c694d0987ada498690400df.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_4175f45a208485f353be4948.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_366f04b537190d6447b7d4b8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_82dccb28d066d0f3f5083120.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_f17ca89e20c4af607e76e696.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_b1cbdfaf55f87a0c5cfc60cd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_5b1499d07184e9242ae94fb1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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:ffd;src:url('chunks/assets/font_c3029590998babd4e8a3e2ec.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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:ffe;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls4{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.300000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.322800px;}
.ls0{letter-spacing:4.200000px;}
.lsa{letter-spacing:15.720000px;}
.ls9{letter-spacing:45.720000px;}
.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:-16.560000px;}
.ws7{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.400000px;}
.ws5{word-spacing:-13.560000px;}
.ws2{word-spacing:-8.949600px;}
.ws3{word-spacing:-8.136000px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-3.180000px;}
._0{margin-left:-1.560000px;}
._1{width:1.020000px;}
._5{width:2.304000px;}
._3{width:3.450000px;}
._2{width:5.010000px;}
._9{width:6.090000px;}
._7{width:7.860000px;}
._c{width:8.940000px;}
._f{width:10.560000px;}
._10{width:11.640000px;}
._6{width:12.720000px;}
._8{width:13.920000px;}
._14{width:16.200000px;}
._15{width:17.280000px;}
._12{width:18.300000px;}
._13{width:19.380000px;}
._11{width:20.580000px;}
._18{width:21.780000px;}
._19{width:22.920000px;}
._1a{width:24.060000px;}
._17{width:26.040000px;}
._16{width:27.060000px;}
._1d{width:28.500000px;}
._d{width:30.060000px;}
._e{width:31.320000px;}
._b{width:50.460000px;}
._a{width:51.540000px;}
._1c{width:61.020000px;}
._1b{width:62.040000px;}
.fc5{color:transparent;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:57.600000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.244921px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:3.285000px;}
.y85{bottom:3.300000px;}
.y95{bottom:3.315000px;}
.y9d{bottom:3.330000px;}
.y42{bottom:3.600000px;}
.ya8{bottom:3.615000px;}
.y46{bottom:3.900000px;}
.y18{bottom:4.800000px;}
.y44{bottom:10.530000px;}
.ye{bottom:10.800000px;}
.y1a{bottom:13.785000px;}
.yc{bottom:13.800000px;}
.y3{bottom:16.200000px;}
.y41{bottom:20.715000px;}
.y45{bottom:22.245000px;}
.y43{bottom:25.245000px;}
.y5{bottom:25.500000px;}
.y17{bottom:27.900000px;}
.yb{bottom:30.300000px;}
.y2{bottom:34.800000px;}
.y4{bottom:35.400000px;}
.y40{bottom:38.100000px;}
.y16{bottom:44.100000px;}
.ya{bottom:46.500000px;}
.y1{bottom:46.537500px;}
.y3f{bottom:55.215000px;}
.y15{bottom:60.600000px;}
.y3e{bottom:72.600000px;}
.y9{bottom:73.500000px;}
.y14{bottom:76.500000px;}
.y13{bottom:86.700000px;}
.y3d{bottom:89.715000px;}
.y8{bottom:93.000000px;}
.y12{bottom:105.000000px;}
.y3c{bottom:107.100000px;}
.y7{bottom:111.000000px;}
.y54{bottom:118.537500px;}
.y11{bottom:123.900000px;}
.y3b{bottom:124.200000px;}
.yee{bottom:126.037500px;}
.y92{bottom:128.137500px;}
.y53{bottom:135.637500px;}
.y3a{bottom:141.645000px;}
.yed{bottom:143.437500px;}
.y91{bottom:145.537500px;}
.y10{bottom:148.800000px;}
.yfb{bottom:150.045000px;}
.y52{bottom:153.045000px;}
.y39{bottom:158.745000px;}
.yec{bottom:160.530000px;}
.y90{bottom:162.630000px;}
.yfa{bottom:167.130000px;}
.y51{bottom:170.130000px;}
.y38{bottom:175.845000px;}
.yeb{bottom:177.930000px;}
.y8f{bottom:180.045000px;}
.yf9{bottom:184.530000px;}
.y50{bottom:187.530000px;}
.y37{bottom:193.245000px;}
.yea{bottom:195.030000px;}
.y8e{bottom:197.130000px;}
.yf8{bottom:201.675000px;}
.y4f{bottom:204.675000px;}
.y36{bottom:210.345000px;}
.ye9{bottom:212.475000px;}
.y8d{bottom:214.575000px;}
.y28{bottom:217.245000px;}
.yf7{bottom:219.075000px;}
.y4e{bottom:222.075000px;}
.y35{bottom:227.745000px;}
.ye8{bottom:229.575000px;}
.y8c{bottom:231.675000px;}
.y27{bottom:232.245000px;}
.yf6{bottom:236.175000px;}
.y4d{bottom:239.175000px;}
.y34{bottom:244.845000px;}
.ye7{bottom:246.975000px;}
.y8b{bottom:249.075000px;}
.y26{bottom:250.245000px;}
.yf5{bottom:253.575000px;}
.y4c{bottom:256.575000px;}
.y33{bottom:262.245000px;}
.yc9{bottom:262.575000px;}
.ye6{bottom:264.075000px;}
.y8a{bottom:266.175000px;}
.y25{bottom:267.345000px;}
.yf4{bottom:270.675000px;}
.y4b{bottom:273.675000px;}
.yc8{bottom:276.975000px;}
.y32{bottom:279.345000px;}
.y87{bottom:280.875000px;}
.ye5{bottom:281.475000px;}
.y24{bottom:284.745000px;}
.yf3{bottom:288.075000px;}
.y4a{bottom:290.775000px;}
.yc7{bottom:294.975000px;}
.y31{bottom:296.745000px;}
.ye4{bottom:298.575000px;}
.y89{bottom:298.875000px;}
.y23{bottom:302.475000px;}
.yf2{bottom:305.175000px;}
.y49{bottom:308.175000px;}
.yc6{bottom:312.975000px;}
.y30{bottom:313.890000px;}
.ye3{bottom:315.975000px;}
.y88{bottom:316.875000px;}
.y22{bottom:319.875000px;}
.yf1{bottom:322.575000px;}
.y48{bottom:325.275000px;}
.yc5{bottom:330.975000px;}
.y2f{bottom:331.275000px;}
.ye2{bottom:333.075000px;}
.y86{bottom:334.875000px;}
.y21{bottom:338.175000px;}
.yf0{bottom:339.675000px;}
.y47{bottom:342.675000px;}
.y2e{bottom:348.375000px;}
.yc4{bottom:348.975000px;}
.ye1{bottom:350.475000px;}
.y84{bottom:352.875000px;}
.y20{bottom:356.475000px;}
.yef{bottom:357.075000px;}
.y2d{bottom:365.775000px;}
.yc3{bottom:367.005000px;}
.ye0{bottom:367.605000px;}
.y83{bottom:374.205000px;}
.y1f{bottom:374.775000px;}
.y2c{bottom:382.890000px;}
.yc2{bottom:385.005000px;}
.y82{bottom:391.605000px;}
.y1e{bottom:392.775000px;}
.y1b{bottom:393.105000px;}
.y2b{bottom:400.275000px;}
.ydf{bottom:402.120000px;}
.yc1{bottom:403.005000px;}
.y81{bottom:408.705000px;}
.y2a{bottom:417.375000px;}
.y1d{bottom:419.475000px;}
.yde{bottom:419.505000px;}
.yc0{bottom:424.620000px;}
.y80{bottom:426.120000px;}
.y29{bottom:434.775000px;}
.ydd{bottom:436.620000px;}
.y1c{bottom:437.190000px;}
.ybf{bottom:441.705000px;}
.y7f{bottom:443.205000px;}
.ydc{bottom:454.005000px;}
.ybe{bottom:459.105000px;}
.y7e{bottom:460.620000px;}
.ydb{bottom:471.105000px;}
.ybd{bottom:476.205000px;}
.y7d{bottom:477.705000px;}
.yda{bottom:488.505000px;}
.ybc{bottom:493.620000px;}
.y7c{bottom:495.105000px;}
.yd9{bottom:505.605000px;}
.ybb{bottom:510.705000px;}
.y7b{bottom:512.205000px;}
.yd8{bottom:523.005000px;}
.yba{bottom:528.120000px;}
.y7a{bottom:529.650000px;}
.yd7{bottom:540.150000px;}
.yb9{bottom:542.550000px;}
.y79{bottom:546.750000px;}
.yd6{bottom:557.550000px;}
.yb8{bottom:560.550000px;}
.y78{bottom:564.150000px;}
.yd5{bottom:574.650000px;}
.yb7{bottom:578.550000px;}
.y77{bottom:581.250000px;}
.yd4{bottom:592.050000px;}
.yb6{bottom:596.550000px;}
.y76{bottom:598.650000px;}
.yd3{bottom:609.150000px;}
.yb5{bottom:614.550000px;}
.y75{bottom:615.750000px;}
.yd2{bottom:626.550000px;}
.yb4{bottom:632.550000px;}
.y74{bottom:633.150000px;}
.yd1{bottom:643.650000px;}
.y73{bottom:650.250000px;}
.yb3{bottom:650.550000px;}
.yd0{bottom:661.050000px;}
.y72{bottom:667.650000px;}
.yb2{bottom:668.550000px;}
.ycf{bottom:678.150000px;}
.y71{bottom:684.750000px;}
.yb1{bottom:690.150000px;}
.yce{bottom:695.580000px;}
.y70{bottom:702.195000px;}
.yb0{bottom:707.280000px;}
.ycd{bottom:712.695000px;}
.y6f{bottom:719.280000px;}
.yaf{bottom:724.680000px;}
.ycc{bottom:730.080000px;}
.y6e{bottom:736.680000px;}
.yae{bottom:741.780000px;}
.ycb{bottom:747.195000px;}
.y6d{bottom:753.780000px;}
.yad{bottom:759.195000px;}
.yca{bottom:760.995000px;}
.y6c{bottom:771.195000px;}
.yac{bottom:776.295000px;}
.y6b{bottom:788.295000px;}
.yab{bottom:793.695000px;}
.y6a{bottom:805.695000px;}
.yaa{bottom:808.080000px;}
.y69{bottom:822.780000px;}
.ya9{bottom:826.080000px;}
.y68{bottom:840.195000px;}
.y19{bottom:841.695000px;}
.ya7{bottom:844.080000px;}
.y67{bottom:857.295000px;}
.ya6{bottom:862.125000px;}
.yf{bottom:871.125000px;}
.y66{bottom:874.725000px;}
.ya5{bottom:880.125000px;}
.y65{bottom:891.825000px;}
.ya4{bottom:901.725000px;}
.y64{bottom:909.225000px;}
.ya3{bottom:918.825000px;}
.y63{bottom:926.325000px;}
.ya2{bottom:936.225000px;}
.y62{bottom:943.725000px;}
.ya1{bottom:953.325000px;}
.y61{bottom:960.825000px;}
.ya0{bottom:970.725000px;}
.y60{bottom:978.225000px;}
.y9f{bottom:987.825000px;}
.y5f{bottom:995.325000px;}
.y9e{bottom:1002.525000px;}
.y5e{bottom:1012.725000px;}
.y9c{bottom:1020.525000px;}
.y5d{bottom:1029.855000px;}
.yd{bottom:1034.955000px;}
.y9a{bottom:1038.570000px;}
.y5c{bottom:1047.255000px;}
.y99{bottom:1056.555000px;}
.y6{bottom:1060.155000px;}
.y5b{bottom:1064.355000px;}
.y98{bottom:1074.555000px;}
.y5a{bottom:1081.755000px;}
.y97{bottom:1092.555000px;}
.y59{bottom:1098.870000px;}
.y96{bottom:1110.555000px;}
.y58{bottom:1116.255000px;}
.y94{bottom:1128.555000px;}
.y57{bottom:1133.355000px;}
.y93{bottom:1146.555000px;}
.y56{bottom:1150.755000px;}
.y55{bottom:1167.870000px;}
.h20{height:17.100000px;}
.h1f{height:17.137500px;}
.h22{height:17.400000px;}
.h23{height:17.437500px;}
.hc{height:24.900000px;}
.h14{height:27.492188px;}
.h15{height:29.437500px;}
.h13{height:35.806641px;}
.h8{height:36.000000px;}
.h1d{height:36.637500px;}
.h1b{height:36.656250px;}
.h1c{height:41.894531px;}
.h5{height:42.333984px;}
.h3{height:42.451172px;}
.h24{height:43.681641px;}
.h1a{height:43.987500px;}
.hf{height:44.179688px;}
.ha{height:45.000000px;}
.h1e{height:45.820312px;}
.h18{height:47.742188px;}
.h2{height:49.200000px;}
.hd{height:49.500000px;}
.h4{height:53.301139px;}
.h9{height:54.000000px;}
.h11{height:59.677734px;}
.h19{height:61.435547px;}
.h12{height:62.147461px;}
.h10{height:63.000000px;}
.h6{height:65.645508px;}
.h16{height:67.579102px;}
.h21{height:71.100000px;}
.hb{height:71.613281px;}
.h7{height:121.500000px;}
.he{height:163.845000px;}
.h17{height:448.575000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:74.700000px;}
.wd{width:102.637500px;}
.w19{width:106.537500px;}
.wb{width:123.037500px;}
.wc{width:142.537500px;}
.w5{width:145.537500px;}
.w1a{width:167.430000px;}
.wa{width:172.845000px;}
.w17{width:173.745000px;}
.w14{width:200.175000px;}
.w13{width:201.630000px;}
.we{width:202.875000px;}
.w10{width:205.875000px;}
.w8{width:213.975000px;}
.w16{width:217.575000px;}
.w11{width:223.875000px;}
.wf{width:315.375000px;}
.w12{width:343.320000px;}
.w15{width:354.105000px;}
.w18{width:470.850000px;}
.w9{width:533.250000px;}
.w6{width:601.695000px;}
.w2{width:673.725000px;}
.w7{width:747.225000px;}
.w4{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.700000px;}
.x14{left:20.700000px;}
.x18{left:22.200000px;}
.x20{left:23.745000px;}
.x1a{left:24.885000px;}
.x16{left:28.800000px;}
.x1d{left:32.730000px;}
.x3e{left:33.900000px;}
.x35{left:36.900000px;}
.x41{left:41.700000px;}
.x22{left:43.830000px;}
.x3f{left:45.600000px;}
.x31{left:51.600000px;}
.x1e{left:53.730000px;}
.x25{left:57.630000px;}
.x30{left:58.830000px;}
.x27{left:61.830000px;}
.x1f{left:63.630000px;}
.x2c{left:64.800000px;}
.x40{left:70.500000px;}
.x1{left:72.337500px;}
.x2f{left:74.100000px;}
.x38{left:75.600000px;}
.x37{left:77.400000px;}
.x2e{left:79.830000px;}
.x6{left:81.037487px;}
.x21{left:84.330000px;}
.x10{left:90.892500px;}
.x28{left:95.430000px;}
.x7{left:98.137500px;}
.x36{left:101.130000px;}
.xd{left:107.737500px;}
.xf{left:119.137500px;}
.x11{left:120.337500px;}
.x2a{left:137.437500px;}
.x33{left:150.337500px;}
.x3b{left:166.837500px;}
.xe{left:190.237500px;}
.x23{left:200.174987px;}
.x29{left:205.874987px;}
.x15{left:210.374987px;}
.x12{left:215.182500px;}
.x3a{left:216.374987px;}
.x8{left:218.475000px;}
.x17{left:246.975000px;}
.x32{left:270.374987px;}
.x13{left:286.920000px;}
.xb{left:294.975000px;}
.x9{left:354.405000px;}
.x19{left:370.620000px;}
.xa{left:373.620000px;}
.x24{left:389.220000px;}
.x2b{left:417.450000px;}
.x34{left:427.950000px;}
.x39{left:446.549987px;}
.xc{left:462.150000px;}
.x1b{left:513.750000px;}
.x3c{left:544.995000px;}
.x26{left:595.995000px;}
.x1c{left:616.995000px;}
.x2d{left:619.695000px;}
.x3{left:641.587500px;}
.x4{left:646.687500px;}
.x3d{left:652.425000px;}
.x5{left:746.070000px;}
.x42{left:786.869987px;}
@media print{
.v2{vertical-align:-13.866667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.286933pt;}
.ls0{letter-spacing:3.733333pt;}
.lsa{letter-spacing:13.973333pt;}
.ls9{letter-spacing:40.640000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.800000pt;}
.ws5{word-spacing:-12.053333pt;}
.ws2{word-spacing:-7.955200pt;}
.ws3{word-spacing:-7.232000pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-2.826667pt;}
._0{margin-left:-1.386667pt;}
._1{width:0.906667pt;}
._5{width:2.048000pt;}
._3{width:3.066667pt;}
._2{width:4.453333pt;}
._9{width:5.413333pt;}
._7{width:6.986667pt;}
._c{width:7.946667pt;}
._f{width:9.386667pt;}
._10{width:10.346667pt;}
._6{width:11.306667pt;}
._8{width:12.373333pt;}
._14{width:14.400000pt;}
._15{width:15.360000pt;}
._12{width:16.266667pt;}
._13{width:17.226667pt;}
._11{width:18.293333pt;}
._18{width:19.360000pt;}
._19{width:20.373333pt;}
._1a{width:21.386667pt;}
._17{width:23.146667pt;}
._16{width:24.053333pt;}
._1d{width:25.333333pt;}
._d{width:26.720000pt;}
._e{width:27.840000pt;}
._b{width:44.853333pt;}
._a{width:45.813333pt;}
._1c{width:54.240000pt;}
._1b{width:55.146667pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:51.200000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.217707pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:2.920000pt;}
.y85{bottom:2.933333pt;}
.y95{bottom:2.946667pt;}
.y9d{bottom:2.960000pt;}
.y42{bottom:3.200000pt;}
.ya8{bottom:3.213333pt;}
.y46{bottom:3.466667pt;}
.y18{bottom:4.266667pt;}
.y44{bottom:9.360000pt;}
.ye{bottom:9.600000pt;}
.y1a{bottom:12.253333pt;}
.yc{bottom:12.266667pt;}
.y3{bottom:14.400000pt;}
.y41{bottom:18.413333pt;}
.y45{bottom:19.773333pt;}
.y43{bottom:22.440000pt;}
.y5{bottom:22.666667pt;}
.y17{bottom:24.800000pt;}
.yb{bottom:26.933333pt;}
.y2{bottom:30.933333pt;}
.y4{bottom:31.466667pt;}
.y40{bottom:33.866667pt;}
.y16{bottom:39.200000pt;}
.ya{bottom:41.333333pt;}
.y1{bottom:41.366667pt;}
.y3f{bottom:49.080000pt;}
.y15{bottom:53.866667pt;}
.y3e{bottom:64.533333pt;}
.y9{bottom:65.333333pt;}
.y14{bottom:68.000000pt;}
.y13{bottom:77.066667pt;}
.y3d{bottom:79.746667pt;}
.y8{bottom:82.666667pt;}
.y12{bottom:93.333333pt;}
.y3c{bottom:95.200000pt;}
.y7{bottom:98.666667pt;}
.y54{bottom:105.366667pt;}
.y11{bottom:110.133333pt;}
.y3b{bottom:110.400000pt;}
.yee{bottom:112.033333pt;}
.y92{bottom:113.900000pt;}
.y53{bottom:120.566667pt;}
.y3a{bottom:125.906667pt;}
.yed{bottom:127.500000pt;}
.y91{bottom:129.366667pt;}
.y10{bottom:132.266667pt;}
.yfb{bottom:133.373333pt;}
.y52{bottom:136.040000pt;}
.y39{bottom:141.106667pt;}
.yec{bottom:142.693333pt;}
.y90{bottom:144.560000pt;}
.yfa{bottom:148.560000pt;}
.y51{bottom:151.226667pt;}
.y38{bottom:156.306667pt;}
.yeb{bottom:158.160000pt;}
.y8f{bottom:160.040000pt;}
.yf9{bottom:164.026667pt;}
.y50{bottom:166.693333pt;}
.y37{bottom:171.773333pt;}
.yea{bottom:173.360000pt;}
.y8e{bottom:175.226667pt;}
.yf8{bottom:179.266667pt;}
.y4f{bottom:181.933333pt;}
.y36{bottom:186.973333pt;}
.ye9{bottom:188.866667pt;}
.y8d{bottom:190.733333pt;}
.y28{bottom:193.106667pt;}
.yf7{bottom:194.733333pt;}
.y4e{bottom:197.400000pt;}
.y35{bottom:202.440000pt;}
.ye8{bottom:204.066667pt;}
.y8c{bottom:205.933333pt;}
.y27{bottom:206.440000pt;}
.yf6{bottom:209.933333pt;}
.y4d{bottom:212.600000pt;}
.y34{bottom:217.640000pt;}
.ye7{bottom:219.533333pt;}
.y8b{bottom:221.400000pt;}
.y26{bottom:222.440000pt;}
.yf5{bottom:225.400000pt;}
.y4c{bottom:228.066667pt;}
.y33{bottom:233.106667pt;}
.yc9{bottom:233.400000pt;}
.ye6{bottom:234.733333pt;}
.y8a{bottom:236.600000pt;}
.y25{bottom:237.640000pt;}
.yf4{bottom:240.600000pt;}
.y4b{bottom:243.266667pt;}
.yc8{bottom:246.200000pt;}
.y32{bottom:248.306667pt;}
.y87{bottom:249.666667pt;}
.ye5{bottom:250.200000pt;}
.y24{bottom:253.106667pt;}
.yf3{bottom:256.066667pt;}
.y4a{bottom:258.466667pt;}
.yc7{bottom:262.200000pt;}
.y31{bottom:263.773333pt;}
.ye4{bottom:265.400000pt;}
.y89{bottom:265.666667pt;}
.y23{bottom:268.866667pt;}
.yf2{bottom:271.266667pt;}
.y49{bottom:273.933333pt;}
.yc6{bottom:278.200000pt;}
.y30{bottom:279.013333pt;}
.ye3{bottom:280.866667pt;}
.y88{bottom:281.666667pt;}
.y22{bottom:284.333333pt;}
.yf1{bottom:286.733333pt;}
.y48{bottom:289.133333pt;}
.yc5{bottom:294.200000pt;}
.y2f{bottom:294.466667pt;}
.ye2{bottom:296.066667pt;}
.y86{bottom:297.666667pt;}
.y21{bottom:300.600000pt;}
.yf0{bottom:301.933333pt;}
.y47{bottom:304.600000pt;}
.y2e{bottom:309.666667pt;}
.yc4{bottom:310.200000pt;}
.ye1{bottom:311.533333pt;}
.y84{bottom:313.666667pt;}
.y20{bottom:316.866667pt;}
.yef{bottom:317.400000pt;}
.y2d{bottom:325.133333pt;}
.yc3{bottom:326.226667pt;}
.ye0{bottom:326.760000pt;}
.y83{bottom:332.626667pt;}
.y1f{bottom:333.133333pt;}
.y2c{bottom:340.346667pt;}
.yc2{bottom:342.226667pt;}
.y82{bottom:348.093333pt;}
.y1e{bottom:349.133333pt;}
.y1b{bottom:349.426667pt;}
.y2b{bottom:355.800000pt;}
.ydf{bottom:357.440000pt;}
.yc1{bottom:358.226667pt;}
.y81{bottom:363.293333pt;}
.y2a{bottom:371.000000pt;}
.y1d{bottom:372.866667pt;}
.yde{bottom:372.893333pt;}
.yc0{bottom:377.440000pt;}
.y80{bottom:378.773333pt;}
.y29{bottom:386.466667pt;}
.ydd{bottom:388.106667pt;}
.y1c{bottom:388.613333pt;}
.ybf{bottom:392.626667pt;}
.y7f{bottom:393.960000pt;}
.ydc{bottom:403.560000pt;}
.ybe{bottom:408.093333pt;}
.y7e{bottom:409.440000pt;}
.ydb{bottom:418.760000pt;}
.ybd{bottom:423.293333pt;}
.y7d{bottom:424.626667pt;}
.yda{bottom:434.226667pt;}
.ybc{bottom:438.773333pt;}
.y7c{bottom:440.093333pt;}
.yd9{bottom:449.426667pt;}
.ybb{bottom:453.960000pt;}
.y7b{bottom:455.293333pt;}
.yd8{bottom:464.893333pt;}
.yba{bottom:469.440000pt;}
.y7a{bottom:470.800000pt;}
.yd7{bottom:480.133333pt;}
.yb9{bottom:482.266667pt;}
.y79{bottom:486.000000pt;}
.yd6{bottom:495.600000pt;}
.yb8{bottom:498.266667pt;}
.y78{bottom:501.466667pt;}
.yd5{bottom:510.800000pt;}
.yb7{bottom:514.266667pt;}
.y77{bottom:516.666667pt;}
.yd4{bottom:526.266667pt;}
.yb6{bottom:530.266667pt;}
.y76{bottom:532.133333pt;}
.yd3{bottom:541.466667pt;}
.yb5{bottom:546.266667pt;}
.y75{bottom:547.333333pt;}
.yd2{bottom:556.933333pt;}
.yb4{bottom:562.266667pt;}
.y74{bottom:562.800000pt;}
.yd1{bottom:572.133333pt;}
.y73{bottom:578.000000pt;}
.yb3{bottom:578.266667pt;}
.yd0{bottom:587.600000pt;}
.y72{bottom:593.466667pt;}
.yb2{bottom:594.266667pt;}
.ycf{bottom:602.800000pt;}
.y71{bottom:608.666667pt;}
.yb1{bottom:613.466667pt;}
.yce{bottom:618.293333pt;}
.y70{bottom:624.173333pt;}
.yb0{bottom:628.693333pt;}
.ycd{bottom:633.506667pt;}
.y6f{bottom:639.360000pt;}
.yaf{bottom:644.160000pt;}
.ycc{bottom:648.960000pt;}
.y6e{bottom:654.826667pt;}
.yae{bottom:659.360000pt;}
.ycb{bottom:664.173333pt;}
.y6d{bottom:670.026667pt;}
.yad{bottom:674.840000pt;}
.yca{bottom:676.440000pt;}
.y6c{bottom:685.506667pt;}
.yac{bottom:690.040000pt;}
.y6b{bottom:700.706667pt;}
.yab{bottom:705.506667pt;}
.y6a{bottom:716.173333pt;}
.yaa{bottom:718.293333pt;}
.y69{bottom:731.360000pt;}
.ya9{bottom:734.293333pt;}
.y68{bottom:746.840000pt;}
.y19{bottom:748.173333pt;}
.ya7{bottom:750.293333pt;}
.y67{bottom:762.040000pt;}
.ya6{bottom:766.333333pt;}
.yf{bottom:774.333333pt;}
.y66{bottom:777.533333pt;}
.ya5{bottom:782.333333pt;}
.y65{bottom:792.733333pt;}
.ya4{bottom:801.533333pt;}
.y64{bottom:808.200000pt;}
.ya3{bottom:816.733333pt;}
.y63{bottom:823.400000pt;}
.ya2{bottom:832.200000pt;}
.y62{bottom:838.866667pt;}
.ya1{bottom:847.400000pt;}
.y61{bottom:854.066667pt;}
.ya0{bottom:862.866667pt;}
.y60{bottom:869.533333pt;}
.y9f{bottom:878.066667pt;}
.y5f{bottom:884.733333pt;}
.y9e{bottom:891.133333pt;}
.y5e{bottom:900.200000pt;}
.y9c{bottom:907.133333pt;}
.y5d{bottom:915.426667pt;}
.yd{bottom:919.960000pt;}
.y9a{bottom:923.173333pt;}
.y5c{bottom:930.893333pt;}
.y99{bottom:939.160000pt;}
.y6{bottom:942.360000pt;}
.y5b{bottom:946.093333pt;}
.y98{bottom:955.160000pt;}
.y5a{bottom:961.560000pt;}
.y97{bottom:971.160000pt;}
.y59{bottom:976.773333pt;}
.y96{bottom:987.160000pt;}
.y58{bottom:992.226667pt;}
.y94{bottom:1003.160000pt;}
.y57{bottom:1007.426667pt;}
.y93{bottom:1019.160000pt;}
.y56{bottom:1022.893333pt;}
.y55{bottom:1038.106667pt;}
.h20{height:15.200000pt;}
.h1f{height:15.233333pt;}
.h22{height:15.466667pt;}
.h23{height:15.500000pt;}
.hc{height:22.133333pt;}
.h14{height:24.437500pt;}
.h15{height:26.166667pt;}
.h13{height:31.828125pt;}
.h8{height:32.000000pt;}
.h1d{height:32.566667pt;}
.h1b{height:32.583333pt;}
.h1c{height:37.239583pt;}
.h5{height:37.630208pt;}
.h3{height:37.734375pt;}
.h24{height:38.828125pt;}
.h1a{height:39.100000pt;}
.hf{height:39.270833pt;}
.ha{height:40.000000pt;}
.h1e{height:40.729167pt;}
.h18{height:42.437500pt;}
.h2{height:43.733333pt;}
.hd{height:44.000000pt;}
.h4{height:47.378790pt;}
.h9{height:48.000000pt;}
.h11{height:53.046875pt;}
.h19{height:54.609375pt;}
.h12{height:55.242187pt;}
.h10{height:56.000000pt;}
.h6{height:58.351562pt;}
.h16{height:60.070312pt;}
.h21{height:63.200000pt;}
.hb{height:63.656250pt;}
.h7{height:108.000000pt;}
.he{height:145.640000pt;}
.h17{height:398.733333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.400000pt;}
.wd{width:91.233333pt;}
.w19{width:94.700000pt;}
.wb{width:109.366667pt;}
.wc{width:126.700000pt;}
.w5{width:129.366667pt;}
.w1a{width:148.826667pt;}
.wa{width:153.640000pt;}
.w17{width:154.440000pt;}
.w14{width:177.933333pt;}
.w13{width:179.226667pt;}
.we{width:180.333333pt;}
.w10{width:183.000000pt;}
.w8{width:190.200000pt;}
.w16{width:193.400000pt;}
.w11{width:199.000000pt;}
.wf{width:280.333333pt;}
.w12{width:305.173333pt;}
.w15{width:314.760000pt;}
.w18{width:418.533333pt;}
.w9{width:474.000000pt;}
.w6{width:534.840000pt;}
.w2{width:598.866667pt;}
.w7{width:664.200000pt;}
.w4{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.733333pt;}
.x14{left:18.400000pt;}
.x18{left:19.733333pt;}
.x20{left:21.106667pt;}
.x1a{left:22.120000pt;}
.x16{left:25.600000pt;}
.x1d{left:29.093333pt;}
.x3e{left:30.133333pt;}
.x35{left:32.800000pt;}
.x41{left:37.066667pt;}
.x22{left:38.960000pt;}
.x3f{left:40.533333pt;}
.x31{left:45.866667pt;}
.x1e{left:47.760000pt;}
.x25{left:51.226667pt;}
.x30{left:52.293333pt;}
.x27{left:54.960000pt;}
.x1f{left:56.560000pt;}
.x2c{left:57.600000pt;}
.x40{left:62.666667pt;}
.x1{left:64.300000pt;}
.x2f{left:65.866667pt;}
.x38{left:67.200000pt;}
.x37{left:68.800000pt;}
.x2e{left:70.960000pt;}
.x6{left:72.033322pt;}
.x21{left:74.960000pt;}
.x10{left:80.793333pt;}
.x28{left:84.826667pt;}
.x7{left:87.233333pt;}
.x36{left:89.893333pt;}
.xd{left:95.766667pt;}
.xf{left:105.900000pt;}
.x11{left:106.966667pt;}
.x2a{left:122.166667pt;}
.x33{left:133.633333pt;}
.x3b{left:148.300000pt;}
.xe{left:169.100000pt;}
.x23{left:177.933322pt;}
.x29{left:182.999988pt;}
.x15{left:186.999988pt;}
.x12{left:191.273333pt;}
.x3a{left:192.333322pt;}
.x8{left:194.200000pt;}
.x17{left:219.533333pt;}
.x32{left:240.333322pt;}
.x13{left:255.040000pt;}
.xb{left:262.200000pt;}
.x9{left:315.026667pt;}
.x19{left:329.440000pt;}
.xa{left:332.106667pt;}
.x24{left:345.973333pt;}
.x2b{left:371.066667pt;}
.x34{left:380.400000pt;}
.x39{left:396.933322pt;}
.xc{left:410.800000pt;}
.x1b{left:456.666667pt;}
.x3c{left:484.440000pt;}
.x26{left:529.773333pt;}
.x1c{left:548.440000pt;}
.x2d{left:550.840000pt;}
.x3{left:570.300000pt;}
.x4{left:574.833333pt;}
.x3d{left:579.933333pt;}
.x5{left:663.173333pt;}
.x42{left:699.439988pt;}
}




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