
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a2eb2353c524ac8bc038449e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_ce843a79b964b6fbd94f0cfb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_1c19f11ade776fec7bf784ea.woff')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_9b36f5a5dbae476a41682578.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_c404175187656d301a71ecf3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_aa993b86a9ba7c36f2634c3a.woff')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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.162000px;}
.ls12{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.067200px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.016200px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.199200px;}
.ls13{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls18{letter-spacing:47.726640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.wse{word-spacing:-13.344600px;}
.ws9{word-spacing:-13.275360px;}
.wsf{word-spacing:-13.242600px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.159200px;}
.wsd{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._2{margin-left:-3.700453px;}
._1{margin-left:-2.684964px;}
._0{margin-left:-1.110000px;}
._3{width:1.081836px;}
._5{width:2.164801px;}
._4{width:3.512891px;}
._7{width:4.812349px;}
._f{width:6.072000px;}
._b{width:7.274400px;}
._c{width:8.585245px;}
._d{width:10.160400px;}
._a{width:11.871600px;}
._15{width:14.299764px;}
._9{width:15.390600px;}
._8{width:17.134200px;}
._17{width:18.276480px;}
._6{width:19.773600px;}
._e{width:20.819961px;}
._10{width:21.883800px;}
._11{width:23.074680px;}
._12{width:24.218160px;}
._18{width:25.361364px;}
._13{width:27.955800px;}
._14{width:29.273520px;}
._19{width:30.661200px;}
._16{width:33.186240px;}
._1a{width:35.591040px;}
._1d{width:43.707240px;}
._1e{width:45.450720px;}
._1f{width:81.823320px;}
._21{width:116.933400px;}
._1b{width:118.496520px;}
._1c{width:119.593560px;}
._20{width:168.095520px;}
._22{width:231.822720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:7.830000px;}
.y5f{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y196{bottom:113.160000px;}
.ya8{bottom:120.630000px;}
.y83{bottom:123.690000px;}
.yfd{bottom:124.320000px;}
.y121{bottom:124.680000px;}
.yd0{bottom:125.130000px;}
.y141{bottom:125.400000px;}
.y195{bottom:130.710000px;}
.y16f{bottom:135.660000px;}
.ya7{bottom:138.180000px;}
.y82{bottom:141.240000px;}
.y27{bottom:141.690000px;}
.yfc{bottom:141.870000px;}
.y120{bottom:142.320000px;}
.ycf{bottom:142.680000px;}
.y194{bottom:148.350000px;}
.y140{bottom:153.120000px;}
.y16e{bottom:153.210000px;}
.y58{bottom:156.270000px;}
.y81{bottom:158.880000px;}
.y26{bottom:159.330000px;}
.yfb{bottom:159.510000px;}
.yce{bottom:160.320000px;}
.ya6{bottom:164.730000px;}
.y193{bottom:165.900000px;}
.y57{bottom:173.910000px;}
.y80{bottom:176.430000px;}
.y25{bottom:176.880000px;}
.y11f{bottom:177.870000px;}
.y16d{bottom:179.850000px;}
.y13f{bottom:180.840000px;}
.y192{bottom:183.450000px;}
.yfa{bottom:186.060000px;}
.y56{bottom:191.460000px;}
.y7f{bottom:193.980000px;}
.y11e{bottom:195.510000px;}
.ycd{bottom:195.870000px;}
.ya5{bottom:200.370000px;}
.y191{bottom:201.090000px;}
.y1c4{bottom:205.860000px;}
.y13e{bottom:208.560000px;}
.y55{bottom:209.100000px;}
.y7e{bottom:211.620000px;}
.y24{bottom:212.430000px;}
.y11d{bottom:213.060000px;}
.ycc{bottom:213.510000px;}
.y16c{bottom:215.400000px;}
.ya4{bottom:217.920000px;}
.yf9{bottom:221.610000px;}
.y1c3{bottom:223.500000px;}
.y54{bottom:226.650000px;}
.y23{bottom:230.070000px;}
.y11c{bottom:230.610000px;}
.ycb{bottom:231.060000px;}
.y16b{bottom:232.950000px;}
.ya3{bottom:235.560000px;}
.y190{bottom:236.640000px;}
.y7d{bottom:238.170000px;}
.yf8{bottom:239.250000px;}
.y1c2{bottom:241.050000px;}
.y53{bottom:244.200000px;}
.y22{bottom:247.620000px;}
.y11b{bottom:248.250000px;}
.yca{bottom:248.610000px;}
.y16a{bottom:250.590000px;}
.ya2{bottom:253.110000px;}
.y18f{bottom:254.190000px;}
.yf7{bottom:256.800000px;}
.y13d{bottom:257.610000px;}
.y1c1{bottom:258.600000px;}
.y21{bottom:265.260000px;}
.yc9{bottom:266.250000px;}
.y169{bottom:268.140000px;}
.ya1{bottom:270.660000px;}
.y18e{bottom:271.830000px;}
.y7c{bottom:273.810000px;}
.y52{bottom:279.840000px;}
.y20{bottom:282.810000px;}
.yf6{bottom:283.440000px;}
.y11a{bottom:283.800000px;}
.y1c0{bottom:285.240000px;}
.y168{bottom:285.690000px;}
.ya0{bottom:288.300000px;}
.y18d{bottom:289.380000px;}
.y7b{bottom:291.360000px;}
.y13c{bottom:293.250000px;}
.y51{bottom:297.390000px;}
.y1f{bottom:300.360000px;}
.y119{bottom:301.440000px;}
.yc8{bottom:301.800000px;}
.y1bf{bottom:302.790000px;}
.y167{bottom:303.330000px;}
.y18c{bottom:307.020000px;}
.y7a{bottom:308.910000px;}
.y13b{bottom:310.800000px;}
.y50{bottom:314.940000px;}
.yf5{bottom:318.990000px;}
.yc7{bottom:319.440000px;}
.y1be{bottom:320.430000px;}
.y9f{bottom:323.850000px;}
.y18b{bottom:324.570000px;}
.y79{bottom:326.550000px;}
.y13a{bottom:328.440000px;}
.y4f{bottom:332.580000px;}
.y1e{bottom:336.000000px;}
.yf4{bottom:336.540000px;}
.yc6{bottom:336.990000px;}
.y166{bottom:338.880000px;}
.y9e{bottom:341.490000px;}
.y78{bottom:344.100000px;}
.y139{bottom:345.990000px;}
.y1bd{bottom:346.980000px;}
.y4e{bottom:350.130000px;}
.y1d{bottom:353.550000px;}
.yf3{bottom:354.180000px;}
.yc5{bottom:354.540000px;}
.y165{bottom:356.520000px;}
.y9d{bottom:359.040000px;}
.y18a{bottom:360.120000px;}
.y77{bottom:361.740000px;}
.y138{bottom:363.540000px;}
.y1bc{bottom:364.530000px;}
.y4d{bottom:367.770000px;}
.y1c{bottom:371.190000px;}
.yf2{bottom:371.730000px;}
.yc4{bottom:372.180000px;}
.y164{bottom:374.070000px;}
.y9c{bottom:376.590000px;}
.y189{bottom:377.760000px;}
.y137{bottom:381.180000px;}
.y1bb{bottom:382.170000px;}
.y1b{bottom:388.740000px;}
.yf1{bottom:389.370000px;}
.yc3{bottom:389.730000px;}
.y163{bottom:391.620000px;}
.y9b{bottom:394.230000px;}
.y188{bottom:395.310000px;}
.y76{bottom:397.290000px;}
.y118{bottom:398.370000px;}
.y4c{bottom:403.320000px;}
.y1a{bottom:406.290000px;}
.yf0{bottom:406.920000px;}
.y1ba{bottom:408.720000px;}
.y162{bottom:409.260000px;}
.y9a{bottom:411.780000px;}
.y187{bottom:412.950000px;}
.y75{bottom:414.840000px;}
.yc2{bottom:416.370000px;}
.y136{bottom:416.730000px;}
.y4b{bottom:420.870000px;}
.y19{bottom:423.930000px;}
.y1b9{bottom:426.360000px;}
.y161{bottom:426.810000px;}
.y186{bottom:430.500000px;}
.y74{bottom:432.480000px;}
.y117{bottom:433.920000px;}
.y135{bottom:434.370000px;}
.y18{bottom:441.480000px;}
.yef{bottom:442.470000px;}
.y99{bottom:447.420000px;}
.y4a{bottom:447.510000px;}
.y185{bottom:448.050000px;}
.y73{bottom:450.030000px;}
.y116{bottom:451.470000px;}
.yc1{bottom:451.920000px;}
.y1b8{bottom:452.910000px;}
.y17{bottom:459.030000px;}
.yee{bottom:460.110000px;}
.y160{bottom:462.450000px;}
.y98{bottom:464.970000px;}
.y72{bottom:467.670000px;}
.y115{bottom:469.110000px;}
.yc0{bottom:469.470000px;}
.y1b7{bottom:470.490000px;}
.y184{bottom:474.990000px;}
.yed{bottom:477.690000px;}
.y15f{bottom:480.030000px;}
.y97{bottom:482.550000px;}
.y49{bottom:483.090000px;}
.y71{bottom:485.250000px;}
.y16{bottom:485.970000px;}
.ybf{bottom:487.140000px;}
.y1b6{bottom:488.130000px;}
.yec{bottom:495.330000px;}
.y114{bottom:495.690000px;}
.y15e{bottom:497.580000px;}
.y96{bottom:500.190000px;}
.y48{bottom:500.730000px;}
.y70{bottom:502.800000px;}
.ybe{bottom:504.690000px;}
.yeb{bottom:512.880000px;}
.y1b5{bottom:514.680000px;}
.y15d{bottom:515.220000px;}
.y95{bottom:517.740000px;}
.y47{bottom:518.280000px;}
.ybd{bottom:522.330000px;}
.y134{bottom:522.690000px;}
.y183{bottom:523.320000px;}
.yea{bottom:530.430000px;}
.y113{bottom:531.330000px;}
.y1b4{bottom:532.230000px;}
.y15c{bottom:532.770000px;}
.y15{bottom:534.570000px;}
.y94{bottom:535.380000px;}
.y46{bottom:535.830000px;}
.y6f{bottom:538.440000px;}
.ybc{bottom:539.880000px;}
.y133{bottom:540.330000px;}
.y182{bottom:540.870000px;}
.y112{bottom:548.880000px;}
.y15b{bottom:550.410000px;}
.y45{bottom:553.470000px;}
.y6e{bottom:555.990000px;}
.y132{bottom:557.880000px;}
.y181{bottom:558.510000px;}
.y1b3{bottom:558.870000px;}
.y93{bottom:561.930000px;}
.ye9{bottom:566.070000px;}
.y111{bottom:566.430000px;}
.y44{bottom:571.020000px;}
.y14{bottom:571.650000px;}
.y6d{bottom:573.630000px;}
.ybb{bottom:575.430000px;}
.y180{bottom:576.060000px;}
.y1b2{bottom:576.420000px;}
.y15a{bottom:576.960000px;}
.ye8{bottom:583.620000px;}
.y110{bottom:584.070000px;}
.y13{bottom:589.200000px;}
.y6c{bottom:591.180000px;}
.yba{bottom:593.070000px;}
.y17f{bottom:593.610000px;}
.y1b1{bottom:594.060000px;}
.y92{bottom:597.480000px;}
.ye7{bottom:601.260000px;}
.y10f{bottom:601.620000px;}
.y43{bottom:606.660000px;}
.y12{bottom:606.840000px;}
.y6b{bottom:608.730000px;}
.yb9{bottom:610.620000px;}
.y17e{bottom:611.250000px;}
.y1b0{bottom:611.610000px;}
.y159{bottom:612.510000px;}
.y91{bottom:615.120000px;}
.ye6{bottom:618.810000px;}
.y10e{bottom:619.260000px;}
.y42{bottom:624.210000px;}
.y11{bottom:624.390000px;}
.y6a{bottom:626.370000px;}
.yb8{bottom:628.260000px;}
.y1af{bottom:629.160000px;}
.y158{bottom:630.150000px;}
.y90{bottom:632.670000px;}
.ye5{bottom:636.360000px;}
.y131{bottom:637.260000px;}
.y41{bottom:641.760000px;}
.y10{bottom:641.940000px;}
.y69{bottom:643.920000px;}
.y17d{bottom:644.190000px;}
.yb7{bottom:645.810000px;}
.y157{bottom:647.700000px;}
.y10d{bottom:654.810000px;}
.y1ae{bottom:655.800000px;}
.y40{bottom:659.400000px;}
.yf{bottom:659.580000px;}
.y68{bottom:661.470000px;}
.ye4{bottom:663.000000px;}
.yb6{bottom:663.360000px;}
.y156{bottom:665.340000px;}
.y17c{bottom:671.550000px;}
.y10c{bottom:672.360000px;}
.y130{bottom:672.810000px;}
.y1ad{bottom:673.350000px;}
.y3f{bottom:676.950000px;}
.ye{bottom:677.130000px;}
.y155{bottom:682.890000px;}
.y67{bottom:688.110000px;}
.y10b{bottom:690.000000px;}
.y12f{bottom:690.360000px;}
.y1ac{bottom:690.990000px;}
.y3e{bottom:694.590000px;}
.yd{bottom:694.770000px;}
.ye3{bottom:698.550000px;}
.y17b{bottom:698.910000px;}
.yb5{bottom:699.000000px;}
.y154{bottom:700.440000px;}
.y8f{bottom:705.660000px;}
.y10a{bottom:707.550000px;}
.y12e{bottom:708.000000px;}
.y1ab{bottom:708.540000px;}
.yc{bottom:712.320000px;}
.ye2{bottom:716.190000px;}
.yb4{bottom:716.550000px;}
.y66{bottom:723.660000px;}
.y109{bottom:725.190000px;}
.y12d{bottom:725.550000px;}
.y17a{bottom:726.180000px;}
.yb{bottom:729.870000px;}
.y3d{bottom:730.140000px;}
.y8e{bottom:733.290000px;}
.ye1{bottom:733.740000px;}
.yb3{bottom:734.190000px;}
.y1aa{bottom:735.090000px;}
.y153{bottom:736.080000px;}
.y65{bottom:741.300000px;}
.y12c{bottom:743.190000px;}
.y3c{bottom:747.690000px;}
.ye0{bottom:751.290000px;}
.yb2{bottom:751.740000px;}
.y1a9{bottom:752.730000px;}
.y179{bottom:753.540000px;}
.y152{bottom:753.630000px;}
.ya{bottom:756.870000px;}
.y64{bottom:758.850000px;}
.y108{bottom:760.740000px;}
.y8d{bottom:761.010000px;}
.y3b{bottom:765.330000px;}
.ydf{bottom:768.930000px;}
.yb1{bottom:769.290000px;}
.y1a8{bottom:770.280000px;}
.y151{bottom:771.270000px;}
.y63{bottom:776.400000px;}
.y107{bottom:778.290000px;}
.y178{bottom:780.900000px;}
.y3a{bottom:782.880000px;}
.yb0{bottom:786.930000px;}
.y1a7{bottom:787.920000px;}
.y8c{bottom:788.730000px;}
.y150{bottom:788.820000px;}
.y62{bottom:794.040000px;}
.y106{bottom:795.930000px;}
.y12b{bottom:796.290000px;}
.y39{bottom:800.520000px;}
.y9{bottom:803.580000px;}
.yde{bottom:804.480000px;}
.y1a6{bottom:805.470000px;}
.y14f{bottom:806.370000px;}
.y177{bottom:808.170000px;}
.yaf{bottom:813.480000px;}
.y12a{bottom:813.930000px;}
.y8b{bottom:816.450000px;}
.y38{bottom:818.070000px;}
.y61{bottom:820.950000px;}
.ydd{bottom:822.030000px;}
.y14e{bottom:824.010000px;}
.y105{bottom:831.030000px;}
.y129{bottom:831.480000px;}
.y1a5{bottom:832.020000px;}
.y176{bottom:835.530000px;}
.y8{bottom:839.130000px;}
.ydc{bottom:839.670000px;}
.y8a{bottom:844.170000px;}
.y104{bottom:848.670000px;}
.yae{bottom:849.030000px;}
.y1a4{bottom:849.660000px;}
.y37{bottom:853.620000px;}
.ydb{bottom:857.220000px;}
.y14d{bottom:859.560000px;}
.yad{bottom:866.670000px;}
.y60{bottom:866.940000px;}
.y1a3{bottom:867.210000px;}
.y36{bottom:871.260000px;}
.yda{bottom:874.860000px;}
.y7{bottom:874.950000px;}
.y103{bottom:875.220000px;}
.y14c{bottom:877.200000px;}
.yac{bottom:884.220000px;}
.y35{bottom:888.810000px;}
.y89{bottom:893.220000px;}
.y1a2{bottom:894.120000px;}
.y5e{bottom:894.660000px;}
.y14b{bottom:894.750000px;}
.y128{bottom:901.860000px;}
.y34{bottom:906.450000px;}
.yd9{bottom:910.410000px;}
.yab{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y14a{bottom:912.300000px;}
.y175{bottom:919.860000px;}
.y5d{bottom:922.380000px;}
.y33{bottom:924.000000px;}
.yd8{bottom:927.960000px;}
.y102{bottom:928.410000px;}
.y88{bottom:928.860000px;}
.y149{bottom:929.940000px;}
.y127{bottom:937.410000px;}
.y32{bottom:941.550000px;}
.y1a1{bottom:942.450000px;}
.yd7{bottom:945.600000px;}
.y101{bottom:945.960000px;}
.y87{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y148{bottom:947.490000px;}
.y5b{bottom:950.100000px;}
.y126{bottom:954.960000px;}
.y1a0{bottom:960.000000px;}
.yd6{bottom:963.150000px;}
.y100{bottom:963.600000px;}
.y86{bottom:963.960000px;}
.y31{bottom:968.190000px;}
.y125{bottom:972.600000px;}
.y147{bottom:974.040000px;}
.y19f{bottom:977.550000px;}
.yd5{bottom:980.790000px;}
.yff{bottom:981.150000px;}
.y85{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y124{bottom:990.150000px;}
.y19e{bottom:995.190000px;}
.y5a{bottom:999.150000px;}
.y30{bottom:1004.100000px;}
.yd4{bottom:1007.340000px;}
.y123{bottom:1007.790000px;}
.y146{bottom:1009.710000px;}
.y3{bottom:1010.070000px;}
.y19d{bottom:1012.770000px;}
.y84{bottom:1016.820000px;}
.y122{bottom:1025.370000px;}
.y145{bottom:1027.260000px;}
.y19c{bottom:1030.320000px;}
.yaa{bottom:1034.370000px;}
.y59{bottom:1034.820000px;}
.yd3{bottom:1042.920000px;}
.y174{bottom:1043.370000px;}
.y19b{bottom:1047.960000px;}
.ya9{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y144{bottom:1054.170000px;}
.yd2{bottom:1060.560000px;}
.y173{bottom:1060.920000px;}
.y19a{bottom:1065.510000px;}
.yfe{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y172{bottom:1078.560000px;}
.y199{bottom:1083.150000px;}
.yd1{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y171{bottom:1096.110000px;}
.y143{bottom:1100.250000px;}
.y198{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y170{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y197{bottom:1127.610000px;}
.y142{bottom:1127.970000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hb{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:126.030000px;}
.w4{width:129.240000px;}
.w6{width:131.400000px;}
.we{width:168.420000px;}
.w7{width:184.350000px;}
.wa{width:198.210000px;}
.wd{width:203.790000px;}
.w5{width:208.200000px;}
.wb{width:227.460000px;}
.w8{width:228.360000px;}
.wf{width:236.070000px;}
.w9{width:240.210000px;}
.wc{width:253.440000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.020000px;}
.x1{left:68.040000px;}
.xc{left:106.560000px;}
.x10{left:111.239987px;}
.x9{left:119.700000px;}
.xd{left:141.750000px;}
.x4{left:148.410000px;}
.x2{left:202.799987px;}
.x6{left:274.980000px;}
.xa{left:304.500000px;}
.xe{left:346.260000px;}
.x7{left:404.760000px;}
.xf{left:515.400000px;}
.xb{left:533.400000px;}
.x8{left:613.500000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.059733pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.014400pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.177067pt;}
.ls13{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls18{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.861867pt;}
.ws9{word-spacing:-11.800320pt;}
.wsf{word-spacing:-11.771200pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.697067pt;}
.wsd{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._2{margin-left:-3.289291pt;}
._1{margin-left:-2.386635pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.961632pt;}
._5{width:1.924268pt;}
._4{width:3.122570pt;}
._7{width:4.277644pt;}
._f{width:5.397333pt;}
._b{width:6.466133pt;}
._c{width:7.631329pt;}
._d{width:9.031467pt;}
._a{width:10.552534pt;}
._15{width:12.710901pt;}
._9{width:13.680533pt;}
._8{width:15.230400pt;}
._17{width:16.245760pt;}
._6{width:17.576534pt;}
._e{width:18.506632pt;}
._10{width:19.452267pt;}
._11{width:20.510827pt;}
._12{width:21.527253pt;}
._18{width:22.543435pt;}
._13{width:24.849600pt;}
._14{width:26.020907pt;}
._19{width:27.254400pt;}
._16{width:29.498880pt;}
._1a{width:31.636480pt;}
._1d{width:38.850880pt;}
._1e{width:40.400640pt;}
._1f{width:72.731840pt;}
._21{width:103.940800pt;}
._1b{width:105.330240pt;}
._1c{width:106.305387pt;}
._20{width:149.418240pt;}
._22{width:206.064640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:6.960000pt;}
.y5f{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y196{bottom:100.586667pt;}
.ya8{bottom:107.226667pt;}
.y83{bottom:109.946667pt;}
.yfd{bottom:110.506667pt;}
.y121{bottom:110.826667pt;}
.yd0{bottom:111.226667pt;}
.y141{bottom:111.466667pt;}
.y195{bottom:116.186667pt;}
.y16f{bottom:120.586667pt;}
.ya7{bottom:122.826667pt;}
.y82{bottom:125.546667pt;}
.y27{bottom:125.946667pt;}
.yfc{bottom:126.106667pt;}
.y120{bottom:126.506667pt;}
.ycf{bottom:126.826667pt;}
.y194{bottom:131.866667pt;}
.y140{bottom:136.106667pt;}
.y16e{bottom:136.186667pt;}
.y58{bottom:138.906667pt;}
.y81{bottom:141.226667pt;}
.y26{bottom:141.626667pt;}
.yfb{bottom:141.786667pt;}
.yce{bottom:142.506667pt;}
.ya6{bottom:146.426667pt;}
.y193{bottom:147.466667pt;}
.y57{bottom:154.586667pt;}
.y80{bottom:156.826667pt;}
.y25{bottom:157.226667pt;}
.y11f{bottom:158.106667pt;}
.y16d{bottom:159.866667pt;}
.y13f{bottom:160.746667pt;}
.y192{bottom:163.066667pt;}
.yfa{bottom:165.386667pt;}
.y56{bottom:170.186667pt;}
.y7f{bottom:172.426667pt;}
.y11e{bottom:173.786667pt;}
.ycd{bottom:174.106667pt;}
.ya5{bottom:178.106667pt;}
.y191{bottom:178.746667pt;}
.y1c4{bottom:182.986667pt;}
.y13e{bottom:185.386667pt;}
.y55{bottom:185.866667pt;}
.y7e{bottom:188.106667pt;}
.y24{bottom:188.826667pt;}
.y11d{bottom:189.386667pt;}
.ycc{bottom:189.786667pt;}
.y16c{bottom:191.466667pt;}
.ya4{bottom:193.706667pt;}
.yf9{bottom:196.986667pt;}
.y1c3{bottom:198.666667pt;}
.y54{bottom:201.466667pt;}
.y23{bottom:204.506667pt;}
.y11c{bottom:204.986667pt;}
.ycb{bottom:205.386667pt;}
.y16b{bottom:207.066667pt;}
.ya3{bottom:209.386667pt;}
.y190{bottom:210.346667pt;}
.y7d{bottom:211.706667pt;}
.yf8{bottom:212.666667pt;}
.y1c2{bottom:214.266667pt;}
.y53{bottom:217.066667pt;}
.y22{bottom:220.106667pt;}
.y11b{bottom:220.666667pt;}
.yca{bottom:220.986667pt;}
.y16a{bottom:222.746667pt;}
.ya2{bottom:224.986667pt;}
.y18f{bottom:225.946667pt;}
.yf7{bottom:228.266667pt;}
.y13d{bottom:228.986667pt;}
.y1c1{bottom:229.866667pt;}
.y21{bottom:235.786667pt;}
.yc9{bottom:236.666667pt;}
.y169{bottom:238.346667pt;}
.ya1{bottom:240.586667pt;}
.y18e{bottom:241.626667pt;}
.y7c{bottom:243.386667pt;}
.y52{bottom:248.746667pt;}
.y20{bottom:251.386667pt;}
.yf6{bottom:251.946667pt;}
.y11a{bottom:252.266667pt;}
.y1c0{bottom:253.546667pt;}
.y168{bottom:253.946667pt;}
.ya0{bottom:256.266667pt;}
.y18d{bottom:257.226667pt;}
.y7b{bottom:258.986667pt;}
.y13c{bottom:260.666667pt;}
.y51{bottom:264.346667pt;}
.y1f{bottom:266.986667pt;}
.y119{bottom:267.946667pt;}
.yc8{bottom:268.266667pt;}
.y1bf{bottom:269.146667pt;}
.y167{bottom:269.626667pt;}
.y18c{bottom:272.906667pt;}
.y7a{bottom:274.586667pt;}
.y13b{bottom:276.266667pt;}
.y50{bottom:279.946667pt;}
.yf5{bottom:283.546667pt;}
.yc7{bottom:283.946667pt;}
.y1be{bottom:284.826667pt;}
.y9f{bottom:287.866667pt;}
.y18b{bottom:288.506667pt;}
.y79{bottom:290.266667pt;}
.y13a{bottom:291.946667pt;}
.y4f{bottom:295.626667pt;}
.y1e{bottom:298.666667pt;}
.yf4{bottom:299.146667pt;}
.yc6{bottom:299.546667pt;}
.y166{bottom:301.226667pt;}
.y9e{bottom:303.546667pt;}
.y78{bottom:305.866667pt;}
.y139{bottom:307.546667pt;}
.y1bd{bottom:308.426667pt;}
.y4e{bottom:311.226667pt;}
.y1d{bottom:314.266667pt;}
.yf3{bottom:314.826667pt;}
.yc5{bottom:315.146667pt;}
.y165{bottom:316.906667pt;}
.y9d{bottom:319.146667pt;}
.y18a{bottom:320.106667pt;}
.y77{bottom:321.546667pt;}
.y138{bottom:323.146667pt;}
.y1bc{bottom:324.026667pt;}
.y4d{bottom:326.906667pt;}
.y1c{bottom:329.946667pt;}
.yf2{bottom:330.426667pt;}
.yc4{bottom:330.826667pt;}
.y164{bottom:332.506667pt;}
.y9c{bottom:334.746667pt;}
.y189{bottom:335.786667pt;}
.y137{bottom:338.826667pt;}
.y1bb{bottom:339.706667pt;}
.y1b{bottom:345.546667pt;}
.yf1{bottom:346.106667pt;}
.yc3{bottom:346.426667pt;}
.y163{bottom:348.106667pt;}
.y9b{bottom:350.426667pt;}
.y188{bottom:351.386667pt;}
.y76{bottom:353.146667pt;}
.y118{bottom:354.106667pt;}
.y4c{bottom:358.506667pt;}
.y1a{bottom:361.146667pt;}
.yf0{bottom:361.706667pt;}
.y1ba{bottom:363.306667pt;}
.y162{bottom:363.786667pt;}
.y9a{bottom:366.026667pt;}
.y187{bottom:367.066667pt;}
.y75{bottom:368.746667pt;}
.yc2{bottom:370.106667pt;}
.y136{bottom:370.426667pt;}
.y4b{bottom:374.106667pt;}
.y19{bottom:376.826667pt;}
.y1b9{bottom:378.986667pt;}
.y161{bottom:379.386667pt;}
.y186{bottom:382.666667pt;}
.y74{bottom:384.426667pt;}
.y117{bottom:385.706667pt;}
.y135{bottom:386.106667pt;}
.y18{bottom:392.426667pt;}
.yef{bottom:393.306667pt;}
.y99{bottom:397.706667pt;}
.y4a{bottom:397.786667pt;}
.y185{bottom:398.266667pt;}
.y73{bottom:400.026667pt;}
.y116{bottom:401.306667pt;}
.yc1{bottom:401.706667pt;}
.y1b8{bottom:402.586667pt;}
.y17{bottom:408.026667pt;}
.yee{bottom:408.986667pt;}
.y160{bottom:411.066667pt;}
.y98{bottom:413.306667pt;}
.y72{bottom:415.706667pt;}
.y115{bottom:416.986667pt;}
.yc0{bottom:417.306667pt;}
.y1b7{bottom:418.213333pt;}
.y184{bottom:422.213333pt;}
.yed{bottom:424.613333pt;}
.y15f{bottom:426.693333pt;}
.y97{bottom:428.933333pt;}
.y49{bottom:429.413333pt;}
.y71{bottom:431.333333pt;}
.y16{bottom:431.973333pt;}
.ybf{bottom:433.013333pt;}
.y1b6{bottom:433.893333pt;}
.yec{bottom:440.293333pt;}
.y114{bottom:440.613333pt;}
.y15e{bottom:442.293333pt;}
.y96{bottom:444.613333pt;}
.y48{bottom:445.093333pt;}
.y70{bottom:446.933333pt;}
.ybe{bottom:448.613333pt;}
.yeb{bottom:455.893333pt;}
.y1b5{bottom:457.493333pt;}
.y15d{bottom:457.973333pt;}
.y95{bottom:460.213333pt;}
.y47{bottom:460.693333pt;}
.ybd{bottom:464.293333pt;}
.y134{bottom:464.613333pt;}
.y183{bottom:465.173333pt;}
.yea{bottom:471.493333pt;}
.y113{bottom:472.293333pt;}
.y1b4{bottom:473.093333pt;}
.y15c{bottom:473.573333pt;}
.y15{bottom:475.173333pt;}
.y94{bottom:475.893333pt;}
.y46{bottom:476.293333pt;}
.y6f{bottom:478.613333pt;}
.ybc{bottom:479.893333pt;}
.y133{bottom:480.293333pt;}
.y182{bottom:480.773333pt;}
.y112{bottom:487.893333pt;}
.y15b{bottom:489.253333pt;}
.y45{bottom:491.973333pt;}
.y6e{bottom:494.213333pt;}
.y132{bottom:495.893333pt;}
.y181{bottom:496.453333pt;}
.y1b3{bottom:496.773333pt;}
.y93{bottom:499.493333pt;}
.ye9{bottom:503.173333pt;}
.y111{bottom:503.493333pt;}
.y44{bottom:507.573333pt;}
.y14{bottom:508.133333pt;}
.y6d{bottom:509.893333pt;}
.ybb{bottom:511.493333pt;}
.y180{bottom:512.053333pt;}
.y1b2{bottom:512.373333pt;}
.y15a{bottom:512.853333pt;}
.ye8{bottom:518.773333pt;}
.y110{bottom:519.173333pt;}
.y13{bottom:523.733333pt;}
.y6c{bottom:525.493333pt;}
.yba{bottom:527.173333pt;}
.y17f{bottom:527.653333pt;}
.y1b1{bottom:528.053333pt;}
.y92{bottom:531.093333pt;}
.ye7{bottom:534.453333pt;}
.y10f{bottom:534.773333pt;}
.y43{bottom:539.253333pt;}
.y12{bottom:539.413333pt;}
.y6b{bottom:541.093333pt;}
.yb9{bottom:542.773333pt;}
.y17e{bottom:543.333333pt;}
.y1b0{bottom:543.653333pt;}
.y159{bottom:544.453333pt;}
.y91{bottom:546.773333pt;}
.ye6{bottom:550.053333pt;}
.y10e{bottom:550.453333pt;}
.y42{bottom:554.853333pt;}
.y11{bottom:555.013333pt;}
.y6a{bottom:556.773333pt;}
.yb8{bottom:558.453333pt;}
.y1af{bottom:559.253333pt;}
.y158{bottom:560.133333pt;}
.y90{bottom:562.373333pt;}
.ye5{bottom:565.653333pt;}
.y131{bottom:566.453333pt;}
.y41{bottom:570.453333pt;}
.y10{bottom:570.613333pt;}
.y69{bottom:572.373333pt;}
.y17d{bottom:572.613333pt;}
.yb7{bottom:574.053333pt;}
.y157{bottom:575.733333pt;}
.y10d{bottom:582.053333pt;}
.y1ae{bottom:582.933333pt;}
.y40{bottom:586.133333pt;}
.yf{bottom:586.293333pt;}
.y68{bottom:587.973333pt;}
.ye4{bottom:589.333333pt;}
.yb6{bottom:589.653333pt;}
.y156{bottom:591.413333pt;}
.y17c{bottom:596.933333pt;}
.y10c{bottom:597.653333pt;}
.y130{bottom:598.053333pt;}
.y1ad{bottom:598.533333pt;}
.y3f{bottom:601.733333pt;}
.ye{bottom:601.893333pt;}
.y155{bottom:607.013333pt;}
.y67{bottom:611.653333pt;}
.y10b{bottom:613.333333pt;}
.y12f{bottom:613.653333pt;}
.y1ac{bottom:614.213333pt;}
.y3e{bottom:617.413333pt;}
.yd{bottom:617.573333pt;}
.ye3{bottom:620.933333pt;}
.y17b{bottom:621.253333pt;}
.yb5{bottom:621.333333pt;}
.y154{bottom:622.613333pt;}
.y8f{bottom:627.253333pt;}
.y10a{bottom:628.933333pt;}
.y12e{bottom:629.333333pt;}
.y1ab{bottom:629.813333pt;}
.yc{bottom:633.173333pt;}
.ye2{bottom:636.613333pt;}
.yb4{bottom:636.933333pt;}
.y66{bottom:643.253333pt;}
.y109{bottom:644.613333pt;}
.y12d{bottom:644.933333pt;}
.y17a{bottom:645.493333pt;}
.yb{bottom:648.773333pt;}
.y3d{bottom:649.013333pt;}
.y8e{bottom:651.813333pt;}
.ye1{bottom:652.213333pt;}
.yb3{bottom:652.613333pt;}
.y1aa{bottom:653.413333pt;}
.y153{bottom:654.293333pt;}
.y65{bottom:658.933333pt;}
.y12c{bottom:660.613333pt;}
.y3c{bottom:664.613333pt;}
.ye0{bottom:667.813333pt;}
.yb2{bottom:668.213333pt;}
.y1a9{bottom:669.093333pt;}
.y179{bottom:669.813333pt;}
.y152{bottom:669.893333pt;}
.ya{bottom:672.773333pt;}
.y64{bottom:674.533333pt;}
.y108{bottom:676.213333pt;}
.y8d{bottom:676.453333pt;}
.y3b{bottom:680.293333pt;}
.ydf{bottom:683.493333pt;}
.yb1{bottom:683.813333pt;}
.y1a8{bottom:684.693333pt;}
.y151{bottom:685.573333pt;}
.y63{bottom:690.133333pt;}
.y107{bottom:691.813333pt;}
.y178{bottom:694.133333pt;}
.y3a{bottom:695.893333pt;}
.yb0{bottom:699.493333pt;}
.y1a7{bottom:700.373333pt;}
.y8c{bottom:701.093333pt;}
.y150{bottom:701.173333pt;}
.y62{bottom:705.813333pt;}
.y106{bottom:707.493333pt;}
.y12b{bottom:707.813333pt;}
.y39{bottom:711.573333pt;}
.y9{bottom:714.293333pt;}
.yde{bottom:715.093333pt;}
.y1a6{bottom:715.973333pt;}
.y14f{bottom:716.773333pt;}
.y177{bottom:718.373333pt;}
.yaf{bottom:723.093333pt;}
.y12a{bottom:723.493333pt;}
.y8b{bottom:725.733333pt;}
.y38{bottom:727.173333pt;}
.y61{bottom:729.733333pt;}
.ydd{bottom:730.693333pt;}
.y14e{bottom:732.453333pt;}
.y105{bottom:738.693333pt;}
.y129{bottom:739.093333pt;}
.y1a5{bottom:739.573333pt;}
.y176{bottom:742.693333pt;}
.y8{bottom:745.893333pt;}
.ydc{bottom:746.373333pt;}
.y8a{bottom:750.373333pt;}
.y104{bottom:754.373333pt;}
.yae{bottom:754.693333pt;}
.y1a4{bottom:755.253333pt;}
.y37{bottom:758.773333pt;}
.ydb{bottom:761.973333pt;}
.y14d{bottom:764.053333pt;}
.yad{bottom:770.373333pt;}
.y60{bottom:770.613333pt;}
.y1a3{bottom:770.853333pt;}
.y36{bottom:774.453333pt;}
.yda{bottom:777.653333pt;}
.y7{bottom:777.733333pt;}
.y103{bottom:777.973333pt;}
.y14c{bottom:779.733333pt;}
.yac{bottom:785.973333pt;}
.y35{bottom:790.053333pt;}
.y89{bottom:793.973333pt;}
.y1a2{bottom:794.773333pt;}
.y5e{bottom:795.253333pt;}
.y14b{bottom:795.333333pt;}
.y128{bottom:801.653333pt;}
.y34{bottom:805.733333pt;}
.yd9{bottom:809.253333pt;}
.yab{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y14a{bottom:810.933333pt;}
.y175{bottom:817.653333pt;}
.y5d{bottom:819.893333pt;}
.y33{bottom:821.333333pt;}
.yd8{bottom:824.853333pt;}
.y102{bottom:825.253333pt;}
.y88{bottom:825.653333pt;}
.y149{bottom:826.613333pt;}
.y127{bottom:833.253333pt;}
.y32{bottom:836.933333pt;}
.y1a1{bottom:837.733333pt;}
.yd7{bottom:840.533333pt;}
.y101{bottom:840.853333pt;}
.y87{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y148{bottom:842.213333pt;}
.y5b{bottom:844.533333pt;}
.y126{bottom:848.853333pt;}
.y1a0{bottom:853.333333pt;}
.yd6{bottom:856.133333pt;}
.y100{bottom:856.533333pt;}
.y86{bottom:856.853333pt;}
.y31{bottom:860.613333pt;}
.y125{bottom:864.533333pt;}
.y147{bottom:865.813333pt;}
.y19f{bottom:868.933333pt;}
.yd5{bottom:871.813333pt;}
.yff{bottom:872.133333pt;}
.y85{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y124{bottom:880.133333pt;}
.y19e{bottom:884.613333pt;}
.y5a{bottom:888.133333pt;}
.y30{bottom:892.533333pt;}
.yd4{bottom:895.413333pt;}
.y123{bottom:895.813333pt;}
.y146{bottom:897.520000pt;}
.y3{bottom:897.840000pt;}
.y19d{bottom:900.240000pt;}
.y84{bottom:903.840000pt;}
.y122{bottom:911.440000pt;}
.y145{bottom:913.120000pt;}
.y19c{bottom:915.840000pt;}
.yaa{bottom:919.440000pt;}
.y59{bottom:919.840000pt;}
.yd3{bottom:927.040000pt;}
.y174{bottom:927.440000pt;}
.y19b{bottom:931.520000pt;}
.ya9{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y144{bottom:937.040000pt;}
.yd2{bottom:942.720000pt;}
.y173{bottom:943.040000pt;}
.y19a{bottom:947.120000pt;}
.yfe{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y172{bottom:958.720000pt;}
.y199{bottom:962.800000pt;}
.yd1{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y171{bottom:974.320000pt;}
.y143{bottom:978.000000pt;}
.y198{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y170{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y197{bottom:1002.320000pt;}
.y142{bottom:1002.640000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hb{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:112.026667pt;}
.w4{width:114.880000pt;}
.w6{width:116.800000pt;}
.we{width:149.706667pt;}
.w7{width:163.866667pt;}
.wa{width:176.186667pt;}
.wd{width:181.146667pt;}
.w5{width:185.066667pt;}
.wb{width:202.186667pt;}
.w8{width:202.986667pt;}
.wf{width:209.840000pt;}
.w9{width:213.520000pt;}
.wc{width:225.280000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.240000pt;}
.x1{left:60.480000pt;}
.xc{left:94.720000pt;}
.x10{left:98.879988pt;}
.x9{left:106.400000pt;}
.xd{left:126.000000pt;}
.x4{left:131.920000pt;}
.x2{left:180.266655pt;}
.x6{left:244.426667pt;}
.xa{left:270.666667pt;}
.xe{left:307.786667pt;}
.x7{left:359.786667pt;}
.xf{left:458.133333pt;}
.xb{left:474.133333pt;}
.x8{left:545.333333pt;}
.x3{left:704.053322pt;}
}




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