
    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_9a33400918c1f831028a1871.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_7b65abaee5782a6134be8213.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_fe0e5e72bac19d02010b2270.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.771484;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_4c226552386e7b4d96659be0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_72b26bfcf5d0fe9f11b3102f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_7d6c14c3a3a5183630ce5cc1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.769531;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_2286352c20ce83ace2a1d6ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_31fa85720d854d49e66e63d3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3c24f9a0321ef8452abae8c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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;}
.lsc{letter-spacing:-1.512000px;}
.ls12{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.229800px;}
.lsf{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.109200px;}
.ls2{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.lse{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.ls6{letter-spacing:3.600000px;}
.ls4{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.680000px;}
.ls5{letter-spacing:14.400000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-66.240000px;}
.ws0{word-spacing:-18.808440px;}
.ws4{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.488000px;}
.wsf{word-spacing:-16.450800px;}
.wse{word-spacing:-16.254600px;}
.ws10{word-spacing:-15.534000px;}
.ws2{word-spacing:0.000000px;}
._38{margin-left:-15.984000px;}
._3d{margin-left:-11.636880px;}
._46{margin-left:-7.992000px;}
._0{margin-left:-1.516320px;}
._1{width:1.235280px;}
._f{width:2.244480px;}
._d{width:3.374400px;}
._c{width:4.392000px;}
._e{width:5.969760px;}
._6{width:6.984000px;}
._8{width:8.928000px;}
._9{width:10.344720px;}
._11{width:11.352000px;}
._15{width:13.032000px;}
._5{width:14.531040px;}
._4{width:15.556320px;}
._7{width:16.560000px;}
._3b{width:17.802000px;}
._a{width:19.080000px;}
._b{width:20.100000px;}
._16{width:21.240000px;}
._3{width:23.112000px;}
._1d{width:24.312000px;}
._1e{width:25.800000px;}
._17{width:27.216000px;}
._18{width:28.284720px;}
._2{width:30.240000px;}
._1b{width:31.373040px;}
._1c{width:33.124320px;}
._12{width:34.128000px;}
._13{width:35.234160px;}
._14{width:37.008000px;}
._25{width:38.304000px;}
._4e{width:39.384000px;}
._19{width:40.536000px;}
._1a{width:41.544000px;}
._4d{width:42.632640px;}
._1f{width:44.424000px;}
._2c{width:46.265040px;}
._48{width:47.880000px;}
._49{width:49.116000px;}
._3a{width:51.162000px;}
._21{width:54.491040px;}
._20{width:55.876320px;}
._53{width:57.007440px;}
._24{width:58.248000px;}
._41{width:61.704000px;}
._22{width:63.360000px;}
._23{width:65.076000px;}
._2f{width:66.457920px;}
._36{width:67.800000px;}
._2b{width:69.960000px;}
._10{width:76.584000px;}
._2e{width:82.913040px;}
._34{width:84.137040px;}
._31{width:92.700720px;}
._35{width:94.572720px;}
._3c{width:97.419600px;}
._29{width:101.700000px;}
._2d{width:106.565040px;}
._39{width:111.985200px;}
._54{width:113.436000px;}
._55{width:114.732000px;}
._30{width:117.126000px;}
._44{width:124.092000px;}
._4a{width:127.476000px;}
._4b{width:128.664000px;}
._4f{width:131.040000px;}
._2a{width:140.052000px;}
._42{width:144.918960px;}
._40{width:145.992000px;}
._33{width:147.798720px;}
._45{width:149.256000px;}
._3f{width:152.544720px;}
._32{width:166.080000px;}
._3e{width:168.832560px;}
._27{width:174.438000px;}
._43{width:180.414000px;}
._37{width:196.701360px;}
._26{width:197.766000px;}
._28{width:198.858000px;}
._51{width:244.872000px;}
._50{width:246.168000px;}
._52{width:304.488000px;}
._47{width:405.432000px;}
._4c{width:416.088000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs5{font-size:38.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y9{bottom:-9.540000px;}
.ye{bottom:-6.330000px;}
.y0{bottom:0.000000px;}
.yd{bottom:14.730000px;}
.ya{bottom:28.620000px;}
.y8{bottom:34.740000px;}
.y7{bottom:36.000000px;}
.yc{bottom:39.210000px;}
.y81{bottom:113.220000px;}
.yf3{bottom:114.120000px;}
.yc6{bottom:118.080000px;}
.y8f{bottom:121.320000px;}
.y100{bottom:122.580000px;}
.y39{bottom:129.600000px;}
.ye2{bottom:132.120000px;}
.y7a{bottom:133.560000px;}
.y64{bottom:133.920000px;}
.y124{bottom:136.260000px;}
.yf2{bottom:138.780000px;}
.yc5{bottom:138.960000px;}
.y8e{bottom:142.020000px;}
.yff{bottom:143.280000px;}
.y38{bottom:150.300000px;}
.ye1{bottom:152.820000px;}
.y79{bottom:154.260000px;}
.y63{bottom:154.620000px;}
.y123{bottom:156.960000px;}
.yc4{bottom:159.660000px;}
.y8d{bottom:162.720000px;}
.yfe{bottom:163.980000px;}
.y37{bottom:171.000000px;}
.ye0{bottom:173.160000px;}
.y62{bottom:174.960000px;}
.y6d{bottom:175.320000px;}
.y122{bottom:177.660000px;}
.yc3{bottom:180.360000px;}
.y8c{bottom:183.420000px;}
.yf1{bottom:183.600000px;}
.yfd{bottom:184.680000px;}
.y36{bottom:191.700000px;}
.ydf{bottom:194.220000px;}
.y61{bottom:195.660000px;}
.y6c{bottom:196.020000px;}
.y121{bottom:198.360000px;}
.yc2{bottom:201.060000px;}
.y8b{bottom:204.120000px;}
.yf0{bottom:204.480000px;}
.yb0{bottom:205.410000px;}
.y35{bottom:212.070000px;}
.y80{bottom:216.390000px;}
.y60{bottom:216.750000px;}
.yde{bottom:218.550000px;}
.y120{bottom:219.090000px;}
.y8a{bottom:224.850000px;}
.yc1{bottom:225.390000px;}
.yfc{bottom:226.110000px;}
.yef{bottom:228.990000px;}
.yaf{bottom:229.710000px;}
.y34{bottom:232.770000px;}
.y7f{bottom:237.090000px;}
.y5f{bottom:237.450000px;}
.ydd{bottom:239.430000px;}
.y11f{bottom:239.790000px;}
.y89{bottom:245.190000px;}
.yfb{bottom:246.810000px;}
.yc0{bottom:249.690000px;}
.yae{bottom:250.590000px;}
.y33{bottom:253.830000px;}
.y7e{bottom:257.790000px;}
.y5e{bottom:258.150000px;}
.ydc{bottom:260.130000px;}
.y11e{bottom:260.490000px;}
.y88{bottom:265.890000px;}
.yfa{bottom:267.510000px;}
.ybf{bottom:270.390000px;}
.yee{bottom:270.750000px;}
.yad{bottom:271.290000px;}
.y32{bottom:274.530000px;}
.y7d{bottom:278.490000px;}
.y5d{bottom:278.850000px;}
.y11d{bottom:281.190000px;}
.ydb{bottom:284.250000px;}
.y87{bottom:286.770000px;}
.yf9{bottom:288.210000px;}
.ybe{bottom:290.910000px;}
.yed{bottom:291.270000px;}
.yac{bottom:291.990000px;}
.y31{bottom:294.870000px;}
.y5c{bottom:299.550000px;}
.y11c{bottom:301.890000px;}
.y86{bottom:307.110000px;}
.yda{bottom:308.550000px;}
.yf8{bottom:308.910000px;}
.ybd{bottom:311.970000px;}
.yab{bottom:312.330000px;}
.y30{bottom:315.930000px;}
.y91{bottom:319.890000px;}
.y5b{bottom:320.250000px;}
.y11b{bottom:322.590000px;}
.y85{bottom:327.810000px;}
.yd9{bottom:329.250000px;}
.yf7{bottom:329.610000px;}
.ybc{bottom:332.670000px;}
.yaa{bottom:333.390000px;}
.y2f{bottom:336.630000px;}
.y5a{bottom:340.950000px;}
.y11a{bottom:343.290000px;}
.y84{bottom:344.370000px;}
.yd8{bottom:349.950000px;}
.yf6{bottom:350.310000px;}
.ybb{bottom:353.370000px;}
.ya9{bottom:354.090000px;}
.y2e{bottom:357.330000px;}
.y59{bottom:361.650000px;}
.y119{bottom:363.990000px;}
.yd7{bottom:371.010000px;}
.yba{bottom:374.070000px;}
.ya8{bottom:374.790000px;}
.y2d{bottom:378.030000px;}
.y58{bottom:382.350000px;}
.y118{bottom:384.690000px;}
.yf5{bottom:391.350000px;}
.yd6{bottom:391.710000px;}
.yb9{bottom:394.770000px;}
.ya7{bottom:395.490000px;}
.y2c{bottom:398.730000px;}
.yea{bottom:402.150000px;}
.y101{bottom:402.690000px;}
.y57{bottom:403.050000px;}
.y117{bottom:405.390000px;}
.yd5{bottom:412.410000px;}
.yb8{bottom:415.470000px;}
.ya6{bottom:415.830000px;}
.y2b{bottom:419.430000px;}
.y93{bottom:423.390000px;}
.y56{bottom:423.750000px;}
.ye9{bottom:425.910000px;}
.y116{bottom:426.090000px;}
.yd4{bottom:433.110000px;}
.yb7{bottom:436.170000px;}
.yf4{bottom:436.710000px;}
.ya5{bottom:436.890000px;}
.y2a{bottom:440.130000px;}
.y6b{bottom:444.135000px;}
.y55{bottom:444.495000px;}
.ye8{bottom:445.035000px;}
.y115{bottom:446.835000px;}
.yd3{bottom:453.855000px;}
.yb6{bottom:456.915000px;}
.ya4{bottom:457.635000px;}
.y29{bottom:460.875000px;}
.ye7{bottom:464.115000px;}
.y6a{bottom:464.835000px;}
.y54{bottom:465.195000px;}
.y114{bottom:467.535000px;}
.yd2{bottom:474.555000px;}
.yec{bottom:477.255000px;}
.yb5{bottom:477.615000px;}
.ya3{bottom:478.335000px;}
.y28{bottom:481.575000px;}
.ye6{bottom:483.015000px;}
.y92{bottom:485.535000px;}
.y53{bottom:485.895000px;}
.y113{bottom:488.235000px;}
.yd1{bottom:495.255000px;}
.yb4{bottom:497.955000px;}
.ya2{bottom:499.035000px;}
.ye5{bottom:502.095000px;}
.y27{bottom:502.275000px;}
.y52{bottom:506.595000px;}
.y112{bottom:508.935000px;}
.yd0{bottom:515.955000px;}
.yb3{bottom:518.655000px;}
.ya1{bottom:519.375000px;}
.ye4{bottom:520.995000px;}
.y26{bottom:522.975000px;}
.y69{bottom:526.935000px;}
.y51{bottom:527.295000px;}
.y111{bottom:529.635000px;}
.ycf{bottom:536.655000px;}
.yeb{bottom:539.355000px;}
.yb2{bottom:539.715000px;}
.ya0{bottom:540.435000px;}
.y25{bottom:543.675000px;}
.ye3{bottom:544.035000px;}
.y78{bottom:547.635000px;}
.y50{bottom:547.995000px;}
.y110{bottom:550.335000px;}
.yb1{bottom:555.915000px;}
.yce{bottom:557.355000px;}
.y9f{bottom:561.135000px;}
.y24{bottom:564.015000px;}
.y77{bottom:568.335000px;}
.y4f{bottom:568.695000px;}
.y10f{bottom:571.035000px;}
.ycd{bottom:578.055000px;}
.y9e{bottom:581.835000px;}
.y23{bottom:588.315000px;}
.y76{bottom:589.035000px;}
.y4e{bottom:589.395000px;}
.y10e{bottom:591.735000px;}
.ycc{bottom:598.395000px;}
.y22{bottom:601.095000px;}
.y9d{bottom:602.535000px;}
.y75{bottom:609.735000px;}
.y4d{bottom:610.095000px;}
.y10d{bottom:612.435000px;}
.ycb{bottom:619.455000px;}
.y21{bottom:621.975000px;}
.y9c{bottom:623.235000px;}
.y68{bottom:630.435000px;}
.y4c{bottom:630.795000px;}
.y10c{bottom:633.135000px;}
.yca{bottom:640.155000px;}
.y20{bottom:642.675000px;}
.y9b{bottom:643.575000px;}
.y7c{bottom:651.135000px;}
.y4b{bottom:651.495000px;}
.y10b{bottom:653.835000px;}
.y1f{bottom:663.015000px;}
.yc9{bottom:664.455000px;}
.y9a{bottom:664.635000px;}
.y7b{bottom:671.835000px;}
.y4a{bottom:672.195000px;}
.y10a{bottom:674.535000px;}
.y1e{bottom:683.745000px;}
.y99{bottom:685.365000px;}
.y90{bottom:692.565000px;}
.y49{bottom:692.925000px;}
.y109{bottom:695.265000px;}
.y1d{bottom:704.805000px;}
.y98{bottom:706.065000px;}
.yc8{bottom:709.665000px;}
.y67{bottom:713.265000px;}
.y48{bottom:713.625000px;}
.y108{bottom:715.965000px;}
.y1c{bottom:725.505000px;}
.y97{bottom:726.765000px;}
.yc7{bottom:733.965000px;}
.y47{bottom:734.325000px;}
.y107{bottom:736.665000px;}
.y1b{bottom:746.205000px;}
.y96{bottom:747.105000px;}
.y66{bottom:754.485000px;}
.y46{bottom:754.845000px;}
.y106{bottom:757.365000px;}
.y1a{bottom:766.905000px;}
.y95{bottom:771.585000px;}
.y65{bottom:775.185000px;}
.y45{bottom:775.545000px;}
.y105{bottom:778.065000px;}
.y19{bottom:787.605000px;}
.y94{bottom:795.885000px;}
.y44{bottom:796.245000px;}
.y104{bottom:798.765000px;}
.y18{bottom:808.305000px;}
.y6f{bottom:816.585000px;}
.y43{bottom:816.945000px;}
.y103{bottom:819.465000px;}
.y17{bottom:828.645000px;}
.y6e{bottom:837.285000px;}
.y42{bottom:837.645000px;}
.y102{bottom:839.625000px;}
.y16{bottom:849.345000px;}
.y83{bottom:857.985000px;}
.y41{bottom:858.345000px;}
.y15{bottom:870.405000px;}
.y82{bottom:878.685000px;}
.y40{bottom:879.045000px;}
.y14{bottom:891.105000px;}
.y3f{bottom:899.745000px;}
.y13{bottom:911.490000px;}
.y74{bottom:920.130000px;}
.y3e{bottom:920.490000px;}
.y12{bottom:932.190000px;}
.y73{bottom:940.830000px;}
.y3d{bottom:941.190000px;}
.y11{bottom:953.250000px;}
.y72{bottom:961.530000px;}
.y3c{bottom:961.890000px;}
.y10{bottom:977.370000px;}
.y71{bottom:982.230000px;}
.y3b{bottom:982.590000px;}
.y70{bottom:1002.930000px;}
.y3a{bottom:1003.290000px;}
.yf{bottom:1018.230000px;}
.y6{bottom:1023.270000px;}
.y5{bottom:1042.710000px;}
.yb{bottom:1046.520000px;}
.y4{bottom:1067.370000px;}
.y3{bottom:1091.850000px;}
.y2{bottom:1116.330000px;}
.y1{bottom:1137.930000px;}
.h9{height:4.353750px;}
.he{height:29.387813px;}
.h4{height:39.060000px;}
.h6{height:48.600000px;}
.h2{height:53.709961px;}
.hb{height:54.421875px;}
.h8{height:57.060000px;}
.h5{height:59.439023px;}
.h10{height:64.546875px;}
.hf{height:65.010937px;}
.h11{height:70.628906px;}
.hd{height:70.664062px;}
.hc{height:72.562500px;}
.h3{height:73.722656px;}
.h7{height:83.787539px;}
.ha{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:46.800000px;}
.w4{width:240.300000px;}
.w2{width:621.540000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:2.055000px;}
.x3{left:3.780000px;}
.x9{left:10.905000px;}
.x7{left:55.005000px;}
.x8{left:67.965000px;}
.x1{left:135.036000px;}
.xc{left:153.570000px;}
.xb{left:188.850000px;}
.x4{left:423.000000px;}
.xa{left:446.505000px;}
.x6{left:509.760000px;}
.x2{left:758.130000px;}
.xd{left:837.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.344000pt;}
.ls12{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.204267pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls4{letter-spacing:9.600000pt;}
.ls3{letter-spacing:12.160000pt;}
.ls5{letter-spacing:12.800000pt;}
.wsd{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.718613pt;}
.ws4{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.656000pt;}
.wsf{word-spacing:-14.622933pt;}
.wse{word-spacing:-14.448533pt;}
.ws10{word-spacing:-13.808000pt;}
.ws2{word-spacing:0.000000pt;}
._38{margin-left:-14.208000pt;}
._3d{margin-left:-10.343893pt;}
._46{margin-left:-7.104000pt;}
._0{margin-left:-1.347840pt;}
._1{width:1.098027pt;}
._f{width:1.995093pt;}
._d{width:2.999467pt;}
._c{width:3.904000pt;}
._e{width:5.306453pt;}
._6{width:6.208000pt;}
._8{width:7.936000pt;}
._9{width:9.195307pt;}
._11{width:10.090667pt;}
._15{width:11.584000pt;}
._5{width:12.916480pt;}
._4{width:13.827840pt;}
._7{width:14.720000pt;}
._3b{width:15.824000pt;}
._a{width:16.960000pt;}
._b{width:17.866667pt;}
._16{width:18.880000pt;}
._3{width:20.544000pt;}
._1d{width:21.610667pt;}
._1e{width:22.933333pt;}
._17{width:24.192000pt;}
._18{width:25.141973pt;}
._2{width:26.880000pt;}
._1b{width:27.887147pt;}
._1c{width:29.443840pt;}
._12{width:30.336000pt;}
._13{width:31.319253pt;}
._14{width:32.896000pt;}
._25{width:34.048000pt;}
._4e{width:35.008000pt;}
._19{width:36.032000pt;}
._1a{width:36.928000pt;}
._4d{width:37.895680pt;}
._1f{width:39.488000pt;}
._2c{width:41.124480pt;}
._48{width:42.560000pt;}
._49{width:43.658667pt;}
._3a{width:45.477333pt;}
._21{width:48.436480pt;}
._20{width:49.667840pt;}
._53{width:50.673280pt;}
._24{width:51.776000pt;}
._41{width:54.848000pt;}
._22{width:56.320000pt;}
._23{width:57.845333pt;}
._2f{width:59.073707pt;}
._36{width:60.266667pt;}
._2b{width:62.186667pt;}
._10{width:68.074667pt;}
._2e{width:73.700480pt;}
._34{width:74.788480pt;}
._31{width:82.400640pt;}
._35{width:84.064640pt;}
._3c{width:86.595200pt;}
._29{width:90.400000pt;}
._2d{width:94.724480pt;}
._39{width:99.542400pt;}
._54{width:100.832000pt;}
._55{width:101.984000pt;}
._30{width:104.112000pt;}
._44{width:110.304000pt;}
._4a{width:113.312000pt;}
._4b{width:114.368000pt;}
._4f{width:116.480000pt;}
._2a{width:124.490667pt;}
._42{width:128.816853pt;}
._40{width:129.770667pt;}
._33{width:131.376640pt;}
._45{width:132.672000pt;}
._3f{width:135.595307pt;}
._32{width:147.626667pt;}
._3e{width:150.073387pt;}
._27{width:155.056000pt;}
._43{width:160.368000pt;}
._37{width:174.845653pt;}
._26{width:175.792000pt;}
._28{width:176.762667pt;}
._51{width:217.664000pt;}
._50{width:218.816000pt;}
._52{width:270.656000pt;}
._47{width:360.384000pt;}
._4c{width:369.856000pt;}
.fs4{font-size:5.120000pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y9{bottom:-8.480000pt;}
.ye{bottom:-5.626667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:13.093333pt;}
.ya{bottom:25.440000pt;}
.y8{bottom:30.880000pt;}
.y7{bottom:32.000000pt;}
.yc{bottom:34.853333pt;}
.y81{bottom:100.640000pt;}
.yf3{bottom:101.440000pt;}
.yc6{bottom:104.960000pt;}
.y8f{bottom:107.840000pt;}
.y100{bottom:108.960000pt;}
.y39{bottom:115.200000pt;}
.ye2{bottom:117.440000pt;}
.y7a{bottom:118.720000pt;}
.y64{bottom:119.040000pt;}
.y124{bottom:121.120000pt;}
.yf2{bottom:123.360000pt;}
.yc5{bottom:123.520000pt;}
.y8e{bottom:126.240000pt;}
.yff{bottom:127.360000pt;}
.y38{bottom:133.600000pt;}
.ye1{bottom:135.840000pt;}
.y79{bottom:137.120000pt;}
.y63{bottom:137.440000pt;}
.y123{bottom:139.520000pt;}
.yc4{bottom:141.920000pt;}
.y8d{bottom:144.640000pt;}
.yfe{bottom:145.760000pt;}
.y37{bottom:152.000000pt;}
.ye0{bottom:153.920000pt;}
.y62{bottom:155.520000pt;}
.y6d{bottom:155.840000pt;}
.y122{bottom:157.920000pt;}
.yc3{bottom:160.320000pt;}
.y8c{bottom:163.040000pt;}
.yf1{bottom:163.200000pt;}
.yfd{bottom:164.160000pt;}
.y36{bottom:170.400000pt;}
.ydf{bottom:172.640000pt;}
.y61{bottom:173.920000pt;}
.y6c{bottom:174.240000pt;}
.y121{bottom:176.320000pt;}
.yc2{bottom:178.720000pt;}
.y8b{bottom:181.440000pt;}
.yf0{bottom:181.760000pt;}
.yb0{bottom:182.586667pt;}
.y35{bottom:188.506667pt;}
.y80{bottom:192.346667pt;}
.y60{bottom:192.666667pt;}
.yde{bottom:194.266667pt;}
.y120{bottom:194.746667pt;}
.y8a{bottom:199.866667pt;}
.yc1{bottom:200.346667pt;}
.yfc{bottom:200.986667pt;}
.yef{bottom:203.546667pt;}
.yaf{bottom:204.186667pt;}
.y34{bottom:206.906667pt;}
.y7f{bottom:210.746667pt;}
.y5f{bottom:211.066667pt;}
.ydd{bottom:212.826667pt;}
.y11f{bottom:213.146667pt;}
.y89{bottom:217.946667pt;}
.yfb{bottom:219.386667pt;}
.yc0{bottom:221.946667pt;}
.yae{bottom:222.746667pt;}
.y33{bottom:225.626667pt;}
.y7e{bottom:229.146667pt;}
.y5e{bottom:229.466667pt;}
.ydc{bottom:231.226667pt;}
.y11e{bottom:231.546667pt;}
.y88{bottom:236.346667pt;}
.yfa{bottom:237.786667pt;}
.ybf{bottom:240.346667pt;}
.yee{bottom:240.666667pt;}
.yad{bottom:241.146667pt;}
.y32{bottom:244.026667pt;}
.y7d{bottom:247.546667pt;}
.y5d{bottom:247.866667pt;}
.y11d{bottom:249.946667pt;}
.ydb{bottom:252.666667pt;}
.y87{bottom:254.906667pt;}
.yf9{bottom:256.186667pt;}
.ybe{bottom:258.586667pt;}
.yed{bottom:258.906667pt;}
.yac{bottom:259.546667pt;}
.y31{bottom:262.106667pt;}
.y5c{bottom:266.266667pt;}
.y11c{bottom:268.346667pt;}
.y86{bottom:272.986667pt;}
.yda{bottom:274.266667pt;}
.yf8{bottom:274.586667pt;}
.ybd{bottom:277.306667pt;}
.yab{bottom:277.626667pt;}
.y30{bottom:280.826667pt;}
.y91{bottom:284.346667pt;}
.y5b{bottom:284.666667pt;}
.y11b{bottom:286.746667pt;}
.y85{bottom:291.386667pt;}
.yd9{bottom:292.666667pt;}
.yf7{bottom:292.986667pt;}
.ybc{bottom:295.706667pt;}
.yaa{bottom:296.346667pt;}
.y2f{bottom:299.226667pt;}
.y5a{bottom:303.066667pt;}
.y11a{bottom:305.146667pt;}
.y84{bottom:306.106667pt;}
.yd8{bottom:311.066667pt;}
.yf6{bottom:311.386667pt;}
.ybb{bottom:314.106667pt;}
.ya9{bottom:314.746667pt;}
.y2e{bottom:317.626667pt;}
.y59{bottom:321.466667pt;}
.y119{bottom:323.546667pt;}
.yd7{bottom:329.786667pt;}
.yba{bottom:332.506667pt;}
.ya8{bottom:333.146667pt;}
.y2d{bottom:336.026667pt;}
.y58{bottom:339.866667pt;}
.y118{bottom:341.946667pt;}
.yf5{bottom:347.866667pt;}
.yd6{bottom:348.186667pt;}
.yb9{bottom:350.906667pt;}
.ya7{bottom:351.546667pt;}
.y2c{bottom:354.426667pt;}
.yea{bottom:357.466667pt;}
.y101{bottom:357.946667pt;}
.y57{bottom:358.266667pt;}
.y117{bottom:360.346667pt;}
.yd5{bottom:366.586667pt;}
.yb8{bottom:369.306667pt;}
.ya6{bottom:369.626667pt;}
.y2b{bottom:372.826667pt;}
.y93{bottom:376.346667pt;}
.y56{bottom:376.666667pt;}
.ye9{bottom:378.586667pt;}
.y116{bottom:378.746667pt;}
.yd4{bottom:384.986667pt;}
.yb7{bottom:387.706667pt;}
.yf4{bottom:388.186667pt;}
.ya5{bottom:388.346667pt;}
.y2a{bottom:391.226667pt;}
.y6b{bottom:394.786667pt;}
.y55{bottom:395.106667pt;}
.ye8{bottom:395.586667pt;}
.y115{bottom:397.186667pt;}
.yd3{bottom:403.426667pt;}
.yb6{bottom:406.146667pt;}
.ya4{bottom:406.786667pt;}
.y29{bottom:409.666667pt;}
.ye7{bottom:412.546667pt;}
.y6a{bottom:413.186667pt;}
.y54{bottom:413.506667pt;}
.y114{bottom:415.586667pt;}
.yd2{bottom:421.826667pt;}
.yec{bottom:424.226667pt;}
.yb5{bottom:424.546667pt;}
.ya3{bottom:425.186667pt;}
.y28{bottom:428.066667pt;}
.ye6{bottom:429.346667pt;}
.y92{bottom:431.586667pt;}
.y53{bottom:431.906667pt;}
.y113{bottom:433.986667pt;}
.yd1{bottom:440.226667pt;}
.yb4{bottom:442.626667pt;}
.ya2{bottom:443.586667pt;}
.ye5{bottom:446.306667pt;}
.y27{bottom:446.466667pt;}
.y52{bottom:450.306667pt;}
.y112{bottom:452.386667pt;}
.yd0{bottom:458.626667pt;}
.yb3{bottom:461.026667pt;}
.ya1{bottom:461.666667pt;}
.ye4{bottom:463.106667pt;}
.y26{bottom:464.866667pt;}
.y69{bottom:468.386667pt;}
.y51{bottom:468.706667pt;}
.y111{bottom:470.786667pt;}
.ycf{bottom:477.026667pt;}
.yeb{bottom:479.426667pt;}
.yb2{bottom:479.746667pt;}
.ya0{bottom:480.386667pt;}
.y25{bottom:483.266667pt;}
.ye3{bottom:483.586667pt;}
.y78{bottom:486.786667pt;}
.y50{bottom:487.106667pt;}
.y110{bottom:489.186667pt;}
.yb1{bottom:494.146667pt;}
.yce{bottom:495.426667pt;}
.y9f{bottom:498.786667pt;}
.y24{bottom:501.346667pt;}
.y77{bottom:505.186667pt;}
.y4f{bottom:505.506667pt;}
.y10f{bottom:507.586667pt;}
.ycd{bottom:513.826667pt;}
.y9e{bottom:517.186667pt;}
.y23{bottom:522.946667pt;}
.y76{bottom:523.586667pt;}
.y4e{bottom:523.906667pt;}
.y10e{bottom:525.986667pt;}
.ycc{bottom:531.906667pt;}
.y22{bottom:534.306667pt;}
.y9d{bottom:535.586667pt;}
.y75{bottom:541.986667pt;}
.y4d{bottom:542.306667pt;}
.y10d{bottom:544.386667pt;}
.ycb{bottom:550.626667pt;}
.y21{bottom:552.866667pt;}
.y9c{bottom:553.986667pt;}
.y68{bottom:560.386667pt;}
.y4c{bottom:560.706667pt;}
.y10c{bottom:562.786667pt;}
.yca{bottom:569.026667pt;}
.y20{bottom:571.266667pt;}
.y9b{bottom:572.066667pt;}
.y7c{bottom:578.786667pt;}
.y4b{bottom:579.106667pt;}
.y10b{bottom:581.186667pt;}
.y1f{bottom:589.346667pt;}
.yc9{bottom:590.626667pt;}
.y9a{bottom:590.786667pt;}
.y7b{bottom:597.186667pt;}
.y4a{bottom:597.506667pt;}
.y10a{bottom:599.586667pt;}
.y1e{bottom:607.773333pt;}
.y99{bottom:609.213333pt;}
.y90{bottom:615.613333pt;}
.y49{bottom:615.933333pt;}
.y109{bottom:618.013333pt;}
.y1d{bottom:626.493333pt;}
.y98{bottom:627.613333pt;}
.yc8{bottom:630.813333pt;}
.y67{bottom:634.013333pt;}
.y48{bottom:634.333333pt;}
.y108{bottom:636.413333pt;}
.y1c{bottom:644.893333pt;}
.y97{bottom:646.013333pt;}
.yc7{bottom:652.413333pt;}
.y47{bottom:652.733333pt;}
.y107{bottom:654.813333pt;}
.y1b{bottom:663.293333pt;}
.y96{bottom:664.093333pt;}
.y66{bottom:670.653333pt;}
.y46{bottom:670.973333pt;}
.y106{bottom:673.213333pt;}
.y1a{bottom:681.693333pt;}
.y95{bottom:685.853333pt;}
.y65{bottom:689.053333pt;}
.y45{bottom:689.373333pt;}
.y105{bottom:691.613333pt;}
.y19{bottom:700.093333pt;}
.y94{bottom:707.453333pt;}
.y44{bottom:707.773333pt;}
.y104{bottom:710.013333pt;}
.y18{bottom:718.493333pt;}
.y6f{bottom:725.853333pt;}
.y43{bottom:726.173333pt;}
.y103{bottom:728.413333pt;}
.y17{bottom:736.573333pt;}
.y6e{bottom:744.253333pt;}
.y42{bottom:744.573333pt;}
.y102{bottom:746.333333pt;}
.y16{bottom:754.973333pt;}
.y83{bottom:762.653333pt;}
.y41{bottom:762.973333pt;}
.y15{bottom:773.693333pt;}
.y82{bottom:781.053333pt;}
.y40{bottom:781.373333pt;}
.y14{bottom:792.093333pt;}
.y3f{bottom:799.773333pt;}
.y13{bottom:810.213333pt;}
.y74{bottom:817.893333pt;}
.y3e{bottom:818.213333pt;}
.y12{bottom:828.613333pt;}
.y73{bottom:836.293333pt;}
.y3d{bottom:836.613333pt;}
.y11{bottom:847.333333pt;}
.y72{bottom:854.693333pt;}
.y3c{bottom:855.013333pt;}
.y10{bottom:868.773333pt;}
.y71{bottom:873.093333pt;}
.y3b{bottom:873.413333pt;}
.y70{bottom:891.493333pt;}
.y3a{bottom:891.813333pt;}
.yf{bottom:905.093333pt;}
.y6{bottom:909.573333pt;}
.y5{bottom:926.853333pt;}
.yb{bottom:930.240000pt;}
.y4{bottom:948.773333pt;}
.y3{bottom:970.533333pt;}
.y2{bottom:992.293333pt;}
.y1{bottom:1011.493333pt;}
.h9{height:3.870000pt;}
.he{height:26.122500pt;}
.h4{height:34.720000pt;}
.h6{height:43.200000pt;}
.h2{height:47.742188pt;}
.hb{height:48.375000pt;}
.h8{height:50.720000pt;}
.h5{height:52.834688pt;}
.h10{height:57.375000pt;}
.hf{height:57.787500pt;}
.h11{height:62.781250pt;}
.hd{height:62.812500pt;}
.hc{height:64.500000pt;}
.h3{height:65.531250pt;}
.h7{height:74.477812pt;}
.ha{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:41.600000pt;}
.w4{width:213.600000pt;}
.w2{width:552.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.826667pt;}
.x3{left:3.360000pt;}
.x9{left:9.693333pt;}
.x7{left:48.893333pt;}
.x8{left:60.413333pt;}
.x1{left:120.032000pt;}
.xc{left:136.506667pt;}
.xb{left:167.866667pt;}
.x4{left:376.000000pt;}
.xa{left:396.893333pt;}
.x6{left:453.120000pt;}
.x2{left:673.893333pt;}
.xd{left:744.160000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  