
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9772d35eda93719ba7119503.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f490fa57d54249fb1b299208.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5be34271c255185f28f74f4a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2e3df09f155873494cc25422.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_557fb7a20f0f1c4e5e5b3f26.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_33cf2a765e80dcdbf04a73ca.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_948679b971f5581508ed9a0e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c2246f9f019b1ff59c4e3ee2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_9ca4023abc5894d3cec0f9a4.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_13a3353667ee35980c231ea8.woff')format("woff");}.ffb{font-family:ffb;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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.312600px;}
.ls1f{letter-spacing:-0.266400px;}
.ls11{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.141600px;}
.ls8{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.125400px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls17{letter-spacing:-0.060600px;}
.ls20{letter-spacing:-0.009000px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lse{letter-spacing:0.060480px;}
.ls14{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsf{letter-spacing:0.097800px;}
.ls1c{letter-spacing:0.108600px;}
.ls19{letter-spacing:0.114600px;}
.lsd{letter-spacing:0.118200px;}
.ls1d{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.197280px;}
.ls16{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:16.200000px;}
.ls21{letter-spacing:47.726640px;}
.ls1e{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.453600px;}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.344600px;}
.ws16{word-spacing:-13.335000px;}
.ws11{word-spacing:-13.324200px;}
.ws10{word-spacing:-13.287000px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws17{word-spacing:-13.217400px;}
.ws12{word-spacing:-13.165800px;}
.wse{word-spacing:-13.162800px;}
.wsa{word-spacing:-13.101000px;}
.ws15{word-spacing:-13.084800px;}
.ws8{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.913800px;}
.ws14{word-spacing:-10.648200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.wsd{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._8{margin-left:-3.851280px;}
._5{margin-left:-2.797800px;}
._0{margin-left:-1.110000px;}
._4{width:1.152000px;}
._a{width:2.166000px;}
._2{width:3.298836px;}
._1{width:4.396800px;}
._3{width:6.169164px;}
._6{width:7.334400px;}
._9{width:8.837400px;}
._b{width:9.859680px;}
._7{width:11.783400px;}
._c{width:15.270480px;}
._f{width:16.648800px;}
._e{width:17.735400px;}
._d{width:19.358640px;}
._10{width:21.042000px;}
._13{width:23.146200px;}
._12{width:26.860920px;}
._11{width:28.136160px;}
._14{width:71.421600px;}
._15{width:72.988560px;}
._18{width:98.019000px;}
._17{width:99.198000px;}
._16{width:114.829200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:7.830000px;}
.y81{bottom:7.860000px;}
.y3b{bottom:7.920000px;}
.yc4{bottom:25.380000px;}
.y8b{bottom:25.470000px;}
.yc9{bottom:35.190000px;}
.y88{bottom:39.150000px;}
.y8a{bottom:43.020000px;}
.yc2{bottom:52.740000px;}
.yd0{bottom:52.830000px;}
.y87{bottom:70.380000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y54{bottom:120.900000px;}
.yf9{bottom:121.710000px;}
.ybf{bottom:122.250000px;}
.y11d{bottom:127.740000px;}
.y53{bottom:133.140000px;}
.yf8{bottom:139.260000px;}
.ybe{bottom:139.890000px;}
.y28{bottom:142.050000px;}
.y11c{bottom:145.290000px;}
.yf7{bottom:156.900000px;}
.ybd{bottom:157.440000px;}
.y27{bottom:159.600000px;}
.y52{bottom:160.410000px;}
.y11b{bottom:162.840000px;}
.y7c{bottom:166.530000px;}
.ybc{bottom:175.080000px;}
.ya2{bottom:175.260000px;}
.y26{bottom:177.240000px;}
.y51{bottom:187.770000px;}
.y11a{bottom:189.480000px;}
.yf6{bottom:192.450000px;}
.ybb{bottom:192.630000px;}
.y25{bottom:194.790000px;}
.y7b{bottom:202.170000px;}
.y119{bottom:207.030000px;}
.yf5{bottom:210.000000px;}
.ya1{bottom:210.810000px;}
.y24{bottom:212.340000px;}
.y50{bottom:215.130000px;}
.yf4{bottom:227.640000px;}
.yba{bottom:228.180000px;}
.y23{bottom:229.980000px;}
.y118{bottom:233.580000px;}
.y7a{bottom:237.720000px;}
.y4f{bottom:242.490000px;}
.yf3{bottom:245.190000px;}
.yb9{bottom:245.820000px;}
.ya0{bottom:246.450000px;}
.ydc{bottom:248.250000px;}
.y117{bottom:251.220000px;}
.y79{bottom:255.360000px;}
.yf2{bottom:262.830000px;}
.yb8{bottom:263.370000px;}
.y9f{bottom:264.000000px;}
.y22{bottom:265.530000px;}
.y116{bottom:268.770000px;}
.y4e{bottom:269.760000px;}
.ye4{bottom:272.640000px;}
.y78{bottom:272.910000px;}
.yf1{bottom:280.380000px;}
.yb7{bottom:280.920000px;}
.y9e{bottom:281.550000px;}
.y21{bottom:283.170000px;}
.ydb{bottom:283.800000px;}
.y77{bottom:290.460000px;}
.y115{bottom:295.410000px;}
.y4d{bottom:297.120000px;}
.yf0{bottom:297.930000px;}
.y9d{bottom:299.190000px;}
.y20{bottom:300.720000px;}
.y76{bottom:308.100000px;}
.y114{bottom:312.960000px;}
.ye3{bottom:315.300000px;}
.yb6{bottom:316.560000px;}
.y1f{bottom:318.270000px;}
.yda{bottom:319.440000px;}
.y4c{bottom:324.480000px;}
.y113{bottom:330.510000px;}
.y9c{bottom:332.130000px;}
.yef{bottom:333.570000px;}
.yb5{bottom:334.110000px;}
.yd9{bottom:334.380000px;}
.y1e{bottom:335.910000px;}
.y75{bottom:343.650000px;}
.yee{bottom:351.120000px;}
.yb4{bottom:351.750000px;}
.y4b{bottom:351.840000px;}
.y1d{bottom:353.460000px;}
.ye2{bottom:356.610000px;}
.y112{bottom:357.150000px;}
.y9b{bottom:359.490000px;}
.y74{bottom:361.290000px;}
.yd8{bottom:361.740000px;}
.yed{bottom:368.760000px;}
.yb3{bottom:369.300000px;}
.ye1{bottom:374.250000px;}
.y111{bottom:374.700000px;}
.y73{bottom:378.840000px;}
.y4a{bottom:379.110000px;}
.y1c{bottom:380.370000px;}
.yec{bottom:386.310000px;}
.y9a{bottom:386.850000px;}
.yd7{bottom:389.100000px;}
.y72{bottom:396.390000px;}
.y110{bottom:401.340000px;}
.yb2{bottom:404.850000px;}
.y49{bottom:406.470000px;}
.y71{bottom:414.030000px;}
.y99{bottom:414.120000px;}
.y10f{bottom:418.890000px;}
.yeb{bottom:421.860000px;}
.yb1{bottom:422.490000px;}
.y1b{bottom:428.970000px;}
.yd6{bottom:437.790000px;}
.yea{bottom:439.500000px;}
.yb0{bottom:440.040000px;}
.y70{bottom:440.580000px;}
.y98{bottom:441.480000px;}
.y10e{bottom:445.800000px;}
.y48{bottom:455.160000px;}
.yd5{bottom:455.340000px;}
.yaf{bottom:457.680000px;}
.y1a{bottom:466.050000px;}
.y97{bottom:468.840000px;}
.ye9{bottom:471.750000px;}
.y6f{bottom:473.550000px;}
.yae{bottom:475.260000px;}
.y19{bottom:483.630000px;}
.y47{bottom:490.830000px;}
.yd4{bottom:491.010000px;}
.yad{bottom:492.810000px;}
.y10d{bottom:494.070000px;}
.y6e{bottom:500.910000px;}
.y18{bottom:501.180000px;}
.yd3{bottom:505.950000px;}
.y46{bottom:508.380000px;}
.y96{bottom:517.560000px;}
.y17{bottom:518.820000px;}
.y10c{bottom:520.980000px;}
.y45{bottom:525.930000px;}
.y6d{bottom:528.270000px;}
.yac{bottom:528.450000px;}
.yd2{bottom:533.310000px;}
.y16{bottom:536.370000px;}
.y44{bottom:543.570000px;}
.yab{bottom:546.000000px;}
.y95{bottom:553.110000px;}
.y15{bottom:553.920000px;}
.y6c{bottom:555.630000px;}
.y10b{bottom:558.330000px;}
.ycf{bottom:560.580000px;}
.y43{bottom:561.120000px;}
.y94{bottom:570.750000px;}
.y14{bottom:571.560000px;}
.yaa{bottom:578.220000px;}
.y6b{bottom:582.900000px;}
.y12f{bottom:584.070000px;}
.y42{bottom:587.670000px;}
.yd1{bottom:587.940000px;}
.y93{bottom:588.300000px;}
.y13{bottom:589.110000px;}
.y12e{bottom:601.620000px;}
.y92{bottom:605.940000px;}
.y10a{bottom:606.660000px;}
.y12{bottom:606.750000px;}
.y6a{bottom:610.260000px;}
.y41{bottom:617.730000px;}
.y12d{bottom:619.260000px;}
.y109{bottom:624.210000px;}
.y11{bottom:624.300000px;}
.y91{bottom:632.490000px;}
.y108{bottom:641.760000px;}
.y10{bottom:641.850000px;}
.y40{bottom:645.000000px;}
.y12c{bottom:645.810000px;}
.yce{bottom:654.270000px;}
.y69{bottom:658.950000px;}
.y107{bottom:659.400000px;}
.yf{bottom:659.490000px;}
.y12b{bottom:663.360000px;}
.y90{bottom:665.430000px;}
.y3f{bottom:672.360000px;}
.y106{bottom:676.950000px;}
.ye{bottom:677.040000px;}
.ycd{bottom:689.820000px;}
.y12a{bottom:690.000000px;}
.y8f{bottom:692.790000px;}
.y68{bottom:694.590000px;}
.yd{bottom:694.680000px;}
.y3d{bottom:699.720000px;}
.ycc{bottom:704.760000px;}
.y129{bottom:707.550000px;}
.y67{bottom:712.140000px;}
.y8e{bottom:720.150000px;}
.y105{bottom:721.500000px;}
.yc{bottom:721.590000px;}
.y3c{bottom:726.990000px;}
.y66{bottom:729.690000px;}
.ycb{bottom:732.120000px;}
.y128{bottom:734.190000px;}
.y65{bottom:747.330000px;}
.y8d{bottom:747.420000px;}
.y127{bottom:751.740000px;}
.y3a{bottom:754.350000px;}
.yc8{bottom:759.480000px;}
.y64{bottom:764.880000px;}
.y104{bottom:769.740000px;}
.yb{bottom:769.830000px;}
.y8c{bottom:774.780000px;}
.y126{bottom:778.290000px;}
.ye8{bottom:781.080000px;}
.y63{bottom:782.520000px;}
.yca{bottom:786.750000px;}
.y103{bottom:787.290000px;}
.ye0{bottom:792.330000px;}
.y125{bottom:795.930000px;}
.y86{bottom:802.140000px;}
.y39{bottom:803.040000px;}
.y102{bottom:804.930000px;}
.ya{bottom:805.380000px;}
.y62{bottom:809.070000px;}
.y124{bottom:813.480000px;}
.ye7{bottom:816.720000px;}
.y101{bottom:822.480000px;}
.ydf{bottom:827.970000px;}
.ye6{bottom:834.270000px;}
.yc7{bottom:835.530000px;}
.y38{bottom:838.680000px;}
.y123{bottom:840.030000px;}
.y9{bottom:841.200000px;}
.y61{bottom:844.980000px;}
.yde{bottom:845.520000px;}
.y37{bottom:856.230000px;}
.y122{bottom:857.670000px;}
.y100{bottom:858.030000px;}
.y89{bottom:864.600000px;}
.ye5{bottom:866.490000px;}
.yc6{bottom:871.080000px;}
.y36{bottom:873.780000px;}
.yff{bottom:875.670000px;}
.ydd{bottom:877.740000px;}
.y8{bottom:880.980000px;}
.y121{bottom:884.220000px;}
.yc5{bottom:886.020000px;}
.y35{bottom:891.420000px;}
.y60{bottom:893.220000px;}
.y7{bottom:898.980000px;}
.y120{bottom:901.860000px;}
.y5f{bottom:910.860000px;}
.y85{bottom:913.380000px;}
.y6{bottom:916.980000px;}
.y34{bottom:917.970000px;}
.ya9{bottom:925.170000px;}
.y5e{bottom:928.410000px;}
.y84{bottom:930.930000px;}
.ya8{bottom:937.320000px;}
.yc1{bottom:940.740000px;}
.y5d{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y33{bottom:950.550000px;}
.y83{bottom:954.870000px;}
.y5c{bottom:963.600000px;}
.ya7{bottom:964.680000px;}
.yc3{bottom:968.100000px;}
.y11f{bottom:972.600000px;}
.y5b{bottom:981.150000px;}
.yfe{bottom:981.600000px;}
.y82{bottom:982.230000px;}
.y32{bottom:986.460000px;}
.y4{bottom:987.630000px;}
.y11e{bottom:990.150000px;}
.ya6{bottom:991.950000px;}
.y5a{bottom:998.790000px;}
.yfd{bottom:999.150000px;}
.y80{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.yfc{bottom:1016.820000px;}
.ya5{bottom:1019.340000px;}
.y59{bottom:1025.370000px;}
.yc0{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y7f{bottom:1036.890000px;}
.ya4{bottom:1046.700000px;}
.yfb{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y58{bottom:1060.920000px;}
.y7e{bottom:1064.250000px;}
.yfa{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.ya3{bottom:1073.970000px;}
.y57{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y7d{bottom:1091.610000px;}
.y56{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y55{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.he{height:26.550000px;}
.h10{height:26.580000px;}
.hd{height:26.640000px;}
.h13{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.h15{height:44.130000px;}
.h18{height:44.190000px;}
.h7{height:50.902383px;}
.h16{height:53.910000px;}
.h5{height:55.779258px;}
.hc{height:59.973223px;}
.h8{height:60.960938px;}
.h12{height:61.740000px;}
.h19{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h14{height:71.490000px;}
.h17{height:71.550000px;}
.h9{height:74.004654px;}
.h11{height:89.100000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:35.190000px;}
.w14{width:43.740000px;}
.w3{width:48.870000px;}
.w9{width:48.960000px;}
.w1c{width:50.040000px;}
.w11{width:55.440000px;}
.w13{width:58.800000px;}
.w15{width:59.400000px;}
.w20{width:69.150000px;}
.w27{width:69.240000px;}
.w17{width:70.290000px;}
.w19{width:73.890000px;}
.w1b{width:74.520000px;}
.w18{width:74.640000px;}
.w1a{width:76.590000px;}
.w16{width:79.380000px;}
.wc{width:86.400000px;}
.w1f{width:97.380000px;}
.wd{width:99.630000px;}
.w6{width:103.500000px;}
.we{width:116.550000px;}
.w25{width:118.260000px;}
.w2c{width:119.340000px;}
.w2b{width:119.370000px;}
.w2a{width:119.430000px;}
.w29{width:119.520000px;}
.w22{width:121.500000px;}
.w26{width:121.770000px;}
.w30{width:125.280000px;}
.w2f{width:125.310000px;}
.w2d{width:125.370000px;}
.w2e{width:131.760000px;}
.w23{width:135.720000px;}
.w24{width:135.750000px;}
.wa{width:139.410000px;}
.w7{width:155.160000px;}
.w31{width:162.720000px;}
.w4{width:169.560000px;}
.wb{width:169.680000px;}
.w5{width:176.070000px;}
.w8{width:181.830000px;}
.wf{width:232.770000px;}
.w1d{width:244.740000px;}
.w1e{width:260.400000px;}
.w32{width:347.790000px;}
.w28{width:600.150000px;}
.w21{width:636.060000px;}
.w12{width:664.710000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x25{left:77.759987px;}
.x37{left:78.839987px;}
.x3d{left:83.069987px;}
.x3b{left:84.599987px;}
.x38{left:85.679987px;}
.x2b{left:86.760000px;}
.x12{left:104.310000px;}
.x3f{left:111.239987px;}
.x26{left:118.530000px;}
.x23{left:125.279987px;}
.x2c{left:136.350000px;}
.x13{left:160.110000px;}
.x33{left:166.260000px;}
.x27{left:188.400000px;}
.x2{left:192.719987px;}
.x4{left:196.500000px;}
.x2d{left:206.310000px;}
.x34{left:215.850000px;}
.x14{left:219.360000px;}
.xc{left:223.320000px;}
.x20{left:242.490000px;}
.x6{left:246.180000px;}
.x1d{left:249.330000px;}
.x9{left:252.930000px;}
.x15{left:263.460000px;}
.xd{left:273.000000px;}
.x21{left:292.170000px;}
.x1e{left:298.920000px;}
.xa{left:302.610000px;}
.x28{left:310.620000px;}
.x31{left:314.490000px;}
.x16{left:323.220000px;}
.x2e{left:326.550000px;}
.x3e{left:331.769987px;}
.x10{left:346.620000px;}
.x35{left:379.290000px;}
.x1f{left:399.270000px;}
.x17{left:403.050000px;}
.xe{left:413.130000px;}
.x7{left:416.460000px;}
.x29{left:447.150000px;}
.xb{left:458.490000px;}
.x11{left:463.890000px;}
.x18{left:473.700000px;}
.x19{left:548.700000px;}
.x22{left:553.380000px;}
.x2f{left:566.970000px;}
.x32{left:573.090000px;}
.xf{left:583.530000px;}
.x8{left:593.250000px;}
.x1a{left:622.950000px;}
.x24{left:668.309987px;}
.x36{left:675.059987px;}
.x3a{left:684.059987px;}
.x3c{left:685.139987px;}
.x30{left:687.120000px;}
.x1b{left:699.900000px;}
.x2a{left:702.690000px;}
.x39{left:748.139987px;}
.x1c{left:774.780000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.277867pt;}
.ls1f{letter-spacing:-0.236800pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.125867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.111467pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls17{letter-spacing:-0.053867pt;}
.ls20{letter-spacing:-0.008000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.053760pt;}
.ls14{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsf{letter-spacing:0.086933pt;}
.ls1c{letter-spacing:0.096533pt;}
.ls19{letter-spacing:0.101867pt;}
.lsd{letter-spacing:0.105067pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.175360pt;}
.ls16{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:14.400000pt;}
.ls21{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.861867pt;}
.ws16{word-spacing:-11.853333pt;}
.ws11{word-spacing:-11.843733pt;}
.ws10{word-spacing:-11.810667pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws17{word-spacing:-11.748800pt;}
.ws12{word-spacing:-11.702933pt;}
.wse{word-spacing:-11.700267pt;}
.wsa{word-spacing:-11.645333pt;}
.ws15{word-spacing:-11.630933pt;}
.ws8{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.478933pt;}
.ws14{word-spacing:-9.465067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.wsd{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._8{margin-left:-3.423360pt;}
._5{margin-left:-2.486933pt;}
._0{margin-left:-0.986667pt;}
._4{width:1.024000pt;}
._a{width:1.925333pt;}
._2{width:2.932299pt;}
._1{width:3.908267pt;}
._3{width:5.483701pt;}
._6{width:6.519466pt;}
._9{width:7.855466pt;}
._b{width:8.764160pt;}
._7{width:10.474133pt;}
._c{width:13.573760pt;}
._f{width:14.798933pt;}
._e{width:15.764800pt;}
._d{width:17.207680pt;}
._10{width:18.704000pt;}
._13{width:20.574400pt;}
._12{width:23.876373pt;}
._11{width:25.009920pt;}
._14{width:63.485867pt;}
._15{width:64.878720pt;}
._18{width:87.128000pt;}
._17{width:88.176000pt;}
._16{width:102.070400pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:6.960000pt;}
.y81{bottom:6.986667pt;}
.y3b{bottom:7.040000pt;}
.yc4{bottom:22.560000pt;}
.y8b{bottom:22.640000pt;}
.yc9{bottom:31.280000pt;}
.y88{bottom:34.800000pt;}
.y8a{bottom:38.240000pt;}
.yc2{bottom:46.880000pt;}
.yd0{bottom:46.960000pt;}
.y87{bottom:62.560000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y54{bottom:107.466667pt;}
.yf9{bottom:108.186667pt;}
.ybf{bottom:108.666667pt;}
.y11d{bottom:113.546667pt;}
.y53{bottom:118.346667pt;}
.yf8{bottom:123.786667pt;}
.ybe{bottom:124.346667pt;}
.y28{bottom:126.266667pt;}
.y11c{bottom:129.146667pt;}
.yf7{bottom:139.466667pt;}
.ybd{bottom:139.946667pt;}
.y27{bottom:141.866667pt;}
.y52{bottom:142.586667pt;}
.y11b{bottom:144.746667pt;}
.y7c{bottom:148.026667pt;}
.ybc{bottom:155.626667pt;}
.ya2{bottom:155.786667pt;}
.y26{bottom:157.546667pt;}
.y51{bottom:166.906667pt;}
.y11a{bottom:168.426667pt;}
.yf6{bottom:171.066667pt;}
.ybb{bottom:171.226667pt;}
.y25{bottom:173.146667pt;}
.y7b{bottom:179.706667pt;}
.y119{bottom:184.026667pt;}
.yf5{bottom:186.666667pt;}
.ya1{bottom:187.386667pt;}
.y24{bottom:188.746667pt;}
.y50{bottom:191.226667pt;}
.yf4{bottom:202.346667pt;}
.yba{bottom:202.826667pt;}
.y23{bottom:204.426667pt;}
.y118{bottom:207.626667pt;}
.y7a{bottom:211.306667pt;}
.y4f{bottom:215.546667pt;}
.yf3{bottom:217.946667pt;}
.yb9{bottom:218.506667pt;}
.ya0{bottom:219.066667pt;}
.ydc{bottom:220.666667pt;}
.y117{bottom:223.306667pt;}
.y79{bottom:226.986667pt;}
.yf2{bottom:233.626667pt;}
.yb8{bottom:234.106667pt;}
.y9f{bottom:234.666667pt;}
.y22{bottom:236.026667pt;}
.y116{bottom:238.906667pt;}
.y4e{bottom:239.786667pt;}
.ye4{bottom:242.346667pt;}
.y78{bottom:242.586667pt;}
.yf1{bottom:249.226667pt;}
.yb7{bottom:249.706667pt;}
.y9e{bottom:250.266667pt;}
.y21{bottom:251.706667pt;}
.ydb{bottom:252.266667pt;}
.y77{bottom:258.186667pt;}
.y115{bottom:262.586667pt;}
.y4d{bottom:264.106667pt;}
.yf0{bottom:264.826667pt;}
.y9d{bottom:265.946667pt;}
.y20{bottom:267.306667pt;}
.y76{bottom:273.866667pt;}
.y114{bottom:278.186667pt;}
.ye3{bottom:280.266667pt;}
.yb6{bottom:281.386667pt;}
.y1f{bottom:282.906667pt;}
.yda{bottom:283.946667pt;}
.y4c{bottom:288.426667pt;}
.y113{bottom:293.786667pt;}
.y9c{bottom:295.226667pt;}
.yef{bottom:296.506667pt;}
.yb5{bottom:296.986667pt;}
.yd9{bottom:297.226667pt;}
.y1e{bottom:298.586667pt;}
.y75{bottom:305.466667pt;}
.yee{bottom:312.106667pt;}
.yb4{bottom:312.666667pt;}
.y4b{bottom:312.746667pt;}
.y1d{bottom:314.186667pt;}
.ye2{bottom:316.986667pt;}
.y112{bottom:317.466667pt;}
.y9b{bottom:319.546667pt;}
.y74{bottom:321.146667pt;}
.yd8{bottom:321.546667pt;}
.yed{bottom:327.786667pt;}
.yb3{bottom:328.266667pt;}
.ye1{bottom:332.666667pt;}
.y111{bottom:333.066667pt;}
.y73{bottom:336.746667pt;}
.y4a{bottom:336.986667pt;}
.y1c{bottom:338.106667pt;}
.yec{bottom:343.386667pt;}
.y9a{bottom:343.866667pt;}
.yd7{bottom:345.866667pt;}
.y72{bottom:352.346667pt;}
.y110{bottom:356.746667pt;}
.yb2{bottom:359.866667pt;}
.y49{bottom:361.306667pt;}
.y71{bottom:368.026667pt;}
.y99{bottom:368.106667pt;}
.y10f{bottom:372.346667pt;}
.yeb{bottom:374.986667pt;}
.yb1{bottom:375.546667pt;}
.y1b{bottom:381.306667pt;}
.yd6{bottom:389.146667pt;}
.yea{bottom:390.666667pt;}
.yb0{bottom:391.146667pt;}
.y70{bottom:391.626667pt;}
.y98{bottom:392.426667pt;}
.y10e{bottom:396.266667pt;}
.y48{bottom:404.586667pt;}
.yd5{bottom:404.746667pt;}
.yaf{bottom:406.826667pt;}
.y1a{bottom:414.266667pt;}
.y97{bottom:416.746667pt;}
.ye9{bottom:419.333333pt;}
.y6f{bottom:420.933333pt;}
.yae{bottom:422.453333pt;}
.y19{bottom:429.893333pt;}
.y47{bottom:436.293333pt;}
.yd4{bottom:436.453333pt;}
.yad{bottom:438.053333pt;}
.y10d{bottom:439.173333pt;}
.y6e{bottom:445.253333pt;}
.y18{bottom:445.493333pt;}
.yd3{bottom:449.733333pt;}
.y46{bottom:451.893333pt;}
.y96{bottom:460.053333pt;}
.y17{bottom:461.173333pt;}
.y10c{bottom:463.093333pt;}
.y45{bottom:467.493333pt;}
.y6d{bottom:469.573333pt;}
.yac{bottom:469.733333pt;}
.yd2{bottom:474.053333pt;}
.y16{bottom:476.773333pt;}
.y44{bottom:483.173333pt;}
.yab{bottom:485.333333pt;}
.y95{bottom:491.653333pt;}
.y15{bottom:492.373333pt;}
.y6c{bottom:493.893333pt;}
.y10b{bottom:496.293333pt;}
.ycf{bottom:498.293333pt;}
.y43{bottom:498.773333pt;}
.y94{bottom:507.333333pt;}
.y14{bottom:508.053333pt;}
.yaa{bottom:513.973333pt;}
.y6b{bottom:518.133333pt;}
.y12f{bottom:519.173333pt;}
.y42{bottom:522.373333pt;}
.yd1{bottom:522.613333pt;}
.y93{bottom:522.933333pt;}
.y13{bottom:523.653333pt;}
.y12e{bottom:534.773333pt;}
.y92{bottom:538.613333pt;}
.y10a{bottom:539.253333pt;}
.y12{bottom:539.333333pt;}
.y6a{bottom:542.453333pt;}
.y41{bottom:549.093333pt;}
.y12d{bottom:550.453333pt;}
.y109{bottom:554.853333pt;}
.y11{bottom:554.933333pt;}
.y91{bottom:562.213333pt;}
.y108{bottom:570.453333pt;}
.y10{bottom:570.533333pt;}
.y40{bottom:573.333333pt;}
.y12c{bottom:574.053333pt;}
.yce{bottom:581.573333pt;}
.y69{bottom:585.733333pt;}
.y107{bottom:586.133333pt;}
.yf{bottom:586.213333pt;}
.y12b{bottom:589.653333pt;}
.y90{bottom:591.493333pt;}
.y3f{bottom:597.653333pt;}
.y106{bottom:601.733333pt;}
.ye{bottom:601.813333pt;}
.ycd{bottom:613.173333pt;}
.y12a{bottom:613.333333pt;}
.y8f{bottom:615.813333pt;}
.y68{bottom:617.413333pt;}
.yd{bottom:617.493333pt;}
.y3d{bottom:621.973333pt;}
.ycc{bottom:626.453333pt;}
.y129{bottom:628.933333pt;}
.y67{bottom:633.013333pt;}
.y8e{bottom:640.133333pt;}
.y105{bottom:641.333333pt;}
.yc{bottom:641.413333pt;}
.y3c{bottom:646.213333pt;}
.y66{bottom:648.613333pt;}
.ycb{bottom:650.773333pt;}
.y128{bottom:652.613333pt;}
.y65{bottom:664.293333pt;}
.y8d{bottom:664.373333pt;}
.y127{bottom:668.213333pt;}
.y3a{bottom:670.533333pt;}
.yc8{bottom:675.093333pt;}
.y64{bottom:679.893333pt;}
.y104{bottom:684.213333pt;}
.yb{bottom:684.293333pt;}
.y8c{bottom:688.693333pt;}
.y126{bottom:691.813333pt;}
.ye8{bottom:694.293333pt;}
.y63{bottom:695.573333pt;}
.yca{bottom:699.333333pt;}
.y103{bottom:699.813333pt;}
.ye0{bottom:704.293333pt;}
.y125{bottom:707.493333pt;}
.y86{bottom:713.013333pt;}
.y39{bottom:713.813333pt;}
.y102{bottom:715.493333pt;}
.ya{bottom:715.893333pt;}
.y62{bottom:719.173333pt;}
.y124{bottom:723.093333pt;}
.ye7{bottom:725.973333pt;}
.y101{bottom:731.093333pt;}
.ydf{bottom:735.973333pt;}
.ye6{bottom:741.573333pt;}
.yc7{bottom:742.693333pt;}
.y38{bottom:745.493333pt;}
.y123{bottom:746.693333pt;}
.y9{bottom:747.733333pt;}
.y61{bottom:751.093333pt;}
.yde{bottom:751.573333pt;}
.y37{bottom:761.093333pt;}
.y122{bottom:762.373333pt;}
.y100{bottom:762.693333pt;}
.y89{bottom:768.533333pt;}
.ye5{bottom:770.213333pt;}
.yc6{bottom:774.293333pt;}
.y36{bottom:776.693333pt;}
.yff{bottom:778.373333pt;}
.ydd{bottom:780.213333pt;}
.y8{bottom:783.093333pt;}
.y121{bottom:785.973333pt;}
.yc5{bottom:787.573333pt;}
.y35{bottom:792.373333pt;}
.y60{bottom:793.973333pt;}
.y7{bottom:799.093333pt;}
.y120{bottom:801.653333pt;}
.y5f{bottom:809.653333pt;}
.y85{bottom:811.893333pt;}
.y6{bottom:815.093333pt;}
.y34{bottom:815.973333pt;}
.ya9{bottom:822.373333pt;}
.y5e{bottom:825.253333pt;}
.y84{bottom:827.493333pt;}
.ya8{bottom:833.173333pt;}
.yc1{bottom:836.213333pt;}
.y5d{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y33{bottom:844.933333pt;}
.y83{bottom:848.773333pt;}
.y5c{bottom:856.533333pt;}
.ya7{bottom:857.493333pt;}
.yc3{bottom:860.533333pt;}
.y11f{bottom:864.533333pt;}
.y5b{bottom:872.133333pt;}
.yfe{bottom:872.533333pt;}
.y82{bottom:873.093333pt;}
.y32{bottom:876.853333pt;}
.y4{bottom:877.893333pt;}
.y11e{bottom:880.133333pt;}
.ya6{bottom:881.733333pt;}
.y5a{bottom:887.813333pt;}
.yfd{bottom:888.133333pt;}
.y80{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.yfc{bottom:903.840000pt;}
.ya5{bottom:906.080000pt;}
.y59{bottom:911.440000pt;}
.yc0{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y7f{bottom:921.680000pt;}
.ya4{bottom:930.400000pt;}
.yfb{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y58{bottom:943.040000pt;}
.y7e{bottom:946.000000pt;}
.yfa{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.ya3{bottom:954.640000pt;}
.y57{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y7d{bottom:970.320000pt;}
.y56{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y55{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h10{height:23.626667pt;}
.hd{height:23.680000pt;}
.h13{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.h15{height:39.226667pt;}
.h18{height:39.280000pt;}
.h7{height:45.246562pt;}
.h16{height:47.920000pt;}
.h5{height:49.581562pt;}
.hc{height:53.309531pt;}
.h8{height:54.187500pt;}
.h12{height:54.880000pt;}
.h19{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h14{height:63.546667pt;}
.h17{height:63.600000pt;}
.h9{height:65.781915pt;}
.h11{height:79.200000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:31.280000pt;}
.w14{width:38.880000pt;}
.w3{width:43.440000pt;}
.w9{width:43.520000pt;}
.w1c{width:44.480000pt;}
.w11{width:49.280000pt;}
.w13{width:52.266667pt;}
.w15{width:52.800000pt;}
.w20{width:61.466667pt;}
.w27{width:61.546667pt;}
.w17{width:62.480000pt;}
.w19{width:65.680000pt;}
.w1b{width:66.240000pt;}
.w18{width:66.346667pt;}
.w1a{width:68.080000pt;}
.w16{width:70.560000pt;}
.wc{width:76.800000pt;}
.w1f{width:86.560000pt;}
.wd{width:88.560000pt;}
.w6{width:92.000000pt;}
.we{width:103.600000pt;}
.w25{width:105.120000pt;}
.w2c{width:106.080000pt;}
.w2b{width:106.106667pt;}
.w2a{width:106.160000pt;}
.w29{width:106.240000pt;}
.w22{width:108.000000pt;}
.w26{width:108.240000pt;}
.w30{width:111.360000pt;}
.w2f{width:111.386667pt;}
.w2d{width:111.440000pt;}
.w2e{width:117.120000pt;}
.w23{width:120.640000pt;}
.w24{width:120.666667pt;}
.wa{width:123.920000pt;}
.w7{width:137.920000pt;}
.w31{width:144.640000pt;}
.w4{width:150.720000pt;}
.wb{width:150.826667pt;}
.w5{width:156.506667pt;}
.w8{width:161.626667pt;}
.wf{width:206.906667pt;}
.w1d{width:217.546667pt;}
.w1e{width:231.466667pt;}
.w32{width:309.146667pt;}
.w28{width:533.466667pt;}
.w21{width:565.386667pt;}
.w12{width:590.853333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x25{left:69.119988pt;}
.x37{left:70.079988pt;}
.x3d{left:73.839988pt;}
.x3b{left:75.199988pt;}
.x38{left:76.159988pt;}
.x2b{left:77.120000pt;}
.x12{left:92.720000pt;}
.x3f{left:98.879988pt;}
.x26{left:105.360000pt;}
.x23{left:111.359988pt;}
.x2c{left:121.200000pt;}
.x13{left:142.320000pt;}
.x33{left:147.786667pt;}
.x27{left:167.466667pt;}
.x2{left:171.306655pt;}
.x4{left:174.666667pt;}
.x2d{left:183.386667pt;}
.x34{left:191.866667pt;}
.x14{left:194.986667pt;}
.xc{left:198.506667pt;}
.x20{left:215.546667pt;}
.x6{left:218.826667pt;}
.x1d{left:221.626667pt;}
.x9{left:224.826667pt;}
.x15{left:234.186667pt;}
.xd{left:242.666667pt;}
.x21{left:259.706667pt;}
.x1e{left:265.706667pt;}
.xa{left:268.986667pt;}
.x28{left:276.106667pt;}
.x31{left:279.546667pt;}
.x16{left:287.306667pt;}
.x2e{left:290.266667pt;}
.x3e{left:294.906655pt;}
.x10{left:308.106667pt;}
.x35{left:337.146667pt;}
.x1f{left:354.906667pt;}
.x17{left:358.266667pt;}
.xe{left:367.226667pt;}
.x7{left:370.186667pt;}
.x29{left:397.466667pt;}
.xb{left:407.546667pt;}
.x11{left:412.346667pt;}
.x18{left:421.066667pt;}
.x19{left:487.733333pt;}
.x22{left:491.893333pt;}
.x2f{left:503.973333pt;}
.x32{left:509.413333pt;}
.xf{left:518.693333pt;}
.x8{left:527.333333pt;}
.x1a{left:553.733333pt;}
.x24{left:594.053322pt;}
.x36{left:600.053322pt;}
.x3a{left:608.053322pt;}
.x3c{left:609.013322pt;}
.x30{left:610.773333pt;}
.x1b{left:622.133333pt;}
.x2a{left:624.613333pt;}
.x39{left:665.013322pt;}
.x1c{left:688.693333pt;}
.x3{left:711.413322pt;}
}




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