
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3f469737a80c81ba26a9e1a8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b1b8bf1abf81520f13a0982c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_64101b016909bd99c0bce005.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a849e49e7823ad0bf6e70440.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1951e00f85f7aa24f7e012a5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f50d6e07a166f795ca3fa217.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1812a2f4463154dbb8ad98e3.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_28308a4f4d35754ccf83648d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1c58d84351a71c18229347a0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.266400px;}
.ls12{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.135000px;}
.ls13{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.063600px;}
.ls1e{letter-spacing:-0.037800px;}
.ls18{letter-spacing:-0.018360px;}
.ls7{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.041760px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.065400px;}
.ls4{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls3{letter-spacing:0.088800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.095400px;}
.ls8{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.lsb{letter-spacing:0.174600px;}
.ls1c{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.185520px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.813600px;}
.ls1d{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.542400px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.321800px;}
.wsa{word-spacing:-13.275360px;}
.wse{word-spacing:-13.268160px;}
.ws5{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.208040px;}
.wsf{word-spacing:-13.188600px;}
.wsb{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-9.331800px;}
.ws4{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-6.016680px;}
._a{margin-left:-4.176000px;}
._7{margin-left:-2.978400px;}
._0{margin-left:-1.110000px;}
._3{width:1.240932px;}
._9{width:2.583539px;}
._6{width:3.633720px;}
._4{width:5.533788px;}
._5{width:6.553271px;}
._f{width:7.598520px;}
._8{width:8.717400px;}
._b{width:10.581000px;}
._10{width:11.719922px;}
._2{width:15.115668px;}
._1{width:16.485600px;}
._c{width:18.456600px;}
._e{width:20.242320px;}
._d{width:22.167360px;}
._11{width:27.715320px;}
._12{width:28.917720px;}
._14{width:30.444480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y100{bottom:7.830000px;}
.y16d{bottom:7.860000px;}
.y102{bottom:7.920000px;}
.y107{bottom:7.950000px;}
.y12e{bottom:25.380000px;}
.y130{bottom:25.410000px;}
.y12b{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y114{bottom:109.200000px;}
.y18c{bottom:111.720000px;}
.y138{bottom:115.950000px;}
.yd5{bottom:116.580000px;}
.yb3{bottom:116.940000px;}
.y18b{bottom:129.270000px;}
.y1f3{bottom:132.870000px;}
.y1dd{bottom:133.500000px;}
.yd4{bottom:134.130000px;}
.yb2{bottom:134.580000px;}
.y56{bottom:136.380000px;}
.y113{bottom:136.560000px;}
.y1b1{bottom:137.550000px;}
.y17a{bottom:140.880000px;}
.yf0{bottom:142.770000px;}
.y18a{bottom:146.910000px;}
.y1f2{bottom:150.510000px;}
.yd3{bottom:151.680000px;}
.yb1{bottom:152.130000px;}
.y55{bottom:153.930000px;}
.y1b0{bottom:155.190000px;}
.y179{bottom:158.520000px;}
.y1dc{bottom:160.140000px;}
.y85{bottom:160.320000px;}
.y137{bottom:160.860000px;}
.y112{bottom:163.830000px;}
.y189{bottom:164.460000px;}
.y15d{bottom:165.270000px;}
.yd2{bottom:169.320000px;}
.y54{bottom:171.570000px;}
.y1af{bottom:172.740000px;}
.y178{bottom:176.070000px;}
.y1f1{bottom:177.060000px;}
.y1db{bottom:177.690000px;}
.y84{bottom:177.870000px;}
.yef{bottom:177.960000px;}
.y188{bottom:182.100000px;}
.y15c{bottom:182.820000px;}
.yd1{bottom:186.870000px;}
.yb0{bottom:187.680000px;}
.y1ae{bottom:190.290000px;}
.y111{bottom:191.190000px;}
.y177{bottom:193.620000px;}
.y1f0{bottom:194.610000px;}
.y83{bottom:195.510000px;}
.y15b{bottom:200.460000px;}
.y1da{bottom:204.330000px;}
.yd0{bottom:204.510000px;}
.yaf{bottom:205.320000px;}
.y136{bottom:205.770000px;}
.y53{bottom:207.120000px;}
.y1ad{bottom:207.930000px;}
.y187{bottom:208.920000px;}
.y176{bottom:211.260000px;}
.y82{bottom:213.060000px;}
.y15a{bottom:218.010000px;}
.y110{bottom:218.550000px;}
.y1ef{bottom:221.250000px;}
.ycf{bottom:222.060000px;}
.yae{bottom:222.870000px;}
.y52{bottom:224.760000px;}
.y26{bottom:225.210000px;}
.y81{bottom:230.610000px;}
.y1d9{bottom:230.880000px;}
.y1ac{bottom:234.840000px;}
.yce{bottom:239.610000px;}
.yad{bottom:240.510000px;}
.y51{bottom:242.310000px;}
.y25{bottom:243.120000px;}
.y175{bottom:244.200000px;}
.y10f{bottom:245.910000px;}
.y1ee{bottom:247.800000px;}
.y80{bottom:248.250000px;}
.y1d8{bottom:248.430000px;}
.y135{bottom:250.680000px;}
.y159{bottom:253.560000px;}
.ycd{bottom:257.250000px;}
.yee{bottom:257.700000px;}
.yac{bottom:258.060000px;}
.y7f{bottom:265.800000px;}
.y158{bottom:271.200000px;}
.y174{bottom:271.560000px;}
.y1ab{bottom:271.830000px;}
.y10e{bottom:273.180000px;}
.y1ed{bottom:274.440000px;}
.y186{bottom:274.800000px;}
.y1d7{bottom:275.070000px;}
.yed{bottom:275.250000px;}
.yab{bottom:275.610000px;}
.y50{bottom:277.860000px;}
.y134{bottom:278.040000px;}
.y24{bottom:280.110000px;}
.y157{bottom:288.750000px;}
.y1ec{bottom:291.990000px;}
.y185{bottom:292.440000px;}
.y1d6{bottom:292.620000px;}
.ycc{bottom:292.800000px;}
.y4f{bottom:295.500000px;}
.y23{bottom:297.660000px;}
.y1aa{bottom:298.740000px;}
.y173{bottom:298.920000px;}
.y10d{bottom:300.540000px;}
.y7e{bottom:301.440000px;}
.y156{bottom:306.390000px;}
.y184{bottom:309.990000px;}
.ycb{bottom:310.440000px;}
.yaa{bottom:311.250000px;}
.y4e{bottom:313.050000px;}
.y22{bottom:315.300000px;}
.y1eb{bottom:318.540000px;}
.y7d{bottom:318.990000px;}
.y1d5{bottom:319.260000px;}
.y133{bottom:322.950000px;}
.y172{bottom:326.190000px;}
.y10c{bottom:327.900000px;}
.yca{bottom:327.990000px;}
.ya9{bottom:328.800000px;}
.y21{bottom:332.850000px;}
.y1a9{bottom:335.820000px;}
.y1ea{bottom:336.180000px;}
.y7c{bottom:336.540000px;}
.y1d4{bottom:336.810000px;}
.y155{bottom:341.940000px;}
.yc9{bottom:345.540000px;}
.yec{bottom:345.630000px;}
.ya8{bottom:346.440000px;}
.y4d{bottom:348.690000px;}
.y20{bottom:350.490000px;}
.y1a8{bottom:353.370000px;}
.y171{bottom:353.550000px;}
.y7b{bottom:354.180000px;}
.y10b{bottom:355.260000px;}
.y154{bottom:359.490000px;}
.y1e9{bottom:362.730000px;}
.yc8{bottom:363.180000px;}
.y1d3{bottom:363.360000px;}
.ya7{bottom:363.990000px;}
.y4c{bottom:366.240000px;}
.y132{bottom:367.860000px;}
.y1f{bottom:368.040000px;}
.y1a7{bottom:370.920000px;}
.y7a{bottom:371.730000px;}
.yeb{bottom:372.180000px;}
.y153{bottom:377.130000px;}
.y1e8{bottom:380.370000px;}
.yc7{bottom:380.730000px;}
.y170{bottom:380.910000px;}
.y1d2{bottom:381.000000px;}
.ya6{bottom:381.540000px;}
.y10a{bottom:382.530000px;}
.y4b{bottom:383.790000px;}
.y1e{bottom:385.590000px;}
.y1a6{bottom:388.560000px;}
.y79{bottom:389.370000px;}
.yc6{bottom:398.370000px;}
.ya5{bottom:399.180000px;}
.y1d{bottom:403.230000px;}
.y1a5{bottom:406.110000px;}
.y78{bottom:406.920000px;}
.y1d1{bottom:407.550000px;}
.yea{bottom:407.730000px;}
.y16f{bottom:408.270000px;}
.y109{bottom:409.890000px;}
.y152{bottom:412.680000px;}
.y131{bottom:412.770000px;}
.ya4{bottom:416.730000px;}
.y4a{bottom:419.430000px;}
.y1c{bottom:420.780000px;}
.y1e7{bottom:424.470000px;}
.y1d0{bottom:425.190000px;}
.ye9{bottom:425.370000px;}
.y151{bottom:430.230000px;}
.y1a4{bottom:433.020000px;}
.yc5{bottom:433.920000px;}
.ya3{bottom:434.370000px;}
.y16e{bottom:435.540000px;}
.y49{bottom:436.980000px;}
.y108{bottom:437.250000px;}
.y1b{bottom:438.420000px;}
.y77{bottom:442.470000px;}
.ye8{bottom:442.920000px;}
.y150{bottom:447.870000px;}
.y1e6{bottom:451.110000px;}
.yc4{bottom:451.470000px;}
.y1cf{bottom:451.740000px;}
.ya2{bottom:451.920000px;}
.y48{bottom:454.620000px;}
.y1a{bottom:455.970000px;}
.y12f{bottom:457.770000px;}
.y76{bottom:460.110000px;}
.ye7{bottom:460.560000px;}
.y16c{bottom:462.900000px;}
.y106{bottom:464.520000px;}
.y1e5{bottom:468.660000px;}
.yc3{bottom:469.110000px;}
.y1a3{bottom:470.400000px;}
.y19{bottom:473.550000px;}
.y75{bottom:477.690000px;}
.y1ce{bottom:478.320000px;}
.y47{bottom:481.200000px;}
.y14f{bottom:483.450000px;}
.yc2{bottom:486.690000px;}
.ye6{bottom:487.140000px;}
.ya1{bottom:487.500000px;}
.y16b{bottom:490.290000px;}
.y18{bottom:491.190000px;}
.y105{bottom:491.910000px;}
.y74{bottom:495.330000px;}
.y1cd{bottom:495.960000px;}
.y14e{bottom:501.090000px;}
.y12d{bottom:502.710000px;}
.yc1{bottom:504.330000px;}
.ya0{bottom:505.140000px;}
.y17{bottom:508.740000px;}
.y46{bottom:516.750000px;}
.y16a{bottom:517.560000px;}
.y14d{bottom:518.640000px;}
.y104{bottom:519.270000px;}
.yc0{bottom:521.880000px;}
.y183{bottom:522.330000px;}
.y1cc{bottom:522.510000px;}
.y9f{bottom:522.690000px;}
.ye5{bottom:523.050000px;}
.y16{bottom:526.380000px;}
.y73{bottom:530.880000px;}
.y45{bottom:534.390000px;}
.y14c{bottom:536.190000px;}
.ybf{bottom:539.430000px;}
.y182{bottom:539.880000px;}
.y1cb{bottom:540.150000px;}
.y9e{bottom:540.330000px;}
.y15{bottom:543.930000px;}
.y169{bottom:544.920000px;}
.y103{bottom:546.630000px;}
.y12c{bottom:547.620000px;}
.y72{bottom:548.430000px;}
.y44{bottom:551.940000px;}
.y1a2{bottom:554.640000px;}
.y181{bottom:557.430000px;}
.y9d{bottom:557.880000px;}
.y14{bottom:561.480000px;}
.y71{bottom:566.070000px;}
.y1ca{bottom:566.700000px;}
.y43{bottom:569.580000px;}
.ye4{bottom:571.290000px;}
.y14b{bottom:571.830000px;}
.y1a1{bottom:572.190000px;}
.y168{bottom:572.280000px;}
.y101{bottom:573.900000px;}
.ybe{bottom:575.070000px;}
.y9c{bottom:575.430000px;}
.y13{bottom:579.120000px;}
.y70{bottom:583.620000px;}
.y1c9{bottom:584.250000px;}
.y42{bottom:587.130000px;}
.ye3{bottom:588.840000px;}
.y14a{bottom:589.380000px;}
.y1a0{bottom:590.640000px;}
.y12a{bottom:592.530000px;}
.ybd{bottom:592.620000px;}
.y180{bottom:593.070000px;}
.y12{bottom:596.670000px;}
.y167{bottom:599.640000px;}
.y6f{bottom:601.260000px;}
.y149{bottom:607.020000px;}
.y19f{bottom:608.190000px;}
.ybc{bottom:610.260000px;}
.y17f{bottom:610.620000px;}
.y1c8{bottom:610.890000px;}
.y9b{bottom:611.070000px;}
.y41{bottom:622.680000px;}
.y11{bottom:623.580000px;}
.y148{bottom:624.570000px;}
.ye2{bottom:625.290000px;}
.y19e{bottom:626.640000px;}
.y166{bottom:626.910000px;}
.y6e{bottom:627.810000px;}
.y17e{bottom:628.260000px;}
.y1c7{bottom:628.440000px;}
.y9a{bottom:628.620000px;}
.y129{bottom:637.440000px;}
.y40{bottom:640.320000px;}
.ye1{bottom:642.840000px;}
.y19d{bottom:644.280000px;}
.ybb{bottom:645.360000px;}
.y17d{bottom:645.810000px;}
.y99{bottom:646.260000px;}
.yff{bottom:649.950000px;}
.y165{bottom:654.270000px;}
.y1c6{bottom:655.080000px;}
.y3f{bottom:657.870000px;}
.y147{bottom:660.120000px;}
.y19c{bottom:661.830000px;}
.yba{bottom:663.000000px;}
.y6d{bottom:663.360000px;}
.y98{bottom:663.810000px;}
.ye0{bottom:670.290000px;}
.y10{bottom:671.820000px;}
.y1e4{bottom:672.000000px;}
.y1c5{bottom:672.630000px;}
.y3e{bottom:675.510000px;}
.yfe{bottom:676.590000px;}
.y146{bottom:677.760000px;}
.y19b{bottom:680.280000px;}
.y6c{bottom:681.000000px;}
.y97{bottom:681.360000px;}
.y164{bottom:681.630000px;}
.y128{bottom:686.130000px;}
.y1e3{bottom:689.550000px;}
.y3d{bottom:693.060000px;}
.y145{bottom:695.310000px;}
.y19a{bottom:697.830000px;}
.y6b{bottom:698.550000px;}
.y17c{bottom:699.000000px;}
.y1c4{bottom:699.180000px;}
.ydf{bottom:705.930000px;}
.yf{bottom:707.460000px;}
.y163{bottom:708.990000px;}
.yfd{bottom:712.500000px;}
.y144{bottom:712.950000px;}
.y6a{bottom:716.190000px;}
.y17b{bottom:716.550000px;}
.y1c3{bottom:716.820000px;}
.y96{bottom:717.000000px;}
.y3c{bottom:719.610000px;}
.y127{bottom:721.770000px;}
.yde{bottom:723.480000px;}
.y143{bottom:730.500000px;}
.yb9{bottom:733.740000px;}
.y95{bottom:734.550000px;}
.y162{bottom:736.260000px;}
.y126{bottom:739.320000px;}
.ye{bottom:743.280000px;}
.y1c2{bottom:743.370000px;}
.y199{bottom:743.640000px;}
.y142{bottom:748.050000px;}
.yb8{bottom:751.290000px;}
.y69{bottom:751.740000px;}
.y94{bottom:752.190000px;}
.y3b{bottom:755.250000px;}
.y125{bottom:756.870000px;}
.ydd{bottom:759.930000px;}
.y1e2{bottom:760.290000px;}
.yfc{bottom:760.740000px;}
.y1c1{bottom:760.920000px;}
.y161{bottom:763.620000px;}
.y141{bottom:765.690000px;}
.y68{bottom:769.290000px;}
.y93{bottom:769.740000px;}
.y3a{bottom:772.800000px;}
.ydc{bottom:777.480000px;}
.y1e1{bottom:777.930000px;}
.yfb{bottom:778.290000px;}
.y198{bottom:779.280000px;}
.yd{bottom:783.060000px;}
.y67{bottom:786.930000px;}
.y92{bottom:787.290000px;}
.y1c0{bottom:787.560000px;}
.y39{bottom:790.350000px;}
.y160{bottom:790.980000px;}
.y124{bottom:792.510000px;}
.yfa{bottom:795.930000px;}
.y197{bottom:796.830000px;}
.y140{bottom:800.520000px;}
.yc{bottom:801.060000px;}
.y66{bottom:804.480000px;}
.ydb{bottom:804.930000px;}
.y38{bottom:807.990000px;}
.y123{bottom:810.060000px;}
.y13f{bottom:812.670000px;}
.yf9{bottom:813.480000px;}
.y1bf{bottom:814.110000px;}
.y196{bottom:814.380000px;}
.yb{bottom:819.060000px;}
.yb7{bottom:822.030000px;}
.y91{bottom:822.930000px;}
.y37{bottom:825.540000px;}
.y122{bottom:827.700000px;}
.yf8{bottom:831.030000px;}
.y1be{bottom:831.750000px;}
.y195{bottom:831.930000px;}
.ya{bottom:833.280000px;}
.y15f{bottom:839.670000px;}
.y65{bottom:840.030000px;}
.y90{bottom:840.480000px;}
.y36{bottom:843.180000px;}
.y121{bottom:845.250000px;}
.yf7{bottom:848.670000px;}
.y194{bottom:850.380000px;}
.y9{bottom:855.060000px;}
.y64{bottom:857.670000px;}
.y8f{bottom:858.030000px;}
.y1bd{bottom:858.300000px;}
.y35{bottom:860.730000px;}
.y193{bottom:868.020000px;}
.y8{bottom:873.060000px;}
.y63{bottom:875.220000px;}
.y8e{bottom:875.670000px;}
.y1bc{bottom:875.850000px;}
.yda{bottom:876.030000px;}
.y120{bottom:880.800000px;}
.y192{bottom:885.570000px;}
.y62{bottom:892.860000px;}
.y8d{bottom:893.220000px;}
.yd9{bottom:893.670000px;}
.y34{bottom:896.280000px;}
.y11f{bottom:898.440000px;}
.y1bb{bottom:902.490000px;}
.y13e{bottom:902.580000px;}
.y191{bottom:904.020000px;}
.y7{bottom:905.370000px;}
.yb6{bottom:910.410000px;}
.y8c{bottom:910.860000px;}
.yd8{bottom:911.220000px;}
.y33{bottom:913.920000px;}
.y11e{bottom:915.990000px;}
.y1e0{bottom:919.410000px;}
.y1ba{bottom:920.040000px;}
.y190{bottom:921.570000px;}
.y6{bottom:924.720000px;}
.y15e{bottom:927.960000px;}
.y61{bottom:928.410000px;}
.yd7{bottom:928.860000px;}
.y32{bottom:931.470000px;}
.y11d{bottom:933.630000px;}
.y1df{bottom:936.960000px;}
.y1b9{bottom:937.680000px;}
.y18f{bottom:939.120000px;}
.y60{bottom:945.960000px;}
.y8b{bottom:946.410000px;}
.y13d{bottom:947.490000px;}
.y31{bottom:949.110000px;}
.y11c{bottom:951.180000px;}
.y5{bottom:962.970000px;}
.y5f{bottom:963.600000px;}
.y8a{bottom:963.960000px;}
.y1b8{bottom:964.590000px;}
.y18e{bottom:966.570000px;}
.y30{bottom:966.660000px;}
.y5e{bottom:981.150000px;}
.y89{bottom:981.600000px;}
.y11b{bottom:986.730000px;}
.y4{bottom:987.630000px;}
.y13c{bottom:992.400000px;}
.yb5{bottom:998.790000px;}
.y88{bottom:999.150000px;}
.y2f{bottom:1002.210000px;}
.y11a{bottom:1004.370000px;}
.yf6{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y1b7{bottom:1012.860000px;}
.y5d{bottom:1016.820000px;}
.y13b{bottom:1019.790000px;}
.y2e{bottom:1019.880000px;}
.y119{bottom:1021.950000px;}
.y1de{bottom:1025.370000px;}
.y1b6{bottom:1030.410000px;}
.y5c{bottom:1034.370000px;}
.y18d{bottom:1034.820000px;}
.y2d{bottom:1037.430000px;}
.y118{bottom:1039.500000px;}
.yf5{bottom:1043.370000px;}
.y1b5{bottom:1048.050000px;}
.y5b{bottom:1051.920000px;}
.yd6{bottom:1052.370000px;}
.y2c{bottom:1055.070000px;}
.yf4{bottom:1060.920000px;}
.y13a{bottom:1064.700000px;}
.y5a{bottom:1069.560000px;}
.y87{bottom:1069.920000px;}
.y117{bottom:1072.530000px;}
.y2b{bottom:1072.620000px;}
.y1b4{bottom:1074.960000px;}
.yf3{bottom:1078.560000px;}
.yb4{bottom:1087.110000px;}
.y86{bottom:1087.560000px;}
.yf2{bottom:1096.110000px;}
.y2a{bottom:1099.170000px;}
.y116{bottom:1099.890000px;}
.y59{bottom:1105.110000px;}
.y139{bottom:1109.610000px;}
.y1b3{bottom:1111.950000px;}
.yf1{bottom:1113.750000px;}
.y58{bottom:1122.750000px;}
.y115{bottom:1127.160000px;}
.y29{bottom:1135.080000px;}
.y1b2{bottom:1138.860000px;}
.y57{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h12{height:26.580000px;}
.hd{height:26.640000px;}
.he{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h13{height:40.539023px;}
.h10{height:44.100000px;}
.h11{height:44.130000px;}
.hf{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.hb{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:32.040000px;}
.wd{width:32.130000px;}
.wc{width:32.850000px;}
.w11{width:36.270000px;}
.we{width:39.780000px;}
.wb{width:40.590000px;}
.wf{width:47.340000px;}
.w6{width:53.190000px;}
.w4{width:54.180000px;}
.w9{width:54.360000px;}
.w10{width:65.970000px;}
.w12{width:66.720000px;}
.w8{width:75.690000px;}
.w7{width:111.000000px;}
.w3{width:329.250000px;}
.wa{width:552.300000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x15{left:111.239987px;}
.x5{left:122.039987px;}
.xc{left:123.930000px;}
.x2{left:202.799987px;}
.x11{left:265.889987px;}
.x6{left:282.000000px;}
.x8{left:336.990000px;}
.x9{left:369.840000px;}
.x12{left:385.410000px;}
.xa{left:423.840000px;}
.x13{left:452.190000px;}
.x14{left:489.180000px;}
.xb{left:535.560000px;}
.xd{left:676.950000px;}
.xe{left:718.260000px;}
.xf{left:751.830000px;}
.x10{left:784.680000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.236800pt;}
.ls12{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls13{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls1e{letter-spacing:-0.033600pt;}
.ls18{letter-spacing:-0.016320pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.037120pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.058133pt;}
.ls4{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls3{letter-spacing:0.078933pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.084800pt;}
.ls8{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.lsb{letter-spacing:0.155200pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.164907pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.723200pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.482133pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.841600pt;}
.wsa{word-spacing:-11.800320pt;}
.wse{word-spacing:-11.793920pt;}
.ws5{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.740480pt;}
.wsf{word-spacing:-11.723200pt;}
.wsb{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-8.294933pt;}
.ws4{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-5.348160pt;}
._a{margin-left:-3.712000pt;}
._7{margin-left:-2.647467pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.103050pt;}
._9{width:2.296479pt;}
._6{width:3.229973pt;}
._4{width:4.918923pt;}
._5{width:5.825129pt;}
._f{width:6.754240pt;}
._8{width:7.748800pt;}
._b{width:9.405333pt;}
._10{width:10.417708pt;}
._2{width:13.436150pt;}
._1{width:14.653867pt;}
._c{width:16.405866pt;}
._e{width:17.993174pt;}
._d{width:19.704320pt;}
._11{width:24.635840pt;}
._12{width:25.704640pt;}
._14{width:27.061760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:6.960000pt;}
.y16d{bottom:6.986667pt;}
.y102{bottom:7.040000pt;}
.y107{bottom:7.066667pt;}
.y12e{bottom:22.560000pt;}
.y130{bottom:22.586667pt;}
.y12b{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y114{bottom:97.066667pt;}
.y18c{bottom:99.306667pt;}
.y138{bottom:103.066667pt;}
.yd5{bottom:103.626667pt;}
.yb3{bottom:103.946667pt;}
.y18b{bottom:114.906667pt;}
.y1f3{bottom:118.106667pt;}
.y1dd{bottom:118.666667pt;}
.yd4{bottom:119.226667pt;}
.yb2{bottom:119.626667pt;}
.y56{bottom:121.226667pt;}
.y113{bottom:121.386667pt;}
.y1b1{bottom:122.266667pt;}
.y17a{bottom:125.226667pt;}
.yf0{bottom:126.906667pt;}
.y18a{bottom:130.586667pt;}
.y1f2{bottom:133.786667pt;}
.yd3{bottom:134.826667pt;}
.yb1{bottom:135.226667pt;}
.y55{bottom:136.826667pt;}
.y1b0{bottom:137.946667pt;}
.y179{bottom:140.906667pt;}
.y1dc{bottom:142.346667pt;}
.y85{bottom:142.506667pt;}
.y137{bottom:142.986667pt;}
.y112{bottom:145.626667pt;}
.y189{bottom:146.186667pt;}
.y15d{bottom:146.906667pt;}
.yd2{bottom:150.506667pt;}
.y54{bottom:152.506667pt;}
.y1af{bottom:153.546667pt;}
.y178{bottom:156.506667pt;}
.y1f1{bottom:157.386667pt;}
.y1db{bottom:157.946667pt;}
.y84{bottom:158.106667pt;}
.yef{bottom:158.186667pt;}
.y188{bottom:161.866667pt;}
.y15c{bottom:162.506667pt;}
.yd1{bottom:166.106667pt;}
.yb0{bottom:166.826667pt;}
.y1ae{bottom:169.146667pt;}
.y111{bottom:169.946667pt;}
.y177{bottom:172.106667pt;}
.y1f0{bottom:172.986667pt;}
.y83{bottom:173.786667pt;}
.y15b{bottom:178.186667pt;}
.y1da{bottom:181.626667pt;}
.yd0{bottom:181.786667pt;}
.yaf{bottom:182.506667pt;}
.y136{bottom:182.906667pt;}
.y53{bottom:184.106667pt;}
.y1ad{bottom:184.826667pt;}
.y187{bottom:185.706667pt;}
.y176{bottom:187.786667pt;}
.y82{bottom:189.386667pt;}
.y15a{bottom:193.786667pt;}
.y110{bottom:194.266667pt;}
.y1ef{bottom:196.666667pt;}
.ycf{bottom:197.386667pt;}
.yae{bottom:198.106667pt;}
.y52{bottom:199.786667pt;}
.y26{bottom:200.186667pt;}
.y81{bottom:204.986667pt;}
.y1d9{bottom:205.226667pt;}
.y1ac{bottom:208.746667pt;}
.yce{bottom:212.986667pt;}
.yad{bottom:213.786667pt;}
.y51{bottom:215.386667pt;}
.y25{bottom:216.106667pt;}
.y175{bottom:217.066667pt;}
.y10f{bottom:218.586667pt;}
.y1ee{bottom:220.266667pt;}
.y80{bottom:220.666667pt;}
.y1d8{bottom:220.826667pt;}
.y135{bottom:222.826667pt;}
.y159{bottom:225.386667pt;}
.ycd{bottom:228.666667pt;}
.yee{bottom:229.066667pt;}
.yac{bottom:229.386667pt;}
.y7f{bottom:236.266667pt;}
.y158{bottom:241.066667pt;}
.y174{bottom:241.386667pt;}
.y1ab{bottom:241.626667pt;}
.y10e{bottom:242.826667pt;}
.y1ed{bottom:243.946667pt;}
.y186{bottom:244.266667pt;}
.y1d7{bottom:244.506667pt;}
.yed{bottom:244.666667pt;}
.yab{bottom:244.986667pt;}
.y50{bottom:246.986667pt;}
.y134{bottom:247.146667pt;}
.y24{bottom:248.986667pt;}
.y157{bottom:256.666667pt;}
.y1ec{bottom:259.546667pt;}
.y185{bottom:259.946667pt;}
.y1d6{bottom:260.106667pt;}
.ycc{bottom:260.266667pt;}
.y4f{bottom:262.666667pt;}
.y23{bottom:264.586667pt;}
.y1aa{bottom:265.546667pt;}
.y173{bottom:265.706667pt;}
.y10d{bottom:267.146667pt;}
.y7e{bottom:267.946667pt;}
.y156{bottom:272.346667pt;}
.y184{bottom:275.546667pt;}
.ycb{bottom:275.946667pt;}
.yaa{bottom:276.666667pt;}
.y4e{bottom:278.266667pt;}
.y22{bottom:280.266667pt;}
.y1eb{bottom:283.146667pt;}
.y7d{bottom:283.546667pt;}
.y1d5{bottom:283.786667pt;}
.y133{bottom:287.066667pt;}
.y172{bottom:289.946667pt;}
.y10c{bottom:291.466667pt;}
.yca{bottom:291.546667pt;}
.ya9{bottom:292.266667pt;}
.y21{bottom:295.866667pt;}
.y1a9{bottom:298.506667pt;}
.y1ea{bottom:298.826667pt;}
.y7c{bottom:299.146667pt;}
.y1d4{bottom:299.386667pt;}
.y155{bottom:303.946667pt;}
.yc9{bottom:307.146667pt;}
.yec{bottom:307.226667pt;}
.ya8{bottom:307.946667pt;}
.y4d{bottom:309.946667pt;}
.y20{bottom:311.546667pt;}
.y1a8{bottom:314.106667pt;}
.y171{bottom:314.266667pt;}
.y7b{bottom:314.826667pt;}
.y10b{bottom:315.786667pt;}
.y154{bottom:319.546667pt;}
.y1e9{bottom:322.426667pt;}
.yc8{bottom:322.826667pt;}
.y1d3{bottom:322.986667pt;}
.ya7{bottom:323.546667pt;}
.y4c{bottom:325.546667pt;}
.y132{bottom:326.986667pt;}
.y1f{bottom:327.146667pt;}
.y1a7{bottom:329.706667pt;}
.y7a{bottom:330.426667pt;}
.yeb{bottom:330.826667pt;}
.y153{bottom:335.226667pt;}
.y1e8{bottom:338.106667pt;}
.yc7{bottom:338.426667pt;}
.y170{bottom:338.586667pt;}
.y1d2{bottom:338.666667pt;}
.ya6{bottom:339.146667pt;}
.y10a{bottom:340.026667pt;}
.y4b{bottom:341.146667pt;}
.y1e{bottom:342.746667pt;}
.y1a6{bottom:345.386667pt;}
.y79{bottom:346.106667pt;}
.yc6{bottom:354.106667pt;}
.ya5{bottom:354.826667pt;}
.y1d{bottom:358.426667pt;}
.y1a5{bottom:360.986667pt;}
.y78{bottom:361.706667pt;}
.y1d1{bottom:362.266667pt;}
.yea{bottom:362.426667pt;}
.y16f{bottom:362.906667pt;}
.y109{bottom:364.346667pt;}
.y152{bottom:366.826667pt;}
.y131{bottom:366.906667pt;}
.ya4{bottom:370.426667pt;}
.y4a{bottom:372.826667pt;}
.y1c{bottom:374.026667pt;}
.y1e7{bottom:377.306667pt;}
.y1d0{bottom:377.946667pt;}
.ye9{bottom:378.106667pt;}
.y151{bottom:382.426667pt;}
.y1a4{bottom:384.906667pt;}
.yc5{bottom:385.706667pt;}
.ya3{bottom:386.106667pt;}
.y16e{bottom:387.146667pt;}
.y49{bottom:388.426667pt;}
.y108{bottom:388.666667pt;}
.y1b{bottom:389.706667pt;}
.y77{bottom:393.306667pt;}
.ye8{bottom:393.706667pt;}
.y150{bottom:398.106667pt;}
.y1e6{bottom:400.986667pt;}
.yc4{bottom:401.306667pt;}
.y1cf{bottom:401.546667pt;}
.ya2{bottom:401.706667pt;}
.y48{bottom:404.106667pt;}
.y1a{bottom:405.306667pt;}
.y12f{bottom:406.906667pt;}
.y76{bottom:408.986667pt;}
.ye7{bottom:409.386667pt;}
.y16c{bottom:411.466667pt;}
.y106{bottom:412.906667pt;}
.y1e5{bottom:416.586667pt;}
.yc3{bottom:416.986667pt;}
.y1a3{bottom:418.133333pt;}
.y19{bottom:420.933333pt;}
.y75{bottom:424.613333pt;}
.y1ce{bottom:425.173333pt;}
.y47{bottom:427.733333pt;}
.y14f{bottom:429.733333pt;}
.yc2{bottom:432.613333pt;}
.ye6{bottom:433.013333pt;}
.ya1{bottom:433.333333pt;}
.y16b{bottom:435.813333pt;}
.y18{bottom:436.613333pt;}
.y105{bottom:437.253333pt;}
.y74{bottom:440.293333pt;}
.y1cd{bottom:440.853333pt;}
.y14e{bottom:445.413333pt;}
.y12d{bottom:446.853333pt;}
.yc1{bottom:448.293333pt;}
.ya0{bottom:449.013333pt;}
.y17{bottom:452.213333pt;}
.y46{bottom:459.333333pt;}
.y16a{bottom:460.053333pt;}
.y14d{bottom:461.013333pt;}
.y104{bottom:461.573333pt;}
.yc0{bottom:463.893333pt;}
.y183{bottom:464.293333pt;}
.y1cc{bottom:464.453333pt;}
.y9f{bottom:464.613333pt;}
.ye5{bottom:464.933333pt;}
.y16{bottom:467.893333pt;}
.y73{bottom:471.893333pt;}
.y45{bottom:475.013333pt;}
.y14c{bottom:476.613333pt;}
.ybf{bottom:479.493333pt;}
.y182{bottom:479.893333pt;}
.y1cb{bottom:480.133333pt;}
.y9e{bottom:480.293333pt;}
.y15{bottom:483.493333pt;}
.y169{bottom:484.373333pt;}
.y103{bottom:485.893333pt;}
.y12c{bottom:486.773333pt;}
.y72{bottom:487.493333pt;}
.y44{bottom:490.613333pt;}
.y1a2{bottom:493.013333pt;}
.y181{bottom:495.493333pt;}
.y9d{bottom:495.893333pt;}
.y14{bottom:499.093333pt;}
.y71{bottom:503.173333pt;}
.y1ca{bottom:503.733333pt;}
.y43{bottom:506.293333pt;}
.ye4{bottom:507.813333pt;}
.y14b{bottom:508.293333pt;}
.y1a1{bottom:508.613333pt;}
.y168{bottom:508.693333pt;}
.y101{bottom:510.133333pt;}
.ybe{bottom:511.173333pt;}
.y9c{bottom:511.493333pt;}
.y13{bottom:514.773333pt;}
.y70{bottom:518.773333pt;}
.y1c9{bottom:519.333333pt;}
.y42{bottom:521.893333pt;}
.ye3{bottom:523.413333pt;}
.y14a{bottom:523.893333pt;}
.y1a0{bottom:525.013333pt;}
.y12a{bottom:526.693333pt;}
.ybd{bottom:526.773333pt;}
.y180{bottom:527.173333pt;}
.y12{bottom:530.373333pt;}
.y167{bottom:533.013333pt;}
.y6f{bottom:534.453333pt;}
.y149{bottom:539.573333pt;}
.y19f{bottom:540.613333pt;}
.ybc{bottom:542.453333pt;}
.y17f{bottom:542.773333pt;}
.y1c8{bottom:543.013333pt;}
.y9b{bottom:543.173333pt;}
.y41{bottom:553.493333pt;}
.y11{bottom:554.293333pt;}
.y148{bottom:555.173333pt;}
.ye2{bottom:555.813333pt;}
.y19e{bottom:557.013333pt;}
.y166{bottom:557.253333pt;}
.y6e{bottom:558.053333pt;}
.y17e{bottom:558.453333pt;}
.y1c7{bottom:558.613333pt;}
.y9a{bottom:558.773333pt;}
.y129{bottom:566.613333pt;}
.y40{bottom:569.173333pt;}
.ye1{bottom:571.413333pt;}
.y19d{bottom:572.693333pt;}
.ybb{bottom:573.653333pt;}
.y17d{bottom:574.053333pt;}
.y99{bottom:574.453333pt;}
.yff{bottom:577.733333pt;}
.y165{bottom:581.573333pt;}
.y1c6{bottom:582.293333pt;}
.y3f{bottom:584.773333pt;}
.y147{bottom:586.773333pt;}
.y19c{bottom:588.293333pt;}
.yba{bottom:589.333333pt;}
.y6d{bottom:589.653333pt;}
.y98{bottom:590.053333pt;}
.ye0{bottom:595.813333pt;}
.y10{bottom:597.173333pt;}
.y1e4{bottom:597.333333pt;}
.y1c5{bottom:597.893333pt;}
.y3e{bottom:600.453333pt;}
.yfe{bottom:601.413333pt;}
.y146{bottom:602.453333pt;}
.y19b{bottom:604.693333pt;}
.y6c{bottom:605.333333pt;}
.y97{bottom:605.653333pt;}
.y164{bottom:605.893333pt;}
.y128{bottom:609.893333pt;}
.y1e3{bottom:612.933333pt;}
.y3d{bottom:616.053333pt;}
.y145{bottom:618.053333pt;}
.y19a{bottom:620.293333pt;}
.y6b{bottom:620.933333pt;}
.y17c{bottom:621.333333pt;}
.y1c4{bottom:621.493333pt;}
.ydf{bottom:627.493333pt;}
.yf{bottom:628.853333pt;}
.y163{bottom:630.213333pt;}
.yfd{bottom:633.333333pt;}
.y144{bottom:633.733333pt;}
.y6a{bottom:636.613333pt;}
.y17b{bottom:636.933333pt;}
.y1c3{bottom:637.173333pt;}
.y96{bottom:637.333333pt;}
.y3c{bottom:639.653333pt;}
.y127{bottom:641.573333pt;}
.yde{bottom:643.093333pt;}
.y143{bottom:649.333333pt;}
.yb9{bottom:652.213333pt;}
.y95{bottom:652.933333pt;}
.y162{bottom:654.453333pt;}
.y126{bottom:657.173333pt;}
.ye{bottom:660.693333pt;}
.y1c2{bottom:660.773333pt;}
.y199{bottom:661.013333pt;}
.y142{bottom:664.933333pt;}
.yb8{bottom:667.813333pt;}
.y69{bottom:668.213333pt;}
.y94{bottom:668.613333pt;}
.y3b{bottom:671.333333pt;}
.y125{bottom:672.773333pt;}
.ydd{bottom:675.493333pt;}
.y1e2{bottom:675.813333pt;}
.yfc{bottom:676.213333pt;}
.y1c1{bottom:676.373333pt;}
.y161{bottom:678.773333pt;}
.y141{bottom:680.613333pt;}
.y68{bottom:683.813333pt;}
.y93{bottom:684.213333pt;}
.y3a{bottom:686.933333pt;}
.ydc{bottom:691.093333pt;}
.y1e1{bottom:691.493333pt;}
.yfb{bottom:691.813333pt;}
.y198{bottom:692.693333pt;}
.yd{bottom:696.053333pt;}
.y67{bottom:699.493333pt;}
.y92{bottom:699.813333pt;}
.y1c0{bottom:700.053333pt;}
.y39{bottom:702.533333pt;}
.y160{bottom:703.093333pt;}
.y124{bottom:704.453333pt;}
.yfa{bottom:707.493333pt;}
.y197{bottom:708.293333pt;}
.y140{bottom:711.573333pt;}
.yc{bottom:712.053333pt;}
.y66{bottom:715.093333pt;}
.ydb{bottom:715.493333pt;}
.y38{bottom:718.213333pt;}
.y123{bottom:720.053333pt;}
.y13f{bottom:722.373333pt;}
.yf9{bottom:723.093333pt;}
.y1bf{bottom:723.653333pt;}
.y196{bottom:723.893333pt;}
.yb{bottom:728.053333pt;}
.yb7{bottom:730.693333pt;}
.y91{bottom:731.493333pt;}
.y37{bottom:733.813333pt;}
.y122{bottom:735.733333pt;}
.yf8{bottom:738.693333pt;}
.y1be{bottom:739.333333pt;}
.y195{bottom:739.493333pt;}
.ya{bottom:740.693333pt;}
.y15f{bottom:746.373333pt;}
.y65{bottom:746.693333pt;}
.y90{bottom:747.093333pt;}
.y36{bottom:749.493333pt;}
.y121{bottom:751.333333pt;}
.yf7{bottom:754.373333pt;}
.y194{bottom:755.893333pt;}
.y9{bottom:760.053333pt;}
.y64{bottom:762.373333pt;}
.y8f{bottom:762.693333pt;}
.y1bd{bottom:762.933333pt;}
.y35{bottom:765.093333pt;}
.y193{bottom:771.573333pt;}
.y8{bottom:776.053333pt;}
.y63{bottom:777.973333pt;}
.y8e{bottom:778.373333pt;}
.y1bc{bottom:778.533333pt;}
.yda{bottom:778.693333pt;}
.y120{bottom:782.933333pt;}
.y192{bottom:787.173333pt;}
.y62{bottom:793.653333pt;}
.y8d{bottom:793.973333pt;}
.yd9{bottom:794.373333pt;}
.y34{bottom:796.693333pt;}
.y11f{bottom:798.613333pt;}
.y1bb{bottom:802.213333pt;}
.y13e{bottom:802.293333pt;}
.y191{bottom:803.573333pt;}
.y7{bottom:804.773333pt;}
.yb6{bottom:809.253333pt;}
.y8c{bottom:809.653333pt;}
.yd8{bottom:809.973333pt;}
.y33{bottom:812.373333pt;}
.y11e{bottom:814.213333pt;}
.y1e0{bottom:817.253333pt;}
.y1ba{bottom:817.813333pt;}
.y190{bottom:819.173333pt;}
.y6{bottom:821.973333pt;}
.y15e{bottom:824.853333pt;}
.y61{bottom:825.253333pt;}
.yd7{bottom:825.653333pt;}
.y32{bottom:827.973333pt;}
.y11d{bottom:829.893333pt;}
.y1df{bottom:832.853333pt;}
.y1b9{bottom:833.493333pt;}
.y18f{bottom:834.773333pt;}
.y60{bottom:840.853333pt;}
.y8b{bottom:841.253333pt;}
.y13d{bottom:842.213333pt;}
.y31{bottom:843.653333pt;}
.y11c{bottom:845.493333pt;}
.y5{bottom:855.973333pt;}
.y5f{bottom:856.533333pt;}
.y8a{bottom:856.853333pt;}
.y1b8{bottom:857.413333pt;}
.y18e{bottom:859.173333pt;}
.y30{bottom:859.253333pt;}
.y5e{bottom:872.133333pt;}
.y89{bottom:872.533333pt;}
.y11b{bottom:877.093333pt;}
.y4{bottom:877.893333pt;}
.y13c{bottom:882.133333pt;}
.yb5{bottom:887.813333pt;}
.y88{bottom:888.133333pt;}
.y2f{bottom:890.853333pt;}
.y11a{bottom:892.773333pt;}
.yf6{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y1b7{bottom:900.320000pt;}
.y5d{bottom:903.840000pt;}
.y13b{bottom:906.480000pt;}
.y2e{bottom:906.560000pt;}
.y119{bottom:908.400000pt;}
.y1de{bottom:911.440000pt;}
.y1b6{bottom:915.920000pt;}
.y5c{bottom:919.440000pt;}
.y18d{bottom:919.840000pt;}
.y2d{bottom:922.160000pt;}
.y118{bottom:924.000000pt;}
.yf5{bottom:927.440000pt;}
.y1b5{bottom:931.600000pt;}
.y5b{bottom:935.040000pt;}
.yd6{bottom:935.440000pt;}
.y2c{bottom:937.840000pt;}
.yf4{bottom:943.040000pt;}
.y13a{bottom:946.400000pt;}
.y5a{bottom:950.720000pt;}
.y87{bottom:951.040000pt;}
.y117{bottom:953.360000pt;}
.y2b{bottom:953.440000pt;}
.y1b4{bottom:955.520000pt;}
.yf3{bottom:958.720000pt;}
.yb4{bottom:966.320000pt;}
.y86{bottom:966.720000pt;}
.yf2{bottom:974.320000pt;}
.y2a{bottom:977.040000pt;}
.y116{bottom:977.680000pt;}
.y59{bottom:982.320000pt;}
.y139{bottom:986.320000pt;}
.y1b3{bottom:988.400000pt;}
.yf1{bottom:990.000000pt;}
.y58{bottom:998.000000pt;}
.y115{bottom:1001.920000pt;}
.y29{bottom:1008.960000pt;}
.y1b2{bottom:1012.320000pt;}
.y57{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h12{height:23.626667pt;}
.hd{height:23.680000pt;}
.he{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h13{height:36.034687pt;}
.h10{height:39.200000pt;}
.h11{height:39.226667pt;}
.hf{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.hb{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:28.480000pt;}
.wd{width:28.560000pt;}
.wc{width:29.200000pt;}
.w11{width:32.240000pt;}
.we{width:35.360000pt;}
.wb{width:36.080000pt;}
.wf{width:42.080000pt;}
.w6{width:47.280000pt;}
.w4{width:48.160000pt;}
.w9{width:48.320000pt;}
.w10{width:58.640000pt;}
.w12{width:59.306667pt;}
.w8{width:67.280000pt;}
.w7{width:98.666667pt;}
.w3{width:292.666667pt;}
.wa{width:490.933333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x15{left:98.879988pt;}
.x5{left:108.479988pt;}
.xc{left:110.160000pt;}
.x2{left:180.266655pt;}
.x11{left:236.346655pt;}
.x6{left:250.666667pt;}
.x8{left:299.546667pt;}
.x9{left:328.746667pt;}
.x12{left:342.586667pt;}
.xa{left:376.746667pt;}
.x13{left:401.946667pt;}
.x14{left:434.826667pt;}
.xb{left:476.053333pt;}
.xd{left:601.733333pt;}
.xe{left:638.453333pt;}
.xf{left:668.293333pt;}
.x10{left:697.493333pt;}
.x3{left:704.053322pt;}
}




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