
    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_38bd6585ec193622de836d95.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.004395;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_95ab9a9dab0fbee3acc45752.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_b69a118fe22cc72fdba22a9a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6f4101b65f9ca0d2000eb14d.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_0169ecda21c5ffa7085d7f13.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_b653586ce8b254d46ac75b22.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5a147e7702a90f590c42a16f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3262be4c54e60aa434555ad2.woff2')format("woff");}.ff8{font-family:ff8;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:-85.200000px;}
.v7{vertical-align:-21.600000px;}
.v2{vertical-align:-18.000000px;}
.v5{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.000000px;}
.v4{vertical-align:21.600000px;}
.v1{vertical-align:27.600000px;}
.lsa{letter-spacing:-0.900000px;}
.ls18{letter-spacing:-0.600000px;}
.ls21{letter-spacing:-0.504000px;}
.ls2{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.378000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000003px;}
.ls20{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.300000px;}
.ls2b{letter-spacing:0.348000px;}
.ls1f{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.528000px;}
.ls16{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.660000px;}
.ls28{letter-spacing:0.750000px;}
.ls14{letter-spacing:0.852000px;}
.ls23{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.500000px;}
.ls12{letter-spacing:2.700000px;}
.ls2a{letter-spacing:3.900000px;}
.ls1d{letter-spacing:5.100000px;}
.ls8{letter-spacing:6.300000px;}
.ls26{letter-spacing:7.500000px;}
.ls1e{letter-spacing:8.700000px;}
.ls9{letter-spacing:9.900000px;}
.ls10{letter-spacing:12.300000px;}
.ls19{letter-spacing:13.500000px;}
.ls17{letter-spacing:15.900000px;}
.ls24{letter-spacing:19.440000px;}
.ls11{letter-spacing:19.500000px;}
.ls0{letter-spacing:21.240000px;}
.lsc{letter-spacing:21.900000px;}
.ls1c{letter-spacing:24.300000px;}
.lse{letter-spacing:25.500000px;}
.lsb{letter-spacing:27.900000px;}
.ls1{letter-spacing:31.080000px;}
.ls1a{letter-spacing:31.500000px;}
.ls13{letter-spacing:36.360000px;}
.lsd{letter-spacing:39.900000px;}
.ls1b{letter-spacing:47.100000px;}
.ls4{letter-spacing:1848.330000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.100000px;}
.wsc{word-spacing:-17.028000px;}
.wsd{word-spacing:-16.848000px;}
.ws5{word-spacing:-16.500000px;}
.ws8{word-spacing:-16.122000px;}
.wsb{word-spacing:-15.996000px;}
.wsa{word-spacing:-15.900000px;}
.ws7{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.140000px;}
.ws9{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.000000px;}
.ws3{word-spacing:0.000000px;}
._26{margin-left:-2.658000px;}
._2{margin-left:-1.620000px;}
._1{width:1.380000px;}
._d{width:2.436000px;}
._4{width:3.516000px;}
._1d{width:4.638000px;}
._b{width:5.748000px;}
._c{width:6.768000px;}
._6{width:8.616000px;}
._17{width:9.828000px;}
._18{width:11.022000px;}
._8{width:12.084000px;}
._a{width:13.206000px;}
._9{width:14.358000px;}
._e{width:15.426000px;}
._27{width:17.712000px;}
._7{width:18.780000px;}
._16{width:19.962000px;}
._0{width:21.180000px;}
._13{width:22.206000px;}
._12{width:23.400000px;}
._5{width:24.588000px;}
._1c{width:25.686000px;}
._11{width:26.862000px;}
._1e{width:27.900000px;}
._19{width:29.040000px;}
._3{width:31.020000px;}
._2c{width:32.160000px;}
._1b{width:33.282000px;}
._23{width:34.752000px;}
._2a{width:36.354000px;}
._34{width:37.506000px;}
._24{width:38.520000px;}
._2b{width:39.954000px;}
._30{width:41.382000px;}
._25{width:42.522000px;}
._21{width:44.094000px;}
._1f{width:45.480000px;}
._20{width:46.494000px;}
._22{width:47.922000px;}
._1a{width:49.746000px;}
._2d{width:51.078000px;}
._f{width:52.140000px;}
._10{width:53.634000px;}
._2e{width:54.696000px;}
._35{width:55.854000px;}
._33{width:58.182000px;}
._15{width:59.478000px;}
._32{width:60.624000px;}
._14{width:62.322000px;}
._29{width:63.660000px;}
._28{width:64.716000px;}
._31{width:68.592000px;}
._2f{width:97.416000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y80{bottom:15.600000px;}
.y7e{bottom:15.900000px;}
.y85{bottom:15.945000px;}
.y4{bottom:56.437500px;}
.yac{bottom:80.437500px;}
.ycc{bottom:80.737500px;}
.y8e{bottom:82.837500px;}
.ye3{bottom:84.037500px;}
.y5b{bottom:85.837500px;}
.y17b{bottom:86.737500px;}
.y70{bottom:90.937500px;}
.y118{bottom:92.437500px;}
.y22{bottom:93.037500px;}
.y139{bottom:94.537500px;}
.yf7{bottom:98.137500px;}
.yab{bottom:99.637500px;}
.y8d{bottom:101.737500px;}
.ye2{bottom:102.937500px;}
.y5a{bottom:104.737500px;}
.y17a{bottom:108.637500px;}
.y6f{bottom:110.137500px;}
.y117{bottom:111.637500px;}
.y21{bottom:113.137500px;}
.y138{bottom:113.437500px;}
.y35{bottom:117.037500px;}
.yaa{bottom:118.537500px;}
.ycb{bottom:118.837500px;}
.y159{bottom:119.737500px;}
.y8c{bottom:120.937500px;}
.ye1{bottom:122.137500px;}
.y59{bottom:123.637500px;}
.y20{bottom:124.237500px;}
.y194{bottom:125.737500px;}
.y6e{bottom:129.037500px;}
.y116{bottom:130.537500px;}
.y137{bottom:132.337500px;}
.yf6{bottom:135.937500px;}
.ya9{bottom:137.437500px;}
.yca{bottom:137.737500px;}
.y1f{bottom:139.875000px;}
.ye0{bottom:141.075000px;}
.y158{bottom:141.375000px;}
.y58{bottom:142.875000px;}
.y1e{bottom:144.375000px;}
.y193{bottom:146.175000px;}
.y6d{bottom:147.975000px;}
.y115{bottom:149.475000px;}
.y179{bottom:152.475000px;}
.yf5{bottom:154.875000px;}
.y34{bottom:155.775000px;}
.ya8{bottom:156.375000px;}
.yc9{bottom:156.675000px;}
.y8b{bottom:158.775000px;}
.y57{bottom:161.775000px;}
.y157{bottom:163.275000px;}
.y136{bottom:163.575000px;}
.y192{bottom:165.075000px;}
.y114{bottom:168.375000px;}
.y1d{bottom:168.675000px;}
.ydf{bottom:172.275000px;}
.yf4{bottom:174.075000px;}
.ya7{bottom:175.575000px;}
.y8a{bottom:177.675000px;}
.y6c{bottom:179.175000px;}
.y56{bottom:180.675000px;}
.y135{bottom:182.475000px;}
.y1c{bottom:184.275000px;}
.y156{bottom:185.175000px;}
.y113{bottom:187.575000px;}
.yf3{bottom:192.975000px;}
.y33{bottom:194.475000px;}
.yc8{bottom:194.775000px;}
.y178{bottom:195.975000px;}
.y89{bottom:196.875000px;}
.y55{bottom:199.575000px;}
.y1b{bottom:199.875000px;}
.y134{bottom:201.375000px;}
.y191{bottom:203.175000px;}
.yde{bottom:204.675000px;}
.ya6{bottom:206.475000px;}
.y155{bottom:207.075000px;}
.y6b{bottom:211.575000px;}
.yf2{bottom:211.875000px;}
.y10b{bottom:213.375000px;}
.yc7{bottom:213.675000px;}
.y1a{bottom:215.475000px;}
.y88{bottom:215.775000px;}
.y177{bottom:217.875000px;}
.y54{bottom:218.775000px;}
.y133{bottom:220.275000px;}
.y190{bottom:222.075000px;}
.ydd{bottom:223.575000px;}
.ya5{bottom:225.375000px;}
.y154{bottom:228.675000px;}
.y6a{bottom:230.775000px;}
.y10a{bottom:232.275000px;}
.y32{bottom:233.475000px;}
.y87{bottom:234.675000px;}
.y19{bottom:237.675000px;}
.y132{bottom:239.475000px;}
.y176{bottom:239.775000px;}
.y18f{bottom:240.975000px;}
.ydc{bottom:242.775000px;}
.ya4{bottom:244.275000px;}
.yc6{bottom:244.575000px;}
.y69{bottom:249.675000px;}
.yf1{bottom:249.975000px;}
.y153{bottom:250.575000px;}
.y109{bottom:251.475000px;}
.y86{bottom:253.575000px;}
.y53{bottom:256.575000px;}
.y131{bottom:258.375000px;}
.y18e{bottom:260.175000px;}
.y175{bottom:261.375000px;}
.ydb{bottom:261.675000px;}
.ya3{bottom:263.475000px;}
.y18{bottom:268.575000px;}
.y84{bottom:268.875000px;}
.y108{bottom:270.375000px;}
.y31{bottom:272.175000px;}
.y152{bottom:272.475000px;}
.yc5{bottom:275.520000px;}
.y130{bottom:277.320000px;}
.y18d{bottom:279.120000px;}
.yda{bottom:280.620000px;}
.yf0{bottom:280.920000px;}
.ya2{bottom:282.420000px;}
.y174{bottom:283.320000px;}
.y52{bottom:287.520000px;}
.y107{bottom:289.320000px;}
.y151{bottom:294.120000px;}
.yc4{bottom:294.720000px;}
.y12f{bottom:296.220000px;}
.y18c{bottom:298.020000px;}
.yd9{bottom:299.520000px;}
.y17{bottom:299.820000px;}
.y83{bottom:300.120000px;}
.ya1{bottom:301.320000px;}
.y173{bottom:305.220000px;}
.y51{bottom:306.720000px;}
.y106{bottom:308.220000px;}
.y30{bottom:310.920000px;}
.yef{bottom:311.820000px;}
.yc3{bottom:313.620000px;}
.y12e{bottom:315.420000px;}
.y150{bottom:316.020000px;}
.y18b{bottom:316.920000px;}
.yd8{bottom:318.720000px;}
.ya0{bottom:320.220000px;}
.y50{bottom:325.620000px;}
.y172{bottom:326.820000px;}
.y105{bottom:327.420000px;}
.y16{bottom:330.720000px;}
.y82{bottom:331.020000px;}
.y112{bottom:332.220000px;}
.yc2{bottom:332.520000px;}
.y12d{bottom:334.320000px;}
.y18a{bottom:336.120000px;}
.yd7{bottom:337.620000px;}
.y14f{bottom:337.920000px;}
.y9f{bottom:339.420000px;}
.y4f{bottom:344.520000px;}
.y104{bottom:346.320000px;}
.y171{bottom:348.720000px;}
.y2f{bottom:349.920000px;}
.yc1{bottom:351.420000px;}
.y12c{bottom:353.220000px;}
.y189{bottom:355.020000px;}
.y9e{bottom:358.320000px;}
.y14e{bottom:359.820000px;}
.y15{bottom:361.920000px;}
.y4e{bottom:363.420000px;}
.y103{bottom:365.220000px;}
.yd6{bottom:368.820000px;}
.y111{bottom:370.320000px;}
.yc0{bottom:370.620000px;}
.y12b{bottom:372.120000px;}
.y188{bottom:373.920000px;}
.y9d{bottom:377.220000px;}
.y14d{bottom:381.420000px;}
.y4d{bottom:382.620000px;}
.y102{bottom:384.120000px;}
.yee{bottom:387.720000px;}
.y2e{bottom:388.620000px;}
.y110{bottom:389.220000px;}
.ybf{bottom:389.520000px;}
.y12a{bottom:391.320000px;}
.y170{bottom:392.520000px;}
.y14{bottom:392.820000px;}
.y9c{bottom:396.120000px;}
.yd5{bottom:401.220000px;}
.y4c{bottom:401.520000px;}
.y101{bottom:403.320000px;}
.yed{bottom:406.620000px;}
.y10f{bottom:408.120000px;}
.ybe{bottom:408.420000px;}
.y129{bottom:410.220000px;}
.y187{bottom:411.750000px;}
.y16f{bottom:414.150000px;}
.y9b{bottom:415.350000px;}
.yd4{bottom:420.150000px;}
.y4b{bottom:420.450000px;}
.y13{bottom:424.050000px;}
.y14c{bottom:425.250000px;}
.yec{bottom:425.850000px;}
.y2d{bottom:427.350000px;}
.y128{bottom:429.150000px;}
.y186{bottom:430.950000px;}
.y9a{bottom:434.250000px;}
.y16e{bottom:436.050000px;}
.y68{bottom:439.350000px;}
.yeb{bottom:444.750000px;}
.y10e{bottom:446.250000px;}
.y14b{bottom:447.150000px;}
.y127{bottom:448.050000px;}
.y185{bottom:449.850000px;}
.y4a{bottom:451.350000px;}
.y99{bottom:453.150000px;}
.y81{bottom:454.950000px;}
.y16d{bottom:457.950000px;}
.yd3{bottom:458.250000px;}
.y67{bottom:458.550000px;}
.yea{bottom:463.650000px;}
.y10d{bottom:465.150000px;}
.y2c{bottom:466.350000px;}
.y126{bottom:467.250000px;}
.y14a{bottom:468.750000px;}
.y12{bottom:469.950000px;}
.y49{bottom:470.550000px;}
.y98{bottom:472.050000px;}
.yd2{bottom:477.150000px;}
.ybd{bottom:477.450000px;}
.y16c{bottom:479.850000px;}
.ye9{bottom:482.550000px;}
.y10c{bottom:484.050000px;}
.y7f{bottom:485.850000px;}
.y184{bottom:487.650000px;}
.y48{bottom:489.450000px;}
.y149{bottom:490.650000px;}
.y97{bottom:491.250000px;}
.yd1{bottom:496.050000px;}
.ybc{bottom:496.350000px;}
.y125{bottom:498.150000px;}
.y11{bottom:501.150000px;}
.y16b{bottom:501.450000px;}
.ye8{bottom:501.750000px;}
.yb6{bottom:503.250000px;}
.y2b{bottom:505.050000px;}
.y183{bottom:506.850000px;}
.y47{bottom:508.350000px;}
.y96{bottom:510.150000px;}
.y148{bottom:512.550000px;}
.ybb{bottom:515.250000px;}
.y7d{bottom:516.750000px;}
.y124{bottom:517.050000px;}
.ye7{bottom:520.650000px;}
.yb5{bottom:522.150000px;}
.y16a{bottom:523.350000px;}
.y182{bottom:525.750000px;}
.y46{bottom:527.250000px;}
.y95{bottom:529.050000px;}
.yd0{bottom:534.150000px;}
.yba{bottom:534.450000px;}
.y123{bottom:535.950000px;}
.y10{bottom:539.850000px;}
.yb4{bottom:541.050000px;}
.y2a{bottom:543.750000px;}
.y181{bottom:544.650000px;}
.y169{bottom:545.250000px;}
.y45{bottom:546.495000px;}
.y100{bottom:547.995000px;}
.ye6{bottom:551.895000px;}
.ycf{bottom:553.095000px;}
.yb9{bottom:553.395000px;}
.y122{bottom:555.195000px;}
.y147{bottom:556.095000px;}
.y94{bottom:559.995000px;}
.y7c{bottom:562.995000px;}
.y180{bottom:563.595000px;}
.y44{bottom:565.395000px;}
.yff{bottom:567.195000px;}
.yce{bottom:571.995000px;}
.yb8{bottom:572.295000px;}
.y121{bottom:574.095000px;}
.y146{bottom:577.995000px;}
.y93{bottom:579.195000px;}
.yf{bottom:579.795000px;}
.y7b{bottom:580.695000px;}
.y29{bottom:582.795000px;}
.y43{bottom:584.295000px;}
.yfe{bottom:586.095000px;}
.y168{bottom:588.795000px;}
.ycd{bottom:591.195000px;}
.y120{bottom:592.995000px;}
.y92{bottom:598.095000px;}
.y145{bottom:599.895000px;}
.y17f{bottom:601.695000px;}
.y42{bottom:603.195000px;}
.yfd{bottom:604.995000px;}
.y7a{bottom:610.095000px;}
.y167{bottom:610.695000px;}
.y11f{bottom:611.895000px;}
.ye{bottom:613.695000px;}
.y91{bottom:616.995000px;}
.y17e{bottom:620.595000px;}
.y28{bottom:621.495000px;}
.y41{bottom:622.395000px;}
.yfc{bottom:623.895000px;}
.y79{bottom:628.995000px;}
.y11e{bottom:631.095000px;}
.y166{bottom:632.595000px;}
.y90{bottom:635.895000px;}
.y17d{bottom:639.495000px;}
.y40{bottom:641.295000px;}
.yfb{bottom:643.095000px;}
.y144{bottom:643.395000px;}
.yd{bottom:644.895000px;}
.y78{bottom:647.895000px;}
.y11d{bottom:649.995000px;}
.y165{bottom:654.195000px;}
.y8f{bottom:655.095000px;}
.y17c{bottom:658.695000px;}
.y27{bottom:660.195000px;}
.yfa{bottom:661.995000px;}
.y143{bottom:665.295000px;}
.y77{bottom:667.095000px;}
.y11c{bottom:668.895000px;}
.y3f{bottom:672.195000px;}
.yb3{bottom:673.995000px;}
.yc{bottom:675.795000px;}
.y164{bottom:676.095000px;}
.y66{bottom:679.095000px;}
.yf9{bottom:680.895000px;}
.y76{bottom:686.025000px;}
.y142{bottom:687.225000px;}
.y11b{bottom:687.825000px;}
.y3e{bottom:691.125000px;}
.yb2{bottom:692.925000px;}
.y163{bottom:698.025000px;}
.y65{bottom:698.325000px;}
.y26{bottom:699.225000px;}
.yf8{bottom:699.825000px;}
.y75{bottom:704.925000px;}
.yb{bottom:707.025000px;}
.y141{bottom:708.825000px;}
.y3d{bottom:710.325000px;}
.yb1{bottom:711.825000px;}
.y64{bottom:717.225000px;}
.y162{bottom:719.925000px;}
.y74{bottom:723.825000px;}
.y11a{bottom:725.925000px;}
.y3c{bottom:729.225000px;}
.y140{bottom:730.725000px;}
.yb0{bottom:731.025000px;}
.y63{bottom:736.125000px;}
.ya{bottom:737.925000px;}
.y161{bottom:741.525000px;}
.y73{bottom:743.025000px;}
.y3b{bottom:748.125000px;}
.yaf{bottom:749.925000px;}
.y13f{bottom:752.625000px;}
.yb7{bottom:755.025000px;}
.y119{bottom:756.825000px;}
.y72{bottom:761.925000px;}
.y160{bottom:763.425000px;}
.y3a{bottom:767.025000px;}
.y62{bottom:767.325000px;}
.yae{bottom:768.825000px;}
.y9{bottom:769.125000px;}
.ye5{bottom:774.225000px;}
.y13e{bottom:774.525000px;}
.y25{bottom:776.625000px;}
.y71{bottom:780.825000px;}
.y15f{bottom:785.325000px;}
.y39{bottom:786.225000px;}
.yad{bottom:787.725000px;}
.y13d{bottom:796.125000px;}
.y61{bottom:799.725000px;}
.y8{bottom:800.025000px;}
.y38{bottom:805.125000px;}
.ye4{bottom:805.425000px;}
.y15e{bottom:807.225000px;}
.y24{bottom:815.625000px;}
.y13c{bottom:818.070000px;}
.y60{bottom:818.970000px;}
.y37{bottom:824.070000px;}
.y15d{bottom:828.870000px;}
.y7{bottom:831.270000px;}
.y5f{bottom:837.870000px;}
.y13b{bottom:839.970000px;}
.y36{bottom:842.970000px;}
.y15c{bottom:850.770000px;}
.y23{bottom:854.370000px;}
.y5e{bottom:856.770000px;}
.y13a{bottom:861.870000px;}
.y6{bottom:862.170000px;}
.y15b{bottom:872.670000px;}
.y5d{bottom:875.670000px;}
.y5{bottom:893.370000px;}
.y15a{bottom:894.570000px;}
.y5c{bottom:894.870000px;}
.y3{bottom:914.670000px;}
.y2{bottom:934.770000px;}
.y1{bottom:953.100000px;}
.hf{height:30.900000px;}
.hd{height:31.237500px;}
.h8{height:35.332031px;}
.h2{height:49.570312px;}
.h9{height:52.998047px;}
.h3{height:58.886719px;}
.ha{height:59.167969px;}
.hc{height:60.468750px;}
.h11{height:62.820703px;}
.h10{height:64.743164px;}
.hb{height:64.775391px;}
.he{height:66.515625px;}
.h7{height:70.664062px;}
.h4{height:72.562500px;}
.h6{height:74.709375px;}
.h5{height:84.656250px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w4{width:235.275000px;}
.w5{width:281.850000px;}
.w1{width:680.250000px;}
.w3{width:680.399980px;}
.w2{width:680.399990px;}
.w0{width:680.400000px;}
.x0{left:0.000000px;}
.x16{left:55.200000px;}
.x12{left:59.437500px;}
.x17{left:69.337500px;}
.x1{left:76.537490px;}
.x7{left:81.037490px;}
.x10{left:86.137500px;}
.xd{left:92.730000px;}
.x15{left:97.237500px;}
.x14{left:106.837500px;}
.xb{left:108.037500px;}
.xe{left:117.337500px;}
.xa{left:119.137490px;}
.x18{left:128.160000px;}
.x9{left:129.637490px;}
.x11{left:132.660000px;}
.x13{left:134.760000px;}
.xf{left:138.975000px;}
.x6{left:154.574990px;}
.x5{left:248.204990px;}
.x4{left:258.719990px;}
.x3{left:288.419990px;}
.xc{left:312.720000px;}
.x8{left:441.194990px;}
.x2{left:595.469990px;}
@media print{
.v3{vertical-align:-75.733333pt;}
.v7{vertical-align:-19.200000pt;}
.v2{vertical-align:-16.000000pt;}
.v5{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.333333pt;}
.v4{vertical-align:19.200000pt;}
.v1{vertical-align:24.533333pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.336000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000003pt;}
.ls20{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.266667pt;}
.ls2b{letter-spacing:0.309333pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.469333pt;}
.ls16{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.586667pt;}
.ls28{letter-spacing:0.666667pt;}
.ls14{letter-spacing:0.757333pt;}
.ls23{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.333333pt;}
.ls12{letter-spacing:2.400000pt;}
.ls2a{letter-spacing:3.466667pt;}
.ls1d{letter-spacing:4.533333pt;}
.ls8{letter-spacing:5.600000pt;}
.ls26{letter-spacing:6.666667pt;}
.ls1e{letter-spacing:7.733333pt;}
.ls9{letter-spacing:8.800000pt;}
.ls10{letter-spacing:10.933333pt;}
.ls19{letter-spacing:12.000000pt;}
.ls17{letter-spacing:14.133333pt;}
.ls24{letter-spacing:17.280000pt;}
.ls11{letter-spacing:17.333333pt;}
.ls0{letter-spacing:18.880000pt;}
.lsc{letter-spacing:19.466667pt;}
.ls1c{letter-spacing:21.600000pt;}
.lse{letter-spacing:22.666667pt;}
.lsb{letter-spacing:24.800000pt;}
.ls1{letter-spacing:27.626667pt;}
.ls1a{letter-spacing:28.000000pt;}
.ls13{letter-spacing:32.320000pt;}
.lsd{letter-spacing:35.466667pt;}
.ls1b{letter-spacing:41.866667pt;}
.ls4{letter-spacing:1642.960000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.200000pt;}
.wsc{word-spacing:-15.136000pt;}
.wsd{word-spacing:-14.976000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws8{word-spacing:-14.330667pt;}
.wsb{word-spacing:-14.218667pt;}
.wsa{word-spacing:-14.133333pt;}
.ws7{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws9{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.000000pt;}
.ws3{word-spacing:0.000000pt;}
._26{margin-left:-2.362667pt;}
._2{margin-left:-1.440000pt;}
._1{width:1.226667pt;}
._d{width:2.165333pt;}
._4{width:3.125333pt;}
._1d{width:4.122667pt;}
._b{width:5.109333pt;}
._c{width:6.016000pt;}
._6{width:7.658667pt;}
._17{width:8.736000pt;}
._18{width:9.797333pt;}
._8{width:10.741333pt;}
._a{width:11.738667pt;}
._9{width:12.762667pt;}
._e{width:13.712000pt;}
._27{width:15.744000pt;}
._7{width:16.693333pt;}
._16{width:17.744000pt;}
._0{width:18.826667pt;}
._13{width:19.738667pt;}
._12{width:20.800000pt;}
._5{width:21.856000pt;}
._1c{width:22.832000pt;}
._11{width:23.877333pt;}
._1e{width:24.800000pt;}
._19{width:25.813333pt;}
._3{width:27.573333pt;}
._2c{width:28.586667pt;}
._1b{width:29.584000pt;}
._23{width:30.890667pt;}
._2a{width:32.314667pt;}
._34{width:33.338667pt;}
._24{width:34.240000pt;}
._2b{width:35.514667pt;}
._30{width:36.784000pt;}
._25{width:37.797333pt;}
._21{width:39.194667pt;}
._1f{width:40.426667pt;}
._20{width:41.328000pt;}
._22{width:42.597333pt;}
._1a{width:44.218667pt;}
._2d{width:45.402667pt;}
._f{width:46.346667pt;}
._10{width:47.674667pt;}
._2e{width:48.618667pt;}
._35{width:49.648000pt;}
._33{width:51.717333pt;}
._15{width:52.869333pt;}
._32{width:53.888000pt;}
._14{width:55.397333pt;}
._29{width:56.586667pt;}
._28{width:57.525333pt;}
._31{width:60.970667pt;}
._2f{width:86.592000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:13.866667pt;}
.y7e{bottom:14.133333pt;}
.y85{bottom:14.173333pt;}
.y4{bottom:50.166667pt;}
.yac{bottom:71.500000pt;}
.ycc{bottom:71.766667pt;}
.y8e{bottom:73.633333pt;}
.ye3{bottom:74.700000pt;}
.y5b{bottom:76.300000pt;}
.y17b{bottom:77.100000pt;}
.y70{bottom:80.833333pt;}
.y118{bottom:82.166667pt;}
.y22{bottom:82.700000pt;}
.y139{bottom:84.033333pt;}
.yf7{bottom:87.233333pt;}
.yab{bottom:88.566667pt;}
.y8d{bottom:90.433333pt;}
.ye2{bottom:91.500000pt;}
.y5a{bottom:93.100000pt;}
.y17a{bottom:96.566667pt;}
.y6f{bottom:97.900000pt;}
.y117{bottom:99.233333pt;}
.y21{bottom:100.566667pt;}
.y138{bottom:100.833333pt;}
.y35{bottom:104.033333pt;}
.yaa{bottom:105.366667pt;}
.ycb{bottom:105.633333pt;}
.y159{bottom:106.433333pt;}
.y8c{bottom:107.500000pt;}
.ye1{bottom:108.566667pt;}
.y59{bottom:109.900000pt;}
.y20{bottom:110.433333pt;}
.y194{bottom:111.766667pt;}
.y6e{bottom:114.700000pt;}
.y116{bottom:116.033333pt;}
.y137{bottom:117.633333pt;}
.yf6{bottom:120.833333pt;}
.ya9{bottom:122.166667pt;}
.yca{bottom:122.433333pt;}
.y1f{bottom:124.333333pt;}
.ye0{bottom:125.400000pt;}
.y158{bottom:125.666667pt;}
.y58{bottom:127.000000pt;}
.y1e{bottom:128.333333pt;}
.y193{bottom:129.933333pt;}
.y6d{bottom:131.533333pt;}
.y115{bottom:132.866667pt;}
.y179{bottom:135.533333pt;}
.yf5{bottom:137.666667pt;}
.y34{bottom:138.466667pt;}
.ya8{bottom:139.000000pt;}
.yc9{bottom:139.266667pt;}
.y8b{bottom:141.133333pt;}
.y57{bottom:143.800000pt;}
.y157{bottom:145.133333pt;}
.y136{bottom:145.400000pt;}
.y192{bottom:146.733333pt;}
.y114{bottom:149.666667pt;}
.y1d{bottom:149.933333pt;}
.ydf{bottom:153.133333pt;}
.yf4{bottom:154.733333pt;}
.ya7{bottom:156.066667pt;}
.y8a{bottom:157.933333pt;}
.y6c{bottom:159.266667pt;}
.y56{bottom:160.600000pt;}
.y135{bottom:162.200000pt;}
.y1c{bottom:163.800000pt;}
.y156{bottom:164.600000pt;}
.y113{bottom:166.733333pt;}
.yf3{bottom:171.533333pt;}
.y33{bottom:172.866667pt;}
.yc8{bottom:173.133333pt;}
.y178{bottom:174.200000pt;}
.y89{bottom:175.000000pt;}
.y55{bottom:177.400000pt;}
.y1b{bottom:177.666667pt;}
.y134{bottom:179.000000pt;}
.y191{bottom:180.600000pt;}
.yde{bottom:181.933333pt;}
.ya6{bottom:183.533333pt;}
.y155{bottom:184.066667pt;}
.y6b{bottom:188.066667pt;}
.yf2{bottom:188.333333pt;}
.y10b{bottom:189.666667pt;}
.yc7{bottom:189.933333pt;}
.y1a{bottom:191.533333pt;}
.y88{bottom:191.800000pt;}
.y177{bottom:193.666667pt;}
.y54{bottom:194.466667pt;}
.y133{bottom:195.800000pt;}
.y190{bottom:197.400000pt;}
.ydd{bottom:198.733333pt;}
.ya5{bottom:200.333333pt;}
.y154{bottom:203.266667pt;}
.y6a{bottom:205.133333pt;}
.y10a{bottom:206.466667pt;}
.y32{bottom:207.533333pt;}
.y87{bottom:208.600000pt;}
.y19{bottom:211.266667pt;}
.y132{bottom:212.866667pt;}
.y176{bottom:213.133333pt;}
.y18f{bottom:214.200000pt;}
.ydc{bottom:215.800000pt;}
.ya4{bottom:217.133333pt;}
.yc6{bottom:217.400000pt;}
.y69{bottom:221.933333pt;}
.yf1{bottom:222.200000pt;}
.y153{bottom:222.733333pt;}
.y109{bottom:223.533333pt;}
.y86{bottom:225.400000pt;}
.y53{bottom:228.066667pt;}
.y131{bottom:229.666667pt;}
.y18e{bottom:231.266667pt;}
.y175{bottom:232.333333pt;}
.ydb{bottom:232.600000pt;}
.ya3{bottom:234.200000pt;}
.y18{bottom:238.733333pt;}
.y84{bottom:239.000000pt;}
.y108{bottom:240.333333pt;}
.y31{bottom:241.933333pt;}
.y152{bottom:242.200000pt;}
.yc5{bottom:244.906667pt;}
.y130{bottom:246.506667pt;}
.y18d{bottom:248.106667pt;}
.yda{bottom:249.440000pt;}
.yf0{bottom:249.706667pt;}
.ya2{bottom:251.040000pt;}
.y174{bottom:251.840000pt;}
.y52{bottom:255.573333pt;}
.y107{bottom:257.173333pt;}
.y151{bottom:261.440000pt;}
.yc4{bottom:261.973333pt;}
.y12f{bottom:263.306667pt;}
.y18c{bottom:264.906667pt;}
.yd9{bottom:266.240000pt;}
.y17{bottom:266.506667pt;}
.y83{bottom:266.773333pt;}
.ya1{bottom:267.840000pt;}
.y173{bottom:271.306667pt;}
.y51{bottom:272.640000pt;}
.y106{bottom:273.973333pt;}
.y30{bottom:276.373333pt;}
.yef{bottom:277.173333pt;}
.yc3{bottom:278.773333pt;}
.y12e{bottom:280.373333pt;}
.y150{bottom:280.906667pt;}
.y18b{bottom:281.706667pt;}
.yd8{bottom:283.306667pt;}
.ya0{bottom:284.640000pt;}
.y50{bottom:289.440000pt;}
.y172{bottom:290.506667pt;}
.y105{bottom:291.040000pt;}
.y16{bottom:293.973333pt;}
.y82{bottom:294.240000pt;}
.y112{bottom:295.306667pt;}
.yc2{bottom:295.573333pt;}
.y12d{bottom:297.173333pt;}
.y18a{bottom:298.773333pt;}
.yd7{bottom:300.106667pt;}
.y14f{bottom:300.373333pt;}
.y9f{bottom:301.706667pt;}
.y4f{bottom:306.240000pt;}
.y104{bottom:307.840000pt;}
.y171{bottom:309.973333pt;}
.y2f{bottom:311.040000pt;}
.yc1{bottom:312.373333pt;}
.y12c{bottom:313.973333pt;}
.y189{bottom:315.573333pt;}
.y9e{bottom:318.506667pt;}
.y14e{bottom:319.840000pt;}
.y15{bottom:321.706667pt;}
.y4e{bottom:323.040000pt;}
.y103{bottom:324.640000pt;}
.yd6{bottom:327.840000pt;}
.y111{bottom:329.173333pt;}
.yc0{bottom:329.440000pt;}
.y12b{bottom:330.773333pt;}
.y188{bottom:332.373333pt;}
.y9d{bottom:335.306667pt;}
.y14d{bottom:339.040000pt;}
.y4d{bottom:340.106667pt;}
.y102{bottom:341.440000pt;}
.yee{bottom:344.640000pt;}
.y2e{bottom:345.440000pt;}
.y110{bottom:345.973333pt;}
.ybf{bottom:346.240000pt;}
.y12a{bottom:347.840000pt;}
.y170{bottom:348.906667pt;}
.y14{bottom:349.173333pt;}
.y9c{bottom:352.106667pt;}
.yd5{bottom:356.640000pt;}
.y4c{bottom:356.906667pt;}
.y101{bottom:358.506667pt;}
.yed{bottom:361.440000pt;}
.y10f{bottom:362.773333pt;}
.ybe{bottom:363.040000pt;}
.y129{bottom:364.640000pt;}
.y187{bottom:366.000000pt;}
.y16f{bottom:368.133333pt;}
.y9b{bottom:369.200000pt;}
.yd4{bottom:373.466667pt;}
.y4b{bottom:373.733333pt;}
.y13{bottom:376.933333pt;}
.y14c{bottom:378.000000pt;}
.yec{bottom:378.533333pt;}
.y2d{bottom:379.866667pt;}
.y128{bottom:381.466667pt;}
.y186{bottom:383.066667pt;}
.y9a{bottom:386.000000pt;}
.y16e{bottom:387.600000pt;}
.y68{bottom:390.533333pt;}
.yeb{bottom:395.333333pt;}
.y10e{bottom:396.666667pt;}
.y14b{bottom:397.466667pt;}
.y127{bottom:398.266667pt;}
.y185{bottom:399.866667pt;}
.y4a{bottom:401.200000pt;}
.y99{bottom:402.800000pt;}
.y81{bottom:404.400000pt;}
.y16d{bottom:407.066667pt;}
.yd3{bottom:407.333333pt;}
.y67{bottom:407.600000pt;}
.yea{bottom:412.133333pt;}
.y10d{bottom:413.466667pt;}
.y2c{bottom:414.533333pt;}
.y126{bottom:415.333333pt;}
.y14a{bottom:416.666667pt;}
.y12{bottom:417.733333pt;}
.y49{bottom:418.266667pt;}
.y98{bottom:419.600000pt;}
.yd2{bottom:424.133333pt;}
.ybd{bottom:424.400000pt;}
.y16c{bottom:426.533333pt;}
.ye9{bottom:428.933333pt;}
.y10c{bottom:430.266667pt;}
.y7f{bottom:431.866667pt;}
.y184{bottom:433.466667pt;}
.y48{bottom:435.066667pt;}
.y149{bottom:436.133333pt;}
.y97{bottom:436.666667pt;}
.yd1{bottom:440.933333pt;}
.ybc{bottom:441.200000pt;}
.y125{bottom:442.800000pt;}
.y11{bottom:445.466667pt;}
.y16b{bottom:445.733333pt;}
.ye8{bottom:446.000000pt;}
.yb6{bottom:447.333333pt;}
.y2b{bottom:448.933333pt;}
.y183{bottom:450.533333pt;}
.y47{bottom:451.866667pt;}
.y96{bottom:453.466667pt;}
.y148{bottom:455.600000pt;}
.ybb{bottom:458.000000pt;}
.y7d{bottom:459.333333pt;}
.y124{bottom:459.600000pt;}
.ye7{bottom:462.800000pt;}
.yb5{bottom:464.133333pt;}
.y16a{bottom:465.200000pt;}
.y182{bottom:467.333333pt;}
.y46{bottom:468.666667pt;}
.y95{bottom:470.266667pt;}
.yd0{bottom:474.800000pt;}
.yba{bottom:475.066667pt;}
.y123{bottom:476.400000pt;}
.y10{bottom:479.866667pt;}
.yb4{bottom:480.933333pt;}
.y2a{bottom:483.333333pt;}
.y181{bottom:484.133333pt;}
.y169{bottom:484.666667pt;}
.y45{bottom:485.773333pt;}
.y100{bottom:487.106667pt;}
.ye6{bottom:490.573333pt;}
.ycf{bottom:491.640000pt;}
.yb9{bottom:491.906667pt;}
.y122{bottom:493.506667pt;}
.y147{bottom:494.306667pt;}
.y94{bottom:497.773333pt;}
.y7c{bottom:500.440000pt;}
.y180{bottom:500.973333pt;}
.y44{bottom:502.573333pt;}
.yff{bottom:504.173333pt;}
.yce{bottom:508.440000pt;}
.yb8{bottom:508.706667pt;}
.y121{bottom:510.306667pt;}
.y146{bottom:513.773333pt;}
.y93{bottom:514.840000pt;}
.yf{bottom:515.373333pt;}
.y7b{bottom:516.173333pt;}
.y29{bottom:518.040000pt;}
.y43{bottom:519.373333pt;}
.yfe{bottom:520.973333pt;}
.y168{bottom:523.373333pt;}
.ycd{bottom:525.506667pt;}
.y120{bottom:527.106667pt;}
.y92{bottom:531.640000pt;}
.y145{bottom:533.240000pt;}
.y17f{bottom:534.840000pt;}
.y42{bottom:536.173333pt;}
.yfd{bottom:537.773333pt;}
.y7a{bottom:542.306667pt;}
.y167{bottom:542.840000pt;}
.y11f{bottom:543.906667pt;}
.ye{bottom:545.506667pt;}
.y91{bottom:548.440000pt;}
.y17e{bottom:551.640000pt;}
.y28{bottom:552.440000pt;}
.y41{bottom:553.240000pt;}
.yfc{bottom:554.573333pt;}
.y79{bottom:559.106667pt;}
.y11e{bottom:560.973333pt;}
.y166{bottom:562.306667pt;}
.y90{bottom:565.240000pt;}
.y17d{bottom:568.440000pt;}
.y40{bottom:570.040000pt;}
.yfb{bottom:571.640000pt;}
.y144{bottom:571.906667pt;}
.yd{bottom:573.240000pt;}
.y78{bottom:575.906667pt;}
.y11d{bottom:577.773333pt;}
.y165{bottom:581.506667pt;}
.y8f{bottom:582.306667pt;}
.y17c{bottom:585.506667pt;}
.y27{bottom:586.840000pt;}
.yfa{bottom:588.440000pt;}
.y143{bottom:591.373333pt;}
.y77{bottom:592.973333pt;}
.y11c{bottom:594.573333pt;}
.y3f{bottom:597.506667pt;}
.yb3{bottom:599.106667pt;}
.yc{bottom:600.706667pt;}
.y164{bottom:600.973333pt;}
.y66{bottom:603.640000pt;}
.yf9{bottom:605.240000pt;}
.y76{bottom:609.800000pt;}
.y142{bottom:610.866667pt;}
.y11b{bottom:611.400000pt;}
.y3e{bottom:614.333333pt;}
.yb2{bottom:615.933333pt;}
.y163{bottom:620.466667pt;}
.y65{bottom:620.733333pt;}
.y26{bottom:621.533333pt;}
.yf8{bottom:622.066667pt;}
.y75{bottom:626.600000pt;}
.yb{bottom:628.466667pt;}
.y141{bottom:630.066667pt;}
.y3d{bottom:631.400000pt;}
.yb1{bottom:632.733333pt;}
.y64{bottom:637.533333pt;}
.y162{bottom:639.933333pt;}
.y74{bottom:643.400000pt;}
.y11a{bottom:645.266667pt;}
.y3c{bottom:648.200000pt;}
.y140{bottom:649.533333pt;}
.yb0{bottom:649.800000pt;}
.y63{bottom:654.333333pt;}
.ya{bottom:655.933333pt;}
.y161{bottom:659.133333pt;}
.y73{bottom:660.466667pt;}
.y3b{bottom:665.000000pt;}
.yaf{bottom:666.600000pt;}
.y13f{bottom:669.000000pt;}
.yb7{bottom:671.133333pt;}
.y119{bottom:672.733333pt;}
.y72{bottom:677.266667pt;}
.y160{bottom:678.600000pt;}
.y3a{bottom:681.800000pt;}
.y62{bottom:682.066667pt;}
.yae{bottom:683.400000pt;}
.y9{bottom:683.666667pt;}
.ye5{bottom:688.200000pt;}
.y13e{bottom:688.466667pt;}
.y25{bottom:690.333333pt;}
.y71{bottom:694.066667pt;}
.y15f{bottom:698.066667pt;}
.y39{bottom:698.866667pt;}
.yad{bottom:700.200000pt;}
.y13d{bottom:707.666667pt;}
.y61{bottom:710.866667pt;}
.y8{bottom:711.133333pt;}
.y38{bottom:715.666667pt;}
.ye4{bottom:715.933333pt;}
.y15e{bottom:717.533333pt;}
.y24{bottom:725.000000pt;}
.y13c{bottom:727.173333pt;}
.y60{bottom:727.973333pt;}
.y37{bottom:732.506667pt;}
.y15d{bottom:736.773333pt;}
.y7{bottom:738.906667pt;}
.y5f{bottom:744.773333pt;}
.y13b{bottom:746.640000pt;}
.y36{bottom:749.306667pt;}
.y15c{bottom:756.240000pt;}
.y23{bottom:759.440000pt;}
.y5e{bottom:761.573333pt;}
.y13a{bottom:766.106667pt;}
.y6{bottom:766.373333pt;}
.y15b{bottom:775.706667pt;}
.y5d{bottom:778.373333pt;}
.y5{bottom:794.106667pt;}
.y15a{bottom:795.173333pt;}
.y5c{bottom:795.440000pt;}
.y3{bottom:813.040000pt;}
.y2{bottom:830.906667pt;}
.y1{bottom:847.200000pt;}
.hf{height:27.466667pt;}
.hd{height:27.766667pt;}
.h8{height:31.406250pt;}
.h2{height:44.062500pt;}
.h9{height:47.109375pt;}
.h3{height:52.343750pt;}
.ha{height:52.593750pt;}
.hc{height:53.750000pt;}
.h11{height:55.840625pt;}
.h10{height:57.549479pt;}
.hb{height:57.578125pt;}
.he{height:59.125000pt;}
.h7{height:62.812500pt;}
.h4{height:64.500000pt;}
.h6{height:66.408333pt;}
.h5{height:75.250000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w4{width:209.133333pt;}
.w5{width:250.533333pt;}
.w1{width:604.666667pt;}
.w3{width:604.799982pt;}
.w2{width:604.799991pt;}
.w0{width:604.800000pt;}
.x0{left:0.000000pt;}
.x16{left:49.066667pt;}
.x12{left:52.833333pt;}
.x17{left:61.633333pt;}
.x1{left:68.033324pt;}
.x7{left:72.033324pt;}
.x10{left:76.566667pt;}
.xd{left:82.426667pt;}
.x15{left:86.433333pt;}
.x14{left:94.966667pt;}
.xb{left:96.033333pt;}
.xe{left:104.300000pt;}
.xa{left:105.899991pt;}
.x18{left:113.920000pt;}
.x9{left:115.233324pt;}
.x11{left:117.920000pt;}
.x13{left:119.786667pt;}
.xf{left:123.533333pt;}
.x6{left:137.399991pt;}
.x5{left:220.626658pt;}
.x4{left:229.973324pt;}
.x3{left:256.373324pt;}
.xc{left:277.973333pt;}
.x8{left:392.173324pt;}
.x2{left:529.306658pt;}
}




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