
    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_c725013000e0ae58884ed0d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_817d4edd10418ba47aaf59c6.woff2')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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_578bb377733db7f1e26a3dd5.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_924008b33cffbc49ab47903c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f42f8fe3a17dd0e34f36c969.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_17bdda515f1c45ae9625be96.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_8a6a418a2e10ddc6be34faa8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_fb3e91186f3fa780aec03984.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060059;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_0b18c9001a70f2714484d57c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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_59c3bf8ddc0dd7082b5c8463.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.977539;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_bf6746b90d7c359d31cb73f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.049805;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_9ecac84c3f2a80c4f135c2d8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1f9cc6ffaccf8888f9166b43.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-2.394000px;}
.ls1a{letter-spacing:-1.194000px;}
.ls1e{letter-spacing:-1.104000px;}
.ls23{letter-spacing:-1.014000px;}
.ls25{letter-spacing:-0.954000px;}
.ls12{letter-spacing:-0.918000px;}
.ls1f{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.478200px;}
.ls24{letter-spacing:-0.294000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.197400px;}
.ls6{letter-spacing:-0.190200px;}
.ls5{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.172800px;}
.ls13{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.140400px;}
.lsc{letter-spacing:-0.085200px;}
.ls18{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012960px;}
.ls1b{letter-spacing:0.072000px;}
.lse{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.244200px;}
.ls1c{letter-spacing:0.333600px;}
.ls3{letter-spacing:0.334080px;}
.ls22{letter-spacing:0.426000px;}
.ls17{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.522600px;}
.ls1{letter-spacing:0.709200px;}
.ls20{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.864000px;}
.lsd{letter-spacing:1.344000px;}
.lsf{letter-spacing:2.064000px;}
.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;}
}
.ws1d{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.532800px;}
.ws1c{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.342600px;}
.ws11{word-spacing:-18.216000px;}
.ws16{word-spacing:-18.144000px;}
.ws20{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.856000px;}
.ws19{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.712000px;}
.ws3{word-spacing:-14.935680px;}
.ws4{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.447440px;}
.ws0{word-spacing:-11.700000px;}
.wsd{word-spacing:-11.519040px;}
.wsb{word-spacing:-10.799040px;}
.ws6{word-spacing:-10.612800px;}
.wsa{word-spacing:-10.527600px;}
.ws9{word-spacing:-10.472400px;}
.ws7{word-spacing:-10.134600px;}
.wse{word-spacing:-9.977640px;}
.ws1a{word-spacing:-9.881040px;}
.ws17{word-spacing:-9.788640px;}
.ws14{word-spacing:-9.699240px;}
.ws12{word-spacing:-9.257640px;}
.ws1e{word-spacing:-9.161040px;}
.wsf{word-spacing:-8.537040px;}
.ws21{word-spacing:-8.501040px;}
.ws1b{word-spacing:-8.441040px;}
.ws18{word-spacing:-8.351040px;}
.ws15{word-spacing:-8.261040px;}
.ws22{word-spacing:-7.061040px;}
.ws8{word-spacing:0.000000px;}
._16{margin-left:-2.033280px;}
._0{margin-left:-1.026000px;}
._1{width:1.356000px;}
._c{width:2.583360px;}
._6{width:3.775680px;}
._9{width:5.217840px;}
._3{width:6.417360px;}
._2{width:7.680960px;}
._e{width:8.940960px;}
._d{width:10.167120px;}
._14{width:11.465760px;}
._8{width:12.651840px;}
._f{width:13.910400px;}
._10{width:15.003840px;}
._18{width:16.344000px;}
._7{width:17.884800px;}
._12{width:19.474560px;}
._4{width:20.891520px;}
._5{width:21.917520px;}
._11{width:23.216400px;}
._19{width:24.696000px;}
._b{width:25.999920px;}
._a{width:27.058320px;}
._15{width:28.416000px;}
._1c{width:29.460000px;}
._1a{width:30.528000px;}
._1b{width:31.848000px;}
._25{width:33.180000px;}
._24{width:34.704000px;}
._23{width:35.874000px;}
._26{width:37.206000px;}
._17{width:39.096000px;}
._27{width:40.260000px;}
._2b{width:41.328000px;}
._28{width:42.480000px;}
._29{width:43.716000px;}
._2a{width:44.862000px;}
._22{width:45.864000px;}
._1f{width:47.393280px;}
._1e{width:48.528000px;}
._1d{width:49.673280px;}
._2e{width:50.778000px;}
._2c{width:51.840000px;}
._2d{width:52.860000px;}
._20{width:54.576000px;}
._21{width:56.232000px;}
._13{width:943.530240px;}
.fc7{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc1{color:rgb(238,78,60);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(38,38,38);}
.fc3{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs2{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.y39{bottom:-7.920000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:2.490000px;}
.y3d{bottom:3.030000px;}
.y3{bottom:4.500000px;}
.y3f{bottom:5.220000px;}
.y6e{bottom:5.940000px;}
.y9e{bottom:6.120000px;}
.yd5{bottom:14.220000px;}
.y115{bottom:14.940000px;}
.y118{bottom:15.120000px;}
.ya6{bottom:15.840000px;}
.y6d{bottom:16.200000px;}
.y19b{bottom:16.560000px;}
.y109{bottom:18.180000px;}
.yab{bottom:19.080000px;}
.y120{bottom:19.800000px;}
.y44{bottom:22.680000px;}
.y2{bottom:23.220000px;}
.y40{bottom:38.160000px;}
.y1{bottom:39.060000px;}
.y36{bottom:39.960000px;}
.y34{bottom:100.230000px;}
.y32{bottom:111.780000px;}
.y16e{bottom:115.020000px;}
.y11f{bottom:117.540000px;}
.y31{bottom:119.340000px;}
.y9a{bottom:120.420000px;}
.y114{bottom:120.600000px;}
.ya5{bottom:123.120000px;}
.ybf{bottom:126.000000px;}
.yf9{bottom:128.880000px;}
.y1bd{bottom:130.500000px;}
.y168{bottom:133.200000px;}
.y30{bottom:135.000000px;}
.y11e{bottom:141.480000px;}
.y99{bottom:144.180000px;}
.yc8{bottom:144.360000px;}
.ya4{bottom:147.060000px;}
.y136{bottom:148.680000px;}
.ybe{bottom:149.760000px;}
.yf8{bottom:152.640000px;}
.y181{bottom:154.260000px;}
.y2f{bottom:155.700000px;}
.y167{bottom:156.780000px;}
.y19a{bottom:156.960000px;}
.y16d{bottom:159.840000px;}
.y11d{bottom:165.240000px;}
.y98{bottom:167.940000px;}
.y6c{bottom:168.120000px;}
.yc5{bottom:170.820000px;}
.y135{bottom:172.260000px;}
.ybd{bottom:173.520000px;}
.y1bc{bottom:175.140000px;}
.y2e{bottom:176.040000px;}
.y180{bottom:177.840000px;}
.y199{bottom:180.720000px;}
.y14f{bottom:180.900000px;}
.y11c{bottom:189.000000px;}
.y10c{bottom:189.180000px;}
.y6b{bottom:191.880000px;}
.ya3{bottom:192.060000px;}
.yd2{bottom:194.580000px;}
.y134{bottom:196.020000px;}
.y2d{bottom:196.200000px;}
.y102{bottom:197.460000px;}
.yf7{bottom:197.640000px;}
.y1bb{bottom:198.900000px;}
.y17f{bottom:201.600000px;}
.y166{bottom:201.780000px;}
.y14e{bottom:204.480000px;}
.y16c{bottom:204.660000px;}
.y10b{bottom:212.790000px;}
.y97{bottom:212.970000px;}
.y2c{bottom:214.230000px;}
.y6a{bottom:215.670000px;}
.yc4{bottom:215.850000px;}
.yd1{bottom:218.370000px;}
.ybc{bottom:218.550000px;}
.yf6{bottom:221.250000px;}
.y165{bottom:225.390000px;}
.y198{bottom:225.570000px;}
.y2b{bottom:232.590000px;}
.y96{bottom:236.550000px;}
.y69{bottom:239.430000px;}
.yd4{bottom:239.610000px;}
.y133{bottom:241.050000px;}
.ybb{bottom:242.310000px;}
.y1ba{bottom:243.930000px;}
.yf5{bottom:245.010000px;}
.y17e{bottom:246.630000px;}
.y197{bottom:249.330000px;}
.y14d{bottom:249.510000px;}
.y95{bottom:260.490000px;}
.ya0{bottom:260.670000px;}
.y68{bottom:263.190000px;}
.y2a{bottom:263.370000px;}
.y132{bottom:264.630000px;}
.yba{bottom:266.070000px;}
.y1b9{bottom:267.510000px;}
.yf4{bottom:268.770000px;}
.y17d{bottom:270.210000px;}
.y164{bottom:270.390000px;}
.y196{bottom:273.090000px;}
.y94{bottom:284.250000px;}
.y10e{bottom:284.430000px;}
.y67{bottom:287.130000px;}
.yfa{bottom:287.310000px;}
.y29{bottom:288.390000px;}
.yb9{bottom:289.830000px;}
.y101{bottom:290.010000px;}
.y1b8{bottom:291.270000px;}
.y1af{bottom:291.450000px;}
.yf3{bottom:292.710000px;}
.y163{bottom:294.150000px;}
.y14c{bottom:294.330000px;}
.y93{bottom:308.010000px;}
.y10f{bottom:308.190000px;}
.y28{bottom:309.450000px;}
.y131{bottom:309.630000px;}
.y66{bottom:310.890000px;}
.yd0{bottom:311.070000px;}
.yb8{bottom:313.590000px;}
.y1b7{bottom:315.030000px;}
.y17c{bottom:315.210000px;}
.yf2{bottom:316.470000px;}
.y14b{bottom:317.910000px;}
.y195{bottom:318.090000px;}
.y27{bottom:331.410000px;}
.y92{bottom:331.770000px;}
.y110{bottom:331.950000px;}
.y130{bottom:333.210000px;}
.y65{bottom:334.650000px;}
.y1ae{bottom:336.270000px;}
.yb7{bottom:337.530000px;}
.y17b{bottom:338.970000px;}
.y162{bottom:339.150000px;}
.yf1{bottom:340.230000px;}
.y194{bottom:341.670000px;}
.y26{bottom:353.190000px;}
.y91{bottom:355.710000px;}
.y12f{bottom:357.150000px;}
.y64{bottom:358.410000px;}
.yd6{bottom:358.590000px;}
.y1ad{bottom:359.850000px;}
.y1b6{bottom:360.030000px;}
.yb6{bottom:361.290000px;}
.y161{bottom:362.730000px;}
.y14a{bottom:362.910000px;}
.yf0{bottom:363.990000px;}
.y25{bottom:374.970000px;}
.y90{bottom:379.470000px;}
.yc1{bottom:379.650000px;}
.y63{bottom:382.350000px;}
.y105{bottom:382.530000px;}
.y1b5{bottom:383.610000px;}
.y17a{bottom:383.790000px;}
.yb5{bottom:385.050000px;}
.y149{bottom:386.490000px;}
.y193{bottom:386.670000px;}
.yef{bottom:387.930000px;}
.y24{bottom:396.750000px;}
.y12e{bottom:402.150000px;}
.y8f{bottom:403.230000px;}
.yaa{bottom:403.410000px;}
.y1ac{bottom:404.850000px;}
.y62{bottom:406.110000px;}
.yfd{bottom:406.290000px;}
.y179{bottom:407.550000px;}
.y160{bottom:407.730000px;}
.yb4{bottom:408.810000px;}
.y192{bottom:410.250000px;}
.yee{bottom:411.690000px;}
.y23{bottom:418.530000px;}
.y12d{bottom:425.730000px;}
.y8e{bottom:426.990000px;}
.ya8{bottom:427.170000px;}
.y1ab{bottom:428.430000px;}
.y1b4{bottom:428.610000px;}
.y61{bottom:429.870000px;}
.y15f{bottom:431.310000px;}
.y148{bottom:431.490000px;}
.yb3{bottom:432.750000px;}
.yed{bottom:435.450000px;}
.y22{bottom:440.490000px;}
.y8d{bottom:450.975000px;}
.y111{bottom:451.155000px;}
.y1b3{bottom:452.415000px;}
.y178{bottom:452.595000px;}
.y60{bottom:453.675000px;}
.y147{bottom:455.115000px;}
.y191{bottom:455.295000px;}
.yb2{bottom:456.555000px;}
.y21{bottom:462.315000px;}
.y12c{bottom:470.775000px;}
.y1aa{bottom:473.475000px;}
.y8c{bottom:474.735000px;}
.y113{bottom:474.915000px;}
.y177{bottom:476.175000px;}
.y15e{bottom:476.355000px;}
.y5f{bottom:477.435000px;}
.y190{bottom:478.875000px;}
.yb1{bottom:480.315000px;}
.yec{bottom:480.495000px;}
.y1be{bottom:481.935000px;}
.y20{bottom:484.095000px;}
.y12b{bottom:494.355000px;}
.y1a9{bottom:497.055000px;}
.y1b2{bottom:497.235000px;}
.y8b{bottom:498.495000px;}
.y15d{bottom:499.935000px;}
.y146{bottom:500.115000px;}
.y5e{bottom:501.375000px;}
.yb0{bottom:504.075000px;}
.y1f{bottom:505.875000px;}
.y1b1{bottom:520.995000px;}
.y176{bottom:521.175000px;}
.y8a{bottom:522.255000px;}
.y145{bottom:523.695000px;}
.y18f{bottom:523.875000px;}
.y117{bottom:524.955000px;}
.y5d{bottom:525.135000px;}
.y1e{bottom:527.835000px;}
.yaf{bottom:528.015000px;}
.y12a{bottom:539.355000px;}
.y1a8{bottom:542.055000px;}
.y175{bottom:544.755000px;}
.y15c{bottom:544.935000px;}
.y89{bottom:546.195000px;}
.ya2{bottom:546.375000px;}
.y18e{bottom:547.635000px;}
.y5c{bottom:548.895000px;}
.y1d{bottom:549.615000px;}
.yeb{bottom:551.775000px;}
.y129{bottom:562.935000px;}
.y1a7{bottom:565.815000px;}
.y1b0{bottom:565.995000px;}
.y15b{bottom:568.515000px;}
.y144{bottom:568.695000px;}
.y88{bottom:569.955000px;}
.y9d{bottom:570.135000px;}
.y1c{bottom:571.395000px;}
.yae{bottom:572.475000px;}
.y5b{bottom:572.655000px;}
.yea{bottom:575.535000px;}
.y1a6{bottom:589.575000px;}
.y174{bottom:589.755000px;}
.y143{bottom:592.275000px;}
.y1b{bottom:593.175000px;}
.y87{bottom:593.715000px;}
.yc7{bottom:593.895000px;}
.y5a{bottom:596.595000px;}
.y100{bottom:596.775000px;}
.ye9{bottom:599.295000px;}
.y128{bottom:607.935000px;}
.y173{bottom:613.335000px;}
.y15a{bottom:613.515000px;}
.y1a{bottom:614.955000px;}
.y18d{bottom:616.395000px;}
.y86{bottom:617.475000px;}
.yad{bottom:617.655000px;}
.y59{bottom:620.355000px;}
.ye8{bottom:623.055000px;}
.y127{bottom:631.515000px;}
.y1a5{bottom:634.575000px;}
.y19{bottom:636.915000px;}
.y159{bottom:637.095000px;}
.y142{bottom:637.275000px;}
.y11b{bottom:638.715000px;}
.y18c{bottom:639.975000px;}
.y85{bottom:641.415000px;}
.yc3{bottom:641.595000px;}
.ycf{bottom:644.115000px;}
.ye7{bottom:646.995000px;}
.y1a4{bottom:658.155000px;}
.y172{bottom:658.335000px;}
.y18{bottom:658.695000px;}
.y16b{bottom:661.035000px;}
.y11a{bottom:662.295000px;}
.y9c{bottom:665.175000px;}
.y58{bottom:665.355000px;}
.yce{bottom:667.875000px;}
.ye6{bottom:670.755000px;}
.y126{bottom:676.545000px;}
.y17{bottom:680.505000px;}
.y171{bottom:681.945000px;}
.y141{bottom:682.125000px;}
.y18b{bottom:685.005000px;}
.y119{bottom:686.085000px;}
.y84{bottom:686.265000px;}
.y57{bottom:688.965000px;}
.yfc{bottom:689.145000px;}
.ycd{bottom:691.845000px;}
.ye5{bottom:694.545000px;}
.y125{bottom:700.125000px;}
.y1a3{bottom:703.185000px;}
.y140{bottom:705.705000px;}
.y16a{bottom:705.885000px;}
.y83{bottom:710.025000px;}
.y16{bottom:711.465000px;}
.y56{bottom:712.725000px;}
.y104{bottom:712.905000px;}
.ycc{bottom:715.605000px;}
.ye4{bottom:718.305000px;}
.y158{bottom:726.945000px;}
.y18a{bottom:729.825000px;}
.y15{bottom:732.885000px;}
.y82{bottom:733.785000px;}
.y10d{bottom:733.965000px;}
.y55{bottom:736.665000px;}
.y108{bottom:739.185000px;}
.ycb{bottom:739.365000px;}
.ye3{bottom:742.245000px;}
.y124{bottom:745.125000px;}
.y1a2{bottom:748.005000px;}
.y170{bottom:750.525000px;}
.y13f{bottom:750.705000px;}
.y189{bottom:753.405000px;}
.y81{bottom:757.545000px;}
.y9f{bottom:757.725000px;}
.y14{bottom:759.705000px;}
.y54{bottom:760.425000px;}
.y116{bottom:760.605000px;}
.yca{bottom:763.125000px;}
.y1a1{bottom:771.585000px;}
.y157{bottom:771.765000px;}
.y13e{bottom:774.465000px;}
.y13{bottom:780.765000px;}
.y80{bottom:781.305000px;}
.y10a{bottom:781.485000px;}
.y53{bottom:784.185000px;}
.y107{bottom:784.365000px;}
.yff{bottom:787.065000px;}
.ye2{bottom:787.245000px;}
.y123{bottom:789.945000px;}
.y156{bottom:795.345000px;}
.y169{bottom:795.525000px;}
.y188{bottom:798.405000px;}
.y11{bottom:801.825000px;}
.y7f{bottom:805.245000px;}
.ya7{bottom:805.425000px;}
.y52{bottom:807.945000px;}
.yc9{bottom:808.125000px;}
.y12{bottom:809.385000px;}
.ye1{bottom:810.825000px;}
.y1a0{bottom:816.585000px;}
.y10{bottom:819.285000px;}
.y13d{bottom:819.465000px;}
.y187{bottom:821.985000px;}
.y7e{bottom:829.005000px;}
.yc0{bottom:829.185000px;}
.y51{bottom:831.705000px;}
.y122{bottom:834.405000px;}
.ye0{bottom:834.585000px;}
.y19f{bottom:840.165000px;}
.y155{bottom:840.345000px;}
.yf{bottom:847.005000px;}
.y7d{bottom:852.765000px;}
.ya1{bottom:852.945000px;}
.y50{bottom:855.645000px;}
.ydf{bottom:858.345000px;}
.y154{bottom:863.925000px;}
.y13c{bottom:864.105000px;}
.ye{bottom:865.725000px;}
.y186{bottom:866.985000px;}
.y7c{bottom:876.525000px;}
.y4f{bottom:879.405000px;}
.y121{bottom:879.585000px;}
.yd{bottom:881.385000px;}
.yde{bottom:882.285000px;}
.y19e{bottom:885.165000px;}
.y13b{bottom:887.865000px;}
.yc{bottom:894.165000px;}
.y7b{bottom:900.465000px;}
.yd3{bottom:900.645000px;}
.y112{bottom:902.985000px;}
.y4e{bottom:903.165000px;}
.yfe{bottom:903.345000px;}
.ydd{bottom:906.045000px;}
.y19d{bottom:908.745000px;}
.y153{bottom:908.925000px;}
.y185{bottom:911.850000px;}
.yb{bottom:922.470000px;}
.y7a{bottom:924.270000px;}
.y9b{bottom:924.450000px;}
.y4d{bottom:926.970000px;}
.ydc{bottom:929.850000px;}
.y152{bottom:932.730000px;}
.y13a{bottom:932.910000px;}
.y184{bottom:935.430000px;}
.y79{bottom:948.030000px;}
.yc6{bottom:948.210000px;}
.ya{bottom:950.730000px;}
.y4c{bottom:950.910000px;}
.ydb{bottom:953.610000px;}
.y19c{bottom:953.790000px;}
.y139{bottom:956.490000px;}
.y78{bottom:971.790000px;}
.yfb{bottom:971.970000px;}
.y9{bottom:974.130000px;}
.y4b{bottom:974.670000px;}
.yda{bottom:977.370000px;}
.y151{bottom:977.550000px;}
.y183{bottom:980.430000px;}
.y3e{bottom:988.200000px;}
.y3a{bottom:988.920000px;}
.y3c{bottom:990.000000px;}
.y8{bottom:993.390000px;}
.y77{bottom:995.730000px;}
.yc2{bottom:995.910000px;}
.y4a{bottom:998.430000px;}
.yd9{bottom:1001.310000px;}
.y138{bottom:1001.490000px;}
.y33{bottom:1011.780000px;}
.y76{bottom:1019.490000px;}
.y103{bottom:1019.670000px;}
.y49{bottom:1022.190000px;}
.y150{bottom:1022.370000px;}
.yd8{bottom:1025.070000px;}
.y182{bottom:1025.250000px;}
.y7{bottom:1027.590000px;}
.y75{bottom:1043.250000px;}
.y48{bottom:1046.130000px;}
.y16f{bottom:1046.310000px;}
.y6{bottom:1062.870000px;}
.y74{bottom:1067.010000px;}
.ya9{bottom:1067.190000px;}
.yd7{bottom:1069.710000px;}
.y47{bottom:1069.890000px;}
.y137{bottom:1070.070000px;}
.y73{bottom:1090.950000px;}
.y106{bottom:1091.130000px;}
.y46{bottom:1093.650000px;}
.y5{bottom:1101.030000px;}
.y72{bottom:1114.710000px;}
.yac{bottom:1114.890000px;}
.y45{bottom:1138.290000px;}
.y71{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y43{bottom:1169.460000px;}
.y70{bottom:1180.440000px;}
.y42{bottom:1183.500000px;}
.y6f{bottom:1196.280000px;}
.y41{bottom:1197.540000px;}
.y35{bottom:1207.980000px;}
.y38{bottom:1219.680000px;}
.y37{bottom:1233.900000px;}
.h1a{height:13.860000px;}
.h1b{height:14.400000px;}
.h8{height:17.666016px;}
.h1e{height:18.000000px;}
.h20{height:18.180000px;}
.h18{height:35.357344px;}
.h6{height:36.281250px;}
.h1f{height:38.464805px;}
.h5{height:38.469727px;}
.h14{height:38.671172px;}
.he{height:39.810234px;}
.h1c{height:40.843828px;}
.h17{height:42.086250px;}
.h2{height:45.720703px;}
.h16{height:49.680000px;}
.h13{height:50.597578px;}
.h4{height:53.709961px;}
.hf{height:59.439023px;}
.h9{height:60.226875px;}
.hc{height:61.189805px;}
.h12{height:62.184375px;}
.h11{height:65.010937px;}
.h10{height:65.837812px;}
.h3{height:65.884219px;}
.h19{height:66.757500px;}
.hb{height:67.824844px;}
.ha{height:70.664062px;}
.h7{height:71.324297px;}
.h1d{height:72.562500px;}
.h15{height:116.100000px;}
.hd{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:77.400000px;}
.wa{width:77.580000px;}
.w8{width:99.000000px;}
.w4{width:115.740000px;}
.w7{width:153.180000px;}
.w5{width:178.200000px;}
.w6{width:262.260000px;}
.w3{width:671.220000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:10.836000px;}
.x11{left:14.760000px;}
.x10{left:57.780000px;}
.x3{left:108.036000px;}
.x1{left:110.196000px;}
.xe{left:112.896000px;}
.x15{left:126.216000px;}
.x4{left:132.696000px;}
.x26{left:166.890000px;}
.x1a{left:201.090000px;}
.x2{left:207.210000px;}
.x18{left:210.810000px;}
.x16{left:212.430000px;}
.xb{left:220.890000px;}
.xc{left:295.995000px;}
.xd{left:324.075000px;}
.x12{left:328.680000px;}
.x8{left:387.435000px;}
.x6{left:402.555000px;}
.x5{left:446.475000px;}
.x9{left:500.683125px;}
.xa{left:505.545000px;}
.x17{left:560.445000px;}
.x13{left:638.820000px;}
.x28{left:698.220000px;}
.x21{left:716.040000px;}
.x24{left:717.660000px;}
.x22{left:719.280000px;}
.x1b{left:720.900000px;}
.x25{left:722.340000px;}
.x1d{left:723.960000px;}
.x1c{left:725.760000px;}
.x1f{left:727.200000px;}
.x23{left:729.000000px;}
.x27{left:730.440000px;}
.x1e{left:732.240000px;}
.x19{left:733.500000px;}
.x20{left:736.920000px;}
.x7{left:785.130000px;}
.x14{left:793.980000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-2.128000pt;}
.ls1a{letter-spacing:-1.061333pt;}
.ls1e{letter-spacing:-0.981333pt;}
.ls23{letter-spacing:-0.901333pt;}
.ls25{letter-spacing:-0.848000pt;}
.ls12{letter-spacing:-0.816000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.425067pt;}
.ls24{letter-spacing:-0.261333pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.175467pt;}
.ls6{letter-spacing:-0.169067pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.153600pt;}
.ls13{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.124800pt;}
.lsc{letter-spacing:-0.075733pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011520pt;}
.ls1b{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.217067pt;}
.ls1c{letter-spacing:0.296533pt;}
.ls3{letter-spacing:0.296960pt;}
.ls22{letter-spacing:0.378667pt;}
.ls17{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.464533pt;}
.ls1{letter-spacing:0.630400pt;}
.ls20{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.768000pt;}
.lsd{letter-spacing:1.194667pt;}
.lsf{letter-spacing:1.834667pt;}
.ws1d{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.473600pt;}
.ws1c{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.304533pt;}
.ws11{word-spacing:-16.192000pt;}
.ws16{word-spacing:-16.128000pt;}
.ws20{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws19{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.276160pt;}
.ws4{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.953280pt;}
.ws0{word-spacing:-10.400000pt;}
.wsd{word-spacing:-10.239147pt;}
.wsb{word-spacing:-9.599147pt;}
.ws6{word-spacing:-9.433600pt;}
.wsa{word-spacing:-9.357867pt;}
.ws9{word-spacing:-9.308800pt;}
.ws7{word-spacing:-9.008533pt;}
.wse{word-spacing:-8.869013pt;}
.ws1a{word-spacing:-8.783147pt;}
.ws17{word-spacing:-8.701013pt;}
.ws14{word-spacing:-8.621547pt;}
.ws12{word-spacing:-8.229013pt;}
.ws1e{word-spacing:-8.143147pt;}
.wsf{word-spacing:-7.588480pt;}
.ws21{word-spacing:-7.556480pt;}
.ws1b{word-spacing:-7.503147pt;}
.ws18{word-spacing:-7.423147pt;}
.ws15{word-spacing:-7.343147pt;}
.ws22{word-spacing:-6.276480pt;}
.ws8{word-spacing:0.000000pt;}
._16{margin-left:-1.807360pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.205333pt;}
._c{width:2.296320pt;}
._6{width:3.356160pt;}
._9{width:4.638080pt;}
._3{width:5.704320pt;}
._2{width:6.827520pt;}
._e{width:7.947520pt;}
._d{width:9.037440pt;}
._14{width:10.191787pt;}
._8{width:11.246080pt;}
._f{width:12.364800pt;}
._10{width:13.336747pt;}
._18{width:14.528000pt;}
._7{width:15.897600pt;}
._12{width:17.310720pt;}
._4{width:18.570240pt;}
._5{width:19.482240pt;}
._11{width:20.636800pt;}
._19{width:21.952000pt;}
._b{width:23.111040pt;}
._a{width:24.051840pt;}
._15{width:25.258667pt;}
._1c{width:26.186667pt;}
._1a{width:27.136000pt;}
._1b{width:28.309333pt;}
._25{width:29.493333pt;}
._24{width:30.848000pt;}
._23{width:31.888000pt;}
._26{width:33.072000pt;}
._17{width:34.752000pt;}
._27{width:35.786667pt;}
._2b{width:36.736000pt;}
._28{width:37.760000pt;}
._29{width:38.858667pt;}
._2a{width:39.877333pt;}
._22{width:40.768000pt;}
._1f{width:42.127360pt;}
._1e{width:43.136000pt;}
._1d{width:44.154027pt;}
._2e{width:45.136000pt;}
._2c{width:46.080000pt;}
._2d{width:46.986667pt;}
._20{width:48.512000pt;}
._21{width:49.984000pt;}
._13{width:838.693547pt;}
.fs4{font-size:16.000000pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.y39{bottom:-7.040000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.213333pt;}
.y3d{bottom:2.693333pt;}
.y3{bottom:4.000000pt;}
.y3f{bottom:4.640000pt;}
.y6e{bottom:5.280000pt;}
.y9e{bottom:5.440000pt;}
.yd5{bottom:12.640000pt;}
.y115{bottom:13.280000pt;}
.y118{bottom:13.440000pt;}
.ya6{bottom:14.080000pt;}
.y6d{bottom:14.400000pt;}
.y19b{bottom:14.720000pt;}
.y109{bottom:16.160000pt;}
.yab{bottom:16.960000pt;}
.y120{bottom:17.600000pt;}
.y44{bottom:20.160000pt;}
.y2{bottom:20.640000pt;}
.y40{bottom:33.920000pt;}
.y1{bottom:34.720000pt;}
.y36{bottom:35.520000pt;}
.y34{bottom:89.093333pt;}
.y32{bottom:99.360000pt;}
.y16e{bottom:102.240000pt;}
.y11f{bottom:104.480000pt;}
.y31{bottom:106.080000pt;}
.y9a{bottom:107.040000pt;}
.y114{bottom:107.200000pt;}
.ya5{bottom:109.440000pt;}
.ybf{bottom:112.000000pt;}
.yf9{bottom:114.560000pt;}
.y1bd{bottom:116.000000pt;}
.y168{bottom:118.400000pt;}
.y30{bottom:120.000000pt;}
.y11e{bottom:125.760000pt;}
.y99{bottom:128.160000pt;}
.yc8{bottom:128.320000pt;}
.ya4{bottom:130.720000pt;}
.y136{bottom:132.160000pt;}
.ybe{bottom:133.120000pt;}
.yf8{bottom:135.680000pt;}
.y181{bottom:137.120000pt;}
.y2f{bottom:138.400000pt;}
.y167{bottom:139.360000pt;}
.y19a{bottom:139.520000pt;}
.y16d{bottom:142.080000pt;}
.y11d{bottom:146.880000pt;}
.y98{bottom:149.280000pt;}
.y6c{bottom:149.440000pt;}
.yc5{bottom:151.840000pt;}
.y135{bottom:153.120000pt;}
.ybd{bottom:154.240000pt;}
.y1bc{bottom:155.680000pt;}
.y2e{bottom:156.480000pt;}
.y180{bottom:158.080000pt;}
.y199{bottom:160.640000pt;}
.y14f{bottom:160.800000pt;}
.y11c{bottom:168.000000pt;}
.y10c{bottom:168.160000pt;}
.y6b{bottom:170.560000pt;}
.ya3{bottom:170.720000pt;}
.yd2{bottom:172.960000pt;}
.y134{bottom:174.240000pt;}
.y2d{bottom:174.400000pt;}
.y102{bottom:175.520000pt;}
.yf7{bottom:175.680000pt;}
.y1bb{bottom:176.800000pt;}
.y17f{bottom:179.200000pt;}
.y166{bottom:179.360000pt;}
.y14e{bottom:181.760000pt;}
.y16c{bottom:181.920000pt;}
.y10b{bottom:189.146667pt;}
.y97{bottom:189.306667pt;}
.y2c{bottom:190.426667pt;}
.y6a{bottom:191.706667pt;}
.yc4{bottom:191.866667pt;}
.yd1{bottom:194.106667pt;}
.ybc{bottom:194.266667pt;}
.yf6{bottom:196.666667pt;}
.y165{bottom:200.346667pt;}
.y198{bottom:200.506667pt;}
.y2b{bottom:206.746667pt;}
.y96{bottom:210.266667pt;}
.y69{bottom:212.826667pt;}
.yd4{bottom:212.986667pt;}
.y133{bottom:214.266667pt;}
.ybb{bottom:215.386667pt;}
.y1ba{bottom:216.826667pt;}
.yf5{bottom:217.786667pt;}
.y17e{bottom:219.226667pt;}
.y197{bottom:221.626667pt;}
.y14d{bottom:221.786667pt;}
.y95{bottom:231.546667pt;}
.ya0{bottom:231.706667pt;}
.y68{bottom:233.946667pt;}
.y2a{bottom:234.106667pt;}
.y132{bottom:235.226667pt;}
.yba{bottom:236.506667pt;}
.y1b9{bottom:237.786667pt;}
.yf4{bottom:238.906667pt;}
.y17d{bottom:240.186667pt;}
.y164{bottom:240.346667pt;}
.y196{bottom:242.746667pt;}
.y94{bottom:252.666667pt;}
.y10e{bottom:252.826667pt;}
.y67{bottom:255.226667pt;}
.yfa{bottom:255.386667pt;}
.y29{bottom:256.346667pt;}
.yb9{bottom:257.626667pt;}
.y101{bottom:257.786667pt;}
.y1b8{bottom:258.906667pt;}
.y1af{bottom:259.066667pt;}
.yf3{bottom:260.186667pt;}
.y163{bottom:261.466667pt;}
.y14c{bottom:261.626667pt;}
.y93{bottom:273.786667pt;}
.y10f{bottom:273.946667pt;}
.y28{bottom:275.066667pt;}
.y131{bottom:275.226667pt;}
.y66{bottom:276.346667pt;}
.yd0{bottom:276.506667pt;}
.yb8{bottom:278.746667pt;}
.y1b7{bottom:280.026667pt;}
.y17c{bottom:280.186667pt;}
.yf2{bottom:281.306667pt;}
.y14b{bottom:282.586667pt;}
.y195{bottom:282.746667pt;}
.y27{bottom:294.586667pt;}
.y92{bottom:294.906667pt;}
.y110{bottom:295.066667pt;}
.y130{bottom:296.186667pt;}
.y65{bottom:297.466667pt;}
.y1ae{bottom:298.906667pt;}
.yb7{bottom:300.026667pt;}
.y17b{bottom:301.306667pt;}
.y162{bottom:301.466667pt;}
.yf1{bottom:302.426667pt;}
.y194{bottom:303.706667pt;}
.y26{bottom:313.946667pt;}
.y91{bottom:316.186667pt;}
.y12f{bottom:317.466667pt;}
.y64{bottom:318.586667pt;}
.yd6{bottom:318.746667pt;}
.y1ad{bottom:319.866667pt;}
.y1b6{bottom:320.026667pt;}
.yb6{bottom:321.146667pt;}
.y161{bottom:322.426667pt;}
.y14a{bottom:322.586667pt;}
.yf0{bottom:323.546667pt;}
.y25{bottom:333.306667pt;}
.y90{bottom:337.306667pt;}
.yc1{bottom:337.466667pt;}
.y63{bottom:339.866667pt;}
.y105{bottom:340.026667pt;}
.y1b5{bottom:340.986667pt;}
.y17a{bottom:341.146667pt;}
.yb5{bottom:342.266667pt;}
.y149{bottom:343.546667pt;}
.y193{bottom:343.706667pt;}
.yef{bottom:344.826667pt;}
.y24{bottom:352.666667pt;}
.y12e{bottom:357.466667pt;}
.y8f{bottom:358.426667pt;}
.yaa{bottom:358.586667pt;}
.y1ac{bottom:359.866667pt;}
.y62{bottom:360.986667pt;}
.yfd{bottom:361.146667pt;}
.y179{bottom:362.266667pt;}
.y160{bottom:362.426667pt;}
.yb4{bottom:363.386667pt;}
.y192{bottom:364.666667pt;}
.yee{bottom:365.946667pt;}
.y23{bottom:372.026667pt;}
.y12d{bottom:378.426667pt;}
.y8e{bottom:379.546667pt;}
.ya8{bottom:379.706667pt;}
.y1ab{bottom:380.826667pt;}
.y1b4{bottom:380.986667pt;}
.y61{bottom:382.106667pt;}
.y15f{bottom:383.386667pt;}
.y148{bottom:383.546667pt;}
.yb3{bottom:384.666667pt;}
.yed{bottom:387.066667pt;}
.y22{bottom:391.546667pt;}
.y8d{bottom:400.866667pt;}
.y111{bottom:401.026667pt;}
.y1b3{bottom:402.146667pt;}
.y178{bottom:402.306667pt;}
.y60{bottom:403.266667pt;}
.y147{bottom:404.546667pt;}
.y191{bottom:404.706667pt;}
.yb2{bottom:405.826667pt;}
.y21{bottom:410.946667pt;}
.y12c{bottom:418.466667pt;}
.y1aa{bottom:420.866667pt;}
.y8c{bottom:421.986667pt;}
.y113{bottom:422.146667pt;}
.y177{bottom:423.266667pt;}
.y15e{bottom:423.426667pt;}
.y5f{bottom:424.386667pt;}
.y190{bottom:425.666667pt;}
.yb1{bottom:426.946667pt;}
.yec{bottom:427.106667pt;}
.y1be{bottom:428.386667pt;}
.y20{bottom:430.306667pt;}
.y12b{bottom:439.426667pt;}
.y1a9{bottom:441.826667pt;}
.y1b2{bottom:441.986667pt;}
.y8b{bottom:443.106667pt;}
.y15d{bottom:444.386667pt;}
.y146{bottom:444.546667pt;}
.y5e{bottom:445.666667pt;}
.yb0{bottom:448.066667pt;}
.y1f{bottom:449.666667pt;}
.y1b1{bottom:463.106667pt;}
.y176{bottom:463.266667pt;}
.y8a{bottom:464.226667pt;}
.y145{bottom:465.506667pt;}
.y18f{bottom:465.666667pt;}
.y117{bottom:466.626667pt;}
.y5d{bottom:466.786667pt;}
.y1e{bottom:469.186667pt;}
.yaf{bottom:469.346667pt;}
.y12a{bottom:479.426667pt;}
.y1a8{bottom:481.826667pt;}
.y175{bottom:484.226667pt;}
.y15c{bottom:484.386667pt;}
.y89{bottom:485.506667pt;}
.ya2{bottom:485.666667pt;}
.y18e{bottom:486.786667pt;}
.y5c{bottom:487.906667pt;}
.y1d{bottom:488.546667pt;}
.yeb{bottom:490.466667pt;}
.y129{bottom:500.386667pt;}
.y1a7{bottom:502.946667pt;}
.y1b0{bottom:503.106667pt;}
.y15b{bottom:505.346667pt;}
.y144{bottom:505.506667pt;}
.y88{bottom:506.626667pt;}
.y9d{bottom:506.786667pt;}
.y1c{bottom:507.906667pt;}
.yae{bottom:508.866667pt;}
.y5b{bottom:509.026667pt;}
.yea{bottom:511.586667pt;}
.y1a6{bottom:524.066667pt;}
.y174{bottom:524.226667pt;}
.y143{bottom:526.466667pt;}
.y1b{bottom:527.266667pt;}
.y87{bottom:527.746667pt;}
.yc7{bottom:527.906667pt;}
.y5a{bottom:530.306667pt;}
.y100{bottom:530.466667pt;}
.ye9{bottom:532.706667pt;}
.y128{bottom:540.386667pt;}
.y173{bottom:545.186667pt;}
.y15a{bottom:545.346667pt;}
.y1a{bottom:546.626667pt;}
.y18d{bottom:547.906667pt;}
.y86{bottom:548.866667pt;}
.yad{bottom:549.026667pt;}
.y59{bottom:551.426667pt;}
.ye8{bottom:553.826667pt;}
.y127{bottom:561.346667pt;}
.y1a5{bottom:564.066667pt;}
.y19{bottom:566.146667pt;}
.y159{bottom:566.306667pt;}
.y142{bottom:566.466667pt;}
.y11b{bottom:567.746667pt;}
.y18c{bottom:568.866667pt;}
.y85{bottom:570.146667pt;}
.yc3{bottom:570.306667pt;}
.ycf{bottom:572.546667pt;}
.ye7{bottom:575.106667pt;}
.y1a4{bottom:585.026667pt;}
.y172{bottom:585.186667pt;}
.y18{bottom:585.506667pt;}
.y16b{bottom:587.586667pt;}
.y11a{bottom:588.706667pt;}
.y9c{bottom:591.266667pt;}
.y58{bottom:591.426667pt;}
.yce{bottom:593.666667pt;}
.ye6{bottom:596.226667pt;}
.y126{bottom:601.373333pt;}
.y17{bottom:604.893333pt;}
.y171{bottom:606.173333pt;}
.y141{bottom:606.333333pt;}
.y18b{bottom:608.893333pt;}
.y119{bottom:609.853333pt;}
.y84{bottom:610.013333pt;}
.y57{bottom:612.413333pt;}
.yfc{bottom:612.573333pt;}
.ycd{bottom:614.973333pt;}
.ye5{bottom:617.373333pt;}
.y125{bottom:622.333333pt;}
.y1a3{bottom:625.053333pt;}
.y140{bottom:627.293333pt;}
.y16a{bottom:627.453333pt;}
.y83{bottom:631.133333pt;}
.y16{bottom:632.413333pt;}
.y56{bottom:633.533333pt;}
.y104{bottom:633.693333pt;}
.ycc{bottom:636.093333pt;}
.ye4{bottom:638.493333pt;}
.y158{bottom:646.173333pt;}
.y18a{bottom:648.733333pt;}
.y15{bottom:651.453333pt;}
.y82{bottom:652.253333pt;}
.y10d{bottom:652.413333pt;}
.y55{bottom:654.813333pt;}
.y108{bottom:657.053333pt;}
.ycb{bottom:657.213333pt;}
.ye3{bottom:659.773333pt;}
.y124{bottom:662.333333pt;}
.y1a2{bottom:664.893333pt;}
.y170{bottom:667.133333pt;}
.y13f{bottom:667.293333pt;}
.y189{bottom:669.693333pt;}
.y81{bottom:673.373333pt;}
.y9f{bottom:673.533333pt;}
.y14{bottom:675.293333pt;}
.y54{bottom:675.933333pt;}
.y116{bottom:676.093333pt;}
.yca{bottom:678.333333pt;}
.y1a1{bottom:685.853333pt;}
.y157{bottom:686.013333pt;}
.y13e{bottom:688.413333pt;}
.y13{bottom:694.013333pt;}
.y80{bottom:694.493333pt;}
.y10a{bottom:694.653333pt;}
.y53{bottom:697.053333pt;}
.y107{bottom:697.213333pt;}
.yff{bottom:699.613333pt;}
.ye2{bottom:699.773333pt;}
.y123{bottom:702.173333pt;}
.y156{bottom:706.973333pt;}
.y169{bottom:707.133333pt;}
.y188{bottom:709.693333pt;}
.y11{bottom:712.733333pt;}
.y7f{bottom:715.773333pt;}
.ya7{bottom:715.933333pt;}
.y52{bottom:718.173333pt;}
.yc9{bottom:718.333333pt;}
.y12{bottom:719.453333pt;}
.ye1{bottom:720.733333pt;}
.y1a0{bottom:725.853333pt;}
.y10{bottom:728.253333pt;}
.y13d{bottom:728.413333pt;}
.y187{bottom:730.653333pt;}
.y7e{bottom:736.893333pt;}
.yc0{bottom:737.053333pt;}
.y51{bottom:739.293333pt;}
.y122{bottom:741.693333pt;}
.ye0{bottom:741.853333pt;}
.y19f{bottom:746.813333pt;}
.y155{bottom:746.973333pt;}
.yf{bottom:752.893333pt;}
.y7d{bottom:758.013333pt;}
.ya1{bottom:758.173333pt;}
.y50{bottom:760.573333pt;}
.ydf{bottom:762.973333pt;}
.y154{bottom:767.933333pt;}
.y13c{bottom:768.093333pt;}
.ye{bottom:769.533333pt;}
.y186{bottom:770.653333pt;}
.y7c{bottom:779.133333pt;}
.y4f{bottom:781.693333pt;}
.y121{bottom:781.853333pt;}
.yd{bottom:783.453333pt;}
.yde{bottom:784.253333pt;}
.y19e{bottom:786.813333pt;}
.y13b{bottom:789.213333pt;}
.yc{bottom:794.813333pt;}
.y7b{bottom:800.413333pt;}
.yd3{bottom:800.573333pt;}
.y112{bottom:802.653333pt;}
.y4e{bottom:802.813333pt;}
.yfe{bottom:802.973333pt;}
.ydd{bottom:805.373333pt;}
.y19d{bottom:807.773333pt;}
.y153{bottom:807.933333pt;}
.y185{bottom:810.533333pt;}
.yb{bottom:819.973333pt;}
.y7a{bottom:821.573333pt;}
.y9b{bottom:821.733333pt;}
.y4d{bottom:823.973333pt;}
.ydc{bottom:826.533333pt;}
.y152{bottom:829.093333pt;}
.y13a{bottom:829.253333pt;}
.y184{bottom:831.493333pt;}
.y79{bottom:842.693333pt;}
.yc6{bottom:842.853333pt;}
.ya{bottom:845.093333pt;}
.y4c{bottom:845.253333pt;}
.ydb{bottom:847.653333pt;}
.y19c{bottom:847.813333pt;}
.y139{bottom:850.213333pt;}
.y78{bottom:863.813333pt;}
.yfb{bottom:863.973333pt;}
.y9{bottom:865.893333pt;}
.y4b{bottom:866.373333pt;}
.yda{bottom:868.773333pt;}
.y151{bottom:868.933333pt;}
.y183{bottom:871.493333pt;}
.y3e{bottom:878.400000pt;}
.y3a{bottom:879.040000pt;}
.y3c{bottom:880.000000pt;}
.y8{bottom:883.013333pt;}
.y77{bottom:885.093333pt;}
.yc2{bottom:885.253333pt;}
.y4a{bottom:887.493333pt;}
.yd9{bottom:890.053333pt;}
.y138{bottom:890.213333pt;}
.y33{bottom:899.360000pt;}
.y76{bottom:906.213333pt;}
.y103{bottom:906.373333pt;}
.y49{bottom:908.613333pt;}
.y150{bottom:908.773333pt;}
.yd8{bottom:911.173333pt;}
.y182{bottom:911.333333pt;}
.y7{bottom:913.413333pt;}
.y75{bottom:927.333333pt;}
.y48{bottom:929.893333pt;}
.y16f{bottom:930.053333pt;}
.y6{bottom:944.773333pt;}
.y74{bottom:948.453333pt;}
.ya9{bottom:948.613333pt;}
.yd7{bottom:950.853333pt;}
.y47{bottom:951.013333pt;}
.y137{bottom:951.173333pt;}
.y73{bottom:969.733333pt;}
.y106{bottom:969.893333pt;}
.y46{bottom:972.133333pt;}
.y5{bottom:978.693333pt;}
.y72{bottom:990.853333pt;}
.yac{bottom:991.013333pt;}
.y45{bottom:1011.813333pt;}
.y71{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y43{bottom:1039.520000pt;}
.y70{bottom:1049.280000pt;}
.y42{bottom:1052.000000pt;}
.y6f{bottom:1063.360000pt;}
.y41{bottom:1064.480000pt;}
.y35{bottom:1073.760000pt;}
.y38{bottom:1084.160000pt;}
.y37{bottom:1096.800000pt;}
.h1a{height:12.320000pt;}
.h1b{height:12.800000pt;}
.h8{height:15.703125pt;}
.h1e{height:16.000000pt;}
.h20{height:16.160000pt;}
.h18{height:31.428750pt;}
.h6{height:32.250000pt;}
.h1f{height:34.190937pt;}
.h5{height:34.195312pt;}
.h14{height:34.374375pt;}
.he{height:35.386875pt;}
.h1c{height:36.305625pt;}
.h17{height:37.410000pt;}
.h2{height:40.640625pt;}
.h16{height:44.160000pt;}
.h13{height:44.975625pt;}
.h4{height:47.742188pt;}
.hf{height:52.834688pt;}
.h9{height:53.535000pt;}
.hc{height:54.390938pt;}
.h12{height:55.275000pt;}
.h11{height:57.787500pt;}
.h10{height:58.522500pt;}
.h3{height:58.563750pt;}
.h19{height:59.340000pt;}
.hb{height:60.288750pt;}
.ha{height:62.812500pt;}
.h7{height:63.399375pt;}
.h1d{height:64.500000pt;}
.h15{height:103.200000pt;}
.hd{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:68.800000pt;}
.wa{width:68.960000pt;}
.w8{width:88.000000pt;}
.w4{width:102.880000pt;}
.w7{width:136.160000pt;}
.w5{width:158.400000pt;}
.w6{width:233.120000pt;}
.w3{width:596.640000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:9.632000pt;}
.x11{left:13.120000pt;}
.x10{left:51.360000pt;}
.x3{left:96.032000pt;}
.x1{left:97.952000pt;}
.xe{left:100.352000pt;}
.x15{left:112.192000pt;}
.x4{left:117.952000pt;}
.x26{left:148.346667pt;}
.x1a{left:178.746667pt;}
.x2{left:184.186667pt;}
.x18{left:187.386667pt;}
.x16{left:188.826667pt;}
.xb{left:196.346667pt;}
.xc{left:263.106667pt;}
.xd{left:288.066667pt;}
.x12{left:292.160000pt;}
.x8{left:344.386667pt;}
.x6{left:357.826667pt;}
.x5{left:396.866667pt;}
.x9{left:445.051667pt;}
.xa{left:449.373333pt;}
.x17{left:498.173333pt;}
.x13{left:567.840000pt;}
.x28{left:620.640000pt;}
.x21{left:636.480000pt;}
.x24{left:637.920000pt;}
.x22{left:639.360000pt;}
.x1b{left:640.800000pt;}
.x25{left:642.080000pt;}
.x1d{left:643.520000pt;}
.x1c{left:645.120000pt;}
.x1f{left:646.400000pt;}
.x23{left:648.000000pt;}
.x27{left:649.280000pt;}
.x1e{left:650.880000pt;}
.x19{left:652.000000pt;}
.x20{left:655.040000pt;}
.x7{left:697.893333pt;}
.x14{left:705.760000pt;}
}




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