
    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_9c9c5ff68a3a13bf8665a915.woff2')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_9218dab235229bcbe59d29d4.woff2')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_481d4ae6091c2a26abb8964d.woff2')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_d9d3930e36d8c1a4daf785bd.woff2')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_02ed0d168113a5e44dbae61c.woff2')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_10e0ac86bfc44f96bdf6b98a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ecc279cfe3a92b2c9ade17f6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f74c4bcb1550deac42cb0151.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.804688;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_edce5a1497b3be2547d22ff0.woff2')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;}
.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;}
.ls17{letter-spacing:-0.420600px;}
.lsf{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.178800px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.084000px;}
.ls12{letter-spacing:-0.038880px;}
.ls1d{letter-spacing:-0.031680px;}
.ls9{letter-spacing:-0.029400px;}
.ls1b{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.098400px;}
.ls1a{letter-spacing:0.113400px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls19{letter-spacing:47.726640px;}
.ls18{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;}
}
.wsf{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.424200px;}
.ws7{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wse{word-spacing:-13.424400px;}
.ws4{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.339800px;}
.wsc{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.187520px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._13{margin-left:-6.927204px;}
._12{margin-left:-5.758452px;}
._8{margin-left:-3.733440px;}
._1{margin-left:-2.343240px;}
._0{margin-left:-1.110000px;}
._2{width:1.438524px;}
._3{width:2.964960px;}
._6{width:3.967800px;}
._7{width:5.091240px;}
._a{width:6.271560px;}
._b{width:7.296480px;}
._9{width:9.138000px;}
._5{width:10.787280px;}
._4{width:11.964960px;}
._10{width:14.488920px;}
._e{width:15.631200px;}
._f{width:17.090040px;}
._15{width:18.577080px;}
._1c{width:19.923480px;}
._11{width:21.823560px;}
._14{width:23.081520px;}
._1b{width:24.201756px;}
._c{width:26.152200px;}
._d{width:27.327360px;}
._1a{width:31.322520px;}
._17{width:38.019600px;}
._18{width:39.452760px;}
._16{width:52.755120px;}
._1d{width:62.224200px;}
._19{width:151.803000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:3.330000px;}
.yd1{bottom:3.870000px;}
.ycb{bottom:3.960000px;}
.yf1{bottom:7.740000px;}
.y4d{bottom:7.830000px;}
.y48{bottom:7.920000px;}
.ybb{bottom:7.950000px;}
.yce{bottom:14.670000px;}
.yb1{bottom:21.510000px;}
.ycd{bottom:32.220000px;}
.y53{bottom:35.190000px;}
.yb6{bottom:53.760000px;}
.y6c{bottom:62.460000px;}
.y61{bottom:62.550000px;}
.yb5{bottom:71.400000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y56{bottom:89.820000px;}
.y5c{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.yf6{bottom:113.520000px;}
.y1a3{bottom:115.140000px;}
.y14c{bottom:116.940000px;}
.y82{bottom:117.180000px;}
.y17c{bottom:119.190000px;}
.ya1{bottom:120.540000px;}
.y1dc{bottom:125.130000px;}
.y55{bottom:127.380000px;}
.y1a2{bottom:132.780000px;}
.y28{bottom:133.770000px;}
.y17b{bottom:136.830000px;}
.y123{bottom:139.170000px;}
.yf5{bottom:139.440000px;}
.yc9{bottom:139.710000px;}
.y1db{bottom:142.680000px;}
.y88{bottom:144.540000px;}
.ya0{bottom:147.900000px;}
.y7f{bottom:148.620000px;}
.y1a1{bottom:150.330000px;}
.y27{bottom:151.320000px;}
.y14b{bottom:152.580000px;}
.y17a{bottom:154.380000px;}
.y59{bottom:154.650000px;}
.y122{bottom:156.720000px;}
.y1da{bottom:160.320000px;}
.yf4{bottom:165.270000px;}
.y1c0{bottom:168.870000px;}
.y26{bottom:168.960000px;}
.y4a{bottom:171.900000px;}
.y121{bottom:174.270000px;}
.y9f{bottom:175.260000px;}
.yc8{bottom:175.350000px;}
.y7e{bottom:175.980000px;}
.y1a0{bottom:176.970000px;}
.y179{bottom:181.020000px;}
.y58{bottom:182.010000px;}
.y25{bottom:186.510000px;}
.y1d9{bottom:186.870000px;}
.y14a{bottom:188.130000px;}
.yf3{bottom:191.100000px;}
.y120{bottom:191.910000px;}
.y19f{bottom:194.520000px;}
.y9e{bottom:202.530000px;}
.y7d{bottom:203.340000px;}
.y1bf{bottom:204.060000px;}
.y1d8{bottom:204.510000px;}
.y149{bottom:205.680000px;}
.y57{bottom:209.370000px;}
.y11f{bottom:209.460000px;}
.yc7{bottom:210.900000px;}
.y178{bottom:216.570000px;}
.yf2{bottom:216.930000px;}
.y19e{bottom:221.070000px;}
.y1d7{bottom:222.060000px;}
.y24{bottom:222.150000px;}
.y148{bottom:223.320000px;}
.y9d{bottom:229.890000px;}
.y7c{bottom:230.610000px;}
.y177{bottom:234.120000px;}
.y11e{bottom:236.100000px;}
.y52{bottom:236.730000px;}
.y19d{bottom:238.710000px;}
.y23{bottom:239.700000px;}
.y147{bottom:240.870000px;}
.yf0{bottom:242.760000px;}
.yc6{bottom:246.540000px;}
.y1be{bottom:248.250000px;}
.y1d6{bottom:248.610000px;}
.y176{bottom:251.760000px;}
.y22{bottom:257.250000px;}
.y7b{bottom:257.970000px;}
.y146{bottom:258.510000px;}
.y54{bottom:264.000000px;}
.yc5{bottom:264.090000px;}
.y19c{bottom:265.260000px;}
.y1d5{bottom:266.250000px;}
.yef{bottom:268.590000px;}
.y175{bottom:269.310000px;}
.y11d{bottom:271.650000px;}
.y1bd{bottom:274.800000px;}
.y21{bottom:274.890000px;}
.y145{bottom:276.060000px;}
.yc4{bottom:281.640000px;}
.y19b{bottom:282.900000px;}
.y1d4{bottom:283.800000px;}
.y9c{bottom:284.520000px;}
.y7a{bottom:285.330000px;}
.y174{bottom:286.950000px;}
.y11c{bottom:289.200000px;}
.y49{bottom:291.360000px;}
.y20{bottom:292.440000px;}
.y144{bottom:293.610000px;}
.yee{bottom:294.420000px;}
.yc3{bottom:299.280000px;}
.y19a{bottom:300.450000px;}
.y173{bottom:304.500000px;}
.y11b{bottom:306.840000px;}
.y1d3{bottom:310.440000px;}
.y143{bottom:311.250000px;}
.y9b{bottom:311.880000px;}
.y79{bottom:312.690000px;}
.yc2{bottom:316.830000px;}
.y51{bottom:318.720000px;}
.y1bc{bottom:318.990000px;}
.y1f{bottom:319.350000px;}
.y11a{bottom:324.390000px;}
.y199{bottom:327.360000px;}
.y1d2{bottom:327.990000px;}
.y142{bottom:328.800000px;}
.y172{bottom:331.050000px;}
.yc1{bottom:334.470000px;}
.y1bb{bottom:336.540000px;}
.y9a{bottom:339.240000px;}
.y78{bottom:339.960000px;}
.yed{bottom:341.580000px;}
.y119{bottom:341.940000px;}
.y50{bottom:346.080000px;}
.yc0{bottom:352.020000px;}
.y1d1{bottom:354.540000px;}
.y118{bottom:359.580000px;}
.y1ba{bottom:363.180000px;}
.y141{bottom:364.440000px;}
.y99{bottom:366.600000px;}
.y171{bottom:366.690000px;}
.y77{bottom:367.320000px;}
.y1e{bottom:367.950000px;}
.ybf{bottom:369.570000px;}
.y1d0{bottom:372.180000px;}
.y4f{bottom:373.350000px;}
.y198{bottom:375.600000px;}
.y117{bottom:377.130000px;}
.yec{bottom:377.220000px;}
.y1b9{bottom:380.730000px;}
.y140{bottom:381.990000px;}
.y170{bottom:384.240000px;}
.ybe{bottom:387.210000px;}
.y197{bottom:393.240000px;}
.y98{bottom:393.870000px;}
.y76{bottom:394.680000px;}
.yeb{bottom:394.770000px;}
.y1cf{bottom:398.730000px;}
.y13f{bottom:399.540000px;}
.y4e{bottom:400.710000px;}
.y16f{bottom:401.880000px;}
.ybd{bottom:404.760000px;}
.y1d{bottom:404.940000px;}
.y1b8{bottom:407.370000px;}
.y116{bottom:412.320000px;}
.yea{bottom:412.410000px;}
.y1ce{bottom:416.370000px;}
.y13e{bottom:417.180000px;}
.y16e{bottom:419.430000px;}
.y196{bottom:420.150000px;}
.y97{bottom:421.230000px;}
.y75{bottom:421.950000px;}
.y1c{bottom:422.580000px;}
.y1b7{bottom:424.920000px;}
.y4c{bottom:428.070000px;}
.y115{bottom:429.870000px;}
.ye9{bottom:429.960000px;}
.y13d{bottom:434.730000px;}
.y16d{bottom:436.980000px;}
.ybc{bottom:437.700000px;}
.y1b{bottom:440.130000px;}
.y1cd{bottom:442.920000px;}
.ye8{bottom:447.510000px;}
.y96{bottom:448.590000px;}
.y74{bottom:449.310000px;}
.y1b6{bottom:451.470000px;}
.y13c{bottom:452.370000px;}
.y16c{bottom:454.620000px;}
.y4b{bottom:455.340000px;}
.y195{bottom:457.140000px;}
.y1a{bottom:457.770000px;}
.y1cc{bottom:460.470000px;}
.yb4{bottom:465.060000px;}
.y114{bottom:465.510000px;}
.y1b5{bottom:469.110000px;}
.y13b{bottom:469.950000px;}
.y16b{bottom:472.200000px;}
.y19{bottom:475.350000px;}
.y95{bottom:475.980000px;}
.ye7{bottom:480.570000px;}
.y47{bottom:482.730000px;}
.y113{bottom:483.090000px;}
.y194{bottom:484.080000px;}
.y1cb{bottom:487.140000px;}
.y13a{bottom:487.500000px;}
.yba{bottom:492.450000px;}
.y18{bottom:492.900000px;}
.y1b4{bottom:495.690000px;}
.y73{bottom:498.030000px;}
.y112{bottom:500.730000px;}
.y94{bottom:503.250000px;}
.y1ca{bottom:504.690000px;}
.y139{bottom:505.140000px;}
.ye6{bottom:507.840000px;}
.y17{bottom:510.540000px;}
.y1b3{bottom:513.330000px;}
.y111{bottom:518.280000px;}
.yb9{bottom:519.810000px;}
.y193{bottom:521.070000px;}
.y1c9{bottom:522.330000px;}
.y16a{bottom:525.390000px;}
.y16{bottom:528.090000px;}
.y93{bottom:530.610000px;}
.y46{bottom:531.420000px;}
.y138{bottom:531.690000px;}
.y72{bottom:533.670000px;}
.ye5{bottom:535.200000px;}
.y110{bottom:535.830000px;}
.y192{bottom:538.710000px;}
.y1b2{bottom:539.880000px;}
.y169{bottom:542.940000px;}
.y15{bottom:545.640000px;}
.yb8{bottom:547.080000px;}
.y1c8{bottom:548.880000px;}
.y71{bottom:551.220000px;}
.y10f{bottom:553.470000px;}
.y191{bottom:556.260000px;}
.y1b1{bottom:557.430000px;}
.y92{bottom:557.970000px;}
.y168{bottom:560.580000px;}
.ye4{bottom:562.560000px;}
.y14{bottom:563.280000px;}
.y1c7{bottom:566.430000px;}
.y45{bottom:567.060000px;}
.y137{bottom:567.330000px;}
.y10e{bottom:571.020000px;}
.yb7{bottom:574.440000px;}
.y167{bottom:578.130000px;}
.y13{bottom:580.830000px;}
.y190{bottom:583.170000px;}
.y1b0{bottom:584.070000px;}
.y6f{bottom:584.160000px;}
.y44{bottom:584.610000px;}
.y136{bottom:584.880000px;}
.y91{bottom:585.240000px;}
.y10d{bottom:588.660000px;}
.ye3{bottom:589.920000px;}
.y12{bottom:598.470000px;}
.y1af{bottom:601.620000px;}
.yb3{bottom:601.800000px;}
.y135{bottom:602.430000px;}
.y1c6{bottom:610.620000px;}
.y43{bottom:611.520000px;}
.y166{bottom:613.770000px;}
.y11{bottom:616.020000px;}
.ye2{bottom:617.190000px;}
.y134{bottom:620.070000px;}
.y18f{bottom:620.520000px;}
.y10c{bottom:624.210000px;}
.y1ae{bottom:628.260000px;}
.yb0{bottom:629.160000px;}
.y165{bottom:631.320000px;}
.y10{bottom:633.570000px;}
.y90{bottom:634.020000px;}
.y133{bottom:637.620000px;}
.y70{bottom:638.880000px;}
.y10b{bottom:641.760000px;}
.ye1{bottom:644.550000px;}
.y1ad{bottom:645.810000px;}
.y164{bottom:648.870000px;}
.y1c5{bottom:654.810000px;}
.y132{bottom:655.260000px;}
.yb2{bottom:656.430000px;}
.y10a{bottom:659.400000px;}
.y42{bottom:659.760000px;}
.yf{bottom:660.480000px;}
.y6b{bottom:666.240000px;}
.y163{bottom:666.510000px;}
.y18e{bottom:668.760000px;}
.y8f{bottom:669.570000px;}
.ye0{bottom:671.910000px;}
.y1ac{bottom:672.360000px;}
.y131{bottom:672.810000px;}
.y109{bottom:676.950000px;}
.y41{bottom:677.400000px;}
.yaf{bottom:683.790000px;}
.y162{bottom:685.050000px;}
.y18d{bottom:686.400000px;}
.y8e{bottom:687.120000px;}
.y1ab{bottom:690.000000px;}
.y130{bottom:690.360000px;}
.y6e{bottom:693.510000px;}
.y108{bottom:694.590000px;}
.y40{bottom:694.950000px;}
.y1c4{bottom:699.000000px;}
.ydf{bottom:699.180000px;}
.y161{bottom:703.500000px;}
.y18c{bottom:703.950000px;}
.y12f{bottom:708.000000px;}
.ye{bottom:708.810000px;}
.ya8{bottom:711.150000px;}
.y107{bottom:712.140000px;}
.y3f{bottom:712.590000px;}
.y1aa{bottom:716.550000px;}
.y87{bottom:720.150000px;}
.y6d{bottom:720.870000px;}
.y18b{bottom:721.590000px;}
.y160{bottom:722.040000px;}
.yde{bottom:726.540000px;}
.y106{bottom:729.690000px;}
.y1a9{bottom:734.190000px;}
.yae{bottom:738.420000px;}
.y18a{bottom:739.140000px;}
.y15f{bottom:740.580000px;}
.y1c3{bottom:743.190000px;}
.y12e{bottom:743.550000px;}
.yd{bottom:744.630000px;}
.y8d{bottom:747.420000px;}
.y3e{bottom:748.140000px;}
.y6a{bottom:748.230000px;}
.ydd{bottom:753.900000px;}
.y189{bottom:756.690000px;}
.y15e{bottom:758.130000px;}
.y1a8{bottom:760.740000px;}
.y12d{bottom:761.190000px;}
.y105{bottom:765.330000px;}
.y3d{bottom:765.690000px;}
.yad{bottom:765.780000px;}
.y8c{bottom:774.780000px;}
.y15d{bottom:775.770000px;}
.y1a7{bottom:778.290000px;}
.y12c{bottom:778.740000px;}
.yc{bottom:780.630000px;}
.ydc{bottom:781.260000px;}
.y104{bottom:782.880000px;}
.y3c{bottom:783.330000px;}
.y188{bottom:783.600000px;}
.y1c2{bottom:787.290000px;}
.yac{bottom:793.140000px;}
.y15c{bottom:793.320000px;}
.y12b{bottom:796.290000px;}
.y69{bottom:796.920000px;}
.y103{bottom:800.520000px;}
.y3b{bottom:800.880000px;}
.y8b{bottom:802.140000px;}
.y1a6{bottom:804.930000px;}
.ydb{bottom:808.530000px;}
.y15b{bottom:810.870000px;}
.y12a{bottom:813.930000px;}
.yb{bottom:816.630000px;}
.y102{bottom:818.070000px;}
.y3a{bottom:818.520000px;}
.yab{bottom:820.500000px;}
.y1a5{bottom:822.480000px;}
.y15a{bottom:828.510000px;}
.y8a{bottom:829.500000px;}
.y129{bottom:831.480000px;}
.y187{bottom:831.930000px;}
.y68{bottom:832.470000px;}
.y101{bottom:835.620000px;}
.y39{bottom:836.070000px;}
.ya{bottom:838.410000px;}
.y159{bottom:846.060000px;}
.yaa{bottom:847.770000px;}
.y128{bottom:849.030000px;}
.y186{bottom:849.480000px;}
.y67{bottom:850.110000px;}
.y9{bottom:852.630000px;}
.y100{bottom:853.260000px;}
.y38{bottom:853.620000px;}
.y89{bottom:856.770000px;}
.yda{bottom:857.220000px;}
.y127{bottom:866.670000px;}
.y185{bottom:867.030000px;}
.y66{bottom:867.660000px;}
.yff{bottom:870.810000px;}
.y37{bottom:871.260000px;}
.y158{bottom:872.610000px;}
.y8{bottom:874.410000px;}
.ya9{bottom:875.130000px;}
.y81{bottom:884.130000px;}
.y1c1{bottom:884.220000px;}
.y184{bottom:884.670000px;}
.y65{bottom:885.210000px;}
.y7{bottom:892.410000px;}
.yd9{bottom:892.860000px;}
.y126{bottom:893.220000px;}
.y36{bottom:898.170000px;}
.y183{bottom:902.220000px;}
.ya7{bottom:902.490000px;}
.y64{bottom:902.850000px;}
.yfe{bottom:906.450000px;}
.y157{bottom:908.160000px;}
.yd8{bottom:910.410000px;}
.y1a4{bottom:910.860000px;}
.y86{bottom:911.490000px;}
.y182{bottom:919.860000px;}
.yfd{bottom:924.000000px;}
.y6{bottom:924.720000px;}
.y156{bottom:925.800000px;}
.y125{bottom:928.860000px;}
.y60{bottom:935.790000px;}
.y181{bottom:937.410000px;}
.y85{bottom:938.850000px;}
.yfc{bottom:941.550000px;}
.yd6{bottom:943.440000px;}
.y35{bottom:946.410000px;}
.ya6{bottom:951.180000px;}
.y180{bottom:954.960000px;}
.yfb{bottom:959.190000px;}
.y155{bottom:960.990000px;}
.yd3{bottom:962.880000px;}
.y5{bottom:962.970000px;}
.y63{bottom:963.150000px;}
.y34{bottom:963.960000px;}
.y84{bottom:966.120000px;}
.y17f{bottom:972.600000px;}
.yfa{bottom:976.740000px;}
.y154{bottom:978.630000px;}
.y33{bottom:981.600000px;}
.yd5{bottom:982.410000px;}
.ya5{bottom:986.730000px;}
.y4{bottom:987.630000px;}
.y17e{bottom:990.150000px;}
.y62{bottom:990.510000px;}
.y83{bottom:993.480000px;}
.y32{bottom:999.150000px;}
.yd4{bottom:1001.940000px;}
.yf9{bottom:1003.290000px;}
.ya4{bottom:1004.370000px;}
.y17d{bottom:1007.790000px;}
.y153{bottom:1008.060000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y5b{bottom:1017.810000px;}
.y80{bottom:1020.870000px;}
.yd2{bottom:1021.410000px;}
.ya3{bottom:1021.950000px;}
.y152{bottom:1025.820000px;}
.y30{bottom:1034.370000px;}
.yf8{bottom:1039.230000px;}
.ya2{bottom:1039.500000px;}
.ycc{bottom:1040.940000px;}
.y151{bottom:1043.370000px;}
.y5f{bottom:1045.170000px;}
.y2f{bottom:1051.920000px;}
.yd0{bottom:1060.470000px;}
.y150{bottom:1060.920000px;}
.y2e{bottom:1069.560000px;}
.y124{bottom:1069.920000px;}
.y5e{bottom:1072.530000px;}
.y14f{bottom:1078.560000px;}
.ycf{bottom:1079.910000px;}
.yf7{bottom:1087.560000px;}
.y14e{bottom:1096.110000px;}
.yca{bottom:1099.440000px;}
.y5d{bottom:1099.890000px;}
.y2d{bottom:1105.110000px;}
.y14d{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y5a{bottom:1127.160000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h17{height:18.720000px;}
.h1b{height:18.750000px;}
.h19{height:18.810000px;}
.h1d{height:25.020000px;}
.h1c{height:25.110000px;}
.hc{height:26.550000px;}
.h11{height:26.580000px;}
.h9{height:26.640000px;}
.hb{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.hd{height:53.910000px;}
.h5{height:55.779258px;}
.h18{height:57.780000px;}
.h1a{height:57.810000px;}
.h1f{height:61.793886px;}
.h1e{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h12{height:81.180000px;}
.h13{height:81.270000px;}
.h10{height:81.300000px;}
.he{height:108.540000px;}
.hf{height:108.630000px;}
.h14{height:135.930000px;}
.h15{height:163.260000px;}
.h16{height:190.530000px;}
.ha{height:190.650000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:79.020000px;}
.wf{width:82.530000px;}
.w1d{width:92.160000px;}
.w17{width:95.580000px;}
.w16{width:95.610000px;}
.w15{width:95.670000px;}
.w1b{width:95.700000px;}
.w1f{width:97.290000px;}
.w20{width:97.320000px;}
.w18{width:103.260000px;}
.wc{width:113.070000px;}
.w4{width:113.160000px;}
.w12{width:113.880000px;}
.wd{width:123.030000px;}
.w5{width:123.120000px;}
.w13{width:123.480000px;}
.w6{width:124.650000px;}
.w1c{width:127.200000px;}
.w9{width:141.120000px;}
.w19{width:155.160000px;}
.we{width:169.920000px;}
.w7{width:179.460000px;}
.w21{width:200.280000px;}
.wb{width:200.790000px;}
.w10{width:201.690000px;}
.w11{width:202.050000px;}
.w1e{width:203.880000px;}
.w1a{width:219.720000px;}
.w8{width:220.860000px;}
.w14{width:258.780000px;}
.w3{width:304.830000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x22{left:65.370000px;}
.x1{left:68.040000px;}
.x14{left:77.220000px;}
.x1b{left:96.750000px;}
.x23{left:100.530000px;}
.x29{left:106.470000px;}
.x2c{left:111.239987px;}
.x4{left:175.350000px;}
.x1a{left:180.840000px;}
.x10{left:201.180000px;}
.x2{left:211.079987px;}
.x9{left:217.380000px;}
.x21{left:224.310000px;}
.xd{left:227.370000px;}
.x8{left:300.720000px;}
.x24{left:304.770000px;}
.x2a{left:307.110000px;}
.x1c{left:316.830000px;}
.x15{left:336.360000px;}
.xc{left:359.220000px;}
.x11{left:371.820000px;}
.x25{left:402.420000px;}
.x1d{left:412.860000px;}
.xe{left:428.970000px;}
.x16{left:432.390000px;}
.xa{left:438.960000px;}
.x12{left:455.160000px;}
.x6{left:480.900000px;}
.x26{left:500.070000px;}
.x1e{left:508.920000px;}
.x17{left:528.360000px;}
.xf{left:542.850000px;}
.xb{left:552.840000px;}
.x13{left:569.040000px;}
.x7{left:594.780000px;}
.x27{left:597.750000px;}
.x1f{left:604.860000px;}
.x18{left:624.390000px;}
.x2b{left:691.170000px;}
.x28{left:695.400000px;}
.x20{left:700.890000px;}
.x19{left:720.420000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.373867pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.158933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.074667pt;}
.ls12{letter-spacing:-0.034560pt;}
.ls1d{letter-spacing:-0.028160pt;}
.ls9{letter-spacing:-0.026133pt;}
.ls1b{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.087467pt;}
.ls1a{letter-spacing:0.100800pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls19{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.wsf{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.377067pt;}
.ws7{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.932800pt;}
.ws4{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.857600pt;}
.wsc{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.722240pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._13{margin-left:-6.157515pt;}
._12{margin-left:-5.118624pt;}
._8{margin-left:-3.318614pt;}
._1{margin-left:-2.082880pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.278688pt;}
._3{width:2.635520pt;}
._6{width:3.526933pt;}
._7{width:4.525547pt;}
._a{width:5.574720pt;}
._b{width:6.485760pt;}
._9{width:8.122666pt;}
._5{width:9.588694pt;}
._4{width:10.635520pt;}
._10{width:12.879040pt;}
._e{width:13.894400pt;}
._f{width:15.191147pt;}
._15{width:16.512960pt;}
._1c{width:17.709760pt;}
._11{width:19.398720pt;}
._14{width:20.516907pt;}
._1b{width:21.512672pt;}
._c{width:23.246400pt;}
._d{width:24.290987pt;}
._1a{width:27.842240pt;}
._17{width:33.795200pt;}
._18{width:35.069120pt;}
._16{width:46.893440pt;}
._1d{width:55.310400pt;}
._19{width:134.936000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:2.960000pt;}
.yd1{bottom:3.440000pt;}
.ycb{bottom:3.520000pt;}
.yf1{bottom:6.880000pt;}
.y4d{bottom:6.960000pt;}
.y48{bottom:7.040000pt;}
.ybb{bottom:7.066667pt;}
.yce{bottom:13.040000pt;}
.yb1{bottom:19.120000pt;}
.ycd{bottom:28.640000pt;}
.y53{bottom:31.280000pt;}
.yb6{bottom:47.786667pt;}
.y6c{bottom:55.520000pt;}
.y61{bottom:55.600000pt;}
.yb5{bottom:63.466667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y56{bottom:79.840000pt;}
.y5c{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.yf6{bottom:100.906667pt;}
.y1a3{bottom:102.346667pt;}
.y14c{bottom:103.946667pt;}
.y82{bottom:104.160000pt;}
.y17c{bottom:105.946667pt;}
.ya1{bottom:107.146667pt;}
.y1dc{bottom:111.226667pt;}
.y55{bottom:113.226667pt;}
.y1a2{bottom:118.026667pt;}
.y28{bottom:118.906667pt;}
.y17b{bottom:121.626667pt;}
.y123{bottom:123.706667pt;}
.yf5{bottom:123.946667pt;}
.yc9{bottom:124.186667pt;}
.y1db{bottom:126.826667pt;}
.y88{bottom:128.480000pt;}
.ya0{bottom:131.466667pt;}
.y7f{bottom:132.106667pt;}
.y1a1{bottom:133.626667pt;}
.y27{bottom:134.506667pt;}
.y14b{bottom:135.626667pt;}
.y17a{bottom:137.226667pt;}
.y59{bottom:137.466667pt;}
.y122{bottom:139.306667pt;}
.y1da{bottom:142.506667pt;}
.yf4{bottom:146.906667pt;}
.y1c0{bottom:150.106667pt;}
.y26{bottom:150.186667pt;}
.y4a{bottom:152.800000pt;}
.y121{bottom:154.906667pt;}
.y9f{bottom:155.786667pt;}
.yc8{bottom:155.866667pt;}
.y7e{bottom:156.426667pt;}
.y1a0{bottom:157.306667pt;}
.y179{bottom:160.906667pt;}
.y58{bottom:161.786667pt;}
.y25{bottom:165.786667pt;}
.y1d9{bottom:166.106667pt;}
.y14a{bottom:167.226667pt;}
.yf3{bottom:169.866667pt;}
.y120{bottom:170.586667pt;}
.y19f{bottom:172.906667pt;}
.y9e{bottom:180.026667pt;}
.y7d{bottom:180.746667pt;}
.y1bf{bottom:181.386667pt;}
.y1d8{bottom:181.786667pt;}
.y149{bottom:182.826667pt;}
.y57{bottom:186.106667pt;}
.y11f{bottom:186.186667pt;}
.yc7{bottom:187.466667pt;}
.y178{bottom:192.506667pt;}
.yf2{bottom:192.826667pt;}
.y19e{bottom:196.506667pt;}
.y1d7{bottom:197.386667pt;}
.y24{bottom:197.466667pt;}
.y148{bottom:198.506667pt;}
.y9d{bottom:204.346667pt;}
.y7c{bottom:204.986667pt;}
.y177{bottom:208.106667pt;}
.y11e{bottom:209.866667pt;}
.y52{bottom:210.426667pt;}
.y19d{bottom:212.186667pt;}
.y23{bottom:213.066667pt;}
.y147{bottom:214.106667pt;}
.yf0{bottom:215.786667pt;}
.yc6{bottom:219.146667pt;}
.y1be{bottom:220.666667pt;}
.y1d6{bottom:220.986667pt;}
.y176{bottom:223.786667pt;}
.y22{bottom:228.666667pt;}
.y7b{bottom:229.306667pt;}
.y146{bottom:229.786667pt;}
.y54{bottom:234.666667pt;}
.yc5{bottom:234.746667pt;}
.y19c{bottom:235.786667pt;}
.y1d5{bottom:236.666667pt;}
.yef{bottom:238.746667pt;}
.y175{bottom:239.386667pt;}
.y11d{bottom:241.466667pt;}
.y1bd{bottom:244.266667pt;}
.y21{bottom:244.346667pt;}
.y145{bottom:245.386667pt;}
.yc4{bottom:250.346667pt;}
.y19b{bottom:251.466667pt;}
.y1d4{bottom:252.266667pt;}
.y9c{bottom:252.906667pt;}
.y7a{bottom:253.626667pt;}
.y174{bottom:255.066667pt;}
.y11c{bottom:257.066667pt;}
.y49{bottom:258.986667pt;}
.y20{bottom:259.946667pt;}
.y144{bottom:260.986667pt;}
.yee{bottom:261.706667pt;}
.yc3{bottom:266.026667pt;}
.y19a{bottom:267.066667pt;}
.y173{bottom:270.666667pt;}
.y11b{bottom:272.746667pt;}
.y1d3{bottom:275.946667pt;}
.y143{bottom:276.666667pt;}
.y9b{bottom:277.226667pt;}
.y79{bottom:277.946667pt;}
.yc2{bottom:281.626667pt;}
.y51{bottom:283.306667pt;}
.y1bc{bottom:283.546667pt;}
.y1f{bottom:283.866667pt;}
.y11a{bottom:288.346667pt;}
.y199{bottom:290.986667pt;}
.y1d2{bottom:291.546667pt;}
.y142{bottom:292.266667pt;}
.y172{bottom:294.266667pt;}
.yc1{bottom:297.306667pt;}
.y1bb{bottom:299.146667pt;}
.y9a{bottom:301.546667pt;}
.y78{bottom:302.186667pt;}
.yed{bottom:303.626667pt;}
.y119{bottom:303.946667pt;}
.y50{bottom:307.626667pt;}
.yc0{bottom:312.906667pt;}
.y1d1{bottom:315.146667pt;}
.y118{bottom:319.626667pt;}
.y1ba{bottom:322.826667pt;}
.y141{bottom:323.946667pt;}
.y99{bottom:325.866667pt;}
.y171{bottom:325.946667pt;}
.y77{bottom:326.506667pt;}
.y1e{bottom:327.066667pt;}
.ybf{bottom:328.506667pt;}
.y1d0{bottom:330.826667pt;}
.y4f{bottom:331.866667pt;}
.y198{bottom:333.866667pt;}
.y117{bottom:335.226667pt;}
.yec{bottom:335.306667pt;}
.y1b9{bottom:338.426667pt;}
.y140{bottom:339.546667pt;}
.y170{bottom:341.546667pt;}
.ybe{bottom:344.186667pt;}
.y197{bottom:349.546667pt;}
.y98{bottom:350.106667pt;}
.y76{bottom:350.826667pt;}
.yeb{bottom:350.906667pt;}
.y1cf{bottom:354.426667pt;}
.y13f{bottom:355.146667pt;}
.y4e{bottom:356.186667pt;}
.y16f{bottom:357.226667pt;}
.ybd{bottom:359.786667pt;}
.y1d{bottom:359.946667pt;}
.y1b8{bottom:362.106667pt;}
.y116{bottom:366.506667pt;}
.yea{bottom:366.586667pt;}
.y1ce{bottom:370.106667pt;}
.y13e{bottom:370.826667pt;}
.y16e{bottom:372.826667pt;}
.y196{bottom:373.466667pt;}
.y97{bottom:374.426667pt;}
.y75{bottom:375.066667pt;}
.y1c{bottom:375.626667pt;}
.y1b7{bottom:377.706667pt;}
.y4c{bottom:380.506667pt;}
.y115{bottom:382.106667pt;}
.ye9{bottom:382.186667pt;}
.y13d{bottom:386.426667pt;}
.y16d{bottom:388.426667pt;}
.ybc{bottom:389.066667pt;}
.y1b{bottom:391.226667pt;}
.y1cd{bottom:393.706667pt;}
.ye8{bottom:397.786667pt;}
.y96{bottom:398.746667pt;}
.y74{bottom:399.386667pt;}
.y1b6{bottom:401.306667pt;}
.y13c{bottom:402.106667pt;}
.y16c{bottom:404.106667pt;}
.y4b{bottom:404.746667pt;}
.y195{bottom:406.346667pt;}
.y1a{bottom:406.906667pt;}
.y1cc{bottom:409.306667pt;}
.yb4{bottom:413.386667pt;}
.y114{bottom:413.786667pt;}
.y1b5{bottom:416.986667pt;}
.y13b{bottom:417.733333pt;}
.y16b{bottom:419.733333pt;}
.y19{bottom:422.533333pt;}
.y95{bottom:423.093333pt;}
.ye7{bottom:427.173333pt;}
.y47{bottom:429.093333pt;}
.y113{bottom:429.413333pt;}
.y194{bottom:430.293333pt;}
.y1cb{bottom:433.013333pt;}
.y13a{bottom:433.333333pt;}
.yba{bottom:437.733333pt;}
.y18{bottom:438.133333pt;}
.y1b4{bottom:440.613333pt;}
.y73{bottom:442.693333pt;}
.y112{bottom:445.093333pt;}
.y94{bottom:447.333333pt;}
.y1ca{bottom:448.613333pt;}
.y139{bottom:449.013333pt;}
.ye6{bottom:451.413333pt;}
.y17{bottom:453.813333pt;}
.y1b3{bottom:456.293333pt;}
.y111{bottom:460.693333pt;}
.yb9{bottom:462.053333pt;}
.y193{bottom:463.173333pt;}
.y1c9{bottom:464.293333pt;}
.y16a{bottom:467.013333pt;}
.y16{bottom:469.413333pt;}
.y93{bottom:471.653333pt;}
.y46{bottom:472.373333pt;}
.y138{bottom:472.613333pt;}
.y72{bottom:474.373333pt;}
.ye5{bottom:475.733333pt;}
.y110{bottom:476.293333pt;}
.y192{bottom:478.853333pt;}
.y1b2{bottom:479.893333pt;}
.y169{bottom:482.613333pt;}
.y15{bottom:485.013333pt;}
.yb8{bottom:486.293333pt;}
.y1c8{bottom:487.893333pt;}
.y71{bottom:489.973333pt;}
.y10f{bottom:491.973333pt;}
.y191{bottom:494.453333pt;}
.y1b1{bottom:495.493333pt;}
.y92{bottom:495.973333pt;}
.y168{bottom:498.293333pt;}
.ye4{bottom:500.053333pt;}
.y14{bottom:500.693333pt;}
.y1c7{bottom:503.493333pt;}
.y45{bottom:504.053333pt;}
.y137{bottom:504.293333pt;}
.y10e{bottom:507.573333pt;}
.yb7{bottom:510.613333pt;}
.y167{bottom:513.893333pt;}
.y13{bottom:516.293333pt;}
.y190{bottom:518.373333pt;}
.y1b0{bottom:519.173333pt;}
.y6f{bottom:519.253333pt;}
.y44{bottom:519.653333pt;}
.y136{bottom:519.893333pt;}
.y91{bottom:520.213333pt;}
.y10d{bottom:523.253333pt;}
.ye3{bottom:524.373333pt;}
.y12{bottom:531.973333pt;}
.y1af{bottom:534.773333pt;}
.yb3{bottom:534.933333pt;}
.y135{bottom:535.493333pt;}
.y1c6{bottom:542.773333pt;}
.y43{bottom:543.573333pt;}
.y166{bottom:545.573333pt;}
.y11{bottom:547.573333pt;}
.ye2{bottom:548.613333pt;}
.y134{bottom:551.173333pt;}
.y18f{bottom:551.573333pt;}
.y10c{bottom:554.853333pt;}
.y1ae{bottom:558.453333pt;}
.yb0{bottom:559.253333pt;}
.y165{bottom:561.173333pt;}
.y10{bottom:563.173333pt;}
.y90{bottom:563.573333pt;}
.y133{bottom:566.773333pt;}
.y70{bottom:567.893333pt;}
.y10b{bottom:570.453333pt;}
.ye1{bottom:572.933333pt;}
.y1ad{bottom:574.053333pt;}
.y164{bottom:576.773333pt;}
.y1c5{bottom:582.053333pt;}
.y132{bottom:582.453333pt;}
.yb2{bottom:583.493333pt;}
.y10a{bottom:586.133333pt;}
.y42{bottom:586.453333pt;}
.yf{bottom:587.093333pt;}
.y6b{bottom:592.213333pt;}
.y163{bottom:592.453333pt;}
.y18e{bottom:594.453333pt;}
.y8f{bottom:595.173333pt;}
.ye0{bottom:597.253333pt;}
.y1ac{bottom:597.653333pt;}
.y131{bottom:598.053333pt;}
.y109{bottom:601.733333pt;}
.y41{bottom:602.133333pt;}
.yaf{bottom:607.813333pt;}
.y162{bottom:608.933333pt;}
.y18d{bottom:610.133333pt;}
.y8e{bottom:610.773333pt;}
.y1ab{bottom:613.333333pt;}
.y130{bottom:613.653333pt;}
.y6e{bottom:616.453333pt;}
.y108{bottom:617.413333pt;}
.y40{bottom:617.733333pt;}
.y1c4{bottom:621.333333pt;}
.ydf{bottom:621.493333pt;}
.y161{bottom:625.333333pt;}
.y18c{bottom:625.733333pt;}
.y12f{bottom:629.333333pt;}
.ye{bottom:630.053333pt;}
.ya8{bottom:632.133333pt;}
.y107{bottom:633.013333pt;}
.y3f{bottom:633.413333pt;}
.y1aa{bottom:636.933333pt;}
.y87{bottom:640.133333pt;}
.y6d{bottom:640.773333pt;}
.y18b{bottom:641.413333pt;}
.y160{bottom:641.813333pt;}
.yde{bottom:645.813333pt;}
.y106{bottom:648.613333pt;}
.y1a9{bottom:652.613333pt;}
.yae{bottom:656.373333pt;}
.y18a{bottom:657.013333pt;}
.y15f{bottom:658.293333pt;}
.y1c3{bottom:660.613333pt;}
.y12e{bottom:660.933333pt;}
.yd{bottom:661.893333pt;}
.y8d{bottom:664.373333pt;}
.y3e{bottom:665.013333pt;}
.y6a{bottom:665.093333pt;}
.ydd{bottom:670.133333pt;}
.y189{bottom:672.613333pt;}
.y15e{bottom:673.893333pt;}
.y1a8{bottom:676.213333pt;}
.y12d{bottom:676.613333pt;}
.y105{bottom:680.293333pt;}
.y3d{bottom:680.613333pt;}
.yad{bottom:680.693333pt;}
.y8c{bottom:688.693333pt;}
.y15d{bottom:689.573333pt;}
.y1a7{bottom:691.813333pt;}
.y12c{bottom:692.213333pt;}
.yc{bottom:693.893333pt;}
.ydc{bottom:694.453333pt;}
.y104{bottom:695.893333pt;}
.y3c{bottom:696.293333pt;}
.y188{bottom:696.533333pt;}
.y1c2{bottom:699.813333pt;}
.yac{bottom:705.013333pt;}
.y15c{bottom:705.173333pt;}
.y12b{bottom:707.813333pt;}
.y69{bottom:708.373333pt;}
.y103{bottom:711.573333pt;}
.y3b{bottom:711.893333pt;}
.y8b{bottom:713.013333pt;}
.y1a6{bottom:715.493333pt;}
.ydb{bottom:718.693333pt;}
.y15b{bottom:720.773333pt;}
.y12a{bottom:723.493333pt;}
.yb{bottom:725.893333pt;}
.y102{bottom:727.173333pt;}
.y3a{bottom:727.573333pt;}
.yab{bottom:729.333333pt;}
.y1a5{bottom:731.093333pt;}
.y15a{bottom:736.453333pt;}
.y8a{bottom:737.333333pt;}
.y129{bottom:739.093333pt;}
.y187{bottom:739.493333pt;}
.y68{bottom:739.973333pt;}
.y101{bottom:742.773333pt;}
.y39{bottom:743.173333pt;}
.ya{bottom:745.253333pt;}
.y159{bottom:752.053333pt;}
.yaa{bottom:753.573333pt;}
.y128{bottom:754.693333pt;}
.y186{bottom:755.093333pt;}
.y67{bottom:755.653333pt;}
.y9{bottom:757.893333pt;}
.y100{bottom:758.453333pt;}
.y38{bottom:758.773333pt;}
.y89{bottom:761.573333pt;}
.yda{bottom:761.973333pt;}
.y127{bottom:770.373333pt;}
.y185{bottom:770.693333pt;}
.y66{bottom:771.253333pt;}
.yff{bottom:774.053333pt;}
.y37{bottom:774.453333pt;}
.y158{bottom:775.653333pt;}
.y8{bottom:777.253333pt;}
.ya9{bottom:777.893333pt;}
.y81{bottom:785.893333pt;}
.y1c1{bottom:785.973333pt;}
.y184{bottom:786.373333pt;}
.y65{bottom:786.853333pt;}
.y7{bottom:793.253333pt;}
.yd9{bottom:793.653333pt;}
.y126{bottom:793.973333pt;}
.y36{bottom:798.373333pt;}
.y183{bottom:801.973333pt;}
.ya7{bottom:802.213333pt;}
.y64{bottom:802.533333pt;}
.yfe{bottom:805.733333pt;}
.y157{bottom:807.253333pt;}
.yd8{bottom:809.253333pt;}
.y1a4{bottom:809.653333pt;}
.y86{bottom:810.213333pt;}
.y182{bottom:817.653333pt;}
.yfd{bottom:821.333333pt;}
.y6{bottom:821.973333pt;}
.y156{bottom:822.933333pt;}
.y125{bottom:825.653333pt;}
.y60{bottom:831.813333pt;}
.y181{bottom:833.253333pt;}
.y85{bottom:834.533333pt;}
.yfc{bottom:836.933333pt;}
.yd6{bottom:838.613333pt;}
.y35{bottom:841.253333pt;}
.ya6{bottom:845.493333pt;}
.y180{bottom:848.853333pt;}
.yfb{bottom:852.613333pt;}
.y155{bottom:854.213333pt;}
.yd3{bottom:855.893333pt;}
.y5{bottom:855.973333pt;}
.y63{bottom:856.133333pt;}
.y34{bottom:856.853333pt;}
.y84{bottom:858.773333pt;}
.y17f{bottom:864.533333pt;}
.yfa{bottom:868.213333pt;}
.y154{bottom:869.893333pt;}
.y33{bottom:872.533333pt;}
.yd5{bottom:873.253333pt;}
.ya5{bottom:877.093333pt;}
.y4{bottom:877.893333pt;}
.y17e{bottom:880.133333pt;}
.y62{bottom:880.453333pt;}
.y83{bottom:883.093333pt;}
.y32{bottom:888.133333pt;}
.yd4{bottom:890.613333pt;}
.yf9{bottom:891.813333pt;}
.ya4{bottom:892.773333pt;}
.y17d{bottom:895.813333pt;}
.y153{bottom:896.053333pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y5b{bottom:904.720000pt;}
.y80{bottom:907.440000pt;}
.yd2{bottom:907.920000pt;}
.ya3{bottom:908.400000pt;}
.y152{bottom:911.840000pt;}
.y30{bottom:919.440000pt;}
.yf8{bottom:923.760000pt;}
.ya2{bottom:924.000000pt;}
.ycc{bottom:925.280000pt;}
.y151{bottom:927.440000pt;}
.y5f{bottom:929.040000pt;}
.y2f{bottom:935.040000pt;}
.yd0{bottom:942.640000pt;}
.y150{bottom:943.040000pt;}
.y2e{bottom:950.720000pt;}
.y124{bottom:951.040000pt;}
.y5e{bottom:953.360000pt;}
.y14f{bottom:958.720000pt;}
.ycf{bottom:959.920000pt;}
.yf7{bottom:966.720000pt;}
.y14e{bottom:974.320000pt;}
.yca{bottom:977.280000pt;}
.y5d{bottom:977.680000pt;}
.y2d{bottom:982.320000pt;}
.y14d{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y5a{bottom:1001.920000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h17{height:16.640000pt;}
.h1b{height:16.666667pt;}
.h19{height:16.720000pt;}
.h1d{height:22.240000pt;}
.h1c{height:22.320000pt;}
.hc{height:23.600000pt;}
.h11{height:23.626667pt;}
.h9{height:23.680000pt;}
.hb{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.hd{height:47.920000pt;}
.h5{height:49.581562pt;}
.h18{height:51.360000pt;}
.h1a{height:51.386667pt;}
.h1f{height:54.927899pt;}
.h1e{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h12{height:72.160000pt;}
.h13{height:72.240000pt;}
.h10{height:72.266667pt;}
.he{height:96.480000pt;}
.hf{height:96.560000pt;}
.h14{height:120.826667pt;}
.h15{height:145.120000pt;}
.h16{height:169.360000pt;}
.ha{height:169.466667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:70.240000pt;}
.wf{width:73.360000pt;}
.w1d{width:81.920000pt;}
.w17{width:84.960000pt;}
.w16{width:84.986667pt;}
.w15{width:85.040000pt;}
.w1b{width:85.066667pt;}
.w1f{width:86.480000pt;}
.w20{width:86.506667pt;}
.w18{width:91.786667pt;}
.wc{width:100.506667pt;}
.w4{width:100.586667pt;}
.w12{width:101.226667pt;}
.wd{width:109.360000pt;}
.w5{width:109.440000pt;}
.w13{width:109.760000pt;}
.w6{width:110.800000pt;}
.w1c{width:113.066667pt;}
.w9{width:125.440000pt;}
.w19{width:137.920000pt;}
.we{width:151.040000pt;}
.w7{width:159.520000pt;}
.w21{width:178.026667pt;}
.wb{width:178.480000pt;}
.w10{width:179.280000pt;}
.w11{width:179.600000pt;}
.w1e{width:181.226667pt;}
.w1a{width:195.306667pt;}
.w8{width:196.320000pt;}
.w14{width:230.026667pt;}
.w3{width:270.960000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x22{left:58.106667pt;}
.x1{left:60.480000pt;}
.x14{left:68.640000pt;}
.x1b{left:86.000000pt;}
.x23{left:89.360000pt;}
.x29{left:94.640000pt;}
.x2c{left:98.879988pt;}
.x4{left:155.866667pt;}
.x1a{left:160.746667pt;}
.x10{left:178.826667pt;}
.x2{left:187.626655pt;}
.x9{left:193.226667pt;}
.x21{left:199.386667pt;}
.xd{left:202.106667pt;}
.x8{left:267.306667pt;}
.x24{left:270.906667pt;}
.x2a{left:272.986667pt;}
.x1c{left:281.626667pt;}
.x15{left:298.986667pt;}
.xc{left:319.306667pt;}
.x11{left:330.506667pt;}
.x25{left:357.706667pt;}
.x1d{left:366.986667pt;}
.xe{left:381.306667pt;}
.x16{left:384.346667pt;}
.xa{left:390.186667pt;}
.x12{left:404.586667pt;}
.x6{left:427.466667pt;}
.x26{left:444.506667pt;}
.x1e{left:452.373333pt;}
.x17{left:469.653333pt;}
.xf{left:482.533333pt;}
.xb{left:491.413333pt;}
.x13{left:505.813333pt;}
.x7{left:528.693333pt;}
.x27{left:531.333333pt;}
.x1f{left:537.653333pt;}
.x18{left:555.013333pt;}
.x2b{left:614.373333pt;}
.x28{left:618.133333pt;}
.x20{left:623.013333pt;}
.x19{left:640.373333pt;}
.x3{left:711.413322pt;}
}




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