
    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_f3467e60f3aa3ef8e50850b1.woff2')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_fcf5b8a796b687577bdafbe3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_66cbb9d72c82f873730ab786.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_42a67a6e92d19a2a7fada390.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3978b7a597790de83c1878af.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_64627b91870eab23485438de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_3e25f69ab4010cb1fb7619dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_ea8cd95aaddb451c941bbd32.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.010080px;}
.ls1b{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.066960px;}
.ls5{letter-spacing:0.106560px;}
.ls6{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.130080px;}
.ls0{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.186960px;}
.ls14{letter-spacing:0.190080px;}
.ls3{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.336000px;}
.lsa{letter-spacing:0.360000px;}
.lse{letter-spacing:0.513600px;}
.ls4{letter-spacing:0.828000px;}
.ls10{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.620000px;}
.lsf{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.220000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1c{margin-left:-3.536160px;}
._11{margin-left:-2.203200px;}
._0{margin-left:-1.080000px;}
._12{width:1.131600px;}
._1{width:2.220000px;}
._13{width:3.223440px;}
._16{width:4.900320px;}
._15{width:6.095520px;}
._1a{width:7.768800px;}
._18{width:9.315600px;}
._6{width:10.800000px;}
._1b{width:11.804880px;}
._17{width:12.852720px;}
._14{width:13.864320px;}
._1e{width:16.135200px;}
._19{width:17.633040px;}
._f{width:18.948000px;}
._21{width:20.079120px;}
._1d{width:22.649040px;}
._22{width:31.819920px;}
._23{width:33.334800px;}
._26{width:36.935520px;}
._27{width:38.558400px;}
._1f{width:52.110720px;}
._25{width:57.034560px;}
._24{width:58.086720px;}
._7{width:76.284960px;}
._20{width:96.751440px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y73{bottom:5.760000px;}
.y7e{bottom:5.790000px;}
.ye{bottom:5.940000px;}
.ya3{bottom:8.820000px;}
.y6{bottom:12.600000px;}
.y76{bottom:15.660000px;}
.y7c{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.ya1{bottom:19.260000px;}
.ye2{bottom:20.745000px;}
.ye4{bottom:21.060000px;}
.y70{bottom:22.140000px;}
.y72{bottom:22.320000px;}
.yc2{bottom:23.220000px;}
.yc4{bottom:23.580000px;}
.y78{bottom:25.560000px;}
.y75{bottom:25.740000px;}
.ye0{bottom:31.005000px;}
.y6e{bottom:32.220000px;}
.yc0{bottom:33.480000px;}
.yc{bottom:34.560000px;}
.y5{bottom:40.500000px;}
.ye3{bottom:40.905000px;}
.y71{bottom:42.300000px;}
.yc3{bottom:43.380000px;}
.yb{bottom:55.080000px;}
.y4{bottom:68.400000px;}
.yd{bottom:71.820000px;}
.ya{bottom:75.420000px;}
.y3{bottom:96.510000px;}
.y107{bottom:97.380000px;}
.y123{bottom:99.360000px;}
.y69{bottom:104.940000px;}
.yb7{bottom:111.780000px;}
.y6d{bottom:113.940000px;}
.y99{bottom:114.480000px;}
.y106{bottom:117.180000px;}
.y122{bottom:119.160000px;}
.y68{bottom:124.920000px;}
.y2{bottom:125.850000px;}
.y3a{bottom:127.800000px;}
.yb6{bottom:131.580000px;}
.yde{bottom:133.740000px;}
.y6c{bottom:133.920000px;}
.y98{bottom:134.280000px;}
.y105{bottom:137.160000px;}
.y121{bottom:138.960000px;}
.y67{bottom:144.720000px;}
.y39{bottom:147.600000px;}
.y124{bottom:151.380000px;}
.yb5{bottom:151.560000px;}
.y6b{bottom:153.750000px;}
.y97{bottom:154.110000px;}
.y104{bottom:156.990000px;}
.y120{bottom:158.790000px;}
.y66{bottom:164.550000px;}
.y38{bottom:167.430000px;}
.yb4{bottom:171.390000px;}
.y6a{bottom:173.550000px;}
.y96{bottom:173.910000px;}
.y103{bottom:176.790000px;}
.y11f{bottom:178.770000px;}
.ydd{bottom:182.550000px;}
.y37{bottom:187.230000px;}
.yb3{bottom:191.190000px;}
.y65{bottom:193.350000px;}
.y95{bottom:193.710000px;}
.y102{bottom:196.590000px;}
.y11e{bottom:198.570000px;}
.ydc{bottom:202.350000px;}
.y36{bottom:207.030000px;}
.yb2{bottom:210.990000px;}
.y64{bottom:213.150000px;}
.y94{bottom:213.690000px;}
.y101{bottom:216.390000px;}
.y11d{bottom:218.370000px;}
.ydb{bottom:222.150000px;}
.y35{bottom:227.010000px;}
.yb1{bottom:230.790000px;}
.y63{bottom:233.130000px;}
.y93{bottom:233.490000px;}
.y100{bottom:236.370000px;}
.y11c{bottom:238.170000px;}
.yda{bottom:241.950000px;}
.y34{bottom:246.810000px;}
.yb0{bottom:250.770000px;}
.y62{bottom:252.930000px;}
.y92{bottom:253.290000px;}
.yff{bottom:256.170000px;}
.y11b{bottom:257.970000px;}
.yd9{bottom:261.930000px;}
.y33{bottom:266.610000px;}
.yaf{bottom:270.570000px;}
.y61{bottom:272.730000px;}
.y91{bottom:273.090000px;}
.yfe{bottom:275.970000px;}
.y11a{bottom:277.950000px;}
.yd8{bottom:281.730000px;}
.y32{bottom:286.410000px;}
.yae{bottom:290.370000px;}
.y60{bottom:292.530000px;}
.y90{bottom:292.890000px;}
.yfd{bottom:295.770000px;}
.y119{bottom:297.750000px;}
.yd7{bottom:301.530000px;}
.y31{bottom:306.210000px;}
.yad{bottom:310.170000px;}
.y5f{bottom:312.330000px;}
.y8f{bottom:312.870000px;}
.yfc{bottom:315.570000px;}
.y118{bottom:317.550000px;}
.yd6{bottom:321.330000px;}
.y30{bottom:326.190000px;}
.yac{bottom:329.970000px;}
.y5e{bottom:332.310000px;}
.y8e{bottom:332.670000px;}
.y117{bottom:334.830000px;}
.yfb{bottom:335.550000px;}
.yd5{bottom:341.130000px;}
.y2f{bottom:345.990000px;}
.yab{bottom:349.950000px;}
.y5d{bottom:352.110000px;}
.y8d{bottom:352.470000px;}
.y116{bottom:354.630000px;}
.yfa{bottom:355.350000px;}
.yd4{bottom:361.110000px;}
.y2e{bottom:365.790000px;}
.yaa{bottom:369.750000px;}
.y5c{bottom:371.910000px;}
.y8c{bottom:372.270000px;}
.y115{bottom:374.430000px;}
.yf9{bottom:375.150000px;}
.yd3{bottom:380.910000px;}
.ya9{bottom:384.510000px;}
.y2d{bottom:385.590000px;}
.y5b{bottom:391.710000px;}
.y8b{bottom:392.070000px;}
.y114{bottom:394.230000px;}
.yf8{bottom:394.950000px;}
.yd2{bottom:400.755000px;}
.ya8{bottom:405.075000px;}
.y2c{bottom:405.435000px;}
.y5a{bottom:411.555000px;}
.y8a{bottom:412.095000px;}
.y113{bottom:414.255000px;}
.yf7{bottom:414.795000px;}
.yd1{bottom:420.555000px;}
.y2b{bottom:425.415000px;}
.ya7{bottom:425.775000px;}
.y59{bottom:431.535000px;}
.y89{bottom:431.895000px;}
.y112{bottom:434.055000px;}
.yf6{bottom:434.775000px;}
.yd0{bottom:440.355000px;}
.y2a{bottom:445.215000px;}
.ya6{bottom:446.295000px;}
.y58{bottom:451.335000px;}
.y88{bottom:451.695000px;}
.y111{bottom:453.855000px;}
.yf5{bottom:454.575000px;}
.ycf{bottom:460.335000px;}
.y29{bottom:465.015000px;}
.ya5{bottom:466.815000px;}
.y57{bottom:471.135000px;}
.y87{bottom:471.495000px;}
.y110{bottom:473.655000px;}
.yf4{bottom:474.375000px;}
.yce{bottom:480.135000px;}
.y28{bottom:484.815000px;}
.ya4{bottom:487.515000px;}
.y56{bottom:490.935000px;}
.y86{bottom:491.295000px;}
.y10f{bottom:493.455000px;}
.yf3{bottom:494.175000px;}
.ycd{bottom:499.935000px;}
.y27{bottom:504.615000px;}
.ya0{bottom:508.035000px;}
.y55{bottom:510.735000px;}
.y85{bottom:511.275000px;}
.y10e{bottom:513.435000px;}
.yf2{bottom:513.975000px;}
.ycc{bottom:519.735000px;}
.y26{bottom:524.595000px;}
.ya2{bottom:528.735000px;}
.y54{bottom:530.715000px;}
.y84{bottom:531.075000px;}
.y10d{bottom:533.235000px;}
.yf1{bottom:533.955000px;}
.ycb{bottom:539.535000px;}
.y25{bottom:544.395000px;}
.y53{bottom:550.515000px;}
.y83{bottom:550.875000px;}
.y10c{bottom:553.035000px;}
.yf0{bottom:553.755000px;}
.yca{bottom:554.475000px;}
.y9f{bottom:561.315000px;}
.y24{bottom:564.195000px;}
.y52{bottom:570.315000px;}
.y82{bottom:570.675000px;}
.y10b{bottom:572.835000px;}
.yef{bottom:573.555000px;}
.yc9{bottom:574.995000px;}
.y9e{bottom:581.115000px;}
.y23{bottom:583.995000px;}
.y51{bottom:590.115000px;}
.y81{bottom:590.475000px;}
.y10a{bottom:592.635000px;}
.yee{bottom:593.355000px;}
.y9d{bottom:600.915000px;}
.y22{bottom:603.795000px;}
.y50{bottom:609.915000px;}
.y80{bottom:610.455000px;}
.y109{bottom:612.615000px;}
.yed{bottom:613.155000px;}
.yc8{bottom:615.495000px;}
.y9c{bottom:620.715000px;}
.y21{bottom:623.775000px;}
.y4f{bottom:629.715000px;}
.y7f{bottom:630.255000px;}
.y108{bottom:632.415000px;}
.yec{bottom:633.135000px;}
.yc7{bottom:636.015000px;}
.y9b{bottom:640.695000px;}
.y20{bottom:643.575000px;}
.y7d{bottom:645.015000px;}
.y4e{bottom:649.725000px;}
.yeb{bottom:652.965000px;}
.yc6{bottom:656.565000px;}
.y9a{bottom:660.525000px;}
.y1f{bottom:663.405000px;}
.y7b{bottom:665.565000px;}
.yea{bottom:667.725000px;}
.y4d{bottom:669.525000px;}
.yc5{bottom:677.265000px;}
.y1e{bottom:683.205000px;}
.ye9{bottom:688.245000px;}
.y4c{bottom:689.325000px;}
.ybf{bottom:697.785000px;}
.y1d{bottom:703.005000px;}
.y7a{bottom:706.065000px;}
.y4b{bottom:709.125000px;}
.yc1{bottom:718.305000px;}
.y1c{bottom:722.985000px;}
.y79{bottom:726.585000px;}
.ye8{bottom:728.745000px;}
.y4a{bottom:728.925000px;}
.y1b{bottom:742.785000px;}
.y77{bottom:747.285000px;}
.y49{bottom:748.905000px;}
.y1a{bottom:762.585000px;}
.y48{bottom:768.705000px;}
.ye7{bottom:769.065000px;}
.ybe{bottom:779.505000px;}
.y19{bottom:782.385000px;}
.y74{bottom:787.605000px;}
.y47{bottom:788.505000px;}
.ye6{bottom:789.765000px;}
.ybd{bottom:799.305000px;}
.y18{bottom:802.185000px;}
.y46{bottom:808.305000px;}
.ybc{bottom:819.105000px;}
.y17{bottom:822.165000px;}
.y45{bottom:828.105000px;}
.ye5{bottom:830.085000px;}
.ybb{bottom:839.085000px;}
.y16{bottom:841.965000px;}
.y44{bottom:848.085000px;}
.y6f{bottom:848.625000px;}
.yba{bottom:858.885000px;}
.y15{bottom:861.765000px;}
.y43{bottom:867.885000px;}
.ydf{bottom:870.585000px;}
.yb9{bottom:878.685000px;}
.y14{bottom:881.565000px;}
.y42{bottom:887.685000px;}
.ye1{bottom:891.105000px;}
.yb8{bottom:898.530000px;}
.y13{bottom:906.630000px;}
.y41{bottom:907.530000px;}
.y12{bottom:921.930000px;}
.y40{bottom:927.330000px;}
.y11{bottom:943.710000px;}
.y3f{bottom:947.310000px;}
.y3e{bottom:967.110000px;}
.y10{bottom:968.550000px;}
.y3d{bottom:986.910000px;}
.yf{bottom:1000.230000px;}
.y3c{bottom:1006.710000px;}
.y3b{bottom:1026.510000px;}
.y9{bottom:1044.690000px;}
.y1{bottom:1063.770000px;}
.y7{bottom:1098.150000px;}
.h7{height:2.566406px;}
.h12{height:19.800000px;}
.h15{height:19.836000px;}
.h18{height:19.980000px;}
.hb{height:21.420000px;}
.h17{height:26.100000px;}
.h8{height:33.480000px;}
.he{height:34.646484px;}
.h14{height:39.600000px;}
.h13{height:39.780000px;}
.hf{height:42.164648px;}
.h4{height:46.736719px;}
.h16{height:46.800000px;}
.h1d{height:48.496641px;}
.h1c{height:49.536000px;}
.h11{height:52.416000px;}
.hd{height:53.224453px;}
.h5{height:53.252930px;}
.h1a{height:54.720000px;}
.ha{height:59.027344px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h9{height:69.292969px;}
.h1b{height:70.056000px;}
.h10{height:72.936000px;}
.h19{height:75.240000px;}
.h6{height:112.536000px;}
.h2{height:146.916000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w13{width:41.796000px;}
.w19{width:46.620000px;}
.w1e{width:46.656000px;}
.wb{width:46.800000px;}
.wa{width:46.836000px;}
.w8{width:52.200000px;}
.wc{width:54.180000px;}
.we{width:54.216000px;}
.wd{width:54.360000px;}
.w17{width:59.400000px;}
.w1c{width:76.140000px;}
.w12{width:79.920000px;}
.w9{width:111.996000px;}
.w18{width:119.376000px;}
.w1d{width:130.536000px;}
.w3{width:137.556000px;}
.w16{width:259.095000px;}
.w7{width:259.275000px;}
.w11{width:266.655000px;}
.wf{width:312.195000px;}
.w1b{width:315.615000px;}
.w1a{width:319.395000px;}
.w1f{width:336.135000px;}
.w15{width:343.515000px;}
.w14{width:347.475000px;}
.w6{width:356.295000px;}
.w10{width:387.975000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.xc{left:55.620000px;}
.x14{left:57.240000px;}
.x6{left:73.079987px;}
.x24{left:80.999987px;}
.xb{left:108.035987px;}
.x4{left:118.470000px;}
.x7{left:141.695987px;}
.xa{left:224.849987px;}
.x9{left:302.114987px;}
.x1d{left:371.055000px;}
.x1b{left:398.955000px;}
.xd{left:412.635000px;}
.x20{left:418.575000px;}
.x8{left:446.504987px;}
.x10{left:460.185000px;}
.x21{left:465.945000px;}
.x17{left:493.485000px;}
.x11{left:507.705000px;}
.x22{left:521.025000px;}
.x18{left:548.385000px;}
.x12{left:562.605000px;}
.x23{left:575.925000px;}
.x19{left:603.465000px;}
.x13{left:617.685000px;}
.x1e{left:631.050000px;}
.x1a{left:658.410000px;}
.xe{left:672.630000px;}
.x3{left:702.510000px;}
.x1f{left:707.910000px;}
.x15{left:713.490000px;}
.x1c{left:719.070000px;}
.xf{left:725.550000px;}
.x16{left:794.130000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.008960pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.059520pt;}
.ls5{letter-spacing:0.094720pt;}
.ls6{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.115627pt;}
.ls0{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.166187pt;}
.ls14{letter-spacing:0.168960pt;}
.ls3{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.298667pt;}
.lsa{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.456533pt;}
.ls4{letter-spacing:0.736000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls13{letter-spacing:1.440000pt;}
.lsf{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.096533pt;}
.wsb{word-spacing:-12.640000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1c{margin-left:-3.143253pt;}
._11{margin-left:-1.958400pt;}
._0{margin-left:-0.960000pt;}
._12{width:1.005867pt;}
._1{width:1.973333pt;}
._13{width:2.865280pt;}
._16{width:4.355840pt;}
._15{width:5.418240pt;}
._1a{width:6.905600pt;}
._18{width:8.280533pt;}
._6{width:9.600000pt;}
._1b{width:10.493227pt;}
._17{width:11.424640pt;}
._14{width:12.323840pt;}
._1e{width:14.342400pt;}
._19{width:15.673813pt;}
._f{width:16.842667pt;}
._21{width:17.848107pt;}
._1d{width:20.132480pt;}
._22{width:28.284373pt;}
._23{width:29.630933pt;}
._26{width:32.831573pt;}
._27{width:34.274133pt;}
._1f{width:46.320640pt;}
._25{width:50.697387pt;}
._24{width:51.632640pt;}
._7{width:67.808853pt;}
._20{width:86.001280pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:5.120000pt;}
.y7e{bottom:5.146667pt;}
.ye{bottom:5.280000pt;}
.ya3{bottom:7.840000pt;}
.y6{bottom:11.200000pt;}
.y76{bottom:13.920000pt;}
.y7c{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.ya1{bottom:17.120000pt;}
.ye2{bottom:18.440000pt;}
.ye4{bottom:18.720000pt;}
.y70{bottom:19.680000pt;}
.y72{bottom:19.840000pt;}
.yc2{bottom:20.640000pt;}
.yc4{bottom:20.960000pt;}
.y78{bottom:22.720000pt;}
.y75{bottom:22.880000pt;}
.ye0{bottom:27.560000pt;}
.y6e{bottom:28.640000pt;}
.yc0{bottom:29.760000pt;}
.yc{bottom:30.720000pt;}
.y5{bottom:36.000000pt;}
.ye3{bottom:36.360000pt;}
.y71{bottom:37.600000pt;}
.yc3{bottom:38.560000pt;}
.yb{bottom:48.960000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:63.840000pt;}
.ya{bottom:67.040000pt;}
.y3{bottom:85.786667pt;}
.y107{bottom:86.560000pt;}
.y123{bottom:88.320000pt;}
.y69{bottom:93.280000pt;}
.yb7{bottom:99.360000pt;}
.y6d{bottom:101.280000pt;}
.y99{bottom:101.760000pt;}
.y106{bottom:104.160000pt;}
.y122{bottom:105.920000pt;}
.y68{bottom:111.040000pt;}
.y2{bottom:111.866667pt;}
.y3a{bottom:113.600000pt;}
.yb6{bottom:116.960000pt;}
.yde{bottom:118.880000pt;}
.y6c{bottom:119.040000pt;}
.y98{bottom:119.360000pt;}
.y105{bottom:121.920000pt;}
.y121{bottom:123.520000pt;}
.y67{bottom:128.640000pt;}
.y39{bottom:131.200000pt;}
.y124{bottom:134.560000pt;}
.yb5{bottom:134.720000pt;}
.y6b{bottom:136.666667pt;}
.y97{bottom:136.986667pt;}
.y104{bottom:139.546667pt;}
.y120{bottom:141.146667pt;}
.y66{bottom:146.266667pt;}
.y38{bottom:148.826667pt;}
.yb4{bottom:152.346667pt;}
.y6a{bottom:154.266667pt;}
.y96{bottom:154.586667pt;}
.y103{bottom:157.146667pt;}
.y11f{bottom:158.906667pt;}
.ydd{bottom:162.266667pt;}
.y37{bottom:166.426667pt;}
.yb3{bottom:169.946667pt;}
.y65{bottom:171.866667pt;}
.y95{bottom:172.186667pt;}
.y102{bottom:174.746667pt;}
.y11e{bottom:176.506667pt;}
.ydc{bottom:179.866667pt;}
.y36{bottom:184.026667pt;}
.yb2{bottom:187.546667pt;}
.y64{bottom:189.466667pt;}
.y94{bottom:189.946667pt;}
.y101{bottom:192.346667pt;}
.y11d{bottom:194.106667pt;}
.ydb{bottom:197.466667pt;}
.y35{bottom:201.786667pt;}
.yb1{bottom:205.146667pt;}
.y63{bottom:207.226667pt;}
.y93{bottom:207.546667pt;}
.y100{bottom:210.106667pt;}
.y11c{bottom:211.706667pt;}
.yda{bottom:215.066667pt;}
.y34{bottom:219.386667pt;}
.yb0{bottom:222.906667pt;}
.y62{bottom:224.826667pt;}
.y92{bottom:225.146667pt;}
.yff{bottom:227.706667pt;}
.y11b{bottom:229.306667pt;}
.yd9{bottom:232.826667pt;}
.y33{bottom:236.986667pt;}
.yaf{bottom:240.506667pt;}
.y61{bottom:242.426667pt;}
.y91{bottom:242.746667pt;}
.yfe{bottom:245.306667pt;}
.y11a{bottom:247.066667pt;}
.yd8{bottom:250.426667pt;}
.y32{bottom:254.586667pt;}
.yae{bottom:258.106667pt;}
.y60{bottom:260.026667pt;}
.y90{bottom:260.346667pt;}
.yfd{bottom:262.906667pt;}
.y119{bottom:264.666667pt;}
.yd7{bottom:268.026667pt;}
.y31{bottom:272.186667pt;}
.yad{bottom:275.706667pt;}
.y5f{bottom:277.626667pt;}
.y8f{bottom:278.106667pt;}
.yfc{bottom:280.506667pt;}
.y118{bottom:282.266667pt;}
.yd6{bottom:285.626667pt;}
.y30{bottom:289.946667pt;}
.yac{bottom:293.306667pt;}
.y5e{bottom:295.386667pt;}
.y8e{bottom:295.706667pt;}
.y117{bottom:297.626667pt;}
.yfb{bottom:298.266667pt;}
.yd5{bottom:303.226667pt;}
.y2f{bottom:307.546667pt;}
.yab{bottom:311.066667pt;}
.y5d{bottom:312.986667pt;}
.y8d{bottom:313.306667pt;}
.y116{bottom:315.226667pt;}
.yfa{bottom:315.866667pt;}
.yd4{bottom:320.986667pt;}
.y2e{bottom:325.146667pt;}
.yaa{bottom:328.666667pt;}
.y5c{bottom:330.586667pt;}
.y8c{bottom:330.906667pt;}
.y115{bottom:332.826667pt;}
.yf9{bottom:333.466667pt;}
.yd3{bottom:338.586667pt;}
.ya9{bottom:341.786667pt;}
.y2d{bottom:342.746667pt;}
.y5b{bottom:348.186667pt;}
.y8b{bottom:348.506667pt;}
.y114{bottom:350.426667pt;}
.yf8{bottom:351.066667pt;}
.yd2{bottom:356.226667pt;}
.ya8{bottom:360.066667pt;}
.y2c{bottom:360.386667pt;}
.y5a{bottom:365.826667pt;}
.y8a{bottom:366.306667pt;}
.y113{bottom:368.226667pt;}
.yf7{bottom:368.706667pt;}
.yd1{bottom:373.826667pt;}
.y2b{bottom:378.146667pt;}
.ya7{bottom:378.466667pt;}
.y59{bottom:383.586667pt;}
.y89{bottom:383.906667pt;}
.y112{bottom:385.826667pt;}
.yf6{bottom:386.466667pt;}
.yd0{bottom:391.426667pt;}
.y2a{bottom:395.746667pt;}
.ya6{bottom:396.706667pt;}
.y58{bottom:401.186667pt;}
.y88{bottom:401.506667pt;}
.y111{bottom:403.426667pt;}
.yf5{bottom:404.066667pt;}
.ycf{bottom:409.186667pt;}
.y29{bottom:413.346667pt;}
.ya5{bottom:414.946667pt;}
.y57{bottom:418.786667pt;}
.y87{bottom:419.106667pt;}
.y110{bottom:421.026667pt;}
.yf4{bottom:421.666667pt;}
.yce{bottom:426.786667pt;}
.y28{bottom:430.946667pt;}
.ya4{bottom:433.346667pt;}
.y56{bottom:436.386667pt;}
.y86{bottom:436.706667pt;}
.y10f{bottom:438.626667pt;}
.yf3{bottom:439.266667pt;}
.ycd{bottom:444.386667pt;}
.y27{bottom:448.546667pt;}
.ya0{bottom:451.586667pt;}
.y55{bottom:453.986667pt;}
.y85{bottom:454.466667pt;}
.y10e{bottom:456.386667pt;}
.yf2{bottom:456.866667pt;}
.ycc{bottom:461.986667pt;}
.y26{bottom:466.306667pt;}
.ya2{bottom:469.986667pt;}
.y54{bottom:471.746667pt;}
.y84{bottom:472.066667pt;}
.y10d{bottom:473.986667pt;}
.yf1{bottom:474.626667pt;}
.ycb{bottom:479.586667pt;}
.y25{bottom:483.906667pt;}
.y53{bottom:489.346667pt;}
.y83{bottom:489.666667pt;}
.y10c{bottom:491.586667pt;}
.yf0{bottom:492.226667pt;}
.yca{bottom:492.866667pt;}
.y9f{bottom:498.946667pt;}
.y24{bottom:501.506667pt;}
.y52{bottom:506.946667pt;}
.y82{bottom:507.266667pt;}
.y10b{bottom:509.186667pt;}
.yef{bottom:509.826667pt;}
.yc9{bottom:511.106667pt;}
.y9e{bottom:516.546667pt;}
.y23{bottom:519.106667pt;}
.y51{bottom:524.546667pt;}
.y81{bottom:524.866667pt;}
.y10a{bottom:526.786667pt;}
.yee{bottom:527.426667pt;}
.y9d{bottom:534.146667pt;}
.y22{bottom:536.706667pt;}
.y50{bottom:542.146667pt;}
.y80{bottom:542.626667pt;}
.y109{bottom:544.546667pt;}
.yed{bottom:545.026667pt;}
.yc8{bottom:547.106667pt;}
.y9c{bottom:551.746667pt;}
.y21{bottom:554.466667pt;}
.y4f{bottom:559.746667pt;}
.y7f{bottom:560.226667pt;}
.y108{bottom:562.146667pt;}
.yec{bottom:562.786667pt;}
.yc7{bottom:565.346667pt;}
.y9b{bottom:569.506667pt;}
.y20{bottom:572.066667pt;}
.y7d{bottom:573.346667pt;}
.y4e{bottom:577.533333pt;}
.yeb{bottom:580.413333pt;}
.yc6{bottom:583.613333pt;}
.y9a{bottom:587.133333pt;}
.y1f{bottom:589.693333pt;}
.y7b{bottom:591.613333pt;}
.yea{bottom:593.533333pt;}
.y4d{bottom:595.133333pt;}
.yc5{bottom:602.013333pt;}
.y1e{bottom:607.293333pt;}
.ye9{bottom:611.773333pt;}
.y4c{bottom:612.733333pt;}
.ybf{bottom:620.253333pt;}
.y1d{bottom:624.893333pt;}
.y7a{bottom:627.613333pt;}
.y4b{bottom:630.333333pt;}
.yc1{bottom:638.493333pt;}
.y1c{bottom:642.653333pt;}
.y79{bottom:645.853333pt;}
.ye8{bottom:647.773333pt;}
.y4a{bottom:647.933333pt;}
.y1b{bottom:660.253333pt;}
.y77{bottom:664.253333pt;}
.y49{bottom:665.693333pt;}
.y1a{bottom:677.853333pt;}
.y48{bottom:683.293333pt;}
.ye7{bottom:683.613333pt;}
.ybe{bottom:692.893333pt;}
.y19{bottom:695.453333pt;}
.y74{bottom:700.093333pt;}
.y47{bottom:700.893333pt;}
.ye6{bottom:702.013333pt;}
.ybd{bottom:710.493333pt;}
.y18{bottom:713.053333pt;}
.y46{bottom:718.493333pt;}
.ybc{bottom:728.093333pt;}
.y17{bottom:730.813333pt;}
.y45{bottom:736.093333pt;}
.ye5{bottom:737.853333pt;}
.ybb{bottom:745.853333pt;}
.y16{bottom:748.413333pt;}
.y44{bottom:753.853333pt;}
.y6f{bottom:754.333333pt;}
.yba{bottom:763.453333pt;}
.y15{bottom:766.013333pt;}
.y43{bottom:771.453333pt;}
.ydf{bottom:773.853333pt;}
.yb9{bottom:781.053333pt;}
.y14{bottom:783.613333pt;}
.y42{bottom:789.053333pt;}
.ye1{bottom:792.093333pt;}
.yb8{bottom:798.693333pt;}
.y13{bottom:805.893333pt;}
.y41{bottom:806.693333pt;}
.y12{bottom:819.493333pt;}
.y40{bottom:824.293333pt;}
.y11{bottom:838.853333pt;}
.y3f{bottom:842.053333pt;}
.y3e{bottom:859.653333pt;}
.y10{bottom:860.933333pt;}
.y3d{bottom:877.253333pt;}
.yf{bottom:889.093333pt;}
.y3c{bottom:894.853333pt;}
.y3b{bottom:912.453333pt;}
.y9{bottom:928.613333pt;}
.y1{bottom:945.573333pt;}
.y7{bottom:976.133333pt;}
.h7{height:2.281250pt;}
.h12{height:17.600000pt;}
.h15{height:17.632000pt;}
.h18{height:17.760000pt;}
.hb{height:19.040000pt;}
.h17{height:23.200000pt;}
.h8{height:29.760000pt;}
.he{height:30.796875pt;}
.h14{height:35.200000pt;}
.h13{height:35.360000pt;}
.hf{height:37.479688pt;}
.h4{height:41.543750pt;}
.h16{height:41.600000pt;}
.h1d{height:43.108125pt;}
.h1c{height:44.032000pt;}
.h11{height:46.592000pt;}
.hd{height:47.310625pt;}
.h5{height:47.335938pt;}
.h1a{height:48.640000pt;}
.ha{height:52.468750pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h9{height:61.593750pt;}
.h1b{height:62.272000pt;}
.h10{height:64.832000pt;}
.h19{height:66.880000pt;}
.h6{height:100.032000pt;}
.h2{height:130.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w13{width:37.152000pt;}
.w19{width:41.440000pt;}
.w1e{width:41.472000pt;}
.wb{width:41.600000pt;}
.wa{width:41.632000pt;}
.w8{width:46.400000pt;}
.wc{width:48.160000pt;}
.we{width:48.192000pt;}
.wd{width:48.320000pt;}
.w17{width:52.800000pt;}
.w1c{width:67.680000pt;}
.w12{width:71.040000pt;}
.w9{width:99.552000pt;}
.w18{width:106.112000pt;}
.w1d{width:116.032000pt;}
.w3{width:122.272000pt;}
.w16{width:230.306667pt;}
.w7{width:230.466667pt;}
.w11{width:237.026667pt;}
.wf{width:277.506667pt;}
.w1b{width:280.546667pt;}
.w1a{width:283.906667pt;}
.w1f{width:298.786667pt;}
.w15{width:305.346667pt;}
.w14{width:308.866667pt;}
.w6{width:316.706667pt;}
.w10{width:344.866667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.xc{left:49.440000pt;}
.x14{left:50.880000pt;}
.x6{left:64.959988pt;}
.x24{left:71.999988pt;}
.xb{left:96.031988pt;}
.x4{left:105.306667pt;}
.x7{left:125.951988pt;}
.xa{left:199.866655pt;}
.x9{left:268.546655pt;}
.x1d{left:329.826667pt;}
.x1b{left:354.626667pt;}
.xd{left:366.786667pt;}
.x20{left:372.066667pt;}
.x8{left:396.893322pt;}
.x10{left:409.053333pt;}
.x21{left:414.173333pt;}
.x17{left:438.653333pt;}
.x11{left:451.293333pt;}
.x22{left:463.133333pt;}
.x18{left:487.453333pt;}
.x12{left:500.093333pt;}
.x23{left:511.933333pt;}
.x19{left:536.413333pt;}
.x13{left:549.053333pt;}
.x1e{left:560.933333pt;}
.x1a{left:585.253333pt;}
.xe{left:597.893333pt;}
.x3{left:624.453333pt;}
.x1f{left:629.253333pt;}
.x15{left:634.213333pt;}
.x1c{left:639.173333pt;}
.xf{left:644.933333pt;}
.x16{left:705.893333pt;}
.x5{left:737.120000pt;}
}




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