
    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_e53c9903589860f709dcfdfd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999512;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_dfd88f66506f88ff699efc99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999512;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_f7e5caa09fa01f4c8bae6d61.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_373e9c0a633ac808991d5c06.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_52759794ecbf03d2539abfde.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e144e78e38cb0ea9f829a36a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_260ca1f93f585a8763aa79e3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_63c02a3a578ebee0e6eb23a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_642eaaa73f2d360531349ad2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0c177e0dd8364adee39c9f04.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4f469bc57209a97d1e456d99.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_705dbf84c0a1c09a18800174.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017280px;}
.ls9{letter-spacing:0.025920px;}
.ls5{letter-spacing:0.034560px;}
.lsd{letter-spacing:0.117216px;}
.ls14{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.149760px;}
.ls10{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.269400px;}
.lsf{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.360000px;}
.lse{letter-spacing:0.720000px;}
.ls3{letter-spacing:4.320000px;}
.ls4{letter-spacing:4.500000px;}
.ls13{letter-spacing:5.760000px;}
.ls23{letter-spacing:10.800000px;}
.ls1e{letter-spacing:55.728000px;}
.ls11{letter-spacing:64.002720px;}
.ls20{letter-spacing:72.288000px;}
.ls22{letter-spacing:72.408000px;}
.ls17{letter-spacing:73.440000px;}
.ls2{letter-spacing:87.960000px;}
.ls16{letter-spacing:114.480000px;}
.ls24{letter-spacing:122.400000px;}
.ls21{letter-spacing:183.168000px;}
.ls1f{letter-spacing:183.348000px;}
.ls1c{letter-spacing:197.976000px;}
.lsa{letter-spacing:198.000000px;}
.ls15{letter-spacing:199.440000px;}
.ls19{letter-spacing:199.704000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws7{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.422720px;}
.wsf{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.272000px;}
.wsa{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.002784px;}
.ws1{word-spacing:-14.970240px;}
.wse{word-spacing:-12.329400px;}
.ws4{word-spacing:0.000000px;}
._24{margin-left:-69.290880px;}
._37{margin-left:-9.901440px;}
._1d{margin-left:-8.731680px;}
._2{margin-left:-7.485120px;}
._19{margin-left:-6.468000px;}
._b{margin-left:-5.431680px;}
._1{margin-left:-4.119360px;}
._5{margin-left:-2.782080px;}
._0{margin-left:-1.258560px;}
._6{width:1.186560px;}
._9{width:3.133440px;}
._a{width:4.642560px;}
._7{width:5.760000px;}
._8{width:6.840000px;}
._c{width:8.149440px;}
._16{width:9.961440px;}
._17{width:11.039520px;}
._12{width:12.096000px;}
._13{width:13.104000px;}
._15{width:14.131200px;}
._10{width:15.480000px;}
._11{width:16.764000px;}
._18{width:18.429120px;}
._1c{width:19.874880px;}
._14{width:20.880000px;}
._f{width:22.872000px;}
._1a{width:24.120000px;}
._1b{width:25.324800px;}
._1f{width:26.731200px;}
._2d{width:27.771840px;}
._35{width:30.744000px;}
._36{width:31.968000px;}
._d{width:35.496000px;}
._e{width:36.504000px;}
._31{width:55.776000px;}
._2f{width:72.048000px;}
._33{width:75.070080px;}
._2b{width:78.121920px;}
._27{width:87.528000px;}
._28{width:89.904000px;}
._29{width:97.322880px;}
._3c{width:104.544000px;}
._3a{width:109.296000px;}
._3b{width:110.448000px;}
._2c{width:116.996160px;}
._39{width:140.931360px;}
._32{width:146.907360px;}
._38{width:147.932640px;}
._21{width:180.869760px;}
._2a{width:183.633600px;}
._25{width:197.976000px;}
._26{width:199.633440px;}
._30{width:200.649120px;}
._34{width:430.477440px;}
._4{width:664.680000px;}
._23{width:709.881120px;}
._22{width:850.649760px;}
._3{width:882.847200px;}
._20{width:892.349760px;}
._2e{width:1836.300000px;}
._1e{width:2349.096000px;}
.fc3{color:rgb(0,176,240);}
.fc2{color:transparent;}
.fc1{color:rgb(68,114,196);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.yae{bottom:-19.260000px;}
.y8c{bottom:-16.884000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.960000px;}
.y88{bottom:4.140000px;}
.y8f{bottom:4.320000px;}
.y83{bottom:4.350000px;}
.y8b{bottom:4.530000px;}
.yb2{bottom:4.860000px;}
.yad{bottom:13.500000px;}
.yd9{bottom:18.540000px;}
.y52{bottom:20.730000px;}
.y4b{bottom:20.880000px;}
.y93{bottom:21.810000px;}
.y90{bottom:21.816000px;}
.y92{bottom:21.855000px;}
.y80{bottom:21.990000px;}
.y8d{bottom:21.996000px;}
.y7c{bottom:22.035000px;}
.y7e{bottom:22.170000px;}
.y85{bottom:22.176000px;}
.y49{bottom:22.500000px;}
.y4d{bottom:24.660000px;}
.y82{bottom:25.770000px;}
.yb1{bottom:25.920000px;}
.y87{bottom:25.956000px;}
.y8a{bottom:26.130000px;}
.y8e{bottom:26.136000px;}
.yd8{bottom:42.300000px;}
.yac{bottom:42.480000px;}
.y48{bottom:43.200000px;}
.yb0{bottom:46.620000px;}
.y84{bottom:57.960000px;}
.y8{bottom:58.320000px;}
.y86{bottom:59.220000px;}
.y7{bottom:78.516000px;}
.yab{bottom:98.856000px;}
.y109{bottom:114.156000px;}
.y42{bottom:115.056000px;}
.ye8{bottom:116.496000px;}
.ybd{bottom:118.116000px;}
.y27{bottom:119.376000px;}
.yfb{bottom:123.876000px;}
.y7a{bottom:126.036000px;}
.ycf{bottom:126.396000px;}
.y60{bottom:128.376000px;}
.yaa{bottom:132.156000px;}
.y9b{bottom:134.856000px;}
.yd6{bottom:135.576000px;}
.y10d{bottom:138.636000px;}
.y26{bottom:140.076000px;}
.yfa{bottom:144.576000px;}
.ybc{bottom:146.556000px;}
.y7f{bottom:146.880000px;}
.yce{bottom:147.096000px;}
.ye7{bottom:147.456000px;}
.y89{bottom:148.320000px;}
.y41{bottom:148.716000px;}
.y108{bottom:155.550000px;}
.ya6{bottom:156.810000px;}
.y5f{bottom:159.510000px;}
.y79{bottom:160.410000px;}
.y25{bottom:160.770000px;}
.ya9{bottom:163.290000px;}
.yf9{bottom:165.270000px;}
.y9a{bottom:165.990000px;}
.yd5{bottom:166.530000px;}
.y10c{bottom:167.250000px;}
.ycd{bottom:167.790000px;}
.ybb{bottom:174.990000px;}
.y107{bottom:176.250000px;}
.ye6{bottom:178.410000px;}
.y24{bottom:181.470000px;}
.y40{bottom:182.370000px;}
.yf8{bottom:185.970000px;}
.ya5{bottom:187.950000px;}
.y5e{bottom:190.470000px;}
.ya8{bottom:194.250000px;}
.y78{bottom:194.790000px;}
.y10b{bottom:195.690000px;}
.y99{bottom:196.950000px;}
.yd4{bottom:197.670000px;}
.ycc{bottom:198.210000px;}
.y23{bottom:202.170000px;}
.yba{bottom:203.430000px;}
.ye5{bottom:209.550000px;}
.yf7{bottom:215.670000px;}
.y3f{bottom:216.030000px;}
.y106{bottom:217.650000px;}
.ya4{bottom:218.910000px;}
.y5d{bottom:221.610000px;}
.y22{bottom:222.870000px;}
.y10a{bottom:224.130000px;}
.y98{bottom:228.090000px;}
.yd3{bottom:228.630000px;}
.y77{bottom:228.990000px;}
.ya7{bottom:229.170000px;}
.yb9{bottom:231.870000px;}
.y81{bottom:236.160000px;}
.y7d{bottom:236.880000px;}
.y105{bottom:238.350000px;}
.ye4{bottom:240.510000px;}
.yf6{bottom:245.370000px;}
.y3e{bottom:249.690000px;}
.ya3{bottom:250.050000px;}
.y5c{bottom:252.570000px;}
.y21{bottom:253.830000px;}
.y97{bottom:259.050000px;}
.yb8{bottom:260.310000px;}
.ye3{bottom:261.210000px;}
.yd2{bottom:263.010000px;}
.y76{bottom:263.370000px;}
.yf5{bottom:276.510000px;}
.y104{bottom:279.750000px;}
.ya2{bottom:281.010000px;}
.ye2{bottom:281.910000px;}
.y3d{bottom:283.350000px;}
.y5b{bottom:283.710000px;}
.y20{bottom:284.970000px;}
.yd1{bottom:285.330000px;}
.yb7{bottom:288.750000px;}
.y96{bottom:290.190000px;}
.y75{bottom:297.750000px;}
.y103{bottom:300.450000px;}
.ye1{bottom:302.610000px;}
.yf4{bottom:307.470000px;}
.ya1{bottom:312.150000px;}
.y5a{bottom:314.670000px;}
.yd0{bottom:315.750000px;}
.y1f{bottom:315.930000px;}
.y3c{bottom:317.055000px;}
.yb6{bottom:317.235000px;}
.y7b{bottom:320.220000px;}
.y95{bottom:321.195000px;}
.y91{bottom:321.300000px;}
.ye0{bottom:323.355000px;}
.y74{bottom:332.175000px;}
.yf3{bottom:338.655000px;}
.y102{bottom:341.895000px;}
.ya0{bottom:343.155000px;}
.y59{bottom:345.855000px;}
.y1e{bottom:347.115000px;}
.y3b{bottom:349.635000px;}
.y94{bottom:352.335000px;}
.y73{bottom:353.415000px;}
.y101{bottom:362.595000px;}
.y9f{bottom:363.855000px;}
.yf2{bottom:369.615000px;}
.yb5{bottom:374.295000px;}
.y58{bottom:376.815000px;}
.y1d{bottom:378.075000px;}
.ydf{bottom:378.975000px;}
.y3a{bottom:380.775000px;}
.y72{bottom:383.295000px;}
.y9e{bottom:398.235000px;}
.yb4{bottom:402.735000px;}
.yf1{bottom:403.995000px;}
.y57{bottom:407.955000px;}
.y1c{bottom:409.215000px;}
.y39{bottom:411.735000px;}
.y71{bottom:414.255000px;}
.yb3{bottom:418.215000px;}
.y100{bottom:424.695000px;}
.y9d{bottom:428.475000px;}
.yde{bottom:434.955000px;}
.y56{bottom:438.915000px;}
.y1b{bottom:440.175000px;}
.y38{bottom:442.875000px;}
.y70{bottom:445.395000px;}
.yaf{bottom:460.875000px;}
.yf0{bottom:466.095000px;}
.y1a{bottom:471.315000px;}
.y37{bottom:473.835000px;}
.y55{bottom:474.375000px;}
.y6f{bottom:476.355000px;}
.ycb{bottom:476.895000px;}
.yff{bottom:486.795000px;}
.ydd{bottom:490.935000px;}
.y54{bottom:495.435000px;}
.yef{bottom:497.055000px;}
.y19{bottom:502.275000px;}
.y36{bottom:505.875000px;}
.y6e{bottom:507.495000px;}
.yca{bottom:511.275000px;}
.y53{bottom:512.895000px;}
.yee{bottom:528.195000px;}
.y18{bottom:533.415000px;}
.y6d{bottom:538.455000px;}
.y35{bottom:539.535000px;}
.yc9{bottom:545.655000px;}
.ydc{bottom:546.915000px;}
.yfe{bottom:548.895000px;}
.y51{bottom:550.515000px;}
.yed{bottom:559.155000px;}
.y17{bottom:564.375000px;}
.y6c{bottom:569.625000px;}
.y34{bottom:573.225000px;}
.yc8{bottom:579.885000px;}
.y50{bottom:587.985000px;}
.yec{bottom:590.325000px;}
.y16{bottom:595.545000px;}
.y6b{bottom:600.585000px;}
.ydb{bottom:602.745000px;}
.y33{bottom:606.885000px;}
.yc7{bottom:611.025000px;}
.yeb{bottom:621.285000px;}
.y4f{bottom:625.605000px;}
.y15{bottom:626.505000px;}
.y6a{bottom:631.725000px;}
.y32{bottom:640.365000px;}
.yc6{bottom:641.985000px;}
.yea{bottom:652.425000px;}
.y14{bottom:657.645000px;}
.yda{bottom:658.725000px;}
.y69{bottom:662.685000px;}
.y4c{bottom:663.225000px;}
.yc5{bottom:673.125000px;}
.y31{bottom:674.025000px;}
.yd7{bottom:677.445000px;}
.ye9{bottom:683.385000px;}
.y13{bottom:688.605000px;}
.y68{bottom:693.825000px;}
.yc4{bottom:704.085000px;}
.y4a{bottom:704.625000px;}
.y30{bottom:707.685000px;}
.yfd{bottom:714.525000px;}
.y12{bottom:719.745000px;}
.y67{bottom:724.785000px;}
.yc3{bottom:735.225000px;}
.y2f{bottom:741.345000px;}
.y47{bottom:742.965000px;}
.y11{bottom:750.705000px;}
.y9c{bottom:755.565000px;}
.y66{bottom:755.925000px;}
.yc2{bottom:766.185000px;}
.y2e{bottom:775.005000px;}
.yfc{bottom:776.625000px;}
.y10{bottom:781.845000px;}
.y65{bottom:786.885000px;}
.yc1{bottom:797.325000px;}
.yf{bottom:802.545000px;}
.y2d{bottom:807.585000px;}
.y64{bottom:818.025000px;}
.ye{bottom:823.290000px;}
.yc0{bottom:828.330000px;}
.y2c{bottom:838.770000px;}
.y46{bottom:839.670000px;}
.yd{bottom:843.990000px;}
.y63{bottom:849.030000px;}
.ybf{bottom:859.470000px;}
.yc{bottom:864.690000px;}
.y2b{bottom:869.730000px;}
.y45{bottom:873.330000px;}
.y62{bottom:880.170000px;}
.yb{bottom:885.390000px;}
.ybe{bottom:890.430000px;}
.y2a{bottom:900.870000px;}
.y44{bottom:906.990000px;}
.y61{bottom:911.130000px;}
.ya{bottom:915.090000px;}
.y29{bottom:921.570000px;}
.y43{bottom:940.650000px;}
.y28{bottom:942.270000px;}
.y9{bottom:943.530000px;}
.y6{bottom:963.510000px;}
.y5{bottom:994.650000px;}
.y4{bottom:1025.610000px;}
.y3{bottom:1056.570000px;}
.y2{bottom:1087.560000px;}
.y1{bottom:1118.520000px;}
.h17{height:20.700000px;}
.h18{height:21.960000px;}
.hf{height:37.476000px;}
.hd{height:37.620000px;}
.he{height:41.400000px;}
.h11{height:41.760000px;}
.h12{height:41.940000px;}
.h4{height:46.736719px;}
.h19{height:47.901094px;}
.h1{height:49.906406px;}
.h7{height:50.800781px;}
.h6{height:52.066406px;}
.h8{height:52.417969px;}
.h1a{height:53.958516px;}
.hb{height:54.878906px;}
.h9{height:56.231719px;}
.ha{height:59.269219px;}
.h1b{height:59.400000px;}
.h5{height:59.436914px;}
.hc{height:59.940000px;}
.h1c{height:62.244492px;}
.h15{height:63.360000px;}
.h3{height:65.884219px;}
.h13{height:66.027445px;}
.h2{height:67.824844px;}
.h10{height:71.613281px;}
.h16{height:73.722656px;}
.h14{height:161.820000px;}
.h0{height:1188.000000px;}
.wc{width:106.380000px;}
.w9{width:106.740000px;}
.w13{width:110.700000px;}
.w12{width:110.736000px;}
.wb{width:110.880000px;}
.w6{width:119.160000px;}
.w8{width:128.160000px;}
.wa{width:128.340000px;}
.w14{width:128.556000px;}
.w2{width:141.696000px;}
.w5{width:145.476000px;}
.w3{width:147.096000px;}
.w7{width:160.560000px;}
.wd{width:160.740000px;}
.w4{width:175.710000px;}
.w10{width:216.030000px;}
.w11{width:485.355000px;}
.wf{width:701.385000px;}
.we{width:708.045000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3b{left:8.100000px;}
.x3a{left:10.800000px;}
.x32{left:11.805000px;}
.x2e{left:12.990000px;}
.x2c{left:16.350000px;}
.x19{left:18.000000px;}
.x1d{left:21.096000px;}
.x25{left:26.385000px;}
.x2a{left:28.590000px;}
.x13{left:30.060000px;}
.x10{left:32.940000px;}
.x1c{left:34.020000px;}
.xd{left:36.036000px;}
.x27{left:37.335000px;}
.x1b{left:39.060000px;}
.x22{left:40.710000px;}
.xe{left:43.776000px;}
.x11{left:46.080000px;}
.x1a{left:49.320000px;}
.x18{left:51.876000px;}
.x17{left:59.580000px;}
.x14{left:61.380000px;}
.x20{left:70.770000px;}
.x1e{left:73.485000px;}
.xc{left:81.000000px;}
.x1f{left:87.840000px;}
.x1{left:108.035986px;}
.x23{left:114.300000px;}
.x5{left:115.595986px;}
.x37{left:135.035986px;}
.x2d{left:156.960000px;}
.x38{left:162.029986px;}
.x21{left:174.060000px;}
.x39{left:185.979000px;}
.x43{left:191.730000px;}
.x3d{left:208.110000px;}
.xf{left:222.690000px;}
.x36{left:226.829986px;}
.x30{left:227.880000px;}
.x3e{left:242.670000px;}
.x40{left:248.789986px;}
.x9{left:252.029986px;}
.x26{left:266.220000px;}
.x49{left:270.569986px;}
.xb{left:275.789986px;}
.x44{left:302.475000px;}
.xa{left:319.034986px;}
.x3c{left:324.075000px;}
.x8{left:331.094986px;}
.x41{left:337.934986px;}
.x7{left:340.814986px;}
.x2f{left:343.800000px;}
.x12{left:369.795000px;}
.x42{left:378.974986px;}
.x45{left:413.175000px;}
.x4{left:446.474986px;}
.x6{left:459.074986px;}
.x28{left:461.880000px;}
.x34{left:464.220000px;}
.x24{left:514.620000px;}
.x46{left:523.905000px;}
.x15{left:545.505000px;}
.x33{left:565.200000px;}
.x3{left:568.544986px;}
.x31{left:579.060000px;}
.x47{left:634.605000px;}
.x35{left:657.360000px;}
.x2b{left:663.480000px;}
.x16{left:690.990000px;}
.x2{left:696.749986px;}
.x29{left:700.200000px;}
.x48{left:745.350000px;}
.x3f{left:810.149986px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015360pt;}
.ls9{letter-spacing:0.023040pt;}
.ls5{letter-spacing:0.030720pt;}
.lsd{letter-spacing:0.104192pt;}
.ls14{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.133120pt;}
.ls10{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.239467pt;}
.lsf{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.640000pt;}
.ls3{letter-spacing:3.840000pt;}
.ls4{letter-spacing:4.000000pt;}
.ls13{letter-spacing:5.120000pt;}
.ls23{letter-spacing:9.600000pt;}
.ls1e{letter-spacing:49.536000pt;}
.ls11{letter-spacing:56.891307pt;}
.ls20{letter-spacing:64.256000pt;}
.ls22{letter-spacing:64.362667pt;}
.ls17{letter-spacing:65.280000pt;}
.ls2{letter-spacing:78.186667pt;}
.ls16{letter-spacing:101.760000pt;}
.ls24{letter-spacing:108.800000pt;}
.ls21{letter-spacing:162.816000pt;}
.ls1f{letter-spacing:162.976000pt;}
.ls1c{letter-spacing:175.978667pt;}
.lsa{letter-spacing:176.000000pt;}
.ls15{letter-spacing:177.280000pt;}
.ls19{letter-spacing:177.514667pt;}
.wsb{word-spacing:-53.120000pt;}
.ws7{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.264640pt;}
.wsf{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.464000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.335808pt;}
.ws1{word-spacing:-13.306880pt;}
.wse{word-spacing:-10.959467pt;}
.ws4{word-spacing:0.000000pt;}
._24{margin-left:-61.591893pt;}
._37{margin-left:-8.801280pt;}
._1d{margin-left:-7.761493pt;}
._2{margin-left:-6.653440pt;}
._19{margin-left:-5.749333pt;}
._b{margin-left:-4.828160pt;}
._1{margin-left:-3.661653pt;}
._5{margin-left:-2.472960pt;}
._0{margin-left:-1.118720pt;}
._6{width:1.054720pt;}
._9{width:2.785280pt;}
._a{width:4.126720pt;}
._7{width:5.120000pt;}
._8{width:6.080000pt;}
._c{width:7.243947pt;}
._16{width:8.854613pt;}
._17{width:9.812907pt;}
._12{width:10.752000pt;}
._13{width:11.648000pt;}
._15{width:12.561067pt;}
._10{width:13.760000pt;}
._11{width:14.901333pt;}
._18{width:16.381440pt;}
._1c{width:17.666560pt;}
._14{width:18.560000pt;}
._f{width:20.330667pt;}
._1a{width:21.440000pt;}
._1b{width:22.510933pt;}
._1f{width:23.761067pt;}
._2d{width:24.686080pt;}
._35{width:27.328000pt;}
._36{width:28.416000pt;}
._d{width:31.552000pt;}
._e{width:32.448000pt;}
._31{width:49.578667pt;}
._2f{width:64.042667pt;}
._33{width:66.728960pt;}
._2b{width:69.441707pt;}
._27{width:77.802667pt;}
._28{width:79.914667pt;}
._29{width:86.509227pt;}
._3c{width:92.928000pt;}
._3a{width:97.152000pt;}
._3b{width:98.176000pt;}
._2c{width:103.996587pt;}
._39{width:125.272320pt;}
._32{width:130.584320pt;}
._38{width:131.495680pt;}
._21{width:160.773120pt;}
._2a{width:163.229867pt;}
._25{width:175.978667pt;}
._26{width:177.451947pt;}
._30{width:178.354773pt;}
._34{width:382.646613pt;}
._4{width:590.826667pt;}
._23{width:631.005440pt;}
._22{width:756.133120pt;}
._3{width:784.753067pt;}
._20{width:793.199787pt;}
._2e{width:1632.266667pt;}
._1e{width:2088.085333pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.yae{bottom:-17.120000pt;}
.y8c{bottom:-15.008000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:3.520000pt;}
.y88{bottom:3.680000pt;}
.y8f{bottom:3.840000pt;}
.y83{bottom:3.866667pt;}
.y8b{bottom:4.026667pt;}
.yb2{bottom:4.320000pt;}
.yad{bottom:12.000000pt;}
.yd9{bottom:16.480000pt;}
.y52{bottom:18.426667pt;}
.y4b{bottom:18.560000pt;}
.y93{bottom:19.386667pt;}
.y90{bottom:19.392000pt;}
.y92{bottom:19.426667pt;}
.y80{bottom:19.546667pt;}
.y8d{bottom:19.552000pt;}
.y7c{bottom:19.586667pt;}
.y7e{bottom:19.706667pt;}
.y85{bottom:19.712000pt;}
.y49{bottom:20.000000pt;}
.y4d{bottom:21.920000pt;}
.y82{bottom:22.906667pt;}
.yb1{bottom:23.040000pt;}
.y87{bottom:23.072000pt;}
.y8a{bottom:23.226667pt;}
.y8e{bottom:23.232000pt;}
.yd8{bottom:37.600000pt;}
.yac{bottom:37.760000pt;}
.y48{bottom:38.400000pt;}
.yb0{bottom:41.440000pt;}
.y84{bottom:51.520000pt;}
.y8{bottom:51.840000pt;}
.y86{bottom:52.640000pt;}
.y7{bottom:69.792000pt;}
.yab{bottom:87.872000pt;}
.y109{bottom:101.472000pt;}
.y42{bottom:102.272000pt;}
.ye8{bottom:103.552000pt;}
.ybd{bottom:104.992000pt;}
.y27{bottom:106.112000pt;}
.yfb{bottom:110.112000pt;}
.y7a{bottom:112.032000pt;}
.ycf{bottom:112.352000pt;}
.y60{bottom:114.112000pt;}
.yaa{bottom:117.472000pt;}
.y9b{bottom:119.872000pt;}
.yd6{bottom:120.512000pt;}
.y10d{bottom:123.232000pt;}
.y26{bottom:124.512000pt;}
.yfa{bottom:128.512000pt;}
.ybc{bottom:130.272000pt;}
.y7f{bottom:130.560000pt;}
.yce{bottom:130.752000pt;}
.ye7{bottom:131.072000pt;}
.y89{bottom:131.840000pt;}
.y41{bottom:132.192000pt;}
.y108{bottom:138.266667pt;}
.ya6{bottom:139.386667pt;}
.y5f{bottom:141.786667pt;}
.y79{bottom:142.586667pt;}
.y25{bottom:142.906667pt;}
.ya9{bottom:145.146667pt;}
.yf9{bottom:146.906667pt;}
.y9a{bottom:147.546667pt;}
.yd5{bottom:148.026667pt;}
.y10c{bottom:148.666667pt;}
.ycd{bottom:149.146667pt;}
.ybb{bottom:155.546667pt;}
.y107{bottom:156.666667pt;}
.ye6{bottom:158.586667pt;}
.y24{bottom:161.306667pt;}
.y40{bottom:162.106667pt;}
.yf8{bottom:165.306667pt;}
.ya5{bottom:167.066667pt;}
.y5e{bottom:169.306667pt;}
.ya8{bottom:172.666667pt;}
.y78{bottom:173.146667pt;}
.y10b{bottom:173.946667pt;}
.y99{bottom:175.066667pt;}
.yd4{bottom:175.706667pt;}
.ycc{bottom:176.186667pt;}
.y23{bottom:179.706667pt;}
.yba{bottom:180.826667pt;}
.ye5{bottom:186.266667pt;}
.yf7{bottom:191.706667pt;}
.y3f{bottom:192.026667pt;}
.y106{bottom:193.466667pt;}
.ya4{bottom:194.586667pt;}
.y5d{bottom:196.986667pt;}
.y22{bottom:198.106667pt;}
.y10a{bottom:199.226667pt;}
.y98{bottom:202.746667pt;}
.yd3{bottom:203.226667pt;}
.y77{bottom:203.546667pt;}
.ya7{bottom:203.706667pt;}
.yb9{bottom:206.106667pt;}
.y81{bottom:209.920000pt;}
.y7d{bottom:210.560000pt;}
.y105{bottom:211.866667pt;}
.ye4{bottom:213.786667pt;}
.yf6{bottom:218.106667pt;}
.y3e{bottom:221.946667pt;}
.ya3{bottom:222.266667pt;}
.y5c{bottom:224.506667pt;}
.y21{bottom:225.626667pt;}
.y97{bottom:230.266667pt;}
.yb8{bottom:231.386667pt;}
.ye3{bottom:232.186667pt;}
.yd2{bottom:233.786667pt;}
.y76{bottom:234.106667pt;}
.yf5{bottom:245.786667pt;}
.y104{bottom:248.666667pt;}
.ya2{bottom:249.786667pt;}
.ye2{bottom:250.586667pt;}
.y3d{bottom:251.866667pt;}
.y5b{bottom:252.186667pt;}
.y20{bottom:253.306667pt;}
.yd1{bottom:253.626667pt;}
.yb7{bottom:256.666667pt;}
.y96{bottom:257.946667pt;}
.y75{bottom:264.666667pt;}
.y103{bottom:267.066667pt;}
.ye1{bottom:268.986667pt;}
.yf4{bottom:273.306667pt;}
.ya1{bottom:277.466667pt;}
.y5a{bottom:279.706667pt;}
.yd0{bottom:280.666667pt;}
.y1f{bottom:280.826667pt;}
.y3c{bottom:281.826667pt;}
.yb6{bottom:281.986667pt;}
.y7b{bottom:284.640000pt;}
.y95{bottom:285.506667pt;}
.y91{bottom:285.600000pt;}
.ye0{bottom:287.426667pt;}
.y74{bottom:295.266667pt;}
.yf3{bottom:301.026667pt;}
.y102{bottom:303.906667pt;}
.ya0{bottom:305.026667pt;}
.y59{bottom:307.426667pt;}
.y1e{bottom:308.546667pt;}
.y3b{bottom:310.786667pt;}
.y94{bottom:313.186667pt;}
.y73{bottom:314.146667pt;}
.y101{bottom:322.306667pt;}
.y9f{bottom:323.426667pt;}
.yf2{bottom:328.546667pt;}
.yb5{bottom:332.706667pt;}
.y58{bottom:334.946667pt;}
.y1d{bottom:336.066667pt;}
.ydf{bottom:336.866667pt;}
.y3a{bottom:338.466667pt;}
.y72{bottom:340.706667pt;}
.y9e{bottom:353.986667pt;}
.yb4{bottom:357.986667pt;}
.yf1{bottom:359.106667pt;}
.y57{bottom:362.626667pt;}
.y1c{bottom:363.746667pt;}
.y39{bottom:365.986667pt;}
.y71{bottom:368.226667pt;}
.yb3{bottom:371.746667pt;}
.y100{bottom:377.506667pt;}
.y9d{bottom:380.866667pt;}
.yde{bottom:386.626667pt;}
.y56{bottom:390.146667pt;}
.y1b{bottom:391.266667pt;}
.y38{bottom:393.666667pt;}
.y70{bottom:395.906667pt;}
.yaf{bottom:409.666667pt;}
.yf0{bottom:414.306667pt;}
.y1a{bottom:418.946667pt;}
.y37{bottom:421.186667pt;}
.y55{bottom:421.666667pt;}
.y6f{bottom:423.426667pt;}
.ycb{bottom:423.906667pt;}
.yff{bottom:432.706667pt;}
.ydd{bottom:436.386667pt;}
.y54{bottom:440.386667pt;}
.yef{bottom:441.826667pt;}
.y19{bottom:446.466667pt;}
.y36{bottom:449.666667pt;}
.y6e{bottom:451.106667pt;}
.yca{bottom:454.466667pt;}
.y53{bottom:455.906667pt;}
.yee{bottom:469.506667pt;}
.y18{bottom:474.146667pt;}
.y6d{bottom:478.626667pt;}
.y35{bottom:479.586667pt;}
.yc9{bottom:485.026667pt;}
.ydc{bottom:486.146667pt;}
.yfe{bottom:487.906667pt;}
.y51{bottom:489.346667pt;}
.yed{bottom:497.026667pt;}
.y17{bottom:501.666667pt;}
.y6c{bottom:506.333333pt;}
.y34{bottom:509.533333pt;}
.yc8{bottom:515.453333pt;}
.y50{bottom:522.653333pt;}
.yec{bottom:524.733333pt;}
.y16{bottom:529.373333pt;}
.y6b{bottom:533.853333pt;}
.ydb{bottom:535.773333pt;}
.y33{bottom:539.453333pt;}
.yc7{bottom:543.133333pt;}
.yeb{bottom:552.253333pt;}
.y4f{bottom:556.093333pt;}
.y15{bottom:556.893333pt;}
.y6a{bottom:561.533333pt;}
.y32{bottom:569.213333pt;}
.yc6{bottom:570.653333pt;}
.yea{bottom:579.933333pt;}
.y14{bottom:584.573333pt;}
.yda{bottom:585.533333pt;}
.y69{bottom:589.053333pt;}
.y4c{bottom:589.533333pt;}
.yc5{bottom:598.333333pt;}
.y31{bottom:599.133333pt;}
.yd7{bottom:602.173333pt;}
.ye9{bottom:607.453333pt;}
.y13{bottom:612.093333pt;}
.y68{bottom:616.733333pt;}
.yc4{bottom:625.853333pt;}
.y4a{bottom:626.333333pt;}
.y30{bottom:629.053333pt;}
.yfd{bottom:635.133333pt;}
.y12{bottom:639.773333pt;}
.y67{bottom:644.253333pt;}
.yc3{bottom:653.533333pt;}
.y2f{bottom:658.973333pt;}
.y47{bottom:660.413333pt;}
.y11{bottom:667.293333pt;}
.y9c{bottom:671.613333pt;}
.y66{bottom:671.933333pt;}
.yc2{bottom:681.053333pt;}
.y2e{bottom:688.893333pt;}
.yfc{bottom:690.333333pt;}
.y10{bottom:694.973333pt;}
.y65{bottom:699.453333pt;}
.yc1{bottom:708.733333pt;}
.yf{bottom:713.373333pt;}
.y2d{bottom:717.853333pt;}
.y64{bottom:727.133333pt;}
.ye{bottom:731.813333pt;}
.yc0{bottom:736.293333pt;}
.y2c{bottom:745.573333pt;}
.y46{bottom:746.373333pt;}
.yd{bottom:750.213333pt;}
.y63{bottom:754.693333pt;}
.ybf{bottom:763.973333pt;}
.yc{bottom:768.613333pt;}
.y2b{bottom:773.093333pt;}
.y45{bottom:776.293333pt;}
.y62{bottom:782.373333pt;}
.yb{bottom:787.013333pt;}
.ybe{bottom:791.493333pt;}
.y2a{bottom:800.773333pt;}
.y44{bottom:806.213333pt;}
.y61{bottom:809.893333pt;}
.ya{bottom:813.413333pt;}
.y29{bottom:819.173333pt;}
.y43{bottom:836.133333pt;}
.y28{bottom:837.573333pt;}
.y9{bottom:838.693333pt;}
.y6{bottom:856.453333pt;}
.y5{bottom:884.133333pt;}
.y4{bottom:911.653333pt;}
.y3{bottom:939.173333pt;}
.y2{bottom:966.720000pt;}
.y1{bottom:994.240000pt;}
.h17{height:18.400000pt;}
.h18{height:19.520000pt;}
.hf{height:33.312000pt;}
.hd{height:33.440000pt;}
.he{height:36.800000pt;}
.h11{height:37.120000pt;}
.h12{height:37.280000pt;}
.h4{height:41.543750pt;}
.h19{height:42.578750pt;}
.h1{height:44.361250pt;}
.h7{height:45.156250pt;}
.h6{height:46.281250pt;}
.h8{height:46.593750pt;}
.h1a{height:47.963125pt;}
.hb{height:48.781250pt;}
.h9{height:49.983750pt;}
.ha{height:52.683750pt;}
.h1b{height:52.800000pt;}
.h5{height:52.832812pt;}
.hc{height:53.280000pt;}
.h1c{height:55.328438pt;}
.h15{height:56.320000pt;}
.h3{height:58.563750pt;}
.h13{height:58.691063pt;}
.h2{height:60.288750pt;}
.h10{height:63.656250pt;}
.h16{height:65.531250pt;}
.h14{height:143.840000pt;}
.h0{height:1056.000000pt;}
.wc{width:94.560000pt;}
.w9{width:94.880000pt;}
.w13{width:98.400000pt;}
.w12{width:98.432000pt;}
.wb{width:98.560000pt;}
.w6{width:105.920000pt;}
.w8{width:113.920000pt;}
.wa{width:114.080000pt;}
.w14{width:114.272000pt;}
.w2{width:125.952000pt;}
.w5{width:129.312000pt;}
.w3{width:130.752000pt;}
.w7{width:142.720000pt;}
.wd{width:142.880000pt;}
.w4{width:156.186667pt;}
.w10{width:192.026667pt;}
.w11{width:431.426667pt;}
.wf{width:623.453333pt;}
.we{width:629.373333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:7.200000pt;}
.x3a{left:9.600000pt;}
.x32{left:10.493333pt;}
.x2e{left:11.546667pt;}
.x2c{left:14.533333pt;}
.x19{left:16.000000pt;}
.x1d{left:18.752000pt;}
.x25{left:23.453333pt;}
.x2a{left:25.413333pt;}
.x13{left:26.720000pt;}
.x10{left:29.280000pt;}
.x1c{left:30.240000pt;}
.xd{left:32.032000pt;}
.x27{left:33.186667pt;}
.x1b{left:34.720000pt;}
.x22{left:36.186667pt;}
.xe{left:38.912000pt;}
.x11{left:40.960000pt;}
.x1a{left:43.840000pt;}
.x18{left:46.112000pt;}
.x17{left:52.960000pt;}
.x14{left:54.560000pt;}
.x20{left:62.906667pt;}
.x1e{left:65.320000pt;}
.xc{left:72.000000pt;}
.x1f{left:78.080000pt;}
.x1{left:96.031988pt;}
.x23{left:101.600000pt;}
.x5{left:102.751988pt;}
.x37{left:120.031988pt;}
.x2d{left:139.520000pt;}
.x38{left:144.026655pt;}
.x21{left:154.720000pt;}
.x39{left:165.314667pt;}
.x43{left:170.426667pt;}
.x3d{left:184.986667pt;}
.xf{left:197.946667pt;}
.x36{left:201.626655pt;}
.x30{left:202.560000pt;}
.x3e{left:215.706667pt;}
.x40{left:221.146655pt;}
.x9{left:224.026655pt;}
.x26{left:236.640000pt;}
.x49{left:240.506655pt;}
.xb{left:245.146655pt;}
.x44{left:268.866667pt;}
.xa{left:283.586655pt;}
.x3c{left:288.066667pt;}
.x8{left:294.306655pt;}
.x41{left:300.386655pt;}
.x7{left:302.946655pt;}
.x2f{left:305.600000pt;}
.x12{left:328.706667pt;}
.x42{left:336.866655pt;}
.x45{left:367.266667pt;}
.x4{left:396.866655pt;}
.x6{left:408.066655pt;}
.x28{left:410.560000pt;}
.x34{left:412.640000pt;}
.x24{left:457.440000pt;}
.x46{left:465.693333pt;}
.x15{left:484.893333pt;}
.x33{left:502.400000pt;}
.x3{left:505.373321pt;}
.x31{left:514.720000pt;}
.x47{left:564.093333pt;}
.x35{left:584.320000pt;}
.x2b{left:589.760000pt;}
.x16{left:614.213333pt;}
.x2{left:619.333321pt;}
.x29{left:622.400000pt;}
.x48{left:662.533333pt;}
.x3f{left:720.133321pt;}
}




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