
    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_635ff334133395c11427b9f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.004395;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_b627f9f63ff0a6d54ebfd578.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_75d48da2935877dfdd70387c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7676c4ae53f0138e6e8de1db.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_da82ad83e1b3a43baac5e39b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_c12045623d3a82bd7028a321.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_1cc38f75c56e7785dcda1f73.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_36248149a3bed6938804252b.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_141a8cbe7acb814bbfe219c1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ce9e37ef629c3cbd75b2fa37.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_762bfdd9987e5512325b9a6d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v3{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.600000px;}
.ls22{letter-spacing:-1.800000px;}
.ls1e{letter-spacing:-0.918000px;}
.ls23{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.600000px;}
.ls20{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls21{letter-spacing:-0.348000px;}
.ls10{letter-spacing:-0.246000px;}
.ls11{letter-spacing:-0.222000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000003px;}
.lsc{letter-spacing:0.204000px;}
.ls1a{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.300000px;}
.lse{letter-spacing:0.306000px;}
.lsa{letter-spacing:0.348000px;}
.lsf{letter-spacing:0.402000px;}
.ls7{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.762000px;}
.ls5{letter-spacing:0.780000px;}
.ls0{letter-spacing:0.840000px;}
.ls1d{letter-spacing:2.700000px;}
.ls18{letter-spacing:7.500000px;}
.ls17{letter-spacing:12.300000px;}
.ls12{letter-spacing:15.900000px;}
.ls9{letter-spacing:17.100000px;}
.lsd{letter-spacing:19.500000px;}
.ls16{letter-spacing:20.700000px;}
.ls13{letter-spacing:21.900000px;}
.ls6{letter-spacing:25.500000px;}
.ls1c{letter-spacing:26.700000px;}
.ls15{letter-spacing:32.700000px;}
.ls8{letter-spacing:44.820000px;}
.ls1{letter-spacing:2059.230000px;}
.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:-66.000000px;}
.ws4{word-spacing:-18.000000px;}
.wse{word-spacing:-17.100000px;}
.ws5{word-spacing:-16.500000px;}
.wsd{word-spacing:-15.582000px;}
.ws8{word-spacing:-15.318000px;}
.ws6{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.916000px;}
.wsa{word-spacing:-14.694000px;}
.ws9{word-spacing:-14.670000px;}
.ws3{word-spacing:-14.340000px;}
.ws1{word-spacing:-13.560000px;}
.ws0{word-spacing:-13.140000px;}
.wsb{word-spacing:-10.500000px;}
.ws2{word-spacing:0.000000px;}
._2c{margin-left:-10.128000px;}
._2a{margin-left:-6.708000px;}
._25{margin-left:-2.304000px;}
._1{margin-left:-1.296000px;}
._0{width:1.200000px;}
._b{width:2.316000px;}
._e{width:4.128000px;}
._d{width:5.190000px;}
._20{width:6.342000px;}
._14{width:7.422000px;}
._10{width:8.820000px;}
._22{width:9.840000px;}
._7{width:11.016000px;}
._1e{width:12.480000px;}
._a{width:13.530000px;}
._4{width:15.420000px;}
._21{width:17.862000px;}
._1f{width:19.470000px;}
._6{width:20.658000px;}
._5{width:22.008000px;}
._c{width:23.430000px;}
._2{width:24.462000px;}
._3{width:25.554000px;}
._1d{width:26.688000px;}
._f{width:28.446000px;}
._18{width:30.228000px;}
._17{width:31.446000px;}
._27{width:32.976000px;}
._28{width:34.242000px;}
._11{width:35.244000px;}
._13{width:36.312000px;}
._12{width:37.452000px;}
._15{width:38.874000px;}
._16{width:39.942000px;}
._9{width:41.706000px;}
._8{width:42.744000px;}
._19{width:44.880000px;}
._2b{width:45.930000px;}
._23{width:54.450000px;}
._24{width:55.602000px;}
._2d{width:58.980000px;}
._2e{width:61.026000px;}
._1b{width:62.172000px;}
._1a{width:63.492000px;}
._1c{width:64.632000px;}
._29{width:73.638000px;}
._26{width:186.174000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(55,65,81);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:39.600000px;}
.fs8{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:4.500000px;}
.y97{bottom:4.800000px;}
.y99{bottom:24.600000px;}
.y4{bottom:56.437500px;}
.ybf{bottom:80.737500px;}
.y161{bottom:81.337500px;}
.y191{bottom:82.237500px;}
.y9f{bottom:91.837500px;}
.y17f{bottom:94.837500px;}
.y131{bottom:96.037500px;}
.ybe{bottom:99.637500px;}
.y25{bottom:100.237500px;}
.y62{bottom:104.737500px;}
.yd6{bottom:105.037500px;}
.yed{bottom:105.337500px;}
.y100{bottom:106.837500px;}
.y9e{bottom:110.737500px;}
.y130{bottom:114.937500px;}
.y11b{bottom:115.537500px;}
.y17e{bottom:116.437500px;}
.y3b{bottom:116.737500px;}
.y24{bottom:118.237500px;}
.ybd{bottom:118.837500px;}
.y190{bottom:119.137500px;}
.y14f{bottom:122.437500px;}
.y23{bottom:122.737500px;}
.y61{bottom:123.637500px;}
.yd5{bottom:123.937500px;}
.yec{bottom:124.237500px;}
.yff{bottom:125.737500px;}
.y9d{bottom:129.637500px;}
.y12f{bottom:133.837500px;}
.y11a{bottom:134.437500px;}
.ybc{bottom:137.737500px;}
.y22{bottom:138.337500px;}
.y60{bottom:142.875000px;}
.yeb{bottom:143.475000px;}
.yfe{bottom:144.675000px;}
.y9c{bottom:148.575000px;}
.y160{bottom:148.875000px;}
.y12e{bottom:153.075000px;}
.y119{bottom:153.375000px;}
.y14e{bottom:154.875000px;}
.y21{bottom:155.175000px;}
.y1a3{bottom:155.775000px;}
.ybb{bottom:156.675000px;}
.y3a{bottom:157.875000px;}
.y17d{bottom:160.275000px;}
.y5f{bottom:161.775000px;}
.yd4{bottom:162.075000px;}
.yea{bottom:162.375000px;}
.yfd{bottom:163.575000px;}
.y9b{bottom:164.775000px;}
.y20{bottom:172.275000px;}
.yba{bottom:175.575000px;}
.y5e{bottom:180.675000px;}
.yd3{bottom:180.975000px;}
.ye9{bottom:181.275000px;}
.y17c{bottom:181.875000px;}
.y15f{bottom:182.775000px;}
.y118{bottom:184.275000px;}
.y12d{bottom:185.175000px;}
.y14d{bottom:186.975000px;}
.y1f{bottom:189.675000px;}
.y1a2{bottom:192.675000px;}
.y39{bottom:194.775000px;}
.y5d{bottom:199.575000px;}
.yd2{bottom:199.875000px;}
.ye8{bottom:200.175000px;}
.y117{bottom:203.475000px;}
.y17b{bottom:203.775000px;}
.y12c{bottom:204.075000px;}
.y84{bottom:204.975000px;}
.y98{bottom:205.875000px;}
.y1e{bottom:206.775000px;}
.yfc{bottom:213.675000px;}
.y15e{bottom:216.675000px;}
.y5c{bottom:218.775000px;}
.y14c{bottom:219.075000px;}
.ye7{bottom:219.375000px;}
.y116{bottom:222.375000px;}
.y83{bottom:223.875000px;}
.y1d{bottom:224.175000px;}
.y17a{bottom:225.675000px;}
.y1a1{bottom:229.575000px;}
.y38{bottom:231.375000px;}
.y18f{bottom:231.675000px;}
.yfb{bottom:232.575000px;}
.y12b{bottom:236.175000px;}
.y5b{bottom:237.675000px;}
.ye6{bottom:238.275000px;}
.yb9{bottom:239.475000px;}
.y1c{bottom:241.275000px;}
.y82{bottom:242.775000px;}
.y96{bottom:246.675000px;}
.y179{bottom:247.575000px;}
.yd1{bottom:249.975000px;}
.y15d{bottom:250.275000px;}
.y14b{bottom:251.175000px;}
.yfa{bottom:251.475000px;}
.y115{bottom:254.475000px;}
.y12a{bottom:255.375000px;}
.ye5{bottom:257.175000px;}
.yb8{bottom:258.375000px;}
.y1b{bottom:258.675000px;}
.y81{bottom:261.975000px;}
.y1a0{bottom:266.175000px;}
.y37{bottom:268.275000px;}
.y5a{bottom:268.575000px;}
.y178{bottom:269.175000px;}
.yf9{bottom:270.675000px;}
.y114{bottom:273.375000px;}
.y129{bottom:274.275000px;}
.y1a{bottom:275.820000px;}
.ye4{bottom:276.120000px;}
.yb7{bottom:277.320000px;}
.y80{bottom:280.920000px;}
.yd0{bottom:282.720000px;}
.y95{bottom:283.020000px;}
.y14a{bottom:283.320000px;}
.y15c{bottom:284.220000px;}
.y59{bottom:287.520000px;}
.yf8{bottom:289.620000px;}
.y177{bottom:291.120000px;}
.y113{bottom:292.320000px;}
.y19{bottom:293.220000px;}
.ye3{bottom:295.320000px;}
.yb6{bottom:296.220000px;}
.ycf{bottom:301.620000px;}
.y19f{bottom:303.120000px;}
.y36{bottom:305.220000px;}
.y58{bottom:306.720000px;}
.yf7{bottom:308.520000px;}
.y18{bottom:310.320000px;}
.y7f{bottom:311.820000px;}
.y128{bottom:312.120000px;}
.y94{bottom:312.720000px;}
.y176{bottom:313.020000px;}
.ye2{bottom:314.220000px;}
.yb5{bottom:315.420000px;}
.y149{bottom:315.720000px;}
.y15b{bottom:318.120000px;}
.yce{bottom:320.520000px;}
.y112{bottom:324.720000px;}
.y57{bottom:325.620000px;}
.y17{bottom:327.720000px;}
.y7e{bottom:330.720000px;}
.y93{bottom:331.620000px;}
.ye1{bottom:333.120000px;}
.yb4{bottom:334.320000px;}
.y175{bottom:334.920000px;}
.ycd{bottom:339.420000px;}
.y19e{bottom:340.020000px;}
.y35{bottom:342.120000px;}
.y127{bottom:343.320000px;}
.y111{bottom:343.620000px;}
.y56{bottom:344.520000px;}
.y16{bottom:344.820000px;}
.y148{bottom:347.820000px;}
.y7d{bottom:349.920000px;}
.y92{bottom:350.520000px;}
.ye0{bottom:352.020000px;}
.y174{bottom:356.520000px;}
.ycc{bottom:358.620000px;}
.y126{bottom:362.220000px;}
.y55{bottom:363.420000px;}
.yb3{bottom:365.220000px;}
.y147{bottom:366.720000px;}
.y7c{bottom:368.820000px;}
.y91{bottom:369.720000px;}
.ydf{bottom:371.220000px;}
.y15{bottom:374.520000px;}
.y110{bottom:375.720000px;}
.y19d{bottom:376.920000px;}
.ycb{bottom:377.520000px;}
.y173{bottom:378.420000px;}
.y34{bottom:378.720000px;}
.y18e{bottom:379.020000px;}
.y125{bottom:381.120000px;}
.y54{bottom:382.620000px;}
.yb2{bottom:384.120000px;}
.y146{bottom:385.620000px;}
.y7b{bottom:387.720000px;}
.y90{bottom:388.620000px;}
.y10f{bottom:394.620000px;}
.yca{bottom:396.420000px;}
.y172{bottom:400.320000px;}
.y53{bottom:401.520000px;}
.yb1{bottom:403.320000px;}
.y7a{bottom:406.620000px;}
.y8f{bottom:407.520000px;}
.y14{bottom:411.450000px;}
.y124{bottom:412.350000px;}
.y19c{bottom:413.550000px;}
.y10e{bottom:413.850000px;}
.yf6{bottom:415.350000px;}
.y33{bottom:415.650000px;}
.y145{bottom:416.850000px;}
.y15a{bottom:419.550000px;}
.y52{bottom:420.450000px;}
.yb0{bottom:422.250000px;}
.y79{bottom:425.850000px;}
.y8e{bottom:426.450000px;}
.yc9{bottom:427.350000px;}
.yde{bottom:427.650000px;}
.y10d{bottom:432.750000px;}
.y51{bottom:439.350000px;}
.yaf{bottom:441.150000px;}
.y171{bottom:443.850000px;}
.y78{bottom:444.750000px;}
.y8d{bottom:445.650000px;}
.yc8{bottom:446.550000px;}
.y144{bottom:449.550000px;}
.y19b{bottom:450.450000px;}
.y32{bottom:452.550000px;}
.y159{bottom:453.450000px;}
.y13{bottom:455.250000px;}
.yae{bottom:460.050000px;}
.y77{bottom:463.650000px;}
.y123{bottom:463.950000px;}
.y8c{bottom:464.550000px;}
.yc7{bottom:465.450000px;}
.y170{bottom:465.750000px;}
.y143{bottom:468.450000px;}
.y50{bottom:470.550000px;}
.y10c{bottom:482.550000px;}
.y122{bottom:482.850000px;}
.y8b{bottom:483.450000px;}
.yc6{bottom:484.350000px;}
.y158{bottom:487.050000px;}
.y142{bottom:487.350000px;}
.y16f{bottom:487.650000px;}
.y31{bottom:489.150000px;}
.y4f{bottom:489.450000px;}
.yad{bottom:491.250000px;}
.y12{bottom:492.450000px;}
.y76{bottom:494.850000px;}
.y10b{bottom:501.750000px;}
.y8a{bottom:502.350000px;}
.yc5{bottom:503.250000px;}
.y141{bottom:506.250000px;}
.y4e{bottom:508.350000px;}
.y16e{bottom:509.250000px;}
.yac{bottom:510.150000px;}
.y10a{bottom:520.650000px;}
.y157{bottom:520.950000px;}
.y89{bottom:521.550000px;}
.yc4{bottom:522.450000px;}
.y19a{bottom:524.250000px;}
.y30{bottom:526.050000px;}
.y18d{bottom:526.350000px;}
.y4d{bottom:527.250000px;}
.y75{bottom:527.550000px;}
.yab{bottom:529.050000px;}
.y11{bottom:531.150000px;}
.y121{bottom:532.650000px;}
.y140{bottom:537.450000px;}
.y109{bottom:539.550000px;}
.y88{bottom:540.450000px;}
.yf5{bottom:541.350000px;}
.y18c{bottom:545.550000px;}
.y4c{bottom:546.495000px;}
.yaa{bottom:547.995000px;}
.y16d{bottom:553.095000px;}
.yc3{bottom:553.695000px;}
.y156{bottom:554.895000px;}
.y108{bottom:558.495000px;}
.y87{bottom:559.395000px;}
.y74{bottom:559.995000px;}
.y199{bottom:560.895000px;}
.y2f{bottom:562.995000px;}
.y120{bottom:564.795000px;}
.y4b{bottom:565.395000px;}
.ya9{bottom:567.195000px;}
.y13f{bottom:569.595000px;}
.y10{bottom:570.195000px;}
.yf4{bottom:572.295000px;}
.y16c{bottom:574.995000px;}
.y107{bottom:577.695000px;}
.y73{bottom:579.195000px;}
.y4a{bottom:584.295000px;}
.ya8{bottom:586.095000px;}
.y155{bottom:588.795000px;}
.y86{bottom:589.995000px;}
.yf3{bottom:591.195000px;}
.y106{bottom:596.595000px;}
.y11f{bottom:597.195000px;}
.y198{bottom:597.795000px;}
.y72{bottom:598.095000px;}
.y2e{bottom:599.895000px;}
.y13e{bottom:601.695000px;}
.y49{bottom:603.195000px;}
.y85{bottom:604.095000px;}
.ya7{bottom:604.995000px;}
.yf{bottom:609.795000px;}
.yf2{bottom:610.395000px;}
.y18b{bottom:610.695000px;}
.y16b{bottom:618.495000px;}
.y48{bottom:622.395000px;}
.ya6{bottom:623.895000px;}
.y105{bottom:627.795000px;}
.y71{bottom:628.995000px;}
.yf1{bottom:629.295000px;}
.y18a{bottom:632.595000px;}
.y13d{bottom:633.795000px;}
.y197{bottom:634.695000px;}
.y2d{bottom:636.495000px;}
.y16a{bottom:640.395000px;}
.y47{bottom:641.295000px;}
.ya5{bottom:643.095000px;}
.y70{bottom:647.895000px;}
.yf0{bottom:648.195000px;}
.ye{bottom:651.795000px;}
.y189{bottom:654.195000px;}
.y154{bottom:656.295000px;}
.y46{bottom:660.195000px;}
.ya4{bottom:661.995000px;}
.y169{bottom:662.295000px;}
.y13c{bottom:665.895000px;}
.y6f{bottom:667.095000px;}
.y196{bottom:671.295000px;}
.y2c{bottom:673.395000px;}
.y188{bottom:676.095000px;}
.y45{bottom:679.095000px;}
.yc2{bottom:680.895000px;}
.y168{bottom:683.925000px;}
.y13b{bottom:685.125000px;}
.y6e{bottom:686.025000px;}
.y11e{bottom:686.325000px;}
.y153{bottom:690.225000px;}
.yd{bottom:690.525000px;}
.ya3{bottom:692.925000px;}
.y187{bottom:698.025000px;}
.y44{bottom:698.325000px;}
.ydd{bottom:699.825000px;}
.y13a{bottom:704.025000px;}
.y6d{bottom:704.925000px;}
.y11d{bottom:705.225000px;}
.y167{bottom:705.825000px;}
.y195{bottom:708.225000px;}
.y2b{bottom:710.325000px;}
.ya2{bottom:711.825000px;}
.y43{bottom:717.225000px;}
.ydc{bottom:719.025000px;}
.y186{bottom:719.925000px;}
.y139{bottom:722.925000px;}
.y6c{bottom:723.825000px;}
.y11c{bottom:724.125000px;}
.y166{bottom:727.725000px;}
.ya1{bottom:731.025000px;}
.yef{bottom:736.125000px;}
.ydb{bottom:737.925000px;}
.y185{bottom:741.525000px;}
.y6b{bottom:743.025000px;}
.y194{bottom:745.125000px;}
.y2a{bottom:747.225000px;}
.y42{bottom:748.125000px;}
.y165{bottom:749.325000px;}
.yc{bottom:749.925000px;}
.y138{bottom:754.125000px;}
.yee{bottom:755.025000px;}
.yda{bottom:756.825000px;}
.y152{bottom:757.725000px;}
.y6a{bottom:761.925000px;}
.y184{bottom:763.425000px;}
.y41{bottom:767.025000px;}
.ya0{bottom:768.825000px;}
.yb{bottom:769.125000px;}
.y164{bottom:771.225000px;}
.y104{bottom:774.225000px;}
.yd9{bottom:775.725000px;}
.y69{bottom:780.825000px;}
.y193{bottom:782.025000px;}
.y29{bottom:783.825000px;}
.y183{bottom:785.325000px;}
.y40{bottom:786.225000px;}
.y137{bottom:786.525000px;}
.yc1{bottom:787.725000px;}
.ya{bottom:789.825000px;}
.y151{bottom:791.625000px;}
.y103{bottom:793.125000px;}
.y68{bottom:799.725000px;}
.y3f{bottom:805.125000px;}
.y136{bottom:805.725000px;}
.yc0{bottom:806.925000px;}
.y182{bottom:807.225000px;}
.y9{bottom:810.525000px;}
.y102{bottom:812.025000px;}
.y163{bottom:815.025000px;}
.y192{bottom:818.670000px;}
.y67{bottom:818.970000px;}
.y28{bottom:820.770000px;}
.y3e{bottom:824.070000px;}
.y150{bottom:825.570000px;}
.yd8{bottom:825.870000px;}
.y181{bottom:828.870000px;}
.y8{bottom:831.270000px;}
.y135{bottom:836.670000px;}
.y66{bottom:837.870000px;}
.y3d{bottom:842.970000px;}
.y101{bottom:843.270000px;}
.yd7{bottom:844.770000px;}
.y180{bottom:850.770000px;}
.y7{bottom:851.970000px;}
.y134{bottom:855.570000px;}
.y65{bottom:856.770000px;}
.y27{bottom:857.670000px;}
.y162{bottom:858.570000px;}
.y3c{bottom:862.170000px;}
.y6{bottom:872.670000px;}
.y133{bottom:874.470000px;}
.y64{bottom:875.670000px;}
.y5{bottom:893.370000px;}
.y132{bottom:893.670000px;}
.y26{bottom:894.570000px;}
.y63{bottom:894.870000px;}
.y3{bottom:914.670000px;}
.y2{bottom:934.770000px;}
.y1{bottom:953.100000px;}
.h10{height:20.400000px;}
.ha{height:35.332031px;}
.h9{height:38.865234px;}
.h12{height:40.200000px;}
.hb{height:48.410156px;}
.h2{height:49.570312px;}
.hc{height:52.998047px;}
.h3{height:58.886719px;}
.hd{height:59.167969px;}
.he{height:60.468750px;}
.hf{height:64.743164px;}
.h5{height:64.775391px;}
.h11{height:65.645508px;}
.h15{height:66.515625px;}
.h13{height:67.579102px;}
.h14{height:67.837600px;}
.h8{height:70.664062px;}
.h4{height:72.562500px;}
.h7{height:74.709375px;}
.h6{height:84.656250px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w5{width:171.975000px;}
.w4{width:172.275000px;}
.w1{width:680.250000px;}
.w3{width:680.399980px;}
.w2{width:680.399990px;}
.w0{width:680.400000px;}
.x0{left:0.000000px;}
.xe{left:7.800000px;}
.x11{left:19.800000px;}
.x14{left:27.300000px;}
.x13{left:39.000000px;}
.x1{left:76.537490px;}
.x9{left:81.037490px;}
.x12{left:85.837500px;}
.x4{left:87.937490px;}
.xc{left:119.137490px;}
.xb{left:129.637490px;}
.x6{left:154.574990px;}
.x15{left:180.974990px;}
.x5{left:200.774990px;}
.xf{left:250.020000px;}
.x3{left:288.419990px;}
.x8{left:335.849990px;}
.x7{left:362.549990px;}
.x10{left:422.895000px;}
.xa{left:448.694990px;}
.xd{left:557.324990px;}
.x2{left:595.469990px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.533333pt;}
.ls22{letter-spacing:-1.600000pt;}
.ls1e{letter-spacing:-0.816000pt;}
.ls23{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls21{letter-spacing:-0.309333pt;}
.ls10{letter-spacing:-0.218667pt;}
.ls11{letter-spacing:-0.197333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000003pt;}
.lsc{letter-spacing:0.181333pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.272000pt;}
.lsa{letter-spacing:0.309333pt;}
.lsf{letter-spacing:0.357333pt;}
.ls7{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.677333pt;}
.ls5{letter-spacing:0.693333pt;}
.ls0{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:2.400000pt;}
.ls18{letter-spacing:6.666667pt;}
.ls17{letter-spacing:10.933333pt;}
.ls12{letter-spacing:14.133333pt;}
.ls9{letter-spacing:15.200000pt;}
.lsd{letter-spacing:17.333333pt;}
.ls16{letter-spacing:18.400000pt;}
.ls13{letter-spacing:19.466667pt;}
.ls6{letter-spacing:22.666667pt;}
.ls1c{letter-spacing:23.733333pt;}
.ls15{letter-spacing:29.066667pt;}
.ls8{letter-spacing:39.840000pt;}
.ls1{letter-spacing:1830.426667pt;}
.wsc{word-spacing:-58.666667pt;}
.ws4{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.200000pt;}
.ws5{word-spacing:-14.666667pt;}
.wsd{word-spacing:-13.850667pt;}
.ws8{word-spacing:-13.616000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.258667pt;}
.wsa{word-spacing:-13.061333pt;}
.ws9{word-spacing:-13.040000pt;}
.ws3{word-spacing:-12.746667pt;}
.ws1{word-spacing:-12.053333pt;}
.ws0{word-spacing:-11.680000pt;}
.wsb{word-spacing:-9.333333pt;}
.ws2{word-spacing:0.000000pt;}
._2c{margin-left:-9.002667pt;}
._2a{margin-left:-5.962667pt;}
._25{margin-left:-2.048000pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.066667pt;}
._b{width:2.058667pt;}
._e{width:3.669333pt;}
._d{width:4.613333pt;}
._20{width:5.637333pt;}
._14{width:6.597333pt;}
._10{width:7.840000pt;}
._22{width:8.746667pt;}
._7{width:9.792000pt;}
._1e{width:11.093333pt;}
._a{width:12.026667pt;}
._4{width:13.706667pt;}
._21{width:15.877333pt;}
._1f{width:17.306667pt;}
._6{width:18.362667pt;}
._5{width:19.562667pt;}
._c{width:20.826667pt;}
._2{width:21.744000pt;}
._3{width:22.714667pt;}
._1d{width:23.722667pt;}
._f{width:25.285333pt;}
._18{width:26.869333pt;}
._17{width:27.952000pt;}
._27{width:29.312000pt;}
._28{width:30.437333pt;}
._11{width:31.328000pt;}
._13{width:32.277333pt;}
._12{width:33.290667pt;}
._15{width:34.554667pt;}
._16{width:35.504000pt;}
._9{width:37.072000pt;}
._8{width:37.994667pt;}
._19{width:39.893333pt;}
._2b{width:40.826667pt;}
._23{width:48.400000pt;}
._24{width:49.424000pt;}
._2d{width:52.426667pt;}
._2e{width:54.245333pt;}
._1b{width:55.264000pt;}
._1a{width:56.437333pt;}
._1c{width:57.450667pt;}
._29{width:65.456000pt;}
._26{width:165.488000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:35.200000pt;}
.fs8{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:4.000000pt;}
.y97{bottom:4.266667pt;}
.y99{bottom:21.866667pt;}
.y4{bottom:50.166667pt;}
.ybf{bottom:71.766667pt;}
.y161{bottom:72.300000pt;}
.y191{bottom:73.100000pt;}
.y9f{bottom:81.633333pt;}
.y17f{bottom:84.300000pt;}
.y131{bottom:85.366667pt;}
.ybe{bottom:88.566667pt;}
.y25{bottom:89.100000pt;}
.y62{bottom:93.100000pt;}
.yd6{bottom:93.366667pt;}
.yed{bottom:93.633333pt;}
.y100{bottom:94.966667pt;}
.y9e{bottom:98.433333pt;}
.y130{bottom:102.166667pt;}
.y11b{bottom:102.700000pt;}
.y17e{bottom:103.500000pt;}
.y3b{bottom:103.766667pt;}
.y24{bottom:105.100000pt;}
.ybd{bottom:105.633333pt;}
.y190{bottom:105.900000pt;}
.y14f{bottom:108.833333pt;}
.y23{bottom:109.100000pt;}
.y61{bottom:109.900000pt;}
.yd5{bottom:110.166667pt;}
.yec{bottom:110.433333pt;}
.yff{bottom:111.766667pt;}
.y9d{bottom:115.233333pt;}
.y12f{bottom:118.966667pt;}
.y11a{bottom:119.500000pt;}
.ybc{bottom:122.433333pt;}
.y22{bottom:122.966667pt;}
.y60{bottom:127.000000pt;}
.yeb{bottom:127.533333pt;}
.yfe{bottom:128.600000pt;}
.y9c{bottom:132.066667pt;}
.y160{bottom:132.333333pt;}
.y12e{bottom:136.066667pt;}
.y119{bottom:136.333333pt;}
.y14e{bottom:137.666667pt;}
.y21{bottom:137.933333pt;}
.y1a3{bottom:138.466667pt;}
.ybb{bottom:139.266667pt;}
.y3a{bottom:140.333333pt;}
.y17d{bottom:142.466667pt;}
.y5f{bottom:143.800000pt;}
.yd4{bottom:144.066667pt;}
.yea{bottom:144.333333pt;}
.yfd{bottom:145.400000pt;}
.y9b{bottom:146.466667pt;}
.y20{bottom:153.133333pt;}
.yba{bottom:156.066667pt;}
.y5e{bottom:160.600000pt;}
.yd3{bottom:160.866667pt;}
.ye9{bottom:161.133333pt;}
.y17c{bottom:161.666667pt;}
.y15f{bottom:162.466667pt;}
.y118{bottom:163.800000pt;}
.y12d{bottom:164.600000pt;}
.y14d{bottom:166.200000pt;}
.y1f{bottom:168.600000pt;}
.y1a2{bottom:171.266667pt;}
.y39{bottom:173.133333pt;}
.y5d{bottom:177.400000pt;}
.yd2{bottom:177.666667pt;}
.ye8{bottom:177.933333pt;}
.y117{bottom:180.866667pt;}
.y17b{bottom:181.133333pt;}
.y12c{bottom:181.400000pt;}
.y84{bottom:182.200000pt;}
.y98{bottom:183.000000pt;}
.y1e{bottom:183.800000pt;}
.yfc{bottom:189.933333pt;}
.y15e{bottom:192.600000pt;}
.y5c{bottom:194.466667pt;}
.y14c{bottom:194.733333pt;}
.ye7{bottom:195.000000pt;}
.y116{bottom:197.666667pt;}
.y83{bottom:199.000000pt;}
.y1d{bottom:199.266667pt;}
.y17a{bottom:200.600000pt;}
.y1a1{bottom:204.066667pt;}
.y38{bottom:205.666667pt;}
.y18f{bottom:205.933333pt;}
.yfb{bottom:206.733333pt;}
.y12b{bottom:209.933333pt;}
.y5b{bottom:211.266667pt;}
.ye6{bottom:211.800000pt;}
.yb9{bottom:212.866667pt;}
.y1c{bottom:214.466667pt;}
.y82{bottom:215.800000pt;}
.y96{bottom:219.266667pt;}
.y179{bottom:220.066667pt;}
.yd1{bottom:222.200000pt;}
.y15d{bottom:222.466667pt;}
.y14b{bottom:223.266667pt;}
.yfa{bottom:223.533333pt;}
.y115{bottom:226.200000pt;}
.y12a{bottom:227.000000pt;}
.ye5{bottom:228.600000pt;}
.yb8{bottom:229.666667pt;}
.y1b{bottom:229.933333pt;}
.y81{bottom:232.866667pt;}
.y1a0{bottom:236.600000pt;}
.y37{bottom:238.466667pt;}
.y5a{bottom:238.733333pt;}
.y178{bottom:239.266667pt;}
.yf9{bottom:240.600000pt;}
.y114{bottom:243.000000pt;}
.y129{bottom:243.800000pt;}
.y1a{bottom:245.173333pt;}
.ye4{bottom:245.440000pt;}
.yb7{bottom:246.506667pt;}
.y80{bottom:249.706667pt;}
.yd0{bottom:251.306667pt;}
.y95{bottom:251.573333pt;}
.y14a{bottom:251.840000pt;}
.y15c{bottom:252.640000pt;}
.y59{bottom:255.573333pt;}
.yf8{bottom:257.440000pt;}
.y177{bottom:258.773333pt;}
.y113{bottom:259.840000pt;}
.y19{bottom:260.640000pt;}
.ye3{bottom:262.506667pt;}
.yb6{bottom:263.306667pt;}
.ycf{bottom:268.106667pt;}
.y19f{bottom:269.440000pt;}
.y36{bottom:271.306667pt;}
.y58{bottom:272.640000pt;}
.yf7{bottom:274.240000pt;}
.y18{bottom:275.840000pt;}
.y7f{bottom:277.173333pt;}
.y128{bottom:277.440000pt;}
.y94{bottom:277.973333pt;}
.y176{bottom:278.240000pt;}
.ye2{bottom:279.306667pt;}
.yb5{bottom:280.373333pt;}
.y149{bottom:280.640000pt;}
.y15b{bottom:282.773333pt;}
.yce{bottom:284.906667pt;}
.y112{bottom:288.640000pt;}
.y57{bottom:289.440000pt;}
.y17{bottom:291.306667pt;}
.y7e{bottom:293.973333pt;}
.y93{bottom:294.773333pt;}
.ye1{bottom:296.106667pt;}
.yb4{bottom:297.173333pt;}
.y175{bottom:297.706667pt;}
.ycd{bottom:301.706667pt;}
.y19e{bottom:302.240000pt;}
.y35{bottom:304.106667pt;}
.y127{bottom:305.173333pt;}
.y111{bottom:305.440000pt;}
.y56{bottom:306.240000pt;}
.y16{bottom:306.506667pt;}
.y148{bottom:309.173333pt;}
.y7d{bottom:311.040000pt;}
.y92{bottom:311.573333pt;}
.ye0{bottom:312.906667pt;}
.y174{bottom:316.906667pt;}
.ycc{bottom:318.773333pt;}
.y126{bottom:321.973333pt;}
.y55{bottom:323.040000pt;}
.yb3{bottom:324.640000pt;}
.y147{bottom:325.973333pt;}
.y7c{bottom:327.840000pt;}
.y91{bottom:328.640000pt;}
.ydf{bottom:329.973333pt;}
.y15{bottom:332.906667pt;}
.y110{bottom:333.973333pt;}
.y19d{bottom:335.040000pt;}
.ycb{bottom:335.573333pt;}
.y173{bottom:336.373333pt;}
.y34{bottom:336.640000pt;}
.y18e{bottom:336.906667pt;}
.y125{bottom:338.773333pt;}
.y54{bottom:340.106667pt;}
.yb2{bottom:341.440000pt;}
.y146{bottom:342.773333pt;}
.y7b{bottom:344.640000pt;}
.y90{bottom:345.440000pt;}
.y10f{bottom:350.773333pt;}
.yca{bottom:352.373333pt;}
.y172{bottom:355.840000pt;}
.y53{bottom:356.906667pt;}
.yb1{bottom:358.506667pt;}
.y7a{bottom:361.440000pt;}
.y8f{bottom:362.240000pt;}
.y14{bottom:365.733333pt;}
.y124{bottom:366.533333pt;}
.y19c{bottom:367.600000pt;}
.y10e{bottom:367.866667pt;}
.yf6{bottom:369.200000pt;}
.y33{bottom:369.466667pt;}
.y145{bottom:370.533333pt;}
.y15a{bottom:372.933333pt;}
.y52{bottom:373.733333pt;}
.yb0{bottom:375.333333pt;}
.y79{bottom:378.533333pt;}
.y8e{bottom:379.066667pt;}
.yc9{bottom:379.866667pt;}
.yde{bottom:380.133333pt;}
.y10d{bottom:384.666667pt;}
.y51{bottom:390.533333pt;}
.yaf{bottom:392.133333pt;}
.y171{bottom:394.533333pt;}
.y78{bottom:395.333333pt;}
.y8d{bottom:396.133333pt;}
.yc8{bottom:396.933333pt;}
.y144{bottom:399.600000pt;}
.y19b{bottom:400.400000pt;}
.y32{bottom:402.266667pt;}
.y159{bottom:403.066667pt;}
.y13{bottom:404.666667pt;}
.yae{bottom:408.933333pt;}
.y77{bottom:412.133333pt;}
.y123{bottom:412.400000pt;}
.y8c{bottom:412.933333pt;}
.yc7{bottom:413.733333pt;}
.y170{bottom:414.000000pt;}
.y143{bottom:416.400000pt;}
.y50{bottom:418.266667pt;}
.y10c{bottom:428.933333pt;}
.y122{bottom:429.200000pt;}
.y8b{bottom:429.733333pt;}
.yc6{bottom:430.533333pt;}
.y158{bottom:432.933333pt;}
.y142{bottom:433.200000pt;}
.y16f{bottom:433.466667pt;}
.y31{bottom:434.800000pt;}
.y4f{bottom:435.066667pt;}
.yad{bottom:436.666667pt;}
.y12{bottom:437.733333pt;}
.y76{bottom:439.866667pt;}
.y10b{bottom:446.000000pt;}
.y8a{bottom:446.533333pt;}
.yc5{bottom:447.333333pt;}
.y141{bottom:450.000000pt;}
.y4e{bottom:451.866667pt;}
.y16e{bottom:452.666667pt;}
.yac{bottom:453.466667pt;}
.y10a{bottom:462.800000pt;}
.y157{bottom:463.066667pt;}
.y89{bottom:463.600000pt;}
.yc4{bottom:464.400000pt;}
.y19a{bottom:466.000000pt;}
.y30{bottom:467.600000pt;}
.y18d{bottom:467.866667pt;}
.y4d{bottom:468.666667pt;}
.y75{bottom:468.933333pt;}
.yab{bottom:470.266667pt;}
.y11{bottom:472.133333pt;}
.y121{bottom:473.466667pt;}
.y140{bottom:477.733333pt;}
.y109{bottom:479.600000pt;}
.y88{bottom:480.400000pt;}
.yf5{bottom:481.200000pt;}
.y18c{bottom:484.933333pt;}
.y4c{bottom:485.773333pt;}
.yaa{bottom:487.106667pt;}
.y16d{bottom:491.640000pt;}
.yc3{bottom:492.173333pt;}
.y156{bottom:493.240000pt;}
.y108{bottom:496.440000pt;}
.y87{bottom:497.240000pt;}
.y74{bottom:497.773333pt;}
.y199{bottom:498.573333pt;}
.y2f{bottom:500.440000pt;}
.y120{bottom:502.040000pt;}
.y4b{bottom:502.573333pt;}
.ya9{bottom:504.173333pt;}
.y13f{bottom:506.306667pt;}
.y10{bottom:506.840000pt;}
.yf4{bottom:508.706667pt;}
.y16c{bottom:511.106667pt;}
.y107{bottom:513.506667pt;}
.y73{bottom:514.840000pt;}
.y4a{bottom:519.373333pt;}
.ya8{bottom:520.973333pt;}
.y155{bottom:523.373333pt;}
.y86{bottom:524.440000pt;}
.yf3{bottom:525.506667pt;}
.y106{bottom:530.306667pt;}
.y11f{bottom:530.840000pt;}
.y198{bottom:531.373333pt;}
.y72{bottom:531.640000pt;}
.y2e{bottom:533.240000pt;}
.y13e{bottom:534.840000pt;}
.y49{bottom:536.173333pt;}
.y85{bottom:536.973333pt;}
.ya7{bottom:537.773333pt;}
.yf{bottom:542.040000pt;}
.yf2{bottom:542.573333pt;}
.y18b{bottom:542.840000pt;}
.y16b{bottom:549.773333pt;}
.y48{bottom:553.240000pt;}
.ya6{bottom:554.573333pt;}
.y105{bottom:558.040000pt;}
.y71{bottom:559.106667pt;}
.yf1{bottom:559.373333pt;}
.y18a{bottom:562.306667pt;}
.y13d{bottom:563.373333pt;}
.y197{bottom:564.173333pt;}
.y2d{bottom:565.773333pt;}
.y16a{bottom:569.240000pt;}
.y47{bottom:570.040000pt;}
.ya5{bottom:571.640000pt;}
.y70{bottom:575.906667pt;}
.yf0{bottom:576.173333pt;}
.ye{bottom:579.373333pt;}
.y189{bottom:581.506667pt;}
.y154{bottom:583.373333pt;}
.y46{bottom:586.840000pt;}
.ya4{bottom:588.440000pt;}
.y169{bottom:588.706667pt;}
.y13c{bottom:591.906667pt;}
.y6f{bottom:592.973333pt;}
.y196{bottom:596.706667pt;}
.y2c{bottom:598.573333pt;}
.y188{bottom:600.973333pt;}
.y45{bottom:603.640000pt;}
.yc2{bottom:605.240000pt;}
.y168{bottom:607.933333pt;}
.y13b{bottom:609.000000pt;}
.y6e{bottom:609.800000pt;}
.y11e{bottom:610.066667pt;}
.y153{bottom:613.533333pt;}
.yd{bottom:613.800000pt;}
.ya3{bottom:615.933333pt;}
.y187{bottom:620.466667pt;}
.y44{bottom:620.733333pt;}
.ydd{bottom:622.066667pt;}
.y13a{bottom:625.800000pt;}
.y6d{bottom:626.600000pt;}
.y11d{bottom:626.866667pt;}
.y167{bottom:627.400000pt;}
.y195{bottom:629.533333pt;}
.y2b{bottom:631.400000pt;}
.ya2{bottom:632.733333pt;}
.y43{bottom:637.533333pt;}
.ydc{bottom:639.133333pt;}
.y186{bottom:639.933333pt;}
.y139{bottom:642.600000pt;}
.y6c{bottom:643.400000pt;}
.y11c{bottom:643.666667pt;}
.y166{bottom:646.866667pt;}
.ya1{bottom:649.800000pt;}
.yef{bottom:654.333333pt;}
.ydb{bottom:655.933333pt;}
.y185{bottom:659.133333pt;}
.y6b{bottom:660.466667pt;}
.y194{bottom:662.333333pt;}
.y2a{bottom:664.200000pt;}
.y42{bottom:665.000000pt;}
.y165{bottom:666.066667pt;}
.yc{bottom:666.600000pt;}
.y138{bottom:670.333333pt;}
.yee{bottom:671.133333pt;}
.yda{bottom:672.733333pt;}
.y152{bottom:673.533333pt;}
.y6a{bottom:677.266667pt;}
.y184{bottom:678.600000pt;}
.y41{bottom:681.800000pt;}
.ya0{bottom:683.400000pt;}
.yb{bottom:683.666667pt;}
.y164{bottom:685.533333pt;}
.y104{bottom:688.200000pt;}
.yd9{bottom:689.533333pt;}
.y69{bottom:694.066667pt;}
.y193{bottom:695.133333pt;}
.y29{bottom:696.733333pt;}
.y183{bottom:698.066667pt;}
.y40{bottom:698.866667pt;}
.y137{bottom:699.133333pt;}
.yc1{bottom:700.200000pt;}
.ya{bottom:702.066667pt;}
.y151{bottom:703.666667pt;}
.y103{bottom:705.000000pt;}
.y68{bottom:710.866667pt;}
.y3f{bottom:715.666667pt;}
.y136{bottom:716.200000pt;}
.yc0{bottom:717.266667pt;}
.y182{bottom:717.533333pt;}
.y9{bottom:720.466667pt;}
.y102{bottom:721.800000pt;}
.y163{bottom:724.466667pt;}
.y192{bottom:727.706667pt;}
.y67{bottom:727.973333pt;}
.y28{bottom:729.573333pt;}
.y3e{bottom:732.506667pt;}
.y150{bottom:733.840000pt;}
.yd8{bottom:734.106667pt;}
.y181{bottom:736.773333pt;}
.y8{bottom:738.906667pt;}
.y135{bottom:743.706667pt;}
.y66{bottom:744.773333pt;}
.y3d{bottom:749.306667pt;}
.y101{bottom:749.573333pt;}
.yd7{bottom:750.906667pt;}
.y180{bottom:756.240000pt;}
.y7{bottom:757.306667pt;}
.y134{bottom:760.506667pt;}
.y65{bottom:761.573333pt;}
.y27{bottom:762.373333pt;}
.y162{bottom:763.173333pt;}
.y3c{bottom:766.373333pt;}
.y6{bottom:775.706667pt;}
.y133{bottom:777.306667pt;}
.y64{bottom:778.373333pt;}
.y5{bottom:794.106667pt;}
.y132{bottom:794.373333pt;}
.y26{bottom:795.173333pt;}
.y63{bottom:795.440000pt;}
.y3{bottom:813.040000pt;}
.y2{bottom:830.906667pt;}
.y1{bottom:847.200000pt;}
.h10{height:18.133333pt;}
.ha{height:31.406250pt;}
.h9{height:34.546875pt;}
.h12{height:35.733333pt;}
.hb{height:43.031250pt;}
.h2{height:44.062500pt;}
.hc{height:47.109375pt;}
.h3{height:52.343750pt;}
.hd{height:52.593750pt;}
.he{height:53.750000pt;}
.hf{height:57.549479pt;}
.h5{height:57.578125pt;}
.h11{height:58.351562pt;}
.h15{height:59.125000pt;}
.h13{height:60.070312pt;}
.h14{height:60.300089pt;}
.h8{height:62.812500pt;}
.h4{height:64.500000pt;}
.h7{height:66.408333pt;}
.h6{height:75.250000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w5{width:152.866667pt;}
.w4{width:153.133333pt;}
.w1{width:604.666667pt;}
.w3{width:604.799982pt;}
.w2{width:604.799991pt;}
.w0{width:604.800000pt;}
.x0{left:0.000000pt;}
.xe{left:6.933333pt;}
.x11{left:17.600000pt;}
.x14{left:24.266667pt;}
.x13{left:34.666667pt;}
.x1{left:68.033324pt;}
.x9{left:72.033324pt;}
.x12{left:76.300000pt;}
.x4{left:78.166658pt;}
.xc{left:105.899991pt;}
.xb{left:115.233324pt;}
.x6{left:137.399991pt;}
.x15{left:160.866658pt;}
.x5{left:178.466658pt;}
.xf{left:222.240000pt;}
.x3{left:256.373324pt;}
.x8{left:298.533324pt;}
.x7{left:322.266658pt;}
.x10{left:375.906667pt;}
.xa{left:398.839991pt;}
.xd{left:495.399991pt;}
.x2{left:529.306658pt;}
}




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