
    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_7a3cc056619ce42c0871a5ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978027;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_1009e8fcdf82a09fda62d993.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_80ddb50b84ab469488befd87.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_48a14db50f51f14fdf175112.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8160679620e0afdf521f9d6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_34fdccc66b249022fe47ba00.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.253200px;}
.lsb{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.017280px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.025920px;}
.ls9{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.169800px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws8{word-spacing:-19.422720px;}
.wsd{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.109800px;}
.wsa{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.686800px;}
.wsb{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.392000px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-4.344000px;}
._6{margin-left:-2.880000px;}
._2{margin-left:-1.095120px;}
._0{width:1.075680px;}
._1{width:2.126640px;}
._7{width:3.528000px;}
._8{width:4.752000px;}
._10{width:6.624000px;}
._13{width:7.704000px;}
._17{width:9.447120px;}
._3{width:10.656000px;}
._12{width:12.569280px;}
._11{width:13.839120px;}
._4{width:15.768000px;}
._5{width:16.939440px;}
._d{width:19.872000px;}
._b{width:21.576000px;}
._c{width:22.608000px;}
._15{width:23.760000px;}
._9{width:24.768000px;}
._a{width:25.800960px;}
._19{width:27.280800px;}
._14{width:29.190240px;}
._e{width:30.528000px;}
._f{width:31.616640px;}
._20{width:32.688000px;}
._21{width:33.931440px;}
._1b{width:35.640000px;}
._1c{width:36.652320px;}
._1d{width:38.251680px;}
._1e{width:39.270240px;}
._1f{width:40.320000px;}
._16{width:41.616000px;}
._18{width:43.360320px;}
._22{width:846.156000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yeb{bottom:2.880000px;}
.yef{bottom:3.060000px;}
.ye8{bottom:3.240000px;}
.yed{bottom:18.360000px;}
.yea{bottom:18.540000px;}
.y2{bottom:56.160000px;}
.ye5{bottom:113.580000px;}
.y14b{bottom:115.020000px;}
.yc4{bottom:120.240000px;}
.ya3{bottom:125.100000px;}
.y7e{bottom:131.580000px;}
.ye4{bottom:134.280000px;}
.y14a{bottom:135.720000px;}
.y28{bottom:137.520000px;}
.y1a5{bottom:144.180000px;}
.ya2{bottom:145.620000px;}
.y161{bottom:150.660000px;}
.y7d{bottom:152.280000px;}
.y10c{bottom:154.080000px;}
.y12a{bottom:154.260000px;}
.ye3{bottom:154.980000px;}
.y149{bottom:156.420000px;}
.y54{bottom:157.860000px;}
.y27{bottom:158.220000px;}
.y1a4{bottom:163.260000px;}
.yc3{bottom:163.620000px;}
.ya1{bottom:166.320000px;}
.y129{bottom:174.960000px;}
.ye2{bottom:175.680000px;}
.y148{bottom:177.120000px;}
.y53{bottom:178.560000px;}
.y26{bottom:178.920000px;}
.y7c{bottom:179.100000px;}
.yc2{bottom:184.320000px;}
.y160{bottom:186.300000px;}
.y1a3{bottom:189.720000px;}
.ya0{bottom:193.320000px;}
.y128{bottom:195.690000px;}
.ye1{bottom:196.410000px;}
.y147{bottom:197.850000px;}
.y52{bottom:199.290000px;}
.y25{bottom:199.650000px;}
.y10b{bottom:204.690000px;}
.yc1{bottom:205.050000px;}
.y15f{bottom:207.030000px;}
.y1a2{bottom:216.210000px;}
.y127{bottom:216.390000px;}
.ye0{bottom:217.110000px;}
.y51{bottom:219.990000px;}
.y24{bottom:220.350000px;}
.y7b{bottom:222.330000px;}
.y146{bottom:224.670000px;}
.y10a{bottom:225.390000px;}
.yc0{bottom:225.750000px;}
.y15e{bottom:227.730000px;}
.y9f{bottom:236.550000px;}
.y126{bottom:237.090000px;}
.ydf{bottom:237.810000px;}
.y50{bottom:240.690000px;}
.y23{bottom:241.050000px;}
.y1a1{bottom:242.670000px;}
.y7a{bottom:243.030000px;}
.y109{bottom:246.090000px;}
.ybf{bottom:246.450000px;}
.y15d{bottom:248.430000px;}
.y9e{bottom:257.250000px;}
.y125{bottom:257.790000px;}
.y1a0{bottom:261.750000px;}
.y79{bottom:263.730000px;}
.y145{bottom:267.870000px;}
.yde{bottom:268.050000px;}
.y1c7{bottom:268.230000px;}
.y15c{bottom:269.130000px;}
.y22{bottom:271.470000px;}
.ybe{bottom:273.270000px;}
.y4f{bottom:276.510000px;}
.y9d{bottom:277.950000px;}
.y108{bottom:281.730000px;}
.y19f{bottom:288.030000px;}
.y144{bottom:288.570000px;}
.y15b{bottom:289.830000px;}
.y124{bottom:293.610000px;}
.y78{bottom:293.970000px;}
.y1c6{bottom:294.690000px;}
.y4e{bottom:297.210000px;}
.y9c{bottom:298.650000px;}
.y107{bottom:302.430000px;}
.y19e{bottom:307.290000px;}
.y143{bottom:309.270000px;}
.y1c5{bottom:313.950000px;}
.ybd{bottom:316.470000px;}
.y4d{bottom:317.910000px;}
.ydd{bottom:318.630000px;}
.y9b{bottom:319.350000px;}
.y15a{bottom:320.070000px;}
.y21{bottom:322.050000px;}
.y106{bottom:323.130000px;}
.y19d{bottom:326.190000px;}
.y123{bottom:329.250000px;}
.ybc{bottom:337.170000px;}
.y4c{bottom:338.610000px;}
.ydc{bottom:339.330000px;}
.y142{bottom:339.510000px;}
.y9a{bottom:340.050000px;}
.y1c4{bottom:340.230000px;}
.y20{bottom:342.750000px;}
.y77{bottom:344.550000px;}
.y122{bottom:349.950000px;}
.y19c{bottom:352.470000px;}
.ybb{bottom:357.870000px;}
.y105{bottom:358.950000px;}
.y4b{bottom:359.310000px;}
.ydb{bottom:360.030000px;}
.y99{bottom:360.750000px;}
.y76{bottom:365.250000px;}
.y121{bottom:370.650000px;}
.y19b{bottom:371.550000px;}
.yba{bottom:378.570000px;}
.y104{bottom:379.650000px;}
.y4a{bottom:380.010000px;}
.yda{bottom:380.730000px;}
.y1f{bottom:381.450000px;}
.y1c3{bottom:385.590000px;}
.y75{bottom:385.950000px;}
.y141{bottom:390.090000px;}
.y120{bottom:391.350000px;}
.y19a{bottom:398.010000px;}
.y103{bottom:400.350000px;}
.y49{bottom:400.710000px;}
.yd9{bottom:401.430000px;}
.y1e{bottom:402.150000px;}
.yb9{bottom:405.390000px;}
.y74{bottom:406.650000px;}
.y98{bottom:408.270000px;}
.y140{bottom:410.790000px;}
.y11f{bottom:412.050000px;}
.y199{bottom:417.090000px;}
.yd8{bottom:422.130000px;}
.y1d{bottom:422.850000px;}
.y73{bottom:427.350000px;}
.y1c2{bottom:431.310000px;}
.y13f{bottom:431.490000px;}
.y11e{bottom:432.750000px;}
.y102{bottom:436.035000px;}
.y48{bottom:436.395000px;}
.yd7{bottom:442.875000px;}
.y198{bottom:443.415000px;}
.y1c{bottom:443.595000px;}
.y72{bottom:448.095000px;}
.y17b{bottom:448.455000px;}
.yb8{bottom:448.815000px;}
.y97{bottom:451.695000px;}
.y13e{bottom:452.235000px;}
.y11d{bottom:453.495000px;}
.y101{bottom:456.735000px;}
.y47{bottom:457.095000px;}
.y1c1{bottom:457.635000px;}
.y197{bottom:462.495000px;}
.yd6{bottom:463.575000px;}
.y1b{bottom:464.115000px;}
.y71{bottom:468.795000px;}
.yb7{bottom:469.515000px;}
.y96{bottom:472.395000px;}
.y13d{bottom:472.935000px;}
.y159{bottom:474.195000px;}
.y1c0{bottom:476.715000px;}
.y100{bottom:477.435000px;}
.y46{bottom:477.795000px;}
.y17a{bottom:484.275000px;}
.y1a{bottom:484.815000px;}
.y196{bottom:488.955000px;}
.y11c{bottom:489.135000px;}
.y70{bottom:489.495000px;}
.y95{bottom:493.095000px;}
.y13c{bottom:493.635000px;}
.yd5{bottom:493.815000px;}
.y158{bottom:494.895000px;}
.yff{bottom:498.135000px;}
.y45{bottom:498.495000px;}
.yb6{bottom:499.575000px;}
.y1bf{bottom:502.995000px;}
.y179{bottom:504.975000px;}
.y19{bottom:505.515000px;}
.y94{bottom:513.795000px;}
.y13b{bottom:514.335000px;}
.y195{bottom:515.415000px;}
.y157{bottom:515.595000px;}
.y6f{bottom:516.495000px;}
.y44{bottom:519.195000px;}
.y1be{bottom:522.255000px;}
.y11b{bottom:524.955000px;}
.y178{bottom:525.675000px;}
.y18{bottom:526.215000px;}
.yfe{bottom:533.775000px;}
.y93{bottom:534.495000px;}
.y156{bottom:536.295000px;}
.y43{bottom:539.895000px;}
.y13a{bottom:541.155000px;}
.yd4{bottom:544.395000px;}
.y11a{bottom:545.655000px;}
.y17{bottom:546.915000px;}
.y1bd{bottom:548.535000px;}
.yb5{bottom:549.615000px;}
.y194{bottom:553.395000px;}
.yfd{bottom:554.475000px;}
.y92{bottom:555.015000px;}
.y177{bottom:555.375000px;}
.y6e{bottom:559.695000px;}
.yd3{bottom:565.095000px;}
.y119{bottom:566.355000px;}
.y155{bottom:566.535000px;}
.yb4{bottom:566.895000px;}
.y16{bottom:567.615000px;}
.yfc{bottom:575.175000px;}
.y42{bottom:575.535000px;}
.y91{bottom:575.715000px;}
.y176{bottom:576.075000px;}
.y193{bottom:579.675000px;}
.y6d{bottom:580.395000px;}
.y139{bottom:584.535000px;}
.yd2{bottom:585.795000px;}
.y118{bottom:587.055000px;}
.y15{bottom:588.315000px;}
.yb3{bottom:590.115000px;}
.y1bc{bottom:593.895000px;}
.yfb{bottom:595.875000px;}
.y41{bottom:596.235000px;}
.y192{bottom:598.935000px;}
.y6c{bottom:601.095000px;}
.y90{bottom:602.715000px;}
.y138{bottom:605.235000px;}
.y175{bottom:605.775000px;}
.yd1{bottom:606.495000px;}
.y117{bottom:607.755000px;}
.yb2{bottom:611.715000px;}
.y1bb{bottom:613.155000px;}
.yfa{bottom:616.575000px;}
.y40{bottom:616.935000px;}
.y154{bottom:617.115000px;}
.y191{bottom:617.835000px;}
.y6b{bottom:621.795000px;}
.y14{bottom:624.135000px;}
.y137{bottom:625.935000px;}
.yd0{bottom:627.195000px;}
.y116{bottom:628.455000px;}
.yb1{bottom:633.495000px;}
.y174{bottom:635.475000px;}
.y3f{bottom:637.635000px;}
.y153{bottom:637.815000px;}
.y1ba{bottom:639.435000px;}
.y6a{bottom:642.495000px;}
.y190{bottom:644.115000px;}
.y13{bottom:644.835000px;}
.y8f{bottom:645.915000px;}
.y136{bottom:646.635000px;}
.ycf{bottom:647.895000px;}
.y115{bottom:649.155000px;}
.yf9{bottom:652.215000px;}
.y173{bottom:656.175000px;}
.yb0{bottom:656.715000px;}
.y3e{bottom:658.335000px;}
.y152{bottom:658.515000px;}
.y69{bottom:663.195000px;}
.y18f{bottom:663.375000px;}
.y12{bottom:665.535000px;}
.y1b9{bottom:665.895000px;}
.y8e{bottom:666.615000px;}
.yce{bottom:668.595000px;}
.yf8{bottom:672.945000px;}
.y135{bottom:673.485000px;}
.y151{bottom:679.245000px;}
.yaf{bottom:680.145000px;}
.y68{bottom:683.925000px;}
.y114{bottom:684.825000px;}
.y1b8{bottom:685.005000px;}
.y172{bottom:685.905000px;}
.y11{bottom:686.265000px;}
.y8d{bottom:687.345000px;}
.ycd{bottom:689.325000px;}
.y18e{bottom:689.685000px;}
.yf7{bottom:693.645000px;}
.y3d{bottom:694.185000px;}
.y150{bottom:699.945000px;}
.yae{bottom:702.645000px;}
.y67{bottom:704.625000px;}
.y10{bottom:706.965000px;}
.y8c{bottom:708.045000px;}
.y18d{bottom:708.765000px;}
.y1b7{bottom:711.285000px;}
.y3c{bottom:714.885000px;}
.y171{bottom:715.605000px;}
.y134{bottom:716.685000px;}
.ycc{bottom:719.565000px;}
.y113{bottom:720.465000px;}
.yf6{bottom:723.885000px;}
.y66{bottom:725.325000px;}
.yad{bottom:726.765000px;}
.y14f{bottom:726.945000px;}
.yf{bottom:727.665000px;}
.y8b{bottom:728.745000px;}
.y1b6{bottom:730.545000px;}
.y18c{bottom:735.045000px;}
.y3b{bottom:735.585000px;}
.y133{bottom:737.385000px;}
.y112{bottom:741.165000px;}
.y170{bottom:745.665000px;}
.y65{bottom:746.025000px;}
.yac{bottom:747.105000px;}
.y8a{bottom:749.445000px;}
.y18b{bottom:754.305000px;}
.y3a{bottom:756.285000px;}
.y1b5{bottom:756.825000px;}
.y132{bottom:758.085000px;}
.y111{bottom:761.865000px;}
.ye{bottom:763.305000px;}
.y64{bottom:766.725000px;}
.yab{bottom:769.605000px;}
.y89{bottom:770.145000px;}
.yf5{bottom:773.745000px;}
.y1b4{bottom:775.905000px;}
.y131{bottom:778.785000px;}
.y18a{bottom:780.585000px;}
.y110{bottom:782.565000px;}
.yd{bottom:784.005000px;}
.y63{bottom:787.425000px;}
.ycb{bottom:790.845000px;}
.yf4{bottom:791.025000px;}
.y39{bottom:791.925000px;}
.yaa{bottom:793.905000px;}
.y16f{bottom:796.425000px;}
.y88{bottom:796.965000px;}
.y189{bottom:799.665000px;}
.y1b3{bottom:802.185000px;}
.y10f{bottom:803.265000px;}
.yc{bottom:804.705000px;}
.y130{bottom:809.025000px;}
.yca{bottom:811.545000px;}
.y38{bottom:812.625000px;}
.y62{bottom:814.245000px;}
.y16e{bottom:817.125000px;}
.ya9{bottom:817.305000px;}
.y1b2{bottom:821.445000px;}
.y10e{bottom:823.965000px;}
.yb{bottom:825.405000px;}
.y188{bottom:825.945000px;}
.yc9{bottom:832.245000px;}
.y37{bottom:833.325000px;}
.y16d{bottom:837.825000px;}
.y87{bottom:840.345000px;}
.ya8{bottom:844.665000px;}
.yf3{bottom:845.385000px;}
.y187{bottom:852.405000px;}
.yc8{bottom:852.945000px;}
.y36{bottom:854.025000px;}
.ya{bottom:855.645000px;}
.y61{bottom:857.445000px;}
.y16c{bottom:858.525000px;}
.y12f{bottom:859.605000px;}
.y86{bottom:861.045000px;}
.y1b1{bottom:866.625000px;}
.y186{bottom:871.665000px;}
.y35{bottom:874.725000px;}
.yf2{bottom:876.705000px;}
.y60{bottom:878.145000px;}
.y16b{bottom:879.225000px;}
.yc7{bottom:879.765000px;}
.y10d{bottom:880.305000px;}
.y85{bottom:881.745000px;}
.y1b0{bottom:885.885000px;}
.yf1{bottom:892.365000px;}
.y34{bottom:895.425000px;}
.y185{bottom:897.945000px;}
.y5f{bottom:898.845000px;}
.y12e{bottom:901.005000px;}
.y84{bottom:902.445000px;}
.y9{bottom:905.865000px;}
.y16a{bottom:909.465000px;}
.y1af{bottom:912.210000px;}
.y33{bottom:916.170000px;}
.y184{bottom:917.070000px;}
.y5e{bottom:919.590000px;}
.y12d{bottom:921.750000px;}
.y83{bottom:923.190000px;}
.yf0{bottom:923.550000px;}
.y1ae{bottom:931.290000px;}
.y183{bottom:936.150000px;}
.y32{bottom:936.870000px;}
.y5d{bottom:940.290000px;}
.y12c{bottom:942.450000px;}
.y82{bottom:943.890000px;}
.y8{bottom:951.810000px;}
.yee{bottom:954.690000px;}
.ya7{bottom:957.570000px;}
.y169{bottom:960.090000px;}
.y5c{bottom:960.990000px;}
.y182{bottom:962.430000px;}
.y12b{bottom:963.150000px;}
.y81{bottom:964.410000px;}
.y31{bottom:972.510000px;}
.ya6{bottom:978.270000px;}
.y7{bottom:979.710000px;}
.y168{bottom:980.790000px;}
.y5b{bottom:981.690000px;}
.y1ad{bottom:984.030000px;}
.y80{bottom:985.110000px;}
.yec{bottom:986.010000px;}
.y181{bottom:988.890000px;}
.y30{bottom:993.210000px;}
.ya5{bottom:998.970000px;}
.y167{bottom:1001.490000px;}
.y5a{bottom:1002.390000px;}
.yc6{bottom:1005.810000px;}
.y180{bottom:1007.970000px;}
.y6{bottom:1008.150000px;}
.y1ac{bottom:1010.490000px;}
.y7f{bottom:1012.110000px;}
.y2f{bottom:1013.910000px;}
.ye9{bottom:1017.150000px;}
.ya4{bottom:1019.670000px;}
.y166{bottom:1022.190000px;}
.y59{bottom:1023.090000px;}
.y14e{bottom:1026.510000px;}
.y17f{bottom:1027.050000px;}
.y1ab{bottom:1029.750000px;}
.yc5{bottom:1032.810000px;}
.y2e{bottom:1034.610000px;}
.y165{bottom:1042.890000px;}
.y58{bottom:1043.790000px;}
.y14d{bottom:1047.210000px;}
.ye7{bottom:1048.290000px;}
.y17e{bottom:1053.330000px;}
.y2d{bottom:1055.310000px;}
.y1aa{bottom:1056.030000px;}
.y164{bottom:1063.590000px;}
.y57{bottom:1064.490000px;}
.y5{bottom:1065.570000px;}
.y14c{bottom:1074.210000px;}
.y1a9{bottom:1075.110000px;}
.y2c{bottom:1076.010000px;}
.ye6{bottom:1078.710000px;}
.y17d{bottom:1079.790000px;}
.y163{bottom:1084.290000px;}
.y4{bottom:1089.690000px;}
.y56{bottom:1091.310000px;}
.y2b{bottom:1096.710000px;}
.y1a8{bottom:1101.390000px;}
.y162{bottom:1104.990000px;}
.y17c{bottom:1106.250000px;}
.y2a{bottom:1117.410000px;}
.y1a7{bottom:1120.650000px;}
.y3{bottom:1132.530000px;}
.y55{bottom:1135.230000px;}
.y29{bottom:1138.110000px;}
.y1a6{bottom:1139.550000px;}
.y1{bottom:1195.740000px;}
.he{height:15.480000px;}
.h8{height:17.280000px;}
.hb{height:30.960000px;}
.hd{height:30.996000px;}
.h9{height:31.140000px;}
.hc{height:38.100586px;}
.ha{height:39.049805px;}
.h7{height:43.215117px;}
.hf{height:45.549492px;}
.h5{height:47.901094px;}
.h2{height:52.066406px;}
.h6{height:54.864844px;}
.h4{height:59.436914px;}
.h3{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:101.880000px;}
.w7{width:121.176000px;}
.w3{width:143.460000px;}
.w5{width:146.016000px;}
.w4{width:164.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:37.080000px;}
.x1f{left:43.065000px;}
.x17{left:46.614000px;}
.x1b{left:50.400000px;}
.x19{left:72.585000px;}
.xa{left:108.035987px;}
.x4{left:121.355987px;}
.x15{left:125.315987px;}
.x14{left:134.315987px;}
.xb{left:148.895987px;}
.x21{left:162.029987px;}
.x12{left:171.029987px;}
.x11{left:221.609987px;}
.x16{left:231.149987px;}
.xe{left:240.149987px;}
.x3{left:247.529987px;}
.x18{left:251.490000px;}
.xc{left:258.329987px;}
.x10{left:277.229987px;}
.xf{left:295.274987px;}
.x9{left:309.674987px;}
.x13{left:330.914987px;}
.x8{left:332.354987px;}
.x7{left:346.934987px;}
.x5{left:398.054987px;}
.x6{left:401.294987px;}
.x20{left:405.074987px;}
.x2{left:408.854987px;}
.x1a{left:415.695000px;}
.xd{left:437.654987px;}
.x1{left:554.684987px;}
.x1c{left:561.705000px;}
.x1e{left:663.765000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.225067pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.023040pt;}
.ls9{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.150933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws8{word-spacing:-17.264640pt;}
.wsd{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.430933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.054933pt;}
.wsb{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.904000pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-3.861333pt;}
._6{margin-left:-2.560000pt;}
._2{margin-left:-0.973440pt;}
._0{width:0.956160pt;}
._1{width:1.890347pt;}
._7{width:3.136000pt;}
._8{width:4.224000pt;}
._10{width:5.888000pt;}
._13{width:6.848000pt;}
._17{width:8.397440pt;}
._3{width:9.472000pt;}
._12{width:11.172693pt;}
._11{width:12.301440pt;}
._4{width:14.016000pt;}
._5{width:15.057280pt;}
._d{width:17.664000pt;}
._b{width:19.178667pt;}
._c{width:20.096000pt;}
._15{width:21.120000pt;}
._9{width:22.016000pt;}
._a{width:22.934187pt;}
._19{width:24.249600pt;}
._14{width:25.946880pt;}
._e{width:27.136000pt;}
._f{width:28.103680pt;}
._20{width:29.056000pt;}
._21{width:30.161280pt;}
._1b{width:31.680000pt;}
._1c{width:32.579840pt;}
._1d{width:34.001493pt;}
._1e{width:34.906880pt;}
._1f{width:35.840000pt;}
._16{width:36.992000pt;}
._18{width:38.542507pt;}
._22{width:752.138667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:2.560000pt;}
.yef{bottom:2.720000pt;}
.ye8{bottom:2.880000pt;}
.yed{bottom:16.320000pt;}
.yea{bottom:16.480000pt;}
.y2{bottom:49.920000pt;}
.ye5{bottom:100.960000pt;}
.y14b{bottom:102.240000pt;}
.yc4{bottom:106.880000pt;}
.ya3{bottom:111.200000pt;}
.y7e{bottom:116.960000pt;}
.ye4{bottom:119.360000pt;}
.y14a{bottom:120.640000pt;}
.y28{bottom:122.240000pt;}
.y1a5{bottom:128.160000pt;}
.ya2{bottom:129.440000pt;}
.y161{bottom:133.920000pt;}
.y7d{bottom:135.360000pt;}
.y10c{bottom:136.960000pt;}
.y12a{bottom:137.120000pt;}
.ye3{bottom:137.760000pt;}
.y149{bottom:139.040000pt;}
.y54{bottom:140.320000pt;}
.y27{bottom:140.640000pt;}
.y1a4{bottom:145.120000pt;}
.yc3{bottom:145.440000pt;}
.ya1{bottom:147.840000pt;}
.y129{bottom:155.520000pt;}
.ye2{bottom:156.160000pt;}
.y148{bottom:157.440000pt;}
.y53{bottom:158.720000pt;}
.y26{bottom:159.040000pt;}
.y7c{bottom:159.200000pt;}
.yc2{bottom:163.840000pt;}
.y160{bottom:165.600000pt;}
.y1a3{bottom:168.640000pt;}
.ya0{bottom:171.840000pt;}
.y128{bottom:173.946667pt;}
.ye1{bottom:174.586667pt;}
.y147{bottom:175.866667pt;}
.y52{bottom:177.146667pt;}
.y25{bottom:177.466667pt;}
.y10b{bottom:181.946667pt;}
.yc1{bottom:182.266667pt;}
.y15f{bottom:184.026667pt;}
.y1a2{bottom:192.186667pt;}
.y127{bottom:192.346667pt;}
.ye0{bottom:192.986667pt;}
.y51{bottom:195.546667pt;}
.y24{bottom:195.866667pt;}
.y7b{bottom:197.626667pt;}
.y146{bottom:199.706667pt;}
.y10a{bottom:200.346667pt;}
.yc0{bottom:200.666667pt;}
.y15e{bottom:202.426667pt;}
.y9f{bottom:210.266667pt;}
.y126{bottom:210.746667pt;}
.ydf{bottom:211.386667pt;}
.y50{bottom:213.946667pt;}
.y23{bottom:214.266667pt;}
.y1a1{bottom:215.706667pt;}
.y7a{bottom:216.026667pt;}
.y109{bottom:218.746667pt;}
.ybf{bottom:219.066667pt;}
.y15d{bottom:220.826667pt;}
.y9e{bottom:228.666667pt;}
.y125{bottom:229.146667pt;}
.y1a0{bottom:232.666667pt;}
.y79{bottom:234.426667pt;}
.y145{bottom:238.106667pt;}
.yde{bottom:238.266667pt;}
.y1c7{bottom:238.426667pt;}
.y15c{bottom:239.226667pt;}
.y22{bottom:241.306667pt;}
.ybe{bottom:242.906667pt;}
.y4f{bottom:245.786667pt;}
.y9d{bottom:247.066667pt;}
.y108{bottom:250.426667pt;}
.y19f{bottom:256.026667pt;}
.y144{bottom:256.506667pt;}
.y15b{bottom:257.626667pt;}
.y124{bottom:260.986667pt;}
.y78{bottom:261.306667pt;}
.y1c6{bottom:261.946667pt;}
.y4e{bottom:264.186667pt;}
.y9c{bottom:265.466667pt;}
.y107{bottom:268.826667pt;}
.y19e{bottom:273.146667pt;}
.y143{bottom:274.906667pt;}
.y1c5{bottom:279.066667pt;}
.ybd{bottom:281.306667pt;}
.y4d{bottom:282.586667pt;}
.ydd{bottom:283.226667pt;}
.y9b{bottom:283.866667pt;}
.y15a{bottom:284.506667pt;}
.y21{bottom:286.266667pt;}
.y106{bottom:287.226667pt;}
.y19d{bottom:289.946667pt;}
.y123{bottom:292.666667pt;}
.ybc{bottom:299.706667pt;}
.y4c{bottom:300.986667pt;}
.ydc{bottom:301.626667pt;}
.y142{bottom:301.786667pt;}
.y9a{bottom:302.266667pt;}
.y1c4{bottom:302.426667pt;}
.y20{bottom:304.666667pt;}
.y77{bottom:306.266667pt;}
.y122{bottom:311.066667pt;}
.y19c{bottom:313.306667pt;}
.ybb{bottom:318.106667pt;}
.y105{bottom:319.066667pt;}
.y4b{bottom:319.386667pt;}
.ydb{bottom:320.026667pt;}
.y99{bottom:320.666667pt;}
.y76{bottom:324.666667pt;}
.y121{bottom:329.466667pt;}
.y19b{bottom:330.266667pt;}
.yba{bottom:336.506667pt;}
.y104{bottom:337.466667pt;}
.y4a{bottom:337.786667pt;}
.yda{bottom:338.426667pt;}
.y1f{bottom:339.066667pt;}
.y1c3{bottom:342.746667pt;}
.y75{bottom:343.066667pt;}
.y141{bottom:346.746667pt;}
.y120{bottom:347.866667pt;}
.y19a{bottom:353.786667pt;}
.y103{bottom:355.866667pt;}
.y49{bottom:356.186667pt;}
.yd9{bottom:356.826667pt;}
.y1e{bottom:357.466667pt;}
.yb9{bottom:360.346667pt;}
.y74{bottom:361.466667pt;}
.y98{bottom:362.906667pt;}
.y140{bottom:365.146667pt;}
.y11f{bottom:366.266667pt;}
.y199{bottom:370.746667pt;}
.yd8{bottom:375.226667pt;}
.y1d{bottom:375.866667pt;}
.y73{bottom:379.866667pt;}
.y1c2{bottom:383.386667pt;}
.y13f{bottom:383.546667pt;}
.y11e{bottom:384.666667pt;}
.y102{bottom:387.586667pt;}
.y48{bottom:387.906667pt;}
.yd7{bottom:393.666667pt;}
.y198{bottom:394.146667pt;}
.y1c{bottom:394.306667pt;}
.y72{bottom:398.306667pt;}
.y17b{bottom:398.626667pt;}
.yb8{bottom:398.946667pt;}
.y97{bottom:401.506667pt;}
.y13e{bottom:401.986667pt;}
.y11d{bottom:403.106667pt;}
.y101{bottom:405.986667pt;}
.y47{bottom:406.306667pt;}
.y1c1{bottom:406.786667pt;}
.y197{bottom:411.106667pt;}
.yd6{bottom:412.066667pt;}
.y1b{bottom:412.546667pt;}
.y71{bottom:416.706667pt;}
.yb7{bottom:417.346667pt;}
.y96{bottom:419.906667pt;}
.y13d{bottom:420.386667pt;}
.y159{bottom:421.506667pt;}
.y1c0{bottom:423.746667pt;}
.y100{bottom:424.386667pt;}
.y46{bottom:424.706667pt;}
.y17a{bottom:430.466667pt;}
.y1a{bottom:430.946667pt;}
.y196{bottom:434.626667pt;}
.y11c{bottom:434.786667pt;}
.y70{bottom:435.106667pt;}
.y95{bottom:438.306667pt;}
.y13c{bottom:438.786667pt;}
.yd5{bottom:438.946667pt;}
.y158{bottom:439.906667pt;}
.yff{bottom:442.786667pt;}
.y45{bottom:443.106667pt;}
.yb6{bottom:444.066667pt;}
.y1bf{bottom:447.106667pt;}
.y179{bottom:448.866667pt;}
.y19{bottom:449.346667pt;}
.y94{bottom:456.706667pt;}
.y13b{bottom:457.186667pt;}
.y195{bottom:458.146667pt;}
.y157{bottom:458.306667pt;}
.y6f{bottom:459.106667pt;}
.y44{bottom:461.506667pt;}
.y1be{bottom:464.226667pt;}
.y11b{bottom:466.626667pt;}
.y178{bottom:467.266667pt;}
.y18{bottom:467.746667pt;}
.yfe{bottom:474.466667pt;}
.y93{bottom:475.106667pt;}
.y156{bottom:476.706667pt;}
.y43{bottom:479.906667pt;}
.y13a{bottom:481.026667pt;}
.yd4{bottom:483.906667pt;}
.y11a{bottom:485.026667pt;}
.y17{bottom:486.146667pt;}
.y1bd{bottom:487.586667pt;}
.yb5{bottom:488.546667pt;}
.y194{bottom:491.906667pt;}
.yfd{bottom:492.866667pt;}
.y92{bottom:493.346667pt;}
.y177{bottom:493.666667pt;}
.y6e{bottom:497.506667pt;}
.yd3{bottom:502.306667pt;}
.y119{bottom:503.426667pt;}
.y155{bottom:503.586667pt;}
.yb4{bottom:503.906667pt;}
.y16{bottom:504.546667pt;}
.yfc{bottom:511.266667pt;}
.y42{bottom:511.586667pt;}
.y91{bottom:511.746667pt;}
.y176{bottom:512.066667pt;}
.y193{bottom:515.266667pt;}
.y6d{bottom:515.906667pt;}
.y139{bottom:519.586667pt;}
.yd2{bottom:520.706667pt;}
.y118{bottom:521.826667pt;}
.y15{bottom:522.946667pt;}
.yb3{bottom:524.546667pt;}
.y1bc{bottom:527.906667pt;}
.yfb{bottom:529.666667pt;}
.y41{bottom:529.986667pt;}
.y192{bottom:532.386667pt;}
.y6c{bottom:534.306667pt;}
.y90{bottom:535.746667pt;}
.y138{bottom:537.986667pt;}
.y175{bottom:538.466667pt;}
.yd1{bottom:539.106667pt;}
.y117{bottom:540.226667pt;}
.yb2{bottom:543.746667pt;}
.y1bb{bottom:545.026667pt;}
.yfa{bottom:548.066667pt;}
.y40{bottom:548.386667pt;}
.y154{bottom:548.546667pt;}
.y191{bottom:549.186667pt;}
.y6b{bottom:552.706667pt;}
.y14{bottom:554.786667pt;}
.y137{bottom:556.386667pt;}
.yd0{bottom:557.506667pt;}
.y116{bottom:558.626667pt;}
.yb1{bottom:563.106667pt;}
.y174{bottom:564.866667pt;}
.y3f{bottom:566.786667pt;}
.y153{bottom:566.946667pt;}
.y1ba{bottom:568.386667pt;}
.y6a{bottom:571.106667pt;}
.y190{bottom:572.546667pt;}
.y13{bottom:573.186667pt;}
.y8f{bottom:574.146667pt;}
.y136{bottom:574.786667pt;}
.ycf{bottom:575.906667pt;}
.y115{bottom:577.026667pt;}
.yf9{bottom:579.746667pt;}
.y173{bottom:583.266667pt;}
.yb0{bottom:583.746667pt;}
.y3e{bottom:585.186667pt;}
.y152{bottom:585.346667pt;}
.y69{bottom:589.506667pt;}
.y18f{bottom:589.666667pt;}
.y12{bottom:591.586667pt;}
.y1b9{bottom:591.906667pt;}
.y8e{bottom:592.546667pt;}
.yce{bottom:594.306667pt;}
.yf8{bottom:598.173333pt;}
.y135{bottom:598.653333pt;}
.y151{bottom:603.773333pt;}
.yaf{bottom:604.573333pt;}
.y68{bottom:607.933333pt;}
.y114{bottom:608.733333pt;}
.y1b8{bottom:608.893333pt;}
.y172{bottom:609.693333pt;}
.y11{bottom:610.013333pt;}
.y8d{bottom:610.973333pt;}
.ycd{bottom:612.733333pt;}
.y18e{bottom:613.053333pt;}
.yf7{bottom:616.573333pt;}
.y3d{bottom:617.053333pt;}
.y150{bottom:622.173333pt;}
.yae{bottom:624.573333pt;}
.y67{bottom:626.333333pt;}
.y10{bottom:628.413333pt;}
.y8c{bottom:629.373333pt;}
.y18d{bottom:630.013333pt;}
.y1b7{bottom:632.253333pt;}
.y3c{bottom:635.453333pt;}
.y171{bottom:636.093333pt;}
.y134{bottom:637.053333pt;}
.ycc{bottom:639.613333pt;}
.y113{bottom:640.413333pt;}
.yf6{bottom:643.453333pt;}
.y66{bottom:644.733333pt;}
.yad{bottom:646.013333pt;}
.y14f{bottom:646.173333pt;}
.yf{bottom:646.813333pt;}
.y8b{bottom:647.773333pt;}
.y1b6{bottom:649.373333pt;}
.y18c{bottom:653.373333pt;}
.y3b{bottom:653.853333pt;}
.y133{bottom:655.453333pt;}
.y112{bottom:658.813333pt;}
.y170{bottom:662.813333pt;}
.y65{bottom:663.133333pt;}
.yac{bottom:664.093333pt;}
.y8a{bottom:666.173333pt;}
.y18b{bottom:670.493333pt;}
.y3a{bottom:672.253333pt;}
.y1b5{bottom:672.733333pt;}
.y132{bottom:673.853333pt;}
.y111{bottom:677.213333pt;}
.ye{bottom:678.493333pt;}
.y64{bottom:681.533333pt;}
.yab{bottom:684.093333pt;}
.y89{bottom:684.573333pt;}
.yf5{bottom:687.773333pt;}
.y1b4{bottom:689.693333pt;}
.y131{bottom:692.253333pt;}
.y18a{bottom:693.853333pt;}
.y110{bottom:695.613333pt;}
.yd{bottom:696.893333pt;}
.y63{bottom:699.933333pt;}
.ycb{bottom:702.973333pt;}
.yf4{bottom:703.133333pt;}
.y39{bottom:703.933333pt;}
.yaa{bottom:705.693333pt;}
.y16f{bottom:707.933333pt;}
.y88{bottom:708.413333pt;}
.y189{bottom:710.813333pt;}
.y1b3{bottom:713.053333pt;}
.y10f{bottom:714.013333pt;}
.yc{bottom:715.293333pt;}
.y130{bottom:719.133333pt;}
.yca{bottom:721.373333pt;}
.y38{bottom:722.333333pt;}
.y62{bottom:723.773333pt;}
.y16e{bottom:726.333333pt;}
.ya9{bottom:726.493333pt;}
.y1b2{bottom:730.173333pt;}
.y10e{bottom:732.413333pt;}
.yb{bottom:733.693333pt;}
.y188{bottom:734.173333pt;}
.yc9{bottom:739.773333pt;}
.y37{bottom:740.733333pt;}
.y16d{bottom:744.733333pt;}
.y87{bottom:746.973333pt;}
.ya8{bottom:750.813333pt;}
.yf3{bottom:751.453333pt;}
.y187{bottom:757.693333pt;}
.yc8{bottom:758.173333pt;}
.y36{bottom:759.133333pt;}
.ya{bottom:760.573333pt;}
.y61{bottom:762.173333pt;}
.y16c{bottom:763.133333pt;}
.y12f{bottom:764.093333pt;}
.y86{bottom:765.373333pt;}
.y1b1{bottom:770.333333pt;}
.y186{bottom:774.813333pt;}
.y35{bottom:777.533333pt;}
.yf2{bottom:779.293333pt;}
.y60{bottom:780.573333pt;}
.y16b{bottom:781.533333pt;}
.yc7{bottom:782.013333pt;}
.y10d{bottom:782.493333pt;}
.y85{bottom:783.773333pt;}
.y1b0{bottom:787.453333pt;}
.yf1{bottom:793.213333pt;}
.y34{bottom:795.933333pt;}
.y185{bottom:798.173333pt;}
.y5f{bottom:798.973333pt;}
.y12e{bottom:800.893333pt;}
.y84{bottom:802.173333pt;}
.y9{bottom:805.213333pt;}
.y16a{bottom:808.413333pt;}
.y1af{bottom:810.853333pt;}
.y33{bottom:814.373333pt;}
.y184{bottom:815.173333pt;}
.y5e{bottom:817.413333pt;}
.y12d{bottom:819.333333pt;}
.y83{bottom:820.613333pt;}
.yf0{bottom:820.933333pt;}
.y1ae{bottom:827.813333pt;}
.y183{bottom:832.133333pt;}
.y32{bottom:832.773333pt;}
.y5d{bottom:835.813333pt;}
.y12c{bottom:837.733333pt;}
.y82{bottom:839.013333pt;}
.y8{bottom:846.053333pt;}
.yee{bottom:848.613333pt;}
.ya7{bottom:851.173333pt;}
.y169{bottom:853.413333pt;}
.y5c{bottom:854.213333pt;}
.y182{bottom:855.493333pt;}
.y12b{bottom:856.133333pt;}
.y81{bottom:857.253333pt;}
.y31{bottom:864.453333pt;}
.ya6{bottom:869.573333pt;}
.y7{bottom:870.853333pt;}
.y168{bottom:871.813333pt;}
.y5b{bottom:872.613333pt;}
.y1ad{bottom:874.693333pt;}
.y80{bottom:875.653333pt;}
.yec{bottom:876.453333pt;}
.y181{bottom:879.013333pt;}
.y30{bottom:882.853333pt;}
.ya5{bottom:887.973333pt;}
.y167{bottom:890.213333pt;}
.y5a{bottom:891.013333pt;}
.yc6{bottom:894.053333pt;}
.y180{bottom:895.973333pt;}
.y6{bottom:896.133333pt;}
.y1ac{bottom:898.213333pt;}
.y7f{bottom:899.653333pt;}
.y2f{bottom:901.253333pt;}
.ye9{bottom:904.133333pt;}
.ya4{bottom:906.373333pt;}
.y166{bottom:908.613333pt;}
.y59{bottom:909.413333pt;}
.y14e{bottom:912.453333pt;}
.y17f{bottom:912.933333pt;}
.y1ab{bottom:915.333333pt;}
.yc5{bottom:918.053333pt;}
.y2e{bottom:919.653333pt;}
.y165{bottom:927.013333pt;}
.y58{bottom:927.813333pt;}
.y14d{bottom:930.853333pt;}
.ye7{bottom:931.813333pt;}
.y17e{bottom:936.293333pt;}
.y2d{bottom:938.053333pt;}
.y1aa{bottom:938.693333pt;}
.y164{bottom:945.413333pt;}
.y57{bottom:946.213333pt;}
.y5{bottom:947.173333pt;}
.y14c{bottom:954.853333pt;}
.y1a9{bottom:955.653333pt;}
.y2c{bottom:956.453333pt;}
.ye6{bottom:958.853333pt;}
.y17d{bottom:959.813333pt;}
.y163{bottom:963.813333pt;}
.y4{bottom:968.613333pt;}
.y56{bottom:970.053333pt;}
.y2b{bottom:974.853333pt;}
.y1a8{bottom:979.013333pt;}
.y162{bottom:982.213333pt;}
.y17c{bottom:983.333333pt;}
.y2a{bottom:993.253333pt;}
.y1a7{bottom:996.133333pt;}
.y3{bottom:1006.693333pt;}
.y55{bottom:1009.093333pt;}
.y29{bottom:1011.653333pt;}
.y1a6{bottom:1012.933333pt;}
.y1{bottom:1062.880000pt;}
.he{height:13.760000pt;}
.h8{height:15.360000pt;}
.hb{height:27.520000pt;}
.hd{height:27.552000pt;}
.h9{height:27.680000pt;}
.hc{height:33.867188pt;}
.ha{height:34.710938pt;}
.h7{height:38.413438pt;}
.hf{height:40.488438pt;}
.h5{height:42.578750pt;}
.h2{height:46.281250pt;}
.h6{height:48.768750pt;}
.h4{height:52.832812pt;}
.h3{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:90.560000pt;}
.w7{width:107.712000pt;}
.w3{width:127.520000pt;}
.w5{width:129.792000pt;}
.w4{width:145.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:32.960000pt;}
.x1f{left:38.280000pt;}
.x17{left:41.434667pt;}
.x1b{left:44.800000pt;}
.x19{left:64.520000pt;}
.xa{left:96.031988pt;}
.x4{left:107.871988pt;}
.x15{left:111.391988pt;}
.x14{left:119.391988pt;}
.xb{left:132.351988pt;}
.x21{left:144.026655pt;}
.x12{left:152.026655pt;}
.x11{left:196.986655pt;}
.x16{left:205.466655pt;}
.xe{left:213.466655pt;}
.x3{left:220.026655pt;}
.x18{left:223.546667pt;}
.xc{left:229.626655pt;}
.x10{left:246.426655pt;}
.xf{left:262.466655pt;}
.x9{left:275.266655pt;}
.x13{left:294.146655pt;}
.x8{left:295.426655pt;}
.x7{left:308.386655pt;}
.x5{left:353.826655pt;}
.x6{left:356.706655pt;}
.x20{left:360.066655pt;}
.x2{left:363.426655pt;}
.x1a{left:369.506667pt;}
.xd{left:389.026655pt;}
.x1{left:493.053322pt;}
.x1c{left:499.293333pt;}
.x1e{left:590.013333pt;}
}




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