
    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_3183fd96a7319ff29ad2a0a4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b53ec4528654f9b03c6ebd71.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922363;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_2a94281a6f4cc5d1a0360484.woff')format("woff");}.ff3{font-family:ff3;line-height:1.080078;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_496d733914ad0de62514cf62.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b7b12134a25665329359d486.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_460e8d497c1954cd090a449c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_67ef7d94b92983d53be7b9ec.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_f88050282a7e3bdd2bd17a16.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1117f3a448a56e861758601c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_f64e13ef2a6860cb531d1062.woff')format("woff");}.ffb{font-family:ffb;line-height:0.687500;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_6d235d7e54f8963201f01909.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5832bc052232843ffd4faeaf.woff')format("woff");}.ffd{font-family:ffd;line-height:0.682617;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_cfb4543ac9f36235c6226ae5.woff')format("woff");}.ffe{font-family:ffe;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls1b{letter-spacing:-0.666000px;}
.ls25{letter-spacing:-0.612000px;}
.ls29{letter-spacing:-0.538800px;}
.ls28{letter-spacing:-0.486600px;}
.lsa{letter-spacing:-0.472800px;}
.ls2a{letter-spacing:-0.450600px;}
.ls19{letter-spacing:-0.413400px;}
.lse{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.269400px;}
.ls1d{letter-spacing:-0.259800px;}
.ls27{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.053400px;}
.ls9{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.008400px;}
.ls1{letter-spacing:0.020880px;}
.ls23{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.053400px;}
.ls18{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.496200px;}
.lsc{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.513600px;}
.ls1f{letter-spacing:0.613440px;}
.ls20{letter-spacing:0.828000px;}
.ls5{letter-spacing:4.500000px;}
.ls22{letter-spacing:14.645280px;}
.ls12{letter-spacing:14.669280px;}
.ls24{letter-spacing:19.216080px;}
.ls15{letter-spacing:19.620000px;}
.ls17{letter-spacing:40.500000px;}
.ls13{letter-spacing:72.120000px;}
.ls14{letter-spacing:72.144000px;}
.ls16{letter-spacing:80.630400px;}
.ls6{letter-spacing:80.654400px;}
.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;}
}
.ws15{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.453600px;}
.ws7{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.118488px;}
.ws9{word-spacing:-15.046800px;}
.ws17{word-spacing:-14.993400px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.886600px;}
.ws8{word-spacing:-14.733600px;}
.ws14{word-spacing:-14.680200px;}
.ws12{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.526600px;}
.ws10{word-spacing:-14.274000px;}
.ws3{word-spacing:-14.004000px;}
.ws4{word-spacing:-13.608000px;}
.ws1c{word-spacing:-12.556200px;}
.ws1d{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.060000px;}
.ws1e{word-spacing:-11.836200px;}
.ws18{word-spacing:-11.790600px;}
.ws1b{word-spacing:-11.700000px;}
.ws21{word-spacing:-11.609400px;}
.ws0{word-spacing:-11.587200px;}
.ws20{word-spacing:-11.521200px;}
.ws1f{word-spacing:-7.073400px;}
.wsc{word-spacing:0.000000px;}
.ws16{word-spacing:4.093800px;}
.ws19{word-spacing:11.773080px;}
.wsa{word-spacing:14.240640px;}
.ws13{word-spacing:18.067440px;}
.wsf{word-spacing:18.091440px;}
.ws5{word-spacing:34.400520px;}
.ws1a{word-spacing:99.154920px;}
._25{margin-left:-9.640080px;}
._1b{margin-left:-7.332720px;}
._19{margin-left:-3.286800px;}
._1a{margin-left:-2.213520px;}
._0{margin-left:-1.080000px;}
._1{width:1.044720px;}
._2{width:2.148240px;}
._8{width:3.522000px;}
._4{width:5.165280px;}
._11{width:6.760800px;}
._3{width:8.478000px;}
._5{width:9.947280px;}
._21{width:10.990920px;}
._6{width:12.096000px;}
._17{width:13.147200px;}
._26{width:14.182849px;}
._27{width:15.725999px;}
._d{width:16.937280px;}
._f{width:17.988481px;}
._e{width:19.102200px;}
._13{width:20.736600px;}
._14{width:21.872399px;}
._22{width:23.339042px;}
._7{width:25.110000px;}
._1e{width:26.413800px;}
._18{width:27.643200px;}
._1d{width:28.830000px;}
._12{width:30.089280px;}
._10{width:31.132081px;}
._c{width:32.363999px;}
._b{width:34.362000px;}
._9{width:36.334200px;}
._a{width:37.381080px;}
._1c{width:38.459402px;}
._20{width:40.756200px;}
._15{width:44.102940px;}
._16{width:45.554701px;}
._23{width:47.281741px;}
._1f{width:49.034220px;}
._24{width:57.787741px;}
._28{width:58.949473px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:60.473952px;}
.fs6{font-size:66.233376px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:71.992800px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yfd{bottom:3.060000px;}
.yf{bottom:3.600000px;}
.y58{bottom:3.659634px;}
.yd{bottom:3.780000px;}
.y145{bottom:4.140000px;}
.yf5{bottom:5.400000px;}
.yed{bottom:6.510000px;}
.yef{bottom:6.660000px;}
.yb{bottom:6.840000px;}
.y101{bottom:7.380000px;}
.y103{bottom:7.560000px;}
.yf2{bottom:7.740000px;}
.yfa{bottom:8.820000px;}
.yff{bottom:10.080000px;}
.yfc{bottom:16.920000px;}
.y9{bottom:17.100000px;}
.y11{bottom:30.060000px;}
.y6{bottom:48.780000px;}
.y57{bottom:55.494450px;}
.y56{bottom:57.714228px;}
.y8{bottom:59.220000px;}
.yab{bottom:111.096000px;}
.y87{bottom:111.816000px;}
.y34{bottom:116.856000px;}
.y143{bottom:122.436000px;}
.y86{bottom:129.096000px;}
.y54{bottom:129.816000px;}
.y33{bottom:134.136000px;}
.y142{bottom:136.116000px;}
.y11e{bottom:144.036000px;}
.y85{bottom:146.376000px;}
.y53{bottom:147.096000px;}
.y10b{bottom:149.616000px;}
.y141{bottom:149.976000px;}
.y32{bottom:151.230000px;}
.yd4{bottom:156.990000px;}
.y11d{bottom:161.310000px;}
.y84{bottom:163.650000px;}
.y52{bottom:164.370000px;}
.y10a{bottom:166.710000px;}
.yd3{bottom:174.270000px;}
.y140{bottom:177.510000px;}
.y11c{bottom:178.590000px;}
.y83{bottom:180.930000px;}
.y51{bottom:181.470000px;}
.y109{bottom:183.990000px;}
.y31{bottom:185.790000px;}
.y13f{bottom:191.370000px;}
.yd2{bottom:191.550000px;}
.y11b{bottom:195.870000px;}
.y82{bottom:198.210000px;}
.y50{bottom:198.750000px;}
.y108{bottom:201.270000px;}
.y30{bottom:203.070000px;}
.y13e{bottom:205.050000px;}
.yd1{bottom:208.650000px;}
.y81{bottom:215.310000px;}
.y4f{bottom:216.030000px;}
.y107{bottom:218.550000px;}
.y11a{bottom:218.910000px;}
.y2f{bottom:220.350000px;}
.yd0{bottom:227.010000px;}
.y80{bottom:232.590000px;}
.y13d{bottom:232.770000px;}
.y106{bottom:235.830000px;}
.y2e{bottom:237.450000px;}
.ycf{bottom:244.290000px;}
.y13c{bottom:246.450000px;}
.y7f{bottom:249.870000px;}
.y4e{bottom:250.590000px;}
.y119{bottom:253.650000px;}
.y2d{bottom:255.810000px;}
.y105{bottom:258.870000px;}
.y13b{bottom:260.310000px;}
.yce{bottom:261.570000px;}
.y7e{bottom:267.150000px;}
.y4d{bottom:267.870000px;}
.y2c{bottom:273.090000px;}
.y13a{bottom:274.170000px;}
.ycd{bottom:279.930000px;}
.y7d{bottom:284.430000px;}
.y4c{bottom:284.970000px;}
.y139{bottom:287.850000px;}
.y2b{bottom:290.370000px;}
.ycc{bottom:297.030000px;}
.y7c{bottom:301.710000px;}
.y2a{bottom:307.650000px;}
.y104{bottom:309.990000px;}
.ycb{bottom:314.310000px;}
.y138{bottom:315.570000px;}
.y7b{bottom:318.810000px;}
.y4b{bottom:319.530000px;}
.y29{bottom:326.010000px;}
.y102{bottom:328.350000px;}
.y137{bottom:329.250000px;}
.yca{bottom:331.590000px;}
.y7a{bottom:336.090000px;}
.y4a{bottom:336.855000px;}
.yaa{bottom:341.175000px;}
.y28{bottom:343.155000px;}
.y100{bottom:346.755000px;}
.yc9{bottom:349.995000px;}
.y49{bottom:354.135000px;}
.y136{bottom:357.015000px;}
.ya9{bottom:358.455000px;}
.y27{bottom:360.435000px;}
.yfe{bottom:364.935000px;}
.yc8{bottom:367.275000px;}
.y135{bottom:370.695000px;}
.y48{bottom:371.235000px;}
.y79{bottom:371.775000px;}
.ya8{bottom:375.735000px;}
.y26{bottom:377.715000px;}
.yc7{bottom:384.555000px;}
.yfb{bottom:385.815000px;}
.y47{bottom:388.515000px;}
.y78{bottom:389.055000px;}
.ya7{bottom:393.015000px;}
.y25{bottom:394.995000px;}
.y134{bottom:398.415000px;}
.yc6{bottom:401.655000px;}
.y46{bottom:405.795000px;}
.ya6{bottom:410.115000px;}
.y133{bottom:412.095000px;}
.yf9{bottom:414.255000px;}
.yc5{bottom:418.935000px;}
.y45{bottom:423.075000px;}
.y77{bottom:423.435000px;}
.y132{bottom:425.955000px;}
.ya5{bottom:428.475000px;}
.y24{bottom:430.635000px;}
.yc4{bottom:436.215000px;}
.y131{bottom:439.815000px;}
.y76{bottom:440.715000px;}
.ya4{bottom:445.755000px;}
.y23{bottom:447.735000px;}
.yf8{bottom:448.095000px;}
.yc3{bottom:453.495000px;}
.y44{bottom:457.635000px;}
.y75{bottom:457.995000px;}
.yf7{bottom:461.955000px;}
.ya3{bottom:463.035000px;}
.y22{bottom:465.015000px;}
.y130{bottom:467.355000px;}
.yc2{bottom:471.855000px;}
.y43{bottom:474.735000px;}
.y74{bottom:475.275000px;}
.ya2{bottom:480.315000px;}
.y21{bottom:482.295000px;}
.yc1{bottom:489.135000px;}
.y12f{bottom:490.935000px;}
.y42{bottom:492.015000px;}
.y73{bottom:492.555000px;}
.yf6{bottom:492.915000px;}
.ya1{bottom:497.595000px;}
.y20{bottom:499.575000px;}
.yc0{bottom:506.235000px;}
.yf4{bottom:509.115000px;}
.y41{bottom:509.295000px;}
.y72{bottom:509.655000px;}
.ya0{bottom:514.695000px;}
.y1f{bottom:516.855000px;}
.ybf{bottom:523.515000px;}
.yf3{bottom:525.315000px;}
.y12e{bottom:526.215000px;}
.y40{bottom:526.575000px;}
.y9f{bottom:533.055000px;}
.y1e{bottom:533.955000px;}
.ybe{bottom:541.875000px;}
.y118{bottom:542.595000px;}
.y12d{bottom:543.315000px;}
.yf1{bottom:543.855000px;}
.y71{bottom:544.215000px;}
.y9e{bottom:550.335000px;}
.y1d{bottom:551.235000px;}
.ybd{bottom:559.155000px;}
.y117{bottom:559.875000px;}
.y12c{bottom:560.595000px;}
.y3f{bottom:561.135000px;}
.y70{bottom:561.495000px;}
.yf0{bottom:562.395000px;}
.y9d{bottom:567.615000px;}
.y1c{bottom:574.275000px;}
.ybc{bottom:576.435000px;}
.y116{bottom:577.155000px;}
.y12b{bottom:577.875000px;}
.y3e{bottom:578.235000px;}
.y6f{bottom:578.775000px;}
.yee{bottom:579.855000px;}
.y9c{bottom:584.895000px;}
.y115{bottom:594.435000px;}
.y3d{bottom:595.515000px;}
.y6e{bottom:596.055000px;}
.yec{bottom:598.035000px;}
.y12a{bottom:604.185000px;}
.y1b{bottom:609.045000px;}
.y114{bottom:611.745000px;}
.ybb{bottom:611.925000px;}
.y3c{bottom:612.825000px;}
.y6d{bottom:613.185000px;}
.y9b{bottom:619.305000px;}
.y113{bottom:628.845000px;}
.yba{bottom:629.205000px;}
.yeb{bottom:629.745000px;}
.y3b{bottom:630.105000px;}
.y6c{bottom:634.965000px;}
.y9a{bottom:636.585000px;}
.y1a{bottom:638.925000px;}
.y129{bottom:639.465000px;}
.yea{bottom:643.425000px;}
.y112{bottom:646.125000px;}
.yb9{bottom:646.485000px;}
.y3a{bottom:653.145000px;}
.y99{bottom:653.865000px;}
.y19{bottom:654.045000px;}
.y128{bottom:656.745000px;}
.y6b{bottom:662.505000px;}
.y18{bottom:668.985000px;}
.y98{bottom:671.145000px;}
.y127{bottom:673.845000px;}
.y111{bottom:680.685000px;}
.y17{bottom:683.925000px;}
.y39{bottom:688.605000px;}
.yb8{bottom:689.145000px;}
.y126{bottom:691.125000px;}
.y97{bottom:692.745000px;}
.ye9{bottom:693.285000px;}
.y6a{bottom:697.965000px;}
.y16{bottom:699.045000px;}
.y38{bottom:705.885000px;}
.y125{bottom:708.405000px;}
.ye8{bottom:710.565000px;}
.y15{bottom:713.985000px;}
.y69{bottom:715.245000px;}
.y96{bottom:719.925000px;}
.y37{bottom:722.985000px;}
.y124{bottom:725.685000px;}
.ye7{bottom:727.845000px;}
.y14{bottom:728.925000px;}
.y110{bottom:732.345000px;}
.y68{bottom:732.525000px;}
.y36{bottom:740.265000px;}
.y123{bottom:742.965000px;}
.y13{bottom:744.045000px;}
.ye6{bottom:744.945000px;}
.y10f{bottom:749.625000px;}
.y67{bottom:749.805000px;}
.y35{bottom:757.545000px;}
.y12{bottom:758.985000px;}
.y122{bottom:760.245000px;}
.y66{bottom:767.085000px;}
.y121{bottom:777.345000px;}
.ye5{bottom:779.505000px;}
.y65{bottom:784.185000px;}
.ye4{bottom:796.785000px;}
.y120{bottom:800.565000px;}
.y64{bottom:801.465000px;}
.ye3{bottom:814.065000px;}
.y10{bottom:818.385000px;}
.y10e{bottom:818.745000px;}
.ye2{bottom:831.345000px;}
.y10d{bottom:835.845000px;}
.y63{bottom:836.025000px;}
.ye1{bottom:848.445000px;}
.y10c{bottom:853.125000px;}
.y62{bottom:853.305000px;}
.ye0{bottom:865.725000px;}
.y61{bottom:870.405000px;}
.ye{bottom:870.990000px;}
.yb7{bottom:871.890000px;}
.y60{bottom:887.730000px;}
.yb6{bottom:888.990000px;}
.yc{bottom:897.090000px;}
.ydf{bottom:900.330000px;}
.y5f{bottom:905.010000px;}
.yb5{bottom:906.270000px;}
.ya{bottom:914.370000px;}
.yde{bottom:917.610000px;}
.y95{bottom:920.490000px;}
.y11f{bottom:922.110000px;}
.y5e{bottom:922.290000px;}
.yb4{bottom:923.550000px;}
.ydd{bottom:934.710000px;}
.y94{bottom:937.770000px;}
.yb3{bottom:940.830000px;}
.y144{bottom:942.090000px;}
.y5d{bottom:947.850000px;}
.ydc{bottom:951.990000px;}
.y7{bottom:955.590000px;}
.y93{bottom:955.950000px;}
.yb2{bottom:958.110000px;}
.ydb{bottom:969.270000px;}
.y92{bottom:973.230000px;}
.yda{bottom:986.550000px;}
.y91{bottom:990.510000px;}
.yb1{bottom:992.490000px;}
.y90{bottom:1007.790000px;}
.yb0{bottom:1009.770000px;}
.yd9{bottom:1021.110000px;}
.y8f{bottom:1025.070000px;}
.yaf{bottom:1027.050000px;}
.yd8{bottom:1038.210000px;}
.y8e{bottom:1042.170000px;}
.yae{bottom:1044.330000px;}
.yd7{bottom:1055.490000px;}
.y8d{bottom:1059.450000px;}
.yd6{bottom:1072.770000px;}
.y8c{bottom:1077.810000px;}
.yad{bottom:1078.710000px;}
.y8b{bottom:1095.090000px;}
.yd5{bottom:1095.810000px;}
.yac{bottom:1095.990000px;}
.y8a{bottom:1112.370000px;}
.y89{bottom:1129.650000px;}
.y5{bottom:1144.440000px;}
.y88{bottom:1146.780000px;}
.y4{bottom:1160.280000px;}
.y59{bottom:1161.363852px;}
.y5c{bottom:1164.060000px;}
.y3{bottom:1176.120000px;}
.y5b{bottom:1181.340000px;}
.y2{bottom:1191.960000px;}
.y55{bottom:1192.320756px;}
.y5a{bottom:1204.920000px;}
.y1{bottom:1207.800000px;}
.h1a{height:16.200000px;}
.h8{height:17.280000px;}
.h16{height:17.316000px;}
.h17{height:17.460000px;}
.h10{height:17.998200px;}
.h1e{height:18.180000px;}
.h20{height:18.360000px;}
.h1f{height:18.396000px;}
.h19{height:18.540000px;}
.h1b{height:19.620000px;}
.h1d{height:20.880000px;}
.ha{height:26.100000px;}
.h1c{height:27.720000px;}
.h3{height:32.670352px;}
.h6{height:41.220000px;}
.hf{height:44.759274px;}
.h2{height:46.986328px;}
.h18{height:47.321367px;}
.h15{height:47.344922px;}
.h21{height:47.678906px;}
.he{height:47.983482px;}
.h11{height:48.761719px;}
.h12{height:49.583118px;}
.hb{height:52.596000px;}
.hc{height:54.421875px;}
.h14{height:58.621992px;}
.h9{height:58.651172px;}
.h13{height:61.423863px;}
.h7{height:65.010937px;}
.h5{height:125.296875px;}
.h4{height:129.420000px;}
.h22{height:246.450000px;}
.hd{height:1262.873700px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:23.997600px;}
.w5{width:74.376000px;}
.w8{width:74.520000px;}
.wa{width:75.240000px;}
.w7{width:88.740000px;}
.w6{width:170.130000px;}
.w9{width:175.350000px;}
.wb{width:721.770000px;}
.w2{width:733.650000px;}
.w3{width:892.410750px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:8.130000px;}
.x38{left:10.080000px;}
.x35{left:12.420000px;}
.x28{left:13.530000px;}
.x29{left:15.300000px;}
.x2e{left:18.000000px;}
.x2a{left:19.980000px;}
.x30{left:21.060000px;}
.x37{left:23.580000px;}
.x2b{left:25.590000px;}
.x2f{left:27.210000px;}
.x2c{left:28.980000px;}
.x2d{left:31.530000px;}
.x31{left:35.280000px;}
.x8{left:46.656000px;}
.x36{left:48.240000px;}
.xa{left:58.896000px;}
.x7{left:79.740000px;}
.xe{left:85.710000px;}
.xf{left:95.616000px;}
.x11{left:106.236000px;}
.xd{left:111.990000px;}
.x3a{left:114.156000px;}
.x20{left:127.656000px;}
.x1a{left:138.996000px;}
.x18{left:149.436000px;}
.xb{left:162.570000px;}
.x1b{left:165.990000px;}
.x19{left:173.550000px;}
.x10{left:204.330000px;}
.x6{left:217.470000px;}
.x9{left:229.755000px;}
.x17{left:259.230000px;}
.x3f{left:260.535000px;}
.xc{left:293.835000px;}
.x12{left:455.475000px;}
.x3e{left:458.535000px;}
.x24{left:465.195000px;}
.x32{left:469.185000px;}
.x14{left:476.745000px;}
.x1e{left:482.505000px;}
.x1c{left:509.505000px;}
.x3b{left:531.465000px;}
.x1d{left:536.505000px;}
.x21{left:537.945000px;}
.x26{left:539.565000px;}
.x33{left:543.705000px;}
.x1f{left:546.765000px;}
.x39{left:549.465000px;}
.x23{left:559.545000px;}
.x13{left:565.125000px;}
.x3c{left:572.865000px;}
.x3d{left:590.325000px;}
.x22{left:614.445000px;}
.x5{left:662.370000px;}
.x2{left:668.130000px;}
.x1{left:671.370000px;}
.x4{left:699.090000px;}
.x27{left:709.710000px;}
.x34{left:719.070000px;}
.x3{left:730.050000px;}
.x15{left:770.322960px;}
.x16{left:774.204990px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls1b{letter-spacing:-0.592000pt;}
.ls25{letter-spacing:-0.544000pt;}
.ls29{letter-spacing:-0.478933pt;}
.ls28{letter-spacing:-0.432533pt;}
.lsa{letter-spacing:-0.420267pt;}
.ls2a{letter-spacing:-0.400533pt;}
.ls19{letter-spacing:-0.367467pt;}
.lse{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.239467pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls27{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.047467pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.007467pt;}
.ls1{letter-spacing:0.018560pt;}
.ls23{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.047467pt;}
.ls18{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.441067pt;}
.lsc{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.456533pt;}
.ls1f{letter-spacing:0.545280pt;}
.ls20{letter-spacing:0.736000pt;}
.ls5{letter-spacing:4.000000pt;}
.ls22{letter-spacing:13.018027pt;}
.ls12{letter-spacing:13.039360pt;}
.ls24{letter-spacing:17.080960pt;}
.ls15{letter-spacing:17.440000pt;}
.ls17{letter-spacing:36.000000pt;}
.ls13{letter-spacing:64.106667pt;}
.ls14{letter-spacing:64.128000pt;}
.ls16{letter-spacing:71.671467pt;}
.ls6{letter-spacing:71.692800pt;}
.ws15{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.736533pt;}
.ws7{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.438656pt;}
.ws9{word-spacing:-13.374933pt;}
.ws17{word-spacing:-13.327467pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.232533pt;}
.ws8{word-spacing:-13.096533pt;}
.ws14{word-spacing:-13.049067pt;}
.ws12{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.912533pt;}
.ws10{word-spacing:-12.688000pt;}
.ws3{word-spacing:-12.448000pt;}
.ws4{word-spacing:-12.096000pt;}
.ws1c{word-spacing:-11.161067pt;}
.ws1d{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws1e{word-spacing:-10.521067pt;}
.ws18{word-spacing:-10.480533pt;}
.ws1b{word-spacing:-10.400000pt;}
.ws21{word-spacing:-10.319467pt;}
.ws0{word-spacing:-10.299733pt;}
.ws20{word-spacing:-10.241067pt;}
.ws1f{word-spacing:-6.287467pt;}
.wsc{word-spacing:0.000000pt;}
.ws16{word-spacing:3.638934pt;}
.ws19{word-spacing:10.464960pt;}
.wsa{word-spacing:12.658347pt;}
.ws13{word-spacing:16.059947pt;}
.wsf{word-spacing:16.081280pt;}
.ws5{word-spacing:30.578240pt;}
.ws1a{word-spacing:88.137706pt;}
._25{margin-left:-8.568960pt;}
._1b{margin-left:-6.517973pt;}
._19{margin-left:-2.921600pt;}
._1a{margin-left:-1.967573pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.928640pt;}
._2{width:1.909547pt;}
._8{width:3.130667pt;}
._4{width:4.591360pt;}
._11{width:6.009600pt;}
._3{width:7.536000pt;}
._5{width:8.842027pt;}
._21{width:9.769707pt;}
._6{width:10.752000pt;}
._17{width:11.686400pt;}
._26{width:12.606977pt;}
._27{width:13.978666pt;}
._d{width:15.055360pt;}
._f{width:15.989761pt;}
._e{width:16.979733pt;}
._13{width:18.432534pt;}
._14{width:19.442132pt;}
._22{width:20.745815pt;}
._7{width:22.320000pt;}
._1e{width:23.478934pt;}
._18{width:24.571733pt;}
._1d{width:25.626667pt;}
._12{width:26.746027pt;}
._10{width:27.672961pt;}
._c{width:28.767999pt;}
._b{width:30.544000pt;}
._9{width:32.297066pt;}
._a{width:33.227626pt;}
._1c{width:34.186135pt;}
._20{width:36.227734pt;}
._15{width:39.202613pt;}
._16{width:40.493067pt;}
._23{width:42.028214pt;}
._1f{width:43.585973pt;}
._24{width:51.366881pt;}
._28{width:52.399532pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:53.754624pt;}
.fs6{font-size:58.874112pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:63.993600pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:2.720000pt;}
.yf{bottom:3.200000pt;}
.y58{bottom:3.253008pt;}
.yd{bottom:3.360000pt;}
.y145{bottom:3.680000pt;}
.yf5{bottom:4.800000pt;}
.yed{bottom:5.786667pt;}
.yef{bottom:5.920000pt;}
.yb{bottom:6.080000pt;}
.y101{bottom:6.560000pt;}
.y103{bottom:6.720000pt;}
.yf2{bottom:6.880000pt;}
.yfa{bottom:7.840000pt;}
.yff{bottom:8.960000pt;}
.yfc{bottom:15.040000pt;}
.y9{bottom:15.200000pt;}
.y11{bottom:26.720000pt;}
.y6{bottom:43.360000pt;}
.y57{bottom:49.328400pt;}
.y56{bottom:51.301536pt;}
.y8{bottom:52.640000pt;}
.yab{bottom:98.752000pt;}
.y87{bottom:99.392000pt;}
.y34{bottom:103.872000pt;}
.y143{bottom:108.832000pt;}
.y86{bottom:114.752000pt;}
.y54{bottom:115.392000pt;}
.y33{bottom:119.232000pt;}
.y142{bottom:120.992000pt;}
.y11e{bottom:128.032000pt;}
.y85{bottom:130.112000pt;}
.y53{bottom:130.752000pt;}
.y10b{bottom:132.992000pt;}
.y141{bottom:133.312000pt;}
.y32{bottom:134.426667pt;}
.yd4{bottom:139.546667pt;}
.y11d{bottom:143.386667pt;}
.y84{bottom:145.466667pt;}
.y52{bottom:146.106667pt;}
.y10a{bottom:148.186667pt;}
.yd3{bottom:154.906667pt;}
.y140{bottom:157.786667pt;}
.y11c{bottom:158.746667pt;}
.y83{bottom:160.826667pt;}
.y51{bottom:161.306667pt;}
.y109{bottom:163.546667pt;}
.y31{bottom:165.146667pt;}
.y13f{bottom:170.106667pt;}
.yd2{bottom:170.266667pt;}
.y11b{bottom:174.106667pt;}
.y82{bottom:176.186667pt;}
.y50{bottom:176.666667pt;}
.y108{bottom:178.906667pt;}
.y30{bottom:180.506667pt;}
.y13e{bottom:182.266667pt;}
.yd1{bottom:185.466667pt;}
.y81{bottom:191.386667pt;}
.y4f{bottom:192.026667pt;}
.y107{bottom:194.266667pt;}
.y11a{bottom:194.586667pt;}
.y2f{bottom:195.866667pt;}
.yd0{bottom:201.786667pt;}
.y80{bottom:206.746667pt;}
.y13d{bottom:206.906667pt;}
.y106{bottom:209.626667pt;}
.y2e{bottom:211.066667pt;}
.ycf{bottom:217.146667pt;}
.y13c{bottom:219.066667pt;}
.y7f{bottom:222.106667pt;}
.y4e{bottom:222.746667pt;}
.y119{bottom:225.466667pt;}
.y2d{bottom:227.386667pt;}
.y105{bottom:230.106667pt;}
.y13b{bottom:231.386667pt;}
.yce{bottom:232.506667pt;}
.y7e{bottom:237.466667pt;}
.y4d{bottom:238.106667pt;}
.y2c{bottom:242.746667pt;}
.y13a{bottom:243.706667pt;}
.ycd{bottom:248.826667pt;}
.y7d{bottom:252.826667pt;}
.y4c{bottom:253.306667pt;}
.y139{bottom:255.866667pt;}
.y2b{bottom:258.106667pt;}
.ycc{bottom:264.026667pt;}
.y7c{bottom:268.186667pt;}
.y2a{bottom:273.466667pt;}
.y104{bottom:275.546667pt;}
.ycb{bottom:279.386667pt;}
.y138{bottom:280.506667pt;}
.y7b{bottom:283.386667pt;}
.y4b{bottom:284.026667pt;}
.y29{bottom:289.786667pt;}
.y102{bottom:291.866667pt;}
.y137{bottom:292.666667pt;}
.yca{bottom:294.746667pt;}
.y7a{bottom:298.746667pt;}
.y4a{bottom:299.426667pt;}
.yaa{bottom:303.266667pt;}
.y28{bottom:305.026667pt;}
.y100{bottom:308.226667pt;}
.yc9{bottom:311.106667pt;}
.y49{bottom:314.786667pt;}
.y136{bottom:317.346667pt;}
.ya9{bottom:318.626667pt;}
.y27{bottom:320.386667pt;}
.yfe{bottom:324.386667pt;}
.yc8{bottom:326.466667pt;}
.y135{bottom:329.506667pt;}
.y48{bottom:329.986667pt;}
.y79{bottom:330.466667pt;}
.ya8{bottom:333.986667pt;}
.y26{bottom:335.746667pt;}
.yc7{bottom:341.826667pt;}
.yfb{bottom:342.946667pt;}
.y47{bottom:345.346667pt;}
.y78{bottom:345.826667pt;}
.ya7{bottom:349.346667pt;}
.y25{bottom:351.106667pt;}
.y134{bottom:354.146667pt;}
.yc6{bottom:357.026667pt;}
.y46{bottom:360.706667pt;}
.ya6{bottom:364.546667pt;}
.y133{bottom:366.306667pt;}
.yf9{bottom:368.226667pt;}
.yc5{bottom:372.386667pt;}
.y45{bottom:376.066667pt;}
.y77{bottom:376.386667pt;}
.y132{bottom:378.626667pt;}
.ya5{bottom:380.866667pt;}
.y24{bottom:382.786667pt;}
.yc4{bottom:387.746667pt;}
.y131{bottom:390.946667pt;}
.y76{bottom:391.746667pt;}
.ya4{bottom:396.226667pt;}
.y23{bottom:397.986667pt;}
.yf8{bottom:398.306667pt;}
.yc3{bottom:403.106667pt;}
.y44{bottom:406.786667pt;}
.y75{bottom:407.106667pt;}
.yf7{bottom:410.626667pt;}
.ya3{bottom:411.586667pt;}
.y22{bottom:413.346667pt;}
.y130{bottom:415.426667pt;}
.yc2{bottom:419.426667pt;}
.y43{bottom:421.986667pt;}
.y74{bottom:422.466667pt;}
.ya2{bottom:426.946667pt;}
.y21{bottom:428.706667pt;}
.yc1{bottom:434.786667pt;}
.y12f{bottom:436.386667pt;}
.y42{bottom:437.346667pt;}
.y73{bottom:437.826667pt;}
.yf6{bottom:438.146667pt;}
.ya1{bottom:442.306667pt;}
.y20{bottom:444.066667pt;}
.yc0{bottom:449.986667pt;}
.yf4{bottom:452.546667pt;}
.y41{bottom:452.706667pt;}
.y72{bottom:453.026667pt;}
.ya0{bottom:457.506667pt;}
.y1f{bottom:459.426667pt;}
.ybf{bottom:465.346667pt;}
.yf3{bottom:466.946667pt;}
.y12e{bottom:467.746667pt;}
.y40{bottom:468.066667pt;}
.y9f{bottom:473.826667pt;}
.y1e{bottom:474.626667pt;}
.ybe{bottom:481.666667pt;}
.y118{bottom:482.306667pt;}
.y12d{bottom:482.946667pt;}
.yf1{bottom:483.426667pt;}
.y71{bottom:483.746667pt;}
.y9e{bottom:489.186667pt;}
.y1d{bottom:489.986667pt;}
.ybd{bottom:497.026667pt;}
.y117{bottom:497.666667pt;}
.y12c{bottom:498.306667pt;}
.y3f{bottom:498.786667pt;}
.y70{bottom:499.106667pt;}
.yf0{bottom:499.906667pt;}
.y9d{bottom:504.546667pt;}
.y1c{bottom:510.466667pt;}
.ybc{bottom:512.386667pt;}
.y116{bottom:513.026667pt;}
.y12b{bottom:513.666667pt;}
.y3e{bottom:513.986667pt;}
.y6f{bottom:514.466667pt;}
.yee{bottom:515.426667pt;}
.y9c{bottom:519.906667pt;}
.y115{bottom:528.386667pt;}
.y3d{bottom:529.346667pt;}
.y6e{bottom:529.826667pt;}
.yec{bottom:531.586667pt;}
.y12a{bottom:537.053333pt;}
.y1b{bottom:541.373333pt;}
.y114{bottom:543.773333pt;}
.ybb{bottom:543.933333pt;}
.y3c{bottom:544.733333pt;}
.y6d{bottom:545.053333pt;}
.y9b{bottom:550.493333pt;}
.y113{bottom:558.973333pt;}
.yba{bottom:559.293333pt;}
.yeb{bottom:559.773333pt;}
.y3b{bottom:560.093333pt;}
.y6c{bottom:564.413333pt;}
.y9a{bottom:565.853333pt;}
.y1a{bottom:567.933333pt;}
.y129{bottom:568.413333pt;}
.yea{bottom:571.933333pt;}
.y112{bottom:574.333333pt;}
.yb9{bottom:574.653333pt;}
.y3a{bottom:580.573333pt;}
.y99{bottom:581.213333pt;}
.y19{bottom:581.373333pt;}
.y128{bottom:583.773333pt;}
.y6b{bottom:588.893333pt;}
.y18{bottom:594.653333pt;}
.y98{bottom:596.573333pt;}
.y127{bottom:598.973333pt;}
.y111{bottom:605.053333pt;}
.y17{bottom:607.933333pt;}
.y39{bottom:612.093333pt;}
.yb8{bottom:612.573333pt;}
.y126{bottom:614.333333pt;}
.y97{bottom:615.773333pt;}
.ye9{bottom:616.253333pt;}
.y6a{bottom:620.413333pt;}
.y16{bottom:621.373333pt;}
.y38{bottom:627.453333pt;}
.y125{bottom:629.693333pt;}
.ye8{bottom:631.613333pt;}
.y15{bottom:634.653333pt;}
.y69{bottom:635.773333pt;}
.y96{bottom:639.933333pt;}
.y37{bottom:642.653333pt;}
.y124{bottom:645.053333pt;}
.ye7{bottom:646.973333pt;}
.y14{bottom:647.933333pt;}
.y110{bottom:650.973333pt;}
.y68{bottom:651.133333pt;}
.y36{bottom:658.013333pt;}
.y123{bottom:660.413333pt;}
.y13{bottom:661.373333pt;}
.ye6{bottom:662.173333pt;}
.y10f{bottom:666.333333pt;}
.y67{bottom:666.493333pt;}
.y35{bottom:673.373333pt;}
.y12{bottom:674.653333pt;}
.y122{bottom:675.773333pt;}
.y66{bottom:681.853333pt;}
.y121{bottom:690.973333pt;}
.ye5{bottom:692.893333pt;}
.y65{bottom:697.053333pt;}
.ye4{bottom:708.253333pt;}
.y120{bottom:711.613333pt;}
.y64{bottom:712.413333pt;}
.ye3{bottom:723.613333pt;}
.y10{bottom:727.453333pt;}
.y10e{bottom:727.773333pt;}
.ye2{bottom:738.973333pt;}
.y10d{bottom:742.973333pt;}
.y63{bottom:743.133333pt;}
.ye1{bottom:754.173333pt;}
.y10c{bottom:758.333333pt;}
.y62{bottom:758.493333pt;}
.ye0{bottom:769.533333pt;}
.y61{bottom:773.693333pt;}
.ye{bottom:774.213333pt;}
.yb7{bottom:775.013333pt;}
.y60{bottom:789.093333pt;}
.yb6{bottom:790.213333pt;}
.yc{bottom:797.413333pt;}
.ydf{bottom:800.293333pt;}
.y5f{bottom:804.453333pt;}
.yb5{bottom:805.573333pt;}
.ya{bottom:812.773333pt;}
.yde{bottom:815.653333pt;}
.y95{bottom:818.213333pt;}
.y11f{bottom:819.653333pt;}
.y5e{bottom:819.813333pt;}
.yb4{bottom:820.933333pt;}
.ydd{bottom:830.853333pt;}
.y94{bottom:833.573333pt;}
.yb3{bottom:836.293333pt;}
.y144{bottom:837.413333pt;}
.y5d{bottom:842.533333pt;}
.ydc{bottom:846.213333pt;}
.y7{bottom:849.413333pt;}
.y93{bottom:849.733333pt;}
.yb2{bottom:851.653333pt;}
.ydb{bottom:861.573333pt;}
.y92{bottom:865.093333pt;}
.yda{bottom:876.933333pt;}
.y91{bottom:880.453333pt;}
.yb1{bottom:882.213333pt;}
.y90{bottom:895.813333pt;}
.yb0{bottom:897.573333pt;}
.yd9{bottom:907.653333pt;}
.y8f{bottom:911.173333pt;}
.yaf{bottom:912.933333pt;}
.yd8{bottom:922.853333pt;}
.y8e{bottom:926.373333pt;}
.yae{bottom:928.293333pt;}
.yd7{bottom:938.213333pt;}
.y8d{bottom:941.733333pt;}
.yd6{bottom:953.573333pt;}
.y8c{bottom:958.053333pt;}
.yad{bottom:958.853333pt;}
.y8b{bottom:973.413333pt;}
.yd5{bottom:974.053333pt;}
.yac{bottom:974.213333pt;}
.y8a{bottom:988.773333pt;}
.y89{bottom:1004.133333pt;}
.y5{bottom:1017.280000pt;}
.y88{bottom:1019.360000pt;}
.y4{bottom:1031.360000pt;}
.y59{bottom:1032.323424pt;}
.y5c{bottom:1034.720000pt;}
.y3{bottom:1045.440000pt;}
.y5b{bottom:1050.080000pt;}
.y2{bottom:1059.520000pt;}
.y55{bottom:1059.840672pt;}
.y5a{bottom:1071.040000pt;}
.y1{bottom:1073.600000pt;}
.h1a{height:14.400000pt;}
.h8{height:15.360000pt;}
.h16{height:15.392000pt;}
.h17{height:15.520000pt;}
.h10{height:15.998400pt;}
.h1e{height:16.160000pt;}
.h20{height:16.320000pt;}
.h1f{height:16.352000pt;}
.h19{height:16.480000pt;}
.h1b{height:17.440000pt;}
.h1d{height:18.560000pt;}
.ha{height:23.200000pt;}
.h1c{height:24.640000pt;}
.h3{height:29.040312pt;}
.h6{height:36.640000pt;}
.hf{height:39.786021pt;}
.h2{height:41.765625pt;}
.h18{height:42.063437pt;}
.h15{height:42.084375pt;}
.h21{height:42.381250pt;}
.he{height:42.651984pt;}
.h11{height:43.343750pt;}
.h12{height:44.073883pt;}
.hb{height:46.752000pt;}
.hc{height:48.375000pt;}
.h14{height:52.108438pt;}
.h9{height:52.134375pt;}
.h13{height:54.598989pt;}
.h7{height:57.787500pt;}
.h5{height:111.375000pt;}
.h4{height:115.040000pt;}
.h22{height:219.066667pt;}
.hd{height:1122.554400pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:21.331200pt;}
.w5{width:66.112000pt;}
.w8{width:66.240000pt;}
.wa{width:66.880000pt;}
.w7{width:78.880000pt;}
.w6{width:151.226667pt;}
.w9{width:155.866667pt;}
.wb{width:641.573333pt;}
.w2{width:652.133333pt;}
.w3{width:793.254000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.226667pt;}
.x38{left:8.960000pt;}
.x35{left:11.040000pt;}
.x28{left:12.026667pt;}
.x29{left:13.600000pt;}
.x2e{left:16.000000pt;}
.x2a{left:17.760000pt;}
.x30{left:18.720000pt;}
.x37{left:20.960000pt;}
.x2b{left:22.746667pt;}
.x2f{left:24.186667pt;}
.x2c{left:25.760000pt;}
.x2d{left:28.026667pt;}
.x31{left:31.360000pt;}
.x8{left:41.472000pt;}
.x36{left:42.880000pt;}
.xa{left:52.352000pt;}
.x7{left:70.880000pt;}
.xe{left:76.186667pt;}
.xf{left:84.992000pt;}
.x11{left:94.432000pt;}
.xd{left:99.546667pt;}
.x3a{left:101.472000pt;}
.x20{left:113.472000pt;}
.x1a{left:123.552000pt;}
.x18{left:132.832000pt;}
.xb{left:144.506667pt;}
.x1b{left:147.546667pt;}
.x19{left:154.266667pt;}
.x10{left:181.626667pt;}
.x6{left:193.306667pt;}
.x9{left:204.226667pt;}
.x17{left:230.426667pt;}
.x3f{left:231.586667pt;}
.xc{left:261.186667pt;}
.x12{left:404.866667pt;}
.x3e{left:407.586667pt;}
.x24{left:413.506667pt;}
.x32{left:417.053333pt;}
.x14{left:423.773333pt;}
.x1e{left:428.893333pt;}
.x1c{left:452.893333pt;}
.x3b{left:472.413333pt;}
.x1d{left:476.893333pt;}
.x21{left:478.173333pt;}
.x26{left:479.613333pt;}
.x33{left:483.293333pt;}
.x1f{left:486.013333pt;}
.x39{left:488.413333pt;}
.x23{left:497.373333pt;}
.x13{left:502.333333pt;}
.x3c{left:509.213333pt;}
.x3d{left:524.733333pt;}
.x22{left:546.173333pt;}
.x5{left:588.773333pt;}
.x2{left:593.893333pt;}
.x1{left:596.773333pt;}
.x4{left:621.413333pt;}
.x27{left:630.853333pt;}
.x34{left:639.173333pt;}
.x3{left:648.933333pt;}
.x15{left:684.731520pt;}
.x16{left:688.182213pt;}
}




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