
    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_de2d909631bb62516d4f25b4.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_ce9d2e5c3e73aa9c1c255c42.woff2')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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_244960999d9165c027ab8c2e.woff2')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_722ececc75d3646da1f22268.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls4{letter-spacing:84.360000px;}
.ls7{letter-spacing:138.360000px;}
.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;}
}
.ws3{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:8.928000px;}
.ws8{word-spacing:9.648000px;}
.ws6{word-spacing:9.828000px;}
._e{margin-left:-5.184000px;}
._b{margin-left:-3.456000px;}
._c{margin-left:-2.280000px;}
._0{margin-left:-1.152000px;}
._1{width:1.248000px;}
._2{width:2.520000px;}
._3{width:3.528000px;}
._9{width:4.740000px;}
._8{width:5.760000px;}
._5{width:6.900000px;}
._4{width:8.064000px;}
._d{width:9.336000px;}
._f{width:10.728000px;}
._a{width:11.952000px;}
._2d{width:13.032000px;}
._1a{width:14.400000px;}
._22{width:15.408000px;}
._24{width:19.224000px;}
._14{width:20.520000px;}
._12{width:21.744000px;}
._23{width:23.544000px;}
._1d{width:24.768000px;}
._10{width:26.568000px;}
._6{width:35.544000px;}
._7{width:36.876000px;}
._1b{width:38.040000px;}
._1c{width:39.192000px;}
._11{width:47.976000px;}
._1e{width:54.168000px;}
._27{width:62.400000px;}
._13{width:66.864000px;}
._19{width:70.140000px;}
._18{width:71.604000px;}
._3b{width:78.240000px;}
._43{width:79.584000px;}
._33{width:81.552000px;}
._25{width:83.196000px;}
._3d{width:87.096000px;}
._38{width:88.644000px;}
._1f{width:90.552000px;}
._16{width:93.852000px;}
._15{width:95.196000px;}
._2f{width:97.176000px;}
._17{width:98.484000px;}
._34{width:100.008000px;}
._40{width:106.236000px;}
._41{width:114.996000px;}
._39{width:147.360000px;}
._3a{width:149.052000px;}
._2a{width:163.686240px;}
._26{width:182.604000px;}
._20{width:186.720000px;}
._30{width:207.132000px;}
._3e{width:211.620000px;}
._35{width:215.904000px;}
._48{width:218.460000px;}
._49{width:221.016000px;}
._36{width:224.640000px;}
._44{width:232.932000px;}
._47{width:234.120000px;}
._3c{width:244.344000px;}
._2e{width:255.756000px;}
._2b{width:269.604000px;}
._45{width:296.604000px;}
._37{width:378.348000px;}
._42{width:406.272000px;}
._46{width:423.156000px;}
._4b{width:456.828000px;}
._4a{width:459.024000px;}
._3f{width:499.392000px;}
._31{width:501.876000px;}
._2c{width:571.860000px;}
._32{width:594.372000px;}
._29{width:602.527920px;}
._28{width:603.929280px;}
._21{width:639.264000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.y6{bottom:5.400000px;}
.yb1{bottom:8.820000px;}
.yb3{bottom:9.000000px;}
.ya8{bottom:10.620000px;}
.ya4{bottom:12.060000px;}
.ya1{bottom:12.240000px;}
.y10{bottom:12.600000px;}
.ye{bottom:12.780000px;}
.y12{bottom:12.960000px;}
.yb0{bottom:13.680000px;}
.ya5{bottom:15.300000px;}
.ya2{bottom:15.480000px;}
.y3{bottom:21.960000px;}
.y7{bottom:24.300000px;}
.y5{bottom:26.100000px;}
.y2{bottom:42.660000px;}
.yc{bottom:56.700000px;}
.yb{bottom:72.180000px;}
.y57{bottom:110.340000px;}
.y114{bottom:113.940000px;}
.yce{bottom:114.300000px;}
.y9a{bottom:115.380000px;}
.y72{bottom:115.740000px;}
.y3c{bottom:117.360000px;}
.ya7{bottom:122.940000px;}
.yed{bottom:127.080000px;}
.y56{bottom:131.040000px;}
.y113{bottom:134.640000px;}
.ycd{bottom:135.000000px;}
.y71{bottom:136.440000px;}
.y3b{bottom:138.060000px;}
.y99{bottom:151.380000px;}
.y112{bottom:155.340000px;}
.ycc{bottom:155.880000px;}
.y70{bottom:157.140000px;}
.y3a{bottom:158.760000px;}
.ya6{bottom:166.680000px;}
.y55{bottom:168.660000px;}
.yfb{bottom:176.760000px;}
.yd7{bottom:179.280000px;}
.y39{bottom:179.460000px;}
.ycb{bottom:184.500000px;}
.y111{bottom:185.040000px;}
.y6f{bottom:186.840000px;}
.y98{bottom:189.360000px;}
.y54{bottom:198.390000px;}
.y38{bottom:200.190000px;}
.yfa{bottom:206.310000px;}
.ya3{bottom:208.290000px;}
.yd6{bottom:208.830000px;}
.y97{bottom:210.090000px;}
.yca{bottom:213.150000px;}
.y110{bottom:214.770000px;}
.y6e{bottom:216.570000px;}
.y53{bottom:219.090000px;}
.y37{bottom:220.890000px;}
.yf9{bottom:235.110000px;}
.y6d{bottom:237.270000px;}
.yd5{bottom:237.630000px;}
.y96{bottom:240.870000px;}
.y36{bottom:241.590000px;}
.yec{bottom:241.770000px;}
.yc9{bottom:242.850000px;}
.y10f{bottom:244.470000px;}
.y52{bottom:248.790000px;}
.ya0{bottom:249.690000px;}
.y130{bottom:256.890000px;}
.y95{bottom:261.570000px;}
.y35{bottom:262.290000px;}
.y6c{bottom:262.830000px;}
.yd4{bottom:263.370000px;}
.y10e{bottom:265.170000px;}
.yf8{bottom:268.770000px;}
.y51{bottom:269.490000px;}
.yeb{bottom:270.390000px;}
.yc8{bottom:272.550000px;}
.y94{bottom:282.270000px;}
.y34{bottom:282.990000px;}
.y10d{bottom:285.870000px;}
.y12f{bottom:286.590000px;}
.y50{bottom:290.190000px;}
.yc7{bottom:293.250000px;}
.yea{bottom:299.010000px;}
.y93{bottom:302.970000px;}
.y33{bottom:303.690000px;}
.y9f{bottom:304.950000px;}
.y10c{bottom:306.570000px;}
.y12e{bottom:307.290000px;}
.y4f{bottom:310.890000px;}
.yc6{bottom:313.950000px;}
.y92{bottom:323.670000px;}
.y32{bottom:324.390000px;}
.y10b{bottom:327.270000px;}
.ye9{bottom:327.630000px;}
.y12d{bottom:327.990000px;}
.y9e{bottom:334.650000px;}
.y4e{bottom:336.630000px;}
.y91{bottom:344.370000px;}
.y31{bottom:345.090000px;}
.y10a{bottom:347.970000px;}
.y9d{bottom:355.350000px;}
.y12c{bottom:357.690000px;}
.y90{bottom:365.070000px;}
.ye8{bottom:365.250000px;}
.y30{bottom:365.790000px;}
.y9c{bottom:376.050000px;}
.y12b{bottom:378.390000px;}
.y109{bottom:385.590000px;}
.y8f{bottom:385.770000px;}
.y2f{bottom:386.490000px;}
.ye7{bottom:394.050000px;}
.y12a{bottom:399.090000px;}
.y9b{bottom:401.790000px;}
.yc5{bottom:404.670000px;}
.y108{bottom:406.290000px;}
.y8e{bottom:406.470000px;}
.y2e{bottom:407.190000px;}
.y129{bottom:419.790000px;}
.yc4{bottom:425.370000px;}
.y8d{bottom:427.170000px;}
.ye6{bottom:427.530000px;}
.y2d{bottom:427.890000px;}
.y107{bottom:434.910000px;}
.yc3{bottom:446.115000px;}
.y8c{bottom:447.915000px;}
.y2c{bottom:448.635000px;}
.y128{bottom:449.535000px;}
.y106{bottom:463.575000px;}
.ye5{bottom:465.375000px;}
.y8b{bottom:468.615000px;}
.y2b{bottom:469.335000px;}
.y127{bottom:470.235000px;}
.yc2{bottom:474.735000px;}
.ye4{bottom:486.075000px;}
.y8a{bottom:489.315000px;}
.y2a{bottom:490.035000px;}
.y105{bottom:492.195000px;}
.y126{bottom:499.935000px;}
.yc1{bottom:504.435000px;}
.y89{bottom:510.015000px;}
.y29{bottom:510.735000px;}
.y104{bottom:513.075000px;}
.ye3{bottom:514.695000px;}
.y125{bottom:520.635000px;}
.yc0{bottom:534.135000px;}
.y28{bottom:540.435000px;}
.y103{bottom:541.695000px;}
.ye2{bottom:543.315000px;}
.y88{bottom:549.975000px;}
.y124{bottom:550.335000px;}
.ybf{bottom:554.835000px;}
.y6b{bottom:561.675000px;}
.ye1{bottom:564.015000px;}
.y27{bottom:570.135000px;}
.y102{bottom:570.315000px;}
.y123{bottom:571.035000px;}
.ybe{bottom:575.535000px;}
.y87{bottom:579.675000px;}
.y6a{bottom:582.375000px;}
.ye0{bottom:584.715000px;}
.ybd{bottom:596.235000px;}
.y101{bottom:598.935000px;}
.y26{bottom:599.835000px;}
.y86{bottom:600.375000px;}
.y122{bottom:600.735000px;}
.y69{bottom:603.075000px;}
.ydf{bottom:605.415000px;}
.ybc{bottom:616.935000px;}
.yf{bottom:617.295000px;}
.yd{bottom:617.475000px;}
.y25{bottom:620.535000px;}
.yd3{bottom:620.715000px;}
.y85{bottom:621.075000px;}
.y121{bottom:621.435000px;}
.y68{bottom:623.775000px;}
.yde{bottom:626.115000px;}
.yf7{bottom:628.275000px;}
.y100{bottom:636.555000px;}
.ybb{bottom:637.635000px;}
.y24{bottom:641.235000px;}
.y84{bottom:641.775000px;}
.ydd{bottom:646.815000px;}
.yd2{bottom:650.235000px;}
.y120{bottom:651.135000px;}
.y67{bottom:653.475000px;}
.yf6{bottom:657.975000px;}
.yba{bottom:658.335000px;}
.y83{bottom:662.475000px;}
.yff{bottom:666.075000px;}
.y23{bottom:670.935000px;}
.yd1{bottom:671.115000px;}
.y11f{bottom:671.835000px;}
.ydc{bottom:676.545000px;}
.yb9{bottom:679.065000px;}
.y66{bottom:679.245000px;}
.yf5{bottom:683.745000px;}
.y22{bottom:691.665000px;}
.y11e{bottom:692.565000px;}
.y82{bottom:693.285000px;}
.yfe{bottom:694.905000px;}
.ydb{bottom:697.245000px;}
.yd0{bottom:699.765000px;}
.yb8{bottom:707.685000px;}
.y21{bottom:712.365000px;}
.y65{bottom:717.045000px;}
.y11d{bottom:722.265000px;}
.ycf{bottom:725.505000px;}
.yfd{bottom:725.865000px;}
.y81{bottom:726.945000px;}
.y20{bottom:733.065000px;}
.yb7{bottom:736.305000px;}
.y64{bottom:742.605000px;}
.y11c{bottom:742.965000px;}
.y1f{bottom:753.765000px;}
.yda{bottom:756.465000px;}
.yfc{bottom:756.645000px;}
.yb6{bottom:757.005000px;}
.y11b{bottom:763.665000px;}
.y1e{bottom:774.465000px;}
.y63{bottom:780.405000px;}
.y11a{bottom:784.365000px;}
.y80{bottom:784.905000px;}
.yd9{bottom:785.445000px;}
.yb5{bottom:786.705000px;}
.y4d{bottom:790.665000px;}
.y1d{bottom:795.165000px;}
.y62{bottom:806.145000px;}
.y7f{bottom:810.645000px;}
.y119{bottom:814.065000px;}
.y1c{bottom:815.865000px;}
.yb4{bottom:816.405000px;}
.yd8{bottom:819.105000px;}
.y4c{bottom:820.365000px;}
.y118{bottom:834.765000px;}
.y61{bottom:839.805000px;}
.y4b{bottom:841.065000px;}
.yb2{bottom:842.865000px;}
.y1b{bottom:845.565000px;}
.y7e{bottom:848.625000px;}
.y117{bottom:855.465000px;}
.y4a{bottom:861.765000px;}
.y7d{bottom:874.365000px;}
.y1a{bottom:875.265000px;}
.y60{bottom:877.605000px;}
.yaf{bottom:881.205000px;}
.y49{bottom:882.465000px;}
.y116{bottom:885.165000px;}
.y5f{bottom:898.305000px;}
.y48{bottom:903.165000px;}
.y19{bottom:904.965000px;}
.y7c{bottom:912.165000px;}
.y115{bottom:914.910000px;}
.yae{bottom:920.130000px;}
.y47{bottom:923.910000px;}
.y18{bottom:925.710000px;}
.y5e{bottom:926.970000px;}
.y7b{bottom:932.910000px;}
.y46{bottom:944.610000px;}
.y7a{bottom:953.610000px;}
.y17{bottom:955.410000px;}
.y5d{bottom:955.590000px;}
.y45{bottom:965.310000px;}
.yad{bottom:969.090000px;}
.y79{bottom:974.310000px;}
.y5c{bottom:984.390000px;}
.y16{bottom:985.110000px;}
.y44{bottom:986.010000px;}
.yf4{bottom:987.090000px;}
.y78{bottom:995.010000px;}
.yac{bottom:998.790000px;}
.y43{bottom:1006.710000px;}
.yf3{bottom:1007.790000px;}
.y15{bottom:1014.810000px;}
.y77{bottom:1015.710000px;}
.y5b{bottom:1017.870000px;}
.yab{bottom:1025.430000px;}
.y42{bottom:1027.410000px;}
.yf2{bottom:1028.490000px;}
.y76{bottom:1036.410000px;}
.y14{bottom:1040.550000px;}
.y41{bottom:1048.110000px;}
.yf1{bottom:1049.010000px;}
.y5a{bottom:1055.670000px;}
.y75{bottom:1057.110000px;}
.y40{bottom:1068.810000px;}
.yaa{bottom:1069.170000px;}
.yf0{bottom:1069.710000px;}
.y74{bottom:1077.810000px;}
.y13{bottom:1079.250000px;}
.y59{bottom:1081.410000px;}
.y3f{bottom:1089.510000px;}
.yef{bottom:1090.410000px;}
.y73{bottom:1098.510000px;}
.y3e{bottom:1110.210000px;}
.yee{bottom:1111.290000px;}
.ya9{bottom:1112.910000px;}
.y11{bottom:1117.950000px;}
.y58{bottom:1119.210000px;}
.y3d{bottom:1139.910000px;}
.y1{bottom:1182.060000px;}
.ya{bottom:1193.400000px;}
.y4{bottom:1198.080000px;}
.y9{bottom:1208.880000px;}
.h15{height:2.010938px;}
.h6{height:19.620000px;}
.hb{height:28.080000px;}
.ha{height:28.260000px;}
.h17{height:35.280000px;}
.h18{height:38.196000px;}
.h19{height:38.340000px;}
.hd{height:38.700000px;}
.hc{height:38.736000px;}
.h12{height:41.400000px;}
.h11{height:41.580000px;}
.h13{height:41.616000px;}
.h8{height:41.726953px;}
.h7{height:42.164648px;}
.h5{height:43.560000px;}
.h14{height:43.740000px;}
.h16{height:43.776000px;}
.h9{height:46.251562px;}
.h4{height:50.273438px;}
.h3{height:50.800781px;}
.hf{height:52.417969px;}
.he{height:57.796523px;}
.h2{height:60.120000px;}
.h10{height:60.679688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:42.480000px;}
.w8{width:84.990000px;}
.w12{width:85.176000px;}
.w13{width:95.580000px;}
.w3{width:101.376000px;}
.w14{width:106.236000px;}
.w6{width:124.416000px;}
.we{width:127.296000px;}
.wf{width:127.656000px;}
.w5{width:188.130000px;}
.wd{width:191.370000px;}
.w4{width:196.050000px;}
.w10{width:201.810000px;}
.w9{width:223.770000px;}
.wb{width:279.930000px;}
.wa{width:286.095000px;}
.wc{width:425.235000px;}
.w2{width:618.450000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x1f{left:8.100000px;}
.xc{left:10.800000px;}
.x5{left:20.340000px;}
.x3{left:23.436000px;}
.x24{left:28.260000px;}
.x7{left:29.340000px;}
.xd{left:52.200000px;}
.x1{left:67.500000px;}
.x27{left:73.260000px;}
.xa{left:106.235987px;}
.x13{left:107.675987px;}
.x2d{left:110.375987px;}
.x16{left:111.995987px;}
.x33{left:113.615987px;}
.x2a{left:114.695987px;}
.x30{left:119.915987px;}
.x1c{left:123.515987px;}
.x10{left:125.135987px;}
.x32{left:128.915987px;}
.x1e{left:138.276000px;}
.x21{left:218.190000px;}
.x28{left:229.889987px;}
.x31{left:233.849987px;}
.x2f{left:254.909987px;}
.x1a{left:261.389987px;}
.x2{left:270.435000px;}
.xe{left:275.970000px;}
.x17{left:287.174987px;}
.x34{left:291.314987px;}
.x1d{left:329.114987px;}
.x2c{left:333.614987px;}
.x22{left:345.495000px;}
.x19{left:347.114987px;}
.x2e{left:368.174987px;}
.x2b{left:372.674987px;}
.x12{left:380.234987px;}
.x25{left:387.975000px;}
.x14{left:407.414987px;}
.x11{left:446.474987px;}
.x8{left:451.155000px;}
.x23{left:473.145000px;}
.xf{left:562.065000px;}
.x20{left:563.505000px;}
.x26{left:568.725000px;}
.x15{left:627.584987px;}
.x29{left:728.789987px;}
.x9{left:737.610000px;}
.x1b{left:740.849987px;}
.x4{left:761.010000px;}
.x18{left:786.749987px;}
.xb{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls4{letter-spacing:74.986667pt;}
.ls7{letter-spacing:122.986667pt;}
.ws3{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:7.936000pt;}
.ws8{word-spacing:8.576000pt;}
.ws6{word-spacing:8.736000pt;}
._e{margin-left:-4.608000pt;}
._b{margin-left:-3.072000pt;}
._c{margin-left:-2.026667pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.109333pt;}
._2{width:2.240000pt;}
._3{width:3.136000pt;}
._9{width:4.213333pt;}
._8{width:5.120000pt;}
._5{width:6.133333pt;}
._4{width:7.168000pt;}
._d{width:8.298667pt;}
._f{width:9.536000pt;}
._a{width:10.624000pt;}
._2d{width:11.584000pt;}
._1a{width:12.800000pt;}
._22{width:13.696000pt;}
._24{width:17.088000pt;}
._14{width:18.240000pt;}
._12{width:19.328000pt;}
._23{width:20.928000pt;}
._1d{width:22.016000pt;}
._10{width:23.616000pt;}
._6{width:31.594667pt;}
._7{width:32.778667pt;}
._1b{width:33.813333pt;}
._1c{width:34.837333pt;}
._11{width:42.645333pt;}
._1e{width:48.149333pt;}
._27{width:55.466667pt;}
._13{width:59.434667pt;}
._19{width:62.346667pt;}
._18{width:63.648000pt;}
._3b{width:69.546667pt;}
._43{width:70.741333pt;}
._33{width:72.490667pt;}
._25{width:73.952000pt;}
._3d{width:77.418667pt;}
._38{width:78.794667pt;}
._1f{width:80.490667pt;}
._16{width:83.424000pt;}
._15{width:84.618667pt;}
._2f{width:86.378667pt;}
._17{width:87.541333pt;}
._34{width:88.896000pt;}
._40{width:94.432000pt;}
._41{width:102.218667pt;}
._39{width:130.986667pt;}
._3a{width:132.490667pt;}
._2a{width:145.498880pt;}
._26{width:162.314667pt;}
._20{width:165.973333pt;}
._30{width:184.117333pt;}
._3e{width:188.106667pt;}
._35{width:191.914667pt;}
._48{width:194.186667pt;}
._49{width:196.458667pt;}
._36{width:199.680000pt;}
._44{width:207.050667pt;}
._47{width:208.106667pt;}
._3c{width:217.194667pt;}
._2e{width:227.338667pt;}
._2b{width:239.648000pt;}
._45{width:263.648000pt;}
._37{width:336.309333pt;}
._42{width:361.130667pt;}
._46{width:376.138667pt;}
._4b{width:406.069333pt;}
._4a{width:408.021333pt;}
._3f{width:443.904000pt;}
._31{width:446.112000pt;}
._2c{width:508.320000pt;}
._32{width:528.330667pt;}
._29{width:535.580373pt;}
._28{width:536.826027pt;}
._21{width:568.234667pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.y6{bottom:4.800000pt;}
.yb1{bottom:7.840000pt;}
.yb3{bottom:8.000000pt;}
.ya8{bottom:9.440000pt;}
.ya4{bottom:10.720000pt;}
.ya1{bottom:10.880000pt;}
.y10{bottom:11.200000pt;}
.ye{bottom:11.360000pt;}
.y12{bottom:11.520000pt;}
.yb0{bottom:12.160000pt;}
.ya5{bottom:13.600000pt;}
.ya2{bottom:13.760000pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.600000pt;}
.y5{bottom:23.200000pt;}
.y2{bottom:37.920000pt;}
.yc{bottom:50.400000pt;}
.yb{bottom:64.160000pt;}
.y57{bottom:98.080000pt;}
.y114{bottom:101.280000pt;}
.yce{bottom:101.600000pt;}
.y9a{bottom:102.560000pt;}
.y72{bottom:102.880000pt;}
.y3c{bottom:104.320000pt;}
.ya7{bottom:109.280000pt;}
.yed{bottom:112.960000pt;}
.y56{bottom:116.480000pt;}
.y113{bottom:119.680000pt;}
.ycd{bottom:120.000000pt;}
.y71{bottom:121.280000pt;}
.y3b{bottom:122.720000pt;}
.y99{bottom:134.560000pt;}
.y112{bottom:138.080000pt;}
.ycc{bottom:138.560000pt;}
.y70{bottom:139.680000pt;}
.y3a{bottom:141.120000pt;}
.ya6{bottom:148.160000pt;}
.y55{bottom:149.920000pt;}
.yfb{bottom:157.120000pt;}
.yd7{bottom:159.360000pt;}
.y39{bottom:159.520000pt;}
.ycb{bottom:164.000000pt;}
.y111{bottom:164.480000pt;}
.y6f{bottom:166.080000pt;}
.y98{bottom:168.320000pt;}
.y54{bottom:176.346667pt;}
.y38{bottom:177.946667pt;}
.yfa{bottom:183.386667pt;}
.ya3{bottom:185.146667pt;}
.yd6{bottom:185.626667pt;}
.y97{bottom:186.746667pt;}
.yca{bottom:189.466667pt;}
.y110{bottom:190.906667pt;}
.y6e{bottom:192.506667pt;}
.y53{bottom:194.746667pt;}
.y37{bottom:196.346667pt;}
.yf9{bottom:208.986667pt;}
.y6d{bottom:210.906667pt;}
.yd5{bottom:211.226667pt;}
.y96{bottom:214.106667pt;}
.y36{bottom:214.746667pt;}
.yec{bottom:214.906667pt;}
.yc9{bottom:215.866667pt;}
.y10f{bottom:217.306667pt;}
.y52{bottom:221.146667pt;}
.ya0{bottom:221.946667pt;}
.y130{bottom:228.346667pt;}
.y95{bottom:232.506667pt;}
.y35{bottom:233.146667pt;}
.y6c{bottom:233.626667pt;}
.yd4{bottom:234.106667pt;}
.y10e{bottom:235.706667pt;}
.yf8{bottom:238.906667pt;}
.y51{bottom:239.546667pt;}
.yeb{bottom:240.346667pt;}
.yc8{bottom:242.266667pt;}
.y94{bottom:250.906667pt;}
.y34{bottom:251.546667pt;}
.y10d{bottom:254.106667pt;}
.y12f{bottom:254.746667pt;}
.y50{bottom:257.946667pt;}
.yc7{bottom:260.666667pt;}
.yea{bottom:265.786667pt;}
.y93{bottom:269.306667pt;}
.y33{bottom:269.946667pt;}
.y9f{bottom:271.066667pt;}
.y10c{bottom:272.506667pt;}
.y12e{bottom:273.146667pt;}
.y4f{bottom:276.346667pt;}
.yc6{bottom:279.066667pt;}
.y92{bottom:287.706667pt;}
.y32{bottom:288.346667pt;}
.y10b{bottom:290.906667pt;}
.ye9{bottom:291.226667pt;}
.y12d{bottom:291.546667pt;}
.y9e{bottom:297.466667pt;}
.y4e{bottom:299.226667pt;}
.y91{bottom:306.106667pt;}
.y31{bottom:306.746667pt;}
.y10a{bottom:309.306667pt;}
.y9d{bottom:315.866667pt;}
.y12c{bottom:317.946667pt;}
.y90{bottom:324.506667pt;}
.ye8{bottom:324.666667pt;}
.y30{bottom:325.146667pt;}
.y9c{bottom:334.266667pt;}
.y12b{bottom:336.346667pt;}
.y109{bottom:342.746667pt;}
.y8f{bottom:342.906667pt;}
.y2f{bottom:343.546667pt;}
.ye7{bottom:350.266667pt;}
.y12a{bottom:354.746667pt;}
.y9b{bottom:357.146667pt;}
.yc5{bottom:359.706667pt;}
.y108{bottom:361.146667pt;}
.y8e{bottom:361.306667pt;}
.y2e{bottom:361.946667pt;}
.y129{bottom:373.146667pt;}
.yc4{bottom:378.106667pt;}
.y8d{bottom:379.706667pt;}
.ye6{bottom:380.026667pt;}
.y2d{bottom:380.346667pt;}
.y107{bottom:386.586667pt;}
.yc3{bottom:396.546667pt;}
.y8c{bottom:398.146667pt;}
.y2c{bottom:398.786667pt;}
.y128{bottom:399.586667pt;}
.y106{bottom:412.066667pt;}
.ye5{bottom:413.666667pt;}
.y8b{bottom:416.546667pt;}
.y2b{bottom:417.186667pt;}
.y127{bottom:417.986667pt;}
.yc2{bottom:421.986667pt;}
.ye4{bottom:432.066667pt;}
.y8a{bottom:434.946667pt;}
.y2a{bottom:435.586667pt;}
.y105{bottom:437.506667pt;}
.y126{bottom:444.386667pt;}
.yc1{bottom:448.386667pt;}
.y89{bottom:453.346667pt;}
.y29{bottom:453.986667pt;}
.y104{bottom:456.066667pt;}
.ye3{bottom:457.506667pt;}
.y125{bottom:462.786667pt;}
.yc0{bottom:474.786667pt;}
.y28{bottom:480.386667pt;}
.y103{bottom:481.506667pt;}
.ye2{bottom:482.946667pt;}
.y88{bottom:488.866667pt;}
.y124{bottom:489.186667pt;}
.ybf{bottom:493.186667pt;}
.y6b{bottom:499.266667pt;}
.ye1{bottom:501.346667pt;}
.y27{bottom:506.786667pt;}
.y102{bottom:506.946667pt;}
.y123{bottom:507.586667pt;}
.ybe{bottom:511.586667pt;}
.y87{bottom:515.266667pt;}
.y6a{bottom:517.666667pt;}
.ye0{bottom:519.746667pt;}
.ybd{bottom:529.986667pt;}
.y101{bottom:532.386667pt;}
.y26{bottom:533.186667pt;}
.y86{bottom:533.666667pt;}
.y122{bottom:533.986667pt;}
.y69{bottom:536.066667pt;}
.ydf{bottom:538.146667pt;}
.ybc{bottom:548.386667pt;}
.yf{bottom:548.706667pt;}
.yd{bottom:548.866667pt;}
.y25{bottom:551.586667pt;}
.yd3{bottom:551.746667pt;}
.y85{bottom:552.066667pt;}
.y121{bottom:552.386667pt;}
.y68{bottom:554.466667pt;}
.yde{bottom:556.546667pt;}
.yf7{bottom:558.466667pt;}
.y100{bottom:565.826667pt;}
.ybb{bottom:566.786667pt;}
.y24{bottom:569.986667pt;}
.y84{bottom:570.466667pt;}
.ydd{bottom:574.946667pt;}
.yd2{bottom:577.986667pt;}
.y120{bottom:578.786667pt;}
.y67{bottom:580.866667pt;}
.yf6{bottom:584.866667pt;}
.yba{bottom:585.186667pt;}
.y83{bottom:588.866667pt;}
.yff{bottom:592.066667pt;}
.y23{bottom:596.386667pt;}
.yd1{bottom:596.546667pt;}
.y11f{bottom:597.186667pt;}
.ydc{bottom:601.373333pt;}
.yb9{bottom:603.613333pt;}
.y66{bottom:603.773333pt;}
.yf5{bottom:607.773333pt;}
.y22{bottom:614.813333pt;}
.y11e{bottom:615.613333pt;}
.y82{bottom:616.253333pt;}
.yfe{bottom:617.693333pt;}
.ydb{bottom:619.773333pt;}
.yd0{bottom:622.013333pt;}
.yb8{bottom:629.053333pt;}
.y21{bottom:633.213333pt;}
.y65{bottom:637.373333pt;}
.y11d{bottom:642.013333pt;}
.ycf{bottom:644.893333pt;}
.yfd{bottom:645.213333pt;}
.y81{bottom:646.173333pt;}
.y20{bottom:651.613333pt;}
.yb7{bottom:654.493333pt;}
.y64{bottom:660.093333pt;}
.y11c{bottom:660.413333pt;}
.y1f{bottom:670.013333pt;}
.yda{bottom:672.413333pt;}
.yfc{bottom:672.573333pt;}
.yb6{bottom:672.893333pt;}
.y11b{bottom:678.813333pt;}
.y1e{bottom:688.413333pt;}
.y63{bottom:693.693333pt;}
.y11a{bottom:697.213333pt;}
.y80{bottom:697.693333pt;}
.yd9{bottom:698.173333pt;}
.yb5{bottom:699.293333pt;}
.y4d{bottom:702.813333pt;}
.y1d{bottom:706.813333pt;}
.y62{bottom:716.573333pt;}
.y7f{bottom:720.573333pt;}
.y119{bottom:723.613333pt;}
.y1c{bottom:725.213333pt;}
.yb4{bottom:725.693333pt;}
.yd8{bottom:728.093333pt;}
.y4c{bottom:729.213333pt;}
.y118{bottom:742.013333pt;}
.y61{bottom:746.493333pt;}
.y4b{bottom:747.613333pt;}
.yb2{bottom:749.213333pt;}
.y1b{bottom:751.613333pt;}
.y7e{bottom:754.333333pt;}
.y117{bottom:760.413333pt;}
.y4a{bottom:766.013333pt;}
.y7d{bottom:777.213333pt;}
.y1a{bottom:778.013333pt;}
.y60{bottom:780.093333pt;}
.yaf{bottom:783.293333pt;}
.y49{bottom:784.413333pt;}
.y116{bottom:786.813333pt;}
.y5f{bottom:798.493333pt;}
.y48{bottom:802.813333pt;}
.y19{bottom:804.413333pt;}
.y7c{bottom:810.813333pt;}
.y115{bottom:813.253333pt;}
.yae{bottom:817.893333pt;}
.y47{bottom:821.253333pt;}
.y18{bottom:822.853333pt;}
.y5e{bottom:823.973333pt;}
.y7b{bottom:829.253333pt;}
.y46{bottom:839.653333pt;}
.y7a{bottom:847.653333pt;}
.y17{bottom:849.253333pt;}
.y5d{bottom:849.413333pt;}
.y45{bottom:858.053333pt;}
.yad{bottom:861.413333pt;}
.y79{bottom:866.053333pt;}
.y5c{bottom:875.013333pt;}
.y16{bottom:875.653333pt;}
.y44{bottom:876.453333pt;}
.yf4{bottom:877.413333pt;}
.y78{bottom:884.453333pt;}
.yac{bottom:887.813333pt;}
.y43{bottom:894.853333pt;}
.yf3{bottom:895.813333pt;}
.y15{bottom:902.053333pt;}
.y77{bottom:902.853333pt;}
.y5b{bottom:904.773333pt;}
.yab{bottom:911.493333pt;}
.y42{bottom:913.253333pt;}
.yf2{bottom:914.213333pt;}
.y76{bottom:921.253333pt;}
.y14{bottom:924.933333pt;}
.y41{bottom:931.653333pt;}
.yf1{bottom:932.453333pt;}
.y5a{bottom:938.373333pt;}
.y75{bottom:939.653333pt;}
.y40{bottom:950.053333pt;}
.yaa{bottom:950.373333pt;}
.yf0{bottom:950.853333pt;}
.y74{bottom:958.053333pt;}
.y13{bottom:959.333333pt;}
.y59{bottom:961.253333pt;}
.y3f{bottom:968.453333pt;}
.yef{bottom:969.253333pt;}
.y73{bottom:976.453333pt;}
.y3e{bottom:986.853333pt;}
.yee{bottom:987.813333pt;}
.ya9{bottom:989.253333pt;}
.y11{bottom:993.733333pt;}
.y58{bottom:994.853333pt;}
.y3d{bottom:1013.253333pt;}
.y1{bottom:1050.720000pt;}
.ya{bottom:1060.800000pt;}
.y4{bottom:1064.960000pt;}
.y9{bottom:1074.560000pt;}
.h15{height:1.787500pt;}
.h6{height:17.440000pt;}
.hb{height:24.960000pt;}
.ha{height:25.120000pt;}
.h17{height:31.360000pt;}
.h18{height:33.952000pt;}
.h19{height:34.080000pt;}
.hd{height:34.400000pt;}
.hc{height:34.432000pt;}
.h12{height:36.800000pt;}
.h11{height:36.960000pt;}
.h13{height:36.992000pt;}
.h8{height:37.090625pt;}
.h7{height:37.479688pt;}
.h5{height:38.720000pt;}
.h14{height:38.880000pt;}
.h16{height:38.912000pt;}
.h9{height:41.112500pt;}
.h4{height:44.687500pt;}
.h3{height:45.156250pt;}
.hf{height:46.593750pt;}
.he{height:51.374688pt;}
.h2{height:53.440000pt;}
.h10{height:53.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:37.760000pt;}
.w8{width:75.546667pt;}
.w12{width:75.712000pt;}
.w13{width:84.960000pt;}
.w3{width:90.112000pt;}
.w14{width:94.432000pt;}
.w6{width:110.592000pt;}
.we{width:113.152000pt;}
.wf{width:113.472000pt;}
.w5{width:167.226667pt;}
.wd{width:170.106667pt;}
.w4{width:174.266667pt;}
.w10{width:179.386667pt;}
.w9{width:198.906667pt;}
.wb{width:248.826667pt;}
.wa{width:254.306667pt;}
.wc{width:377.986667pt;}
.w2{width:549.733333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x1f{left:7.200000pt;}
.xc{left:9.600000pt;}
.x5{left:18.080000pt;}
.x3{left:20.832000pt;}
.x24{left:25.120000pt;}
.x7{left:26.080000pt;}
.xd{left:46.400000pt;}
.x1{left:60.000000pt;}
.x27{left:65.120000pt;}
.xa{left:94.431988pt;}
.x13{left:95.711988pt;}
.x2d{left:98.111988pt;}
.x16{left:99.551988pt;}
.x33{left:100.991988pt;}
.x2a{left:101.951988pt;}
.x30{left:106.591988pt;}
.x1c{left:109.791988pt;}
.x10{left:111.231988pt;}
.x32{left:114.591988pt;}
.x1e{left:122.912000pt;}
.x21{left:193.946667pt;}
.x28{left:204.346655pt;}
.x31{left:207.866655pt;}
.x2f{left:226.586655pt;}
.x1a{left:232.346655pt;}
.x2{left:240.386667pt;}
.xe{left:245.306667pt;}
.x17{left:255.266655pt;}
.x34{left:258.946655pt;}
.x1d{left:292.546655pt;}
.x2c{left:296.546655pt;}
.x22{left:307.106667pt;}
.x19{left:308.546655pt;}
.x2e{left:327.266655pt;}
.x2b{left:331.266655pt;}
.x12{left:337.986655pt;}
.x25{left:344.866667pt;}
.x14{left:362.146655pt;}
.x11{left:396.866655pt;}
.x8{left:401.026667pt;}
.x23{left:420.573333pt;}
.xf{left:499.613333pt;}
.x20{left:500.893333pt;}
.x26{left:505.533333pt;}
.x15{left:557.853322pt;}
.x29{left:647.813322pt;}
.x9{left:655.653333pt;}
.x1b{left:658.533322pt;}
.x4{left:676.453333pt;}
.x18{left:699.333322pt;}
.xb{left:718.213333pt;}
}




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