
    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_5ae4f0fd7dfe302b2daa8797.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2d541a7e14887b0989d41ebf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_af59584081f852be40503eb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_31b29f58312e43c669f43df1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_d2f913c084f5ddb0e1904eae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_75811b6868d1234f0b7773ea.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_998573fe0ddc26f994217ae2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747559;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_7bf7975f637b4f57ab6b700c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_62e8526d4a5fa7898c7254b9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005859;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;}
.m4{transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219698,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,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;}
.ls15{letter-spacing:-1.410000px;}
.ls17{letter-spacing:-1.386000px;}
.lsb{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.149760px;}
.ls1e{letter-spacing:0.153600px;}
.lsd{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.508200px;}
.ls14{letter-spacing:0.666000px;}
.ls18{letter-spacing:3.060000px;}
.lsc{letter-spacing:3.780000px;}
.ls1a{letter-spacing:4.500000px;}
.lse{letter-spacing:5.220000px;}
.ls1c{letter-spacing:9.540000px;}
.ls16{letter-spacing:13.626720px;}
.ls1d{letter-spacing:16.506720px;}
.ls10{letter-spacing:17.226720px;}
.ls12{letter-spacing:19.386720px;}
.ls3{letter-spacing:21.060000px;}
.ls11{letter-spacing:23.850720px;}
.ls1b{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-33.704640px;}
.ws2{word-spacing:-24.300000px;}
.wse{word-spacing:-22.008720px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.wsd{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.wsb{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.093600px;}
.wsc{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.ws4{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.328000px;}
.ws9{word-spacing:-14.166000px;}
.ws10{word-spacing:-13.554000px;}
.wsf{word-spacing:-0.084240px;}
.ws7{word-spacing:0.000000px;}
._18{margin-left:-7.338000px;}
._3{margin-left:-5.958720px;}
._4{margin-left:-4.875840px;}
._14{margin-left:-3.831120px;}
._5{margin-left:-2.486880px;}
._2{margin-left:-1.104000px;}
._0{width:1.317600px;}
._a{width:2.928240px;}
._9{width:4.260000px;}
._6{width:5.286720px;}
._b{width:6.331200px;}
._8{width:7.470000px;}
._12{width:9.203040px;}
._7{width:10.207200px;}
._16{width:11.367840px;}
._15{width:12.430080px;}
._e{width:13.707120px;}
._13{width:15.940080px;}
._f{width:17.289120px;}
._d{width:18.406080px;}
._c{width:19.720800px;}
._11{width:21.752640px;}
._10{width:23.313120px;}
._17{width:25.400160px;}
._1a{width:27.683040px;}
._19{width:28.946160px;}
._1b{width:33.957360px;}
._1{width:1100.028000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:84.384000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.yad{bottom:4.860000px;}
.yab{bottom:4.890000px;}
.y24{bottom:5.760000px;}
.yba{bottom:5.940000px;}
.ycd{bottom:6.660000px;}
.yb5{bottom:6.690000px;}
.ycf{bottom:6.840000px;}
.y7{bottom:8.100000px;}
.ybc{bottom:9.900000px;}
.yd1{bottom:10.080000px;}
.ybe{bottom:10.260000px;}
.yc2{bottom:10.440000px;}
.yd6{bottom:10.485000px;}
.yd4{bottom:10.620000px;}
.yc0{bottom:10.800000px;}
.y22{bottom:10.980000px;}
.y33{bottom:25.560000px;}
.yb9{bottom:25.740000px;}
.yb7{bottom:30.630000px;}
.y21{bottom:30.780000px;}
.y6{bottom:36.180000px;}
.y32{bottom:45.360000px;}
.y20{bottom:50.580000px;}
.yb{bottom:57.420000px;}
.y5{bottom:58.140000px;}
.y31{bottom:65.160000px;}
.y1f{bottom:70.560000px;}
.y4{bottom:81.900000px;}
.y30{bottom:85.140000px;}
.ye8{bottom:86.220000px;}
.yfb{bottom:89.460000px;}
.y1e{bottom:90.360000px;}
.ya9{bottom:91.440000px;}
.y4b{bottom:95.400000px;}
.y81{bottom:96.660000px;}
.y2f{bottom:104.940000px;}
.ye7{bottom:106.200000px;}
.y9{bottom:108.750000px;}
.yfa{bottom:109.440000px;}
.y1d{bottom:110.190000px;}
.ya8{bottom:111.240000px;}
.y4a{bottom:115.200000px;}
.y80{bottom:116.460000px;}
.y3{bottom:118.110000px;}
.y2e{bottom:124.770000px;}
.yb0{bottom:125.670000px;}
.ye6{bottom:126.000000px;}
.yf9{bottom:129.240000px;}
.y1c{bottom:129.990000px;}
.y8{bottom:130.710000px;}
.ya7{bottom:131.040000px;}
.y49{bottom:135.000000px;}
.y7f{bottom:136.440000px;}
.y2d{bottom:144.570000px;}
.ye5{bottom:145.800000px;}
.yf8{bottom:149.040000px;}
.y1b{bottom:149.790000px;}
.ya6{bottom:151.020000px;}
.y48{bottom:154.800000px;}
.y7e{bottom:156.240000px;}
.yaf{bottom:160.230000px;}
.y2c{bottom:164.370000px;}
.ye4{bottom:165.600000px;}
.y1a{bottom:169.770000px;}
.ya5{bottom:170.820000px;}
.y47{bottom:174.780000px;}
.y7d{bottom:176.040000px;}
.yf7{bottom:177.840000px;}
.y2b{bottom:184.350000px;}
.ye3{bottom:185.400000px;}
.yae{bottom:185.760000px;}
.yac{bottom:187.740000px;}
.y19{bottom:189.570000px;}
.y46{bottom:194.580000px;}
.y7c{bottom:195.840000px;}
.yf6{bottom:197.640000px;}
.y2a{bottom:204.150000px;}
.ye2{bottom:205.380000px;}
.y18{bottom:209.370000px;}
.yaa{bottom:212.040000px;}
.y45{bottom:214.410000px;}
.y7b{bottom:215.670000px;}
.yf5{bottom:217.650000px;}
.y29{bottom:223.950000px;}
.ye1{bottom:225.210000px;}
.y17{bottom:229.170000px;}
.y44{bottom:234.210000px;}
.yf4{bottom:237.450000px;}
.y28{bottom:243.750000px;}
.y7a{bottom:244.650000px;}
.ye0{bottom:245.010000px;}
.y16{bottom:248.970000px;}
.y43{bottom:254.010000px;}
.yb4{bottom:256.860000px;}
.yf3{bottom:257.250000px;}
.yb2{bottom:263.190000px;}
.y27{bottom:263.550000px;}
.y79{bottom:264.450000px;}
.ydf{bottom:264.810000px;}
.y15{bottom:268.950000px;}
.y42{bottom:273.990000px;}
.yf2{bottom:277.050000px;}
.y26{bottom:283.530000px;}
.y78{bottom:284.250000px;}
.yde{bottom:284.610000px;}
.yb1{bottom:287.310000px;}
.yb3{bottom:287.670000px;}
.y14{bottom:288.750000px;}
.y41{bottom:293.790000px;}
.yf1{bottom:296.850000px;}
.y25{bottom:303.330000px;}
.y77{bottom:304.050000px;}
.ydd{bottom:304.590000px;}
.y13{bottom:308.550000px;}
.y40{bottom:313.590000px;}
.yf0{bottom:316.830000px;}
.y76{bottom:323.850000px;}
.ydc{bottom:324.390000px;}
.y12{bottom:328.350000px;}
.yb6{bottom:332.460000px;}
.y3f{bottom:333.390000px;}
.yef{bottom:336.630000px;}
.y75{bottom:343.830000px;}
.ydb{bottom:344.190000px;}
.y3e{bottom:353.190000px;}
.yee{bottom:356.430000px;}
.y74{bottom:363.630000px;}
.yda{bottom:363.990000px;}
.y3d{bottom:373.170000px;}
.y73{bottom:383.430000px;}
.yd9{bottom:383.790000px;}
.yed{bottom:385.230000px;}
.y3c{bottom:392.970000px;}
.y72{bottom:403.230000px;}
.yd8{bottom:403.770000px;}
.ya4{bottom:405.030000px;}
.y3b{bottom:412.770000px;}
.y71{bottom:423.030000px;}
.yd7{bottom:423.570000px;}
.ya3{bottom:425.010000px;}
.y3a{bottom:432.570000px;}
.yd5{bottom:438.330000px;}
.y70{bottom:443.010000px;}
.ya2{bottom:444.810000px;}
.y39{bottom:452.415000px;}
.y6f{bottom:462.855000px;}
.yd3{bottom:463.575000px;}
.ya1{bottom:464.655000px;}
.y38{bottom:472.395000px;}
.y10d{bottom:482.655000px;}
.ya0{bottom:484.455000px;}
.yd2{bottom:489.135000px;}
.y6e{bottom:491.655000px;}
.y37{bottom:492.195000px;}
.y10c{bottom:502.455000px;}
.y9f{bottom:504.255000px;}
.y6d{bottom:511.455000px;}
.y36{bottom:511.995000px;}
.yd0{bottom:514.155000px;}
.y10b{bottom:522.255000px;}
.y9e{bottom:524.235000px;}
.y6c{bottom:531.255000px;}
.y35{bottom:531.795000px;}
.yce{bottom:538.995000px;}
.y10a{bottom:542.235000px;}
.y9d{bottom:544.035000px;}
.y6b{bottom:551.235000px;}
.y34{bottom:551.595000px;}
.ycc{bottom:560.595000px;}
.y109{bottom:562.035000px;}
.y9c{bottom:563.835000px;}
.y11{bottom:571.035000px;}
.y108{bottom:581.835000px;}
.y9b{bottom:583.635000px;}
.ycb{bottom:587.955000px;}
.y6a{bottom:590.835000px;}
.yec{bottom:592.635000px;}
.y107{bottom:601.635000px;}
.y9a{bottom:603.435000px;}
.yca{bottom:607.755000px;}
.y69{bottom:610.635000px;}
.yeb{bottom:612.435000px;}
.y106{bottom:621.435000px;}
.y99{bottom:623.415000px;}
.yc9{bottom:627.555000px;}
.y68{bottom:630.435000px;}
.yea{bottom:632.415000px;}
.y105{bottom:641.415000px;}
.yc8{bottom:647.355000px;}
.y67{bottom:650.415000px;}
.y98{bottom:652.215000px;}
.y104{bottom:661.215000px;}
.yc7{bottom:667.155000px;}
.y66{bottom:670.215000px;}
.y97{bottom:672.015000px;}
.y103{bottom:681.045000px;}
.yc6{bottom:687.165000px;}
.y65{bottom:690.045000px;}
.y96{bottom:691.845000px;}
.y102{bottom:700.845000px;}
.yc5{bottom:706.965000px;}
.y64{bottom:709.845000px;}
.y95{bottom:711.645000px;}
.y101{bottom:720.645000px;}
.yc4{bottom:726.765000px;}
.y63{bottom:729.645000px;}
.y94{bottom:731.625000px;}
.y100{bottom:740.625000px;}
.yc3{bottom:746.565000px;}
.y62{bottom:749.625000px;}
.y93{bottom:751.425000px;}
.yff{bottom:760.425000px;}
.yc1{bottom:761.325000px;}
.y61{bottom:769.425000px;}
.y92{bottom:771.225000px;}
.yfe{bottom:780.225000px;}
.ybf{bottom:786.525000px;}
.y60{bottom:789.225000px;}
.y91{bottom:791.025000px;}
.yfd{bottom:800.025000px;}
.y5f{bottom:809.025000px;}
.y90{bottom:810.825000px;}
.ybd{bottom:812.085000px;}
.yfc{bottom:819.825000px;}
.y5e{bottom:828.825000px;}
.y8f{bottom:830.805000px;}
.ybb{bottom:837.285000px;}
.ye9{bottom:839.805000px;}
.y5d{bottom:848.805000px;}
.y8e{bottom:859.605000px;}
.yb8{bottom:861.945000px;}
.y5c{bottom:868.605000px;}
.y8d{bottom:879.405000px;}
.y5b{bottom:888.405000px;}
.y23{bottom:893.625000px;}
.y8c{bottom:899.205000px;}
.y5a{bottom:908.205000px;}
.y8b{bottom:919.050000px;}
.y10{bottom:924.450000px;}
.y59{bottom:928.050000px;}
.y8a{bottom:939.030000px;}
.yf{bottom:944.430000px;}
.y58{bottom:948.030000px;}
.y89{bottom:958.830000px;}
.ye{bottom:964.770000px;}
.y57{bottom:967.830000px;}
.y88{bottom:978.630000px;}
.yd{bottom:986.010000px;}
.y56{bottom:987.630000px;}
.y87{bottom:998.430000px;}
.y55{bottom:1007.430000px;}
.yc{bottom:1009.410000px;}
.y86{bottom:1018.230000px;}
.y54{bottom:1027.230000px;}
.ya{bottom:1035.330000px;}
.y85{bottom:1038.210000px;}
.y53{bottom:1047.210000px;}
.y1{bottom:1051.530000px;}
.y84{bottom:1058.010000px;}
.y52{bottom:1067.010000px;}
.y83{bottom:1077.810000px;}
.y51{bottom:1086.810000px;}
.y82{bottom:1097.610000px;}
.y50{bottom:1106.610000px;}
.y4f{bottom:1126.410000px;}
.y4e{bottom:1146.390000px;}
.y4d{bottom:1166.220000px;}
.y4c{bottom:1195.020000px;}
.hc{height:19.800000px;}
.h1f{height:20.700000px;}
.h20{height:20.880000px;}
.h12{height:23.760000px;}
.h1b{height:23.940000px;}
.h21{height:24.120000px;}
.h1c{height:24.300000px;}
.h1e{height:24.480000px;}
.h22{height:24.516000px;}
.h14{height:24.660000px;}
.h1d{height:24.840000px;}
.h1a{height:39.780000px;}
.he{height:41.493516px;}
.ha{height:41.726953px;}
.h8{height:42.164648px;}
.h10{height:43.506914px;}
.h11{height:43.681992px;}
.h9{height:46.736719px;}
.h5{height:48.418594px;}
.h6{height:50.273438px;}
.h19{height:55.980000px;}
.h18{height:56.160000px;}
.h17{height:61.575820px;}
.h13{height:61.681078px;}
.hf{height:65.884219px;}
.h7{height:67.565039px;}
.h15{height:70.995234px;}
.h3{height:73.722656px;}
.h4{height:105.060586px;}
.h2{height:156.810000px;}
.h16{height:180.180000px;}
.hd{height:317.370000px;}
.hb{height:342.390000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:44.820000px;}
.wf{width:52.560000px;}
.w9{width:62.280000px;}
.w13{width:62.496000px;}
.w10{width:63.000000px;}
.w11{width:71.136000px;}
.w12{width:72.900000px;}
.w15{width:105.480000px;}
.w16{width:105.876000px;}
.w17{width:116.316000px;}
.w2{width:127.656000px;}
.w4{width:157.170000px;}
.wa{width:160.380000px;}
.wc{width:194.040000px;}
.wd{width:197.640000px;}
.we{width:286.275000px;}
.w14{width:297.075000px;}
.w6{width:304.995000px;}
.wb{width:345.060000px;}
.w7{width:473.505000px;}
.w3{width:499.785000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x23{left:1.080000px;}
.x6{left:8.100000px;}
.xc{left:9.900000px;}
.x27{left:18.945000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xa{left:55.799987px;}
.x13{left:60.659987px;}
.xf{left:66.599987px;}
.x10{left:70.739987px;}
.x11{left:75.599987px;}
.x12{left:77.075987px;}
.x2a{left:80.675987px;}
.x1d{left:83.130000px;}
.x7{left:102.285000px;}
.x21{left:108.035987px;}
.xd{left:109.835987px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x2b{left:135.755987px;}
.x22{left:140.436000px;}
.x3{left:181.650000px;}
.x18{left:205.920000px;}
.x1e{left:207.180000px;}
.x17{left:218.340000px;}
.x15{left:245.340000px;}
.x1a{left:246.854987px;}
.x19{left:274.394987px;}
.xe{left:291.494987px;}
.x16{left:328.680000px;}
.x14{left:345.854987px;}
.xb{left:363.855000px;}
.x1f{left:369.794987px;}
.x24{left:427.425000px;}
.x2c{left:431.025000px;}
.x25{left:480.705000px;}
.x20{left:523.904987px;}
.x2d{left:537.225000px;}
.x26{left:544.605000px;}
.x1c{left:551.340000px;}
.x1b{left:600.089987px;}
.x28{left:616.650000px;}
.x2e{left:643.830000px;}
.x9{left:681.450000px;}
.x29{left:690.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.253333pt;}
.ls17{letter-spacing:-1.232000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133120pt;}
.ls1e{letter-spacing:0.136533pt;}
.lsd{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.451733pt;}
.ls14{letter-spacing:0.592000pt;}
.ls18{letter-spacing:2.720000pt;}
.lsc{letter-spacing:3.360000pt;}
.ls1a{letter-spacing:4.000000pt;}
.lse{letter-spacing:4.640000pt;}
.ls1c{letter-spacing:8.480000pt;}
.ls16{letter-spacing:12.112640pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls10{letter-spacing:15.312640pt;}
.ls12{letter-spacing:17.232640pt;}
.ls3{letter-spacing:18.720000pt;}
.ls11{letter-spacing:21.200640pt;}
.ls1b{letter-spacing:40.912640pt;}
.ws5{word-spacing:-29.959680pt;}
.ws2{word-spacing:-21.600000pt;}
.wse{word-spacing:-19.563307pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.wsd{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.ws4{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.736000pt;}
.ws9{word-spacing:-12.592000pt;}
.ws10{word-spacing:-12.048000pt;}
.wsf{word-spacing:-0.074880pt;}
.ws7{word-spacing:0.000000pt;}
._18{margin-left:-6.522667pt;}
._3{margin-left:-5.296640pt;}
._4{margin-left:-4.334080pt;}
._14{margin-left:-3.405440pt;}
._5{margin-left:-2.210560pt;}
._2{margin-left:-0.981333pt;}
._0{width:1.171200pt;}
._a{width:2.602880pt;}
._9{width:3.786667pt;}
._6{width:4.699307pt;}
._b{width:5.627733pt;}
._8{width:6.640000pt;}
._12{width:8.180480pt;}
._7{width:9.073067pt;}
._16{width:10.104747pt;}
._15{width:11.048960pt;}
._e{width:12.184107pt;}
._13{width:14.168960pt;}
._f{width:15.368107pt;}
._d{width:16.360960pt;}
._c{width:17.529600pt;}
._11{width:19.335680pt;}
._10{width:20.722773pt;}
._17{width:22.577920pt;}
._1a{width:24.607147pt;}
._19{width:25.729920pt;}
._1b{width:30.184320pt;}
._1{width:977.802667pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:75.008000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.yad{bottom:4.320000pt;}
.yab{bottom:4.346667pt;}
.y24{bottom:5.120000pt;}
.yba{bottom:5.280000pt;}
.ycd{bottom:5.920000pt;}
.yb5{bottom:5.946667pt;}
.ycf{bottom:6.080000pt;}
.y7{bottom:7.200000pt;}
.ybc{bottom:8.800000pt;}
.yd1{bottom:8.960000pt;}
.ybe{bottom:9.120000pt;}
.yc2{bottom:9.280000pt;}
.yd6{bottom:9.320000pt;}
.yd4{bottom:9.440000pt;}
.yc0{bottom:9.600000pt;}
.y22{bottom:9.760000pt;}
.y33{bottom:22.720000pt;}
.yb9{bottom:22.880000pt;}
.yb7{bottom:27.226667pt;}
.y21{bottom:27.360000pt;}
.y6{bottom:32.160000pt;}
.y32{bottom:40.320000pt;}
.y20{bottom:44.960000pt;}
.yb{bottom:51.040000pt;}
.y5{bottom:51.680000pt;}
.y31{bottom:57.920000pt;}
.y1f{bottom:62.720000pt;}
.y4{bottom:72.800000pt;}
.y30{bottom:75.680000pt;}
.ye8{bottom:76.640000pt;}
.yfb{bottom:79.520000pt;}
.y1e{bottom:80.320000pt;}
.ya9{bottom:81.280000pt;}
.y4b{bottom:84.800000pt;}
.y81{bottom:85.920000pt;}
.y2f{bottom:93.280000pt;}
.ye7{bottom:94.400000pt;}
.y9{bottom:96.666667pt;}
.yfa{bottom:97.280000pt;}
.y1d{bottom:97.946667pt;}
.ya8{bottom:98.880000pt;}
.y4a{bottom:102.400000pt;}
.y80{bottom:103.520000pt;}
.y3{bottom:104.986667pt;}
.y2e{bottom:110.906667pt;}
.yb0{bottom:111.706667pt;}
.ye6{bottom:112.000000pt;}
.yf9{bottom:114.880000pt;}
.y1c{bottom:115.546667pt;}
.y8{bottom:116.186667pt;}
.ya7{bottom:116.480000pt;}
.y49{bottom:120.000000pt;}
.y7f{bottom:121.280000pt;}
.y2d{bottom:128.506667pt;}
.ye5{bottom:129.600000pt;}
.yf8{bottom:132.480000pt;}
.y1b{bottom:133.146667pt;}
.ya6{bottom:134.240000pt;}
.y48{bottom:137.600000pt;}
.y7e{bottom:138.880000pt;}
.yaf{bottom:142.426667pt;}
.y2c{bottom:146.106667pt;}
.ye4{bottom:147.200000pt;}
.y1a{bottom:150.906667pt;}
.ya5{bottom:151.840000pt;}
.y47{bottom:155.360000pt;}
.y7d{bottom:156.480000pt;}
.yf7{bottom:158.080000pt;}
.y2b{bottom:163.866667pt;}
.ye3{bottom:164.800000pt;}
.yae{bottom:165.120000pt;}
.yac{bottom:166.880000pt;}
.y19{bottom:168.506667pt;}
.y46{bottom:172.960000pt;}
.y7c{bottom:174.080000pt;}
.yf6{bottom:175.680000pt;}
.y2a{bottom:181.466667pt;}
.ye2{bottom:182.560000pt;}
.y18{bottom:186.106667pt;}
.yaa{bottom:188.480000pt;}
.y45{bottom:190.586667pt;}
.y7b{bottom:191.706667pt;}
.yf5{bottom:193.466667pt;}
.y29{bottom:199.066667pt;}
.ye1{bottom:200.186667pt;}
.y17{bottom:203.706667pt;}
.y44{bottom:208.186667pt;}
.yf4{bottom:211.066667pt;}
.y28{bottom:216.666667pt;}
.y7a{bottom:217.466667pt;}
.ye0{bottom:217.786667pt;}
.y16{bottom:221.306667pt;}
.y43{bottom:225.786667pt;}
.yb4{bottom:228.320000pt;}
.yf3{bottom:228.666667pt;}
.yb2{bottom:233.946667pt;}
.y27{bottom:234.266667pt;}
.y79{bottom:235.066667pt;}
.ydf{bottom:235.386667pt;}
.y15{bottom:239.066667pt;}
.y42{bottom:243.546667pt;}
.yf2{bottom:246.266667pt;}
.y26{bottom:252.026667pt;}
.y78{bottom:252.666667pt;}
.yde{bottom:252.986667pt;}
.yb1{bottom:255.386667pt;}
.yb3{bottom:255.706667pt;}
.y14{bottom:256.666667pt;}
.y41{bottom:261.146667pt;}
.yf1{bottom:263.866667pt;}
.y25{bottom:269.626667pt;}
.y77{bottom:270.266667pt;}
.ydd{bottom:270.746667pt;}
.y13{bottom:274.266667pt;}
.y40{bottom:278.746667pt;}
.yf0{bottom:281.626667pt;}
.y76{bottom:287.866667pt;}
.ydc{bottom:288.346667pt;}
.y12{bottom:291.866667pt;}
.yb6{bottom:295.520000pt;}
.y3f{bottom:296.346667pt;}
.yef{bottom:299.226667pt;}
.y75{bottom:305.626667pt;}
.ydb{bottom:305.946667pt;}
.y3e{bottom:313.946667pt;}
.yee{bottom:316.826667pt;}
.y74{bottom:323.226667pt;}
.yda{bottom:323.546667pt;}
.y3d{bottom:331.706667pt;}
.y73{bottom:340.826667pt;}
.yd9{bottom:341.146667pt;}
.yed{bottom:342.426667pt;}
.y3c{bottom:349.306667pt;}
.y72{bottom:358.426667pt;}
.yd8{bottom:358.906667pt;}
.ya4{bottom:360.026667pt;}
.y3b{bottom:366.906667pt;}
.y71{bottom:376.026667pt;}
.yd7{bottom:376.506667pt;}
.ya3{bottom:377.786667pt;}
.y3a{bottom:384.506667pt;}
.yd5{bottom:389.626667pt;}
.y70{bottom:393.786667pt;}
.ya2{bottom:395.386667pt;}
.y39{bottom:402.146667pt;}
.y6f{bottom:411.426667pt;}
.yd3{bottom:412.066667pt;}
.ya1{bottom:413.026667pt;}
.y38{bottom:419.906667pt;}
.y10d{bottom:429.026667pt;}
.ya0{bottom:430.626667pt;}
.yd2{bottom:434.786667pt;}
.y6e{bottom:437.026667pt;}
.y37{bottom:437.506667pt;}
.y10c{bottom:446.626667pt;}
.y9f{bottom:448.226667pt;}
.y6d{bottom:454.626667pt;}
.y36{bottom:455.106667pt;}
.yd0{bottom:457.026667pt;}
.y10b{bottom:464.226667pt;}
.y9e{bottom:465.986667pt;}
.y6c{bottom:472.226667pt;}
.y35{bottom:472.706667pt;}
.yce{bottom:479.106667pt;}
.y10a{bottom:481.986667pt;}
.y9d{bottom:483.586667pt;}
.y6b{bottom:489.986667pt;}
.y34{bottom:490.306667pt;}
.ycc{bottom:498.306667pt;}
.y109{bottom:499.586667pt;}
.y9c{bottom:501.186667pt;}
.y11{bottom:507.586667pt;}
.y108{bottom:517.186667pt;}
.y9b{bottom:518.786667pt;}
.ycb{bottom:522.626667pt;}
.y6a{bottom:525.186667pt;}
.yec{bottom:526.786667pt;}
.y107{bottom:534.786667pt;}
.y9a{bottom:536.386667pt;}
.yca{bottom:540.226667pt;}
.y69{bottom:542.786667pt;}
.yeb{bottom:544.386667pt;}
.y106{bottom:552.386667pt;}
.y99{bottom:554.146667pt;}
.yc9{bottom:557.826667pt;}
.y68{bottom:560.386667pt;}
.yea{bottom:562.146667pt;}
.y105{bottom:570.146667pt;}
.yc8{bottom:575.426667pt;}
.y67{bottom:578.146667pt;}
.y98{bottom:579.746667pt;}
.y104{bottom:587.746667pt;}
.yc7{bottom:593.026667pt;}
.y66{bottom:595.746667pt;}
.y97{bottom:597.346667pt;}
.y103{bottom:605.373333pt;}
.yc6{bottom:610.813333pt;}
.y65{bottom:613.373333pt;}
.y96{bottom:614.973333pt;}
.y102{bottom:622.973333pt;}
.yc5{bottom:628.413333pt;}
.y64{bottom:630.973333pt;}
.y95{bottom:632.573333pt;}
.y101{bottom:640.573333pt;}
.yc4{bottom:646.013333pt;}
.y63{bottom:648.573333pt;}
.y94{bottom:650.333333pt;}
.y100{bottom:658.333333pt;}
.yc3{bottom:663.613333pt;}
.y62{bottom:666.333333pt;}
.y93{bottom:667.933333pt;}
.yff{bottom:675.933333pt;}
.yc1{bottom:676.733333pt;}
.y61{bottom:683.933333pt;}
.y92{bottom:685.533333pt;}
.yfe{bottom:693.533333pt;}
.ybf{bottom:699.133333pt;}
.y60{bottom:701.533333pt;}
.y91{bottom:703.133333pt;}
.yfd{bottom:711.133333pt;}
.y5f{bottom:719.133333pt;}
.y90{bottom:720.733333pt;}
.ybd{bottom:721.853333pt;}
.yfc{bottom:728.733333pt;}
.y5e{bottom:736.733333pt;}
.y8f{bottom:738.493333pt;}
.ybb{bottom:744.253333pt;}
.ye9{bottom:746.493333pt;}
.y5d{bottom:754.493333pt;}
.y8e{bottom:764.093333pt;}
.yb8{bottom:766.173333pt;}
.y5c{bottom:772.093333pt;}
.y8d{bottom:781.693333pt;}
.y5b{bottom:789.693333pt;}
.y23{bottom:794.333333pt;}
.y8c{bottom:799.293333pt;}
.y5a{bottom:807.293333pt;}
.y8b{bottom:816.933333pt;}
.y10{bottom:821.733333pt;}
.y59{bottom:824.933333pt;}
.y8a{bottom:834.693333pt;}
.yf{bottom:839.493333pt;}
.y58{bottom:842.693333pt;}
.y89{bottom:852.293333pt;}
.ye{bottom:857.573333pt;}
.y57{bottom:860.293333pt;}
.y88{bottom:869.893333pt;}
.yd{bottom:876.453333pt;}
.y56{bottom:877.893333pt;}
.y87{bottom:887.493333pt;}
.y55{bottom:895.493333pt;}
.yc{bottom:897.253333pt;}
.y86{bottom:905.093333pt;}
.y54{bottom:913.093333pt;}
.ya{bottom:920.293333pt;}
.y85{bottom:922.853333pt;}
.y53{bottom:930.853333pt;}
.y1{bottom:934.693333pt;}
.y84{bottom:940.453333pt;}
.y52{bottom:948.453333pt;}
.y83{bottom:958.053333pt;}
.y51{bottom:966.053333pt;}
.y82{bottom:975.653333pt;}
.y50{bottom:983.653333pt;}
.y4f{bottom:1001.253333pt;}
.y4e{bottom:1019.013333pt;}
.y4d{bottom:1036.640000pt;}
.y4c{bottom:1062.240000pt;}
.hc{height:17.600000pt;}
.h1f{height:18.400000pt;}
.h20{height:18.560000pt;}
.h12{height:21.120000pt;}
.h1b{height:21.280000pt;}
.h21{height:21.440000pt;}
.h1c{height:21.600000pt;}
.h1e{height:21.760000pt;}
.h22{height:21.792000pt;}
.h14{height:21.920000pt;}
.h1d{height:22.080000pt;}
.h1a{height:35.360000pt;}
.he{height:36.883125pt;}
.ha{height:37.090625pt;}
.h8{height:37.479688pt;}
.h10{height:38.672812pt;}
.h11{height:38.828437pt;}
.h9{height:41.543750pt;}
.h5{height:43.038750pt;}
.h6{height:44.687500pt;}
.h19{height:49.760000pt;}
.h18{height:49.920000pt;}
.h17{height:54.734062pt;}
.h13{height:54.827625pt;}
.hf{height:58.563750pt;}
.h7{height:60.057813pt;}
.h15{height:63.106875pt;}
.h3{height:65.531250pt;}
.h4{height:93.387187pt;}
.h2{height:139.386667pt;}
.h16{height:160.160000pt;}
.hd{height:282.106667pt;}
.hb{height:304.346667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:39.840000pt;}
.wf{width:46.720000pt;}
.w9{width:55.360000pt;}
.w13{width:55.552000pt;}
.w10{width:56.000000pt;}
.w11{width:63.232000pt;}
.w12{width:64.800000pt;}
.w15{width:93.760000pt;}
.w16{width:94.112000pt;}
.w17{width:103.392000pt;}
.w2{width:113.472000pt;}
.w4{width:139.706667pt;}
.wa{width:142.560000pt;}
.wc{width:172.480000pt;}
.wd{width:175.680000pt;}
.we{width:254.466667pt;}
.w14{width:264.066667pt;}
.w6{width:271.106667pt;}
.wb{width:306.720000pt;}
.w7{width:420.893333pt;}
.w3{width:444.253333pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x23{left:0.960000pt;}
.x6{left:7.200000pt;}
.xc{left:8.800000pt;}
.x27{left:16.840000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xa{left:49.599988pt;}
.x13{left:53.919988pt;}
.xf{left:59.199988pt;}
.x10{left:62.879988pt;}
.x11{left:67.199988pt;}
.x12{left:68.511988pt;}
.x2a{left:71.711988pt;}
.x1d{left:73.893333pt;}
.x7{left:90.920000pt;}
.x21{left:96.031988pt;}
.xd{left:97.631988pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x2b{left:120.671988pt;}
.x22{left:124.832000pt;}
.x3{left:161.466667pt;}
.x18{left:183.040000pt;}
.x1e{left:184.160000pt;}
.x17{left:194.080000pt;}
.x15{left:218.080000pt;}
.x1a{left:219.426655pt;}
.x19{left:243.906655pt;}
.xe{left:259.106655pt;}
.x16{left:292.160000pt;}
.x14{left:307.426655pt;}
.xb{left:323.426667pt;}
.x1f{left:328.706655pt;}
.x24{left:379.933333pt;}
.x2c{left:383.133333pt;}
.x25{left:427.293333pt;}
.x20{left:465.693321pt;}
.x2d{left:477.533333pt;}
.x26{left:484.093333pt;}
.x1c{left:490.080000pt;}
.x1b{left:533.413322pt;}
.x28{left:548.133333pt;}
.x2e{left:572.293333pt;}
.x9{left:605.733333pt;}
.x29{left:613.733333pt;}
}




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