
    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_7adc1ce5bbc9c192dd0a7c7d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_82ddce15edcb486801b60064.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7e6fe8f75a6bf6036213ab2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_4e614dba34ad3f486235451c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_6fdd687f409253d43691b6ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_a412459dd092ae402dd4d517.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a5798bf78e7623b8c55cd90e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982422;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_cb986dfaab3968c8d55cdec2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a44e06a7a3a8268ed012c16b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f58df6ea47d93486e96f0bdb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_54ea71827a435924a81da711.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ac160c3270b611d1c830b36f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ac9619cc356b1b81640f63d5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.800293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.fff{font-family:fff;line-height:0.688477;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:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v3{vertical-align:33.120000px;}
.lsf{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.536400px;}
.lsa{letter-spacing:-0.450000px;}
.ls7{letter-spacing:-0.085200px;}
.ls6{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.034560px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.183600px;}
.ls8{letter-spacing:0.252600px;}
.ls12{letter-spacing:0.269400px;}
.lsc{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.403200px;}
.ls11{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.044000px;}
.ls10{letter-spacing:1.386000px;}
.lsb{letter-spacing:2.106000px;}
.lsd{letter-spacing:2.160000px;}
.lse{letter-spacing:5.760000px;}
.ls14{letter-spacing:36.000000px;}
.ls13{letter-spacing:197.976000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.107200px;}
.ws11{word-spacing:-16.560000px;}
.ws2{word-spacing:-14.935680px;}
.wse{word-spacing:-13.230000px;}
.ws4{word-spacing:-13.147200px;}
.ws13{word-spacing:-12.510000px;}
.ws10{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.329400px;}
.ws1{word-spacing:-10.981440px;}
.wsb{word-spacing:-10.865400px;}
.wsd{word-spacing:-10.674000px;}
.ws8{word-spacing:-10.612800px;}
.wsa{word-spacing:-10.527600px;}
.ws6{word-spacing:-10.121040px;}
.ws5{word-spacing:-9.937440px;}
.ws12{word-spacing:-9.720000px;}
.ws0{word-spacing:-9.401040px;}
.ws7{word-spacing:0.000000px;}
._36{margin-left:-16.008000px;}
._25{margin-left:-4.194000px;}
._2{margin-left:-2.195280px;}
._0{margin-left:-1.134000px;}
._1{width:1.064640px;}
._9{width:2.141760px;}
._7{width:3.618720px;}
._6{width:4.721040px;}
._13{width:5.754240px;}
._a{width:6.812640px;}
._12{width:8.119200px;}
._f{width:9.870000px;}
._b{width:10.995840px;}
._c{width:12.071520px;}
._14{width:13.672320px;}
._16{width:14.775840px;}
._e{width:16.075440px;}
._8{width:17.390160px;}
._d{width:18.943920px;}
._17{width:20.172960px;}
._18{width:21.374400px;}
._11{width:22.540560px;}
._10{width:23.545440px;}
._1e{width:24.606000px;}
._15{width:25.632000px;}
._1d{width:26.960160px;}
._2f{width:28.368000px;}
._1a{width:29.376000px;}
._4{width:30.870000px;}
._2b{width:32.021280px;}
._22{width:33.066000px;}
._21{width:34.542000px;}
._26{width:36.342000px;}
._27{width:37.494000px;}
._19{width:38.664000px;}
._23{width:40.176000px;}
._24{width:41.176800px;}
._2e{width:42.624000px;}
._2c{width:43.848000px;}
._2d{width:45.087360px;}
._1b{width:56.592000px;}
._1c{width:57.744000px;}
._1f{width:60.552000px;}
._20{width:62.064000px;}
._28{width:67.456560px;}
._37{width:72.072000px;}
._30{width:76.008000px;}
._32{width:86.544000px;}
._33{width:88.092000px;}
._29{width:96.480000px;}
._2a{width:110.289600px;}
._31{width:197.976000px;}
._34{width:220.248000px;}
._35{width:221.517840px;}
._5{width:1091.557200px;}
._3{width:2098.266000px;}
.fc4{color:rgb(0,112,192);}
.fc7{color:rgb(5,99,193);}
.fc3{color:rgb(238,78,60);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fsb{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.260000px;}
.y38{bottom:1.590000px;}
.y36{bottom:2.670000px;}
.y3a{bottom:2.850000px;}
.yfc{bottom:4.035000px;}
.y4{bottom:4.320000px;}
.y3{bottom:4.500000px;}
.y96{bottom:4.680000px;}
.y102{bottom:6.330000px;}
.y11a{bottom:6.840000px;}
.y124{bottom:7.020000px;}
.yfe{bottom:9.795000px;}
.y103{bottom:12.960000px;}
.y140{bottom:14.220000px;}
.y16c{bottom:14.400000px;}
.yc6{bottom:15.660000px;}
.y1a7{bottom:16.200000px;}
.y95{bottom:16.740000px;}
.y12a{bottom:17.640000px;}
.y125{bottom:17.820000px;}
.y42{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y100{bottom:25.050000px;}
.y11c{bottom:28.620000px;}
.y12e{bottom:28.650000px;}
.y130{bottom:28.800000px;}
.y123{bottom:28.845000px;}
.y107{bottom:29.340000px;}
.y10e{bottom:29.505000px;}
.y110{bottom:29.685000px;}
.y109{bottom:29.700000px;}
.y10c{bottom:29.730000px;}
.y5{bottom:37.440000px;}
.y3c{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.yf9{bottom:47.055000px;}
.y11b{bottom:50.580000px;}
.y121{bottom:52.020000px;}
.y6{bottom:62.640000px;}
.y11d{bottom:72.360000px;}
.y120{bottom:73.980000px;}
.y127{bottom:94.140000px;}
.y12c{bottom:94.170000px;}
.y11f{bottom:95.805000px;}
.y16b{bottom:114.300000px;}
.ye5{bottom:123.660000px;}
.y34{bottom:125.460000px;}
.y94{bottom:126.180000px;}
.yc5{bottom:134.640000px;}
.y16a{bottom:135.180000px;}
.yf7{bottom:135.360000px;}
.y6c{bottom:135.540000px;}
.y117{bottom:141.660000px;}
.ye4{bottom:147.420000px;}
.y93{bottom:149.940000px;}
.y13f{bottom:154.980000px;}
.y169{bottom:155.880000px;}
.yf6{bottom:159.120000px;}
.y6b{bottom:159.300000px;}
.y33{bottom:160.740000px;}
.ye3{bottom:171.180000px;}
.y92{bottom:173.880000px;}
.y168{bottom:176.580000px;}
.y13e{bottom:178.920000px;}
.y116{bottom:180.720000px;}
.y32{bottom:180.900000px;}
.y18e{bottom:181.440000px;}
.yf5{bottom:182.880000px;}
.y6a{bottom:183.060000px;}
.ye2{bottom:194.940000px;}
.y91{bottom:197.640000px;}
.y31{bottom:201.240000px;}
.y18d{bottom:201.960000px;}
.y13d{bottom:202.680000px;}
.y115{bottom:204.480000px;}
.yf4{bottom:206.850000px;}
.y69{bottom:207.030000px;}
.y167{bottom:218.190000px;}
.ye1{bottom:218.910000px;}
.y90{bottom:221.430000px;}
.y30{bottom:221.610000px;}
.y13c{bottom:226.470000px;}
.y114{bottom:228.450000px;}
.yf3{bottom:230.610000px;}
.y68{bottom:230.790000px;}
.y14d{bottom:236.010000px;}
.y166{bottom:238.890000px;}
.y2f{bottom:241.410000px;}
.ye0{bottom:242.670000px;}
.y18c{bottom:243.570000px;}
.y8f{bottom:245.190000px;}
.y13b{bottom:250.230000px;}
.y113{bottom:252.210000px;}
.yf2{bottom:254.370000px;}
.y67{bottom:254.550000px;}
.y165{bottom:259.590000px;}
.y2e{bottom:261.210000px;}
.y18b{bottom:264.450000px;}
.ydf{bottom:266.430000px;}
.y8e{bottom:269.130000px;}
.y13a{bottom:274.170000px;}
.y14c{bottom:275.250000px;}
.y112{bottom:275.970000px;}
.y66{bottom:278.310000px;}
.y2d{bottom:282.630000px;}
.y18a{bottom:285.150000px;}
.yde{bottom:290.190000px;}
.y8d{bottom:292.890000px;}
.y139{bottom:297.930000px;}
.y14b{bottom:299.010000px;}
.y164{bottom:301.170000px;}
.y65{bottom:302.070000px;}
.y189{bottom:305.850000px;}
.y2c{bottom:308.190000px;}
.y111{bottom:313.410000px;}
.ydd{bottom:314.130000px;}
.y8c{bottom:316.650000px;}
.y138{bottom:321.690000px;}
.y163{bottom:322.050000px;}
.y14a{bottom:322.770000px;}
.y64{bottom:326.010000px;}
.yf1{bottom:328.530000px;}
.y2b{bottom:329.250000px;}
.y10f{bottom:330.525000px;}
.yb3{bottom:331.230000px;}
.ydc{bottom:337.890000px;}
.y8b{bottom:340.410000px;}
.y188{bottom:341.490000px;}
.y162{bottom:342.750000px;}
.y137{bottom:345.450000px;}
.y149{bottom:346.710000px;}
.y2a{bottom:349.050000px;}
.y63{bottom:349.770000px;}
.yf0{bottom:358.410000px;}
.ydb{bottom:361.650000px;}
.y187{bottom:362.370000px;}
.y8a{bottom:364.350000px;}
.y29{bottom:368.850000px;}
.y136{bottom:369.390000px;}
.yb2{bottom:370.470000px;}
.y62{bottom:373.530000px;}
.y10d{bottom:376.605000px;}
.y161{bottom:378.210000px;}
.y101{bottom:381.780000px;}
.y186{bottom:383.070000px;}
.yda{bottom:385.410000px;}
.y1a6{bottom:385.950000px;}
.yc4{bottom:388.110000px;}
.y28{bottom:388.650000px;}
.y135{bottom:393.150000px;}
.yb1{bottom:394.230000px;}
.y61{bottom:397.290000px;}
.y160{bottom:399.090000px;}
.y89{bottom:403.050000px;}
.y185{bottom:403.770000px;}
.yf8{bottom:406.440000px;}
.y27{bottom:408.630000px;}
.yd9{bottom:409.350000px;}
.yc3{bottom:411.870000px;}
.yb0{bottom:417.990000px;}
.y15f{bottom:419.790000px;}
.yff{bottom:419.940000px;}
.y60{bottom:421.230000px;}
.y10b{bottom:422.505000px;}
.y88{bottom:426.810000px;}
.y26{bottom:428.430000px;}
.y1a5{bottom:428.610000px;}
.yfa{bottom:430.950000px;}
.y134{bottom:431.490000px;}
.yd8{bottom:433.110000px;}
.yc2{bottom:435.630000px;}
.y184{bottom:440.895000px;}
.yaf{bottom:441.975000px;}
.y5f{bottom:445.035000px;}
.y25{bottom:448.275000px;}
.y87{bottom:450.795000px;}
.y15e{bottom:455.475000px;}
.yd7{bottom:456.915000px;}
.yc1{bottom:459.435000px;}
.y183{bottom:463.215000px;}
.yae{bottom:465.735000px;}
.y1a4{bottom:467.175000px;}
.y24{bottom:468.075000px;}
.y10a{bottom:468.615000px;}
.y5e{bottom:468.795000px;}
.y133{bottom:470.775000px;}
.y86{bottom:474.555000px;}
.y15d{bottom:476.355000px;}
.yd6{bottom:480.675000px;}
.yc0{bottom:483.375000px;}
.y182{bottom:485.535000px;}
.y23{bottom:487.875000px;}
.y1a3{bottom:488.055000px;}
.yad{bottom:489.495000px;}
.yfd{bottom:489.780000px;}
.y5d{bottom:492.555000px;}
.y15c{bottom:497.055000px;}
.y85{bottom:498.315000px;}
.yd5{bottom:504.435000px;}
.ybf{bottom:507.135000px;}
.y22{bottom:507.855000px;}
.y1a2{bottom:508.755000px;}
.y132{bottom:509.655000px;}
.yac{bottom:513.255000px;}
.y108{bottom:514.695000px;}
.y5c{bottom:516.495000px;}
.y84{bottom:522.075000px;}
.y181{bottom:527.475000px;}
.y21{bottom:527.655000px;}
.yd4{bottom:528.375000px;}
.ybe{bottom:530.895000px;}
.y15b{bottom:532.515000px;}
.yab{bottom:537.195000px;}
.y5b{bottom:540.255000px;}
.y1a1{bottom:544.215000px;}
.y83{bottom:546.015000px;}
.y20{bottom:547.455000px;}
.y180{bottom:548.175000px;}
.yd3{bottom:552.135000px;}
.y131{bottom:553.395000px;}
.yaa{bottom:560.955000px;}
.y106{bottom:561.495000px;}
.yfb{bottom:561.780000px;}
.y5a{bottom:564.015000px;}
.y1a0{bottom:565.095000px;}
.y1f{bottom:567.255000px;}
.y17f{bottom:568.875000px;}
.ybd{bottom:569.415000px;}
.y82{bottom:569.775000px;}
.yd2{bottom:575.895000px;}
.ya9{bottom:584.715000px;}
.y19f{bottom:585.795000px;}
.y1e{bottom:587.055000px;}
.y59{bottom:587.775000px;}
.y15a{bottom:588.855000px;}
.y81{bottom:593.535000px;}
.y12b{bottom:596.955000px;}
.yd1{bottom:599.655000px;}
.ya8{bottom:608.475000px;}
.y159{bottom:609.735000px;}
.y17e{bottom:610.635000px;}
.y58{bottom:611.715000px;}
.y1d{bottom:616.755000px;}
.y80{bottom:617.295000px;}
.y12f{bottom:618.735000px;}
.y19e{bottom:621.255000px;}
.yd0{bottom:623.595000px;}
.yef{bottom:625.935000px;}
.y105{bottom:628.815000px;}
.y17d{bottom:631.335000px;}
.ya7{bottom:632.415000px;}
.y57{bottom:635.475000px;}
.y148{bottom:638.175000px;}
.y1c{bottom:638.355000px;}
.y7f{bottom:641.055000px;}
.y19d{bottom:642.135000px;}
.y158{bottom:645.375000px;}
.ycf{bottom:647.355000px;}
.yee{bottom:649.875000px;}
.y17c{bottom:652.035000px;}
.ya6{bottom:656.175000px;}
.y147{bottom:662.295000px;}
.y12d{bottom:662.475000px;}
.y104{bottom:664.635000px;}
.y1b{bottom:664.995000px;}
.y157{bottom:666.255000px;}
.yce{bottom:671.115000px;}
.y56{bottom:674.175000px;}
.ya5{bottom:679.965000px;}
.y19c{bottom:683.925000px;}
.y1a{bottom:686.085000px;}
.y156{bottom:686.985000px;}
.y7e{bottom:688.785000px;}
.yed{bottom:691.665000px;}
.y17b{bottom:693.645000px;}
.ycd{bottom:694.905000px;}
.y55{bottom:698.145000px;}
.ya4{bottom:703.725000px;}
.y19b{bottom:704.625000px;}
.y126{bottom:706.065000px;}
.y19{bottom:707.145000px;}
.y146{bottom:710.025000px;}
.y7d{bottom:712.545000px;}
.y17a{bottom:714.345000px;}
.yec{bottom:715.425000px;}
.ycc{bottom:718.845000px;}
.y54{bottom:721.905000px;}
.y155{bottom:722.445000px;}
.y19a{bottom:725.145000px;}
.ya3{bottom:727.665000px;}
.y129{bottom:728.025000px;}
.y18{bottom:728.205000px;}
.y145{bottom:733.785000px;}
.ycb{bottom:742.605000px;}
.y154{bottom:743.325000px;}
.y53{bottom:745.665000px;}
.y17{bottom:749.265000px;}
.y7c{bottom:751.065000px;}
.ya2{bottom:751.425000px;}
.yeb{bottom:757.185000px;}
.y144{bottom:757.545000px;}
.y153{bottom:764.025000px;}
.yca{bottom:766.365000px;}
.y199{bottom:766.905000px;}
.y52{bottom:769.425000px;}
.y16{bottom:770.325000px;}
.y128{bottom:771.585000px;}
.ya1{bottom:775.185000px;}
.y179{bottom:779.865000px;}
.yea{bottom:781.125000px;}
.y143{bottom:781.305000px;}
.y198{bottom:787.785000px;}
.y7b{bottom:790.125000px;}
.y15{bottom:791.385000px;}
.y51{bottom:793.365000px;}
.ybc{bottom:798.945000px;}
.y152{bottom:799.485000px;}
.y178{bottom:802.185000px;}
.y142{bottom:805.245000px;}
.y197{bottom:808.305000px;}
.y14{bottom:812.445000px;}
.ya0{bottom:813.705000px;}
.y7a{bottom:814.065000px;}
.y11e{bottom:815.145000px;}
.y50{bottom:817.125000px;}
.y151{bottom:820.365000px;}
.ybb{bottom:822.705000px;}
.y177{bottom:824.505000px;}
.y141{bottom:829.005000px;}
.y13{bottom:833.505000px;}
.y79{bottom:837.825000px;}
.y4f{bottom:840.885000px;}
.y150{bottom:841.065000px;}
.yba{bottom:846.645000px;}
.y12{bottom:850.965000px;}
.y9f{bottom:852.765000px;}
.y78{bottom:861.585000px;}
.y176{bottom:861.945000px;}
.y4e{bottom:864.645000px;}
.y196{bottom:866.265000px;}
.yb9{bottom:870.405000px;}
.y9e{bottom:876.525000px;}
.y11{bottom:878.685000px;}
.y122{bottom:882.105000px;}
.y175{bottom:884.265000px;}
.y77{bottom:885.345000px;}
.y4d{bottom:888.585000px;}
.yb8{bottom:894.165000px;}
.y10{bottom:897.045000px;}
.y14f{bottom:897.405000px;}
.y9d{bottom:900.465000px;}
.y174{bottom:906.585000px;}
.y76{bottom:909.285000px;}
.y195{bottom:910.950000px;}
.y4c{bottom:912.390000px;}
.yb7{bottom:917.970000px;}
.yf{bottom:918.870000px;}
.y9c{bottom:924.270000px;}
.y119{bottom:926.610000px;}
.y173{bottom:928.950000px;}
.y14e{bottom:932.730000px;}
.y75{bottom:933.090000px;}
.y4b{bottom:936.150000px;}
.yb6{bottom:941.910000px;}
.y194{bottom:946.590000px;}
.y9b{bottom:948.030000px;}
.ye{bottom:949.110000px;}
.y172{bottom:951.270000px;}
.y74{bottom:956.850000px;}
.y4a{bottom:959.910000px;}
.yb5{bottom:965.670000px;}
.y193{bottom:967.470000px;}
.y9a{bottom:971.790000px;}
.yd{bottom:973.590000px;}
.y73{bottom:980.610000px;}
.y49{bottom:983.670000px;}
.y39{bottom:985.500000px;}
.y35{bottom:986.760000px;}
.y192{bottom:988.170000px;}
.y37{bottom:988.200000px;}
.ye9{bottom:989.430000px;}
.y171{bottom:993.210000px;}
.yc{bottom:993.390000px;}
.y99{bottom:995.730000px;}
.yb4{bottom:1004.010000px;}
.y72{bottom:1004.370000px;}
.y48{bottom:1007.610000px;}
.ye8{bottom:1013.190000px;}
.y170{bottom:1013.730000px;}
.y98{bottom:1019.490000px;}
.yb{bottom:1027.590000px;}
.y71{bottom:1028.310000px;}
.y47{bottom:1031.370000px;}
.y118{bottom:1036.770000px;}
.ye7{bottom:1037.130000px;}
.y97{bottom:1043.250000px;}
.y191{bottom:1050.630000px;}
.yc9{bottom:1052.070000px;}
.y46{bottom:1055.130000px;}
.y16f{bottom:1055.310000px;}
.ya{bottom:1062.870000px;}
.y70{bottom:1067.010000px;}
.ye6{bottom:1075.470000px;}
.yc8{bottom:1075.830000px;}
.y16e{bottom:1076.190000px;}
.y45{bottom:1078.890000px;}
.y6f{bottom:1090.950000px;}
.y190{bottom:1093.830000px;}
.yc7{bottom:1099.590000px;}
.y9{bottom:1101.030000px;}
.y44{bottom:1102.830000px;}
.y6e{bottom:1114.710000px;}
.y18f{bottom:1116.150000px;}
.y16d{bottom:1117.950000px;}
.y43{bottom:1138.110000px;}
.y6d{bottom:1138.470000px;}
.y8{bottom:1139.190000px;}
.y41{bottom:1169.460000px;}
.y40{bottom:1183.500000px;}
.y3f{bottom:1197.540000px;}
.y3b{bottom:1207.980000px;}
.y3e{bottom:1218.960000px;}
.y3d{bottom:1235.880000px;}
.h1a{height:13.500000px;}
.h18{height:14.580000px;}
.h1c{height:14.760000px;}
.h39{height:18.000000px;}
.h20{height:18.180000px;}
.h24{height:19.080000px;}
.h26{height:21.420000px;}
.h34{height:21.765000px;}
.h2f{height:21.960000px;}
.h1d{height:24.380859px;}
.h6{height:24.840000px;}
.h2{height:38.405391px;}
.h19{height:38.464805px;}
.h8{height:38.469727px;}
.h1e{height:40.843828px;}
.h13{height:41.726953px;}
.h9{height:42.573164px;}
.h5{height:43.057617px;}
.h36{height:43.545000px;}
.h2e{height:43.560000px;}
.h32{height:43.590000px;}
.h33{height:43.725000px;}
.h2c{height:43.762500px;}
.h25{height:43.920000px;}
.h29{height:45.885000px;}
.h27{height:46.065000px;}
.h28{height:46.101000px;}
.h1b{height:47.650430px;}
.h4{height:49.680000px;}
.h21{height:50.273438px;}
.h17{height:50.597578px;}
.h7{height:53.709961px;}
.hc{height:54.421875px;}
.h16{height:58.621992px;}
.h12{height:58.651172px;}
.h10{height:59.439023px;}
.hf{height:61.189805px;}
.h14{height:65.010937px;}
.h23{height:65.152266px;}
.h22{height:65.340000px;}
.h11{height:65.534063px;}
.h15{height:65.837812px;}
.h3{height:65.884219px;}
.he{height:67.824844px;}
.hd{height:70.664062px;}
.h2d{height:71.225156px;}
.h38{height:71.613281px;}
.h1f{height:72.562500px;}
.ha{height:75.849609px;}
.hb{height:76.201172px;}
.h37{height:80.464922px;}
.h3a{height:82.676953px;}
.h2a{height:87.285000px;}
.h35{height:109.065000px;}
.h30{height:109.080000px;}
.h31{height:109.110000px;}
.h2b{height:110.722500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:77.400000px;}
.w13{width:88.056000px;}
.w2{width:90.000000px;}
.w16{width:93.441000px;}
.w15{width:102.589500px;}
.w7{width:107.100000px;}
.w4{width:109.800000px;}
.w12{width:111.060000px;}
.w14{width:117.885000px;}
.w5{width:134.100000px;}
.w9{width:137.880000px;}
.w10{width:170.115000px;}
.wb{width:190.800000px;}
.wc{width:194.040000px;}
.w11{width:196.039500px;}
.wd{width:196.380000px;}
.wf{width:216.030000px;}
.w6{width:221.400000px;}
.wa{width:222.300000px;}
.we{width:288.919500px;}
.w3{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:8.089500px;}
.x16{left:10.836000px;}
.x19{left:14.940000px;}
.x14{left:17.070000px;}
.x3{left:20.850000px;}
.x24{left:32.970000px;}
.x27{left:35.895000px;}
.x2a{left:42.195000px;}
.x18{left:45.615000px;}
.x4{left:93.960000px;}
.x2e{left:99.946500px;}
.x1{left:108.036000px;}
.xb{left:115.056000px;}
.x15{left:119.700000px;}
.x10{left:121.536000px;}
.x6{left:123.156000px;}
.x23{left:124.560000px;}
.x25{left:141.336000px;}
.x1a{left:158.970000px;}
.x21{left:162.030000px;}
.x34{left:168.870000px;}
.x7{left:200.730000px;}
.x32{left:202.545000px;}
.x1d{left:222.870000px;}
.x1e{left:252.210000px;}
.x12{left:277.230000px;}
.x1b{left:278.850000px;}
.x2f{left:295.995000px;}
.x11{left:316.335000px;}
.x17{left:347.220000px;}
.xf{left:358.275000px;}
.xc{left:360.435000px;}
.xd{left:371.055000px;}
.xa{left:383.295000px;}
.x2c{left:396.975000px;}
.x26{left:401.220000px;}
.x8{left:402.555000px;}
.x30{left:407.055000px;}
.x28{left:414.720000px;}
.x29{left:417.060000px;}
.xe{left:441.255000px;}
.x5{left:454.965000px;}
.x31{left:495.120000px;}
.x1c{left:560.445000px;}
.x2d{left:613.020000px;}
.x22{left:641.265000px;}
.x13{left:686.160000px;}
.x35{left:712.980000px;}
.x20{left:717.120000px;}
.x33{left:718.740000px;}
.x1f{left:720.360000px;}
.x9{left:785.130000px;}
.x2{left:802.980000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v3{vertical-align:29.440000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.476800pt;}
.lsa{letter-spacing:-0.400000pt;}
.ls7{letter-spacing:-0.075733pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.163200pt;}
.ls8{letter-spacing:0.224533pt;}
.ls12{letter-spacing:0.239467pt;}
.lsc{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.358400pt;}
.ls11{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.928000pt;}
.ls10{letter-spacing:1.232000pt;}
.lsb{letter-spacing:1.872000pt;}
.lsd{letter-spacing:1.920000pt;}
.lse{letter-spacing:5.120000pt;}
.ls14{letter-spacing:32.000000pt;}
.ls13{letter-spacing:175.978667pt;}
.wsc{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.206400pt;}
.ws11{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.276160pt;}
.wse{word-spacing:-11.760000pt;}
.ws4{word-spacing:-11.686400pt;}
.ws13{word-spacing:-11.120000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.959467pt;}
.ws1{word-spacing:-9.761280pt;}
.wsb{word-spacing:-9.658133pt;}
.wsd{word-spacing:-9.488000pt;}
.ws8{word-spacing:-9.433600pt;}
.wsa{word-spacing:-9.357867pt;}
.ws6{word-spacing:-8.996480pt;}
.ws5{word-spacing:-8.833280pt;}
.ws12{word-spacing:-8.640000pt;}
.ws0{word-spacing:-8.356480pt;}
.ws7{word-spacing:0.000000pt;}
._36{margin-left:-14.229333pt;}
._25{margin-left:-3.728000pt;}
._2{margin-left:-1.951360pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.946347pt;}
._9{width:1.903787pt;}
._7{width:3.216640pt;}
._6{width:4.196480pt;}
._13{width:5.114880pt;}
._a{width:6.055680pt;}
._12{width:7.217067pt;}
._f{width:8.773333pt;}
._b{width:9.774080pt;}
._c{width:10.730240pt;}
._14{width:12.153173pt;}
._16{width:13.134080pt;}
._e{width:14.289280pt;}
._8{width:15.457920pt;}
._d{width:16.839040pt;}
._17{width:17.931520pt;}
._18{width:18.999467pt;}
._11{width:20.036053pt;}
._10{width:20.929280pt;}
._1e{width:21.872000pt;}
._15{width:22.784000pt;}
._1d{width:23.964587pt;}
._2f{width:25.216000pt;}
._1a{width:26.112000pt;}
._4{width:27.440000pt;}
._2b{width:28.463360pt;}
._22{width:29.392000pt;}
._21{width:30.704000pt;}
._26{width:32.304000pt;}
._27{width:33.328000pt;}
._19{width:34.368000pt;}
._23{width:35.712000pt;}
._24{width:36.601600pt;}
._2e{width:37.888000pt;}
._2c{width:38.976000pt;}
._2d{width:40.077653pt;}
._1b{width:50.304000pt;}
._1c{width:51.328000pt;}
._1f{width:53.824000pt;}
._20{width:55.168000pt;}
._28{width:59.961387pt;}
._37{width:64.064000pt;}
._30{width:67.562667pt;}
._32{width:76.928000pt;}
._33{width:78.304000pt;}
._29{width:85.760000pt;}
._2a{width:98.035200pt;}
._31{width:175.978667pt;}
._34{width:195.776000pt;}
._35{width:196.904747pt;}
._5{width:970.273067pt;}
._3{width:1865.125333pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fsb{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.120000pt;}
.y38{bottom:1.413333pt;}
.y36{bottom:2.373333pt;}
.y3a{bottom:2.533333pt;}
.yfc{bottom:3.586667pt;}
.y4{bottom:3.840000pt;}
.y3{bottom:4.000000pt;}
.y96{bottom:4.160000pt;}
.y102{bottom:5.626667pt;}
.y11a{bottom:6.080000pt;}
.y124{bottom:6.240000pt;}
.yfe{bottom:8.706667pt;}
.y103{bottom:11.520000pt;}
.y140{bottom:12.640000pt;}
.y16c{bottom:12.800000pt;}
.yc6{bottom:13.920000pt;}
.y1a7{bottom:14.400000pt;}
.y95{bottom:14.880000pt;}
.y12a{bottom:15.680000pt;}
.y125{bottom:15.840000pt;}
.y42{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y100{bottom:22.266667pt;}
.y11c{bottom:25.440000pt;}
.y12e{bottom:25.466667pt;}
.y130{bottom:25.600000pt;}
.y123{bottom:25.640000pt;}
.y107{bottom:26.080000pt;}
.y10e{bottom:26.226667pt;}
.y110{bottom:26.386667pt;}
.y109{bottom:26.400000pt;}
.y10c{bottom:26.426667pt;}
.y5{bottom:33.280000pt;}
.y3c{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.yf9{bottom:41.826667pt;}
.y11b{bottom:44.960000pt;}
.y121{bottom:46.240000pt;}
.y6{bottom:55.680000pt;}
.y11d{bottom:64.320000pt;}
.y120{bottom:65.760000pt;}
.y127{bottom:83.680000pt;}
.y12c{bottom:83.706667pt;}
.y11f{bottom:85.160000pt;}
.y16b{bottom:101.600000pt;}
.ye5{bottom:109.920000pt;}
.y34{bottom:111.520000pt;}
.y94{bottom:112.160000pt;}
.yc5{bottom:119.680000pt;}
.y16a{bottom:120.160000pt;}
.yf7{bottom:120.320000pt;}
.y6c{bottom:120.480000pt;}
.y117{bottom:125.920000pt;}
.ye4{bottom:131.040000pt;}
.y93{bottom:133.280000pt;}
.y13f{bottom:137.760000pt;}
.y169{bottom:138.560000pt;}
.yf6{bottom:141.440000pt;}
.y6b{bottom:141.600000pt;}
.y33{bottom:142.880000pt;}
.ye3{bottom:152.160000pt;}
.y92{bottom:154.560000pt;}
.y168{bottom:156.960000pt;}
.y13e{bottom:159.040000pt;}
.y116{bottom:160.640000pt;}
.y32{bottom:160.800000pt;}
.y18e{bottom:161.280000pt;}
.yf5{bottom:162.560000pt;}
.y6a{bottom:162.720000pt;}
.ye2{bottom:173.280000pt;}
.y91{bottom:175.680000pt;}
.y31{bottom:178.880000pt;}
.y18d{bottom:179.520000pt;}
.y13d{bottom:180.160000pt;}
.y115{bottom:181.760000pt;}
.yf4{bottom:183.866667pt;}
.y69{bottom:184.026667pt;}
.y167{bottom:193.946667pt;}
.ye1{bottom:194.586667pt;}
.y90{bottom:196.826667pt;}
.y30{bottom:196.986667pt;}
.y13c{bottom:201.306667pt;}
.y114{bottom:203.066667pt;}
.yf3{bottom:204.986667pt;}
.y68{bottom:205.146667pt;}
.y14d{bottom:209.786667pt;}
.y166{bottom:212.346667pt;}
.y2f{bottom:214.586667pt;}
.ye0{bottom:215.706667pt;}
.y18c{bottom:216.506667pt;}
.y8f{bottom:217.946667pt;}
.y13b{bottom:222.426667pt;}
.y113{bottom:224.186667pt;}
.yf2{bottom:226.106667pt;}
.y67{bottom:226.266667pt;}
.y165{bottom:230.746667pt;}
.y2e{bottom:232.186667pt;}
.y18b{bottom:235.066667pt;}
.ydf{bottom:236.826667pt;}
.y8e{bottom:239.226667pt;}
.y13a{bottom:243.706667pt;}
.y14c{bottom:244.666667pt;}
.y112{bottom:245.306667pt;}
.y66{bottom:247.386667pt;}
.y2d{bottom:251.226667pt;}
.y18a{bottom:253.466667pt;}
.yde{bottom:257.946667pt;}
.y8d{bottom:260.346667pt;}
.y139{bottom:264.826667pt;}
.y14b{bottom:265.786667pt;}
.y164{bottom:267.706667pt;}
.y65{bottom:268.506667pt;}
.y189{bottom:271.866667pt;}
.y2c{bottom:273.946667pt;}
.y111{bottom:278.586667pt;}
.ydd{bottom:279.226667pt;}
.y8c{bottom:281.466667pt;}
.y138{bottom:285.946667pt;}
.y163{bottom:286.266667pt;}
.y14a{bottom:286.906667pt;}
.y64{bottom:289.786667pt;}
.yf1{bottom:292.026667pt;}
.y2b{bottom:292.666667pt;}
.y10f{bottom:293.800000pt;}
.yb3{bottom:294.426667pt;}
.ydc{bottom:300.346667pt;}
.y8b{bottom:302.586667pt;}
.y188{bottom:303.546667pt;}
.y162{bottom:304.666667pt;}
.y137{bottom:307.066667pt;}
.y149{bottom:308.186667pt;}
.y2a{bottom:310.266667pt;}
.y63{bottom:310.906667pt;}
.yf0{bottom:318.586667pt;}
.ydb{bottom:321.466667pt;}
.y187{bottom:322.106667pt;}
.y8a{bottom:323.866667pt;}
.y29{bottom:327.866667pt;}
.y136{bottom:328.346667pt;}
.yb2{bottom:329.306667pt;}
.y62{bottom:332.026667pt;}
.y10d{bottom:334.760000pt;}
.y161{bottom:336.186667pt;}
.y101{bottom:339.360000pt;}
.y186{bottom:340.506667pt;}
.yda{bottom:342.586667pt;}
.y1a6{bottom:343.066667pt;}
.yc4{bottom:344.986667pt;}
.y28{bottom:345.466667pt;}
.y135{bottom:349.466667pt;}
.yb1{bottom:350.426667pt;}
.y61{bottom:353.146667pt;}
.y160{bottom:354.746667pt;}
.y89{bottom:358.266667pt;}
.y185{bottom:358.906667pt;}
.yf8{bottom:361.280000pt;}
.y27{bottom:363.226667pt;}
.yd9{bottom:363.866667pt;}
.yc3{bottom:366.106667pt;}
.yb0{bottom:371.546667pt;}
.y15f{bottom:373.146667pt;}
.yff{bottom:373.280000pt;}
.y60{bottom:374.426667pt;}
.y10b{bottom:375.560000pt;}
.y88{bottom:379.386667pt;}
.y26{bottom:380.826667pt;}
.y1a5{bottom:380.986667pt;}
.yfa{bottom:383.066667pt;}
.y134{bottom:383.546667pt;}
.yd8{bottom:384.986667pt;}
.yc2{bottom:387.226667pt;}
.y184{bottom:391.906667pt;}
.yaf{bottom:392.866667pt;}
.y5f{bottom:395.586667pt;}
.y25{bottom:398.466667pt;}
.y87{bottom:400.706667pt;}
.y15e{bottom:404.866667pt;}
.yd7{bottom:406.146667pt;}
.yc1{bottom:408.386667pt;}
.y183{bottom:411.746667pt;}
.yae{bottom:413.986667pt;}
.y1a4{bottom:415.266667pt;}
.y24{bottom:416.066667pt;}
.y10a{bottom:416.546667pt;}
.y5e{bottom:416.706667pt;}
.y133{bottom:418.466667pt;}
.y86{bottom:421.826667pt;}
.y15d{bottom:423.426667pt;}
.yd6{bottom:427.266667pt;}
.yc0{bottom:429.666667pt;}
.y182{bottom:431.586667pt;}
.y23{bottom:433.666667pt;}
.y1a3{bottom:433.826667pt;}
.yad{bottom:435.106667pt;}
.yfd{bottom:435.360000pt;}
.y5d{bottom:437.826667pt;}
.y15c{bottom:441.826667pt;}
.y85{bottom:442.946667pt;}
.yd5{bottom:448.386667pt;}
.ybf{bottom:450.786667pt;}
.y22{bottom:451.426667pt;}
.y1a2{bottom:452.226667pt;}
.y132{bottom:453.026667pt;}
.yac{bottom:456.226667pt;}
.y108{bottom:457.506667pt;}
.y5c{bottom:459.106667pt;}
.y84{bottom:464.066667pt;}
.y181{bottom:468.866667pt;}
.y21{bottom:469.026667pt;}
.yd4{bottom:469.666667pt;}
.ybe{bottom:471.906667pt;}
.y15b{bottom:473.346667pt;}
.yab{bottom:477.506667pt;}
.y5b{bottom:480.226667pt;}
.y1a1{bottom:483.746667pt;}
.y83{bottom:485.346667pt;}
.y20{bottom:486.626667pt;}
.y180{bottom:487.266667pt;}
.yd3{bottom:490.786667pt;}
.y131{bottom:491.906667pt;}
.yaa{bottom:498.626667pt;}
.y106{bottom:499.106667pt;}
.yfb{bottom:499.360000pt;}
.y5a{bottom:501.346667pt;}
.y1a0{bottom:502.306667pt;}
.y1f{bottom:504.226667pt;}
.y17f{bottom:505.666667pt;}
.ybd{bottom:506.146667pt;}
.y82{bottom:506.466667pt;}
.yd2{bottom:511.906667pt;}
.ya9{bottom:519.746667pt;}
.y19f{bottom:520.706667pt;}
.y1e{bottom:521.826667pt;}
.y59{bottom:522.466667pt;}
.y15a{bottom:523.426667pt;}
.y81{bottom:527.586667pt;}
.y12b{bottom:530.626667pt;}
.yd1{bottom:533.026667pt;}
.ya8{bottom:540.866667pt;}
.y159{bottom:541.986667pt;}
.y17e{bottom:542.786667pt;}
.y58{bottom:543.746667pt;}
.y1d{bottom:548.226667pt;}
.y80{bottom:548.706667pt;}
.y12f{bottom:549.986667pt;}
.y19e{bottom:552.226667pt;}
.yd0{bottom:554.306667pt;}
.yef{bottom:556.386667pt;}
.y105{bottom:558.946667pt;}
.y17d{bottom:561.186667pt;}
.ya7{bottom:562.146667pt;}
.y57{bottom:564.866667pt;}
.y148{bottom:567.266667pt;}
.y1c{bottom:567.426667pt;}
.y7f{bottom:569.826667pt;}
.y19d{bottom:570.786667pt;}
.y158{bottom:573.666667pt;}
.ycf{bottom:575.426667pt;}
.yee{bottom:577.666667pt;}
.y17c{bottom:579.586667pt;}
.ya6{bottom:583.266667pt;}
.y147{bottom:588.706667pt;}
.y12d{bottom:588.866667pt;}
.y104{bottom:590.786667pt;}
.y1b{bottom:591.106667pt;}
.y157{bottom:592.226667pt;}
.yce{bottom:596.546667pt;}
.y56{bottom:599.266667pt;}
.ya5{bottom:604.413333pt;}
.y19c{bottom:607.933333pt;}
.y1a{bottom:609.853333pt;}
.y156{bottom:610.653333pt;}
.y7e{bottom:612.253333pt;}
.yed{bottom:614.813333pt;}
.y17b{bottom:616.573333pt;}
.ycd{bottom:617.693333pt;}
.y55{bottom:620.573333pt;}
.ya4{bottom:625.533333pt;}
.y19b{bottom:626.333333pt;}
.y126{bottom:627.613333pt;}
.y19{bottom:628.573333pt;}
.y146{bottom:631.133333pt;}
.y7d{bottom:633.373333pt;}
.y17a{bottom:634.973333pt;}
.yec{bottom:635.933333pt;}
.ycc{bottom:638.973333pt;}
.y54{bottom:641.693333pt;}
.y155{bottom:642.173333pt;}
.y19a{bottom:644.573333pt;}
.ya3{bottom:646.813333pt;}
.y129{bottom:647.133333pt;}
.y18{bottom:647.293333pt;}
.y145{bottom:652.253333pt;}
.ycb{bottom:660.093333pt;}
.y154{bottom:660.733333pt;}
.y53{bottom:662.813333pt;}
.y17{bottom:666.013333pt;}
.y7c{bottom:667.613333pt;}
.ya2{bottom:667.933333pt;}
.yeb{bottom:673.053333pt;}
.y144{bottom:673.373333pt;}
.y153{bottom:679.133333pt;}
.yca{bottom:681.213333pt;}
.y199{bottom:681.693333pt;}
.y52{bottom:683.933333pt;}
.y16{bottom:684.733333pt;}
.y128{bottom:685.853333pt;}
.ya1{bottom:689.053333pt;}
.y179{bottom:693.213333pt;}
.yea{bottom:694.333333pt;}
.y143{bottom:694.493333pt;}
.y198{bottom:700.253333pt;}
.y7b{bottom:702.333333pt;}
.y15{bottom:703.453333pt;}
.y51{bottom:705.213333pt;}
.ybc{bottom:710.173333pt;}
.y152{bottom:710.653333pt;}
.y178{bottom:713.053333pt;}
.y142{bottom:715.773333pt;}
.y197{bottom:718.493333pt;}
.y14{bottom:722.173333pt;}
.ya0{bottom:723.293333pt;}
.y7a{bottom:723.613333pt;}
.y11e{bottom:724.573333pt;}
.y50{bottom:726.333333pt;}
.y151{bottom:729.213333pt;}
.ybb{bottom:731.293333pt;}
.y177{bottom:732.893333pt;}
.y141{bottom:736.893333pt;}
.y13{bottom:740.893333pt;}
.y79{bottom:744.733333pt;}
.y4f{bottom:747.453333pt;}
.y150{bottom:747.613333pt;}
.yba{bottom:752.573333pt;}
.y12{bottom:756.413333pt;}
.y9f{bottom:758.013333pt;}
.y78{bottom:765.853333pt;}
.y176{bottom:766.173333pt;}
.y4e{bottom:768.573333pt;}
.y196{bottom:770.013333pt;}
.yb9{bottom:773.693333pt;}
.y9e{bottom:779.133333pt;}
.y11{bottom:781.053333pt;}
.y122{bottom:784.093333pt;}
.y175{bottom:786.013333pt;}
.y77{bottom:786.973333pt;}
.y4d{bottom:789.853333pt;}
.yb8{bottom:794.813333pt;}
.y10{bottom:797.373333pt;}
.y14f{bottom:797.693333pt;}
.y9d{bottom:800.413333pt;}
.y174{bottom:805.853333pt;}
.y76{bottom:808.253333pt;}
.y195{bottom:809.733333pt;}
.y4c{bottom:811.013333pt;}
.yb7{bottom:815.973333pt;}
.yf{bottom:816.773333pt;}
.y9c{bottom:821.573333pt;}
.y119{bottom:823.653333pt;}
.y173{bottom:825.733333pt;}
.y14e{bottom:829.093333pt;}
.y75{bottom:829.413333pt;}
.y4b{bottom:832.133333pt;}
.yb6{bottom:837.253333pt;}
.y194{bottom:841.413333pt;}
.y9b{bottom:842.693333pt;}
.ye{bottom:843.653333pt;}
.y172{bottom:845.573333pt;}
.y74{bottom:850.533333pt;}
.y4a{bottom:853.253333pt;}
.yb5{bottom:858.373333pt;}
.y193{bottom:859.973333pt;}
.y9a{bottom:863.813333pt;}
.yd{bottom:865.413333pt;}
.y73{bottom:871.653333pt;}
.y49{bottom:874.373333pt;}
.y39{bottom:876.000000pt;}
.y35{bottom:877.120000pt;}
.y192{bottom:878.373333pt;}
.y37{bottom:878.400000pt;}
.ye9{bottom:879.493333pt;}
.y171{bottom:882.853333pt;}
.yc{bottom:883.013333pt;}
.y99{bottom:885.093333pt;}
.yb4{bottom:892.453333pt;}
.y72{bottom:892.773333pt;}
.y48{bottom:895.653333pt;}
.ye8{bottom:900.613333pt;}
.y170{bottom:901.093333pt;}
.y98{bottom:906.213333pt;}
.yb{bottom:913.413333pt;}
.y71{bottom:914.053333pt;}
.y47{bottom:916.773333pt;}
.y118{bottom:921.573333pt;}
.ye7{bottom:921.893333pt;}
.y97{bottom:927.333333pt;}
.y191{bottom:933.893333pt;}
.yc9{bottom:935.173333pt;}
.y46{bottom:937.893333pt;}
.y16f{bottom:938.053333pt;}
.ya{bottom:944.773333pt;}
.y70{bottom:948.453333pt;}
.ye6{bottom:955.973333pt;}
.yc8{bottom:956.293333pt;}
.y16e{bottom:956.613333pt;}
.y45{bottom:959.013333pt;}
.y6f{bottom:969.733333pt;}
.y190{bottom:972.293333pt;}
.yc7{bottom:977.413333pt;}
.y9{bottom:978.693333pt;}
.y44{bottom:980.293333pt;}
.y6e{bottom:990.853333pt;}
.y18f{bottom:992.133333pt;}
.y16d{bottom:993.733333pt;}
.y43{bottom:1011.653333pt;}
.y6d{bottom:1011.973333pt;}
.y8{bottom:1012.613333pt;}
.y41{bottom:1039.520000pt;}
.y40{bottom:1052.000000pt;}
.y3f{bottom:1064.480000pt;}
.y3b{bottom:1073.760000pt;}
.y3e{bottom:1083.520000pt;}
.y3d{bottom:1098.560000pt;}
.h1a{height:12.000000pt;}
.h18{height:12.960000pt;}
.h1c{height:13.120000pt;}
.h39{height:16.000000pt;}
.h20{height:16.160000pt;}
.h24{height:16.960000pt;}
.h26{height:19.040000pt;}
.h34{height:19.346667pt;}
.h2f{height:19.520000pt;}
.h1d{height:21.671875pt;}
.h6{height:22.080000pt;}
.h2{height:34.138125pt;}
.h19{height:34.190937pt;}
.h8{height:34.195312pt;}
.h1e{height:36.305625pt;}
.h13{height:37.090625pt;}
.h9{height:37.842813pt;}
.h5{height:38.273438pt;}
.h36{height:38.706667pt;}
.h2e{height:38.720000pt;}
.h32{height:38.746667pt;}
.h33{height:38.866667pt;}
.h2c{height:38.900000pt;}
.h25{height:39.040000pt;}
.h29{height:40.786667pt;}
.h27{height:40.946667pt;}
.h28{height:40.978667pt;}
.h1b{height:42.355937pt;}
.h4{height:44.160000pt;}
.h21{height:44.687500pt;}
.h17{height:44.975625pt;}
.h7{height:47.742188pt;}
.hc{height:48.375000pt;}
.h16{height:52.108438pt;}
.h12{height:52.134375pt;}
.h10{height:52.834688pt;}
.hf{height:54.390938pt;}
.h14{height:57.787500pt;}
.h23{height:57.913125pt;}
.h22{height:58.080000pt;}
.h11{height:58.252500pt;}
.h15{height:58.522500pt;}
.h3{height:58.563750pt;}
.he{height:60.288750pt;}
.hd{height:62.812500pt;}
.h2d{height:63.311250pt;}
.h38{height:63.656250pt;}
.h1f{height:64.500000pt;}
.ha{height:67.421875pt;}
.hb{height:67.734375pt;}
.h37{height:71.524375pt;}
.h3a{height:73.490625pt;}
.h2a{height:77.586667pt;}
.h35{height:96.946667pt;}
.h30{height:96.960000pt;}
.h31{height:96.986667pt;}
.h2b{height:98.420000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:68.800000pt;}
.w13{width:78.272000pt;}
.w2{width:80.000000pt;}
.w16{width:83.058667pt;}
.w15{width:91.190667pt;}
.w7{width:95.200000pt;}
.w4{width:97.600000pt;}
.w12{width:98.720000pt;}
.w14{width:104.786667pt;}
.w5{width:119.200000pt;}
.w9{width:122.560000pt;}
.w10{width:151.213333pt;}
.wb{width:169.600000pt;}
.wc{width:172.480000pt;}
.w11{width:174.257333pt;}
.wd{width:174.560000pt;}
.wf{width:192.026667pt;}
.w6{width:196.800000pt;}
.wa{width:197.600000pt;}
.we{width:256.817333pt;}
.w3{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:7.190667pt;}
.x16{left:9.632000pt;}
.x19{left:13.280000pt;}
.x14{left:15.173333pt;}
.x3{left:18.533333pt;}
.x24{left:29.306667pt;}
.x27{left:31.906667pt;}
.x2a{left:37.506667pt;}
.x18{left:40.546667pt;}
.x4{left:83.520000pt;}
.x2e{left:88.841333pt;}
.x1{left:96.032000pt;}
.xb{left:102.272000pt;}
.x15{left:106.400000pt;}
.x10{left:108.032000pt;}
.x6{left:109.472000pt;}
.x23{left:110.720000pt;}
.x25{left:125.632000pt;}
.x1a{left:141.306667pt;}
.x21{left:144.026667pt;}
.x34{left:150.106667pt;}
.x7{left:178.426667pt;}
.x32{left:180.040000pt;}
.x1d{left:198.106667pt;}
.x1e{left:224.186667pt;}
.x12{left:246.426667pt;}
.x1b{left:247.866667pt;}
.x2f{left:263.106667pt;}
.x11{left:281.186667pt;}
.x17{left:308.640000pt;}
.xf{left:318.466667pt;}
.xc{left:320.386667pt;}
.xd{left:329.826667pt;}
.xa{left:340.706667pt;}
.x2c{left:352.866667pt;}
.x26{left:356.640000pt;}
.x8{left:357.826667pt;}
.x30{left:361.826667pt;}
.x28{left:368.640000pt;}
.x29{left:370.720000pt;}
.xe{left:392.226667pt;}
.x5{left:404.413333pt;}
.x31{left:440.106667pt;}
.x1c{left:498.173333pt;}
.x2d{left:544.906667pt;}
.x22{left:570.013333pt;}
.x13{left:609.920000pt;}
.x35{left:633.760000pt;}
.x20{left:637.440000pt;}
.x33{left:638.880000pt;}
.x1f{left:640.320000pt;}
.x9{left:697.893333pt;}
.x2{left:713.760000pt;}
}




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