
    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_9e74257052ef3770618fa2fb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2e3ebc9e43b967f67d1a30d8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_5e56983957013b992a50723d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3a6bf63d492aa56e814fbd2b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fd079155481eb5a1b5ee2eab.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_acf1e4b400847051e6a50a50.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_aa997f551391a20f8706cde1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986328;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_defca4745d71b77212ec84c0.woff')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.106800px;}
.lse{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.900000px;}
.ls13{letter-spacing:3.060000px;}
.ls18{letter-spacing:3.774240px;}
.lsd{letter-spacing:6.660000px;}
.ls16{letter-spacing:16.506720px;}
.ls8{letter-spacing:40.986720px;}
.ls7{letter-spacing:46.026720px;}
.ls12{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-59.760000px;}
.ws2{word-spacing:-23.921280px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.075600px;}
.wsd{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.ws4{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._17{margin-left:-3.513360px;}
._10{margin-left:-2.431920px;}
._0{margin-left:-1.080000px;}
._f{width:1.053360px;}
._1{width:2.220000px;}
._12{width:3.397440px;}
._11{width:4.431120px;}
._14{width:6.232560px;}
._13{width:7.870800px;}
._15{width:9.225360px;}
._6{width:10.800000px;}
._16{width:11.910960px;}
._1d{width:13.664400px;}
._18{width:16.015680px;}
._19{width:17.069040px;}
._1b{width:18.809280px;}
._1a{width:19.987440px;}
._1f{width:28.035120px;}
._1c{width:29.043360px;}
._1e{width:30.259200px;}
._2f{width:31.374000px;}
._2e{width:37.986480px;}
._2d{width:39.163680px;}
._2b{width:44.721360px;}
._2c{width:47.040000px;}
._28{width:57.211200px;}
._29{width:58.709520px;}
._2a{width:59.809440px;}
._24{width:71.254560px;}
._23{width:72.714240px;}
._34{width:75.010800px;}
._7{width:76.284960px;}
._35{width:78.281280px;}
._30{width:87.688800px;}
._31{width:88.708080px;}
._21{width:94.299840px;}
._20{width:95.400720px;}
._22{width:96.797280px;}
._26{width:98.338800px;}
._27{width:99.767280px;}
._36{width:102.270240px;}
._37{width:105.051840px;}
._8{width:154.080000px;}
._25{width:158.325120px;}
._32{width:159.998400px;}
._33{width:161.172720px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:6.300000px;}
.y61{bottom:7.560000px;}
.y115{bottom:8.820000px;}
.y113{bottom:9.540000px;}
.y116{bottom:9.570000px;}
.ycc{bottom:10.980000px;}
.ya5{bottom:11.160000px;}
.yaa{bottom:11.880000px;}
.ya3{bottom:11.925000px;}
.ya7{bottom:12.060000px;}
.y6{bottom:12.420000px;}
.ye8{bottom:12.600000px;}
.y111{bottom:12.780000px;}
.y3e{bottom:12.960000px;}
.y84{bottom:13.140000px;}
.y8{bottom:18.180000px;}
.y5d{bottom:18.540000px;}
.y5f{bottom:18.900000px;}
.y10f{bottom:22.680000px;}
.yca{bottom:25.560000px;}
.y110{bottom:32.580000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.y57{bottom:102.240000px;}
.y107{bottom:103.500000px;}
.y3b{bottom:110.340000px;}
.y12b{bottom:116.100000px;}
.y72{bottom:116.280000px;}
.y155{bottom:118.440000px;}
.y158{bottom:118.620000px;}
.yde{bottom:118.800000px;}
.y106{bottom:123.480000px;}
.y2{bottom:125.670000px;}
.y9d{bottom:126.000000px;}
.y3a{bottom:130.320000px;}
.y12a{bottom:135.900000px;}
.y71{bottom:136.080000px;}
.y157{bottom:137.340000px;}
.y154{bottom:138.240000px;}
.ydd{bottom:138.600000px;}
.y105{bottom:143.280000px;}
.y9c{bottom:145.800000px;}
.y39{bottom:150.120000px;}
.y129{bottom:155.730000px;}
.y156{bottom:155.910000px;}
.y70{bottom:157.170000px;}
.y153{bottom:158.250000px;}
.ydc{bottom:158.430000px;}
.y104{bottom:163.110000px;}
.y9b{bottom:166.710000px;}
.y38{bottom:169.950000px;}
.y128{bottom:175.710000px;}
.y6f{bottom:178.050000px;}
.ydb{bottom:178.230000px;}
.yc5{bottom:182.550000px;}
.y103{bottom:182.910000px;}
.y9a{bottom:186.510000px;}
.y37{bottom:189.750000px;}
.y127{bottom:195.510000px;}
.y6e{bottom:197.850000px;}
.yda{bottom:198.030000px;}
.yc4{bottom:202.350000px;}
.y102{bottom:202.710000px;}
.y99{bottom:206.490000px;}
.y36{bottom:209.550000px;}
.y126{bottom:215.310000px;}
.y152{bottom:217.650000px;}
.yd9{bottom:218.010000px;}
.yc3{bottom:222.150000px;}
.y101{bottom:222.690000px;}
.y98{bottom:226.290000px;}
.y6d{bottom:226.650000px;}
.y35{bottom:229.530000px;}
.y125{bottom:235.110000px;}
.y151{bottom:237.450000px;}
.yd8{bottom:237.810000px;}
.yc2{bottom:241.950000px;}
.y100{bottom:242.490000px;}
.y97{bottom:246.090000px;}
.y6c{bottom:246.450000px;}
.y34{bottom:249.330000px;}
.y124{bottom:254.910000px;}
.y150{bottom:257.430000px;}
.yd7{bottom:257.610000px;}
.yc1{bottom:261.750000px;}
.yff{bottom:262.290000px;}
.y96{bottom:265.890000px;}
.y6b{bottom:266.250000px;}
.y33{bottom:269.130000px;}
.y123{bottom:274.890000px;}
.y14f{bottom:277.230000px;}
.yd6{bottom:278.490000px;}
.yc0{bottom:281.730000px;}
.yfe{bottom:282.090000px;}
.y95{bottom:285.690000px;}
.y6a{bottom:286.230000px;}
.y32{bottom:288.930000px;}
.y122{bottom:294.690000px;}
.y14e{bottom:297.030000px;}
.yd5{bottom:299.370000px;}
.ybf{bottom:301.530000px;}
.y94{bottom:305.670000px;}
.y31{bottom:308.730000px;}
.yfd{bottom:310.890000px;}
.y121{bottom:314.490000px;}
.y69{bottom:315.030000px;}
.y14d{bottom:316.830000px;}
.yd4{bottom:320.430000px;}
.ybe{bottom:321.330000px;}
.y93{bottom:325.470000px;}
.y30{bottom:328.710000px;}
.yfc{bottom:330.870000px;}
.y120{bottom:334.290000px;}
.y68{bottom:334.830000px;}
.y14c{bottom:336.630000px;}
.yd3{bottom:340.230000px;}
.ybd{bottom:341.130000px;}
.y92{bottom:345.270000px;}
.y2f{bottom:348.510000px;}
.yfb{bottom:350.670000px;}
.y11f{bottom:354.090000px;}
.y67{bottom:354.630000px;}
.y14b{bottom:356.610000px;}
.yd2{bottom:360.030000px;}
.ybc{bottom:360.930000px;}
.y91{bottom:365.070000px;}
.y2e{bottom:368.310000px;}
.yfa{bottom:370.470000px;}
.y11e{bottom:374.070000px;}
.y66{bottom:375.510000px;}
.y14a{bottom:376.410000px;}
.yd1{bottom:379.830000px;}
.ybb{bottom:380.910000px;}
.y90{bottom:384.870000px;}
.y2d{bottom:388.110000px;}
.yf9{bottom:390.270000px;}
.y11d{bottom:393.870000px;}
.y65{bottom:395.490000px;}
.y149{bottom:396.210000px;}
.yd0{bottom:399.630000px;}
.yba{bottom:400.755000px;}
.y8f{bottom:404.715000px;}
.y2c{bottom:407.955000px;}
.y64{bottom:415.335000px;}
.y148{bottom:416.055000px;}
.ycf{bottom:417.855000px;}
.yf8{bottom:419.115000px;}
.yb9{bottom:420.555000px;}
.y11c{bottom:422.715000px;}
.y8e{bottom:424.695000px;}
.y2b{bottom:427.935000px;}
.y56{bottom:434.415000px;}
.y147{bottom:435.855000px;}
.y63{bottom:436.215000px;}
.yf7{bottom:439.095000px;}
.yb8{bottom:440.355000px;}
.y11b{bottom:442.515000px;}
.y8d{bottom:444.495000px;}
.y2a{bottom:447.735000px;}
.y55{bottom:454.215000px;}
.y146{bottom:455.835000px;}
.y62{bottom:456.015000px;}
.yf6{bottom:458.895000px;}
.y11a{bottom:462.315000px;}
.y29{bottom:467.535000px;}
.yb7{bottom:469.155000px;}
.y8c{bottom:473.295000px;}
.y54{bottom:474.195000px;}
.y60{bottom:474.915000px;}
.y145{bottom:475.635000px;}
.yf5{bottom:478.695000px;}
.yce{bottom:481.575000px;}
.y28{bottom:487.335000px;}
.yb6{bottom:490.215000px;}
.y119{bottom:491.295000px;}
.y8b{bottom:493.095000px;}
.y53{bottom:493.995000px;}
.y144{bottom:495.435000px;}
.y5e{bottom:502.635000px;}
.y27{bottom:507.135000px;}
.yf4{bottom:507.495000px;}
.yb5{bottom:511.095000px;}
.y8a{bottom:512.895000px;}
.y52{bottom:513.795000px;}
.y143{bottom:515.235000px;}
.ycd{bottom:516.315000px;}
.y26{bottom:527.115000px;}
.yf3{bottom:528.375000px;}
.yb4{bottom:531.975000px;}
.y89{bottom:532.875000px;}
.y51{bottom:533.595000px;}
.y142{bottom:535.035000px;}
.y25{bottom:546.915000px;}
.yf2{bottom:549.435000px;}
.ycb{bottom:551.055000px;}
.yb3{bottom:551.775000px;}
.y88{bottom:552.675000px;}
.y50{bottom:553.395000px;}
.y141{bottom:555.015000px;}
.y24{bottom:566.715000px;}
.yf1{bottom:570.315000px;}
.y118{bottom:571.575000px;}
.y87{bottom:572.475000px;}
.y4f{bottom:573.375000px;}
.y140{bottom:574.815000px;}
.yb2{bottom:580.575000px;}
.y23{bottom:586.515000px;}
.yf0{bottom:590.115000px;}
.y117{bottom:591.555000px;}
.y86{bottom:592.275000px;}
.y4e{bottom:593.175000px;}
.y13f{bottom:594.615000px;}
.yb1{bottom:600.375000px;}
.y5c{bottom:603.975000px;}
.y22{bottom:606.315000px;}
.yef{bottom:609.915000px;}
.y85{bottom:610.455000px;}
.y4d{bottom:612.975000px;}
.y13e{bottom:614.415000px;}
.yb0{bottom:621.435000px;}
.y21{bottom:626.295000px;}
.yee{bottom:629.715000px;}
.y4c{bottom:632.775000px;}
.y13d{bottom:634.215000px;}
.yaf{bottom:642.315000px;}
.y20{bottom:646.095000px;}
.y83{bottom:649.365000px;}
.yed{bottom:649.725000px;}
.y4b{bottom:653.685000px;}
.y13c{bottom:654.225000px;}
.yc9{bottom:655.845000px;}
.y5b{bottom:659.085000px;}
.yae{bottom:662.145000px;}
.y1f{bottom:665.925000px;}
.yec{bottom:667.725000px;}
.y4a{bottom:673.665000px;}
.y13b{bottom:674.025000px;}
.y114{bottom:674.205000px;}
.yc8{bottom:675.645000px;}
.y5a{bottom:679.065000px;}
.yad{bottom:683.025000px;}
.y1e{bottom:685.725000px;}
.y82{bottom:688.245000px;}
.y49{bottom:693.465000px;}
.y13a{bottom:693.825000px;}
.yc7{bottom:695.445000px;}
.y59{bottom:698.865000px;}
.yac{bottom:702.825000px;}
.y112{bottom:704.805000px;}
.y1d{bottom:705.525000px;}
.yeb{bottom:705.705000px;}
.yc6{bottom:712.005000px;}
.y48{bottom:713.265000px;}
.y139{bottom:713.625000px;}
.y58{bottom:715.245000px;}
.yab{bottom:722.805000px;}
.y1c{bottom:725.325000px;}
.y81{bottom:727.845000px;}
.y47{bottom:733.065000px;}
.y138{bottom:733.425000px;}
.y10e{bottom:737.385000px;}
.ya9{bottom:741.705000px;}
.yea{bottom:743.505000px;}
.y1b{bottom:745.305000px;}
.y46{bottom:752.865000px;}
.y137{bottom:753.405000px;}
.y1a{bottom:765.105000px;}
.y80{bottom:772.125000px;}
.y45{bottom:772.845000px;}
.y136{bottom:773.205000px;}
.ya8{bottom:778.245000px;}
.ye9{bottom:781.485000px;}
.y19{bottom:784.905000px;}
.y7f{bottom:791.925000px;}
.y44{bottom:792.645000px;}
.y135{bottom:793.005000px;}
.y10d{bottom:801.645000px;}
.y18{bottom:804.705000px;}
.y7e{bottom:811.725000px;}
.y43{bottom:812.445000px;}
.y134{bottom:812.805000px;}
.ya6{bottom:814.965000px;}
.ye7{bottom:820.005000px;}
.y10c{bottom:821.445000px;}
.y17{bottom:824.505000px;}
.y42{bottom:831.345000px;}
.y7d{bottom:831.525000px;}
.y133{bottom:832.605000px;}
.y10b{bottom:841.425000px;}
.y16{bottom:844.485000px;}
.y7c{bottom:851.505000px;}
.ya4{bottom:851.685000px;}
.y132{bottom:852.585000px;}
.y10a{bottom:861.225000px;}
.ye6{bottom:863.385000px;}
.y15{bottom:869.505000px;}
.y41{bottom:870.045000px;}
.y7b{bottom:871.305000px;}
.y131{bottom:872.385000px;}
.y109{bottom:881.025000px;}
.ye5{bottom:883.185000px;}
.ya2{bottom:887.685000px;}
.y14{bottom:889.305000px;}
.y7a{bottom:891.105000px;}
.y130{bottom:892.185000px;}
.y108{bottom:900.870000px;}
.ye4{bottom:903.030000px;}
.y13{bottom:904.470000px;}
.y40{bottom:908.790000px;}
.y79{bottom:910.950000px;}
.y12f{bottom:912.030000px;}
.ye3{bottom:922.830000px;}
.y12{bottom:926.430000px;}
.ya1{bottom:929.670000px;}
.y78{bottom:930.750000px;}
.y12e{bottom:931.830000px;}
.ye2{bottom:942.810000px;}
.y3f{bottom:947.490000px;}
.y11{bottom:948.210000px;}
.ya0{bottom:949.650000px;}
.y77{bottom:950.730000px;}
.y12d{bottom:951.810000px;}
.ye1{bottom:962.610000px;}
.y9f{bottom:969.450000px;}
.y76{bottom:970.530000px;}
.y12c{bottom:971.610000px;}
.y10{bottom:973.050000px;}
.y3d{bottom:986.910000px;}
.y9e{bottom:989.250000px;}
.y75{bottom:990.330000px;}
.ye0{bottom:991.410000px;}
.yf{bottom:1004.730000px;}
.y74{bottom:1010.130000px;}
.ydf{bottom:1011.210000px;}
.y73{bottom:1029.930000px;}
.y3c{bottom:1031.010000px;}
.y9{bottom:1048.470000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.067188px;}
.hb{height:21.780000px;}
.h15{height:23.220000px;}
.h20{height:26.100000px;}
.h1f{height:27.360000px;}
.h21{height:27.396000px;}
.hd{height:27.907031px;}
.h1c{height:30.240000px;}
.h18{height:30.600000px;}
.h1a{height:32.040000px;}
.h17{height:32.076000px;}
.h19{height:32.220000px;}
.h1d{height:33.300000px;}
.h7{height:33.480000px;}
.hf{height:34.200000px;}
.h10{height:34.236000px;}
.h16{height:34.380000px;}
.he{height:42.164648px;}
.h8{height:42.894141px;}
.h11{height:43.506914px;}
.h24{height:45.024258px;}
.h13{height:45.180000px;}
.h12{height:45.216000px;}
.h22{height:45.549492px;}
.h14{height:46.260000px;}
.h4{height:46.736719px;}
.ha{height:47.545312px;}
.h9{height:53.224453px;}
.h1e{height:53.640000px;}
.h1b{height:59.220000px;}
.h23{height:59.439023px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.wa{width:37.980000px;}
.we{width:49.680000px;}
.w15{width:88.200000px;}
.w19{width:110.736000px;}
.w8{width:125.460000px;}
.w3{width:131.796000px;}
.wf{width:136.116000px;}
.w12{width:145.476000px;}
.w7{width:157.350000px;}
.w9{width:158.970000px;}
.wb{width:163.110000px;}
.w17{width:167.790000px;}
.w16{width:173.370000px;}
.w10{width:178.410000px;}
.w1e{width:181.830000px;}
.w1d{width:192.990000px;}
.w1a{width:196.230000px;}
.w1c{width:201.990000px;}
.w6{width:209.370000px;}
.w13{width:210.450000px;}
.w11{width:230.430000px;}
.wc{width:236.370000px;}
.w18{width:244.470000px;}
.wd{width:248.970000px;}
.w14{width:251.850000px;}
.w1b{width:267.870000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:1.080000px;}
.x22{left:5.940000px;}
.x2{left:8.100000px;}
.x26{left:10.440000px;}
.x28{left:14.400000px;}
.x29{left:28.980000px;}
.x2d{left:30.420000px;}
.x2f{left:31.860000px;}
.x24{left:36.000000px;}
.x2a{left:50.760000px;}
.x1{left:53.280000px;}
.x2e{left:72.720000px;}
.x12{left:75.239987px;}
.x2b{left:76.530000px;}
.x11{left:80.999987px;}
.x6{left:98.855987px;}
.x15{left:99.936000px;}
.x35{left:102.275987px;}
.x21{left:106.416000px;}
.x2c{left:110.565000px;}
.x4{left:118.290000px;}
.x9{left:136.655987px;}
.x16{left:140.256000px;}
.x19{left:145.836000px;}
.xb{left:149.795987px;}
.x30{left:156.810000px;}
.xc{left:189.389987px;}
.x23{left:196.770000px;}
.x1a{left:197.850000px;}
.x20{left:219.989987px;}
.x31{left:269.895000px;}
.x1d{left:288.075000px;}
.x17{left:305.715000px;}
.xe{left:329.295000px;}
.x1b{left:336.135000px;}
.x33{left:360.255000px;}
.xa{left:363.674987px;}
.x25{left:372.315000px;}
.x7{left:403.814987px;}
.x8{left:446.504987px;}
.x32{left:468.465000px;}
.xf{left:488.805000px;}
.x1e{left:500.865000px;}
.x1c{left:516.885000px;}
.x27{left:542.265000px;}
.x18{left:544.245000px;}
.x34{left:555.405000px;}
.x10{left:616.425000px;}
.x3{left:707.910000px;}
.x1f{left:767.129987px;}
.x13{left:770.009987px;}
.x14{left:789.089987px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls13{letter-spacing:2.720000pt;}
.ls18{letter-spacing:3.354880pt;}
.lsd{letter-spacing:5.920000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls8{letter-spacing:36.432640pt;}
.ls7{letter-spacing:40.912640pt;}
.ls12{letter-spacing:56.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.263360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.400533pt;}
.wsd{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.ws4{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._17{margin-left:-3.122987pt;}
._10{margin-left:-2.161707pt;}
._0{margin-left:-0.960000pt;}
._f{width:0.936320pt;}
._1{width:1.973333pt;}
._12{width:3.019947pt;}
._11{width:3.938773pt;}
._14{width:5.540053pt;}
._13{width:6.996267pt;}
._15{width:8.200320pt;}
._6{width:9.600000pt;}
._16{width:10.587520pt;}
._1d{width:12.146133pt;}
._18{width:14.236160pt;}
._19{width:15.172480pt;}
._1b{width:16.719360pt;}
._1a{width:17.766613pt;}
._1f{width:24.920107pt;}
._1c{width:25.816320pt;}
._1e{width:26.897067pt;}
._2f{width:27.888000pt;}
._2e{width:33.765760pt;}
._2d{width:34.812160pt;}
._2b{width:39.752320pt;}
._2c{width:41.813333pt;}
._28{width:50.854400pt;}
._29{width:52.186240pt;}
._2a{width:53.163947pt;}
._24{width:63.337387pt;}
._23{width:64.634880pt;}
._34{width:66.676267pt;}
._7{width:67.808853pt;}
._35{width:69.583360pt;}
._30{width:77.945600pt;}
._31{width:78.851627pt;}
._21{width:83.822080pt;}
._20{width:84.800640pt;}
._22{width:86.042027pt;}
._26{width:87.412267pt;}
._27{width:88.682027pt;}
._36{width:90.906880pt;}
._37{width:93.379413pt;}
._8{width:136.960000pt;}
._25{width:140.733440pt;}
._32{width:142.220800pt;}
._33{width:143.264640pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.600000pt;}
.y61{bottom:6.720000pt;}
.y115{bottom:7.840000pt;}
.y113{bottom:8.480000pt;}
.y116{bottom:8.506667pt;}
.ycc{bottom:9.760000pt;}
.ya5{bottom:9.920000pt;}
.yaa{bottom:10.560000pt;}
.ya3{bottom:10.600000pt;}
.ya7{bottom:10.720000pt;}
.y6{bottom:11.040000pt;}
.ye8{bottom:11.200000pt;}
.y111{bottom:11.360000pt;}
.y3e{bottom:11.520000pt;}
.y84{bottom:11.680000pt;}
.y8{bottom:16.160000pt;}
.y5d{bottom:16.480000pt;}
.y5f{bottom:16.800000pt;}
.y10f{bottom:20.160000pt;}
.yca{bottom:22.720000pt;}
.y110{bottom:28.960000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.y57{bottom:90.880000pt;}
.y107{bottom:92.000000pt;}
.y3b{bottom:98.080000pt;}
.y12b{bottom:103.200000pt;}
.y72{bottom:103.360000pt;}
.y155{bottom:105.280000pt;}
.y158{bottom:105.440000pt;}
.yde{bottom:105.600000pt;}
.y106{bottom:109.760000pt;}
.y2{bottom:111.706667pt;}
.y9d{bottom:112.000000pt;}
.y3a{bottom:115.840000pt;}
.y12a{bottom:120.800000pt;}
.y71{bottom:120.960000pt;}
.y157{bottom:122.080000pt;}
.y154{bottom:122.880000pt;}
.ydd{bottom:123.200000pt;}
.y105{bottom:127.360000pt;}
.y9c{bottom:129.600000pt;}
.y39{bottom:133.440000pt;}
.y129{bottom:138.426667pt;}
.y156{bottom:138.586667pt;}
.y70{bottom:139.706667pt;}
.y153{bottom:140.666667pt;}
.ydc{bottom:140.826667pt;}
.y104{bottom:144.986667pt;}
.y9b{bottom:148.186667pt;}
.y38{bottom:151.066667pt;}
.y128{bottom:156.186667pt;}
.y6f{bottom:158.266667pt;}
.ydb{bottom:158.426667pt;}
.yc5{bottom:162.266667pt;}
.y103{bottom:162.586667pt;}
.y9a{bottom:165.786667pt;}
.y37{bottom:168.666667pt;}
.y127{bottom:173.786667pt;}
.y6e{bottom:175.866667pt;}
.yda{bottom:176.026667pt;}
.yc4{bottom:179.866667pt;}
.y102{bottom:180.186667pt;}
.y99{bottom:183.546667pt;}
.y36{bottom:186.266667pt;}
.y126{bottom:191.386667pt;}
.y152{bottom:193.466667pt;}
.yd9{bottom:193.786667pt;}
.yc3{bottom:197.466667pt;}
.y101{bottom:197.946667pt;}
.y98{bottom:201.146667pt;}
.y6d{bottom:201.466667pt;}
.y35{bottom:204.026667pt;}
.y125{bottom:208.986667pt;}
.y151{bottom:211.066667pt;}
.yd8{bottom:211.386667pt;}
.yc2{bottom:215.066667pt;}
.y100{bottom:215.546667pt;}
.y97{bottom:218.746667pt;}
.y6c{bottom:219.066667pt;}
.y34{bottom:221.626667pt;}
.y124{bottom:226.586667pt;}
.y150{bottom:228.826667pt;}
.yd7{bottom:228.986667pt;}
.yc1{bottom:232.666667pt;}
.yff{bottom:233.146667pt;}
.y96{bottom:236.346667pt;}
.y6b{bottom:236.666667pt;}
.y33{bottom:239.226667pt;}
.y123{bottom:244.346667pt;}
.y14f{bottom:246.426667pt;}
.yd6{bottom:247.546667pt;}
.yc0{bottom:250.426667pt;}
.yfe{bottom:250.746667pt;}
.y95{bottom:253.946667pt;}
.y6a{bottom:254.426667pt;}
.y32{bottom:256.826667pt;}
.y122{bottom:261.946667pt;}
.y14e{bottom:264.026667pt;}
.yd5{bottom:266.106667pt;}
.ybf{bottom:268.026667pt;}
.y94{bottom:271.706667pt;}
.y31{bottom:274.426667pt;}
.yfd{bottom:276.346667pt;}
.y121{bottom:279.546667pt;}
.y69{bottom:280.026667pt;}
.y14d{bottom:281.626667pt;}
.yd4{bottom:284.826667pt;}
.ybe{bottom:285.626667pt;}
.y93{bottom:289.306667pt;}
.y30{bottom:292.186667pt;}
.yfc{bottom:294.106667pt;}
.y120{bottom:297.146667pt;}
.y68{bottom:297.626667pt;}
.y14c{bottom:299.226667pt;}
.yd3{bottom:302.426667pt;}
.ybd{bottom:303.226667pt;}
.y92{bottom:306.906667pt;}
.y2f{bottom:309.786667pt;}
.yfb{bottom:311.706667pt;}
.y11f{bottom:314.746667pt;}
.y67{bottom:315.226667pt;}
.y14b{bottom:316.986667pt;}
.yd2{bottom:320.026667pt;}
.ybc{bottom:320.826667pt;}
.y91{bottom:324.506667pt;}
.y2e{bottom:327.386667pt;}
.yfa{bottom:329.306667pt;}
.y11e{bottom:332.506667pt;}
.y66{bottom:333.786667pt;}
.y14a{bottom:334.586667pt;}
.yd1{bottom:337.626667pt;}
.ybb{bottom:338.586667pt;}
.y90{bottom:342.106667pt;}
.y2d{bottom:344.986667pt;}
.yf9{bottom:346.906667pt;}
.y11d{bottom:350.106667pt;}
.y65{bottom:351.546667pt;}
.y149{bottom:352.186667pt;}
.yd0{bottom:355.226667pt;}
.yba{bottom:356.226667pt;}
.y8f{bottom:359.746667pt;}
.y2c{bottom:362.626667pt;}
.y64{bottom:369.186667pt;}
.y148{bottom:369.826667pt;}
.ycf{bottom:371.426667pt;}
.yf8{bottom:372.546667pt;}
.yb9{bottom:373.826667pt;}
.y11c{bottom:375.746667pt;}
.y8e{bottom:377.506667pt;}
.y2b{bottom:380.386667pt;}
.y56{bottom:386.146667pt;}
.y147{bottom:387.426667pt;}
.y63{bottom:387.746667pt;}
.yf7{bottom:390.306667pt;}
.yb8{bottom:391.426667pt;}
.y11b{bottom:393.346667pt;}
.y8d{bottom:395.106667pt;}
.y2a{bottom:397.986667pt;}
.y55{bottom:403.746667pt;}
.y146{bottom:405.186667pt;}
.y62{bottom:405.346667pt;}
.yf6{bottom:407.906667pt;}
.y11a{bottom:410.946667pt;}
.y29{bottom:415.586667pt;}
.yb7{bottom:417.026667pt;}
.y8c{bottom:420.706667pt;}
.y54{bottom:421.506667pt;}
.y60{bottom:422.146667pt;}
.y145{bottom:422.786667pt;}
.yf5{bottom:425.506667pt;}
.yce{bottom:428.066667pt;}
.y28{bottom:433.186667pt;}
.yb6{bottom:435.746667pt;}
.y119{bottom:436.706667pt;}
.y8b{bottom:438.306667pt;}
.y53{bottom:439.106667pt;}
.y144{bottom:440.386667pt;}
.y5e{bottom:446.786667pt;}
.y27{bottom:450.786667pt;}
.yf4{bottom:451.106667pt;}
.yb5{bottom:454.306667pt;}
.y8a{bottom:455.906667pt;}
.y52{bottom:456.706667pt;}
.y143{bottom:457.986667pt;}
.ycd{bottom:458.946667pt;}
.y26{bottom:468.546667pt;}
.yf3{bottom:469.666667pt;}
.yb4{bottom:472.866667pt;}
.y89{bottom:473.666667pt;}
.y51{bottom:474.306667pt;}
.y142{bottom:475.586667pt;}
.y25{bottom:486.146667pt;}
.yf2{bottom:488.386667pt;}
.ycb{bottom:489.826667pt;}
.yb3{bottom:490.466667pt;}
.y88{bottom:491.266667pt;}
.y50{bottom:491.906667pt;}
.y141{bottom:493.346667pt;}
.y24{bottom:503.746667pt;}
.yf1{bottom:506.946667pt;}
.y118{bottom:508.066667pt;}
.y87{bottom:508.866667pt;}
.y4f{bottom:509.666667pt;}
.y140{bottom:510.946667pt;}
.yb2{bottom:516.066667pt;}
.y23{bottom:521.346667pt;}
.yf0{bottom:524.546667pt;}
.y117{bottom:525.826667pt;}
.y86{bottom:526.466667pt;}
.y4e{bottom:527.266667pt;}
.y13f{bottom:528.546667pt;}
.yb1{bottom:533.666667pt;}
.y5c{bottom:536.866667pt;}
.y22{bottom:538.946667pt;}
.yef{bottom:542.146667pt;}
.y85{bottom:542.626667pt;}
.y4d{bottom:544.866667pt;}
.y13e{bottom:546.146667pt;}
.yb0{bottom:552.386667pt;}
.y21{bottom:556.706667pt;}
.yee{bottom:559.746667pt;}
.y4c{bottom:562.466667pt;}
.y13d{bottom:563.746667pt;}
.yaf{bottom:570.946667pt;}
.y20{bottom:574.306667pt;}
.y83{bottom:577.213333pt;}
.yed{bottom:577.533333pt;}
.y4b{bottom:581.053333pt;}
.y13c{bottom:581.533333pt;}
.yc9{bottom:582.973333pt;}
.y5b{bottom:585.853333pt;}
.yae{bottom:588.573333pt;}
.y1f{bottom:591.933333pt;}
.yec{bottom:593.533333pt;}
.y4a{bottom:598.813333pt;}
.y13b{bottom:599.133333pt;}
.y114{bottom:599.293333pt;}
.yc8{bottom:600.573333pt;}
.y5a{bottom:603.613333pt;}
.yad{bottom:607.133333pt;}
.y1e{bottom:609.533333pt;}
.y82{bottom:611.773333pt;}
.y49{bottom:616.413333pt;}
.y13a{bottom:616.733333pt;}
.yc7{bottom:618.173333pt;}
.y59{bottom:621.213333pt;}
.yac{bottom:624.733333pt;}
.y112{bottom:626.493333pt;}
.y1d{bottom:627.133333pt;}
.yeb{bottom:627.293333pt;}
.yc6{bottom:632.893333pt;}
.y48{bottom:634.013333pt;}
.y139{bottom:634.333333pt;}
.y58{bottom:635.773333pt;}
.yab{bottom:642.493333pt;}
.y1c{bottom:644.733333pt;}
.y81{bottom:646.973333pt;}
.y47{bottom:651.613333pt;}
.y138{bottom:651.933333pt;}
.y10e{bottom:655.453333pt;}
.ya9{bottom:659.293333pt;}
.yea{bottom:660.893333pt;}
.y1b{bottom:662.493333pt;}
.y46{bottom:669.213333pt;}
.y137{bottom:669.693333pt;}
.y1a{bottom:680.093333pt;}
.y80{bottom:686.333333pt;}
.y45{bottom:686.973333pt;}
.y136{bottom:687.293333pt;}
.ya8{bottom:691.773333pt;}
.ye9{bottom:694.653333pt;}
.y19{bottom:697.693333pt;}
.y7f{bottom:703.933333pt;}
.y44{bottom:704.573333pt;}
.y135{bottom:704.893333pt;}
.y10d{bottom:712.573333pt;}
.y18{bottom:715.293333pt;}
.y7e{bottom:721.533333pt;}
.y43{bottom:722.173333pt;}
.y134{bottom:722.493333pt;}
.ya6{bottom:724.413333pt;}
.ye7{bottom:728.893333pt;}
.y10c{bottom:730.173333pt;}
.y17{bottom:732.893333pt;}
.y42{bottom:738.973333pt;}
.y7d{bottom:739.133333pt;}
.y133{bottom:740.093333pt;}
.y10b{bottom:747.933333pt;}
.y16{bottom:750.653333pt;}
.y7c{bottom:756.893333pt;}
.ya4{bottom:757.053333pt;}
.y132{bottom:757.853333pt;}
.y10a{bottom:765.533333pt;}
.ye6{bottom:767.453333pt;}
.y15{bottom:772.893333pt;}
.y41{bottom:773.373333pt;}
.y7b{bottom:774.493333pt;}
.y131{bottom:775.453333pt;}
.y109{bottom:783.133333pt;}
.ye5{bottom:785.053333pt;}
.ya2{bottom:789.053333pt;}
.y14{bottom:790.493333pt;}
.y7a{bottom:792.093333pt;}
.y130{bottom:793.053333pt;}
.y108{bottom:800.773333pt;}
.ye4{bottom:802.693333pt;}
.y13{bottom:803.973333pt;}
.y40{bottom:807.813333pt;}
.y79{bottom:809.733333pt;}
.y12f{bottom:810.693333pt;}
.ye3{bottom:820.293333pt;}
.y12{bottom:823.493333pt;}
.ya1{bottom:826.373333pt;}
.y78{bottom:827.333333pt;}
.y12e{bottom:828.293333pt;}
.ye2{bottom:838.053333pt;}
.y3f{bottom:842.213333pt;}
.y11{bottom:842.853333pt;}
.ya0{bottom:844.133333pt;}
.y77{bottom:845.093333pt;}
.y12d{bottom:846.053333pt;}
.ye1{bottom:855.653333pt;}
.y9f{bottom:861.733333pt;}
.y76{bottom:862.693333pt;}
.y12c{bottom:863.653333pt;}
.y10{bottom:864.933333pt;}
.y3d{bottom:877.253333pt;}
.y9e{bottom:879.333333pt;}
.y75{bottom:880.293333pt;}
.ye0{bottom:881.253333pt;}
.yf{bottom:893.093333pt;}
.y74{bottom:897.893333pt;}
.ydf{bottom:898.853333pt;}
.y73{bottom:915.493333pt;}
.y3c{bottom:916.453333pt;}
.y9{bottom:931.973333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.837500pt;}
.hb{height:19.360000pt;}
.h15{height:20.640000pt;}
.h20{height:23.200000pt;}
.h1f{height:24.320000pt;}
.h21{height:24.352000pt;}
.hd{height:24.806250pt;}
.h1c{height:26.880000pt;}
.h18{height:27.200000pt;}
.h1a{height:28.480000pt;}
.h17{height:28.512000pt;}
.h19{height:28.640000pt;}
.h1d{height:29.600000pt;}
.h7{height:29.760000pt;}
.hf{height:30.400000pt;}
.h10{height:30.432000pt;}
.h16{height:30.560000pt;}
.he{height:37.479688pt;}
.h8{height:38.128125pt;}
.h11{height:38.672812pt;}
.h24{height:40.021563pt;}
.h13{height:40.160000pt;}
.h12{height:40.192000pt;}
.h22{height:40.488438pt;}
.h14{height:41.120000pt;}
.h4{height:41.543750pt;}
.ha{height:42.262500pt;}
.h9{height:47.310625pt;}
.h1e{height:47.680000pt;}
.h1b{height:52.640000pt;}
.h23{height:52.834688pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.wa{width:33.760000pt;}
.we{width:44.160000pt;}
.w15{width:78.400000pt;}
.w19{width:98.432000pt;}
.w8{width:111.520000pt;}
.w3{width:117.152000pt;}
.wf{width:120.992000pt;}
.w12{width:129.312000pt;}
.w7{width:139.866667pt;}
.w9{width:141.306667pt;}
.wb{width:144.986667pt;}
.w17{width:149.146667pt;}
.w16{width:154.106667pt;}
.w10{width:158.586667pt;}
.w1e{width:161.626667pt;}
.w1d{width:171.546667pt;}
.w1a{width:174.426667pt;}
.w1c{width:179.546667pt;}
.w6{width:186.106667pt;}
.w13{width:187.066667pt;}
.w11{width:204.826667pt;}
.wc{width:210.106667pt;}
.w18{width:217.306667pt;}
.wd{width:221.306667pt;}
.w14{width:223.866667pt;}
.w1b{width:238.106667pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:0.960000pt;}
.x22{left:5.280000pt;}
.x2{left:7.200000pt;}
.x26{left:9.280000pt;}
.x28{left:12.800000pt;}
.x29{left:25.760000pt;}
.x2d{left:27.040000pt;}
.x2f{left:28.320000pt;}
.x24{left:32.000000pt;}
.x2a{left:45.120000pt;}
.x1{left:47.360000pt;}
.x2e{left:64.640000pt;}
.x12{left:66.879988pt;}
.x2b{left:68.026667pt;}
.x11{left:71.999988pt;}
.x6{left:87.871988pt;}
.x15{left:88.832000pt;}
.x35{left:90.911988pt;}
.x21{left:94.592000pt;}
.x2c{left:98.280000pt;}
.x4{left:105.146667pt;}
.x9{left:121.471988pt;}
.x16{left:124.672000pt;}
.x19{left:129.632000pt;}
.xb{left:133.151988pt;}
.x30{left:139.386667pt;}
.xc{left:168.346655pt;}
.x23{left:174.906667pt;}
.x1a{left:175.866667pt;}
.x20{left:195.546655pt;}
.x31{left:239.906667pt;}
.x1d{left:256.066667pt;}
.x17{left:271.746667pt;}
.xe{left:292.706667pt;}
.x1b{left:298.786667pt;}
.x33{left:320.226667pt;}
.xa{left:323.266655pt;}
.x25{left:330.946667pt;}
.x7{left:358.946655pt;}
.x8{left:396.893322pt;}
.x32{left:416.413333pt;}
.xf{left:434.493333pt;}
.x1e{left:445.213333pt;}
.x1c{left:459.453333pt;}
.x27{left:482.013333pt;}
.x18{left:483.773333pt;}
.x34{left:493.693333pt;}
.x10{left:547.933333pt;}
.x3{left:629.253333pt;}
.x1f{left:681.893322pt;}
.x13{left:684.453322pt;}
.x14{left:701.413322pt;}
.x5{left:737.120000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  