
    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_210a04eaf25320a1cf0f3a69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_09b5743addb7996adc2a4951.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6e61c484c67421a9133de260.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.034180;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_a39536551e2a8ec6c10a8d9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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_22b9611769bc0f95e8514d5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_e19b6d70dbd7d941f08416d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_bdc26ba2a86037c99ef8e211.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_998573fe0ddc26f994217ae2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747559;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_e50e4fd7ebd31f912e02ea7b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.443400px;}
.ls7{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.306000px;}
.lsb{letter-spacing:-0.298200px;}
.lsf{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.132600px;}
.ls18{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.058320px;}
.ls9{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.022320px;}
.ls4{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.060600px;}
.ls1b{letter-spacing:0.132480px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.256200px;}
.ls13{letter-spacing:0.256320px;}
.ls11{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.900000px;}
.ls15{letter-spacing:5.532000px;}
.ls0{letter-spacing:5.976000px;}
.ls14{letter-spacing:15.989760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-24.570240px;}
.ws0{word-spacing:-22.248000px;}
.ws3{word-spacing:-19.038240px;}
.wsd{word-spacing:-16.488000px;}
.wse{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.056000px;}
.wsf{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.226440px;}
.ws7{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.165760px;}
.ws12{word-spacing:-13.875960px;}
.ws8{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.ws6{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.186000px;}
.ws5{word-spacing:-11.898000px;}
.ws2{word-spacing:-10.924560px;}
.ws1{word-spacing:-0.059760px;}
.ws9{word-spacing:0.000000px;}
._1f{margin-left:-5.426400px;}
._1d{margin-left:-4.176000px;}
._13{margin-left:-3.096000px;}
._1e{margin-left:-2.072640px;}
._4{margin-left:-1.041840px;}
._3{width:1.682400px;}
._6{width:2.914560px;}
._7{width:4.636800px;}
._0{width:5.728320px;}
._1{width:7.076160px;}
._9{width:8.190000px;}
._2{width:9.790080px;}
._10{width:11.658240px;}
._16{width:13.137840px;}
._15{width:14.832000px;}
._c{width:17.413200px;}
._a{width:18.750960px;}
._8{width:19.938240px;}
._14{width:21.024000px;}
._1c{width:22.968000px;}
._1b{width:24.120000px;}
._b{width:25.237440px;}
._20{width:26.333760px;}
._d{width:27.489600px;}
._22{width:29.160000px;}
._21{width:30.456000px;}
._1a{width:31.569840px;}
._19{width:32.616000px;}
._18{width:36.432000px;}
._17{width:37.728000px;}
._f{width:51.053040px;}
._e{width:52.112880px;}
._12{width:110.232000px;}
._5{width:168.294000px;}
._11{width:488.928000px;}
.fc6{color:rgb(19,20,19);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(31,73,125);}
.fc5{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs0{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs8{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs4{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.960000px;}
.ye5{bottom:4.860000px;}
.y5e{bottom:5.040000px;}
.y5{bottom:5.760000px;}
.yf1{bottom:6.120000px;}
.y10a{bottom:6.300000px;}
.ye{bottom:6.480000px;}
.yfe{bottom:7.374000px;}
.ye7{bottom:7.380000px;}
.y11a{bottom:8.100000px;}
.y129{bottom:8.280000px;}
.ybd{bottom:8.820000px;}
.yc8{bottom:8.865000px;}
.yc2{bottom:9.000000px;}
.yd1{bottom:9.030000px;}
.ybb{bottom:9.180000px;}
.y58{bottom:11.340000px;}
.y109{bottom:12.420000px;}
.ybe{bottom:14.940000px;}
.yc9{bottom:14.985000px;}
.yc4{bottom:15.120000px;}
.ye3{bottom:15.840000px;}
.yb9{bottom:15.870000px;}
.y57{bottom:18.000000px;}
.ye6{bottom:18.720000px;}
.y120{bottom:19.260000px;}
.y10c{bottom:19.440000px;}
.y12{bottom:19.800000px;}
.yef{bottom:20.340000px;}
.y15{bottom:20.520000px;}
.yf9{bottom:21.240000px;}
.yf6{bottom:21.285000px;}
.y5d{bottom:21.600000px;}
.y30{bottom:21.780000px;}
.yc1{bottom:24.300000px;}
.y8{bottom:25.050000px;}
.ye4{bottom:26.820000px;}
.y107{bottom:26.850000px;}
.y14{bottom:27.720000px;}
.ye1{bottom:29.700000px;}
.y4{bottom:30.630000px;}
.yf2{bottom:31.320000px;}
.y56{bottom:34.425000px;}
.yfc{bottom:35.094000px;}
.y2f{bottom:38.340000px;}
.y5c{bottom:38.520000px;}
.yd3{bottom:39.600000px;}
.ydb{bottom:39.645000px;}
.y4d{bottom:40.680000px;}
.yee{bottom:42.300000px;}
.y7{bottom:47.010000px;}
.y55{bottom:50.985000px;}
.y3{bottom:53.310000px;}
.y2e{bottom:54.720000px;}
.y10{bottom:56.880000px;}
.y63{bottom:57.780000px;}
.y4c{bottom:60.840000px;}
.y102{bottom:62.130000px;}
.y54{bottom:67.365000px;}
.y6{bottom:68.970000px;}
.y2d{bottom:71.640000px;}
.y2{bottom:76.170000px;}
.y62{bottom:77.976000px;}
.y4b{bottom:81.000000px;}
.y53{bottom:83.925000px;}
.y101{bottom:84.090000px;}
.y106{bottom:85.170000px;}
.yc{bottom:87.156000px;}
.y2c{bottom:89.640000px;}
.y61{bottom:98.676000px;}
.y52{bottom:100.305000px;}
.y4a{bottom:101.160000px;}
.y2b{bottom:106.020000px;}
.yb{bottom:107.316000px;}
.y13f{bottom:114.876000px;}
.y51{bottom:116.865000px;}
.yb2{bottom:120.456000px;}
.y49{bottom:121.140000px;}
.y105{bottom:121.860000px;}
.y2a{bottom:122.610000px;}
.y13e{bottom:122.976000px;}
.ya{bottom:128.016000px;}
.y9d{bottom:128.736000px;}
.yff{bottom:132.156000px;}
.y50{bottom:133.245000px;}
.y148{bottom:135.576000px;}
.y29{bottom:138.990000px;}
.y168{bottom:141.156000px;}
.y48{bottom:141.300000px;}
.yb7{bottom:144.396000px;}
.y7f{bottom:147.816000px;}
.y4f{bottom:149.805000px;}
.yfb{bottom:149.976000px;}
.yb1{bottom:153.390000px;}
.y28{bottom:155.550000px;}
.y13d{bottom:155.910000px;}
.y47{bottom:161.460000px;}
.y9c{bottom:161.670000px;}
.y147{bottom:165.810000px;}
.y167{bottom:171.390000px;}
.y27{bottom:172.110000px;}
.y12b{bottom:174.450000px;}
.yfd{bottom:177.690000px;}
.y7e{bottom:180.930000px;}
.y46{bottom:181.620000px;}
.yb0{bottom:186.330000px;}
.y26{bottom:188.490000px;}
.y13c{bottom:188.850000px;}
.yb6{bottom:192.270000px;}
.y9b{bottom:194.610000px;}
.y146{bottom:196.050000px;}
.y5a{bottom:196.770000px;}
.y104{bottom:199.410000px;}
.y166{bottom:201.450000px;}
.y45{bottom:201.780000px;}
.y25{bottom:205.050000px;}
.yfa{bottom:205.410000px;}
.y5b{bottom:207.570000px;}
.y133{bottom:208.110000px;}
.y7d{bottom:213.870000px;}
.yaf{bottom:219.270000px;}
.y103{bottom:221.370000px;}
.y24{bottom:221.430000px;}
.y13b{bottom:221.790000px;}
.y44{bottom:221.940000px;}
.y12a{bottom:222.510000px;}
.y145{bottom:226.290000px;}
.y9a{bottom:227.550000px;}
.y165{bottom:231.690000px;}
.yf8{bottom:233.310000px;}
.y132{bottom:233.490000px;}
.y23{bottom:237.990000px;}
.yb5{bottom:240.150000px;}
.y128{bottom:240.330000px;}
.y43{bottom:242.100000px;}
.y7c{bottom:246.810000px;}
.y59{bottom:249.690000px;}
.yae{bottom:252.210000px;}
.y22{bottom:254.370000px;}
.y13a{bottom:254.730000px;}
.y144{bottom:256.530000px;}
.y131{bottom:258.690000px;}
.y99{bottom:260.490000px;}
.yf7{bottom:261.030000px;}
.y164{bottom:261.930000px;}
.y42{bottom:262.290000px;}
.y127{bottom:270.750000px;}
.y21{bottom:270.930000px;}
.y4e{bottom:276.150000px;}
.y7b{bottom:279.750000px;}
.yda{bottom:279.930000px;}
.y41{bottom:282.450000px;}
.yad{bottom:285.150000px;}
.y143{bottom:286.590000px;}
.y20{bottom:287.310000px;}
.yb4{bottom:288.210000px;}
.yf5{bottom:288.750000px;}
.y163{bottom:292.170000px;}
.y98{bottom:293.430000px;}
.y126{bottom:297.030000px;}
.y139{bottom:297.750000px;}
.y130{bottom:301.710000px;}
.y40{bottom:302.610000px;}
.y1f{bottom:303.870000px;}
.y32{bottom:310.035000px;}
.ydc{bottom:310.755000px;}
.y7a{bottom:312.735000px;}
.yf4{bottom:316.515000px;}
.y142{bottom:316.875000px;}
.yac{bottom:318.315000px;}
.y1e{bottom:320.250000px;}
.y162{bottom:322.455000px;}
.y3f{bottom:322.590000px;}
.y125{bottom:323.175000px;}
.y97{bottom:326.415000px;}
.yb3{bottom:336.135000px;}
.y1d{bottom:336.810000px;}
.yd9{bottom:341.355000px;}
.y3e{bottom:342.750000px;}
.yed{bottom:344.235000px;}
.y79{bottom:345.675000px;}
.y141{bottom:347.115000px;}
.y124{bottom:349.455000px;}
.yab{bottom:351.255000px;}
.y161{bottom:352.695000px;}
.y1c{bottom:353.370000px;}
.y96{bottom:361.875000px;}
.y3d{bottom:362.910000px;}
.yf3{bottom:369.435000px;}
.y1b{bottom:369.750000px;}
.yd8{bottom:372.135000px;}
.y123{bottom:375.735000px;}
.y78{bottom:378.615000px;}
.y160{bottom:382.755000px;}
.y3c{bottom:383.070000px;}
.yaa{bottom:384.195000px;}
.y1a{bottom:386.355000px;}
.yf0{bottom:394.635000px;}
.y95{bottom:397.875000px;}
.y122{bottom:402.015000px;}
.y19{bottom:402.735000px;}
.yd7{bottom:402.915000px;}
.y3b{bottom:403.230000px;}
.y77{bottom:411.555000px;}
.y15f{bottom:412.995000px;}
.ya9{bottom:417.135000px;}
.y18{bottom:419.295000px;}
.yec{bottom:419.835000px;}
.y3a{bottom:423.390000px;}
.y121{bottom:428.295000px;}
.y94{bottom:430.815000px;}
.yd6{bottom:433.695000px;}
.y17{bottom:436.035000px;}
.y16{bottom:439.635000px;}
.y15e{bottom:443.235000px;}
.y39{bottom:443.550000px;}
.y76{bottom:444.495000px;}
.ya8{bottom:450.075000px;}
.y11f{bottom:454.575000px;}
.y38{bottom:463.710000px;}
.y93{bottom:463.755000px;}
.yd5{bottom:464.475000px;}
.y15d{bottom:473.475000px;}
.y75{bottom:477.615000px;}
.y11e{bottom:480.675000px;}
.ya7{bottom:483.015000px;}
.y37{bottom:483.870000px;}
.yeb{bottom:494.715000px;}
.yd2{bottom:495.255000px;}
.y92{bottom:496.695000px;}
.y15c{bottom:503.715000px;}
.y36{bottom:503.895000px;}
.y11d{bottom:506.955000px;}
.y74{bottom:510.555000px;}
.yea{bottom:512.535000px;}
.ya6{bottom:515.955000px;}
.y16c{bottom:517.755000px;}
.y35{bottom:524.055000px;}
.yd4{bottom:525.855000px;}
.y91{bottom:529.635000px;}
.y11c{bottom:533.235000px;}
.y15b{bottom:533.955000px;}
.ye9{bottom:540.255000px;}
.y16b{bottom:541.515000px;}
.y73{bottom:543.495000px;}
.y34{bottom:544.215000px;}
.ya5{bottom:548.895000px;}
.yd0{bottom:556.635000px;}
.y16a{bottom:562.605000px;}
.y90{bottom:562.785000px;}
.y15a{bottom:564.225000px;}
.y33{bottom:564.375000px;}
.ye8{bottom:568.005000px;}
.y72{bottom:576.465000px;}
.ya4{bottom:581.865000px;}
.ycf{bottom:587.445000px;}
.y169{bottom:592.845000px;}
.y159{bottom:594.285000px;}
.y8f{bottom:595.725000px;}
.y11b{bottom:608.145000px;}
.y71{bottom:609.405000px;}
.ya3{bottom:614.805000px;}
.yce{bottom:618.225000px;}
.ye0{bottom:623.625000px;}
.y158{bottom:624.525000px;}
.y119{bottom:626.685000px;}
.y8e{bottom:628.665000px;}
.y12f{bottom:630.465000px;}
.y70{bottom:642.345000px;}
.y138{bottom:645.945000px;}
.ya2{bottom:647.925000px;}
.ycd{bottom:649.005000px;}
.ye2{bottom:651.345000px;}
.y157{bottom:654.765000px;}
.y118{bottom:655.665000px;}
.y8d{bottom:661.605000px;}
.y12e{bottom:670.785000px;}
.y137{bottom:671.325000px;}
.y6f{bottom:675.285000px;}
.ycc{bottom:679.785000px;}
.ya1{bottom:680.865000px;}
.y117{bottom:681.945000px;}
.y156{bottom:685.005000px;}
.y8c{bottom:694.545000px;}
.ydf{bottom:695.985000px;}
.y136{bottom:696.525000px;}
.y6e{bottom:708.225000px;}
.ycb{bottom:710.385000px;}
.ya0{bottom:713.805000px;}
.y155{bottom:715.245000px;}
.y12d{bottom:721.365000px;}
.y135{bottom:721.905000px;}
.y8b{bottom:727.485000px;}
.y116{bottom:734.505000px;}
.y6d{bottom:741.165000px;}
.y154{bottom:745.485000px;}
.y12c{bottom:746.565000px;}
.y9f{bottom:746.745000px;}
.y115{bottom:760.785000px;}
.y8a{bottom:762.945000px;}
.yde{bottom:763.845000px;}
.y134{bottom:764.925000px;}
.yca{bottom:771.945000px;}
.y6c{bottom:774.105000px;}
.y153{bottom:775.545000px;}
.y9e{bottom:779.685000px;}
.y114{bottom:786.885000px;}
.y89{bottom:789.585000px;}
.ydd{bottom:791.925000px;}
.y100{bottom:792.000000px;}
.yc7{bottom:802.725000px;}
.y152{bottom:805.785000px;}
.y6b{bottom:807.225000px;}
.y140{bottom:809.565000px;}
.y88{bottom:812.670000px;}
.y113{bottom:813.210000px;}
.yc6{bottom:833.550000px;}
.y151{bottom:836.070000px;}
.y112{bottom:839.490000px;}
.y6a{bottom:840.210000px;}
.y87{bottom:845.610000px;}
.yc5{bottom:864.330000px;}
.y111{bottom:865.770000px;}
.y150{bottom:866.310000px;}
.y69{bottom:873.150000px;}
.y86{bottom:878.550000px;}
.y13{bottom:890.070000px;}
.y110{bottom:892.050000px;}
.yc3{bottom:894.930000px;}
.y14f{bottom:896.550000px;}
.y68{bottom:906.090000px;}
.y85{bottom:911.490000px;}
.y10f{bottom:918.330000px;}
.yc0{bottom:925.710000px;}
.y14e{bottom:926.790000px;}
.yf{bottom:930.750000px;}
.y67{bottom:939.030000px;}
.y11{bottom:940.786500px;}
.y10e{bottom:944.430000px;}
.y84{bottom:944.610000px;}
.ybf{bottom:956.490000px;}
.y14d{bottom:957.030000px;}
.y10d{bottom:970.710000px;}
.y66{bottom:971.970000px;}
.y83{bottom:977.550000px;}
.y14c{bottom:987.090000px;}
.ybc{bottom:987.270000px;}
.y10b{bottom:996.990000px;}
.y65{bottom:1004.910000px;}
.y82{bottom:1010.490000px;}
.yd{bottom:1016.202000px;}
.y14b{bottom:1017.330000px;}
.yba{bottom:1018.050000px;}
.y108{bottom:1023.270000px;}
.y9{bottom:1037.850000px;}
.y81{bottom:1043.430000px;}
.y14a{bottom:1047.570000px;}
.yb8{bottom:1049.550000px;}
.y1{bottom:1054.590000px;}
.y64{bottom:1073.340000px;}
.y80{bottom:1076.400000px;}
.y149{bottom:1077.840000px;}
.y60{bottom:1097.460000px;}
.y5f{bottom:1115.640000px;}
.h1b{height:18.360000px;}
.h2d{height:24.480000px;}
.h32{height:24.660000px;}
.h38{height:24.696000px;}
.h35{height:24.840000px;}
.h36{height:24.876000px;}
.h2a{height:27.000000px;}
.h2b{height:27.036000px;}
.h37{height:28.260000px;}
.h39{height:28.800000px;}
.h7{height:29.160000px;}
.h23{height:29.880000px;}
.h26{height:29.916000px;}
.h21{height:30.060000px;}
.h1e{height:30.077578px;}
.h24{height:30.096000px;}
.h20{height:30.780000px;}
.h15{height:32.976000px;}
.h27{height:36.900000px;}
.hb{height:40.680000px;}
.h3a{height:41.726953px;}
.h19{height:42.186445px;}
.h2{height:42.759141px;}
.hc{height:43.400391px;}
.h29{height:43.920000px;}
.h1f{height:43.956000px;}
.hf{height:47.223633px;}
.he{height:48.029766px;}
.h14{height:48.761719px;}
.h1a{height:49.992188px;}
.h18{height:50.040000px;}
.h5{height:50.273438px;}
.h6{height:50.364141px;}
.h33{height:50.940000px;}
.h34{height:51.120000px;}
.h16{height:52.260820px;}
.h2f{height:54.720000px;}
.h2e{height:54.756000px;}
.h3b{height:59.439023px;}
.h22{height:60.840000px;}
.h1c{height:62.964844px;}
.h12{height:65.884219px;}
.h11{height:67.824844px;}
.h1d{height:71.613281px;}
.h28{height:71.640000px;}
.h4{height:73.722656px;}
.ha{height:73.980000px;}
.h2c{height:74.880000px;}
.h30{height:82.440000px;}
.h1{height:86.076000px;}
.h3{height:86.255508px;}
.h25{height:91.476000px;}
.h9{height:92.153320px;}
.h8{height:98.051133px;}
.h17{height:107.419922px;}
.h13{height:162.570000px;}
.h31{height:301.500000px;}
.hd{height:450.435000px;}
.h10{height:580.035000px;}
.h0{height:1188.000000px;}
.w22{width:46.980000px;}
.w24{width:47.160000px;}
.w32{width:49.140000px;}
.w18{width:50.400000px;}
.w3d{width:50.796000px;}
.w3e{width:51.660000px;}
.w16{width:56.700000px;}
.w23{width:57.456000px;}
.w25{width:57.600000px;}
.w1a{width:60.156000px;}
.w33{width:60.300000px;}
.w31{width:60.336000px;}
.w1e{width:66.096000px;}
.w14{width:68.040000px;}
.w30{width:69.120000px;}
.w3a{width:74.160000px;}
.w3f{width:76.500000px;}
.w19{width:78.120000px;}
.w2f{width:81.000000px;}
.w3b{width:81.036000px;}
.w3c{width:84.420000px;}
.w15{width:84.960000px;}
.w2e{width:87.696000px;}
.w17{width:88.056000px;}
.w20{width:104.436000px;}
.w21{width:104.760000px;}
.wd{width:106.740000px;}
.wc{width:106.776000px;}
.we{width:106.956000px;}
.w2b{width:109.440000px;}
.w1f{width:113.040000px;}
.w37{width:128.160000px;}
.w2d{width:129.456000px;}
.w39{width:135.216000px;}
.w27{width:136.440000px;}
.w13{width:138.276000px;}
.w12{width:138.456000px;}
.w11{width:141.660000px;}
.w26{width:147.096000px;}
.w2{width:150.840000px;}
.w10{width:153.930000px;}
.w38{width:155.190000px;}
.w2c{width:168.690000px;}
.w6{width:208.830000px;}
.w1d{width:209.190000px;}
.w35{width:256.530000px;}
.wb{width:270.570000px;}
.w1c{width:283.530000px;}
.w36{width:290.415000px;}
.w2a{width:298.155000px;}
.w7{width:553.215000px;}
.w1{width:561.525000px;}
.w28{width:590.580000px;}
.wa{width:591.045000px;}
.wf{width:640.365000px;}
.w1b{width:671.865000px;}
.w34{width:675.105000px;}
.w9{width:681.765000px;}
.w29{width:691.125000px;}
.w5{width:701.553000px;}
.w4{width:701.565000px;}
.w8{width:746.250000px;}
.w3{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x11{left:10.836000px;}
.x17{left:12.240000px;}
.x2b{left:14.220000px;}
.x49{left:15.480000px;}
.x34{left:16.740000px;}
.x2f{left:18.720000px;}
.xf{left:20.340000px;}
.x2d{left:21.960000px;}
.x31{left:23.625000px;}
.x1d{left:24.885000px;}
.x1f{left:27.180000px;}
.x50{left:29.340000px;}
.x22{left:30.450000px;}
.x53{left:31.860000px;}
.x21{left:32.985000px;}
.x33{left:34.560000px;}
.x3c{left:36.000000px;}
.x20{left:37.440000px;}
.x32{left:39.450000px;}
.x19{left:40.530000px;}
.x24{left:41.940000px;}
.x4a{left:43.740000px;}
.x8{left:45.180000px;}
.x1b{left:46.980000px;}
.x23{left:48.810000px;}
.x1e{left:53.310000px;}
.xb{left:73.620000px;}
.x10{left:90.900000px;}
.xd{left:97.956000px;}
.x4{left:108.035987px;}
.x4c{left:117.750000px;}
.x43{left:121.710000px;}
.x1{left:123.156000px;}
.xc{left:134.820000px;}
.x41{left:137.196000px;}
.x12{left:141.876000px;}
.x7{left:150.880500px;}
.xa{left:153.030000px;}
.x27{left:162.570000px;}
.x16{left:187.230000px;}
.x55{left:189.209986px;}
.x57{left:195.869986px;}
.x3f{left:201.495000px;}
.x58{left:209.369986px;}
.x26{left:240.689986px;}
.x3b{left:298.875000px;}
.xe{left:307.515000px;}
.x28{left:316.515000px;}
.x3e{left:332.970000px;}
.x3d{left:346.650000px;}
.x4b{left:398.415000px;}
.x2c{left:401.475000px;}
.x42{left:420.735000px;}
.x35{left:435.315000px;}
.x18{left:457.815000px;}
.x4f{left:472.575000px;}
.x40{left:475.455000px;}
.x39{left:482.295000px;}
.x46{left:508.425000px;}
.x38{left:539.745000px;}
.x2e{left:546.225000px;}
.x4e{left:553.605000px;}
.x1a{left:564.585000px;}
.x3a{left:586.905000px;}
.x45{left:589.425000px;}
.x29{left:596.625000px;}
.x51{left:638.025000px;}
.x36{left:644.505000px;}
.x9{left:656.028475px;}
.x47{left:658.545000px;}
.x1c{left:671.325000px;}
.x30{left:674.745000px;}
.x3{left:684.690000px;}
.x4d{left:688.830000px;}
.x37{left:710.610000px;}
.x44{left:718.890000px;}
.x2a{left:734.910000px;}
.x52{left:740.490000px;}
.x54{left:750.569986px;}
.x14{left:758.669986px;}
.x15{left:762.449986px;}
.x48{left:768.030000px;}
.x56{left:771.989986px;}
.x25{left:778.649986px;}
.x6{left:785.489986px;}
.x13{left:823.829986px;}
.x5{left:850.649987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.394133pt;}
.ls7{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.272000pt;}
.lsb{letter-spacing:-0.265067pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.117867pt;}
.ls18{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.019840pt;}
.ls4{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls1b{letter-spacing:0.117760pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.227733pt;}
.ls13{letter-spacing:0.227840pt;}
.ls11{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.800000pt;}
.ls15{letter-spacing:4.917333pt;}
.ls0{letter-spacing:5.312000pt;}
.ls14{letter-spacing:14.213120pt;}
.ws10{word-spacing:-21.840213pt;}
.ws0{word-spacing:-19.776000pt;}
.ws3{word-spacing:-16.922880pt;}
.wsd{word-spacing:-14.656000pt;}
.wse{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.272000pt;}
.wsf{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.306880pt;}
.wsb{word-spacing:-12.591787pt;}
.ws12{word-spacing:-12.334187pt;}
.ws8{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.ws6{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.832000pt;}
.ws5{word-spacing:-10.576000pt;}
.ws2{word-spacing:-9.710720pt;}
.ws1{word-spacing:-0.053120pt;}
.ws9{word-spacing:0.000000pt;}
._1f{margin-left:-4.823467pt;}
._1d{margin-left:-3.712000pt;}
._13{margin-left:-2.752000pt;}
._1e{margin-left:-1.842347pt;}
._4{margin-left:-0.926080pt;}
._3{width:1.495467pt;}
._6{width:2.590720pt;}
._7{width:4.121600pt;}
._0{width:5.091840pt;}
._1{width:6.289920pt;}
._9{width:7.280000pt;}
._2{width:8.702293pt;}
._10{width:10.362880pt;}
._16{width:11.678080pt;}
._15{width:13.184000pt;}
._c{width:15.478400pt;}
._a{width:16.667520pt;}
._8{width:17.722880pt;}
._14{width:18.688000pt;}
._1c{width:20.416000pt;}
._1b{width:21.440000pt;}
._b{width:22.433280pt;}
._20{width:23.407787pt;}
._d{width:24.435200pt;}
._22{width:25.920000pt;}
._21{width:27.072000pt;}
._1a{width:28.062080pt;}
._19{width:28.992000pt;}
._18{width:32.384000pt;}
._17{width:33.536000pt;}
._f{width:45.380480pt;}
._e{width:46.322560pt;}
._12{width:97.984000pt;}
._5{width:149.594667pt;}
._11{width:434.602667pt;}
.fsa{font-size:26.880000pt;}
.fs0{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs8{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs4{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.520000pt;}
.ye5{bottom:4.320000pt;}
.y5e{bottom:4.480000pt;}
.y5{bottom:5.120000pt;}
.yf1{bottom:5.440000pt;}
.y10a{bottom:5.600000pt;}
.ye{bottom:5.760000pt;}
.yfe{bottom:6.554667pt;}
.ye7{bottom:6.560000pt;}
.y11a{bottom:7.200000pt;}
.y129{bottom:7.360000pt;}
.ybd{bottom:7.840000pt;}
.yc8{bottom:7.880000pt;}
.yc2{bottom:8.000000pt;}
.yd1{bottom:8.026667pt;}
.ybb{bottom:8.160000pt;}
.y58{bottom:10.080000pt;}
.y109{bottom:11.040000pt;}
.ybe{bottom:13.280000pt;}
.yc9{bottom:13.320000pt;}
.yc4{bottom:13.440000pt;}
.ye3{bottom:14.080000pt;}
.yb9{bottom:14.106667pt;}
.y57{bottom:16.000000pt;}
.ye6{bottom:16.640000pt;}
.y120{bottom:17.120000pt;}
.y10c{bottom:17.280000pt;}
.y12{bottom:17.600000pt;}
.yef{bottom:18.080000pt;}
.y15{bottom:18.240000pt;}
.yf9{bottom:18.880000pt;}
.yf6{bottom:18.920000pt;}
.y5d{bottom:19.200000pt;}
.y30{bottom:19.360000pt;}
.yc1{bottom:21.600000pt;}
.y8{bottom:22.266667pt;}
.ye4{bottom:23.840000pt;}
.y107{bottom:23.866667pt;}
.y14{bottom:24.640000pt;}
.ye1{bottom:26.400000pt;}
.y4{bottom:27.226667pt;}
.yf2{bottom:27.840000pt;}
.y56{bottom:30.600000pt;}
.yfc{bottom:31.194667pt;}
.y2f{bottom:34.080000pt;}
.y5c{bottom:34.240000pt;}
.yd3{bottom:35.200000pt;}
.ydb{bottom:35.240000pt;}
.y4d{bottom:36.160000pt;}
.yee{bottom:37.600000pt;}
.y7{bottom:41.786667pt;}
.y55{bottom:45.320000pt;}
.y3{bottom:47.386667pt;}
.y2e{bottom:48.640000pt;}
.y10{bottom:50.560000pt;}
.y63{bottom:51.360000pt;}
.y4c{bottom:54.080000pt;}
.y102{bottom:55.226667pt;}
.y54{bottom:59.880000pt;}
.y6{bottom:61.306667pt;}
.y2d{bottom:63.680000pt;}
.y2{bottom:67.706667pt;}
.y62{bottom:69.312000pt;}
.y4b{bottom:72.000000pt;}
.y53{bottom:74.600000pt;}
.y101{bottom:74.746667pt;}
.y106{bottom:75.706667pt;}
.yc{bottom:77.472000pt;}
.y2c{bottom:79.680000pt;}
.y61{bottom:87.712000pt;}
.y52{bottom:89.160000pt;}
.y4a{bottom:89.920000pt;}
.y2b{bottom:94.240000pt;}
.yb{bottom:95.392000pt;}
.y13f{bottom:102.112000pt;}
.y51{bottom:103.880000pt;}
.yb2{bottom:107.072000pt;}
.y49{bottom:107.680000pt;}
.y105{bottom:108.320000pt;}
.y2a{bottom:108.986667pt;}
.y13e{bottom:109.312000pt;}
.ya{bottom:113.792000pt;}
.y9d{bottom:114.432000pt;}
.yff{bottom:117.472000pt;}
.y50{bottom:118.440000pt;}
.y148{bottom:120.512000pt;}
.y29{bottom:123.546667pt;}
.y168{bottom:125.472000pt;}
.y48{bottom:125.600000pt;}
.yb7{bottom:128.352000pt;}
.y7f{bottom:131.392000pt;}
.y4f{bottom:133.160000pt;}
.yfb{bottom:133.312000pt;}
.yb1{bottom:136.346667pt;}
.y28{bottom:138.266667pt;}
.y13d{bottom:138.586667pt;}
.y47{bottom:143.520000pt;}
.y9c{bottom:143.706667pt;}
.y147{bottom:147.386667pt;}
.y167{bottom:152.346667pt;}
.y27{bottom:152.986667pt;}
.y12b{bottom:155.066667pt;}
.yfd{bottom:157.946667pt;}
.y7e{bottom:160.826667pt;}
.y46{bottom:161.440000pt;}
.yb0{bottom:165.626667pt;}
.y26{bottom:167.546667pt;}
.y13c{bottom:167.866667pt;}
.yb6{bottom:170.906667pt;}
.y9b{bottom:172.986667pt;}
.y146{bottom:174.266667pt;}
.y5a{bottom:174.906667pt;}
.y104{bottom:177.253333pt;}
.y166{bottom:179.066667pt;}
.y45{bottom:179.360000pt;}
.y25{bottom:182.266667pt;}
.yfa{bottom:182.586667pt;}
.y5b{bottom:184.506667pt;}
.y133{bottom:184.986667pt;}
.y7d{bottom:190.106667pt;}
.yaf{bottom:194.906667pt;}
.y103{bottom:196.773333pt;}
.y24{bottom:196.826667pt;}
.y13b{bottom:197.146667pt;}
.y44{bottom:197.280000pt;}
.y12a{bottom:197.786667pt;}
.y145{bottom:201.146667pt;}
.y9a{bottom:202.266667pt;}
.y165{bottom:205.946667pt;}
.yf8{bottom:207.386667pt;}
.y132{bottom:207.546667pt;}
.y23{bottom:211.546667pt;}
.yb5{bottom:213.466667pt;}
.y128{bottom:213.626667pt;}
.y43{bottom:215.200000pt;}
.y7c{bottom:219.386667pt;}
.y59{bottom:221.946667pt;}
.yae{bottom:224.186667pt;}
.y22{bottom:226.106667pt;}
.y13a{bottom:226.426667pt;}
.y144{bottom:228.026667pt;}
.y131{bottom:229.946667pt;}
.y99{bottom:231.546667pt;}
.yf7{bottom:232.026667pt;}
.y164{bottom:232.826667pt;}
.y42{bottom:233.146667pt;}
.y127{bottom:240.666667pt;}
.y21{bottom:240.826667pt;}
.y4e{bottom:245.466667pt;}
.y7b{bottom:248.666667pt;}
.yda{bottom:248.826667pt;}
.y41{bottom:251.066667pt;}
.yad{bottom:253.466667pt;}
.y143{bottom:254.746667pt;}
.y20{bottom:255.386667pt;}
.yb4{bottom:256.186667pt;}
.yf5{bottom:256.666667pt;}
.y163{bottom:259.706667pt;}
.y98{bottom:260.826667pt;}
.y126{bottom:264.026667pt;}
.y139{bottom:264.666667pt;}
.y130{bottom:268.186667pt;}
.y40{bottom:268.986667pt;}
.y1f{bottom:270.106667pt;}
.y32{bottom:275.586667pt;}
.ydc{bottom:276.226667pt;}
.y7a{bottom:277.986667pt;}
.yf4{bottom:281.346667pt;}
.y142{bottom:281.666667pt;}
.yac{bottom:282.946667pt;}
.y1e{bottom:284.666667pt;}
.y162{bottom:286.626667pt;}
.y3f{bottom:286.746667pt;}
.y125{bottom:287.266667pt;}
.y97{bottom:290.146667pt;}
.yb3{bottom:298.786667pt;}
.y1d{bottom:299.386667pt;}
.yd9{bottom:303.426667pt;}
.y3e{bottom:304.666667pt;}
.yed{bottom:305.986667pt;}
.y79{bottom:307.266667pt;}
.y141{bottom:308.546667pt;}
.y124{bottom:310.626667pt;}
.yab{bottom:312.226667pt;}
.y161{bottom:313.506667pt;}
.y1c{bottom:314.106667pt;}
.y96{bottom:321.666667pt;}
.y3d{bottom:322.586667pt;}
.yf3{bottom:328.386667pt;}
.y1b{bottom:328.666667pt;}
.yd8{bottom:330.786667pt;}
.y123{bottom:333.986667pt;}
.y78{bottom:336.546667pt;}
.y160{bottom:340.226667pt;}
.y3c{bottom:340.506667pt;}
.yaa{bottom:341.506667pt;}
.y1a{bottom:343.426667pt;}
.yf0{bottom:350.786667pt;}
.y95{bottom:353.666667pt;}
.y122{bottom:357.346667pt;}
.y19{bottom:357.986667pt;}
.yd7{bottom:358.146667pt;}
.y3b{bottom:358.426667pt;}
.y77{bottom:365.826667pt;}
.y15f{bottom:367.106667pt;}
.ya9{bottom:370.786667pt;}
.y18{bottom:372.706667pt;}
.yec{bottom:373.186667pt;}
.y3a{bottom:376.346667pt;}
.y121{bottom:380.706667pt;}
.y94{bottom:382.946667pt;}
.yd6{bottom:385.506667pt;}
.y17{bottom:387.586667pt;}
.y16{bottom:390.786667pt;}
.y15e{bottom:393.986667pt;}
.y39{bottom:394.266667pt;}
.y76{bottom:395.106667pt;}
.ya8{bottom:400.066667pt;}
.y11f{bottom:404.066667pt;}
.y38{bottom:412.186667pt;}
.y93{bottom:412.226667pt;}
.yd5{bottom:412.866667pt;}
.y15d{bottom:420.866667pt;}
.y75{bottom:424.546667pt;}
.y11e{bottom:427.266667pt;}
.ya7{bottom:429.346667pt;}
.y37{bottom:430.106667pt;}
.yeb{bottom:439.746667pt;}
.yd2{bottom:440.226667pt;}
.y92{bottom:441.506667pt;}
.y15c{bottom:447.746667pt;}
.y36{bottom:447.906667pt;}
.y11d{bottom:450.626667pt;}
.y74{bottom:453.826667pt;}
.yea{bottom:455.586667pt;}
.ya6{bottom:458.626667pt;}
.y16c{bottom:460.226667pt;}
.y35{bottom:465.826667pt;}
.yd4{bottom:467.426667pt;}
.y91{bottom:470.786667pt;}
.y11c{bottom:473.986667pt;}
.y15b{bottom:474.626667pt;}
.ye9{bottom:480.226667pt;}
.y16b{bottom:481.346667pt;}
.y73{bottom:483.106667pt;}
.y34{bottom:483.746667pt;}
.ya5{bottom:487.906667pt;}
.yd0{bottom:494.786667pt;}
.y16a{bottom:500.093333pt;}
.y90{bottom:500.253333pt;}
.y15a{bottom:501.533333pt;}
.y33{bottom:501.666667pt;}
.ye8{bottom:504.893333pt;}
.y72{bottom:512.413333pt;}
.ya4{bottom:517.213333pt;}
.ycf{bottom:522.173333pt;}
.y169{bottom:526.973333pt;}
.y159{bottom:528.253333pt;}
.y8f{bottom:529.533333pt;}
.y11b{bottom:540.573333pt;}
.y71{bottom:541.693333pt;}
.ya3{bottom:546.493333pt;}
.yce{bottom:549.533333pt;}
.ye0{bottom:554.333333pt;}
.y158{bottom:555.133333pt;}
.y119{bottom:557.053333pt;}
.y8e{bottom:558.813333pt;}
.y12f{bottom:560.413333pt;}
.y70{bottom:570.973333pt;}
.y138{bottom:574.173333pt;}
.ya2{bottom:575.933333pt;}
.ycd{bottom:576.893333pt;}
.ye2{bottom:578.973333pt;}
.y157{bottom:582.013333pt;}
.y118{bottom:582.813333pt;}
.y8d{bottom:588.093333pt;}
.y12e{bottom:596.253333pt;}
.y137{bottom:596.733333pt;}
.y6f{bottom:600.253333pt;}
.ycc{bottom:604.253333pt;}
.ya1{bottom:605.213333pt;}
.y117{bottom:606.173333pt;}
.y156{bottom:608.893333pt;}
.y8c{bottom:617.373333pt;}
.ydf{bottom:618.653333pt;}
.y136{bottom:619.133333pt;}
.y6e{bottom:629.533333pt;}
.ycb{bottom:631.453333pt;}
.ya0{bottom:634.493333pt;}
.y155{bottom:635.773333pt;}
.y12d{bottom:641.213333pt;}
.y135{bottom:641.693333pt;}
.y8b{bottom:646.653333pt;}
.y116{bottom:652.893333pt;}
.y6d{bottom:658.813333pt;}
.y154{bottom:662.653333pt;}
.y12c{bottom:663.613333pt;}
.y9f{bottom:663.773333pt;}
.y115{bottom:676.253333pt;}
.y8a{bottom:678.173333pt;}
.yde{bottom:678.973333pt;}
.y134{bottom:679.933333pt;}
.yca{bottom:686.173333pt;}
.y6c{bottom:688.093333pt;}
.y153{bottom:689.373333pt;}
.y9e{bottom:693.053333pt;}
.y114{bottom:699.453333pt;}
.y89{bottom:701.853333pt;}
.ydd{bottom:703.933333pt;}
.y100{bottom:704.000000pt;}
.yc7{bottom:713.533333pt;}
.y152{bottom:716.253333pt;}
.y6b{bottom:717.533333pt;}
.y140{bottom:719.613333pt;}
.y88{bottom:722.373333pt;}
.y113{bottom:722.853333pt;}
.yc6{bottom:740.933333pt;}
.y151{bottom:743.173333pt;}
.y112{bottom:746.213333pt;}
.y6a{bottom:746.853333pt;}
.y87{bottom:751.653333pt;}
.yc5{bottom:768.293333pt;}
.y111{bottom:769.573333pt;}
.y150{bottom:770.053333pt;}
.y69{bottom:776.133333pt;}
.y86{bottom:780.933333pt;}
.y13{bottom:791.173333pt;}
.y110{bottom:792.933333pt;}
.yc3{bottom:795.493333pt;}
.y14f{bottom:796.933333pt;}
.y68{bottom:805.413333pt;}
.y85{bottom:810.213333pt;}
.y10f{bottom:816.293333pt;}
.yc0{bottom:822.853333pt;}
.y14e{bottom:823.813333pt;}
.yf{bottom:827.333333pt;}
.y67{bottom:834.693333pt;}
.y11{bottom:836.254667pt;}
.y10e{bottom:839.493333pt;}
.y84{bottom:839.653333pt;}
.ybf{bottom:850.213333pt;}
.y14d{bottom:850.693333pt;}
.y10d{bottom:862.853333pt;}
.y66{bottom:863.973333pt;}
.y83{bottom:868.933333pt;}
.y14c{bottom:877.413333pt;}
.ybc{bottom:877.573333pt;}
.y10b{bottom:886.213333pt;}
.y65{bottom:893.253333pt;}
.y82{bottom:898.213333pt;}
.yd{bottom:903.290667pt;}
.y14b{bottom:904.293333pt;}
.yba{bottom:904.933333pt;}
.y108{bottom:909.573333pt;}
.y9{bottom:922.533333pt;}
.y81{bottom:927.493333pt;}
.y14a{bottom:931.173333pt;}
.yb8{bottom:932.933333pt;}
.y1{bottom:937.413333pt;}
.y64{bottom:954.080000pt;}
.y80{bottom:956.800000pt;}
.y149{bottom:958.080000pt;}
.y60{bottom:975.520000pt;}
.y5f{bottom:991.680000pt;}
.h1b{height:16.320000pt;}
.h2d{height:21.760000pt;}
.h32{height:21.920000pt;}
.h38{height:21.952000pt;}
.h35{height:22.080000pt;}
.h36{height:22.112000pt;}
.h2a{height:24.000000pt;}
.h2b{height:24.032000pt;}
.h37{height:25.120000pt;}
.h39{height:25.600000pt;}
.h7{height:25.920000pt;}
.h23{height:26.560000pt;}
.h26{height:26.592000pt;}
.h21{height:26.720000pt;}
.h1e{height:26.735625pt;}
.h24{height:26.752000pt;}
.h20{height:27.360000pt;}
.h15{height:29.312000pt;}
.h27{height:32.800000pt;}
.hb{height:36.160000pt;}
.h3a{height:37.090625pt;}
.h19{height:37.499062pt;}
.h2{height:38.008125pt;}
.hc{height:38.578125pt;}
.h29{height:39.040000pt;}
.h1f{height:39.072000pt;}
.hf{height:41.976562pt;}
.he{height:42.693125pt;}
.h14{height:43.343750pt;}
.h1a{height:44.437500pt;}
.h18{height:44.480000pt;}
.h5{height:44.687500pt;}
.h6{height:44.768125pt;}
.h33{height:45.280000pt;}
.h34{height:45.440000pt;}
.h16{height:46.454062pt;}
.h2f{height:48.640000pt;}
.h2e{height:48.672000pt;}
.h3b{height:52.834688pt;}
.h22{height:54.080000pt;}
.h1c{height:55.968750pt;}
.h12{height:58.563750pt;}
.h11{height:60.288750pt;}
.h1d{height:63.656250pt;}
.h28{height:63.680000pt;}
.h4{height:65.531250pt;}
.ha{height:65.760000pt;}
.h2c{height:66.560000pt;}
.h30{height:73.280000pt;}
.h1{height:76.512000pt;}
.h3{height:76.671562pt;}
.h25{height:81.312000pt;}
.h9{height:81.914062pt;}
.h8{height:87.156562pt;}
.h17{height:95.484375pt;}
.h13{height:144.506667pt;}
.h31{height:268.000000pt;}
.hd{height:400.386667pt;}
.h10{height:515.586667pt;}
.h0{height:1056.000000pt;}
.w22{width:41.760000pt;}
.w24{width:41.920000pt;}
.w32{width:43.680000pt;}
.w18{width:44.800000pt;}
.w3d{width:45.152000pt;}
.w3e{width:45.920000pt;}
.w16{width:50.400000pt;}
.w23{width:51.072000pt;}
.w25{width:51.200000pt;}
.w1a{width:53.472000pt;}
.w33{width:53.600000pt;}
.w31{width:53.632000pt;}
.w1e{width:58.752000pt;}
.w14{width:60.480000pt;}
.w30{width:61.440000pt;}
.w3a{width:65.920000pt;}
.w3f{width:68.000000pt;}
.w19{width:69.440000pt;}
.w2f{width:72.000000pt;}
.w3b{width:72.032000pt;}
.w3c{width:75.040000pt;}
.w15{width:75.520000pt;}
.w2e{width:77.952000pt;}
.w17{width:78.272000pt;}
.w20{width:92.832000pt;}
.w21{width:93.120000pt;}
.wd{width:94.880000pt;}
.wc{width:94.912000pt;}
.we{width:95.072000pt;}
.w2b{width:97.280000pt;}
.w1f{width:100.480000pt;}
.w37{width:113.920000pt;}
.w2d{width:115.072000pt;}
.w39{width:120.192000pt;}
.w27{width:121.280000pt;}
.w13{width:122.912000pt;}
.w12{width:123.072000pt;}
.w11{width:125.920000pt;}
.w26{width:130.752000pt;}
.w2{width:134.080000pt;}
.w10{width:136.826667pt;}
.w38{width:137.946667pt;}
.w2c{width:149.946667pt;}
.w6{width:185.626667pt;}
.w1d{width:185.946667pt;}
.w35{width:228.026667pt;}
.wb{width:240.506667pt;}
.w1c{width:252.026667pt;}
.w36{width:258.146667pt;}
.w2a{width:265.026667pt;}
.w7{width:491.746667pt;}
.w1{width:499.133333pt;}
.w28{width:524.960000pt;}
.wa{width:525.373333pt;}
.wf{width:569.213333pt;}
.w1b{width:597.213333pt;}
.w34{width:600.093333pt;}
.w9{width:606.013333pt;}
.w29{width:614.333333pt;}
.w5{width:623.602667pt;}
.w4{width:623.613333pt;}
.w8{width:663.333333pt;}
.w3{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x11{left:9.632000pt;}
.x17{left:10.880000pt;}
.x2b{left:12.640000pt;}
.x49{left:13.760000pt;}
.x34{left:14.880000pt;}
.x2f{left:16.640000pt;}
.xf{left:18.080000pt;}
.x2d{left:19.520000pt;}
.x31{left:21.000000pt;}
.x1d{left:22.120000pt;}
.x1f{left:24.160000pt;}
.x50{left:26.080000pt;}
.x22{left:27.066667pt;}
.x53{left:28.320000pt;}
.x21{left:29.320000pt;}
.x33{left:30.720000pt;}
.x3c{left:32.000000pt;}
.x20{left:33.280000pt;}
.x32{left:35.066667pt;}
.x19{left:36.026667pt;}
.x24{left:37.280000pt;}
.x4a{left:38.880000pt;}
.x8{left:40.160000pt;}
.x1b{left:41.760000pt;}
.x23{left:43.386667pt;}
.x1e{left:47.386667pt;}
.xb{left:65.440000pt;}
.x10{left:80.800000pt;}
.xd{left:87.072000pt;}
.x4{left:96.031988pt;}
.x4c{left:104.666667pt;}
.x43{left:108.186667pt;}
.x1{left:109.472000pt;}
.xc{left:119.840000pt;}
.x41{left:121.952000pt;}
.x12{left:126.112000pt;}
.x7{left:134.116000pt;}
.xa{left:136.026667pt;}
.x27{left:144.506667pt;}
.x16{left:166.426667pt;}
.x55{left:168.186655pt;}
.x57{left:174.106655pt;}
.x3f{left:179.106667pt;}
.x58{left:186.106655pt;}
.x26{left:213.946655pt;}
.x3b{left:265.666667pt;}
.xe{left:273.346667pt;}
.x28{left:281.346667pt;}
.x3e{left:295.973333pt;}
.x3d{left:308.133333pt;}
.x4b{left:354.146667pt;}
.x2c{left:356.866667pt;}
.x42{left:373.986667pt;}
.x35{left:386.946667pt;}
.x18{left:406.946667pt;}
.x4f{left:420.066667pt;}
.x40{left:422.626667pt;}
.x39{left:428.706667pt;}
.x46{left:451.933333pt;}
.x38{left:479.773333pt;}
.x2e{left:485.533333pt;}
.x4e{left:492.093333pt;}
.x1a{left:501.853333pt;}
.x3a{left:521.693333pt;}
.x45{left:523.933333pt;}
.x29{left:530.333333pt;}
.x51{left:567.133333pt;}
.x36{left:572.893333pt;}
.x9{left:583.136422pt;}
.x47{left:585.373333pt;}
.x1c{left:596.733333pt;}
.x30{left:599.773333pt;}
.x3{left:608.613333pt;}
.x4d{left:612.293333pt;}
.x37{left:631.653333pt;}
.x44{left:639.013333pt;}
.x2a{left:653.253333pt;}
.x52{left:658.213333pt;}
.x54{left:667.173321pt;}
.x14{left:674.373321pt;}
.x15{left:677.733321pt;}
.x48{left:682.693333pt;}
.x56{left:686.213321pt;}
.x25{left:692.133321pt;}
.x6{left:698.213321pt;}
.x13{left:732.293321pt;}
.x5{left:756.133321pt;}
}




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