
    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_93c5e8761bf687bbc10d47cc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_275555b87c9bb63c335c8ae1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_f7b165e0a86faeffa667aa32.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090820;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_b2fec9739cacb212dcffd8de.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090820;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_b8c327195112a0643c21cae7.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9760dbe2e84aa9be8efda77e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d58e3149e62a630177e83e66.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_4638587fac5b416e381617c1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.738770;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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:23.760000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.ls2d{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.089400px;}
.ls8{letter-spacing:-0.018000px;}
.ls26{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106560px;}
.ls10{letter-spacing:0.108000px;}
.lse{letter-spacing:0.109200px;}
.lsa{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.173280px;}
.lsf{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.226560px;}
.ls19{letter-spacing:0.229440px;}
.ls0{letter-spacing:0.233280px;}
.ls21{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.880000px;}
.ls2b{letter-spacing:3.060000px;}
.ls20{letter-spacing:3.600000px;}
.ls1e{letter-spacing:4.320000px;}
.ls2c{letter-spacing:5.220000px;}
.ls13{letter-spacing:5.760000px;}
.ls1b{letter-spacing:6.480000px;}
.ls2a{letter-spacing:17.460000px;}
.ls25{letter-spacing:20.340000px;}
.ls29{letter-spacing:22.500000px;}
.ls28{letter-spacing:24.660000px;}
.ls1a{letter-spacing:26.640000px;}
.ls12{letter-spacing:27.360000px;}
.ls24{letter-spacing:56.160000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-36.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.822200px;}
.ws14{word-spacing:-16.669200px;}
.wsd{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.450800px;}
.wsb{word-spacing:-16.297800px;}
.ws15{word-spacing:-16.254600px;}
.ws13{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.940000px;}
.ws19{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.580000px;}
.ws10{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.482000px;}
.wse{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.374000px;}
.wsf{word-spacing:-13.140000px;}
.wsa{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.350600px;}
.ws4{word-spacing:-9.720000px;}
.ws18{word-spacing:-9.711360px;}
.ws5{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._12{margin-left:-4.512960px;}
._11{margin-left:-2.782080px;}
._1{margin-left:-1.188000px;}
._0{width:1.056000px;}
._a{width:2.397360px;}
._4{width:3.410160px;}
._2{width:4.637040px;}
._3{width:5.736960px;}
._f{width:7.007040px;}
._1a{width:8.031360px;}
._b{width:9.074880px;}
._6{width:10.656960px;}
._c{width:12.254400px;}
._14{width:13.314240px;}
._1d{width:14.343360px;}
._10{width:15.363360px;}
._8{width:16.613280px;}
._7{width:17.808480px;}
._9{width:19.785600px;}
._13{width:21.528000px;}
._16{width:23.517360px;}
._e{width:24.634800px;}
._d{width:25.877040px;}
._15{width:27.381600px;}
._1e{width:28.681920px;}
._1c{width:30.466080px;}
._1b{width:31.596480px;}
._18{width:32.784480px;}
._17{width:34.047360px;}
._19{width:35.902080px;}
._5{width:37.130640px;}
._2a{width:38.525520px;}
._31{width:49.202160px;}
._20{width:54.178560px;}
._1f{width:55.310400px;}
._27{width:61.134480px;}
._25{width:62.150400px;}
._26{width:64.258320px;}
._28{width:66.288960px;}
._24{width:88.764000px;}
._30{width:93.225600px;}
._23{width:109.324320px;}
._2e{width:126.213120px;}
._2f{width:127.408320px;}
._2b{width:128.790720px;}
._2c{width:130.369440px;}
._21{width:147.148800px;}
._22{width:148.637520px;}
._29{width:258.720720px;}
._2d{width:388.977840px;}
.fc1{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:0.900000px;}
.y36{bottom:2.880000px;}
.yba{bottom:3.240000px;}
.y11e{bottom:4.140000px;}
.yce{bottom:11.880000px;}
.y122{bottom:17.280000px;}
.ycd{bottom:20.520000px;}
.yd3{bottom:20.550000px;}
.yb8{bottom:21.600000px;}
.yed{bottom:36.720000px;}
.yd5{bottom:37.620000px;}
.yd2{bottom:37.830000px;}
.y7{bottom:184.500000px;}
.y33{bottom:213.480000px;}
.y8a{bottom:214.740000px;}
.y161{bottom:217.800000px;}
.yc7{bottom:221.400000px;}
.y11c{bottom:224.280000px;}
.y32{bottom:226.650000px;}
.yb3{bottom:232.050000px;}
.y89{bottom:233.850000px;}
.ye8{bottom:234.750000px;}
.y160{bottom:235.110000px;}
.y13e{bottom:236.910000px;}
.yc6{bottom:240.510000px;}
.y11b{bottom:243.210000px;}
.yb2{bottom:251.130000px;}
.y31{bottom:251.490000px;}
.y15f{bottom:252.390000px;}
.y88{bottom:252.750000px;}
.ye7{bottom:253.650000px;}
.y13d{bottom:254.010000px;}
.y5f{bottom:256.170000px;}
.yc5{bottom:259.410000px;}
.y11a{bottom:262.290000px;}
.y30{bottom:268.770000px;}
.y15e{bottom:269.670000px;}
.yb1{bottom:270.030000px;}
.y13c{bottom:271.290000px;}
.y87{bottom:271.830000px;}
.ye6{bottom:272.730000px;}
.y5e{bottom:275.250000px;}
.yc4{bottom:278.310000px;}
.y119{bottom:281.190000px;}
.y2f{bottom:284.070000px;}
.y15d{bottom:286.950000px;}
.y13b{bottom:288.570000px;}
.yb0{bottom:289.110000px;}
.yfa{bottom:290.370000px;}
.y86{bottom:290.730000px;}
.ye5{bottom:291.630000px;}
.y2e{bottom:292.890000px;}
.y5d{bottom:294.150000px;}
.yc3{bottom:297.390000px;}
.y118{bottom:300.270000px;}
.y15c{bottom:304.050000px;}
.y13a{bottom:305.850000px;}
.yaf{bottom:308.010000px;}
.yf9{bottom:309.270000px;}
.y85{bottom:309.810000px;}
.y2d{bottom:310.170000px;}
.ye4{bottom:310.710000px;}
.y5c{bottom:313.230000px;}
.yc2{bottom:316.290000px;}
.y117{bottom:319.170000px;}
.y15b{bottom:321.330000px;}
.y139{bottom:323.130000px;}
.yae{bottom:326.910000px;}
.y2c{bottom:327.450000px;}
.yf8{bottom:328.350000px;}
.y84{bottom:328.710000px;}
.ye3{bottom:329.610000px;}
.y5b{bottom:332.130000px;}
.yc1{bottom:335.370000px;}
.y116{bottom:338.070000px;}
.y15a{bottom:338.610000px;}
.y138{bottom:340.410000px;}
.y2b{bottom:344.730000px;}
.yad{bottom:345.990000px;}
.yf7{bottom:347.250000px;}
.y83{bottom:347.610000px;}
.ye2{bottom:348.510000px;}
.y5a{bottom:351.030000px;}
.yc0{bottom:354.630000px;}
.y159{bottom:355.890000px;}
.y115{bottom:357.150000px;}
.y137{bottom:357.510000px;}
.y2a{bottom:362.010000px;}
.yac{bottom:364.890000px;}
.yf6{bottom:366.330000px;}
.y82{bottom:366.690000px;}
.ye1{bottom:367.590000px;}
.y59{bottom:370.110000px;}
.y158{bottom:373.170000px;}
.ybf{bottom:373.530000px;}
.y136{bottom:374.790000px;}
.y114{bottom:376.050000px;}
.y29{bottom:379.110000px;}
.yab{bottom:383.970000px;}
.yf5{bottom:385.230000px;}
.y81{bottom:385.590000px;}
.ye0{bottom:386.490000px;}
.y58{bottom:389.010000px;}
.y157{bottom:390.270000px;}
.ybe{bottom:391.890000px;}
.y135{bottom:392.070000px;}
.y113{bottom:395.130000px;}
.y28{bottom:396.390000px;}
.yaa{bottom:402.870000px;}
.yf4{bottom:404.310000px;}
.y80{bottom:404.670000px;}
.ydf{bottom:405.570000px;}
.y156{bottom:407.550000px;}
.y57{bottom:408.090000px;}
.y134{bottom:409.350000px;}
.ybd{bottom:410.250000px;}
.y27{bottom:413.670000px;}
.y112{bottom:414.030000px;}
.ya9{bottom:421.770000px;}
.yf3{bottom:423.210000px;}
.y7f{bottom:423.570000px;}
.yde{bottom:424.470000px;}
.y155{bottom:424.830000px;}
.y133{bottom:426.630000px;}
.y56{bottom:426.990000px;}
.ybc{bottom:428.610000px;}
.y26{bottom:430.950000px;}
.y111{bottom:433.110000px;}
.ya8{bottom:440.850000px;}
.yf2{bottom:442.110000px;}
.y7e{bottom:442.470000px;}
.ydd{bottom:443.370000px;}
.y132{bottom:443.910000px;}
.y55{bottom:446.070000px;}
.ybb{bottom:446.970000px;}
.y25{bottom:448.230000px;}
.y110{bottom:452.010000px;}
.ya7{bottom:459.795000px;}
.y131{bottom:461.055000px;}
.yf1{bottom:461.235000px;}
.y7d{bottom:461.595000px;}
.ydc{bottom:462.495000px;}
.y54{bottom:465.375000px;}
.y24{bottom:465.555000px;}
.yb7{bottom:466.635000px;}
.y10f{bottom:470.955000px;}
.y130{bottom:478.335000px;}
.ya6{bottom:478.875000px;}
.yf0{bottom:480.135000px;}
.y7c{bottom:480.495000px;}
.ydb{bottom:481.395000px;}
.y23{bottom:483.195000px;}
.yb9{bottom:484.995000px;}
.y53{bottom:485.715000px;}
.y10e{bottom:490.035000px;}
.y12f{bottom:495.615000px;}
.ya5{bottom:497.775000px;}
.yef{bottom:499.215000px;}
.y7b{bottom:499.575000px;}
.yda{bottom:500.475000px;}
.y22{bottom:501.375000px;}
.y52{bottom:504.615000px;}
.yb6{bottom:507.675000px;}
.y10d{bottom:508.935000px;}
.y12e{bottom:512.895000px;}
.ya4{bottom:516.675000px;}
.y21{bottom:516.855000px;}
.yee{bottom:517.755000px;}
.y7a{bottom:518.475000px;}
.yd9{bottom:519.375000px;}
.y51{bottom:523.695000px;}
.yb5{bottom:524.955000px;}
.y10c{bottom:528.015000px;}
.y12d{bottom:530.175000px;}
.yec{bottom:531.615000px;}
.y20{bottom:531.975000px;}
.ya3{bottom:535.755000px;}
.y79{bottom:537.375000px;}
.yd8{bottom:538.275000px;}
.yb4{bottom:541.515000px;}
.y50{bottom:542.595000px;}
.y1f{bottom:546.195000px;}
.y10b{bottom:546.915000px;}
.y12c{bottom:547.275000px;}
.ya2{bottom:554.655000px;}
.yd7{bottom:555.915000px;}
.y78{bottom:556.455000px;}
.y4f{bottom:561.675000px;}
.y12b{bottom:564.555000px;}
.y10a{bottom:565.815000px;}
.y1e{bottom:566.175000px;}
.ya1{bottom:573.735000px;}
.y77{bottom:575.355000px;}
.yeb{bottom:576.615000px;}
.y1d{bottom:577.335000px;}
.y4e{bottom:580.575000px;}
.y12a{bottom:581.835000px;}
.y109{bottom:584.895000px;}
.yd6{bottom:591.555000px;}
.ya0{bottom:592.635000px;}
.y76{bottom:594.435000px;}
.y1c{bottom:597.315000px;}
.y129{bottom:599.115000px;}
.y4d{bottom:599.475000px;}
.y108{bottom:603.795000px;}
.y1b{bottom:608.295000px;}
.y9f{bottom:611.535000px;}
.y75{bottom:613.335000px;}
.y128{bottom:616.395000px;}
.y4c{bottom:618.555000px;}
.y107{bottom:622.875000px;}
.yd4{bottom:627.195000px;}
.y1a{bottom:628.275000px;}
.y9e{bottom:630.615000px;}
.y74{bottom:632.235000px;}
.y154{bottom:633.675000px;}
.y127{bottom:634.035000px;}
.y4b{bottom:637.455000px;}
.y19{bottom:639.435000px;}
.y106{bottom:641.775000px;}
.y9d{bottom:649.515000px;}
.y153{bottom:650.775000px;}
.y73{bottom:651.315000px;}
.y126{bottom:652.575000px;}
.y18{bottom:654.915000px;}
.y4a{bottom:656.535000px;}
.y105{bottom:660.675000px;}
.y152{bottom:668.055000px;}
.y9c{bottom:668.595000px;}
.y125{bottom:669.855000px;}
.y72{bottom:670.215000px;}
.y17{bottom:674.895000px;}
.y49{bottom:675.435000px;}
.y104{bottom:679.755000px;}
.yd1{bottom:679.935000px;}
.y151{bottom:685.335000px;}
.y16{bottom:686.595000px;}
.y9b{bottom:687.495000px;}
.y124{bottom:687.855000px;}
.y71{bottom:689.325000px;}
.y48{bottom:694.365000px;}
.y123{bottom:695.085000px;}
.y150{bottom:702.645000px;}
.y15{bottom:705.165000px;}
.y9a{bottom:706.425000px;}
.y70{bottom:708.225000px;}
.y47{bottom:713.445000px;}
.y14f{bottom:719.925000px;}
.y14{bottom:722.445000px;}
.y99{bottom:725.505000px;}
.y6f{bottom:727.125000px;}
.y121{bottom:729.465000px;}
.y46{bottom:732.345000px;}
.yd0{bottom:732.885000px;}
.y14e{bottom:737.205000px;}
.y13{bottom:741.345000px;}
.yea{bottom:744.045000px;}
.y98{bottom:744.405000px;}
.y6e{bottom:746.205000px;}
.y120{bottom:746.745000px;}
.y45{bottom:751.425000px;}
.y14d{bottom:754.305000px;}
.y12{bottom:759.525000px;}
.y97{bottom:763.485000px;}
.y6d{bottom:765.105000px;}
.ycf{bottom:768.525000px;}
.y44{bottom:770.325000px;}
.y14c{bottom:771.585000px;}
.y11{bottom:775.725000px;}
.y96{bottom:782.385000px;}
.y6c{bottom:784.185000px;}
.y14b{bottom:788.865000px;}
.y43{bottom:789.225000px;}
.y10{bottom:794.985000px;}
.y95{bottom:801.465000px;}
.y6b{bottom:803.085000px;}
.ycc{bottom:804.165000px;}
.y14a{bottom:806.145000px;}
.y42{bottom:808.305000px;}
.yf{bottom:815.685000px;}
.y94{bottom:820.365000px;}
.y6a{bottom:822.165000px;}
.y149{bottom:823.425000px;}
.y41{bottom:827.205000px;}
.y103{bottom:827.565000px;}
.ye{bottom:836.385000px;}
.y93{bottom:839.265000px;}
.y148{bottom:840.705000px;}
.yca{bottom:840.885000px;}
.y69{bottom:841.065000px;}
.y40{bottom:846.285000px;}
.y102{bottom:848.265000px;}
.yd{bottom:856.905000px;}
.y147{bottom:857.805000px;}
.y92{bottom:858.345000px;}
.ycb{bottom:859.245000px;}
.y68{bottom:859.965000px;}
.y3f{bottom:865.185000px;}
.y101{bottom:868.965000px;}
.y146{bottom:875.085000px;}
.yc{bottom:875.805000px;}
.y91{bottom:877.245000px;}
.y67{bottom:879.045000px;}
.yc9{bottom:881.925000px;}
.y3e{bottom:884.085000px;}
.y11d{bottom:885.705000px;}
.y100{bottom:889.665000px;}
.y145{bottom:892.365000px;}
.yb{bottom:894.885000px;}
.y90{bottom:896.325000px;}
.y66{bottom:897.945000px;}
.yc8{bottom:899.205000px;}
.y3d{bottom:903.165000px;}
.y144{bottom:909.645000px;}
.yff{bottom:910.365000px;}
.ya{bottom:913.785000px;}
.y8f{bottom:915.225000px;}
.ye9{bottom:915.585000px;}
.y65{bottom:917.025000px;}
.y3c{bottom:922.110000px;}
.y143{bottom:926.970000px;}
.yfe{bottom:931.110000px;}
.y9{bottom:932.730000px;}
.y8e{bottom:934.170000px;}
.y64{bottom:935.970000px;}
.y3b{bottom:941.190000px;}
.y142{bottom:944.070000px;}
.y8{bottom:951.090000px;}
.yfd{bottom:951.810000px;}
.y8d{bottom:953.250000px;}
.y63{bottom:954.870000px;}
.y3a{bottom:960.090000px;}
.y141{bottom:961.350000px;}
.y6{bottom:966.570000px;}
.y8c{bottom:972.150000px;}
.yfc{bottom:972.510000px;}
.y62{bottom:973.950000px;}
.y140{bottom:978.630000px;}
.y39{bottom:979.170000px;}
.y5{bottom:982.050000px;}
.y8b{bottom:991.410000px;}
.y61{bottom:992.850000px;}
.yfb{bottom:993.210000px;}
.y13f{bottom:995.910000px;}
.y4{bottom:997.530000px;}
.y38{bottom:998.070000px;}
.y60{bottom:1011.930000px;}
.y3{bottom:1013.190000px;}
.y37{bottom:1015.890000px;}
.y2{bottom:1028.670000px;}
.y34{bottom:1029.210000px;}
.y35{bottom:1041.270000px;}
.y1{bottom:1044.150000px;}
.he{height:15.480000px;}
.h13{height:17.280000px;}
.h15{height:17.316000px;}
.hc{height:20.790000px;}
.hd{height:29.276367px;}
.h8{height:31.517578px;}
.h1a{height:34.380000px;}
.h17{height:34.560000px;}
.h12{height:35.640000px;}
.ha{height:42.233555px;}
.h1d{height:45.000000px;}
.h9{height:45.035156px;}
.h2{height:47.276367px;}
.h11{height:49.255313px;}
.h19{height:51.660000px;}
.h18{height:51.876000px;}
.h10{height:52.290000px;}
.hb{height:52.319180px;}
.h7{height:54.900000px;}
.h14{height:54.918984px;}
.h4{height:57.960000px;}
.h6{height:57.992344px;}
.hf{height:60.320391px;}
.h16{height:60.440391px;}
.h5{height:63.000000px;}
.h3{height:63.035156px;}
.h20{height:65.884219px;}
.h1f{height:138.960000px;}
.h1e{height:141.330000px;}
.h1c{height:167.430000px;}
.h1b{height:167.580000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:6.120000px;}
.w8{width:52.020000px;}
.w7{width:52.200000px;}
.w6{width:52.236000px;}
.w9{width:55.260000px;}
.wd{width:62.820000px;}
.we{width:64.620000px;}
.wc{width:64.656000px;}
.w12{width:201.630000px;}
.w13{width:202.170000px;}
.w4{width:212.070000px;}
.w5{width:214.770000px;}
.wa{width:222.510000px;}
.w10{width:230.610000px;}
.wf{width:234.030000px;}
.wb{width:257.970000px;}
.w14{width:403.815000px;}
.w11{width:464.655000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:7.560000px;}
.x40{left:10.080000px;}
.x26{left:14.760000px;}
.x27{left:16.740000px;}
.x28{left:18.000000px;}
.x38{left:19.080000px;}
.x2a{left:20.520000px;}
.x20{left:22.140000px;}
.x24{left:24.120000px;}
.x4d{left:26.460000px;}
.x31{left:28.440000px;}
.x3c{left:31.320000px;}
.x2b{left:32.580000px;}
.x3d{left:38.880000px;}
.x29{left:51.300000px;}
.x1f{left:57.270000px;}
.x35{left:59.400000px;}
.x30{left:65.010000px;}
.x3b{left:67.860000px;}
.x25{left:69.525000px;}
.x3a{left:71.640000px;}
.x39{left:74.520000px;}
.x1e{left:80.325000px;}
.x3e{left:83.700000px;}
.x36{left:86.040000px;}
.x2c{left:87.345000px;}
.x2f{left:88.425000px;}
.x3f{left:95.805000px;}
.x37{left:97.785000px;}
.x4b{left:101.010000px;}
.x46{left:104.985000px;}
.x4c{left:166.890000px;}
.x4a{left:168.510000px;}
.x49{left:170.685000px;}
.x43{left:179.325000px;}
.x7{left:180.749987px;}
.x45{left:182.190000px;}
.x12{left:185.069987px;}
.x1a{left:186.869987px;}
.x10{left:188.309987px;}
.x18{left:201.989987px;}
.x2e{left:205.770000px;}
.xe{left:209.369987px;}
.xc{left:213.149987px;}
.x42{left:214.230000px;}
.xa{left:217.109987px;}
.x1d{left:232.590000px;}
.x17{left:233.849987px;}
.x48{left:244.110000px;}
.x4e{left:275.069987px;}
.x1{left:290.369987px;}
.x2d{left:306.074987px;}
.x3{left:310.214987px;}
.xf{left:326.954987px;}
.x1c{left:332.534987px;}
.xb{left:344.774987px;}
.x15{left:346.934987px;}
.x4f{left:348.554987px;}
.x6{left:349.634987px;}
.x4{left:351.794987px;}
.x13{left:355.394987px;}
.x8{left:358.994987px;}
.x14{left:361.874987px;}
.x1b{left:393.374987px;}
.x47{left:395.714987px;}
.x19{left:396.794987px;}
.x50{left:414.794987px;}
.x2{left:416.414987px;}
.x11{left:422.174987px;}
.x5{left:430.094987px;}
.xd{left:437.114987px;}
.x9{left:446.474987px;}
.x44{left:448.275000px;}
.x16{left:462.494987px;}
.x32{left:495.105000px;}
.x21{left:498.885000px;}
.x22{left:552.165000px;}
.x33{left:558.825000px;}
.x23{left:605.265000px;}
.x34{left:622.725000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls2d{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls26{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094720pt;}
.ls10{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.097067pt;}
.lsa{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.154027pt;}
.lsf{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.201387pt;}
.ls19{letter-spacing:0.203947pt;}
.ls0{letter-spacing:0.207360pt;}
.ls21{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.800000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls11{letter-spacing:2.560000pt;}
.ls2b{letter-spacing:2.720000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls1e{letter-spacing:3.840000pt;}
.ls2c{letter-spacing:4.640000pt;}
.ls13{letter-spacing:5.120000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls2a{letter-spacing:15.520000pt;}
.ls25{letter-spacing:18.080000pt;}
.ls29{letter-spacing:20.000000pt;}
.ls28{letter-spacing:21.920000pt;}
.ls1a{letter-spacing:23.680000pt;}
.ls12{letter-spacing:24.320000pt;}
.ls24{letter-spacing:49.920000pt;}
.ws8{word-spacing:-32.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.953067pt;}
.ws14{word-spacing:-14.817067pt;}
.wsd{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.622933pt;}
.wsb{word-spacing:-14.486933pt;}
.ws15{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws19{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.888000pt;}
.wsf{word-spacing:-11.680000pt;}
.wsa{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.200533pt;}
.ws4{word-spacing:-8.640000pt;}
.ws18{word-spacing:-8.632320pt;}
.ws5{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._12{margin-left:-4.011520pt;}
._11{margin-left:-2.472960pt;}
._1{margin-left:-1.056000pt;}
._0{width:0.938667pt;}
._a{width:2.130987pt;}
._4{width:3.031253pt;}
._2{width:4.121813pt;}
._3{width:5.099520pt;}
._f{width:6.228480pt;}
._1a{width:7.138987pt;}
._b{width:8.066560pt;}
._6{width:9.472853pt;}
._c{width:10.892800pt;}
._14{width:11.834880pt;}
._1d{width:12.749653pt;}
._10{width:13.656320pt;}
._8{width:14.767360pt;}
._7{width:15.829760pt;}
._9{width:17.587200pt;}
._13{width:19.136000pt;}
._16{width:20.904320pt;}
._e{width:21.897600pt;}
._d{width:23.001813pt;}
._15{width:24.339200pt;}
._1e{width:25.495040pt;}
._1c{width:27.080960pt;}
._1b{width:28.085760pt;}
._18{width:29.141760pt;}
._17{width:30.264320pt;}
._19{width:31.912960pt;}
._5{width:33.005013pt;}
._2a{width:34.244907pt;}
._31{width:43.735253pt;}
._20{width:48.158720pt;}
._1f{width:49.164800pt;}
._27{width:54.341760pt;}
._25{width:55.244800pt;}
._26{width:57.118507pt;}
._28{width:58.923520pt;}
._24{width:78.901333pt;}
._30{width:82.867200pt;}
._23{width:97.177173pt;}
._2e{width:112.189440pt;}
._2f{width:113.251840pt;}
._2b{width:114.480640pt;}
._2c{width:115.883947pt;}
._21{width:130.798933pt;}
._22{width:132.122240pt;}
._29{width:229.973973pt;}
._2d{width:345.758080pt;}
.fs7{font-size:21.120000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:0.800000pt;}
.y36{bottom:2.560000pt;}
.yba{bottom:2.880000pt;}
.y11e{bottom:3.680000pt;}
.yce{bottom:10.560000pt;}
.y122{bottom:15.360000pt;}
.ycd{bottom:18.240000pt;}
.yd3{bottom:18.266667pt;}
.yb8{bottom:19.200000pt;}
.yed{bottom:32.640000pt;}
.yd5{bottom:33.440000pt;}
.yd2{bottom:33.626667pt;}
.y7{bottom:164.000000pt;}
.y33{bottom:189.760000pt;}
.y8a{bottom:190.880000pt;}
.y161{bottom:193.600000pt;}
.yc7{bottom:196.800000pt;}
.y11c{bottom:199.360000pt;}
.y32{bottom:201.466667pt;}
.yb3{bottom:206.266667pt;}
.y89{bottom:207.866667pt;}
.ye8{bottom:208.666667pt;}
.y160{bottom:208.986667pt;}
.y13e{bottom:210.586667pt;}
.yc6{bottom:213.786667pt;}
.y11b{bottom:216.186667pt;}
.yb2{bottom:223.226667pt;}
.y31{bottom:223.546667pt;}
.y15f{bottom:224.346667pt;}
.y88{bottom:224.666667pt;}
.ye7{bottom:225.466667pt;}
.y13d{bottom:225.786667pt;}
.y5f{bottom:227.706667pt;}
.yc5{bottom:230.586667pt;}
.y11a{bottom:233.146667pt;}
.y30{bottom:238.906667pt;}
.y15e{bottom:239.706667pt;}
.yb1{bottom:240.026667pt;}
.y13c{bottom:241.146667pt;}
.y87{bottom:241.626667pt;}
.ye6{bottom:242.426667pt;}
.y5e{bottom:244.666667pt;}
.yc4{bottom:247.386667pt;}
.y119{bottom:249.946667pt;}
.y2f{bottom:252.506667pt;}
.y15d{bottom:255.066667pt;}
.y13b{bottom:256.506667pt;}
.yb0{bottom:256.986667pt;}
.yfa{bottom:258.106667pt;}
.y86{bottom:258.426667pt;}
.ye5{bottom:259.226667pt;}
.y2e{bottom:260.346667pt;}
.y5d{bottom:261.466667pt;}
.yc3{bottom:264.346667pt;}
.y118{bottom:266.906667pt;}
.y15c{bottom:270.266667pt;}
.y13a{bottom:271.866667pt;}
.yaf{bottom:273.786667pt;}
.yf9{bottom:274.906667pt;}
.y85{bottom:275.386667pt;}
.y2d{bottom:275.706667pt;}
.ye4{bottom:276.186667pt;}
.y5c{bottom:278.426667pt;}
.yc2{bottom:281.146667pt;}
.y117{bottom:283.706667pt;}
.y15b{bottom:285.626667pt;}
.y139{bottom:287.226667pt;}
.yae{bottom:290.586667pt;}
.y2c{bottom:291.066667pt;}
.yf8{bottom:291.866667pt;}
.y84{bottom:292.186667pt;}
.ye3{bottom:292.986667pt;}
.y5b{bottom:295.226667pt;}
.yc1{bottom:298.106667pt;}
.y116{bottom:300.506667pt;}
.y15a{bottom:300.986667pt;}
.y138{bottom:302.586667pt;}
.y2b{bottom:306.426667pt;}
.yad{bottom:307.546667pt;}
.yf7{bottom:308.666667pt;}
.y83{bottom:308.986667pt;}
.ye2{bottom:309.786667pt;}
.y5a{bottom:312.026667pt;}
.yc0{bottom:315.226667pt;}
.y159{bottom:316.346667pt;}
.y115{bottom:317.466667pt;}
.y137{bottom:317.786667pt;}
.y2a{bottom:321.786667pt;}
.yac{bottom:324.346667pt;}
.yf6{bottom:325.626667pt;}
.y82{bottom:325.946667pt;}
.ye1{bottom:326.746667pt;}
.y59{bottom:328.986667pt;}
.y158{bottom:331.706667pt;}
.ybf{bottom:332.026667pt;}
.y136{bottom:333.146667pt;}
.y114{bottom:334.266667pt;}
.y29{bottom:336.986667pt;}
.yab{bottom:341.306667pt;}
.yf5{bottom:342.426667pt;}
.y81{bottom:342.746667pt;}
.ye0{bottom:343.546667pt;}
.y58{bottom:345.786667pt;}
.y157{bottom:346.906667pt;}
.ybe{bottom:348.346667pt;}
.y135{bottom:348.506667pt;}
.y113{bottom:351.226667pt;}
.y28{bottom:352.346667pt;}
.yaa{bottom:358.106667pt;}
.yf4{bottom:359.386667pt;}
.y80{bottom:359.706667pt;}
.ydf{bottom:360.506667pt;}
.y156{bottom:362.266667pt;}
.y57{bottom:362.746667pt;}
.y134{bottom:363.866667pt;}
.ybd{bottom:364.666667pt;}
.y27{bottom:367.706667pt;}
.y112{bottom:368.026667pt;}
.ya9{bottom:374.906667pt;}
.yf3{bottom:376.186667pt;}
.y7f{bottom:376.506667pt;}
.yde{bottom:377.306667pt;}
.y155{bottom:377.626667pt;}
.y133{bottom:379.226667pt;}
.y56{bottom:379.546667pt;}
.ybc{bottom:380.986667pt;}
.y26{bottom:383.066667pt;}
.y111{bottom:384.986667pt;}
.ya8{bottom:391.866667pt;}
.yf2{bottom:392.986667pt;}
.y7e{bottom:393.306667pt;}
.ydd{bottom:394.106667pt;}
.y132{bottom:394.586667pt;}
.y55{bottom:396.506667pt;}
.ybb{bottom:397.306667pt;}
.y25{bottom:398.426667pt;}
.y110{bottom:401.786667pt;}
.ya7{bottom:408.706667pt;}
.y131{bottom:409.826667pt;}
.yf1{bottom:409.986667pt;}
.y7d{bottom:410.306667pt;}
.ydc{bottom:411.106667pt;}
.y54{bottom:413.666667pt;}
.y24{bottom:413.826667pt;}
.yb7{bottom:414.786667pt;}
.y10f{bottom:418.626667pt;}
.y130{bottom:425.186667pt;}
.ya6{bottom:425.666667pt;}
.yf0{bottom:426.786667pt;}
.y7c{bottom:427.106667pt;}
.ydb{bottom:427.906667pt;}
.y23{bottom:429.506667pt;}
.yb9{bottom:431.106667pt;}
.y53{bottom:431.746667pt;}
.y10e{bottom:435.586667pt;}
.y12f{bottom:440.546667pt;}
.ya5{bottom:442.466667pt;}
.yef{bottom:443.746667pt;}
.y7b{bottom:444.066667pt;}
.yda{bottom:444.866667pt;}
.y22{bottom:445.666667pt;}
.y52{bottom:448.546667pt;}
.yb6{bottom:451.266667pt;}
.y10d{bottom:452.386667pt;}
.y12e{bottom:455.906667pt;}
.ya4{bottom:459.266667pt;}
.y21{bottom:459.426667pt;}
.yee{bottom:460.226667pt;}
.y7a{bottom:460.866667pt;}
.yd9{bottom:461.666667pt;}
.y51{bottom:465.506667pt;}
.yb5{bottom:466.626667pt;}
.y10c{bottom:469.346667pt;}
.y12d{bottom:471.266667pt;}
.yec{bottom:472.546667pt;}
.y20{bottom:472.866667pt;}
.ya3{bottom:476.226667pt;}
.y79{bottom:477.666667pt;}
.yd8{bottom:478.466667pt;}
.yb4{bottom:481.346667pt;}
.y50{bottom:482.306667pt;}
.y1f{bottom:485.506667pt;}
.y10b{bottom:486.146667pt;}
.y12c{bottom:486.466667pt;}
.ya2{bottom:493.026667pt;}
.yd7{bottom:494.146667pt;}
.y78{bottom:494.626667pt;}
.y4f{bottom:499.266667pt;}
.y12b{bottom:501.826667pt;}
.y10a{bottom:502.946667pt;}
.y1e{bottom:503.266667pt;}
.ya1{bottom:509.986667pt;}
.y77{bottom:511.426667pt;}
.yeb{bottom:512.546667pt;}
.y1d{bottom:513.186667pt;}
.y4e{bottom:516.066667pt;}
.y12a{bottom:517.186667pt;}
.y109{bottom:519.906667pt;}
.yd6{bottom:525.826667pt;}
.ya0{bottom:526.786667pt;}
.y76{bottom:528.386667pt;}
.y1c{bottom:530.946667pt;}
.y129{bottom:532.546667pt;}
.y4d{bottom:532.866667pt;}
.y108{bottom:536.706667pt;}
.y1b{bottom:540.706667pt;}
.y9f{bottom:543.586667pt;}
.y75{bottom:545.186667pt;}
.y128{bottom:547.906667pt;}
.y4c{bottom:549.826667pt;}
.y107{bottom:553.666667pt;}
.yd4{bottom:557.506667pt;}
.y1a{bottom:558.466667pt;}
.y9e{bottom:560.546667pt;}
.y74{bottom:561.986667pt;}
.y154{bottom:563.266667pt;}
.y127{bottom:563.586667pt;}
.y4b{bottom:566.626667pt;}
.y19{bottom:568.386667pt;}
.y106{bottom:570.466667pt;}
.y9d{bottom:577.346667pt;}
.y153{bottom:578.466667pt;}
.y73{bottom:578.946667pt;}
.y126{bottom:580.066667pt;}
.y18{bottom:582.146667pt;}
.y4a{bottom:583.586667pt;}
.y105{bottom:587.266667pt;}
.y152{bottom:593.826667pt;}
.y9c{bottom:594.306667pt;}
.y125{bottom:595.426667pt;}
.y72{bottom:595.746667pt;}
.y17{bottom:599.906667pt;}
.y49{bottom:600.386667pt;}
.y104{bottom:604.226667pt;}
.yd1{bottom:604.386667pt;}
.y151{bottom:609.186667pt;}
.y16{bottom:610.306667pt;}
.y9b{bottom:611.106667pt;}
.y124{bottom:611.426667pt;}
.y71{bottom:612.733333pt;}
.y48{bottom:617.213333pt;}
.y123{bottom:617.853333pt;}
.y150{bottom:624.573333pt;}
.y15{bottom:626.813333pt;}
.y9a{bottom:627.933333pt;}
.y70{bottom:629.533333pt;}
.y47{bottom:634.173333pt;}
.y14f{bottom:639.933333pt;}
.y14{bottom:642.173333pt;}
.y99{bottom:644.893333pt;}
.y6f{bottom:646.333333pt;}
.y121{bottom:648.413333pt;}
.y46{bottom:650.973333pt;}
.yd0{bottom:651.453333pt;}
.y14e{bottom:655.293333pt;}
.y13{bottom:658.973333pt;}
.yea{bottom:661.373333pt;}
.y98{bottom:661.693333pt;}
.y6e{bottom:663.293333pt;}
.y120{bottom:663.773333pt;}
.y45{bottom:667.933333pt;}
.y14d{bottom:670.493333pt;}
.y12{bottom:675.133333pt;}
.y97{bottom:678.653333pt;}
.y6d{bottom:680.093333pt;}
.ycf{bottom:683.133333pt;}
.y44{bottom:684.733333pt;}
.y14c{bottom:685.853333pt;}
.y11{bottom:689.533333pt;}
.y96{bottom:695.453333pt;}
.y6c{bottom:697.053333pt;}
.y14b{bottom:701.213333pt;}
.y43{bottom:701.533333pt;}
.y10{bottom:706.653333pt;}
.y95{bottom:712.413333pt;}
.y6b{bottom:713.853333pt;}
.ycc{bottom:714.813333pt;}
.y14a{bottom:716.573333pt;}
.y42{bottom:718.493333pt;}
.yf{bottom:725.053333pt;}
.y94{bottom:729.213333pt;}
.y6a{bottom:730.813333pt;}
.y149{bottom:731.933333pt;}
.y41{bottom:735.293333pt;}
.y103{bottom:735.613333pt;}
.ye{bottom:743.453333pt;}
.y93{bottom:746.013333pt;}
.y148{bottom:747.293333pt;}
.yca{bottom:747.453333pt;}
.y69{bottom:747.613333pt;}
.y40{bottom:752.253333pt;}
.y102{bottom:754.013333pt;}
.yd{bottom:761.693333pt;}
.y147{bottom:762.493333pt;}
.y92{bottom:762.973333pt;}
.ycb{bottom:763.773333pt;}
.y68{bottom:764.413333pt;}
.y3f{bottom:769.053333pt;}
.y101{bottom:772.413333pt;}
.y146{bottom:777.853333pt;}
.yc{bottom:778.493333pt;}
.y91{bottom:779.773333pt;}
.y67{bottom:781.373333pt;}
.yc9{bottom:783.933333pt;}
.y3e{bottom:785.853333pt;}
.y11d{bottom:787.293333pt;}
.y100{bottom:790.813333pt;}
.y145{bottom:793.213333pt;}
.yb{bottom:795.453333pt;}
.y90{bottom:796.733333pt;}
.y66{bottom:798.173333pt;}
.yc8{bottom:799.293333pt;}
.y3d{bottom:802.813333pt;}
.y144{bottom:808.573333pt;}
.yff{bottom:809.213333pt;}
.ya{bottom:812.253333pt;}
.y8f{bottom:813.533333pt;}
.ye9{bottom:813.853333pt;}
.y65{bottom:815.133333pt;}
.y3c{bottom:819.653333pt;}
.y143{bottom:823.973333pt;}
.yfe{bottom:827.653333pt;}
.y9{bottom:829.093333pt;}
.y8e{bottom:830.373333pt;}
.y64{bottom:831.973333pt;}
.y3b{bottom:836.613333pt;}
.y142{bottom:839.173333pt;}
.y8{bottom:845.413333pt;}
.yfd{bottom:846.053333pt;}
.y8d{bottom:847.333333pt;}
.y63{bottom:848.773333pt;}
.y3a{bottom:853.413333pt;}
.y141{bottom:854.533333pt;}
.y6{bottom:859.173333pt;}
.y8c{bottom:864.133333pt;}
.yfc{bottom:864.453333pt;}
.y62{bottom:865.733333pt;}
.y140{bottom:869.893333pt;}
.y39{bottom:870.373333pt;}
.y5{bottom:872.933333pt;}
.y8b{bottom:881.253333pt;}
.y61{bottom:882.533333pt;}
.yfb{bottom:882.853333pt;}
.y13f{bottom:885.253333pt;}
.y4{bottom:886.693333pt;}
.y38{bottom:887.173333pt;}
.y60{bottom:899.493333pt;}
.y3{bottom:900.613333pt;}
.y37{bottom:903.013333pt;}
.y2{bottom:914.373333pt;}
.y34{bottom:914.853333pt;}
.y35{bottom:925.573333pt;}
.y1{bottom:928.133333pt;}
.he{height:13.760000pt;}
.h13{height:15.360000pt;}
.h15{height:15.392000pt;}
.hc{height:18.480000pt;}
.hd{height:26.023438pt;}
.h8{height:28.015625pt;}
.h1a{height:30.560000pt;}
.h17{height:30.720000pt;}
.h12{height:31.680000pt;}
.ha{height:37.540937pt;}
.h1d{height:40.000000pt;}
.h9{height:40.031250pt;}
.h2{height:42.023438pt;}
.h11{height:43.782500pt;}
.h19{height:45.920000pt;}
.h18{height:46.112000pt;}
.h10{height:46.480000pt;}
.hb{height:46.505938pt;}
.h7{height:48.800000pt;}
.h14{height:48.816875pt;}
.h4{height:51.520000pt;}
.h6{height:51.548750pt;}
.hf{height:53.618125pt;}
.h16{height:53.724792pt;}
.h5{height:56.000000pt;}
.h3{height:56.031250pt;}
.h20{height:58.563750pt;}
.h1f{height:123.520000pt;}
.h1e{height:125.626667pt;}
.h1c{height:148.826667pt;}
.h1b{height:148.960000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:5.440000pt;}
.w8{width:46.240000pt;}
.w7{width:46.400000pt;}
.w6{width:46.432000pt;}
.w9{width:49.120000pt;}
.wd{width:55.840000pt;}
.we{width:57.440000pt;}
.wc{width:57.472000pt;}
.w12{width:179.226667pt;}
.w13{width:179.706667pt;}
.w4{width:188.506667pt;}
.w5{width:190.906667pt;}
.wa{width:197.786667pt;}
.w10{width:204.986667pt;}
.wf{width:208.026667pt;}
.wb{width:229.306667pt;}
.w14{width:358.946667pt;}
.w11{width:413.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:6.720000pt;}
.x40{left:8.960000pt;}
.x26{left:13.120000pt;}
.x27{left:14.880000pt;}
.x28{left:16.000000pt;}
.x38{left:16.960000pt;}
.x2a{left:18.240000pt;}
.x20{left:19.680000pt;}
.x24{left:21.440000pt;}
.x4d{left:23.520000pt;}
.x31{left:25.280000pt;}
.x3c{left:27.840000pt;}
.x2b{left:28.960000pt;}
.x3d{left:34.560000pt;}
.x29{left:45.600000pt;}
.x1f{left:50.906667pt;}
.x35{left:52.800000pt;}
.x30{left:57.786667pt;}
.x3b{left:60.320000pt;}
.x25{left:61.800000pt;}
.x3a{left:63.680000pt;}
.x39{left:66.240000pt;}
.x1e{left:71.400000pt;}
.x3e{left:74.400000pt;}
.x36{left:76.480000pt;}
.x2c{left:77.640000pt;}
.x2f{left:78.600000pt;}
.x3f{left:85.160000pt;}
.x37{left:86.920000pt;}
.x4b{left:89.786667pt;}
.x46{left:93.320000pt;}
.x4c{left:148.346667pt;}
.x4a{left:149.786667pt;}
.x49{left:151.720000pt;}
.x43{left:159.400000pt;}
.x7{left:160.666655pt;}
.x45{left:161.946667pt;}
.x12{left:164.506655pt;}
.x1a{left:166.106655pt;}
.x10{left:167.386655pt;}
.x18{left:179.546655pt;}
.x2e{left:182.906667pt;}
.xe{left:186.106655pt;}
.xc{left:189.466655pt;}
.x42{left:190.426667pt;}
.xa{left:192.986655pt;}
.x1d{left:206.746667pt;}
.x17{left:207.866655pt;}
.x48{left:216.986667pt;}
.x4e{left:244.506655pt;}
.x1{left:258.106655pt;}
.x2d{left:272.066655pt;}
.x3{left:275.746655pt;}
.xf{left:290.626655pt;}
.x1c{left:295.586655pt;}
.xb{left:306.466655pt;}
.x15{left:308.386655pt;}
.x4f{left:309.826655pt;}
.x6{left:310.786655pt;}
.x4{left:312.706655pt;}
.x13{left:315.906655pt;}
.x8{left:319.106655pt;}
.x14{left:321.666655pt;}
.x1b{left:349.666655pt;}
.x47{left:351.746655pt;}
.x19{left:352.706655pt;}
.x50{left:368.706655pt;}
.x2{left:370.146655pt;}
.x11{left:375.266655pt;}
.x5{left:382.306655pt;}
.xd{left:388.546655pt;}
.x9{left:396.866655pt;}
.x44{left:398.466667pt;}
.x16{left:411.106655pt;}
.x32{left:440.093333pt;}
.x21{left:443.453333pt;}
.x22{left:490.813333pt;}
.x33{left:496.733333pt;}
.x23{left:538.013333pt;}
.x34{left:553.533333pt;}
}




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