
    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_3e4c4544aa60ef24e20ebe54.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ec218cb74822e137d5a89a42.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_13ab0b702e7d3147b79c34a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_972a327d2f060914bdbcc68c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5b8ac67e37db5a08e0214b63.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a6431075232c3925fcb2fa86.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.909180;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_b57b335669f78c5a9a54d345.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8031a8721e9ad60374842bf1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2809896b1ab725fb47c49c88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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);}
.v6{vertical-align:-28.800000px;}
.v7{vertical-align:-27.000000px;}
.v3{vertical-align:-17.400000px;}
.v1{vertical-align:-14.400000px;}
.vb{vertical-align:-4.200000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.400000px;}
.v2{vertical-align:14.400000px;}
.v9{vertical-align:48.000000px;}
.va{vertical-align:50.400000px;}
.v8{vertical-align:54.600000px;}
.v4{vertical-align:91.800000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls19{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.168000px;}
.ls17{letter-spacing:-0.024000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls1a{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.132000px;}
.ls10{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.150000px;}
.ls33{letter-spacing:0.168000px;}
.lsd{letter-spacing:0.174000px;}
.ls12{letter-spacing:0.192000px;}
.lsb{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.276000px;}
.ls30{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls15{letter-spacing:0.384000px;}
.ls31{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.624000px;}
.lsf{letter-spacing:0.684000px;}
.ls1f{letter-spacing:1.272000px;}
.ls1e{letter-spacing:2.376000px;}
.lse{letter-spacing:2.400000px;}
.ls2c{letter-spacing:2.436000px;}
.ls27{letter-spacing:2.967000px;}
.ls2e{letter-spacing:4.299000px;}
.ls2f{letter-spacing:4.560000px;}
.ls26{letter-spacing:5.520000px;}
.ls2b{letter-spacing:8.400000px;}
.ls28{letter-spacing:9.600000px;}
.ls1d{letter-spacing:11.928000px;}
.ls21{letter-spacing:12.108000px;}
.ls2d{letter-spacing:18.000000px;}
.ls1c{letter-spacing:20.196000px;}
.ls29{letter-spacing:20.439000px;}
.ls2a{letter-spacing:20.700000px;}
.ls24{letter-spacing:22.767000px;}
.ls20{letter-spacing:24.360000px;}
.ls1b{letter-spacing:24.960000px;}
.ls22{letter-spacing:43.071000px;}
.ls25{letter-spacing:67.416000px;}
.ls34{letter-spacing:102.384000px;}
.ls32{letter-spacing:138.384000px;}
.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:-18.600000px;}
.wse{word-spacing:-18.384000px;}
.wsb{word-spacing:-18.192000px;}
.ws1e{word-spacing:-18.168000px;}
.ws10{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.976000px;}
.wsd{word-spacing:-17.832000px;}
.wsf{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.400000px;}
.ws1a{word-spacing:-16.128000px;}
.ws14{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.624000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws15{word-spacing:-11.220000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsa{word-spacing:0.000000px;}
.ws19{word-spacing:5.340000px;}
.ws17{word-spacing:8.940000px;}
.ws1d{word-spacing:9.600000px;}
.ws1c{word-spacing:13.140000px;}
.ws16{word-spacing:99.651000px;}
.ws1b{word-spacing:324.051000px;}
.ws18{word-spacing:474.171000px;}
._5f{margin-left:-17.682000px;}
._5d{margin-left:-12.216000px;}
._d{margin-left:-4.260000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._7{width:3.024000px;}
._8{width:4.398000px;}
._6{width:6.264000px;}
._4{width:7.560000px;}
._3c{width:8.706000px;}
._9{width:9.720000px;}
._a{width:10.872000px;}
._2e{width:12.690000px;}
._e{width:14.040000px;}
._65{width:15.078000px;}
._5{width:16.128000px;}
._56{width:17.508000px;}
._36{width:19.080000px;}
._b{width:20.448000px;}
._c{width:21.468000px;}
._11{width:23.328000px;}
._12{width:24.582000px;}
._f{width:26.496000px;}
._10{width:27.852000px;}
._32{width:29.022000px;}
._3a{width:30.048000px;}
._3b{width:31.140000px;}
._22{width:32.616000px;}
._37{width:34.320000px;}
._1a{width:35.424000px;}
._13{width:36.792000px;}
._44{width:37.800000px;}
._17{width:39.528000px;}
._18{width:40.680000px;}
._23{width:41.904000px;}
._24{width:43.416000px;}
._3f{width:44.430000px;}
._1c{width:45.864000px;}
._41{width:47.016000px;}
._21{width:48.312000px;}
._25{width:50.280000px;}
._20{width:51.336000px;}
._47{width:52.398000px;}
._16{width:53.496000px;}
._33{width:54.960000px;}
._14{width:56.016000px;}
._63{width:57.024000px;}
._2d{width:58.146000px;}
._2c{width:59.166000px;}
._1b{width:60.552000px;}
._45{width:61.848000px;}
._15{width:63.150000px;}
._28{width:65.118000px;}
._2b{width:66.672000px;}
._5c{width:67.680000px;}
._29{width:68.784000px;}
._2a{width:70.092000px;}
._1e{width:72.000000px;}
._1f{width:73.152000px;}
._4a{width:74.232000px;}
._1d{width:75.888000px;}
._50{width:76.896000px;}
._4d{width:77.904000px;}
._4e{width:78.912000px;}
._42{width:80.682000px;}
._2f{width:81.822000px;}
._46{width:83.664000px;}
._30{width:85.398000px;}
._31{width:86.664000px;}
._5e{width:87.690000px;}
._3d{width:88.854000px;}
._35{width:90.252000px;}
._43{width:91.800000px;}
._60{width:96.576000px;}
._58{width:98.832000px;}
._38{width:100.392000px;}
._39{width:101.616000px;}
._26{width:104.076000px;}
._27{width:105.468000px;}
._67{width:107.484000px;}
._6b{width:111.096000px;}
._69{width:112.752000px;}
._54{width:116.928000px;}
._48{width:120.384000px;}
._68{width:121.464000px;}
._62{width:125.424000px;}
._61{width:126.504000px;}
._64{width:129.360000px;}
._52{width:133.992000px;}
._53{width:135.504000px;}
._49{width:137.088000px;}
._19{width:138.240000px;}
._4f{width:139.248000px;}
._66{width:141.120000px;}
._34{width:143.028000px;}
._3e{width:147.648000px;}
._51{width:158.328000px;}
._4b{width:167.256000px;}
._4c{width:168.408000px;}
._6a{width:170.856000px;}
._5b{width:173.952000px;}
._40{width:176.832000px;}
._6e{width:185.616000px;}
._57{width:191.511000px;}
._6c{width:200.112000px;}
._6d{width:201.120000px;}
._6f{width:234.504000px;}
._72{width:245.790000px;}
._59{width:339.147000px;}
._55{width:425.271000px;}
._70{width:465.696000px;}
._71{width:475.992000px;}
._5a{width:489.696000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.yf2{bottom:3.300000px;}
.y115{bottom:3.750000px;}
.y119{bottom:3.765000px;}
.y28{bottom:3.900000px;}
.yf1{bottom:4.215000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y112{bottom:11.850000px;}
.y116{bottom:13.200000px;}
.y11a{bottom:13.215000px;}
.y100{bottom:14.250000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y114{bottom:22.650000px;}
.y118{bottom:22.665000px;}
.y27{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y26{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y25{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y24{bottom:86.700000px;}
.y3c{bottom:105.487500px;}
.y110{bottom:106.237500px;}
.y23{bottom:107.400000px;}
.yef{bottom:111.487500px;}
.yaa{bottom:112.687500px;}
.y134{bottom:116.587500px;}
.yca{bottom:118.387500px;}
.y67{bottom:126.637500px;}
.y22{bottom:128.145000px;}
.y3b{bottom:129.337500px;}
.y10f{bottom:130.087500px;}
.yee{bottom:135.337500px;}
.ya9{bottom:136.537500px;}
.y133{bottom:140.287500px;}
.yc9{bottom:142.237500px;}
.y81{bottom:143.137500px;}
.y21{bottom:148.845000px;}
.y66{bottom:150.495000px;}
.y3a{bottom:153.045000px;}
.y10e{bottom:153.795000px;}
.yed{bottom:159.180000px;}
.ya8{bottom:160.395000px;}
.y132{bottom:164.145000px;}
.yc8{bottom:166.080000px;}
.y80{bottom:166.995000px;}
.y20{bottom:169.545000px;}
.y65{bottom:174.345000px;}
.y39{bottom:176.895000px;}
.y10d{bottom:177.645000px;}
.yec{bottom:182.895000px;}
.ya7{bottom:184.245000px;}
.y131{bottom:187.995000px;}
.yc7{bottom:189.795000px;}
.y1f{bottom:190.245000px;}
.y7f{bottom:190.695000px;}
.y64{bottom:198.195000px;}
.y38{bottom:200.745000px;}
.y10c{bottom:201.495000px;}
.yeb{bottom:206.745000px;}
.ya6{bottom:207.945000px;}
.y1e{bottom:210.945000px;}
.y130{bottom:211.695000px;}
.yc6{bottom:213.645000px;}
.y7e{bottom:214.545000px;}
.y63{bottom:221.895000px;}
.y37{bottom:224.445000px;}
.y10b{bottom:225.195000px;}
.yea{bottom:230.595000px;}
.y1d{bottom:231.645000px;}
.ya5{bottom:231.795000px;}
.y7d{bottom:234.495000px;}
.y12f{bottom:235.545000px;}
.yc5{bottom:237.495000px;}
.y62{bottom:245.745000px;}
.y36{bottom:248.295000px;}
.y10a{bottom:249.045000px;}
.y1c{bottom:252.345000px;}
.ye9{bottom:254.295000px;}
.ya4{bottom:255.645000px;}
.y7a{bottom:257.445000px;}
.y12e{bottom:259.380000px;}
.yc4{bottom:261.195000px;}
.y7b{bottom:264.645000px;}
.y61{bottom:269.595000px;}
.y35{bottom:272.145000px;}
.y109{bottom:272.880000px;}
.y1b{bottom:273.045000px;}
.ye8{bottom:278.145000px;}
.ya3{bottom:279.345000px;}
.y12d{bottom:283.095000px;}
.y7c{bottom:284.145000px;}
.yc3{bottom:285.045000px;}
.y60{bottom:293.295000px;}
.y1a{bottom:293.745000px;}
.y34{bottom:295.845000px;}
.y108{bottom:296.595000px;}
.y79{bottom:300.330000px;}
.ye7{bottom:301.995000px;}
.ya2{bottom:303.195000px;}
.y12c{bottom:306.945000px;}
.yc2{bottom:308.895000px;}
.y19{bottom:314.445000px;}
.y5f{bottom:317.130000px;}
.y33{bottom:319.695000px;}
.y107{bottom:320.445000px;}
.y78{bottom:324.195000px;}
.ye6{bottom:325.695000px;}
.ya1{bottom:327.045000px;}
.y12b{bottom:330.795000px;}
.yc1{bottom:332.595000px;}
.y5e{bottom:340.995000px;}
.y32{bottom:343.545000px;}
.y106{bottom:344.295000px;}
.y77{bottom:348.045000px;}
.ye5{bottom:349.545000px;}
.ya0{bottom:350.745000px;}
.y12a{bottom:354.630000px;}
.yc0{bottom:356.445000px;}
.y5d{bottom:364.695000px;}
.y31{bottom:367.245000px;}
.y105{bottom:368.130000px;}
.y76{bottom:371.745000px;}
.ye4{bottom:373.395000px;}
.y9f{bottom:374.580000px;}
.y129{bottom:378.330000px;}
.ybf{bottom:380.325000px;}
.y5c{bottom:388.575000px;}
.y30{bottom:391.125000px;}
.y104{bottom:391.875000px;}
.y75{bottom:395.625000px;}
.ye3{bottom:397.275000px;}
.y9e{bottom:398.475000px;}
.y128{bottom:402.225000px;}
.ybe{bottom:404.025000px;}
.y103{bottom:409.425000px;}
.y5b{bottom:412.425000px;}
.y2f{bottom:414.975000px;}
.y74{bottom:419.475000px;}
.ye2{bottom:420.975000px;}
.y9d{bottom:422.175000px;}
.y127{bottom:426.075000px;}
.ybd{bottom:427.875000px;}
.y5a{bottom:436.125000px;}
.y2e{bottom:438.675000px;}
.y73{bottom:443.175000px;}
.ye1{bottom:444.825000px;}
.y9c{bottom:446.025000px;}
.y126{bottom:449.775000px;}
.y102{bottom:451.575000px;}
.ybc{bottom:451.725000px;}
.y59{bottom:459.975000px;}
.y2d{bottom:462.525000px;}
.y72{bottom:467.025000px;}
.ye0{bottom:468.675000px;}
.y9b{bottom:469.875000px;}
.y125{bottom:473.625000px;}
.ybb{bottom:475.425000px;}
.y58{bottom:483.825000px;}
.y2c{bottom:486.375000px;}
.y71{bottom:490.875000px;}
.ydf{bottom:492.375000px;}
.y9a{bottom:493.575000px;}
.y101{bottom:493.725000px;}
.y124{bottom:497.475000px;}
.yba{bottom:499.275000px;}
.y57{bottom:507.525000px;}
.y70{bottom:514.575000px;}
.yff{bottom:515.175000px;}
.yde{bottom:516.225000px;}
.y99{bottom:517.425000px;}
.y2b{bottom:519.075000px;}
.y123{bottom:521.175000px;}
.yb9{bottom:523.125000px;}
.y56{bottom:531.375000px;}
.y2a{bottom:535.875000px;}
.y6f{bottom:538.425000px;}
.ydd{bottom:540.075000px;}
.y98{bottom:541.275000px;}
.y122{bottom:545.025000px;}
.yb8{bottom:546.825000px;}
.y55{bottom:555.225000px;}
.y6e{bottom:562.425000px;}
.ydc{bottom:563.775000px;}
.yfe{bottom:564.375000px;}
.y97{bottom:565.125000px;}
.y121{bottom:568.875000px;}
.yb7{bottom:570.675000px;}
.y54{bottom:579.075000px;}
.ydb{bottom:587.625000px;}
.y6d{bottom:588.075000px;}
.y96{bottom:588.825000px;}
.y120{bottom:592.575000px;}
.yb6{bottom:594.525000px;}
.y29{bottom:597.975000px;}
.y53{bottom:602.775000px;}
.yda{bottom:611.475000px;}
.yfd{bottom:611.925000px;}
.y6c{bottom:612.225000px;}
.y95{bottom:612.675000px;}
.y11f{bottom:616.425000px;}
.yb5{bottom:618.375000px;}
.y18{bottom:618.675000px;}
.y52{bottom:626.625000px;}
.y6b{bottom:632.025000px;}
.yd9{bottom:635.175000px;}
.yfc{bottom:635.775000px;}
.y94{bottom:636.525000px;}
.y11e{bottom:640.275000px;}
.yb4{bottom:642.075000px;}
.y51{bottom:650.475000px;}
.y68{bottom:654.975000px;}
.yd8{bottom:659.025000px;}
.yfb{bottom:659.625000px;}
.y92{bottom:660.375000px;}
.y69{bottom:662.175000px;}
.y11d{bottom:663.975000px;}
.y93{bottom:667.125000px;}
.yb3{bottom:667.425000px;}
.y50{bottom:674.175000px;}
.y6a{bottom:681.675000px;}
.yd7{bottom:682.875000px;}
.yfa{bottom:683.325000px;}
.y91{bottom:684.525000px;}
.y11c{bottom:687.825000px;}
.yb2{bottom:691.575000px;}
.y4f{bottom:698.025000px;}
.y11b{bottom:705.375000px;}
.yd6{bottom:706.575000px;}
.yf9{bottom:707.175000px;}
.y90{bottom:707.775000px;}
.yb1{bottom:716.925000px;}
.y8e{bottom:719.775000px;}
.y4e{bottom:721.875000px;}
.y8f{bottom:726.525000px;}
.yd5{bottom:730.425000px;}
.yf8{bottom:731.025000px;}
.yb0{bottom:741.120000px;}
.y117{bottom:744.105000px;}
.y4d{bottom:745.620000px;}
.yd4{bottom:754.320000px;}
.yf7{bottom:754.770000px;}
.y8d{bottom:755.070000px;}
.yaf{bottom:766.470000px;}
.y4c{bottom:769.470000px;}
.yd3{bottom:778.020000px;}
.yf6{bottom:778.620000px;}
.y8c{bottom:778.770000px;}
.y113{bottom:782.820000px;}
.yae{bottom:790.620000px;}
.y4b{bottom:793.320000px;}
.yd2{bottom:801.870000px;}
.yf5{bottom:802.455000px;}
.y8b{bottom:802.620000px;}
.yad{bottom:815.955000px;}
.y4a{bottom:817.020000px;}
.yf4{bottom:820.020000px;}
.y111{bottom:821.520000px;}
.yd1{bottom:825.720000px;}
.y8a{bottom:826.455000px;}
.yf3{bottom:838.770000px;}
.yac{bottom:839.955000px;}
.y49{bottom:840.870000px;}
.yd0{bottom:849.570000px;}
.y89{bottom:850.320000px;}
.y48{bottom:864.720000px;}
.yab{bottom:865.320000px;}
.ycf{bottom:873.270000px;}
.y88{bottom:874.020000px;}
.y47{bottom:888.420000px;}
.yce{bottom:897.120000px;}
.y87{bottom:897.870000px;}
.yf0{bottom:909.255000px;}
.y46{bottom:912.270000px;}
.ycd{bottom:920.970000px;}
.y86{bottom:921.720000px;}
.y45{bottom:936.120000px;}
.ycc{bottom:944.670000px;}
.y85{bottom:945.420000px;}
.y17{bottom:953.520000px;}
.y44{bottom:959.970000px;}
.ycb{bottom:964.620000px;}
.y84{bottom:965.370000px;}
.y16{bottom:972.720000px;}
.y43{bottom:983.670000px;}
.y82{bottom:988.320000px;}
.y15{bottom:993.420000px;}
.y42{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y83{bottom:1015.020000px;}
.y41{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y40{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y3f{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3e{bottom:1102.800000px;}
.y3d{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h1b{height:18.000000px;}
.h18{height:19.050000px;}
.hf{height:20.700000px;}
.h19{height:34.500000px;}
.h1d{height:35.400000px;}
.h1e{height:37.950000px;}
.h20{height:37.987500px;}
.h1c{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h1a{height:50.039062px;}
.h11{height:50.800781px;}
.h7{height:52.998047px;}
.h1f{height:55.042969px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.he{height:60.046875px;}
.h10{height:62.100000px;}
.h13{height:63.251953px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h22{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h21{height:74.004654px;}
.h2{height:82.441406px;}
.h12{height:89.296875px;}
.h17{height:91.696875px;}
.h15{height:116.896875px;}
.h16{height:139.696875px;}
.h14{height:183.496875px;}
.hd{height:331.245000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wa{width:72.450000px;}
.wb{width:72.487500px;}
.w10{width:73.800000px;}
.w11{width:73.837500px;}
.w12{width:73.950000px;}
.wf{width:81.000000px;}
.w9{width:101.137500px;}
.wc{width:121.987500px;}
.wd{width:130.485000px;}
.we{width:141.487500px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x30{left:7.942500px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1c{left:95.699987px;}
.x1a{left:100.200000px;}
.x19{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x2f{left:144.487500px;}
.x26{left:150.779987px;}
.x10{left:157.979987px;}
.x34{left:165.195000px;}
.x29{left:188.429987px;}
.x2a{left:200.444987px;}
.x28{left:208.694987px;}
.x27{left:215.279987px;}
.x31{left:217.245000px;}
.x2b{left:230.744987px;}
.x32{left:290.145000px;}
.x35{left:295.995000px;}
.x11{left:298.544987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x2c{left:325.544987px;}
.x33{left:362.895000px;}
.x1d{left:457.274987px;}
.x2d{left:468.224987px;}
.x1e{left:510.374987px;}
.x13{left:512.624987px;}
.x23{left:528.524987px;}
.x36{left:539.475000px;}
.x1f{left:587.024987px;}
.x18{left:591.674987px;}
.x16{left:594.374987px;}
.x37{left:613.725000px;}
.x25{left:618.974987px;}
.xc{left:625.425000px;}
.x22{left:650.204987px;}
.x24{left:653.819987px;}
.x21{left:656.819987px;}
.x20{left:685.004987px;}
.x38{left:688.020000px;}
.x17{left:689.669987px;}
.xf{left:713.655000px;}
.x15{left:727.604987px;}
.x39{left:762.270000px;}
.x12{left:768.569987px;}
.x2{left:819.119987px;}
.x14{left:850.619987px;}
.x2e{left:864.569987px;}
@media print{
.v6{vertical-align:-25.600000pt;}
.v7{vertical-align:-24.000000pt;}
.v3{vertical-align:-15.466667pt;}
.v1{vertical-align:-12.800000pt;}
.vb{vertical-align:-3.733333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.133333pt;}
.v2{vertical-align:12.800000pt;}
.v9{vertical-align:42.666667pt;}
.va{vertical-align:44.800000pt;}
.v8{vertical-align:48.533333pt;}
.v4{vertical-align:81.600000pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls19{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.149333pt;}
.ls17{letter-spacing:-0.021333pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls1a{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.117333pt;}
.ls10{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls33{letter-spacing:0.149333pt;}
.lsd{letter-spacing:0.154667pt;}
.ls12{letter-spacing:0.170667pt;}
.lsb{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.245333pt;}
.ls30{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls15{letter-spacing:0.341333pt;}
.ls31{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.554667pt;}
.lsf{letter-spacing:0.608000pt;}
.ls1f{letter-spacing:1.130667pt;}
.ls1e{letter-spacing:2.112000pt;}
.lse{letter-spacing:2.133333pt;}
.ls2c{letter-spacing:2.165333pt;}
.ls27{letter-spacing:2.637333pt;}
.ls2e{letter-spacing:3.821333pt;}
.ls2f{letter-spacing:4.053333pt;}
.ls26{letter-spacing:4.906667pt;}
.ls2b{letter-spacing:7.466667pt;}
.ls28{letter-spacing:8.533333pt;}
.ls1d{letter-spacing:10.602667pt;}
.ls21{letter-spacing:10.762667pt;}
.ls2d{letter-spacing:16.000000pt;}
.ls1c{letter-spacing:17.952000pt;}
.ls29{letter-spacing:18.168000pt;}
.ls2a{letter-spacing:18.400000pt;}
.ls24{letter-spacing:20.237333pt;}
.ls20{letter-spacing:21.653333pt;}
.ls1b{letter-spacing:22.186667pt;}
.ls22{letter-spacing:38.285333pt;}
.ls25{letter-spacing:59.925333pt;}
.ls34{letter-spacing:91.008000pt;}
.ls32{letter-spacing:123.008000pt;}
.wsc{word-spacing:-16.533333pt;}
.wse{word-spacing:-16.341333pt;}
.wsb{word-spacing:-16.170667pt;}
.ws1e{word-spacing:-16.149333pt;}
.ws10{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.978667pt;}
.wsd{word-spacing:-15.850667pt;}
.wsf{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.466667pt;}
.ws1a{word-spacing:-14.336000pt;}
.ws14{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.888000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws15{word-spacing:-9.973333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsa{word-spacing:0.000000pt;}
.ws19{word-spacing:4.746667pt;}
.ws17{word-spacing:7.946667pt;}
.ws1d{word-spacing:8.533333pt;}
.ws1c{word-spacing:11.680000pt;}
.ws16{word-spacing:88.578667pt;}
.ws1b{word-spacing:288.045333pt;}
.ws18{word-spacing:421.485333pt;}
._5f{margin-left:-15.717333pt;}
._5d{margin-left:-10.858667pt;}
._d{margin-left:-3.786667pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._7{width:2.688000pt;}
._8{width:3.909333pt;}
._6{width:5.568000pt;}
._4{width:6.720000pt;}
._3c{width:7.738667pt;}
._9{width:8.640000pt;}
._a{width:9.664000pt;}
._2e{width:11.280000pt;}
._e{width:12.480000pt;}
._65{width:13.402667pt;}
._5{width:14.336000pt;}
._56{width:15.562667pt;}
._36{width:16.960000pt;}
._b{width:18.176000pt;}
._c{width:19.082667pt;}
._11{width:20.736000pt;}
._12{width:21.850667pt;}
._f{width:23.552000pt;}
._10{width:24.757333pt;}
._32{width:25.797333pt;}
._3a{width:26.709333pt;}
._3b{width:27.680000pt;}
._22{width:28.992000pt;}
._37{width:30.506667pt;}
._1a{width:31.488000pt;}
._13{width:32.704000pt;}
._44{width:33.600000pt;}
._17{width:35.136000pt;}
._18{width:36.160000pt;}
._23{width:37.248000pt;}
._24{width:38.592000pt;}
._3f{width:39.493333pt;}
._1c{width:40.768000pt;}
._41{width:41.792000pt;}
._21{width:42.944000pt;}
._25{width:44.693333pt;}
._20{width:45.632000pt;}
._47{width:46.576000pt;}
._16{width:47.552000pt;}
._33{width:48.853333pt;}
._14{width:49.792000pt;}
._63{width:50.688000pt;}
._2d{width:51.685333pt;}
._2c{width:52.592000pt;}
._1b{width:53.824000pt;}
._45{width:54.976000pt;}
._15{width:56.133333pt;}
._28{width:57.882667pt;}
._2b{width:59.264000pt;}
._5c{width:60.160000pt;}
._29{width:61.141333pt;}
._2a{width:62.304000pt;}
._1e{width:64.000000pt;}
._1f{width:65.024000pt;}
._4a{width:65.984000pt;}
._1d{width:67.456000pt;}
._50{width:68.352000pt;}
._4d{width:69.248000pt;}
._4e{width:70.144000pt;}
._42{width:71.717333pt;}
._2f{width:72.730667pt;}
._46{width:74.368000pt;}
._30{width:75.909333pt;}
._31{width:77.034667pt;}
._5e{width:77.946667pt;}
._3d{width:78.981333pt;}
._35{width:80.224000pt;}
._43{width:81.600000pt;}
._60{width:85.845333pt;}
._58{width:87.850667pt;}
._38{width:89.237333pt;}
._39{width:90.325333pt;}
._26{width:92.512000pt;}
._27{width:93.749333pt;}
._67{width:95.541333pt;}
._6b{width:98.752000pt;}
._69{width:100.224000pt;}
._54{width:103.936000pt;}
._48{width:107.008000pt;}
._68{width:107.968000pt;}
._62{width:111.488000pt;}
._61{width:112.448000pt;}
._64{width:114.986667pt;}
._52{width:119.104000pt;}
._53{width:120.448000pt;}
._49{width:121.856000pt;}
._19{width:122.880000pt;}
._4f{width:123.776000pt;}
._66{width:125.440000pt;}
._34{width:127.136000pt;}
._3e{width:131.242667pt;}
._51{width:140.736000pt;}
._4b{width:148.672000pt;}
._4c{width:149.696000pt;}
._6a{width:151.872000pt;}
._5b{width:154.624000pt;}
._40{width:157.184000pt;}
._6e{width:164.992000pt;}
._57{width:170.232000pt;}
._6c{width:177.877333pt;}
._6d{width:178.773333pt;}
._6f{width:208.448000pt;}
._72{width:218.480000pt;}
._59{width:301.464000pt;}
._55{width:378.018667pt;}
._70{width:413.952000pt;}
._71{width:423.104000pt;}
._5a{width:435.285333pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.yf2{bottom:2.933333pt;}
.y115{bottom:3.333333pt;}
.y119{bottom:3.346667pt;}
.y28{bottom:3.466667pt;}
.yf1{bottom:3.746667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y112{bottom:10.533333pt;}
.y116{bottom:11.733333pt;}
.y11a{bottom:11.746667pt;}
.y100{bottom:12.666667pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y114{bottom:20.133333pt;}
.y118{bottom:20.146667pt;}
.y27{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y26{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y25{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y24{bottom:77.066667pt;}
.y3c{bottom:93.766667pt;}
.y110{bottom:94.433333pt;}
.y23{bottom:95.466667pt;}
.yef{bottom:99.100000pt;}
.yaa{bottom:100.166667pt;}
.y134{bottom:103.633333pt;}
.yca{bottom:105.233333pt;}
.y67{bottom:112.566667pt;}
.y22{bottom:113.906667pt;}
.y3b{bottom:114.966667pt;}
.y10f{bottom:115.633333pt;}
.yee{bottom:120.300000pt;}
.ya9{bottom:121.366667pt;}
.y133{bottom:124.700000pt;}
.yc9{bottom:126.433333pt;}
.y81{bottom:127.233333pt;}
.y21{bottom:132.306667pt;}
.y66{bottom:133.773333pt;}
.y3a{bottom:136.040000pt;}
.y10e{bottom:136.706667pt;}
.yed{bottom:141.493333pt;}
.ya8{bottom:142.573333pt;}
.y132{bottom:145.906667pt;}
.yc8{bottom:147.626667pt;}
.y80{bottom:148.440000pt;}
.y20{bottom:150.706667pt;}
.y65{bottom:154.973333pt;}
.y39{bottom:157.240000pt;}
.y10d{bottom:157.906667pt;}
.yec{bottom:162.573333pt;}
.ya7{bottom:163.773333pt;}
.y131{bottom:167.106667pt;}
.yc7{bottom:168.706667pt;}
.y1f{bottom:169.106667pt;}
.y7f{bottom:169.506667pt;}
.y64{bottom:176.173333pt;}
.y38{bottom:178.440000pt;}
.y10c{bottom:179.106667pt;}
.yeb{bottom:183.773333pt;}
.ya6{bottom:184.840000pt;}
.y1e{bottom:187.506667pt;}
.y130{bottom:188.173333pt;}
.yc6{bottom:189.906667pt;}
.y7e{bottom:190.706667pt;}
.y63{bottom:197.240000pt;}
.y37{bottom:199.506667pt;}
.y10b{bottom:200.173333pt;}
.yea{bottom:204.973333pt;}
.y1d{bottom:205.906667pt;}
.ya5{bottom:206.040000pt;}
.y7d{bottom:208.440000pt;}
.y12f{bottom:209.373333pt;}
.yc5{bottom:211.106667pt;}
.y62{bottom:218.440000pt;}
.y36{bottom:220.706667pt;}
.y10a{bottom:221.373333pt;}
.y1c{bottom:224.306667pt;}
.ye9{bottom:226.040000pt;}
.ya4{bottom:227.240000pt;}
.y7a{bottom:228.840000pt;}
.y12e{bottom:230.560000pt;}
.yc4{bottom:232.173333pt;}
.y7b{bottom:235.240000pt;}
.y61{bottom:239.640000pt;}
.y35{bottom:241.906667pt;}
.y109{bottom:242.560000pt;}
.y1b{bottom:242.706667pt;}
.ye8{bottom:247.240000pt;}
.ya3{bottom:248.306667pt;}
.y12d{bottom:251.640000pt;}
.y7c{bottom:252.573333pt;}
.yc3{bottom:253.373333pt;}
.y60{bottom:260.706667pt;}
.y1a{bottom:261.106667pt;}
.y34{bottom:262.973333pt;}
.y108{bottom:263.640000pt;}
.y79{bottom:266.960000pt;}
.ye7{bottom:268.440000pt;}
.ya2{bottom:269.506667pt;}
.y12c{bottom:272.840000pt;}
.yc2{bottom:274.573333pt;}
.y19{bottom:279.506667pt;}
.y5f{bottom:281.893333pt;}
.y33{bottom:284.173333pt;}
.y107{bottom:284.840000pt;}
.y78{bottom:288.173333pt;}
.ye6{bottom:289.506667pt;}
.ya1{bottom:290.706667pt;}
.y12b{bottom:294.040000pt;}
.yc1{bottom:295.640000pt;}
.y5e{bottom:303.106667pt;}
.y32{bottom:305.373333pt;}
.y106{bottom:306.040000pt;}
.y77{bottom:309.373333pt;}
.ye5{bottom:310.706667pt;}
.ya0{bottom:311.773333pt;}
.y12a{bottom:315.226667pt;}
.yc0{bottom:316.840000pt;}
.y5d{bottom:324.173333pt;}
.y31{bottom:326.440000pt;}
.y105{bottom:327.226667pt;}
.y76{bottom:330.440000pt;}
.ye4{bottom:331.906667pt;}
.y9f{bottom:332.960000pt;}
.y129{bottom:336.293333pt;}
.ybf{bottom:338.066667pt;}
.y5c{bottom:345.400000pt;}
.y30{bottom:347.666667pt;}
.y104{bottom:348.333333pt;}
.y75{bottom:351.666667pt;}
.ye3{bottom:353.133333pt;}
.y9e{bottom:354.200000pt;}
.y128{bottom:357.533333pt;}
.ybe{bottom:359.133333pt;}
.y103{bottom:363.933333pt;}
.y5b{bottom:366.600000pt;}
.y2f{bottom:368.866667pt;}
.y74{bottom:372.866667pt;}
.ye2{bottom:374.200000pt;}
.y9d{bottom:375.266667pt;}
.y127{bottom:378.733333pt;}
.ybd{bottom:380.333333pt;}
.y5a{bottom:387.666667pt;}
.y2e{bottom:389.933333pt;}
.y73{bottom:393.933333pt;}
.ye1{bottom:395.400000pt;}
.y9c{bottom:396.466667pt;}
.y126{bottom:399.800000pt;}
.y102{bottom:401.400000pt;}
.ybc{bottom:401.533333pt;}
.y59{bottom:408.866667pt;}
.y2d{bottom:411.133333pt;}
.y72{bottom:415.133333pt;}
.ye0{bottom:416.600000pt;}
.y9b{bottom:417.666667pt;}
.y125{bottom:421.000000pt;}
.ybb{bottom:422.600000pt;}
.y58{bottom:430.066667pt;}
.y2c{bottom:432.333333pt;}
.y71{bottom:436.333333pt;}
.ydf{bottom:437.666667pt;}
.y9a{bottom:438.733333pt;}
.y101{bottom:438.866667pt;}
.y124{bottom:442.200000pt;}
.yba{bottom:443.800000pt;}
.y57{bottom:451.133333pt;}
.y70{bottom:457.400000pt;}
.yff{bottom:457.933333pt;}
.yde{bottom:458.866667pt;}
.y99{bottom:459.933333pt;}
.y2b{bottom:461.400000pt;}
.y123{bottom:463.266667pt;}
.yb9{bottom:465.000000pt;}
.y56{bottom:472.333333pt;}
.y2a{bottom:476.333333pt;}
.y6f{bottom:478.600000pt;}
.ydd{bottom:480.066667pt;}
.y98{bottom:481.133333pt;}
.y122{bottom:484.466667pt;}
.yb8{bottom:486.066667pt;}
.y55{bottom:493.533333pt;}
.y6e{bottom:499.933333pt;}
.ydc{bottom:501.133333pt;}
.yfe{bottom:501.666667pt;}
.y97{bottom:502.333333pt;}
.y121{bottom:505.666667pt;}
.yb7{bottom:507.266667pt;}
.y54{bottom:514.733333pt;}
.ydb{bottom:522.333333pt;}
.y6d{bottom:522.733333pt;}
.y96{bottom:523.400000pt;}
.y120{bottom:526.733333pt;}
.yb6{bottom:528.466667pt;}
.y29{bottom:531.533333pt;}
.y53{bottom:535.800000pt;}
.yda{bottom:543.533333pt;}
.yfd{bottom:543.933333pt;}
.y6c{bottom:544.200000pt;}
.y95{bottom:544.600000pt;}
.y11f{bottom:547.933333pt;}
.yb5{bottom:549.666667pt;}
.y18{bottom:549.933333pt;}
.y52{bottom:557.000000pt;}
.y6b{bottom:561.800000pt;}
.yd9{bottom:564.600000pt;}
.yfc{bottom:565.133333pt;}
.y94{bottom:565.800000pt;}
.y11e{bottom:569.133333pt;}
.yb4{bottom:570.733333pt;}
.y51{bottom:578.200000pt;}
.y68{bottom:582.200000pt;}
.yd8{bottom:585.800000pt;}
.yfb{bottom:586.333333pt;}
.y92{bottom:587.000000pt;}
.y69{bottom:588.600000pt;}
.y11d{bottom:590.200000pt;}
.y93{bottom:593.000000pt;}
.yb3{bottom:593.266667pt;}
.y50{bottom:599.266667pt;}
.y6a{bottom:605.933333pt;}
.yd7{bottom:607.000000pt;}
.yfa{bottom:607.400000pt;}
.y91{bottom:608.466667pt;}
.y11c{bottom:611.400000pt;}
.yb2{bottom:614.733333pt;}
.y4f{bottom:620.466667pt;}
.y11b{bottom:627.000000pt;}
.yd6{bottom:628.066667pt;}
.yf9{bottom:628.600000pt;}
.y90{bottom:629.133333pt;}
.yb1{bottom:637.266667pt;}
.y8e{bottom:639.800000pt;}
.y4e{bottom:641.666667pt;}
.y8f{bottom:645.800000pt;}
.yd5{bottom:649.266667pt;}
.yf8{bottom:649.800000pt;}
.yb0{bottom:658.773333pt;}
.y117{bottom:661.426667pt;}
.y4d{bottom:662.773333pt;}
.yd4{bottom:670.506667pt;}
.yf7{bottom:670.906667pt;}
.y8d{bottom:671.173333pt;}
.yaf{bottom:681.306667pt;}
.y4c{bottom:683.973333pt;}
.yd3{bottom:691.573333pt;}
.yf6{bottom:692.106667pt;}
.y8c{bottom:692.240000pt;}
.y113{bottom:695.840000pt;}
.yae{bottom:702.773333pt;}
.y4b{bottom:705.173333pt;}
.yd2{bottom:712.773333pt;}
.yf5{bottom:713.293333pt;}
.y8b{bottom:713.440000pt;}
.yad{bottom:725.293333pt;}
.y4a{bottom:726.240000pt;}
.yf4{bottom:728.906667pt;}
.y111{bottom:730.240000pt;}
.yd1{bottom:733.973333pt;}
.y8a{bottom:734.626667pt;}
.yf3{bottom:745.573333pt;}
.yac{bottom:746.626667pt;}
.y49{bottom:747.440000pt;}
.yd0{bottom:755.173333pt;}
.y89{bottom:755.840000pt;}
.y48{bottom:768.640000pt;}
.yab{bottom:769.173333pt;}
.ycf{bottom:776.240000pt;}
.y88{bottom:776.906667pt;}
.y47{bottom:789.706667pt;}
.yce{bottom:797.440000pt;}
.y87{bottom:798.106667pt;}
.yf0{bottom:808.226667pt;}
.y46{bottom:810.906667pt;}
.ycd{bottom:818.640000pt;}
.y86{bottom:819.306667pt;}
.y45{bottom:832.106667pt;}
.ycc{bottom:839.706667pt;}
.y85{bottom:840.373333pt;}
.y17{bottom:847.573333pt;}
.y44{bottom:853.306667pt;}
.ycb{bottom:857.440000pt;}
.y84{bottom:858.106667pt;}
.y16{bottom:864.640000pt;}
.y43{bottom:874.373333pt;}
.y82{bottom:878.506667pt;}
.y15{bottom:883.040000pt;}
.y42{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y83{bottom:902.240000pt;}
.y41{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y40{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y3f{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3e{bottom:980.266667pt;}
.y3d{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h1b{height:16.000000pt;}
.h18{height:16.933333pt;}
.hf{height:18.400000pt;}
.h19{height:30.666667pt;}
.h1d{height:31.466667pt;}
.h1e{height:33.733333pt;}
.h20{height:33.766667pt;}
.h1c{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h1a{height:44.479167pt;}
.h11{height:45.156250pt;}
.h7{height:47.109375pt;}
.h1f{height:48.927083pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.he{height:53.375000pt;}
.h10{height:55.200000pt;}
.h13{height:56.223958pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h22{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h21{height:65.781915pt;}
.h2{height:73.281250pt;}
.h12{height:79.375000pt;}
.h17{height:81.508333pt;}
.h15{height:103.908333pt;}
.h16{height:124.175000pt;}
.h14{height:163.108333pt;}
.hd{height:294.440000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wa{width:64.400000pt;}
.wb{width:64.433333pt;}
.w10{width:65.600000pt;}
.w11{width:65.633333pt;}
.w12{width:65.733333pt;}
.wf{width:72.000000pt;}
.w9{width:89.900000pt;}
.wc{width:108.433333pt;}
.wd{width:115.986667pt;}
.we{width:125.766667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x30{left:7.060000pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1c{left:85.066655pt;}
.x1a{left:89.066667pt;}
.x19{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x2f{left:128.433333pt;}
.x26{left:134.026655pt;}
.x10{left:140.426655pt;}
.x34{left:146.840000pt;}
.x29{left:167.493322pt;}
.x2a{left:178.173322pt;}
.x28{left:185.506655pt;}
.x27{left:191.359988pt;}
.x31{left:193.106667pt;}
.x2b{left:205.106655pt;}
.x32{left:257.906667pt;}
.x35{left:263.106667pt;}
.x11{left:265.373322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x2c{left:289.373322pt;}
.x33{left:322.573333pt;}
.x1d{left:406.466655pt;}
.x2d{left:416.199988pt;}
.x1e{left:453.666655pt;}
.x13{left:455.666655pt;}
.x23{left:469.799988pt;}
.x36{left:479.533333pt;}
.x1f{left:521.799988pt;}
.x18{left:525.933322pt;}
.x16{left:528.333322pt;}
.x37{left:545.533333pt;}
.x25{left:550.199988pt;}
.xc{left:555.933333pt;}
.x22{left:577.959988pt;}
.x24{left:581.173322pt;}
.x21{left:583.839988pt;}
.x20{left:608.893322pt;}
.x38{left:611.573333pt;}
.x17{left:613.039988pt;}
.xf{left:634.360000pt;}
.x15{left:646.759988pt;}
.x39{left:677.573333pt;}
.x12{left:683.173322pt;}
.x2{left:728.106655pt;}
.x14{left:756.106655pt;}
.x2e{left:768.506655pt;}
}




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