
    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_62120c2b5ebba70d5955fbfb.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_a3e354f8e16504d2f293093a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_05645b760690335d1139356d.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_69514411591aa6b3e37075ed.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_fb02b689cb08fbb49b94ae16.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c62e029ee1afc2889a84613c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_438a8938243aec1c367b7b64.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_de844eedee56c7296880bed0.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4fe0f00ad4efddb04db2d8e6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.052734;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_cbfeebfdb713d41f50b60630.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;}
.v7{vertical-align:-18.000000px;}
.v6{vertical-align:-15.120000px;}
.v4{vertical-align:-12.240000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.360000px;}
.v2{vertical-align:15.120000px;}
.ls36{letter-spacing:-0.420600px;}
.ls2d{letter-spacing:-0.367800px;}
.ls25{letter-spacing:-0.366000px;}
.ls23{letter-spacing:-0.299400px;}
.lsd{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls2c{letter-spacing:-0.116400px;}
.ls9{letter-spacing:-0.090000px;}
.ls20{letter-spacing:-0.087600px;}
.lsb{letter-spacing:-0.084600px;}
.ls21{letter-spacing:-0.063600px;}
.lse{letter-spacing:-0.031800px;}
.ls15{letter-spacing:-0.018360px;}
.ls2a{letter-spacing:-0.014760px;}
.ls39{letter-spacing:-0.009000px;}
.ls22{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.050400px;}
.ls6{letter-spacing:0.060480px;}
.ls14{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.074160px;}
.ls32{letter-spacing:0.074400px;}
.ls29{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1f{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.097560px;}
.ls2f{letter-spacing:0.097800px;}
.ls18{letter-spacing:0.108600px;}
.ls1e{letter-spacing:0.111000px;}
.ls31{letter-spacing:0.127200px;}
.ls27{letter-spacing:0.143040px;}
.ls8{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.160560px;}
.lsc{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.311040px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls24{letter-spacing:0.434400px;}
.ls16{letter-spacing:1.614240px;}
.ls3a{letter-spacing:1.728000px;}
.ls1c{letter-spacing:1.892520px;}
.ls1a{letter-spacing:2.252520px;}
.ls1b{letter-spacing:2.612520px;}
.ls28{letter-spacing:5.090400px;}
.ls17{letter-spacing:7.652520px;}
.ls2b{letter-spacing:29.321280px;}
.ls33{letter-spacing:29.690400px;}
.ls35{letter-spacing:35.373600px;}
.ls38{letter-spacing:47.726640px;}
.ls2e{letter-spacing:77.930400px;}
.ls37{letter-spacing:80.846640px;}
.ls26{letter-spacing:122.321280px;}
.ls30{letter-spacing:181.850400px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws1e{word-spacing:-13.353600px;}
.wse{word-spacing:-13.337400px;}
.wsd{word-spacing:-13.335000px;}
.ws1d{word-spacing:-13.324200px;}
.ws20{word-spacing:-13.300800px;}
.ws17{word-spacing:-13.287000px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws22{word-spacing:-13.217400px;}
.ws18{word-spacing:-13.211640px;}
.wsc{word-spacing:-13.208040px;}
.ws11{word-spacing:-13.162800px;}
.ws13{word-spacing:-13.141800px;}
.ws10{word-spacing:-13.138800px;}
.ws1a{word-spacing:-13.110000px;}
.ws4{word-spacing:-13.039800px;}
.ws1b{word-spacing:-12.927000px;}
.ws15{word-spacing:-12.860400px;}
.ws21{word-spacing:-12.805800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-9.358800px;}
.wsa{word-spacing:-8.614200px;}
.ws7{word-spacing:-8.553600px;}
.ws12{word-spacing:-8.544960px;}
.ws14{word-spacing:-8.254200px;}
.ws23{word-spacing:-3.231000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
.ws19{word-spacing:15.980400px;}
.ws1c{word-spacing:64.195560px;}
.ws16{word-spacing:108.860400px;}
.ws1f{word-spacing:168.674160px;}
._12{margin-left:-4.883040px;}
._d{margin-left:-3.547200px;}
._8{margin-left:-2.224200px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._2{width:2.457012px;}
._b{width:3.538811px;}
._4{width:4.629000px;}
._3{width:5.651400px;}
._5{width:6.761640px;}
._e{width:7.823040px;}
._c{width:9.018000px;}
._9{width:10.039800px;}
._a{width:11.543401px;}
._10{width:14.477757px;}
._6{width:15.511200px;}
._7{width:16.693918px;}
._1b{width:18.348482px;}
._1c{width:19.393198px;}
._f{width:20.500800px;}
._11{width:26.661000px;}
._13{width:27.744132px;}
._18{width:29.015640px;}
._15{width:35.179920px;}
._16{width:83.506680px;}
._14{width:127.744560px;}
._17{width:186.432120px;}
._1a{width:415.944960px;}
._19{width:1058.253600px;}
.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;}
.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;}
.yad{bottom:3.330000px;}
.ya7{bottom:3.420000px;}
.y4d{bottom:7.830000px;}
.ye0{bottom:7.860000px;}
.y4f{bottom:7.920000px;}
.y78{bottom:7.950000px;}
.ye4{bottom:8.280000px;}
.yec{bottom:9.360000px;}
.y8e{bottom:18.630000px;}
.yac{bottom:20.970000px;}
.yd2{bottom:24.660000px;}
.ya6{bottom:24.750000px;}
.y98{bottom:25.470000px;}
.y93{bottom:29.250000px;}
.y62{bottom:35.190000px;}
.y65{bottom:35.280000px;}
.ye2{bottom:35.640000px;}
.yea{bottom:36.720000px;}
.y9e{bottom:51.300000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.yc7{bottom:90.090000px;}
.y1{bottom:101.640000px;}
.yc6{bottom:107.640000px;}
.y50{bottom:115.410000px;}
.y149{bottom:115.680000px;}
.yf1{bottom:121.890000px;}
.y148{bottom:133.320000px;}
.y11d{bottom:138.540000px;}
.y73{bottom:139.260000px;}
.yf0{bottom:139.440000px;}
.y4e{bottom:142.770000px;}
.ya3{bottom:145.980000px;}
.yb7{bottom:148.680000px;}
.y147{bottom:150.870000px;}
.y90{bottom:153.270000px;}
.y11c{bottom:156.090000px;}
.y72{bottom:156.810000px;}
.yef{bottom:157.080000px;}
.ya2{bottom:163.530000px;}
.yb6{bottom:166.230000px;}
.y25{bottom:167.790000px;}
.y4c{bottom:170.130000px;}
.y8f{bottom:170.910000px;}
.y71{bottom:174.450000px;}
.yee{bottom:174.630000px;}
.y95{bottom:175.620000px;}
.y146{bottom:177.510000px;}
.y11b{bottom:182.730000px;}
.y24{bottom:185.340000px;}
.y94{bottom:193.170000px;}
.y145{bottom:195.060000px;}
.y9c{bottom:195.330000px;}
.yed{bottom:201.540000px;}
.y23{bottom:202.890000px;}
.y92{bottom:208.110000px;}
.y11a{bottom:209.280000px;}
.y70{bottom:210.000000px;}
.y144{bottom:212.610000px;}
.y9b{bottom:212.880000px;}
.y4b{bottom:218.820000px;}
.y22{bottom:220.530000px;}
.y119{bottom:226.830000px;}
.y6f{bottom:227.550000px;}
.y9d{bottom:236.820000px;}
.yb2{bottom:237.450000px;}
.y21{bottom:238.080000px;}
.y143{bottom:239.250000px;}
.y118{bottom:244.470000px;}
.y6e{bottom:245.190000px;}
.ye9{bottom:247.260000px;}
.yd4{bottom:249.150000px;}
.y4a{bottom:250.320000px;}
.yb1{bottom:255.090000px;}
.y20{bottom:255.630000px;}
.y142{bottom:256.800000px;}
.yd3{bottom:266.700000px;}
.y117{bottom:271.020000px;}
.y6d{bottom:272.100000px;}
.y91{bottom:274.440000px;}
.yeb{bottom:276.060000px;}
.yb0{bottom:279.030000px;}
.yc2{bottom:284.340000px;}
.y116{bottom:288.660000px;}
.y8d{bottom:289.380000px;}
.yd1{bottom:290.730000px;}
.y1f{bottom:291.270000px;}
.y141{bottom:300.990000px;}
.yc1{bottom:301.890000px;}
.ye7{bottom:303.420000px;}
.y115{bottom:306.210000px;}
.y1e{bottom:308.820000px;}
.y6b{bottom:317.730000px;}
.yc0{bottom:325.830000px;}
.y1d{bottom:326.460000px;}
.y140{bottom:327.540000px;}
.ye8{bottom:330.780000px;}
.y114{bottom:332.760000px;}
.yaf{bottom:332.940000px;}
.y9a{bottom:337.440000px;}
.y1c{bottom:344.010000px;}
.yd0{bottom:344.640000px;}
.y6c{bottom:345.090000px;}
.y113{bottom:350.400000px;}
.y13f{bottom:354.180000px;}
.ye5{bottom:358.140000px;}
.y1b{bottom:361.560000px;}
.y112{bottom:367.950000px;}
.ybb{bottom:371.640000px;}
.y13e{bottom:371.730000px;}
.y69{bottom:372.450000px;}
.ya9{bottom:374.340000px;}
.y1a{bottom:379.200000px;}
.ybf{bottom:379.830000px;}
.ye6{bottom:385.410000px;}
.yba{bottom:389.190000px;}
.ya8{bottom:391.890000px;}
.y111{bottom:394.590000px;}
.y13d{bottom:398.370000px;}
.y6a{bottom:399.720000px;}
.y110{bottom:412.140000px;}
.ye1{bottom:412.770000px;}
.yb9{bottom:413.130000px;}
.y19{bottom:414.750000px;}
.ya5{bottom:415.830000px;}
.y13c{bottom:415.920000px;}
.y67{bottom:427.080000px;}
.y10f{bottom:429.690000px;}
.y18{bottom:432.390000px;}
.ycb{bottom:434.730000px;}
.ye3{bottom:440.490000px;}
.y13b{bottom:442.470000px;}
.y17{bottom:449.940000px;}
.yca{bottom:452.280000px;}
.y68{bottom:454.440000px;}
.y10e{bottom:456.330000px;}
.y49{bottom:456.870000px;}
.y13a{bottom:460.110000px;}
.y16{bottom:467.490000px;}
.ydf{bottom:467.850000px;}
.yb8{bottom:470.490000px;}
.ya4{bottom:473.190000px;}
.y10d{bottom:473.910000px;}
.y48{bottom:474.540000px;}
.yc9{bottom:476.250000px;}
.y64{bottom:481.740000px;}
.y15{bottom:485.160000px;}
.yb5{bottom:485.430000px;}
.y139{bottom:486.690000px;}
.ya1{bottom:488.130000px;}
.y47{bottom:492.090000px;}
.ydd{bottom:495.240000px;}
.y10c{bottom:500.550000px;}
.y14{bottom:502.710000px;}
.y138{bottom:504.330000px;}
.y66{bottom:509.100000px;}
.y46{bottom:509.730000px;}
.y10b{bottom:518.100000px;}
.y13{bottom:520.350000px;}
.yde{bottom:522.600000px;}
.y45{bottom:527.280000px;}
.y8c{bottom:527.730000px;}
.y137{bottom:530.880000px;}
.yc8{bottom:533.580000px;}
.y10a{bottom:535.650000px;}
.y63{bottom:536.460000px;}
.y44{bottom:544.830000px;}
.y8b{bottom:545.280000px;}
.y136{bottom:548.430000px;}
.yc5{bottom:548.520000px;}
.y12{bottom:555.900000px;}
.y109{bottom:562.290000px;}
.y43{bottom:562.470000px;}
.y8a{bottom:562.920000px;}
.y61{bottom:563.820000px;}
.ydc{bottom:571.290000px;}
.y11{bottom:573.450000px;}
.y135{bottom:575.070000px;}
.y108{bottom:579.840000px;}
.y42{bottom:580.020000px;}
.y89{bottom:589.470000px;}
.y10{bottom:591.090000px;}
.y134{bottom:592.620000px;}
.y107{bottom:597.480000px;}
.y41{bottom:606.660000px;}
.ydb{bottom:606.840000px;}
.yf{bottom:618.000000px;}
.y133{bottom:619.260000px;}
.y106{bottom:624.030000px;}
.yda{bottom:624.390000px;}
.y88{bottom:625.020000px;}
.y132{bottom:636.810000px;}
.y60{bottom:639.780000px;}
.y105{bottom:641.580000px;}
.y40{bottom:642.210000px;}
.y87{bottom:642.660000px;}
.y104{bottom:659.220000px;}
.y3f{bottom:659.760000px;}
.yd9{bottom:660.030000px;}
.y86{bottom:660.210000px;}
.y131{bottom:663.360000px;}
.ye{bottom:666.600000px;}
.yb4{bottom:673.800000px;}
.y5f{bottom:675.420000px;}
.y3e{bottom:677.400000px;}
.yd8{bottom:677.580000px;}
.y85{bottom:677.850000px;}
.y130{bottom:681.000000px;}
.y103{bottom:685.770000px;}
.ya0{bottom:691.800000px;}
.y3d{bottom:694.950000px;}
.yd7{bottom:695.220000px;}
.y84{bottom:695.400000px;}
.yc4{bottom:696.300000px;}
.yb3{bottom:702.240000px;}
.y102{bottom:703.410000px;}
.yd{bottom:703.590000px;}
.y12f{bottom:707.550000px;}
.y5e{bottom:707.640000px;}
.y3c{bottom:712.590000px;}
.yae{bottom:718.890000px;}
.y9f{bottom:720.240000px;}
.yc{bottom:721.140000px;}
.yd6{bottom:721.770000px;}
.y83{bottom:721.950000px;}
.y99{bottom:723.390000px;}
.yc3{bottom:724.740000px;}
.y12e{bottom:725.190000px;}
.ycf{bottom:726.000000px;}
.y101{bottom:729.960000px;}
.y3b{bottom:730.140000px;}
.yb{bottom:738.780000px;}
.yab{bottom:742.830000px;}
.y97{bottom:747.330000px;}
.y100{bottom:747.510000px;}
.y3a{bottom:747.690000px;}
.yce{bottom:749.940000px;}
.y12d{bottom:751.740000px;}
.yd5{bottom:753.990000px;}
.ya{bottom:756.330000px;}
.y82{bottom:757.590000px;}
.ybe{bottom:763.440000px;}
.y12c{bottom:769.290000px;}
.yff{bottom:774.150000px;}
.y39{bottom:774.600000px;}
.y81{bottom:775.140000px;}
.y9{bottom:783.330000px;}
.ybd{bottom:787.380000px;}
.yfe{bottom:791.700000px;}
.y80{bottom:792.780000px;}
.y12b{bottom:795.930000px;}
.yaa{bottom:796.740000px;}
.ycd{bottom:807.270000px;}
.yfd{bottom:809.340000px;}
.y96{bottom:810.240000px;}
.y7f{bottom:810.330000px;}
.y12a{bottom:813.480000px;}
.y38{bottom:822.930000px;}
.ybc{bottom:823.740000px;}
.y7e{bottom:827.880000px;}
.y8{bottom:830.040000px;}
.yfc{bottom:835.890000px;}
.ycc{bottom:839.490000px;}
.y129{bottom:840.030000px;}
.y37{bottom:840.480000px;}
.yfb{bottom:853.440000px;}
.y7d{bottom:854.430000px;}
.y128{bottom:857.670000px;}
.y36{bottom:858.030000px;}
.y7{bottom:865.860000px;}
.y127{bottom:875.220000px;}
.y35{bottom:875.670000px;}
.yfa{bottom:880.080000px;}
.y5d{bottom:881.970000px;}
.y7c{bottom:887.100000px;}
.y34{bottom:893.220000px;}
.y5c{bottom:899.610000px;}
.y6{bottom:901.860000px;}
.yf9{bottom:906.630000px;}
.y5b{bottom:917.160000px;}
.y126{bottom:919.410000px;}
.y7b{bottom:920.040000px;}
.y33{bottom:928.860000px;}
.yf8{bottom:933.540000px;}
.y5a{bottom:934.710000px;}
.y5{bottom:937.860000px;}
.y125{bottom:945.960000px;}
.y32{bottom:946.410000px;}
.y7a{bottom:947.400000px;}
.y59{bottom:952.350000px;}
.y124{bottom:963.600000px;}
.y31{bottom:963.960000px;}
.y58{bottom:969.900000px;}
.y4{bottom:973.950000px;}
.y79{bottom:974.760000px;}
.y123{bottom:981.150000px;}
.y30{bottom:981.600000px;}
.yf7{bottom:981.780000px;}
.y57{bottom:987.540000px;}
.y2f{bottom:999.150000px;}
.y77{bottom:1002.030000px;}
.y56{bottom:1005.090000px;}
.y122{bottom:1007.790000px;}
.yf6{bottom:1008.690000px;}
.y3{bottom:1012.230000px;}
.y2e{bottom:1016.820000px;}
.y55{bottom:1022.670000px;}
.y76{bottom:1029.420000px;}
.y121{bottom:1034.370000px;}
.y54{bottom:1040.310000px;}
.yf5{bottom:1045.800000px;}
.y120{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.yf4{bottom:1063.350000px;}
.y53{bottom:1066.860000px;}
.y2c{bottom:1069.920000px;}
.y75{bottom:1078.110000px;}
.y11f{bottom:1078.560000px;}
.y2b{bottom:1087.560000px;}
.yf3{bottom:1090.260000px;}
.y11e{bottom:1096.110000px;}
.y52{bottom:1099.890000px;}
.y2a{bottom:1105.110000px;}
.y74{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y51{bottom:1127.160000px;}
.yf2{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h1d{height:17.640000px;}
.hd{height:26.550000px;}
.h12{height:26.580000px;}
.he{height:26.640000px;}
.h13{height:26.670000px;}
.h21{height:27.000000px;}
.h23{height:28.080000px;}
.h2{height:30.022383px;}
.hc{height:33.830156px;}
.h1f{height:35.100000px;}
.h1b{height:35.190000px;}
.h19{height:35.782383px;}
.h17{height:37.191445px;}
.h3{height:39.155273px;}
.h16{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.hf{height:53.910000px;}
.h11{height:53.940000px;}
.h10{height:54.000000px;}
.h20{height:54.360000px;}
.h22{height:55.440000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h14{height:59.973223px;}
.h9{height:60.960938px;}
.h24{height:61.793886px;}
.hb{height:62.585859px;}
.h18{height:66.240000px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1e{height:121.860000px;}
.h1a{height:177.750000px;}
.h1c{height:180.450000px;}
.h15{height:189.660000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:42.120000px;}
.w5{width:42.150000px;}
.w4{width:42.210000px;}
.wc{width:54.720000px;}
.wf{width:73.380000px;}
.w1c{width:85.590000px;}
.w7{width:93.240000px;}
.wb{width:93.330000px;}
.w8{width:95.400000px;}
.wd{width:99.180000px;}
.wa{width:108.480000px;}
.w1b{width:116.220000px;}
.we{width:124.470000px;}
.w10{width:135.180000px;}
.w3{width:164.970000px;}
.w9{width:202.620000px;}
.w12{width:216.750000px;}
.w18{width:219.900000px;}
.w15{width:220.080000px;}
.w17{width:287.730000px;}
.w14{width:294.570000px;}
.w11{width:302.040000px;}
.w1a{width:591.720000px;}
.w16{width:746.520000px;}
.w19{width:754.170000px;}
.w13{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.870000px;}
.x18{left:7.290000px;}
.x17{left:19.440000px;}
.x30{left:43.470000px;}
.x1{left:68.040000px;}
.x2c{left:69.570000px;}
.x24{left:73.350000px;}
.x33{left:111.239987px;}
.x5{left:122.039987px;}
.x28{left:150.299987px;}
.x20{left:158.129987px;}
.x31{left:184.980000px;}
.x19{left:186.870000px;}
.x21{left:188.940000px;}
.x29{left:192.450000px;}
.x13{left:201.720000px;}
.x2{left:211.079987px;}
.xf{left:250.230000px;}
.x6{left:256.890000px;}
.x2a{left:279.990000px;}
.x22{left:286.740000px;}
.x1a{left:294.300000px;}
.xe{left:295.589987px;}
.x2d{left:335.909987px;}
.x27{left:338.699987px;}
.x1f{left:340.409987px;}
.x1c{left:342.119987px;}
.x10{left:344.190000px;}
.x2f{left:345.899987px;}
.x1e{left:348.689987px;}
.x26{left:350.309987px;}
.x14{left:357.060000px;}
.x8{left:422.580000px;}
.x11{left:440.400000px;}
.x2e{left:446.609987px;}
.x9{left:465.510000px;}
.x2b{left:480.900000px;}
.x15{left:482.250000px;}
.x23{left:484.230000px;}
.x1b{left:489.630000px;}
.xa{left:508.470000px;}
.x12{left:549.690000px;}
.xb{left:551.310000px;}
.x16{left:556.350000px;}
.x32{left:557.430000px;}
.xc{left:594.240000px;}
.xd{left:753.809987px;}
.x4{left:774.059987px;}
.x1d{left:792.059987px;}
.x25{left:794.309987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v7{vertical-align:-16.000000pt;}
.v6{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.880000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.986667pt;}
.v2{vertical-align:13.440000pt;}
.ls36{letter-spacing:-0.373867pt;}
.ls2d{letter-spacing:-0.326933pt;}
.ls25{letter-spacing:-0.325333pt;}
.ls23{letter-spacing:-0.266133pt;}
.lsd{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls2c{letter-spacing:-0.103467pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls20{letter-spacing:-0.077867pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls21{letter-spacing:-0.056533pt;}
.lse{letter-spacing:-0.028267pt;}
.ls15{letter-spacing:-0.016320pt;}
.ls2a{letter-spacing:-0.013120pt;}
.ls39{letter-spacing:-0.008000pt;}
.ls22{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.044800pt;}
.ls6{letter-spacing:0.053760pt;}
.ls14{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.065920pt;}
.ls32{letter-spacing:0.066133pt;}
.ls29{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1f{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.086720pt;}
.ls2f{letter-spacing:0.086933pt;}
.ls18{letter-spacing:0.096533pt;}
.ls1e{letter-spacing:0.098667pt;}
.ls31{letter-spacing:0.113067pt;}
.ls27{letter-spacing:0.127147pt;}
.ls8{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.142720pt;}
.lsc{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.276480pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls24{letter-spacing:0.386133pt;}
.ls16{letter-spacing:1.434880pt;}
.ls3a{letter-spacing:1.536000pt;}
.ls1c{letter-spacing:1.682240pt;}
.ls1a{letter-spacing:2.002240pt;}
.ls1b{letter-spacing:2.322240pt;}
.ls28{letter-spacing:4.524800pt;}
.ls17{letter-spacing:6.802240pt;}
.ls2b{letter-spacing:26.063360pt;}
.ls33{letter-spacing:26.391467pt;}
.ls35{letter-spacing:31.443200pt;}
.ls38{letter-spacing:42.423680pt;}
.ls2e{letter-spacing:69.271467pt;}
.ls37{letter-spacing:71.863680pt;}
.ls26{letter-spacing:108.730027pt;}
.ls30{letter-spacing:161.644800pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws1e{word-spacing:-11.869867pt;}
.wse{word-spacing:-11.855467pt;}
.wsd{word-spacing:-11.853333pt;}
.ws1d{word-spacing:-11.843733pt;}
.ws20{word-spacing:-11.822933pt;}
.ws17{word-spacing:-11.810667pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws22{word-spacing:-11.748800pt;}
.ws18{word-spacing:-11.743680pt;}
.wsc{word-spacing:-11.740480pt;}
.ws11{word-spacing:-11.700267pt;}
.ws13{word-spacing:-11.681600pt;}
.ws10{word-spacing:-11.678933pt;}
.ws1a{word-spacing:-11.653333pt;}
.ws4{word-spacing:-11.590933pt;}
.ws1b{word-spacing:-11.490667pt;}
.ws15{word-spacing:-11.431467pt;}
.ws21{word-spacing:-11.382933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-8.318933pt;}
.wsa{word-spacing:-7.657067pt;}
.ws7{word-spacing:-7.603200pt;}
.ws12{word-spacing:-7.595520pt;}
.ws14{word-spacing:-7.337067pt;}
.ws23{word-spacing:-2.872000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
.ws19{word-spacing:14.204800pt;}
.ws1c{word-spacing:57.062720pt;}
.ws16{word-spacing:96.764800pt;}
.ws1f{word-spacing:149.932587pt;}
._12{margin-left:-4.340480pt;}
._d{margin-left:-3.153067pt;}
._8{margin-left:-1.977066pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._2{width:2.184011pt;}
._b{width:3.145610pt;}
._4{width:4.114666pt;}
._3{width:5.023467pt;}
._5{width:6.010347pt;}
._e{width:6.953813pt;}
._c{width:8.016000pt;}
._9{width:8.924266pt;}
._a{width:10.260801pt;}
._10{width:12.869117pt;}
._6{width:13.787734pt;}
._7{width:14.839039pt;}
._1b{width:16.309761pt;}
._1c{width:17.238399pt;}
._f{width:18.222933pt;}
._11{width:23.698667pt;}
._13{width:24.661450pt;}
._18{width:25.791680pt;}
._15{width:31.271040pt;}
._16{width:74.228160pt;}
._14{width:113.550720pt;}
._17{width:165.717440pt;}
._1a{width:369.728853pt;}
._19{width:940.669867pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.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;}
.yad{bottom:2.960000pt;}
.ya7{bottom:3.040000pt;}
.y4d{bottom:6.960000pt;}
.ye0{bottom:6.986667pt;}
.y4f{bottom:7.040000pt;}
.y78{bottom:7.066667pt;}
.ye4{bottom:7.360000pt;}
.yec{bottom:8.320000pt;}
.y8e{bottom:16.560000pt;}
.yac{bottom:18.640000pt;}
.yd2{bottom:21.920000pt;}
.ya6{bottom:22.000000pt;}
.y98{bottom:22.640000pt;}
.y93{bottom:26.000000pt;}
.y62{bottom:31.280000pt;}
.y65{bottom:31.360000pt;}
.ye2{bottom:31.680000pt;}
.yea{bottom:32.640000pt;}
.y9e{bottom:45.600000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.yc7{bottom:80.080000pt;}
.y1{bottom:90.346667pt;}
.yc6{bottom:95.680000pt;}
.y50{bottom:102.586667pt;}
.y149{bottom:102.826667pt;}
.yf1{bottom:108.346667pt;}
.y148{bottom:118.506667pt;}
.y11d{bottom:123.146667pt;}
.y73{bottom:123.786667pt;}
.yf0{bottom:123.946667pt;}
.y4e{bottom:126.906667pt;}
.ya3{bottom:129.760000pt;}
.yb7{bottom:132.160000pt;}
.y147{bottom:134.106667pt;}
.y90{bottom:136.240000pt;}
.y11c{bottom:138.746667pt;}
.y72{bottom:139.386667pt;}
.yef{bottom:139.626667pt;}
.ya2{bottom:145.360000pt;}
.yb6{bottom:147.760000pt;}
.y25{bottom:149.146667pt;}
.y4c{bottom:151.226667pt;}
.y8f{bottom:151.920000pt;}
.y71{bottom:155.066667pt;}
.yee{bottom:155.226667pt;}
.y95{bottom:156.106667pt;}
.y146{bottom:157.786667pt;}
.y11b{bottom:162.426667pt;}
.y24{bottom:164.746667pt;}
.y94{bottom:171.706667pt;}
.y145{bottom:173.386667pt;}
.y9c{bottom:173.626667pt;}
.yed{bottom:179.146667pt;}
.y23{bottom:180.346667pt;}
.y92{bottom:184.986667pt;}
.y11a{bottom:186.026667pt;}
.y70{bottom:186.666667pt;}
.y144{bottom:188.986667pt;}
.y9b{bottom:189.226667pt;}
.y4b{bottom:194.506667pt;}
.y22{bottom:196.026667pt;}
.y119{bottom:201.626667pt;}
.y6f{bottom:202.266667pt;}
.y9d{bottom:210.506667pt;}
.yb2{bottom:211.066667pt;}
.y21{bottom:211.626667pt;}
.y143{bottom:212.666667pt;}
.y118{bottom:217.306667pt;}
.y6e{bottom:217.946667pt;}
.ye9{bottom:219.786667pt;}
.yd4{bottom:221.466667pt;}
.y4a{bottom:222.506667pt;}
.yb1{bottom:226.746667pt;}
.y20{bottom:227.226667pt;}
.y142{bottom:228.266667pt;}
.yd3{bottom:237.066667pt;}
.y117{bottom:240.906667pt;}
.y6d{bottom:241.866667pt;}
.y91{bottom:243.946667pt;}
.yeb{bottom:245.386667pt;}
.yb0{bottom:248.026667pt;}
.yc2{bottom:252.746667pt;}
.y116{bottom:256.586667pt;}
.y8d{bottom:257.226667pt;}
.yd1{bottom:258.426667pt;}
.y1f{bottom:258.906667pt;}
.y141{bottom:267.546667pt;}
.yc1{bottom:268.346667pt;}
.ye7{bottom:269.706667pt;}
.y115{bottom:272.186667pt;}
.y1e{bottom:274.506667pt;}
.y6b{bottom:282.426667pt;}
.yc0{bottom:289.626667pt;}
.y1d{bottom:290.186667pt;}
.y140{bottom:291.146667pt;}
.ye8{bottom:294.026667pt;}
.y114{bottom:295.786667pt;}
.yaf{bottom:295.946667pt;}
.y9a{bottom:299.946667pt;}
.y1c{bottom:305.786667pt;}
.yd0{bottom:306.346667pt;}
.y6c{bottom:306.746667pt;}
.y113{bottom:311.466667pt;}
.y13f{bottom:314.826667pt;}
.ye5{bottom:318.346667pt;}
.y1b{bottom:321.386667pt;}
.y112{bottom:327.066667pt;}
.ybb{bottom:330.346667pt;}
.y13e{bottom:330.426667pt;}
.y69{bottom:331.066667pt;}
.ya9{bottom:332.746667pt;}
.y1a{bottom:337.066667pt;}
.ybf{bottom:337.626667pt;}
.ye6{bottom:342.586667pt;}
.yba{bottom:345.946667pt;}
.ya8{bottom:348.346667pt;}
.y111{bottom:350.746667pt;}
.y13d{bottom:354.106667pt;}
.y6a{bottom:355.306667pt;}
.y110{bottom:366.346667pt;}
.ye1{bottom:366.906667pt;}
.yb9{bottom:367.226667pt;}
.y19{bottom:368.666667pt;}
.ya5{bottom:369.626667pt;}
.y13c{bottom:369.706667pt;}
.y67{bottom:379.626667pt;}
.y10f{bottom:381.946667pt;}
.y18{bottom:384.346667pt;}
.ycb{bottom:386.426667pt;}
.ye3{bottom:391.546667pt;}
.y13b{bottom:393.306667pt;}
.y17{bottom:399.946667pt;}
.yca{bottom:402.026667pt;}
.y68{bottom:403.946667pt;}
.y10e{bottom:405.626667pt;}
.y49{bottom:406.106667pt;}
.y13a{bottom:408.986667pt;}
.y16{bottom:415.546667pt;}
.ydf{bottom:415.866667pt;}
.yb8{bottom:418.213333pt;}
.ya4{bottom:420.613333pt;}
.y10d{bottom:421.253333pt;}
.y48{bottom:421.813333pt;}
.yc9{bottom:423.333333pt;}
.y64{bottom:428.213333pt;}
.y15{bottom:431.253333pt;}
.yb5{bottom:431.493333pt;}
.y139{bottom:432.613333pt;}
.ya1{bottom:433.893333pt;}
.y47{bottom:437.413333pt;}
.ydd{bottom:440.213333pt;}
.y10c{bottom:444.933333pt;}
.y14{bottom:446.853333pt;}
.y138{bottom:448.293333pt;}
.y66{bottom:452.533333pt;}
.y46{bottom:453.093333pt;}
.y10b{bottom:460.533333pt;}
.y13{bottom:462.533333pt;}
.yde{bottom:464.533333pt;}
.y45{bottom:468.693333pt;}
.y8c{bottom:469.093333pt;}
.y137{bottom:471.893333pt;}
.yc8{bottom:474.293333pt;}
.y10a{bottom:476.133333pt;}
.y63{bottom:476.853333pt;}
.y44{bottom:484.293333pt;}
.y8b{bottom:484.693333pt;}
.y136{bottom:487.493333pt;}
.yc5{bottom:487.573333pt;}
.y12{bottom:494.133333pt;}
.y109{bottom:499.813333pt;}
.y43{bottom:499.973333pt;}
.y8a{bottom:500.373333pt;}
.y61{bottom:501.173333pt;}
.ydc{bottom:507.813333pt;}
.y11{bottom:509.733333pt;}
.y135{bottom:511.173333pt;}
.y108{bottom:515.413333pt;}
.y42{bottom:515.573333pt;}
.y89{bottom:523.973333pt;}
.y10{bottom:525.413333pt;}
.y134{bottom:526.773333pt;}
.y107{bottom:531.093333pt;}
.y41{bottom:539.253333pt;}
.ydb{bottom:539.413333pt;}
.yf{bottom:549.333333pt;}
.y133{bottom:550.453333pt;}
.y106{bottom:554.693333pt;}
.yda{bottom:555.013333pt;}
.y88{bottom:555.573333pt;}
.y132{bottom:566.053333pt;}
.y60{bottom:568.693333pt;}
.y105{bottom:570.293333pt;}
.y40{bottom:570.853333pt;}
.y87{bottom:571.253333pt;}
.y104{bottom:585.973333pt;}
.y3f{bottom:586.453333pt;}
.yd9{bottom:586.693333pt;}
.y86{bottom:586.853333pt;}
.y131{bottom:589.653333pt;}
.ye{bottom:592.533333pt;}
.yb4{bottom:598.933333pt;}
.y5f{bottom:600.373333pt;}
.y3e{bottom:602.133333pt;}
.yd8{bottom:602.293333pt;}
.y85{bottom:602.533333pt;}
.y130{bottom:605.333333pt;}
.y103{bottom:609.573333pt;}
.ya0{bottom:614.933333pt;}
.y3d{bottom:617.733333pt;}
.yd7{bottom:617.973333pt;}
.y84{bottom:618.133333pt;}
.yc4{bottom:618.933333pt;}
.yb3{bottom:624.213333pt;}
.y102{bottom:625.253333pt;}
.yd{bottom:625.413333pt;}
.y12f{bottom:628.933333pt;}
.y5e{bottom:629.013333pt;}
.y3c{bottom:633.413333pt;}
.yae{bottom:639.013333pt;}
.y9f{bottom:640.213333pt;}
.yc{bottom:641.013333pt;}
.yd6{bottom:641.573333pt;}
.y83{bottom:641.733333pt;}
.y99{bottom:643.013333pt;}
.yc3{bottom:644.213333pt;}
.y12e{bottom:644.613333pt;}
.ycf{bottom:645.333333pt;}
.y101{bottom:648.853333pt;}
.y3b{bottom:649.013333pt;}
.yb{bottom:656.693333pt;}
.yab{bottom:660.293333pt;}
.y97{bottom:664.293333pt;}
.y100{bottom:664.453333pt;}
.y3a{bottom:664.613333pt;}
.yce{bottom:666.613333pt;}
.y12d{bottom:668.213333pt;}
.yd5{bottom:670.213333pt;}
.ya{bottom:672.293333pt;}
.y82{bottom:673.413333pt;}
.ybe{bottom:678.613333pt;}
.y12c{bottom:683.813333pt;}
.yff{bottom:688.133333pt;}
.y39{bottom:688.533333pt;}
.y81{bottom:689.013333pt;}
.y9{bottom:696.293333pt;}
.ybd{bottom:699.893333pt;}
.yfe{bottom:703.733333pt;}
.y80{bottom:704.693333pt;}
.y12b{bottom:707.493333pt;}
.yaa{bottom:708.213333pt;}
.ycd{bottom:717.573333pt;}
.yfd{bottom:719.413333pt;}
.y96{bottom:720.213333pt;}
.y7f{bottom:720.293333pt;}
.y12a{bottom:723.093333pt;}
.y38{bottom:731.493333pt;}
.ybc{bottom:732.213333pt;}
.y7e{bottom:735.893333pt;}
.y8{bottom:737.813333pt;}
.yfc{bottom:743.013333pt;}
.ycc{bottom:746.213333pt;}
.y129{bottom:746.693333pt;}
.y37{bottom:747.093333pt;}
.yfb{bottom:758.613333pt;}
.y7d{bottom:759.493333pt;}
.y128{bottom:762.373333pt;}
.y36{bottom:762.693333pt;}
.y7{bottom:769.653333pt;}
.y127{bottom:777.973333pt;}
.y35{bottom:778.373333pt;}
.yfa{bottom:782.293333pt;}
.y5d{bottom:783.973333pt;}
.y7c{bottom:788.533333pt;}
.y34{bottom:793.973333pt;}
.y5c{bottom:799.653333pt;}
.y6{bottom:801.653333pt;}
.yf9{bottom:805.893333pt;}
.y5b{bottom:815.253333pt;}
.y126{bottom:817.253333pt;}
.y7b{bottom:817.813333pt;}
.y33{bottom:825.653333pt;}
.yf8{bottom:829.813333pt;}
.y5a{bottom:830.853333pt;}
.y5{bottom:833.653333pt;}
.y125{bottom:840.853333pt;}
.y32{bottom:841.253333pt;}
.y7a{bottom:842.133333pt;}
.y59{bottom:846.533333pt;}
.y124{bottom:856.533333pt;}
.y31{bottom:856.853333pt;}
.y58{bottom:862.133333pt;}
.y4{bottom:865.733333pt;}
.y79{bottom:866.453333pt;}
.y123{bottom:872.133333pt;}
.y30{bottom:872.533333pt;}
.yf7{bottom:872.693333pt;}
.y57{bottom:877.813333pt;}
.y2f{bottom:888.133333pt;}
.y77{bottom:890.693333pt;}
.y56{bottom:893.413333pt;}
.y122{bottom:895.813333pt;}
.yf6{bottom:896.613333pt;}
.y3{bottom:899.760000pt;}
.y2e{bottom:903.840000pt;}
.y55{bottom:909.040000pt;}
.y76{bottom:915.040000pt;}
.y121{bottom:919.440000pt;}
.y54{bottom:924.720000pt;}
.yf5{bottom:929.600000pt;}
.y120{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.yf4{bottom:945.200000pt;}
.y53{bottom:948.320000pt;}
.y2c{bottom:951.040000pt;}
.y75{bottom:958.320000pt;}
.y11f{bottom:958.720000pt;}
.y2b{bottom:966.720000pt;}
.yf3{bottom:969.120000pt;}
.y11e{bottom:974.320000pt;}
.y52{bottom:977.680000pt;}
.y2a{bottom:982.320000pt;}
.y74{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y51{bottom:1001.920000pt;}
.yf2{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h1d{height:15.680000pt;}
.hd{height:23.600000pt;}
.h12{height:23.626667pt;}
.he{height:23.680000pt;}
.h13{height:23.706667pt;}
.h21{height:24.000000pt;}
.h23{height:24.960000pt;}
.h2{height:26.686562pt;}
.hc{height:30.071250pt;}
.h1f{height:31.200000pt;}
.h1b{height:31.280000pt;}
.h19{height:31.806563pt;}
.h17{height:33.059063pt;}
.h3{height:34.804688pt;}
.h16{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.hf{height:47.920000pt;}
.h11{height:47.946667pt;}
.h10{height:48.000000pt;}
.h20{height:48.320000pt;}
.h22{height:49.280000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h14{height:53.309531pt;}
.h9{height:54.187500pt;}
.h24{height:54.927899pt;}
.hb{height:55.631875pt;}
.h18{height:58.880000pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1e{height:108.320000pt;}
.h1a{height:158.000000pt;}
.h1c{height:160.400000pt;}
.h15{height:168.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:37.440000pt;}
.w5{width:37.466667pt;}
.w4{width:37.520000pt;}
.wc{width:48.640000pt;}
.wf{width:65.226667pt;}
.w1c{width:76.080000pt;}
.w7{width:82.880000pt;}
.wb{width:82.960000pt;}
.w8{width:84.800000pt;}
.wd{width:88.160000pt;}
.wa{width:96.426667pt;}
.w1b{width:103.306667pt;}
.we{width:110.640000pt;}
.w10{width:120.160000pt;}
.w3{width:146.640000pt;}
.w9{width:180.106667pt;}
.w12{width:192.666667pt;}
.w18{width:195.466667pt;}
.w15{width:195.626667pt;}
.w17{width:255.760000pt;}
.w14{width:261.840000pt;}
.w11{width:268.480000pt;}
.w1a{width:525.973333pt;}
.w16{width:663.573333pt;}
.w19{width:670.373333pt;}
.w13{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:3.440000pt;}
.x18{left:6.480000pt;}
.x17{left:17.280000pt;}
.x30{left:38.640000pt;}
.x1{left:60.480000pt;}
.x2c{left:61.840000pt;}
.x24{left:65.200000pt;}
.x33{left:98.879988pt;}
.x5{left:108.479988pt;}
.x28{left:133.599988pt;}
.x20{left:140.559988pt;}
.x31{left:164.426667pt;}
.x19{left:166.106667pt;}
.x21{left:167.946667pt;}
.x29{left:171.066667pt;}
.x13{left:179.306667pt;}
.x2{left:187.626655pt;}
.xf{left:222.426667pt;}
.x6{left:228.346667pt;}
.x2a{left:248.880000pt;}
.x22{left:254.880000pt;}
.x1a{left:261.600000pt;}
.xe{left:262.746655pt;}
.x2d{left:298.586655pt;}
.x27{left:301.066655pt;}
.x1f{left:302.586655pt;}
.x1c{left:304.106655pt;}
.x10{left:305.946667pt;}
.x2f{left:307.466655pt;}
.x1e{left:309.946655pt;}
.x26{left:311.386655pt;}
.x14{left:317.386667pt;}
.x8{left:375.626667pt;}
.x11{left:391.466667pt;}
.x2e{left:396.986655pt;}
.x9{left:413.786667pt;}
.x2b{left:427.466667pt;}
.x15{left:428.666667pt;}
.x23{left:430.426667pt;}
.x1b{left:435.226667pt;}
.xa{left:451.973333pt;}
.x12{left:488.613333pt;}
.xb{left:490.053333pt;}
.x16{left:494.533333pt;}
.x32{left:495.493333pt;}
.xc{left:528.213333pt;}
.xd{left:670.053322pt;}
.x4{left:688.053322pt;}
.x1d{left:704.053322pt;}
.x25{left:706.053322pt;}
.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; }
  