
    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_f69d23b5c13c41190e9abe44.woff')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_679caf5b0e9ac11f94ef032c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6caec3826acdf211ef6a474c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_fde4ee8b7c6f02b75a4ed44a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_3a57af4280248346914b6d9a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944336;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_882c304b016370f757ee1cc2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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_572426967c3d755525075a50.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d719dc4f3bca0925a0b4842a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_24750c3f445d8d89e6406de0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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_ab8efb49c94adece75914352.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsc{letter-spacing:-2.724000px;}
.ls11{letter-spacing:-1.128000px;}
.lsd{letter-spacing:-0.816000px;}
.lsb{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.099000px;}
.ls12{letter-spacing:0.256200px;}
.ls13{letter-spacing:0.768000px;}
.ls1{letter-spacing:1.656000px;}
.lse{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.842000px;}
.ls6{letter-spacing:1.906500px;}
.ls5{letter-spacing:1.966500px;}
.ls10{letter-spacing:2.164500px;}
.ls7{letter-spacing:2.250000px;}
.ls8{letter-spacing:2.322000px;}
.ls16{letter-spacing:2.370000px;}
.lsf{letter-spacing:3.018000px;}
.ls9{letter-spacing:4.779000px;}
.ls0{letter-spacing:5.916000px;}
.ls4{letter-spacing:9.459000px;}
.ls15{letter-spacing:123.537000px;}
.ls14{letter-spacing:155.037000px;}
.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:-23.166000px;}
.wsa{word-spacing:-17.643000px;}
.ws7{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.ws9{word-spacing:-16.365000px;}
.ws2{word-spacing:-15.063000px;}
.wsb{word-spacing:-14.881200px;}
.ws6{word-spacing:-14.625000px;}
.ws3{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._1b{margin-left:-7.942500px;}
._18{margin-left:-6.565500px;}
._c{margin-left:-5.439000px;}
._a{margin-left:-3.484500px;}
._2{margin-left:-2.376000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.018000px;}
._4{width:4.806000px;}
._7{width:6.330000px;}
._b{width:7.834500px;}
._5{width:9.717000px;}
._19{width:11.424000px;}
._9{width:12.528000px;}
._6{width:14.614500px;}
._13{width:16.641000px;}
._16{width:17.773500px;}
._15{width:20.724000px;}
._11{width:21.774000px;}
._17{width:22.956000px;}
._1a{width:25.198500px;}
._14{width:26.289000px;}
._12{width:29.932500px;}
._8{width:31.386000px;}
._25{width:33.865500px;}
._10{width:35.203500px;}
._26{width:38.496000px;}
._d{width:39.793500px;}
._f{width:41.088000px;}
._e{width:44.667000px;}
._24{width:48.843000px;}
._1e{width:57.237000px;}
._1c{width:84.403500px;}
._1d{width:88.768500px;}
._20{width:102.484500px;}
._21{width:111.232500px;}
._1f{width:147.268500px;}
._23{width:179.169000px;}
._22{width:319.023000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.yba{bottom:3.360000px;}
.y3{bottom:3.375000px;}
.y4a{bottom:3.390000px;}
.y9b{bottom:3.405000px;}
.ya1{bottom:4.485000px;}
.yd{bottom:4.500000px;}
.yb0{bottom:4.515000px;}
.y45{bottom:4.545000px;}
.yc7{bottom:6.750000px;}
.yf{bottom:7.875000px;}
.y48{bottom:10.140000px;}
.y1c{bottom:12.375000px;}
.yee{bottom:15.750000px;}
.y10d{bottom:15.765000px;}
.yef{bottom:15.780000px;}
.yf8{bottom:15.795000px;}
.y4{bottom:16.875000px;}
.y7{bottom:18.030000px;}
.y2{bottom:19.125000px;}
.yd5{bottom:20.265000px;}
.y49{bottom:21.375000px;}
.y44{bottom:21.420000px;}
.yc{bottom:22.530000px;}
.y47{bottom:24.750000px;}
.y11f{bottom:27.015000px;}
.y1a{bottom:29.250000px;}
.y5{bottom:31.500000px;}
.yfd{bottom:32.625000px;}
.yf7{bottom:32.655000px;}
.yfb{bottom:32.670000px;}
.y10c{bottom:33.750000px;}
.y115{bottom:33.795000px;}
.y43{bottom:38.295000px;}
.yb{bottom:40.530000px;}
.y11e{bottom:45.045000px;}
.y121{bottom:45.075000px;}
.yec{bottom:46.155000px;}
.y19{bottom:46.170000px;}
.y103{bottom:46.200000px;}
.yf6{bottom:50.670000px;}
.y1{bottom:55.162500px;}
.y42{bottom:56.325000px;}
.y18{bottom:61.920000px;}
.yfc{bottom:63.030000px;}
.y10b{bottom:63.045000px;}
.y113{bottom:63.075000px;}
.ya{bottom:70.935000px;}
.y41{bottom:73.200000px;}
.y17{bottom:75.420000px;}
.yf5{bottom:79.950000px;}
.y40{bottom:90.120000px;}
.y11d{bottom:91.215000px;}
.y16{bottom:92.325000px;}
.y109{bottom:92.340000px;}
.y9{bottom:92.355000px;}
.ye1{bottom:93.435000px;}
.ye6{bottom:94.590000px;}
.y2e{bottom:99.120000px;}
.ya4{bottom:103.575000px;}
.y101{bottom:104.700000px;}
.ye0{bottom:105.825000px;}
.y3f{bottom:108.120000px;}
.y119{bottom:109.245000px;}
.y15{bottom:110.325000px;}
.yf9{bottom:110.355000px;}
.yf3{bottom:110.370000px;}
.y95{bottom:111.450000px;}
.y59{bottom:112.575000px;}
.y130{bottom:113.700000px;}
.y8{bottom:113.730000px;}
.y2d{bottom:113.745000px;}
.ya3{bottom:120.487500px;}
.y11b{bottom:121.620000px;}
.ydf{bottom:122.737500px;}
.y3e{bottom:124.995000px;}
.y14{bottom:128.370000px;}
.y94{bottom:129.487500px;}
.y58{bottom:130.612500px;}
.y12f{bottom:131.737500px;}
.y2c{bottom:132.900000px;}
.ya2{bottom:138.487500px;}
.y100{bottom:139.612500px;}
.yde{bottom:140.737500px;}
.y3d{bottom:141.915000px;}
.y93{bottom:146.362500px;}
.y57{bottom:147.487500px;}
.y13{bottom:147.495000px;}
.y12e{bottom:148.612500px;}
.y2b{bottom:149.775000px;}
.ya0{bottom:151.995000px;}
.ydd{bottom:154.245000px;}
.yff{bottom:156.480000px;}
.y3c{bottom:159.900000px;}
.y92{bottom:163.275000px;}
.y56{bottom:164.400000px;}
.y12d{bottom:165.525000px;}
.y2a{bottom:166.650000px;}
.y9f{bottom:170.025000px;}
.yfe{bottom:171.150000px;}
.ydc{bottom:172.275000px;}
.y12{bottom:173.400000px;}
.y3b{bottom:176.820000px;}
.y91{bottom:181.275000px;}
.y55{bottom:182.400000px;}
.y12c{bottom:183.525000px;}
.y29{bottom:184.695000px;}
.y9e{bottom:188.025000px;}
.ydb{bottom:190.275000px;}
.y3a{bottom:193.695000px;}
.y11{bottom:198.150000px;}
.y54{bottom:199.275000px;}
.y12b{bottom:200.400000px;}
.y28{bottom:201.570000px;}
.yda{bottom:208.320000px;}
.y9d{bottom:210.570000px;}
.y39{bottom:211.695000px;}
.y90{bottom:215.070000px;}
.y105{bottom:216.180000px;}
.y53{bottom:216.195000px;}
.yf1{bottom:216.225000px;}
.y12a{bottom:217.320000px;}
.y27{bottom:219.615000px;}
.yd9{bottom:226.320000px;}
.y9c{bottom:227.445000px;}
.y38{bottom:228.615000px;}
.y8f{bottom:233.070000px;}
.y52{bottom:234.195000px;}
.yf0{bottom:234.225000px;}
.y129{bottom:235.320000px;}
.y26{bottom:236.490000px;}
.y9a{bottom:242.070000px;}
.y117{bottom:245.475000px;}
.y37{bottom:245.490000px;}
.yd8{bottom:248.850000px;}
.y8e{bottom:249.975000px;}
.y51{bottom:251.100000px;}
.y128{bottom:252.225000px;}
.y25{bottom:254.490000px;}
.y99{bottom:260.100000px;}
.y36{bottom:263.520000px;}
.yd7{bottom:265.725000px;}
.y8d{bottom:266.850000px;}
.y50{bottom:267.975000px;}
.y127{bottom:269.100000px;}
.y24{bottom:271.395000px;}
.y98{bottom:278.100000px;}
.yd6{bottom:280.350000px;}
.y35{bottom:280.395000px;}
.y8c{bottom:284.895000px;}
.y4f{bottom:286.005000px;}
.y126{bottom:287.130000px;}
.y23{bottom:288.270000px;}
.y97{bottom:296.130000px;}
.y34{bottom:297.315000px;}
.yd4{bottom:298.380000px;}
.y8b{bottom:301.770000px;}
.y4e{bottom:302.880000px;}
.y125{bottom:304.005000px;}
.y22{bottom:306.300000px;}
.yfa{bottom:308.505000px;}
.y96{bottom:314.130000px;}
.y33{bottom:315.300000px;}
.y8a{bottom:318.645000px;}
.y4d{bottom:319.755000px;}
.y124{bottom:320.880000px;}
.y21{bottom:323.175000px;}
.y32{bottom:332.175000px;}
.y123{bottom:335.550000px;}
.y89{bottom:336.675000px;}
.y4c{bottom:337.800000px;}
.y20{bottom:341.220000px;}
.y31{bottom:349.095000px;}
.yd3{bottom:350.175000px;}
.y88{bottom:353.550000px;}
.y4b{bottom:354.675000px;}
.y120{bottom:365.925000px;}
.y30{bottom:367.095000px;}
.yd2{bottom:368.205000px;}
.y1f{bottom:368.220000px;}
.y46{bottom:369.330000px;}
.y87{bottom:370.455000px;}
.y2f{bottom:384.000000px;}
.y1e{bottom:386.250000px;}
.y86{bottom:388.455000px;}
.yd1{bottom:390.705000px;}
.y122{bottom:395.205000px;}
.yf2{bottom:401.955000px;}
.y1d{bottom:405.330000px;}
.yd0{bottom:407.580000px;}
.y85{bottom:422.250000px;}
.y116{bottom:425.625000px;}
.yf4{bottom:432.375000px;}
.y84{bottom:440.250000px;}
.y11c{bottom:456.030000px;}
.y83{bottom:457.170000px;}
.ycf{bottom:458.280000px;}
.y82{bottom:474.045000px;}
.yce{bottom:476.280000px;}
.y81{bottom:492.030000px;}
.ycd{bottom:494.325000px;}
.y80{bottom:508.950000px;}
.ycc{bottom:515.700000px;}
.y7f{bottom:525.825000px;}
.ycb{bottom:532.575000px;}
.y7e{bottom:543.870000px;}
.yca{bottom:547.230000px;}
.yed{bottom:556.230000px;}
.y7d{bottom:560.745000px;}
.y118{bottom:561.855000px;}
.yc9{bottom:565.230000px;}
.y7c{bottom:577.650000px;}
.yc8{bottom:583.275000px;}
.yeb{bottom:590.025000px;}
.y11a{bottom:591.150000px;}
.y7b{bottom:595.650000px;}
.yc6{bottom:601.275000px;}
.yea{bottom:606.900000px;}
.y7a{bottom:612.525000px;}
.ye9{bottom:621.570000px;}
.yc5{bottom:622.695000px;}
.y79{bottom:629.445000px;}
.ye8{bottom:639.570000px;}
.yc4{bottom:644.070000px;}
.y78{bottom:647.445000px;}
.ye7{bottom:657.570000px;}
.yc3{bottom:660.975000px;}
.y77{bottom:664.350000px;}
.yc2{bottom:675.600000px;}
.y76{bottom:681.225000px;}
.y112{bottom:685.725000px;}
.yc1{bottom:693.600000px;}
.y75{bottom:699.225000px;}
.yc0{bottom:711.630000px;}
.y114{bottom:715.005000px;}
.y74{bottom:716.145000px;}
.ybf{bottom:729.630000px;}
.y73{bottom:733.020000px;}
.ybe{bottom:747.675000px;}
.y72{bottom:751.050000px;}
.ybd{bottom:765.675000px;}
.y111{bottom:766.800000px;}
.y71{bottom:767.925000px;}
.ybc{bottom:783.675000px;}
.y70{bottom:784.800000px;}
.y110{bottom:798.330000px;}
.ybb{bottom:801.705000px;}
.y1b{bottom:802.830000px;}
.y6f{bottom:819.705000px;}
.yb9{bottom:819.720000px;}
.y10e{bottom:827.625000px;}
.y10{bottom:832.125000px;}
.y6e{bottom:836.625000px;}
.yb8{bottom:837.750000px;}
.y6d{bottom:854.625000px;}
.y10f{bottom:858.000000px;}
.yb7{bottom:859.125000px;}
.y6c{bottom:871.545000px;}
.yb6{bottom:877.170000px;}
.y108{bottom:888.405000px;}
.y6b{bottom:888.420000px;}
.ye5{bottom:890.655000px;}
.yb5{bottom:890.670000px;}
.y6a{bottom:906.420000px;}
.yb4{bottom:908.655000px;}
.y10a{bottom:917.700000px;}
.y69{bottom:923.325000px;}
.yb3{bottom:926.700000px;}
.y68{bottom:940.200000px;}
.yb2{bottom:944.700000px;}
.y67{bottom:958.245000px;}
.yb1{bottom:962.745000px;}
.y66{bottom:975.120000px;}
.yaf{bottom:980.730000px;}
.y65{bottom:991.995000px;}
.y106{bottom:994.275000px;}
.yae{bottom:998.775000px;}
.y64{bottom:1010.025000px;}
.yad{bottom:1016.775000px;}
.ye4{bottom:1021.275000px;}
.y107{bottom:1024.650000px;}
.y63{bottom:1026.900000px;}
.yac{bottom:1034.775000px;}
.ye3{bottom:1038.195000px;}
.y62{bottom:1043.820000px;}
.ye{bottom:1044.945000px;}
.yab{bottom:1052.820000px;}
.y61{bottom:1061.820000px;}
.y6{bottom:1070.820000px;}
.yaa{bottom:1075.320000px;}
.y60{bottom:1078.725000px;}
.ye2{bottom:1088.850000px;}
.ya9{bottom:1092.225000px;}
.y5f{bottom:1095.600000px;}
.ya8{bottom:1106.850000px;}
.y5e{bottom:1113.600000px;}
.y102{bottom:1118.100000px;}
.ya7{bottom:1124.880000px;}
.y5d{bottom:1130.505000px;}
.ya6{bottom:1142.880000px;}
.y5c{bottom:1147.380000px;}
.y104{bottom:1148.505000px;}
.ya5{bottom:1160.925000px;}
.y5b{bottom:1165.425000px;}
.y5a{bottom:1182.300000px;}
.h1a{height:16.875000px;}
.h1f{height:16.897500px;}
.h1b{height:16.912500px;}
.h1e{height:17.985000px;}
.h1d{height:18.000000px;}
.h1c{height:18.037500px;}
.h20{height:20.287500px;}
.hb{height:25.875000px;}
.h29{height:29.250000px;}
.h11{height:29.287500px;}
.h10{height:29.953125px;}
.h2{height:32.662500px;}
.h19{height:36.000000px;}
.h16{height:39.832031px;}
.h18{height:40.847168px;}
.h17{height:41.275635px;}
.h15{height:41.389893px;}
.h36{height:42.589600px;}
.hd{height:43.075195px;}
.h4{height:43.453125px;}
.h2a{height:46.162500px;}
.h14{height:47.074219px;}
.h30{height:47.287500px;}
.h13{height:49.234131px;}
.h8{height:50.684326px;}
.h21{height:51.787500px;}
.h3{height:55.291992px;}
.ha{height:58.185791px;}
.h35{height:58.575000px;}
.h2f{height:59.662500px;}
.h24{height:59.700000px;}
.hf{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h9{height:73.722656px;}
.h28{height:76.537500px;}
.h2e{height:76.575000px;}
.h27{height:93.450000px;}
.h34{height:104.700000px;}
.h2d{height:105.862500px;}
.h22{height:106.950000px;}
.h23{height:108.112500px;}
.h32{height:122.737500px;}
.h2c{height:123.825000px;}
.h26{height:123.862500px;}
.h7{height:124.987500px;}
.h33{height:135.112500px;}
.hc{height:212.820000px;}
.h2b{height:229.695000px;}
.h25{height:247.725000px;}
.h31{height:258.975000px;}
.h12{height:397.500000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w24{width:61.950000px;}
.w2d{width:63.075000px;}
.w18{width:66.487500px;}
.w2{width:73.237500px;}
.w1b{width:85.612500px;}
.w29{width:87.862500px;}
.w12{width:95.737500px;}
.w2c{width:106.987500px;}
.w15{width:116.025000px;}
.w23{width:125.025000px;}
.w2b{width:126.187500px;}
.w25{width:129.562500px;}
.w1c{width:135.187500px;}
.w2a{width:137.400000px;}
.w1a{width:144.187500px;}
.w11{width:145.312500px;}
.w4{width:152.055000px;}
.w22{width:156.600000px;}
.w21{width:170.055000px;}
.w2e{width:171.225000px;}
.w1d{width:182.475000px;}
.w26{width:186.975000px;}
.w19{width:199.350000px;}
.w7{width:224.145000px;}
.w10{width:224.175000px;}
.wb{width:227.550000px;}
.wd{width:228.675000px;}
.we{width:241.050000px;}
.w9{width:242.175000px;}
.w14{width:243.300000px;}
.wc{width:257.955000px;}
.wa{width:261.330000px;}
.w13{width:262.470000px;}
.wf{width:263.580000px;}
.w28{width:264.720000px;}
.w1f{width:316.530000px;}
.w16{width:318.780000px;}
.w20{width:326.655000px;}
.w17{width:343.530000px;}
.w27{width:371.700000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w2f{width:726.570000px;}
.w1e{width:729.945000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:6.750000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x33{left:11.250000px;}
.x15{left:12.405000px;}
.xe{left:14.625000px;}
.x11{left:42.787500px;}
.x1{left:81.112500px;}
.x5{left:82.237500px;}
.x10{left:104.737500px;}
.x39{left:108.149987px;}
.x12{left:117.157500px;}
.x3a{left:162.224987px;}
.x2a{left:179.100000px;}
.x36{left:190.395000px;}
.x2f{left:207.270000px;}
.x22{left:208.394987px;}
.x31{left:212.894987px;}
.x13{left:214.012500px;}
.x26{left:216.254987px;}
.x25{left:218.519987px;}
.x23{left:228.675000px;}
.x24{left:229.799987px;}
.x6{left:233.175000px;}
.x2b{left:238.799987px;}
.x21{left:246.674987px;}
.x37{left:254.595000px;}
.x20{left:256.829987px;}
.x1d{left:265.844987px;}
.x30{left:269.220000px;}
.xf{left:272.587500px;}
.x1f{left:280.499987px;}
.x1b{left:281.624987px;}
.x9{left:285.000000px;}
.x1e{left:287.249987px;}
.x16{left:288.374987px;}
.x19{left:289.499987px;}
.x14{left:305.250000px;}
.xd{left:321.037500px;}
.x7{left:323.295000px;}
.x17{left:324.420000px;}
.x8{left:344.700000px;}
.xb{left:349.200000px;}
.xc{left:364.957500px;}
.x2c{left:398.775000px;}
.x27{left:402.150000px;}
.xa{left:431.445000px;}
.x32{left:455.100000px;}
.x2e{left:568.845000px;}
.x1a{left:583.500000px;}
.x18{left:585.750000px;}
.x1c{left:588.000000px;}
.x35{left:593.625000px;}
.x29{left:601.500000px;}
.x34{left:720.945000px;}
.x2d{left:726.570000px;}
.x3{left:740.070000px;}
.x28{left:745.695000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsc{letter-spacing:-2.421333pt;}
.ls11{letter-spacing:-1.002667pt;}
.lsd{letter-spacing:-0.725333pt;}
.lsb{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.088000pt;}
.ls12{letter-spacing:0.227733pt;}
.ls13{letter-spacing:0.682667pt;}
.ls1{letter-spacing:1.472000pt;}
.lse{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.637333pt;}
.ls6{letter-spacing:1.694667pt;}
.ls5{letter-spacing:1.748000pt;}
.ls10{letter-spacing:1.924000pt;}
.ls7{letter-spacing:2.000000pt;}
.ls8{letter-spacing:2.064000pt;}
.ls16{letter-spacing:2.106667pt;}
.lsf{letter-spacing:2.682667pt;}
.ls9{letter-spacing:4.248000pt;}
.ls0{letter-spacing:5.258667pt;}
.ls4{letter-spacing:8.408000pt;}
.ls15{letter-spacing:109.810667pt;}
.ls14{letter-spacing:137.810667pt;}
.ws4{word-spacing:-20.592000pt;}
.wsa{word-spacing:-15.682667pt;}
.ws7{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.ws9{word-spacing:-14.546667pt;}
.ws2{word-spacing:-13.389333pt;}
.wsb{word-spacing:-13.227733pt;}
.ws6{word-spacing:-13.000000pt;}
.ws3{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._1b{margin-left:-7.060000pt;}
._18{margin-left:-5.836000pt;}
._c{margin-left:-4.834667pt;}
._a{margin-left:-3.097333pt;}
._2{margin-left:-2.112000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.682667pt;}
._4{width:4.272000pt;}
._7{width:5.626667pt;}
._b{width:6.964000pt;}
._5{width:8.637333pt;}
._19{width:10.154667pt;}
._9{width:11.136000pt;}
._6{width:12.990667pt;}
._13{width:14.792000pt;}
._16{width:15.798667pt;}
._15{width:18.421333pt;}
._11{width:19.354667pt;}
._17{width:20.405333pt;}
._1a{width:22.398667pt;}
._14{width:23.368000pt;}
._12{width:26.606667pt;}
._8{width:27.898667pt;}
._25{width:30.102667pt;}
._10{width:31.292000pt;}
._26{width:34.218667pt;}
._d{width:35.372000pt;}
._f{width:36.522667pt;}
._e{width:39.704000pt;}
._24{width:43.416000pt;}
._1e{width:50.877333pt;}
._1c{width:75.025333pt;}
._1d{width:78.905333pt;}
._20{width:91.097333pt;}
._21{width:98.873333pt;}
._1f{width:130.905333pt;}
._23{width:159.261333pt;}
._22{width:283.576000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:2.986667pt;}
.y3{bottom:3.000000pt;}
.y4a{bottom:3.013333pt;}
.y9b{bottom:3.026667pt;}
.ya1{bottom:3.986667pt;}
.yd{bottom:4.000000pt;}
.yb0{bottom:4.013333pt;}
.y45{bottom:4.040000pt;}
.yc7{bottom:6.000000pt;}
.yf{bottom:7.000000pt;}
.y48{bottom:9.013333pt;}
.y1c{bottom:11.000000pt;}
.yee{bottom:14.000000pt;}
.y10d{bottom:14.013333pt;}
.yef{bottom:14.026667pt;}
.yf8{bottom:14.040000pt;}
.y4{bottom:15.000000pt;}
.y7{bottom:16.026667pt;}
.y2{bottom:17.000000pt;}
.yd5{bottom:18.013333pt;}
.y49{bottom:19.000000pt;}
.y44{bottom:19.040000pt;}
.yc{bottom:20.026667pt;}
.y47{bottom:22.000000pt;}
.y11f{bottom:24.013333pt;}
.y1a{bottom:26.000000pt;}
.y5{bottom:28.000000pt;}
.yfd{bottom:29.000000pt;}
.yf7{bottom:29.026667pt;}
.yfb{bottom:29.040000pt;}
.y10c{bottom:30.000000pt;}
.y115{bottom:30.040000pt;}
.y43{bottom:34.040000pt;}
.yb{bottom:36.026667pt;}
.y11e{bottom:40.040000pt;}
.y121{bottom:40.066667pt;}
.yec{bottom:41.026667pt;}
.y19{bottom:41.040000pt;}
.y103{bottom:41.066667pt;}
.yf6{bottom:45.040000pt;}
.y1{bottom:49.033333pt;}
.y42{bottom:50.066667pt;}
.y18{bottom:55.040000pt;}
.yfc{bottom:56.026667pt;}
.y10b{bottom:56.040000pt;}
.y113{bottom:56.066667pt;}
.ya{bottom:63.053333pt;}
.y41{bottom:65.066667pt;}
.y17{bottom:67.040000pt;}
.yf5{bottom:71.066667pt;}
.y40{bottom:80.106667pt;}
.y11d{bottom:81.080000pt;}
.y16{bottom:82.066667pt;}
.y109{bottom:82.080000pt;}
.y9{bottom:82.093333pt;}
.ye1{bottom:83.053333pt;}
.ye6{bottom:84.080000pt;}
.y2e{bottom:88.106667pt;}
.ya4{bottom:92.066667pt;}
.y101{bottom:93.066667pt;}
.ye0{bottom:94.066667pt;}
.y3f{bottom:96.106667pt;}
.y119{bottom:97.106667pt;}
.y15{bottom:98.066667pt;}
.yf9{bottom:98.093333pt;}
.yf3{bottom:98.106667pt;}
.y95{bottom:99.066667pt;}
.y59{bottom:100.066667pt;}
.y130{bottom:101.066667pt;}
.y8{bottom:101.093333pt;}
.y2d{bottom:101.106667pt;}
.ya3{bottom:107.100000pt;}
.y11b{bottom:108.106667pt;}
.ydf{bottom:109.100000pt;}
.y3e{bottom:111.106667pt;}
.y14{bottom:114.106667pt;}
.y94{bottom:115.100000pt;}
.y58{bottom:116.100000pt;}
.y12f{bottom:117.100000pt;}
.y2c{bottom:118.133333pt;}
.ya2{bottom:123.100000pt;}
.y100{bottom:124.100000pt;}
.yde{bottom:125.100000pt;}
.y3d{bottom:126.146667pt;}
.y93{bottom:130.100000pt;}
.y57{bottom:131.100000pt;}
.y13{bottom:131.106667pt;}
.y12e{bottom:132.100000pt;}
.y2b{bottom:133.133333pt;}
.ya0{bottom:135.106667pt;}
.ydd{bottom:137.106667pt;}
.yff{bottom:139.093333pt;}
.y3c{bottom:142.133333pt;}
.y92{bottom:145.133333pt;}
.y56{bottom:146.133333pt;}
.y12d{bottom:147.133333pt;}
.y2a{bottom:148.133333pt;}
.y9f{bottom:151.133333pt;}
.yfe{bottom:152.133333pt;}
.ydc{bottom:153.133333pt;}
.y12{bottom:154.133333pt;}
.y3b{bottom:157.173333pt;}
.y91{bottom:161.133333pt;}
.y55{bottom:162.133333pt;}
.y12c{bottom:163.133333pt;}
.y29{bottom:164.173333pt;}
.y9e{bottom:167.133333pt;}
.ydb{bottom:169.133333pt;}
.y3a{bottom:172.173333pt;}
.y11{bottom:176.133333pt;}
.y54{bottom:177.133333pt;}
.y12b{bottom:178.133333pt;}
.y28{bottom:179.173333pt;}
.yda{bottom:185.173333pt;}
.y9d{bottom:187.173333pt;}
.y39{bottom:188.173333pt;}
.y90{bottom:191.173333pt;}
.y105{bottom:192.160000pt;}
.y53{bottom:192.173333pt;}
.yf1{bottom:192.200000pt;}
.y12a{bottom:193.173333pt;}
.y27{bottom:195.213333pt;}
.yd9{bottom:201.173333pt;}
.y9c{bottom:202.173333pt;}
.y38{bottom:203.213333pt;}
.y8f{bottom:207.173333pt;}
.y52{bottom:208.173333pt;}
.yf0{bottom:208.200000pt;}
.y129{bottom:209.173333pt;}
.y26{bottom:210.213333pt;}
.y9a{bottom:215.173333pt;}
.y117{bottom:218.200000pt;}
.y37{bottom:218.213333pt;}
.yd8{bottom:221.200000pt;}
.y8e{bottom:222.200000pt;}
.y51{bottom:223.200000pt;}
.y128{bottom:224.200000pt;}
.y25{bottom:226.213333pt;}
.y99{bottom:231.200000pt;}
.y36{bottom:234.240000pt;}
.yd7{bottom:236.200000pt;}
.y8d{bottom:237.200000pt;}
.y50{bottom:238.200000pt;}
.y127{bottom:239.200000pt;}
.y24{bottom:241.240000pt;}
.y98{bottom:247.200000pt;}
.yd6{bottom:249.200000pt;}
.y35{bottom:249.240000pt;}
.y8c{bottom:253.240000pt;}
.y4f{bottom:254.226667pt;}
.y126{bottom:255.226667pt;}
.y23{bottom:256.240000pt;}
.y97{bottom:263.226667pt;}
.y34{bottom:264.280000pt;}
.yd4{bottom:265.226667pt;}
.y8b{bottom:268.240000pt;}
.y4e{bottom:269.226667pt;}
.y125{bottom:270.226667pt;}
.y22{bottom:272.266667pt;}
.yfa{bottom:274.226667pt;}
.y96{bottom:279.226667pt;}
.y33{bottom:280.266667pt;}
.y8a{bottom:283.240000pt;}
.y4d{bottom:284.226667pt;}
.y124{bottom:285.226667pt;}
.y21{bottom:287.266667pt;}
.y32{bottom:295.266667pt;}
.y123{bottom:298.266667pt;}
.y89{bottom:299.266667pt;}
.y4c{bottom:300.266667pt;}
.y20{bottom:303.306667pt;}
.y31{bottom:310.306667pt;}
.yd3{bottom:311.266667pt;}
.y88{bottom:314.266667pt;}
.y4b{bottom:315.266667pt;}
.y120{bottom:325.266667pt;}
.y30{bottom:326.306667pt;}
.yd2{bottom:327.293333pt;}
.y1f{bottom:327.306667pt;}
.y46{bottom:328.293333pt;}
.y87{bottom:329.293333pt;}
.y2f{bottom:341.333333pt;}
.y1e{bottom:343.333333pt;}
.y86{bottom:345.293333pt;}
.yd1{bottom:347.293333pt;}
.y122{bottom:351.293333pt;}
.yf2{bottom:357.293333pt;}
.y1d{bottom:360.293333pt;}
.yd0{bottom:362.293333pt;}
.y85{bottom:375.333333pt;}
.y116{bottom:378.333333pt;}
.yf4{bottom:384.333333pt;}
.y84{bottom:391.333333pt;}
.y11c{bottom:405.360000pt;}
.y83{bottom:406.373333pt;}
.ycf{bottom:407.360000pt;}
.y82{bottom:421.373333pt;}
.yce{bottom:423.360000pt;}
.y81{bottom:437.360000pt;}
.ycd{bottom:439.400000pt;}
.y80{bottom:452.400000pt;}
.ycc{bottom:458.400000pt;}
.y7f{bottom:467.400000pt;}
.ycb{bottom:473.400000pt;}
.y7e{bottom:483.440000pt;}
.yca{bottom:486.426667pt;}
.yed{bottom:494.426667pt;}
.y7d{bottom:498.440000pt;}
.y118{bottom:499.426667pt;}
.yc9{bottom:502.426667pt;}
.y7c{bottom:513.466667pt;}
.yc8{bottom:518.466667pt;}
.yeb{bottom:524.466667pt;}
.y11a{bottom:525.466667pt;}
.y7b{bottom:529.466667pt;}
.yc6{bottom:534.466667pt;}
.yea{bottom:539.466667pt;}
.y7a{bottom:544.466667pt;}
.ye9{bottom:552.506667pt;}
.yc5{bottom:553.506667pt;}
.y79{bottom:559.506667pt;}
.ye8{bottom:568.506667pt;}
.yc4{bottom:572.506667pt;}
.y78{bottom:575.506667pt;}
.ye7{bottom:584.506667pt;}
.yc3{bottom:587.533333pt;}
.y77{bottom:590.533333pt;}
.yc2{bottom:600.533333pt;}
.y76{bottom:605.533333pt;}
.y112{bottom:609.533333pt;}
.yc1{bottom:616.533333pt;}
.y75{bottom:621.533333pt;}
.yc0{bottom:632.560000pt;}
.y114{bottom:635.560000pt;}
.y74{bottom:636.573333pt;}
.ybf{bottom:648.560000pt;}
.y73{bottom:651.573333pt;}
.ybe{bottom:664.600000pt;}
.y72{bottom:667.600000pt;}
.ybd{bottom:680.600000pt;}
.y111{bottom:681.600000pt;}
.y71{bottom:682.600000pt;}
.ybc{bottom:696.600000pt;}
.y70{bottom:697.600000pt;}
.y110{bottom:709.626667pt;}
.ybb{bottom:712.626667pt;}
.y1b{bottom:713.626667pt;}
.y6f{bottom:728.626667pt;}
.yb9{bottom:728.640000pt;}
.y10e{bottom:735.666667pt;}
.y10{bottom:739.666667pt;}
.y6e{bottom:743.666667pt;}
.yb8{bottom:744.666667pt;}
.y6d{bottom:759.666667pt;}
.y10f{bottom:762.666667pt;}
.yb7{bottom:763.666667pt;}
.y6c{bottom:774.706667pt;}
.yb6{bottom:779.706667pt;}
.y108{bottom:789.693333pt;}
.y6b{bottom:789.706667pt;}
.ye5{bottom:791.693333pt;}
.yb5{bottom:791.706667pt;}
.y6a{bottom:805.706667pt;}
.yb4{bottom:807.693333pt;}
.y10a{bottom:815.733333pt;}
.y69{bottom:820.733333pt;}
.yb3{bottom:823.733333pt;}
.y68{bottom:835.733333pt;}
.yb2{bottom:839.733333pt;}
.y67{bottom:851.773333pt;}
.yb1{bottom:855.773333pt;}
.y66{bottom:866.773333pt;}
.yaf{bottom:871.760000pt;}
.y65{bottom:881.773333pt;}
.y106{bottom:883.800000pt;}
.yae{bottom:887.800000pt;}
.y64{bottom:897.800000pt;}
.yad{bottom:903.800000pt;}
.ye4{bottom:907.800000pt;}
.y107{bottom:910.800000pt;}
.y63{bottom:912.800000pt;}
.yac{bottom:919.800000pt;}
.ye3{bottom:922.840000pt;}
.y62{bottom:927.840000pt;}
.ye{bottom:928.840000pt;}
.yab{bottom:935.840000pt;}
.y61{bottom:943.840000pt;}
.y6{bottom:951.840000pt;}
.yaa{bottom:955.840000pt;}
.y60{bottom:958.866667pt;}
.ye2{bottom:967.866667pt;}
.ya9{bottom:970.866667pt;}
.y5f{bottom:973.866667pt;}
.ya8{bottom:983.866667pt;}
.y5e{bottom:989.866667pt;}
.y102{bottom:993.866667pt;}
.ya7{bottom:999.893333pt;}
.y5d{bottom:1004.893333pt;}
.ya6{bottom:1015.893333pt;}
.y5c{bottom:1019.893333pt;}
.y104{bottom:1020.893333pt;}
.ya5{bottom:1031.933333pt;}
.y5b{bottom:1035.933333pt;}
.y5a{bottom:1050.933333pt;}
.h1a{height:15.000000pt;}
.h1f{height:15.020000pt;}
.h1b{height:15.033333pt;}
.h1e{height:15.986667pt;}
.h1d{height:16.000000pt;}
.h1c{height:16.033333pt;}
.h20{height:18.033333pt;}
.hb{height:23.000000pt;}
.h29{height:26.000000pt;}
.h11{height:26.033333pt;}
.h10{height:26.625000pt;}
.h2{height:29.033333pt;}
.h19{height:32.000000pt;}
.h16{height:35.406250pt;}
.h18{height:36.308594pt;}
.h17{height:36.689453pt;}
.h15{height:36.791016pt;}
.h36{height:37.857422pt;}
.hd{height:38.289062pt;}
.h4{height:38.625000pt;}
.h2a{height:41.033333pt;}
.h14{height:41.843750pt;}
.h30{height:42.033333pt;}
.h13{height:43.763672pt;}
.h8{height:45.052734pt;}
.h21{height:46.033333pt;}
.h3{height:49.148438pt;}
.ha{height:51.720703pt;}
.h35{height:52.066667pt;}
.h2f{height:53.033333pt;}
.h24{height:53.066667pt;}
.hf{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h9{height:65.531250pt;}
.h28{height:68.033333pt;}
.h2e{height:68.066667pt;}
.h27{height:83.066667pt;}
.h34{height:93.066667pt;}
.h2d{height:94.100000pt;}
.h22{height:95.066667pt;}
.h23{height:96.100000pt;}
.h32{height:109.100000pt;}
.h2c{height:110.066667pt;}
.h26{height:110.100000pt;}
.h7{height:111.100000pt;}
.h33{height:120.100000pt;}
.hc{height:189.173333pt;}
.h2b{height:204.173333pt;}
.h25{height:220.200000pt;}
.h31{height:230.200000pt;}
.h12{height:353.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w24{width:55.066667pt;}
.w2d{width:56.066667pt;}
.w18{width:59.100000pt;}
.w2{width:65.100000pt;}
.w1b{width:76.100000pt;}
.w29{width:78.100000pt;}
.w12{width:85.100000pt;}
.w2c{width:95.100000pt;}
.w15{width:103.133333pt;}
.w23{width:111.133333pt;}
.w2b{width:112.166667pt;}
.w25{width:115.166667pt;}
.w1c{width:120.166667pt;}
.w2a{width:122.133333pt;}
.w1a{width:128.166667pt;}
.w11{width:129.166667pt;}
.w4{width:135.160000pt;}
.w22{width:139.200000pt;}
.w21{width:151.160000pt;}
.w2e{width:152.200000pt;}
.w1d{width:162.200000pt;}
.w26{width:166.200000pt;}
.w19{width:177.200000pt;}
.w7{width:199.240000pt;}
.w10{width:199.266667pt;}
.wb{width:202.266667pt;}
.wd{width:203.266667pt;}
.we{width:214.266667pt;}
.w9{width:215.266667pt;}
.w14{width:216.266667pt;}
.wc{width:229.293333pt;}
.wa{width:232.293333pt;}
.w13{width:233.306667pt;}
.wf{width:234.293333pt;}
.w28{width:235.306667pt;}
.w1f{width:281.360000pt;}
.w16{width:283.360000pt;}
.w20{width:290.360000pt;}
.w17{width:305.360000pt;}
.w27{width:330.400000pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w2f{width:645.840000pt;}
.w1e{width:648.840000pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:6.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x33{left:10.000000pt;}
.x15{left:11.026667pt;}
.xe{left:13.000000pt;}
.x11{left:38.033333pt;}
.x1{left:72.100000pt;}
.x5{left:73.100000pt;}
.x10{left:93.100000pt;}
.x39{left:96.133322pt;}
.x12{left:104.140000pt;}
.x3a{left:144.199988pt;}
.x2a{left:159.200000pt;}
.x36{left:169.240000pt;}
.x2f{left:184.240000pt;}
.x22{left:185.239988pt;}
.x31{left:189.239988pt;}
.x13{left:190.233333pt;}
.x26{left:192.226655pt;}
.x25{left:194.239988pt;}
.x23{left:203.266667pt;}
.x24{left:204.266655pt;}
.x6{left:207.266667pt;}
.x2b{left:212.266655pt;}
.x21{left:219.266655pt;}
.x37{left:226.306667pt;}
.x20{left:228.293322pt;}
.x1d{left:236.306655pt;}
.x30{left:239.306667pt;}
.xf{left:242.300000pt;}
.x1f{left:249.333322pt;}
.x1b{left:250.333322pt;}
.x9{left:253.333333pt;}
.x1e{left:255.333322pt;}
.x16{left:256.333322pt;}
.x19{left:257.333322pt;}
.x14{left:271.333333pt;}
.xd{left:285.366667pt;}
.x7{left:287.373333pt;}
.x17{left:288.373333pt;}
.x8{left:306.400000pt;}
.xb{left:310.400000pt;}
.xc{left:324.406667pt;}
.x2c{left:354.466667pt;}
.x27{left:357.466667pt;}
.xa{left:383.506667pt;}
.x32{left:404.533333pt;}
.x2e{left:505.640000pt;}
.x1a{left:518.666667pt;}
.x18{left:520.666667pt;}
.x1c{left:522.666667pt;}
.x35{left:527.666667pt;}
.x29{left:534.666667pt;}
.x34{left:640.840000pt;}
.x2d{left:645.840000pt;}
.x3{left:657.840000pt;}
.x28{left:662.840000pt;}
}




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