
    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_af0ad48fa3ad0df566b4e245.woff')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_eaeed21c0b2604f27754b6ca.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_c14009a012b3b0f058f1303d.woff')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_867fceb6e0f1c7211a8e7a2b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_438bbbffdf1e47d19db925bd.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b0c02102737d1c4fa5f8e05a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a439bbef0e8406883e3a25e7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_0c0730301e0e68cc2904a307.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_efa23052e4d1c3d09b33bf84.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6c0d3862b81f2c162a65e90a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls7{letter-spacing:-2.700000px;}
.lsb{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.594000px;}
.lsd{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.269400px;}
.ls9{letter-spacing:-0.252000px;}
.ls10{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.234000px;}
.ls6{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:3.029760px;}
.ls11{letter-spacing:25.308000px;}
.lsa{letter-spacing:52.668000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.ws10{word-spacing:-54.000000px;}
.wsc{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws9{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.734000px;}
.wse{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.906000px;}
.wsa{word-spacing:-12.888000px;}
.ws8{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.ws4{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-3.307680px;}
._8{margin-left:-2.242320px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._a{width:2.970000px;}
._b{width:4.104000px;}
._f{width:5.177760px;}
._10{width:6.210000px;}
._5{width:7.830000px;}
._11{width:9.180000px;}
._12{width:10.478400px;}
._9{width:11.664000px;}
._c{width:14.850000px;}
._d{width:15.876000px;}
._4{width:17.118000px;}
._3{width:18.502320px;}
._e{width:19.512000px;}
._13{width:20.772000px;}
._1a{width:22.055040px;}
._14{width:23.058000px;}
._19{width:24.570000px;}
._1e{width:26.460000px;}
._1b{width:28.051200px;}
._16{width:29.607360px;}
._15{width:30.780000px;}
._6{width:32.688000px;}
._1d{width:33.906000px;}
._1f{width:35.478000px;}
._21{width:36.866640px;}
._1c{width:38.139360px;}
._26{width:39.312000px;}
._18{width:40.437360px;}
._17{width:41.692320px;}
._22{width:42.701040px;}
._30{width:44.397360px;}
._23{width:45.468000px;}
._29{width:46.548000px;}
._2a{width:47.686320px;}
._24{width:53.298000px;}
._25{width:55.013040px;}
._31{width:60.534000px;}
._32{width:61.750080px;}
._2f{width:63.504000px;}
._2e{width:64.584000px;}
._34{width:69.390000px;}
._27{width:70.938000px;}
._28{width:72.177360px;}
._2d{width:80.406000px;}
._20{width:94.896000px;}
._33{width:96.174000px;}
._2c{width:153.090000px;}
._2b{width:225.072000px;}
._2{width:391.163760px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs9{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y11c{bottom:5.205000px;}
.y159{bottom:5.220000px;}
.y160{bottom:5.250000px;}
.y1af{bottom:5.265000px;}
.y15d{bottom:5.400000px;}
.y11e{bottom:5.565000px;}
.y30{bottom:5.580000px;}
.y1b0{bottom:5.625000px;}
.y141{bottom:5.940000px;}
.y146{bottom:6.300000px;}
.y147{bottom:6.840000px;}
.y143{bottom:7.020000px;}
.y148{bottom:7.200000px;}
.y144{bottom:7.380000px;}
.y14e{bottom:23.025000px;}
.y158{bottom:23.040000px;}
.y15c{bottom:23.220000px;}
.y15f{bottom:23.250000px;}
.y2f{bottom:23.400000px;}
.y32{bottom:23.580000px;}
.y150{bottom:40.845000px;}
.y153{bottom:41.025000px;}
.y157{bottom:41.040000px;}
.y151{bottom:41.205000px;}
.y154{bottom:41.385000px;}
.y2e{bottom:50.220000px;}
.y57{bottom:58.500000px;}
.y156{bottom:58.860000px;}
.y15a{bottom:59.220000px;}
.y2d{bottom:68.040000px;}
.y4{bottom:76.860000px;}
.y56{bottom:77.220000px;}
.y2c{bottom:86.040000px;}
.y49{bottom:91.080000px;}
.yd2{bottom:96.840000px;}
.y15b{bottom:99.000000px;}
.yf6{bottom:99.540000px;}
.yad{bottom:99.720000px;}
.y8c{bottom:99.900000px;}
.y1ac{bottom:102.780000px;}
.y2b{bottom:103.860000px;}
.y1ee{bottom:104.940000px;}
.y6{bottom:105.120000px;}
.y48{bottom:108.900000px;}
.yd1{bottom:114.660000px;}
.y17c{bottom:117.360000px;}
.yf5{bottom:117.540000px;}
.y8b{bottom:117.720000px;}
.y1ab{bottom:120.780000px;}
.y125{bottom:121.140000px;}
.y2a{bottom:121.710000px;}
.y47{bottom:126.900000px;}
.yd0{bottom:132.480000px;}
.y1ce{bottom:135.000000px;}
.y155{bottom:136.260000px;}
.y1aa{bottom:138.600000px;}
.y124{bottom:138.960000px;}
.y29{bottom:139.530000px;}
.y17b{bottom:141.120000px;}
.yac{bottom:144.180000px;}
.yf4{bottom:144.360000px;}
.y46{bottom:144.720000px;}
.y1ed{bottom:149.940000px;}
.ycf{bottom:150.300000px;}
.y1cd{bottom:153.000000px;}
.y53{bottom:153.720000px;}
.y1a9{bottom:156.420000px;}
.y123{bottom:156.780000px;}
.y28{bottom:157.350000px;}
.y45{bottom:162.540000px;}
.y1ec{bottom:167.940000px;}
.yce{bottom:168.120000px;}
.y52{bottom:171.540000px;}
.yab{bottom:172.800000px;}
.y1a8{bottom:174.240000px;}
.y27{bottom:175.350000px;}
.y1cc{bottom:179.820000px;}
.y44{bottom:180.360000px;}
.y122{bottom:183.600000px;}
.y1eb{bottom:185.760000px;}
.ycd{bottom:185.940000px;}
.y51{bottom:189.360000px;}
.y1a7{bottom:192.060000px;}
.y26{bottom:193.170000px;}
.y1cb{bottom:197.640000px;}
.y43{bottom:198.180000px;}
.y1ea{bottom:203.580000px;}
.yaa{bottom:204.120000px;}
.y121{bottom:206.505000px;}
.y50{bottom:207.210000px;}
.y152{bottom:209.205000px;}
.y1a6{bottom:209.910000px;}
.y25{bottom:210.990000px;}
.ycc{bottom:212.610000px;}
.y1ca{bottom:215.490000px;}
.y8a{bottom:216.030000px;}
.y1e9{bottom:221.430000px;}
.ya9{bottom:221.970000px;}
.y42{bottom:225.030000px;}
.y120{bottom:225.765000px;}
.y1a5{bottom:227.910000px;}
.y24{bottom:228.810000px;}
.y89{bottom:234.030000px;}
.y1e8{bottom:239.250000px;}
.ycb{bottom:239.790000px;}
.ya8{bottom:239.970000px;}
.y1c9{bottom:242.310000px;}
.y41{bottom:243.030000px;}
.y11f{bottom:245.205000px;}
.y1a4{bottom:245.730000px;}
.y23{bottom:246.630000px;}
.y88{bottom:251.850000px;}
.y1e7{bottom:257.070000px;}
.yca{bottom:257.610000px;}
.ya7{bottom:257.790000px;}
.y1c8{bottom:260.130000px;}
.y40{bottom:260.850000px;}
.y1a3{bottom:263.550000px;}
.y16{bottom:264.090000px;}
.y14f{bottom:264.285000px;}
.y22{bottom:264.450000px;}
.y11d{bottom:264.465000px;}
.y87{bottom:269.670000px;}
.y1e6{bottom:275.070000px;}
.yc9{bottom:275.430000px;}
.ya6{bottom:275.610000px;}
.y3f{bottom:278.670000px;}
.y21{bottom:282.450000px;}
.y11b{bottom:283.905000px;}
.y1c7{bottom:287.130000px;}
.y86{bottom:287.490000px;}
.y1a2{bottom:290.370000px;}
.y15{bottom:290.910000px;}
.y1e5{bottom:292.890000px;}
.yc8{bottom:293.250000px;}
.ya5{bottom:293.430000px;}
.y3e{bottom:296.490000px;}
.y20{bottom:300.270000px;}
.y1c6{bottom:304.950000px;}
.y85{bottom:305.310000px;}
.y1a1{bottom:308.190000px;}
.y11a{bottom:308.550000px;}
.y1e4{bottom:310.710000px;}
.yc7{bottom:311.070000px;}
.ya4{bottom:311.250000px;}
.y17a{bottom:311.430000px;}
.y3d{bottom:314.310000px;}
.y14{bottom:317.730000px;}
.y1f{bottom:318.090000px;}
.y14d{bottom:319.365000px;}
.y1c5{bottom:322.770000px;}
.y84{bottom:323.130000px;}
.y1a0{bottom:326.190000px;}
.y1e3{bottom:328.530000px;}
.ya3{bottom:329.070000px;}
.y179{bottom:329.250000px;}
.y3c{bottom:332.310000px;}
.y1e{bottom:335.910000px;}
.y104{bottom:339.690000px;}
.y83{bottom:341.130000px;}
.y119{bottom:341.670000px;}
.y19f{bottom:344.010000px;}
.y13{bottom:344.370000px;}
.yc6{bottom:346.890000px;}
.ya2{bottom:347.070000px;}
.y1c4{bottom:349.590000px;}
.y3b{bottom:350.130000px;}
.y1d{bottom:353.775000px;}
.y1e2{bottom:355.350000px;}
.y82{bottom:358.950000px;}
.y118{bottom:359.490000px;}
.y14c{bottom:361.830000px;}
.yc5{bottom:364.710000px;}
.ya1{bottom:364.890000px;}
.y1c3{bottom:367.410000px;}
.y3a{bottom:367.950000px;}
.y12{bottom:371.595000px;}
.y1c{bottom:371.775000px;}
.y1e1{bottom:373.350000px;}
.y178{bottom:374.070000px;}
.y81{bottom:376.770000px;}
.y4f{bottom:376.950000px;}
.y117{bottom:377.310000px;}
.y19e{bottom:379.650000px;}
.ya0{bottom:382.710000px;}
.y14b{bottom:384.510000px;}
.y39{bottom:385.770000px;}
.y1b{bottom:389.595000px;}
.yc4{bottom:391.170000px;}
.y177{bottom:391.890000px;}
.y1c2{bottom:394.410000px;}
.y80{bottom:394.590000px;}
.y4e{bottom:394.770000px;}
.y116{bottom:395.130000px;}
.y19d{bottom:397.470000px;}
.y11{bottom:398.415000px;}
.y1e0{bottom:400.170000px;}
.y9f{bottom:400.530000px;}
.y14a{bottom:402.330000px;}
.y38{bottom:403.590000px;}
.y1a{bottom:407.415000px;}
.yf3{bottom:412.050000px;}
.y1c1{bottom:412.230000px;}
.y7f{bottom:412.410000px;}
.y4d{bottom:412.590000px;}
.y115{bottom:413.130000px;}
.y19c{bottom:415.290000px;}
.y176{bottom:415.470000px;}
.y10{bottom:416.235000px;}
.y1df{bottom:417.990000px;}
.y9e{bottom:418.350000px;}
.y37{bottom:421.410000px;}
.y149{bottom:424.650000px;}
.y19{bottom:425.235000px;}
.yf2{bottom:429.870000px;}
.y1c0{bottom:430.050000px;}
.y4c{bottom:430.410000px;}
.y114{bottom:430.950000px;}
.y19b{bottom:433.290000px;}
.y103{bottom:433.830000px;}
.y9d{bottom:436.350000px;}
.y36{bottom:439.410000px;}
.yf{bottom:442.695000px;}
.y18{bottom:443.055000px;}
.y1de{bottom:444.855000px;}
.y1bf{bottom:447.915000px;}
.y7e{bottom:448.275000px;}
.y4b{bottom:448.455000px;}
.y113{bottom:448.815000px;}
.y19a{bottom:451.155000px;}
.y102{bottom:451.875000px;}
.y9c{bottom:454.215000px;}
.yf1{bottom:456.375000px;}
.y35{bottom:457.275000px;}
.ye{bottom:460.515000px;}
.y17{bottom:460.875000px;}
.y1dd{bottom:462.675000px;}
.y7d{bottom:466.095000px;}
.y4a{bottom:466.275000px;}
.y112{bottom:466.635000px;}
.y145{bottom:468.435000px;}
.y199{bottom:468.975000px;}
.y101{bottom:469.695000px;}
.yc3{bottom:472.035000px;}
.y1be{bottom:474.735000px;}
.y34{bottom:479.055000px;}
.y1dc{bottom:480.495000px;}
.y9b{bottom:480.675000px;}
.yf0{bottom:483.555000px;}
.y33{bottom:487.515000px;}
.yc2{bottom:489.855000px;}
.y1bd{bottom:492.555000px;}
.y142{bottom:492.915000px;}
.y111{bottom:493.455000px;}
.y7c{bottom:494.355000px;}
.y100{bottom:496.515000px;}
.y198{bottom:497.235000px;}
.yef{bottom:501.555000px;}
.y1db{bottom:507.495000px;}
.yc1{bottom:507.675000px;}
.y9a{bottom:507.855000px;}
.y31{bottom:513.975000px;}
.y110{bottom:517.215000px;}
.y140{bottom:518.475000px;}
.yee{bottom:519.375000px;}
.y1bc{bottom:519.555000px;}
.yff{bottom:520.275000px;}
.y1da{bottom:525.315000px;}
.yc0{bottom:525.495000px;}
.y7b{bottom:525.675000px;}
.y197{bottom:528.555000px;}
.yed{bottom:537.195000px;}
.y1bb{bottom:537.375000px;}
.y1d9{bottom:543.135000px;}
.y7a{bottom:543.495000px;}
.y196{bottom:546.555000px;}
.y13f{bottom:548.715000px;}
.y139{bottom:550.875000px;}
.yec{bottom:555.015000px;}
.y1ba{bottom:555.195000px;}
.yd{bottom:559.515000px;}
.y1d8{bottom:560.955000px;}
.ybf{bottom:561.315000px;}
.y79{bottom:561.495000px;}
.y195{bottom:564.375000px;}
.y13e{bottom:566.535000px;}
.y175{bottom:567.975000px;}
.y138{bottom:570.135000px;}
.yeb{bottom:572.835000px;}
.ybe{bottom:579.135000px;}
.y78{bottom:579.315000px;}
.y1b9{bottom:582.015000px;}
.y194{bottom:582.195000px;}
.y13d{bottom:584.355000px;}
.y174{bottom:585.795000px;}
.y1d7{bottom:587.775000px;}
.ybd{bottom:596.955000px;}
.y77{bottom:597.135000px;}
.y1b8{bottom:599.835000px;}
.y193{bottom:600.015000px;}
.yea{bottom:601.275000px;}
.y173{bottom:603.615000px;}
.y1d6{bottom:605.775000px;}
.y13c{bottom:606.675000px;}
.ybc{bottom:614.775000px;}
.y76{bottom:614.955000px;}
.y1b7{bottom:617.655000px;}
.y192{bottom:617.835000px;}
.y1d5{bottom:623.595000px;}
.y13b{bottom:624.495000px;}
.y172{bottom:630.435000px;}
.ye9{bottom:632.595000px;}
.y75{bottom:632.775000px;}
.y191{bottom:635.655000px;}
.ybb{bottom:641.775000px;}
.y13a{bottom:643.755000px;}
.y1b6{bottom:644.655000px;}
.ye8{bottom:650.415000px;}
.y74{bottom:650.775000px;}
.y190{bottom:653.655000px;}
.y171{bottom:654.195000px;}
.yba{bottom:659.595000px;}
.y99{bottom:659.775000px;}
.y1b5{bottom:662.475000px;}
.ye7{bottom:668.235000px;}
.y73{bottom:668.595000px;}
.y18f{bottom:671.475000px;}
.y137{bottom:674.535000px;}
.yb9{bottom:677.445000px;}
.y98{bottom:677.625000px;}
.ye6{bottom:686.085000px;}
.y72{bottom:686.445000px;}
.y18e{bottom:689.325000px;}
.yb8{bottom:695.265000px;}
.y97{bottom:695.445000px;}
.y136{bottom:697.245000px;}
.y10f{bottom:702.645000px;}
.ye5{bottom:703.905000px;}
.yfe{bottom:704.085000px;}
.y71{bottom:704.265000px;}
.y18d{bottom:707.145000px;}
.y1d4{bottom:712.905000px;}
.yb7{bottom:713.085000px;}
.y96{bottom:713.265000px;}
.y135{bottom:715.065000px;}
.y10e{bottom:720.645000px;}
.y1b4{bottom:724.965000px;}
.yfd{bottom:727.845000px;}
.ye4{bottom:730.545000px;}
.yb6{bottom:730.905000px;}
.y70{bottom:731.085000px;}
.y134{bottom:732.885000px;}
.y18c{bottom:733.965000px;}
.y10d{bottom:738.465000px;}
.yfc{bottom:748.545000px;}
.y1d3{bottom:748.725000px;}
.y6f{bottom:748.905000px;}
.y133{bottom:750.885000px;}
.y18b{bottom:751.965000px;}
.ye3{bottom:757.725000px;}
.y10c{bottom:765.285000px;}
.y6e{bottom:766.905000px;}
.y132{bottom:768.705000px;}
.y18a{bottom:769.785000px;}
.yb5{bottom:775.365000px;}
.ye2{bottom:775.545000px;}
.y6d{bottom:784.725000px;}
.y189{bottom:787.605000px;}
.y10b{bottom:788.865000px;}
.y131{bottom:791.025000px;}
.y170{bottom:792.645000px;}
.ye1{bottom:793.365000px;}
.y1b3{bottom:798.045000px;}
.y6c{bottom:802.545000px;}
.y188{bottom:805.425000px;}
.y130{bottom:808.845000px;}
.ye0{bottom:811.185000px;}
.y16f{bottom:819.825000px;}
.y6b{bottom:820.365000px;}
.y187{bottom:823.245000px;}
.y12f{bottom:826.665000px;}
.ydf{bottom:829.185000px;}
.y1b2{bottom:829.365000px;}
.y16e{bottom:837.645000px;}
.y6a{bottom:838.185000px;}
.y186{bottom:841.065000px;}
.y95{bottom:847.185000px;}
.y12e{bottom:848.985000px;}
.y16d{bottom:855.465000px;}
.yde{bottom:855.645000px;}
.y1d2{bottom:856.005000px;}
.y69{bottom:856.185000px;}
.y185{bottom:859.065000px;}
.yfb{bottom:864.825000px;}
.y94{bottom:865.185000px;}
.y1d1{bottom:873.825000px;}
.y68{bottom:874.005000px;}
.y16b{bottom:874.545000px;}
.y184{bottom:876.885000px;}
.y1b1{bottom:878.325000px;}
.y12d{bottom:881.925000px;}
.yfa{bottom:882.645000px;}
.ydd{bottom:882.825000px;}
.y93{bottom:883.005000px;}
.y1d0{bottom:891.645000px;}
.y67{bottom:891.825000px;}
.y16a{bottom:893.985000px;}
.y183{bottom:894.705000px;}
.yf9{bottom:900.465000px;}
.ydc{bottom:900.645000px;}
.y92{bottom:900.825000px;}
.y1ae{bottom:906.585000px;}
.y1cf{bottom:909.465000px;}
.y66{bottom:909.645000px;}
.y182{bottom:912.570000px;}
.y169{bottom:913.290000px;}
.y12c{bottom:914.730000px;}
.ydb{bottom:918.510000px;}
.y91{bottom:918.690000px;}
.yf8{bottom:927.330000px;}
.y65{bottom:927.510000px;}
.y181{bottom:930.390000px;}
.y168{bottom:932.730000px;}
.y1ad{bottom:935.070000px;}
.yda{bottom:936.330000px;}
.y90{bottom:936.510000px;}
.yb4{bottom:945.330000px;}
.y12b{bottom:947.670000px;}
.y180{bottom:948.390000px;}
.yf7{bottom:951.090000px;}
.y167{bottom:951.990000px;}
.y64{bottom:954.330000px;}
.y10a{bottom:963.150000px;}
.yb3{bottom:963.330000px;}
.y17f{bottom:966.210000px;}
.yd9{bottom:972.150000px;}
.y63{bottom:972.330000px;}
.y12a{bottom:980.610000px;}
.y109{bottom:980.970000px;}
.yb2{bottom:981.150000px;}
.y17e{bottom:984.030000px;}
.y166{bottom:989.250000px;}
.yd8{bottom:989.970000px;}
.y62{bottom:990.150000px;}
.yb1{bottom:998.970000px;}
.y108{bottom:1007.430000px;}
.y16c{bottom:1007.790000px;}
.y61{bottom:1007.970000px;}
.y17d{bottom:1012.290000px;}
.y129{bottom:1013.370000px;}
.yd7{bottom:1016.430000px;}
.yb0{bottom:1016.790000px;}
.y60{bottom:1025.790000px;}
.y165{bottom:1026.510000px;}
.yaf{bottom:1034.610000px;}
.y8f{bottom:1034.790000px;}
.y5f{bottom:1043.610000px;}
.y164{bottom:1045.770000px;}
.y128{bottom:1046.310000px;}
.y8e{bottom:1052.610000px;}
.yc{bottom:1054.050000px;}
.y5e{bottom:1061.610000px;}
.y163{bottom:1065.210000px;}
.y107{bottom:1070.430000px;}
.y8d{bottom:1070.610000px;}
.yb{bottom:1074.570000px;}
.yae{bottom:1079.070000px;}
.yd6{bottom:1079.430000px;}
.y162{bottom:1084.470000px;}
.y106{bottom:1088.250000px;}
.y5d{bottom:1088.430000px;}
.yd5{bottom:1097.250000px;}
.y161{bottom:1103.910000px;}
.ya{bottom:1104.450000px;}
.y5c{bottom:1106.250000px;}
.y127{bottom:1112.010000px;}
.y5{bottom:1112.940000px;}
.yd4{bottom:1115.070000px;}
.y5b{bottom:1124.070000px;}
.y9{bottom:1132.350000px;}
.yd3{bottom:1132.890000px;}
.y15e{bottom:1140.990000px;}
.y5a{bottom:1141.890000px;}
.y126{bottom:1144.770000px;}
.y105{bottom:1150.740000px;}
.y59{bottom:1159.740000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y58{bottom:1177.740000px;}
.y2{bottom:1181.520000px;}
.y55{bottom:1191.060000px;}
.y7{bottom:1191.240000px;}
.y1{bottom:1196.820000px;}
.y54{bottom:1198.080000px;}
.h12{height:5.805000px;}
.h14{height:17.666016px;}
.h16{height:17.805000px;}
.h21{height:17.820000px;}
.h23{height:17.856000px;}
.h17{height:23.025000px;}
.h19{height:23.925000px;}
.h18{height:24.105000px;}
.h24{height:26.820000px;}
.h25{height:26.856000px;}
.hb{height:35.332031px;}
.h1a{height:35.625000px;}
.h20{height:35.640000px;}
.h1e{height:35.818500px;}
.h22{height:35.820000px;}
.h1f{height:35.856000px;}
.hf{height:37.705078px;}
.h10{height:44.805000px;}
.h5{height:47.344922px;}
.h13{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h26{height:52.971680px;}
.he{height:52.998047px;}
.h1b{height:53.445000px;}
.h1c{height:53.625000px;}
.h27{height:53.868164px;}
.hd{height:54.421875px;}
.h15{height:55.503491px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h1d{height:71.496000px;}
.h11{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:482.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w13{width:85.356000px;}
.w15{width:87.480000px;}
.wb{width:107.089500px;}
.wf{width:107.265000px;}
.we{width:107.985000px;}
.wc{width:108.021000px;}
.wd{width:108.036000px;}
.w12{width:128.700000px;}
.w10{width:128.880000px;}
.w11{width:129.636000px;}
.w14{width:166.890000px;}
.w3{width:210.133500px;}
.w6{width:215.119500px;}
.w8{width:215.295000px;}
.w7{width:216.030000px;}
.wa{width:227.175000px;}
.w9{width:249.540000px;}
.w4{width:536.505000px;}
.w5{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.098500px;}
.x3{left:12.090000px;}
.x2d{left:46.620000px;}
.x1{left:54.000000px;}
.x9{left:72.901500px;}
.x11{left:81.000000px;}
.xc{left:95.256000px;}
.x6{left:104.796000px;}
.x12{left:108.036000px;}
.x1c{left:123.346500px;}
.x2e{left:131.796000px;}
.x22{left:208.305000px;}
.x25{left:230.445000px;}
.x28{left:252.210000px;}
.x8{left:258.150000px;}
.xb{left:283.755000px;}
.x1b{left:295.095000px;}
.x2f{left:298.695000px;}
.x24{left:301.935000px;}
.x7{left:332.715000px;}
.x1d{left:338.475000px;}
.x1f{left:342.075000px;}
.x20{left:346.575000px;}
.x17{left:369.615000px;}
.x15{left:379.875000px;}
.x29{left:381.855000px;}
.x16{left:387.435000px;}
.x2c{left:390.855000px;}
.x14{left:405.795000px;}
.x10{left:438.195000px;}
.x26{left:446.520000px;}
.x23{left:457.860000px;}
.xd{left:473.505000px;}
.x31{left:500.505000px;}
.x2a{left:511.485000px;}
.xe{left:514.725000px;}
.x30{left:527.505000px;}
.x18{left:537.945000px;}
.x1e{left:554.520000px;}
.x2b{left:641.130000px;}
.x27{left:662.550000px;}
.xf{left:680.550000px;}
.x13{left:785.490000px;}
.x21{left:791.250000px;}
.x1a{left:810.360000px;}
.x19{left:830.880000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls7{letter-spacing:-2.400000pt;}
.lsb{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.528000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.239467pt;}
.ls9{letter-spacing:-0.224000pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.208000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:2.693120pt;}
.ls11{letter-spacing:22.496000pt;}
.lsa{letter-spacing:46.816000pt;}
.ls0{letter-spacing:946.186667pt;}
.ws10{word-spacing:-48.000000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws9{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.208000pt;}
.wse{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.472000pt;}
.wsa{word-spacing:-11.456000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-2.940160pt;}
._8{margin-left:-1.993173pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._a{width:2.640000pt;}
._b{width:3.648000pt;}
._f{width:4.602453pt;}
._10{width:5.520000pt;}
._5{width:6.960000pt;}
._11{width:8.160000pt;}
._12{width:9.314133pt;}
._9{width:10.368000pt;}
._c{width:13.200000pt;}
._d{width:14.112000pt;}
._4{width:15.216000pt;}
._3{width:16.446507pt;}
._e{width:17.344000pt;}
._13{width:18.464000pt;}
._1a{width:19.604480pt;}
._14{width:20.496000pt;}
._19{width:21.840000pt;}
._1e{width:23.520000pt;}
._1b{width:24.934400pt;}
._16{width:26.317653pt;}
._15{width:27.360000pt;}
._6{width:29.056000pt;}
._1d{width:30.138667pt;}
._1f{width:31.536000pt;}
._21{width:32.770347pt;}
._1c{width:33.901653pt;}
._26{width:34.944000pt;}
._18{width:35.944320pt;}
._17{width:37.059840pt;}
._22{width:37.956480pt;}
._30{width:39.464320pt;}
._23{width:40.416000pt;}
._29{width:41.376000pt;}
._2a{width:42.387840pt;}
._24{width:47.376000pt;}
._25{width:48.900480pt;}
._31{width:53.808000pt;}
._32{width:54.888960pt;}
._2f{width:56.448000pt;}
._2e{width:57.408000pt;}
._34{width:61.680000pt;}
._27{width:63.056000pt;}
._28{width:64.157653pt;}
._2d{width:71.472000pt;}
._20{width:84.352000pt;}
._33{width:85.488000pt;}
._2c{width:136.080000pt;}
._2b{width:200.064000pt;}
._2{width:347.701120pt;}
.fs8{font-size:5.120000pt;}
.fs9{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:4.626667pt;}
.y159{bottom:4.640000pt;}
.y160{bottom:4.666667pt;}
.y1af{bottom:4.680000pt;}
.y15d{bottom:4.800000pt;}
.y11e{bottom:4.946667pt;}
.y30{bottom:4.960000pt;}
.y1b0{bottom:5.000000pt;}
.y141{bottom:5.280000pt;}
.y146{bottom:5.600000pt;}
.y147{bottom:6.080000pt;}
.y143{bottom:6.240000pt;}
.y148{bottom:6.400000pt;}
.y144{bottom:6.560000pt;}
.y14e{bottom:20.466667pt;}
.y158{bottom:20.480000pt;}
.y15c{bottom:20.640000pt;}
.y15f{bottom:20.666667pt;}
.y2f{bottom:20.800000pt;}
.y32{bottom:20.960000pt;}
.y150{bottom:36.306667pt;}
.y153{bottom:36.466667pt;}
.y157{bottom:36.480000pt;}
.y151{bottom:36.626667pt;}
.y154{bottom:36.786667pt;}
.y2e{bottom:44.640000pt;}
.y57{bottom:52.000000pt;}
.y156{bottom:52.320000pt;}
.y15a{bottom:52.640000pt;}
.y2d{bottom:60.480000pt;}
.y4{bottom:68.320000pt;}
.y56{bottom:68.640000pt;}
.y2c{bottom:76.480000pt;}
.y49{bottom:80.960000pt;}
.yd2{bottom:86.080000pt;}
.y15b{bottom:88.000000pt;}
.yf6{bottom:88.480000pt;}
.yad{bottom:88.640000pt;}
.y8c{bottom:88.800000pt;}
.y1ac{bottom:91.360000pt;}
.y2b{bottom:92.320000pt;}
.y1ee{bottom:93.280000pt;}
.y6{bottom:93.440000pt;}
.y48{bottom:96.800000pt;}
.yd1{bottom:101.920000pt;}
.y17c{bottom:104.320000pt;}
.yf5{bottom:104.480000pt;}
.y8b{bottom:104.640000pt;}
.y1ab{bottom:107.360000pt;}
.y125{bottom:107.680000pt;}
.y2a{bottom:108.186667pt;}
.y47{bottom:112.800000pt;}
.yd0{bottom:117.760000pt;}
.y1ce{bottom:120.000000pt;}
.y155{bottom:121.120000pt;}
.y1aa{bottom:123.200000pt;}
.y124{bottom:123.520000pt;}
.y29{bottom:124.026667pt;}
.y17b{bottom:125.440000pt;}
.yac{bottom:128.160000pt;}
.yf4{bottom:128.320000pt;}
.y46{bottom:128.640000pt;}
.y1ed{bottom:133.280000pt;}
.ycf{bottom:133.600000pt;}
.y1cd{bottom:136.000000pt;}
.y53{bottom:136.640000pt;}
.y1a9{bottom:139.040000pt;}
.y123{bottom:139.360000pt;}
.y28{bottom:139.866667pt;}
.y45{bottom:144.480000pt;}
.y1ec{bottom:149.280000pt;}
.yce{bottom:149.440000pt;}
.y52{bottom:152.480000pt;}
.yab{bottom:153.600000pt;}
.y1a8{bottom:154.880000pt;}
.y27{bottom:155.866667pt;}
.y1cc{bottom:159.840000pt;}
.y44{bottom:160.320000pt;}
.y122{bottom:163.200000pt;}
.y1eb{bottom:165.120000pt;}
.ycd{bottom:165.280000pt;}
.y51{bottom:168.320000pt;}
.y1a7{bottom:170.720000pt;}
.y26{bottom:171.706667pt;}
.y1cb{bottom:175.680000pt;}
.y43{bottom:176.160000pt;}
.y1ea{bottom:180.960000pt;}
.yaa{bottom:181.440000pt;}
.y121{bottom:183.560000pt;}
.y50{bottom:184.186667pt;}
.y152{bottom:185.960000pt;}
.y1a6{bottom:186.586667pt;}
.y25{bottom:187.546667pt;}
.ycc{bottom:188.986667pt;}
.y1ca{bottom:191.546667pt;}
.y8a{bottom:192.026667pt;}
.y1e9{bottom:196.826667pt;}
.ya9{bottom:197.306667pt;}
.y42{bottom:200.026667pt;}
.y120{bottom:200.680000pt;}
.y1a5{bottom:202.586667pt;}
.y24{bottom:203.386667pt;}
.y89{bottom:208.026667pt;}
.y1e8{bottom:212.666667pt;}
.ycb{bottom:213.146667pt;}
.ya8{bottom:213.306667pt;}
.y1c9{bottom:215.386667pt;}
.y41{bottom:216.026667pt;}
.y11f{bottom:217.960000pt;}
.y1a4{bottom:218.426667pt;}
.y23{bottom:219.226667pt;}
.y88{bottom:223.866667pt;}
.y1e7{bottom:228.506667pt;}
.yca{bottom:228.986667pt;}
.ya7{bottom:229.146667pt;}
.y1c8{bottom:231.226667pt;}
.y40{bottom:231.866667pt;}
.y1a3{bottom:234.266667pt;}
.y16{bottom:234.746667pt;}
.y14f{bottom:234.920000pt;}
.y22{bottom:235.066667pt;}
.y11d{bottom:235.080000pt;}
.y87{bottom:239.706667pt;}
.y1e6{bottom:244.506667pt;}
.yc9{bottom:244.826667pt;}
.ya6{bottom:244.986667pt;}
.y3f{bottom:247.706667pt;}
.y21{bottom:251.066667pt;}
.y11b{bottom:252.360000pt;}
.y1c7{bottom:255.226667pt;}
.y86{bottom:255.546667pt;}
.y1a2{bottom:258.106667pt;}
.y15{bottom:258.586667pt;}
.y1e5{bottom:260.346667pt;}
.yc8{bottom:260.666667pt;}
.ya5{bottom:260.826667pt;}
.y3e{bottom:263.546667pt;}
.y20{bottom:266.906667pt;}
.y1c6{bottom:271.066667pt;}
.y85{bottom:271.386667pt;}
.y1a1{bottom:273.946667pt;}
.y11a{bottom:274.266667pt;}
.y1e4{bottom:276.186667pt;}
.yc7{bottom:276.506667pt;}
.ya4{bottom:276.666667pt;}
.y17a{bottom:276.826667pt;}
.y3d{bottom:279.386667pt;}
.y14{bottom:282.426667pt;}
.y1f{bottom:282.746667pt;}
.y14d{bottom:283.880000pt;}
.y1c5{bottom:286.906667pt;}
.y84{bottom:287.226667pt;}
.y1a0{bottom:289.946667pt;}
.y1e3{bottom:292.026667pt;}
.ya3{bottom:292.506667pt;}
.y179{bottom:292.666667pt;}
.y3c{bottom:295.386667pt;}
.y1e{bottom:298.586667pt;}
.y104{bottom:301.946667pt;}
.y83{bottom:303.226667pt;}
.y119{bottom:303.706667pt;}
.y19f{bottom:305.786667pt;}
.y13{bottom:306.106667pt;}
.yc6{bottom:308.346667pt;}
.ya2{bottom:308.506667pt;}
.y1c4{bottom:310.746667pt;}
.y3b{bottom:311.226667pt;}
.y1d{bottom:314.466667pt;}
.y1e2{bottom:315.866667pt;}
.y82{bottom:319.066667pt;}
.y118{bottom:319.546667pt;}
.y14c{bottom:321.626667pt;}
.yc5{bottom:324.186667pt;}
.ya1{bottom:324.346667pt;}
.y1c3{bottom:326.586667pt;}
.y3a{bottom:327.066667pt;}
.y12{bottom:330.306667pt;}
.y1c{bottom:330.466667pt;}
.y1e1{bottom:331.866667pt;}
.y178{bottom:332.506667pt;}
.y81{bottom:334.906667pt;}
.y4f{bottom:335.066667pt;}
.y117{bottom:335.386667pt;}
.y19e{bottom:337.466667pt;}
.ya0{bottom:340.186667pt;}
.y14b{bottom:341.786667pt;}
.y39{bottom:342.906667pt;}
.y1b{bottom:346.306667pt;}
.yc4{bottom:347.706667pt;}
.y177{bottom:348.346667pt;}
.y1c2{bottom:350.586667pt;}
.y80{bottom:350.746667pt;}
.y4e{bottom:350.906667pt;}
.y116{bottom:351.226667pt;}
.y19d{bottom:353.306667pt;}
.y11{bottom:354.146667pt;}
.y1e0{bottom:355.706667pt;}
.y9f{bottom:356.026667pt;}
.y14a{bottom:357.626667pt;}
.y38{bottom:358.746667pt;}
.y1a{bottom:362.146667pt;}
.yf3{bottom:366.266667pt;}
.y1c1{bottom:366.426667pt;}
.y7f{bottom:366.586667pt;}
.y4d{bottom:366.746667pt;}
.y115{bottom:367.226667pt;}
.y19c{bottom:369.146667pt;}
.y176{bottom:369.306667pt;}
.y10{bottom:369.986667pt;}
.y1df{bottom:371.546667pt;}
.y9e{bottom:371.866667pt;}
.y37{bottom:374.586667pt;}
.y149{bottom:377.466667pt;}
.y19{bottom:377.986667pt;}
.yf2{bottom:382.106667pt;}
.y1c0{bottom:382.266667pt;}
.y4c{bottom:382.586667pt;}
.y114{bottom:383.066667pt;}
.y19b{bottom:385.146667pt;}
.y103{bottom:385.626667pt;}
.y9d{bottom:387.866667pt;}
.y36{bottom:390.586667pt;}
.yf{bottom:393.506667pt;}
.y18{bottom:393.826667pt;}
.y1de{bottom:395.426667pt;}
.y1bf{bottom:398.146667pt;}
.y7e{bottom:398.466667pt;}
.y4b{bottom:398.626667pt;}
.y113{bottom:398.946667pt;}
.y19a{bottom:401.026667pt;}
.y102{bottom:401.666667pt;}
.y9c{bottom:403.746667pt;}
.yf1{bottom:405.666667pt;}
.y35{bottom:406.466667pt;}
.ye{bottom:409.346667pt;}
.y17{bottom:409.666667pt;}
.y1dd{bottom:411.266667pt;}
.y7d{bottom:414.306667pt;}
.y4a{bottom:414.466667pt;}
.y112{bottom:414.786667pt;}
.y145{bottom:416.386667pt;}
.y199{bottom:416.866667pt;}
.y101{bottom:417.506667pt;}
.yc3{bottom:419.586667pt;}
.y1be{bottom:421.986667pt;}
.y34{bottom:425.826667pt;}
.y1dc{bottom:427.106667pt;}
.y9b{bottom:427.266667pt;}
.yf0{bottom:429.826667pt;}
.y33{bottom:433.346667pt;}
.yc2{bottom:435.426667pt;}
.y1bd{bottom:437.826667pt;}
.y142{bottom:438.146667pt;}
.y111{bottom:438.626667pt;}
.y7c{bottom:439.426667pt;}
.y100{bottom:441.346667pt;}
.y198{bottom:441.986667pt;}
.yef{bottom:445.826667pt;}
.y1db{bottom:451.106667pt;}
.yc1{bottom:451.266667pt;}
.y9a{bottom:451.426667pt;}
.y31{bottom:456.866667pt;}
.y110{bottom:459.746667pt;}
.y140{bottom:460.866667pt;}
.yee{bottom:461.666667pt;}
.y1bc{bottom:461.826667pt;}
.yff{bottom:462.466667pt;}
.y1da{bottom:466.946667pt;}
.yc0{bottom:467.106667pt;}
.y7b{bottom:467.266667pt;}
.y197{bottom:469.826667pt;}
.yed{bottom:477.506667pt;}
.y1bb{bottom:477.666667pt;}
.y1d9{bottom:482.786667pt;}
.y7a{bottom:483.106667pt;}
.y196{bottom:485.826667pt;}
.y13f{bottom:487.746667pt;}
.y139{bottom:489.666667pt;}
.yec{bottom:493.346667pt;}
.y1ba{bottom:493.506667pt;}
.yd{bottom:497.346667pt;}
.y1d8{bottom:498.626667pt;}
.ybf{bottom:498.946667pt;}
.y79{bottom:499.106667pt;}
.y195{bottom:501.666667pt;}
.y13e{bottom:503.586667pt;}
.y175{bottom:504.866667pt;}
.y138{bottom:506.786667pt;}
.yeb{bottom:509.186667pt;}
.ybe{bottom:514.786667pt;}
.y78{bottom:514.946667pt;}
.y1b9{bottom:517.346667pt;}
.y194{bottom:517.506667pt;}
.y13d{bottom:519.426667pt;}
.y174{bottom:520.706667pt;}
.y1d7{bottom:522.466667pt;}
.ybd{bottom:530.626667pt;}
.y77{bottom:530.786667pt;}
.y1b8{bottom:533.186667pt;}
.y193{bottom:533.346667pt;}
.yea{bottom:534.466667pt;}
.y173{bottom:536.546667pt;}
.y1d6{bottom:538.466667pt;}
.y13c{bottom:539.266667pt;}
.ybc{bottom:546.466667pt;}
.y76{bottom:546.626667pt;}
.y1b7{bottom:549.026667pt;}
.y192{bottom:549.186667pt;}
.y1d5{bottom:554.306667pt;}
.y13b{bottom:555.106667pt;}
.y172{bottom:560.386667pt;}
.ye9{bottom:562.306667pt;}
.y75{bottom:562.466667pt;}
.y191{bottom:565.026667pt;}
.ybb{bottom:570.466667pt;}
.y13a{bottom:572.226667pt;}
.y1b6{bottom:573.026667pt;}
.ye8{bottom:578.146667pt;}
.y74{bottom:578.466667pt;}
.y190{bottom:581.026667pt;}
.y171{bottom:581.506667pt;}
.yba{bottom:586.306667pt;}
.y99{bottom:586.466667pt;}
.y1b5{bottom:588.866667pt;}
.ye7{bottom:593.986667pt;}
.y73{bottom:594.306667pt;}
.y18f{bottom:596.866667pt;}
.y137{bottom:599.586667pt;}
.yb9{bottom:602.173333pt;}
.y98{bottom:602.333333pt;}
.ye6{bottom:609.853333pt;}
.y72{bottom:610.173333pt;}
.y18e{bottom:612.733333pt;}
.yb8{bottom:618.013333pt;}
.y97{bottom:618.173333pt;}
.y136{bottom:619.773333pt;}
.y10f{bottom:624.573333pt;}
.ye5{bottom:625.693333pt;}
.yfe{bottom:625.853333pt;}
.y71{bottom:626.013333pt;}
.y18d{bottom:628.573333pt;}
.y1d4{bottom:633.693333pt;}
.yb7{bottom:633.853333pt;}
.y96{bottom:634.013333pt;}
.y135{bottom:635.613333pt;}
.y10e{bottom:640.573333pt;}
.y1b4{bottom:644.413333pt;}
.yfd{bottom:646.973333pt;}
.ye4{bottom:649.373333pt;}
.yb6{bottom:649.693333pt;}
.y70{bottom:649.853333pt;}
.y134{bottom:651.453333pt;}
.y18c{bottom:652.413333pt;}
.y10d{bottom:656.413333pt;}
.yfc{bottom:665.373333pt;}
.y1d3{bottom:665.533333pt;}
.y6f{bottom:665.693333pt;}
.y133{bottom:667.453333pt;}
.y18b{bottom:668.413333pt;}
.ye3{bottom:673.533333pt;}
.y10c{bottom:680.253333pt;}
.y6e{bottom:681.693333pt;}
.y132{bottom:683.293333pt;}
.y18a{bottom:684.253333pt;}
.yb5{bottom:689.213333pt;}
.ye2{bottom:689.373333pt;}
.y6d{bottom:697.533333pt;}
.y189{bottom:700.093333pt;}
.y10b{bottom:701.213333pt;}
.y131{bottom:703.133333pt;}
.y170{bottom:704.573333pt;}
.ye1{bottom:705.213333pt;}
.y1b3{bottom:709.373333pt;}
.y6c{bottom:713.373333pt;}
.y188{bottom:715.933333pt;}
.y130{bottom:718.973333pt;}
.ye0{bottom:721.053333pt;}
.y16f{bottom:728.733333pt;}
.y6b{bottom:729.213333pt;}
.y187{bottom:731.773333pt;}
.y12f{bottom:734.813333pt;}
.ydf{bottom:737.053333pt;}
.y1b2{bottom:737.213333pt;}
.y16e{bottom:744.573333pt;}
.y6a{bottom:745.053333pt;}
.y186{bottom:747.613333pt;}
.y95{bottom:753.053333pt;}
.y12e{bottom:754.653333pt;}
.y16d{bottom:760.413333pt;}
.yde{bottom:760.573333pt;}
.y1d2{bottom:760.893333pt;}
.y69{bottom:761.053333pt;}
.y185{bottom:763.613333pt;}
.yfb{bottom:768.733333pt;}
.y94{bottom:769.053333pt;}
.y1d1{bottom:776.733333pt;}
.y68{bottom:776.893333pt;}
.y16b{bottom:777.373333pt;}
.y184{bottom:779.453333pt;}
.y1b1{bottom:780.733333pt;}
.y12d{bottom:783.933333pt;}
.yfa{bottom:784.573333pt;}
.ydd{bottom:784.733333pt;}
.y93{bottom:784.893333pt;}
.y1d0{bottom:792.573333pt;}
.y67{bottom:792.733333pt;}
.y16a{bottom:794.653333pt;}
.y183{bottom:795.293333pt;}
.yf9{bottom:800.413333pt;}
.ydc{bottom:800.573333pt;}
.y92{bottom:800.733333pt;}
.y1ae{bottom:805.853333pt;}
.y1cf{bottom:808.413333pt;}
.y66{bottom:808.573333pt;}
.y182{bottom:811.173333pt;}
.y169{bottom:811.813333pt;}
.y12c{bottom:813.093333pt;}
.ydb{bottom:816.453333pt;}
.y91{bottom:816.613333pt;}
.yf8{bottom:824.293333pt;}
.y65{bottom:824.453333pt;}
.y181{bottom:827.013333pt;}
.y168{bottom:829.093333pt;}
.y1ad{bottom:831.173333pt;}
.yda{bottom:832.293333pt;}
.y90{bottom:832.453333pt;}
.yb4{bottom:840.293333pt;}
.y12b{bottom:842.373333pt;}
.y180{bottom:843.013333pt;}
.yf7{bottom:845.413333pt;}
.y167{bottom:846.213333pt;}
.y64{bottom:848.293333pt;}
.y10a{bottom:856.133333pt;}
.yb3{bottom:856.293333pt;}
.y17f{bottom:858.853333pt;}
.yd9{bottom:864.133333pt;}
.y63{bottom:864.293333pt;}
.y12a{bottom:871.653333pt;}
.y109{bottom:871.973333pt;}
.yb2{bottom:872.133333pt;}
.y17e{bottom:874.693333pt;}
.y166{bottom:879.333333pt;}
.yd8{bottom:879.973333pt;}
.y62{bottom:880.133333pt;}
.yb1{bottom:887.973333pt;}
.y108{bottom:895.493333pt;}
.y16c{bottom:895.813333pt;}
.y61{bottom:895.973333pt;}
.y17d{bottom:899.813333pt;}
.y129{bottom:900.773333pt;}
.yd7{bottom:903.493333pt;}
.yb0{bottom:903.813333pt;}
.y60{bottom:911.813333pt;}
.y165{bottom:912.453333pt;}
.yaf{bottom:919.653333pt;}
.y8f{bottom:919.813333pt;}
.y5f{bottom:927.653333pt;}
.y164{bottom:929.573333pt;}
.y128{bottom:930.053333pt;}
.y8e{bottom:935.653333pt;}
.yc{bottom:936.933333pt;}
.y5e{bottom:943.653333pt;}
.y163{bottom:946.853333pt;}
.y107{bottom:951.493333pt;}
.y8d{bottom:951.653333pt;}
.yb{bottom:955.173333pt;}
.yae{bottom:959.173333pt;}
.yd6{bottom:959.493333pt;}
.y162{bottom:963.973333pt;}
.y106{bottom:967.333333pt;}
.y5d{bottom:967.493333pt;}
.yd5{bottom:975.333333pt;}
.y161{bottom:981.253333pt;}
.ya{bottom:981.733333pt;}
.y5c{bottom:983.333333pt;}
.y127{bottom:988.453333pt;}
.y5{bottom:989.280000pt;}
.yd4{bottom:991.173333pt;}
.y5b{bottom:999.173333pt;}
.y9{bottom:1006.533333pt;}
.yd3{bottom:1007.013333pt;}
.y15e{bottom:1014.213333pt;}
.y5a{bottom:1015.013333pt;}
.y126{bottom:1017.573333pt;}
.y105{bottom:1022.880000pt;}
.y59{bottom:1030.880000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y58{bottom:1046.880000pt;}
.y2{bottom:1050.240000pt;}
.y55{bottom:1058.720000pt;}
.y7{bottom:1058.880000pt;}
.y1{bottom:1063.840000pt;}
.y54{bottom:1064.960000pt;}
.h12{height:5.160000pt;}
.h14{height:15.703125pt;}
.h16{height:15.826667pt;}
.h21{height:15.840000pt;}
.h23{height:15.872000pt;}
.h17{height:20.466667pt;}
.h19{height:21.266667pt;}
.h18{height:21.426667pt;}
.h24{height:23.840000pt;}
.h25{height:23.872000pt;}
.hb{height:31.406250pt;}
.h1a{height:31.666667pt;}
.h20{height:31.680000pt;}
.h1e{height:31.838667pt;}
.h22{height:31.840000pt;}
.h1f{height:31.872000pt;}
.hf{height:33.515625pt;}
.h10{height:39.826667pt;}
.h5{height:42.084375pt;}
.h13{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h26{height:47.085938pt;}
.he{height:47.109375pt;}
.h1b{height:47.506667pt;}
.h1c{height:47.666667pt;}
.h27{height:47.882812pt;}
.hd{height:48.375000pt;}
.h15{height:49.336436pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1d{height:63.552000pt;}
.h11{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:428.533333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w13{width:75.872000pt;}
.w15{width:77.760000pt;}
.wb{width:95.190667pt;}
.wf{width:95.346667pt;}
.we{width:95.986667pt;}
.wc{width:96.018667pt;}
.wd{width:96.032000pt;}
.w12{width:114.400000pt;}
.w10{width:114.560000pt;}
.w11{width:115.232000pt;}
.w14{width:148.346667pt;}
.w3{width:186.785333pt;}
.w6{width:191.217333pt;}
.w8{width:191.373333pt;}
.w7{width:192.026667pt;}
.wa{width:201.933333pt;}
.w9{width:221.813333pt;}
.w4{width:476.893333pt;}
.w5{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.198667pt;}
.x3{left:10.746667pt;}
.x2d{left:41.440000pt;}
.x1{left:48.000000pt;}
.x9{left:64.801333pt;}
.x11{left:72.000000pt;}
.xc{left:84.672000pt;}
.x6{left:93.152000pt;}
.x12{left:96.032000pt;}
.x1c{left:109.641333pt;}
.x2e{left:117.152000pt;}
.x22{left:185.160000pt;}
.x25{left:204.840000pt;}
.x28{left:224.186667pt;}
.x8{left:229.466667pt;}
.xb{left:252.226667pt;}
.x1b{left:262.306667pt;}
.x2f{left:265.506667pt;}
.x24{left:268.386667pt;}
.x7{left:295.746667pt;}
.x1d{left:300.866667pt;}
.x1f{left:304.066667pt;}
.x20{left:308.066667pt;}
.x17{left:328.546667pt;}
.x15{left:337.666667pt;}
.x29{left:339.426667pt;}
.x16{left:344.386667pt;}
.x2c{left:347.426667pt;}
.x14{left:360.706667pt;}
.x10{left:389.506667pt;}
.x26{left:396.906667pt;}
.x23{left:406.986667pt;}
.xd{left:420.893333pt;}
.x31{left:444.893333pt;}
.x2a{left:454.653333pt;}
.xe{left:457.533333pt;}
.x30{left:468.893333pt;}
.x18{left:478.173333pt;}
.x1e{left:492.906667pt;}
.x2b{left:569.893333pt;}
.x27{left:588.933333pt;}
.xf{left:604.933333pt;}
.x13{left:698.213333pt;}
.x21{left:703.333333pt;}
.x1a{left:720.320000pt;}
.x19{left:738.560000pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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