
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_fe63a3e793480dd51592dd0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_1e724dd0b09586d089563162.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a240784a68ccb10ff458f362.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_24680d00ab75fc4ce6956ec5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c0cbc3bf823d83340ccd2bf2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3ca9e927e485a4219c5e64b6.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2ca52773640869790560508e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_252df976f2dcb936ef3396de.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010254;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_2e4210203a1c8fa8fc88c9ea.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ca88b9a02a982421a2937e48.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987793;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:ffd;src:url('chunks/assets/font_75904887f0093fb20286a664.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fa8ca4c6f2bf950bc2b978a9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cd0bd7c4b99791555c0c4daf.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v3{vertical-align:-79.920000px;}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-68.400000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.342600px;}
.ls11{letter-spacing:-0.229200px;}
.ls13{letter-spacing:-0.110400px;}
.ls7{letter-spacing:-0.109200px;}
.ls6{letter-spacing:-0.106800px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.013440px;}
.ls10{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.188400px;}
.lsc{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.305280px;}
.ls4{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.612000px;}
.lse{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.002720px;}
.lsf{letter-spacing:46.026720px;}
.ls3{letter-spacing:376.716000px;}
.ls0{letter-spacing:2685.516000px;}
.ls2{letter-spacing:2693.436000px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws3{word-spacing:-20.016000px;}
.wsa{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.305520px;}
.ws0{word-spacing:-16.506480px;}
.wsd{word-spacing:-15.552000px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.940000px;}
.wse{word-spacing:-14.829600px;}
.wsc{word-spacing:-14.710800px;}
.ws7{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.868760px;}
.ws8{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-1.590240px;}
._0{width:1.254960px;}
._a{width:2.771280px;}
._f{width:4.459680px;}
._9{width:6.454080px;}
._11{width:8.306640px;}
._10{width:9.979920px;}
._3{width:11.340000px;}
._8{width:12.516480px;}
._14{width:13.661760px;}
._15{width:16.015680px;}
._5{width:17.532480px;}
._4{width:18.943920px;}
._6{width:20.115120px;}
._19{width:21.274560px;}
._18{width:22.469040px;}
._7{width:23.829600px;}
._b{width:25.577280px;}
._c{width:26.593200px;}
._13{width:28.371360px;}
._12{width:29.596080px;}
._16{width:31.074480px;}
._e{width:34.688160px;}
._d{width:36.154800px;}
._1e{width:38.408880px;}
._1d{width:39.504720px;}
._17{width:43.325280px;}
._1a{width:51.273360px;}
._1b{width:55.038240px;}
._1c{width:71.712000px;}
._20{width:72.966960px;}
._22{width:91.313280px;}
._21{width:92.329200px;}
._24{width:170.017200px;}
._23{width:171.092880px;}
._1{width:358.688400px;}
._1f{width:896.802240px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:51.120000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:3.240000px;}
.yc6{bottom:3.420000px;}
.yad{bottom:3.600000px;}
.y9f{bottom:3.780000px;}
.yd0{bottom:3.825000px;}
.ya3{bottom:12.420000px;}
.ya0{bottom:20.520000px;}
.y9b{bottom:20.565000px;}
.yc5{bottom:20.700000px;}
.y9e{bottom:20.880000px;}
.ya2{bottom:21.060000px;}
.ycf{bottom:21.105000px;}
.ycd{bottom:29.520000px;}
.ya7{bottom:29.700000px;}
.yc7{bottom:37.800000px;}
.ya9{bottom:38.160000px;}
.ye8{bottom:38.205000px;}
.ya6{bottom:38.340000px;}
.yb2{bottom:38.385000px;}
.ycc{bottom:46.800000px;}
.ycb{bottom:55.440000px;}
.y2{bottom:57.060000px;}
.y1{bottom:76.320000px;}
.y5c{bottom:111.600000px;}
.ye1{bottom:111.960000px;}
.y12d{bottom:113.040000px;}
.y114{bottom:117.180000px;}
.y151{bottom:121.500000px;}
.y97{bottom:123.480000px;}
.yc1{bottom:128.520000px;}
.y5b{bottom:128.700000px;}
.ye0{bottom:129.240000px;}
.y12c{bottom:130.320000px;}
.y113{bottom:134.460000px;}
.y150{bottom:140.220000px;}
.y96{bottom:140.760000px;}
.yc0{bottom:145.620000px;}
.y5a{bottom:145.980000px;}
.ydf{bottom:146.520000px;}
.y12b{bottom:147.600000px;}
.y112{bottom:151.740000px;}
.y95{bottom:158.040000px;}
.y14f{bottom:158.760000px;}
.ybf{bottom:162.900000px;}
.y59{bottom:163.260000px;}
.yde{bottom:163.620000px;}
.y12a{bottom:164.880000px;}
.y111{bottom:169.020000px;}
.y94{bottom:175.320000px;}
.y14e{bottom:177.480000px;}
.ybe{bottom:180.180000px;}
.y58{bottom:180.540000px;}
.ydd{bottom:180.900000px;}
.y129{bottom:182.160000px;}
.y110{bottom:186.120000px;}
.y93{bottom:192.600000px;}
.y14d{bottom:196.020000px;}
.ybd{bottom:197.460000px;}
.y57{bottom:197.820000px;}
.ydc{bottom:198.180000px;}
.y128{bottom:199.080000px;}
.y10f{bottom:203.400000px;}
.y92{bottom:209.730000px;}
.ybc{bottom:214.770000px;}
.y56{bottom:215.130000px;}
.ydb{bottom:215.490000px;}
.y127{bottom:216.570000px;}
.y10e{bottom:220.710000px;}
.y91{bottom:227.010000px;}
.y126{bottom:230.970000px;}
.ybb{bottom:232.050000px;}
.y55{bottom:232.230000px;}
.yda{bottom:232.770000px;}
.y14c{bottom:233.310000px;}
.y10d{bottom:237.990000px;}
.y90{bottom:244.290000px;}
.y125{bottom:248.970000px;}
.yba{bottom:249.150000px;}
.y54{bottom:249.510000px;}
.yd9{bottom:250.050000px;}
.y14b{bottom:252.030000px;}
.y10c{bottom:255.270000px;}
.y8f{bottom:261.210000px;}
.y118{bottom:261.570000px;}
.yb9{bottom:266.430000px;}
.y53{bottom:266.790000px;}
.yd8{bottom:267.150000px;}
.y14a{bottom:270.570000px;}
.y10b{bottom:272.550000px;}
.y8e{bottom:278.490000px;}
.y117{bottom:278.850000px;}
.yb8{bottom:283.710000px;}
.y52{bottom:284.070000px;}
.yd7{bottom:284.430000px;}
.y149{bottom:289.290000px;}
.y10a{bottom:289.650000px;}
.y8d{bottom:296.130000px;}
.yb7{bottom:300.990000px;}
.y51{bottom:301.350000px;}
.yd6{bottom:301.710000px;}
.y124{bottom:302.070000px;}
.y109{bottom:306.930000px;}
.y148{bottom:308.010000px;}
.y8c{bottom:313.230000px;}
.yb6{bottom:318.270000px;}
.y50{bottom:318.630000px;}
.yd5{bottom:318.990000px;}
.y108{bottom:324.210000px;}
.y147{bottom:326.550000px;}
.y8b{bottom:330.510000px;}
.yb5{bottom:335.550000px;}
.y4f{bottom:335.730000px;}
.yd4{bottom:336.270000px;}
.y123{bottom:337.350000px;}
.y107{bottom:341.490000px;}
.y146{bottom:345.270000px;}
.y8a{bottom:347.790000px;}
.yb4{bottom:349.770000px;}
.y4e{bottom:353.010000px;}
.yd3{bottom:353.370000px;}
.y122{bottom:355.350000px;}
.y106{bottom:358.770000px;}
.y145{bottom:363.810000px;}
.y89{bottom:365.070000px;}
.yb3{bottom:367.770000px;}
.y4d{bottom:370.290000px;}
.yd2{bottom:370.650000px;}
.y121{bottom:373.350000px;}
.y105{bottom:375.870000px;}
.y88{bottom:382.350000px;}
.y144{bottom:382.530000px;}
.yd1{bottom:384.870000px;}
.y4c{bottom:387.570000px;}
.y120{bottom:391.350000px;}
.y104{bottom:393.150000px;}
.y87{bottom:399.630000px;}
.y143{bottom:401.070000px;}
.yb1{bottom:402.870000px;}
.y4b{bottom:404.850000px;}
.y11f{bottom:409.350000px;}
.y103{bottom:410.430000px;}
.y86{bottom:416.730000px;}
.y142{bottom:419.790000px;}
.y4a{bottom:421.950000px;}
.y11e{bottom:427.350000px;}
.y102{bottom:427.710000px;}
.y85{bottom:434.010000px;}
.yce{bottom:438.150000px;}
.y141{bottom:438.330000px;}
.y49{bottom:439.230000px;}
.y101{bottom:445.035000px;}
.y11d{bottom:445.395000px;}
.y84{bottom:451.335000px;}
.yb0{bottom:455.475000px;}
.y48{bottom:456.555000px;}
.y140{bottom:457.095000px;}
.y100{bottom:462.315000px;}
.y11c{bottom:463.395000px;}
.y83{bottom:468.615000px;}
.y47{bottom:473.835000px;}
.y13f{bottom:475.815000px;}
.yff{bottom:479.415000px;}
.y82{bottom:485.535000px;}
.y116{bottom:485.895000px;}
.yaf{bottom:490.755000px;}
.y46{bottom:491.115000px;}
.y13e{bottom:494.355000px;}
.y24{bottom:495.795000px;}
.yfe{bottom:496.695000px;}
.y11b{bottom:502.095000px;}
.y81{bottom:502.635000px;}
.y115{bottom:502.995000px;}
.y45{bottom:508.395000px;}
.yca{bottom:508.755000px;}
.y23{bottom:513.075000px;}
.yfd{bottom:513.975000px;}
.y11a{bottom:519.555000px;}
.y80{bottom:520.275000px;}
.y44{bottom:525.495000px;}
.yae{bottom:526.035000px;}
.yfc{bottom:531.255000px;}
.y13d{bottom:531.615000px;}
.y119{bottom:537.195000px;}
.y22{bottom:537.555000px;}
.y43{bottom:542.775000px;}
.y21{bottom:547.815000px;}
.yfb{bottom:548.535000px;}
.y13c{bottom:550.335000px;}
.y7f{bottom:554.835000px;}
.y42{bottom:559.695000px;}
.yac{bottom:561.315000px;}
.y20{bottom:565.095000px;}
.yfa{bottom:565.815000px;}
.y13b{bottom:568.875000px;}
.y7e{bottom:572.115000px;}
.y41{bottom:576.975000px;}
.yc9{bottom:578.415000px;}
.y1f{bottom:582.015000px;}
.yf9{bottom:582.915000px;}
.y13a{bottom:587.595000px;}
.y7d{bottom:589.395000px;}
.y40{bottom:594.975000px;}
.yab{bottom:596.415000px;}
.y1e{bottom:599.295000px;}
.yf8{bottom:600.195000px;}
.y139{bottom:606.135000px;}
.y7c{bottom:606.495000px;}
.y3f{bottom:613.695000px;}
.y1d{bottom:616.575000px;}
.yf7{bottom:617.475000px;}
.y7b{bottom:623.775000px;}
.y138{bottom:624.855000px;}
.y1c{bottom:631.695000px;}
.yf6{bottom:634.755000px;}
.y7a{bottom:641.055000px;}
.y3e{bottom:641.415000px;}
.y137{bottom:643.575000px;}
.y1b{bottom:646.275000px;}
.yaa{bottom:648.975000px;}
.yf5{bottom:652.035000px;}
.y79{bottom:658.335000px;}
.y3d{bottom:659.955000px;}
.y1a{bottom:661.035000px;}
.y136{bottom:662.115000px;}
.yf4{bottom:669.315000px;}
.y19{bottom:675.615000px;}
.y3c{bottom:678.705000px;}
.y135{bottom:680.865000px;}
.ya8{bottom:684.285000px;}
.yf3{bottom:686.445000px;}
.y18{bottom:690.405000px;}
.y78{bottom:692.925000px;}
.y3b{bottom:697.245000px;}
.y134{bottom:699.405000px;}
.yf2{bottom:703.725000px;}
.y17{bottom:704.985000px;}
.y77{bottom:710.025000px;}
.y3a{bottom:715.965000px;}
.y133{bottom:718.125000px;}
.y16{bottom:719.565000px;}
.yf1{bottom:721.005000px;}
.y76{bottom:727.305000px;}
.y15{bottom:734.325000px;}
.y39{bottom:734.505000px;}
.ya5{bottom:736.665000px;}
.yf0{bottom:738.285000px;}
.y75{bottom:744.585000px;}
.y167{bottom:748.905000px;}
.y14{bottom:749.805000px;}
.y38{bottom:753.225000px;}
.y132{bottom:755.385000px;}
.yef{bottom:755.565000px;}
.y74{bottom:761.865000px;}
.y166{bottom:767.625000px;}
.y13{bottom:769.065000px;}
.y37{bottom:771.765000px;}
.yc8{bottom:771.945000px;}
.yee{bottom:772.665000px;}
.y131{bottom:773.925000px;}
.y73{bottom:779.145000px;}
.y165{bottom:786.165000px;}
.ya4{bottom:789.225000px;}
.y12{bottom:789.765000px;}
.yed{bottom:789.945000px;}
.y36{bottom:790.485000px;}
.y130{bottom:792.645000px;}
.y72{bottom:796.245000px;}
.y164{bottom:804.885000px;}
.yec{bottom:807.225000px;}
.y35{bottom:809.205000px;}
.y12f{bottom:811.365000px;}
.y71{bottom:813.525000px;}
.y163{bottom:823.605000px;}
.yeb{bottom:824.145000px;}
.ya1{bottom:824.505000px;}
.y34{bottom:827.745000px;}
.y12e{bottom:829.905000px;}
.y11{bottom:830.445000px;}
.y70{bottom:830.805000px;}
.yea{bottom:838.725000px;}
.y162{bottom:842.145000px;}
.y33{bottom:846.465000px;}
.y10{bottom:847.725000px;}
.y6f{bottom:848.085000px;}
.ye9{bottom:856.725000px;}
.y9d{bottom:859.785000px;}
.y161{bottom:860.865000px;}
.yf{bottom:865.005000px;}
.y6e{bottom:865.365000px;}
.y160{bottom:879.405000px;}
.y6d{bottom:882.645000px;}
.y32{bottom:883.725000px;}
.ye7{bottom:892.005000px;}
.y9a{bottom:895.065000px;}
.y15f{bottom:898.125000px;}
.ye{bottom:899.385000px;}
.y6c{bottom:899.745000px;}
.y31{bottom:902.265000px;}
.yc4{bottom:912.210000px;}
.y15e{bottom:916.710000px;}
.y6b{bottom:917.070000px;}
.yd{bottom:919.410000px;}
.y30{bottom:921.030000px;}
.y99{bottom:933.630000px;}
.y6a{bottom:934.350000px;}
.y15d{bottom:935.430000px;}
.y2f{bottom:938.850000px;}
.ye6{bottom:944.610000px;}
.yc{bottom:950.370000px;}
.yc3{bottom:950.910000px;}
.y98{bottom:951.270000px;}
.y69{bottom:951.630000px;}
.y15c{bottom:953.970000px;}
.y2e{bottom:956.130000px;}
.yc2{bottom:968.550000px;}
.y68{bottom:968.910000px;}
.y15b{bottom:972.690000px;}
.y2d{bottom:973.590000px;}
.yb{bottom:978.810000px;}
.ye5{bottom:979.710000px;}
.y67{bottom:986.190000px;}
.y2c{bottom:990.870000px;}
.y15a{bottom:991.410000px;}
.ya{bottom:996.090000px;}
.y66{bottom:1003.290000px;}
.y2b{bottom:1007.790000px;}
.y159{bottom:1009.950000px;}
.y9{bottom:1013.730000px;}
.ye4{bottom:1014.990000px;}
.y65{bottom:1020.570000px;}
.y2a{bottom:1026.330000px;}
.y158{bottom:1028.670000px;}
.y8{bottom:1032.810000px;}
.ye3{bottom:1032.990000px;}
.y64{bottom:1037.850000px;}
.y157{bottom:1047.210000px;}
.y29{bottom:1050.450000px;}
.y7{bottom:1051.710000px;}
.ye2{bottom:1054.410000px;}
.y63{bottom:1055.130000px;}
.y156{bottom:1065.930000px;}
.y62{bottom:1072.410000px;}
.y28{bottom:1082.670000px;}
.y155{bottom:1084.470000px;}
.y6{bottom:1089.330000px;}
.y61{bottom:1089.690000px;}
.y27{bottom:1101.570000px;}
.y154{bottom:1103.190000px;}
.y5{bottom:1106.430000px;}
.y60{bottom:1106.790000px;}
.y26{bottom:1119.030000px;}
.y153{bottom:1121.730000px;}
.y4{bottom:1123.710000px;}
.y5f{bottom:1124.070000px;}
.y25{bottom:1134.330000px;}
.y152{bottom:1140.450000px;}
.y3{bottom:1140.990000px;}
.y5e{bottom:1141.350000px;}
.y5d{bottom:1172.880000px;}
.h17{height:17.100000px;}
.h1b{height:17.280000px;}
.h1c{height:17.316000px;}
.h11{height:34.380000px;}
.h10{height:34.416000px;}
.h12{height:34.560000px;}
.h15{height:34.596000px;}
.hb{height:38.158594px;}
.h18{height:41.726953px;}
.he{height:43.506914px;}
.h2{height:50.229844px;}
.hf{height:50.597578px;}
.h9{height:50.845430px;}
.h14{height:51.660000px;}
.h19{height:51.696000px;}
.h13{height:51.840000px;}
.h16{height:51.876000px;}
.h8{height:53.316562px;}
.ha{height:58.651172px;}
.h4{height:60.226875px;}
.h3{height:62.327813px;}
.hc{height:65.884219px;}
.h1a{height:68.940000px;}
.h5{height:69.086250px;}
.h7{height:75.093750px;}
.hd{height:84.898125px;}
.h6{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:97.200000px;}
.w3{width:130.896000px;}
.wa{width:136.440000px;}
.wc{width:144.036000px;}
.w6{width:146.700000px;}
.w9{width:146.736000px;}
.w7{width:167.790000px;}
.we{width:188.850000px;}
.w4{width:215.310000px;}
.wb{width:260.310000px;}
.w2{width:344.910000px;}
.w5{width:376.455000px;}
.w8{width:407.955000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x11{left:34.740000px;}
.x12{left:61.734000px;}
.xe{left:100.296000px;}
.x1{left:108.036000px;}
.x19{left:126.036000px;}
.x1e{left:135.036000px;}
.x13{left:198.390000px;}
.x16{left:202.890000px;}
.x9{left:224.490000px;}
.xd{left:263.370000px;}
.x1a{left:335.775000px;}
.x7{left:349.995000px;}
.xb{left:358.995000px;}
.x1b{left:361.335000px;}
.xa{left:385.275000px;}
.x6{left:445.575000px;}
.x14{left:477.645000px;}
.x1c{left:506.085000px;}
.x17{left:508.965000px;}
.x4{left:521.745000px;}
.x10{left:577.545000px;}
.x5{left:598.065000px;}
.x1d{left:604.005000px;}
.x15{left:625.065000px;}
.x2{left:648.285000px;}
.x18{left:656.430000px;}
.x8{left:776.850000px;}
.x3{left:783.150000px;}
.xc{left:785.130000px;}
@media print{
.v3{vertical-align:-71.040000pt;}
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-60.800000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.304533pt;}
.ls11{letter-spacing:-0.203733pt;}
.ls13{letter-spacing:-0.098133pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011947pt;}
.ls10{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.167467pt;}
.lsc{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.271360pt;}
.ls4{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.544000pt;}
.lse{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.891307pt;}
.lsf{letter-spacing:40.912640pt;}
.ls3{letter-spacing:334.858667pt;}
.ls0{letter-spacing:2387.125333pt;}
.ls2{letter-spacing:2394.165333pt;}
.ws2{word-spacing:-58.880000pt;}
.ws3{word-spacing:-17.792000pt;}
.wsa{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.271573pt;}
.ws0{word-spacing:-14.672427pt;}
.wsd{word-spacing:-13.824000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.181867pt;}
.wsc{word-spacing:-13.076267pt;}
.ws7{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.327787pt;}
.ws8{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-1.413547pt;}
._0{width:1.115520pt;}
._a{width:2.463360pt;}
._f{width:3.964160pt;}
._9{width:5.736960pt;}
._11{width:7.383680pt;}
._10{width:8.871040pt;}
._3{width:10.080000pt;}
._8{width:11.125760pt;}
._14{width:12.143787pt;}
._15{width:14.236160pt;}
._5{width:15.584427pt;}
._4{width:16.839040pt;}
._6{width:17.880107pt;}
._19{width:18.910720pt;}
._18{width:19.972480pt;}
._7{width:21.181867pt;}
._b{width:22.735360pt;}
._c{width:23.638400pt;}
._13{width:25.218987pt;}
._12{width:26.307627pt;}
._16{width:27.621760pt;}
._e{width:30.833920pt;}
._d{width:32.137600pt;}
._1e{width:34.141227pt;}
._1d{width:35.115307pt;}
._17{width:38.511360pt;}
._1a{width:45.576320pt;}
._1b{width:48.922880pt;}
._1c{width:63.744000pt;}
._20{width:64.859520pt;}
._22{width:81.167360pt;}
._21{width:82.070400pt;}
._24{width:151.126400pt;}
._23{width:152.082560pt;}
._1{width:318.834133pt;}
._1f{width:797.157547pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:45.440000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:2.880000pt;}
.yc6{bottom:3.040000pt;}
.yad{bottom:3.200000pt;}
.y9f{bottom:3.360000pt;}
.yd0{bottom:3.400000pt;}
.ya3{bottom:11.040000pt;}
.ya0{bottom:18.240000pt;}
.y9b{bottom:18.280000pt;}
.yc5{bottom:18.400000pt;}
.y9e{bottom:18.560000pt;}
.ya2{bottom:18.720000pt;}
.ycf{bottom:18.760000pt;}
.ycd{bottom:26.240000pt;}
.ya7{bottom:26.400000pt;}
.yc7{bottom:33.600000pt;}
.ya9{bottom:33.920000pt;}
.ye8{bottom:33.960000pt;}
.ya6{bottom:34.080000pt;}
.yb2{bottom:34.120000pt;}
.ycc{bottom:41.600000pt;}
.ycb{bottom:49.280000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:67.840000pt;}
.y5c{bottom:99.200000pt;}
.ye1{bottom:99.520000pt;}
.y12d{bottom:100.480000pt;}
.y114{bottom:104.160000pt;}
.y151{bottom:108.000000pt;}
.y97{bottom:109.760000pt;}
.yc1{bottom:114.240000pt;}
.y5b{bottom:114.400000pt;}
.ye0{bottom:114.880000pt;}
.y12c{bottom:115.840000pt;}
.y113{bottom:119.520000pt;}
.y150{bottom:124.640000pt;}
.y96{bottom:125.120000pt;}
.yc0{bottom:129.440000pt;}
.y5a{bottom:129.760000pt;}
.ydf{bottom:130.240000pt;}
.y12b{bottom:131.200000pt;}
.y112{bottom:134.880000pt;}
.y95{bottom:140.480000pt;}
.y14f{bottom:141.120000pt;}
.ybf{bottom:144.800000pt;}
.y59{bottom:145.120000pt;}
.yde{bottom:145.440000pt;}
.y12a{bottom:146.560000pt;}
.y111{bottom:150.240000pt;}
.y94{bottom:155.840000pt;}
.y14e{bottom:157.760000pt;}
.ybe{bottom:160.160000pt;}
.y58{bottom:160.480000pt;}
.ydd{bottom:160.800000pt;}
.y129{bottom:161.920000pt;}
.y110{bottom:165.440000pt;}
.y93{bottom:171.200000pt;}
.y14d{bottom:174.240000pt;}
.ybd{bottom:175.520000pt;}
.y57{bottom:175.840000pt;}
.ydc{bottom:176.160000pt;}
.y128{bottom:176.960000pt;}
.y10f{bottom:180.800000pt;}
.y92{bottom:186.426667pt;}
.ybc{bottom:190.906667pt;}
.y56{bottom:191.226667pt;}
.ydb{bottom:191.546667pt;}
.y127{bottom:192.506667pt;}
.y10e{bottom:196.186667pt;}
.y91{bottom:201.786667pt;}
.y126{bottom:205.306667pt;}
.ybb{bottom:206.266667pt;}
.y55{bottom:206.426667pt;}
.yda{bottom:206.906667pt;}
.y14c{bottom:207.386667pt;}
.y10d{bottom:211.546667pt;}
.y90{bottom:217.146667pt;}
.y125{bottom:221.306667pt;}
.yba{bottom:221.466667pt;}
.y54{bottom:221.786667pt;}
.yd9{bottom:222.266667pt;}
.y14b{bottom:224.026667pt;}
.y10c{bottom:226.906667pt;}
.y8f{bottom:232.186667pt;}
.y118{bottom:232.506667pt;}
.yb9{bottom:236.826667pt;}
.y53{bottom:237.146667pt;}
.yd8{bottom:237.466667pt;}
.y14a{bottom:240.506667pt;}
.y10b{bottom:242.266667pt;}
.y8e{bottom:247.546667pt;}
.y117{bottom:247.866667pt;}
.yb8{bottom:252.186667pt;}
.y52{bottom:252.506667pt;}
.yd7{bottom:252.826667pt;}
.y149{bottom:257.146667pt;}
.y10a{bottom:257.466667pt;}
.y8d{bottom:263.226667pt;}
.yb7{bottom:267.546667pt;}
.y51{bottom:267.866667pt;}
.yd6{bottom:268.186667pt;}
.y124{bottom:268.506667pt;}
.y109{bottom:272.826667pt;}
.y148{bottom:273.786667pt;}
.y8c{bottom:278.426667pt;}
.yb6{bottom:282.906667pt;}
.y50{bottom:283.226667pt;}
.yd5{bottom:283.546667pt;}
.y108{bottom:288.186667pt;}
.y147{bottom:290.266667pt;}
.y8b{bottom:293.786667pt;}
.yb5{bottom:298.266667pt;}
.y4f{bottom:298.426667pt;}
.yd4{bottom:298.906667pt;}
.y123{bottom:299.866667pt;}
.y107{bottom:303.546667pt;}
.y146{bottom:306.906667pt;}
.y8a{bottom:309.146667pt;}
.yb4{bottom:310.906667pt;}
.y4e{bottom:313.786667pt;}
.yd3{bottom:314.106667pt;}
.y122{bottom:315.866667pt;}
.y106{bottom:318.906667pt;}
.y145{bottom:323.386667pt;}
.y89{bottom:324.506667pt;}
.yb3{bottom:326.906667pt;}
.y4d{bottom:329.146667pt;}
.yd2{bottom:329.466667pt;}
.y121{bottom:331.866667pt;}
.y105{bottom:334.106667pt;}
.y88{bottom:339.866667pt;}
.y144{bottom:340.026667pt;}
.yd1{bottom:342.106667pt;}
.y4c{bottom:344.506667pt;}
.y120{bottom:347.866667pt;}
.y104{bottom:349.466667pt;}
.y87{bottom:355.226667pt;}
.y143{bottom:356.506667pt;}
.yb1{bottom:358.106667pt;}
.y4b{bottom:359.866667pt;}
.y11f{bottom:363.866667pt;}
.y103{bottom:364.826667pt;}
.y86{bottom:370.426667pt;}
.y142{bottom:373.146667pt;}
.y4a{bottom:375.066667pt;}
.y11e{bottom:379.866667pt;}
.y102{bottom:380.186667pt;}
.y85{bottom:385.786667pt;}
.yce{bottom:389.466667pt;}
.y141{bottom:389.626667pt;}
.y49{bottom:390.426667pt;}
.y101{bottom:395.586667pt;}
.y11d{bottom:395.906667pt;}
.y84{bottom:401.186667pt;}
.yb0{bottom:404.866667pt;}
.y48{bottom:405.826667pt;}
.y140{bottom:406.306667pt;}
.y100{bottom:410.946667pt;}
.y11c{bottom:411.906667pt;}
.y83{bottom:416.546667pt;}
.y47{bottom:421.186667pt;}
.y13f{bottom:422.946667pt;}
.yff{bottom:426.146667pt;}
.y82{bottom:431.586667pt;}
.y116{bottom:431.906667pt;}
.yaf{bottom:436.226667pt;}
.y46{bottom:436.546667pt;}
.y13e{bottom:439.426667pt;}
.y24{bottom:440.706667pt;}
.yfe{bottom:441.506667pt;}
.y11b{bottom:446.306667pt;}
.y81{bottom:446.786667pt;}
.y115{bottom:447.106667pt;}
.y45{bottom:451.906667pt;}
.yca{bottom:452.226667pt;}
.y23{bottom:456.066667pt;}
.yfd{bottom:456.866667pt;}
.y11a{bottom:461.826667pt;}
.y80{bottom:462.466667pt;}
.y44{bottom:467.106667pt;}
.yae{bottom:467.586667pt;}
.yfc{bottom:472.226667pt;}
.y13d{bottom:472.546667pt;}
.y119{bottom:477.506667pt;}
.y22{bottom:477.826667pt;}
.y43{bottom:482.466667pt;}
.y21{bottom:486.946667pt;}
.yfb{bottom:487.586667pt;}
.y13c{bottom:489.186667pt;}
.y7f{bottom:493.186667pt;}
.y42{bottom:497.506667pt;}
.yac{bottom:498.946667pt;}
.y20{bottom:502.306667pt;}
.yfa{bottom:502.946667pt;}
.y13b{bottom:505.666667pt;}
.y7e{bottom:508.546667pt;}
.y41{bottom:512.866667pt;}
.yc9{bottom:514.146667pt;}
.y1f{bottom:517.346667pt;}
.yf9{bottom:518.146667pt;}
.y13a{bottom:522.306667pt;}
.y7d{bottom:523.906667pt;}
.y40{bottom:528.866667pt;}
.yab{bottom:530.146667pt;}
.y1e{bottom:532.706667pt;}
.yf8{bottom:533.506667pt;}
.y139{bottom:538.786667pt;}
.y7c{bottom:539.106667pt;}
.y3f{bottom:545.506667pt;}
.y1d{bottom:548.066667pt;}
.yf7{bottom:548.866667pt;}
.y7b{bottom:554.466667pt;}
.y138{bottom:555.426667pt;}
.y1c{bottom:561.506667pt;}
.yf6{bottom:564.226667pt;}
.y7a{bottom:569.826667pt;}
.y3e{bottom:570.146667pt;}
.y137{bottom:572.066667pt;}
.y1b{bottom:574.466667pt;}
.yaa{bottom:576.866667pt;}
.yf5{bottom:579.586667pt;}
.y79{bottom:585.186667pt;}
.y3d{bottom:586.626667pt;}
.y1a{bottom:587.586667pt;}
.y136{bottom:588.546667pt;}
.yf4{bottom:594.946667pt;}
.y19{bottom:600.546667pt;}
.y3c{bottom:603.293333pt;}
.y135{bottom:605.213333pt;}
.ya8{bottom:608.253333pt;}
.yf3{bottom:610.173333pt;}
.y18{bottom:613.693333pt;}
.y78{bottom:615.933333pt;}
.y3b{bottom:619.773333pt;}
.y134{bottom:621.693333pt;}
.yf2{bottom:625.533333pt;}
.y17{bottom:626.653333pt;}
.y77{bottom:631.133333pt;}
.y3a{bottom:636.413333pt;}
.y133{bottom:638.333333pt;}
.y16{bottom:639.613333pt;}
.yf1{bottom:640.893333pt;}
.y76{bottom:646.493333pt;}
.y15{bottom:652.733333pt;}
.y39{bottom:652.893333pt;}
.ya5{bottom:654.813333pt;}
.yf0{bottom:656.253333pt;}
.y75{bottom:661.853333pt;}
.y167{bottom:665.693333pt;}
.y14{bottom:666.493333pt;}
.y38{bottom:669.533333pt;}
.y132{bottom:671.453333pt;}
.yef{bottom:671.613333pt;}
.y74{bottom:677.213333pt;}
.y166{bottom:682.333333pt;}
.y13{bottom:683.613333pt;}
.y37{bottom:686.013333pt;}
.yc8{bottom:686.173333pt;}
.yee{bottom:686.813333pt;}
.y131{bottom:687.933333pt;}
.y73{bottom:692.573333pt;}
.y165{bottom:698.813333pt;}
.ya4{bottom:701.533333pt;}
.y12{bottom:702.013333pt;}
.yed{bottom:702.173333pt;}
.y36{bottom:702.653333pt;}
.y130{bottom:704.573333pt;}
.y72{bottom:707.773333pt;}
.y164{bottom:715.453333pt;}
.yec{bottom:717.533333pt;}
.y35{bottom:719.293333pt;}
.y12f{bottom:721.213333pt;}
.y71{bottom:723.133333pt;}
.y163{bottom:732.093333pt;}
.yeb{bottom:732.573333pt;}
.ya1{bottom:732.893333pt;}
.y34{bottom:735.773333pt;}
.y12e{bottom:737.693333pt;}
.y11{bottom:738.173333pt;}
.y70{bottom:738.493333pt;}
.yea{bottom:745.533333pt;}
.y162{bottom:748.573333pt;}
.y33{bottom:752.413333pt;}
.y10{bottom:753.533333pt;}
.y6f{bottom:753.853333pt;}
.ye9{bottom:761.533333pt;}
.y9d{bottom:764.253333pt;}
.y161{bottom:765.213333pt;}
.yf{bottom:768.893333pt;}
.y6e{bottom:769.213333pt;}
.y160{bottom:781.693333pt;}
.y6d{bottom:784.573333pt;}
.y32{bottom:785.533333pt;}
.ye7{bottom:792.893333pt;}
.y9a{bottom:795.613333pt;}
.y15f{bottom:798.333333pt;}
.ye{bottom:799.453333pt;}
.y6c{bottom:799.773333pt;}
.y31{bottom:802.013333pt;}
.yc4{bottom:810.853333pt;}
.y15e{bottom:814.853333pt;}
.y6b{bottom:815.173333pt;}
.yd{bottom:817.253333pt;}
.y30{bottom:818.693333pt;}
.y99{bottom:829.893333pt;}
.y6a{bottom:830.533333pt;}
.y15d{bottom:831.493333pt;}
.y2f{bottom:834.533333pt;}
.ye6{bottom:839.653333pt;}
.yc{bottom:844.773333pt;}
.yc3{bottom:845.253333pt;}
.y98{bottom:845.573333pt;}
.y69{bottom:845.893333pt;}
.y15c{bottom:847.973333pt;}
.y2e{bottom:849.893333pt;}
.yc2{bottom:860.933333pt;}
.y68{bottom:861.253333pt;}
.y15b{bottom:864.613333pt;}
.y2d{bottom:865.413333pt;}
.yb{bottom:870.053333pt;}
.ye5{bottom:870.853333pt;}
.y67{bottom:876.613333pt;}
.y2c{bottom:880.773333pt;}
.y15a{bottom:881.253333pt;}
.ya{bottom:885.413333pt;}
.y66{bottom:891.813333pt;}
.y2b{bottom:895.813333pt;}
.y159{bottom:897.733333pt;}
.y9{bottom:901.093333pt;}
.ye4{bottom:902.213333pt;}
.y65{bottom:907.173333pt;}
.y2a{bottom:912.293333pt;}
.y158{bottom:914.373333pt;}
.y8{bottom:918.053333pt;}
.ye3{bottom:918.213333pt;}
.y64{bottom:922.533333pt;}
.y157{bottom:930.853333pt;}
.y29{bottom:933.733333pt;}
.y7{bottom:934.853333pt;}
.ye2{bottom:937.253333pt;}
.y63{bottom:937.893333pt;}
.y156{bottom:947.493333pt;}
.y62{bottom:953.253333pt;}
.y28{bottom:962.373333pt;}
.y155{bottom:963.973333pt;}
.y6{bottom:968.293333pt;}
.y61{bottom:968.613333pt;}
.y27{bottom:979.173333pt;}
.y154{bottom:980.613333pt;}
.y5{bottom:983.493333pt;}
.y60{bottom:983.813333pt;}
.y26{bottom:994.693333pt;}
.y153{bottom:997.093333pt;}
.y4{bottom:998.853333pt;}
.y5f{bottom:999.173333pt;}
.y25{bottom:1008.293333pt;}
.y152{bottom:1013.733333pt;}
.y3{bottom:1014.213333pt;}
.y5e{bottom:1014.533333pt;}
.y5d{bottom:1042.560000pt;}
.h17{height:15.200000pt;}
.h1b{height:15.360000pt;}
.h1c{height:15.392000pt;}
.h11{height:30.560000pt;}
.h10{height:30.592000pt;}
.h12{height:30.720000pt;}
.h15{height:30.752000pt;}
.hb{height:33.918750pt;}
.h18{height:37.090625pt;}
.he{height:38.672812pt;}
.h2{height:44.648750pt;}
.hf{height:44.975625pt;}
.h9{height:45.195937pt;}
.h14{height:45.920000pt;}
.h19{height:45.952000pt;}
.h13{height:46.080000pt;}
.h16{height:46.112000pt;}
.h8{height:47.392500pt;}
.ha{height:52.134375pt;}
.h4{height:53.535000pt;}
.h3{height:55.402500pt;}
.hc{height:58.563750pt;}
.h1a{height:61.280000pt;}
.h5{height:61.410000pt;}
.h7{height:66.750000pt;}
.hd{height:75.465000pt;}
.h6{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:86.400000pt;}
.w3{width:116.352000pt;}
.wa{width:121.280000pt;}
.wc{width:128.032000pt;}
.w6{width:130.400000pt;}
.w9{width:130.432000pt;}
.w7{width:149.146667pt;}
.we{width:167.866667pt;}
.w4{width:191.386667pt;}
.wb{width:231.386667pt;}
.w2{width:306.586667pt;}
.w5{width:334.626667pt;}
.w8{width:362.626667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x11{left:30.880000pt;}
.x12{left:54.874667pt;}
.xe{left:89.152000pt;}
.x1{left:96.032000pt;}
.x19{left:112.032000pt;}
.x1e{left:120.032000pt;}
.x13{left:176.346667pt;}
.x16{left:180.346667pt;}
.x9{left:199.546667pt;}
.xd{left:234.106667pt;}
.x1a{left:298.466667pt;}
.x7{left:311.106667pt;}
.xb{left:319.106667pt;}
.x1b{left:321.186667pt;}
.xa{left:342.466667pt;}
.x6{left:396.066667pt;}
.x14{left:424.573333pt;}
.x1c{left:449.853333pt;}
.x17{left:452.413333pt;}
.x4{left:463.773333pt;}
.x10{left:513.373333pt;}
.x5{left:531.613333pt;}
.x1d{left:536.893333pt;}
.x15{left:555.613333pt;}
.x2{left:576.253333pt;}
.x18{left:583.493333pt;}
.x8{left:690.533333pt;}
.x3{left:696.133333pt;}
.xc{left:697.893333pt;}
}




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