
    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_23b2eaa0c276f2b7fae7eab9.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c079a7e3b4868b850cf875cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.748047;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_720f6fe7c8d82f3a01dd5b51.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_9ae06a5f01bdddd54bfcfef5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8adc21bad45d475d12532a41.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b4b640352738cdd0cfdd9498.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_7f58bc87dae74a8007ab0bfb.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_8a72a16b45ad077582ada3b4.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.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_0238fa3bc11b6b7185ff4cf0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.812500;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_223adfabdc5da7868fd65238.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.649414;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);}
.v2{vertical-align:-28.800000px;}
.v3{vertical-align:-21.600000px;}
.v7{vertical-align:-14.400000px;}
.v9{vertical-align:-10.800000px;}
.vc{vertical-align:-7.200000px;}
.v5{vertical-align:-3.540000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.600000px;}
.v8{vertical-align:14.400000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:28.980000px;}
.va{vertical-align:32.460000px;}
.vb{vertical-align:68.400000px;}
.ls22{letter-spacing:-2.856000px;}
.ls1f{letter-spacing:-2.382000px;}
.ls9{letter-spacing:-1.392000px;}
.ls1c{letter-spacing:-1.218000px;}
.ls7{letter-spacing:-1.182000px;}
.ls1a{letter-spacing:-0.984000px;}
.ls15{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.822000px;}
.ls14{letter-spacing:-0.816000px;}
.lsa{letter-spacing:-0.612000px;}
.ls24{letter-spacing:-0.403200px;}
.lsd{letter-spacing:-0.205200px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.208800px;}
.ls21{letter-spacing:0.403200px;}
.lse{letter-spacing:0.612000px;}
.ls23{letter-spacing:0.643200px;}
.ls1b{letter-spacing:0.984000px;}
.ls11{letter-spacing:0.986400px;}
.ls16{letter-spacing:1.182000px;}
.ls2{letter-spacing:1.389600px;}
.lsc{letter-spacing:1.392000px;}
.ls25{letter-spacing:1.591200px;}
.ls4{letter-spacing:1.612800px;}
.lsf{letter-spacing:1.626000px;}
.ls18{letter-spacing:1.713600px;}
.ls17{letter-spacing:1.731600px;}
.ls26{letter-spacing:1.740000px;}
.ls0{letter-spacing:1.800000px;}
.ls1e{letter-spacing:1.831200px;}
.lsb{letter-spacing:1.860000px;}
.ls1d{letter-spacing:1.920000px;}
.ls10{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.700000px;}
.ls20{letter-spacing:3.192000px;}
.ls1{letter-spacing:3.351600px;}
.ls8{letter-spacing:4.422000px;}
.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;}
}
.ws1a{word-spacing:-61.200000px;}
.ws1c{word-spacing:-58.344000px;}
.ws19{word-spacing:-43.200000px;}
.ws1d{word-spacing:-26.292000px;}
.wsf{word-spacing:-17.100000px;}
.ws15{word-spacing:-17.013600px;}
.ws10{word-spacing:-16.926000px;}
.ws16{word-spacing:-16.284000px;}
.ws5{word-spacing:-16.122000px;}
.wse{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.012000px;}
.ws1e{word-spacing:-14.896800px;}
.ws1b{word-spacing:-14.892000px;}
.ws12{word-spacing:-14.484000px;}
.ws14{word-spacing:-14.316000px;}
.wsd{word-spacing:-14.112000px;}
.ws17{word-spacing:-14.082000px;}
.ws11{word-spacing:-13.908000px;}
.ws6{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.431600px;}
.wsa{word-spacing:-12.888000px;}
.ws13{word-spacing:-12.882000px;}
.ws8{word-spacing:-12.600000px;}
.ws4{word-spacing:-11.700000px;}
.wsc{word-spacing:-11.494800px;}
.ws2{word-spacing:-10.878000px;}
.ws3{word-spacing:-10.518000px;}
.ws7{word-spacing:-10.308000px;}
.ws18{word-spacing:-9.900000px;}
.ws9{word-spacing:-7.200000px;}
.ws1{word-spacing:-0.100950px;}
.wsb{word-spacing:0.000000px;}
._e{margin-left:-8.905200px;}
._f{margin-left:-7.890000px;}
._9{margin-left:-6.753600px;}
._5{margin-left:-5.749200px;}
._c{margin-left:-3.826800px;}
._4{margin-left:-2.484000px;}
._1{margin-left:-1.242000px;}
._0{width:1.728000px;}
._3{width:3.066000px;}
._6{width:4.299600px;}
._7{width:5.683200px;}
._2{width:6.696000px;}
._a{width:8.318400px;}
._10{width:9.655200px;}
._8{width:10.860300px;}
._b{width:12.297000px;}
._13{width:13.507200px;}
._14{width:17.020200px;}
._21{width:20.506800px;}
._22{width:21.609600px;}
._23{width:23.311200px;}
._26{width:24.404400px;}
._25{width:27.693600px;}
._24{width:28.736400px;}
._1c{width:31.606800px;}
._20{width:34.780800px;}
._1e{width:38.234400px;}
._1d{width:39.459600px;}
._1b{width:42.069600px;}
._1f{width:46.026000px;}
._17{width:593.302800px;}
._1a{width:646.863600px;}
._12{width:672.123600px;}
._19{width:702.106800px;}
._d{width:723.480000px;}
._18{width:741.265200px;}
._11{width:766.680000px;}
._15{width:850.123200px;}
._16{width:899.940000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:28.800000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:39.600000px;}
.fs9{font-size:43.200000px;}
.fs3{font-size:46.800000px;}
.fs6{font-size:50.400000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:61.200000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:79.200000px;}
.fs2{font-size:100.950000px;}
.y0{bottom:0.000000px;}
.y73{bottom:9.000000px;}
.y76{bottom:9.900000px;}
.y7c{bottom:9.930000px;}
.y85{bottom:23.400000px;}
.y84{bottom:24.300000px;}
.y99{bottom:30.600000px;}
.y7{bottom:37.845000px;}
.y2{bottom:49.590000px;}
.y5{bottom:52.275000px;}
.y6{bottom:54.975000px;}
.y4{bottom:85.590000px;}
.y83{bottom:94.575000px;}
.yc6{bottom:98.175000px;}
.y120{bottom:105.375000px;}
.y134{bottom:107.175000px;}
.y111{bottom:108.075000px;}
.yb{bottom:113.475000px;}
.y59{bottom:114.375000px;}
.y14d{bottom:115.275000px;}
.yc5{bottom:116.175000px;}
.y11f{bottom:122.475000px;}
.y133{bottom:124.275000px;}
.y110{bottom:125.175000px;}
.y3{bottom:127.020000px;}
.ya{bottom:128.812500px;}
.y14c{bottom:129.712500px;}
.yc0{bottom:131.512500px;}
.y58{bottom:132.412500px;}
.yc4{bottom:134.212500px;}
.y11e{bottom:139.612500px;}
.y82{bottom:140.512500px;}
.y132{bottom:141.412500px;}
.y10f{bottom:142.312500px;}
.y9{bottom:144.112500px;}
.y14b{bottom:145.012500px;}
.ybf{bottom:149.512500px;}
.y57{bottom:150.405000px;}
.y100{bottom:152.220000px;}
.y11d{bottom:157.620000px;}
.y131{bottom:158.505000px;}
.y10e{bottom:159.420000px;}
.y14a{bottom:160.305000px;}
.yf6{bottom:165.720000px;}
.ybe{bottom:167.505000px;}
.y56{bottom:168.405000px;}
.yc3{bottom:169.305000px;}
.y81{bottom:171.120000px;}
.y11c{bottom:174.750000px;}
.y130{bottom:175.650000px;}
.y29{bottom:176.550000px;}
.y10d{bottom:177.450000px;}
.yf5{bottom:182.850000px;}
.yc2{bottom:184.650000px;}
.ybd{bottom:185.550000px;}
.y55{bottom:186.450000px;}
.y80{bottom:188.250000px;}
.y149{bottom:190.050000px;}
.y28{bottom:191.850000px;}
.y12f{bottom:193.650000px;}
.yde{bottom:194.550000px;}
.yf4{bottom:200.850000px;}
.yff{bottom:203.550000px;}
.y54{bottom:204.450000px;}
.y7f{bottom:205.350000px;}
.y27{bottom:208.050000px;}
.y11b{bottom:209.850000px;}
.y12e{bottom:210.750000px;}
.y10c{bottom:211.650000px;}
.yf3{bottom:217.950000px;}
.y148{bottom:219.780000px;}
.yc1{bottom:220.695000px;}
.yfe{bottom:221.580000px;}
.y53{bottom:222.480000px;}
.ybc{bottom:223.380000px;}
.y12d{bottom:227.880000px;}
.y10b{bottom:228.780000px;}
.ydd{bottom:229.680000px;}
.yf2{bottom:235.080000px;}
.yfd{bottom:238.695000px;}
.y26{bottom:239.580000px;}
.y52{bottom:240.495000px;}
.y12c{bottom:244.995000px;}
.y10a{bottom:245.880000px;}
.y147{bottom:250.380000px;}
.yf1{bottom:252.195000px;}
.y7e{bottom:257.580000px;}
.y51{bottom:258.480000px;}
.ybb{bottom:259.380000px;}
.y12b{bottom:262.080000px;}
.y11a{bottom:262.995000px;}
.y146{bottom:264.825000px;}
.yf0{bottom:269.325000px;}
.yfc{bottom:273.825000px;}
.y7d{bottom:274.725000px;}
.y50{bottom:276.525000px;}
.yba{bottom:277.425000px;}
.y12a{bottom:279.225000px;}
.y109{bottom:280.125000px;}
.y25{bottom:281.925000px;}
.yef{bottom:286.425000px;}
.y4f{bottom:294.525000px;}
.yb9{bottom:295.425000px;}
.y119{bottom:297.225000px;}
.y24{bottom:299.025000px;}
.y7b{bottom:303.525000px;}
.yee{bottom:304.425000px;}
.y108{bottom:308.925000px;}
.yfb{bottom:309.825000px;}
.y4e{bottom:312.570000px;}
.yb8{bottom:313.455000px;}
.y129{bottom:314.370000px;}
.y23{bottom:315.255000px;}
.yed{bottom:321.570000px;}
.y7a{bottom:325.155000px;}
.y107{bottom:326.070000px;}
.y4d{bottom:330.570000px;}
.y22{bottom:331.455000px;}
.yae{bottom:332.370000px;}
.ya4{bottom:338.655000px;}
.y145{bottom:340.455000px;}
.y106{bottom:343.170000px;}
.yfa{bottom:344.070000px;}
.y79{bottom:345.855000px;}
.y128{bottom:347.655000px;}
.y21{bottom:348.555000px;}
.yb7{bottom:349.470000px;}
.yad{bottom:350.355000px;}
.y144{bottom:354.855000px;}
.ya3{bottom:355.755000px;}
.yf9{bottom:360.300000px;}
.y127{bottom:363.900000px;}
.y20{bottom:364.800000px;}
.y13c{bottom:365.700000px;}
.y4c{bottom:366.600000px;}
.yb6{bottom:367.500000px;}
.yac{bottom:368.400000px;}
.y143{bottom:370.200000px;}
.ya2{bottom:372.900000px;}
.y105{bottom:377.400000px;}
.y1f{bottom:381.000000px;}
.y13b{bottom:382.800000px;}
.y118{bottom:383.700000px;}
.y4b{bottom:384.600000px;}
.yb5{bottom:385.500000px;}
.yab{bottom:386.400000px;}
.y78{bottom:388.200000px;}
.ya1{bottom:390.000000px;}
.yf8{bottom:395.400000px;}
.y1e{bottom:398.100000px;}
.y126{bottom:399.900000px;}
.y117{bottom:400.800000px;}
.y4a{bottom:402.630000px;}
.yb4{bottom:403.530000px;}
.yaa{bottom:404.430000px;}
.ya0{bottom:407.130000px;}
.y77{bottom:408.930000px;}
.y104{bottom:412.530000px;}
.y1d{bottom:414.330000px;}
.y142{bottom:415.230000px;}
.y13a{bottom:417.930000px;}
.y116{bottom:418.830000px;}
.y49{bottom:420.630000px;}
.ya9{bottom:422.445000px;}
.y9f{bottom:424.230000px;}
.yec{bottom:425.130000px;}
.y75{bottom:429.630000px;}
.y1c{bottom:430.530000px;}
.y139{bottom:435.030000px;}
.y115{bottom:435.945000px;}
.ydc{bottom:437.730000px;}
.y48{bottom:438.630000px;}
.yb3{bottom:439.530000px;}
.ya8{bottom:440.445000px;}
.y9e{bottom:442.230000px;}
.y141{bottom:444.930000px;}
.y103{bottom:446.745000px;}
.y1b{bottom:447.630000px;}
.y74{bottom:451.275000px;}
.y114{bottom:453.075000px;}
.ydb{bottom:454.875000px;}
.y47{bottom:456.675000px;}
.y9d{bottom:459.375000px;}
.y140{bottom:460.275000px;}
.y1a{bottom:463.875000px;}
.y138{bottom:468.375000px;}
.y72{bottom:471.975000px;}
.yda{bottom:472.875000px;}
.y46{bottom:474.675000px;}
.ya7{bottom:475.575000px;}
.y9c{bottom:476.475000px;}
.y19{bottom:480.075000px;}
.y137{bottom:483.675000px;}
.y113{bottom:487.275000px;}
.yd9{bottom:489.975000px;}
.ya6{bottom:490.875000px;}
.y45{bottom:492.675000px;}
.y18{bottom:497.205000px;}
.y102{bottom:498.105000px;}
.y136{bottom:499.005000px;}
.y71{bottom:502.620000px;}
.y98{bottom:505.305000px;}
.yd8{bottom:507.105000px;}
.yb2{bottom:509.820000px;}
.y44{bottom:510.705000px;}
.y17{bottom:513.405000px;}
.y13f{bottom:520.605000px;}
.yd7{bottom:524.205000px;}
.yb1{bottom:525.105000px;}
.y9b{bottom:526.905000px;}
.y43{bottom:528.705000px;}
.y70{bottom:533.220000px;}
.y135{bottom:535.005000px;}
.y112{bottom:537.705000px;}
.yb0{bottom:540.450000px;}
.yd6{bottom:541.350000px;}
.y16{bottom:545.850000px;}
.y42{bottom:546.750000px;}
.y9a{bottom:547.650000px;}
.y101{bottom:549.450000px;}
.y6f{bottom:550.350000px;}
.yd5{bottom:559.350000px;}
.y41{bottom:564.750000px;}
.y169{bottom:565.650000px;}
.y6e{bottom:568.350000px;}
.yaf{bottom:576.450000px;}
.yd4{bottom:577.350000px;}
.y168{bottom:580.050000px;}
.y40{bottom:582.750000px;}
.y13e{bottom:584.550000px;}
.y6d{bottom:585.450000px;}
.y97{bottom:590.880000px;}
.y167{bottom:595.380000px;}
.y3f{bottom:600.780000px;}
.y15{bottom:607.980000px;}
.y166{bottom:610.695000px;}
.yd3{bottom:611.580000px;}
.y3e{bottom:618.780000px;}
.y6c{bottom:620.580000px;}
.y165{bottom:625.080000px;}
.y14{bottom:628.680000px;}
.y96{bottom:635.925000px;}
.y3d{bottom:636.825000px;}
.y13{bottom:638.625000px;}
.y164{bottom:640.425000px;}
.y3c{bottom:654.825000px;}
.y163{bottom:655.725000px;}
.y6b{bottom:656.625000px;}
.y12{bottom:658.425000px;}
.yd2{bottom:660.225000px;}
.y95{bottom:667.425000px;}
.y162{bottom:670.125000px;}
.y3b{bottom:672.825000px;}
.y11{bottom:673.725000px;}
.y13d{bottom:674.625000px;}
.yd1{bottom:678.255000px;}
.y94{bottom:684.555000px;}
.y161{bottom:685.455000px;}
.y3a{bottom:690.855000px;}
.y6a{bottom:692.655000px;}
.yd0{bottom:696.255000px;}
.y10{bottom:697.155000px;}
.y160{bottom:700.755000px;}
.y93{bottom:701.655000px;}
.yeb{bottom:703.470000px;}
.y39{bottom:708.855000px;}
.y69{bottom:710.655000px;}
.ycf{bottom:714.255000px;}
.y15f{bottom:715.155000px;}
.y92{bottom:718.755000px;}
.yf{bottom:719.655000px;}
.yea{bottom:720.570000px;}
.y38{bottom:726.900000px;}
.y68{bottom:728.700000px;}
.y15e{bottom:730.500000px;}
.yce{bottom:732.300000px;}
.y91{bottom:735.900000px;}
.ye9{bottom:737.700000px;}
.y37{bottom:744.000000px;}
.y15d{bottom:745.800000px;}
.y67{bottom:746.700000px;}
.ycd{bottom:750.300000px;}
.y90{bottom:753.000000px;}
.ye8{bottom:754.800000px;}
.y15c{bottom:760.200000px;}
.ye{bottom:761.100000px;}
.y36{bottom:762.000000px;}
.ya5{bottom:762.900000px;}
.y66{bottom:764.700000px;}
.y8f{bottom:771.030000px;}
.ye7{bottom:771.945000px;}
.y15b{bottom:775.545000px;}
.y35{bottom:779.130000px;}
.y65{bottom:782.730000px;}
.ycc{bottom:786.330000px;}
.ye6{bottom:789.045000px;}
.y15a{bottom:790.830000px;}
.yd{bottom:791.745000px;}
.y34{bottom:796.230000px;}
.y64{bottom:800.730000px;}
.y159{bottom:805.245000px;}
.y8e{bottom:806.130000px;}
.ye5{bottom:807.045000px;}
.y33{bottom:813.330000px;}
.yf7{bottom:815.130000px;}
.y63{bottom:818.775000px;}
.y158{bottom:820.575000px;}
.ycb{bottom:823.275000px;}
.ye4{bottom:824.175000px;}
.y32{bottom:830.475000px;}
.y157{bottom:835.875000px;}
.y62{bottom:836.775000px;}
.yc{bottom:837.675000px;}
.yca{bottom:840.375000px;}
.ye3{bottom:841.275000px;}
.y8d{bottom:842.175000px;}
.y31{bottom:847.575000px;}
.y156{bottom:850.275000px;}
.y61{bottom:854.775000px;}
.yc9{bottom:857.475000px;}
.ye2{bottom:858.375000px;}
.y8c{bottom:859.275000px;}
.y30{bottom:865.605000px;}
.y8{bottom:872.820000px;}
.yc8{bottom:874.605000px;}
.ye1{bottom:875.505000px;}
.y8b{bottom:876.405000px;}
.y155{bottom:880.920000px;}
.y60{bottom:890.820000px;}
.yc7{bottom:891.705000px;}
.ye0{bottom:892.605000px;}
.y8a{bottom:893.505000px;}
.y154{bottom:895.320000px;}
.y125{bottom:896.205000px;}
.y2f{bottom:900.705000px;}
.y1{bottom:906.105000px;}
.y5f{bottom:908.850000px;}
.y89{bottom:910.650000px;}
.y124{bottom:913.350000px;}
.y153{bottom:925.950000px;}
.y5e{bottom:926.850000px;}
.ydf{bottom:927.750000px;}
.y88{bottom:928.650000px;}
.y123{bottom:930.450000px;}
.y152{bottom:940.350000px;}
.y5d{bottom:944.850000px;}
.y87{bottom:945.750000px;}
.y122{bottom:947.550000px;}
.y2e{bottom:951.150000px;}
.y151{bottom:955.695000px;}
.y5c{bottom:962.880000px;}
.y121{bottom:964.695000px;}
.y2d{bottom:966.495000px;}
.y150{bottom:970.980000px;}
.y5b{bottom:980.880000px;}
.y2c{bottom:982.695000px;}
.y14f{bottom:985.380000px;}
.y86{bottom:991.695000px;}
.y5a{bottom:998.880000px;}
.y2b{bottom:999.825000px;}
.y14e{bottom:1000.725000px;}
.y2a{bottom:1033.125000px;}
.h13{height:20.700000px;}
.h16{height:20.737500px;}
.h3{height:21.051562px;}
.h17{height:21.600000px;}
.h14{height:21.637500px;}
.h6{height:33.843164px;}
.h7{height:34.208789px;}
.h8{height:35.557031px;}
.h1a{height:36.000000px;}
.h19{height:36.037500px;}
.h15{height:37.476562px;}
.he{height:38.100586px;}
.h18{height:38.826562px;}
.hf{height:39.049805px;}
.h4{height:39.471680px;}
.h20{height:43.180664px;}
.h10{height:44.256445px;}
.h11{height:44.555273px;}
.h12{height:44.734570px;}
.h1d{height:47.988281px;}
.h9{height:52.066406px;}
.hc{height:57.273047px;}
.h1b{height:63.037500px;}
.hd{height:65.246484px;}
.hb{height:65.426484px;}
.h1c{height:67.983398px;}
.ha{height:73.001440px;}
.h5{height:76.550464px;}
.h1f{height:100.443398px;}
.h1e{height:116.388281px;}
.h2{height:139.612500px;}
.h0{height:1114.200000px;}
.h1{height:1114.500000px;}
.w8{width:56.775000px;}
.wb{width:71.175000px;}
.w9{width:72.075000px;}
.wa{width:72.112500px;}
.w2{width:95.512500px;}
.we{width:127.050000px;}
.wc{width:127.912500px;}
.wd{width:127.950000px;}
.w7{width:149.550000px;}
.w4{width:181.080000px;}
.w3{width:427.035000px;}
.w1{width:816.000000px;}
.w6{width:816.299976px;}
.w5{width:816.299988px;}
.w0{width:816.300000px;}
.x0{left:0.000000px;}
.x19{left:8.100000px;}
.x9{left:54.974988px;}
.xf{left:56.774988px;}
.x15{left:59.474988px;}
.x1{left:63.075000px;}
.x33{left:64.874988px;}
.x11{left:66.674988px;}
.x14{left:72.974988px;}
.x3c{left:75.674988px;}
.x16{left:77.474988px;}
.x2{left:84.675000px;}
.x4{left:86.475000px;}
.x28{left:91.012500px;}
.x6{left:96.360000px;}
.x32{left:108.112488px;}
.x30{left:110.812488px;}
.xa{left:112.612488px;}
.x13{left:120.712488px;}
.x27{left:122.549988px;}
.x5{left:144.150000px;}
.x3b{left:151.349988px;}
.x1c{left:154.950000px;}
.x3e{left:156.749988px;}
.x3{left:158.595000px;}
.x8{left:166.680000px;}
.x35{left:169.394988px;}
.x34{left:190.094988px;}
.x3d{left:194.624988px;}
.x36{left:197.324988px;}
.xc{left:202.724976px;}
.xd{left:212.624988px;}
.x29{left:218.925000px;}
.x1b{left:223.424988px;}
.x1d{left:227.025000px;}
.x22{left:231.570000px;}
.x17{left:264.899988px;}
.x39{left:271.199988px;}
.x1e{left:299.145000px;}
.x18{left:303.645000px;}
.xb{left:327.044988px;}
.x2e{left:332.474988px;}
.xe{left:339.674988px;}
.x2a{left:346.875000px;}
.x38{left:357.674988px;}
.x1f{left:370.320000px;}
.x23{left:374.820000px;}
.x12{left:376.619988px;}
.x10{left:391.904988px;}
.x20{left:442.395000px;}
.x24{left:446.895000px;}
.x1a{left:453.195000px;}
.x2b{left:474.825000px;}
.x21{left:514.470000px;}
.x25{left:518.070000px;}
.x7{left:585.645000px;}
.x26{left:590.145000px;}
.x2c{left:602.745000px;}
.x37{left:678.404988px;}
.x2d{left:745.994988px;}
.x3a{left:750.494988px;}
.x2f{left:757.724988px;}
.x31{left:762.224988px;}
@media print{
.v2{vertical-align:-25.600000pt;}
.v3{vertical-align:-19.200000pt;}
.v7{vertical-align:-12.800000pt;}
.v9{vertical-align:-9.600000pt;}
.vc{vertical-align:-6.400000pt;}
.v5{vertical-align:-3.146667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.200000pt;}
.v8{vertical-align:12.800000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:25.760000pt;}
.va{vertical-align:28.853333pt;}
.vb{vertical-align:60.800000pt;}
.ls22{letter-spacing:-2.538667pt;}
.ls1f{letter-spacing:-2.117333pt;}
.ls9{letter-spacing:-1.237333pt;}
.ls1c{letter-spacing:-1.082667pt;}
.ls7{letter-spacing:-1.050667pt;}
.ls1a{letter-spacing:-0.874667pt;}
.ls15{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.730667pt;}
.ls14{letter-spacing:-0.725333pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls24{letter-spacing:-0.358400pt;}
.lsd{letter-spacing:-0.182400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.185600pt;}
.ls21{letter-spacing:0.358400pt;}
.lse{letter-spacing:0.544000pt;}
.ls23{letter-spacing:0.571733pt;}
.ls1b{letter-spacing:0.874667pt;}
.ls11{letter-spacing:0.876800pt;}
.ls16{letter-spacing:1.050667pt;}
.ls2{letter-spacing:1.235200pt;}
.lsc{letter-spacing:1.237333pt;}
.ls25{letter-spacing:1.414400pt;}
.ls4{letter-spacing:1.433600pt;}
.lsf{letter-spacing:1.445333pt;}
.ls18{letter-spacing:1.523200pt;}
.ls17{letter-spacing:1.539200pt;}
.ls26{letter-spacing:1.546667pt;}
.ls0{letter-spacing:1.600000pt;}
.ls1e{letter-spacing:1.627733pt;}
.lsb{letter-spacing:1.653333pt;}
.ls1d{letter-spacing:1.706667pt;}
.ls10{letter-spacing:1.760000pt;}
.ls12{letter-spacing:2.400000pt;}
.ls20{letter-spacing:2.837333pt;}
.ls1{letter-spacing:2.979200pt;}
.ls8{letter-spacing:3.930667pt;}
.ws1a{word-spacing:-54.400000pt;}
.ws1c{word-spacing:-51.861333pt;}
.ws19{word-spacing:-38.400000pt;}
.ws1d{word-spacing:-23.370667pt;}
.wsf{word-spacing:-15.200000pt;}
.ws15{word-spacing:-15.123200pt;}
.ws10{word-spacing:-15.045333pt;}
.ws16{word-spacing:-14.474667pt;}
.ws5{word-spacing:-14.330667pt;}
.wse{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.344000pt;}
.ws1e{word-spacing:-13.241600pt;}
.ws1b{word-spacing:-13.237333pt;}
.ws12{word-spacing:-12.874667pt;}
.ws14{word-spacing:-12.725333pt;}
.wsd{word-spacing:-12.544000pt;}
.ws17{word-spacing:-12.517333pt;}
.ws11{word-spacing:-12.362667pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.939200pt;}
.wsa{word-spacing:-11.456000pt;}
.ws13{word-spacing:-11.450667pt;}
.ws8{word-spacing:-11.200000pt;}
.ws4{word-spacing:-10.400000pt;}
.wsc{word-spacing:-10.217600pt;}
.ws2{word-spacing:-9.669333pt;}
.ws3{word-spacing:-9.349333pt;}
.ws7{word-spacing:-9.162667pt;}
.ws18{word-spacing:-8.800000pt;}
.ws9{word-spacing:-6.400000pt;}
.ws1{word-spacing:-0.089733pt;}
.wsb{word-spacing:0.000000pt;}
._e{margin-left:-7.915733pt;}
._f{margin-left:-7.013333pt;}
._9{margin-left:-6.003200pt;}
._5{margin-left:-5.110400pt;}
._c{margin-left:-3.401600pt;}
._4{margin-left:-2.208000pt;}
._1{margin-left:-1.104000pt;}
._0{width:1.536000pt;}
._3{width:2.725333pt;}
._6{width:3.821867pt;}
._7{width:5.051733pt;}
._2{width:5.952000pt;}
._a{width:7.394133pt;}
._10{width:8.582400pt;}
._8{width:9.653600pt;}
._b{width:10.930667pt;}
._13{width:12.006400pt;}
._14{width:15.129067pt;}
._21{width:18.228267pt;}
._22{width:19.208533pt;}
._23{width:20.721067pt;}
._26{width:21.692800pt;}
._25{width:24.616533pt;}
._24{width:25.543467pt;}
._1c{width:28.094933pt;}
._20{width:30.916267pt;}
._1e{width:33.986133pt;}
._1d{width:35.075200pt;}
._1b{width:37.395200pt;}
._1f{width:40.912000pt;}
._17{width:527.380267pt;}
._1a{width:574.989867pt;}
._12{width:597.443200pt;}
._19{width:624.094933pt;}
._d{width:643.093333pt;}
._18{width:658.902400pt;}
._11{width:681.493333pt;}
._15{width:755.665067pt;}
._16{width:799.946667pt;}
.fs0{font-size:25.600000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:35.200000pt;}
.fs9{font-size:38.400000pt;}
.fs3{font-size:41.600000pt;}
.fs6{font-size:44.800000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:54.400000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:70.400000pt;}
.fs2{font-size:89.733333pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:8.000000pt;}
.y76{bottom:8.800000pt;}
.y7c{bottom:8.826667pt;}
.y85{bottom:20.800000pt;}
.y84{bottom:21.600000pt;}
.y99{bottom:27.200000pt;}
.y7{bottom:33.640000pt;}
.y2{bottom:44.080000pt;}
.y5{bottom:46.466667pt;}
.y6{bottom:48.866667pt;}
.y4{bottom:76.080000pt;}
.y83{bottom:84.066667pt;}
.yc6{bottom:87.266667pt;}
.y120{bottom:93.666667pt;}
.y134{bottom:95.266667pt;}
.y111{bottom:96.066667pt;}
.yb{bottom:100.866667pt;}
.y59{bottom:101.666667pt;}
.y14d{bottom:102.466667pt;}
.yc5{bottom:103.266667pt;}
.y11f{bottom:108.866667pt;}
.y133{bottom:110.466667pt;}
.y110{bottom:111.266667pt;}
.y3{bottom:112.906667pt;}
.ya{bottom:114.500000pt;}
.y14c{bottom:115.300000pt;}
.yc0{bottom:116.900000pt;}
.y58{bottom:117.700000pt;}
.yc4{bottom:119.300000pt;}
.y11e{bottom:124.100000pt;}
.y82{bottom:124.900000pt;}
.y132{bottom:125.700000pt;}
.y10f{bottom:126.500000pt;}
.y9{bottom:128.100000pt;}
.y14b{bottom:128.900000pt;}
.ybf{bottom:132.900000pt;}
.y57{bottom:133.693333pt;}
.y100{bottom:135.306667pt;}
.y11d{bottom:140.106667pt;}
.y131{bottom:140.893333pt;}
.y10e{bottom:141.706667pt;}
.y14a{bottom:142.493333pt;}
.yf6{bottom:147.306667pt;}
.ybe{bottom:148.893333pt;}
.y56{bottom:149.693333pt;}
.yc3{bottom:150.493333pt;}
.y81{bottom:152.106667pt;}
.y11c{bottom:155.333333pt;}
.y130{bottom:156.133333pt;}
.y29{bottom:156.933333pt;}
.y10d{bottom:157.733333pt;}
.yf5{bottom:162.533333pt;}
.yc2{bottom:164.133333pt;}
.ybd{bottom:164.933333pt;}
.y55{bottom:165.733333pt;}
.y80{bottom:167.333333pt;}
.y149{bottom:168.933333pt;}
.y28{bottom:170.533333pt;}
.y12f{bottom:172.133333pt;}
.yde{bottom:172.933333pt;}
.yf4{bottom:178.533333pt;}
.yff{bottom:180.933333pt;}
.y54{bottom:181.733333pt;}
.y7f{bottom:182.533333pt;}
.y27{bottom:184.933333pt;}
.y11b{bottom:186.533333pt;}
.y12e{bottom:187.333333pt;}
.y10c{bottom:188.133333pt;}
.yf3{bottom:193.733333pt;}
.y148{bottom:195.360000pt;}
.yc1{bottom:196.173333pt;}
.yfe{bottom:196.960000pt;}
.y53{bottom:197.760000pt;}
.ybc{bottom:198.560000pt;}
.y12d{bottom:202.560000pt;}
.y10b{bottom:203.360000pt;}
.ydd{bottom:204.160000pt;}
.yf2{bottom:208.960000pt;}
.yfd{bottom:212.173333pt;}
.y26{bottom:212.960000pt;}
.y52{bottom:213.773333pt;}
.y12c{bottom:217.773333pt;}
.y10a{bottom:218.560000pt;}
.y147{bottom:222.560000pt;}
.yf1{bottom:224.173333pt;}
.y7e{bottom:228.960000pt;}
.y51{bottom:229.760000pt;}
.ybb{bottom:230.560000pt;}
.y12b{bottom:232.960000pt;}
.y11a{bottom:233.773333pt;}
.y146{bottom:235.400000pt;}
.yf0{bottom:239.400000pt;}
.yfc{bottom:243.400000pt;}
.y7d{bottom:244.200000pt;}
.y50{bottom:245.800000pt;}
.yba{bottom:246.600000pt;}
.y12a{bottom:248.200000pt;}
.y109{bottom:249.000000pt;}
.y25{bottom:250.600000pt;}
.yef{bottom:254.600000pt;}
.y4f{bottom:261.800000pt;}
.yb9{bottom:262.600000pt;}
.y119{bottom:264.200000pt;}
.y24{bottom:265.800000pt;}
.y7b{bottom:269.800000pt;}
.yee{bottom:270.600000pt;}
.y108{bottom:274.600000pt;}
.yfb{bottom:275.400000pt;}
.y4e{bottom:277.840000pt;}
.yb8{bottom:278.626667pt;}
.y129{bottom:279.440000pt;}
.y23{bottom:280.226667pt;}
.yed{bottom:285.840000pt;}
.y7a{bottom:289.026667pt;}
.y107{bottom:289.840000pt;}
.y4d{bottom:293.840000pt;}
.y22{bottom:294.626667pt;}
.yae{bottom:295.440000pt;}
.ya4{bottom:301.026667pt;}
.y145{bottom:302.626667pt;}
.y106{bottom:305.040000pt;}
.yfa{bottom:305.840000pt;}
.y79{bottom:307.426667pt;}
.y128{bottom:309.026667pt;}
.y21{bottom:309.826667pt;}
.yb7{bottom:310.640000pt;}
.yad{bottom:311.426667pt;}
.y144{bottom:315.426667pt;}
.ya3{bottom:316.226667pt;}
.yf9{bottom:320.266667pt;}
.y127{bottom:323.466667pt;}
.y20{bottom:324.266667pt;}
.y13c{bottom:325.066667pt;}
.y4c{bottom:325.866667pt;}
.yb6{bottom:326.666667pt;}
.yac{bottom:327.466667pt;}
.y143{bottom:329.066667pt;}
.ya2{bottom:331.466667pt;}
.y105{bottom:335.466667pt;}
.y1f{bottom:338.666667pt;}
.y13b{bottom:340.266667pt;}
.y118{bottom:341.066667pt;}
.y4b{bottom:341.866667pt;}
.yb5{bottom:342.666667pt;}
.yab{bottom:343.466667pt;}
.y78{bottom:345.066667pt;}
.ya1{bottom:346.666667pt;}
.yf8{bottom:351.466667pt;}
.y1e{bottom:353.866667pt;}
.y126{bottom:355.466667pt;}
.y117{bottom:356.266667pt;}
.y4a{bottom:357.893333pt;}
.yb4{bottom:358.693333pt;}
.yaa{bottom:359.493333pt;}
.ya0{bottom:361.893333pt;}
.y77{bottom:363.493333pt;}
.y104{bottom:366.693333pt;}
.y1d{bottom:368.293333pt;}
.y142{bottom:369.093333pt;}
.y13a{bottom:371.493333pt;}
.y116{bottom:372.293333pt;}
.y49{bottom:373.893333pt;}
.ya9{bottom:375.506667pt;}
.y9f{bottom:377.093333pt;}
.yec{bottom:377.893333pt;}
.y75{bottom:381.893333pt;}
.y1c{bottom:382.693333pt;}
.y139{bottom:386.693333pt;}
.y115{bottom:387.506667pt;}
.ydc{bottom:389.093333pt;}
.y48{bottom:389.893333pt;}
.yb3{bottom:390.693333pt;}
.ya8{bottom:391.506667pt;}
.y9e{bottom:393.093333pt;}
.y141{bottom:395.493333pt;}
.y103{bottom:397.106667pt;}
.y1b{bottom:397.893333pt;}
.y74{bottom:401.133333pt;}
.y114{bottom:402.733333pt;}
.ydb{bottom:404.333333pt;}
.y47{bottom:405.933333pt;}
.y9d{bottom:408.333333pt;}
.y140{bottom:409.133333pt;}
.y1a{bottom:412.333333pt;}
.y138{bottom:416.333333pt;}
.y72{bottom:419.533333pt;}
.yda{bottom:420.333333pt;}
.y46{bottom:421.933333pt;}
.ya7{bottom:422.733333pt;}
.y9c{bottom:423.533333pt;}
.y19{bottom:426.733333pt;}
.y137{bottom:429.933333pt;}
.y113{bottom:433.133333pt;}
.yd9{bottom:435.533333pt;}
.ya6{bottom:436.333333pt;}
.y45{bottom:437.933333pt;}
.y18{bottom:441.960000pt;}
.y102{bottom:442.760000pt;}
.y136{bottom:443.560000pt;}
.y71{bottom:446.773333pt;}
.y98{bottom:449.160000pt;}
.yd8{bottom:450.760000pt;}
.yb2{bottom:453.173333pt;}
.y44{bottom:453.960000pt;}
.y17{bottom:456.360000pt;}
.y13f{bottom:462.760000pt;}
.yd7{bottom:465.960000pt;}
.yb1{bottom:466.760000pt;}
.y9b{bottom:468.360000pt;}
.y43{bottom:469.960000pt;}
.y70{bottom:473.973333pt;}
.y135{bottom:475.560000pt;}
.y112{bottom:477.960000pt;}
.yb0{bottom:480.400000pt;}
.yd6{bottom:481.200000pt;}
.y16{bottom:485.200000pt;}
.y42{bottom:486.000000pt;}
.y9a{bottom:486.800000pt;}
.y101{bottom:488.400000pt;}
.y6f{bottom:489.200000pt;}
.yd5{bottom:497.200000pt;}
.y41{bottom:502.000000pt;}
.y169{bottom:502.800000pt;}
.y6e{bottom:505.200000pt;}
.yaf{bottom:512.400000pt;}
.yd4{bottom:513.200000pt;}
.y168{bottom:515.600000pt;}
.y40{bottom:518.000000pt;}
.y13e{bottom:519.600000pt;}
.y6d{bottom:520.400000pt;}
.y97{bottom:525.226667pt;}
.y167{bottom:529.226667pt;}
.y3f{bottom:534.026667pt;}
.y15{bottom:540.426667pt;}
.y166{bottom:542.840000pt;}
.yd3{bottom:543.626667pt;}
.y3e{bottom:550.026667pt;}
.y6c{bottom:551.626667pt;}
.y165{bottom:555.626667pt;}
.y14{bottom:558.826667pt;}
.y96{bottom:565.266667pt;}
.y3d{bottom:566.066667pt;}
.y13{bottom:567.666667pt;}
.y164{bottom:569.266667pt;}
.y3c{bottom:582.066667pt;}
.y163{bottom:582.866667pt;}
.y6b{bottom:583.666667pt;}
.y12{bottom:585.266667pt;}
.yd2{bottom:586.866667pt;}
.y95{bottom:593.266667pt;}
.y162{bottom:595.666667pt;}
.y3b{bottom:598.066667pt;}
.y11{bottom:598.866667pt;}
.y13d{bottom:599.666667pt;}
.yd1{bottom:602.893333pt;}
.y94{bottom:608.493333pt;}
.y161{bottom:609.293333pt;}
.y3a{bottom:614.093333pt;}
.y6a{bottom:615.693333pt;}
.yd0{bottom:618.893333pt;}
.y10{bottom:619.693333pt;}
.y160{bottom:622.893333pt;}
.y93{bottom:623.693333pt;}
.yeb{bottom:625.306667pt;}
.y39{bottom:630.093333pt;}
.y69{bottom:631.693333pt;}
.ycf{bottom:634.893333pt;}
.y15f{bottom:635.693333pt;}
.y92{bottom:638.893333pt;}
.yf{bottom:639.693333pt;}
.yea{bottom:640.506667pt;}
.y38{bottom:646.133333pt;}
.y68{bottom:647.733333pt;}
.y15e{bottom:649.333333pt;}
.yce{bottom:650.933333pt;}
.y91{bottom:654.133333pt;}
.ye9{bottom:655.733333pt;}
.y37{bottom:661.333333pt;}
.y15d{bottom:662.933333pt;}
.y67{bottom:663.733333pt;}
.ycd{bottom:666.933333pt;}
.y90{bottom:669.333333pt;}
.ye8{bottom:670.933333pt;}
.y15c{bottom:675.733333pt;}
.ye{bottom:676.533333pt;}
.y36{bottom:677.333333pt;}
.ya5{bottom:678.133333pt;}
.y66{bottom:679.733333pt;}
.y8f{bottom:685.360000pt;}
.ye7{bottom:686.173333pt;}
.y15b{bottom:689.373333pt;}
.y35{bottom:692.560000pt;}
.y65{bottom:695.760000pt;}
.ycc{bottom:698.960000pt;}
.ye6{bottom:701.373333pt;}
.y15a{bottom:702.960000pt;}
.yd{bottom:703.773333pt;}
.y34{bottom:707.760000pt;}
.y64{bottom:711.760000pt;}
.y159{bottom:715.773333pt;}
.y8e{bottom:716.560000pt;}
.ye5{bottom:717.373333pt;}
.y33{bottom:722.960000pt;}
.yf7{bottom:724.560000pt;}
.y63{bottom:727.800000pt;}
.y158{bottom:729.400000pt;}
.ycb{bottom:731.800000pt;}
.ye4{bottom:732.600000pt;}
.y32{bottom:738.200000pt;}
.y157{bottom:743.000000pt;}
.y62{bottom:743.800000pt;}
.yc{bottom:744.600000pt;}
.yca{bottom:747.000000pt;}
.ye3{bottom:747.800000pt;}
.y8d{bottom:748.600000pt;}
.y31{bottom:753.400000pt;}
.y156{bottom:755.800000pt;}
.y61{bottom:759.800000pt;}
.yc9{bottom:762.200000pt;}
.ye2{bottom:763.000000pt;}
.y8c{bottom:763.800000pt;}
.y30{bottom:769.426667pt;}
.y8{bottom:775.840000pt;}
.yc8{bottom:777.426667pt;}
.ye1{bottom:778.226667pt;}
.y8b{bottom:779.026667pt;}
.y155{bottom:783.040000pt;}
.y60{bottom:791.840000pt;}
.yc7{bottom:792.626667pt;}
.ye0{bottom:793.426667pt;}
.y8a{bottom:794.226667pt;}
.y154{bottom:795.840000pt;}
.y125{bottom:796.626667pt;}
.y2f{bottom:800.626667pt;}
.y1{bottom:805.426667pt;}
.y5f{bottom:807.866667pt;}
.y89{bottom:809.466667pt;}
.y124{bottom:811.866667pt;}
.y153{bottom:823.066667pt;}
.y5e{bottom:823.866667pt;}
.ydf{bottom:824.666667pt;}
.y88{bottom:825.466667pt;}
.y123{bottom:827.066667pt;}
.y152{bottom:835.866667pt;}
.y5d{bottom:839.866667pt;}
.y87{bottom:840.666667pt;}
.y122{bottom:842.266667pt;}
.y2e{bottom:845.466667pt;}
.y151{bottom:849.506667pt;}
.y5c{bottom:855.893333pt;}
.y121{bottom:857.506667pt;}
.y2d{bottom:859.106667pt;}
.y150{bottom:863.093333pt;}
.y5b{bottom:871.893333pt;}
.y2c{bottom:873.506667pt;}
.y14f{bottom:875.893333pt;}
.y86{bottom:881.506667pt;}
.y5a{bottom:887.893333pt;}
.y2b{bottom:888.733333pt;}
.y14e{bottom:889.533333pt;}
.y2a{bottom:918.333333pt;}
.h13{height:18.400000pt;}
.h16{height:18.433333pt;}
.h3{height:18.712500pt;}
.h17{height:19.200000pt;}
.h14{height:19.233333pt;}
.h6{height:30.082812pt;}
.h7{height:30.407812pt;}
.h8{height:31.606250pt;}
.h1a{height:32.000000pt;}
.h19{height:32.033333pt;}
.h15{height:33.312500pt;}
.he{height:33.867188pt;}
.h18{height:34.512500pt;}
.hf{height:34.710938pt;}
.h4{height:35.085938pt;}
.h20{height:38.382812pt;}
.h10{height:39.339062pt;}
.h11{height:39.604687pt;}
.h12{height:39.764062pt;}
.h1d{height:42.656250pt;}
.h9{height:46.281250pt;}
.hc{height:50.909375pt;}
.h1b{height:56.033333pt;}
.hd{height:57.996875pt;}
.hb{height:58.156875pt;}
.h1c{height:60.429688pt;}
.ha{height:64.890169pt;}
.h5{height:68.044857pt;}
.h1f{height:89.283021pt;}
.h1e{height:103.456250pt;}
.h2{height:124.100000pt;}
.h0{height:990.400000pt;}
.h1{height:990.666667pt;}
.w8{width:50.466667pt;}
.wb{width:63.266667pt;}
.w9{width:64.066667pt;}
.wa{width:64.100000pt;}
.w2{width:84.900000pt;}
.we{width:112.933333pt;}
.wc{width:113.700000pt;}
.wd{width:113.733333pt;}
.w7{width:132.933333pt;}
.w4{width:160.960000pt;}
.w3{width:379.586667pt;}
.w1{width:725.333333pt;}
.w6{width:725.599978pt;}
.w5{width:725.599989pt;}
.w0{width:725.600000pt;}
.x0{left:0.000000pt;}
.x19{left:7.200000pt;}
.x9{left:48.866656pt;}
.xf{left:50.466656pt;}
.x15{left:52.866656pt;}
.x1{left:56.066667pt;}
.x33{left:57.666656pt;}
.x11{left:59.266656pt;}
.x14{left:64.866656pt;}
.x3c{left:67.266656pt;}
.x16{left:68.866656pt;}
.x2{left:75.266667pt;}
.x4{left:76.866667pt;}
.x28{left:80.900000pt;}
.x6{left:85.653333pt;}
.x32{left:96.099989pt;}
.x30{left:98.499989pt;}
.xa{left:100.099989pt;}
.x13{left:107.299989pt;}
.x27{left:108.933323pt;}
.x5{left:128.133333pt;}
.x3b{left:134.533323pt;}
.x1c{left:137.733333pt;}
.x3e{left:139.333323pt;}
.x3{left:140.973333pt;}
.x8{left:148.160000pt;}
.x35{left:150.573323pt;}
.x34{left:168.973323pt;}
.x3d{left:172.999989pt;}
.x36{left:175.399989pt;}
.xc{left:180.199978pt;}
.xd{left:188.999989pt;}
.x29{left:194.600000pt;}
.x1b{left:198.599989pt;}
.x1d{left:201.800000pt;}
.x22{left:205.840000pt;}
.x17{left:235.466656pt;}
.x39{left:241.066656pt;}
.x1e{left:265.906667pt;}
.x18{left:269.906667pt;}
.xb{left:290.706656pt;}
.x2e{left:295.533323pt;}
.xe{left:301.933323pt;}
.x2a{left:308.333333pt;}
.x38{left:317.933323pt;}
.x1f{left:329.173333pt;}
.x23{left:333.173333pt;}
.x12{left:334.773323pt;}
.x10{left:348.359989pt;}
.x20{left:393.240000pt;}
.x24{left:397.240000pt;}
.x1a{left:402.840000pt;}
.x2b{left:422.066667pt;}
.x21{left:457.306667pt;}
.x25{left:460.506667pt;}
.x7{left:520.573333pt;}
.x26{left:524.573333pt;}
.x2c{left:535.773333pt;}
.x37{left:603.026656pt;}
.x2d{left:663.106656pt;}
.x3a{left:667.106656pt;}
.x2f{left:673.533323pt;}
.x31{left:677.533323pt;}
}




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