
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b775edb6c07881caab8f01ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_8dfcd07337859f7b97b8d420.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b4b59911de88008bab498d62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_6630c0179c09e3171582ff75.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_9ea50a101517b565ffb35d37.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_166eccfb530af5288b9c1411.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_676732112b19c292ea4b1f7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_cee84814439bb95cccb05338.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v3{vertical-align:20.880000px;}
.ls16{letter-spacing:-0.391800px;}
.ls9{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls11{letter-spacing:-0.038880px;}
.ls1d{letter-spacing:-0.031680px;}
.ls1a{letter-spacing:-0.015480px;}
.ls17{letter-spacing:-0.011160px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.006840px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:47.726640px;}
.lse{letter-spacing:63.566640px;}
.ls15{letter-spacing:64.766640px;}
.ls1c{letter-spacing:80.846640px;}
.ls14{letter-spacing:84.086640px;}
.ls1b{letter-spacing:84.446640px;}
.ls19{letter-spacing:125.486640px;}
.ls18{letter-spacing:126.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.215240px;}
.wsd{word-spacing:-13.210920px;}
.ws9{word-spacing:-13.187520px;}
.wsb{word-spacing:-13.162800px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._6{margin-left:-3.547200px;}
._7{margin-left:-2.344199px;}
._0{margin-left:-1.110000px;}
._2{width:1.174236px;}
._9{width:2.765400px;}
._c{width:3.967800px;}
._d{width:5.050200px;}
._3{width:7.033800px;}
._10{width:8.074288px;}
._b{width:9.150601px;}
._a{width:10.220400px;}
._8{width:12.144000px;}
._5{width:14.516399px;}
._4{width:15.571200px;}
._e{width:16.773480px;}
._f{width:17.915760px;}
._13{width:19.899720px;}
._17{width:21.162240px;}
._1{width:22.647600px;}
._1a{width:26.392680px;}
._11{width:37.514880px;}
._19{width:40.701240px;}
._14{width:64.568880px;}
._18{width:66.372480px;}
._1b{width:71.302320px;}
._12{width:72.745200px;}
._15{width:216.371880px;}
._16{width:218.175480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y64{bottom:7.830000px;}
.y6a{bottom:7.920000px;}
.ya0{bottom:12.330000px;}
.y6c{bottom:12.420000px;}
.y9d{bottom:25.380000px;}
.y63{bottom:25.470000px;}
.y70{bottom:29.880000px;}
.y69{bottom:29.970000px;}
.y62{bottom:43.020000px;}
.yd0{bottom:43.050000px;}
.y99{bottom:43.110000px;}
.y6f{bottom:44.130000px;}
.y68{bottom:52.020000px;}
.y6e{bottom:52.050000px;}
.y109{bottom:52.110000px;}
.y2{bottom:73.380000px;}
.ya3{bottom:74.070000px;}
.y25{bottom:74.190000px;}
.ya2{bottom:96.210000px;}
.y1{bottom:101.640000px;}
.y135{bottom:113.160000px;}
.y9f{bottom:116.130000px;}
.y158{bottom:116.760000px;}
.ycb{bottom:127.650000px;}
.y7e{bottom:128.820000px;}
.y51{bottom:137.100000px;}
.y157{bottom:143.400000px;}
.y113{bottom:144.210000px;}
.yca{bottom:145.290000px;}
.y7d{bottom:146.460000px;}
.y23{bottom:154.380000px;}
.y50{bottom:154.650000px;}
.y134{bottom:158.070000px;}
.yf2{bottom:160.770000px;}
.y7c{bottom:164.010000px;}
.y9e{bottom:165.540000px;}
.y156{bottom:169.950000px;}
.y22{bottom:171.930000px;}
.y112{bottom:179.760000px;}
.yc9{bottom:180.840000px;}
.y7b{bottom:181.560000px;}
.yf1{bottom:187.320000px;}
.y4f{bottom:190.290000px;}
.y155{bottom:196.500000px;}
.y111{bottom:197.310000px;}
.yc8{bottom:198.390000px;}
.y133{bottom:202.980000px;}
.y21{bottom:207.570000px;}
.y7a{bottom:208.200000px;}
.y110{bottom:214.950000px;}
.yc7{bottom:216.030000px;}
.y4e{bottom:216.840000px;}
.yf0{bottom:222.960000px;}
.y154{bottom:223.140000px;}
.y20{bottom:225.120000px;}
.y10f{bottom:232.500000px;}
.y9c{bottom:237.090000px;}
.yef{bottom:240.510000px;}
.y1f{bottom:242.760000px;}
.y79{bottom:243.750000px;}
.y153{bottom:249.690000px;}
.y10e{bottom:250.140000px;}
.yc6{bottom:251.580000px;}
.y4d{bottom:252.390000px;}
.yee{bottom:258.960000px;}
.y78{bottom:261.390000px;}
.y132{bottom:265.440000px;}
.y10d{bottom:267.690000px;}
.y4c{bottom:269.940000px;}
.y152{bottom:276.330000px;}
.yed{bottom:276.510000px;}
.yc5{bottom:278.220000px;}
.y1e{bottom:278.310000px;}
.y77{bottom:278.940000px;}
.y9b{bottom:282.000000px;}
.y10c{bottom:285.240000px;}
.y4b{bottom:288.390000px;}
.yec{bottom:294.960000px;}
.y1d{bottom:295.860000px;}
.y76{bottom:296.490000px;}
.y10b{bottom:302.880000px;}
.y4a{bottom:305.940000px;}
.yeb{bottom:312.510000px;}
.y1c{bottom:313.500000px;}
.yc4{bottom:313.770000px;}
.y75{bottom:314.130000px;}
.y151{bottom:320.430000px;}
.y49{bottom:324.390000px;}
.y9a{bottom:326.910000px;}
.y131{bottom:327.990000px;}
.y10a{bottom:329.430000px;}
.yc3{bottom:331.320000px;}
.y74{bottom:331.680000px;}
.y1b{bottom:340.410000px;}
.y48{bottom:341.940000px;}
.y150{bottom:347.340000px;}
.yea{bottom:348.870000px;}
.yc2{bottom:348.960000px;}
.y73{bottom:349.230000px;}
.y130{bottom:355.350000px;}
.y108{bottom:362.370000px;}
.yc1{bottom:366.510000px;}
.y72{bottom:366.870000px;}
.y47{bottom:378.390000px;}
.ye9{bottom:384.060000px;}
.yc0{bottom:384.960000px;}
.y1a{bottom:388.650000px;}
.y98{bottom:389.370000px;}
.y71{bottom:393.420000px;}
.y14f{bottom:395.670000px;}
.y46{bottom:396.030000px;}
.ye8{bottom:401.700000px;}
.ybf{bottom:402.510000px;}
.y12f{bottom:404.040000px;}
.y19{bottom:406.200000px;}
.y45{bottom:413.580000px;}
.y12e{bottom:421.590000px;}
.y14e{bottom:422.580000px;}
.y18{bottom:423.840000px;}
.y6d{bottom:426.450000px;}
.y44{bottom:431.220000px;}
.y107{bottom:433.920000px;}
.ye7{bottom:437.250000px;}
.ybe{bottom:438.150000px;}
.y17{bottom:441.390000px;}
.y43{bottom:448.770000px;}
.y97{bottom:451.920000px;}
.ye6{bottom:454.800000px;}
.y12d{bottom:457.230000px;}
.y14d{bottom:459.570000px;}
.ybd{bottom:464.700000px;}
.y42{bottom:466.320000px;}
.ye5{bottom:472.470000px;}
.y12c{bottom:474.810000px;}
.y16{bottom:477.060000px;}
.y14c{bottom:477.150000px;}
.y96{bottom:479.310000px;}
.y106{bottom:483.360000px;}
.y41{bottom:483.990000px;}
.ye4{bottom:490.020000px;}
.y12b{bottom:492.360000px;}
.y15{bottom:494.610000px;}
.y14b{bottom:494.790000px;}
.y6b{bottom:497.940000px;}
.ybc{bottom:500.280000px;}
.ye3{bottom:507.660000px;}
.y40{bottom:510.540000px;}
.y14{bottom:512.160000px;}
.y14a{bottom:512.340000px;}
.ybb{bottom:517.830000px;}
.y12a{bottom:519.000000px;}
.y95{bottom:528.000000px;}
.y13{bottom:529.800000px;}
.y149{bottom:529.980000px;}
.ye2{bottom:534.210000px;}
.yba{bottom:536.280000px;}
.y94{bottom:545.550000px;}
.y3f{bottom:546.090000px;}
.y67{bottom:547.350000px;}
.yb9{bottom:553.830000px;}
.y129{bottom:554.550000px;}
.y105{bottom:554.910000px;}
.y12{bottom:556.710000px;}
.y148{bottom:556.890000px;}
.y3e{bottom:563.730000px;}
.ye1{bottom:569.760000px;}
.yb8{bottom:572.280000px;}
.y93{bottom:581.190000px;}
.y3d{bottom:581.280000px;}
.ye0{bottom:587.400000px;}
.yb7{bottom:589.830000px;}
.y128{bottom:590.190000px;}
.y147{bottom:594.150000px;}
.y92{bottom:598.740000px;}
.y3c{bottom:598.920000px;}
.y104{bottom:599.820000px;}
.ydf{bottom:604.950000px;}
.y11{bottom:605.310000px;}
.y127{bottom:607.740000px;}
.y91{bottom:617.190000px;}
.y66{bottom:618.900000px;}
.yde{bottom:622.590000px;}
.y3b{bottom:625.470000px;}
.y126{bottom:626.190000px;}
.yb6{bottom:626.280000px;}
.y10{bottom:642.300000px;}
.y146{bottom:642.480000px;}
.y125{bottom:643.740000px;}
.yb5{bottom:643.920000px;}
.y103{bottom:644.730000px;}
.ydd{bottom:649.140000px;}
.y90{bottom:652.740000px;}
.yf{bottom:659.850000px;}
.y145{bottom:660.030000px;}
.y3a{bottom:661.020000px;}
.yb4{bottom:661.470000px;}
.y124{bottom:662.190000px;}
.y65{bottom:663.810000px;}
.ye{bottom:677.490000px;}
.y144{bottom:677.670000px;}
.y39{bottom:678.660000px;}
.yb3{bottom:679.020000px;}
.y8f{bottom:679.290000px;}
.y123{bottom:679.740000px;}
.ydc{bottom:684.690000px;}
.yd{bottom:695.040000px;}
.y143{bottom:695.220000px;}
.y38{bottom:696.210000px;}
.yb2{bottom:696.660000px;}
.ydb{bottom:702.330000px;}
.y102{bottom:707.190000px;}
.y61{bottom:708.720000px;}
.yc{bottom:712.680000px;}
.y142{bottom:712.770000px;}
.y37{bottom:713.850000px;}
.y8e{bottom:714.930000px;}
.y122{bottom:716.190000px;}
.yda{bottom:719.880000px;}
.yb1{bottom:723.210000px;}
.yb{bottom:730.230000px;}
.y141{bottom:730.410000px;}
.y36{bottom:731.400000px;}
.y8d{bottom:732.480000px;}
.yd9{bottom:737.520000px;}
.y121{bottom:742.740000px;}
.yd8{bottom:755.070000px;}
.ya{bottom:757.140000px;}
.y140{bottom:757.320000px;}
.y35{bottom:757.950000px;}
.yb0{bottom:758.850000px;}
.y8c{bottom:768.030000px;}
.y101{bottom:769.740000px;}
.yd7{bottom:772.620000px;}
.yaf{bottom:776.400000px;}
.y120{bottom:778.290000px;}
.yd6{bottom:790.260000px;}
.y60{bottom:792.600000px;}
.y34{bottom:793.590000px;}
.yae{bottom:793.950000px;}
.y11f{bottom:795.930000px;}
.y100{bottom:797.100000px;}
.y8b{bottom:803.670000px;}
.y9{bottom:805.380000px;}
.y13f{bottom:805.560000px;}
.yd5{bottom:807.810000px;}
.y5f{bottom:810.150000px;}
.y33{bottom:811.140000px;}
.yad{bottom:811.590000px;}
.y11e{bottom:813.480000px;}
.y8a{bottom:821.220000px;}
.y13e{bottom:823.200000px;}
.yd4{bottom:825.450000px;}
.y5e{bottom:827.700000px;}
.y32{bottom:828.780000px;}
.yac{bottom:829.140000px;}
.y11d{bottom:831.030000px;}
.y8{bottom:841.200000px;}
.yff{bottom:845.790000px;}
.y5d{bottom:846.150000px;}
.y31{bottom:846.330000px;}
.y11c{bottom:848.670000px;}
.yd3{bottom:852.000000px;}
.yab{bottom:855.780000px;}
.y89{bottom:856.860000px;}
.y13d{bottom:858.750000px;}
.yfe{bottom:863.340000px;}
.y30{bottom:863.880000px;}
.y5c{bottom:864.510000px;}
.y11b{bottom:866.220000px;}
.y13c{bottom:876.300000px;}
.y7{bottom:877.200000px;}
.y88{bottom:883.410000px;}
.yd2{bottom:884.940000px;}
.y2f{bottom:890.790000px;}
.yaa{bottom:891.330000px;}
.y13b{bottom:893.940000px;}
.yfd{bottom:898.890000px;}
.y5b{bottom:900.960000px;}
.y11a{bottom:901.860000px;}
.ya9{bottom:908.880000px;}
.y13a{bottom:911.490000px;}
.y6{bottom:913.200000px;}
.yfc{bottom:916.530000px;}
.y5a{bottom:918.600000px;}
.y87{bottom:918.960000px;}
.y119{bottom:919.410000px;}
.ya8{bottom:926.520000px;}
.y139{bottom:929.130000px;}
.yd1{bottom:929.850000px;}
.y118{bottom:936.960000px;}
.y2e{bottom:939.120000px;}
.ya7{bottom:944.070000px;}
.y5{bottom:949.290000px;}
.yfb{bottom:952.080000px;}
.y59{bottom:954.150000px;}
.y86{bottom:954.600000px;}
.y2d{bottom:956.670000px;}
.ya6{bottom:961.710000px;}
.y138{bottom:962.070000px;}
.y58{bottom:971.790000px;}
.y85{bottom:972.150000px;}
.ycf{bottom:974.850000px;}
.ya5{bottom:979.260000px;}
.y4{bottom:987.630000px;}
.yfa{bottom:987.720000px;}
.y57{bottom:989.340000px;}
.y117{bottom:989.790000px;}
.y2c{bottom:992.310000px;}
.ya4{bottom:1005.810000px;}
.y84{bottom:1007.790000px;}
.y2b{bottom:1009.890000px;}
.y3{bottom:1012.320000px;}
.yf9{bottom:1014.300000px;}
.y116{bottom:1016.370000px;}
.y56{bottom:1024.920000px;}
.y83{bottom:1025.370000px;}
.y2a{bottom:1028.250000px;}
.y137{bottom:1033.560000px;}
.yce{bottom:1037.340000px;}
.ya1{bottom:1038.870000px;}
.y29{bottom:1046.700000px;}
.yf8{bottom:1049.850000px;}
.y55{bottom:1051.560000px;}
.y115{bottom:1051.920000px;}
.y82{bottom:1060.920000px;}
.y28{bottom:1064.250000px;}
.yf7{bottom:1067.400000px;}
.y114{bottom:1069.560000px;}
.y81{bottom:1078.560000px;}
.y136{bottom:1082.970000px;}
.yf6{bottom:1085.850000px;}
.y54{bottom:1087.110000px;}
.y80{bottom:1096.110000px;}
.ycd{bottom:1099.890000px;}
.y27{bottom:1100.700000px;}
.yf5{bottom:1103.400000px;}
.y53{bottom:1104.750000px;}
.y7f{bottom:1113.750000px;}
.yf4{bottom:1121.850000px;}
.ycc{bottom:1127.160000px;}
.y26{bottom:1127.610000px;}
.yf3{bottom:1139.400000px;}
.y52{bottom:1140.300000px;}
.y24{bottom:1194.300000px;}
.h13{height:26.550000px;}
.h14{height:26.580000px;}
.h18{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h16{height:44.100000px;}
.hf{height:44.190000px;}
.h11{height:48.690000px;}
.h1a{height:48.720000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.hd{height:59.973223px;}
.he{height:61.740000px;}
.h19{height:61.770000px;}
.hb{height:61.793886px;}
.h15{height:61.830000px;}
.hc{height:62.585859px;}
.h5{height:62.648438px;}
.h9{height:66.389766px;}
.ha{height:68.582109px;}
.h10{height:70.740000px;}
.h12{height:70.770000px;}
.h1b{height:70.830000px;}
.h4{height:72.985430px;}
.h17{height:114.930000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:120.090000px;}
.w7{width:120.450000px;}
.w9{width:120.990000px;}
.wb{width:123.960000px;}
.w3{width:129.540000px;}
.w4{width:625.440000px;}
.wc{width:631.020000px;}
.wa{width:633.990000px;}
.w8{width:634.530000px;}
.w6{width:634.800000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.xd{left:78.659987px;}
.x6{left:89.369987px;}
.x4{left:95.039987px;}
.xc{left:99.989987px;}
.xe{left:110.609987px;}
.x5{left:122.039987px;}
.xb{left:131.849987px;}
.x9{left:149.039987px;}
.xa{left:189.660000px;}
.xf{left:193.440000px;}
.x8{left:199.020000px;}
.x2{left:202.799987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v3{vertical-align:18.560000pt;}
.ls16{letter-spacing:-0.348267pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls11{letter-spacing:-0.034560pt;}
.ls1d{letter-spacing:-0.028160pt;}
.ls1a{letter-spacing:-0.013760pt;}
.ls17{letter-spacing:-0.009920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.006080pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:42.423680pt;}
.lse{letter-spacing:56.503680pt;}
.ls15{letter-spacing:57.570347pt;}
.ls1c{letter-spacing:71.863680pt;}
.ls14{letter-spacing:74.743680pt;}
.ls1b{letter-spacing:75.063680pt;}
.ls19{letter-spacing:111.543680pt;}
.ls18{letter-spacing:112.503680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.746880pt;}
.wsd{word-spacing:-11.743040pt;}
.ws9{word-spacing:-11.722240pt;}
.wsb{word-spacing:-11.700267pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._6{margin-left:-3.153067pt;}
._7{margin-left:-2.083732pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.043765pt;}
._9{width:2.458133pt;}
._c{width:3.526933pt;}
._d{width:4.489067pt;}
._3{width:6.252266pt;}
._10{width:7.177145pt;}
._b{width:8.133867pt;}
._a{width:9.084800pt;}
._8{width:10.794666pt;}
._5{width:12.903466pt;}
._4{width:13.841067pt;}
._e{width:14.909760pt;}
._f{width:15.925120pt;}
._13{width:17.688640pt;}
._17{width:18.810880pt;}
._1{width:20.131200pt;}
._1a{width:23.460160pt;}
._11{width:33.346560pt;}
._19{width:36.178880pt;}
._14{width:57.394560pt;}
._18{width:58.997760pt;}
._1b{width:63.379840pt;}
._12{width:64.662400pt;}
._15{width:192.330560pt;}
._16{width:193.933760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:6.960000pt;}
.y6a{bottom:7.040000pt;}
.ya0{bottom:10.960000pt;}
.y6c{bottom:11.040000pt;}
.y9d{bottom:22.560000pt;}
.y63{bottom:22.640000pt;}
.y70{bottom:26.560000pt;}
.y69{bottom:26.640000pt;}
.y62{bottom:38.240000pt;}
.yd0{bottom:38.266667pt;}
.y99{bottom:38.320000pt;}
.y6f{bottom:39.226667pt;}
.y68{bottom:46.240000pt;}
.y6e{bottom:46.266667pt;}
.y109{bottom:46.320000pt;}
.y2{bottom:65.226667pt;}
.ya3{bottom:65.840000pt;}
.y25{bottom:65.946667pt;}
.ya2{bottom:85.520000pt;}
.y1{bottom:90.346667pt;}
.y135{bottom:100.586667pt;}
.y9f{bottom:103.226667pt;}
.y158{bottom:103.786667pt;}
.ycb{bottom:113.466667pt;}
.y7e{bottom:114.506667pt;}
.y51{bottom:121.866667pt;}
.y157{bottom:127.466667pt;}
.y113{bottom:128.186667pt;}
.yca{bottom:129.146667pt;}
.y7d{bottom:130.186667pt;}
.y23{bottom:137.226667pt;}
.y50{bottom:137.466667pt;}
.y134{bottom:140.506667pt;}
.yf2{bottom:142.906667pt;}
.y7c{bottom:145.786667pt;}
.y9e{bottom:147.146667pt;}
.y156{bottom:151.066667pt;}
.y22{bottom:152.826667pt;}
.y112{bottom:159.786667pt;}
.yc9{bottom:160.746667pt;}
.y7b{bottom:161.386667pt;}
.yf1{bottom:166.506667pt;}
.y4f{bottom:169.146667pt;}
.y155{bottom:174.666667pt;}
.y111{bottom:175.386667pt;}
.yc8{bottom:176.346667pt;}
.y133{bottom:180.426667pt;}
.y21{bottom:184.506667pt;}
.y7a{bottom:185.066667pt;}
.y110{bottom:191.066667pt;}
.yc7{bottom:192.026667pt;}
.y4e{bottom:192.746667pt;}
.yf0{bottom:198.186667pt;}
.y154{bottom:198.346667pt;}
.y20{bottom:200.106667pt;}
.y10f{bottom:206.666667pt;}
.y9c{bottom:210.746667pt;}
.yef{bottom:213.786667pt;}
.y1f{bottom:215.786667pt;}
.y79{bottom:216.666667pt;}
.y153{bottom:221.946667pt;}
.y10e{bottom:222.346667pt;}
.yc6{bottom:223.626667pt;}
.y4d{bottom:224.346667pt;}
.yee{bottom:230.186667pt;}
.y78{bottom:232.346667pt;}
.y132{bottom:235.946667pt;}
.y10d{bottom:237.946667pt;}
.y4c{bottom:239.946667pt;}
.y152{bottom:245.626667pt;}
.yed{bottom:245.786667pt;}
.yc5{bottom:247.306667pt;}
.y1e{bottom:247.386667pt;}
.y77{bottom:247.946667pt;}
.y9b{bottom:250.666667pt;}
.y10c{bottom:253.546667pt;}
.y4b{bottom:256.346667pt;}
.yec{bottom:262.186667pt;}
.y1d{bottom:262.986667pt;}
.y76{bottom:263.546667pt;}
.y10b{bottom:269.226667pt;}
.y4a{bottom:271.946667pt;}
.yeb{bottom:277.786667pt;}
.y1c{bottom:278.666667pt;}
.yc4{bottom:278.906667pt;}
.y75{bottom:279.226667pt;}
.y151{bottom:284.826667pt;}
.y49{bottom:288.346667pt;}
.y9a{bottom:290.586667pt;}
.y131{bottom:291.546667pt;}
.y10a{bottom:292.826667pt;}
.yc3{bottom:294.506667pt;}
.y74{bottom:294.826667pt;}
.y1b{bottom:302.586667pt;}
.y48{bottom:303.946667pt;}
.y150{bottom:308.746667pt;}
.yea{bottom:310.106667pt;}
.yc2{bottom:310.186667pt;}
.y73{bottom:310.426667pt;}
.y130{bottom:315.866667pt;}
.y108{bottom:322.106667pt;}
.yc1{bottom:325.786667pt;}
.y72{bottom:326.106667pt;}
.y47{bottom:336.346667pt;}
.ye9{bottom:341.386667pt;}
.yc0{bottom:342.186667pt;}
.y1a{bottom:345.466667pt;}
.y98{bottom:346.106667pt;}
.y71{bottom:349.706667pt;}
.y14f{bottom:351.706667pt;}
.y46{bottom:352.026667pt;}
.ye8{bottom:357.066667pt;}
.ybf{bottom:357.786667pt;}
.y12f{bottom:359.146667pt;}
.y19{bottom:361.066667pt;}
.y45{bottom:367.626667pt;}
.y12e{bottom:374.746667pt;}
.y14e{bottom:375.626667pt;}
.y18{bottom:376.746667pt;}
.y6d{bottom:379.066667pt;}
.y44{bottom:383.306667pt;}
.y107{bottom:385.706667pt;}
.ye7{bottom:388.666667pt;}
.ybe{bottom:389.466667pt;}
.y17{bottom:392.346667pt;}
.y43{bottom:398.906667pt;}
.y97{bottom:401.706667pt;}
.ye6{bottom:404.266667pt;}
.y12d{bottom:406.426667pt;}
.y14d{bottom:408.506667pt;}
.ybd{bottom:413.066667pt;}
.y42{bottom:414.506667pt;}
.ye5{bottom:419.973333pt;}
.y12c{bottom:422.053333pt;}
.y16{bottom:424.053333pt;}
.y14c{bottom:424.133333pt;}
.y96{bottom:426.053333pt;}
.y106{bottom:429.653333pt;}
.y41{bottom:430.213333pt;}
.ye4{bottom:435.573333pt;}
.y12b{bottom:437.653333pt;}
.y15{bottom:439.653333pt;}
.y14b{bottom:439.813333pt;}
.y6b{bottom:442.613333pt;}
.ybc{bottom:444.693333pt;}
.ye3{bottom:451.253333pt;}
.y40{bottom:453.813333pt;}
.y14{bottom:455.253333pt;}
.y14a{bottom:455.413333pt;}
.ybb{bottom:460.293333pt;}
.y12a{bottom:461.333333pt;}
.y95{bottom:469.333333pt;}
.y13{bottom:470.933333pt;}
.y149{bottom:471.093333pt;}
.ye2{bottom:474.853333pt;}
.yba{bottom:476.693333pt;}
.y94{bottom:484.933333pt;}
.y3f{bottom:485.413333pt;}
.y67{bottom:486.533333pt;}
.yb9{bottom:492.293333pt;}
.y129{bottom:492.933333pt;}
.y105{bottom:493.253333pt;}
.y12{bottom:494.853333pt;}
.y148{bottom:495.013333pt;}
.y3e{bottom:501.093333pt;}
.ye1{bottom:506.453333pt;}
.yb8{bottom:508.693333pt;}
.y93{bottom:516.613333pt;}
.y3d{bottom:516.693333pt;}
.ye0{bottom:522.133333pt;}
.yb7{bottom:524.293333pt;}
.y128{bottom:524.613333pt;}
.y147{bottom:528.133333pt;}
.y92{bottom:532.213333pt;}
.y3c{bottom:532.373333pt;}
.y104{bottom:533.173333pt;}
.ydf{bottom:537.733333pt;}
.y11{bottom:538.053333pt;}
.y127{bottom:540.213333pt;}
.y91{bottom:548.613333pt;}
.y66{bottom:550.133333pt;}
.yde{bottom:553.413333pt;}
.y3b{bottom:555.973333pt;}
.y126{bottom:556.613333pt;}
.yb6{bottom:556.693333pt;}
.y10{bottom:570.933333pt;}
.y146{bottom:571.093333pt;}
.y125{bottom:572.213333pt;}
.yb5{bottom:572.373333pt;}
.y103{bottom:573.093333pt;}
.ydd{bottom:577.013333pt;}
.y90{bottom:580.213333pt;}
.yf{bottom:586.533333pt;}
.y145{bottom:586.693333pt;}
.y3a{bottom:587.573333pt;}
.yb4{bottom:587.973333pt;}
.y124{bottom:588.613333pt;}
.y65{bottom:590.053333pt;}
.ye{bottom:602.213333pt;}
.y144{bottom:602.373333pt;}
.y39{bottom:603.253333pt;}
.yb3{bottom:603.573333pt;}
.y8f{bottom:603.813333pt;}
.y123{bottom:604.213333pt;}
.ydc{bottom:608.613333pt;}
.yd{bottom:617.813333pt;}
.y143{bottom:617.973333pt;}
.y38{bottom:618.853333pt;}
.yb2{bottom:619.253333pt;}
.ydb{bottom:624.293333pt;}
.y102{bottom:628.613333pt;}
.y61{bottom:629.973333pt;}
.yc{bottom:633.493333pt;}
.y142{bottom:633.573333pt;}
.y37{bottom:634.533333pt;}
.y8e{bottom:635.493333pt;}
.y122{bottom:636.613333pt;}
.yda{bottom:639.893333pt;}
.yb1{bottom:642.853333pt;}
.yb{bottom:649.093333pt;}
.y141{bottom:649.253333pt;}
.y36{bottom:650.133333pt;}
.y8d{bottom:651.093333pt;}
.yd9{bottom:655.573333pt;}
.y121{bottom:660.213333pt;}
.yd8{bottom:671.173333pt;}
.ya{bottom:673.013333pt;}
.y140{bottom:673.173333pt;}
.y35{bottom:673.733333pt;}
.yb0{bottom:674.533333pt;}
.y8c{bottom:682.693333pt;}
.y101{bottom:684.213333pt;}
.yd7{bottom:686.773333pt;}
.yaf{bottom:690.133333pt;}
.y120{bottom:691.813333pt;}
.yd6{bottom:702.453333pt;}
.y60{bottom:704.533333pt;}
.y34{bottom:705.413333pt;}
.yae{bottom:705.733333pt;}
.y11f{bottom:707.493333pt;}
.y100{bottom:708.533333pt;}
.y8b{bottom:714.373333pt;}
.y9{bottom:715.893333pt;}
.y13f{bottom:716.053333pt;}
.yd5{bottom:718.053333pt;}
.y5f{bottom:720.133333pt;}
.y33{bottom:721.013333pt;}
.yad{bottom:721.413333pt;}
.y11e{bottom:723.093333pt;}
.y8a{bottom:729.973333pt;}
.y13e{bottom:731.733333pt;}
.yd4{bottom:733.733333pt;}
.y5e{bottom:735.733333pt;}
.y32{bottom:736.693333pt;}
.yac{bottom:737.013333pt;}
.y11d{bottom:738.693333pt;}
.y8{bottom:747.733333pt;}
.yff{bottom:751.813333pt;}
.y5d{bottom:752.133333pt;}
.y31{bottom:752.293333pt;}
.y11c{bottom:754.373333pt;}
.yd3{bottom:757.333333pt;}
.yab{bottom:760.693333pt;}
.y89{bottom:761.653333pt;}
.y13d{bottom:763.333333pt;}
.yfe{bottom:767.413333pt;}
.y30{bottom:767.893333pt;}
.y5c{bottom:768.453333pt;}
.y11b{bottom:769.973333pt;}
.y13c{bottom:778.933333pt;}
.y7{bottom:779.733333pt;}
.y88{bottom:785.253333pt;}
.yd2{bottom:786.613333pt;}
.y2f{bottom:791.813333pt;}
.yaa{bottom:792.293333pt;}
.y13b{bottom:794.613333pt;}
.yfd{bottom:799.013333pt;}
.y5b{bottom:800.853333pt;}
.y11a{bottom:801.653333pt;}
.ya9{bottom:807.893333pt;}
.y13a{bottom:810.213333pt;}
.y6{bottom:811.733333pt;}
.yfc{bottom:814.693333pt;}
.y5a{bottom:816.533333pt;}
.y87{bottom:816.853333pt;}
.y119{bottom:817.253333pt;}
.ya8{bottom:823.573333pt;}
.y139{bottom:825.893333pt;}
.yd1{bottom:826.533333pt;}
.y118{bottom:832.853333pt;}
.y2e{bottom:834.773333pt;}
.ya7{bottom:839.173333pt;}
.y5{bottom:843.813333pt;}
.yfb{bottom:846.293333pt;}
.y59{bottom:848.133333pt;}
.y86{bottom:848.533333pt;}
.y2d{bottom:850.373333pt;}
.ya6{bottom:854.853333pt;}
.y138{bottom:855.173333pt;}
.y58{bottom:863.813333pt;}
.y85{bottom:864.133333pt;}
.ycf{bottom:866.533333pt;}
.ya5{bottom:870.453333pt;}
.y4{bottom:877.893333pt;}
.yfa{bottom:877.973333pt;}
.y57{bottom:879.413333pt;}
.y117{bottom:879.813333pt;}
.y2c{bottom:882.053333pt;}
.ya4{bottom:894.053333pt;}
.y84{bottom:895.813333pt;}
.y2b{bottom:897.680000pt;}
.y3{bottom:899.840000pt;}
.yf9{bottom:901.600000pt;}
.y116{bottom:903.440000pt;}
.y56{bottom:911.040000pt;}
.y83{bottom:911.440000pt;}
.y2a{bottom:914.000000pt;}
.y137{bottom:918.720000pt;}
.yce{bottom:922.080000pt;}
.ya1{bottom:923.440000pt;}
.y29{bottom:930.400000pt;}
.yf8{bottom:933.200000pt;}
.y55{bottom:934.720000pt;}
.y115{bottom:935.040000pt;}
.y82{bottom:943.040000pt;}
.y28{bottom:946.000000pt;}
.yf7{bottom:948.800000pt;}
.y114{bottom:950.720000pt;}
.y81{bottom:958.720000pt;}
.y136{bottom:962.640000pt;}
.yf6{bottom:965.200000pt;}
.y54{bottom:966.320000pt;}
.y80{bottom:974.320000pt;}
.ycd{bottom:977.680000pt;}
.y27{bottom:978.400000pt;}
.yf5{bottom:980.800000pt;}
.y53{bottom:982.000000pt;}
.y7f{bottom:990.000000pt;}
.yf4{bottom:997.200000pt;}
.ycc{bottom:1001.920000pt;}
.y26{bottom:1002.320000pt;}
.yf3{bottom:1012.800000pt;}
.y52{bottom:1013.600000pt;}
.y24{bottom:1061.600000pt;}
.h13{height:23.600000pt;}
.h14{height:23.626667pt;}
.h18{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h16{height:39.200000pt;}
.hf{height:39.280000pt;}
.h11{height:43.280000pt;}
.h1a{height:43.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.hd{height:53.309531pt;}
.he{height:54.880000pt;}
.h19{height:54.906667pt;}
.hb{height:54.927899pt;}
.h15{height:54.960000pt;}
.hc{height:55.631875pt;}
.h5{height:55.687500pt;}
.h9{height:59.013125pt;}
.ha{height:60.961875pt;}
.h10{height:62.880000pt;}
.h12{height:62.906667pt;}
.h1b{height:62.960000pt;}
.h4{height:64.875937pt;}
.h17{height:102.160000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:106.746667pt;}
.w7{width:107.066667pt;}
.w9{width:107.546667pt;}
.wb{width:110.186667pt;}
.w3{width:115.146667pt;}
.w4{width:555.946667pt;}
.wc{width:560.906667pt;}
.wa{width:563.546667pt;}
.w8{width:564.026667pt;}
.w6{width:564.266667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.xd{left:69.919988pt;}
.x6{left:79.439988pt;}
.x4{left:84.479988pt;}
.xc{left:88.879988pt;}
.xe{left:98.319988pt;}
.x5{left:108.479988pt;}
.xb{left:117.199988pt;}
.x9{left:132.479988pt;}
.xa{left:168.586667pt;}
.xf{left:171.946667pt;}
.x8{left:176.906667pt;}
.x2{left:180.266655pt;}
.x3{left:704.053322pt;}
}




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