
    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_c9959549fcb61214d0f8cab7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0b6535b62947dbfb629ba30a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_5d7c7a1033299c48ab51dd99.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_abf8223c8438c71fcedd1a04.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_b256e961a211b45673d7a790.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e737163490060ada6dca2b0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_7d7552bf68c6fc26c09a691a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.350400px;}
.lsd{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls1{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.341400px;}
.ls14{letter-spacing:0.408000px;}
.ls13{letter-spacing:0.504000px;}
.ls12{letter-spacing:1.584000px;}
.ls15{letter-spacing:1.872000px;}
.lsc{letter-spacing:8.784000px;}
.ls8{letter-spacing:21.029760px;}
.ls7{letter-spacing:40.469760px;}
.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;}
}
.ws5{word-spacing:-23.760120px;}
.ws6{word-spacing:-23.418720px;}
.ws0{word-spacing:-23.381280px;}
.ws8{word-spacing:-23.068320px;}
.ws12{word-spacing:-21.888000px;}
.wsf{word-spacing:-20.520000px;}
.ws3{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws9{word-spacing:-19.944000px;}
.wsa{word-spacing:-19.872000px;}
.wsb{word-spacing:-19.800000px;}
.wse{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.440000px;}
.wsc{word-spacing:-19.296000px;}
.wsd{word-spacing:-19.152000px;}
.ws11{word-spacing:-15.228000px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-21.498000px;}
._1b{margin-left:-19.332000px;}
._17{margin-left:-17.556000px;}
._1a{margin-left:-16.548000px;}
._15{margin-left:-14.208480px;}
._4{margin-left:-13.176000px;}
._14{margin-left:-11.607000px;}
._19{margin-left:-10.478640px;}
._2{margin-left:-9.288000px;}
._18{margin-left:-7.980000px;}
._16{margin-left:-6.300000px;}
._e{margin-left:-4.788000px;}
._6{margin-left:-3.672000px;}
._7{margin-left:-2.592000px;}
._0{margin-left:-1.394160px;}
._1{width:1.141440px;}
._b{width:2.202240px;}
._c{width:3.749760px;}
._d{width:4.879440px;}
._8{width:6.192000px;}
._12{width:7.776000px;}
._a{width:9.000000px;}
._9{width:10.224000px;}
._2b{width:11.232000px;}
._22{width:12.251280px;}
._23{width:13.333440px;}
._21{width:14.514240px;}
._1e{width:15.650160px;}
._1d{width:16.704000px;}
._1f{width:18.108000px;}
._29{width:21.096000px;}
._2a{width:22.464000px;}
._28{width:23.714160px;}
._25{width:25.200000px;}
._24{width:26.496000px;}
._1c{width:31.983840px;}
._27{width:41.904000px;}
._26{width:43.128000px;}
._20{width:49.824000px;}
._11{width:89.112000px;}
._f{width:198.864000px;}
._10{width:211.716000px;}
._5{width:290.424000px;}
._3{width:371.844000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,73,125);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:21.945000px;}
.y2{bottom:33.840000px;}
.yb{bottom:56.700000px;}
.yf1{bottom:112.176000px;}
.y5b{bottom:112.536000px;}
.y183{bottom:116.316000px;}
.y17a{bottom:123.696000px;}
.yb2{bottom:125.136000px;}
.y1cf{bottom:127.656000px;}
.y1ec{bottom:128.916000px;}
.y1b9{bottom:131.256000px;}
.y150{bottom:134.496000px;}
.y2a{bottom:135.045000px;}
.y163{bottom:135.396000px;}
.y3c{bottom:137.925000px;}
.y127{bottom:142.056000px;}
.yf0{bottom:143.136000px;}
.y1b6{bottom:146.916000px;}
.y182{bottom:147.276000px;}
.y101{bottom:148.356000px;}
.y5a{bottom:148.896000px;}
.y18d{bottom:149.256000px;}
.y1eb{bottom:149.616000px;}
.y1b0{bottom:153.390000px;}
.y111{bottom:154.290000px;}
.y179{bottom:154.830000px;}
.y7f{bottom:156.270000px;}
.y144{bottom:158.250000px;}
.y126{bottom:159.150000px;}
.y1b8{bottom:162.390000px;}
.y14f{bottom:165.450000px;}
.y162{bottom:166.350000px;}
.y16b{bottom:167.250000px;}
.y1ea{bottom:170.310000px;}
.y15e{bottom:172.290000px;}
.yef{bottom:174.270000px;}
.y1ce{bottom:176.610000px;}
.y1b5{bottom:177.870000px;}
.y181{bottom:178.410000px;}
.y98{bottom:178.590000px;}
.y100{bottom:179.490000px;}
.y18c{bottom:180.390000px;}
.y59{bottom:182.550000px;}
.ydb{bottom:184.350000px;}
.y110{bottom:185.250000px;}
.y178{bottom:185.790000px;}
.y7e{bottom:187.230000px;}
.y143{bottom:189.390000px;}
.y1e9{bottom:191.010000px;}
.yc8{bottom:193.350000px;}
.y207{bottom:194.790000px;}
.y14e{bottom:196.590000px;}
.y161{bottom:197.490000px;}
.y116{bottom:198.390000px;}
.y15d{bottom:203.250000px;}
.yee{bottom:205.230000px;}
.y1cd{bottom:207.750000px;}
.y1b4{bottom:209.010000px;}
.y180{bottom:209.370000px;}
.y97{bottom:209.550000px;}
.yff{bottom:210.450000px;}
.y18b{bottom:211.350000px;}
.y58{bottom:213.690000px;}
.yda{bottom:215.490000px;}
.y10f{bottom:216.390000px;}
.y177{bottom:216.930000px;}
.y7d{bottom:218.370000px;}
.y1a4{bottom:220.170000px;}
.y142{bottom:220.350000px;}
.yc7{bottom:224.490000px;}
.y115{bottom:229.350000px;}
.y15c{bottom:234.390000px;}
.yed{bottom:236.370000px;}
.y1cc{bottom:238.710000px;}
.y96{bottom:240.510000px;}
.yfe{bottom:241.590000px;}
.y18a{bottom:242.490000px;}
.y1b3{bottom:243.750000px;}
.y57{bottom:244.650000px;}
.yd9{bottom:246.450000px;}
.y10e{bottom:247.350000px;}
.y7c{bottom:249.330000px;}
.y141{bottom:251.490000px;}
.y14d{bottom:254.550000px;}
.y1a3{bottom:254.730000px;}
.yc6{bottom:255.450000px;}
.y17f{bottom:258.510000px;}
.y1e8{bottom:259.410000px;}
.y123{bottom:259.590000px;}
.y16a{bottom:260.490000px;}
.y206{bottom:263.190000px;}
.y15b{bottom:265.350000px;}
.y176{bottom:265.890000px;}
.yb1{bottom:267.330000px;}
.y1cb{bottom:269.850000px;}
.y95{bottom:271.650000px;}
.y1a2{bottom:271.830000px;}
.yfd{bottom:272.550000px;}
.y1b7{bottom:273.450000px;}
.y56{bottom:275.790000px;}
.yd8{bottom:277.590000px;}
.y10d{bottom:278.490000px;}
.y1e7{bottom:280.110000px;}
.y140{bottom:282.450000px;}
.y1b2{bottom:283.170000px;}
.y205{bottom:283.890000px;}
.yec{bottom:285.330000px;}
.y17e{bottom:289.470000px;}
.y122{bottom:290.550000px;}
.y169{bottom:291.450000px;}
.y19f{bottom:293.790000px;}
.y1af{bottom:295.590000px;}
.y15a{bottom:296.490000px;}
.y175{bottom:297.030000px;}
.y7b{bottom:298.470000px;}
.y1ca{bottom:300.810000px;}
.yfc{bottom:303.510000px;}
.y211{bottom:303.690000px;}
.yc5{bottom:304.590000px;}
.y186{bottom:308.550000px;}
.y55{bottom:309.270000px;}
.y10c{bottom:309.450000px;}
.y13f{bottom:313.590000px;}
.yeb{bottom:316.470000px;}
.y17d{bottom:320.610000px;}
.y121{bottom:321.510000px;}
.y16c{bottom:322.590000px;}
.y19e{bottom:324.750000px;}
.y9{bottom:325.650000px;}
.yd7{bottom:326.550000px;}
.y159{bottom:327.450000px;}
.y1e6{bottom:327.810000px;}
.y174{bottom:327.990000px;}
.y7a{bottom:329.430000px;}
.y94{bottom:329.610000px;}
.y1c9{bottom:331.770000px;}
.y29{bottom:334.290000px;}
.yfb{bottom:334.650000px;}
.yc4{bottom:335.550000px;}
.y14c{bottom:339.555000px;}
.y10b{bottom:340.635000px;}
.y54{bottom:342.975000px;}
.y13e{bottom:344.595000px;}
.y194{bottom:347.295000px;}
.yea{bottom:347.475000px;}
.y204{bottom:352.335000px;}
.y120{bottom:352.695000px;}
.y189{bottom:353.595000px;}
.y8{bottom:354.675000px;}
.y28{bottom:355.035000px;}
.y17c{bottom:355.395000px;}
.y19d{bottom:355.935000px;}
.yd6{bottom:357.555000px;}
.y3b{bottom:357.735000px;}
.y173{bottom:359.175000px;}
.y79{bottom:360.615000px;}
.yc3{bottom:366.555000px;}
.y14b{bottom:370.695000px;}
.y10a{bottom:371.595000px;}
.y17b{bottom:372.495000px;}
.y203{bottom:373.035000px;}
.y53{bottom:374.115000px;}
.y1e5{bottom:375.555000px;}
.y27{bottom:375.735000px;}
.y158{bottom:376.635000px;}
.y3a{bottom:378.435000px;}
.ye9{bottom:378.615000px;}
.y1c8{bottom:380.955000px;}
.y7{bottom:383.655000px;}
.y188{bottom:384.555000px;}
.yd5{bottom:388.695000px;}
.y172{bottom:390.135000px;}
.y78{bottom:391.575000px;}
.yfa{bottom:392.655000px;}
.y13d{bottom:393.555000px;}
.y1e4{bottom:396.255000px;}
.y26{bottom:396.435000px;}
.yc2{bottom:397.695000px;}
.y39{bottom:399.135000px;}
.y14a{bottom:401.655000px;}
.y114{bottom:402.555000px;}
.y19c{bottom:404.895000px;}
.y52{bottom:405.075000px;}
.y157{bottom:407.595000px;}
.y193{bottom:409.395000px;}
.ye8{bottom:409.575000px;}
.y1c7{bottom:411.915000px;}
.y6{bottom:412.635000px;}
.y93{bottom:414.795000px;}
.y187{bottom:415.695000px;}
.y1e3{bottom:416.955000px;}
.y25{bottom:417.135000px;}
.yb0{bottom:418.575000px;}
.yd4{bottom:419.655000px;}
.y38{bottom:419.835000px;}
.y109{bottom:420.555000px;}
.y202{bottom:420.735000px;}
.y171{bottom:421.275000px;}
.y77{bottom:422.715000px;}
.y13c{bottom:424.695000px;}
.y149{bottom:432.795000px;}
.y113{bottom:433.695000px;}
.y19b{bottom:436.035000px;}
.y51{bottom:436.215000px;}
.y1ae{bottom:437.655000px;}
.y156{bottom:438.555000px;}
.y37{bottom:440.535000px;}
.y201{bottom:441.435000px;}
.y1c6{bottom:443.055000px;}
.y92{bottom:445.755000px;}
.yc1{bottom:446.655000px;}
.yd3{bottom:450.795000px;}
.y108{bottom:451.695000px;}
.y170{bottom:452.235000px;}
.y76{bottom:453.675000px;}
.y13b{bottom:455.655000px;}
.y24{bottom:455.835000px;}
.y1e2{bottom:458.355000px;}
.y192{bottom:458.535000px;}
.y36{bottom:461.235000px;}
.y210{bottom:462.135000px;}
.y148{bottom:463.755000px;}
.y112{bottom:464.655000px;}
.y19a{bottom:466.995000px;}
.y50{bottom:467.175000px;}
.ye7{bottom:467.715000px;}
.y1ad{bottom:468.795000px;}
.y155{bottom:469.695000px;}
.y1c5{bottom:474.015000px;}
.y23{bottom:476.535000px;}
.y91{bottom:476.895000px;}
.yc0{bottom:477.795000px;}
.yd2{bottom:481.755000px;}
.y107{bottom:482.655000px;}
.y13a{bottom:486.795000px;}
.y200{bottom:489.135000px;}
.y191{bottom:489.495000px;}
.y185{bottom:494.895000px;}
.y168{bottom:495.795000px;}
.y22{bottom:497.235000px;}
.y4f{bottom:498.315000px;}
.y1ac{bottom:499.755000px;}
.y35{bottom:499.935000px;}
.y154{bottom:500.655000px;}
.yaf{bottom:503.715000px;}
.y1e1{bottom:506.055000px;}
.y11f{bottom:507.855000px;}
.ybf{bottom:508.755000px;}
.y1ff{bottom:509.835000px;}
.y16f{bottom:510.195000px;}
.y75{bottom:511.815000px;}
.yd1{bottom:512.895000px;}
.y106{bottom:513.795000px;}
.y199{bottom:516.135000px;}
.y1a1{bottom:516.675000px;}
.y139{bottom:517.755000px;}
.y21{bottom:517.935000px;}
.y34{bottom:520.635000px;}
.y1c4{bottom:523.155000px;}
.y90{bottom:525.855000px;}
.y167{bottom:526.755000px;}
.y4e{bottom:529.275000px;}
.y1fe{bottom:530.535000px;}
.y1ab{bottom:530.895000px;}
.y153{bottom:531.795000px;}
.yae{bottom:534.675000px;}
.y20{bottom:538.635000px;}
.y11e{bottom:538.995000px;}
.ybe{bottom:539.895000px;}
.y33{bottom:541.335000px;}
.y147{bottom:543.855000px;}
.y105{bottom:544.755000px;}
.y198{bottom:547.095000px;}
.y1a0{bottom:547.815000px;}
.y138{bottom:548.895000px;}
.y20f{bottom:551.235000px;}
.y190{bottom:551.595000px;}
.ye6{bottom:552.675000px;}
.y1c3{bottom:554.115000px;}
.y8f{bottom:556.995000px;}
.y166{bottom:557.895000px;}
.yd0{bottom:561.855000px;}
.y32{bottom:562.035000px;}
.y4d{bottom:562.755000px;}
.yad{bottom:565.815000px;}
.ybd{bottom:570.855000px;}
.y1e0{bottom:574.455000px;}
.y146{bottom:574.995000px;}
.y104{bottom:575.895000px;}
.y1f{bottom:577.335000px;}
.y197{bottom:578.235000px;}
.y137{bottom:579.855000px;}
.ye5{bottom:583.815000px;}
.y184{bottom:583.995000px;}
.y16e{bottom:584.175000px;}
.y1c2{bottom:585.255000px;}
.y18f{bottom:586.515000px;}
.y8e{bottom:587.955000px;}
.y165{bottom:588.855000px;}
.ycf{bottom:592.995000px;}
.ya6{bottom:593.895000px;}
.y1df{bottom:595.155000px;}
.y4c{bottom:596.595000px;}
.y74{bottom:596.775000px;}
.y1e{bottom:598.035000px;}
.y1fd{bottom:598.935000px;}
.y31{bottom:600.735000px;}
.y16d{bottom:601.095000px;}
.yf9{bottom:601.995000px;}
.y18e{bottom:603.435000px;}
.y145{bottom:605.985000px;}
.y103{bottom:606.885000px;}
.y136{bottom:611.025000px;}
.ye4{bottom:614.805000px;}
.y1de{bottom:615.885000px;}
.y1c1{bottom:616.245000px;}
.y1d{bottom:618.765000px;}
.y8d{bottom:619.125000px;}
.y20e{bottom:619.665000px;}
.ybc{bottom:620.025000px;}
.y30{bottom:621.465000px;}
.yce{bottom:623.985000px;}
.ya5{bottom:624.885000px;}
.y66{bottom:626.145000px;}
.y4b{bottom:627.585000px;}
.y73{bottom:627.945000px;}
.yf8{bottom:632.985000px;}
.y5{bottom:637.665000px;}
.y102{bottom:638.025000px;}
.y1c{bottom:639.465000px;}
.y1aa{bottom:641.985000px;}
.y2f{bottom:642.165000px;}
.ye3{bottom:645.945000px;}
.y1fc{bottom:646.665000px;}
.y11d{bottom:650.085000px;}
.ybb{bottom:650.985000px;}
.ycd{bottom:655.125000px;}
.ya4{bottom:656.025000px;}
.y4a{bottom:658.725000px;}
.y72{bottom:658.905000px;}
.y135{bottom:659.985000px;}
.y1b{bottom:660.165000px;}
.y196{bottom:660.705000px;}
.y2e{bottom:662.865000px;}
.y1dd{bottom:663.585000px;}
.yf7{bottom:664.125000px;}
.y1c0{bottom:665.385000px;}
.y1fb{bottom:667.365000px;}
.y8c{bottom:668.085000px;}
.y160{bottom:668.985000px;}
.y1a9{bottom:673.125000px;}
.y65{bottom:675.105000px;}
.ye2{bottom:676.905000px;}
.y195{bottom:677.805000px;}
.y11c{bottom:681.225000px;}
.yba{bottom:682.125000px;}
.y1dc{bottom:684.285000px;}
.ycc{bottom:686.085000px;}
.ya3{bottom:686.985000px;}
.y20d{bottom:688.065000px;}
.y71{bottom:690.045000px;}
.y134{bottom:691.125000px;}
.y49{bottom:692.205000px;}
.y1bf{bottom:696.345000px;}
.y1a{bottom:698.865000px;}
.y8b{bottom:699.225000px;}
.y4{bottom:699.405000px;}
.y15f{bottom:700.125000px;}
.y2d{bottom:701.565000px;}
.y1a8{bottom:704.085000px;}
.ye1{bottom:708.045000px;}
.y1b1{bottom:708.225000px;}
.y11b{bottom:712.185000px;}
.yb9{bottom:713.085000px;}
.y1fa{bottom:715.065000px;}
.ycb{bottom:717.225000px;}
.ya2{bottom:718.125000px;}
.y19{bottom:719.565000px;}
.y70{bottom:721.005000px;}
.y133{bottom:722.085000px;}
.y2c{bottom:722.265000px;}
.y64{bottom:724.245000px;}
.y48{bottom:726.045000px;}
.y1be{bottom:727.485000px;}
.y8a{bottom:730.185000px;}
.ydf{bottom:731.085000px;}
.y1db{bottom:731.985000px;}
.y1bc{bottom:735.225000px;}
.y20c{bottom:735.765000px;}
.yac{bottom:739.005000px;}
.y18{bottom:740.265000px;}
.y3{bottom:740.985000px;}
.yb8{bottom:744.225000px;}
.yca{bottom:748.185000px;}
.ya1{bottom:749.085000px;}
.y6f{bottom:752.145000px;}
.y1da{bottom:752.685000px;}
.y132{bottom:753.225000px;}
.y47{bottom:757.005000px;}
.y17{bottom:760.965000px;}
.y89{bottom:761.325000px;}
.y164{bottom:762.225000px;}
.y1f9{bottom:762.765000px;}
.y1bb{bottom:766.185000px;}
.y152{bottom:767.085000px;}
.yab{bottom:770.145000px;}
.y63{bottom:773.205000px;}
.y1d9{bottom:773.385000px;}
.yf6{bottom:775.185000px;}
.y1bd{bottom:779.325000px;}
.ya0{bottom:780.225000px;}
.y16{bottom:781.665000px;}
.y1d0{bottom:783.105000px;}
.y1f8{bottom:783.465000px;}
.y131{bottom:784.185000px;}
.y46{bottom:790.485000px;}
.y11a{bottom:792.285000px;}
.yb7{bottom:793.185000px;}
.y1d8{bottom:794.085000px;}
.y1ba{bottom:797.325000px;}
.y151{bottom:798.225000px;}
.y6e{bottom:801.105000px;}
.y15{bottom:802.365000px;}
.y1f7{bottom:804.165000px;}
.yc9{bottom:806.325000px;}
.y88{bottom:810.285000px;}
.yde{bottom:811.185000px;}
.y130{bottom:815.325000px;}
.y125{bottom:819.105000px;}
.y62{bottom:822.345000px;}
.y14{bottom:823.065000px;}
.y119{bottom:823.425000px;}
.y45{bottom:824.325000px;}
.y1f6{bottom:824.865000px;}
.y9f{bottom:829.185000px;}
.y20b{bottom:831.165000px;}
.y6d{bottom:832.245000px;}
.yf5{bottom:837.285000px;}
.y87{bottom:841.425000px;}
.y1d7{bottom:841.785000px;}
.ydd{bottom:842.325000px;}
.y12f{bottom:846.285000px;}
.y124{bottom:850.245000px;}
.y20a{bottom:851.865000px;}
.y118{bottom:854.385000px;}
.y44{bottom:855.285000px;}
.y9e{bottom:860.325000px;}
.y1d6{bottom:862.485000px;}
.y6c{bottom:863.205000px;}
.y13{bottom:865.365000px;}
.y61{bottom:871.350000px;}
.y86{bottom:872.430000px;}
.y1f5{bottom:872.610000px;}
.ydc{bottom:873.330000px;}
.y12e{bottom:877.470000px;}
.ye0{bottom:881.250000px;}
.y1d5{bottom:883.230000px;}
.y43{bottom:886.470000px;}
.y9d{bottom:891.330000px;}
.y1f4{bottom:893.310000px;}
.yaa{bottom:894.390000px;}
.y85{bottom:903.570000px;}
.y12{bottom:904.290000px;}
.yb6{bottom:904.470000px;}
.y1a7{bottom:908.430000px;}
.y6b{bottom:912.390000px;}
.y117{bottom:912.570000px;}
.y1f3{bottom:914.010000px;}
.yf4{bottom:917.430000px;}
.y42{bottom:919.950000px;}
.y60{bottom:920.310000px;}
.y9c{bottom:922.470000px;}
.y12d{bottom:926.430000px;}
.y1d4{bottom:930.930000px;}
.yb5{bottom:935.430000px;}
.y1a6{bottom:939.570000px;}
.y209{bottom:941.010000px;}
.y11{bottom:942.990000px;}
.y6a{bottom:943.350000px;}
.yf3{bottom:948.570000px;}
.y1d3{bottom:951.630000px;}
.y9b{bottom:953.430000px;}
.y41{bottom:956.130000px;}
.y12c{bottom:957.570000px;}
.y84{bottom:961.530000px;}
.y1f2{bottom:961.710000px;}
.yb4{bottom:966.570000px;}
.y5f{bottom:969.450000px;}
.y1a5{bottom:970.530000px;}
.y69{bottom:974.310000px;}
.ya9{bottom:974.490000px;}
.y10{bottom:981.690000px;}
.y9a{bottom:984.570000px;}
.y12b{bottom:988.530000px;}
.y40{bottom:992.310000px;}
.yb3{bottom:997.530000px;}
.y1d2{bottom:999.330000px;}
.y68{bottom:1005.450000px;}
.y1f1{bottom:1009.410000px;}
.y99{bottom:1015.530000px;}
.y5e{bottom:1018.410000px;}
.y12a{bottom:1019.670000px;}
.y1d1{bottom:1020.030000px;}
.yf{bottom:1020.390000px;}
.y3f{bottom:1028.670000px;}
.y1f0{bottom:1030.110000px;}
.y67{bottom:1036.410000px;}
.ya8{bottom:1036.590000px;}
.y83{bottom:1046.670000px;}
.y129{bottom:1050.630000px;}
.y1ef{bottom:1050.810000px;}
.ye{bottom:1059.090000px;}
.yf2{bottom:1059.630000px;}
.y3e{bottom:1064.850000px;}
.y5d{bottom:1067.550000px;}
.ya7{bottom:1067.730000px;}
.y1ee{bottom:1071.510000px;}
.y82{bottom:1077.630000px;}
.y128{bottom:1081.770000px;}
.yd{bottom:1098.330000px;}
.y208{bottom:1098.510000px;}
.y5c{bottom:1103.550000px;}
.y81{bottom:1108.770000px;}
.y1ed{bottom:1119.210000px;}
.y3d{bottom:1137.030000px;}
.y80{bottom:1139.760000px;}
.yc{bottom:1139.940000px;}
.ya{bottom:1203.660000px;}
.y1{bottom:1224.900000px;}
.h5{height:38.691000px;}
.h6{height:56.320312px;}
.h7{height:64.582031px;}
.h2{height:75.093750px;}
.h3{height:87.859687px;}
.h4{height:112.640625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:668.430000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:10.785000px;}
.x2{left:106.416000px;}
.x8{left:163.845000px;}
.x6{left:166.905000px;}
.x5{left:170.130000px;}
.x9{left:195.690000px;}
.xe{left:439.455000px;}
.x1{left:467.745000px;}
.x4{left:486.105000px;}
.xd{left:507.705000px;}
.xf{left:650.985000px;}
.xb{left:690.450000px;}
.x11{left:797.190000px;}
.xa{left:809.250000px;}
.x3{left:819.150000px;}
.xc{left:828.510000px;}
.x10{left:876.420000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.311467pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.303467pt;}
.ls14{letter-spacing:0.362667pt;}
.ls13{letter-spacing:0.448000pt;}
.ls12{letter-spacing:1.408000pt;}
.ls15{letter-spacing:1.664000pt;}
.lsc{letter-spacing:7.808000pt;}
.ls8{letter-spacing:18.693120pt;}
.ls7{letter-spacing:35.973120pt;}
.ws5{word-spacing:-21.120107pt;}
.ws6{word-spacing:-20.816640pt;}
.ws0{word-spacing:-20.783360pt;}
.ws8{word-spacing:-20.505173pt;}
.ws12{word-spacing:-19.456000pt;}
.wsf{word-spacing:-18.240000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws9{word-spacing:-17.728000pt;}
.wsa{word-spacing:-17.664000pt;}
.wsb{word-spacing:-17.600000pt;}
.wse{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.280000pt;}
.wsc{word-spacing:-17.152000pt;}
.wsd{word-spacing:-17.024000pt;}
.ws11{word-spacing:-13.536000pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-19.109333pt;}
._1b{margin-left:-17.184000pt;}
._17{margin-left:-15.605333pt;}
._1a{margin-left:-14.709333pt;}
._15{margin-left:-12.629760pt;}
._4{margin-left:-11.712000pt;}
._14{margin-left:-10.317333pt;}
._19{margin-left:-9.314347pt;}
._2{margin-left:-8.256000pt;}
._18{margin-left:-7.093333pt;}
._16{margin-left:-5.600000pt;}
._e{margin-left:-4.256000pt;}
._6{margin-left:-3.264000pt;}
._7{margin-left:-2.304000pt;}
._0{margin-left:-1.239253pt;}
._1{width:1.014613pt;}
._b{width:1.957547pt;}
._c{width:3.333120pt;}
._d{width:4.337280pt;}
._8{width:5.504000pt;}
._12{width:6.912000pt;}
._a{width:8.000000pt;}
._9{width:9.088000pt;}
._2b{width:9.984000pt;}
._22{width:10.890027pt;}
._23{width:11.851947pt;}
._21{width:12.901547pt;}
._1e{width:13.911253pt;}
._1d{width:14.848000pt;}
._1f{width:16.096000pt;}
._29{width:18.752000pt;}
._2a{width:19.968000pt;}
._28{width:21.079253pt;}
._25{width:22.400000pt;}
._24{width:23.552000pt;}
._1c{width:28.430080pt;}
._27{width:37.248000pt;}
._26{width:38.336000pt;}
._20{width:44.288000pt;}
._11{width:79.210667pt;}
._f{width:176.768000pt;}
._10{width:188.192000pt;}
._5{width:258.154667pt;}
._3{width:330.528000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:19.506667pt;}
.y2{bottom:30.080000pt;}
.yb{bottom:50.400000pt;}
.yf1{bottom:99.712000pt;}
.y5b{bottom:100.032000pt;}
.y183{bottom:103.392000pt;}
.y17a{bottom:109.952000pt;}
.yb2{bottom:111.232000pt;}
.y1cf{bottom:113.472000pt;}
.y1ec{bottom:114.592000pt;}
.y1b9{bottom:116.672000pt;}
.y150{bottom:119.552000pt;}
.y2a{bottom:120.040000pt;}
.y163{bottom:120.352000pt;}
.y3c{bottom:122.600000pt;}
.y127{bottom:126.272000pt;}
.yf0{bottom:127.232000pt;}
.y1b6{bottom:130.592000pt;}
.y182{bottom:130.912000pt;}
.y101{bottom:131.872000pt;}
.y5a{bottom:132.352000pt;}
.y18d{bottom:132.672000pt;}
.y1eb{bottom:132.992000pt;}
.y1b0{bottom:136.346667pt;}
.y111{bottom:137.146667pt;}
.y179{bottom:137.626667pt;}
.y7f{bottom:138.906667pt;}
.y144{bottom:140.666667pt;}
.y126{bottom:141.466667pt;}
.y1b8{bottom:144.346667pt;}
.y14f{bottom:147.066667pt;}
.y162{bottom:147.866667pt;}
.y16b{bottom:148.666667pt;}
.y1ea{bottom:151.386667pt;}
.y15e{bottom:153.146667pt;}
.yef{bottom:154.906667pt;}
.y1ce{bottom:156.986667pt;}
.y1b5{bottom:158.106667pt;}
.y181{bottom:158.586667pt;}
.y98{bottom:158.746667pt;}
.y100{bottom:159.546667pt;}
.y18c{bottom:160.346667pt;}
.y59{bottom:162.266667pt;}
.ydb{bottom:163.866667pt;}
.y110{bottom:164.666667pt;}
.y178{bottom:165.146667pt;}
.y7e{bottom:166.426667pt;}
.y143{bottom:168.346667pt;}
.y1e9{bottom:169.786667pt;}
.yc8{bottom:171.866667pt;}
.y207{bottom:173.146667pt;}
.y14e{bottom:174.746667pt;}
.y161{bottom:175.546667pt;}
.y116{bottom:176.346667pt;}
.y15d{bottom:180.666667pt;}
.yee{bottom:182.426667pt;}
.y1cd{bottom:184.666667pt;}
.y1b4{bottom:185.786667pt;}
.y180{bottom:186.106667pt;}
.y97{bottom:186.266667pt;}
.yff{bottom:187.066667pt;}
.y18b{bottom:187.866667pt;}
.y58{bottom:189.946667pt;}
.yda{bottom:191.546667pt;}
.y10f{bottom:192.346667pt;}
.y177{bottom:192.826667pt;}
.y7d{bottom:194.106667pt;}
.y1a4{bottom:195.706667pt;}
.y142{bottom:195.866667pt;}
.yc7{bottom:199.546667pt;}
.y115{bottom:203.866667pt;}
.y15c{bottom:208.346667pt;}
.yed{bottom:210.106667pt;}
.y1cc{bottom:212.186667pt;}
.y96{bottom:213.786667pt;}
.yfe{bottom:214.746667pt;}
.y18a{bottom:215.546667pt;}
.y1b3{bottom:216.666667pt;}
.y57{bottom:217.466667pt;}
.yd9{bottom:219.066667pt;}
.y10e{bottom:219.866667pt;}
.y7c{bottom:221.626667pt;}
.y141{bottom:223.546667pt;}
.y14d{bottom:226.266667pt;}
.y1a3{bottom:226.426667pt;}
.yc6{bottom:227.066667pt;}
.y17f{bottom:229.786667pt;}
.y1e8{bottom:230.586667pt;}
.y123{bottom:230.746667pt;}
.y16a{bottom:231.546667pt;}
.y206{bottom:233.946667pt;}
.y15b{bottom:235.866667pt;}
.y176{bottom:236.346667pt;}
.yb1{bottom:237.626667pt;}
.y1cb{bottom:239.866667pt;}
.y95{bottom:241.466667pt;}
.y1a2{bottom:241.626667pt;}
.yfd{bottom:242.266667pt;}
.y1b7{bottom:243.066667pt;}
.y56{bottom:245.146667pt;}
.yd8{bottom:246.746667pt;}
.y10d{bottom:247.546667pt;}
.y1e7{bottom:248.986667pt;}
.y140{bottom:251.066667pt;}
.y1b2{bottom:251.706667pt;}
.y205{bottom:252.346667pt;}
.yec{bottom:253.626667pt;}
.y17e{bottom:257.306667pt;}
.y122{bottom:258.266667pt;}
.y169{bottom:259.066667pt;}
.y19f{bottom:261.146667pt;}
.y1af{bottom:262.746667pt;}
.y15a{bottom:263.546667pt;}
.y175{bottom:264.026667pt;}
.y7b{bottom:265.306667pt;}
.y1ca{bottom:267.386667pt;}
.yfc{bottom:269.786667pt;}
.y211{bottom:269.946667pt;}
.yc5{bottom:270.746667pt;}
.y186{bottom:274.266667pt;}
.y55{bottom:274.906667pt;}
.y10c{bottom:275.066667pt;}
.y13f{bottom:278.746667pt;}
.yeb{bottom:281.306667pt;}
.y17d{bottom:284.986667pt;}
.y121{bottom:285.786667pt;}
.y16c{bottom:286.746667pt;}
.y19e{bottom:288.666667pt;}
.y9{bottom:289.466667pt;}
.yd7{bottom:290.266667pt;}
.y159{bottom:291.066667pt;}
.y1e6{bottom:291.386667pt;}
.y174{bottom:291.546667pt;}
.y7a{bottom:292.826667pt;}
.y94{bottom:292.986667pt;}
.y1c9{bottom:294.906667pt;}
.y29{bottom:297.146667pt;}
.yfb{bottom:297.466667pt;}
.yc4{bottom:298.266667pt;}
.y14c{bottom:301.826667pt;}
.y10b{bottom:302.786667pt;}
.y54{bottom:304.866667pt;}
.y13e{bottom:306.306667pt;}
.y194{bottom:308.706667pt;}
.yea{bottom:308.866667pt;}
.y204{bottom:313.186667pt;}
.y120{bottom:313.506667pt;}
.y189{bottom:314.306667pt;}
.y8{bottom:315.266667pt;}
.y28{bottom:315.586667pt;}
.y17c{bottom:315.906667pt;}
.y19d{bottom:316.386667pt;}
.yd6{bottom:317.826667pt;}
.y3b{bottom:317.986667pt;}
.y173{bottom:319.266667pt;}
.y79{bottom:320.546667pt;}
.yc3{bottom:325.826667pt;}
.y14b{bottom:329.506667pt;}
.y10a{bottom:330.306667pt;}
.y17b{bottom:331.106667pt;}
.y203{bottom:331.586667pt;}
.y53{bottom:332.546667pt;}
.y1e5{bottom:333.826667pt;}
.y27{bottom:333.986667pt;}
.y158{bottom:334.786667pt;}
.y3a{bottom:336.386667pt;}
.ye9{bottom:336.546667pt;}
.y1c8{bottom:338.626667pt;}
.y7{bottom:341.026667pt;}
.y188{bottom:341.826667pt;}
.yd5{bottom:345.506667pt;}
.y172{bottom:346.786667pt;}
.y78{bottom:348.066667pt;}
.yfa{bottom:349.026667pt;}
.y13d{bottom:349.826667pt;}
.y1e4{bottom:352.226667pt;}
.y26{bottom:352.386667pt;}
.yc2{bottom:353.506667pt;}
.y39{bottom:354.786667pt;}
.y14a{bottom:357.026667pt;}
.y114{bottom:357.826667pt;}
.y19c{bottom:359.906667pt;}
.y52{bottom:360.066667pt;}
.y157{bottom:362.306667pt;}
.y193{bottom:363.906667pt;}
.ye8{bottom:364.066667pt;}
.y1c7{bottom:366.146667pt;}
.y6{bottom:366.786667pt;}
.y93{bottom:368.706667pt;}
.y187{bottom:369.506667pt;}
.y1e3{bottom:370.626667pt;}
.y25{bottom:370.786667pt;}
.yb0{bottom:372.066667pt;}
.yd4{bottom:373.026667pt;}
.y38{bottom:373.186667pt;}
.y109{bottom:373.826667pt;}
.y202{bottom:373.986667pt;}
.y171{bottom:374.466667pt;}
.y77{bottom:375.746667pt;}
.y13c{bottom:377.506667pt;}
.y149{bottom:384.706667pt;}
.y113{bottom:385.506667pt;}
.y19b{bottom:387.586667pt;}
.y51{bottom:387.746667pt;}
.y1ae{bottom:389.026667pt;}
.y156{bottom:389.826667pt;}
.y37{bottom:391.586667pt;}
.y201{bottom:392.386667pt;}
.y1c6{bottom:393.826667pt;}
.y92{bottom:396.226667pt;}
.yc1{bottom:397.026667pt;}
.yd3{bottom:400.706667pt;}
.y108{bottom:401.506667pt;}
.y170{bottom:401.986667pt;}
.y76{bottom:403.266667pt;}
.y13b{bottom:405.026667pt;}
.y24{bottom:405.186667pt;}
.y1e2{bottom:407.426667pt;}
.y192{bottom:407.586667pt;}
.y36{bottom:409.986667pt;}
.y210{bottom:410.786667pt;}
.y148{bottom:412.226667pt;}
.y112{bottom:413.026667pt;}
.y19a{bottom:415.106667pt;}
.y50{bottom:415.266667pt;}
.ye7{bottom:415.746667pt;}
.y1ad{bottom:416.706667pt;}
.y155{bottom:417.506667pt;}
.y1c5{bottom:421.346667pt;}
.y23{bottom:423.586667pt;}
.y91{bottom:423.906667pt;}
.yc0{bottom:424.706667pt;}
.yd2{bottom:428.226667pt;}
.y107{bottom:429.026667pt;}
.y13a{bottom:432.706667pt;}
.y200{bottom:434.786667pt;}
.y191{bottom:435.106667pt;}
.y185{bottom:439.906667pt;}
.y168{bottom:440.706667pt;}
.y22{bottom:441.986667pt;}
.y4f{bottom:442.946667pt;}
.y1ac{bottom:444.226667pt;}
.y35{bottom:444.386667pt;}
.y154{bottom:445.026667pt;}
.yaf{bottom:447.746667pt;}
.y1e1{bottom:449.826667pt;}
.y11f{bottom:451.426667pt;}
.ybf{bottom:452.226667pt;}
.y1ff{bottom:453.186667pt;}
.y16f{bottom:453.506667pt;}
.y75{bottom:454.946667pt;}
.yd1{bottom:455.906667pt;}
.y106{bottom:456.706667pt;}
.y199{bottom:458.786667pt;}
.y1a1{bottom:459.266667pt;}
.y139{bottom:460.226667pt;}
.y21{bottom:460.386667pt;}
.y34{bottom:462.786667pt;}
.y1c4{bottom:465.026667pt;}
.y90{bottom:467.426667pt;}
.y167{bottom:468.226667pt;}
.y4e{bottom:470.466667pt;}
.y1fe{bottom:471.586667pt;}
.y1ab{bottom:471.906667pt;}
.y153{bottom:472.706667pt;}
.yae{bottom:475.266667pt;}
.y20{bottom:478.786667pt;}
.y11e{bottom:479.106667pt;}
.ybe{bottom:479.906667pt;}
.y33{bottom:481.186667pt;}
.y147{bottom:483.426667pt;}
.y105{bottom:484.226667pt;}
.y198{bottom:486.306667pt;}
.y1a0{bottom:486.946667pt;}
.y138{bottom:487.906667pt;}
.y20f{bottom:489.986667pt;}
.y190{bottom:490.306667pt;}
.ye6{bottom:491.266667pt;}
.y1c3{bottom:492.546667pt;}
.y8f{bottom:495.106667pt;}
.y166{bottom:495.906667pt;}
.yd0{bottom:499.426667pt;}
.y32{bottom:499.586667pt;}
.y4d{bottom:500.226667pt;}
.yad{bottom:502.946667pt;}
.ybd{bottom:507.426667pt;}
.y1e0{bottom:510.626667pt;}
.y146{bottom:511.106667pt;}
.y104{bottom:511.906667pt;}
.y1f{bottom:513.186667pt;}
.y197{bottom:513.986667pt;}
.y137{bottom:515.426667pt;}
.ye5{bottom:518.946667pt;}
.y184{bottom:519.106667pt;}
.y16e{bottom:519.266667pt;}
.y1c2{bottom:520.226667pt;}
.y18f{bottom:521.346667pt;}
.y8e{bottom:522.626667pt;}
.y165{bottom:523.426667pt;}
.ycf{bottom:527.106667pt;}
.ya6{bottom:527.906667pt;}
.y1df{bottom:529.026667pt;}
.y4c{bottom:530.306667pt;}
.y74{bottom:530.466667pt;}
.y1e{bottom:531.586667pt;}
.y1fd{bottom:532.386667pt;}
.y31{bottom:533.986667pt;}
.y16d{bottom:534.306667pt;}
.yf9{bottom:535.106667pt;}
.y18e{bottom:536.386667pt;}
.y145{bottom:538.653333pt;}
.y103{bottom:539.453333pt;}
.y136{bottom:543.133333pt;}
.ye4{bottom:546.493333pt;}
.y1de{bottom:547.453333pt;}
.y1c1{bottom:547.773333pt;}
.y1d{bottom:550.013333pt;}
.y8d{bottom:550.333333pt;}
.y20e{bottom:550.813333pt;}
.ybc{bottom:551.133333pt;}
.y30{bottom:552.413333pt;}
.yce{bottom:554.653333pt;}
.ya5{bottom:555.453333pt;}
.y66{bottom:556.573333pt;}
.y4b{bottom:557.853333pt;}
.y73{bottom:558.173333pt;}
.yf8{bottom:562.653333pt;}
.y5{bottom:566.813333pt;}
.y102{bottom:567.133333pt;}
.y1c{bottom:568.413333pt;}
.y1aa{bottom:570.653333pt;}
.y2f{bottom:570.813333pt;}
.ye3{bottom:574.173333pt;}
.y1fc{bottom:574.813333pt;}
.y11d{bottom:577.853333pt;}
.ybb{bottom:578.653333pt;}
.ycd{bottom:582.333333pt;}
.ya4{bottom:583.133333pt;}
.y4a{bottom:585.533333pt;}
.y72{bottom:585.693333pt;}
.y135{bottom:586.653333pt;}
.y1b{bottom:586.813333pt;}
.y196{bottom:587.293333pt;}
.y2e{bottom:589.213333pt;}
.y1dd{bottom:589.853333pt;}
.yf7{bottom:590.333333pt;}
.y1c0{bottom:591.453333pt;}
.y1fb{bottom:593.213333pt;}
.y8c{bottom:593.853333pt;}
.y160{bottom:594.653333pt;}
.y1a9{bottom:598.333333pt;}
.y65{bottom:600.093333pt;}
.ye2{bottom:601.693333pt;}
.y195{bottom:602.493333pt;}
.y11c{bottom:605.533333pt;}
.yba{bottom:606.333333pt;}
.y1dc{bottom:608.253333pt;}
.ycc{bottom:609.853333pt;}
.ya3{bottom:610.653333pt;}
.y20d{bottom:611.613333pt;}
.y71{bottom:613.373333pt;}
.y134{bottom:614.333333pt;}
.y49{bottom:615.293333pt;}
.y1bf{bottom:618.973333pt;}
.y1a{bottom:621.213333pt;}
.y8b{bottom:621.533333pt;}
.y4{bottom:621.693333pt;}
.y15f{bottom:622.333333pt;}
.y2d{bottom:623.613333pt;}
.y1a8{bottom:625.853333pt;}
.ye1{bottom:629.373333pt;}
.y1b1{bottom:629.533333pt;}
.y11b{bottom:633.053333pt;}
.yb9{bottom:633.853333pt;}
.y1fa{bottom:635.613333pt;}
.ycb{bottom:637.533333pt;}
.ya2{bottom:638.333333pt;}
.y19{bottom:639.613333pt;}
.y70{bottom:640.893333pt;}
.y133{bottom:641.853333pt;}
.y2c{bottom:642.013333pt;}
.y64{bottom:643.773333pt;}
.y48{bottom:645.373333pt;}
.y1be{bottom:646.653333pt;}
.y8a{bottom:649.053333pt;}
.ydf{bottom:649.853333pt;}
.y1db{bottom:650.653333pt;}
.y1bc{bottom:653.533333pt;}
.y20c{bottom:654.013333pt;}
.yac{bottom:656.893333pt;}
.y18{bottom:658.013333pt;}
.y3{bottom:658.653333pt;}
.yb8{bottom:661.533333pt;}
.yca{bottom:665.053333pt;}
.ya1{bottom:665.853333pt;}
.y6f{bottom:668.573333pt;}
.y1da{bottom:669.053333pt;}
.y132{bottom:669.533333pt;}
.y47{bottom:672.893333pt;}
.y17{bottom:676.413333pt;}
.y89{bottom:676.733333pt;}
.y164{bottom:677.533333pt;}
.y1f9{bottom:678.013333pt;}
.y1bb{bottom:681.053333pt;}
.y152{bottom:681.853333pt;}
.yab{bottom:684.573333pt;}
.y63{bottom:687.293333pt;}
.y1d9{bottom:687.453333pt;}
.yf6{bottom:689.053333pt;}
.y1bd{bottom:692.733333pt;}
.ya0{bottom:693.533333pt;}
.y16{bottom:694.813333pt;}
.y1d0{bottom:696.093333pt;}
.y1f8{bottom:696.413333pt;}
.y131{bottom:697.053333pt;}
.y46{bottom:702.653333pt;}
.y11a{bottom:704.253333pt;}
.yb7{bottom:705.053333pt;}
.y1d8{bottom:705.853333pt;}
.y1ba{bottom:708.733333pt;}
.y151{bottom:709.533333pt;}
.y6e{bottom:712.093333pt;}
.y15{bottom:713.213333pt;}
.y1f7{bottom:714.813333pt;}
.yc9{bottom:716.733333pt;}
.y88{bottom:720.253333pt;}
.yde{bottom:721.053333pt;}
.y130{bottom:724.733333pt;}
.y125{bottom:728.093333pt;}
.y62{bottom:730.973333pt;}
.y14{bottom:731.613333pt;}
.y119{bottom:731.933333pt;}
.y45{bottom:732.733333pt;}
.y1f6{bottom:733.213333pt;}
.y9f{bottom:737.053333pt;}
.y20b{bottom:738.813333pt;}
.y6d{bottom:739.773333pt;}
.yf5{bottom:744.253333pt;}
.y87{bottom:747.933333pt;}
.y1d7{bottom:748.253333pt;}
.ydd{bottom:748.733333pt;}
.y12f{bottom:752.253333pt;}
.y124{bottom:755.773333pt;}
.y20a{bottom:757.213333pt;}
.y118{bottom:759.453333pt;}
.y44{bottom:760.253333pt;}
.y9e{bottom:764.733333pt;}
.y1d6{bottom:766.653333pt;}
.y6c{bottom:767.293333pt;}
.y13{bottom:769.213333pt;}
.y61{bottom:774.533333pt;}
.y86{bottom:775.493333pt;}
.y1f5{bottom:775.653333pt;}
.ydc{bottom:776.293333pt;}
.y12e{bottom:779.973333pt;}
.ye0{bottom:783.333333pt;}
.y1d5{bottom:785.093333pt;}
.y43{bottom:787.973333pt;}
.y9d{bottom:792.293333pt;}
.y1f4{bottom:794.053333pt;}
.yaa{bottom:795.013333pt;}
.y85{bottom:803.173333pt;}
.y12{bottom:803.813333pt;}
.yb6{bottom:803.973333pt;}
.y1a7{bottom:807.493333pt;}
.y6b{bottom:811.013333pt;}
.y117{bottom:811.173333pt;}
.y1f3{bottom:812.453333pt;}
.yf4{bottom:815.493333pt;}
.y42{bottom:817.733333pt;}
.y60{bottom:818.053333pt;}
.y9c{bottom:819.973333pt;}
.y12d{bottom:823.493333pt;}
.y1d4{bottom:827.493333pt;}
.yb5{bottom:831.493333pt;}
.y1a6{bottom:835.173333pt;}
.y209{bottom:836.453333pt;}
.y11{bottom:838.213333pt;}
.y6a{bottom:838.533333pt;}
.yf3{bottom:843.173333pt;}
.y1d3{bottom:845.893333pt;}
.y9b{bottom:847.493333pt;}
.y41{bottom:849.893333pt;}
.y12c{bottom:851.173333pt;}
.y84{bottom:854.693333pt;}
.y1f2{bottom:854.853333pt;}
.yb4{bottom:859.173333pt;}
.y5f{bottom:861.733333pt;}
.y1a5{bottom:862.693333pt;}
.y69{bottom:866.053333pt;}
.ya9{bottom:866.213333pt;}
.y10{bottom:872.613333pt;}
.y9a{bottom:875.173333pt;}
.y12b{bottom:878.693333pt;}
.y40{bottom:882.053333pt;}
.yb3{bottom:886.693333pt;}
.y1d2{bottom:888.293333pt;}
.y68{bottom:893.733333pt;}
.y1f1{bottom:897.253333pt;}
.y99{bottom:902.693333pt;}
.y5e{bottom:905.253333pt;}
.y12a{bottom:906.373333pt;}
.y1d1{bottom:906.693333pt;}
.yf{bottom:907.013333pt;}
.y3f{bottom:914.373333pt;}
.y1f0{bottom:915.653333pt;}
.y67{bottom:921.253333pt;}
.ya8{bottom:921.413333pt;}
.y83{bottom:930.373333pt;}
.y129{bottom:933.893333pt;}
.y1ef{bottom:934.053333pt;}
.ye{bottom:941.413333pt;}
.yf2{bottom:941.893333pt;}
.y3e{bottom:946.533333pt;}
.y5d{bottom:948.933333pt;}
.ya7{bottom:949.093333pt;}
.y1ee{bottom:952.453333pt;}
.y82{bottom:957.893333pt;}
.y128{bottom:961.573333pt;}
.yd{bottom:976.293333pt;}
.y208{bottom:976.453333pt;}
.y5c{bottom:980.933333pt;}
.y81{bottom:985.573333pt;}
.y1ed{bottom:994.853333pt;}
.y3d{bottom:1010.693333pt;}
.y80{bottom:1013.120000pt;}
.yc{bottom:1013.280000pt;}
.ya{bottom:1069.920000pt;}
.y1{bottom:1088.800000pt;}
.h5{height:34.392000pt;}
.h6{height:50.062500pt;}
.h7{height:57.406250pt;}
.h2{height:66.750000pt;}
.h3{height:78.097500pt;}
.h4{height:100.125000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:594.160000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.586667pt;}
.x2{left:94.592000pt;}
.x8{left:145.640000pt;}
.x6{left:148.360000pt;}
.x5{left:151.226667pt;}
.x9{left:173.946667pt;}
.xe{left:390.626667pt;}
.x1{left:415.773333pt;}
.x4{left:432.093333pt;}
.xd{left:451.293333pt;}
.xf{left:578.653333pt;}
.xb{left:613.733333pt;}
.x11{left:708.613333pt;}
.xa{left:719.333333pt;}
.x3{left:728.133333pt;}
.xc{left:736.453333pt;}
.x10{left:779.040000pt;}
}




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