
    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_2b29204ada159316a27f911a.woff')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_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_75986f6edaa6a33c5c269a63.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_5b1de8592a8c15199dd95f68.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_b369a5a9e2b1f7e31337a315.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ea0200e01d68c9070c74a401.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_44c6cba587b96c04e2f43228.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_5aebc90521a972cf282b9bd8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_e750b0a813f8eeeb860b057a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e028f4d51fcfac5571cefb95.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lse{letter-spacing:-0.774000px;}
.ls14{letter-spacing:-0.666000px;}
.ls11{letter-spacing:-0.612000px;}
.ls20{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.223200px;}
.ls5{letter-spacing:-0.208200px;}
.ls22{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037440px;}
.ls15{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.149760px;}
.ls12{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.513600px;}
.ls1d{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.666000px;}
.lsf{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.828000px;}
.ls13{letter-spacing:0.900000px;}
.ls18{letter-spacing:0.924000px;}
.ls1e{letter-spacing:1.620000px;}
.ls21{letter-spacing:14.580000px;}
.ls1f{letter-spacing:16.506720px;}
.lsc{letter-spacing:41.706720px;}
.ls1c{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.wsc{word-spacing:-15.864000px;}
.ws4{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.716800px;}
.wsf{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.274000px;}
.ws6{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1e{margin-left:-2.125440px;}
._2{margin-left:-1.008000px;}
._0{width:1.185840px;}
._1a{width:2.207520px;}
._8{width:3.223680px;}
._9{width:4.661280px;}
._a{width:5.765040px;}
._10{width:7.079760px;}
._15{width:8.084160px;}
._b{width:9.273120px;}
._7{width:11.091600px;}
._6{width:12.250800px;}
._11{width:13.515120px;}
._16{width:16.361280px;}
._1b{width:17.726160px;}
._5{width:18.764640px;}
._f{width:20.617200px;}
._17{width:22.051440px;}
._12{width:23.375520px;}
._1c{width:24.714000px;}
._1d{width:26.090160px;}
._e{width:27.131040px;}
._d{width:28.206720px;}
._19{width:29.401920px;}
._3{width:33.892320px;}
._14{width:35.686080px;}
._13{width:36.753840px;}
._2b{width:43.385760px;}
._2c{width:45.620880px;}
._4{width:47.784240px;}
._18{width:52.349760px;}
._21{width:55.517040px;}
._22{width:56.636880px;}
._2d{width:58.346640px;}
._25{width:59.461200px;}
._2a{width:60.847440px;}
._26{width:84.270960px;}
._27{width:85.337280px;}
._24{width:89.249520px;}
._23{width:90.476640px;}
._28{width:93.225600px;}
._29{width:94.420800px;}
._c{width:106.086720px;}
._20{width:109.594560px;}
._1f{width:111.275760px;}
._1{width:1099.908000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.y3b{bottom:5.760000px;}
.yfd{bottom:5.940000px;}
.yef{bottom:7.200000px;}
.y7{bottom:8.100000px;}
.yed{bottom:10.080000px;}
.y39{bottom:10.980000px;}
.y4e{bottom:25.560000px;}
.y11a{bottom:25.590000px;}
.y38{bottom:30.780000px;}
.y6{bottom:36.000000px;}
.y4d{bottom:45.360000px;}
.y37{bottom:50.760000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.y4c{bottom:65.340000px;}
.y36{bottom:70.560000px;}
.y4{bottom:81.720000px;}
.y4b{bottom:85.140000px;}
.y86{bottom:86.616000px;}
.y23{bottom:87.696000px;}
.yb8{bottom:88.416000px;}
.yea{bottom:90.216000px;}
.y35{bottom:90.360000px;}
.y14e{bottom:92.556000px;}
.yaf{bottom:95.616000px;}
.ya6{bottom:97.416000px;}
.y118{bottom:97.596000px;}
.y4a{bottom:104.940000px;}
.y85{bottom:106.416000px;}
.y22{bottom:107.676000px;}
.yb7{bottom:108.216000px;}
.y9{bottom:108.570000px;}
.ye9{bottom:110.016000px;}
.y34{bottom:110.160000px;}
.y14d{bottom:112.356000px;}
.yae{bottom:115.416000px;}
.ya5{bottom:117.216000px;}
.y117{bottom:117.576000px;}
.y3{bottom:118.110000px;}
.y49{bottom:124.740000px;}
.y84{bottom:126.216000px;}
.y21{bottom:127.476000px;}
.yb6{bottom:128.016000px;}
.ye8{bottom:129.816000px;}
.y33{bottom:129.960000px;}
.y8{bottom:130.530000px;}
.y14c{bottom:132.156000px;}
.yad{bottom:135.216000px;}
.ya4{bottom:137.016000px;}
.y116{bottom:137.376000px;}
.y48{bottom:144.540000px;}
.y83{bottom:146.016000px;}
.y20{bottom:147.276000px;}
.yb5{bottom:147.816000px;}
.ye7{bottom:149.796000px;}
.y32{bottom:149.940000px;}
.y14b{bottom:152.130000px;}
.yac{bottom:155.010000px;}
.ya3{bottom:156.810000px;}
.y115{bottom:157.170000px;}
.y47{bottom:164.520000px;}
.y82{bottom:165.810000px;}
.y1f{bottom:167.070000px;}
.yb4{bottom:167.790000px;}
.ye6{bottom:169.590000px;}
.y31{bottom:169.740000px;}
.y14a{bottom:171.930000px;}
.yab{bottom:174.810000px;}
.ya2{bottom:176.790000px;}
.y114{bottom:176.970000px;}
.y46{bottom:184.350000px;}
.y81{bottom:185.790000px;}
.y1e{bottom:186.870000px;}
.ye5{bottom:189.390000px;}
.y30{bottom:189.570000px;}
.y149{bottom:191.730000px;}
.yaa{bottom:194.790000px;}
.ya1{bottom:196.590000px;}
.y113{bottom:196.770000px;}
.y45{bottom:204.150000px;}
.y80{bottom:205.590000px;}
.y1d{bottom:206.850000px;}
.ye4{bottom:209.190000px;}
.y2f{bottom:209.370000px;}
.y148{bottom:211.530000px;}
.ya9{bottom:214.590000px;}
.ya0{bottom:216.390000px;}
.y112{bottom:216.750000px;}
.y44{bottom:223.950000px;}
.y7f{bottom:225.390000px;}
.y1c{bottom:226.650000px;}
.ye3{bottom:228.990000px;}
.y2e{bottom:229.170000px;}
.y147{bottom:231.330000px;}
.ya8{bottom:234.390000px;}
.y9f{bottom:236.190000px;}
.y111{bottom:236.550000px;}
.y43{bottom:243.750000px;}
.y7e{bottom:245.190000px;}
.y1b{bottom:246.450000px;}
.y2d{bottom:249.150000px;}
.y146{bottom:251.310000px;}
.ya7{bottom:254.190000px;}
.y9e{bottom:255.990000px;}
.y110{bottom:256.350000px;}
.ye2{bottom:257.970000px;}
.y42{bottom:263.730000px;}
.y1a{bottom:266.250000px;}
.y2c{bottom:268.950000px;}
.y145{bottom:271.110000px;}
.y7d{bottom:273.990000px;}
.y9d{bottom:275.970000px;}
.y10f{bottom:276.150000px;}
.ye1{bottom:277.770000px;}
.y41{bottom:283.530000px;}
.y19{bottom:286.050000px;}
.y2b{bottom:288.750000px;}
.y144{bottom:290.910000px;}
.y7c{bottom:293.970000px;}
.y9c{bottom:295.770000px;}
.y10e{bottom:295.950000px;}
.ye0{bottom:297.570000px;}
.y40{bottom:303.330000px;}
.y18{bottom:306.030000px;}
.y2a{bottom:308.550000px;}
.y143{bottom:310.710000px;}
.y7b{bottom:313.770000px;}
.y9b{bottom:315.570000px;}
.y10d{bottom:315.930000px;}
.ydf{bottom:317.370000px;}
.y3f{bottom:323.130000px;}
.y17{bottom:325.830000px;}
.y29{bottom:328.350000px;}
.y142{bottom:330.510000px;}
.y7a{bottom:333.570000px;}
.y9a{bottom:335.370000px;}
.y10c{bottom:335.730000px;}
.yde{bottom:337.215000px;}
.y3e{bottom:342.930000px;}
.y16{bottom:345.675000px;}
.y28{bottom:348.330000px;}
.y141{bottom:350.535000px;}
.y79{bottom:353.415000px;}
.y99{bottom:355.215000px;}
.y10b{bottom:355.575000px;}
.ydd{bottom:357.195000px;}
.y3d{bottom:362.910000px;}
.y15{bottom:365.475000px;}
.y27{bottom:368.130000px;}
.y140{bottom:370.335000px;}
.y78{bottom:373.215000px;}
.y98{bottom:375.195000px;}
.y10a{bottom:375.375000px;}
.ydc{bottom:376.995000px;}
.y3c{bottom:382.710000px;}
.y14{bottom:385.275000px;}
.y26{bottom:387.930000px;}
.y13f{bottom:390.135000px;}
.y77{bottom:393.195000px;}
.y97{bottom:394.995000px;}
.y109{bottom:395.175000px;}
.ydb{bottom:396.795000px;}
.y13{bottom:405.255000px;}
.y25{bottom:407.730000px;}
.y13e{bottom:409.935000px;}
.y76{bottom:412.995000px;}
.y96{bottom:414.795000px;}
.y108{bottom:415.155000px;}
.yda{bottom:416.595000px;}
.y24{bottom:424.515000px;}
.y13d{bottom:429.735000px;}
.y75{bottom:432.795000px;}
.y95{bottom:434.595000px;}
.y107{bottom:434.955000px;}
.yd9{bottom:436.395000px;}
.y13c{bottom:449.715000px;}
.y74{bottom:452.595000px;}
.y94{bottom:454.395000px;}
.y106{bottom:454.755000px;}
.yd8{bottom:465.375000px;}
.y13b{bottom:469.515000px;}
.y73{bottom:472.395000px;}
.y93{bottom:474.375000px;}
.y105{bottom:474.555000px;}
.yd7{bottom:485.175000px;}
.y13a{bottom:489.315000px;}
.y72{bottom:492.375000px;}
.y92{bottom:494.175000px;}
.y104{bottom:494.355000px;}
.yd6{bottom:504.975000px;}
.y139{bottom:509.115000px;}
.y71{bottom:512.175000px;}
.yb3{bottom:513.975000px;}
.y103{bottom:514.335000px;}
.y91{bottom:522.975000px;}
.yd5{bottom:524.775000px;}
.y138{bottom:528.915000px;}
.y70{bottom:531.975000px;}
.yb2{bottom:533.775000px;}
.y102{bottom:534.135000px;}
.y90{bottom:542.775000px;}
.yd4{bottom:544.575000px;}
.y137{bottom:548.895000px;}
.y6f{bottom:551.775000px;}
.yb1{bottom:553.575000px;}
.y101{bottom:553.935000px;}
.y8f{bottom:562.575000px;}
.yd3{bottom:564.555000px;}
.y136{bottom:568.695000px;}
.yfe{bottom:571.035000px;}
.y6e{bottom:571.575000px;}
.yb0{bottom:573.555000px;}
.y8e{bottom:582.555000px;}
.yd2{bottom:584.355000px;}
.y135{bottom:588.495000px;}
.y100{bottom:590.835000px;}
.y6d{bottom:591.555000px;}
.y8d{bottom:602.355000px;}
.yd1{bottom:604.185000px;}
.y134{bottom:608.325000px;}
.yff{bottom:610.665000px;}
.y6c{bottom:611.385000px;}
.y8c{bottom:622.185000px;}
.yd0{bottom:623.985000px;}
.y133{bottom:628.125000px;}
.yfc{bottom:630.465000px;}
.y6b{bottom:631.185000px;}
.y8b{bottom:641.985000px;}
.ycf{bottom:643.785000px;}
.y132{bottom:648.105000px;}
.y6a{bottom:650.985000px;}
.yfb{bottom:656.205000px;}
.y8a{bottom:661.785000px;}
.yce{bottom:663.765000px;}
.y131{bottom:667.905000px;}
.y69{bottom:670.785000px;}
.yfa{bottom:676.005000px;}
.y89{bottom:681.765000px;}
.ycd{bottom:683.565000px;}
.y130{bottom:687.705000px;}
.y68{bottom:690.765000px;}
.yf9{bottom:695.805000px;}
.y88{bottom:701.565000px;}
.y12f{bottom:707.505000px;}
.y67{bottom:710.565000px;}
.ycc{bottom:712.365000px;}
.yf8{bottom:715.605000px;}
.y87{bottom:721.365000px;}
.y12e{bottom:727.305000px;}
.y66{bottom:730.365000px;}
.ycb{bottom:732.165000px;}
.yf7{bottom:735.585000px;}
.y12d{bottom:747.285000px;}
.y65{bottom:750.165000px;}
.yca{bottom:751.965000px;}
.yf6{bottom:755.385000px;}
.y12c{bottom:767.085000px;}
.y64{bottom:769.965000px;}
.yc9{bottom:771.945000px;}
.yf5{bottom:775.185000px;}
.y12b{bottom:786.885000px;}
.y63{bottom:789.945000px;}
.yc8{bottom:791.745000px;}
.yf4{bottom:794.985000px;}
.y12a{bottom:806.685000px;}
.y62{bottom:809.745000px;}
.yc7{bottom:811.545000px;}
.yf3{bottom:814.785000px;}
.y3a{bottom:826.485000px;}
.y61{bottom:829.545000px;}
.yc6{bottom:831.345000px;}
.yf2{bottom:834.765000px;}
.y129{bottom:846.465000px;}
.y60{bottom:849.345000px;}
.yc5{bottom:851.145000px;}
.yf1{bottom:854.565000px;}
.y12{bottom:858.525000px;}
.y128{bottom:866.265000px;}
.y5f{bottom:869.145000px;}
.yc4{bottom:871.170000px;}
.yf0{bottom:874.410000px;}
.y11{bottom:879.810000px;}
.y127{bottom:886.110000px;}
.yee{bottom:888.450000px;}
.y5e{bottom:889.170000px;}
.yc3{bottom:890.970000px;}
.y10{bottom:900.150000px;}
.y126{bottom:905.910000px;}
.y5d{bottom:908.970000px;}
.yec{bottom:909.690000px;}
.yc2{bottom:919.770000px;}
.yf{bottom:921.390000px;}
.y125{bottom:925.710000px;}
.y5c{bottom:928.770000px;}
.yc1{bottom:939.570000px;}
.ye{bottom:944.970000px;}
.y124{bottom:945.690000px;}
.y5b{bottom:948.570000px;}
.yc0{bottom:959.370000px;}
.y123{bottom:965.490000px;}
.y5a{bottom:968.370000px;}
.yd{bottom:976.650000px;}
.ybf{bottom:979.350000px;}
.y122{bottom:985.290000px;}
.y59{bottom:988.350000px;}
.ybe{bottom:999.150000px;}
.y121{bottom:1005.090000px;}
.y58{bottom:1008.150000px;}
.yc{bottom:1008.330000px;}
.ybd{bottom:1018.950000px;}
.y11c{bottom:1022.190000px;}
.y57{bottom:1027.950000px;}
.ya{bottom:1034.610000px;}
.ybc{bottom:1038.750000px;}
.y120{bottom:1041.990000px;}
.y56{bottom:1047.750000px;}
.y1{bottom:1052.250000px;}
.ybb{bottom:1058.550000px;}
.y11f{bottom:1061.790000px;}
.y55{bottom:1067.550000px;}
.yba{bottom:1078.530000px;}
.y11e{bottom:1081.590000px;}
.y54{bottom:1087.530000px;}
.yb9{bottom:1098.330000px;}
.y11d{bottom:1101.570000px;}
.y53{bottom:1107.330000px;}
.yeb{bottom:1118.130000px;}
.y119{bottom:1121.370000px;}
.y52{bottom:1127.130000px;}
.y11b{bottom:1141.200000px;}
.y51{bottom:1146.960000px;}
.y50{bottom:1166.760000px;}
.y4f{bottom:1195.740000px;}
.hc{height:19.800000px;}
.h17{height:19.836000px;}
.h15{height:19.980000px;}
.h14{height:21.240000px;}
.h13{height:24.120000px;}
.h18{height:39.636000px;}
.hf{height:43.215117px;}
.ha{height:58.651172px;}
.he{height:59.038594px;}
.h16{height:59.436000px;}
.h1a{height:59.614102px;}
.h8{height:60.226875px;}
.h12{height:61.423863px;}
.h6{height:65.010937px;}
.h10{height:65.884219px;}
.h9{height:66.757500px;}
.h5{height:70.664062px;}
.h11{height:71.613281px;}
.h3{height:73.722656px;}
.h7{height:96.508125px;}
.h19{height:99.180000px;}
.h4{height:105.060586px;}
.h2{height:156.630000px;}
.hd{height:396.750000px;}
.hb{height:421.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:43.956000px;}
.wd{width:44.856000px;}
.w8{width:53.280000px;}
.w14{width:55.080000px;}
.w9{width:57.600000px;}
.w1a{width:58.500000px;}
.w10{width:60.840000px;}
.w19{width:66.060000px;}
.w1c{width:74.376000px;}
.wa{width:75.996000px;}
.w12{width:94.536000px;}
.w15{width:95.220000px;}
.w13{width:108.000000px;}
.w1b{width:127.620000px;}
.w2{width:127.656000px;}
.w11{width:135.036000px;}
.wb{width:138.960000px;}
.wf{width:146.736000px;}
.we{width:150.300000px;}
.w4{width:157.140000px;}
.w18{width:174.630000px;}
.w17{width:201.990000px;}
.wc{width:218.910000px;}
.w1e{width:225.390000px;}
.w16{width:269.355000px;}
.w6{width:285.555000px;}
.w7{width:494.535000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:4.500000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:45.900000px;}
.xa{left:53.999987px;}
.x24{left:57.779987px;}
.x1d{left:61.200000px;}
.xd{left:80.999987px;}
.x16{left:99.036000px;}
.xf{left:102.636000px;}
.x23{left:105.156000px;}
.xe{left:108.035987px;}
.x7{left:110.385000px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x1c{left:154.110000px;}
.x11{left:155.910000px;}
.x3{left:173.550000px;}
.xc{left:196.949987px;}
.x12{left:213.510000px;}
.x17{left:249.330000px;}
.x13{left:289.335000px;}
.x1e{left:330.555000px;}
.xb{left:343.515000px;}
.x18{left:396.075000px;}
.x14{left:428.295000px;}
.x19{left:456.915000px;}
.x22{left:458.175000px;}
.x1f{left:532.545000px;}
.x1a{left:591.945000px;}
.x15{left:647.205000px;}
.x9{left:673.350000px;}
.x1b{left:686.490000px;}
.x20{left:707.190000px;}
.x21{left:773.250000px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lse{letter-spacing:-0.688000pt;}
.ls14{letter-spacing:-0.592000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls20{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.198400pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033280pt;}
.ls15{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.133120pt;}
.ls12{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.456533pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.592000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.736000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.821333pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls21{letter-spacing:12.960000pt;}
.ls1f{letter-spacing:14.672640pt;}
.lsc{letter-spacing:37.072640pt;}
.ls1c{letter-spacing:40.912640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.101333pt;}
.ws4{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.081600pt;}
.wsf{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.688000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1e{margin-left:-1.889280pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.054080pt;}
._1a{width:1.962240pt;}
._8{width:2.865493pt;}
._9{width:4.143360pt;}
._a{width:5.124480pt;}
._10{width:6.293120pt;}
._15{width:7.185920pt;}
._b{width:8.242773pt;}
._7{width:9.859200pt;}
._6{width:10.889600pt;}
._11{width:12.013440pt;}
._16{width:14.543360pt;}
._1b{width:15.756587pt;}
._5{width:16.679680pt;}
._f{width:18.326400pt;}
._17{width:19.601280pt;}
._12{width:20.778240pt;}
._1c{width:21.968000pt;}
._1d{width:23.191253pt;}
._e{width:24.116480pt;}
._d{width:25.072640pt;}
._19{width:26.135040pt;}
._3{width:30.126507pt;}
._14{width:31.720960pt;}
._13{width:32.670080pt;}
._2b{width:38.565120pt;}
._2c{width:40.551893pt;}
._4{width:42.474880pt;}
._18{width:46.533120pt;}
._21{width:49.348480pt;}
._22{width:50.343893pt;}
._2d{width:51.863680pt;}
._25{width:52.854400pt;}
._2a{width:54.086613pt;}
._26{width:74.907520pt;}
._27{width:75.855360pt;}
._24{width:79.332907pt;}
._23{width:80.423680pt;}
._28{width:82.867200pt;}
._29{width:83.929600pt;}
._c{width:94.299307pt;}
._20{width:97.417387pt;}
._1f{width:98.911787pt;}
._1{width:977.696000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.y3b{bottom:5.120000pt;}
.yfd{bottom:5.280000pt;}
.yef{bottom:6.400000pt;}
.y7{bottom:7.200000pt;}
.yed{bottom:8.960000pt;}
.y39{bottom:9.760000pt;}
.y4e{bottom:22.720000pt;}
.y11a{bottom:22.746667pt;}
.y38{bottom:27.360000pt;}
.y6{bottom:32.000000pt;}
.y4d{bottom:40.320000pt;}
.y37{bottom:45.120000pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.y4c{bottom:58.080000pt;}
.y36{bottom:62.720000pt;}
.y4{bottom:72.640000pt;}
.y4b{bottom:75.680000pt;}
.y86{bottom:76.992000pt;}
.y23{bottom:77.952000pt;}
.yb8{bottom:78.592000pt;}
.yea{bottom:80.192000pt;}
.y35{bottom:80.320000pt;}
.y14e{bottom:82.272000pt;}
.yaf{bottom:84.992000pt;}
.ya6{bottom:86.592000pt;}
.y118{bottom:86.752000pt;}
.y4a{bottom:93.280000pt;}
.y85{bottom:94.592000pt;}
.y22{bottom:95.712000pt;}
.yb7{bottom:96.192000pt;}
.y9{bottom:96.506667pt;}
.ye9{bottom:97.792000pt;}
.y34{bottom:97.920000pt;}
.y14d{bottom:99.872000pt;}
.yae{bottom:102.592000pt;}
.ya5{bottom:104.192000pt;}
.y117{bottom:104.512000pt;}
.y3{bottom:104.986667pt;}
.y49{bottom:110.880000pt;}
.y84{bottom:112.192000pt;}
.y21{bottom:113.312000pt;}
.yb6{bottom:113.792000pt;}
.ye8{bottom:115.392000pt;}
.y33{bottom:115.520000pt;}
.y8{bottom:116.026667pt;}
.y14c{bottom:117.472000pt;}
.yad{bottom:120.192000pt;}
.ya4{bottom:121.792000pt;}
.y116{bottom:122.112000pt;}
.y48{bottom:128.480000pt;}
.y83{bottom:129.792000pt;}
.y20{bottom:130.912000pt;}
.yb5{bottom:131.392000pt;}
.ye7{bottom:133.152000pt;}
.y32{bottom:133.280000pt;}
.y14b{bottom:135.226667pt;}
.yac{bottom:137.786667pt;}
.ya3{bottom:139.386667pt;}
.y115{bottom:139.706667pt;}
.y47{bottom:146.240000pt;}
.y82{bottom:147.386667pt;}
.y1f{bottom:148.506667pt;}
.yb4{bottom:149.146667pt;}
.ye6{bottom:150.746667pt;}
.y31{bottom:150.880000pt;}
.y14a{bottom:152.826667pt;}
.yab{bottom:155.386667pt;}
.ya2{bottom:157.146667pt;}
.y114{bottom:157.306667pt;}
.y46{bottom:163.866667pt;}
.y81{bottom:165.146667pt;}
.y1e{bottom:166.106667pt;}
.ye5{bottom:168.346667pt;}
.y30{bottom:168.506667pt;}
.y149{bottom:170.426667pt;}
.yaa{bottom:173.146667pt;}
.ya1{bottom:174.746667pt;}
.y113{bottom:174.906667pt;}
.y45{bottom:181.466667pt;}
.y80{bottom:182.746667pt;}
.y1d{bottom:183.866667pt;}
.ye4{bottom:185.946667pt;}
.y2f{bottom:186.106667pt;}
.y148{bottom:188.026667pt;}
.ya9{bottom:190.746667pt;}
.ya0{bottom:192.346667pt;}
.y112{bottom:192.666667pt;}
.y44{bottom:199.066667pt;}
.y7f{bottom:200.346667pt;}
.y1c{bottom:201.466667pt;}
.ye3{bottom:203.546667pt;}
.y2e{bottom:203.706667pt;}
.y147{bottom:205.626667pt;}
.ya8{bottom:208.346667pt;}
.y9f{bottom:209.946667pt;}
.y111{bottom:210.266667pt;}
.y43{bottom:216.666667pt;}
.y7e{bottom:217.946667pt;}
.y1b{bottom:219.066667pt;}
.y2d{bottom:221.466667pt;}
.y146{bottom:223.386667pt;}
.ya7{bottom:225.946667pt;}
.y9e{bottom:227.546667pt;}
.y110{bottom:227.866667pt;}
.ye2{bottom:229.306667pt;}
.y42{bottom:234.426667pt;}
.y1a{bottom:236.666667pt;}
.y2c{bottom:239.066667pt;}
.y145{bottom:240.986667pt;}
.y7d{bottom:243.546667pt;}
.y9d{bottom:245.306667pt;}
.y10f{bottom:245.466667pt;}
.ye1{bottom:246.906667pt;}
.y41{bottom:252.026667pt;}
.y19{bottom:254.266667pt;}
.y2b{bottom:256.666667pt;}
.y144{bottom:258.586667pt;}
.y7c{bottom:261.306667pt;}
.y9c{bottom:262.906667pt;}
.y10e{bottom:263.066667pt;}
.ye0{bottom:264.506667pt;}
.y40{bottom:269.626667pt;}
.y18{bottom:272.026667pt;}
.y2a{bottom:274.266667pt;}
.y143{bottom:276.186667pt;}
.y7b{bottom:278.906667pt;}
.y9b{bottom:280.506667pt;}
.y10d{bottom:280.826667pt;}
.ydf{bottom:282.106667pt;}
.y3f{bottom:287.226667pt;}
.y17{bottom:289.626667pt;}
.y29{bottom:291.866667pt;}
.y142{bottom:293.786667pt;}
.y7a{bottom:296.506667pt;}
.y9a{bottom:298.106667pt;}
.y10c{bottom:298.426667pt;}
.yde{bottom:299.746667pt;}
.y3e{bottom:304.826667pt;}
.y16{bottom:307.266667pt;}
.y28{bottom:309.626667pt;}
.y141{bottom:311.586667pt;}
.y79{bottom:314.146667pt;}
.y99{bottom:315.746667pt;}
.y10b{bottom:316.066667pt;}
.ydd{bottom:317.506667pt;}
.y3d{bottom:322.586667pt;}
.y15{bottom:324.866667pt;}
.y27{bottom:327.226667pt;}
.y140{bottom:329.186667pt;}
.y78{bottom:331.746667pt;}
.y98{bottom:333.506667pt;}
.y10a{bottom:333.666667pt;}
.ydc{bottom:335.106667pt;}
.y3c{bottom:340.186667pt;}
.y14{bottom:342.466667pt;}
.y26{bottom:344.826667pt;}
.y13f{bottom:346.786667pt;}
.y77{bottom:349.506667pt;}
.y97{bottom:351.106667pt;}
.y109{bottom:351.266667pt;}
.ydb{bottom:352.706667pt;}
.y13{bottom:360.226667pt;}
.y25{bottom:362.426667pt;}
.y13e{bottom:364.386667pt;}
.y76{bottom:367.106667pt;}
.y96{bottom:368.706667pt;}
.y108{bottom:369.026667pt;}
.yda{bottom:370.306667pt;}
.y24{bottom:377.346667pt;}
.y13d{bottom:381.986667pt;}
.y75{bottom:384.706667pt;}
.y95{bottom:386.306667pt;}
.y107{bottom:386.626667pt;}
.yd9{bottom:387.906667pt;}
.y13c{bottom:399.746667pt;}
.y74{bottom:402.306667pt;}
.y94{bottom:403.906667pt;}
.y106{bottom:404.226667pt;}
.yd8{bottom:413.666667pt;}
.y13b{bottom:417.346667pt;}
.y73{bottom:419.906667pt;}
.y93{bottom:421.666667pt;}
.y105{bottom:421.826667pt;}
.yd7{bottom:431.266667pt;}
.y13a{bottom:434.946667pt;}
.y72{bottom:437.666667pt;}
.y92{bottom:439.266667pt;}
.y104{bottom:439.426667pt;}
.yd6{bottom:448.866667pt;}
.y139{bottom:452.546667pt;}
.y71{bottom:455.266667pt;}
.yb3{bottom:456.866667pt;}
.y103{bottom:457.186667pt;}
.y91{bottom:464.866667pt;}
.yd5{bottom:466.466667pt;}
.y138{bottom:470.146667pt;}
.y70{bottom:472.866667pt;}
.yb2{bottom:474.466667pt;}
.y102{bottom:474.786667pt;}
.y90{bottom:482.466667pt;}
.yd4{bottom:484.066667pt;}
.y137{bottom:487.906667pt;}
.y6f{bottom:490.466667pt;}
.yb1{bottom:492.066667pt;}
.y101{bottom:492.386667pt;}
.y8f{bottom:500.066667pt;}
.yd3{bottom:501.826667pt;}
.y136{bottom:505.506667pt;}
.yfe{bottom:507.586667pt;}
.y6e{bottom:508.066667pt;}
.yb0{bottom:509.826667pt;}
.y8e{bottom:517.826667pt;}
.yd2{bottom:519.426667pt;}
.y135{bottom:523.106667pt;}
.y100{bottom:525.186667pt;}
.y6d{bottom:525.826667pt;}
.y8d{bottom:535.426667pt;}
.yd1{bottom:537.053333pt;}
.y134{bottom:540.733333pt;}
.yff{bottom:542.813333pt;}
.y6c{bottom:543.453333pt;}
.y8c{bottom:553.053333pt;}
.yd0{bottom:554.653333pt;}
.y133{bottom:558.333333pt;}
.yfc{bottom:560.413333pt;}
.y6b{bottom:561.053333pt;}
.y8b{bottom:570.653333pt;}
.ycf{bottom:572.253333pt;}
.y132{bottom:576.093333pt;}
.y6a{bottom:578.653333pt;}
.yfb{bottom:583.293333pt;}
.y8a{bottom:588.253333pt;}
.yce{bottom:590.013333pt;}
.y131{bottom:593.693333pt;}
.y69{bottom:596.253333pt;}
.yfa{bottom:600.893333pt;}
.y89{bottom:606.013333pt;}
.ycd{bottom:607.613333pt;}
.y130{bottom:611.293333pt;}
.y68{bottom:614.013333pt;}
.yf9{bottom:618.493333pt;}
.y88{bottom:623.613333pt;}
.y12f{bottom:628.893333pt;}
.y67{bottom:631.613333pt;}
.ycc{bottom:633.213333pt;}
.yf8{bottom:636.093333pt;}
.y87{bottom:641.213333pt;}
.y12e{bottom:646.493333pt;}
.y66{bottom:649.213333pt;}
.ycb{bottom:650.813333pt;}
.yf7{bottom:653.853333pt;}
.y12d{bottom:664.253333pt;}
.y65{bottom:666.813333pt;}
.yca{bottom:668.413333pt;}
.yf6{bottom:671.453333pt;}
.y12c{bottom:681.853333pt;}
.y64{bottom:684.413333pt;}
.yc9{bottom:686.173333pt;}
.yf5{bottom:689.053333pt;}
.y12b{bottom:699.453333pt;}
.y63{bottom:702.173333pt;}
.yc8{bottom:703.773333pt;}
.yf4{bottom:706.653333pt;}
.y12a{bottom:717.053333pt;}
.y62{bottom:719.773333pt;}
.yc7{bottom:721.373333pt;}
.yf3{bottom:724.253333pt;}
.y3a{bottom:734.653333pt;}
.y61{bottom:737.373333pt;}
.yc6{bottom:738.973333pt;}
.yf2{bottom:742.013333pt;}
.y129{bottom:752.413333pt;}
.y60{bottom:754.973333pt;}
.yc5{bottom:756.573333pt;}
.yf1{bottom:759.613333pt;}
.y12{bottom:763.133333pt;}
.y128{bottom:770.013333pt;}
.y5f{bottom:772.573333pt;}
.yc4{bottom:774.373333pt;}
.yf0{bottom:777.253333pt;}
.y11{bottom:782.053333pt;}
.y127{bottom:787.653333pt;}
.yee{bottom:789.733333pt;}
.y5e{bottom:790.373333pt;}
.yc3{bottom:791.973333pt;}
.y10{bottom:800.133333pt;}
.y126{bottom:805.253333pt;}
.y5d{bottom:807.973333pt;}
.yec{bottom:808.613333pt;}
.yc2{bottom:817.573333pt;}
.yf{bottom:819.013333pt;}
.y125{bottom:822.853333pt;}
.y5c{bottom:825.573333pt;}
.yc1{bottom:835.173333pt;}
.ye{bottom:839.973333pt;}
.y124{bottom:840.613333pt;}
.y5b{bottom:843.173333pt;}
.yc0{bottom:852.773333pt;}
.y123{bottom:858.213333pt;}
.y5a{bottom:860.773333pt;}
.yd{bottom:868.133333pt;}
.ybf{bottom:870.533333pt;}
.y122{bottom:875.813333pt;}
.y59{bottom:878.533333pt;}
.ybe{bottom:888.133333pt;}
.y121{bottom:893.413333pt;}
.y58{bottom:896.133333pt;}
.yc{bottom:896.293333pt;}
.ybd{bottom:905.733333pt;}
.y11c{bottom:908.613333pt;}
.y57{bottom:913.733333pt;}
.ya{bottom:919.653333pt;}
.ybc{bottom:923.333333pt;}
.y120{bottom:926.213333pt;}
.y56{bottom:931.333333pt;}
.y1{bottom:935.333333pt;}
.ybb{bottom:940.933333pt;}
.y11f{bottom:943.813333pt;}
.y55{bottom:948.933333pt;}
.yba{bottom:958.693333pt;}
.y11e{bottom:961.413333pt;}
.y54{bottom:966.693333pt;}
.yb9{bottom:976.293333pt;}
.y11d{bottom:979.173333pt;}
.y53{bottom:984.293333pt;}
.yeb{bottom:993.893333pt;}
.y119{bottom:996.773333pt;}
.y52{bottom:1001.893333pt;}
.y11b{bottom:1014.400000pt;}
.y51{bottom:1019.520000pt;}
.y50{bottom:1037.120000pt;}
.y4f{bottom:1062.880000pt;}
.hc{height:17.600000pt;}
.h17{height:17.632000pt;}
.h15{height:17.760000pt;}
.h14{height:18.880000pt;}
.h13{height:21.440000pt;}
.h18{height:35.232000pt;}
.hf{height:38.413438pt;}
.ha{height:52.134375pt;}
.he{height:52.478750pt;}
.h16{height:52.832000pt;}
.h1a{height:52.990313pt;}
.h8{height:53.535000pt;}
.h12{height:54.598989pt;}
.h6{height:57.787500pt;}
.h10{height:58.563750pt;}
.h9{height:59.340000pt;}
.h5{height:62.812500pt;}
.h11{height:63.656250pt;}
.h3{height:65.531250pt;}
.h7{height:85.785000pt;}
.h19{height:88.160000pt;}
.h4{height:93.387187pt;}
.h2{height:139.226667pt;}
.hd{height:352.666667pt;}
.hb{height:374.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:39.072000pt;}
.wd{width:39.872000pt;}
.w8{width:47.360000pt;}
.w14{width:48.960000pt;}
.w9{width:51.200000pt;}
.w1a{width:52.000000pt;}
.w10{width:54.080000pt;}
.w19{width:58.720000pt;}
.w1c{width:66.112000pt;}
.wa{width:67.552000pt;}
.w12{width:84.032000pt;}
.w15{width:84.640000pt;}
.w13{width:96.000000pt;}
.w1b{width:113.440000pt;}
.w2{width:113.472000pt;}
.w11{width:120.032000pt;}
.wb{width:123.520000pt;}
.wf{width:130.432000pt;}
.we{width:133.600000pt;}
.w4{width:139.680000pt;}
.w18{width:155.226667pt;}
.w17{width:179.546667pt;}
.wc{width:194.586667pt;}
.w1e{width:200.346667pt;}
.w16{width:239.426667pt;}
.w6{width:253.826667pt;}
.w7{width:439.586667pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:4.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:40.800000pt;}
.xa{left:47.999988pt;}
.x24{left:51.359988pt;}
.x1d{left:54.400000pt;}
.xd{left:71.999988pt;}
.x16{left:88.032000pt;}
.xf{left:91.232000pt;}
.x23{left:93.472000pt;}
.xe{left:96.031988pt;}
.x7{left:98.120000pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x1c{left:136.986667pt;}
.x11{left:138.586667pt;}
.x3{left:154.266667pt;}
.xc{left:175.066655pt;}
.x12{left:189.786667pt;}
.x17{left:221.626667pt;}
.x13{left:257.186667pt;}
.x1e{left:293.826667pt;}
.xb{left:305.346667pt;}
.x18{left:352.066667pt;}
.x14{left:380.706667pt;}
.x19{left:406.146667pt;}
.x22{left:407.266667pt;}
.x1f{left:473.373333pt;}
.x1a{left:526.173333pt;}
.x15{left:575.293333pt;}
.x9{left:598.533333pt;}
.x1b{left:610.213333pt;}
.x20{left:628.613333pt;}
.x21{left:687.333333pt;}
}




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