
    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_f0fad5e43176baa1d6dca441.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_94cf1f4130ce00a21f4b73d3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9c91f68e36fb835963fc8f81.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ce3acbbaa34217130dc3e310.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_86e9bb1f9cdc277efa844fa2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_55be6bf2b6be3e3ddad37fa1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_02d58fed9a64e5d5a10b7bf2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_d327041d56ce4f40f759ed58.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.m2{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);}
.v4{vertical-align:-72.720000px;}
.v5{vertical-align:-69.120000px;}
.v9{vertical-align:-61.920000px;}
.v8{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v7{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls22{letter-spacing:-0.846000px;}
.ls31{letter-spacing:-0.828000px;}
.ls23{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.538800px;}
.lsc{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.269400px;}
.ls13{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.226200px;}
.ls12{letter-spacing:-0.223800px;}
.ls1a{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.126000px;}
.ls29{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.018000px;}
.ls28{letter-spacing:0.045360px;}
.ls1e{letter-spacing:0.053280px;}
.ls2a{letter-spacing:0.106800px;}
.lse{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.223920px;}
.ls24{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.315360px;}
.ls1c{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.379920px;}
.ls2d{letter-spacing:0.666000px;}
.ls20{letter-spacing:0.702000px;}
.ls1f{letter-spacing:0.773280px;}
.ls2e{letter-spacing:0.792000px;}
.ls8{letter-spacing:0.900000px;}
.ls2b{letter-spacing:1.044000px;}
.ls26{letter-spacing:1.620000px;}
.ls1{letter-spacing:1.800000px;}
.ls27{letter-spacing:2.340000px;}
.lsf{letter-spacing:3.960000px;}
.ls15{letter-spacing:4.500000px;}
.ls7{letter-spacing:9.540000px;}
.ls1d{letter-spacing:9.720000px;}
.ls25{letter-spacing:11.700000px;}
.ls5{letter-spacing:66.960000px;}
.ls17{letter-spacing:90.000000px;}
.ls18{letter-spacing:93.060000px;}
.ls30{letter-spacing:103.140000px;}
.ls2c{letter-spacing:273.780000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws18{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws16{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.680200px;}
.ws14{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.482000px;}
.ws1a{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.836200px;}
.ws13{word-spacing:-11.790600px;}
.ws6{word-spacing:-11.700000px;}
.ws12{word-spacing:-11.521200px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.ws19{word-spacing:-9.792000px;}
.ws8{word-spacing:-9.720000px;}
.ws1b{word-spacing:-8.280000px;}
.ws9{word-spacing:-7.560000px;}
.wse{word-spacing:0.000000px;}
._13{margin-left:-2.178240px;}
._2{margin-left:-1.127520px;}
._0{width:1.419840px;}
._1{width:2.556480px;}
._3{width:3.692160px;}
._a{width:5.400000px;}
._c{width:6.515520px;}
._6{width:7.830000px;}
._7{width:8.865360px;}
._9{width:10.337520px;}
._e{width:12.018240px;}
._12{width:13.087440px;}
._8{width:15.066000px;}
._b{width:16.816320px;}
._14{width:18.107280px;}
._10{width:19.242720px;}
._f{width:20.497680px;}
._11{width:22.317360px;}
._1d{width:23.854080px;}
._15{width:26.055360px;}
._16{width:27.984480px;}
._23{width:30.942000px;}
._22{width:31.968000px;}
._17{width:33.048000px;}
._24{width:47.874000px;}
._5{width:68.611920px;}
._1a{width:73.609200px;}
._19{width:74.808000px;}
._18{width:94.878000px;}
._1e{width:99.360000px;}
._1f{width:100.656000px;}
._21{width:103.314000px;}
._20{width:270.108000px;}
._1b{width:273.402000px;}
._1c{width:275.238000px;}
._d{width:1834.296000px;}
._4{width:2055.281760px;}
.fcd{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(13,13,13);}
.fc4{color:rgb(128,128,128);}
.fc6{color:rgb(17,17,17);}
.fc9{color:rgb(14,14,14);}
.fc5{color:rgb(166,166,166);}
.fcc{color:rgb(34,30,31);}
.fc3{color:rgb(255,0,0);}
.fc7{color:rgb(3,50,255);}
.fc8{color:transparent;}
.fca{color:rgb(0,0,255);}
.fcb{color:rgb(26,23,24);}
.fs6{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fsb{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsf{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fse{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y49{bottom:4.320000px;}
.y26{bottom:5.580000px;}
.ya0{bottom:5.760000px;}
.y9e{bottom:5.940000px;}
.y48{bottom:18.180000px;}
.y4c{bottom:18.900000px;}
.y25{bottom:19.470000px;}
.y3{bottom:19.800000px;}
.y24{bottom:27.210000px;}
.y2{bottom:33.840000px;}
.y23{bottom:42.690000px;}
.y1{bottom:46.620000px;}
.y22{bottom:58.170000px;}
.y46{bottom:71.640000px;}
.ycd{bottom:72.180000px;}
.y21{bottom:73.650000px;}
.y133{bottom:75.600000px;}
.y9b{bottom:83.520000px;}
.yfd{bottom:86.040000px;}
.ycc{bottom:87.840000px;}
.y16c{bottom:88.020000px;}
.y20{bottom:89.310000px;}
.y45{bottom:90.180000px;}
.y132{bottom:91.260000px;}
.y16b{bottom:103.500000px;}
.ycb{bottom:103.680000px;}
.y1f{bottom:104.790000px;}
.yfc{bottom:106.020000px;}
.y44{bottom:110.160000px;}
.y131{bottom:112.680000px;}
.y81{bottom:116.820000px;}
.y9a{bottom:117.720000px;}
.y16a{bottom:119.160000px;}
.y1e{bottom:120.270000px;}
.yca{bottom:120.960000px;}
.yfb{bottom:125.460000px;}
.y43{bottom:127.440000px;}
.y130{bottom:128.160000px;}
.y28{bottom:131.790000px;}
.yc9{bottom:134.460000px;}
.y169{bottom:134.640000px;}
.y1d{bottom:135.750000px;}
.y80{bottom:136.620000px;}
.y99{bottom:137.700000px;}
.y12f{bottom:143.820000px;}
.y42{bottom:144.540000px;}
.yfa{bottom:145.260000px;}
.y168{bottom:150.150000px;}
.y1c{bottom:151.410000px;}
.y7f{bottom:156.450000px;}
.y98{bottom:157.530000px;}
.y41{bottom:161.850000px;}
.y12e{bottom:165.270000px;}
.yf9{bottom:165.450000px;}
.y167{bottom:165.630000px;}
.y1b{bottom:166.890000px;}
.y7e{bottom:176.250000px;}
.y97{bottom:177.510000px;}
.y12d{bottom:180.930000px;}
.y40{bottom:181.110000px;}
.y1a{bottom:182.370000px;}
.yf8{bottom:185.250000px;}
.y7d{bottom:196.230000px;}
.y166{bottom:196.770000px;}
.y96{bottom:197.310000px;}
.y19{bottom:197.850000px;}
.y3f{bottom:198.570000px;}
.y12c{bottom:202.350000px;}
.yf7{bottom:204.870000px;}
.y18{bottom:213.510000px;}
.y3e{bottom:215.850000px;}
.y7c{bottom:216.030000px;}
.y95{bottom:217.110000px;}
.y12b{bottom:217.830000px;}
.yf6{bottom:224.670000px;}
.y165{bottom:227.730000px;}
.y17{bottom:228.990000px;}
.y3d{bottom:233.490000px;}
.y7b{bottom:235.830000px;}
.y94{bottom:236.910000px;}
.y12a{bottom:239.430000px;}
.y164{bottom:243.210000px;}
.yf5{bottom:244.470000px;}
.y16{bottom:250.950000px;}
.y3c{bottom:253.110000px;}
.y129{bottom:254.910000px;}
.y7a{bottom:255.630000px;}
.y93{bottom:256.710000px;}
.y27{bottom:263.595000px;}
.y163{bottom:264.810000px;}
.yf4{bottom:265.350000px;}
.y128{bottom:270.390000px;}
.y3b{bottom:272.910000px;}
.y79{bottom:275.430000px;}
.y92{bottom:276.690000px;}
.y162{bottom:283.170000px;}
.yf3{bottom:286.410000px;}
.y127{bottom:291.990000px;}
.y3a{bottom:292.890000px;}
.y78{bottom:295.410000px;}
.y91{bottom:296.490000px;}
.y161{bottom:302.970000px;}
.yf2{bottom:306.390000px;}
.y126{bottom:307.470000px;}
.y39{bottom:312.690000px;}
.y77{bottom:315.210000px;}
.y90{bottom:316.290000px;}
.y160{bottom:322.950000px;}
.yf1{bottom:326.190000px;}
.y125{bottom:329.070000px;}
.y38{bottom:332.490000px;}
.y76{bottom:335.010000px;}
.y8f{bottom:336.090000px;}
.y15f{bottom:342.750000px;}
.y124{bottom:344.550000px;}
.yf0{bottom:345.990000px;}
.y37{bottom:352.290000px;}
.y75{bottom:354.810000px;}
.y8e{bottom:355.890000px;}
.y123{bottom:360.030000px;}
.y15e{bottom:362.550000px;}
.yef{bottom:365.790000px;}
.y36{bottom:372.090000px;}
.y74{bottom:374.610000px;}
.y8d{bottom:375.870000px;}
.y122{bottom:381.630000px;}
.y15d{bottom:382.350000px;}
.yee{bottom:385.590000px;}
.y35{bottom:392.070000px;}
.y73{bottom:394.590000px;}
.y8c{bottom:395.670000px;}
.y121{bottom:397.110000px;}
.yc8{bottom:397.830000px;}
.y15c{bottom:402.195000px;}
.yed{bottom:405.615000px;}
.y34{bottom:411.915000px;}
.y72{bottom:414.435000px;}
.yc7{bottom:416.595000px;}
.y120{bottom:418.755000px;}
.y15b{bottom:422.175000px;}
.yec{bottom:422.535000px;}
.y33{bottom:431.715000px;}
.y8b{bottom:433.695000px;}
.y71{bottom:434.235000px;}
.yeb{bottom:438.195000px;}
.y15a{bottom:441.975000px;}
.y11f{bottom:449.715000px;}
.yc6{bottom:450.975000px;}
.y32{bottom:451.515000px;}
.y8a{bottom:452.955000px;}
.y70{bottom:454.035000px;}
.yea{bottom:456.555000px;}
.y159{bottom:461.775000px;}
.y89{bottom:466.995000px;}
.yc5{bottom:468.255000px;}
.y31{bottom:471.315000px;}
.y6f{bottom:473.835000px;}
.ye9{bottom:475.635000px;}
.y158{bottom:481.575000px;}
.y88{bottom:482.475000px;}
.yc4{bottom:485.535000px;}
.y11e{bottom:486.795000px;}
.ye8{bottom:489.495000px;}
.y30{bottom:491.295000px;}
.y6e{bottom:493.815000px;}
.y157{bottom:501.375000px;}
.y11d{bottom:502.275000px;}
.yc3{bottom:502.815000px;}
.ye7{bottom:503.535000px;}
.y2f{bottom:511.095000px;}
.y6d{bottom:513.255000px;}
.ye6{bottom:515.955000px;}
.yc2{bottom:520.095000px;}
.y156{bottom:521.355000px;}
.y11c{bottom:523.875000px;}
.y2e{bottom:530.895000px;}
.y6c{bottom:533.055000px;}
.yc1{bottom:537.195000px;}
.y11b{bottom:539.355000px;}
.y155{bottom:541.155000px;}
.y2d{bottom:550.695000px;}
.y6b{bottom:552.855000px;}
.yc0{bottom:554.475000px;}
.y11a{bottom:554.835000px;}
.y154{bottom:560.955000px;}
.y2c{bottom:570.495000px;}
.ybf{bottom:571.755000px;}
.y6a{bottom:576.435000px;}
.y153{bottom:583.995000px;}
.ybe{bottom:589.035000px;}
.y2b{bottom:590.475000px;}
.y119{bottom:591.915000px;}
.y152{bottom:599.475000px;}
.y69{bottom:604.875000px;}
.ybd{bottom:605.955000px;}
.y2a{bottom:607.395000px;}
.y151{bottom:620.895000px;}
.ybc{bottom:623.415000px;}
.y68{bottom:624.675000px;}
.y29{bottom:625.035000px;}
.y118{bottom:628.995000px;}
.y15{bottom:638.535000px;}
.ybb{bottom:640.695000px;}
.y150{bottom:642.495000px;}
.y67{bottom:644.115000px;}
.y117{bottom:644.475000px;}
.yba{bottom:658.005000px;}
.y66{bottom:664.305000px;}
.y116{bottom:666.105000px;}
.yb9{bottom:675.285000px;}
.y14f{bottom:679.605000px;}
.y115{bottom:681.585000px;}
.y65{bottom:684.285000px;}
.yb8{bottom:692.565000px;}
.y14e{bottom:695.085000px;}
.y114{bottom:703.185000px;}
.y64{bottom:704.085000px;}
.yb7{bottom:709.845000px;}
.y14d{bottom:710.565000px;}
.y113{bottom:718.665000px;}
.y63{bottom:723.885000px;}
.yb6{bottom:726.945000px;}
.y14c{bottom:732.165000px;}
.y112{bottom:740.085000px;}
.y62{bottom:743.685000px;}
.yb5{bottom:744.225000px;}
.y14b{bottom:747.645000px;}
.ye5{bottom:749.085000px;}
.y111{bottom:755.745000px;}
.yb4{bottom:761.505000px;}
.y14a{bottom:763.125000px;}
.y61{bottom:763.485000px;}
.y110{bottom:771.585000px;}
.ye4{bottom:771.945000px;}
.yb3{bottom:778.785000px;}
.y60{bottom:783.465000px;}
.y149{bottom:784.725000px;}
.ye3{bottom:789.225000px;}
.y10f{bottom:791.025000px;}
.yb2{bottom:796.065000px;}
.y148{bottom:800.205000px;}
.y87{bottom:801.825000px;}
.y5f{bottom:803.265000px;}
.ye2{bottom:806.505000px;}
.y10e{bottom:812.085000px;}
.yb1{bottom:813.345000px;}
.y147{bottom:815.685000px;}
.y5e{bottom:823.065000px;}
.ye1{bottom:823.785000px;}
.y86{bottom:829.365000px;}
.yb0{bottom:830.445000px;}
.y10d{bottom:834.945000px;}
.y146{bottom:837.285000px;}
.ye0{bottom:840.885000px;}
.y5d{bottom:842.865000px;}
.y85{bottom:843.405000px;}
.yaf{bottom:847.725000px;}
.y145{bottom:852.765000px;}
.y10c{bottom:854.745000px;}
.ydf{bottom:858.165000px;}
.y84{bottom:858.705000px;}
.y5c{bottom:862.305000px;}
.yae{bottom:865.005000px;}
.y144{bottom:868.245000px;}
.y10b{bottom:874.185000px;}
.yde{bottom:875.445000px;}
.y5b{bottom:882.285000px;}
.y143{bottom:889.845000px;}
.ydd{bottom:892.725000px;}
.y10a{bottom:894.525000px;}
.yad{bottom:899.610000px;}
.y5a{bottom:902.490000px;}
.y142{bottom:905.370000px;}
.y14{bottom:907.890000px;}
.ydc{bottom:910.050000px;}
.y109{bottom:914.370000px;}
.yac{bottom:915.990000px;}
.y141{bottom:921.030000px;}
.y59{bottom:922.290000px;}
.y13{bottom:926.790000px;}
.ydb{bottom:927.330000px;}
.yab{bottom:929.850000px;}
.y108{bottom:933.810000px;}
.y12{bottom:939.030000px;}
.y58{bottom:942.090000px;}
.y140{bottom:942.450000px;}
.yaa{bottom:943.710000px;}
.yda{bottom:944.430000px;}
.y11{bottom:950.010000px;}
.y107{bottom:951.990000px;}
.ya9{bottom:955.230000px;}
.y13f{bottom:957.930000px;}
.yd9{bottom:961.710000px;}
.y57{bottom:961.890000px;}
.y10{bottom:963.870000px;}
.y106{bottom:967.830000px;}
.ya8{bottom:973.050000px;}
.yf{bottom:977.550000px;}
.yd8{bottom:978.990000px;}
.y13e{bottom:979.530000px;}
.y56{bottom:981.870000px;}
.ye{bottom:986.550000px;}
.y105{bottom:987.810000px;}
.ya7{bottom:990.870000px;}
.y13d{bottom:995.010000px;}
.yd7{bottom:996.270000px;}
.yd{bottom:998.070000px;}
.y55{bottom:1001.670000px;}
.y104{bottom:1007.610000px;}
.ya6{bottom:1008.690000px;}
.y13c{bottom:1010.490000px;}
.yd6{bottom:1013.550000px;}
.yc{bottom:1018.950000px;}
.y54{bottom:1021.110000px;}
.ya5{bottom:1026.690000px;}
.y103{bottom:1027.410000px;}
.yd5{bottom:1030.830000px;}
.y13b{bottom:1032.090000px;}
.yb{bottom:1035.330000px;}
.y53{bottom:1041.270000px;}
.ya4{bottom:1044.510000px;}
.y102{bottom:1047.210000px;}
.y13a{bottom:1047.570000px;}
.yd4{bottom:1047.930000px;}
.y52{bottom:1061.070000px;}
.ya3{bottom:1062.330000px;}
.y139{bottom:1063.050000px;}
.yd3{bottom:1065.210000px;}
.y101{bottom:1067.010000px;}
.ya{bottom:1069.890000px;}
.ya2{bottom:1080.150000px;}
.y51{bottom:1081.050000px;}
.yd2{bottom:1082.490000px;}
.y138{bottom:1084.650000px;}
.y100{bottom:1086.630000px;}
.ya1{bottom:1097.970000px;}
.yd1{bottom:1099.770000px;}
.y137{bottom:1100.130000px;}
.y50{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.yff{bottom:1104.810000px;}
.y47{bottom:1112.730000px;}
.y9f{bottom:1115.790000px;}
.yd0{bottom:1117.050000px;}
.y8{bottom:1117.950000px;}
.y4f{bottom:1120.650000px;}
.y136{bottom:1121.730000px;}
.ycf{bottom:1134.330000px;}
.y9d{bottom:1134.510000px;}
.y135{bottom:1137.210000px;}
.y4e{bottom:1140.450000px;}
.yce{bottom:1151.460000px;}
.y134{bottom:1152.720000px;}
.y7{bottom:1155.960000px;}
.yfe{bottom:1159.920000px;}
.y4d{bottom:1160.280000px;}
.y9c{bottom:1160.460000px;}
.y6{bottom:1167.480000px;}
.y83{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y4b{bottom:1178.460000px;}
.y82{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y4a{bottom:1197.720000px;}
.h6{height:5.650313px;}
.hf{height:12.012891px;}
.h1d{height:17.805000px;}
.h1c{height:17.985000px;}
.h12{height:18.140625px;}
.h1b{height:21.450000px;}
.h16{height:27.705000px;}
.he{height:29.664141px;}
.hd{height:36.281250px;}
.h3{height:40.985156px;}
.hb{height:42.086250px;}
.h17{height:42.922699px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h2{height:52.998047px;}
.h8{height:54.421875px;}
.h14{height:55.503472px;}
.h10{height:58.651172px;}
.h1e{height:59.092031px;}
.h21{height:59.236031px;}
.h9{height:60.226875px;}
.h1f{height:65.010937px;}
.h18{height:65.518594px;}
.hc{height:66.543750px;}
.h13{height:66.757500px;}
.h15{height:70.664062px;}
.h5{height:72.562500px;}
.h20{height:82.676953px;}
.h19{height:96.508125px;}
.h1a{height:105.996094px;}
.ha{height:121.179375px;}
.h11{height:263.580000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:101.730000px;}
.w7{width:182.190000px;}
.w6{width:184.155000px;}
.w4{width:232.050000px;}
.w5{width:364.564500px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xc{left:-36.900000px;}
.xb{left:-19.800000px;}
.xa{left:-5.040000px;}
.x0{left:0.000000px;}
.x12{left:8.089500px;}
.x9{left:10.650000px;}
.x8{left:26.850000px;}
.x14{left:35.265000px;}
.x16{left:40.680000px;}
.x7{left:42.510000px;}
.x1b{left:51.105000px;}
.x1a{left:54.525000px;}
.x6{left:58.710000px;}
.x1c{left:60.120000px;}
.x19{left:61.365000px;}
.x17{left:64.605000px;}
.x1d{left:68.025000px;}
.x1e{left:73.620000px;}
.x18{left:75.240000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x1f{left:82.080000px;}
.xd{left:108.036000px;}
.x22{left:113.076000px;}
.x21{left:114.876000px;}
.x23{left:158.250000px;}
.xf{left:359.715000px;}
.x10{left:369.615000px;}
.x1{left:435.345000px;}
.x13{left:443.460000px;}
.x3{left:445.605000px;}
.xe{left:590.370000px;}
.x15{left:627.630000px;}
.x4{left:721.950000px;}
.x20{left:798.840000px;}
.x11{left:810.720000px;}
@media print{
.v4{vertical-align:-64.640000pt;}
.v5{vertical-align:-61.440000pt;}
.v9{vertical-align:-55.040000pt;}
.v8{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v7{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls22{letter-spacing:-0.752000pt;}
.ls31{letter-spacing:-0.736000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.478933pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.239467pt;}
.ls13{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.201067pt;}
.ls12{letter-spacing:-0.198933pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.112000pt;}
.ls29{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.016000pt;}
.ls28{letter-spacing:0.040320pt;}
.ls1e{letter-spacing:0.047360pt;}
.ls2a{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.199040pt;}
.ls24{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.280320pt;}
.ls1c{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.337707pt;}
.ls2d{letter-spacing:0.592000pt;}
.ls20{letter-spacing:0.624000pt;}
.ls1f{letter-spacing:0.687360pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls2b{letter-spacing:0.928000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls1{letter-spacing:1.600000pt;}
.ls27{letter-spacing:2.080000pt;}
.lsf{letter-spacing:3.520000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls7{letter-spacing:8.480000pt;}
.ls1d{letter-spacing:8.640000pt;}
.ls25{letter-spacing:10.400000pt;}
.ls5{letter-spacing:59.520000pt;}
.ls17{letter-spacing:80.000000pt;}
.ls18{letter-spacing:82.720000pt;}
.ls30{letter-spacing:91.680000pt;}
.ls2c{letter-spacing:243.360000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws18{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws16{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.049067pt;}
.ws14{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.984000pt;}
.ws1a{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.521067pt;}
.ws13{word-spacing:-10.480533pt;}
.ws6{word-spacing:-10.400000pt;}
.ws12{word-spacing:-10.241067pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.ws19{word-spacing:-8.704000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws1b{word-spacing:-7.360000pt;}
.ws9{word-spacing:-6.720000pt;}
.wse{word-spacing:0.000000pt;}
._13{margin-left:-1.936213pt;}
._2{margin-left:-1.002240pt;}
._0{width:1.262080pt;}
._1{width:2.272427pt;}
._3{width:3.281920pt;}
._a{width:4.800000pt;}
._c{width:5.791573pt;}
._6{width:6.960000pt;}
._7{width:7.880320pt;}
._9{width:9.188907pt;}
._e{width:10.682880pt;}
._12{width:11.633280pt;}
._8{width:13.392000pt;}
._b{width:14.947840pt;}
._14{width:16.095360pt;}
._10{width:17.104640pt;}
._f{width:18.220160pt;}
._11{width:19.837653pt;}
._1d{width:21.203627pt;}
._15{width:23.160320pt;}
._16{width:24.875093pt;}
._23{width:27.504000pt;}
._22{width:28.416000pt;}
._17{width:29.376000pt;}
._24{width:42.554667pt;}
._5{width:60.988373pt;}
._1a{width:65.430400pt;}
._19{width:66.496000pt;}
._18{width:84.336000pt;}
._1e{width:88.320000pt;}
._1f{width:89.472000pt;}
._21{width:91.834667pt;}
._20{width:240.096000pt;}
._1b{width:243.024000pt;}
._1c{width:244.656000pt;}
._d{width:1630.485333pt;}
._4{width:1826.917120pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsf{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fse{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.840000pt;}
.y26{bottom:4.960000pt;}
.ya0{bottom:5.120000pt;}
.y9e{bottom:5.280000pt;}
.y48{bottom:16.160000pt;}
.y4c{bottom:16.800000pt;}
.y25{bottom:17.306667pt;}
.y3{bottom:17.600000pt;}
.y24{bottom:24.186667pt;}
.y2{bottom:30.080000pt;}
.y23{bottom:37.946667pt;}
.y1{bottom:41.440000pt;}
.y22{bottom:51.706667pt;}
.y46{bottom:63.680000pt;}
.ycd{bottom:64.160000pt;}
.y21{bottom:65.466667pt;}
.y133{bottom:67.200000pt;}
.y9b{bottom:74.240000pt;}
.yfd{bottom:76.480000pt;}
.ycc{bottom:78.080000pt;}
.y16c{bottom:78.240000pt;}
.y20{bottom:79.386667pt;}
.y45{bottom:80.160000pt;}
.y132{bottom:81.120000pt;}
.y16b{bottom:92.000000pt;}
.ycb{bottom:92.160000pt;}
.y1f{bottom:93.146667pt;}
.yfc{bottom:94.240000pt;}
.y44{bottom:97.920000pt;}
.y131{bottom:100.160000pt;}
.y81{bottom:103.840000pt;}
.y9a{bottom:104.640000pt;}
.y16a{bottom:105.920000pt;}
.y1e{bottom:106.906667pt;}
.yca{bottom:107.520000pt;}
.yfb{bottom:111.520000pt;}
.y43{bottom:113.280000pt;}
.y130{bottom:113.920000pt;}
.y28{bottom:117.146667pt;}
.yc9{bottom:119.520000pt;}
.y169{bottom:119.680000pt;}
.y1d{bottom:120.666667pt;}
.y80{bottom:121.440000pt;}
.y99{bottom:122.400000pt;}
.y12f{bottom:127.840000pt;}
.y42{bottom:128.480000pt;}
.yfa{bottom:129.120000pt;}
.y168{bottom:133.466667pt;}
.y1c{bottom:134.586667pt;}
.y7f{bottom:139.066667pt;}
.y98{bottom:140.026667pt;}
.y41{bottom:143.866667pt;}
.y12e{bottom:146.906667pt;}
.yf9{bottom:147.066667pt;}
.y167{bottom:147.226667pt;}
.y1b{bottom:148.346667pt;}
.y7e{bottom:156.666667pt;}
.y97{bottom:157.786667pt;}
.y12d{bottom:160.826667pt;}
.y40{bottom:160.986667pt;}
.y1a{bottom:162.106667pt;}
.yf8{bottom:164.666667pt;}
.y7d{bottom:174.426667pt;}
.y166{bottom:174.906667pt;}
.y96{bottom:175.386667pt;}
.y19{bottom:175.866667pt;}
.y3f{bottom:176.506667pt;}
.y12c{bottom:179.866667pt;}
.yf7{bottom:182.106667pt;}
.y18{bottom:189.786667pt;}
.y3e{bottom:191.866667pt;}
.y7c{bottom:192.026667pt;}
.y95{bottom:192.986667pt;}
.y12b{bottom:193.626667pt;}
.yf6{bottom:199.706667pt;}
.y165{bottom:202.426667pt;}
.y17{bottom:203.546667pt;}
.y3d{bottom:207.546667pt;}
.y7b{bottom:209.626667pt;}
.y94{bottom:210.586667pt;}
.y12a{bottom:212.826667pt;}
.y164{bottom:216.186667pt;}
.yf5{bottom:217.306667pt;}
.y16{bottom:223.066667pt;}
.y3c{bottom:224.986667pt;}
.y129{bottom:226.586667pt;}
.y7a{bottom:227.226667pt;}
.y93{bottom:228.186667pt;}
.y27{bottom:234.306667pt;}
.y163{bottom:235.386667pt;}
.yf4{bottom:235.866667pt;}
.y128{bottom:240.346667pt;}
.y3b{bottom:242.586667pt;}
.y79{bottom:244.826667pt;}
.y92{bottom:245.946667pt;}
.y162{bottom:251.706667pt;}
.yf3{bottom:254.586667pt;}
.y127{bottom:259.546667pt;}
.y3a{bottom:260.346667pt;}
.y78{bottom:262.586667pt;}
.y91{bottom:263.546667pt;}
.y161{bottom:269.306667pt;}
.yf2{bottom:272.346667pt;}
.y126{bottom:273.306667pt;}
.y39{bottom:277.946667pt;}
.y77{bottom:280.186667pt;}
.y90{bottom:281.146667pt;}
.y160{bottom:287.066667pt;}
.yf1{bottom:289.946667pt;}
.y125{bottom:292.506667pt;}
.y38{bottom:295.546667pt;}
.y76{bottom:297.786667pt;}
.y8f{bottom:298.746667pt;}
.y15f{bottom:304.666667pt;}
.y124{bottom:306.266667pt;}
.yf0{bottom:307.546667pt;}
.y37{bottom:313.146667pt;}
.y75{bottom:315.386667pt;}
.y8e{bottom:316.346667pt;}
.y123{bottom:320.026667pt;}
.y15e{bottom:322.266667pt;}
.yef{bottom:325.146667pt;}
.y36{bottom:330.746667pt;}
.y74{bottom:332.986667pt;}
.y8d{bottom:334.106667pt;}
.y122{bottom:339.226667pt;}
.y15d{bottom:339.866667pt;}
.yee{bottom:342.746667pt;}
.y35{bottom:348.506667pt;}
.y73{bottom:350.746667pt;}
.y8c{bottom:351.706667pt;}
.y121{bottom:352.986667pt;}
.yc8{bottom:353.626667pt;}
.y15c{bottom:357.506667pt;}
.yed{bottom:360.546667pt;}
.y34{bottom:366.146667pt;}
.y72{bottom:368.386667pt;}
.yc7{bottom:370.306667pt;}
.y120{bottom:372.226667pt;}
.y15b{bottom:375.266667pt;}
.yec{bottom:375.586667pt;}
.y33{bottom:383.746667pt;}
.y8b{bottom:385.506667pt;}
.y71{bottom:385.986667pt;}
.yeb{bottom:389.506667pt;}
.y15a{bottom:392.866667pt;}
.y11f{bottom:399.746667pt;}
.yc6{bottom:400.866667pt;}
.y32{bottom:401.346667pt;}
.y8a{bottom:402.626667pt;}
.y70{bottom:403.586667pt;}
.yea{bottom:405.826667pt;}
.y159{bottom:410.466667pt;}
.y89{bottom:415.106667pt;}
.yc5{bottom:416.226667pt;}
.y31{bottom:418.946667pt;}
.y6f{bottom:421.186667pt;}
.ye9{bottom:422.786667pt;}
.y158{bottom:428.066667pt;}
.y88{bottom:428.866667pt;}
.yc4{bottom:431.586667pt;}
.y11e{bottom:432.706667pt;}
.ye8{bottom:435.106667pt;}
.y30{bottom:436.706667pt;}
.y6e{bottom:438.946667pt;}
.y157{bottom:445.666667pt;}
.y11d{bottom:446.466667pt;}
.yc3{bottom:446.946667pt;}
.ye7{bottom:447.586667pt;}
.y2f{bottom:454.306667pt;}
.y6d{bottom:456.226667pt;}
.ye6{bottom:458.626667pt;}
.yc2{bottom:462.306667pt;}
.y156{bottom:463.426667pt;}
.y11c{bottom:465.666667pt;}
.y2e{bottom:471.906667pt;}
.y6c{bottom:473.826667pt;}
.yc1{bottom:477.506667pt;}
.y11b{bottom:479.426667pt;}
.y155{bottom:481.026667pt;}
.y2d{bottom:489.506667pt;}
.y6b{bottom:491.426667pt;}
.yc0{bottom:492.866667pt;}
.y11a{bottom:493.186667pt;}
.y154{bottom:498.626667pt;}
.y2c{bottom:507.106667pt;}
.ybf{bottom:508.226667pt;}
.y6a{bottom:512.386667pt;}
.y153{bottom:519.106667pt;}
.ybe{bottom:523.586667pt;}
.y2b{bottom:524.866667pt;}
.y119{bottom:526.146667pt;}
.y152{bottom:532.866667pt;}
.y69{bottom:537.666667pt;}
.ybd{bottom:538.626667pt;}
.y2a{bottom:539.906667pt;}
.y151{bottom:551.906667pt;}
.ybc{bottom:554.146667pt;}
.y68{bottom:555.266667pt;}
.y29{bottom:555.586667pt;}
.y118{bottom:559.106667pt;}
.y15{bottom:567.586667pt;}
.ybb{bottom:569.506667pt;}
.y150{bottom:571.106667pt;}
.y67{bottom:572.546667pt;}
.y117{bottom:572.866667pt;}
.yba{bottom:584.893333pt;}
.y66{bottom:590.493333pt;}
.y116{bottom:592.093333pt;}
.yb9{bottom:600.253333pt;}
.y14f{bottom:604.093333pt;}
.y115{bottom:605.853333pt;}
.y65{bottom:608.253333pt;}
.yb8{bottom:615.613333pt;}
.y14e{bottom:617.853333pt;}
.y114{bottom:625.053333pt;}
.y64{bottom:625.853333pt;}
.yb7{bottom:630.973333pt;}
.y14d{bottom:631.613333pt;}
.y113{bottom:638.813333pt;}
.y63{bottom:643.453333pt;}
.yb6{bottom:646.173333pt;}
.y14c{bottom:650.813333pt;}
.y112{bottom:657.853333pt;}
.y62{bottom:661.053333pt;}
.yb5{bottom:661.533333pt;}
.y14b{bottom:664.573333pt;}
.ye5{bottom:665.853333pt;}
.y111{bottom:671.773333pt;}
.yb4{bottom:676.893333pt;}
.y14a{bottom:678.333333pt;}
.y61{bottom:678.653333pt;}
.y110{bottom:685.853333pt;}
.ye4{bottom:686.173333pt;}
.yb3{bottom:692.253333pt;}
.y60{bottom:696.413333pt;}
.y149{bottom:697.533333pt;}
.ye3{bottom:701.533333pt;}
.y10f{bottom:703.133333pt;}
.yb2{bottom:707.613333pt;}
.y148{bottom:711.293333pt;}
.y87{bottom:712.733333pt;}
.y5f{bottom:714.013333pt;}
.ye2{bottom:716.893333pt;}
.y10e{bottom:721.853333pt;}
.yb1{bottom:722.973333pt;}
.y147{bottom:725.053333pt;}
.y5e{bottom:731.613333pt;}
.ye1{bottom:732.253333pt;}
.y86{bottom:737.213333pt;}
.yb0{bottom:738.173333pt;}
.y10d{bottom:742.173333pt;}
.y146{bottom:744.253333pt;}
.ye0{bottom:747.453333pt;}
.y5d{bottom:749.213333pt;}
.y85{bottom:749.693333pt;}
.yaf{bottom:753.533333pt;}
.y145{bottom:758.013333pt;}
.y10c{bottom:759.773333pt;}
.ydf{bottom:762.813333pt;}
.y84{bottom:763.293333pt;}
.y5c{bottom:766.493333pt;}
.yae{bottom:768.893333pt;}
.y144{bottom:771.773333pt;}
.y10b{bottom:777.053333pt;}
.yde{bottom:778.173333pt;}
.y5b{bottom:784.253333pt;}
.y143{bottom:790.973333pt;}
.ydd{bottom:793.533333pt;}
.y10a{bottom:795.133333pt;}
.yad{bottom:799.653333pt;}
.y5a{bottom:802.213333pt;}
.y142{bottom:804.773333pt;}
.y14{bottom:807.013333pt;}
.ydc{bottom:808.933333pt;}
.y109{bottom:812.773333pt;}
.yac{bottom:814.213333pt;}
.y141{bottom:818.693333pt;}
.y59{bottom:819.813333pt;}
.y13{bottom:823.813333pt;}
.ydb{bottom:824.293333pt;}
.yab{bottom:826.533333pt;}
.y108{bottom:830.053333pt;}
.y12{bottom:834.693333pt;}
.y58{bottom:837.413333pt;}
.y140{bottom:837.733333pt;}
.yaa{bottom:838.853333pt;}
.yda{bottom:839.493333pt;}
.y11{bottom:844.453333pt;}
.y107{bottom:846.213333pt;}
.ya9{bottom:849.093333pt;}
.y13f{bottom:851.493333pt;}
.yd9{bottom:854.853333pt;}
.y57{bottom:855.013333pt;}
.y10{bottom:856.773333pt;}
.y106{bottom:860.293333pt;}
.ya8{bottom:864.933333pt;}
.yf{bottom:868.933333pt;}
.yd8{bottom:870.213333pt;}
.y13e{bottom:870.693333pt;}
.y56{bottom:872.773333pt;}
.ye{bottom:876.933333pt;}
.y105{bottom:878.053333pt;}
.ya7{bottom:880.773333pt;}
.y13d{bottom:884.453333pt;}
.yd7{bottom:885.573333pt;}
.yd{bottom:887.173333pt;}
.y55{bottom:890.373333pt;}
.y104{bottom:895.653333pt;}
.ya6{bottom:896.613333pt;}
.y13c{bottom:898.213333pt;}
.yd6{bottom:900.933333pt;}
.yc{bottom:905.733333pt;}
.y54{bottom:907.653333pt;}
.ya5{bottom:912.613333pt;}
.y103{bottom:913.253333pt;}
.yd5{bottom:916.293333pt;}
.y13b{bottom:917.413333pt;}
.yb{bottom:920.293333pt;}
.y53{bottom:925.573333pt;}
.ya4{bottom:928.453333pt;}
.y102{bottom:930.853333pt;}
.y13a{bottom:931.173333pt;}
.yd4{bottom:931.493333pt;}
.y52{bottom:943.173333pt;}
.ya3{bottom:944.293333pt;}
.y139{bottom:944.933333pt;}
.yd3{bottom:946.853333pt;}
.y101{bottom:948.453333pt;}
.ya{bottom:951.013333pt;}
.ya2{bottom:960.133333pt;}
.y51{bottom:960.933333pt;}
.yd2{bottom:962.213333pt;}
.y138{bottom:964.133333pt;}
.y100{bottom:965.893333pt;}
.ya1{bottom:975.973333pt;}
.yd1{bottom:977.573333pt;}
.y137{bottom:977.893333pt;}
.y50{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.yff{bottom:982.053333pt;}
.y47{bottom:989.093333pt;}
.y9f{bottom:991.813333pt;}
.yd0{bottom:992.933333pt;}
.y8{bottom:993.733333pt;}
.y4f{bottom:996.133333pt;}
.y136{bottom:997.093333pt;}
.ycf{bottom:1008.293333pt;}
.y9d{bottom:1008.453333pt;}
.y135{bottom:1010.853333pt;}
.y4e{bottom:1013.733333pt;}
.yce{bottom:1023.520000pt;}
.y134{bottom:1024.640000pt;}
.y7{bottom:1027.520000pt;}
.yfe{bottom:1031.040000pt;}
.y4d{bottom:1031.360000pt;}
.y9c{bottom:1031.520000pt;}
.y6{bottom:1037.760000pt;}
.y83{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y4b{bottom:1047.520000pt;}
.y82{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y4a{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.hf{height:10.678125pt;}
.h1d{height:15.826667pt;}
.h1c{height:15.986667pt;}
.h12{height:16.125000pt;}
.h1b{height:19.066667pt;}
.h16{height:24.626667pt;}
.he{height:26.368125pt;}
.hd{height:32.250000pt;}
.h3{height:36.431250pt;}
.hb{height:37.410000pt;}
.h17{height:38.153511pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h2{height:47.109375pt;}
.h8{height:48.375000pt;}
.h14{height:49.336419pt;}
.h10{height:52.134375pt;}
.h1e{height:52.526250pt;}
.h21{height:52.654250pt;}
.h9{height:53.535000pt;}
.h1f{height:57.787500pt;}
.h18{height:58.238750pt;}
.hc{height:59.150000pt;}
.h13{height:59.340000pt;}
.h15{height:62.812500pt;}
.h5{height:64.500000pt;}
.h20{height:73.490625pt;}
.h19{height:85.785000pt;}
.h1a{height:94.218750pt;}
.ha{height:107.715000pt;}
.h11{height:234.293333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:90.426667pt;}
.w7{width:161.946667pt;}
.w6{width:163.693333pt;}
.w4{width:206.266667pt;}
.w5{width:324.057333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xc{left:-32.800000pt;}
.xb{left:-17.600000pt;}
.xa{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x12{left:7.190667pt;}
.x9{left:9.466667pt;}
.x8{left:23.866667pt;}
.x14{left:31.346667pt;}
.x16{left:36.160000pt;}
.x7{left:37.786667pt;}
.x1b{left:45.426667pt;}
.x1a{left:48.466667pt;}
.x6{left:52.186667pt;}
.x1c{left:53.440000pt;}
.x19{left:54.546667pt;}
.x17{left:57.426667pt;}
.x1d{left:60.466667pt;}
.x1e{left:65.440000pt;}
.x18{left:66.880000pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x1f{left:72.960000pt;}
.xd{left:96.032000pt;}
.x22{left:100.512000pt;}
.x21{left:102.112000pt;}
.x23{left:140.666667pt;}
.xf{left:319.746667pt;}
.x10{left:328.546667pt;}
.x1{left:386.973333pt;}
.x13{left:394.186667pt;}
.x3{left:396.093333pt;}
.xe{left:524.773333pt;}
.x15{left:557.893333pt;}
.x4{left:641.733333pt;}
.x20{left:710.080000pt;}
.x11{left:720.640000pt;}
}




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