
    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_cc522678002db7c2dc2a50b0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c49eaca8df9abe454b475eb5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_04b4aebef0c56c5bed8ff11c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a9587997226532e1bee5d1a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_99c14364311f15abb5ac811b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_846e5e3ad7be193c8ff818b0.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_46437a881e92daa4e15e049f.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_4357e7364ed135618d7aa31f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.920410;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_c10db81d273c575fbcf62c42.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.920410;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_3f6932fbba067039fd348e24.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.855469;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_e72964f795101ba1a41e3e34.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.090332;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:46.080000px;}
.ls17{letter-spacing:-3.240000px;}
.ls1b{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.513600px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.208200px;}
.ls7{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.lse{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.188400px;}
.ls11{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.ls16{letter-spacing:8.820000px;}
.ls1a{letter-spacing:16.506720px;}
.ls13{letter-spacing:17.226720px;}
.lsa{letter-spacing:18.666720px;}
.ls9{letter-spacing:21.546720px;}
.lsf{letter-spacing:28.026720px;}
.ls19{letter-spacing:28.260000px;}
.lsb{letter-spacing:40.986720px;}
.ls18{letter-spacing:46.026720px;}
.ls1{letter-spacing:70.020000px;}
.ls10{letter-spacing:93.060000px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.wse{word-spacing:-54.000000px;}
.wsd{word-spacing:-53.964000px;}
.ws9{word-spacing:-43.200720px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.426400px;}
.ws1{word-spacing:-10.440000px;}
.wsf{word-spacing:-10.260000px;}
.ws3{word-spacing:-9.711360px;}
.wsa{word-spacing:-1.052640px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1165.366080px;}
._8{margin-left:-9.296400px;}
._6{margin-left:-7.485120px;}
._a{margin-left:-6.264480px;}
._7{margin-left:-3.559680px;}
._9{margin-left:-2.327760px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._b{width:2.883120px;}
._f{width:3.893040px;}
._e{width:5.125920px;}
._10{width:6.173520px;}
._d{width:7.470000px;}
._c{width:8.784720px;}
._16{width:9.920160px;}
._17{width:11.414160px;}
._14{width:12.967920px;}
._22{width:16.604640px;}
._13{width:17.748720px;}
._1f{width:18.801600px;}
._1a{width:20.514960px;}
._19{width:21.968880px;}
._32{width:23.127120px;}
._1e{width:24.501600px;}
._11{width:26.115120px;}
._12{width:27.327600px;}
._2c{width:28.579440px;}
._2b{width:30.119040px;}
._2a{width:31.852080px;}
._21{width:36.311280px;}
._20{width:37.350000px;}
._26{width:38.701680px;}
._27{width:39.740400px;}
._2d{width:41.184480px;}
._18{width:43.326000px;}
._1d{width:47.449440px;}
._1c{width:48.465360px;}
._2e{width:49.781040px;}
._1b{width:51.453360px;}
._31{width:58.451040px;}
._33{width:60.712320px;}
._30{width:67.315680px;}
._2f{width:68.544720px;}
._15{width:70.020000px;}
._34{width:73.101840px;}
._23{width:93.060000px;}
._28{width:107.441520px;}
._29{width:143.480160px;}
._25{width:153.684000px;}
._24{width:1812.696000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y140{bottom:-27.900000px;}
.yf9{bottom:-25.380000px;}
.yea{bottom:-22.860000px;}
.ycc{bottom:-22.680000px;}
.y13d{bottom:-20.160000px;}
.yef{bottom:-8.670000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:2.520000px;}
.yf2{bottom:2.700000px;}
.y13f{bottom:3.420000px;}
.y134{bottom:3.705000px;}
.y139{bottom:3.885000px;}
.y137{bottom:4.425000px;}
.y142{bottom:4.680000px;}
.y7{bottom:5.760000px;}
.y2e{bottom:5.940000px;}
.yf8{bottom:6.660000px;}
.ycb{bottom:9.180000px;}
.y132{bottom:10.725000px;}
.y130{bottom:10.800000px;}
.y9{bottom:10.980000px;}
.y91{bottom:11.160000px;}
.y8{bottom:11.700000px;}
.y90{bottom:11.880000px;}
.ye6{bottom:12.450000px;}
.ye8{bottom:12.630000px;}
.yee{bottom:23.400000px;}
.y2b{bottom:25.560000px;}
.yca{bottom:29.160000px;}
.ya{bottom:37.260000px;}
.yed{bottom:43.380000px;}
.y6{bottom:54.180000px;}
.y92{bottom:58.860000px;}
.y8f{bottom:75.780000px;}
.y39{bottom:82.980000px;}
.y8e{bottom:90.900000px;}
.y38{bottom:102.780000px;}
.y8d{bottom:110.700000px;}
.y12e{bottom:111.420000px;}
.yc8{bottom:112.680000px;}
.y37{bottom:122.760000px;}
.y13e{bottom:127.080000px;}
.y8c{bottom:130.500000px;}
.y12d{bottom:131.400000px;}
.yc7{bottom:132.480000px;}
.y36{bottom:142.560000px;}
.y6e{bottom:150.480000px;}
.y12c{bottom:151.200000px;}
.yc6{bottom:152.460000px;}
.y35{bottom:162.360000px;}
.y6d{bottom:170.280000px;}
.y12b{bottom:171.000000px;}
.yc5{bottom:172.260000px;}
.yc9{bottom:175.860000px;}
.y34{bottom:182.160000px;}
.yf1{bottom:182.880000px;}
.y6c{bottom:190.080000px;}
.y12a{bottom:190.800000px;}
.yc4{bottom:192.060000px;}
.y33{bottom:201.960000px;}
.y8b{bottom:206.820000px;}
.y6b{bottom:209.910000px;}
.y129{bottom:210.630000px;}
.yc3{bottom:211.890000px;}
.y32{bottom:221.970000px;}
.y8a{bottom:226.650000px;}
.y6a{bottom:229.710000px;}
.y128{bottom:230.610000px;}
.yc2{bottom:231.690000px;}
.ye5{bottom:234.360000px;}
.ye7{bottom:235.980000px;}
.y31{bottom:241.770000px;}
.y89{bottom:246.630000px;}
.y69{bottom:249.690000px;}
.y127{bottom:250.410000px;}
.yc1{bottom:251.670000px;}
.yf3{bottom:256.710000px;}
.y13c{bottom:260.310000px;}
.y30{bottom:261.570000px;}
.y88{bottom:266.430000px;}
.y68{bottom:269.490000px;}
.y126{bottom:270.210000px;}
.yc0{bottom:271.470000px;}
.y2f{bottom:281.370000px;}
.y87{bottom:286.230000px;}
.y67{bottom:289.290000px;}
.y125{bottom:290.010000px;}
.ybf{bottom:291.270000px;}
.y2d{bottom:301.170000px;}
.y86{bottom:307.110000px;}
.y66{bottom:309.090000px;}
.y124{bottom:309.810000px;}
.ybe{bottom:311.070000px;}
.y2c{bottom:321.150000px;}
.y85{bottom:327.990000px;}
.y65{bottom:328.890000px;}
.y123{bottom:329.790000px;}
.ybd{bottom:330.870000px;}
.y2a{bottom:341.670000px;}
.yf7{bottom:345.450000px;}
.y64{bottom:348.870000px;}
.y122{bottom:349.590000px;}
.ybc{bottom:350.850000px;}
.y63{bottom:368.670000px;}
.y121{bottom:369.390000px;}
.y84{bottom:369.930000px;}
.ybb{bottom:370.650000px;}
.y29{bottom:387.930000px;}
.y62{bottom:388.470000px;}
.y120{bottom:389.190000px;}
.y83{bottom:389.730000px;}
.yba{bottom:390.450000px;}
.y61{bottom:408.270000px;}
.y11f{bottom:408.990000px;}
.y82{bottom:409.530000px;}
.yb9{bottom:410.250000px;}
.y28{bottom:427.530000px;}
.y60{bottom:428.070000px;}
.y11e{bottom:428.970000px;}
.y81{bottom:429.330000px;}
.yb8{bottom:430.050000px;}
.y27{bottom:447.375000px;}
.y5f{bottom:448.095000px;}
.y11d{bottom:448.815000px;}
.y80{bottom:449.175000px;}
.yb7{bottom:450.075000px;}
.y26{bottom:467.175000px;}
.y5e{bottom:467.895000px;}
.y11c{bottom:468.615000px;}
.y7f{bottom:469.155000px;}
.yb6{bottom:469.875000px;}
.y25{bottom:487.155000px;}
.y5d{bottom:487.695000px;}
.y11b{bottom:488.415000px;}
.y7e{bottom:488.955000px;}
.yb5{bottom:489.675000px;}
.y24{bottom:506.955000px;}
.y5c{bottom:507.495000px;}
.y11a{bottom:508.215000px;}
.y7d{bottom:508.755000px;}
.yb4{bottom:509.475000px;}
.y23{bottom:526.755000px;}
.y5b{bottom:527.295000px;}
.y119{bottom:528.195000px;}
.y7c{bottom:528.555000px;}
.yb3{bottom:529.275000px;}
.yf0{bottom:543.135000px;}
.y22{bottom:546.555000px;}
.y5a{bottom:547.275000px;}
.y118{bottom:547.995000px;}
.y7b{bottom:548.355000px;}
.yb2{bottom:549.255000px;}
.y21{bottom:566.355000px;}
.y59{bottom:567.075000px;}
.y117{bottom:567.795000px;}
.y7a{bottom:568.335000px;}
.yb1{bottom:569.055000px;}
.y20{bottom:586.335000px;}
.y58{bottom:586.875000px;}
.y116{bottom:587.595000px;}
.y79{bottom:588.135000px;}
.yb0{bottom:588.855000px;}
.y1f{bottom:606.135000px;}
.y57{bottom:606.675000px;}
.y115{bottom:607.395000px;}
.y78{bottom:607.935000px;}
.yaf{bottom:608.655000px;}
.y1e{bottom:625.935000px;}
.y56{bottom:626.475000px;}
.y114{bottom:627.375000px;}
.y77{bottom:627.735000px;}
.yae{bottom:628.455000px;}
.y1d{bottom:645.735000px;}
.y55{bottom:646.455000px;}
.y113{bottom:647.175000px;}
.y76{bottom:647.535000px;}
.yad{bottom:648.435000px;}
.ye4{bottom:651.675000px;}
.y1c{bottom:665.535000px;}
.y54{bottom:666.255000px;}
.y112{bottom:666.975000px;}
.y75{bottom:667.515000px;}
.yac{bottom:668.235000px;}
.ye3{bottom:671.475000px;}
.yec{bottom:683.025000px;}
.y1b{bottom:685.545000px;}
.y53{bottom:686.085000px;}
.y111{bottom:686.805000px;}
.y74{bottom:687.345000px;}
.yab{bottom:688.065000px;}
.ye2{bottom:691.485000px;}
.y1a{bottom:705.345000px;}
.y52{bottom:705.885000px;}
.y110{bottom:706.605000px;}
.y73{bottom:707.145000px;}
.yaa{bottom:707.865000px;}
.ye1{bottom:711.285000px;}
.y19{bottom:725.145000px;}
.y51{bottom:725.685000px;}
.y10f{bottom:726.585000px;}
.y72{bottom:726.945000px;}
.ya9{bottom:727.665000px;}
.ye0{bottom:731.085000px;}
.y141{bottom:742.245000px;}
.y18{bottom:744.945000px;}
.y50{bottom:745.665000px;}
.y10e{bottom:746.385000px;}
.y71{bottom:746.745000px;}
.ya8{bottom:747.645000px;}
.ydf{bottom:750.885000px;}
.y17{bottom:764.745000px;}
.y4f{bottom:765.465000px;}
.y10d{bottom:766.185000px;}
.y70{bottom:766.725000px;}
.ya7{bottom:767.445000px;}
.yde{bottom:770.685000px;}
.y12f{bottom:775.800000px;}
.y138{bottom:781.380000px;}
.y16{bottom:784.725000px;}
.y10c{bottom:785.985000px;}
.y4e{bottom:786.345000px;}
.y6f{bottom:786.525000px;}
.ya6{bottom:787.245000px;}
.ydd{bottom:790.665000px;}
.y136{bottom:804.420000px;}
.y15{bottom:804.525000px;}
.y10b{bottom:805.785000px;}
.y4d{bottom:806.325000px;}
.ya5{bottom:807.045000px;}
.ydc{bottom:810.465000px;}
.y13b{bottom:820.545000px;}
.y14{bottom:824.325000px;}
.y10a{bottom:825.765000px;}
.y4c{bottom:826.125000px;}
.y135{bottom:826.380000px;}
.ya4{bottom:826.845000px;}
.y131{bottom:827.100000px;}
.ydb{bottom:830.265000px;}
.yf6{bottom:835.305000px;}
.y13{bottom:844.125000px;}
.y109{bottom:845.565000px;}
.y4b{bottom:845.925000px;}
.ya3{bottom:846.825000px;}
.yda{bottom:850.065000px;}
.y133{bottom:850.680000px;}
.y12{bottom:863.925000px;}
.y108{bottom:865.365000px;}
.y4a{bottom:865.905000px;}
.ya2{bottom:866.625000px;}
.yd9{bottom:869.865000px;}
.yeb{bottom:871.305000px;}
.y107{bottom:885.165000px;}
.y49{bottom:885.705000px;}
.ya1{bottom:886.425000px;}
.yd8{bottom:889.845000px;}
.y11{bottom:891.285000px;}
.y106{bottom:904.965000px;}
.y48{bottom:905.505000px;}
.y10{bottom:905.865000px;}
.ya0{bottom:906.225000px;}
.yd7{bottom:909.645000px;}
.y105{bottom:924.990000px;}
.y47{bottom:925.350000px;}
.y9f{bottom:926.070000px;}
.yd6{bottom:929.490000px;}
.yf{bottom:931.110000px;}
.y104{bottom:944.790000px;}
.y46{bottom:945.150000px;}
.y9e{bottom:946.050000px;}
.ye{bottom:946.230000px;}
.yd5{bottom:949.290000px;}
.ye9{bottom:951.990000px;}
.y103{bottom:964.590000px;}
.y45{bottom:965.130000px;}
.y9d{bottom:965.850000px;}
.yd{bottom:967.470000px;}
.yd4{bottom:969.090000px;}
.y102{bottom:984.390000px;}
.y44{bottom:984.930000px;}
.y9c{bottom:985.650000px;}
.yd3{bottom:989.070000px;}
.yc{bottom:990.870000px;}
.y101{bottom:1004.190000px;}
.y43{bottom:1004.730000px;}
.y9b{bottom:1005.450000px;}
.yd2{bottom:1008.870000px;}
.yb{bottom:1022.730000px;}
.y100{bottom:1024.170000px;}
.y42{bottom:1024.530000px;}
.y9a{bottom:1025.250000px;}
.yd1{bottom:1028.670000px;}
.yff{bottom:1043.970000px;}
.y41{bottom:1044.330000px;}
.y99{bottom:1045.230000px;}
.yd0{bottom:1048.470000px;}
.y5{bottom:1050.810000px;}
.yfe{bottom:1063.770000px;}
.y40{bottom:1064.310000px;}
.y98{bottom:1065.030000px;}
.ycf{bottom:1068.270000px;}
.y4{bottom:1082.130000px;}
.yfd{bottom:1083.570000px;}
.y3f{bottom:1084.110000px;}
.y97{bottom:1084.830000px;}
.yce{bottom:1085.010000px;}
.ycd{bottom:1095.090000px;}
.yfc{bottom:1103.370000px;}
.y3e{bottom:1103.910000px;}
.y96{bottom:1104.630000px;}
.y3{bottom:1112.910000px;}
.yfb{bottom:1123.350000px;}
.y3d{bottom:1123.710000px;}
.y95{bottom:1124.430000px;}
.y3c{bottom:1138.470000px;}
.y2{bottom:1143.870000px;}
.yfa{bottom:1144.230000px;}
.y94{bottom:1144.410000px;}
.y13a{bottom:1146.570000px;}
.yf4{bottom:1157.580000px;}
.y3b{bottom:1158.480000px;}
.y93{bottom:1164.240000px;}
.y1{bottom:1177.740000px;}
.y3a{bottom:1193.580000px;}
.h1e{height:13.860000px;}
.h26{height:13.896000px;}
.h1c{height:14.040000px;}
.h29{height:16.200000px;}
.h24{height:16.560000px;}
.h23{height:16.740000px;}
.h25{height:17.280000px;}
.h2a{height:17.460000px;}
.he{height:19.800000px;}
.hf{height:19.980000px;}
.h10{height:20.016000px;}
.h1f{height:20.700000px;}
.h5{height:21.240000px;}
.h14{height:21.420000px;}
.h19{height:26.820000px;}
.hb{height:27.147656px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.h1d{height:34.036523px;}
.h28{height:38.100586px;}
.hd{height:39.600000px;}
.h4{height:41.726953px;}
.h27{height:41.760000px;}
.h15{height:41.843672px;}
.h9{height:42.164648px;}
.h1a{height:43.200000px;}
.h16{height:43.236000px;}
.h13{height:43.506914px;}
.h3{height:46.736719px;}
.h21{height:46.801758px;}
.hc{height:49.255313px;}
.h12{height:51.793945px;}
.h20{height:52.020000px;}
.h22{height:52.200000px;}
.ha{height:53.224453px;}
.h11{height:59.439023px;}
.h8{height:62.402344px;}
.h2{height:67.565039px;}
.h1b{height:75.420000px;}
.h18{height:82.046953px;}
.h17{height:96.444141px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wd{width:16.200000px;}
.we{width:16.560000px;}
.w3{width:57.816000px;}
.wf{width:63.180000px;}
.w10{width:70.380000px;}
.w9{width:78.840000px;}
.w7{width:174.810000px;}
.w6{width:174.990000px;}
.wc{width:252.750000px;}
.w5{width:260.535000px;}
.w8{width:365.475000px;}
.wb{width:365.655000px;}
.wa{width:365.835000px;}
.w11{width:378.795000px;}
.w12{width:378.975000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x21{left:10.800000px;}
.x30{left:12.885000px;}
.x2a{left:18.720000px;}
.x27{left:28.080000px;}
.x25{left:30.276000px;}
.x2d{left:36.360000px;}
.x20{left:39.060000px;}
.x29{left:52.380000px;}
.x1{left:54.179987px;}
.x33{left:55.800000px;}
.x1f{left:59.580000px;}
.x2{left:62.100000px;}
.x9{left:67.139987px;}
.x35{left:69.696000px;}
.x28{left:73.296000px;}
.x1d{left:75.239987px;}
.x14{left:80.999987px;}
.xc{left:87.695987px;}
.x26{left:91.836000px;}
.x13{left:107.135987px;}
.x4{left:120.636000px;}
.x17{left:123.335987px;}
.x19{left:138.275987px;}
.xe{left:140.795987px;}
.x34{left:155.550000px;}
.x22{left:183.089987px;}
.x1c{left:189.389987px;}
.x2f{left:220.860000px;}
.x31{left:230.220000px;}
.x8{left:239.799000px;}
.x7{left:244.839000px;}
.x23{left:255.809987px;}
.xd{left:282.674987px;}
.x32{left:285.660000px;}
.x10{left:314.535000px;}
.xa{left:316.514987px;}
.x1b{left:333.794987px;}
.x1a{left:380.594987px;}
.x6{left:413.709000px;}
.x5{left:427.029000px;}
.xb{left:446.504987px;}
.x2b{left:460.725000px;}
.x36{left:463.965000px;}
.xf{left:465.764987px;}
.x1e{left:474.045000px;}
.x18{left:481.244987px;}
.x16{left:487.004987px;}
.x11{left:489.525000px;}
.x15{left:492.764987px;}
.x2e{left:494.744987px;}
.x37{left:500.504987px;}
.x38{left:527.504987px;}
.x2c{left:553.245000px;}
.x12{left:664.350000px;}
.x24{left:679.320000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.960000pt;}
.ls17{letter-spacing:-2.880000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.456533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.167467pt;}
.ls11{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.ls16{letter-spacing:7.840000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls13{letter-spacing:15.312640pt;}
.lsa{letter-spacing:16.592640pt;}
.ls9{letter-spacing:19.152640pt;}
.lsf{letter-spacing:24.912640pt;}
.ls19{letter-spacing:25.120000pt;}
.lsb{letter-spacing:36.432640pt;}
.ls18{letter-spacing:40.912640pt;}
.ls1{letter-spacing:62.240000pt;}
.ls10{letter-spacing:82.720000pt;}
.ws8{word-spacing:-53.120000pt;}
.wse{word-spacing:-48.000000pt;}
.wsd{word-spacing:-47.968000pt;}
.ws9{word-spacing:-38.400640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.823467pt;}
.ws1{word-spacing:-9.280000pt;}
.wsf{word-spacing:-9.120000pt;}
.ws3{word-spacing:-8.632320pt;}
.wsa{word-spacing:-0.935680pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1035.880960pt;}
._8{margin-left:-8.263467pt;}
._6{margin-left:-6.653440pt;}
._a{margin-left:-5.568427pt;}
._7{margin-left:-3.164160pt;}
._9{margin-left:-2.069120pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._b{width:2.562773pt;}
._f{width:3.460480pt;}
._e{width:4.556373pt;}
._10{width:5.487573pt;}
._d{width:6.640000pt;}
._c{width:7.808640pt;}
._16{width:8.817920pt;}
._17{width:10.145920pt;}
._14{width:11.527040pt;}
._22{width:14.759680pt;}
._13{width:15.776640pt;}
._1f{width:16.712533pt;}
._1a{width:18.235520pt;}
._19{width:19.527893pt;}
._32{width:20.557440pt;}
._1e{width:21.779200pt;}
._11{width:23.213440pt;}
._12{width:24.291200pt;}
._2c{width:25.403947pt;}
._2b{width:26.772480pt;}
._2a{width:28.312960pt;}
._21{width:32.276693pt;}
._20{width:33.200000pt;}
._26{width:34.401493pt;}
._27{width:35.324800pt;}
._2d{width:36.608427pt;}
._18{width:38.512000pt;}
._1d{width:42.177280pt;}
._1c{width:43.080320pt;}
._2e{width:44.249813pt;}
._1b{width:45.736320pt;}
._31{width:51.956480pt;}
._33{width:53.966507pt;}
._30{width:59.836160pt;}
._2f{width:60.928640pt;}
._15{width:62.240000pt;}
._34{width:64.979413pt;}
._23{width:82.720000pt;}
._28{width:95.503573pt;}
._29{width:127.537920pt;}
._25{width:136.608000pt;}
._24{width:1611.285333pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y140{bottom:-24.800000pt;}
.yf9{bottom:-22.560000pt;}
.yea{bottom:-20.320000pt;}
.ycc{bottom:-20.160000pt;}
.y13d{bottom:-17.920000pt;}
.yef{bottom:-7.706667pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:2.240000pt;}
.yf2{bottom:2.400000pt;}
.y13f{bottom:3.040000pt;}
.y134{bottom:3.293333pt;}
.y139{bottom:3.453333pt;}
.y137{bottom:3.933333pt;}
.y142{bottom:4.160000pt;}
.y7{bottom:5.120000pt;}
.y2e{bottom:5.280000pt;}
.yf8{bottom:5.920000pt;}
.ycb{bottom:8.160000pt;}
.y132{bottom:9.533333pt;}
.y130{bottom:9.600000pt;}
.y9{bottom:9.760000pt;}
.y91{bottom:9.920000pt;}
.y8{bottom:10.400000pt;}
.y90{bottom:10.560000pt;}
.ye6{bottom:11.066667pt;}
.ye8{bottom:11.226667pt;}
.yee{bottom:20.800000pt;}
.y2b{bottom:22.720000pt;}
.yca{bottom:25.920000pt;}
.ya{bottom:33.120000pt;}
.yed{bottom:38.560000pt;}
.y6{bottom:48.160000pt;}
.y92{bottom:52.320000pt;}
.y8f{bottom:67.360000pt;}
.y39{bottom:73.760000pt;}
.y8e{bottom:80.800000pt;}
.y38{bottom:91.360000pt;}
.y8d{bottom:98.400000pt;}
.y12e{bottom:99.040000pt;}
.yc8{bottom:100.160000pt;}
.y37{bottom:109.120000pt;}
.y13e{bottom:112.960000pt;}
.y8c{bottom:116.000000pt;}
.y12d{bottom:116.800000pt;}
.yc7{bottom:117.760000pt;}
.y36{bottom:126.720000pt;}
.y6e{bottom:133.760000pt;}
.y12c{bottom:134.400000pt;}
.yc6{bottom:135.520000pt;}
.y35{bottom:144.320000pt;}
.y6d{bottom:151.360000pt;}
.y12b{bottom:152.000000pt;}
.yc5{bottom:153.120000pt;}
.yc9{bottom:156.320000pt;}
.y34{bottom:161.920000pt;}
.yf1{bottom:162.560000pt;}
.y6c{bottom:168.960000pt;}
.y12a{bottom:169.600000pt;}
.yc4{bottom:170.720000pt;}
.y33{bottom:179.520000pt;}
.y8b{bottom:183.840000pt;}
.y6b{bottom:186.586667pt;}
.y129{bottom:187.226667pt;}
.yc3{bottom:188.346667pt;}
.y32{bottom:197.306667pt;}
.y8a{bottom:201.466667pt;}
.y6a{bottom:204.186667pt;}
.y128{bottom:204.986667pt;}
.yc2{bottom:205.946667pt;}
.ye5{bottom:208.320000pt;}
.ye7{bottom:209.760000pt;}
.y31{bottom:214.906667pt;}
.y89{bottom:219.226667pt;}
.y69{bottom:221.946667pt;}
.y127{bottom:222.586667pt;}
.yc1{bottom:223.706667pt;}
.yf3{bottom:228.186667pt;}
.y13c{bottom:231.386667pt;}
.y30{bottom:232.506667pt;}
.y88{bottom:236.826667pt;}
.y68{bottom:239.546667pt;}
.y126{bottom:240.186667pt;}
.yc0{bottom:241.306667pt;}
.y2f{bottom:250.106667pt;}
.y87{bottom:254.426667pt;}
.y67{bottom:257.146667pt;}
.y125{bottom:257.786667pt;}
.ybf{bottom:258.906667pt;}
.y2d{bottom:267.706667pt;}
.y86{bottom:272.986667pt;}
.y66{bottom:274.746667pt;}
.y124{bottom:275.386667pt;}
.ybe{bottom:276.506667pt;}
.y2c{bottom:285.466667pt;}
.y85{bottom:291.546667pt;}
.y65{bottom:292.346667pt;}
.y123{bottom:293.146667pt;}
.ybd{bottom:294.106667pt;}
.y2a{bottom:303.706667pt;}
.yf7{bottom:307.066667pt;}
.y64{bottom:310.106667pt;}
.y122{bottom:310.746667pt;}
.ybc{bottom:311.866667pt;}
.y63{bottom:327.706667pt;}
.y121{bottom:328.346667pt;}
.y84{bottom:328.826667pt;}
.ybb{bottom:329.466667pt;}
.y29{bottom:344.826667pt;}
.y62{bottom:345.306667pt;}
.y120{bottom:345.946667pt;}
.y83{bottom:346.426667pt;}
.yba{bottom:347.066667pt;}
.y61{bottom:362.906667pt;}
.y11f{bottom:363.546667pt;}
.y82{bottom:364.026667pt;}
.yb9{bottom:364.666667pt;}
.y28{bottom:380.026667pt;}
.y60{bottom:380.506667pt;}
.y11e{bottom:381.306667pt;}
.y81{bottom:381.626667pt;}
.yb8{bottom:382.266667pt;}
.y27{bottom:397.666667pt;}
.y5f{bottom:398.306667pt;}
.y11d{bottom:398.946667pt;}
.y80{bottom:399.266667pt;}
.yb7{bottom:400.066667pt;}
.y26{bottom:415.266667pt;}
.y5e{bottom:415.906667pt;}
.y11c{bottom:416.546667pt;}
.y7f{bottom:417.026667pt;}
.yb6{bottom:417.666667pt;}
.y25{bottom:433.026667pt;}
.y5d{bottom:433.506667pt;}
.y11b{bottom:434.146667pt;}
.y7e{bottom:434.626667pt;}
.yb5{bottom:435.266667pt;}
.y24{bottom:450.626667pt;}
.y5c{bottom:451.106667pt;}
.y11a{bottom:451.746667pt;}
.y7d{bottom:452.226667pt;}
.yb4{bottom:452.866667pt;}
.y23{bottom:468.226667pt;}
.y5b{bottom:468.706667pt;}
.y119{bottom:469.506667pt;}
.y7c{bottom:469.826667pt;}
.yb3{bottom:470.466667pt;}
.yf0{bottom:482.786667pt;}
.y22{bottom:485.826667pt;}
.y5a{bottom:486.466667pt;}
.y118{bottom:487.106667pt;}
.y7b{bottom:487.426667pt;}
.yb2{bottom:488.226667pt;}
.y21{bottom:503.426667pt;}
.y59{bottom:504.066667pt;}
.y117{bottom:504.706667pt;}
.y7a{bottom:505.186667pt;}
.yb1{bottom:505.826667pt;}
.y20{bottom:521.186667pt;}
.y58{bottom:521.666667pt;}
.y116{bottom:522.306667pt;}
.y79{bottom:522.786667pt;}
.yb0{bottom:523.426667pt;}
.y1f{bottom:538.786667pt;}
.y57{bottom:539.266667pt;}
.y115{bottom:539.906667pt;}
.y78{bottom:540.386667pt;}
.yaf{bottom:541.026667pt;}
.y1e{bottom:556.386667pt;}
.y56{bottom:556.866667pt;}
.y114{bottom:557.666667pt;}
.y77{bottom:557.986667pt;}
.yae{bottom:558.626667pt;}
.y1d{bottom:573.986667pt;}
.y55{bottom:574.626667pt;}
.y113{bottom:575.266667pt;}
.y76{bottom:575.586667pt;}
.yad{bottom:576.386667pt;}
.ye4{bottom:579.266667pt;}
.y1c{bottom:591.586667pt;}
.y54{bottom:592.226667pt;}
.y112{bottom:592.866667pt;}
.y75{bottom:593.346667pt;}
.yac{bottom:593.986667pt;}
.ye3{bottom:596.866667pt;}
.yec{bottom:607.133333pt;}
.y1b{bottom:609.373333pt;}
.y53{bottom:609.853333pt;}
.y111{bottom:610.493333pt;}
.y74{bottom:610.973333pt;}
.yab{bottom:611.613333pt;}
.ye2{bottom:614.653333pt;}
.y1a{bottom:626.973333pt;}
.y52{bottom:627.453333pt;}
.y110{bottom:628.093333pt;}
.y73{bottom:628.573333pt;}
.yaa{bottom:629.213333pt;}
.ye1{bottom:632.253333pt;}
.y19{bottom:644.573333pt;}
.y51{bottom:645.053333pt;}
.y10f{bottom:645.853333pt;}
.y72{bottom:646.173333pt;}
.ya9{bottom:646.813333pt;}
.ye0{bottom:649.853333pt;}
.y141{bottom:659.773333pt;}
.y18{bottom:662.173333pt;}
.y50{bottom:662.813333pt;}
.y10e{bottom:663.453333pt;}
.y71{bottom:663.773333pt;}
.ya8{bottom:664.573333pt;}
.ydf{bottom:667.453333pt;}
.y17{bottom:679.773333pt;}
.y4f{bottom:680.413333pt;}
.y10d{bottom:681.053333pt;}
.y70{bottom:681.533333pt;}
.ya7{bottom:682.173333pt;}
.yde{bottom:685.053333pt;}
.y12f{bottom:689.600000pt;}
.y138{bottom:694.560000pt;}
.y16{bottom:697.533333pt;}
.y10c{bottom:698.653333pt;}
.y4e{bottom:698.973333pt;}
.y6f{bottom:699.133333pt;}
.ya6{bottom:699.773333pt;}
.ydd{bottom:702.813333pt;}
.y136{bottom:715.040000pt;}
.y15{bottom:715.133333pt;}
.y10b{bottom:716.253333pt;}
.y4d{bottom:716.733333pt;}
.ya5{bottom:717.373333pt;}
.ydc{bottom:720.413333pt;}
.y13b{bottom:729.373333pt;}
.y14{bottom:732.733333pt;}
.y10a{bottom:734.013333pt;}
.y4c{bottom:734.333333pt;}
.y135{bottom:734.560000pt;}
.ya4{bottom:734.973333pt;}
.y131{bottom:735.200000pt;}
.ydb{bottom:738.013333pt;}
.yf6{bottom:742.493333pt;}
.y13{bottom:750.333333pt;}
.y109{bottom:751.613333pt;}
.y4b{bottom:751.933333pt;}
.ya3{bottom:752.733333pt;}
.yda{bottom:755.613333pt;}
.y133{bottom:756.160000pt;}
.y12{bottom:767.933333pt;}
.y108{bottom:769.213333pt;}
.y4a{bottom:769.693333pt;}
.ya2{bottom:770.333333pt;}
.yd9{bottom:773.213333pt;}
.yeb{bottom:774.493333pt;}
.y107{bottom:786.813333pt;}
.y49{bottom:787.293333pt;}
.ya1{bottom:787.933333pt;}
.yd8{bottom:790.973333pt;}
.y11{bottom:792.253333pt;}
.y106{bottom:804.413333pt;}
.y48{bottom:804.893333pt;}
.y10{bottom:805.213333pt;}
.ya0{bottom:805.533333pt;}
.yd7{bottom:808.573333pt;}
.y105{bottom:822.213333pt;}
.y47{bottom:822.533333pt;}
.y9f{bottom:823.173333pt;}
.yd6{bottom:826.213333pt;}
.yf{bottom:827.653333pt;}
.y104{bottom:839.813333pt;}
.y46{bottom:840.133333pt;}
.y9e{bottom:840.933333pt;}
.ye{bottom:841.093333pt;}
.yd5{bottom:843.813333pt;}
.ye9{bottom:846.213333pt;}
.y103{bottom:857.413333pt;}
.y45{bottom:857.893333pt;}
.y9d{bottom:858.533333pt;}
.yd{bottom:859.973333pt;}
.yd4{bottom:861.413333pt;}
.y102{bottom:875.013333pt;}
.y44{bottom:875.493333pt;}
.y9c{bottom:876.133333pt;}
.yd3{bottom:879.173333pt;}
.yc{bottom:880.773333pt;}
.y101{bottom:892.613333pt;}
.y43{bottom:893.093333pt;}
.y9b{bottom:893.733333pt;}
.yd2{bottom:896.773333pt;}
.yb{bottom:909.093333pt;}
.y100{bottom:910.373333pt;}
.y42{bottom:910.693333pt;}
.y9a{bottom:911.333333pt;}
.yd1{bottom:914.373333pt;}
.yff{bottom:927.973333pt;}
.y41{bottom:928.293333pt;}
.y99{bottom:929.093333pt;}
.yd0{bottom:931.973333pt;}
.y5{bottom:934.053333pt;}
.yfe{bottom:945.573333pt;}
.y40{bottom:946.053333pt;}
.y98{bottom:946.693333pt;}
.ycf{bottom:949.573333pt;}
.y4{bottom:961.893333pt;}
.yfd{bottom:963.173333pt;}
.y3f{bottom:963.653333pt;}
.y97{bottom:964.293333pt;}
.yce{bottom:964.453333pt;}
.ycd{bottom:973.413333pt;}
.yfc{bottom:980.773333pt;}
.y3e{bottom:981.253333pt;}
.y96{bottom:981.893333pt;}
.y3{bottom:989.253333pt;}
.yfb{bottom:998.533333pt;}
.y3d{bottom:998.853333pt;}
.y95{bottom:999.493333pt;}
.y3c{bottom:1011.973333pt;}
.y2{bottom:1016.773333pt;}
.yfa{bottom:1017.093333pt;}
.y94{bottom:1017.253333pt;}
.y13a{bottom:1019.173333pt;}
.yf4{bottom:1028.960000pt;}
.y3b{bottom:1029.760000pt;}
.y93{bottom:1034.880000pt;}
.y1{bottom:1046.880000pt;}
.y3a{bottom:1060.960000pt;}
.h1e{height:12.320000pt;}
.h26{height:12.352000pt;}
.h1c{height:12.480000pt;}
.h29{height:14.400000pt;}
.h24{height:14.720000pt;}
.h23{height:14.880000pt;}
.h25{height:15.360000pt;}
.h2a{height:15.520000pt;}
.he{height:17.600000pt;}
.hf{height:17.760000pt;}
.h10{height:17.792000pt;}
.h1f{height:18.400000pt;}
.h5{height:18.880000pt;}
.h14{height:19.040000pt;}
.h19{height:23.840000pt;}
.hb{height:24.131250pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.h1d{height:30.254687pt;}
.h28{height:33.867188pt;}
.hd{height:35.200000pt;}
.h4{height:37.090625pt;}
.h27{height:37.120000pt;}
.h15{height:37.194375pt;}
.h9{height:37.479688pt;}
.h1a{height:38.400000pt;}
.h16{height:38.432000pt;}
.h13{height:38.672812pt;}
.h3{height:41.543750pt;}
.h21{height:41.601563pt;}
.hc{height:43.782500pt;}
.h12{height:46.039063pt;}
.h20{height:46.240000pt;}
.h22{height:46.400000pt;}
.ha{height:47.310625pt;}
.h11{height:52.834688pt;}
.h8{height:55.468750pt;}
.h2{height:60.057813pt;}
.h1b{height:67.040000pt;}
.h18{height:72.930625pt;}
.h17{height:85.728125pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wd{width:14.400000pt;}
.we{width:14.720000pt;}
.w3{width:51.392000pt;}
.wf{width:56.160000pt;}
.w10{width:62.560000pt;}
.w9{width:70.080000pt;}
.w7{width:155.386667pt;}
.w6{width:155.546667pt;}
.wc{width:224.666667pt;}
.w5{width:231.586667pt;}
.w8{width:324.866667pt;}
.wb{width:325.026667pt;}
.wa{width:325.186667pt;}
.w11{width:336.706667pt;}
.w12{width:336.866667pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x21{left:9.600000pt;}
.x30{left:11.453333pt;}
.x2a{left:16.640000pt;}
.x27{left:24.960000pt;}
.x25{left:26.912000pt;}
.x2d{left:32.320000pt;}
.x20{left:34.720000pt;}
.x29{left:46.560000pt;}
.x1{left:48.159988pt;}
.x33{left:49.600000pt;}
.x1f{left:52.960000pt;}
.x2{left:55.200000pt;}
.x9{left:59.679988pt;}
.x35{left:61.952000pt;}
.x28{left:65.152000pt;}
.x1d{left:66.879988pt;}
.x14{left:71.999988pt;}
.xc{left:77.951988pt;}
.x26{left:81.632000pt;}
.x13{left:95.231988pt;}
.x4{left:107.232000pt;}
.x17{left:109.631988pt;}
.x19{left:122.911988pt;}
.xe{left:125.151988pt;}
.x34{left:138.266667pt;}
.x22{left:162.746655pt;}
.x1c{left:168.346655pt;}
.x2f{left:196.320000pt;}
.x31{left:204.640000pt;}
.x8{left:213.154667pt;}
.x7{left:217.634667pt;}
.x23{left:227.386655pt;}
.xd{left:251.266655pt;}
.x32{left:253.920000pt;}
.x10{left:279.586667pt;}
.xa{left:281.346655pt;}
.x1b{left:296.706655pt;}
.x1a{left:338.306655pt;}
.x6{left:367.741333pt;}
.x5{left:379.581333pt;}
.xb{left:396.893322pt;}
.x2b{left:409.533333pt;}
.x36{left:412.413333pt;}
.xf{left:414.013322pt;}
.x1e{left:421.373333pt;}
.x18{left:427.773322pt;}
.x16{left:432.893322pt;}
.x11{left:435.133333pt;}
.x15{left:438.013322pt;}
.x2e{left:439.773322pt;}
.x37{left:444.893322pt;}
.x38{left:468.893322pt;}
.x2c{left:491.773333pt;}
.x12{left:590.533333pt;}
.x24{left:603.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; }
  