
    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_9758510c59bae3a8722825a5.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_339caad22331f27326854f04.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b8a73d2f41ebd67708846c03.woff')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_295acb8acde073f551da3b77.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5f336d02c59ebc0ee08db62b.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.103800px;}
.ls3{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.139800px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:10.170000px;}
.lsf{letter-spacing:25.308000px;}
.ls5{letter-spacing:36.926640px;}
.ls4{letter-spacing:41.148000px;}
.lsd{letter-spacing:43.766640px;}
.lse{letter-spacing:52.308000px;}
.lsb{letter-spacing:63.566640px;}
.ls2{letter-spacing:706.890000px;}
.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;}
}
.ws5{word-spacing:-60.120000px;}
.ws3{word-spacing:-16.650000px;}
.ws0{word-spacing:-15.030000px;}
.ws4{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.073800px;}
.ws1{word-spacing:-11.970000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.037880px;}
._e{width:2.945880px;}
._8{width:4.509000px;}
._5{width:5.831640px;}
._c{width:7.334640px;}
._1a{width:8.597160px;}
._1b{width:9.799560px;}
._9{width:11.603160px;}
._7{width:12.685320px;}
._6{width:13.767480px;}
._15{width:14.850000px;}
._d{width:16.172280px;}
._10{width:17.194320px;}
._f{width:18.697320px;}
._13{width:20.631600px;}
._11{width:22.244400px;}
._19{width:23.466960px;}
._a{width:24.528960px;}
._b{width:25.731360px;}
._1c{width:26.857800px;}
._12{width:28.076040px;}
._29{width:29.338560px;}
._1d{width:31.262400px;}
._1e{width:32.284440px;}
._1f{width:33.987960px;}
._16{width:35.046000px;}
._27{width:36.051840px;}
._2a{width:37.895760px;}
._18{width:39.258360px;}
._14{width:40.662000px;}
._20{width:41.963760px;}
._21{width:43.025040px;}
._32{width:44.034120px;}
._2e{width:45.050760px;}
._2f{width:46.713240px;}
._2d{width:48.035880px;}
._2b{width:49.118040px;}
._22{width:50.440680px;}
._28{width:51.763320px;}
._17{width:52.812000px;}
._23{width:56.867040px;}
._24{width:57.975120px;}
._25{width:58.977720px;}
._26{width:60.120000px;}
._2c{width:61.983720px;}
._33{width:70.578000px;}
._2{width:130.455480px;}
._1{width:341.548680px;}
._30{width:394.308000px;}
._4{width:772.148400px;}
._31{width:913.626000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y3d{bottom:2.880000px;}
.y3f{bottom:2.970000px;}
.y16{bottom:3.240000px;}
.y16b{bottom:4.050000px;}
.y34{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.yb2{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.yb4{bottom:16.500000px;}
.y3c{bottom:18.450000px;}
.y32{bottom:19.350000px;}
.y3b{bottom:33.930000px;}
.y170{bottom:33.960000px;}
.y168{bottom:34.020000px;}
.y7{bottom:35.550000px;}
.y31{bottom:35.730000px;}
.y3a{bottom:49.500000px;}
.y16f{bottom:49.530000px;}
.y30{bottom:51.300000px;}
.y3{bottom:58.140000px;}
.y39{bottom:64.980000px;}
.y16e{bottom:65.010000px;}
.y167{bottom:65.070000px;}
.y2f{bottom:66.780000px;}
.y38{bottom:80.550000px;}
.y16d{bottom:80.580000px;}
.y2e{bottom:82.380000px;}
.y37{bottom:96.030000px;}
.y16c{bottom:96.060000px;}
.y2d{bottom:97.860000px;}
.y29{bottom:99.630000px;}
.y3e{bottom:106.200000px;}
.y137{bottom:111.150000px;}
.y36{bottom:111.600000px;}
.y46{bottom:112.410000px;}
.y2c{bottom:113.430000px;}
.ye5{bottom:116.010000px;}
.y28{bottom:116.820000px;}
.y164{bottom:120.060000px;}
.y7e{bottom:124.020000px;}
.y136{bottom:126.720000px;}
.yae{bottom:127.260000px;}
.y2b{bottom:128.910000px;}
.y45{bottom:129.600000px;}
.ye4{bottom:133.290000px;}
.y27{bottom:134.100000px;}
.y16a{bottom:134.820000px;}
.yfe{bottom:139.770000px;}
.y7d{bottom:141.210000px;}
.y135{bottom:142.200000px;}
.yad{bottom:144.450000px;}
.y44{bottom:146.880000px;}
.ye3{bottom:150.570000px;}
.y26{bottom:151.380000px;}
.yfd{bottom:157.080000px;}
.y134{bottom:157.800000px;}
.y7c{bottom:158.520000px;}
.yac{bottom:161.760000px;}
.y43{bottom:164.190000px;}
.ye2{bottom:167.790000px;}
.y25{bottom:168.570000px;}
.y133{bottom:173.280000px;}
.yfc{bottom:175.350000px;}
.y7b{bottom:175.800000px;}
.yab{bottom:179.040000px;}
.y42{bottom:181.380000px;}
.ye1{bottom:185.070000px;}
.y24{bottom:185.850000px;}
.y132{bottom:188.850000px;}
.yfb{bottom:192.630000px;}
.y7a{bottom:192.990000px;}
.yaa{bottom:196.230000px;}
.y41{bottom:198.660000px;}
.ye0{bottom:202.260000px;}
.y23{bottom:203.040000px;}
.y131{bottom:204.330000px;}
.y79{bottom:210.270000px;}
.yfa{bottom:210.900000px;}
.ya9{bottom:213.510000px;}
.y40{bottom:215.580000px;}
.ydf{bottom:219.540000px;}
.y130{bottom:219.900000px;}
.y22{bottom:220.320000px;}
.y78{bottom:227.460000px;}
.yf9{bottom:228.180000px;}
.y17{bottom:228.900000px;}
.ya8{bottom:231.870000px;}
.y12f{bottom:235.380000px;}
.yde{bottom:236.820000px;}
.y21{bottom:237.600000px;}
.y169{bottom:244.200000px;}
.y77{bottom:244.740000px;}
.yf8{bottom:246.540000px;}
.ya7{bottom:249.060000px;}
.y12e{bottom:250.950000px;}
.ydd{bottom:254.010000px;}
.y20{bottom:254.790000px;}
.y166{bottom:260.490000px;}
.y76{bottom:262.020000px;}
.yf7{bottom:263.730000px;}
.ya6{bottom:266.340000px;}
.y12d{bottom:266.430000px;}
.ydc{bottom:271.290000px;}
.y1f{bottom:272.070000px;}
.y75{bottom:279.210000px;}
.yf6{bottom:281.010000px;}
.y12c{bottom:282.000000px;}
.ya5{bottom:284.610000px;}
.ydb{bottom:288.570000px;}
.y1e{bottom:289.350000px;}
.y74{bottom:296.490000px;}
.y12b{bottom:297.480000px;}
.yf5{bottom:298.290000px;}
.ya4{bottom:301.890000px;}
.yda{bottom:305.760000px;}
.y1d{bottom:306.540000px;}
.y12a{bottom:313.050000px;}
.y73{bottom:313.770000px;}
.yf4{bottom:316.560000px;}
.ya3{bottom:319.170000px;}
.yd9{bottom:323.040000px;}
.y1c{bottom:323.820000px;}
.y129{bottom:328.530000px;}
.y72{bottom:330.960000px;}
.yf3{bottom:333.840000px;}
.ya2{bottom:336.360000px;}
.y165{bottom:338.880000px;}
.yd8{bottom:340.320000px;}
.y1b{bottom:341.100000px;}
.y128{bottom:344.100000px;}
.y71{bottom:348.240000px;}
.y35{bottom:348.510000px;}
.yf2{bottom:352.200000px;}
.ya1{bottom:353.640000px;}
.yd7{bottom:357.510000px;}
.y1a{bottom:358.320000px;}
.y127{bottom:359.580000px;}
.y70{bottom:365.520000px;}
.yf1{bottom:369.390000px;}
.y163{bottom:370.920000px;}
.ya0{bottom:372.000000px;}
.yd6{bottom:374.790000px;}
.y126{bottom:375.150000px;}
.y19{bottom:375.600000px;}
.y6f{bottom:382.710000px;}
.yf0{bottom:387.750000px;}
.y162{bottom:387.930000px;}
.y9f{bottom:389.190000px;}
.y125{bottom:390.630000px;}
.yd5{bottom:392.070000px;}
.y18{bottom:392.880000px;}
.y6e{bottom:399.990000px;}
.yef{bottom:404.940000px;}
.y9e{bottom:406.470000px;}
.y161{bottom:406.560000px;}
.yd4{bottom:409.260000px;}
.y6d{bottom:417.270000px;}
.y160{bottom:422.130000px;}
.yee{bottom:422.220000px;}
.y124{bottom:423.750000px;}
.y9d{bottom:424.830000px;}
.yd3{bottom:426.540000px;}
.y6c{bottom:434.460000px;}
.y15f{bottom:437.610000px;}
.yed{bottom:439.500000px;}
.y123{bottom:440.940000px;}
.y9c{bottom:442.020000px;}
.yd2{bottom:443.820000px;}
.y6b{bottom:451.740000px;}
.y15e{bottom:453.180000px;}
.yec{bottom:457.770000px;}
.y122{bottom:458.220000px;}
.y9b{bottom:459.300000px;}
.yd1{bottom:461.010000px;}
.y15d{bottom:468.660000px;}
.y6a{bottom:469.020000px;}
.y33{bottom:473.430000px;}
.yeb{bottom:475.050000px;}
.y121{bottom:475.500000px;}
.y9a{bottom:477.660000px;}
.yd0{bottom:478.290000px;}
.y15c{bottom:484.230000px;}
.y69{bottom:486.210000px;}
.y120{bottom:492.690000px;}
.yea{bottom:493.410000px;}
.y2a{bottom:494.220000px;}
.y99{bottom:494.850000px;}
.ycf{bottom:495.570000px;}
.y15b{bottom:499.710000px;}
.y68{bottom:503.490000px;}
.y11f{bottom:509.970000px;}
.ye9{bottom:510.600000px;}
.y98{bottom:512.130000px;}
.yce{bottom:512.760000px;}
.y15a{bottom:515.280000px;}
.y67{bottom:520.770000px;}
.y11e{bottom:527.250000px;}
.ye8{bottom:528.960000px;}
.y97{bottom:529.320000px;}
.ycd{bottom:530.040000px;}
.y159{bottom:530.760000px;}
.y66{bottom:537.960000px;}
.y11d{bottom:544.440000px;}
.ye7{bottom:546.240000px;}
.ycc{bottom:547.320000px;}
.y96{bottom:547.680000px;}
.y65{bottom:555.240000px;}
.y11c{bottom:561.720000px;}
.y158{bottom:561.810000px;}
.ye6{bottom:563.430000px;}
.ycb{bottom:564.510000px;}
.y95{bottom:564.960000px;}
.y64{bottom:572.430000px;}
.y157{bottom:577.320000px;}
.y11b{bottom:579.030000px;}
.yca{bottom:581.820000px;}
.y94{bottom:582.180000px;}
.y63{bottom:589.740000px;}
.y156{bottom:592.890000px;}
.y11a{bottom:596.220000px;}
.yc9{bottom:599.010000px;}
.y93{bottom:600.540000px;}
.y62{bottom:607.020000px;}
.y155{bottom:608.370000px;}
.y119{bottom:613.500000px;}
.yc8{bottom:616.290000px;}
.y92{bottom:617.820000px;}
.y154{bottom:623.940000px;}
.y61{bottom:624.210000px;}
.y118{bottom:630.690000px;}
.yc7{bottom:633.570000px;}
.y91{bottom:636.090000px;}
.y15{bottom:636.540000px;}
.y153{bottom:639.420000px;}
.y60{bottom:641.490000px;}
.y117{bottom:647.970000px;}
.yc6{bottom:650.760000px;}
.y90{bottom:653.370000px;}
.y152{bottom:654.990000px;}
.y5f{bottom:658.770000px;}
.y116{bottom:665.250000px;}
.yc5{bottom:668.040000px;}
.y151{bottom:670.470000px;}
.y8f{bottom:670.650000px;}
.y14{bottom:671.100000px;}
.y5e{bottom:675.960000px;}
.y115{bottom:683.520000px;}
.yc4{bottom:685.320000px;}
.y150{bottom:686.040000px;}
.y8e{bottom:687.840000px;}
.y13{bottom:690.990000px;}
.y5d{bottom:693.240000px;}
.y114{bottom:700.800000px;}
.y14f{bottom:701.520000px;}
.yc3{bottom:702.510000px;}
.y8d{bottom:706.200000px;}
.y5c{bottom:710.520000px;}
.y14e{bottom:717.090000px;}
.y113{bottom:719.160000px;}
.yc2{bottom:719.790000px;}
.y8c{bottom:723.390000px;}
.y12{bottom:726.540000px;}
.y5b{bottom:727.710000px;}
.y14d{bottom:732.570000px;}
.y112{bottom:736.350000px;}
.yc1{bottom:737.070000px;}
.y11{bottom:738.420000px;}
.y8b{bottom:740.670000px;}
.y5a{bottom:744.990000px;}
.y14c{bottom:748.140000px;}
.yc0{bottom:754.260000px;}
.y111{bottom:754.710000px;}
.y10{bottom:755.970000px;}
.y8a{bottom:757.950000px;}
.y59{bottom:762.270000px;}
.y14b{bottom:763.620000px;}
.ybf{bottom:771.540000px;}
.y110{bottom:771.990000px;}
.y89{bottom:775.140000px;}
.yf{bottom:777.210000px;}
.y14a{bottom:779.190000px;}
.y58{bottom:779.460000px;}
.ybe{bottom:788.820000px;}
.y10f{bottom:789.180000px;}
.y88{bottom:793.500000px;}
.y149{bottom:794.670000px;}
.y57{bottom:796.740000px;}
.ybd{bottom:806.010000px;}
.y10e{bottom:807.540000px;}
.ye{bottom:808.260000px;}
.y148{bottom:810.240000px;}
.y87{bottom:810.780000px;}
.y56{bottom:814.020000px;}
.ybc{bottom:823.290000px;}
.y10d{bottom:824.730000px;}
.y147{bottom:825.720000px;}
.y86{bottom:827.970000px;}
.y55{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.ybb{bottom:840.570000px;}
.y146{bottom:841.290000px;}
.y10c{bottom:842.010000px;}
.y85{bottom:845.250000px;}
.y54{bottom:848.490000px;}
.y145{bottom:856.770000px;}
.yba{bottom:857.760000px;}
.y10b{bottom:859.290000px;}
.y84{bottom:863.610000px;}
.y53{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y144{bottom:872.340000px;}
.yb9{bottom:875.040000px;}
.y10a{bottom:877.560000px;}
.y83{bottom:880.800000px;}
.y52{bottom:882.960000px;}
.y143{bottom:887.820000px;}
.yb8{bottom:892.320000px;}
.y109{bottom:894.840000px;}
.y82{bottom:898.080000px;}
.y51{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y142{bottom:903.390000px;}
.yb7{bottom:909.510000px;}
.y108{bottom:913.200000px;}
.y81{bottom:916.440000px;}
.y50{bottom:917.430000px;}
.y141{bottom:918.870000px;}
.yb6{bottom:924.270000px;}
.ya{bottom:930.210000px;}
.y107{bottom:930.390000px;}
.y80{bottom:933.630000px;}
.y140{bottom:934.440000px;}
.y4f{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.y106{bottom:948.750000px;}
.y13f{bottom:949.920000px;}
.y7f{bottom:950.910000px;}
.y4e{bottom:951.990000px;}
.yb5{bottom:952.620000px;}
.y13e{bottom:965.490000px;}
.y105{bottom:966.030000px;}
.y4d{bottom:969.180000px;}
.yb3{bottom:980.970000px;}
.y104{bottom:984.300000px;}
.y4c{bottom:986.460000px;}
.y13d{bottom:996.570000px;}
.y103{bottom:1001.610000px;}
.y4b{bottom:1003.770000px;}
.yb1{bottom:1009.350000px;}
.y13c{bottom:1012.050000px;}
.y102{bottom:1019.880000px;}
.y4a{bottom:1020.960000px;}
.y13b{bottom:1027.620000px;}
.y101{bottom:1037.160000px;}
.yaf{bottom:1037.700000px;}
.y49{bottom:1038.240000px;}
.y13a{bottom:1043.100000px;}
.y100{bottom:1054.440000px;}
.y48{bottom:1055.520000px;}
.y139{bottom:1058.670000px;}
.yff{bottom:1071.630000px;}
.y47{bottom:1072.710000px;}
.y138{bottom:1074.150000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1b{height:13.770000px;}
.h1f{height:15.570000px;}
.h10{height:17.190000px;}
.h15{height:19.980000px;}
.h3{height:27.630000px;}
.h1c{height:27.660000px;}
.hd{height:29.409961px;}
.h5{height:33.431836px;}
.h17{height:37.705078px;}
.h18{height:38.100586px;}
.h6{height:39.082324px;}
.h1d{height:39.313477px;}
.h13{height:39.999023px;}
.h4{height:41.978320px;}
.hf{height:42.418652px;}
.h1a{height:43.769004px;}
.h14{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.hc{height:48.027656px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hb{height:53.838457px;}
.h1e{height:65.526152px;}
.he{height:75.410156px;}
.ha{height:76.201172px;}
.h20{height:77.670000px;}
.h21{height:108.660000px;}
.h19{height:118.800000px;}
.h16{height:124.200000px;}
.h12{height:141.510000px;}
.h7{height:153.930000px;}
.h11{height:406.830000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w8{width:42.840000px;}
.w9{width:52.380000px;}
.wb{width:52.470000px;}
.wa{width:73.650000px;}
.we{width:75.960000px;}
.wc{width:177.870000px;}
.w7{width:208.290000px;}
.w6{width:220.350000px;}
.wf{width:302.790000px;}
.wd{width:379.560000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.660000px;}
.x3{left:8.640000px;}
.x27{left:10.620000px;}
.x26{left:12.600000px;}
.x28{left:14.940000px;}
.x1c{left:17.370000px;}
.x10{left:20.160000px;}
.x1f{left:22.140000px;}
.x25{left:23.220000px;}
.x21{left:24.570000px;}
.x14{left:27.630000px;}
.x24{left:32.490000px;}
.x12{left:34.110000px;}
.x13{left:36.090000px;}
.xd{left:44.189986px;}
.x6{left:45.540000px;}
.x1a{left:52.320000px;}
.x2{left:53.999986px;}
.x9{left:55.349986px;}
.xa{left:56.879986px;}
.x16{left:59.669986px;}
.x1{left:60.749986px;}
.x29{left:63.540000px;}
.x15{left:65.429986px;}
.x2a{left:81.480000px;}
.x2c{left:83.969986px;}
.x2b{left:88.199986px;}
.x31{left:96.570000px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.x30{left:121.680000px;}
.xe{left:180.389986px;}
.xb{left:265.439986px;}
.x1b{left:309.270000px;}
.x1d{left:352.830000px;}
.x1e{left:406.020000px;}
.x8{left:459.029986px;}
.xc{left:464.159986px;}
.x2d{left:475.529986px;}
.x17{left:478.229986px;}
.x18{left:479.759986px;}
.x2f{left:487.770000px;}
.x2e{left:502.529986px;}
.x19{left:506.759986px;}
.x20{left:533.580000px;}
.x32{left:564.540000px;}
.x22{left:586.770000px;}
.x23{left:639.960000px;}
.xf{left:642.210000px;}
.x7{left:812.430000px;}
@media print{
.v4{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.092267pt;}
.ls3{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.124267pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:9.040000pt;}
.lsf{letter-spacing:22.496000pt;}
.ls5{letter-spacing:32.823680pt;}
.ls4{letter-spacing:36.576000pt;}
.lsd{letter-spacing:38.903680pt;}
.lse{letter-spacing:46.496000pt;}
.lsb{letter-spacing:56.503680pt;}
.ls2{letter-spacing:628.346667pt;}
.ws5{word-spacing:-53.440000pt;}
.ws3{word-spacing:-14.800000pt;}
.ws0{word-spacing:-13.360000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.732267pt;}
.ws1{word-spacing:-10.640000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.922560pt;}
._e{width:2.618560pt;}
._8{width:4.008000pt;}
._5{width:5.183680pt;}
._c{width:6.519680pt;}
._1a{width:7.641920pt;}
._1b{width:8.710720pt;}
._9{width:10.313920pt;}
._7{width:11.275840pt;}
._6{width:12.237760pt;}
._15{width:13.200000pt;}
._d{width:14.375360pt;}
._10{width:15.283840pt;}
._f{width:16.619840pt;}
._13{width:18.339200pt;}
._11{width:19.772800pt;}
._19{width:20.859520pt;}
._a{width:21.803520pt;}
._b{width:22.872320pt;}
._1c{width:23.873600pt;}
._12{width:24.956480pt;}
._29{width:26.078720pt;}
._1d{width:27.788800pt;}
._1e{width:28.697280pt;}
._1f{width:30.211520pt;}
._16{width:31.152000pt;}
._27{width:32.046080pt;}
._2a{width:33.685120pt;}
._18{width:34.896320pt;}
._14{width:36.144000pt;}
._20{width:37.301120pt;}
._21{width:38.244480pt;}
._32{width:39.141440pt;}
._2e{width:40.045120pt;}
._2f{width:41.522880pt;}
._2d{width:42.698560pt;}
._2b{width:43.660480pt;}
._22{width:44.836160pt;}
._28{width:46.011840pt;}
._17{width:46.944000pt;}
._23{width:50.548480pt;}
._24{width:51.533440pt;}
._25{width:52.424640pt;}
._26{width:53.440000pt;}
._2c{width:55.096640pt;}
._33{width:62.736000pt;}
._2{width:115.960427pt;}
._1{width:303.598827pt;}
._30{width:350.496000pt;}
._4{width:686.354133pt;}
._31{width:812.112000pt;}
.fs3{font-size:26.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y3d{bottom:2.560000pt;}
.y3f{bottom:2.640000pt;}
.y16{bottom:2.880000pt;}
.y16b{bottom:3.600000pt;}
.y34{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.yb2{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.yb4{bottom:14.666667pt;}
.y3c{bottom:16.400000pt;}
.y32{bottom:17.200000pt;}
.y3b{bottom:30.160000pt;}
.y170{bottom:30.186667pt;}
.y168{bottom:30.240000pt;}
.y7{bottom:31.600000pt;}
.y31{bottom:31.760000pt;}
.y3a{bottom:44.000000pt;}
.y16f{bottom:44.026667pt;}
.y30{bottom:45.600000pt;}
.y3{bottom:51.680000pt;}
.y39{bottom:57.760000pt;}
.y16e{bottom:57.786667pt;}
.y167{bottom:57.840000pt;}
.y2f{bottom:59.360000pt;}
.y38{bottom:71.600000pt;}
.y16d{bottom:71.626667pt;}
.y2e{bottom:73.226667pt;}
.y37{bottom:85.360000pt;}
.y16c{bottom:85.386667pt;}
.y2d{bottom:86.986667pt;}
.y29{bottom:88.560000pt;}
.y3e{bottom:94.400000pt;}
.y137{bottom:98.800000pt;}
.y36{bottom:99.200000pt;}
.y46{bottom:99.920000pt;}
.y2c{bottom:100.826667pt;}
.ye5{bottom:103.120000pt;}
.y28{bottom:103.840000pt;}
.y164{bottom:106.720000pt;}
.y7e{bottom:110.240000pt;}
.y136{bottom:112.640000pt;}
.yae{bottom:113.120000pt;}
.y2b{bottom:114.586667pt;}
.y45{bottom:115.200000pt;}
.ye4{bottom:118.480000pt;}
.y27{bottom:119.200000pt;}
.y16a{bottom:119.840000pt;}
.yfe{bottom:124.240000pt;}
.y7d{bottom:125.520000pt;}
.y135{bottom:126.400000pt;}
.yad{bottom:128.400000pt;}
.y44{bottom:130.560000pt;}
.ye3{bottom:133.840000pt;}
.y26{bottom:134.560000pt;}
.yfd{bottom:139.626667pt;}
.y134{bottom:140.266667pt;}
.y7c{bottom:140.906667pt;}
.yac{bottom:143.786667pt;}
.y43{bottom:145.946667pt;}
.ye2{bottom:149.146667pt;}
.y25{bottom:149.840000pt;}
.y133{bottom:154.026667pt;}
.yfc{bottom:155.866667pt;}
.y7b{bottom:156.266667pt;}
.yab{bottom:159.146667pt;}
.y42{bottom:161.226667pt;}
.ye1{bottom:164.506667pt;}
.y24{bottom:165.200000pt;}
.y132{bottom:167.866667pt;}
.yfb{bottom:171.226667pt;}
.y7a{bottom:171.546667pt;}
.yaa{bottom:174.426667pt;}
.y41{bottom:176.586667pt;}
.ye0{bottom:179.786667pt;}
.y23{bottom:180.480000pt;}
.y131{bottom:181.626667pt;}
.y79{bottom:186.906667pt;}
.yfa{bottom:187.466667pt;}
.ya9{bottom:189.786667pt;}
.y40{bottom:191.626667pt;}
.ydf{bottom:195.146667pt;}
.y130{bottom:195.466667pt;}
.y22{bottom:195.840000pt;}
.y78{bottom:202.186667pt;}
.yf9{bottom:202.826667pt;}
.y17{bottom:203.466667pt;}
.ya8{bottom:206.106667pt;}
.y12f{bottom:209.226667pt;}
.yde{bottom:210.506667pt;}
.y21{bottom:211.200000pt;}
.y169{bottom:217.066667pt;}
.y77{bottom:217.546667pt;}
.yf8{bottom:219.146667pt;}
.ya7{bottom:221.386667pt;}
.y12e{bottom:223.066667pt;}
.ydd{bottom:225.786667pt;}
.y20{bottom:226.480000pt;}
.y166{bottom:231.546667pt;}
.y76{bottom:232.906667pt;}
.yf7{bottom:234.426667pt;}
.ya6{bottom:236.746667pt;}
.y12d{bottom:236.826667pt;}
.ydc{bottom:241.146667pt;}
.y1f{bottom:241.840000pt;}
.y75{bottom:248.186667pt;}
.yf6{bottom:249.786667pt;}
.y12c{bottom:250.666667pt;}
.ya5{bottom:252.986667pt;}
.ydb{bottom:256.506667pt;}
.y1e{bottom:257.200000pt;}
.y74{bottom:263.546667pt;}
.y12b{bottom:264.426667pt;}
.yf5{bottom:265.146667pt;}
.ya4{bottom:268.346667pt;}
.yda{bottom:271.786667pt;}
.y1d{bottom:272.480000pt;}
.y12a{bottom:278.266667pt;}
.y73{bottom:278.906667pt;}
.yf4{bottom:281.386667pt;}
.ya3{bottom:283.706667pt;}
.yd9{bottom:287.146667pt;}
.y1c{bottom:287.840000pt;}
.y129{bottom:292.026667pt;}
.y72{bottom:294.186667pt;}
.yf3{bottom:296.746667pt;}
.ya2{bottom:298.986667pt;}
.y165{bottom:301.226667pt;}
.yd8{bottom:302.506667pt;}
.y1b{bottom:303.200000pt;}
.y128{bottom:305.866667pt;}
.y71{bottom:309.546667pt;}
.y35{bottom:309.786667pt;}
.yf2{bottom:313.066667pt;}
.ya1{bottom:314.346667pt;}
.yd7{bottom:317.786667pt;}
.y1a{bottom:318.506667pt;}
.y127{bottom:319.626667pt;}
.y70{bottom:324.906667pt;}
.yf1{bottom:328.346667pt;}
.y163{bottom:329.706667pt;}
.ya0{bottom:330.666667pt;}
.yd6{bottom:333.146667pt;}
.y126{bottom:333.466667pt;}
.y19{bottom:333.866667pt;}
.y6f{bottom:340.186667pt;}
.yf0{bottom:344.666667pt;}
.y162{bottom:344.826667pt;}
.y9f{bottom:345.946667pt;}
.y125{bottom:347.226667pt;}
.yd5{bottom:348.506667pt;}
.y18{bottom:349.226667pt;}
.y6e{bottom:355.546667pt;}
.yef{bottom:359.946667pt;}
.y9e{bottom:361.306667pt;}
.y161{bottom:361.386667pt;}
.yd4{bottom:363.786667pt;}
.y6d{bottom:370.906667pt;}
.y160{bottom:375.226667pt;}
.yee{bottom:375.306667pt;}
.y124{bottom:376.666667pt;}
.y9d{bottom:377.626667pt;}
.yd3{bottom:379.146667pt;}
.y6c{bottom:386.186667pt;}
.y15f{bottom:388.986667pt;}
.yed{bottom:390.666667pt;}
.y123{bottom:391.946667pt;}
.y9c{bottom:392.906667pt;}
.yd2{bottom:394.506667pt;}
.y6b{bottom:401.546667pt;}
.y15e{bottom:402.826667pt;}
.yec{bottom:406.906667pt;}
.y122{bottom:407.306667pt;}
.y9b{bottom:408.266667pt;}
.yd1{bottom:409.786667pt;}
.y15d{bottom:416.586667pt;}
.y6a{bottom:416.906667pt;}
.y33{bottom:420.826667pt;}
.yeb{bottom:422.266667pt;}
.y121{bottom:422.666667pt;}
.y9a{bottom:424.586667pt;}
.yd0{bottom:425.146667pt;}
.y15c{bottom:430.426667pt;}
.y69{bottom:432.186667pt;}
.y120{bottom:437.946667pt;}
.yea{bottom:438.586667pt;}
.y2a{bottom:439.306667pt;}
.y99{bottom:439.866667pt;}
.ycf{bottom:440.506667pt;}
.y15b{bottom:444.186667pt;}
.y68{bottom:447.546667pt;}
.y11f{bottom:453.306667pt;}
.ye9{bottom:453.866667pt;}
.y98{bottom:455.226667pt;}
.yce{bottom:455.786667pt;}
.y15a{bottom:458.026667pt;}
.y67{bottom:462.906667pt;}
.y11e{bottom:468.666667pt;}
.ye8{bottom:470.186667pt;}
.y97{bottom:470.506667pt;}
.ycd{bottom:471.146667pt;}
.y159{bottom:471.786667pt;}
.y66{bottom:478.186667pt;}
.y11d{bottom:483.946667pt;}
.ye7{bottom:485.546667pt;}
.ycc{bottom:486.506667pt;}
.y96{bottom:486.826667pt;}
.y65{bottom:493.546667pt;}
.y11c{bottom:499.306667pt;}
.y158{bottom:499.386667pt;}
.ye6{bottom:500.826667pt;}
.ycb{bottom:501.786667pt;}
.y95{bottom:502.186667pt;}
.y64{bottom:508.826667pt;}
.y157{bottom:513.173333pt;}
.y11b{bottom:514.693333pt;}
.yca{bottom:517.173333pt;}
.y94{bottom:517.493333pt;}
.y63{bottom:524.213333pt;}
.y156{bottom:527.013333pt;}
.y11a{bottom:529.973333pt;}
.yc9{bottom:532.453333pt;}
.y93{bottom:533.813333pt;}
.y62{bottom:539.573333pt;}
.y155{bottom:540.773333pt;}
.y119{bottom:545.333333pt;}
.yc8{bottom:547.813333pt;}
.y92{bottom:549.173333pt;}
.y154{bottom:554.613333pt;}
.y61{bottom:554.853333pt;}
.y118{bottom:560.613333pt;}
.yc7{bottom:563.173333pt;}
.y91{bottom:565.413333pt;}
.y15{bottom:565.813333pt;}
.y153{bottom:568.373333pt;}
.y60{bottom:570.213333pt;}
.y117{bottom:575.973333pt;}
.yc6{bottom:578.453333pt;}
.y90{bottom:580.773333pt;}
.y152{bottom:582.213333pt;}
.y5f{bottom:585.573333pt;}
.y116{bottom:591.333333pt;}
.yc5{bottom:593.813333pt;}
.y151{bottom:595.973333pt;}
.y8f{bottom:596.133333pt;}
.y14{bottom:596.533333pt;}
.y5e{bottom:600.853333pt;}
.y115{bottom:607.573333pt;}
.yc4{bottom:609.173333pt;}
.y150{bottom:609.813333pt;}
.y8e{bottom:611.413333pt;}
.y13{bottom:614.213333pt;}
.y5d{bottom:616.213333pt;}
.y114{bottom:622.933333pt;}
.y14f{bottom:623.573333pt;}
.yc3{bottom:624.453333pt;}
.y8d{bottom:627.733333pt;}
.y5c{bottom:631.573333pt;}
.y14e{bottom:637.413333pt;}
.y113{bottom:639.253333pt;}
.yc2{bottom:639.813333pt;}
.y8c{bottom:643.013333pt;}
.y12{bottom:645.813333pt;}
.y5b{bottom:646.853333pt;}
.y14d{bottom:651.173333pt;}
.y112{bottom:654.533333pt;}
.yc1{bottom:655.173333pt;}
.y11{bottom:656.373333pt;}
.y8b{bottom:658.373333pt;}
.y5a{bottom:662.213333pt;}
.y14c{bottom:665.013333pt;}
.yc0{bottom:670.453333pt;}
.y111{bottom:670.853333pt;}
.y10{bottom:671.973333pt;}
.y8a{bottom:673.733333pt;}
.y59{bottom:677.573333pt;}
.y14b{bottom:678.773333pt;}
.ybf{bottom:685.813333pt;}
.y110{bottom:686.213333pt;}
.y89{bottom:689.013333pt;}
.yf{bottom:690.853333pt;}
.y14a{bottom:692.613333pt;}
.y58{bottom:692.853333pt;}
.ybe{bottom:701.173333pt;}
.y10f{bottom:701.493333pt;}
.y88{bottom:705.333333pt;}
.y149{bottom:706.373333pt;}
.y57{bottom:708.213333pt;}
.ybd{bottom:716.453333pt;}
.y10e{bottom:717.813333pt;}
.ye{bottom:718.453333pt;}
.y148{bottom:720.213333pt;}
.y87{bottom:720.693333pt;}
.y56{bottom:723.573333pt;}
.ybc{bottom:731.813333pt;}
.y10d{bottom:733.093333pt;}
.y147{bottom:733.973333pt;}
.y86{bottom:735.973333pt;}
.y55{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.ybb{bottom:747.173333pt;}
.y146{bottom:747.813333pt;}
.y10c{bottom:748.453333pt;}
.y85{bottom:751.333333pt;}
.y54{bottom:754.213333pt;}
.y145{bottom:761.573333pt;}
.yba{bottom:762.453333pt;}
.y10b{bottom:763.813333pt;}
.y84{bottom:767.653333pt;}
.y53{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y144{bottom:775.413333pt;}
.yb9{bottom:777.813333pt;}
.y10a{bottom:780.053333pt;}
.y83{bottom:782.933333pt;}
.y52{bottom:784.853333pt;}
.y143{bottom:789.173333pt;}
.yb8{bottom:793.173333pt;}
.y109{bottom:795.413333pt;}
.y82{bottom:798.293333pt;}
.y51{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y142{bottom:803.013333pt;}
.yb7{bottom:808.453333pt;}
.y108{bottom:811.733333pt;}
.y81{bottom:814.613333pt;}
.y50{bottom:815.493333pt;}
.y141{bottom:816.773333pt;}
.yb6{bottom:821.573333pt;}
.ya{bottom:826.853333pt;}
.y107{bottom:827.013333pt;}
.y80{bottom:829.893333pt;}
.y140{bottom:830.613333pt;}
.y4f{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.y106{bottom:843.333333pt;}
.y13f{bottom:844.373333pt;}
.y7f{bottom:845.253333pt;}
.y4e{bottom:846.213333pt;}
.yb5{bottom:846.773333pt;}
.y13e{bottom:858.213333pt;}
.y105{bottom:858.693333pt;}
.y4d{bottom:861.493333pt;}
.yb3{bottom:871.973333pt;}
.y104{bottom:874.933333pt;}
.y4c{bottom:876.853333pt;}
.y13d{bottom:885.840000pt;}
.y103{bottom:890.320000pt;}
.y4b{bottom:892.240000pt;}
.yb1{bottom:897.200000pt;}
.y13c{bottom:899.600000pt;}
.y102{bottom:906.560000pt;}
.y4a{bottom:907.520000pt;}
.y13b{bottom:913.440000pt;}
.y101{bottom:921.920000pt;}
.yaf{bottom:922.400000pt;}
.y49{bottom:922.880000pt;}
.y13a{bottom:927.200000pt;}
.y100{bottom:937.280000pt;}
.y48{bottom:938.240000pt;}
.y139{bottom:941.040000pt;}
.yff{bottom:952.560000pt;}
.y47{bottom:953.520000pt;}
.y138{bottom:954.800000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1b{height:12.240000pt;}
.h1f{height:13.840000pt;}
.h10{height:15.280000pt;}
.h15{height:17.760000pt;}
.h3{height:24.560000pt;}
.h1c{height:24.586667pt;}
.hd{height:26.142187pt;}
.h5{height:29.717188pt;}
.h17{height:33.515625pt;}
.h18{height:33.867188pt;}
.h6{height:34.739844pt;}
.h1d{height:34.945312pt;}
.h13{height:35.554688pt;}
.h4{height:37.314062pt;}
.hf{height:37.705469pt;}
.h1a{height:38.905781pt;}
.h14{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.hc{height:42.691250pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hb{height:47.856406pt;}
.h1e{height:58.245469pt;}
.he{height:67.031250pt;}
.ha{height:67.734375pt;}
.h20{height:69.040000pt;}
.h21{height:96.586667pt;}
.h19{height:105.600000pt;}
.h16{height:110.400000pt;}
.h12{height:125.786667pt;}
.h7{height:136.826667pt;}
.h11{height:361.626667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w8{width:38.080000pt;}
.w9{width:46.560000pt;}
.wb{width:46.640000pt;}
.wa{width:65.466667pt;}
.we{width:67.520000pt;}
.wc{width:158.106667pt;}
.w7{width:185.146667pt;}
.w6{width:195.866667pt;}
.wf{width:269.146667pt;}
.wd{width:337.386667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.920000pt;}
.x3{left:7.680000pt;}
.x27{left:9.440000pt;}
.x26{left:11.200000pt;}
.x28{left:13.280000pt;}
.x1c{left:15.440000pt;}
.x10{left:17.920000pt;}
.x1f{left:19.680000pt;}
.x25{left:20.640000pt;}
.x21{left:21.840000pt;}
.x14{left:24.560000pt;}
.x24{left:28.880000pt;}
.x12{left:30.320000pt;}
.x13{left:32.080000pt;}
.xd{left:39.279988pt;}
.x6{left:40.480000pt;}
.x1a{left:46.506667pt;}
.x2{left:47.999988pt;}
.x9{left:49.199988pt;}
.xa{left:50.559988pt;}
.x16{left:53.039988pt;}
.x1{left:53.999988pt;}
.x29{left:56.480000pt;}
.x15{left:58.159988pt;}
.x2a{left:72.426667pt;}
.x2c{left:74.639988pt;}
.x2b{left:78.399988pt;}
.x31{left:85.840000pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.x30{left:108.160000pt;}
.xe{left:160.346655pt;}
.xb{left:235.946655pt;}
.x1b{left:274.906667pt;}
.x1d{left:313.626667pt;}
.x1e{left:360.906667pt;}
.x8{left:408.026655pt;}
.xc{left:412.586655pt;}
.x2d{left:422.693321pt;}
.x17{left:425.093321pt;}
.x18{left:426.453321pt;}
.x2f{left:433.573333pt;}
.x2e{left:446.693321pt;}
.x19{left:450.453321pt;}
.x20{left:474.293333pt;}
.x32{left:501.813333pt;}
.x22{left:521.573333pt;}
.x23{left:568.853333pt;}
.xf{left:570.853333pt;}
.x7{left:722.160000pt;}
}




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