
    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_e45628b8726344035c3b7659.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_db40490cc3355d471c5c6c81.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5737a4ddb5afe1f285a72338.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.838379;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_20b13dcd9071df90795b5c91.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_87bb8262683e3cd6325345ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_77fc57b8f85c1fc894696ad9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_3633aece528c8546a2aa516d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_6b751428be5c46d04189225d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_1a212557eb91380cdb17d006.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_448646ab39d9e819fcdf5afe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905000;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_e942e417e1266ea790a1d58a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.833496;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_74915f5b39af84e8c0ef2ca3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.664062;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_93c556dcb54ed41bd3cd0bce.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_9df0b2ee4471ef0535d5b086.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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);}
.v4{vertical-align:-109.440000px;}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-30.240000px;}
.v5{vertical-align:-27.359940px;}
.v6{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1d{letter-spacing:-3.888000px;}
.lsd{letter-spacing:-2.592000px;}
.ls1c{letter-spacing:-0.475200px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000540px;}
.ls27{letter-spacing:0.000600px;}
.ls19{letter-spacing:0.060060px;}
.ls7{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.072720px;}
.ls24{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.105120px;}
.ls2a{letter-spacing:0.118200px;}
.ls28{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.149760px;}
.ls22{letter-spacing:0.237600px;}
.ls1f{letter-spacing:0.240000px;}
.ls2b{letter-spacing:0.250560px;}
.lsa{letter-spacing:0.274260px;}
.ls14{letter-spacing:0.280080px;}
.ls1a{letter-spacing:0.531360px;}
.ls21{letter-spacing:0.570240px;}
.ls16{letter-spacing:0.641280px;}
.ls9{letter-spacing:0.676680px;}
.ls18{letter-spacing:0.678600px;}
.ls20{letter-spacing:0.738720px;}
.ls15{letter-spacing:0.755280px;}
.lsc{letter-spacing:0.809880px;}
.ls12{letter-spacing:0.895680px;}
.ls26{letter-spacing:1.107600px;}
.ls29{letter-spacing:1.266600px;}
.ls8{letter-spacing:1.792800px;}
.lsf{letter-spacing:2.102400px;}
.ls23{letter-spacing:3.834600px;}
.ls1e{letter-spacing:4.862400px;}
.lse{letter-spacing:11.186400px;}
.ls0{letter-spacing:11.586240px;}
.ls11{letter-spacing:13.503600px;}
.ls2{letter-spacing:38.016000px;}
.ls1b{letter-spacing:168.004380px;}
.ls4{letter-spacing:188.939700px;}
.ls6{letter-spacing:192.683700px;}
.ls5{letter-spacing:194.699700px;}
.ls10{letter-spacing:196.286580px;}
.ls17{letter-spacing:1424.603340px;}
.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;}
}
.wse{word-spacing:-28.416960px;}
.wsd{word-spacing:-27.846720px;}
.ws2{word-spacing:-20.016000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.128000px;}
.ws3{word-spacing:-15.408000px;}
.ws8{word-spacing:-14.760000px;}
.ws4{word-spacing:-13.210560px;}
.ws6{word-spacing:-12.735360px;}
.wsb{word-spacing:-12.117600px;}
.ws5{word-spacing:-11.880000px;}
.ws7{word-spacing:-10.808640px;}
.wsa{word-spacing:-10.458720px;}
.wsc{word-spacing:-7.200000px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-17.400600px;}
._3{margin-left:-14.940000px;}
._5{margin-left:-11.574240px;}
._32{margin-left:-9.843060px;}
._31{margin-left:-7.920000px;}
._1{margin-left:-6.095520px;}
._4{margin-left:-4.354560px;}
._6{margin-left:-2.514240px;}
._2{margin-left:-1.195200px;}
._0{width:1.195200px;}
._36{width:2.404800px;}
._3d{width:3.434400px;}
._1b{width:4.605600px;}
._33{width:5.697600px;}
._38{width:7.118400px;}
._23{width:8.153460px;}
._39{width:9.504000px;}
._37{width:11.088000px;}
._3b{width:13.026240px;}
._3c{width:14.616000px;}
._3e{width:15.912000px;}
._3a{width:17.136000px;}
._41{width:18.720000px;}
._5f{width:20.304000px;}
._7{width:21.474600px;}
._40{width:22.714800px;}
._25{width:23.948340px;}
._3f{width:25.011660px;}
._46{width:26.900340px;}
._4e{width:28.021920px;}
._4c{width:29.376000px;}
._4b{width:31.212960px;}
._14{width:32.291040px;}
._34{width:34.250640px;}
._2d{width:35.447340px;}
._53{width:37.224000px;}
._42{width:38.280660px;}
._e{width:39.479340px;}
._54{width:40.824000px;}
._55{width:42.840000px;}
._59{width:44.811660px;}
._28{width:46.052340px;}
._2c{width:47.399340px;}
._4d{width:48.449400px;}
._11{width:49.487340px;}
._51{width:50.639340px;}
._29{width:55.555140px;}
._30{width:59.423340px;}
._48{width:60.707160px;}
._58{width:64.007460px;}
._52{width:67.104000px;}
._57{width:68.832000px;}
._16{width:73.714200px;}
._13{width:77.241540px;}
._2e{width:79.367340px;}
._5c{width:81.455340px;}
._2f{width:83.722740px;}
._2a{width:89.820660px;}
._27{width:91.391340px;}
._1e{width:94.282800px;}
._5d{width:97.439340px;}
._17{width:102.935040px;}
._5b{width:104.554800px;}
._5a{width:108.501600px;}
._12{width:110.565540px;}
._1d{width:115.185540px;}
._26{width:119.769840px;}
._56{width:121.718160px;}
._15{width:123.249540px;}
._21{width:127.281540px;}
._2b{width:128.359140px;}
._18{width:135.740100px;}
._19{width:145.054200px;}
._1f{width:147.297540px;}
._5e{width:149.999940px;}
._22{width:153.778200px;}
._1c{width:155.217540px;}
._20{width:158.218800px;}
._1a{width:159.249540px;}
._44{width:168.004380px;}
._50{width:172.793820px;}
._4a{width:174.124380px;}
._24{width:175.459740px;}
._10{width:177.524940px;}
._c{width:181.355100px;}
._35{width:192.683700px;}
._8{width:194.401200px;}
._f{width:195.595200px;}
._45{width:200.819700px;}
._4f{width:355.470060px;}
._b{width:406.800000px;}
._a{width:778.439400px;}
._47{width:1028.020560px;}
._49{width:1030.692360px;}
._43{width:1064.020560px;}
._d{width:1100.020560px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc5{color:rgb(51,51,51);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:28.800000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:47.520000px;}
.fs1{font-size:53.280000px;}
.fs9{font-size:59.040000px;}
.fs7{font-size:64.800000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fsd{font-size:83.520000px;}
.fs5{font-size:89.280000px;}
.fs6{font-size:95.040000px;}
.fs0{font-size:119.520000px;}
.fs4{font-size:149.760000px;}
.fsb{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:4.320000px;}
.y32{bottom:35.100000px;}
.y35{bottom:49.140000px;}
.y1{bottom:54.000030px;}
.yc4{bottom:75.419985px;}
.y13c{bottom:76.500000px;}
.y239{bottom:77.939985px;}
.y1cc{bottom:78.300000px;}
.y212{bottom:78.660000px;}
.y1ae{bottom:80.820000px;}
.y159{bottom:81.540000px;}
.yc7{bottom:82.260000px;}
.y78{bottom:82.620000px;}
.y192{bottom:83.340000px;}
.y142{bottom:83.700000px;}
.yfa{bottom:84.060000px;}
.y22b{bottom:84.419985px;}
.y33{bottom:84.780030px;}
.y1c1{bottom:85.140000px;}
.ye7{bottom:88.740000px;}
.y141{bottom:89.100000px;}
.yc3{bottom:90.899985px;}
.y126{bottom:91.979985px;}
.y138{bottom:93.060000px;}
.y89{bottom:94.140000px;}
.y167{bottom:97.019970px;}
.y20f{bottom:99.539970px;}
.y1d6{bottom:99.899970px;}
.y13b{bottom:100.259970px;}
.y56{bottom:101.339970px;}
.y140{bottom:103.139970px;}
.ya9{bottom:103.859970px;}
.y127{bottom:104.579970px;}
.y1f0{bottom:105.659970px;}
.y10a{bottom:106.379970px;}
.y166{bottom:108.179970px;}
.y238{bottom:108.899970px;}
.y1cb{bottom:109.619970px;}
.yc2{bottom:109.979970px;}
.y13a{bottom:111.419970px;}
.y31{bottom:111.779970px;}
.y158{bottom:112.499970px;}
.yc6{bottom:112.859970px;}
.y77{bottom:113.579970px;}
.y22a{bottom:115.379970px;}
.y1c0{bottom:116.099970px;}
.y13f{bottom:116.819970px;}
.yf9{bottom:118.619970px;}
.ye6{bottom:119.699970px;}
.yc1{bottom:123.659970px;}
.y137{bottom:124.019970px;}
.y1a6{bottom:124.739970px;}
.yc5{bottom:125.099970px;}
.y196{bottom:127.979970px;}
.y12d{bottom:130.139970px;}
.y20e{bottom:130.499970px;}
.y165{bottom:131.939970px;}
.y55{bottom:132.299970px;}
.y30{bottom:132.659970px;}
.y1d5{bottom:133.019970px;}
.y17d{bottom:134.099970px;}
.ya8{bottom:134.819970px;}
.y191{bottom:135.179970px;}
.y109{bottom:135.539970px;}
.y1ef{bottom:136.619970px;}
.y88{bottom:137.699970px;}
.y237{bottom:139.859970px;}
.y13e{bottom:140.579970px;}
.y157{bottom:143.459970px;}
.y1aa{bottom:143.819970px;}
.y76{bottom:144.539970px;}
.y229{bottom:146.699970px;}
.y1bf{bottom:147.419970px;}
.yf8{bottom:149.939970px;}
.ye5{bottom:151.019970px;}
.y13d{bottom:152.819970px;}
.y2f{bottom:153.179970px;}
.y136{bottom:154.979970px;}
.y162{bottom:156.059970px;}
.y125{bottom:157.139970px;}
.y12c{bottom:159.299970px;}
.yc0{bottom:161.099970px;}
.y20d{bottom:161.819970px;}
.y54{bottom:163.259970px;}
.y108{bottom:164.339970px;}
.y17c{bottom:165.419970px;}
.ya7{bottom:165.779970px;}
.y1ee{bottom:167.579970px;}
.y1ad{bottom:168.299970px;}
.y236{bottom:170.819970px;}
.y164{bottom:171.179970px;}
.y1ac{bottom:171.539970px;}
.ybf{bottom:173.699970px;}
.y2e{bottom:174.059970px;}
.y156{bottom:174.779970px;}
.y75{bottom:175.499970px;}
.y228{bottom:177.659970px;}
.y1be{bottom:178.379970px;}
.y190{bottom:178.739970px;}
.y87{bottom:180.899970px;}
.ye4{bottom:181.979970px;}
.y135{bottom:185.939970px;}
.y1d4{bottom:187.379970px;}
.y124{bottom:188.099970px;}
.y195{bottom:190.259970px;}
.y20c{bottom:192.779970px;}
.y107{bottom:193.499970px;}
.y53{bottom:194.219970px;}
.y2d{bottom:194.579970px;}
.y17b{bottom:196.379970px;}
.ya6{bottom:196.739970px;}
.y1ed{bottom:198.899970px;}
.y161{bottom:199.619970px;}
.y235{bottom:201.779970px;}
.y1ca{bottom:202.499970px;}
.y211{bottom:202.859970px;}
.y155{bottom:205.739970px;}
.y74{bottom:206.819970px;}
.y227{bottom:208.619970px;}
.y1bd{bottom:209.339970px;}
.yf7{bottom:211.859970px;}
.ye3{bottom:212.939970px;}
.y2c{bottom:215.459970px;}
.y12b{bottom:217.259970px;}
.y123{bottom:219.059970px;}
.y194{bottom:221.219970px;}
.y106{bottom:222.299970px;}
.y20b{bottom:223.739970px;}
.y86{bottom:224.459970px;}
.y52{bottom:225.179970px;}
.y17a{bottom:227.339970px;}
.ya5{bottom:228.059970px;}
.y1ec{bottom:229.859970px;}
.y1d3{bottom:230.579970px;}
.y234{bottom:233.099970px;}
.y1c9{bottom:233.819970px;}
.y2b{bottom:235.979970px;}
.y154{bottom:236.699970px;}
.y1a9{bottom:237.059970px;}
.y73{bottom:237.779970px;}
.y226{bottom:239.579970px;}
.y1bc{bottom:240.299970px;}
.yf6{bottom:242.819970px;}
.y160{bottom:243.179970px;}
.ye2{bottom:243.899970px;}
.y12a{bottom:246.059970px;}
.y134{bottom:248.219970px;}
.y122{bottom:250.019970px;}
.y105{bottom:251.459970px;}
.y20a{bottom:254.699970px;}
.y51{bottom:256.499970px;}
.y2a{bottom:256.859970px;}
.y179{bottom:258.299970px;}
.ya4{bottom:259.019970px;}
.y1eb{bottom:260.819970px;}
.y1a5{bottom:262.259970px;}
.y233{bottom:264.059970px;}
.y1c8{bottom:264.779970px;}
.y18f{bottom:265.499970px;}
.y153{bottom:267.659970px;}
.y85{bottom:268.019970px;}
.y72{bottom:268.739970px;}
.y225{bottom:270.899970px;}
.y1bb{bottom:271.619970px;}
.yf5{bottom:274.139970px;}
.ye1{bottom:275.219970px;}
.y29{bottom:277.379970px;}
.y133{bottom:279.179970px;}
.y104{bottom:280.259970px;}
.y121{bottom:281.339970px;}
.y209{bottom:286.019970px;}
.y15f{bottom:286.379970px;}
.y50{bottom:287.459970px;}
.y178{bottom:289.619970px;}
.ya3{bottom:289.979970px;}
.y1ea{bottom:291.779970px;}
.y1c7{bottom:295.739970px;}
.y232{bottom:297.899970px;}
.y28{bottom:298.259970px;}
.y152{bottom:298.979970px;}
.y71{bottom:299.699970px;}
.y1ba{bottom:302.579970px;}
.y129{bottom:304.019970px;}
.y224{bottom:304.379970px;}
.yf4{bottom:305.099970px;}
.y1a4{bottom:305.819970px;}
.ye0{bottom:306.179970px;}
.y18e{bottom:309.059970px;}
.y103{bottom:309.419970px;}
.y132{bottom:310.139970px;}
.y84{bottom:311.579970px;}
.y120{bottom:312.299970px;}
.y208{bottom:316.979970px;}
.y1d2{bottom:317.699970px;}
.y4f{bottom:318.419970px;}
.y27{bottom:318.779970px;}
.y177{bottom:320.579970px;}
.ya2{bottom:320.939970px;}
.y1e9{bottom:323.099970px;}
.y1c6{bottom:326.699970px;}
.y210{bottom:327.059970px;}
.y151{bottom:329.939970px;}
.y70{bottom:331.019970px;}
.y231{bottom:333.179970px;}
.y1b9{bottom:333.539970px;}
.yf3{bottom:336.059970px;}
.ydf{bottom:337.139970px;}
.y102{bottom:338.219970px;}
.y26{bottom:339.659970px;}
.y223{bottom:340.019970px;}
.y131{bottom:341.099970px;}
.y11f{bottom:343.259970px;}
.y18d{bottom:347.219970px;}
.y207{bottom:347.939970px;}
.y4e{bottom:349.379970px;}
.y176{bottom:351.539970px;}
.ya1{bottom:352.259970px;}
.y83{bottom:354.779970px;}
.y1e8{bottom:356.219970px;}
.y1c5{bottom:358.019970px;}
.y128{bottom:360.539970px;}
.y150{bottom:360.899970px;}
.y25{bottom:361.619970px;}
.y6f{bottom:361.979970px;}
.y230{bottom:363.779970px;}
.yf2{bottom:367.019970px;}
.y101{bottom:367.379970px;}
.yde{bottom:368.099970px;}
.y1b8{bottom:369.899970px;}
.y130{bottom:372.419970px;}
.y15e{bottom:373.499970px;}
.y11e{bottom:374.219970px;}
.y222{bottom:376.019970px;}
.y18c{bottom:378.539970px;}
.y206{bottom:378.899970px;}
.y4d{bottom:380.699970px;}
.y175{bottom:382.499970px;}
.ya0{bottom:383.219970px;}
.y24{bottom:387.179970px;}
.y1e7{bottom:388.979970px;}
.y14f{bottom:391.859970px;}
.y1a8{bottom:392.219970px;}
.y1a3{bottom:392.579970px;}
.y6e{bottom:392.939970px;}
.y1c4{bottom:394.019970px;}
.y22f{bottom:394.379970px;}
.y100{bottom:396.179970px;}
.y82{bottom:398.339970px;}
.ydd{bottom:399.059970px;}
.ybe{bottom:403.379970px;}
.y1d1{bottom:404.459970px;}
.y11d{bottom:405.539970px;}
.y1b7{bottom:408.059970px;}
.y18b{bottom:409.499970px;}
.y205{bottom:410.219970px;}
.y4c{bottom:411.659970px;}
.y23{bottom:413.099970px;}
.y174{bottom:413.819970px;}
.y9f{bottom:414.179970px;}
.y15d{bottom:417.059970px;}
.y1e6{bottom:419.939970px;}
.y14e{bottom:423.179970px;}
.y6d{bottom:423.899970px;}
.y22e{bottom:424.979970px;}
.yff{bottom:425.339970px;}
.yf1{bottom:429.299970px;}
.ydc{bottom:430.379970px;}
.y1a7{bottom:431.459970px;}
.ybd{bottom:434.339970px;}
.y1a2{bottom:436.139970px;}
.y11c{bottom:436.499970px;}
.y1c3{bottom:436.859970px;}
.y22{bottom:439.019970px;}
.y18a{bottom:440.459970px;}
.y204{bottom:441.179970px;}
.y81{bottom:441.899970px;}
.y4b{bottom:442.619970px;}
.y173{bottom:444.779970px;}
.y9e{bottom:445.139970px;}
.y221{bottom:445.499970px;}
.y1d0{bottom:448.019970px;}
.y1e5{bottom:451.259970px;}
.yfe{bottom:454.139970px;}
.y6c{bottom:455.219970px;}
.y22d{bottom:455.939970px;}
.yf0{bottom:460.259970px;}
.ydb{bottom:461.339970px;}
.ybc{bottom:465.299970px;}
.y11b{bottom:467.459970px;}
.y21{bottom:468.179970px;}
.y1b6{bottom:470.339970px;}
.y189{bottom:471.419970px;}
.y203{bottom:472.139970px;}
.y4a{bottom:473.579970px;}
.y1a1{bottom:474.299970px;}
.y172{bottom:475.739970px;}
.y9d{bottom:476.459970px;}
.y1e4{bottom:482.219970px;}
.yfd{bottom:482.939970px;}
.y80{bottom:485.099970px;}
.y6b{bottom:486.179970px;}
.y22c{bottom:486.539970px;}
.yef{bottom:491.219970px;}
.y1cf{bottom:491.579970px;}
.yda{bottom:492.299970px;}
.ybb{bottom:496.619970px;}
.y1b1{bottom:497.699970px;}
.y11a{bottom:498.419970px;}
.y1b5{bottom:501.299970px;}
.y188{bottom:502.739970px;}
.y202{bottom:503.099970px;}
.y15c{bottom:503.819970px;}
.y49{bottom:504.899970px;}
.y1a0{bottom:505.619970px;}
.y171{bottom:506.699970px;}
.y9c{bottom:507.419970px;}
.y20{bottom:511.379970px;}
.yfc{bottom:512.099970px;}
.y1e3{bottom:513.179970px;}
.y14d{bottom:516.059970px;}
.y6a{bottom:517.139970px;}
.yee{bottom:522.539970px;}
.yd9{bottom:523.259970px;}
.yba{bottom:527.579970px;}
.y7f{bottom:528.659970px;}
.y119{bottom:529.739970px;}
.y1b4{bottom:532.259970px;}
.y187{bottom:533.699970px;}
.y201{bottom:534.419970px;}
.y1ce{bottom:534.779970px;}
.y48{bottom:535.859970px;}
.y19f{bottom:536.579970px;}
.y170{bottom:538.019970px;}
.y9b{bottom:538.379970px;}
.yfb{bottom:540.899970px;}
.y1e2{bottom:544.139970px;}
.y14c{bottom:547.379970px;}
.y69{bottom:548.099970px;}
.yed{bottom:553.499970px;}
.y1f{bottom:554.219970px;}
.yd8{bottom:554.579970px;}
.yb9{bottom:558.539970px;}
.y1b0{bottom:559.619970px;}
.y118{bottom:560.699970px;}
.y1b3{bottom:563.219970px;}
.y186{bottom:564.659970px;}
.y200{bottom:565.379970px;}
.y47{bottom:566.819970px;}
.y19e{bottom:567.539970px;}
.y16f{bottom:568.979970px;}
.y9a{bottom:569.339970px;}
.y220{bottom:569.699970px;}
.y7e{bottom:572.219970px;}
.y1e1{bottom:575.459970px;}
.y14b{bottom:578.339970px;}
.y68{bottom:579.419970px;}
.yec{bottom:584.459970px;}
.yd7{bottom:585.539970px;}
.yb8{bottom:589.499970px;}
.y15b{bottom:590.579970px;}
.y117{bottom:591.659970px;}
.y1e{bottom:592.019970px;}
.y1b2{bottom:594.539970px;}
.y185{bottom:595.619970px;}
.y1ff{bottom:596.339970px;}
.y46{bottom:597.779970px;}
.y19d{bottom:598.499970px;}
.y16e{bottom:599.939970px;}
.y99{bottom:600.659970px;}
.y1af{bottom:603.179970px;}
.y1e0{bottom:606.419970px;}
.y1d{bottom:607.499970px;}
.y14a{bottom:609.299970px;}
.y21f{bottom:609.659970px;}
.y67{bottom:610.379970px;}
.yeb{bottom:615.419970px;}
.y7d{bottom:615.779970px;}
.yd6{bottom:616.499970px;}
.yb7{bottom:620.819970px;}
.y1cd{bottom:621.899970px;}
.y116{bottom:622.619970px;}
.y1c{bottom:622.979970px;}
.y184{bottom:626.939970px;}
.y1fe{bottom:627.299970px;}
.y45{bottom:629.099970px;}
.y19c{bottom:629.819970px;}
.y16d{bottom:630.899970px;}
.y98{bottom:631.619970px;}
.y15a{bottom:634.139970px;}
.y1df{bottom:637.379970px;}
.y1b{bottom:638.459970px;}
.y149{bottom:640.259970px;}
.y66{bottom:641.339970px;}
.yea{bottom:646.379970px;}
.yd5{bottom:647.459970px;}
.y21e{bottom:649.619970px;}
.yb6{bottom:651.779970px;}
.y1a{bottom:653.939970px;}
.y183{bottom:657.899970px;}
.y1fd{bottom:658.619970px;}
.y7c{bottom:658.979970px;}
.y44{bottom:660.059970px;}
.y19b{bottom:660.779970px;}
.y16c{bottom:662.219970px;}
.y97{bottom:662.579970px;}
.y1ab{bottom:665.099970px;}
.y1de{bottom:668.339970px;}
.y19{bottom:669.419970px;}
.y148{bottom:671.579970px;}
.y65{bottom:672.299970px;}
.ye9{bottom:677.699970px;}
.yd4{bottom:678.779970px;}
.yb5{bottom:682.739970px;}
.y21d{bottom:683.459970px;}
.y18{bottom:684.899970px;}
.y182{bottom:688.859970px;}
.y1fc{bottom:689.579970px;}
.y43{bottom:691.019970px;}
.y23d{bottom:691.379970px;}
.y19a{bottom:691.739970px;}
.y16b{bottom:693.179970px;}
.y96{bottom:693.539970px;}
.y1dd{bottom:699.659970px;}
.y17{bottom:700.379970px;}
.y7b{bottom:702.539970px;}
.y64{bottom:703.619970px;}
.ye8{bottom:706.499970px;}
.yd3{bottom:709.739970px;}
.yb4{bottom:713.699970px;}
.y143{bottom:714.779970px;}
.y115{bottom:715.859970px;}
.y16{bottom:716.219970px;}
.y21c{bottom:716.939970px;}
.y181{bottom:719.819970px;}
.y1fb{bottom:720.539970px;}
.y42{bottom:721.979970px;}
.y23c{bottom:722.339970px;}
.y199{bottom:722.699970px;}
.y16a{bottom:724.139970px;}
.y95{bottom:724.859970px;}
.y139{bottom:727.379970px;}
.y1dc{bottom:730.619970px;}
.y15{bottom:731.699970px;}
.y147{bottom:733.499970px;}
.y63{bottom:734.579970px;}
.yd2{bottom:740.699970px;}
.yb3{bottom:745.019970px;}
.y7a{bottom:746.099970px;}
.y114{bottom:746.819970px;}
.y14{bottom:747.179970px;}
.y21b{bottom:747.899970px;}
.y180{bottom:751.139970px;}
.y1fa{bottom:751.499970px;}
.y41{bottom:753.299970px;}
.y198{bottom:754.019970px;}
.y169{bottom:755.099970px;}
.y94{bottom:755.819970px;}
.y1db{bottom:761.579970px;}
.y13{bottom:762.659970px;}
.y146{bottom:764.459970px;}
.y62{bottom:765.539970px;}
.yd1{bottom:771.659970px;}
.yb2{bottom:775.979970px;}
.y12{bottom:778.139970px;}
.y21a{bottom:778.859970px;}
.y17f{bottom:782.099970px;}
.y1f9{bottom:782.819970px;}
.y40{bottom:784.259970px;}
.y197{bottom:784.979970px;}
.y93{bottom:786.779970px;}
.y23b{bottom:787.139970px;}
.y79{bottom:789.299970px;}
.y168{bottom:790.739970px;}
.y1da{bottom:792.539970px;}
.y11{bottom:793.619970px;}
.y145{bottom:795.779970px;}
.y61{bottom:796.499970px;}
.yd0{bottom:802.979970px;}
.yb1{bottom:806.939970px;}
.y10{bottom:809.099970px;}
.y219{bottom:810.179970px;}
.y3f{bottom:815.219970px;}
.y92{bottom:817.739970px;}
.y1f8{bottom:818.459970px;}
.y1c2{bottom:820.619970px;}
.y17e{bottom:821.339970px;}
.y1d9{bottom:823.859970px;}
.yf{bottom:824.579970px;}
.y23a{bottom:825.299970px;}
.y144{bottom:826.739970px;}
.y60{bottom:827.819970px;}
.ycf{bottom:833.939970px;}
.yb0{bottom:837.899970px;}
.y163{bottom:838.979970px;}
.y113{bottom:840.059970px;}
.ye{bottom:840.419970px;}
.y218{bottom:841.139970px;}
.y3e{bottom:846.179970px;}
.y91{bottom:849.059970px;}
.y1d8{bottom:854.819970px;}
.yd{bottom:856.979970px;}
.y5f{bottom:858.779970px;}
.yce{bottom:864.899970px;}
.yaf{bottom:869.219970px;}
.y112{bottom:871.019970px;}
.y1f7{bottom:872.099970px;}
.y3d{bottom:877.499970px;}
.yc{bottom:877.859970px;}
.y90{bottom:880.019970px;}
.y193{bottom:882.539970px;}
.y1d7{bottom:887.939970px;}
.y5e{bottom:889.739970px;}
.ycd{bottom:895.859970px;}
.yae{bottom:900.179970px;}
.yb{bottom:900.539970px;}
.y111{bottom:902.339970px;}
.y1f6{bottom:902.699970px;}
.y217{bottom:903.059970px;}
.y3c{bottom:908.459970px;}
.y8f{bottom:910.979970px;}
.y5d{bottom:920.699970px;}
.ya{bottom:922.859970px;}
.ycc{bottom:927.179970px;}
.yad{bottom:931.139970px;}
.y110{bottom:933.299970px;}
.y1f5{bottom:934.019970px;}
.y216{bottom:934.379970px;}
.y3b{bottom:939.419970px;}
.y8e{bottom:941.939970px;}
.y9{bottom:945.179970px;}
.y5c{bottom:952.019970px;}
.ycb{bottom:958.139970px;}
.yac{bottom:962.099970px;}
.y10f{bottom:964.259970px;}
.y1f4{bottom:964.979970px;}
.y215{bottom:965.339970px;}
.y8{bottom:967.499970px;}
.y3a{bottom:970.379970px;}
.y8d{bottom:973.259970px;}
.y5b{bottom:982.979970px;}
.yca{bottom:989.099970px;}
.y7{bottom:990.179970px;}
.yab{bottom:993.419970px;}
.y10e{bottom:995.219970px;}
.y1f3{bottom:995.939970px;}
.y214{bottom:996.299970px;}
.y12f{bottom:998.459970px;}
.y39{bottom:1001.699970px;}
.y8c{bottom:1004.219970px;}
.y6{bottom:1012.139970px;}
.y5a{bottom:1013.939970px;}
.yc9{bottom:1020.059970px;}
.yaa{bottom:1024.379970px;}
.y10d{bottom:1026.539970px;}
.y1f2{bottom:1026.899970px;}
.y213{bottom:1030.139970px;}
.y38{bottom:1032.659970px;}
.y5{bottom:1033.379970px;}
.y8b{bottom:1035.179970px;}
.y12e{bottom:1036.619970px;}
.y59{bottom:1044.899970px;}
.y4{bottom:1055.699970px;}
.yc8{bottom:1056.419970px;}
.y10c{bottom:1057.499970px;}
.y1f1{bottom:1058.219970px;}
.y37{bottom:1063.619970px;}
.y8a{bottom:1064.699970px;}
.y58{bottom:1076.219970px;}
.y3{bottom:1076.579970px;}
.y10b{bottom:1078.019970px;}
.y2{bottom:1096.019970px;}
.y36{bottom:1099.979970px;}
.y57{bottom:1107.179970px;}
.hb{height:20.880000px;}
.h20{height:25.270313px;}
.h1f{height:25.579688px;}
.h1a{height:34.114922px;}
.h17{height:34.855313px;}
.h14{height:41.696016px;}
.h1b{height:41.812031px;}
.h13{height:42.600938px;}
.h4{height:46.750078px;}
.h21{height:47.176172px;}
.h22{height:47.812500px;}
.h9{height:48.796875px;}
.h11{height:52.417969px;}
.h15{height:52.928438px;}
.h10{height:56.858203px;}
.h6{height:63.175781px;}
.hf{height:63.351563px;}
.ha{height:63.949219px;}
.he{height:64.546875px;}
.h25{height:65.671875px;}
.h16{height:67.715859px;}
.h24{height:68.349375px;}
.h5{height:69.065156px;}
.h1c{height:69.191719px;}
.h18{height:72.035156px;}
.h23{height:73.283906px;}
.h19{height:74.816016px;}
.h12{height:75.720938px;}
.h1e{height:77.776875px;}
.h8{height:78.337969px;}
.hd{height:84.412969px;}
.hc{height:95.086406px;}
.h3{height:104.871797px;}
.h7{height:133.014375px;}
.h1d{height:379.296000px;}
.h2{height:1201.500000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:9.000000px;}
.w2{width:865.485000px;}
.w0{width:892.485000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:13.500000px;}
.xa{left:71.640015px;}
.x1b{left:92.864850px;}
.x13{left:98.640015px;}
.x1a{left:111.840090px;}
.xb{left:122.976930px;}
.x12{left:124.739865px;}
.x7{left:126.352290px;}
.x2{left:137.574150px;}
.x20{left:145.199700px;}
.x4{left:162.116100px;}
.x8{left:181.065000px;}
.x11{left:223.363800px;}
.x32{left:237.549300px;}
.x2e{left:239.061000px;}
.x23{left:253.480500px;}
.x19{left:274.117650px;}
.xc{left:283.514700px;}
.x1f{left:286.680150px;}
.x5{left:291.600000px;}
.x24{left:295.850100px;}
.x1c{left:310.674300px;}
.x21{left:314.430150px;}
.x6{left:320.340000px;}
.x18{left:329.008350px;}
.x1e{left:340.217250px;}
.x33{left:342.033600px;}
.x10{left:344.657550px;}
.x17{left:346.240650px;}
.x2b{left:348.672300px;}
.x26{left:353.061000px;}
.x30{left:354.127350px;}
.x31{left:356.553150px;}
.x16{left:358.738800px;}
.x14{left:362.055150px;}
.x1d{left:366.063000px;}
.x2a{left:368.740650px;}
.x27{left:372.941850px;}
.x2f{left:376.381350px;}
.x22{left:378.707550px;}
.x25{left:379.744650px;}
.x2c{left:391.867650px;}
.xf{left:397.936950px;}
.x2d{left:399.889200px;}
.x9{left:405.539700px;}
.x29{left:429.480000px;}
.x15{left:433.064850px;}
.x3{left:443.265000px;}
.x28{left:472.319850px;}
.xd{left:486.315000px;}
.xe{left:819.540000px;}
@media print{
.v4{vertical-align:-97.280000pt;}
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-26.880000pt;}
.v5{vertical-align:-24.319947pt;}
.v6{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1d{letter-spacing:-3.456000pt;}
.lsd{letter-spacing:-2.304000pt;}
.ls1c{letter-spacing:-0.422400pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000480pt;}
.ls27{letter-spacing:0.000533pt;}
.ls19{letter-spacing:0.053387pt;}
.ls7{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.064640pt;}
.ls24{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.093440pt;}
.ls2a{letter-spacing:0.105067pt;}
.ls28{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.133120pt;}
.ls22{letter-spacing:0.211200pt;}
.ls1f{letter-spacing:0.213333pt;}
.ls2b{letter-spacing:0.222720pt;}
.lsa{letter-spacing:0.243787pt;}
.ls14{letter-spacing:0.248960pt;}
.ls1a{letter-spacing:0.472320pt;}
.ls21{letter-spacing:0.506880pt;}
.ls16{letter-spacing:0.570027pt;}
.ls9{letter-spacing:0.601493pt;}
.ls18{letter-spacing:0.603200pt;}
.ls20{letter-spacing:0.656640pt;}
.ls15{letter-spacing:0.671360pt;}
.lsc{letter-spacing:0.719893pt;}
.ls12{letter-spacing:0.796160pt;}
.ls26{letter-spacing:0.984533pt;}
.ls29{letter-spacing:1.125867pt;}
.ls8{letter-spacing:1.593600pt;}
.lsf{letter-spacing:1.868800pt;}
.ls23{letter-spacing:3.408533pt;}
.ls1e{letter-spacing:4.322133pt;}
.lse{letter-spacing:9.943467pt;}
.ls0{letter-spacing:10.298880pt;}
.ls11{letter-spacing:12.003200pt;}
.ls2{letter-spacing:33.792000pt;}
.ls1b{letter-spacing:149.337227pt;}
.ls4{letter-spacing:167.946400pt;}
.ls6{letter-spacing:171.274400pt;}
.ls5{letter-spacing:173.066400pt;}
.ls10{letter-spacing:174.476960pt;}
.ls17{letter-spacing:1266.314080pt;}
.wse{word-spacing:-25.259520pt;}
.wsd{word-spacing:-24.752640pt;}
.ws2{word-spacing:-17.792000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.336000pt;}
.ws3{word-spacing:-13.696000pt;}
.ws8{word-spacing:-13.120000pt;}
.ws4{word-spacing:-11.742720pt;}
.ws6{word-spacing:-11.320320pt;}
.wsb{word-spacing:-10.771200pt;}
.ws5{word-spacing:-10.560000pt;}
.ws7{word-spacing:-9.607680pt;}
.wsa{word-spacing:-9.296640pt;}
.wsc{word-spacing:-6.400000pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-15.467200pt;}
._3{margin-left:-13.280000pt;}
._5{margin-left:-10.288213pt;}
._32{margin-left:-8.749387pt;}
._31{margin-left:-7.040000pt;}
._1{margin-left:-5.418240pt;}
._4{margin-left:-3.870720pt;}
._6{margin-left:-2.234880pt;}
._2{margin-left:-1.062400pt;}
._0{width:1.062400pt;}
._36{width:2.137600pt;}
._3d{width:3.052800pt;}
._1b{width:4.093867pt;}
._33{width:5.064533pt;}
._38{width:6.327467pt;}
._23{width:7.247520pt;}
._39{width:8.448000pt;}
._37{width:9.856000pt;}
._3b{width:11.578880pt;}
._3c{width:12.992000pt;}
._3e{width:14.144000pt;}
._3a{width:15.232000pt;}
._41{width:16.640000pt;}
._5f{width:18.048000pt;}
._7{width:19.088533pt;}
._40{width:20.190933pt;}
._25{width:21.287413pt;}
._3f{width:22.232587pt;}
._46{width:23.911413pt;}
._4e{width:24.908373pt;}
._4c{width:26.112000pt;}
._4b{width:27.744853pt;}
._14{width:28.703147pt;}
._34{width:30.445013pt;}
._2d{width:31.508747pt;}
._53{width:33.088000pt;}
._42{width:34.027253pt;}
._e{width:35.092747pt;}
._54{width:36.288000pt;}
._55{width:38.080000pt;}
._59{width:39.832587pt;}
._28{width:40.935413pt;}
._2c{width:42.132747pt;}
._4d{width:43.066133pt;}
._11{width:43.988747pt;}
._51{width:45.012747pt;}
._29{width:49.382347pt;}
._30{width:52.820747pt;}
._48{width:53.961920pt;}
._58{width:56.895520pt;}
._52{width:59.648000pt;}
._57{width:61.184000pt;}
._16{width:65.523733pt;}
._13{width:68.659147pt;}
._2e{width:70.548747pt;}
._5c{width:72.404747pt;}
._2f{width:74.420213pt;}
._2a{width:79.840587pt;}
._27{width:81.236747pt;}
._1e{width:83.806933pt;}
._5d{width:86.612747pt;}
._17{width:91.497813pt;}
._5b{width:92.937600pt;}
._5a{width:96.445867pt;}
._12{width:98.280480pt;}
._1d{width:102.387147pt;}
._26{width:106.462080pt;}
._56{width:108.193920pt;}
._15{width:109.555147pt;}
._21{width:113.139147pt;}
._2b{width:114.097013pt;}
._18{width:120.657867pt;}
._19{width:128.937067pt;}
._1f{width:130.931147pt;}
._5e{width:133.333280pt;}
._22{width:136.691733pt;}
._1c{width:137.971147pt;}
._20{width:140.638933pt;}
._1a{width:141.555147pt;}
._44{width:149.337227pt;}
._50{width:153.594507pt;}
._4a{width:154.777227pt;}
._24{width:155.964213pt;}
._10{width:157.799947pt;}
._c{width:161.204533pt;}
._35{width:171.274400pt;}
._8{width:172.801067pt;}
._f{width:173.862400pt;}
._45{width:178.506400pt;}
._4f{width:315.973387pt;}
._b{width:361.600000pt;}
._a{width:691.946133pt;}
._47{width:913.796053pt;}
._49{width:916.170987pt;}
._43{width:945.796053pt;}
._d{width:977.796053pt;}
.fsc{font-size:25.600000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:42.240000pt;}
.fs1{font-size:47.360000pt;}
.fs9{font-size:52.480000pt;}
.fs7{font-size:57.600000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fsd{font-size:74.240000pt;}
.fs5{font-size:79.360000pt;}
.fs6{font-size:84.480000pt;}
.fs0{font-size:106.240000pt;}
.fs4{font-size:133.120000pt;}
.fsb{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.840000pt;}
.y32{bottom:31.200000pt;}
.y35{bottom:43.680000pt;}
.y1{bottom:48.000027pt;}
.yc4{bottom:67.039987pt;}
.y13c{bottom:68.000000pt;}
.y239{bottom:69.279987pt;}
.y1cc{bottom:69.600000pt;}
.y212{bottom:69.920000pt;}
.y1ae{bottom:71.840000pt;}
.y159{bottom:72.480000pt;}
.yc7{bottom:73.120000pt;}
.y78{bottom:73.440000pt;}
.y192{bottom:74.080000pt;}
.y142{bottom:74.400000pt;}
.yfa{bottom:74.720000pt;}
.y22b{bottom:75.039987pt;}
.y33{bottom:75.360027pt;}
.y1c1{bottom:75.680000pt;}
.ye7{bottom:78.880000pt;}
.y141{bottom:79.200000pt;}
.yc3{bottom:80.799987pt;}
.y126{bottom:81.759987pt;}
.y138{bottom:82.720000pt;}
.y89{bottom:83.680000pt;}
.y167{bottom:86.239973pt;}
.y20f{bottom:88.479973pt;}
.y1d6{bottom:88.799973pt;}
.y13b{bottom:89.119973pt;}
.y56{bottom:90.079973pt;}
.y140{bottom:91.679973pt;}
.ya9{bottom:92.319973pt;}
.y127{bottom:92.959973pt;}
.y1f0{bottom:93.919973pt;}
.y10a{bottom:94.559973pt;}
.y166{bottom:96.159973pt;}
.y238{bottom:96.799973pt;}
.y1cb{bottom:97.439973pt;}
.yc2{bottom:97.759973pt;}
.y13a{bottom:99.039973pt;}
.y31{bottom:99.359973pt;}
.y158{bottom:99.999973pt;}
.yc6{bottom:100.319973pt;}
.y77{bottom:100.959973pt;}
.y22a{bottom:102.559973pt;}
.y1c0{bottom:103.199973pt;}
.y13f{bottom:103.839973pt;}
.yf9{bottom:105.439973pt;}
.ye6{bottom:106.399973pt;}
.yc1{bottom:109.919973pt;}
.y137{bottom:110.239973pt;}
.y1a6{bottom:110.879973pt;}
.yc5{bottom:111.199973pt;}
.y196{bottom:113.759973pt;}
.y12d{bottom:115.679973pt;}
.y20e{bottom:115.999973pt;}
.y165{bottom:117.279973pt;}
.y55{bottom:117.599973pt;}
.y30{bottom:117.919973pt;}
.y1d5{bottom:118.239973pt;}
.y17d{bottom:119.199973pt;}
.ya8{bottom:119.839973pt;}
.y191{bottom:120.159973pt;}
.y109{bottom:120.479973pt;}
.y1ef{bottom:121.439973pt;}
.y88{bottom:122.399973pt;}
.y237{bottom:124.319973pt;}
.y13e{bottom:124.959973pt;}
.y157{bottom:127.519973pt;}
.y1aa{bottom:127.839973pt;}
.y76{bottom:128.479973pt;}
.y229{bottom:130.399973pt;}
.y1bf{bottom:131.039973pt;}
.yf8{bottom:133.279973pt;}
.ye5{bottom:134.239973pt;}
.y13d{bottom:135.839973pt;}
.y2f{bottom:136.159973pt;}
.y136{bottom:137.759973pt;}
.y162{bottom:138.719973pt;}
.y125{bottom:139.679973pt;}
.y12c{bottom:141.599973pt;}
.yc0{bottom:143.199973pt;}
.y20d{bottom:143.839973pt;}
.y54{bottom:145.119973pt;}
.y108{bottom:146.079973pt;}
.y17c{bottom:147.039973pt;}
.ya7{bottom:147.359973pt;}
.y1ee{bottom:148.959973pt;}
.y1ad{bottom:149.599973pt;}
.y236{bottom:151.839973pt;}
.y164{bottom:152.159973pt;}
.y1ac{bottom:152.479973pt;}
.ybf{bottom:154.399973pt;}
.y2e{bottom:154.719973pt;}
.y156{bottom:155.359973pt;}
.y75{bottom:155.999973pt;}
.y228{bottom:157.919973pt;}
.y1be{bottom:158.559973pt;}
.y190{bottom:158.879973pt;}
.y87{bottom:160.799973pt;}
.ye4{bottom:161.759973pt;}
.y135{bottom:165.279973pt;}
.y1d4{bottom:166.559973pt;}
.y124{bottom:167.199973pt;}
.y195{bottom:169.119973pt;}
.y20c{bottom:171.359973pt;}
.y107{bottom:171.999973pt;}
.y53{bottom:172.639973pt;}
.y2d{bottom:172.959973pt;}
.y17b{bottom:174.559973pt;}
.ya6{bottom:174.879973pt;}
.y1ed{bottom:176.799973pt;}
.y161{bottom:177.439973pt;}
.y235{bottom:179.359973pt;}
.y1ca{bottom:179.999973pt;}
.y211{bottom:180.319973pt;}
.y155{bottom:182.879973pt;}
.y74{bottom:183.839973pt;}
.y227{bottom:185.439973pt;}
.y1bd{bottom:186.079973pt;}
.yf7{bottom:188.319973pt;}
.ye3{bottom:189.279973pt;}
.y2c{bottom:191.519973pt;}
.y12b{bottom:193.119973pt;}
.y123{bottom:194.719973pt;}
.y194{bottom:196.639973pt;}
.y106{bottom:197.599973pt;}
.y20b{bottom:198.879973pt;}
.y86{bottom:199.519973pt;}
.y52{bottom:200.159973pt;}
.y17a{bottom:202.079973pt;}
.ya5{bottom:202.719973pt;}
.y1ec{bottom:204.319973pt;}
.y1d3{bottom:204.959973pt;}
.y234{bottom:207.199973pt;}
.y1c9{bottom:207.839973pt;}
.y2b{bottom:209.759973pt;}
.y154{bottom:210.399973pt;}
.y1a9{bottom:210.719973pt;}
.y73{bottom:211.359973pt;}
.y226{bottom:212.959973pt;}
.y1bc{bottom:213.599973pt;}
.yf6{bottom:215.839973pt;}
.y160{bottom:216.159973pt;}
.ye2{bottom:216.799973pt;}
.y12a{bottom:218.719973pt;}
.y134{bottom:220.639973pt;}
.y122{bottom:222.239973pt;}
.y105{bottom:223.519973pt;}
.y20a{bottom:226.399973pt;}
.y51{bottom:227.999973pt;}
.y2a{bottom:228.319973pt;}
.y179{bottom:229.599973pt;}
.ya4{bottom:230.239973pt;}
.y1eb{bottom:231.839973pt;}
.y1a5{bottom:233.119973pt;}
.y233{bottom:234.719973pt;}
.y1c8{bottom:235.359973pt;}
.y18f{bottom:235.999973pt;}
.y153{bottom:237.919973pt;}
.y85{bottom:238.239973pt;}
.y72{bottom:238.879973pt;}
.y225{bottom:240.799973pt;}
.y1bb{bottom:241.439973pt;}
.yf5{bottom:243.679973pt;}
.ye1{bottom:244.639973pt;}
.y29{bottom:246.559973pt;}
.y133{bottom:248.159973pt;}
.y104{bottom:249.119973pt;}
.y121{bottom:250.079973pt;}
.y209{bottom:254.239973pt;}
.y15f{bottom:254.559973pt;}
.y50{bottom:255.519973pt;}
.y178{bottom:257.439973pt;}
.ya3{bottom:257.759973pt;}
.y1ea{bottom:259.359973pt;}
.y1c7{bottom:262.879973pt;}
.y232{bottom:264.799973pt;}
.y28{bottom:265.119973pt;}
.y152{bottom:265.759973pt;}
.y71{bottom:266.399973pt;}
.y1ba{bottom:268.959973pt;}
.y129{bottom:270.239973pt;}
.y224{bottom:270.559973pt;}
.yf4{bottom:271.199973pt;}
.y1a4{bottom:271.839973pt;}
.ye0{bottom:272.159973pt;}
.y18e{bottom:274.719973pt;}
.y103{bottom:275.039973pt;}
.y132{bottom:275.679973pt;}
.y84{bottom:276.959973pt;}
.y120{bottom:277.599973pt;}
.y208{bottom:281.759973pt;}
.y1d2{bottom:282.399973pt;}
.y4f{bottom:283.039973pt;}
.y27{bottom:283.359973pt;}
.y177{bottom:284.959973pt;}
.ya2{bottom:285.279973pt;}
.y1e9{bottom:287.199973pt;}
.y1c6{bottom:290.399973pt;}
.y210{bottom:290.719973pt;}
.y151{bottom:293.279973pt;}
.y70{bottom:294.239973pt;}
.y231{bottom:296.159973pt;}
.y1b9{bottom:296.479973pt;}
.yf3{bottom:298.719973pt;}
.ydf{bottom:299.679973pt;}
.y102{bottom:300.639973pt;}
.y26{bottom:301.919973pt;}
.y223{bottom:302.239973pt;}
.y131{bottom:303.199973pt;}
.y11f{bottom:305.119973pt;}
.y18d{bottom:308.639973pt;}
.y207{bottom:309.279973pt;}
.y4e{bottom:310.559973pt;}
.y176{bottom:312.479973pt;}
.ya1{bottom:313.119973pt;}
.y83{bottom:315.359973pt;}
.y1e8{bottom:316.639973pt;}
.y1c5{bottom:318.239973pt;}
.y128{bottom:320.479973pt;}
.y150{bottom:320.799973pt;}
.y25{bottom:321.439973pt;}
.y6f{bottom:321.759973pt;}
.y230{bottom:323.359973pt;}
.yf2{bottom:326.239973pt;}
.y101{bottom:326.559973pt;}
.yde{bottom:327.199973pt;}
.y1b8{bottom:328.799973pt;}
.y130{bottom:331.039973pt;}
.y15e{bottom:331.999973pt;}
.y11e{bottom:332.639973pt;}
.y222{bottom:334.239973pt;}
.y18c{bottom:336.479973pt;}
.y206{bottom:336.799973pt;}
.y4d{bottom:338.399973pt;}
.y175{bottom:339.999973pt;}
.ya0{bottom:340.639973pt;}
.y24{bottom:344.159973pt;}
.y1e7{bottom:345.759973pt;}
.y14f{bottom:348.319973pt;}
.y1a8{bottom:348.639973pt;}
.y1a3{bottom:348.959973pt;}
.y6e{bottom:349.279973pt;}
.y1c4{bottom:350.239973pt;}
.y22f{bottom:350.559973pt;}
.y100{bottom:352.159973pt;}
.y82{bottom:354.079973pt;}
.ydd{bottom:354.719973pt;}
.ybe{bottom:358.559973pt;}
.y1d1{bottom:359.519973pt;}
.y11d{bottom:360.479973pt;}
.y1b7{bottom:362.719973pt;}
.y18b{bottom:363.999973pt;}
.y205{bottom:364.639973pt;}
.y4c{bottom:365.919973pt;}
.y23{bottom:367.199973pt;}
.y174{bottom:367.839973pt;}
.y9f{bottom:368.159973pt;}
.y15d{bottom:370.719973pt;}
.y1e6{bottom:373.279973pt;}
.y14e{bottom:376.159973pt;}
.y6d{bottom:376.799973pt;}
.y22e{bottom:377.759973pt;}
.yff{bottom:378.079973pt;}
.yf1{bottom:381.599973pt;}
.ydc{bottom:382.559973pt;}
.y1a7{bottom:383.519973pt;}
.ybd{bottom:386.079973pt;}
.y1a2{bottom:387.679973pt;}
.y11c{bottom:387.999973pt;}
.y1c3{bottom:388.319973pt;}
.y22{bottom:390.239973pt;}
.y18a{bottom:391.519973pt;}
.y204{bottom:392.159973pt;}
.y81{bottom:392.799973pt;}
.y4b{bottom:393.439973pt;}
.y173{bottom:395.359973pt;}
.y9e{bottom:395.679973pt;}
.y221{bottom:395.999973pt;}
.y1d0{bottom:398.239973pt;}
.y1e5{bottom:401.119973pt;}
.yfe{bottom:403.679973pt;}
.y6c{bottom:404.639973pt;}
.y22d{bottom:405.279973pt;}
.yf0{bottom:409.119973pt;}
.ydb{bottom:410.079973pt;}
.ybc{bottom:413.599973pt;}
.y11b{bottom:415.519973pt;}
.y21{bottom:416.159973pt;}
.y1b6{bottom:418.079973pt;}
.y189{bottom:419.039973pt;}
.y203{bottom:419.679973pt;}
.y4a{bottom:420.959973pt;}
.y1a1{bottom:421.599973pt;}
.y172{bottom:422.879973pt;}
.y9d{bottom:423.519973pt;}
.y1e4{bottom:428.639973pt;}
.yfd{bottom:429.279973pt;}
.y80{bottom:431.199973pt;}
.y6b{bottom:432.159973pt;}
.y22c{bottom:432.479973pt;}
.yef{bottom:436.639973pt;}
.y1cf{bottom:436.959973pt;}
.yda{bottom:437.599973pt;}
.ybb{bottom:441.439973pt;}
.y1b1{bottom:442.399973pt;}
.y11a{bottom:443.039973pt;}
.y1b5{bottom:445.599973pt;}
.y188{bottom:446.879973pt;}
.y202{bottom:447.199973pt;}
.y15c{bottom:447.839973pt;}
.y49{bottom:448.799973pt;}
.y1a0{bottom:449.439973pt;}
.y171{bottom:450.399973pt;}
.y9c{bottom:451.039973pt;}
.y20{bottom:454.559973pt;}
.yfc{bottom:455.199973pt;}
.y1e3{bottom:456.159973pt;}
.y14d{bottom:458.719973pt;}
.y6a{bottom:459.679973pt;}
.yee{bottom:464.479973pt;}
.yd9{bottom:465.119973pt;}
.yba{bottom:468.959973pt;}
.y7f{bottom:469.919973pt;}
.y119{bottom:470.879973pt;}
.y1b4{bottom:473.119973pt;}
.y187{bottom:474.399973pt;}
.y201{bottom:475.039973pt;}
.y1ce{bottom:475.359973pt;}
.y48{bottom:476.319973pt;}
.y19f{bottom:476.959973pt;}
.y170{bottom:478.239973pt;}
.y9b{bottom:478.559973pt;}
.yfb{bottom:480.799973pt;}
.y1e2{bottom:483.679973pt;}
.y14c{bottom:486.559973pt;}
.y69{bottom:487.199973pt;}
.yed{bottom:491.999973pt;}
.y1f{bottom:492.639973pt;}
.yd8{bottom:492.959973pt;}
.yb9{bottom:496.479973pt;}
.y1b0{bottom:497.439973pt;}
.y118{bottom:498.399973pt;}
.y1b3{bottom:500.639973pt;}
.y186{bottom:501.919973pt;}
.y200{bottom:502.559973pt;}
.y47{bottom:503.839973pt;}
.y19e{bottom:504.479973pt;}
.y16f{bottom:505.759973pt;}
.y9a{bottom:506.079973pt;}
.y220{bottom:506.399973pt;}
.y7e{bottom:508.639973pt;}
.y1e1{bottom:511.519973pt;}
.y14b{bottom:514.079973pt;}
.y68{bottom:515.039973pt;}
.yec{bottom:519.519973pt;}
.yd7{bottom:520.479973pt;}
.yb8{bottom:523.999973pt;}
.y15b{bottom:524.959973pt;}
.y117{bottom:525.919973pt;}
.y1e{bottom:526.239973pt;}
.y1b2{bottom:528.479973pt;}
.y185{bottom:529.439973pt;}
.y1ff{bottom:530.079973pt;}
.y46{bottom:531.359973pt;}
.y19d{bottom:531.999973pt;}
.y16e{bottom:533.279973pt;}
.y99{bottom:533.919973pt;}
.y1af{bottom:536.159973pt;}
.y1e0{bottom:539.039973pt;}
.y1d{bottom:539.999973pt;}
.y14a{bottom:541.599973pt;}
.y21f{bottom:541.919973pt;}
.y67{bottom:542.559973pt;}
.yeb{bottom:547.039973pt;}
.y7d{bottom:547.359973pt;}
.yd6{bottom:547.999973pt;}
.yb7{bottom:551.839973pt;}
.y1cd{bottom:552.799973pt;}
.y116{bottom:553.439973pt;}
.y1c{bottom:553.759973pt;}
.y184{bottom:557.279973pt;}
.y1fe{bottom:557.599973pt;}
.y45{bottom:559.199973pt;}
.y19c{bottom:559.839973pt;}
.y16d{bottom:560.799973pt;}
.y98{bottom:561.439973pt;}
.y15a{bottom:563.679973pt;}
.y1df{bottom:566.559973pt;}
.y1b{bottom:567.519973pt;}
.y149{bottom:569.119973pt;}
.y66{bottom:570.079973pt;}
.yea{bottom:574.559973pt;}
.yd5{bottom:575.519973pt;}
.y21e{bottom:577.439973pt;}
.yb6{bottom:579.359973pt;}
.y1a{bottom:581.279973pt;}
.y183{bottom:584.799973pt;}
.y1fd{bottom:585.439973pt;}
.y7c{bottom:585.759973pt;}
.y44{bottom:586.719973pt;}
.y19b{bottom:587.359973pt;}
.y16c{bottom:588.639973pt;}
.y97{bottom:588.959973pt;}
.y1ab{bottom:591.199973pt;}
.y1de{bottom:594.079973pt;}
.y19{bottom:595.039973pt;}
.y148{bottom:596.959973pt;}
.y65{bottom:597.599973pt;}
.ye9{bottom:602.399973pt;}
.yd4{bottom:603.359973pt;}
.yb5{bottom:606.879973pt;}
.y21d{bottom:607.519973pt;}
.y18{bottom:608.799973pt;}
.y182{bottom:612.319973pt;}
.y1fc{bottom:612.959973pt;}
.y43{bottom:614.239973pt;}
.y23d{bottom:614.559973pt;}
.y19a{bottom:614.879973pt;}
.y16b{bottom:616.159973pt;}
.y96{bottom:616.479973pt;}
.y1dd{bottom:621.919973pt;}
.y17{bottom:622.559973pt;}
.y7b{bottom:624.479973pt;}
.y64{bottom:625.439973pt;}
.ye8{bottom:627.999973pt;}
.yd3{bottom:630.879973pt;}
.yb4{bottom:634.399973pt;}
.y143{bottom:635.359973pt;}
.y115{bottom:636.319973pt;}
.y16{bottom:636.639973pt;}
.y21c{bottom:637.279973pt;}
.y181{bottom:639.839973pt;}
.y1fb{bottom:640.479973pt;}
.y42{bottom:641.759973pt;}
.y23c{bottom:642.079973pt;}
.y199{bottom:642.399973pt;}
.y16a{bottom:643.679973pt;}
.y95{bottom:644.319973pt;}
.y139{bottom:646.559973pt;}
.y1dc{bottom:649.439973pt;}
.y15{bottom:650.399973pt;}
.y147{bottom:651.999973pt;}
.y63{bottom:652.959973pt;}
.yd2{bottom:658.399973pt;}
.yb3{bottom:662.239973pt;}
.y7a{bottom:663.199973pt;}
.y114{bottom:663.839973pt;}
.y14{bottom:664.159973pt;}
.y21b{bottom:664.799973pt;}
.y180{bottom:667.679973pt;}
.y1fa{bottom:667.999973pt;}
.y41{bottom:669.599973pt;}
.y198{bottom:670.239973pt;}
.y169{bottom:671.199973pt;}
.y94{bottom:671.839973pt;}
.y1db{bottom:676.959973pt;}
.y13{bottom:677.919973pt;}
.y146{bottom:679.519973pt;}
.y62{bottom:680.479973pt;}
.yd1{bottom:685.919973pt;}
.yb2{bottom:689.759973pt;}
.y12{bottom:691.679973pt;}
.y21a{bottom:692.319973pt;}
.y17f{bottom:695.199973pt;}
.y1f9{bottom:695.839973pt;}
.y40{bottom:697.119973pt;}
.y197{bottom:697.759973pt;}
.y93{bottom:699.359973pt;}
.y23b{bottom:699.679973pt;}
.y79{bottom:701.599973pt;}
.y168{bottom:702.879973pt;}
.y1da{bottom:704.479973pt;}
.y11{bottom:705.439973pt;}
.y145{bottom:707.359973pt;}
.y61{bottom:707.999973pt;}
.yd0{bottom:713.759973pt;}
.yb1{bottom:717.279973pt;}
.y10{bottom:719.199973pt;}
.y219{bottom:720.159973pt;}
.y3f{bottom:724.639973pt;}
.y92{bottom:726.879973pt;}
.y1f8{bottom:727.519973pt;}
.y1c2{bottom:729.439973pt;}
.y17e{bottom:730.079973pt;}
.y1d9{bottom:732.319973pt;}
.yf{bottom:732.959973pt;}
.y23a{bottom:733.599973pt;}
.y144{bottom:734.879973pt;}
.y60{bottom:735.839973pt;}
.ycf{bottom:741.279973pt;}
.yb0{bottom:744.799973pt;}
.y163{bottom:745.759973pt;}
.y113{bottom:746.719973pt;}
.ye{bottom:747.039973pt;}
.y218{bottom:747.679973pt;}
.y3e{bottom:752.159973pt;}
.y91{bottom:754.719973pt;}
.y1d8{bottom:759.839973pt;}
.yd{bottom:761.759973pt;}
.y5f{bottom:763.359973pt;}
.yce{bottom:768.799973pt;}
.yaf{bottom:772.639973pt;}
.y112{bottom:774.239973pt;}
.y1f7{bottom:775.199973pt;}
.y3d{bottom:779.999973pt;}
.yc{bottom:780.319973pt;}
.y90{bottom:782.239973pt;}
.y193{bottom:784.479973pt;}
.y1d7{bottom:789.279973pt;}
.y5e{bottom:790.879973pt;}
.ycd{bottom:796.319973pt;}
.yae{bottom:800.159973pt;}
.yb{bottom:800.479973pt;}
.y111{bottom:802.079973pt;}
.y1f6{bottom:802.399973pt;}
.y217{bottom:802.719973pt;}
.y3c{bottom:807.519973pt;}
.y8f{bottom:809.759973pt;}
.y5d{bottom:818.399973pt;}
.ya{bottom:820.319973pt;}
.ycc{bottom:824.159973pt;}
.yad{bottom:827.679973pt;}
.y110{bottom:829.599973pt;}
.y1f5{bottom:830.239973pt;}
.y216{bottom:830.559973pt;}
.y3b{bottom:835.039973pt;}
.y8e{bottom:837.279973pt;}
.y9{bottom:840.159973pt;}
.y5c{bottom:846.239973pt;}
.ycb{bottom:851.679973pt;}
.yac{bottom:855.199973pt;}
.y10f{bottom:857.119973pt;}
.y1f4{bottom:857.759973pt;}
.y215{bottom:858.079973pt;}
.y8{bottom:859.999973pt;}
.y3a{bottom:862.559973pt;}
.y8d{bottom:865.119973pt;}
.y5b{bottom:873.759973pt;}
.yca{bottom:879.199973pt;}
.y7{bottom:880.159973pt;}
.yab{bottom:883.039973pt;}
.y10e{bottom:884.639973pt;}
.y1f3{bottom:885.279973pt;}
.y214{bottom:885.599973pt;}
.y12f{bottom:887.519973pt;}
.y39{bottom:890.399973pt;}
.y8c{bottom:892.639973pt;}
.y6{bottom:899.679973pt;}
.y5a{bottom:901.279973pt;}
.yc9{bottom:906.719973pt;}
.yaa{bottom:910.559973pt;}
.y10d{bottom:912.479973pt;}
.y1f2{bottom:912.799973pt;}
.y213{bottom:915.679973pt;}
.y38{bottom:917.919973pt;}
.y5{bottom:918.559973pt;}
.y8b{bottom:920.159973pt;}
.y12e{bottom:921.439973pt;}
.y59{bottom:928.799973pt;}
.y4{bottom:938.399973pt;}
.yc8{bottom:939.039973pt;}
.y10c{bottom:939.999973pt;}
.y1f1{bottom:940.639973pt;}
.y37{bottom:945.439973pt;}
.y8a{bottom:946.399973pt;}
.y58{bottom:956.639973pt;}
.y3{bottom:956.959973pt;}
.y10b{bottom:958.239973pt;}
.y2{bottom:974.239973pt;}
.y36{bottom:977.759973pt;}
.y57{bottom:984.159973pt;}
.hb{height:18.560000pt;}
.h20{height:22.462500pt;}
.h1f{height:22.737500pt;}
.h1a{height:30.324375pt;}
.h17{height:30.982500pt;}
.h14{height:37.063125pt;}
.h1b{height:37.166250pt;}
.h13{height:37.867500pt;}
.h4{height:41.555625pt;}
.h21{height:41.934375pt;}
.h22{height:42.500000pt;}
.h9{height:43.375000pt;}
.h11{height:46.593750pt;}
.h15{height:47.047500pt;}
.h10{height:50.540625pt;}
.h6{height:56.156250pt;}
.hf{height:56.312500pt;}
.ha{height:56.843750pt;}
.he{height:57.375000pt;}
.h25{height:58.375000pt;}
.h16{height:60.191875pt;}
.h24{height:60.755000pt;}
.h5{height:61.391250pt;}
.h1c{height:61.503750pt;}
.h18{height:64.031250pt;}
.h23{height:65.141250pt;}
.h19{height:66.503125pt;}
.h12{height:67.307500pt;}
.h1e{height:69.135000pt;}
.h8{height:69.633750pt;}
.hd{height:75.033750pt;}
.hc{height:84.521250pt;}
.h3{height:93.219375pt;}
.h7{height:118.235000pt;}
.h1d{height:337.152000pt;}
.h2{height:1068.000000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:8.000000pt;}
.w2{width:769.320000pt;}
.w0{width:793.320000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:12.000000pt;}
.xa{left:63.680013pt;}
.x1b{left:82.546533pt;}
.x13{left:87.680013pt;}
.x1a{left:99.413413pt;}
.xb{left:109.312827pt;}
.x12{left:110.879880pt;}
.x7{left:112.313147pt;}
.x2{left:122.288133pt;}
.x20{left:129.066400pt;}
.x4{left:144.103200pt;}
.x8{left:160.946667pt;}
.x11{left:198.545600pt;}
.x32{left:211.154933pt;}
.x2e{left:212.498667pt;}
.x23{left:225.316000pt;}
.x19{left:243.660133pt;}
.xc{left:252.013067pt;}
.x1f{left:254.826800pt;}
.x5{left:259.200000pt;}
.x24{left:262.977867pt;}
.x1c{left:276.154933pt;}
.x21{left:279.493467pt;}
.x6{left:284.746667pt;}
.x18{left:292.451867pt;}
.x1e{left:302.415333pt;}
.x33{left:304.029867pt;}
.x10{left:306.362267pt;}
.x17{left:307.769467pt;}
.x2b{left:309.930933pt;}
.x26{left:313.832000pt;}
.x30{left:314.779867pt;}
.x31{left:316.936133pt;}
.x16{left:318.878933pt;}
.x14{left:321.826800pt;}
.x1d{left:325.389333pt;}
.x2a{left:327.769467pt;}
.x27{left:331.503867pt;}
.x2f{left:334.561200pt;}
.x22{left:336.628933pt;}
.x25{left:337.550800pt;}
.x2c{left:348.326800pt;}
.xf{left:353.721733pt;}
.x2d{left:355.457067pt;}
.x9{left:360.479733pt;}
.x29{left:381.760000pt;}
.x15{left:384.946533pt;}
.x3{left:394.013333pt;}
.x28{left:419.839867pt;}
.xd{left:432.280000pt;}
.xe{left:728.480000pt;}
}




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