
    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_3064455b9b1f701c0f5e561d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_8e4df6b72ddd8ec18e57574f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_996f48335f6cb0c6abdfa1d8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_cfdc5a87ab6a0c496af0aee0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_2c51307af7cd3099bb6a0938.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_67d772f56bef8232617b213d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_9b20fbd14085c1bc3c84087f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4d807b98a09150071b5e773c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7c0dadd303fe7de61b315471.woff')format("woff");}.ffa{font-family:ffa;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_568f55cd7214b62816b84f5c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.946777;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:20.880000px;}
.ls16{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.126000px;}
.ls1c{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.004320px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206640px;}
.ls15{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.259920px;}
.ls23{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.306720px;}
.ls5{letter-spacing:0.360000px;}
.lsb{letter-spacing:1.332000px;}
.ls9{letter-spacing:1.386000px;}
.ls4{letter-spacing:1.589760px;}
.ls2{letter-spacing:1.590000px;}
.ls24{letter-spacing:1.620000px;}
.ls1{letter-spacing:1.699920px;}
.lsa{letter-spacing:2.052000px;}
.ls3{letter-spacing:2.100000px;}
.lsc{letter-spacing:2.106000px;}
.ls0{letter-spacing:2.106720px;}
.ls25{letter-spacing:2.340000px;}
.ls1a{letter-spacing:3.780000px;}
.ls1b{letter-spacing:3.900000px;}
.ls26{letter-spacing:40.986720px;}
.ls18{letter-spacing:41.706720px;}
.ls1e{letter-spacing:46.026720px;}
.ls21{letter-spacing:56.826720px;}
.ls20{letter-spacing:64.026720px;}
.ls14{letter-spacing:65.610720px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.ws6{word-spacing:-37.440000px;}
.ws0{word-spacing:-18.665280px;}
.ws1{word-spacing:-17.945280px;}
.ws7{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.605760px;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.505760px;}
.ws9{word-spacing:-12.060000px;}
.wsb{word-spacing:-9.715680px;}
.wsc{word-spacing:0.000000px;}
._7{margin-left:-6.091920px;}
._6{margin-left:-4.893840px;}
._3{margin-left:-3.231600px;}
._2{margin-left:-2.152800px;}
._9{margin-left:-1.140480px;}
._0{width:1.374480px;}
._1{width:3.016800px;}
._8{width:4.333440px;}
._c{width:6.264000px;}
._a{width:7.452000px;}
._b{width:8.695680px;}
._e{width:9.860400px;}
._d{width:11.017440px;}
._f{width:12.669120px;}
._10{width:13.690080px;}
._11{width:17.151120px;}
._13{width:18.286560px;}
._12{width:19.422000px;}
._17{width:34.182720px;}
._16{width:41.533200px;}
._5{width:43.465440px;}
._15{width:108.807840px;}
._14{width:109.843920px;}
._4{width:201.060000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:3.240000px;}
.y83{bottom:20.520000px;}
.y7{bottom:25.560000px;}
.y6{bottom:45.900000px;}
.ydd{bottom:91.116000px;}
.y7d{bottom:92.916000px;}
.y40{bottom:102.816000px;}
.yaa{bottom:105.516000px;}
.ydc{bottom:108.396000px;}
.y7b{bottom:110.016000px;}
.y3f{bottom:120.096000px;}
.ya9{bottom:122.796000px;}
.ydb{bottom:125.676000px;}
.y7a{bottom:127.296000px;}
.y10b{bottom:129.816000px;}
.y3e{bottom:137.376000px;}
.ya8{bottom:140.076000px;}
.yda{bottom:142.776000px;}
.y10a{bottom:144.396000px;}
.y79{bottom:144.576000px;}
.y3d{bottom:154.650000px;}
.ya7{bottom:157.350000px;}
.yd9{bottom:160.050000px;}
.y109{bottom:161.670000px;}
.y78{bottom:161.850000px;}
.y3c{bottom:171.030000px;}
.ya6{bottom:174.630000px;}
.yd8{bottom:177.330000px;}
.y108{bottom:178.230000px;}
.y77{bottom:179.130000px;}
.y3b{bottom:183.990000px;}
.ya5{bottom:191.910000px;}
.y107{bottom:192.630000px;}
.yd7{bottom:194.610000px;}
.y76{bottom:196.410000px;}
.y3a{bottom:201.450000px;}
.ya4{bottom:209.010000px;}
.y106{bottom:209.910000px;}
.yd6{bottom:211.890000px;}
.y75{bottom:213.510000px;}
.y39{bottom:218.550000px;}
.ya3{bottom:226.290000px;}
.y105{bottom:226.470000px;}
.yd5{bottom:229.170000px;}
.y74{bottom:230.790000px;}
.y38{bottom:235.830000px;}
.y104{bottom:241.050000px;}
.ya2{bottom:243.570000px;}
.yd4{bottom:246.270000px;}
.y73{bottom:248.070000px;}
.y37{bottom:253.110000px;}
.y103{bottom:258.150000px;}
.ya1{bottom:260.850000px;}
.yd3{bottom:263.550000px;}
.y72{bottom:265.350000px;}
.y36{bottom:270.390000px;}
.y102{bottom:275.430000px;}
.ya0{bottom:278.130000px;}
.yd2{bottom:280.830000px;}
.y71{bottom:282.630000px;}
.y35{bottom:287.670000px;}
.y101{bottom:292.710000px;}
.y9f{bottom:295.230000px;}
.yd1{bottom:298.110000px;}
.y70{bottom:299.730000px;}
.y7c{bottom:299.910000px;}
.y34{bottom:304.950000px;}
.y100{bottom:309.990000px;}
.y9e{bottom:312.510000px;}
.yd0{bottom:315.390000px;}
.y6f{bottom:317.010000px;}
.y33{bottom:322.050000px;}
.yff{bottom:327.270000px;}
.y9d{bottom:329.790000px;}
.ycf{bottom:332.670000px;}
.y6e{bottom:334.290000px;}
.y32{bottom:339.375000px;}
.yfe{bottom:344.415000px;}
.y9c{bottom:347.115000px;}
.yce{bottom:349.815000px;}
.y6d{bottom:351.615000px;}
.y31{bottom:356.655000px;}
.yfd{bottom:361.695000px;}
.y9b{bottom:364.395000px;}
.ycd{bottom:367.095000px;}
.y6c{bottom:368.895000px;}
.y30{bottom:373.935000px;}
.yfc{bottom:378.975000px;}
.y9a{bottom:381.675000px;}
.ycc{bottom:384.375000px;}
.y6b{bottom:386.175000px;}
.y2f{bottom:391.215000px;}
.yfb{bottom:396.255000px;}
.y99{bottom:398.775000px;}
.ycb{bottom:401.655000px;}
.y6a{bottom:403.275000px;}
.y2e{bottom:408.495000px;}
.yfa{bottom:413.535000px;}
.y98{bottom:416.055000px;}
.yca{bottom:418.935000px;}
.y69{bottom:420.555000px;}
.y2d{bottom:425.595000px;}
.yf9{bottom:430.815000px;}
.y97{bottom:433.335000px;}
.yc9{bottom:436.035000px;}
.y68{bottom:437.835000px;}
.y2c{bottom:442.875000px;}
.yf8{bottom:447.915000px;}
.y96{bottom:450.795000px;}
.yc8{bottom:453.315000px;}
.y67{bottom:455.115000px;}
.y2b{bottom:460.155000px;}
.yf7{bottom:465.195000px;}
.y95{bottom:467.895000px;}
.yc7{bottom:470.595000px;}
.y66{bottom:472.395000px;}
.y2a{bottom:477.435000px;}
.yf6{bottom:482.835000px;}
.y94{bottom:485.175000px;}
.yc6{bottom:487.875000px;}
.y65{bottom:489.675000px;}
.y29{bottom:494.715000px;}
.yf5{bottom:501.375000px;}
.y93{bottom:502.275000px;}
.yc5{bottom:505.155000px;}
.y64{bottom:506.775000px;}
.y28{bottom:511.995000px;}
.y129{bottom:517.575000px;}
.yf4{bottom:518.655000px;}
.y92{bottom:519.555000px;}
.yc4{bottom:522.435000px;}
.y63{bottom:524.055000px;}
.y27{bottom:529.095000px;}
.yf3{bottom:535.935000px;}
.y128{bottom:536.115000px;}
.y91{bottom:536.835000px;}
.yc3{bottom:539.535000px;}
.y62{bottom:541.335000px;}
.y26{bottom:546.375000px;}
.yf2{bottom:553.215000px;}
.y90{bottom:554.115000px;}
.y127{bottom:554.835000px;}
.yc2{bottom:556.815000px;}
.y61{bottom:558.615000px;}
.y25{bottom:563.655000px;}
.yf1{bottom:570.495000px;}
.y8f{bottom:571.395000px;}
.y126{bottom:573.375000px;}
.yc1{bottom:574.095000px;}
.y60{bottom:575.895000px;}
.y24{bottom:580.935000px;}
.yf0{bottom:587.775000px;}
.y8e{bottom:588.675000px;}
.yc0{bottom:591.375000px;}
.y125{bottom:592.095000px;}
.y5f{bottom:593.175000px;}
.y23{bottom:598.215000px;}
.yef{bottom:604.905000px;}
.y8d{bottom:605.805000px;}
.ybf{bottom:608.685000px;}
.y5e{bottom:610.305000px;}
.y124{bottom:610.665000px;}
.y22{bottom:615.525000px;}
.yee{bottom:622.185000px;}
.y8c{bottom:623.085000px;}
.ybe{bottom:625.965000px;}
.y5d{bottom:627.585000px;}
.y123{bottom:629.385000px;}
.y21{bottom:632.625000px;}
.yed{bottom:639.465000px;}
.y8b{bottom:640.365000px;}
.ybd{bottom:643.065000px;}
.y5c{bottom:644.865000px;}
.y122{bottom:647.925000px;}
.y20{bottom:649.905000px;}
.yec{bottom:656.745000px;}
.y8a{bottom:657.645000px;}
.ybc{bottom:660.345000px;}
.y5b{bottom:662.145000px;}
.y121{bottom:666.465000px;}
.y1f{bottom:667.185000px;}
.yeb{bottom:674.025000px;}
.y89{bottom:674.925000px;}
.ybb{bottom:677.625000px;}
.y5a{bottom:679.425000px;}
.y1e{bottom:684.285000px;}
.y120{bottom:685.185000px;}
.yea{bottom:691.305000px;}
.y88{bottom:692.025000px;}
.yba{bottom:694.905000px;}
.y59{bottom:696.525000px;}
.y1d{bottom:701.565000px;}
.y11f{bottom:703.725000px;}
.y87{bottom:709.305000px;}
.ye9{bottom:709.485000px;}
.yb9{bottom:712.185000px;}
.y58{bottom:713.805000px;}
.y1c{bottom:718.845000px;}
.y11e{bottom:722.445000px;}
.y86{bottom:726.585000px;}
.ye8{bottom:726.765000px;}
.yb8{bottom:729.465000px;}
.y57{bottom:731.085000px;}
.y1b{bottom:735.765000px;}
.y11d{bottom:740.985000px;}
.y85{bottom:743.865000px;}
.ye7{bottom:744.045000px;}
.yb7{bottom:746.565000px;}
.y56{bottom:748.365000px;}
.y1a{bottom:749.985000px;}
.y84{bottom:758.625000px;}
.y11c{bottom:759.525000px;}
.y19{bottom:759.885000px;}
.ye6{bottom:762.405000px;}
.yb6{bottom:763.845000px;}
.y55{bottom:765.645000px;}
.y18{bottom:775.365000px;}
.y11b{bottom:778.245000px;}
.ye5{bottom:779.685000px;}
.yb5{bottom:781.125000px;}
.y54{bottom:782.925000px;}
.y17{bottom:790.845000px;}
.y82{bottom:793.905000px;}
.ye4{bottom:796.785000px;}
.yb4{bottom:798.405000px;}
.y53{bottom:800.025000px;}
.y16{bottom:806.325000px;}
.ye3{bottom:815.145000px;}
.y11a{bottom:815.505000px;}
.yb3{bottom:815.685000px;}
.y52{bottom:817.305000px;}
.y15{bottom:821.985000px;}
.y81{bottom:829.185000px;}
.ye2{bottom:832.425000px;}
.yb2{bottom:832.785000px;}
.y119{bottom:834.045000px;}
.y51{bottom:834.585000px;}
.y14{bottom:837.465000px;}
.y80{bottom:847.185000px;}
.ye1{bottom:849.705000px;}
.yb1{bottom:850.065000px;}
.y50{bottom:851.865000px;}
.y118{bottom:852.585000px;}
.y13{bottom:852.945000px;}
.y7e{bottom:865.185000px;}
.yb0{bottom:867.345000px;}
.ye0{bottom:868.065000px;}
.y12{bottom:868.425000px;}
.y4f{bottom:869.145000px;}
.y117{bottom:871.350000px;}
.yaf{bottom:884.670000px;}
.y11{bottom:884.850000px;}
.ydf{bottom:885.390000px;}
.y4e{bottom:886.470000px;}
.y116{bottom:889.890000px;}
.yae{bottom:901.950000px;}
.y10{bottom:902.310000px;}
.yde{bottom:902.490000px;}
.y4d{bottom:903.570000px;}
.y115{bottom:908.610000px;}
.yf{bottom:914.730000px;}
.yad{bottom:919.410000px;}
.y4c{bottom:920.850000px;}
.y114{bottom:927.150000px;}
.ye{bottom:932.910000px;}
.yac{bottom:936.330000px;}
.y4b{bottom:938.130000px;}
.y113{bottom:945.870000px;}
.yd{bottom:950.910000px;}
.yab{bottom:954.150000px;}
.y4a{bottom:955.410000px;}
.y112{bottom:964.410000px;}
.y49{bottom:972.690000px;}
.yc{bottom:973.950000px;}
.y111{bottom:982.950000px;}
.yb{bottom:987.990000px;}
.y48{bottom:989.790000px;}
.y110{bottom:1001.670000px;}
.y47{bottom:1007.070000px;}
.ya{bottom:1016.070000px;}
.y10f{bottom:1020.210000px;}
.y46{bottom:1024.350000px;}
.y10e{bottom:1038.930000px;}
.y45{bottom:1041.630000px;}
.y9{bottom:1049.010000px;}
.y10d{bottom:1057.470000px;}
.y44{bottom:1058.910000px;}
.y10c{bottom:1076.010000px;}
.y43{bottom:1076.190000px;}
.y8{bottom:1090.950000px;}
.y42{bottom:1093.290000px;}
.y41{bottom:1110.570000px;}
.y5{bottom:1140.120000px;}
.y4{bottom:1160.280000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1196.460000px;}
.y1{bottom:1215.360000px;}
.h12{height:17.100000px;}
.h11{height:17.136000px;}
.hd{height:27.109688px;}
.ha{height:32.273438px;}
.h13{height:34.380000px;}
.h14{height:34.560000px;}
.hc{height:34.855313px;}
.he{height:42.164648px;}
.h15{height:43.246406px;}
.h3{height:43.681992px;}
.h8{height:48.410156px;}
.h5{height:48.774375px;}
.hf{height:53.573906px;}
.h10{height:55.735313px;}
.hb{height:56.801250px;}
.h2{height:59.383125px;}
.h4{height:63.070312px;}
.h6{height:65.884219px;}
.h9{height:96.820312px;}
.h7{height:105.665625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:59.616000px;}
.w4{width:161.310000px;}
.w5{width:532.695000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x13{left:10.800000px;}
.x17{left:25.956000px;}
.x6{left:63.899987px;}
.x12{left:74.340000px;}
.x7{left:75.419987px;}
.x19{left:78.479987px;}
.xb{left:82.439987px;}
.xe{left:85.139987px;}
.xd{left:87.839987px;}
.x10{left:90.935987px;}
.xf{left:95.795987px;}
.x18{left:117.935987px;}
.x14{left:134.676000px;}
.xc{left:164.729987px;}
.x1{left:183.449987px;}
.x2{left:223.409987px;}
.x16{left:296.715000px;}
.x11{left:313.274987px;}
.x3{left:354.314987px;}
.x8{left:357.914987px;}
.x4{left:364.754987px;}
.xa{left:375.734987px;}
.x9{left:452.054987px;}
.x5{left:494.744987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls16{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.003840pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183680pt;}
.ls15{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.231040pt;}
.ls23{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.272640pt;}
.ls5{letter-spacing:0.320000pt;}
.lsb{letter-spacing:1.184000pt;}
.ls9{letter-spacing:1.232000pt;}
.ls4{letter-spacing:1.413120pt;}
.ls2{letter-spacing:1.413333pt;}
.ls24{letter-spacing:1.440000pt;}
.ls1{letter-spacing:1.511040pt;}
.lsa{letter-spacing:1.824000pt;}
.ls3{letter-spacing:1.866667pt;}
.lsc{letter-spacing:1.872000pt;}
.ls0{letter-spacing:1.872640pt;}
.ls25{letter-spacing:2.080000pt;}
.ls1a{letter-spacing:3.360000pt;}
.ls1b{letter-spacing:3.466667pt;}
.ls26{letter-spacing:36.432640pt;}
.ls18{letter-spacing:37.072640pt;}
.ls1e{letter-spacing:40.912640pt;}
.ls21{letter-spacing:50.512640pt;}
.ls20{letter-spacing:56.912640pt;}
.ls14{letter-spacing:58.320640pt;}
.ws11{word-spacing:-53.120000pt;}
.ws6{word-spacing:-33.280000pt;}
.ws0{word-spacing:-16.591360pt;}
.ws1{word-spacing:-15.951360pt;}
.ws7{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.871787pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.005120pt;}
.ws9{word-spacing:-10.720000pt;}
.wsb{word-spacing:-8.636160pt;}
.wsc{word-spacing:0.000000pt;}
._7{margin-left:-5.415040pt;}
._6{margin-left:-4.350080pt;}
._3{margin-left:-2.872533pt;}
._2{margin-left:-1.913600pt;}
._9{margin-left:-1.013760pt;}
._0{width:1.221760pt;}
._1{width:2.681600pt;}
._8{width:3.851947pt;}
._c{width:5.568000pt;}
._a{width:6.624000pt;}
._b{width:7.729493pt;}
._e{width:8.764800pt;}
._d{width:9.793280pt;}
._f{width:11.261440pt;}
._10{width:12.168960pt;}
._11{width:15.245440pt;}
._13{width:16.254720pt;}
._12{width:17.264000pt;}
._17{width:30.384640pt;}
._16{width:36.918400pt;}
._5{width:38.635947pt;}
._15{width:96.718080pt;}
._14{width:97.639040pt;}
._4{width:178.720000pt;}
.fs9{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:2.880000pt;}
.y83{bottom:18.240000pt;}
.y7{bottom:22.720000pt;}
.y6{bottom:40.800000pt;}
.ydd{bottom:80.992000pt;}
.y7d{bottom:82.592000pt;}
.y40{bottom:91.392000pt;}
.yaa{bottom:93.792000pt;}
.ydc{bottom:96.352000pt;}
.y7b{bottom:97.792000pt;}
.y3f{bottom:106.752000pt;}
.ya9{bottom:109.152000pt;}
.ydb{bottom:111.712000pt;}
.y7a{bottom:113.152000pt;}
.y10b{bottom:115.392000pt;}
.y3e{bottom:122.112000pt;}
.ya8{bottom:124.512000pt;}
.yda{bottom:126.912000pt;}
.y10a{bottom:128.352000pt;}
.y79{bottom:128.512000pt;}
.y3d{bottom:137.466667pt;}
.ya7{bottom:139.866667pt;}
.yd9{bottom:142.266667pt;}
.y109{bottom:143.706667pt;}
.y78{bottom:143.866667pt;}
.y3c{bottom:152.026667pt;}
.ya6{bottom:155.226667pt;}
.yd8{bottom:157.626667pt;}
.y108{bottom:158.426667pt;}
.y77{bottom:159.226667pt;}
.y3b{bottom:163.546667pt;}
.ya5{bottom:170.586667pt;}
.y107{bottom:171.226667pt;}
.yd7{bottom:172.986667pt;}
.y76{bottom:174.586667pt;}
.y3a{bottom:179.066667pt;}
.ya4{bottom:185.786667pt;}
.y106{bottom:186.586667pt;}
.yd6{bottom:188.346667pt;}
.y75{bottom:189.786667pt;}
.y39{bottom:194.266667pt;}
.ya3{bottom:201.146667pt;}
.y105{bottom:201.306667pt;}
.yd5{bottom:203.706667pt;}
.y74{bottom:205.146667pt;}
.y38{bottom:209.626667pt;}
.y104{bottom:214.266667pt;}
.ya2{bottom:216.506667pt;}
.yd4{bottom:218.906667pt;}
.y73{bottom:220.506667pt;}
.y37{bottom:224.986667pt;}
.y103{bottom:229.466667pt;}
.ya1{bottom:231.866667pt;}
.yd3{bottom:234.266667pt;}
.y72{bottom:235.866667pt;}
.y36{bottom:240.346667pt;}
.y102{bottom:244.826667pt;}
.ya0{bottom:247.226667pt;}
.yd2{bottom:249.626667pt;}
.y71{bottom:251.226667pt;}
.y35{bottom:255.706667pt;}
.y101{bottom:260.186667pt;}
.y9f{bottom:262.426667pt;}
.yd1{bottom:264.986667pt;}
.y70{bottom:266.426667pt;}
.y7c{bottom:266.586667pt;}
.y34{bottom:271.066667pt;}
.y100{bottom:275.546667pt;}
.y9e{bottom:277.786667pt;}
.yd0{bottom:280.346667pt;}
.y6f{bottom:281.786667pt;}
.y33{bottom:286.266667pt;}
.yff{bottom:290.906667pt;}
.y9d{bottom:293.146667pt;}
.ycf{bottom:295.706667pt;}
.y6e{bottom:297.146667pt;}
.y32{bottom:301.666667pt;}
.yfe{bottom:306.146667pt;}
.y9c{bottom:308.546667pt;}
.yce{bottom:310.946667pt;}
.y6d{bottom:312.546667pt;}
.y31{bottom:317.026667pt;}
.yfd{bottom:321.506667pt;}
.y9b{bottom:323.906667pt;}
.ycd{bottom:326.306667pt;}
.y6c{bottom:327.906667pt;}
.y30{bottom:332.386667pt;}
.yfc{bottom:336.866667pt;}
.y9a{bottom:339.266667pt;}
.ycc{bottom:341.666667pt;}
.y6b{bottom:343.266667pt;}
.y2f{bottom:347.746667pt;}
.yfb{bottom:352.226667pt;}
.y99{bottom:354.466667pt;}
.ycb{bottom:357.026667pt;}
.y6a{bottom:358.466667pt;}
.y2e{bottom:363.106667pt;}
.yfa{bottom:367.586667pt;}
.y98{bottom:369.826667pt;}
.yca{bottom:372.386667pt;}
.y69{bottom:373.826667pt;}
.y2d{bottom:378.306667pt;}
.yf9{bottom:382.946667pt;}
.y97{bottom:385.186667pt;}
.yc9{bottom:387.586667pt;}
.y68{bottom:389.186667pt;}
.y2c{bottom:393.666667pt;}
.yf8{bottom:398.146667pt;}
.y96{bottom:400.706667pt;}
.yc8{bottom:402.946667pt;}
.y67{bottom:404.546667pt;}
.y2b{bottom:409.026667pt;}
.yf7{bottom:413.506667pt;}
.y95{bottom:415.906667pt;}
.yc7{bottom:418.306667pt;}
.y66{bottom:419.906667pt;}
.y2a{bottom:424.386667pt;}
.yf6{bottom:429.186667pt;}
.y94{bottom:431.266667pt;}
.yc6{bottom:433.666667pt;}
.y65{bottom:435.266667pt;}
.y29{bottom:439.746667pt;}
.yf5{bottom:445.666667pt;}
.y93{bottom:446.466667pt;}
.yc5{bottom:449.026667pt;}
.y64{bottom:450.466667pt;}
.y28{bottom:455.106667pt;}
.y129{bottom:460.066667pt;}
.yf4{bottom:461.026667pt;}
.y92{bottom:461.826667pt;}
.yc4{bottom:464.386667pt;}
.y63{bottom:465.826667pt;}
.y27{bottom:470.306667pt;}
.yf3{bottom:476.386667pt;}
.y128{bottom:476.546667pt;}
.y91{bottom:477.186667pt;}
.yc3{bottom:479.586667pt;}
.y62{bottom:481.186667pt;}
.y26{bottom:485.666667pt;}
.yf2{bottom:491.746667pt;}
.y90{bottom:492.546667pt;}
.y127{bottom:493.186667pt;}
.yc2{bottom:494.946667pt;}
.y61{bottom:496.546667pt;}
.y25{bottom:501.026667pt;}
.yf1{bottom:507.106667pt;}
.y8f{bottom:507.906667pt;}
.y126{bottom:509.666667pt;}
.yc1{bottom:510.306667pt;}
.y60{bottom:511.906667pt;}
.y24{bottom:516.386667pt;}
.yf0{bottom:522.466667pt;}
.y8e{bottom:523.266667pt;}
.yc0{bottom:525.666667pt;}
.y125{bottom:526.306667pt;}
.y5f{bottom:527.266667pt;}
.y23{bottom:531.746667pt;}
.yef{bottom:537.693333pt;}
.y8d{bottom:538.493333pt;}
.ybf{bottom:541.053333pt;}
.y5e{bottom:542.493333pt;}
.y124{bottom:542.813333pt;}
.y22{bottom:547.133333pt;}
.yee{bottom:553.053333pt;}
.y8c{bottom:553.853333pt;}
.ybe{bottom:556.413333pt;}
.y5d{bottom:557.853333pt;}
.y123{bottom:559.453333pt;}
.y21{bottom:562.333333pt;}
.yed{bottom:568.413333pt;}
.y8b{bottom:569.213333pt;}
.ybd{bottom:571.613333pt;}
.y5c{bottom:573.213333pt;}
.y122{bottom:575.933333pt;}
.y20{bottom:577.693333pt;}
.yec{bottom:583.773333pt;}
.y8a{bottom:584.573333pt;}
.ybc{bottom:586.973333pt;}
.y5b{bottom:588.573333pt;}
.y121{bottom:592.413333pt;}
.y1f{bottom:593.053333pt;}
.yeb{bottom:599.133333pt;}
.y89{bottom:599.933333pt;}
.ybb{bottom:602.333333pt;}
.y5a{bottom:603.933333pt;}
.y1e{bottom:608.253333pt;}
.y120{bottom:609.053333pt;}
.yea{bottom:614.493333pt;}
.y88{bottom:615.133333pt;}
.yba{bottom:617.693333pt;}
.y59{bottom:619.133333pt;}
.y1d{bottom:623.613333pt;}
.y11f{bottom:625.533333pt;}
.y87{bottom:630.493333pt;}
.ye9{bottom:630.653333pt;}
.yb9{bottom:633.053333pt;}
.y58{bottom:634.493333pt;}
.y1c{bottom:638.973333pt;}
.y11e{bottom:642.173333pt;}
.y86{bottom:645.853333pt;}
.ye8{bottom:646.013333pt;}
.yb8{bottom:648.413333pt;}
.y57{bottom:649.853333pt;}
.y1b{bottom:654.013333pt;}
.y11d{bottom:658.653333pt;}
.y85{bottom:661.213333pt;}
.ye7{bottom:661.373333pt;}
.yb7{bottom:663.613333pt;}
.y56{bottom:665.213333pt;}
.y1a{bottom:666.653333pt;}
.y84{bottom:674.333333pt;}
.y11c{bottom:675.133333pt;}
.y19{bottom:675.453333pt;}
.ye6{bottom:677.693333pt;}
.yb6{bottom:678.973333pt;}
.y55{bottom:680.573333pt;}
.y18{bottom:689.213333pt;}
.y11b{bottom:691.773333pt;}
.ye5{bottom:693.053333pt;}
.yb5{bottom:694.333333pt;}
.y54{bottom:695.933333pt;}
.y17{bottom:702.973333pt;}
.y82{bottom:705.693333pt;}
.ye4{bottom:708.253333pt;}
.yb4{bottom:709.693333pt;}
.y53{bottom:711.133333pt;}
.y16{bottom:716.733333pt;}
.ye3{bottom:724.573333pt;}
.y11a{bottom:724.893333pt;}
.yb3{bottom:725.053333pt;}
.y52{bottom:726.493333pt;}
.y15{bottom:730.653333pt;}
.y81{bottom:737.053333pt;}
.ye2{bottom:739.933333pt;}
.yb2{bottom:740.253333pt;}
.y119{bottom:741.373333pt;}
.y51{bottom:741.853333pt;}
.y14{bottom:744.413333pt;}
.y80{bottom:753.053333pt;}
.ye1{bottom:755.293333pt;}
.yb1{bottom:755.613333pt;}
.y50{bottom:757.213333pt;}
.y118{bottom:757.853333pt;}
.y13{bottom:758.173333pt;}
.y7e{bottom:769.053333pt;}
.yb0{bottom:770.973333pt;}
.ye0{bottom:771.613333pt;}
.y12{bottom:771.933333pt;}
.y4f{bottom:772.573333pt;}
.y117{bottom:774.533333pt;}
.yaf{bottom:786.373333pt;}
.y11{bottom:786.533333pt;}
.ydf{bottom:787.013333pt;}
.y4e{bottom:787.973333pt;}
.y116{bottom:791.013333pt;}
.yae{bottom:801.733333pt;}
.y10{bottom:802.053333pt;}
.yde{bottom:802.213333pt;}
.y4d{bottom:803.173333pt;}
.y115{bottom:807.653333pt;}
.yf{bottom:813.093333pt;}
.yad{bottom:817.253333pt;}
.y4c{bottom:818.533333pt;}
.y114{bottom:824.133333pt;}
.ye{bottom:829.253333pt;}
.yac{bottom:832.293333pt;}
.y4b{bottom:833.893333pt;}
.y113{bottom:840.773333pt;}
.yd{bottom:845.253333pt;}
.yab{bottom:848.133333pt;}
.y4a{bottom:849.253333pt;}
.y112{bottom:857.253333pt;}
.y49{bottom:864.613333pt;}
.yc{bottom:865.733333pt;}
.y111{bottom:873.733333pt;}
.yb{bottom:878.213333pt;}
.y48{bottom:879.813333pt;}
.y110{bottom:890.373333pt;}
.y47{bottom:895.173333pt;}
.ya{bottom:903.173333pt;}
.y10f{bottom:906.853333pt;}
.y46{bottom:910.533333pt;}
.y10e{bottom:923.493333pt;}
.y45{bottom:925.893333pt;}
.y9{bottom:932.453333pt;}
.y10d{bottom:939.973333pt;}
.y44{bottom:941.253333pt;}
.y10c{bottom:956.453333pt;}
.y43{bottom:956.613333pt;}
.y8{bottom:969.733333pt;}
.y42{bottom:971.813333pt;}
.y41{bottom:987.173333pt;}
.y5{bottom:1013.440000pt;}
.y4{bottom:1031.360000pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1063.520000pt;}
.y1{bottom:1080.320000pt;}
.h12{height:15.200000pt;}
.h11{height:15.232000pt;}
.hd{height:24.097500pt;}
.ha{height:28.687500pt;}
.h13{height:30.560000pt;}
.h14{height:30.720000pt;}
.hc{height:30.982500pt;}
.he{height:37.479688pt;}
.h15{height:38.441250pt;}
.h3{height:38.828437pt;}
.h8{height:43.031250pt;}
.h5{height:43.355000pt;}
.hf{height:47.621250pt;}
.h10{height:49.542500pt;}
.hb{height:50.490000pt;}
.h2{height:52.785000pt;}
.h4{height:56.062500pt;}
.h6{height:58.563750pt;}
.h9{height:86.062500pt;}
.h7{height:93.925000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.992000pt;}
.w4{width:143.386667pt;}
.w5{width:473.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x13{left:9.600000pt;}
.x17{left:23.072000pt;}
.x6{left:56.799988pt;}
.x12{left:66.080000pt;}
.x7{left:67.039988pt;}
.x19{left:69.759988pt;}
.xb{left:73.279988pt;}
.xe{left:75.679988pt;}
.xd{left:78.079988pt;}
.x10{left:80.831988pt;}
.xf{left:85.151988pt;}
.x18{left:104.831988pt;}
.x14{left:119.712000pt;}
.xc{left:146.426655pt;}
.x1{left:163.066655pt;}
.x2{left:198.586655pt;}
.x16{left:263.746667pt;}
.x11{left:278.466655pt;}
.x3{left:314.946655pt;}
.x8{left:318.146655pt;}
.x4{left:324.226655pt;}
.xa{left:333.986655pt;}
.x9{left:401.826655pt;}
.x5{left:439.773322pt;}
}




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