
    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_2ad846b44829a35dc0175803.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_19c74fede896eecba0997439.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_b2774b1138467b82e9b2e007.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976074;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_8bca47e7215409bd0edd0035.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_a9a62f051ce378f7d1e0b163.woff2')format("woff");}.ff7{font-family:ff7;line-height:2.230469;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_3ba677349c67c91dc2b0348e.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.230469;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_e14f3e28662623b5b65a7694.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976074;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_bc64225a7c55dd310d7c6f6d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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);}
.va{vertical-align:-112.320000px;}
.vc{vertical-align:-82.800000px;}
.v7{vertical-align:-38.880000px;}
.v9{vertical-align:-29.520000px;}
.v4{vertical-align:-20.160000px;}
.v8{vertical-align:-17.280000px;}
.vd{vertical-align:-14.400000px;}
.v15{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.v3{vertical-align:5.040000px;}
.ve{vertical-align:14.400000px;}
.v14{vertical-align:26.640000px;}
.v11{vertical-align:35.280000px;}
.vb{vertical-align:38.880000px;}
.v13{vertical-align:44.640000px;}
.v2{vertical-align:46.080000px;}
.v5{vertical-align:47.520000px;}
.vf{vertical-align:48.960000px;}
.v12{vertical-align:50.400000px;}
.v16{vertical-align:54.720000px;}
.v6{vertical-align:59.760000px;}
.v10{vertical-align:70.560000px;}
.ls35{letter-spacing:-1.008000px;}
.ls33{letter-spacing:-0.504000px;}
.ls2{letter-spacing:-0.368400px;}
.ls22{letter-spacing:-0.304800px;}
.ls32{letter-spacing:-0.301200px;}
.ls3{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.277200px;}
.ls25{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.215400px;}
.ls18{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.864000px;}
.ls4{letter-spacing:1.008000px;}
.ls13{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.152000px;}
.ls1d{letter-spacing:1.224000px;}
.ls11{letter-spacing:1.512000px;}
.ls21{letter-spacing:1.584000px;}
.ls10{letter-spacing:1.800000px;}
.ls2e{letter-spacing:1.944000px;}
.ls20{letter-spacing:2.016000px;}
.ls14{letter-spacing:2.160000px;}
.ls26{letter-spacing:2.280000px;}
.lsc{letter-spacing:2.376000px;}
.ls2c{letter-spacing:2.448000px;}
.lsf{letter-spacing:2.592000px;}
.ls2f{letter-spacing:3.060720px;}
.ls17{letter-spacing:3.427200px;}
.ls1a{letter-spacing:3.456000px;}
.ls2a{letter-spacing:3.852000px;}
.ls28{letter-spacing:4.114080px;}
.ls1c{letter-spacing:4.147200px;}
.ls2b{letter-spacing:4.245840px;}
.ls29{letter-spacing:5.251680px;}
.ls27{letter-spacing:19.800000px;}
.ls16{letter-spacing:20.707200px;}
.ls1f{letter-spacing:20.920320px;}
.ls31{letter-spacing:23.616000px;}
.ls1e{letter-spacing:26.496000px;}
.ls2d{letter-spacing:38.016000px;}
.ls9{letter-spacing:58.320000px;}
.ls34{letter-spacing:77.880000px;}
.lsa{letter-spacing:247.675680px;}
.lse{letter-spacing:682.596000px;}
.ls15{letter-spacing:710.676000px;}
.ls0{letter-spacing:2352.472800px;}
.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;}
}
.wsc{word-spacing:-58.896000px;}
.ws5{word-spacing:-26.352000px;}
.ws7{word-spacing:-25.776000px;}
.ws6{word-spacing:-25.632000px;}
.wsd{word-spacing:-25.560000px;}
.ws9{word-spacing:-25.488000px;}
.ws2{word-spacing:-25.344000px;}
.wsb{word-spacing:-25.272000px;}
.ws8{word-spacing:-25.200000px;}
.wsa{word-spacing:-25.128000px;}
.ws4{word-spacing:-25.056000px;}
.ws1{word-spacing:-24.624000px;}
.ws0{word-spacing:-22.948080px;}
.wse{word-spacing:-16.980480px;}
.wsf{word-spacing:-16.679280px;}
.ws3{word-spacing:0.000000px;}
._25{margin-left:-11.463120px;}
._28{margin-left:-6.072480px;}
._24{margin-left:-4.248000px;}
._0{margin-left:-1.289040px;}
._5{width:1.361040px;}
._e{width:2.394960px;}
._8{width:4.104000px;}
._9{width:5.705040px;}
._a{width:7.200000px;}
._f{width:9.006960px;}
._12{width:10.539360px;}
._1{width:11.852640px;}
._1b{width:12.864000px;}
._19{width:14.616000px;}
._1a{width:16.056000px;}
._1e{width:17.064000px;}
._1f{width:18.144000px;}
._7{width:19.337040px;}
._6{width:20.424000px;}
._10{width:21.912000px;}
._11{width:22.957920px;}
._1c{width:24.264000px;}
._15{width:26.784000px;}
._16{width:28.080000px;}
._20{width:29.449920px;}
._22{width:31.752000px;}
._c{width:33.048000px;}
._d{width:34.416000px;}
._21{width:36.432000px;}
._2d{width:38.376000px;}
._13{width:39.816000px;}
._14{width:41.214960px;}
._b{width:42.240000px;}
._23{width:43.908000px;}
._2b{width:45.900000px;}
._2c{width:47.502960px;}
._17{width:49.404000px;}
._2e{width:50.604000px;}
._27{width:52.720560px;}
._1d{width:53.784000px;}
._18{width:54.936000px;}
._2f{width:56.016000px;}
._30{width:57.804000px;}
._32{width:62.273040px;}
._26{width:63.870960px;}
._31{width:64.957200px;}
._2a{width:70.776000px;}
._29{width:97.776000px;}
._34{width:110.772000px;}
._33{width:111.852000px;}
._4{width:175.565280px;}
._3{width:193.169760px;}
._2{width:194.975520px;}
._35{width:321.372000px;}
._37{width:866.369040px;}
._36{width:868.044000px;}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:12.240000px;}
.fs3{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:81.360000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y129{bottom:0.360000px;}
.ydb{bottom:3.765000px;}
.ye0{bottom:3.772500px;}
.yc7{bottom:3.780000px;}
.yd8{bottom:3.945000px;}
.y110{bottom:3.946500px;}
.yde{bottom:3.952500px;}
.yc9{bottom:3.960000px;}
.y10a{bottom:4.125000px;}
.y2{bottom:11.700000px;}
.y128{bottom:12.420000px;}
.y127{bottom:22.500000px;}
.y108{bottom:25.005000px;}
.ydd{bottom:25.726500px;}
.yc6{bottom:25.740000px;}
.y12b{bottom:25.770000px;}
.y109{bottom:25.905000px;}
.y12f{bottom:25.920000px;}
.y113{bottom:92.376000px;}
.y166{bottom:98.136000px;}
.ye1{bottom:100.656000px;}
.y37{bottom:102.276000px;}
.y61{bottom:102.996000px;}
.y13f{bottom:103.356000px;}
.y112{bottom:112.356000px;}
.ydf{bottom:117.763500px;}
.y165{bottom:119.916000px;}
.y36{bottom:124.236000px;}
.y60{bottom:124.956000px;}
.y13e{bottom:125.316000px;}
.yb2{bottom:128.376000px;}
.y111{bottom:132.336000px;}
.ydc{bottom:140.263500px;}
.y164{bottom:141.876000px;}
.y35{bottom:146.016000px;}
.y5f{bottom:146.736000px;}
.y13d{bottom:147.096000px;}
.y86{bottom:147.636000px;}
.y10f{bottom:149.443500px;}
.yb1{bottom:150.330000px;}
.y163{bottom:163.650000px;}
.y34{bottom:167.970000px;}
.y5e{bottom:168.690000px;}
.y13c{bottom:169.230000px;}
.y85{bottom:169.770000px;}
.yb0{bottom:172.110000px;}
.y10e{bottom:172.125000px;}
.yda{bottom:184.905000px;}
.y162{bottom:185.610000px;}
.y33{bottom:189.750000px;}
.y5d{bottom:190.470000px;}
.y13b{bottom:191.190000px;}
.y84{bottom:191.550000px;}
.yaf{bottom:194.070000px;}
.y10d{bottom:194.805000px;}
.y161{bottom:207.390000px;}
.yd9{bottom:207.405000px;}
.y32{bottom:211.710000px;}
.y5c{bottom:212.430000px;}
.y13a{bottom:212.970000px;}
.y83{bottom:213.510000px;}
.yae{bottom:215.850000px;}
.y10c{bottom:217.485000px;}
.y160{bottom:229.350000px;}
.y31{bottom:231.330000px;}
.yd7{bottom:231.525000px;}
.y5b{bottom:234.210000px;}
.y139{bottom:234.930000px;}
.y82{bottom:235.290000px;}
.yad{bottom:237.810000px;}
.y10b{bottom:239.985000px;}
.y30{bottom:245.910000px;}
.y15f{bottom:251.130000px;}
.y5a{bottom:256.170000px;}
.y138{bottom:256.710000px;}
.y81{bottom:257.430000px;}
.yd6{bottom:258.150000px;}
.yac{bottom:259.590000px;}
.y107{bottom:264.105000px;}
.y15e{bottom:273.090000px;}
.y59{bottom:278.130000px;}
.y137{bottom:278.850000px;}
.y80{bottom:279.390000px;}
.yd5{bottom:280.110000px;}
.yab{bottom:281.550000px;}
.y2f{bottom:287.670000px;}
.y15d{bottom:294.870000px;}
.y58{bottom:299.910000px;}
.y2e{bottom:300.630000px;}
.y136{bottom:300.810000px;}
.y7f{bottom:301.530000px;}
.yd4{bottom:302.070000px;}
.yaa{bottom:303.330000px;}
.y106{bottom:310.530000px;}
.y15c{bottom:316.830000px;}
.yd3{bottom:321.690000px;}
.y57{bottom:321.870000px;}
.y2d{bottom:322.410000px;}
.y135{bottom:322.770000px;}
.y7e{bottom:323.310000px;}
.ya9{bottom:325.290000px;}
.y105{bottom:328.350000px;}
.yd2{bottom:333.030000px;}
.y15b{bottom:338.790000px;}
.y56{bottom:343.650000px;}
.y2c{bottom:344.415000px;}
.y134{bottom:344.775000px;}
.y7d{bottom:345.495000px;}
.ya8{bottom:347.295000px;}
.y104{bottom:350.535000px;}
.yd1{bottom:355.035000px;}
.y15a{bottom:360.615000px;}
.y55{bottom:365.655000px;}
.y2b{bottom:366.195000px;}
.y133{bottom:366.555000px;}
.y7c{bottom:367.635000px;}
.ya7{bottom:369.075000px;}
.y103{bottom:372.315000px;}
.yd0{bottom:376.815000px;}
.y159{bottom:382.575000px;}
.y54{bottom:387.435000px;}
.y2a{bottom:388.155000px;}
.y132{bottom:388.515000px;}
.y7b{bottom:389.775000px;}
.ya6{bottom:391.035000px;}
.y102{bottom:393.195000px;}
.ycf{bottom:398.595000px;}
.y158{bottom:404.355000px;}
.y53{bottom:409.395000px;}
.y29{bottom:410.115000px;}
.y131{bottom:410.295000px;}
.y101{bottom:410.655000px;}
.y7a{bottom:411.555000px;}
.ya5{bottom:412.815000px;}
.yce{bottom:418.575000px;}
.y157{bottom:426.315000px;}
.y130{bottom:429.195000px;}
.y52{bottom:431.175000px;}
.y28{bottom:431.895000px;}
.y100{bottom:432.615000px;}
.y79{bottom:433.875000px;}
.ya4{bottom:434.775000px;}
.ycd{bottom:438.555000px;}
.y156{bottom:448.095000px;}
.y12e{bottom:451.875000px;}
.y51{bottom:453.135000px;}
.y27{bottom:453.855000px;}
.yff{bottom:454.395000px;}
.y78{bottom:455.475000px;}
.ycc{bottom:455.835000px;}
.ya3{bottom:456.555000px;}
.y155{bottom:470.055000px;}
.y50{bottom:474.915000px;}
.y26{bottom:475.635000px;}
.yfe{bottom:476.355000px;}
.y77{bottom:477.435000px;}
.ycb{bottom:478.335000px;}
.ya2{bottom:478.515000px;}
.y154{bottom:491.835000px;}
.y12d{bottom:496.515000px;}
.y4f{bottom:496.875000px;}
.y25{bottom:497.595000px;}
.yfd{bottom:498.315000px;}
.y76{bottom:499.215000px;}
.ya1{bottom:500.295000px;}
.y153{bottom:513.795000px;}
.y75{bottom:517.575000px;}
.y4e{bottom:518.655000px;}
.y24{bottom:519.375000px;}
.yfc{bottom:520.455000px;}
.ya0{bottom:522.435000px;}
.yca{bottom:522.795000px;}
.y152{bottom:535.575000px;}
.y4d{bottom:540.615000px;}
.y12c{bottom:540.975000px;}
.y23{bottom:541.335000px;}
.yfb{bottom:542.415000px;}
.y9f{bottom:544.395000px;}
.yc8{bottom:545.475000px;}
.y74{bottom:556.995000px;}
.y151{bottom:557.535000px;}
.y4c{bottom:562.395000px;}
.y22{bottom:563.115000px;}
.yfa{bottom:564.195000px;}
.y9e{bottom:566.355000px;}
.yc5{bottom:568.155000px;}
.y73{bottom:579.135000px;}
.y150{bottom:579.315000px;}
.y4b{bottom:584.355000px;}
.y21{bottom:585.075000px;}
.y12a{bottom:585.435000px;}
.yf9{bottom:586.155000px;}
.y9d{bottom:588.315000px;}
.y72{bottom:600.915000px;}
.y14f{bottom:601.455000px;}
.y4a{bottom:606.315000px;}
.y20{bottom:606.885000px;}
.yf8{bottom:607.965000px;}
.y9c{bottom:610.485000px;}
.yc4{bottom:616.605000px;}
.y71{bottom:622.905000px;}
.y14e{bottom:623.625000px;}
.y49{bottom:628.125000px;}
.y1f{bottom:628.845000px;}
.yf7{bottom:629.925000px;}
.y9b{bottom:632.445000px;}
.yc3{bottom:638.565000px;}
.y70{bottom:645.045000px;}
.y14d{bottom:645.405000px;}
.y48{bottom:650.085000px;}
.y1e{bottom:650.625000px;}
.yf6{bottom:652.065000px;}
.y9a{bottom:656.925000px;}
.yc2{bottom:660.525000px;}
.y6f{bottom:666.825000px;}
.y14c{bottom:667.365000px;}
.y47{bottom:671.865000px;}
.y1d{bottom:672.585000px;}
.yf5{bottom:673.665000px;}
.y126{bottom:675.105000px;}
.y99{bottom:678.705000px;}
.yc1{bottom:680.505000px;}
.y6e{bottom:688.965000px;}
.y14b{bottom:689.325000px;}
.yc0{bottom:693.285000px;}
.yf4{bottom:693.645000px;}
.y46{bottom:693.825000px;}
.y1c{bottom:694.365000px;}
.y125{bottom:697.245000px;}
.y98{bottom:700.485000px;}
.yf3{bottom:710.925000px;}
.y6d{bottom:711.105000px;}
.ybf{bottom:715.245000px;}
.y45{bottom:715.605000px;}
.y1b{bottom:716.145000px;}
.y124{bottom:719.025000px;}
.y97{bottom:722.265000px;}
.y14a{bottom:733.065000px;}
.yf2{bottom:733.425000px;}
.y6c{bottom:733.605000px;}
.y1a{bottom:736.125000px;}
.ybe{bottom:737.025000px;}
.y44{bottom:737.565000px;}
.y96{bottom:738.825000px;}
.y123{bottom:740.985000px;}
.y95{bottom:741.165000px;}
.y94{bottom:742.965000px;}
.y93{bottom:749.985000px;}
.y149{bottom:754.845000px;}
.y6b{bottom:755.385000px;}
.y19{bottom:756.285000px;}
.ybd{bottom:758.985000px;}
.y43{bottom:759.345000px;}
.y122{bottom:762.765000px;}
.y18{bottom:776.265000px;}
.y148{bottom:776.805000px;}
.y6a{bottom:777.525000px;}
.yf1{bottom:778.065000px;}
.y92{bottom:779.505000px;}
.ybc{bottom:780.765000px;}
.y42{bottom:781.305000px;}
.y121{bottom:784.725000px;}
.y17{bottom:796.245000px;}
.y147{bottom:798.765000px;}
.y69{bottom:799.485000px;}
.yf0{bottom:800.565000px;}
.y91{bottom:801.645000px;}
.ybb{bottom:802.725000px;}
.y41{bottom:803.085000px;}
.y120{bottom:806.505000px;}
.y16{bottom:814.065000px;}
.y146{bottom:820.905000px;}
.y68{bottom:821.265000px;}
.y90{bottom:823.425000px;}
.y15{bottom:823.965000px;}
.yba{bottom:824.505000px;}
.yef{bottom:824.685000px;}
.y40{bottom:825.045000px;}
.y11f{bottom:828.465000px;}
.y145{bottom:843.045000px;}
.y67{bottom:843.225000px;}
.y8f{bottom:845.385000px;}
.y14{bottom:845.745000px;}
.yb9{bottom:846.465000px;}
.y3f{bottom:846.825000px;}
.y11e{bottom:847.185000px;}
.yee{bottom:848.985000px;}
.yed{bottom:860.325000px;}
.y144{bottom:864.825000px;}
.y66{bottom:865.005000px;}
.y8e{bottom:867.525000px;}
.y13{bottom:867.705000px;}
.yb8{bottom:868.245000px;}
.y3e{bottom:868.785000px;}
.y11d{bottom:869.910000px;}
.yec{bottom:882.510000px;}
.y143{bottom:886.830000px;}
.y65{bottom:888.270000px;}
.y8d{bottom:889.350000px;}
.yb7{bottom:890.250000px;}
.y3d{bottom:890.610000px;}
.y63{bottom:890.790000px;}
.y11c{bottom:892.410000px;}
.y12{bottom:892.590000px;}
.y62{bottom:900.330000px;}
.yeb{bottom:904.290000px;}
.y142{bottom:905.370000px;}
.y8c{bottom:911.310000px;}
.yb6{bottom:912.210000px;}
.y141{bottom:912.390000px;}
.y3c{bottom:912.570000px;}
.y64{bottom:912.750000px;}
.y11{bottom:914.190000px;}
.y11b{bottom:915.090000px;}
.yea{bottom:924.630000px;}
.y8b{bottom:933.270000px;}
.y10{bottom:934.170000px;}
.y3b{bottom:934.530000px;}
.y11a{bottom:937.770000px;}
.ye9{bottom:939.030000px;}
.yf{bottom:954.330000px;}
.y8a{bottom:955.410000px;}
.yb5{bottom:956.130000px;}
.y3a{bottom:956.310000px;}
.ye8{bottom:960.810000px;}
.y119{bottom:964.230000px;}
.ye{bottom:974.310000px;}
.y89{bottom:977.550000px;}
.yb4{bottom:977.910000px;}
.y39{bottom:978.270000px;}
.ye7{bottom:982.770000px;}
.y118{bottom:986.370000px;}
.yd{bottom:994.470000px;}
.y88{bottom:999.690000px;}
.yb3{bottom:999.870000px;}
.y38{bottom:1000.050000px;}
.ye6{bottom:1004.910000px;}
.y117{bottom:1008.150000px;}
.yc{bottom:1012.110000px;}
.y87{bottom:1021.650000px;}
.yb{bottom:1022.010000px;}
.ye5{bottom:1026.870000px;}
.y116{bottom:1028.130000px;}
.y115{bottom:1041.090000px;}
.y140{bottom:1043.610000px;}
.ya{bottom:1043.790000px;}
.ye4{bottom:1047.930000px;}
.y114{bottom:1063.050000px;}
.ye3{bottom:1065.390000px;}
.y9{bottom:1065.750000px;}
.ye2{bottom:1087.350000px;}
.y8{bottom:1087.530000px;}
.y7{bottom:1109.490000px;}
.y6{bottom:1131.270000px;}
.y5{bottom:1153.980000px;}
.y1{bottom:1169.280000px;}
.y4{bottom:1174.140000px;}
.y3{bottom:1194.300000px;}
.h26{height:9.359297px;}
.h6{height:18.168047px;}
.h18{height:21.765000px;}
.h1a{height:21.772500px;}
.h1e{height:21.780000px;}
.h16{height:21.945000px;}
.h21{height:21.952500px;}
.h1d{height:21.960000px;}
.ha{height:23.122969px;}
.h8{height:27.527344px;}
.h1c{height:31.931719px;}
.h2{height:32.940000px;}
.h22{height:40.500000px;}
.h1b{height:41.291016px;}
.h20{height:43.005000px;}
.h17{height:43.725000px;}
.h19{height:43.732500px;}
.h1f{height:43.740000px;}
.h15{height:43.770000px;}
.h25{height:43.905000px;}
.h7{height:50.650312px;}
.h5{height:55.054688px;}
.h4{height:65.884219px;}
.h27{height:74.004654px;}
.h9{height:80.703984px;}
.h3{height:83.306602px;}
.hb{height:103.113281px;}
.h24{height:103.294687px;}
.h10{height:105.993281px;}
.hd{height:108.153281px;}
.h14{height:139.504219px;}
.h11{height:143.824219px;}
.hf{height:148.473281px;}
.hc{height:149.193281px;}
.h23{height:157.833281px;}
.h12{height:165.424219px;}
.h13{height:180.544219px;}
.he{height:190.233281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:91.785000px;}
.w7{width:91.821000px;}
.w8{width:91.830000px;}
.w5{width:91.836000px;}
.w3{width:107.449500px;}
.w4{width:116.121000px;}
.wb{width:128.685000px;}
.wa{width:128.700000px;}
.w9{width:128.721000px;}
.wc{width:128.730000px;}
.wd{width:161.115000px;}
.we{width:161.130000px;}
.wf{width:248.959500px;}
.w10{width:450.465000px;}
.w2{width:718.020000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.x1d{left:7.729500px;}
.x2c{left:18.360000px;}
.x2b{left:27.705000px;}
.x2d{left:43.740000px;}
.x31{left:69.300000px;}
.x1c{left:119.926500px;}
.x1{left:127.080000px;}
.x23{left:132.336000px;}
.x24{left:154.845000px;}
.x37{left:170.130000px;}
.x2e{left:178.050000px;}
.x11{left:180.750000px;}
.x34{left:184.530000px;}
.x3{left:195.510000px;}
.x29{left:201.630000px;}
.x1e{left:228.105000px;}
.x4{left:232.770000px;}
.x1b{left:236.010000px;}
.xd{left:267.375000px;}
.x25{left:284.475000px;}
.x35{left:293.115000px;}
.x30{left:316.875000px;}
.x2f{left:334.695000px;}
.x1f{left:344.955000px;}
.x2a{left:361.875000px;}
.x36{left:369.615000px;}
.x9{left:381.495000px;}
.x12{left:385.095000px;}
.xa{left:391.935000px;}
.xc{left:398.775000px;}
.x26{left:414.120000px;}
.x16{left:427.245000px;}
.x17{left:437.685000px;}
.xf{left:449.385000px;}
.x14{left:455.505000px;}
.x13{left:470.805000px;}
.x18{left:474.585000px;}
.x32{left:478.920000px;}
.x8{left:503.925000px;}
.x5{left:505.005000px;}
.x15{left:513.465000px;}
.x20{left:530.040000px;}
.x27{left:543.720000px;}
.x19{left:548.385000px;}
.x21{left:622.590000px;}
.x7{left:632.850000px;}
.x10{left:638.250000px;}
.x33{left:640.950000px;}
.xe{left:670.290000px;}
.x28{left:673.350000px;}
.x22{left:715.110000px;}
.xb{left:718.710000px;}
.x1a{left:756.360000px;}
.x6{left:829.440000px;}
@media print{
.va{vertical-align:-99.840000pt;}
.vc{vertical-align:-73.600000pt;}
.v7{vertical-align:-34.560000pt;}
.v9{vertical-align:-26.240000pt;}
.v4{vertical-align:-17.920000pt;}
.v8{vertical-align:-15.360000pt;}
.vd{vertical-align:-12.800000pt;}
.v15{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.v3{vertical-align:4.480000pt;}
.ve{vertical-align:12.800000pt;}
.v14{vertical-align:23.680000pt;}
.v11{vertical-align:31.360000pt;}
.vb{vertical-align:34.560000pt;}
.v13{vertical-align:39.680000pt;}
.v2{vertical-align:40.960000pt;}
.v5{vertical-align:42.240000pt;}
.vf{vertical-align:43.520000pt;}
.v12{vertical-align:44.800000pt;}
.v16{vertical-align:48.640000pt;}
.v6{vertical-align:53.120000pt;}
.v10{vertical-align:62.720000pt;}
.ls35{letter-spacing:-0.896000pt;}
.ls33{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:-0.327467pt;}
.ls22{letter-spacing:-0.270933pt;}
.ls32{letter-spacing:-0.267733pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.246400pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.191467pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.896000pt;}
.ls13{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.024000pt;}
.ls1d{letter-spacing:1.088000pt;}
.ls11{letter-spacing:1.344000pt;}
.ls21{letter-spacing:1.408000pt;}
.ls10{letter-spacing:1.600000pt;}
.ls2e{letter-spacing:1.728000pt;}
.ls20{letter-spacing:1.792000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls26{letter-spacing:2.026667pt;}
.lsc{letter-spacing:2.112000pt;}
.ls2c{letter-spacing:2.176000pt;}
.lsf{letter-spacing:2.304000pt;}
.ls2f{letter-spacing:2.720640pt;}
.ls17{letter-spacing:3.046400pt;}
.ls1a{letter-spacing:3.072000pt;}
.ls2a{letter-spacing:3.424000pt;}
.ls28{letter-spacing:3.656960pt;}
.ls1c{letter-spacing:3.686400pt;}
.ls2b{letter-spacing:3.774080pt;}
.ls29{letter-spacing:4.668160pt;}
.ls27{letter-spacing:17.600000pt;}
.ls16{letter-spacing:18.406400pt;}
.ls1f{letter-spacing:18.595840pt;}
.ls31{letter-spacing:20.992000pt;}
.ls1e{letter-spacing:23.552000pt;}
.ls2d{letter-spacing:33.792000pt;}
.ls9{letter-spacing:51.840000pt;}
.ls34{letter-spacing:69.226667pt;}
.lsa{letter-spacing:220.156160pt;}
.lse{letter-spacing:606.752000pt;}
.ls15{letter-spacing:631.712000pt;}
.ls0{letter-spacing:2091.086933pt;}
.wsc{word-spacing:-52.352000pt;}
.ws5{word-spacing:-23.424000pt;}
.ws7{word-spacing:-22.912000pt;}
.ws6{word-spacing:-22.784000pt;}
.wsd{word-spacing:-22.720000pt;}
.ws9{word-spacing:-22.656000pt;}
.ws2{word-spacing:-22.528000pt;}
.wsb{word-spacing:-22.464000pt;}
.ws8{word-spacing:-22.400000pt;}
.wsa{word-spacing:-22.336000pt;}
.ws4{word-spacing:-22.272000pt;}
.ws1{word-spacing:-21.888000pt;}
.ws0{word-spacing:-20.398293pt;}
.wse{word-spacing:-15.093760pt;}
.wsf{word-spacing:-14.826027pt;}
.ws3{word-spacing:0.000000pt;}
._25{margin-left:-10.189440pt;}
._28{margin-left:-5.397760pt;}
._24{margin-left:-3.776000pt;}
._0{margin-left:-1.145813pt;}
._5{width:1.209813pt;}
._e{width:2.128853pt;}
._8{width:3.648000pt;}
._9{width:5.071147pt;}
._a{width:6.400000pt;}
._f{width:8.006187pt;}
._12{width:9.368320pt;}
._1{width:10.535680pt;}
._1b{width:11.434667pt;}
._19{width:12.992000pt;}
._1a{width:14.272000pt;}
._1e{width:15.168000pt;}
._1f{width:16.128000pt;}
._7{width:17.188480pt;}
._6{width:18.154667pt;}
._10{width:19.477333pt;}
._11{width:20.407040pt;}
._1c{width:21.568000pt;}
._15{width:23.808000pt;}
._16{width:24.960000pt;}
._20{width:26.177707pt;}
._22{width:28.224000pt;}
._c{width:29.376000pt;}
._d{width:30.592000pt;}
._21{width:32.384000pt;}
._2d{width:34.112000pt;}
._13{width:35.392000pt;}
._14{width:36.635520pt;}
._b{width:37.546667pt;}
._23{width:39.029333pt;}
._2b{width:40.800000pt;}
._2c{width:42.224853pt;}
._17{width:43.914667pt;}
._2e{width:44.981333pt;}
._27{width:46.862720pt;}
._1d{width:47.808000pt;}
._18{width:48.832000pt;}
._2f{width:49.792000pt;}
._30{width:51.381333pt;}
._32{width:55.353813pt;}
._26{width:56.774187pt;}
._31{width:57.739733pt;}
._2a{width:62.912000pt;}
._29{width:86.912000pt;}
._34{width:98.464000pt;}
._33{width:99.424000pt;}
._4{width:156.058027pt;}
._3{width:171.706453pt;}
._2{width:173.311573pt;}
._35{width:285.664000pt;}
._37{width:770.105813pt;}
._36{width:771.594667pt;}
.fsb{font-size:10.880000pt;}
.fs3{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:72.320000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y129{bottom:0.320000pt;}
.ydb{bottom:3.346667pt;}
.ye0{bottom:3.353333pt;}
.yc7{bottom:3.360000pt;}
.yd8{bottom:3.506667pt;}
.y110{bottom:3.508000pt;}
.yde{bottom:3.513333pt;}
.yc9{bottom:3.520000pt;}
.y10a{bottom:3.666667pt;}
.y2{bottom:10.400000pt;}
.y128{bottom:11.040000pt;}
.y127{bottom:20.000000pt;}
.y108{bottom:22.226667pt;}
.ydd{bottom:22.868000pt;}
.yc6{bottom:22.880000pt;}
.y12b{bottom:22.906667pt;}
.y109{bottom:23.026667pt;}
.y12f{bottom:23.040000pt;}
.y113{bottom:82.112000pt;}
.y166{bottom:87.232000pt;}
.ye1{bottom:89.472000pt;}
.y37{bottom:90.912000pt;}
.y61{bottom:91.552000pt;}
.y13f{bottom:91.872000pt;}
.y112{bottom:99.872000pt;}
.ydf{bottom:104.678667pt;}
.y165{bottom:106.592000pt;}
.y36{bottom:110.432000pt;}
.y60{bottom:111.072000pt;}
.y13e{bottom:111.392000pt;}
.yb2{bottom:114.112000pt;}
.y111{bottom:117.632000pt;}
.ydc{bottom:124.678667pt;}
.y164{bottom:126.112000pt;}
.y35{bottom:129.792000pt;}
.y5f{bottom:130.432000pt;}
.y13d{bottom:130.752000pt;}
.y86{bottom:131.232000pt;}
.y10f{bottom:132.838667pt;}
.yb1{bottom:133.626667pt;}
.y163{bottom:145.466667pt;}
.y34{bottom:149.306667pt;}
.y5e{bottom:149.946667pt;}
.y13c{bottom:150.426667pt;}
.y85{bottom:150.906667pt;}
.yb0{bottom:152.986667pt;}
.y10e{bottom:153.000000pt;}
.yda{bottom:164.360000pt;}
.y162{bottom:164.986667pt;}
.y33{bottom:168.666667pt;}
.y5d{bottom:169.306667pt;}
.y13b{bottom:169.946667pt;}
.y84{bottom:170.266667pt;}
.yaf{bottom:172.506667pt;}
.y10d{bottom:173.160000pt;}
.y161{bottom:184.346667pt;}
.yd9{bottom:184.360000pt;}
.y32{bottom:188.186667pt;}
.y5c{bottom:188.826667pt;}
.y13a{bottom:189.306667pt;}
.y83{bottom:189.786667pt;}
.yae{bottom:191.866667pt;}
.y10c{bottom:193.320000pt;}
.y160{bottom:203.866667pt;}
.y31{bottom:205.626667pt;}
.yd7{bottom:205.800000pt;}
.y5b{bottom:208.186667pt;}
.y139{bottom:208.826667pt;}
.y82{bottom:209.146667pt;}
.yad{bottom:211.386667pt;}
.y10b{bottom:213.320000pt;}
.y30{bottom:218.586667pt;}
.y15f{bottom:223.226667pt;}
.y5a{bottom:227.706667pt;}
.y138{bottom:228.186667pt;}
.y81{bottom:228.826667pt;}
.yd6{bottom:229.466667pt;}
.yac{bottom:230.746667pt;}
.y107{bottom:234.760000pt;}
.y15e{bottom:242.746667pt;}
.y59{bottom:247.226667pt;}
.y137{bottom:247.866667pt;}
.y80{bottom:248.346667pt;}
.yd5{bottom:248.986667pt;}
.yab{bottom:250.266667pt;}
.y2f{bottom:255.706667pt;}
.y15d{bottom:262.106667pt;}
.y58{bottom:266.586667pt;}
.y2e{bottom:267.226667pt;}
.y136{bottom:267.386667pt;}
.y7f{bottom:268.026667pt;}
.yd4{bottom:268.506667pt;}
.yaa{bottom:269.626667pt;}
.y106{bottom:276.026667pt;}
.y15c{bottom:281.626667pt;}
.yd3{bottom:285.946667pt;}
.y57{bottom:286.106667pt;}
.y2d{bottom:286.586667pt;}
.y135{bottom:286.906667pt;}
.y7e{bottom:287.386667pt;}
.ya9{bottom:289.146667pt;}
.y105{bottom:291.866667pt;}
.yd2{bottom:296.026667pt;}
.y15b{bottom:301.146667pt;}
.y56{bottom:305.466667pt;}
.y2c{bottom:306.146667pt;}
.y134{bottom:306.466667pt;}
.y7d{bottom:307.106667pt;}
.ya8{bottom:308.706667pt;}
.y104{bottom:311.586667pt;}
.yd1{bottom:315.586667pt;}
.y15a{bottom:320.546667pt;}
.y55{bottom:325.026667pt;}
.y2b{bottom:325.506667pt;}
.y133{bottom:325.826667pt;}
.y7c{bottom:326.786667pt;}
.ya7{bottom:328.066667pt;}
.y103{bottom:330.946667pt;}
.yd0{bottom:334.946667pt;}
.y159{bottom:340.066667pt;}
.y54{bottom:344.386667pt;}
.y2a{bottom:345.026667pt;}
.y132{bottom:345.346667pt;}
.y7b{bottom:346.466667pt;}
.ya6{bottom:347.586667pt;}
.y102{bottom:349.506667pt;}
.ycf{bottom:354.306667pt;}
.y158{bottom:359.426667pt;}
.y53{bottom:363.906667pt;}
.y29{bottom:364.546667pt;}
.y131{bottom:364.706667pt;}
.y101{bottom:365.026667pt;}
.y7a{bottom:365.826667pt;}
.ya5{bottom:366.946667pt;}
.yce{bottom:372.066667pt;}
.y157{bottom:378.946667pt;}
.y130{bottom:381.506667pt;}
.y52{bottom:383.266667pt;}
.y28{bottom:383.906667pt;}
.y100{bottom:384.546667pt;}
.y79{bottom:385.666667pt;}
.ya4{bottom:386.466667pt;}
.ycd{bottom:389.826667pt;}
.y156{bottom:398.306667pt;}
.y12e{bottom:401.666667pt;}
.y51{bottom:402.786667pt;}
.y27{bottom:403.426667pt;}
.yff{bottom:403.906667pt;}
.y78{bottom:404.866667pt;}
.ycc{bottom:405.186667pt;}
.ya3{bottom:405.826667pt;}
.y155{bottom:417.826667pt;}
.y50{bottom:422.146667pt;}
.y26{bottom:422.786667pt;}
.yfe{bottom:423.426667pt;}
.y77{bottom:424.386667pt;}
.ycb{bottom:425.186667pt;}
.ya2{bottom:425.346667pt;}
.y154{bottom:437.186667pt;}
.y12d{bottom:441.346667pt;}
.y4f{bottom:441.666667pt;}
.y25{bottom:442.306667pt;}
.yfd{bottom:442.946667pt;}
.y76{bottom:443.746667pt;}
.ya1{bottom:444.706667pt;}
.y153{bottom:456.706667pt;}
.y75{bottom:460.066667pt;}
.y4e{bottom:461.026667pt;}
.y24{bottom:461.666667pt;}
.yfc{bottom:462.626667pt;}
.ya0{bottom:464.386667pt;}
.yca{bottom:464.706667pt;}
.y152{bottom:476.066667pt;}
.y4d{bottom:480.546667pt;}
.y12c{bottom:480.866667pt;}
.y23{bottom:481.186667pt;}
.yfb{bottom:482.146667pt;}
.y9f{bottom:483.906667pt;}
.yc8{bottom:484.866667pt;}
.y74{bottom:495.106667pt;}
.y151{bottom:495.586667pt;}
.y4c{bottom:499.906667pt;}
.y22{bottom:500.546667pt;}
.yfa{bottom:501.506667pt;}
.y9e{bottom:503.426667pt;}
.yc5{bottom:505.026667pt;}
.y73{bottom:514.786667pt;}
.y150{bottom:514.946667pt;}
.y4b{bottom:519.426667pt;}
.y21{bottom:520.066667pt;}
.y12a{bottom:520.386667pt;}
.yf9{bottom:521.026667pt;}
.y9d{bottom:522.946667pt;}
.y72{bottom:534.146667pt;}
.y14f{bottom:534.626667pt;}
.y4a{bottom:538.946667pt;}
.y20{bottom:539.453333pt;}
.yf8{bottom:540.413333pt;}
.y9c{bottom:542.653333pt;}
.yc4{bottom:548.093333pt;}
.y71{bottom:553.693333pt;}
.y14e{bottom:554.333333pt;}
.y49{bottom:558.333333pt;}
.y1f{bottom:558.973333pt;}
.yf7{bottom:559.933333pt;}
.y9b{bottom:562.173333pt;}
.yc3{bottom:567.613333pt;}
.y70{bottom:573.373333pt;}
.y14d{bottom:573.693333pt;}
.y48{bottom:577.853333pt;}
.y1e{bottom:578.333333pt;}
.yf6{bottom:579.613333pt;}
.y9a{bottom:583.933333pt;}
.yc2{bottom:587.133333pt;}
.y6f{bottom:592.733333pt;}
.y14c{bottom:593.213333pt;}
.y47{bottom:597.213333pt;}
.y1d{bottom:597.853333pt;}
.yf5{bottom:598.813333pt;}
.y126{bottom:600.093333pt;}
.y99{bottom:603.293333pt;}
.yc1{bottom:604.893333pt;}
.y6e{bottom:612.413333pt;}
.y14b{bottom:612.733333pt;}
.yc0{bottom:616.253333pt;}
.yf4{bottom:616.573333pt;}
.y46{bottom:616.733333pt;}
.y1c{bottom:617.213333pt;}
.y125{bottom:619.773333pt;}
.y98{bottom:622.653333pt;}
.yf3{bottom:631.933333pt;}
.y6d{bottom:632.093333pt;}
.ybf{bottom:635.773333pt;}
.y45{bottom:636.093333pt;}
.y1b{bottom:636.573333pt;}
.y124{bottom:639.133333pt;}
.y97{bottom:642.013333pt;}
.y14a{bottom:651.613333pt;}
.yf2{bottom:651.933333pt;}
.y6c{bottom:652.093333pt;}
.y1a{bottom:654.333333pt;}
.ybe{bottom:655.133333pt;}
.y44{bottom:655.613333pt;}
.y96{bottom:656.733333pt;}
.y123{bottom:658.653333pt;}
.y95{bottom:658.813333pt;}
.y94{bottom:660.413333pt;}
.y93{bottom:666.653333pt;}
.y149{bottom:670.973333pt;}
.y6b{bottom:671.453333pt;}
.y19{bottom:672.253333pt;}
.ybd{bottom:674.653333pt;}
.y43{bottom:674.973333pt;}
.y122{bottom:678.013333pt;}
.y18{bottom:690.013333pt;}
.y148{bottom:690.493333pt;}
.y6a{bottom:691.133333pt;}
.yf1{bottom:691.613333pt;}
.y92{bottom:692.893333pt;}
.ybc{bottom:694.013333pt;}
.y42{bottom:694.493333pt;}
.y121{bottom:697.533333pt;}
.y17{bottom:707.773333pt;}
.y147{bottom:710.013333pt;}
.y69{bottom:710.653333pt;}
.yf0{bottom:711.613333pt;}
.y91{bottom:712.573333pt;}
.ybb{bottom:713.533333pt;}
.y41{bottom:713.853333pt;}
.y120{bottom:716.893333pt;}
.y16{bottom:723.613333pt;}
.y146{bottom:729.693333pt;}
.y68{bottom:730.013333pt;}
.y90{bottom:731.933333pt;}
.y15{bottom:732.413333pt;}
.yba{bottom:732.893333pt;}
.yef{bottom:733.053333pt;}
.y40{bottom:733.373333pt;}
.y11f{bottom:736.413333pt;}
.y145{bottom:749.373333pt;}
.y67{bottom:749.533333pt;}
.y8f{bottom:751.453333pt;}
.y14{bottom:751.773333pt;}
.yb9{bottom:752.413333pt;}
.y3f{bottom:752.733333pt;}
.y11e{bottom:753.053333pt;}
.yee{bottom:754.653333pt;}
.yed{bottom:764.733333pt;}
.y144{bottom:768.733333pt;}
.y66{bottom:768.893333pt;}
.y8e{bottom:771.133333pt;}
.y13{bottom:771.293333pt;}
.yb8{bottom:771.773333pt;}
.y3e{bottom:772.253333pt;}
.y11d{bottom:773.253333pt;}
.yec{bottom:784.453333pt;}
.y143{bottom:788.293333pt;}
.y65{bottom:789.573333pt;}
.y8d{bottom:790.533333pt;}
.yb7{bottom:791.333333pt;}
.y3d{bottom:791.653333pt;}
.y63{bottom:791.813333pt;}
.y11c{bottom:793.253333pt;}
.y12{bottom:793.413333pt;}
.y62{bottom:800.293333pt;}
.yeb{bottom:803.813333pt;}
.y142{bottom:804.773333pt;}
.y8c{bottom:810.053333pt;}
.yb6{bottom:810.853333pt;}
.y141{bottom:811.013333pt;}
.y3c{bottom:811.173333pt;}
.y64{bottom:811.333333pt;}
.y11{bottom:812.613333pt;}
.y11b{bottom:813.413333pt;}
.yea{bottom:821.893333pt;}
.y8b{bottom:829.573333pt;}
.y10{bottom:830.373333pt;}
.y3b{bottom:830.693333pt;}
.y11a{bottom:833.573333pt;}
.ye9{bottom:834.693333pt;}
.yf{bottom:848.293333pt;}
.y8a{bottom:849.253333pt;}
.yb5{bottom:849.893333pt;}
.y3a{bottom:850.053333pt;}
.ye8{bottom:854.053333pt;}
.y119{bottom:857.093333pt;}
.ye{bottom:866.053333pt;}
.y89{bottom:868.933333pt;}
.yb4{bottom:869.253333pt;}
.y39{bottom:869.573333pt;}
.ye7{bottom:873.573333pt;}
.y118{bottom:876.773333pt;}
.yd{bottom:883.973333pt;}
.y88{bottom:888.613333pt;}
.yb3{bottom:888.773333pt;}
.y38{bottom:888.933333pt;}
.ye6{bottom:893.253333pt;}
.y117{bottom:896.133333pt;}
.yc{bottom:899.653333pt;}
.y87{bottom:908.133333pt;}
.yb{bottom:908.453333pt;}
.ye5{bottom:912.773333pt;}
.y116{bottom:913.893333pt;}
.y115{bottom:925.413333pt;}
.y140{bottom:927.653333pt;}
.ya{bottom:927.813333pt;}
.ye4{bottom:931.493333pt;}
.y114{bottom:944.933333pt;}
.ye3{bottom:947.013333pt;}
.y9{bottom:947.333333pt;}
.ye2{bottom:966.533333pt;}
.y8{bottom:966.693333pt;}
.y7{bottom:986.213333pt;}
.y6{bottom:1005.573333pt;}
.y5{bottom:1025.760000pt;}
.y1{bottom:1039.360000pt;}
.y4{bottom:1043.680000pt;}
.y3{bottom:1061.600000pt;}
.h26{height:8.319375pt;}
.h6{height:16.149375pt;}
.h18{height:19.346667pt;}
.h1a{height:19.353333pt;}
.h1e{height:19.360000pt;}
.h16{height:19.506667pt;}
.h21{height:19.513333pt;}
.h1d{height:19.520000pt;}
.ha{height:20.553750pt;}
.h8{height:24.468750pt;}
.h1c{height:28.383750pt;}
.h2{height:29.280000pt;}
.h22{height:36.000000pt;}
.h1b{height:36.703125pt;}
.h20{height:38.226667pt;}
.h17{height:38.866667pt;}
.h19{height:38.873333pt;}
.h1f{height:38.880000pt;}
.h15{height:38.906667pt;}
.h25{height:39.026667pt;}
.h7{height:45.022500pt;}
.h5{height:48.937500pt;}
.h4{height:58.563750pt;}
.h27{height:65.781915pt;}
.h9{height:71.736875pt;}
.h3{height:74.050313pt;}
.hb{height:91.656250pt;}
.h24{height:91.817500pt;}
.h10{height:94.216250pt;}
.hd{height:96.136250pt;}
.h14{height:124.003750pt;}
.h11{height:127.843750pt;}
.hf{height:131.976250pt;}
.hc{height:132.616250pt;}
.h23{height:140.296250pt;}
.h12{height:147.043750pt;}
.h13{height:160.483750pt;}
.he{height:169.096250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:81.586667pt;}
.w7{width:81.618667pt;}
.w8{width:81.626667pt;}
.w5{width:81.632000pt;}
.w3{width:95.510667pt;}
.w4{width:103.218667pt;}
.wb{width:114.386667pt;}
.wa{width:114.400000pt;}
.w9{width:114.418667pt;}
.wc{width:114.426667pt;}
.wd{width:143.213333pt;}
.we{width:143.226667pt;}
.wf{width:221.297333pt;}
.w10{width:400.413333pt;}
.w2{width:638.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.x1d{left:6.870667pt;}
.x2c{left:16.320000pt;}
.x2b{left:24.626667pt;}
.x2d{left:38.880000pt;}
.x31{left:61.600000pt;}
.x1c{left:106.601333pt;}
.x1{left:112.960000pt;}
.x23{left:117.632000pt;}
.x24{left:137.640000pt;}
.x37{left:151.226667pt;}
.x2e{left:158.266667pt;}
.x11{left:160.666667pt;}
.x34{left:164.026667pt;}
.x3{left:173.786667pt;}
.x29{left:179.226667pt;}
.x1e{left:202.760000pt;}
.x4{left:206.906667pt;}
.x1b{left:209.786667pt;}
.xd{left:237.666667pt;}
.x25{left:252.866667pt;}
.x35{left:260.546667pt;}
.x30{left:281.666667pt;}
.x2f{left:297.506667pt;}
.x1f{left:306.626667pt;}
.x2a{left:321.666667pt;}
.x36{left:328.546667pt;}
.x9{left:339.106667pt;}
.x12{left:342.306667pt;}
.xa{left:348.386667pt;}
.xc{left:354.466667pt;}
.x26{left:368.106667pt;}
.x16{left:379.773333pt;}
.x17{left:389.053333pt;}
.xf{left:399.453333pt;}
.x14{left:404.893333pt;}
.x13{left:418.493333pt;}
.x18{left:421.853333pt;}
.x32{left:425.706667pt;}
.x8{left:447.933333pt;}
.x5{left:448.893333pt;}
.x15{left:456.413333pt;}
.x20{left:471.146667pt;}
.x27{left:483.306667pt;}
.x19{left:487.453333pt;}
.x21{left:553.413333pt;}
.x7{left:562.533333pt;}
.x10{left:567.333333pt;}
.x33{left:569.733333pt;}
.xe{left:595.813333pt;}
.x28{left:598.533333pt;}
.x22{left:635.653333pt;}
.xb{left:638.853333pt;}
.x1a{left:672.320000pt;}
.x6{left:737.280000pt;}
}




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