
    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_5ee39e1081ff7a057c33c8f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_e998a10f05e2dccfe6d0d4f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901855;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_746fd18bc91e38a918409e6f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149333;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_07f57372cb14b2e1ad9fec36.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128000;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_e93bd4b4823e7c621cf1ca11.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.034222;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_c5d5a068c3be7f8a4cb27d01.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040889;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_724df8b6f99fb6ca9d8b11cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112889;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_2faffdad6152bfa2bf03c6cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.048889;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_b56e198dc4d1be111c306c0a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls29{letter-spacing:-1.008000px;}
.ls36{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.792000px;}
.ls20{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.648000px;}
.ls33{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls49{letter-spacing:-0.432600px;}
.ls1a{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.360000px;}
.ls52{letter-spacing:-0.334200px;}
.ls1{letter-spacing:-0.331800px;}
.ls3e{letter-spacing:-0.331200px;}
.ls68{letter-spacing:-0.330000px;}
.ls4a{letter-spacing:-0.310800px;}
.ls46{letter-spacing:-0.308400px;}
.ls2b{letter-spacing:-0.303600px;}
.ls11{letter-spacing:-0.288000px;}
.ls65{letter-spacing:-0.273600px;}
.ls67{letter-spacing:-0.229800px;}
.ls3c{letter-spacing:-0.229200px;}
.ls13{letter-spacing:-0.216000px;}
.ls69{letter-spacing:-0.180000px;}
.ls57{letter-spacing:-0.155400px;}
.ls25{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.129600px;}
.ls3{letter-spacing:-0.123600px;}
.ls4{letter-spacing:-0.118200px;}
.ls6c{letter-spacing:-0.100800px;}
.ls45{letter-spacing:-0.097800px;}
.ls14{letter-spacing:-0.072000px;}
.ls4e{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.009360px;}
.ls4c{letter-spacing:0.070560px;}
.ls12{letter-spacing:0.072000px;}
.ls53{letter-spacing:0.087120px;}
.ls24{letter-spacing:0.115200px;}
.ls35{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.121200px;}
.ls41{letter-spacing:0.122400px;}
.ls54{letter-spacing:0.129600px;}
.ls2d{letter-spacing:0.130800px;}
.ls10{letter-spacing:0.131040px;}
.lse{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.145440px;}
.lsf{letter-spacing:0.150000px;}
.ls5d{letter-spacing:0.166800px;}
.ls7{letter-spacing:0.169200px;}
.ls8{letter-spacing:0.186600px;}
.ls26{letter-spacing:0.192000px;}
.ls55{letter-spacing:0.202800px;}
.ls15{letter-spacing:0.216000px;}
.ls6a{letter-spacing:0.234000px;}
.ls61{letter-spacing:0.236880px;}
.lsa{letter-spacing:0.237000px;}
.ls2{letter-spacing:0.237600px;}
.lsc{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.295800px;}
.lsd{letter-spacing:0.295920px;}
.ls1e{letter-spacing:0.302400px;}
.ls48{letter-spacing:0.307200px;}
.ls27{letter-spacing:0.309600px;}
.ls6b{letter-spacing:0.324000px;}
.ls31{letter-spacing:0.336000px;}
.ls18{letter-spacing:0.360000px;}
.ls64{letter-spacing:0.396000px;}
.ls4b{letter-spacing:0.416400px;}
.ls1d{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.864000px;}
.ls4f{letter-spacing:0.936000px;}
.ls56{letter-spacing:0.956880px;}
.ls3f{letter-spacing:1.008000px;}
.ls44{letter-spacing:1.080000px;}
.ls62{letter-spacing:2.376000px;}
.ls66{letter-spacing:2.556000px;}
.ls5a{letter-spacing:3.096000px;}
.ls47{letter-spacing:3.116880px;}
.ls5b{letter-spacing:3.816000px;}
.ls38{letter-spacing:4.556880px;}
.ls28{letter-spacing:5.214240px;}
.ls32{letter-spacing:5.256000px;}
.ls3b{letter-spacing:5.276880px;}
.ls2a{letter-spacing:5.934240px;}
.ls3d{letter-spacing:5.976000px;}
.ls60{letter-spacing:5.996880px;}
.ls39{letter-spacing:6.696000px;}
.ls1c{letter-spacing:6.720000px;}
.ls5f{letter-spacing:7.436880px;}
.ls51{letter-spacing:8.061120px;}
.ls5c{letter-spacing:8.136000px;}
.ls5e{letter-spacing:8.160000px;}
.ls2e{letter-spacing:8.856000px;}
.ls40{letter-spacing:8.880000px;}
.ls59{letter-spacing:10.296000px;}
.ls30{letter-spacing:16.056000px;}
.ls63{letter-spacing:16.076880px;}
.ls1f{letter-spacing:16.776000px;}
.ls50{letter-spacing:18.145440px;}
.ls43{letter-spacing:757.145760px;}
.ls19{letter-spacing:769.385760px;}
.lsb{letter-spacing:781.625760px;}
.ls4d{letter-spacing:847.176000px;}
.ls22{letter-spacing:847.212000px;}
.ls58{letter-spacing:847.236000px;}
.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;}
}
.ws2a{word-spacing:-72.000000px;}
.ws26{word-spacing:-20.272080px;}
.ws27{word-spacing:-19.964880px;}
.ws28{word-spacing:-19.532280px;}
.ws2f{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.424000px;}
.ws10{word-spacing:-17.352000px;}
.wse{word-spacing:-17.280000px;}
.ws13{word-spacing:-17.208000px;}
.ws1e{word-spacing:-17.136000px;}
.wsc{word-spacing:-17.064000px;}
.ws1a{word-spacing:-16.992000px;}
.ws18{word-spacing:-16.920000px;}
.wsb{word-spacing:-16.848000px;}
.wsd{word-spacing:-16.776000px;}
.wsf{word-spacing:-16.704000px;}
.ws1d{word-spacing:-16.632000px;}
.ws35{word-spacing:-16.560000px;}
.ws36{word-spacing:-16.488000px;}
.ws20{word-spacing:-16.416000px;}
.ws12{word-spacing:-16.344000px;}
.ws1f{word-spacing:-16.128000px;}
.ws34{word-spacing:-16.056000px;}
.ws2{word-spacing:-14.400720px;}
.ws2e{word-spacing:-14.365920px;}
.ws8{word-spacing:-14.349720px;}
.ws7{word-spacing:-14.332320px;}
.ws6{word-spacing:-14.284320px;}
.ws9{word-spacing:-14.172480px;}
.ws16{word-spacing:-14.163120px;}
.ws3d{word-spacing:-14.062320px;}
.ws4{word-spacing:-14.044920px;}
.ws3{word-spacing:-14.039520px;}
.ws5{word-spacing:-14.033520px;}
.ws21{word-spacing:-13.933920px;}
.ws38{word-spacing:-13.933320px;}
.ws1{word-spacing:-13.831320px;}
.ws3c{word-spacing:-13.122000px;}
.ws3b{word-spacing:-13.032000px;}
.ws3a{word-spacing:-12.618000px;}
.ws11{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.060000px;}
.ws1c{word-spacing:-11.728680px;}
.ws31{word-spacing:-11.700000px;}
.ws32{word-spacing:-11.599680px;}
.ws23{word-spacing:-11.555280px;}
.ws14{word-spacing:-11.432880px;}
.ws2b{word-spacing:-11.406960px;}
.ws25{word-spacing:-11.124480px;}
.ws2c{word-spacing:-9.562920px;}
.ws33{word-spacing:-9.524160px;}
.ws1b{word-spacing:-9.345360px;}
.ws2d{word-spacing:-9.329760px;}
.ws15{word-spacing:-9.214560px;}
.ws24{word-spacing:-9.116760px;}
.ws30{word-spacing:-9.059160px;}
.ws37{word-spacing:-8.940960px;}
.ws29{word-spacing:-8.903760px;}
.ws39{word-spacing:-8.884560px;}
.ws22{word-spacing:-8.883360px;}
.ws19{word-spacing:-8.786880px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-12.697920px;}
._23{margin-left:-10.970640px;}
._2a{margin-left:-3.721920px;}
._5{margin-left:-1.008000px;}
._4{width:1.212000px;}
._6{width:2.316960px;}
._d{width:3.384000px;}
._7{width:4.691280px;}
._f{width:6.120000px;}
._b{width:7.128000px;}
._c{width:8.232000px;}
._13{width:9.241440px;}
._9{width:10.295280px;}
._e{width:11.736720px;}
._2{width:13.109760px;}
._14{width:14.352480px;}
._12{width:15.828000px;}
._11{width:18.108000px;}
._17{width:19.992000px;}
._15{width:21.384000px;}
._1e{width:22.392000px;}
._8{width:23.396160px;}
._21{width:25.200000px;}
._19{width:26.580000px;}
._26{width:27.780000px;}
._1d{width:28.800000px;}
._27{width:29.808000px;}
._1b{width:30.816000px;}
._1c{width:33.000000px;}
._24{width:35.064000px;}
._25{width:36.288000px;}
._29{width:43.212000px;}
._20{width:58.968000px;}
._1f{width:60.336000px;}
._28{width:77.820000px;}
._22{width:365.729760px;}
._16{width:376.889760px;}
._a{width:389.489760px;}
._1{width:402.089760px;}
._0{width:793.145760px;}
._18{width:844.311120px;}
._1a{width:847.212000px;}
._3{width:848.436000px;}
._2b{width:850.776000px;}
.fc2{color:rgb(112,48,160);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:3.600000px;}
.y6c{bottom:3.780000px;}
.y69{bottom:4.320000px;}
.ya3{bottom:7.380000px;}
.y2{bottom:41.076000px;}
.ya9{bottom:54.936000px;}
.y1{bottom:56.556000px;}
.y3{bottom:70.596000px;}
.yc8{bottom:88.416000px;}
.y158{bottom:88.596000px;}
.yfd{bottom:88.956000px;}
.y191{bottom:89.136000px;}
.y27{bottom:89.316000px;}
.y154{bottom:89.496000px;}
.y45{bottom:94.176000px;}
.yf9{bottom:95.976000px;}
.y8d{bottom:96.336000px;}
.y1c5{bottom:97.236000px;}
.y11c{bottom:97.956000px;}
.ycb{bottom:101.736000px;}
.y157{bottom:105.516000px;}
.y66{bottom:105.696000px;}
.y190{bottom:106.056000px;}
.y153{bottom:106.416000px;}
.yfc{bottom:106.776000px;}
.yc7{bottom:107.316000px;}
.yf8{bottom:108.216000px;}
.y26{bottom:109.116000px;}
.yee{bottom:114.876000px;}
.y8c{bottom:115.416000px;}
.y1c4{bottom:116.136000px;}
.y44{bottom:116.316000px;}
.y11b{bottom:120.456000px;}
.y156{bottom:122.436000px;}
.y18f{bottom:122.796000px;}
.y152{bottom:123.336000px;}
.yca{bottom:124.236000px;}
.y65{bottom:124.416000px;}
.y117{bottom:125.496000px;}
.yd0{bottom:126.036000px;}
.yed{bottom:127.116000px;}
.y25{bottom:128.736000px;}
.yfb{bottom:133.056000px;}
.yc6{bottom:133.596000px;}
.yf0{bottom:133.956000px;}
.y8b{bottom:134.496000px;}
.y1c3{bottom:134.856000px;}
.y43{bottom:135.936000px;}
.y16a{bottom:139.356000px;}
.y18e{bottom:139.716000px;}
.y155{bottom:139.896000px;}
.y151{bottom:140.256000px;}
.y112{bottom:142.956000px;}
.y64{bottom:143.316000px;}
.y116{bottom:144.396000px;}
.yf4{bottom:144.756000px;}
.yfa{bottom:145.296000px;}
.yc5{bottom:145.836000px;}
.yef{bottom:146.196000px;}
.yc9{bottom:146.736000px;}
.y24{bottom:148.356000px;}
.ycf{bottom:152.310000px;}
.y1c2{bottom:153.570000px;}
.y8a{bottom:153.750000px;}
.y42{bottom:155.550000px;}
.y169{bottom:156.090000px;}
.y18d{bottom:156.630000px;}
.y150{bottom:156.990000px;}
.y63{bottom:162.030000px;}
.yce{bottom:163.470000px;}
.yf5{bottom:164.550000px;}
.yec{bottom:165.450000px;}
.y23{bottom:168.150000px;}
.yc4{bottom:169.230000px;}
.yf7{bottom:171.030000px;}
.y1c1{bottom:172.290000px;}
.y89{bottom:172.830000px;}
.y168{bottom:173.010000px;}
.y18c{bottom:173.550000px;}
.y14f{bottom:173.910000px;}
.y41{bottom:175.350000px;}
.y62{bottom:181.470000px;}
.yf3{bottom:182.190000px;}
.yf6{bottom:183.270000px;}
.y115{bottom:184.710000px;}
.y22{bottom:187.770000px;}
.yeb{bottom:187.950000px;}
.y119{bottom:188.850000px;}
.ycd{bottom:189.750000px;}
.y167{bottom:189.930000px;}
.y18b{bottom:190.290000px;}
.y14e{bottom:190.830000px;}
.y1c0{bottom:191.010000px;}
.yc3{bottom:191.730000px;}
.y88{bottom:191.910000px;}
.y40{bottom:194.970000px;}
.y110{bottom:201.090000px;}
.ycc{bottom:201.990000px;}
.y61{bottom:203.970000px;}
.y166{bottom:206.850000px;}
.y18a{bottom:207.210000px;}
.y21{bottom:207.570000px;}
.y14d{bottom:207.750000px;}
.yf2{bottom:208.650000px;}
.y1bf{bottom:209.730000px;}
.yea{bottom:210.450000px;}
.y87{bottom:210.990000px;}
.yc2{bottom:214.230000px;}
.y3f{bottom:214.770000px;}
.y12e{bottom:215.130000px;}
.y10f{bottom:219.810000px;}
.yf1{bottom:220.710000px;}
.y165{bottom:223.590000px;}
.y189{bottom:224.130000px;}
.y14c{bottom:224.490000px;}
.y60{bottom:226.470000px;}
.y20{bottom:227.190000px;}
.y114{bottom:227.370000px;}
.y1a7{bottom:227.775000px;}
.y1be{bottom:228.675000px;}
.y86{bottom:230.295000px;}
.y12d{bottom:232.095000px;}
.ye9{bottom:232.995000px;}
.y3e{bottom:234.435000px;}
.yc1{bottom:236.775000px;}
.y10e{bottom:238.575000px;}
.y113{bottom:239.655000px;}
.y164{bottom:240.555000px;}
.y123{bottom:240.735000px;}
.y188{bottom:241.095000px;}
.y14b{bottom:241.455000px;}
.y1a6{bottom:243.255000px;}
.y1f{bottom:246.855000px;}
.y1bd{bottom:247.395000px;}
.y5f{bottom:249.015000px;}
.y85{bottom:249.375000px;}
.y3d{bottom:254.055000px;}
.ye8{bottom:255.495000px;}
.y10d{bottom:257.295000px;}
.y163{bottom:257.475000px;}
.y187{bottom:257.835000px;}
.y14a{bottom:258.375000px;}
.y1a5{bottom:258.915000px;}
.yc0{bottom:259.275000px;}
.y122{bottom:262.695000px;}
.y12c{bottom:265.935000px;}
.y1bc{bottom:266.115000px;}
.y1e{bottom:266.655000px;}
.y84{bottom:268.455000px;}
.y5e{bottom:271.515000px;}
.y3c{bottom:273.855000px;}
.y162{bottom:274.395000px;}
.y186{bottom:274.755000px;}
.y149{bottom:275.295000px;}
.y10c{bottom:276.015000px;}
.ye7{bottom:277.995000px;}
.y121{bottom:280.875000px;}
.ybf{bottom:281.775000px;}
.y12b{bottom:282.675000px;}
.y1bb{bottom:284.835000px;}
.y1d{bottom:286.275000px;}
.y83{bottom:287.535000px;}
.y1a4{bottom:290.415000px;}
.y161{bottom:291.135000px;}
.y185{bottom:291.675000px;}
.y148{bottom:292.035000px;}
.y3b{bottom:293.475000px;}
.y5d{bottom:294.015000px;}
.ya8{bottom:294.735000px;}
.y120{bottom:298.875000px;}
.y12a{bottom:299.595000px;}
.ye6{bottom:300.495000px;}
.y118{bottom:301.395000px;}
.y1ba{bottom:303.555000px;}
.ybe{bottom:304.275000px;}
.y1c{bottom:306.075000px;}
.y82{bottom:306.795000px;}
.y160{bottom:308.055000px;}
.y184{bottom:308.595000px;}
.y147{bottom:308.955000px;}
.y3a{bottom:313.275000px;}
.y10b{bottom:313.635000px;}
.ya7{bottom:313.815000px;}
.y5c{bottom:316.515000px;}
.y11f{bottom:317.055000px;}
.y1b9{bottom:322.455000px;}
.ye5{bottom:322.995000px;}
.y15f{bottom:324.975000px;}
.y183{bottom:325.335000px;}
.y1b{bottom:325.695000px;}
.y81{bottom:325.875000px;}
.ybd{bottom:326.775000px;}
.y10a{bottom:332.355000px;}
.ya6{bottom:333.075000px;}
.y129{bottom:333.435000px;}
.y39{bottom:334.875000px;}
.y11e{bottom:335.235000px;}
.y5b{bottom:339.015000px;}
.y1b8{bottom:341.175000px;}
.y15e{bottom:341.895000px;}
.y182{bottom:342.255000px;}
.y146{bottom:342.795000px;}
.y80{bottom:344.955000px;}
.y1a{bottom:345.315000px;}
.ye4{bottom:345.495000px;}
.ybc{bottom:349.275000px;}
.y128{bottom:350.175000px;}
.y109{bottom:351.075000px;}
.ya5{bottom:352.155000px;}
.y11d{bottom:353.235000px;}
.y15d{bottom:358.815000px;}
.y181{bottom:359.175000px;}
.y145{bottom:359.715000px;}
.y1b7{bottom:359.895000px;}
.y5a{bottom:361.515000px;}
.y7f{bottom:364.215000px;}
.y38{bottom:364.935000px;}
.y19{bottom:365.115000px;}
.y127{bottom:367.095000px;}
.ye3{bottom:367.995000px;}
.y108{bottom:369.795000px;}
.ya4{bottom:370.875000px;}
.ybb{bottom:371.775000px;}
.y15c{bottom:375.555000px;}
.y180{bottom:376.095000px;}
.y144{bottom:376.455000px;}
.y1b6{bottom:378.615000px;}
.y7e{bottom:383.295000px;}
.y59{bottom:384.015000px;}
.y18{bottom:384.735000px;}
.y107{bottom:388.515000px;}
.ya2{bottom:389.955000px;}
.ye2{bottom:390.495000px;}
.y37{bottom:392.475000px;}
.y17f{bottom:393.015000px;}
.y143{bottom:393.375000px;}
.yba{bottom:394.275000px;}
.y1b5{bottom:397.335000px;}
.y126{bottom:401.295000px;}
.y7d{bottom:402.375000px;}
.y17{bottom:404.355000px;}
.y58{bottom:406.515000px;}
.y106{bottom:407.415000px;}
.y15b{bottom:409.395000px;}
.y17e{bottom:409.755000px;}
.y142{bottom:410.295000px;}
.y36{bottom:411.195000px;}
.ya1{bottom:412.455000px;}
.ye1{bottom:412.995000px;}
.y1b4{bottom:416.055000px;}
.yb9{bottom:416.775000px;}
.y125{bottom:421.125000px;}
.y7c{bottom:421.485000px;}
.y16{bottom:424.185000px;}
.y105{bottom:426.165000px;}
.y15a{bottom:426.345000px;}
.y17d{bottom:426.705000px;}
.y141{bottom:427.245000px;}
.y57{bottom:429.045000px;}
.ya0{bottom:431.745000px;}
.y1b3{bottom:434.985000px;}
.ye0{bottom:435.525000px;}
.y35{bottom:437.505000px;}
.yb8{bottom:439.305000px;}
.y7b{bottom:440.745000px;}
.y1a3{bottom:443.085000px;}
.y159{bottom:443.625000px;}
.y15{bottom:443.805000px;}
.y140{bottom:443.985000px;}
.y104{bottom:444.885000px;}
.y9f{bottom:450.825000px;}
.y56{bottom:451.545000px;}
.y1b2{bottom:453.705000px;}
.ydf{bottom:458.205000px;}
.y7a{bottom:459.825000px;}
.y1a2{bottom:460.005000px;}
.y124{bottom:460.545000px;}
.y13f{bottom:460.905000px;}
.yb7{bottom:461.805000px;}
.y14{bottom:463.605000px;}
.y9e{bottom:469.905000px;}
.y1b1{bottom:472.425000px;}
.y55{bottom:474.045000px;}
.y1a1{bottom:476.925000px;}
.y17c{bottom:477.285000px;}
.y13e{bottom:477.825000px;}
.y79{bottom:478.905000px;}
.yde{bottom:480.705000px;}
.y103{bottom:482.325000px;}
.y13{bottom:483.225000px;}
.yb6{bottom:484.305000px;}
.y9d{bottom:488.985000px;}
.y34{bottom:489.885000px;}
.y1b0{bottom:491.145000px;}
.y1a0{bottom:493.845000px;}
.y17b{bottom:494.205000px;}
.y13d{bottom:494.745000px;}
.y54{bottom:496.545000px;}
.y78{bottom:497.985000px;}
.y102{bottom:501.225000px;}
.y12{bottom:502.845000px;}
.ydd{bottom:503.205000px;}
.yb5{bottom:506.805000px;}
.y9c{bottom:508.245000px;}
.y1af{bottom:509.865000px;}
.y19f{bottom:510.585000px;}
.y17a{bottom:511.125000px;}
.y13c{bottom:511.485000px;}
.y33{bottom:516.165000px;}
.y77{bottom:517.245000px;}
.y53{bottom:519.045000px;}
.y101{bottom:519.945000px;}
.y11{bottom:522.645000px;}
.ydc{bottom:525.705000px;}
.y9b{bottom:527.325000px;}
.y19e{bottom:527.505000px;}
.y179{bottom:528.045000px;}
.y13b{bottom:528.405000px;}
.y1ae{bottom:528.765000px;}
.yb4{bottom:529.305000px;}
.y76{bottom:536.325000px;}
.y100{bottom:538.665000px;}
.y52{bottom:541.545000px;}
.y10{bottom:542.265000px;}
.y32{bottom:543.885000px;}
.y19d{bottom:544.425000px;}
.y178{bottom:544.785000px;}
.y13a{bottom:545.325000px;}
.y9a{bottom:546.405000px;}
.y1ad{bottom:547.485000px;}
.ydb{bottom:548.205000px;}
.yb3{bottom:551.805000px;}
.y75{bottom:555.405000px;}
.y19c{bottom:561.345000px;}
.y177{bottom:561.705000px;}
.yf{bottom:562.065000px;}
.y139{bottom:562.245000px;}
.y51{bottom:563.325000px;}
.yff{bottom:564.945000px;}
.y99{bottom:565.485000px;}
.y1ac{bottom:566.205000px;}
.yda{bottom:570.705000px;}
.yb2{bottom:574.305000px;}
.y74{bottom:574.485000px;}
.yfe{bottom:577.185000px;}
.y31{bottom:577.545000px;}
.y19b{bottom:578.085000px;}
.y176{bottom:578.625000px;}
.y138{bottom:578.985000px;}
.ye{bottom:581.685000px;}
.y50{bottom:582.225000px;}
.y98{bottom:584.745000px;}
.y1ab{bottom:584.925000px;}
.yd9{bottom:593.205000px;}
.y73{bottom:593.745000px;}
.yd1{bottom:593.925000px;}
.y19a{bottom:595.005000px;}
.y175{bottom:595.545000px;}
.y137{bottom:595.905000px;}
.yb1{bottom:596.805000px;}
.y4f{bottom:600.945000px;}
.yd{bottom:601.305000px;}
.y1aa{bottom:603.645000px;}
.y97{bottom:603.825000px;}
.y30{bottom:608.730000px;}
.y199{bottom:611.970000px;}
.y174{bottom:612.510000px;}
.y72{bottom:612.870000px;}
.yd8{bottom:615.750000px;}
.yb0{bottom:619.530000px;}
.y4e{bottom:619.710000px;}
.yc{bottom:621.150000px;}
.y1a9{bottom:622.590000px;}
.y96{bottom:622.950000px;}
.y2f{bottom:628.350000px;}
.y198{bottom:628.890000px;}
.y173{bottom:629.250000px;}
.y136{bottom:629.790000px;}
.y71{bottom:631.950000px;}
.yd7{bottom:638.250000px;}
.y4d{bottom:639.150000px;}
.yb{bottom:640.770000px;}
.y1a8{bottom:641.310000px;}
.yaf{bottom:642.030000px;}
.y95{bottom:642.210000px;}
.y197{bottom:645.810000px;}
.y172{bottom:646.170000px;}
.y135{bottom:646.710000px;}
.y2e{bottom:647.970000px;}
.y70{bottom:651.210000px;}
.ya{bottom:660.570000px;}
.yd6{bottom:660.750000px;}
.y4c{bottom:661.110000px;}
.y94{bottom:661.290000px;}
.y196{bottom:662.550000px;}
.y171{bottom:663.090000px;}
.y134{bottom:663.450000px;}
.yae{bottom:664.530000px;}
.y2d{bottom:667.770000px;}
.y6f{bottom:670.290000px;}
.y195{bottom:679.470000px;}
.y170{bottom:680.010000px;}
.y9{bottom:680.190000px;}
.y93{bottom:680.370000px;}
.y4b{bottom:680.910000px;}
.yd5{bottom:683.250000px;}
.yad{bottom:687.030000px;}
.y2c{bottom:687.390000px;}
.y6d{bottom:689.370000px;}
.y1cb{bottom:693.870000px;}
.y194{bottom:696.390000px;}
.y16f{bottom:696.750000px;}
.y133{bottom:697.290000px;}
.y92{bottom:699.450000px;}
.y8{bottom:699.810000px;}
.y4a{bottom:700.530000px;}
.yd4{bottom:705.750000px;}
.y2b{bottom:707.190000px;}
.y6b{bottom:708.450000px;}
.yac{bottom:709.530000px;}
.y1ca{bottom:711.150000px;}
.y193{bottom:713.310000px;}
.y16e{bottom:713.670000px;}
.y132{bottom:714.210000px;}
.y91{bottom:718.710000px;}
.y7{bottom:719.970000px;}
.y49{bottom:720.150000px;}
.y2a{bottom:726.810000px;}
.y6a{bottom:727.350000px;}
.yd3{bottom:728.250000px;}
.y1c9{bottom:728.430000px;}
.y192{bottom:730.050000px;}
.y16d{bottom:730.590000px;}
.y131{bottom:730.950000px;}
.yab{bottom:732.030000px;}
.y90{bottom:737.790000px;}
.y48{bottom:739.950000px;}
.y6{bottom:742.650000px;}
.y1c8{bottom:745.710000px;}
.y16c{bottom:747.510000px;}
.y29{bottom:747.870000px;}
.y68{bottom:750.210000px;}
.yd2{bottom:750.750000px;}
.y11a{bottom:751.650000px;}
.y111{bottom:753.810000px;}
.yaa{bottom:754.530000px;}
.y8f{bottom:756.870000px;}
.y47{bottom:759.570000px;}
.y1c7{bottom:761.190000px;}
.y5{bottom:762.810000px;}
.y16b{bottom:764.250000px;}
.y130{bottom:764.790000px;}
.y28{bottom:774.150000px;}
.y8e{bottom:775.950000px;}
.y67{bottom:777.030000px;}
.y46{bottom:779.370000px;}
.y1c6{bottom:780.090000px;}
.y4{bottom:780.990000px;}
.y12f{bottom:781.710000px;}
.h10{height:18.720000px;}
.h11{height:18.756000px;}
.hf{height:18.900000px;}
.h12{height:18.936000px;}
.he{height:22.500000px;}
.h14{height:32.935680px;}
.h3{height:33.683203px;}
.h1a{height:35.375360px;}
.h1e{height:37.705078px;}
.h16{height:38.671172px;}
.h1f{height:41.726953px;}
.h4{height:44.240625px;}
.h1d{height:44.808000px;}
.ha{height:45.744000px;}
.h5{height:50.273438px;}
.hc{height:50.623360px;}
.h7{height:53.672960px;}
.h18{height:56.112640px;}
.h1b{height:58.368000px;}
.h17{height:59.439023px;}
.hd{height:59.744000px;}
.h6{height:60.992000px;}
.h19{height:63.151680px;}
.h15{height:63.175680px;}
.h1c{height:63.295680px;}
.h2{height:65.884219px;}
.h8{height:71.360640px;}
.h13{height:73.984640px;}
.hb{height:81.119360px;}
.h9{height:91.488000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w3{width:39.420000px;}
.w2{width:390.885000px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x17{left:9.360000px;}
.x16{left:10.800000px;}
.x15{left:13.500000px;}
.x14{left:15.480000px;}
.x13{left:16.740000px;}
.x12{left:18.900000px;}
.x11{left:20.880000px;}
.x10{left:31.320000px;}
.x19{left:84.996000px;}
.xd{left:98.316000px;}
.x3{left:106.416000px;}
.x1{left:119.196000px;}
.x18{left:127.656000px;}
.x7{left:133.596000px;}
.x9{left:143.856000px;}
.xa{left:169.590000px;}
.x6{left:193.575000px;}
.x5{left:230.115000px;}
.x8{left:247.215000px;}
.x4{left:314.745000px;}
.x2{left:321.225000px;}
.xb{left:387.105000px;}
.xc{left:404.565000px;}
.xf{left:489.210000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls36{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls33{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls49{letter-spacing:-0.384533pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls52{letter-spacing:-0.297067pt;}
.ls1{letter-spacing:-0.294933pt;}
.ls3e{letter-spacing:-0.294400pt;}
.ls68{letter-spacing:-0.293333pt;}
.ls4a{letter-spacing:-0.276267pt;}
.ls46{letter-spacing:-0.274133pt;}
.ls2b{letter-spacing:-0.269867pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls65{letter-spacing:-0.243200pt;}
.ls67{letter-spacing:-0.204267pt;}
.ls3c{letter-spacing:-0.203733pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls69{letter-spacing:-0.160000pt;}
.ls57{letter-spacing:-0.138133pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.115200pt;}
.ls3{letter-spacing:-0.109867pt;}
.ls4{letter-spacing:-0.105067pt;}
.ls6c{letter-spacing:-0.089600pt;}
.ls45{letter-spacing:-0.086933pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls4e{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.008320pt;}
.ls4c{letter-spacing:0.062720pt;}
.ls12{letter-spacing:0.064000pt;}
.ls53{letter-spacing:0.077440pt;}
.ls24{letter-spacing:0.102400pt;}
.ls35{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.107733pt;}
.ls41{letter-spacing:0.108800pt;}
.ls54{letter-spacing:0.115200pt;}
.ls2d{letter-spacing:0.116267pt;}
.ls10{letter-spacing:0.116480pt;}
.lse{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.129280pt;}
.lsf{letter-spacing:0.133333pt;}
.ls5d{letter-spacing:0.148267pt;}
.ls7{letter-spacing:0.150400pt;}
.ls8{letter-spacing:0.165867pt;}
.ls26{letter-spacing:0.170667pt;}
.ls55{letter-spacing:0.180267pt;}
.ls15{letter-spacing:0.192000pt;}
.ls6a{letter-spacing:0.208000pt;}
.ls61{letter-spacing:0.210560pt;}
.lsa{letter-spacing:0.210667pt;}
.ls2{letter-spacing:0.211200pt;}
.lsc{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.262933pt;}
.lsd{letter-spacing:0.263040pt;}
.ls1e{letter-spacing:0.268800pt;}
.ls48{letter-spacing:0.273067pt;}
.ls27{letter-spacing:0.275200pt;}
.ls6b{letter-spacing:0.288000pt;}
.ls31{letter-spacing:0.298667pt;}
.ls18{letter-spacing:0.320000pt;}
.ls64{letter-spacing:0.352000pt;}
.ls4b{letter-spacing:0.370133pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.768000pt;}
.ls4f{letter-spacing:0.832000pt;}
.ls56{letter-spacing:0.850560pt;}
.ls3f{letter-spacing:0.896000pt;}
.ls44{letter-spacing:0.960000pt;}
.ls62{letter-spacing:2.112000pt;}
.ls66{letter-spacing:2.272000pt;}
.ls5a{letter-spacing:2.752000pt;}
.ls47{letter-spacing:2.770560pt;}
.ls5b{letter-spacing:3.392000pt;}
.ls38{letter-spacing:4.050560pt;}
.ls28{letter-spacing:4.634880pt;}
.ls32{letter-spacing:4.672000pt;}
.ls3b{letter-spacing:4.690560pt;}
.ls2a{letter-spacing:5.274880pt;}
.ls3d{letter-spacing:5.312000pt;}
.ls60{letter-spacing:5.330560pt;}
.ls39{letter-spacing:5.952000pt;}
.ls1c{letter-spacing:5.973333pt;}
.ls5f{letter-spacing:6.610560pt;}
.ls51{letter-spacing:7.165440pt;}
.ls5c{letter-spacing:7.232000pt;}
.ls5e{letter-spacing:7.253333pt;}
.ls2e{letter-spacing:7.872000pt;}
.ls40{letter-spacing:7.893333pt;}
.ls59{letter-spacing:9.152000pt;}
.ls30{letter-spacing:14.272000pt;}
.ls63{letter-spacing:14.290560pt;}
.ls1f{letter-spacing:14.912000pt;}
.ls50{letter-spacing:16.129280pt;}
.ls43{letter-spacing:673.018453pt;}
.ls19{letter-spacing:683.898453pt;}
.lsb{letter-spacing:694.778453pt;}
.ls4d{letter-spacing:753.045333pt;}
.ls22{letter-spacing:753.077333pt;}
.ls58{letter-spacing:753.098667pt;}
.ws2a{word-spacing:-64.000000pt;}
.ws26{word-spacing:-18.019627pt;}
.ws27{word-spacing:-17.746560pt;}
.ws28{word-spacing:-17.362027pt;}
.ws2f{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.488000pt;}
.ws10{word-spacing:-15.424000pt;}
.wse{word-spacing:-15.360000pt;}
.ws13{word-spacing:-15.296000pt;}
.ws1e{word-spacing:-15.232000pt;}
.wsc{word-spacing:-15.168000pt;}
.ws1a{word-spacing:-15.104000pt;}
.ws18{word-spacing:-15.040000pt;}
.wsb{word-spacing:-14.976000pt;}
.wsd{word-spacing:-14.912000pt;}
.wsf{word-spacing:-14.848000pt;}
.ws1d{word-spacing:-14.784000pt;}
.ws35{word-spacing:-14.720000pt;}
.ws36{word-spacing:-14.656000pt;}
.ws20{word-spacing:-14.592000pt;}
.ws12{word-spacing:-14.528000pt;}
.ws1f{word-spacing:-14.336000pt;}
.ws34{word-spacing:-14.272000pt;}
.ws2{word-spacing:-12.800640pt;}
.ws2e{word-spacing:-12.769707pt;}
.ws8{word-spacing:-12.755307pt;}
.ws7{word-spacing:-12.739840pt;}
.ws6{word-spacing:-12.697173pt;}
.ws9{word-spacing:-12.597760pt;}
.ws16{word-spacing:-12.589440pt;}
.ws3d{word-spacing:-12.499840pt;}
.ws4{word-spacing:-12.484373pt;}
.ws3{word-spacing:-12.479573pt;}
.ws5{word-spacing:-12.474240pt;}
.ws21{word-spacing:-12.385707pt;}
.ws38{word-spacing:-12.385173pt;}
.ws1{word-spacing:-12.294507pt;}
.ws3c{word-spacing:-11.664000pt;}
.ws3b{word-spacing:-11.584000pt;}
.ws3a{word-spacing:-11.216000pt;}
.ws11{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws1c{word-spacing:-10.425493pt;}
.ws31{word-spacing:-10.400000pt;}
.ws32{word-spacing:-10.310827pt;}
.ws23{word-spacing:-10.271360pt;}
.ws14{word-spacing:-10.162560pt;}
.ws2b{word-spacing:-10.139520pt;}
.ws25{word-spacing:-9.888427pt;}
.ws2c{word-spacing:-8.500373pt;}
.ws33{word-spacing:-8.465920pt;}
.ws1b{word-spacing:-8.306987pt;}
.ws2d{word-spacing:-8.293120pt;}
.ws15{word-spacing:-8.190720pt;}
.ws24{word-spacing:-8.103787pt;}
.ws30{word-spacing:-8.052587pt;}
.ws37{word-spacing:-7.947520pt;}
.ws29{word-spacing:-7.914453pt;}
.ws39{word-spacing:-7.897387pt;}
.ws22{word-spacing:-7.896320pt;}
.ws19{word-spacing:-7.810560pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-11.287040pt;}
._23{margin-left:-9.751680pt;}
._2a{margin-left:-3.308373pt;}
._5{margin-left:-0.896000pt;}
._4{width:1.077333pt;}
._6{width:2.059520pt;}
._d{width:3.008000pt;}
._7{width:4.170027pt;}
._f{width:5.440000pt;}
._b{width:6.336000pt;}
._c{width:7.317333pt;}
._13{width:8.214613pt;}
._9{width:9.151360pt;}
._e{width:10.432640pt;}
._2{width:11.653120pt;}
._14{width:12.757760pt;}
._12{width:14.069333pt;}
._11{width:16.096000pt;}
._17{width:17.770667pt;}
._15{width:19.008000pt;}
._1e{width:19.904000pt;}
._8{width:20.796587pt;}
._21{width:22.400000pt;}
._19{width:23.626667pt;}
._26{width:24.693333pt;}
._1d{width:25.600000pt;}
._27{width:26.496000pt;}
._1b{width:27.392000pt;}
._1c{width:29.333333pt;}
._24{width:31.168000pt;}
._25{width:32.256000pt;}
._29{width:38.410667pt;}
._20{width:52.416000pt;}
._1f{width:53.632000pt;}
._28{width:69.173333pt;}
._22{width:325.093120pt;}
._16{width:335.013120pt;}
._a{width:346.213120pt;}
._1{width:357.413120pt;}
._0{width:705.018453pt;}
._18{width:750.498773pt;}
._1a{width:753.077333pt;}
._3{width:754.165333pt;}
._2b{width:756.245333pt;}
.fs9{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:3.200000pt;}
.y6c{bottom:3.360000pt;}
.y69{bottom:3.840000pt;}
.ya3{bottom:6.560000pt;}
.y2{bottom:36.512000pt;}
.ya9{bottom:48.832000pt;}
.y1{bottom:50.272000pt;}
.y3{bottom:62.752000pt;}
.yc8{bottom:78.592000pt;}
.y158{bottom:78.752000pt;}
.yfd{bottom:79.072000pt;}
.y191{bottom:79.232000pt;}
.y27{bottom:79.392000pt;}
.y154{bottom:79.552000pt;}
.y45{bottom:83.712000pt;}
.yf9{bottom:85.312000pt;}
.y8d{bottom:85.632000pt;}
.y1c5{bottom:86.432000pt;}
.y11c{bottom:87.072000pt;}
.ycb{bottom:90.432000pt;}
.y157{bottom:93.792000pt;}
.y66{bottom:93.952000pt;}
.y190{bottom:94.272000pt;}
.y153{bottom:94.592000pt;}
.yfc{bottom:94.912000pt;}
.yc7{bottom:95.392000pt;}
.yf8{bottom:96.192000pt;}
.y26{bottom:96.992000pt;}
.yee{bottom:102.112000pt;}
.y8c{bottom:102.592000pt;}
.y1c4{bottom:103.232000pt;}
.y44{bottom:103.392000pt;}
.y11b{bottom:107.072000pt;}
.y156{bottom:108.832000pt;}
.y18f{bottom:109.152000pt;}
.y152{bottom:109.632000pt;}
.yca{bottom:110.432000pt;}
.y65{bottom:110.592000pt;}
.y117{bottom:111.552000pt;}
.yd0{bottom:112.032000pt;}
.yed{bottom:112.992000pt;}
.y25{bottom:114.432000pt;}
.yfb{bottom:118.272000pt;}
.yc6{bottom:118.752000pt;}
.yf0{bottom:119.072000pt;}
.y8b{bottom:119.552000pt;}
.y1c3{bottom:119.872000pt;}
.y43{bottom:120.832000pt;}
.y16a{bottom:123.872000pt;}
.y18e{bottom:124.192000pt;}
.y155{bottom:124.352000pt;}
.y151{bottom:124.672000pt;}
.y112{bottom:127.072000pt;}
.y64{bottom:127.392000pt;}
.y116{bottom:128.352000pt;}
.yf4{bottom:128.672000pt;}
.yfa{bottom:129.152000pt;}
.yc5{bottom:129.632000pt;}
.yef{bottom:129.952000pt;}
.yc9{bottom:130.432000pt;}
.y24{bottom:131.872000pt;}
.ycf{bottom:135.386667pt;}
.y1c2{bottom:136.506667pt;}
.y8a{bottom:136.666667pt;}
.y42{bottom:138.266667pt;}
.y169{bottom:138.746667pt;}
.y18d{bottom:139.226667pt;}
.y150{bottom:139.546667pt;}
.y63{bottom:144.026667pt;}
.yce{bottom:145.306667pt;}
.yf5{bottom:146.266667pt;}
.yec{bottom:147.066667pt;}
.y23{bottom:149.466667pt;}
.yc4{bottom:150.426667pt;}
.yf7{bottom:152.026667pt;}
.y1c1{bottom:153.146667pt;}
.y89{bottom:153.626667pt;}
.y168{bottom:153.786667pt;}
.y18c{bottom:154.266667pt;}
.y14f{bottom:154.586667pt;}
.y41{bottom:155.866667pt;}
.y62{bottom:161.306667pt;}
.yf3{bottom:161.946667pt;}
.yf6{bottom:162.906667pt;}
.y115{bottom:164.186667pt;}
.y22{bottom:166.906667pt;}
.yeb{bottom:167.066667pt;}
.y119{bottom:167.866667pt;}
.ycd{bottom:168.666667pt;}
.y167{bottom:168.826667pt;}
.y18b{bottom:169.146667pt;}
.y14e{bottom:169.626667pt;}
.y1c0{bottom:169.786667pt;}
.yc3{bottom:170.426667pt;}
.y88{bottom:170.586667pt;}
.y40{bottom:173.306667pt;}
.y110{bottom:178.746667pt;}
.ycc{bottom:179.546667pt;}
.y61{bottom:181.306667pt;}
.y166{bottom:183.866667pt;}
.y18a{bottom:184.186667pt;}
.y21{bottom:184.506667pt;}
.y14d{bottom:184.666667pt;}
.yf2{bottom:185.466667pt;}
.y1bf{bottom:186.426667pt;}
.yea{bottom:187.066667pt;}
.y87{bottom:187.546667pt;}
.yc2{bottom:190.426667pt;}
.y3f{bottom:190.906667pt;}
.y12e{bottom:191.226667pt;}
.y10f{bottom:195.386667pt;}
.yf1{bottom:196.186667pt;}
.y165{bottom:198.746667pt;}
.y189{bottom:199.226667pt;}
.y14c{bottom:199.546667pt;}
.y60{bottom:201.306667pt;}
.y20{bottom:201.946667pt;}
.y114{bottom:202.106667pt;}
.y1a7{bottom:202.466667pt;}
.y1be{bottom:203.266667pt;}
.y86{bottom:204.706667pt;}
.y12d{bottom:206.306667pt;}
.ye9{bottom:207.106667pt;}
.y3e{bottom:208.386667pt;}
.yc1{bottom:210.466667pt;}
.y10e{bottom:212.066667pt;}
.y113{bottom:213.026667pt;}
.y164{bottom:213.826667pt;}
.y123{bottom:213.986667pt;}
.y188{bottom:214.306667pt;}
.y14b{bottom:214.626667pt;}
.y1a6{bottom:216.226667pt;}
.y1f{bottom:219.426667pt;}
.y1bd{bottom:219.906667pt;}
.y5f{bottom:221.346667pt;}
.y85{bottom:221.666667pt;}
.y3d{bottom:225.826667pt;}
.ye8{bottom:227.106667pt;}
.y10d{bottom:228.706667pt;}
.y163{bottom:228.866667pt;}
.y187{bottom:229.186667pt;}
.y14a{bottom:229.666667pt;}
.y1a5{bottom:230.146667pt;}
.yc0{bottom:230.466667pt;}
.y122{bottom:233.506667pt;}
.y12c{bottom:236.386667pt;}
.y1bc{bottom:236.546667pt;}
.y1e{bottom:237.026667pt;}
.y84{bottom:238.626667pt;}
.y5e{bottom:241.346667pt;}
.y3c{bottom:243.426667pt;}
.y162{bottom:243.906667pt;}
.y186{bottom:244.226667pt;}
.y149{bottom:244.706667pt;}
.y10c{bottom:245.346667pt;}
.ye7{bottom:247.106667pt;}
.y121{bottom:249.666667pt;}
.ybf{bottom:250.466667pt;}
.y12b{bottom:251.266667pt;}
.y1bb{bottom:253.186667pt;}
.y1d{bottom:254.466667pt;}
.y83{bottom:255.586667pt;}
.y1a4{bottom:258.146667pt;}
.y161{bottom:258.786667pt;}
.y185{bottom:259.266667pt;}
.y148{bottom:259.586667pt;}
.y3b{bottom:260.866667pt;}
.y5d{bottom:261.346667pt;}
.ya8{bottom:261.986667pt;}
.y120{bottom:265.666667pt;}
.y12a{bottom:266.306667pt;}
.ye6{bottom:267.106667pt;}
.y118{bottom:267.906667pt;}
.y1ba{bottom:269.826667pt;}
.ybe{bottom:270.466667pt;}
.y1c{bottom:272.066667pt;}
.y82{bottom:272.706667pt;}
.y160{bottom:273.826667pt;}
.y184{bottom:274.306667pt;}
.y147{bottom:274.626667pt;}
.y3a{bottom:278.466667pt;}
.y10b{bottom:278.786667pt;}
.ya7{bottom:278.946667pt;}
.y5c{bottom:281.346667pt;}
.y11f{bottom:281.826667pt;}
.y1b9{bottom:286.626667pt;}
.ye5{bottom:287.106667pt;}
.y15f{bottom:288.866667pt;}
.y183{bottom:289.186667pt;}
.y1b{bottom:289.506667pt;}
.y81{bottom:289.666667pt;}
.ybd{bottom:290.466667pt;}
.y10a{bottom:295.426667pt;}
.ya6{bottom:296.066667pt;}
.y129{bottom:296.386667pt;}
.y39{bottom:297.666667pt;}
.y11e{bottom:297.986667pt;}
.y5b{bottom:301.346667pt;}
.y1b8{bottom:303.266667pt;}
.y15e{bottom:303.906667pt;}
.y182{bottom:304.226667pt;}
.y146{bottom:304.706667pt;}
.y80{bottom:306.626667pt;}
.y1a{bottom:306.946667pt;}
.ye4{bottom:307.106667pt;}
.ybc{bottom:310.466667pt;}
.y128{bottom:311.266667pt;}
.y109{bottom:312.066667pt;}
.ya5{bottom:313.026667pt;}
.y11d{bottom:313.986667pt;}
.y15d{bottom:318.946667pt;}
.y181{bottom:319.266667pt;}
.y145{bottom:319.746667pt;}
.y1b7{bottom:319.906667pt;}
.y5a{bottom:321.346667pt;}
.y7f{bottom:323.746667pt;}
.y38{bottom:324.386667pt;}
.y19{bottom:324.546667pt;}
.y127{bottom:326.306667pt;}
.ye3{bottom:327.106667pt;}
.y108{bottom:328.706667pt;}
.ya4{bottom:329.666667pt;}
.ybb{bottom:330.466667pt;}
.y15c{bottom:333.826667pt;}
.y180{bottom:334.306667pt;}
.y144{bottom:334.626667pt;}
.y1b6{bottom:336.546667pt;}
.y7e{bottom:340.706667pt;}
.y59{bottom:341.346667pt;}
.y18{bottom:341.986667pt;}
.y107{bottom:345.346667pt;}
.ya2{bottom:346.626667pt;}
.ye2{bottom:347.106667pt;}
.y37{bottom:348.866667pt;}
.y17f{bottom:349.346667pt;}
.y143{bottom:349.666667pt;}
.yba{bottom:350.466667pt;}
.y1b5{bottom:353.186667pt;}
.y126{bottom:356.706667pt;}
.y7d{bottom:357.666667pt;}
.y17{bottom:359.426667pt;}
.y58{bottom:361.346667pt;}
.y106{bottom:362.146667pt;}
.y15b{bottom:363.906667pt;}
.y17e{bottom:364.226667pt;}
.y142{bottom:364.706667pt;}
.y36{bottom:365.506667pt;}
.ya1{bottom:366.626667pt;}
.ye1{bottom:367.106667pt;}
.y1b4{bottom:369.826667pt;}
.yb9{bottom:370.466667pt;}
.y125{bottom:374.333333pt;}
.y7c{bottom:374.653333pt;}
.y16{bottom:377.053333pt;}
.y105{bottom:378.813333pt;}
.y15a{bottom:378.973333pt;}
.y17d{bottom:379.293333pt;}
.y141{bottom:379.773333pt;}
.y57{bottom:381.373333pt;}
.ya0{bottom:383.773333pt;}
.y1b3{bottom:386.653333pt;}
.ye0{bottom:387.133333pt;}
.y35{bottom:388.893333pt;}
.yb8{bottom:390.493333pt;}
.y7b{bottom:391.773333pt;}
.y1a3{bottom:393.853333pt;}
.y159{bottom:394.333333pt;}
.y15{bottom:394.493333pt;}
.y140{bottom:394.653333pt;}
.y104{bottom:395.453333pt;}
.y9f{bottom:400.733333pt;}
.y56{bottom:401.373333pt;}
.y1b2{bottom:403.293333pt;}
.ydf{bottom:407.293333pt;}
.y7a{bottom:408.733333pt;}
.y1a2{bottom:408.893333pt;}
.y124{bottom:409.373333pt;}
.y13f{bottom:409.693333pt;}
.yb7{bottom:410.493333pt;}
.y14{bottom:412.093333pt;}
.y9e{bottom:417.693333pt;}
.y1b1{bottom:419.933333pt;}
.y55{bottom:421.373333pt;}
.y1a1{bottom:423.933333pt;}
.y17c{bottom:424.253333pt;}
.y13e{bottom:424.733333pt;}
.y79{bottom:425.693333pt;}
.yde{bottom:427.293333pt;}
.y103{bottom:428.733333pt;}
.y13{bottom:429.533333pt;}
.yb6{bottom:430.493333pt;}
.y9d{bottom:434.653333pt;}
.y34{bottom:435.453333pt;}
.y1b0{bottom:436.573333pt;}
.y1a0{bottom:438.973333pt;}
.y17b{bottom:439.293333pt;}
.y13d{bottom:439.773333pt;}
.y54{bottom:441.373333pt;}
.y78{bottom:442.653333pt;}
.y102{bottom:445.533333pt;}
.y12{bottom:446.973333pt;}
.ydd{bottom:447.293333pt;}
.yb5{bottom:450.493333pt;}
.y9c{bottom:451.773333pt;}
.y1af{bottom:453.213333pt;}
.y19f{bottom:453.853333pt;}
.y17a{bottom:454.333333pt;}
.y13c{bottom:454.653333pt;}
.y33{bottom:458.813333pt;}
.y77{bottom:459.773333pt;}
.y53{bottom:461.373333pt;}
.y101{bottom:462.173333pt;}
.y11{bottom:464.573333pt;}
.ydc{bottom:467.293333pt;}
.y9b{bottom:468.733333pt;}
.y19e{bottom:468.893333pt;}
.y179{bottom:469.373333pt;}
.y13b{bottom:469.693333pt;}
.y1ae{bottom:470.013333pt;}
.yb4{bottom:470.493333pt;}
.y76{bottom:476.733333pt;}
.y100{bottom:478.813333pt;}
.y52{bottom:481.373333pt;}
.y10{bottom:482.013333pt;}
.y32{bottom:483.453333pt;}
.y19d{bottom:483.933333pt;}
.y178{bottom:484.253333pt;}
.y13a{bottom:484.733333pt;}
.y9a{bottom:485.693333pt;}
.y1ad{bottom:486.653333pt;}
.ydb{bottom:487.293333pt;}
.yb3{bottom:490.493333pt;}
.y75{bottom:493.693333pt;}
.y19c{bottom:498.973333pt;}
.y177{bottom:499.293333pt;}
.yf{bottom:499.613333pt;}
.y139{bottom:499.773333pt;}
.y51{bottom:500.733333pt;}
.yff{bottom:502.173333pt;}
.y99{bottom:502.653333pt;}
.y1ac{bottom:503.293333pt;}
.yda{bottom:507.293333pt;}
.yb2{bottom:510.493333pt;}
.y74{bottom:510.653333pt;}
.yfe{bottom:513.053333pt;}
.y31{bottom:513.373333pt;}
.y19b{bottom:513.853333pt;}
.y176{bottom:514.333333pt;}
.y138{bottom:514.653333pt;}
.ye{bottom:517.053333pt;}
.y50{bottom:517.533333pt;}
.y98{bottom:519.773333pt;}
.y1ab{bottom:519.933333pt;}
.yd9{bottom:527.293333pt;}
.y73{bottom:527.773333pt;}
.yd1{bottom:527.933333pt;}
.y19a{bottom:528.893333pt;}
.y175{bottom:529.373333pt;}
.y137{bottom:529.693333pt;}
.yb1{bottom:530.493333pt;}
.y4f{bottom:534.173333pt;}
.yd{bottom:534.493333pt;}
.y1aa{bottom:536.573333pt;}
.y97{bottom:536.733333pt;}
.y30{bottom:541.093333pt;}
.y199{bottom:543.973333pt;}
.y174{bottom:544.453333pt;}
.y72{bottom:544.773333pt;}
.yd8{bottom:547.333333pt;}
.yb0{bottom:550.693333pt;}
.y4e{bottom:550.853333pt;}
.yc{bottom:552.133333pt;}
.y1a9{bottom:553.413333pt;}
.y96{bottom:553.733333pt;}
.y2f{bottom:558.533333pt;}
.y198{bottom:559.013333pt;}
.y173{bottom:559.333333pt;}
.y136{bottom:559.813333pt;}
.y71{bottom:561.733333pt;}
.yd7{bottom:567.333333pt;}
.y4d{bottom:568.133333pt;}
.yb{bottom:569.573333pt;}
.y1a8{bottom:570.053333pt;}
.yaf{bottom:570.693333pt;}
.y95{bottom:570.853333pt;}
.y197{bottom:574.053333pt;}
.y172{bottom:574.373333pt;}
.y135{bottom:574.853333pt;}
.y2e{bottom:575.973333pt;}
.y70{bottom:578.853333pt;}
.ya{bottom:587.173333pt;}
.yd6{bottom:587.333333pt;}
.y4c{bottom:587.653333pt;}
.y94{bottom:587.813333pt;}
.y196{bottom:588.933333pt;}
.y171{bottom:589.413333pt;}
.y134{bottom:589.733333pt;}
.yae{bottom:590.693333pt;}
.y2d{bottom:593.573333pt;}
.y6f{bottom:595.813333pt;}
.y195{bottom:603.973333pt;}
.y170{bottom:604.453333pt;}
.y9{bottom:604.613333pt;}
.y93{bottom:604.773333pt;}
.y4b{bottom:605.253333pt;}
.yd5{bottom:607.333333pt;}
.yad{bottom:610.693333pt;}
.y2c{bottom:611.013333pt;}
.y6d{bottom:612.773333pt;}
.y1cb{bottom:616.773333pt;}
.y194{bottom:619.013333pt;}
.y16f{bottom:619.333333pt;}
.y133{bottom:619.813333pt;}
.y92{bottom:621.733333pt;}
.y8{bottom:622.053333pt;}
.y4a{bottom:622.693333pt;}
.yd4{bottom:627.333333pt;}
.y2b{bottom:628.613333pt;}
.y6b{bottom:629.733333pt;}
.yac{bottom:630.693333pt;}
.y1ca{bottom:632.133333pt;}
.y193{bottom:634.053333pt;}
.y16e{bottom:634.373333pt;}
.y132{bottom:634.853333pt;}
.y91{bottom:638.853333pt;}
.y7{bottom:639.973333pt;}
.y49{bottom:640.133333pt;}
.y2a{bottom:646.053333pt;}
.y6a{bottom:646.533333pt;}
.yd3{bottom:647.333333pt;}
.y1c9{bottom:647.493333pt;}
.y192{bottom:648.933333pt;}
.y16d{bottom:649.413333pt;}
.y131{bottom:649.733333pt;}
.yab{bottom:650.693333pt;}
.y90{bottom:655.813333pt;}
.y48{bottom:657.733333pt;}
.y6{bottom:660.133333pt;}
.y1c8{bottom:662.853333pt;}
.y16c{bottom:664.453333pt;}
.y29{bottom:664.773333pt;}
.y68{bottom:666.853333pt;}
.yd2{bottom:667.333333pt;}
.y11a{bottom:668.133333pt;}
.y111{bottom:670.053333pt;}
.yaa{bottom:670.693333pt;}
.y8f{bottom:672.773333pt;}
.y47{bottom:675.173333pt;}
.y1c7{bottom:676.613333pt;}
.y5{bottom:678.053333pt;}
.y16b{bottom:679.333333pt;}
.y130{bottom:679.813333pt;}
.y28{bottom:688.133333pt;}
.y8e{bottom:689.733333pt;}
.y67{bottom:690.693333pt;}
.y46{bottom:692.773333pt;}
.y1c6{bottom:693.413333pt;}
.y4{bottom:694.213333pt;}
.y12f{bottom:694.853333pt;}
.h10{height:16.640000pt;}
.h11{height:16.672000pt;}
.hf{height:16.800000pt;}
.h12{height:16.832000pt;}
.he{height:20.000000pt;}
.h14{height:29.276160pt;}
.h3{height:29.940625pt;}
.h1a{height:31.444764pt;}
.h1e{height:33.515625pt;}
.h16{height:34.374375pt;}
.h1f{height:37.090625pt;}
.h4{height:39.325000pt;}
.h1d{height:39.829333pt;}
.ha{height:40.661333pt;}
.h5{height:44.687500pt;}
.hc{height:44.998542pt;}
.h7{height:47.709298pt;}
.h18{height:49.877902pt;}
.h1b{height:51.882667pt;}
.h17{height:52.834688pt;}
.hd{height:53.105778pt;}
.h6{height:54.215111pt;}
.h19{height:56.134827pt;}
.h15{height:56.156160pt;}
.h1c{height:56.262827pt;}
.h2{height:58.563750pt;}
.h8{height:63.431680pt;}
.h13{height:65.764124pt;}
.hb{height:72.106098pt;}
.h9{height:81.322667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w3{width:35.040000pt;}
.w2{width:347.453333pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x17{left:8.320000pt;}
.x16{left:9.600000pt;}
.x15{left:12.000000pt;}
.x14{left:13.760000pt;}
.x13{left:14.880000pt;}
.x12{left:16.800000pt;}
.x11{left:18.560000pt;}
.x10{left:27.840000pt;}
.x19{left:75.552000pt;}
.xd{left:87.392000pt;}
.x3{left:94.592000pt;}
.x1{left:105.952000pt;}
.x18{left:113.472000pt;}
.x7{left:118.752000pt;}
.x9{left:127.872000pt;}
.xa{left:150.746667pt;}
.x6{left:172.066667pt;}
.x5{left:204.546667pt;}
.x8{left:219.746667pt;}
.x4{left:279.773333pt;}
.x2{left:285.533333pt;}
.xb{left:344.093333pt;}
.xc{left:359.613333pt;}
.xf{left:434.853333pt;}
}




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