
    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_eca3241c5c95b17fdbbe0289.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_73413e340373f4af485dbb94.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3faf5f532ee997affe080042.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_d3f1c799d79aedad97307f8d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_698ddfc598e6e4c9fd9e2be1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8fcda9e9472aee852b86a676.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
.ls8{letter-spacing:-2.808000px;}
.ls7{letter-spacing:-2.520000px;}
.ls6{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:54.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.712000px;}
.ws6{word-spacing:-15.480000px;}
.ws7{word-spacing:-15.192000px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-10.008000px;}
._a{margin-left:-9.000000px;}
._7{margin-left:-7.704000px;}
._6{margin-left:-6.480000px;}
._4{margin-left:-5.160000px;}
._0{margin-left:-4.104000px;}
._2{margin-left:-2.808000px;}
._3{margin-left:-1.080000px;}
._5{width:1.104000px;}
._8{width:2.520000px;}
._1{width:846.024000px;}
.fc5{color:rgb(0,111,183);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(70,120,134);}
.fc1{color:transparent;}
.fc2{color:rgb(42,42,42);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:3.870000px;}
.ya1{bottom:5.670000px;}
.yb3{bottom:5.700000px;}
.yb0{bottom:22.500000px;}
.yb4{bottom:22.530000px;}
.ya6{bottom:24.570000px;}
.y104{bottom:24.600000px;}
.yb6{bottom:41.400000px;}
.y100{bottom:45.270000px;}
.yad{bottom:114.570000px;}
.y53{bottom:114.660000px;}
.y134{bottom:115.110000px;}
.yf7{bottom:116.010000px;}
.y76{bottom:116.460000px;}
.yd5{bottom:119.340000px;}
.y113{bottom:124.740000px;}
.y8b{bottom:128.340000px;}
.y52{bottom:136.800000px;}
.y133{bottom:137.250000px;}
.yf6{bottom:138.330000px;}
.y75{bottom:138.690000px;}
.y193{bottom:143.280000px;}
.y2c{bottom:143.460000px;}
.y112{bottom:147.150000px;}
.y8a{bottom:150.660000px;}
.y173{bottom:153.270000px;}
.yac{bottom:156.000000px;}
.y51{bottom:159.060000px;}
.y132{bottom:159.510000px;}
.yf5{bottom:160.680000px;}
.yd4{bottom:160.770000px;}
.y74{bottom:160.860000px;}
.y192{bottom:165.540000px;}
.y2b{bottom:165.630000px;}
.y89{bottom:173.100000px;}
.y172{bottom:175.530000px;}
.yab{bottom:178.500000px;}
.y50{bottom:181.200000px;}
.y111{bottom:181.470000px;}
.y73{bottom:183.000000px;}
.yd3{bottom:183.270000px;}
.y191{bottom:187.680000px;}
.y2a{bottom:187.860000px;}
.y131{bottom:193.620000px;}
.yaa{bottom:201.000000px;}
.y4f{bottom:203.340000px;}
.y110{bottom:203.790000px;}
.y72{bottom:205.230000px;}
.yf4{bottom:205.320000px;}
.yd2{bottom:205.770000px;}
.y88{bottom:207.390000px;}
.y171{bottom:209.640000px;}
.y190{bottom:209.820000px;}
.y29{bottom:210.000000px;}
.y130{bottom:215.850000px;}
.ya9{bottom:223.500000px;}
.y4e{bottom:225.480000px;}
.y10f{bottom:226.110000px;}
.yf3{bottom:227.730000px;}
.yd1{bottom:228.270000px;}
.y87{bottom:229.710000px;}
.y170{bottom:231.870000px;}
.y28{bottom:232.140000px;}
.y12f{bottom:237.990000px;}
.y71{bottom:239.340000px;}
.y18f{bottom:244.020000px;}
.y10e{bottom:248.520000px;}
.yf2{bottom:250.050000px;}
.y27{bottom:254.370000px;}
.y4d{bottom:259.680000px;}
.y12e{bottom:260.130000px;}
.y70{bottom:261.480000px;}
.y86{bottom:264.090000px;}
.ya8{bottom:264.900000px;}
.y16f{bottom:265.980000px;}
.y18e{bottom:266.160000px;}
.yd0{bottom:269.670000px;}
.y10d{bottom:270.840000px;}
.yf1{bottom:272.370000px;}
.y26{bottom:276.510000px;}
.y12d{bottom:282.270000px;}
.y6f{bottom:283.710000px;}
.y85{bottom:287.670000px;}
.y16e{bottom:288.210000px;}
.y18d{bottom:288.300000px;}
.ycf{bottom:292.890000px;}
.y10c{bottom:293.160000px;}
.y4c{bottom:293.880000px;}
.yf0{bottom:294.690000px;}
.y25{bottom:298.650000px;}
.y12c{bottom:304.500000px;}
.y152{bottom:305.670000px;}
.y6e{bottom:305.850000px;}
.ya5{bottom:306.300000px;}
.y84{bottom:309.990000px;}
.y16d{bottom:310.350000px;}
.y10b{bottom:315.480000px;}
.y4b{bottom:316.020000px;}
.yef{bottom:317.010000px;}
.yce{bottom:321.690000px;}
.y18c{bottom:322.500000px;}
.y12b{bottom:326.640000px;}
.y6d{bottom:327.990000px;}
.y16c{bottom:332.490000px;}
.y24{bottom:333.030000px;}
.y83{bottom:333.660000px;}
.y10a{bottom:337.800000px;}
.y4a{bottom:338.160000px;}
.yee{bottom:339.420000px;}
.y151{bottom:339.870000px;}
.y18b{bottom:344.640000px;}
.ya4{bottom:347.700000px;}
.y12a{bottom:348.780000px;}
.y6c{bottom:350.130000px;}
.y82{bottom:355.980000px;}
.y109{bottom:360.210000px;}
.y49{bottom:360.300000px;}
.y150{bottom:362.010000px;}
.y16b{bottom:366.690000px;}
.y18a{bottom:366.870000px;}
.y23{bottom:367.320000px;}
.ya3{bottom:370.200000px;}
.y129{bottom:370.920000px;}
.y6b{bottom:372.360000px;}
.yed{bottom:373.710000px;}
.ycd{bottom:378.300000px;}
.y48{bottom:382.530000px;}
.y14f{bottom:384.150000px;}
.y16a{bottom:388.830000px;}
.y189{bottom:389.010000px;}
.y81{bottom:391.620000px;}
.ya2{bottom:392.700000px;}
.y128{bottom:393.150000px;}
.y6a{bottom:394.500000px;}
.yec{bottom:396.030000px;}
.y22{bottom:401.700000px;}
.y47{bottom:404.670000px;}
.y108{bottom:404.850000px;}
.y14e{bottom:406.290000px;}
.y169{bottom:410.970000px;}
.ycc{bottom:412.680000px;}
.y80{bottom:413.940000px;}
.ya0{bottom:415.920000px;}
.y69{bottom:416.640000px;}
.yeb{bottom:418.350000px;}
.y188{bottom:423.120000px;}
.y21{bottom:424.020000px;}
.y46{bottom:426.810000px;}
.y127{bottom:427.260000px;}
.y14d{bottom:428.520000px;}
.ycb{bottom:435.000000px;}
.y7f{bottom:436.350000px;}
.y107{bottom:440.400000px;}
.yea{bottom:440.760000px;}
.y9f{bottom:444.720000px;}
.y168{bottom:445.170000px;}
.y187{bottom:445.350000px;}
.y20{bottom:446.340000px;}
.y45{bottom:449.040000px;}
.y126{bottom:449.490000px;}
.y14c{bottom:450.660000px;}
.y68{bottom:450.840000px;}
.yca{bottom:457.320000px;}
.y7e{bottom:458.670000px;}
.y106{bottom:462.900000px;}
.ye9{bottom:463.080000px;}
.y167{bottom:467.310000px;}
.y1f{bottom:468.660000px;}
.y125{bottom:471.630000px;}
.y14b{bottom:472.800000px;}
.y67{bottom:472.980000px;}
.y9e{bottom:479.010000px;}
.y186{bottom:479.460000px;}
.yc9{bottom:479.640000px;}
.y7d{bottom:480.990000px;}
.y44{bottom:483.150000px;}
.ye8{bottom:485.400000px;}
.y1e{bottom:490.980000px;}
.y124{bottom:493.770000px;}
.y66{bottom:495.120000px;}
.y9d{bottom:501.330000px;}
.y166{bottom:501.510000px;}
.y185{bottom:501.690000px;}
.yc8{bottom:502.050000px;}
.y7c{bottom:503.310000px;}
.y43{bottom:505.290000px;}
.y14a{bottom:507.000000px;}
.ye7{bottom:507.720000px;}
.y1d{bottom:513.390000px;}
.y123{bottom:515.910000px;}
.y65{bottom:517.350000px;}
.y165{bottom:523.650000px;}
.y184{bottom:523.830000px;}
.yc7{bottom:524.370000px;}
.y105{bottom:526.800000px;}
.y42{bottom:527.520000px;}
.y149{bottom:529.140000px;}
.ye6{bottom:530.040000px;}
.y1c{bottom:535.710000px;}
.y7b{bottom:537.690000px;}
.y122{bottom:538.140000px;}
.y64{bottom:539.490000px;}
.yc6{bottom:546.690000px;}
.y41{bottom:549.660000px;}
.y148{bottom:551.280000px;}
.ye5{bottom:552.450000px;}
.y164{bottom:557.850000px;}
.y183{bottom:557.940000px;}
.y9c{bottom:558.030000px;}
.y121{bottom:560.280000px;}
.y63{bottom:561.630000px;}
.y103{bottom:568.200000px;}
.yc5{bottom:569.010000px;}
.y1b{bottom:570.000000px;}
.y40{bottom:571.800000px;}
.y147{bottom:573.510000px;}
.ye4{bottom:574.800000px;}
.y163{bottom:580.020000px;}
.y182{bottom:580.200000px;}
.y9b{bottom:580.380000px;}
.y120{bottom:582.450000px;}
.y62{bottom:583.890000px;}
.yc4{bottom:591.360000px;}
.y1a{bottom:592.440000px;}
.y3f{bottom:593.970000px;}
.y146{bottom:595.680000px;}
.ye3{bottom:597.120000px;}
.y181{bottom:602.340000px;}
.y11f{bottom:604.590000px;}
.y61{bottom:606.030000px;}
.y102{bottom:609.630000px;}
.yc3{bottom:613.770000px;}
.y162{bottom:614.130000px;}
.y19{bottom:614.760000px;}
.y3e{bottom:616.200000px;}
.y145{bottom:617.820000px;}
.y180{bottom:624.480000px;}
.y11e{bottom:626.820000px;}
.y60{bottom:628.170000px;}
.ye2{bottom:632.670000px;}
.y161{bottom:636.360000px;}
.y18{bottom:637.080000px;}
.y3d{bottom:638.340000px;}
.y144{bottom:640.050000px;}
.yc2{bottom:648.060000px;}
.y9a{bottom:649.050000px;}
.y5f{bottom:650.310000px;}
.y101{bottom:651.030000px;}
.ye1{bottom:655.170000px;}
.y160{bottom:658.500000px;}
.y17f{bottom:658.680000px;}
.y17{bottom:659.400000px;}
.y3c{bottom:660.480000px;}
.y11d{bottom:660.930000px;}
.y143{bottom:662.190000px;}
.yc1{bottom:670.380000px;}
.y99{bottom:671.370000px;}
.y5e{bottom:672.540000px;}
.ye0{bottom:677.670000px;}
.y15f{bottom:680.640000px;}
.y17e{bottom:680.820000px;}
.y16{bottom:681.720000px;}
.y3b{bottom:682.710000px;}
.y11c{bottom:683.160000px;}
.y142{bottom:684.330000px;}
.yff{bottom:692.430000px;}
.yc0{bottom:692.700000px;}
.y98{bottom:693.780000px;}
.y7a{bottom:694.680000px;}
.y15{bottom:704.040000px;}
.y3a{bottom:704.850000px;}
.y11b{bottom:705.300000px;}
.y5d{bottom:706.650000px;}
.y15e{bottom:714.840000px;}
.y17d{bottom:715.020000px;}
.ybf{bottom:715.110000px;}
.y97{bottom:716.100000px;}
.y141{bottom:718.710000px;}
.ydf{bottom:719.070000px;}
.y14{bottom:726.450000px;}
.y11a{bottom:727.440000px;}
.y79{bottom:728.880000px;}
.y15d{bottom:736.980000px;}
.y17c{bottom:737.160000px;}
.ybe{bottom:737.430000px;}
.y96{bottom:738.420000px;}
.y39{bottom:738.960000px;}
.y5c{bottom:740.850000px;}
.yde{bottom:741.570000px;}
.yf{bottom:748.770000px;}
.y119{bottom:749.580000px;}
.y78{bottom:751.020000px;}
.y140{bottom:752.820000px;}
.yfe{bottom:754.530000px;}
.y15c{bottom:759.120000px;}
.ybd{bottom:759.750000px;}
.y95{bottom:760.740000px;}
.y5b{bottom:762.990000px;}
.ydd{bottom:764.070000px;}
.y13{bottom:771.090000px;}
.y17b{bottom:771.360000px;}
.y118{bottom:771.810000px;}
.y38{bottom:773.160000px;}
.y13f{bottom:774.960000px;}
.ybc{bottom:782.070000px;}
.ye{bottom:783.060000px;}
.y5a{bottom:785.130000px;}
.y15b{bottom:793.320000px;}
.y12{bottom:793.410000px;}
.y17a{bottom:793.500000px;}
.y117{bottom:793.950000px;}
.y37{bottom:795.300000px;}
.yfd{bottom:795.930000px;}
.y13e{bottom:797.190000px;}
.ybb{bottom:804.390000px;}
.yd{bottom:805.470000px;}
.y59{bottom:807.360000px;}
.y15a{bottom:815.460000px;}
.y179{bottom:815.640000px;}
.y11{bottom:815.730000px;}
.y116{bottom:816.090000px;}
.y36{bottom:817.530000px;}
.y13d{bottom:819.330000px;}
.yba{bottom:826.800000px;}
.yc{bottom:827.790000px;}
.y58{bottom:829.500000px;}
.yfc{bottom:837.330000px;}
.y10{bottom:838.140000px;}
.y115{bottom:838.320000px;}
.y35{bottom:839.670000px;}
.y94{bottom:839.760000px;}
.y13c{bottom:841.470000px;}
.ydc{bottom:846.870000px;}
.yb9{bottom:849.120000px;}
.y159{bottom:849.660000px;}
.y178{bottom:849.840000px;}
.yb{bottom:850.110000px;}
.y57{bottom:851.640000px;}
.y114{bottom:860.460000px;}
.y34{bottom:861.810000px;}
.y93{bottom:862.080000px;}
.y13b{bottom:863.700000px;}
.ydb{bottom:869.370000px;}
.y158{bottom:871.800000px;}
.y177{bottom:871.980000px;}
.ya{bottom:872.430000px;}
.y56{bottom:873.780000px;}
.yfb{bottom:878.730000px;}
.y33{bottom:883.950000px;}
.y92{bottom:884.400000px;}
.yb8{bottom:884.670000px;}
.y13a{bottom:885.840000px;}
.y157{bottom:893.940000px;}
.y176{bottom:894.120000px;}
.y9{bottom:894.750000px;}
.y55{bottom:896.010000px;}
.y32{bottom:906.180000px;}
.y91{bottom:906.810000px;}
.yb7{bottom:907.170000px;}
.y139{bottom:907.980000px;}
.yda{bottom:910.770000px;}
.y8{bottom:917.160000px;}
.y54{bottom:918.150000px;}
.yfa{bottom:920.130000px;}
.y156{bottom:928.140000px;}
.y175{bottom:928.320000px;}
.y90{bottom:929.130000px;}
.y138{bottom:930.120000px;}
.yd9{bottom:933.270000px;}
.y7{bottom:939.480000px;}
.y31{bottom:940.290000px;}
.yf9{bottom:943.350000px;}
.yb5{bottom:948.570000px;}
.y155{bottom:950.280000px;}
.y174{bottom:950.460000px;}
.y8f{bottom:951.450000px;}
.y137{bottom:952.350000px;}
.yd8{bottom:955.770000px;}
.y6{bottom:961.800000px;}
.y30{bottom:962.520000px;}
.yf8{bottom:972.150000px;}
.y154{bottom:972.510000px;}
.y8e{bottom:973.770000px;}
.y136{bottom:974.490000px;}
.y5{bottom:984.120000px;}
.y2f{bottom:984.660000px;}
.yb2{bottom:989.970000px;}
.y8d{bottom:996.120000px;}
.y135{bottom:996.660000px;}
.yd7{bottom:997.200000px;}
.y3{bottom:1006.470000px;}
.y153{bottom:1006.650000px;}
.y2e{bottom:1006.830000px;}
.yb1{bottom:1012.500000px;}
.y8c{bottom:1018.530000px;}
.y77{bottom:1018.800000px;}
.y4{bottom:1028.790000px;}
.yaf{bottom:1035.000000px;}
.yd6{bottom:1038.600000px;}
.y2{bottom:1040.850000px;}
.y2d{bottom:1041.030000px;}
.yae{bottom:1057.500000px;}
.y1{bottom:1063.170000px;}
.h4{height:22.500000px;}
.h7{height:22.530000px;}
.h5{height:41.400000px;}
.h6{height:41.430000px;}
.h1{height:50.800781px;}
.h3{height:59.343750px;}
.h8{height:62.100000px;}
.h2{height:63.035156px;}
.h0{height:1188.000000px;}
.wb{width:54.000000px;}
.wd{width:60.690000px;}
.w7{width:64.560000px;}
.w9{width:64.650000px;}
.w3{width:68.400000px;}
.w5{width:68.520000px;}
.w8{width:256.770000px;}
.w4{width:275.070000px;}
.wa{width:283.530000px;}
.w2{width:290.100000px;}
.wc{width:303.870000px;}
.w6{width:316.110000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x5{left:107.999986px;}
.x1{left:109.529986px;}
.x8{left:134.999986px;}
.x9{left:162.029986px;}
.x3{left:214.139986px;}
.x2{left:289.469986px;}
.x7{left:388.919986px;}
.x12{left:391.530000px;}
.xc{left:398.100000px;}
.x6{left:410.159986px;}
.x16{left:416.009986px;}
.x17{left:417.179986px;}
.x15{left:418.529986px;}
.xf{left:424.110000px;}
.x4{left:425.549986px;}
.xa{left:431.039986px;}
.x13{left:445.530000px;}
.xd{left:466.500000px;}
.x10{left:488.670000px;}
.xe{left:741.570000px;}
.x11{left:745.440000px;}
.x14{left:749.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.496000pt;}
.ls7{letter-spacing:-2.240000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:48.874667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws6{word-spacing:-13.760000pt;}
.ws7{word-spacing:-13.504000pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-8.896000pt;}
._a{margin-left:-8.000000pt;}
._7{margin-left:-6.848000pt;}
._6{margin-left:-5.760000pt;}
._4{margin-left:-4.586667pt;}
._0{margin-left:-3.648000pt;}
._2{margin-left:-2.496000pt;}
._3{margin-left:-0.960000pt;}
._5{width:0.981333pt;}
._8{width:2.240000pt;}
._1{width:752.021333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:3.440000pt;}
.ya1{bottom:5.040000pt;}
.yb3{bottom:5.066667pt;}
.yb0{bottom:20.000000pt;}
.yb4{bottom:20.026667pt;}
.ya6{bottom:21.840000pt;}
.y104{bottom:21.866667pt;}
.yb6{bottom:36.800000pt;}
.y100{bottom:40.240000pt;}
.yad{bottom:101.840000pt;}
.y53{bottom:101.920000pt;}
.y134{bottom:102.320000pt;}
.yf7{bottom:103.120000pt;}
.y76{bottom:103.520000pt;}
.yd5{bottom:106.080000pt;}
.y113{bottom:110.880000pt;}
.y8b{bottom:114.080000pt;}
.y52{bottom:121.600000pt;}
.y133{bottom:122.000000pt;}
.yf6{bottom:122.960000pt;}
.y75{bottom:123.280000pt;}
.y193{bottom:127.360000pt;}
.y2c{bottom:127.520000pt;}
.y112{bottom:130.800000pt;}
.y8a{bottom:133.920000pt;}
.y173{bottom:136.240000pt;}
.yac{bottom:138.666667pt;}
.y51{bottom:141.386667pt;}
.y132{bottom:141.786667pt;}
.yf5{bottom:142.826667pt;}
.yd4{bottom:142.906667pt;}
.y74{bottom:142.986667pt;}
.y192{bottom:147.146667pt;}
.y2b{bottom:147.226667pt;}
.y89{bottom:153.866667pt;}
.y172{bottom:156.026667pt;}
.yab{bottom:158.666667pt;}
.y50{bottom:161.066667pt;}
.y111{bottom:161.306667pt;}
.y73{bottom:162.666667pt;}
.yd3{bottom:162.906667pt;}
.y191{bottom:166.826667pt;}
.y2a{bottom:166.986667pt;}
.y131{bottom:172.106667pt;}
.yaa{bottom:178.666667pt;}
.y4f{bottom:180.746667pt;}
.y110{bottom:181.146667pt;}
.y72{bottom:182.426667pt;}
.yf4{bottom:182.506667pt;}
.yd2{bottom:182.906667pt;}
.y88{bottom:184.346667pt;}
.y171{bottom:186.346667pt;}
.y190{bottom:186.506667pt;}
.y29{bottom:186.666667pt;}
.y130{bottom:191.866667pt;}
.ya9{bottom:198.666667pt;}
.y4e{bottom:200.426667pt;}
.y10f{bottom:200.986667pt;}
.yf3{bottom:202.426667pt;}
.yd1{bottom:202.906667pt;}
.y87{bottom:204.186667pt;}
.y170{bottom:206.106667pt;}
.y28{bottom:206.346667pt;}
.y12f{bottom:211.546667pt;}
.y71{bottom:212.746667pt;}
.y18f{bottom:216.906667pt;}
.y10e{bottom:220.906667pt;}
.yf2{bottom:222.266667pt;}
.y27{bottom:226.106667pt;}
.y4d{bottom:230.826667pt;}
.y12e{bottom:231.226667pt;}
.y70{bottom:232.426667pt;}
.y86{bottom:234.746667pt;}
.ya8{bottom:235.466667pt;}
.y16f{bottom:236.426667pt;}
.y18e{bottom:236.586667pt;}
.yd0{bottom:239.706667pt;}
.y10d{bottom:240.746667pt;}
.yf1{bottom:242.106667pt;}
.y26{bottom:245.786667pt;}
.y12d{bottom:250.906667pt;}
.y6f{bottom:252.186667pt;}
.y85{bottom:255.706667pt;}
.y16e{bottom:256.186667pt;}
.y18d{bottom:256.266667pt;}
.ycf{bottom:260.346667pt;}
.y10c{bottom:260.586667pt;}
.y4c{bottom:261.226667pt;}
.yf0{bottom:261.946667pt;}
.y25{bottom:265.466667pt;}
.y12c{bottom:270.666667pt;}
.y152{bottom:271.706667pt;}
.y6e{bottom:271.866667pt;}
.ya5{bottom:272.266667pt;}
.y84{bottom:275.546667pt;}
.y16d{bottom:275.866667pt;}
.y10b{bottom:280.426667pt;}
.y4b{bottom:280.906667pt;}
.yef{bottom:281.786667pt;}
.yce{bottom:285.946667pt;}
.y18c{bottom:286.666667pt;}
.y12b{bottom:290.346667pt;}
.y6d{bottom:291.546667pt;}
.y16c{bottom:295.546667pt;}
.y24{bottom:296.026667pt;}
.y83{bottom:296.586667pt;}
.y10a{bottom:300.266667pt;}
.y4a{bottom:300.586667pt;}
.yee{bottom:301.706667pt;}
.y151{bottom:302.106667pt;}
.y18b{bottom:306.346667pt;}
.ya4{bottom:309.066667pt;}
.y12a{bottom:310.026667pt;}
.y6c{bottom:311.226667pt;}
.y82{bottom:316.426667pt;}
.y109{bottom:320.186667pt;}
.y49{bottom:320.266667pt;}
.y150{bottom:321.786667pt;}
.y16b{bottom:325.946667pt;}
.y18a{bottom:326.106667pt;}
.y23{bottom:326.506667pt;}
.ya3{bottom:329.066667pt;}
.y129{bottom:329.706667pt;}
.y6b{bottom:330.986667pt;}
.yed{bottom:332.186667pt;}
.ycd{bottom:336.266667pt;}
.y48{bottom:340.026667pt;}
.y14f{bottom:341.466667pt;}
.y16a{bottom:345.626667pt;}
.y189{bottom:345.786667pt;}
.y81{bottom:348.106667pt;}
.ya2{bottom:349.066667pt;}
.y128{bottom:349.466667pt;}
.y6a{bottom:350.666667pt;}
.yec{bottom:352.026667pt;}
.y22{bottom:357.066667pt;}
.y47{bottom:359.706667pt;}
.y108{bottom:359.866667pt;}
.y14e{bottom:361.146667pt;}
.y169{bottom:365.306667pt;}
.ycc{bottom:366.826667pt;}
.y80{bottom:367.946667pt;}
.ya0{bottom:369.706667pt;}
.y69{bottom:370.346667pt;}
.yeb{bottom:371.866667pt;}
.y188{bottom:376.106667pt;}
.y21{bottom:376.906667pt;}
.y46{bottom:379.386667pt;}
.y127{bottom:379.786667pt;}
.y14d{bottom:380.906667pt;}
.ycb{bottom:386.666667pt;}
.y7f{bottom:387.866667pt;}
.y107{bottom:391.466667pt;}
.yea{bottom:391.786667pt;}
.y9f{bottom:395.306667pt;}
.y168{bottom:395.706667pt;}
.y187{bottom:395.866667pt;}
.y20{bottom:396.746667pt;}
.y45{bottom:399.146667pt;}
.y126{bottom:399.546667pt;}
.y14c{bottom:400.586667pt;}
.y68{bottom:400.746667pt;}
.yca{bottom:406.506667pt;}
.y7e{bottom:407.706667pt;}
.y106{bottom:411.466667pt;}
.ye9{bottom:411.626667pt;}
.y167{bottom:415.386667pt;}
.y1f{bottom:416.586667pt;}
.y125{bottom:419.226667pt;}
.y14b{bottom:420.266667pt;}
.y67{bottom:420.426667pt;}
.y9e{bottom:425.786667pt;}
.y186{bottom:426.186667pt;}
.yc9{bottom:426.346667pt;}
.y7d{bottom:427.546667pt;}
.y44{bottom:429.466667pt;}
.ye8{bottom:431.466667pt;}
.y1e{bottom:436.426667pt;}
.y124{bottom:438.906667pt;}
.y66{bottom:440.106667pt;}
.y9d{bottom:445.626667pt;}
.y166{bottom:445.786667pt;}
.y185{bottom:445.946667pt;}
.yc8{bottom:446.266667pt;}
.y7c{bottom:447.386667pt;}
.y43{bottom:449.146667pt;}
.y14a{bottom:450.666667pt;}
.ye7{bottom:451.306667pt;}
.y1d{bottom:456.346667pt;}
.y123{bottom:458.586667pt;}
.y65{bottom:459.866667pt;}
.y165{bottom:465.466667pt;}
.y184{bottom:465.626667pt;}
.yc7{bottom:466.106667pt;}
.y105{bottom:468.266667pt;}
.y42{bottom:468.906667pt;}
.y149{bottom:470.346667pt;}
.ye6{bottom:471.146667pt;}
.y1c{bottom:476.186667pt;}
.y7b{bottom:477.946667pt;}
.y122{bottom:478.346667pt;}
.y64{bottom:479.546667pt;}
.yc6{bottom:485.946667pt;}
.y41{bottom:488.586667pt;}
.y148{bottom:490.026667pt;}
.ye5{bottom:491.066667pt;}
.y164{bottom:495.866667pt;}
.y183{bottom:495.946667pt;}
.y9c{bottom:496.026667pt;}
.y121{bottom:498.026667pt;}
.y63{bottom:499.226667pt;}
.y103{bottom:505.066667pt;}
.yc5{bottom:505.786667pt;}
.y1b{bottom:506.666667pt;}
.y40{bottom:508.266667pt;}
.y147{bottom:509.786667pt;}
.ye4{bottom:510.933333pt;}
.y163{bottom:515.573333pt;}
.y182{bottom:515.733333pt;}
.y9b{bottom:515.893333pt;}
.y120{bottom:517.733333pt;}
.y62{bottom:519.013333pt;}
.yc4{bottom:525.653333pt;}
.y1a{bottom:526.613333pt;}
.y3f{bottom:527.973333pt;}
.y146{bottom:529.493333pt;}
.ye3{bottom:530.773333pt;}
.y181{bottom:535.413333pt;}
.y11f{bottom:537.413333pt;}
.y61{bottom:538.693333pt;}
.y102{bottom:541.893333pt;}
.yc3{bottom:545.573333pt;}
.y162{bottom:545.893333pt;}
.y19{bottom:546.453333pt;}
.y3e{bottom:547.733333pt;}
.y145{bottom:549.173333pt;}
.y180{bottom:555.093333pt;}
.y11e{bottom:557.173333pt;}
.y60{bottom:558.373333pt;}
.ye2{bottom:562.373333pt;}
.y161{bottom:565.653333pt;}
.y18{bottom:566.293333pt;}
.y3d{bottom:567.413333pt;}
.y144{bottom:568.933333pt;}
.yc2{bottom:576.053333pt;}
.y9a{bottom:576.933333pt;}
.y5f{bottom:578.053333pt;}
.y101{bottom:578.693333pt;}
.ye1{bottom:582.373333pt;}
.y160{bottom:585.333333pt;}
.y17f{bottom:585.493333pt;}
.y17{bottom:586.133333pt;}
.y3c{bottom:587.093333pt;}
.y11d{bottom:587.493333pt;}
.y143{bottom:588.613333pt;}
.yc1{bottom:595.893333pt;}
.y99{bottom:596.773333pt;}
.y5e{bottom:597.813333pt;}
.ye0{bottom:602.373333pt;}
.y15f{bottom:605.013333pt;}
.y17e{bottom:605.173333pt;}
.y16{bottom:605.973333pt;}
.y3b{bottom:606.853333pt;}
.y11c{bottom:607.253333pt;}
.y142{bottom:608.293333pt;}
.yff{bottom:615.493333pt;}
.yc0{bottom:615.733333pt;}
.y98{bottom:616.693333pt;}
.y7a{bottom:617.493333pt;}
.y15{bottom:625.813333pt;}
.y3a{bottom:626.533333pt;}
.y11b{bottom:626.933333pt;}
.y5d{bottom:628.133333pt;}
.y15e{bottom:635.413333pt;}
.y17d{bottom:635.573333pt;}
.ybf{bottom:635.653333pt;}
.y97{bottom:636.533333pt;}
.y141{bottom:638.853333pt;}
.ydf{bottom:639.173333pt;}
.y14{bottom:645.733333pt;}
.y11a{bottom:646.613333pt;}
.y79{bottom:647.893333pt;}
.y15d{bottom:655.093333pt;}
.y17c{bottom:655.253333pt;}
.ybe{bottom:655.493333pt;}
.y96{bottom:656.373333pt;}
.y39{bottom:656.853333pt;}
.y5c{bottom:658.533333pt;}
.yde{bottom:659.173333pt;}
.yf{bottom:665.573333pt;}
.y119{bottom:666.293333pt;}
.y78{bottom:667.573333pt;}
.y140{bottom:669.173333pt;}
.yfe{bottom:670.693333pt;}
.y15c{bottom:674.773333pt;}
.ybd{bottom:675.333333pt;}
.y95{bottom:676.213333pt;}
.y5b{bottom:678.213333pt;}
.ydd{bottom:679.173333pt;}
.y13{bottom:685.413333pt;}
.y17b{bottom:685.653333pt;}
.y118{bottom:686.053333pt;}
.y38{bottom:687.253333pt;}
.y13f{bottom:688.853333pt;}
.ybc{bottom:695.173333pt;}
.ye{bottom:696.053333pt;}
.y5a{bottom:697.893333pt;}
.y15b{bottom:705.173333pt;}
.y12{bottom:705.253333pt;}
.y17a{bottom:705.333333pt;}
.y117{bottom:705.733333pt;}
.y37{bottom:706.933333pt;}
.yfd{bottom:707.493333pt;}
.y13e{bottom:708.613333pt;}
.ybb{bottom:715.013333pt;}
.yd{bottom:715.973333pt;}
.y59{bottom:717.653333pt;}
.y15a{bottom:724.853333pt;}
.y179{bottom:725.013333pt;}
.y11{bottom:725.093333pt;}
.y116{bottom:725.413333pt;}
.y36{bottom:726.693333pt;}
.y13d{bottom:728.293333pt;}
.yba{bottom:734.933333pt;}
.yc{bottom:735.813333pt;}
.y58{bottom:737.333333pt;}
.yfc{bottom:744.293333pt;}
.y10{bottom:745.013333pt;}
.y115{bottom:745.173333pt;}
.y35{bottom:746.373333pt;}
.y94{bottom:746.453333pt;}
.y13c{bottom:747.973333pt;}
.ydc{bottom:752.773333pt;}
.yb9{bottom:754.773333pt;}
.y159{bottom:755.253333pt;}
.y178{bottom:755.413333pt;}
.yb{bottom:755.653333pt;}
.y57{bottom:757.013333pt;}
.y114{bottom:764.853333pt;}
.y34{bottom:766.053333pt;}
.y93{bottom:766.293333pt;}
.y13b{bottom:767.733333pt;}
.ydb{bottom:772.773333pt;}
.y158{bottom:774.933333pt;}
.y177{bottom:775.093333pt;}
.ya{bottom:775.493333pt;}
.y56{bottom:776.693333pt;}
.yfb{bottom:781.093333pt;}
.y33{bottom:785.733333pt;}
.y92{bottom:786.133333pt;}
.yb8{bottom:786.373333pt;}
.y13a{bottom:787.413333pt;}
.y157{bottom:794.613333pt;}
.y176{bottom:794.773333pt;}
.y9{bottom:795.333333pt;}
.y55{bottom:796.453333pt;}
.y32{bottom:805.493333pt;}
.y91{bottom:806.053333pt;}
.yb7{bottom:806.373333pt;}
.y139{bottom:807.093333pt;}
.yda{bottom:809.573333pt;}
.y8{bottom:815.253333pt;}
.y54{bottom:816.133333pt;}
.yfa{bottom:817.893333pt;}
.y156{bottom:825.013333pt;}
.y175{bottom:825.173333pt;}
.y90{bottom:825.893333pt;}
.y138{bottom:826.773333pt;}
.yd9{bottom:829.573333pt;}
.y7{bottom:835.093333pt;}
.y31{bottom:835.813333pt;}
.yf9{bottom:838.533333pt;}
.yb5{bottom:843.173333pt;}
.y155{bottom:844.693333pt;}
.y174{bottom:844.853333pt;}
.y8f{bottom:845.733333pt;}
.y137{bottom:846.533333pt;}
.yd8{bottom:849.573333pt;}
.y6{bottom:854.933333pt;}
.y30{bottom:855.573333pt;}
.yf8{bottom:864.133333pt;}
.y154{bottom:864.453333pt;}
.y8e{bottom:865.573333pt;}
.y136{bottom:866.213333pt;}
.y5{bottom:874.773333pt;}
.y2f{bottom:875.253333pt;}
.yb2{bottom:879.973333pt;}
.y8d{bottom:885.440000pt;}
.y135{bottom:885.920000pt;}
.yd7{bottom:886.400000pt;}
.y3{bottom:894.640000pt;}
.y153{bottom:894.800000pt;}
.y2e{bottom:894.960000pt;}
.yb1{bottom:900.000000pt;}
.y8c{bottom:905.360000pt;}
.y77{bottom:905.600000pt;}
.y4{bottom:914.480000pt;}
.yaf{bottom:920.000000pt;}
.yd6{bottom:923.200000pt;}
.y2{bottom:925.200000pt;}
.y2d{bottom:925.360000pt;}
.yae{bottom:940.000000pt;}
.y1{bottom:945.040000pt;}
.h4{height:20.000000pt;}
.h7{height:20.026667pt;}
.h5{height:36.800000pt;}
.h6{height:36.826667pt;}
.h1{height:45.156250pt;}
.h3{height:52.750000pt;}
.h8{height:55.200000pt;}
.h2{height:56.031250pt;}
.h0{height:1056.000000pt;}
.wb{width:48.000000pt;}
.wd{width:53.946667pt;}
.w7{width:57.386667pt;}
.w9{width:57.466667pt;}
.w3{width:60.800000pt;}
.w5{width:60.906667pt;}
.w8{width:228.240000pt;}
.w4{width:244.506667pt;}
.wa{width:252.026667pt;}
.w2{width:257.866667pt;}
.wc{width:270.106667pt;}
.w6{width:280.986667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x5{left:95.999988pt;}
.x1{left:97.359988pt;}
.x8{left:119.999988pt;}
.x9{left:144.026655pt;}
.x3{left:190.346655pt;}
.x2{left:257.306655pt;}
.x7{left:345.706655pt;}
.x12{left:348.026667pt;}
.xc{left:353.866667pt;}
.x6{left:364.586655pt;}
.x16{left:369.786655pt;}
.x17{left:370.826655pt;}
.x15{left:372.026655pt;}
.xf{left:376.986667pt;}
.x4{left:378.266655pt;}
.xa{left:383.146655pt;}
.x13{left:396.026667pt;}
.xd{left:414.666667pt;}
.x10{left:434.373333pt;}
.xe{left:659.173333pt;}
.x11{left:662.613333pt;}
.x14{left:666.133333pt;}
}




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