
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_ceb653fad29abf4652142fe3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_95ebca85434e36b6e954ec72.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;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: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_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751953;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1383d7adadfdd3d7cb58a391.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.161760px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:21.546720px;}
.lsf{letter-spacing:24.426720px;}
.ls4{letter-spacing:37.566720px;}
.lsd{letter-spacing:38.106720px;}
.ls10{letter-spacing:41.706720px;}
.ls2{letter-spacing:42.048000px;}
.ls12{letter-spacing:44.586720px;}
.ls6{letter-spacing:46.026720px;}
.lsc{letter-spacing:54.666720px;}
.ls18{letter-spacing:64.170720px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws4{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.300000px;}
.wse{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.140000px;}
.wsa{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.878800px;}
.wsb{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._22{margin-left:-2.556000px;}
._4{margin-left:-1.179600px;}
._1{width:1.135440px;}
._6{width:2.484000px;}
._7{width:3.724560px;}
._c{width:5.022000px;}
._f{width:6.370560px;}
._8{width:7.884000px;}
._9{width:8.910000px;}
._e{width:10.044000px;}
._d{width:11.232000px;}
._1b{width:12.788640px;}
._b{width:14.563200px;}
._a{width:15.606000px;}
._17{width:17.151600px;}
._18{width:18.645120px;}
._1c{width:20.076720px;}
._14{width:21.600000px;}
._13{width:22.680000px;}
._1a{width:24.546720px;}
._19{width:26.082480px;}
._23{width:27.907920px;}
._20{width:29.162880px;}
._21{width:30.214080px;}
._1e{width:34.601040px;}
._1d{width:36.006000px;}
._12{width:37.152000px;}
._1f{width:42.250320px;}
._16{width:48.861600px;}
._15{width:50.220000px;}
._11{width:55.710000px;}
._10{width:56.808000px;}
._24{width:57.907440px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._5{width:897.951120px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y77{bottom:2.520000px;}
.yab{bottom:2.550000px;}
.y9{bottom:2.556000px;}
.y37{bottom:2.880000px;}
.y17{bottom:3.240000px;}
.y2f{bottom:5.940000px;}
.y7{bottom:8.496000px;}
.y35{bottom:9.540000px;}
.ydd{bottom:9.900000px;}
.yc{bottom:14.040000px;}
.y76{bottom:16.380000px;}
.y8{bottom:16.416000px;}
.y2d{bottom:19.440000px;}
.y12f{bottom:20.385000px;}
.y129{bottom:20.520000px;}
.y34{bottom:25.200000px;}
.y10f{bottom:30.060000px;}
.y2c{bottom:35.820000px;}
.y128{bottom:37.620000px;}
.y12e{bottom:37.665000px;}
.y33{bottom:40.680000px;}
.ya{bottom:41.400000px;}
.y10e{bottom:43.920000px;}
.y2b{bottom:51.300000px;}
.y89{bottom:53.280000px;}
.y9b{bottom:53.460000px;}
.y92{bottom:53.505000px;}
.y127{bottom:54.900000px;}
.y12d{bottom:54.945000px;}
.y32{bottom:56.160000px;}
.y10d{bottom:57.780000px;}
.ya4{bottom:60.690000px;}
.y6{bottom:64.080000px;}
.y2a{bottom:66.780000px;}
.y31{bottom:71.640000px;}
.y126{bottom:72.180000px;}
.y12c{bottom:72.225000px;}
.y29{bottom:82.440000px;}
.y125{bottom:89.460000px;}
.y12b{bottom:89.505000px;}
.y28{bottom:97.950000px;}
.y36{bottom:106.245000px;}
.y124{bottom:106.740000px;}
.y84{bottom:111.816000px;}
.ydc{bottom:112.176000px;}
.y27{bottom:113.430000px;}
.y10a{bottom:114.336000px;}
.y122{bottom:115.596000px;}
.y83{bottom:125.676000px;}
.y3f{bottom:127.116000px;}
.y26{bottom:128.910000px;}
.ydb{bottom:129.456000px;}
.y109{bottom:131.616000px;}
.y121{bottom:132.876000px;}
.y82{bottom:139.356000px;}
.yc6{bottom:139.716000px;}
.y3e{bottom:144.396000px;}
.yda{bottom:146.736000px;}
.y108{bottom:148.896000px;}
.y120{bottom:150.150000px;}
.y81{bottom:153.210000px;}
.yc5{bottom:156.990000px;}
.y3d{bottom:161.670000px;}
.yd9{bottom:163.830000px;}
.y107{bottom:166.170000px;}
.y80{bottom:167.070000px;}
.y11f{bottom:167.430000px;}
.yc4{bottom:174.270000px;}
.y3c{bottom:178.770000px;}
.yd8{bottom:181.110000px;}
.y24{bottom:181.125000px;}
.y71{bottom:181.470000px;}
.y106{bottom:183.450000px;}
.y11e{bottom:184.530000px;}
.yc3{bottom:191.550000px;}
.y3b{bottom:196.050000px;}
.y23{bottom:196.605000px;}
.yd7{bottom:198.390000px;}
.y70{bottom:198.750000px;}
.y105{bottom:200.730000px;}
.y11d{bottom:201.810000px;}
.y7f{bottom:204.330000px;}
.yc2{bottom:208.830000px;}
.y22{bottom:212.265000px;}
.y3a{bottom:212.610000px;}
.yd6{bottom:215.670000px;}
.y6f{bottom:216.030000px;}
.y104{bottom:217.830000px;}
.y7e{bottom:218.910000px;}
.y11c{bottom:219.090000px;}
.yc1{bottom:225.390000px;}
.y39{bottom:227.730000px;}
.y21{bottom:227.745000px;}
.yd5{bottom:232.950000px;}
.y6e{bottom:233.310000px;}
.y7d{bottom:233.490000px;}
.y103{bottom:235.110000px;}
.y11b{bottom:236.370000px;}
.yc0{bottom:237.270000px;}
.y20{bottom:243.225000px;}
.y38{bottom:246.810000px;}
.y7c{bottom:247.890000px;}
.yd4{bottom:250.050000px;}
.y6d{bottom:250.590000px;}
.ybf{bottom:251.850000px;}
.y102{bottom:252.390000px;}
.y11a{bottom:253.650000px;}
.y1f{bottom:258.705000px;}
.y18{bottom:260.130000px;}
.y7b{bottom:262.470000px;}
.ybe{bottom:266.430000px;}
.yd3{bottom:267.330000px;}
.y6c{bottom:267.690000px;}
.y101{bottom:269.670000px;}
.y119{bottom:270.750000px;}
.y1e{bottom:274.365000px;}
.y7a{bottom:277.050000px;}
.ybd{bottom:281.010000px;}
.yd2{bottom:284.610000px;}
.y6b{bottom:284.970000px;}
.y100{bottom:286.950000px;}
.y118{bottom:288.030000px;}
.y1d{bottom:289.845000px;}
.y79{bottom:291.630000px;}
.ybc{bottom:295.590000px;}
.yd1{bottom:301.890000px;}
.y6a{bottom:302.250000px;}
.yff{bottom:304.050000px;}
.y117{bottom:305.310000px;}
.y1c{bottom:305.325000px;}
.y78{bottom:306.210000px;}
.ybb{bottom:310.170000px;}
.yd0{bottom:319.215000px;}
.y69{bottom:319.575000px;}
.y75{bottom:320.655000px;}
.y1b{bottom:320.835000px;}
.yfe{bottom:321.375000px;}
.y116{bottom:322.635000px;}
.yba{bottom:324.615000px;}
.y1a{bottom:336.315000px;}
.ycf{bottom:336.495000px;}
.y68{bottom:336.855000px;}
.yfd{bottom:338.655000px;}
.y115{bottom:339.915000px;}
.yb9{bottom:340.815000px;}
.yb8{bottom:350.355000px;}
.y74{bottom:350.715000px;}
.y19{bottom:352.335000px;}
.yce{bottom:353.595000px;}
.y67{bottom:354.135000px;}
.yfc{bottom:355.935000px;}
.y114{bottom:357.195000px;}
.y73{bottom:360.255000px;}
.yb7{bottom:364.215000px;}
.ycd{bottom:370.875000px;}
.y66{bottom:371.235000px;}
.yfb{bottom:373.215000px;}
.y72{bottom:374.115000px;}
.y113{bottom:374.295000px;}
.yb6{bottom:377.895000px;}
.y30{bottom:379.695000px;}
.ycc{bottom:388.155000px;}
.y65{bottom:388.515000px;}
.yfa{bottom:390.495000px;}
.y112{bottom:391.575000px;}
.yb5{bottom:392.475000px;}
.ycb{bottom:405.435000px;}
.y64{bottom:405.795000px;}
.yf9{bottom:407.595000px;}
.y111{bottom:408.855000px;}
.yb4{bottom:409.575000px;}
.yca{bottom:422.715000px;}
.y63{bottom:423.075000px;}
.yf8{bottom:424.875000px;}
.yb3{bottom:425.955000px;}
.y110{bottom:426.135000px;}
.yc9{bottom:439.995000px;}
.y62{bottom:440.355000px;}
.y10c{bottom:440.895000px;}
.yf7{bottom:442.155000px;}
.yb2{bottom:442.335000px;}
.yc8{bottom:457.095000px;}
.y61{bottom:457.455000px;}
.yb1{bottom:458.715000px;}
.yf6{bottom:459.435000px;}
.y2e{bottom:464.835000px;}
.yc7{bottom:474.375000px;}
.y60{bottom:474.735000px;}
.yb0{bottom:475.095000px;}
.yf5{bottom:476.715000px;}
.y25{bottom:485.535000px;}
.yaf{bottom:491.655000px;}
.y5f{bottom:492.015000px;}
.yf4{bottom:493.995000px;}
.yae{bottom:508.935000px;}
.y5e{bottom:509.295000px;}
.y10b{bottom:510.555000px;}
.yf3{bottom:511.095000px;}
.ya3{bottom:523.695000px;}
.y5d{bottom:526.575000px;}
.yf2{bottom:528.375000px;}
.yad{bottom:538.275000px;}
.y5c{bottom:543.855000px;}
.yf1{bottom:545.655000px;}
.yac{bottom:552.855000px;}
.y5b{bottom:560.955000px;}
.yf0{bottom:562.935000px;}
.yaa{bottom:567.255000px;}
.y5a{bottom:578.265000px;}
.yef{bottom:580.245000px;}
.ya9{bottom:581.865000px;}
.y59{bottom:595.545000px;}
.ya8{bottom:596.445000px;}
.yee{bottom:597.525000px;}
.ya7{bottom:611.025000px;}
.y58{bottom:612.825000px;}
.yed{bottom:614.625000px;}
.ya6{bottom:625.605000px;}
.y16{bottom:627.765000px;}
.y57{bottom:630.105000px;}
.yec{bottom:631.905000px;}
.ya5{bottom:640.005000px;}
.y56{bottom:647.385000px;}
.yeb{bottom:649.185000px;}
.y9a{bottom:654.585000px;}
.y15{bottom:662.325000px;}
.y55{bottom:664.485000px;}
.yea{bottom:666.465000px;}
.ya2{bottom:669.165000px;}
.y54{bottom:681.765000px;}
.y14{bottom:682.305000px;}
.ya1{bottom:683.745000px;}
.ya0{bottom:698.325000px;}
.y53{bottom:699.045000px;}
.ye9{bottom:700.845000px;}
.y13{bottom:710.745000px;}
.y9f{bottom:712.905000px;}
.y52{bottom:716.325000px;}
.ye8{bottom:718.125000px;}
.y9e{bottom:727.305000px;}
.y12{bottom:728.385000px;}
.y51{bottom:733.605000px;}
.ye7{bottom:735.405000px;}
.y9d{bottom:741.885000px;}
.y11{bottom:749.625000px;}
.y50{bottom:750.885000px;}
.ye6{bottom:752.685000px;}
.y9c{bottom:756.465000px;}
.y4f{bottom:767.985000px;}
.ye5{bottom:769.965000px;}
.y91{bottom:771.045000px;}
.y10{bottom:780.585000px;}
.y4e{bottom:785.265000px;}
.y99{bottom:785.625000px;}
.ye4{bottom:787.245000px;}
.y98{bottom:800.205000px;}
.y130{bottom:801.825000px;}
.y4d{bottom:802.545000px;}
.ye3{bottom:804.345000px;}
.yf{bottom:811.725000px;}
.y97{bottom:814.605000px;}
.y12a{bottom:815.865000px;}
.y4c{bottom:819.870000px;}
.ye2{bottom:821.670000px;}
.y96{bottom:829.230000px;}
.y4b{bottom:837.150000px;}
.ye1{bottom:838.950000px;}
.ye{bottom:842.730000px;}
.y95{bottom:843.810000px;}
.y4a{bottom:854.250000px;}
.ye0{bottom:856.230000px;}
.y94{bottom:858.390000px;}
.y49{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.y93{bottom:872.970000px;}
.ydf{bottom:873.510000px;}
.yb{bottom:887.010000px;}
.y88{bottom:887.550000px;}
.y48{bottom:888.810000px;}
.yde{bottom:890.070000px;}
.y90{bottom:901.950000px;}
.y47{bottom:906.090000px;}
.y8f{bottom:916.530000px;}
.y123{bottom:920.130000px;}
.y46{bottom:923.370000px;}
.y8e{bottom:931.110000px;}
.y45{bottom:940.650000px;}
.y8d{bottom:945.690000px;}
.y44{bottom:957.750000px;}
.y8c{bottom:960.270000px;}
.y8b{bottom:974.670000px;}
.y43{bottom:975.030000px;}
.y8a{bottom:989.250000px;}
.y42{bottom:992.310000px;}
.y87{bottom:1003.830000px;}
.y41{bottom:1009.590000px;}
.y86{bottom:1020.030000px;}
.y40{bottom:1026.870000px;}
.y85{bottom:1029.570000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h20{height:13.680000px;}
.h28{height:13.680150px;}
.h1f{height:13.716000px;}
.h21{height:13.860000px;}
.h24{height:13.896000px;}
.hf{height:17.280000px;}
.h16{height:19.980000px;}
.h1d{height:21.336328px;}
.h4{height:27.576000px;}
.h1e{height:27.720000px;}
.h2a{height:28.440000px;}
.h6{height:33.683203px;}
.h1c{height:34.036523px;}
.h12{height:37.705078px;}
.h18{height:38.100586px;}
.h29{height:39.114844px;}
.h27{height:39.294844px;}
.h7{height:39.336328px;}
.h11{height:39.972656px;}
.h14{height:39.999023px;}
.h5{height:41.726953px;}
.he{height:42.164648px;}
.h1b{height:43.506914px;}
.h1a{height:44.236406px;}
.h15{height:44.265586px;}
.h9{height:46.251562px;}
.hc{height:46.736719px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h2b{height:68.940000px;}
.hd{height:75.410156px;}
.hb{height:76.201172px;}
.h17{height:84.240000px;}
.h2d{height:103.536000px;}
.h22{height:115.560000px;}
.h23{height:115.596000px;}
.h25{height:115.740000px;}
.h19{height:118.836000px;}
.h2c{height:120.780000px;}
.h26{height:130.176000px;}
.h13{height:141.516000px;}
.h8{height:153.900000px;}
.h10{height:366.915000px;}
.h0{height:1188.000000px;}
.w9{width:40.176000px;}
.w19{width:40.680000px;}
.w1a{width:40.860000px;}
.w13{width:44.280000px;}
.w2{width:45.036000px;}
.wd{width:49.500000px;}
.w18{width:49.860000px;}
.w7{width:52.920000px;}
.w14{width:54.000000px;}
.w17{width:54.216000px;}
.wa{width:59.400000px;}
.w8{width:72.180000px;}
.wb{width:94.500000px;}
.w10{width:97.416000px;}
.wf{width:109.260000px;}
.w11{width:115.200000px;}
.we{width:163.290000px;}
.w16{width:174.420000px;}
.w6{width:211.710000px;}
.wc{width:254.775000px;}
.w12{width:279.255000px;}
.w15{width:297.075000px;}
.w1b{width:329.250000px;}
.w5{width:596.805000px;}
.w3{width:783.510000px;}
.w1c{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x24{left:5.400000px;}
.x13{left:6.480000px;}
.x15{left:7.560000px;}
.x5{left:8.640000px;}
.x20{left:9.720000px;}
.x25{left:10.980000px;}
.x1f{left:13.140000px;}
.x54{left:14.220000px;}
.x2b{left:15.840000px;}
.x22{left:17.280000px;}
.x12{left:19.980000px;}
.x29{left:21.960000px;}
.x17{left:23.265000px;}
.x2a{left:25.560000px;}
.x3f{left:27.360000px;}
.x14{left:29.745000px;}
.x16{left:31.725000px;}
.x2c{left:36.720000px;}
.x28{left:38.160000px;}
.x38{left:39.645000px;}
.x40{left:40.725000px;}
.x3d{left:42.705000px;}
.x8{left:45.540000px;}
.x37{left:48.600000px;}
.x39{left:51.480000px;}
.x41{left:52.560000px;}
.x4{left:53.999986px;}
.x42{left:59.579986px;}
.x3{left:60.659986px;}
.x2f{left:62.460000px;}
.x18{left:65.519986px;}
.x43{left:68.039986px;}
.x36{left:72.540000px;}
.x3e{left:75.600000px;}
.x3c{left:78.660000px;}
.x59{left:80.100000px;}
.x4b{left:83.376000px;}
.x1a{left:86.759986px;}
.xb{left:98.675986px;}
.x6{left:100.836000px;}
.x3a{left:102.090000px;}
.x3b{left:105.870000px;}
.x7{left:108.035986px;}
.x30{left:111.990000px;}
.x55{left:113.625000px;}
.x4a{left:119.550000px;}
.x4d{left:120.635986px;}
.x48{left:121.890000px;}
.x49{left:126.570000px;}
.x4e{left:133.245000px;}
.x1{left:150.509986px;}
.x56{left:192.989986px;}
.xf{left:196.409986px;}
.x44{left:209.909986px;}
.x2{left:220.709986px;}
.x2e{left:248.609986px;}
.x45{left:252.569986px;}
.x31{left:317.955000px;}
.xc{left:339.014986px;}
.x46{left:340.275000px;}
.x32{left:368.175000px;}
.x47{left:385.275000px;}
.xe{left:391.214986px;}
.xa{left:459.074986px;}
.x2d{left:461.954986px;}
.xd{left:464.294986px;}
.x10{left:465.374986px;}
.x19{left:478.334986px;}
.x1d{left:480.525000px;}
.x1b{left:488.624986px;}
.x4f{left:493.305000px;}
.x58{left:503.745000px;}
.x4c{left:505.364986px;}
.x57{left:526.604986px;}
.x33{left:532.185000px;}
.x1e{left:534.165000px;}
.x51{left:543.885000px;}
.x1c{left:553.064986px;}
.x52{left:585.465000px;}
.x21{left:607.065000px;}
.x53{left:626.865000px;}
.x34{left:642.165000px;}
.x11{left:650.805000px;}
.x23{left:660.705000px;}
.x50{left:668.445000px;}
.x26{left:701.610000px;}
.x35{left:740.490000px;}
.x27{left:761.730000px;}
.x9{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.143787pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:19.152640pt;}
.lsf{letter-spacing:21.712640pt;}
.ls4{letter-spacing:33.392640pt;}
.lsd{letter-spacing:33.872640pt;}
.ls10{letter-spacing:37.072640pt;}
.ls2{letter-spacing:37.376000pt;}
.ls12{letter-spacing:39.632640pt;}
.ls6{letter-spacing:40.912640pt;}
.lsc{letter-spacing:48.592640pt;}
.ls18{letter-spacing:57.040640pt;}
.ws3{word-spacing:-53.120000pt;}
.ws4{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws10{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.558933pt;}
.wsb{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._22{margin-left:-2.272000pt;}
._4{margin-left:-1.048533pt;}
._1{width:1.009280pt;}
._6{width:2.208000pt;}
._7{width:3.310720pt;}
._c{width:4.464000pt;}
._f{width:5.662720pt;}
._8{width:7.008000pt;}
._9{width:7.920000pt;}
._e{width:8.928000pt;}
._d{width:9.984000pt;}
._1b{width:11.367680pt;}
._b{width:12.945067pt;}
._a{width:13.872000pt;}
._17{width:15.245867pt;}
._18{width:16.573440pt;}
._1c{width:17.845973pt;}
._14{width:19.200000pt;}
._13{width:20.160000pt;}
._1a{width:21.819307pt;}
._19{width:23.184427pt;}
._23{width:24.807040pt;}
._20{width:25.922560pt;}
._21{width:26.856960pt;}
._1e{width:30.756480pt;}
._1d{width:32.005333pt;}
._12{width:33.024000pt;}
._1f{width:37.555840pt;}
._16{width:43.432533pt;}
._15{width:44.640000pt;}
._11{width:49.520000pt;}
._10{width:50.496000pt;}
._24{width:51.473280pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._5{width:798.178773pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.240000pt;}
.yab{bottom:2.266667pt;}
.y9{bottom:2.272000pt;}
.y37{bottom:2.560000pt;}
.y17{bottom:2.880000pt;}
.y2f{bottom:5.280000pt;}
.y7{bottom:7.552000pt;}
.y35{bottom:8.480000pt;}
.ydd{bottom:8.800000pt;}
.yc{bottom:12.480000pt;}
.y76{bottom:14.560000pt;}
.y8{bottom:14.592000pt;}
.y2d{bottom:17.280000pt;}
.y12f{bottom:18.120000pt;}
.y129{bottom:18.240000pt;}
.y34{bottom:22.400000pt;}
.y10f{bottom:26.720000pt;}
.y2c{bottom:31.840000pt;}
.y128{bottom:33.440000pt;}
.y12e{bottom:33.480000pt;}
.y33{bottom:36.160000pt;}
.ya{bottom:36.800000pt;}
.y10e{bottom:39.040000pt;}
.y2b{bottom:45.600000pt;}
.y89{bottom:47.360000pt;}
.y9b{bottom:47.520000pt;}
.y92{bottom:47.560000pt;}
.y127{bottom:48.800000pt;}
.y12d{bottom:48.840000pt;}
.y32{bottom:49.920000pt;}
.y10d{bottom:51.360000pt;}
.ya4{bottom:53.946667pt;}
.y6{bottom:56.960000pt;}
.y2a{bottom:59.360000pt;}
.y31{bottom:63.680000pt;}
.y126{bottom:64.160000pt;}
.y12c{bottom:64.200000pt;}
.y29{bottom:73.280000pt;}
.y125{bottom:79.520000pt;}
.y12b{bottom:79.560000pt;}
.y28{bottom:87.066667pt;}
.y36{bottom:94.440000pt;}
.y124{bottom:94.880000pt;}
.y84{bottom:99.392000pt;}
.ydc{bottom:99.712000pt;}
.y27{bottom:100.826667pt;}
.y10a{bottom:101.632000pt;}
.y122{bottom:102.752000pt;}
.y83{bottom:111.712000pt;}
.y3f{bottom:112.992000pt;}
.y26{bottom:114.586667pt;}
.ydb{bottom:115.072000pt;}
.y109{bottom:116.992000pt;}
.y121{bottom:118.112000pt;}
.y82{bottom:123.872000pt;}
.yc6{bottom:124.192000pt;}
.y3e{bottom:128.352000pt;}
.yda{bottom:130.432000pt;}
.y108{bottom:132.352000pt;}
.y120{bottom:133.466667pt;}
.y81{bottom:136.186667pt;}
.yc5{bottom:139.546667pt;}
.y3d{bottom:143.706667pt;}
.yd9{bottom:145.626667pt;}
.y107{bottom:147.706667pt;}
.y80{bottom:148.506667pt;}
.y11f{bottom:148.826667pt;}
.yc4{bottom:154.906667pt;}
.y3c{bottom:158.906667pt;}
.yd8{bottom:160.986667pt;}
.y24{bottom:161.000000pt;}
.y71{bottom:161.306667pt;}
.y106{bottom:163.066667pt;}
.y11e{bottom:164.026667pt;}
.yc3{bottom:170.266667pt;}
.y3b{bottom:174.266667pt;}
.y23{bottom:174.760000pt;}
.yd7{bottom:176.346667pt;}
.y70{bottom:176.666667pt;}
.y105{bottom:178.426667pt;}
.y11d{bottom:179.386667pt;}
.y7f{bottom:181.626667pt;}
.yc2{bottom:185.626667pt;}
.y22{bottom:188.680000pt;}
.y3a{bottom:188.986667pt;}
.yd6{bottom:191.706667pt;}
.y6f{bottom:192.026667pt;}
.y104{bottom:193.626667pt;}
.y7e{bottom:194.586667pt;}
.y11c{bottom:194.746667pt;}
.yc1{bottom:200.346667pt;}
.y39{bottom:202.426667pt;}
.y21{bottom:202.440000pt;}
.yd5{bottom:207.066667pt;}
.y6e{bottom:207.386667pt;}
.y7d{bottom:207.546667pt;}
.y103{bottom:208.986667pt;}
.y11b{bottom:210.106667pt;}
.yc0{bottom:210.906667pt;}
.y20{bottom:216.200000pt;}
.y38{bottom:219.386667pt;}
.y7c{bottom:220.346667pt;}
.yd4{bottom:222.266667pt;}
.y6d{bottom:222.746667pt;}
.ybf{bottom:223.866667pt;}
.y102{bottom:224.346667pt;}
.y11a{bottom:225.466667pt;}
.y1f{bottom:229.960000pt;}
.y18{bottom:231.226667pt;}
.y7b{bottom:233.306667pt;}
.ybe{bottom:236.826667pt;}
.yd3{bottom:237.626667pt;}
.y6c{bottom:237.946667pt;}
.y101{bottom:239.706667pt;}
.y119{bottom:240.666667pt;}
.y1e{bottom:243.880000pt;}
.y7a{bottom:246.266667pt;}
.ybd{bottom:249.786667pt;}
.yd2{bottom:252.986667pt;}
.y6b{bottom:253.306667pt;}
.y100{bottom:255.066667pt;}
.y118{bottom:256.026667pt;}
.y1d{bottom:257.640000pt;}
.y79{bottom:259.226667pt;}
.ybc{bottom:262.746667pt;}
.yd1{bottom:268.346667pt;}
.y6a{bottom:268.666667pt;}
.yff{bottom:270.266667pt;}
.y117{bottom:271.386667pt;}
.y1c{bottom:271.400000pt;}
.y78{bottom:272.186667pt;}
.ybb{bottom:275.706667pt;}
.yd0{bottom:283.746667pt;}
.y69{bottom:284.066667pt;}
.y75{bottom:285.026667pt;}
.y1b{bottom:285.186667pt;}
.yfe{bottom:285.666667pt;}
.y116{bottom:286.786667pt;}
.yba{bottom:288.546667pt;}
.y1a{bottom:298.946667pt;}
.ycf{bottom:299.106667pt;}
.y68{bottom:299.426667pt;}
.yfd{bottom:301.026667pt;}
.y115{bottom:302.146667pt;}
.yb9{bottom:302.946667pt;}
.yb8{bottom:311.426667pt;}
.y74{bottom:311.746667pt;}
.y19{bottom:313.186667pt;}
.yce{bottom:314.306667pt;}
.y67{bottom:314.786667pt;}
.yfc{bottom:316.386667pt;}
.y114{bottom:317.506667pt;}
.y73{bottom:320.226667pt;}
.yb7{bottom:323.746667pt;}
.ycd{bottom:329.666667pt;}
.y66{bottom:329.986667pt;}
.yfb{bottom:331.746667pt;}
.y72{bottom:332.546667pt;}
.y113{bottom:332.706667pt;}
.yb6{bottom:335.906667pt;}
.y30{bottom:337.506667pt;}
.ycc{bottom:345.026667pt;}
.y65{bottom:345.346667pt;}
.yfa{bottom:347.106667pt;}
.y112{bottom:348.066667pt;}
.yb5{bottom:348.866667pt;}
.ycb{bottom:360.386667pt;}
.y64{bottom:360.706667pt;}
.yf9{bottom:362.306667pt;}
.y111{bottom:363.426667pt;}
.yb4{bottom:364.066667pt;}
.yca{bottom:375.746667pt;}
.y63{bottom:376.066667pt;}
.yf8{bottom:377.666667pt;}
.yb3{bottom:378.626667pt;}
.y110{bottom:378.786667pt;}
.yc9{bottom:391.106667pt;}
.y62{bottom:391.426667pt;}
.y10c{bottom:391.906667pt;}
.yf7{bottom:393.026667pt;}
.yb2{bottom:393.186667pt;}
.yc8{bottom:406.306667pt;}
.y61{bottom:406.626667pt;}
.yb1{bottom:407.746667pt;}
.yf6{bottom:408.386667pt;}
.y2e{bottom:413.186667pt;}
.yc7{bottom:421.666667pt;}
.y60{bottom:421.986667pt;}
.yb0{bottom:422.306667pt;}
.yf5{bottom:423.746667pt;}
.y25{bottom:431.586667pt;}
.yaf{bottom:437.026667pt;}
.y5f{bottom:437.346667pt;}
.yf4{bottom:439.106667pt;}
.yae{bottom:452.386667pt;}
.y5e{bottom:452.706667pt;}
.y10b{bottom:453.826667pt;}
.yf3{bottom:454.306667pt;}
.ya3{bottom:465.506667pt;}
.y5d{bottom:468.066667pt;}
.yf2{bottom:469.666667pt;}
.yad{bottom:478.466667pt;}
.y5c{bottom:483.426667pt;}
.yf1{bottom:485.026667pt;}
.yac{bottom:491.426667pt;}
.y5b{bottom:498.626667pt;}
.yf0{bottom:500.386667pt;}
.yaa{bottom:504.226667pt;}
.y5a{bottom:514.013333pt;}
.yef{bottom:515.773333pt;}
.ya9{bottom:517.213333pt;}
.y59{bottom:529.373333pt;}
.ya8{bottom:530.173333pt;}
.yee{bottom:531.133333pt;}
.ya7{bottom:543.133333pt;}
.y58{bottom:544.733333pt;}
.yed{bottom:546.333333pt;}
.ya6{bottom:556.093333pt;}
.y16{bottom:558.013333pt;}
.y57{bottom:560.093333pt;}
.yec{bottom:561.693333pt;}
.ya5{bottom:568.893333pt;}
.y56{bottom:575.453333pt;}
.yeb{bottom:577.053333pt;}
.y9a{bottom:581.853333pt;}
.y15{bottom:588.733333pt;}
.y55{bottom:590.653333pt;}
.yea{bottom:592.413333pt;}
.ya2{bottom:594.813333pt;}
.y54{bottom:606.013333pt;}
.y14{bottom:606.493333pt;}
.ya1{bottom:607.773333pt;}
.ya0{bottom:620.733333pt;}
.y53{bottom:621.373333pt;}
.ye9{bottom:622.973333pt;}
.y13{bottom:631.773333pt;}
.y9f{bottom:633.693333pt;}
.y52{bottom:636.733333pt;}
.ye8{bottom:638.333333pt;}
.y9e{bottom:646.493333pt;}
.y12{bottom:647.453333pt;}
.y51{bottom:652.093333pt;}
.ye7{bottom:653.693333pt;}
.y9d{bottom:659.453333pt;}
.y11{bottom:666.333333pt;}
.y50{bottom:667.453333pt;}
.ye6{bottom:669.053333pt;}
.y9c{bottom:672.413333pt;}
.y4f{bottom:682.653333pt;}
.ye5{bottom:684.413333pt;}
.y91{bottom:685.373333pt;}
.y10{bottom:693.853333pt;}
.y4e{bottom:698.013333pt;}
.y99{bottom:698.333333pt;}
.ye4{bottom:699.773333pt;}
.y98{bottom:711.293333pt;}
.y130{bottom:712.733333pt;}
.y4d{bottom:713.373333pt;}
.ye3{bottom:714.973333pt;}
.yf{bottom:721.533333pt;}
.y97{bottom:724.093333pt;}
.y12a{bottom:725.213333pt;}
.y4c{bottom:728.773333pt;}
.ye2{bottom:730.373333pt;}
.y96{bottom:737.093333pt;}
.y4b{bottom:744.133333pt;}
.ye1{bottom:745.733333pt;}
.ye{bottom:749.093333pt;}
.y95{bottom:750.053333pt;}
.y4a{bottom:759.333333pt;}
.ye0{bottom:761.093333pt;}
.y94{bottom:763.013333pt;}
.y49{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.y93{bottom:775.973333pt;}
.ydf{bottom:776.453333pt;}
.yb{bottom:788.453333pt;}
.y88{bottom:788.933333pt;}
.y48{bottom:790.053333pt;}
.yde{bottom:791.173333pt;}
.y90{bottom:801.733333pt;}
.y47{bottom:805.413333pt;}
.y8f{bottom:814.693333pt;}
.y123{bottom:817.893333pt;}
.y46{bottom:820.773333pt;}
.y8e{bottom:827.653333pt;}
.y45{bottom:836.133333pt;}
.y8d{bottom:840.613333pt;}
.y44{bottom:851.333333pt;}
.y8c{bottom:853.573333pt;}
.y8b{bottom:866.373333pt;}
.y43{bottom:866.693333pt;}
.y8a{bottom:879.333333pt;}
.y42{bottom:882.053333pt;}
.y87{bottom:892.293333pt;}
.y41{bottom:897.413333pt;}
.y86{bottom:906.693333pt;}
.y40{bottom:912.773333pt;}
.y85{bottom:915.173333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h20{height:12.160000pt;}
.h28{height:12.160133pt;}
.h1f{height:12.192000pt;}
.h21{height:12.320000pt;}
.h24{height:12.352000pt;}
.hf{height:15.360000pt;}
.h16{height:17.760000pt;}
.h1d{height:18.965625pt;}
.h4{height:24.512000pt;}
.h1e{height:24.640000pt;}
.h2a{height:25.280000pt;}
.h6{height:29.940625pt;}
.h1c{height:30.254687pt;}
.h12{height:33.515625pt;}
.h18{height:33.867188pt;}
.h29{height:34.768750pt;}
.h27{height:34.928750pt;}
.h7{height:34.965625pt;}
.h11{height:35.531250pt;}
.h14{height:35.554688pt;}
.h5{height:37.090625pt;}
.he{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h1a{height:39.321250pt;}
.h15{height:39.347188pt;}
.h9{height:41.112500pt;}
.hc{height:41.543750pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h2b{height:61.280000pt;}
.hd{height:67.031250pt;}
.hb{height:67.734375pt;}
.h17{height:74.880000pt;}
.h2d{height:92.032000pt;}
.h22{height:102.720000pt;}
.h23{height:102.752000pt;}
.h25{height:102.880000pt;}
.h19{height:105.632000pt;}
.h2c{height:107.360000pt;}
.h26{height:115.712000pt;}
.h13{height:125.792000pt;}
.h8{height:136.800000pt;}
.h10{height:326.146667pt;}
.h0{height:1056.000000pt;}
.w9{width:35.712000pt;}
.w19{width:36.160000pt;}
.w1a{width:36.320000pt;}
.w13{width:39.360000pt;}
.w2{width:40.032000pt;}
.wd{width:44.000000pt;}
.w18{width:44.320000pt;}
.w7{width:47.040000pt;}
.w14{width:48.000000pt;}
.w17{width:48.192000pt;}
.wa{width:52.800000pt;}
.w8{width:64.160000pt;}
.wb{width:84.000000pt;}
.w10{width:86.592000pt;}
.wf{width:97.120000pt;}
.w11{width:102.400000pt;}
.we{width:145.146667pt;}
.w16{width:155.040000pt;}
.w6{width:188.186667pt;}
.wc{width:226.466667pt;}
.w12{width:248.226667pt;}
.w15{width:264.066667pt;}
.w1b{width:292.666667pt;}
.w5{width:530.493333pt;}
.w3{width:696.453333pt;}
.w1c{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x24{left:4.800000pt;}
.x13{left:5.760000pt;}
.x15{left:6.720000pt;}
.x5{left:7.680000pt;}
.x20{left:8.640000pt;}
.x25{left:9.760000pt;}
.x1f{left:11.680000pt;}
.x54{left:12.640000pt;}
.x2b{left:14.080000pt;}
.x22{left:15.360000pt;}
.x12{left:17.760000pt;}
.x29{left:19.520000pt;}
.x17{left:20.680000pt;}
.x2a{left:22.720000pt;}
.x3f{left:24.320000pt;}
.x14{left:26.440000pt;}
.x16{left:28.200000pt;}
.x2c{left:32.640000pt;}
.x28{left:33.920000pt;}
.x38{left:35.240000pt;}
.x40{left:36.200000pt;}
.x3d{left:37.960000pt;}
.x8{left:40.480000pt;}
.x37{left:43.200000pt;}
.x39{left:45.760000pt;}
.x41{left:46.720000pt;}
.x4{left:47.999988pt;}
.x42{left:52.959988pt;}
.x3{left:53.919988pt;}
.x2f{left:55.520000pt;}
.x18{left:58.239988pt;}
.x43{left:60.479988pt;}
.x36{left:64.480000pt;}
.x3e{left:67.200000pt;}
.x3c{left:69.920000pt;}
.x59{left:71.200000pt;}
.x4b{left:74.112000pt;}
.x1a{left:77.119988pt;}
.xb{left:87.711988pt;}
.x6{left:89.632000pt;}
.x3a{left:90.746667pt;}
.x3b{left:94.106667pt;}
.x7{left:96.031988pt;}
.x30{left:99.546667pt;}
.x55{left:101.000000pt;}
.x4a{left:106.266667pt;}
.x4d{left:107.231988pt;}
.x48{left:108.346667pt;}
.x49{left:112.506667pt;}
.x4e{left:118.440000pt;}
.x1{left:133.786655pt;}
.x56{left:171.546655pt;}
.xf{left:174.586655pt;}
.x44{left:186.586655pt;}
.x2{left:196.186655pt;}
.x2e{left:220.986655pt;}
.x45{left:224.506655pt;}
.x31{left:282.626667pt;}
.xc{left:301.346655pt;}
.x46{left:302.466667pt;}
.x32{left:327.266667pt;}
.x47{left:342.466667pt;}
.xe{left:347.746655pt;}
.xa{left:408.066655pt;}
.x2d{left:410.626655pt;}
.xd{left:412.706655pt;}
.x10{left:413.666655pt;}
.x19{left:425.186655pt;}
.x1d{left:427.133333pt;}
.x1b{left:434.333321pt;}
.x4f{left:438.493333pt;}
.x58{left:447.773333pt;}
.x4c{left:449.213321pt;}
.x57{left:468.093321pt;}
.x33{left:473.053333pt;}
.x1e{left:474.813333pt;}
.x51{left:483.453333pt;}
.x1c{left:491.613321pt;}
.x52{left:520.413333pt;}
.x21{left:539.613333pt;}
.x53{left:557.213333pt;}
.x34{left:570.813333pt;}
.x11{left:578.493333pt;}
.x23{left:587.293333pt;}
.x50{left:594.173333pt;}
.x26{left:623.653333pt;}
.x35{left:658.213333pt;}
.x27{left:677.093333pt;}
.x9{left:722.213333pt;}
}




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