
    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_43ea4fb3646aee3e84f855ad.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_30f92cb4e83893f559a50fb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_afc3bea607ff262c65c5aa67.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dbaff7e027a592d0fe10b4c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_e13e243f238c16bfc280db74.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.lse{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.lsa{letter-spacing:46.026720px;}
.ls11{letter-spacing:46.170720px;}
.lsc{letter-spacing:64.026720px;}
.ls10{letter-spacing:64.170720px;}
.ls5{letter-spacing:1037.100000px;}
.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:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.000000px;}
.wsb{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-6.372000px;}
._3{margin-left:-1.194720px;}
._0{width:1.048320px;}
._4{width:2.865360px;}
._d{width:3.947280px;}
._a{width:5.465520px;}
._1d{width:6.660720px;}
._6{width:7.975440px;}
._5{width:9.322560px;}
._8{width:10.811520px;}
._7{width:11.832480px;}
._2b{width:12.907440px;}
._17{width:13.927440px;}
._36{width:15.253200px;}
._18{width:16.322400px;}
._10{width:17.496000px;}
._20{width:18.525600px;}
._b{width:19.601280px;}
._c{width:20.618400px;}
._19{width:21.787680px;}
._e{width:23.011200px;}
._9{width:24.110640px;}
._24{width:25.201440px;}
._16{width:26.406000px;}
._15{width:27.918000px;}
._1f{width:29.640480px;}
._1e{width:30.776400px;}
._22{width:31.956960px;}
._29{width:32.959680px;}
._14{width:34.020000px;}
._23{width:35.625600px;}
._2a{width:36.805920px;}
._13{width:38.502000px;}
._32{width:39.551040px;}
._1b{width:40.783680px;}
._1c{width:42.608880px;}
._2c{width:43.647120px;}
._31{width:44.922240px;}
._33{width:46.901520px;}
._21{width:48.047040px;}
._1a{width:49.122720px;}
._26{width:50.855760px;}
._34{width:52.762560px;}
._30{width:54.381600px;}
._2f{width:55.636560px;}
._28{width:58.206240px;}
._27{width:59.461200px;}
._2d{width:62.761680px;}
._2e{width:63.796800px;}
._35{width:67.120320px;}
._12{width:68.208720px;}
._11{width:69.444000px;}
._25{width:78.312960px;}
._1{width:303.471120px;}
._2{width:371.948880px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:5.760000px;}
.fsc{font-size:12.240000px;}
.fs3{font-size:30.240000px;}
.fsb{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs7{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y20{bottom:0.360000px;}
.y7{bottom:2.520000px;}
.y3f{bottom:2.880000px;}
.y41{bottom:3.060000px;}
.y23{bottom:3.240000px;}
.y10{bottom:3.960000px;}
.y24{bottom:4.680000px;}
.y5{bottom:8.460000px;}
.yc1{bottom:8.496000px;}
.y6{bottom:16.380000px;}
.yc2{bottom:16.416000px;}
.y3e{bottom:18.360000px;}
.y164{bottom:18.540000px;}
.y36{bottom:20.565000px;}
.yf{bottom:22.320000px;}
.y49{bottom:32.445000px;}
.ye{bottom:33.120000px;}
.y3d{bottom:33.840000px;}
.y163{bottom:34.020000px;}
.yc3{bottom:35.640000px;}
.y35{bottom:37.665000px;}
.y48{bottom:47.925000px;}
.y8{bottom:49.140000px;}
.y3c{bottom:49.500000px;}
.yd{bottom:51.480000px;}
.y34{bottom:54.945000px;}
.yc0{bottom:59.940000px;}
.y47{bottom:63.585000px;}
.y3b{bottom:64.980000px;}
.y162{bottom:65.160000px;}
.yc{bottom:65.700000px;}
.y33{bottom:72.225000px;}
.y4{bottom:73.476000px;}
.y46{bottom:79.065000px;}
.y3a{bottom:80.490000px;}
.y32{bottom:89.505000px;}
.y45{bottom:94.545000px;}
.y39{bottom:95.970000px;}
.yb{bottom:103.680000px;}
.y11{bottom:103.860000px;}
.y31{bottom:106.785000px;}
.y44{bottom:110.025000px;}
.y38{bottom:111.630000px;}
.y156{bottom:116.316000px;}
.y30{bottom:124.065000px;}
.y43{bottom:125.685000px;}
.yfa{bottom:130.356000px;}
.y52{bottom:133.416000px;}
.y12e{bottom:133.596000px;}
.ya{bottom:136.110000px;}
.y2f{bottom:141.165000px;}
.ybf{bottom:142.776000px;}
.yf9{bottom:147.636000px;}
.y89{bottom:148.176000px;}
.y12d{bottom:150.870000px;}
.y51{bottom:153.570000px;}
.y42{bottom:156.645000px;}
.y2e{bottom:158.445000px;}
.ybe{bottom:159.870000px;}
.yf8{bottom:164.910000px;}
.y88{bottom:165.270000px;}
.y155{bottom:167.970000px;}
.y12c{bottom:168.150000px;}
.y50{bottom:173.730000px;}
.y2d{bottom:175.725000px;}
.ybd{bottom:177.150000px;}
.yf7{bottom:182.190000px;}
.y87{bottom:182.550000px;}
.y154{bottom:185.250000px;}
.y12b{bottom:186.510000px;}
.y2c{bottom:193.005000px;}
.y4f{bottom:193.710000px;}
.ybc{bottom:194.430000px;}
.yf6{bottom:199.470000px;}
.y86{bottom:200.910000px;}
.y153{bottom:202.530000px;}
.y12a{bottom:203.790000px;}
.y2b{bottom:210.285000px;}
.ybb{bottom:211.710000px;}
.y4e{bottom:213.870000px;}
.yf5{bottom:217.650000px;}
.y85{bottom:218.190000px;}
.y152{bottom:219.810000px;}
.y129{bottom:220.890000px;}
.y2a{bottom:227.565000px;}
.yba{bottom:228.990000px;}
.y4d{bottom:234.030000px;}
.yf4{bottom:234.930000px;}
.y84{bottom:235.470000px;}
.y151{bottom:237.090000px;}
.y128{bottom:238.170000px;}
.y29{bottom:244.665000px;}
.yb9{bottom:246.270000px;}
.yf3{bottom:252.210000px;}
.y83{bottom:252.570000px;}
.y4c{bottom:252.930000px;}
.y150{bottom:254.370000px;}
.y127{bottom:255.450000px;}
.y28{bottom:261.945000px;}
.yb8{bottom:263.370000px;}
.yf2{bottom:269.490000px;}
.y82{bottom:269.850000px;}
.y4b{bottom:270.210000px;}
.y14f{bottom:271.470000px;}
.y126{bottom:272.730000px;}
.y27{bottom:279.255000px;}
.yb7{bottom:280.650000px;}
.y4a{bottom:287.490000px;}
.yf1{bottom:287.850000px;}
.y81{bottom:288.210000px;}
.y14e{bottom:288.750000px;}
.y125{bottom:291.090000px;}
.y26{bottom:296.535000px;}
.yb6{bottom:299.010000px;}
.y25{bottom:302.250000px;}
.yf0{bottom:305.130000px;}
.y80{bottom:305.490000px;}
.y14d{bottom:306.030000px;}
.y124{bottom:308.190000px;}
.yb5{bottom:316.290000px;}
.yef{bottom:322.275000px;}
.y7f{bottom:322.815000px;}
.y14c{bottom:323.355000px;}
.y123{bottom:325.515000px;}
.yb4{bottom:333.615000px;}
.yee{bottom:339.555000px;}
.y7e{bottom:340.095000px;}
.y14b{bottom:340.635000px;}
.y122{bottom:342.795000px;}
.yb3{bottom:350.895000px;}
.yed{bottom:356.835000px;}
.y14a{bottom:357.915000px;}
.y7d{bottom:358.275000px;}
.y121{bottom:360.075000px;}
.yb2{bottom:367.995000px;}
.yec{bottom:374.115000px;}
.y149{bottom:375.015000px;}
.y7c{bottom:375.555000px;}
.y120{bottom:378.435000px;}
.yb1{bottom:386.355000px;}
.yeb{bottom:391.395000px;}
.y148{bottom:392.295000px;}
.y7b{bottom:392.835000px;}
.y11f{bottom:395.715000px;}
.yb0{bottom:403.635000px;}
.yea{bottom:408.495000px;}
.y147{bottom:409.575000px;}
.y7a{bottom:411.195000px;}
.y11e{bottom:412.815000px;}
.yaf{bottom:420.915000px;}
.ye9{bottom:426.855000px;}
.y79{bottom:429.555000px;}
.y11d{bottom:430.095000px;}
.yae{bottom:439.275000px;}
.ye8{bottom:444.135000px;}
.y146{bottom:445.395000px;}
.y78{bottom:446.835000px;}
.y11c{bottom:447.375000px;}
.yad{bottom:456.375000px;}
.ye7{bottom:461.415000px;}
.y77{bottom:463.935000px;}
.y11b{bottom:464.655000px;}
.y40{bottom:472.215000px;}
.yac{bottom:473.655000px;}
.ye6{bottom:478.695000px;}
.y76{bottom:481.215000px;}
.y145{bottom:482.655000px;}
.y11a{bottom:483.015000px;}
.y37{bottom:488.595000px;}
.yab{bottom:490.935000px;}
.ye5{bottom:495.975000px;}
.y75{bottom:498.495000px;}
.y119{bottom:500.115000px;}
.y144{bottom:501.195000px;}
.yaa{bottom:508.215000px;}
.ye4{bottom:514.155000px;}
.y74{bottom:515.775000px;}
.y118{bottom:517.395000px;}
.y143{bottom:518.475000px;}
.ya9{bottom:525.495000px;}
.ye3{bottom:531.435000px;}
.y73{bottom:533.055000px;}
.y117{bottom:535.755000px;}
.ya8{bottom:543.855000px;}
.ye2{bottom:548.715000px;}
.y72{bottom:550.155000px;}
.y116{bottom:553.035000px;}
.ya7{bottom:560.955000px;}
.ye1{bottom:565.995000px;}
.y71{bottom:567.435000px;}
.y115{bottom:570.345000px;}
.ya6{bottom:578.265000px;}
.ye0{bottom:583.305000px;}
.y70{bottom:584.745000px;}
.y142{bottom:587.625000px;}
.y114{bottom:588.705000px;}
.ya5{bottom:595.545000px;}
.ydf{bottom:600.585000px;}
.y6f{bottom:602.025000px;}
.y141{bottom:604.725000px;}
.y113{bottom:605.805000px;}
.ya4{bottom:612.825000px;}
.y22{bottom:613.545000px;}
.yde{bottom:618.765000px;}
.y6e{bottom:619.305000px;}
.y140{bottom:622.005000px;}
.y112{bottom:623.085000px;}
.ya3{bottom:630.105000px;}
.ydd{bottom:636.045000px;}
.y6d{bottom:636.585000px;}
.y13f{bottom:639.285000px;}
.y111{bottom:640.365000px;}
.y21{bottom:644.325000px;}
.y1f{bottom:647.205000px;}
.ya2{bottom:647.385000px;}
.y1e{bottom:652.965000px;}
.ydc{bottom:653.325000px;}
.y6c{bottom:653.685000px;}
.y13e{bottom:656.565000px;}
.y110{bottom:657.645000px;}
.ya1{bottom:665.565000px;}
.y1d{bottom:670.245000px;}
.ydb{bottom:670.605000px;}
.y6b{bottom:670.965000px;}
.y13d{bottom:673.845000px;}
.y10f{bottom:674.925000px;}
.ya0{bottom:682.845000px;}
.yda{bottom:687.885000px;}
.y6a{bottom:688.245000px;}
.y1c{bottom:690.045000px;}
.y13c{bottom:691.125000px;}
.y10e{bottom:692.205000px;}
.y9f{bottom:700.125000px;}
.yd9{bottom:704.985000px;}
.y69{bottom:705.525000px;}
.y13b{bottom:708.225000px;}
.y10d{bottom:709.305000px;}
.y9e{bottom:717.405000px;}
.yd8{bottom:722.265000px;}
.y68{bottom:722.805000px;}
.y1b{bottom:723.705000px;}
.y13a{bottom:725.505000px;}
.y10c{bottom:726.585000px;}
.y9d{bottom:734.685000px;}
.y67{bottom:740.085000px;}
.yd7{bottom:740.625000px;}
.y1a{bottom:740.985000px;}
.y139{bottom:742.785000px;}
.y10b{bottom:743.865000px;}
.y9c{bottom:752.865000px;}
.y19{bottom:753.405000px;}
.y66{bottom:757.185000px;}
.yd6{bottom:757.905000px;}
.y138{bottom:760.065000px;}
.y10a{bottom:761.145000px;}
.y9b{bottom:770.145000px;}
.y65{bottom:774.465000px;}
.y18{bottom:774.645000px;}
.yd5{bottom:775.185000px;}
.y137{bottom:777.345000px;}
.y109{bottom:778.425000px;}
.y15f{bottom:782.565000px;}
.y9a{bottom:787.425000px;}
.y64{bottom:791.745000px;}
.yd4{bottom:792.465000px;}
.y136{bottom:794.625000px;}
.y108{bottom:795.525000px;}
.y15e{bottom:799.845000px;}
.y17{bottom:805.605000px;}
.y99{bottom:805.785000px;}
.y63{bottom:809.025000px;}
.yd3{bottom:809.565000px;}
.y135{bottom:811.725000px;}
.y107{bottom:812.805000px;}
.y15d{bottom:817.125000px;}
.y98{bottom:823.110000px;}
.y62{bottom:826.350000px;}
.yd2{bottom:826.890000px;}
.y134{bottom:829.050000px;}
.y106{bottom:830.130000px;}
.y15c{bottom:834.450000px;}
.y16{bottom:836.790000px;}
.y97{bottom:840.390000px;}
.y61{bottom:843.450000px;}
.yd1{bottom:845.250000px;}
.y133{bottom:846.330000px;}
.y105{bottom:847.410000px;}
.y15b{bottom:851.550000px;}
.y96{bottom:857.490000px;}
.y60{bottom:860.730000px;}
.yd0{bottom:862.530000px;}
.y132{bottom:863.610000px;}
.y104{bottom:864.690000px;}
.y161{bottom:866.310000px;}
.y15{bottom:867.750000px;}
.y95{bottom:875.850000px;}
.y5f{bottom:878.010000px;}
.ycf{bottom:879.810000px;}
.y131{bottom:880.890000px;}
.y103{bottom:881.970000px;}
.y94{bottom:893.130000px;}
.y5e{bottom:895.290000px;}
.yce{bottom:896.910000px;}
.y130{bottom:897.990000px;}
.y14{bottom:898.890000px;}
.y102{bottom:899.070000px;}
.y93{bottom:910.410000px;}
.y5d{bottom:912.570000px;}
.ycd{bottom:914.190000px;}
.y12f{bottom:915.270000px;}
.y101{bottom:916.350000px;}
.y13{bottom:927.330000px;}
.y92{bottom:927.690000px;}
.y5c{bottom:929.850000px;}
.ycc{bottom:932.550000px;}
.y100{bottom:933.630000px;}
.y160{bottom:944.790000px;}
.y91{bottom:945.870000px;}
.y5b{bottom:946.950000px;}
.ycb{bottom:949.830000px;}
.yff{bottom:950.910000px;}
.y12{bottom:953.610000px;}
.y9{bottom:955.950000px;}
.y90{bottom:963.150000px;}
.y5a{bottom:964.230000px;}
.yca{bottom:967.110000px;}
.yfe{bottom:968.190000px;}
.y15a{bottom:969.270000px;}
.y8f{bottom:980.430000px;}
.y59{bottom:981.510000px;}
.yc9{bottom:985.470000px;}
.y159{bottom:986.550000px;}
.y8e{bottom:997.710000px;}
.y58{bottom:998.790000px;}
.yc8{bottom:1002.570000px;}
.y158{bottom:1003.650000px;}
.y8d{bottom:1014.990000px;}
.y57{bottom:1016.070000px;}
.yc7{bottom:1019.850000px;}
.y157{bottom:1020.930000px;}
.y8c{bottom:1032.270000px;}
.y56{bottom:1033.350000px;}
.yfd{bottom:1037.130000px;}
.yc6{bottom:1038.210000px;}
.y8b{bottom:1049.370000px;}
.y55{bottom:1050.450000px;}
.yfc{bottom:1054.410000px;}
.yc5{bottom:1055.490000px;}
.y8a{bottom:1066.650000px;}
.y54{bottom:1067.730000px;}
.yfb{bottom:1071.720000px;}
.yc4{bottom:1072.800000px;}
.y53{bottom:1085.040000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.600000px;}
.y1{bottom:1137.600000px;}
.h13{height:1.800000px;}
.h14{height:4.021875px;}
.hf{height:4.064063px;}
.h15{height:8.636133px;}
.h21{height:15.480000px;}
.h1b{height:15.660000px;}
.h16{height:17.280000px;}
.hc{height:21.114844px;}
.ha{height:21.336328px;}
.h12{height:27.147656px;}
.h4{height:27.540000px;}
.h1f{height:27.576000px;}
.h6{height:33.683203px;}
.h1d{height:37.705078px;}
.h17{height:38.100586px;}
.h7{height:39.336328px;}
.h20{height:39.480328px;}
.h1a{height:41.343750px;}
.h5{height:41.726953px;}
.h3{height:42.164648px;}
.h1e{height:43.506914px;}
.h2{height:45.024258px;}
.h1{height:50.800781px;}
.h11{height:53.224453px;}
.h8{height:65.884219px;}
.hd{height:72.147305px;}
.h10{height:76.201172px;}
.h22{height:77.760000px;}
.hb{height:92.965430px;}
.he{height:118.365820px;}
.h19{height:124.236000px;}
.h9{height:143.136000px;}
.h1c{height:169.230000px;}
.h18{height:310.575000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w5{width:165.960000px;}
.w8{width:228.495000px;}
.wa{width:358.275000px;}
.w7{width:592.485000px;}
.w4{width:648.150000px;}
.w9{width:745.350000px;}
.w3{width:745.530000px;}
.w6{width:901.440000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x15{left:3.240000px;}
.x4{left:4.320000px;}
.x22{left:6.839986px;}
.x16{left:8.100000px;}
.x1a{left:43.605000px;}
.x6{left:45.540000px;}
.x17{left:46.800000px;}
.xe{left:52.019986px;}
.x1{left:53.999986px;}
.x1b{left:59.759986px;}
.x1c{left:60.839986px;}
.x19{left:65.025000px;}
.xa{left:70.416000px;}
.x1d{left:87.839986px;}
.x23{left:92.195986px;}
.x26{left:96.840000px;}
.x3{left:99.396000px;}
.x9{left:105.510000px;}
.x2{left:108.035986px;}
.x5{left:134.496000px;}
.xf{left:172.289986px;}
.x8{left:200.190000px;}
.xb{left:231.690000px;}
.x13{left:253.469986px;}
.x12{left:268.229986px;}
.x7{left:324.075000px;}
.x11{left:336.314986px;}
.x10{left:464.294986px;}
.x14{left:466.274986px;}
.x1e{left:486.104986px;}
.x20{left:490.424986px;}
.x1f{left:513.104986px;}
.x21{left:517.424986px;}
.x25{left:527.145000px;}
.x24{left:540.104986px;}
.x18{left:640.005000px;}
.xc{left:693.690000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.lsa{letter-spacing:40.912640pt;}
.ls11{letter-spacing:41.040640pt;}
.lsc{letter-spacing:56.912640pt;}
.ls10{letter-spacing:57.040640pt;}
.ls5{letter-spacing:921.866667pt;}
.ws2{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-5.664000pt;}
._3{margin-left:-1.061973pt;}
._0{width:0.931840pt;}
._4{width:2.546987pt;}
._d{width:3.508693pt;}
._a{width:4.858240pt;}
._1d{width:5.920640pt;}
._6{width:7.089280pt;}
._5{width:8.286720pt;}
._8{width:9.610240pt;}
._7{width:10.517760pt;}
._2b{width:11.473280pt;}
._17{width:12.379947pt;}
._36{width:13.558400pt;}
._18{width:14.508800pt;}
._10{width:15.552000pt;}
._20{width:16.467200pt;}
._b{width:17.423360pt;}
._c{width:18.327467pt;}
._19{width:19.366827pt;}
._e{width:20.454400pt;}
._9{width:21.431680pt;}
._24{width:22.401280pt;}
._16{width:23.472000pt;}
._15{width:24.816000pt;}
._1f{width:26.347093pt;}
._1e{width:27.356800pt;}
._22{width:28.406187pt;}
._29{width:29.297493pt;}
._14{width:30.240000pt;}
._23{width:31.667200pt;}
._2a{width:32.716373pt;}
._13{width:34.224000pt;}
._32{width:35.156480pt;}
._1b{width:36.252160pt;}
._1c{width:37.874560pt;}
._2c{width:38.797440pt;}
._31{width:39.930880pt;}
._33{width:41.690240pt;}
._21{width:42.708480pt;}
._1a{width:43.664640pt;}
._26{width:45.205120pt;}
._34{width:46.900053pt;}
._30{width:48.339200pt;}
._2f{width:49.454720pt;}
._28{width:51.738880pt;}
._27{width:52.854400pt;}
._2d{width:55.788160pt;}
._2e{width:56.708267pt;}
._35{width:59.662507pt;}
._12{width:60.629973pt;}
._11{width:61.728000pt;}
._25{width:69.611520pt;}
._1{width:269.752107pt;}
._2{width:330.621227pt;}
.fs8{font-size:5.120000pt;}
.fsc{font-size:10.880000pt;}
.fs3{font-size:26.880000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs7{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:0.320000pt;}
.y7{bottom:2.240000pt;}
.y3f{bottom:2.560000pt;}
.y41{bottom:2.720000pt;}
.y23{bottom:2.880000pt;}
.y10{bottom:3.520000pt;}
.y24{bottom:4.160000pt;}
.y5{bottom:7.520000pt;}
.yc1{bottom:7.552000pt;}
.y6{bottom:14.560000pt;}
.yc2{bottom:14.592000pt;}
.y3e{bottom:16.320000pt;}
.y164{bottom:16.480000pt;}
.y36{bottom:18.280000pt;}
.yf{bottom:19.840000pt;}
.y49{bottom:28.840000pt;}
.ye{bottom:29.440000pt;}
.y3d{bottom:30.080000pt;}
.y163{bottom:30.240000pt;}
.yc3{bottom:31.680000pt;}
.y35{bottom:33.480000pt;}
.y48{bottom:42.600000pt;}
.y8{bottom:43.680000pt;}
.y3c{bottom:44.000000pt;}
.yd{bottom:45.760000pt;}
.y34{bottom:48.840000pt;}
.yc0{bottom:53.280000pt;}
.y47{bottom:56.520000pt;}
.y3b{bottom:57.760000pt;}
.y162{bottom:57.920000pt;}
.yc{bottom:58.400000pt;}
.y33{bottom:64.200000pt;}
.y4{bottom:65.312000pt;}
.y46{bottom:70.280000pt;}
.y3a{bottom:71.546667pt;}
.y32{bottom:79.560000pt;}
.y45{bottom:84.040000pt;}
.y39{bottom:85.306667pt;}
.yb{bottom:92.160000pt;}
.y11{bottom:92.320000pt;}
.y31{bottom:94.920000pt;}
.y44{bottom:97.800000pt;}
.y38{bottom:99.226667pt;}
.y156{bottom:103.392000pt;}
.y30{bottom:110.280000pt;}
.y43{bottom:111.720000pt;}
.yfa{bottom:115.872000pt;}
.y52{bottom:118.592000pt;}
.y12e{bottom:118.752000pt;}
.ya{bottom:120.986667pt;}
.y2f{bottom:125.480000pt;}
.ybf{bottom:126.912000pt;}
.yf9{bottom:131.232000pt;}
.y89{bottom:131.712000pt;}
.y12d{bottom:134.106667pt;}
.y51{bottom:136.506667pt;}
.y42{bottom:139.240000pt;}
.y2e{bottom:140.840000pt;}
.ybe{bottom:142.106667pt;}
.yf8{bottom:146.586667pt;}
.y88{bottom:146.906667pt;}
.y155{bottom:149.306667pt;}
.y12c{bottom:149.466667pt;}
.y50{bottom:154.426667pt;}
.y2d{bottom:156.200000pt;}
.ybd{bottom:157.466667pt;}
.yf7{bottom:161.946667pt;}
.y87{bottom:162.266667pt;}
.y154{bottom:164.666667pt;}
.y12b{bottom:165.786667pt;}
.y2c{bottom:171.560000pt;}
.y4f{bottom:172.186667pt;}
.ybc{bottom:172.826667pt;}
.yf6{bottom:177.306667pt;}
.y86{bottom:178.586667pt;}
.y153{bottom:180.026667pt;}
.y12a{bottom:181.146667pt;}
.y2b{bottom:186.920000pt;}
.ybb{bottom:188.186667pt;}
.y4e{bottom:190.106667pt;}
.yf5{bottom:193.466667pt;}
.y85{bottom:193.946667pt;}
.y152{bottom:195.386667pt;}
.y129{bottom:196.346667pt;}
.y2a{bottom:202.280000pt;}
.yba{bottom:203.546667pt;}
.y4d{bottom:208.026667pt;}
.yf4{bottom:208.826667pt;}
.y84{bottom:209.306667pt;}
.y151{bottom:210.746667pt;}
.y128{bottom:211.706667pt;}
.y29{bottom:217.480000pt;}
.yb9{bottom:218.906667pt;}
.yf3{bottom:224.186667pt;}
.y83{bottom:224.506667pt;}
.y4c{bottom:224.826667pt;}
.y150{bottom:226.106667pt;}
.y127{bottom:227.066667pt;}
.y28{bottom:232.840000pt;}
.yb8{bottom:234.106667pt;}
.yf2{bottom:239.546667pt;}
.y82{bottom:239.866667pt;}
.y4b{bottom:240.186667pt;}
.y14f{bottom:241.306667pt;}
.y126{bottom:242.426667pt;}
.y27{bottom:248.226667pt;}
.yb7{bottom:249.466667pt;}
.y4a{bottom:255.546667pt;}
.yf1{bottom:255.866667pt;}
.y81{bottom:256.186667pt;}
.y14e{bottom:256.666667pt;}
.y125{bottom:258.746667pt;}
.y26{bottom:263.586667pt;}
.yb6{bottom:265.786667pt;}
.y25{bottom:268.666667pt;}
.yf0{bottom:271.226667pt;}
.y80{bottom:271.546667pt;}
.y14d{bottom:272.026667pt;}
.y124{bottom:273.946667pt;}
.yb5{bottom:281.146667pt;}
.yef{bottom:286.466667pt;}
.y7f{bottom:286.946667pt;}
.y14c{bottom:287.426667pt;}
.y123{bottom:289.346667pt;}
.yb4{bottom:296.546667pt;}
.yee{bottom:301.826667pt;}
.y7e{bottom:302.306667pt;}
.y14b{bottom:302.786667pt;}
.y122{bottom:304.706667pt;}
.yb3{bottom:311.906667pt;}
.yed{bottom:317.186667pt;}
.y14a{bottom:318.146667pt;}
.y7d{bottom:318.466667pt;}
.y121{bottom:320.066667pt;}
.yb2{bottom:327.106667pt;}
.yec{bottom:332.546667pt;}
.y149{bottom:333.346667pt;}
.y7c{bottom:333.826667pt;}
.y120{bottom:336.386667pt;}
.yb1{bottom:343.426667pt;}
.yeb{bottom:347.906667pt;}
.y148{bottom:348.706667pt;}
.y7b{bottom:349.186667pt;}
.y11f{bottom:351.746667pt;}
.yb0{bottom:358.786667pt;}
.yea{bottom:363.106667pt;}
.y147{bottom:364.066667pt;}
.y7a{bottom:365.506667pt;}
.y11e{bottom:366.946667pt;}
.yaf{bottom:374.146667pt;}
.ye9{bottom:379.426667pt;}
.y79{bottom:381.826667pt;}
.y11d{bottom:382.306667pt;}
.yae{bottom:390.466667pt;}
.ye8{bottom:394.786667pt;}
.y146{bottom:395.906667pt;}
.y78{bottom:397.186667pt;}
.y11c{bottom:397.666667pt;}
.yad{bottom:405.666667pt;}
.ye7{bottom:410.146667pt;}
.y77{bottom:412.386667pt;}
.y11b{bottom:413.026667pt;}
.y40{bottom:419.746667pt;}
.yac{bottom:421.026667pt;}
.ye6{bottom:425.506667pt;}
.y76{bottom:427.746667pt;}
.y145{bottom:429.026667pt;}
.y11a{bottom:429.346667pt;}
.y37{bottom:434.306667pt;}
.yab{bottom:436.386667pt;}
.ye5{bottom:440.866667pt;}
.y75{bottom:443.106667pt;}
.y119{bottom:444.546667pt;}
.y144{bottom:445.506667pt;}
.yaa{bottom:451.746667pt;}
.ye4{bottom:457.026667pt;}
.y74{bottom:458.466667pt;}
.y118{bottom:459.906667pt;}
.y143{bottom:460.866667pt;}
.ya9{bottom:467.106667pt;}
.ye3{bottom:472.386667pt;}
.y73{bottom:473.826667pt;}
.y117{bottom:476.226667pt;}
.ya8{bottom:483.426667pt;}
.ye2{bottom:487.746667pt;}
.y72{bottom:489.026667pt;}
.y116{bottom:491.586667pt;}
.ya7{bottom:498.626667pt;}
.ye1{bottom:503.106667pt;}
.y71{bottom:504.386667pt;}
.y115{bottom:506.973333pt;}
.ya6{bottom:514.013333pt;}
.ye0{bottom:518.493333pt;}
.y70{bottom:519.773333pt;}
.y142{bottom:522.333333pt;}
.y114{bottom:523.293333pt;}
.ya5{bottom:529.373333pt;}
.ydf{bottom:533.853333pt;}
.y6f{bottom:535.133333pt;}
.y141{bottom:537.533333pt;}
.y113{bottom:538.493333pt;}
.ya4{bottom:544.733333pt;}
.y22{bottom:545.373333pt;}
.yde{bottom:550.013333pt;}
.y6e{bottom:550.493333pt;}
.y140{bottom:552.893333pt;}
.y112{bottom:553.853333pt;}
.ya3{bottom:560.093333pt;}
.ydd{bottom:565.373333pt;}
.y6d{bottom:565.853333pt;}
.y13f{bottom:568.253333pt;}
.y111{bottom:569.213333pt;}
.y21{bottom:572.733333pt;}
.y1f{bottom:575.293333pt;}
.ya2{bottom:575.453333pt;}
.y1e{bottom:580.413333pt;}
.ydc{bottom:580.733333pt;}
.y6c{bottom:581.053333pt;}
.y13e{bottom:583.613333pt;}
.y110{bottom:584.573333pt;}
.ya1{bottom:591.613333pt;}
.y1d{bottom:595.773333pt;}
.ydb{bottom:596.093333pt;}
.y6b{bottom:596.413333pt;}
.y13d{bottom:598.973333pt;}
.y10f{bottom:599.933333pt;}
.ya0{bottom:606.973333pt;}
.yda{bottom:611.453333pt;}
.y6a{bottom:611.773333pt;}
.y1c{bottom:613.373333pt;}
.y13c{bottom:614.333333pt;}
.y10e{bottom:615.293333pt;}
.y9f{bottom:622.333333pt;}
.yd9{bottom:626.653333pt;}
.y69{bottom:627.133333pt;}
.y13b{bottom:629.533333pt;}
.y10d{bottom:630.493333pt;}
.y9e{bottom:637.693333pt;}
.yd8{bottom:642.013333pt;}
.y68{bottom:642.493333pt;}
.y1b{bottom:643.293333pt;}
.y13a{bottom:644.893333pt;}
.y10c{bottom:645.853333pt;}
.y9d{bottom:653.053333pt;}
.y67{bottom:657.853333pt;}
.yd7{bottom:658.333333pt;}
.y1a{bottom:658.653333pt;}
.y139{bottom:660.253333pt;}
.y10b{bottom:661.213333pt;}
.y9c{bottom:669.213333pt;}
.y19{bottom:669.693333pt;}
.y66{bottom:673.053333pt;}
.yd6{bottom:673.693333pt;}
.y138{bottom:675.613333pt;}
.y10a{bottom:676.573333pt;}
.y9b{bottom:684.573333pt;}
.y65{bottom:688.413333pt;}
.y18{bottom:688.573333pt;}
.yd5{bottom:689.053333pt;}
.y137{bottom:690.973333pt;}
.y109{bottom:691.933333pt;}
.y15f{bottom:695.613333pt;}
.y9a{bottom:699.933333pt;}
.y64{bottom:703.773333pt;}
.yd4{bottom:704.413333pt;}
.y136{bottom:706.333333pt;}
.y108{bottom:707.133333pt;}
.y15e{bottom:710.973333pt;}
.y17{bottom:716.093333pt;}
.y99{bottom:716.253333pt;}
.y63{bottom:719.133333pt;}
.yd3{bottom:719.613333pt;}
.y135{bottom:721.533333pt;}
.y107{bottom:722.493333pt;}
.y15d{bottom:726.333333pt;}
.y98{bottom:731.653333pt;}
.y62{bottom:734.533333pt;}
.yd2{bottom:735.013333pt;}
.y134{bottom:736.933333pt;}
.y106{bottom:737.893333pt;}
.y15c{bottom:741.733333pt;}
.y16{bottom:743.813333pt;}
.y97{bottom:747.013333pt;}
.y61{bottom:749.733333pt;}
.yd1{bottom:751.333333pt;}
.y133{bottom:752.293333pt;}
.y105{bottom:753.253333pt;}
.y15b{bottom:756.933333pt;}
.y96{bottom:762.213333pt;}
.y60{bottom:765.093333pt;}
.yd0{bottom:766.693333pt;}
.y132{bottom:767.653333pt;}
.y104{bottom:768.613333pt;}
.y161{bottom:770.053333pt;}
.y15{bottom:771.333333pt;}
.y95{bottom:778.533333pt;}
.y5f{bottom:780.453333pt;}
.ycf{bottom:782.053333pt;}
.y131{bottom:783.013333pt;}
.y103{bottom:783.973333pt;}
.y94{bottom:793.893333pt;}
.y5e{bottom:795.813333pt;}
.yce{bottom:797.253333pt;}
.y130{bottom:798.213333pt;}
.y14{bottom:799.013333pt;}
.y102{bottom:799.173333pt;}
.y93{bottom:809.253333pt;}
.y5d{bottom:811.173333pt;}
.ycd{bottom:812.613333pt;}
.y12f{bottom:813.573333pt;}
.y101{bottom:814.533333pt;}
.y13{bottom:824.293333pt;}
.y92{bottom:824.613333pt;}
.y5c{bottom:826.533333pt;}
.ycc{bottom:828.933333pt;}
.y100{bottom:829.893333pt;}
.y160{bottom:839.813333pt;}
.y91{bottom:840.773333pt;}
.y5b{bottom:841.733333pt;}
.ycb{bottom:844.293333pt;}
.yff{bottom:845.253333pt;}
.y12{bottom:847.653333pt;}
.y9{bottom:849.733333pt;}
.y90{bottom:856.133333pt;}
.y5a{bottom:857.093333pt;}
.yca{bottom:859.653333pt;}
.yfe{bottom:860.613333pt;}
.y15a{bottom:861.573333pt;}
.y8f{bottom:871.493333pt;}
.y59{bottom:872.453333pt;}
.yc9{bottom:875.973333pt;}
.y159{bottom:876.933333pt;}
.y8e{bottom:886.853333pt;}
.y58{bottom:887.813333pt;}
.yc8{bottom:891.173333pt;}
.y158{bottom:892.133333pt;}
.y8d{bottom:902.213333pt;}
.y57{bottom:903.173333pt;}
.yc7{bottom:906.533333pt;}
.y157{bottom:907.493333pt;}
.y8c{bottom:917.573333pt;}
.y56{bottom:918.533333pt;}
.yfd{bottom:921.893333pt;}
.yc6{bottom:922.853333pt;}
.y8b{bottom:932.773333pt;}
.y55{bottom:933.733333pt;}
.yfc{bottom:937.253333pt;}
.yc5{bottom:938.213333pt;}
.y8a{bottom:948.133333pt;}
.y54{bottom:949.093333pt;}
.yfb{bottom:952.640000pt;}
.yc4{bottom:953.600000pt;}
.y53{bottom:964.480000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.200000pt;}
.y1{bottom:1011.200000pt;}
.h13{height:1.600000pt;}
.h14{height:3.575000pt;}
.hf{height:3.612500pt;}
.h15{height:7.676562pt;}
.h21{height:13.760000pt;}
.h1b{height:13.920000pt;}
.h16{height:15.360000pt;}
.hc{height:18.768750pt;}
.ha{height:18.965625pt;}
.h12{height:24.131250pt;}
.h4{height:24.480000pt;}
.h1f{height:24.512000pt;}
.h6{height:29.940625pt;}
.h1d{height:33.515625pt;}
.h17{height:33.867188pt;}
.h7{height:34.965625pt;}
.h20{height:35.093625pt;}
.h1a{height:36.750000pt;}
.h5{height:37.090625pt;}
.h3{height:37.479688pt;}
.h1e{height:38.672812pt;}
.h2{height:40.021563pt;}
.h1{height:45.156250pt;}
.h11{height:47.310625pt;}
.h8{height:58.563750pt;}
.hd{height:64.130938pt;}
.h10{height:67.734375pt;}
.h22{height:69.120000pt;}
.hb{height:82.635937pt;}
.he{height:105.214062pt;}
.h19{height:110.432000pt;}
.h9{height:127.232000pt;}
.h1c{height:150.426667pt;}
.h18{height:276.066667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w5{width:147.520000pt;}
.w8{width:203.106667pt;}
.wa{width:318.466667pt;}
.w7{width:526.653333pt;}
.w4{width:576.133333pt;}
.w9{width:662.533333pt;}
.w3{width:662.693333pt;}
.w6{width:801.280000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x15{left:2.880000pt;}
.x4{left:3.840000pt;}
.x22{left:6.079988pt;}
.x16{left:7.200000pt;}
.x1a{left:38.760000pt;}
.x6{left:40.480000pt;}
.x17{left:41.600000pt;}
.xe{left:46.239988pt;}
.x1{left:47.999988pt;}
.x1b{left:53.119988pt;}
.x1c{left:54.079988pt;}
.x19{left:57.800000pt;}
.xa{left:62.592000pt;}
.x1d{left:78.079988pt;}
.x23{left:81.951988pt;}
.x26{left:86.080000pt;}
.x3{left:88.352000pt;}
.x9{left:93.786667pt;}
.x2{left:96.031988pt;}
.x5{left:119.552000pt;}
.xf{left:153.146655pt;}
.x8{left:177.946667pt;}
.xb{left:205.946667pt;}
.x13{left:225.306655pt;}
.x12{left:238.426655pt;}
.x7{left:288.066667pt;}
.x11{left:298.946655pt;}
.x10{left:412.706655pt;}
.x14{left:414.466655pt;}
.x1e{left:432.093321pt;}
.x20{left:435.933321pt;}
.x1f{left:456.093321pt;}
.x21{left:459.933321pt;}
.x25{left:468.573333pt;}
.x24{left:480.093321pt;}
.x18{left:568.893333pt;}
.xc{left:616.613333pt;}
}




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