
    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_137168a49643f7e16c2fb14a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_8c41881ceae213219db30467.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_954735770f30e3ba263aa2a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_d2571e946b9f24f6b8bee499.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_73acbe6537bf9a6da13cfb33.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_ab15e83663fa6874dd806658.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_93e05ba0c5ab42840c3a5869.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_d89d52f48296b193307bf82b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_6677a707f6efbf1147ce1ff9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933105;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_6c6dbb6bc4a7fbfdba616173.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_10ce8a26504111690e58f0ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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_c6cad825d99b063fc3f75f77.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.021484;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_68d5b44837f1a8887d586e4d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.021484;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_76c8c5d66718a69b17dfc2d0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091797;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:fff;src:url('chunks/assets/font_0e863426169f4ada0dbe11c0.woff2')format("woff");}.fff{font-family:fff;line-height:1.091797;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:ff10;src:url('chunks/assets/font_493ccf03a195bf4998642b95.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.090332;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:ff11;src:url('chunks/assets/font_1d8264b7bc72af70c8d0aa2f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.090332;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:ff12;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls23{letter-spacing:-7.140000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.579600px;}
.ls15{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.348600px;}
.ls10{letter-spacing:-0.325200px;}
.ls14{letter-spacing:-0.229800px;}
.ls11{letter-spacing:-0.224400px;}
.ls5{letter-spacing:-0.175800px;}
.ls8{letter-spacing:-0.115800px;}
.ls1a{letter-spacing:-0.107400px;}
.lsf{letter-spacing:-0.092400px;}
.ls3{letter-spacing:-0.083400px;}
.ls4{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.060600px;}
.ls12{letter-spacing:0.061200px;}
.ls1d{letter-spacing:0.067200px;}
.ls7{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.077040px;}
.ls1f{letter-spacing:0.092880px;}
.lsd{letter-spacing:0.115200px;}
.ls0{letter-spacing:0.149760px;}
.ls18{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.180600px;}
.ls20{letter-spacing:0.198720px;}
.ls21{letter-spacing:0.208800px;}
.ls13{letter-spacing:0.213840px;}
.ls17{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.222000px;}
.lsa{letter-spacing:0.233280px;}
.ls6{letter-spacing:0.247800px;}
.ls1{letter-spacing:0.433440px;}
.lsb{letter-spacing:0.668160px;}
.ls16{letter-spacing:54.864000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.240000px;}
.ws1{word-spacing:-66.156600px;}
.ws12{word-spacing:-19.038240px;}
.ws11{word-spacing:-18.808440px;}
.ws16{word-spacing:-16.488000px;}
.ws1d{word-spacing:-16.344000px;}
.ws14{word-spacing:-16.272000px;}
.ws13{word-spacing:-15.912000px;}
.ws19{word-spacing:-15.624000px;}
.ws3{word-spacing:-14.970240px;}
.ws8{word-spacing:-13.686360px;}
.wsb{word-spacing:-13.668720px;}
.ws1a{word-spacing:-13.572960px;}
.ws1b{word-spacing:-13.566360px;}
.ws4{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.446720px;}
.ws18{word-spacing:-13.398360px;}
.ws7{word-spacing:-13.389960px;}
.wse{word-spacing:-13.354320px;}
.ws10{word-spacing:-13.222320px;}
.wsf{word-spacing:-13.121520px;}
.wsc{word-spacing:-13.098120px;}
.ws17{word-spacing:-12.926160px;}
.ws2{word-spacing:-12.204000px;}
.wsa{word-spacing:-12.203280px;}
.ws5{word-spacing:-12.131280px;}
.ws1c{word-spacing:-9.132000px;}
.ws9{word-spacing:0.000000px;}
._3a{margin-left:-9.870480px;}
._35{margin-left:-8.469360px;}
._20{margin-left:-7.089360px;}
._4{margin-left:-5.477040px;}
._1b{margin-left:-4.365360px;}
._0{margin-left:-3.168000px;}
._2{margin-left:-2.160000px;}
._1{margin-left:-1.152000px;}
._3{width:1.053360px;}
._9{width:2.390400px;}
._8{width:3.896640px;}
._7{width:4.916880px;}
._18{width:6.284160px;}
._a{width:7.350480px;}
._10{width:9.092880px;}
._d{width:10.278720px;}
._c{width:11.812320px;}
._1a{width:12.955680px;}
._1f{width:13.992480px;}
._15{width:14.994720px;}
._13{width:16.106400px;}
._14{width:17.138640px;}
._5{width:18.346320px;}
._6{width:19.780560px;}
._f{width:21.202560px;}
._24{width:22.723920px;}
._23{width:23.787360px;}
._12{width:25.062480px;}
._16{width:26.357760px;}
._17{width:27.498240px;}
._21{width:28.512000px;}
._22{width:29.592000px;}
._e{width:31.015440px;}
._11{width:32.150880px;}
._25{width:33.437520px;}
._b{width:34.549920px;}
._28{width:36.314640px;}
._29{width:37.853280px;}
._1d{width:38.952000px;}
._1e{width:40.068000px;}
._1c{width:41.112000px;}
._27{width:43.010640px;}
._26{width:44.856000px;}
._3b{width:46.401360px;}
._19{width:54.113760px;}
._34{width:56.160000px;}
._33{width:60.074640px;}
._32{width:61.416000px;}
._3f{width:69.074640px;}
._3e{width:70.344000px;}
._2a{width:79.333920px;}
._2e{width:100.337040px;}
._2f{width:115.277040px;}
._30{width:128.962080px;}
._36{width:165.672000px;}
._2b{width:167.806080px;}
._31{width:169.539120px;}
._2d{width:245.630160px;}
._38{width:323.234640px;}
._39{width:325.332000px;}
._2c{width:335.134080px;}
._3d{width:564.768000px;}
._3c{width:565.809360px;}
._37{width:729.890640px;}
.fc4{color:rgb(163,14,12);}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:144.000000px;}
.y62{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y14c{bottom:3.960000px;}
.y177{bottom:4.140000px;}
.y35{bottom:4.320000px;}
.y2{bottom:5.760000px;}
.y190{bottom:8.100000px;}
.y176{bottom:22.320000px;}
.y18c{bottom:40.500000px;}
.y175{bottom:40.680000px;}
.y1a2{bottom:40.725000px;}
.y1{bottom:46.296000px;}
.y60{bottom:47.016000px;}
.y3{bottom:48.996000px;}
.y18b{bottom:58.860000px;}
.y1b7{bottom:58.890000px;}
.y174{bottom:59.040000px;}
.y1a1{bottom:59.085000px;}
.y5f{bottom:67.176000px;}
.y173{bottom:77.220000px;}
.y1b6{bottom:77.250000px;}
.y1a0{bottom:77.445000px;}
.y170{bottom:86.220000px;}
.y1b2{bottom:86.430000px;}
.y197{bottom:86.445000px;}
.y5e{bottom:87.336000px;}
.y172{bottom:95.580000px;}
.y1b5{bottom:95.610000px;}
.y19f{bottom:95.625000px;}
.y16f{bottom:104.580000px;}
.y1b1{bottom:104.610000px;}
.y196{bottom:104.625000px;}
.y34{bottom:112.536000px;}
.y18a{bottom:113.760000px;}
.y1b4{bottom:113.790000px;}
.y171{bottom:113.940000px;}
.y19e{bottom:113.985000px;}
.y1ee{bottom:114.876000px;}
.y159{bottom:119.916000px;}
.y121{bottom:120.636000px;}
.y1c8{bottom:122.436000px;}
.y16e{bottom:122.940000px;}
.y1b0{bottom:122.970000px;}
.y195{bottom:122.985000px;}
.y135{bottom:127.836000px;}
.ya9{bottom:128.196000px;}
.y21f{bottom:128.556000px;}
.y33{bottom:130.896000px;}
.y18e{bottom:131.436000px;}
.y168{bottom:132.120000px;}
.y1b3{bottom:132.150000px;}
.y189{bottom:132.165000px;}
.y19d{bottom:132.345000px;}
.y1fd{bottom:132.876000px;}
.yd4{bottom:135.756000px;}
.y1ed{bottom:136.836000px;}
.yfd{bottom:140.616000px;}
.y16d{bottom:141.300000px;}
.y1af{bottom:141.330000px;}
.y194{bottom:141.345000px;}
.y158{bottom:141.876000px;}
.y120{bottom:142.596000px;}
.y1c7{bottom:144.396000px;}
.y32{bottom:149.256000px;}
.y134{bottom:149.796000px;}
.ya8{bottom:150.150000px;}
.y167{bottom:150.300000px;}
.y1ab{bottom:150.510000px;}
.y188{bottom:150.525000px;}
.y19c{bottom:150.705000px;}
.y18d{bottom:152.490000px;}
.y1fc{bottom:154.830000px;}
.yd3{bottom:157.710000px;}
.y1ec{bottom:158.790000px;}
.y16c{bottom:159.480000px;}
.y193{bottom:159.525000px;}
.y1ae{bottom:159.690000px;}
.y157{bottom:163.830000px;}
.y11f{bottom:164.550000px;}
.y1c6{bottom:166.350000px;}
.y31{bottom:167.430000px;}
.y178{bottom:167.970000px;}
.y166{bottom:168.660000px;}
.y1aa{bottom:168.690000px;}
.y192{bottom:168.705000px;}
.y187{bottom:168.885000px;}
.yfc{bottom:171.570000px;}
.y133{bottom:171.750000px;}
.ya7{bottom:172.110000px;}
.y21e{bottom:172.470000px;}
.y1fb{bottom:176.790000px;}
.y1ad{bottom:177.870000px;}
.y16b{bottom:177.885000px;}
.yd2{bottom:179.670000px;}
.y1eb{bottom:180.750000px;}
.y30{bottom:185.790000px;}
.y1a9{bottom:187.050000px;}
.y165{bottom:187.065000px;}
.y19b{bottom:187.245000px;}
.yfb{bottom:193.530000px;}
.y132{bottom:193.710000px;}
.ya6{bottom:194.070000px;}
.y21d{bottom:194.610000px;}
.y11e{bottom:195.510000px;}
.y1ac{bottom:196.230000px;}
.y16a{bottom:196.245000px;}
.y1c5{bottom:197.310000px;}
.y1fa{bottom:198.750000px;}
.yd1{bottom:201.630000px;}
.y2f{bottom:204.150000px;}
.y1a8{bottom:205.410000px;}
.y164{bottom:205.425000px;}
.y19a{bottom:205.605000px;}
.y156{bottom:207.750000px;}
.y1ea{bottom:212.610000px;}
.y169{bottom:214.425000px;}
.yfa{bottom:215.490000px;}
.y131{bottom:215.670000px;}
.y21c{bottom:216.570000px;}
.y11d{bottom:217.470000px;}
.y1c4{bottom:219.270000px;}
.y1f9{bottom:220.710000px;}
.y2e{bottom:222.510000px;}
.yd0{bottom:223.590000px;}
.y163{bottom:223.605000px;}
.y1a7{bottom:223.770000px;}
.y186{bottom:223.785000px;}
.ya5{bottom:225.030000px;}
.y155{bottom:229.710000px;}
.yf9{bottom:237.450000px;}
.y21b{bottom:238.530000px;}
.y11c{bottom:239.430000px;}
.y2d{bottom:240.690000px;}
.y1c3{bottom:241.230000px;}
.y1a6{bottom:241.950000px;}
.y162{bottom:241.965000px;}
.y199{bottom:242.145000px;}
.y1f8{bottom:242.670000px;}
.ycf{bottom:245.550000px;}
.y130{bottom:245.730000px;}
.y1e9{bottom:246.450000px;}
.y154{bottom:251.670000px;}
.ya4{bottom:256.890000px;}
.y2c{bottom:259.050000px;}
.yf8{bottom:259.410000px;}
.y1a5{bottom:260.310000px;}
.y161{bottom:260.325000px;}
.y21a{bottom:260.490000px;}
.y198{bottom:260.505000px;}
.y11b{bottom:261.390000px;}
.y1c2{bottom:263.190000px;}
.y12f{bottom:264.090000px;}
.y1f7{bottom:264.810000px;}
.yce{bottom:267.510000px;}
.y153{bottom:272.730000px;}
.y2b{bottom:277.410000px;}
.y160{bottom:278.505000px;}
.y1a4{bottom:278.670000px;}
.y185{bottom:278.685000px;}
.yf7{bottom:281.370000px;}
.y12e{bottom:282.450000px;}
.y11a{bottom:283.350000px;}
.y1c1{bottom:285.150000px;}
.y1f6{bottom:286.770000px;}
.ycd{bottom:289.470000px;}
.ya3{bottom:290.730000px;}
.y152{bottom:291.135000px;}
.y2a{bottom:296.175000px;}
.y15f{bottom:296.865000px;}
.y184{bottom:297.045000px;}
.y1e8{bottom:299.415000px;}
.y12d{bottom:300.855000px;}
.yf6{bottom:303.375000px;}
.y219{bottom:304.455000px;}
.y119{bottom:305.355000px;}
.y151{bottom:306.255000px;}
.y1c0{bottom:307.155000px;}
.y1f5{bottom:308.775000px;}
.y183{bottom:315.225000px;}
.y12c{bottom:319.035000px;}
.ycc{bottom:320.655000px;}
.y1e7{bottom:321.375000px;}
.ya2{bottom:321.735000px;}
.y59{bottom:323.895000px;}
.yf5{bottom:325.335000px;}
.y218{bottom:326.415000px;}
.y118{bottom:327.315000px;}
.y29{bottom:330.015000px;}
.y1f4{bottom:330.735000px;}
.y182{bottom:333.585000px;}
.y12b{bottom:337.395000px;}
.y1bf{bottom:339.015000px;}
.y58{bottom:340.275000px;}
.ycb{bottom:342.615000px;}
.y1e6{bottom:343.335000px;}
.ya1{bottom:343.695000px;}
.y150{bottom:344.415000px;}
.yf4{bottom:347.295000px;}
.y217{bottom:348.375000px;}
.y117{bottom:349.275000px;}
.y28{bottom:349.635000px;}
.y181{bottom:351.945000px;}
.y1f3{bottom:352.695000px;}
.y57{bottom:356.835000px;}
.y14f{bottom:363.495000px;}
.yca{bottom:364.575000px;}
.y1e5{bottom:365.295000px;}
.ya0{bottom:365.655000px;}
.y27{bottom:367.815000px;}
.y180{bottom:370.305000px;}
.y216{bottom:370.335000px;}
.y116{bottom:371.235000px;}
.y1be{bottom:372.855000px;}
.y56{bottom:373.575000px;}
.y1f2{bottom:374.655000px;}
.yf3{bottom:378.255000px;}
.y14e{bottom:382.395000px;}
.y26{bottom:386.175000px;}
.yc9{bottom:386.535000px;}
.y1e4{bottom:387.255000px;}
.y9f{bottom:387.615000px;}
.y17f{bottom:388.485000px;}
.y55{bottom:391.935000px;}
.y215{bottom:392.295000px;}
.y115{bottom:393.195000px;}
.y1f1{bottom:396.615000px;}
.yf2{bottom:400.215000px;}
.y14d{bottom:401.475000px;}
.y1bd{bottom:403.815000px;}
.y25{bottom:404.535000px;}
.y17e{bottom:406.875000px;}
.yc8{bottom:408.495000px;}
.y1e3{bottom:409.215000px;}
.y9e{bottom:409.575000px;}
.y54{bottom:410.295000px;}
.y214{bottom:414.255000px;}
.y1f0{bottom:418.575000px;}
.y14b{bottom:420.555000px;}
.yf1{bottom:422.175000px;}
.y24{bottom:422.895000px;}
.y114{bottom:424.155000px;}
.y17d{bottom:425.235000px;}
.y1bc{bottom:425.775000px;}
.y53{bottom:428.475000px;}
.yc7{bottom:430.455000px;}
.y1e2{bottom:431.175000px;}
.y12a{bottom:431.535000px;}
.y213{bottom:436.215000px;}
.y9d{bottom:440.535000px;}
.y23{bottom:441.075000px;}
.y17c{bottom:443.415000px;}
.y14a{bottom:443.595000px;}
.yf0{bottom:444.135000px;}
.y52{bottom:446.835000px;}
.y1bb{bottom:447.735000px;}
.yc6{bottom:452.415000px;}
.y1e1{bottom:453.135000px;}
.y129{bottom:453.495000px;}
.y113{bottom:455.295000px;}
.y212{bottom:458.175000px;}
.y22{bottom:459.435000px;}
.y17b{bottom:461.775000px;}
.y9c{bottom:462.495000px;}
.y51{bottom:465.195000px;}
.yef{bottom:466.275000px;}
.y1ba{bottom:469.695000px;}
.y149{bottom:471.855000px;}
.yc5{bottom:474.375000px;}
.y1e0{bottom:475.275000px;}
.y128{bottom:475.455000px;}
.y112{bottom:477.255000px;}
.y21{bottom:477.795000px;}
.y17a{bottom:480.135000px;}
.y50{bottom:483.555000px;}
.y9b{bottom:484.455000px;}
.yee{bottom:488.235000px;}
.y1b9{bottom:491.475000px;}
.y148{bottom:493.815000px;}
.y20{bottom:496.155000px;}
.yc4{bottom:496.335000px;}
.y1df{bottom:497.235000px;}
.y127{bottom:497.415000px;}
.y179{bottom:498.495000px;}
.y111{bottom:499.215000px;}
.y4f{bottom:501.735000px;}
.y211{bottom:502.275000px;}
.y9a{bottom:506.415000px;}
.yed{bottom:510.195000px;}
.y1b8{bottom:510.915000px;}
.y1f{bottom:514.335000px;}
.y147{bottom:515.775000px;}
.yc3{bottom:518.295000px;}
.y1de{bottom:519.195000px;}
.y126{bottom:519.375000px;}
.y4e{bottom:520.095000px;}
.y110{bottom:521.175000px;}
.y210{bottom:524.235000px;}
.y1a3{bottom:526.395000px;}
.y99{bottom:528.375000px;}
.yec{bottom:532.155000px;}
.y1e{bottom:532.695000px;}
.y146{bottom:537.735000px;}
.y4d{bottom:538.455000px;}
.y1dd{bottom:541.155000px;}
.y10f{bottom:543.135000px;}
.y20f{bottom:546.195000px;}
.yc2{bottom:549.255000px;}
.y98{bottom:550.335000px;}
.y1d{bottom:551.055000px;}
.yeb{bottom:554.115000px;}
.y4c{bottom:556.635000px;}
.y145{bottom:559.695000px;}
.y1dc{bottom:563.115000px;}
.y10e{bottom:565.095000px;}
.y20e{bottom:568.155000px;}
.y1c{bottom:569.235000px;}
.yc1{bottom:571.245000px;}
.y97{bottom:572.505000px;}
.y7f{bottom:574.845000px;}
.y4b{bottom:575.025000px;}
.y144{bottom:581.685000px;}
.yea{bottom:585.105000px;}
.y1b{bottom:587.625000px;}
.y20d{bottom:590.145000px;}
.y22a{bottom:591.585000px;}
.yc0{bottom:593.205000px;}
.y4a{bottom:593.385000px;}
.y1db{bottom:594.105000px;}
.y125{bottom:594.465000px;}
.y10d{bottom:595.185000px;}
.y96{bottom:603.465000px;}
.y143{bottom:603.645000px;}
.y1a{bottom:605.985000px;}
.ye9{bottom:607.065000px;}
.y7e{bottom:607.965000px;}
.y49{bottom:611.745000px;}
.y20c{bottom:612.105000px;}
.y10c{bottom:613.545000px;}
.ybf{bottom:615.165000px;}
.y1da{bottom:616.065000px;}
.y124{bottom:616.425000px;}
.y19{bottom:624.885000px;}
.y95{bottom:625.425000px;}
.y142{bottom:625.605000px;}
.ye8{bottom:629.025000px;}
.y48{bottom:629.925000px;}
.y10b{bottom:631.725000px;}
.y229{bottom:631.905000px;}
.y20b{bottom:634.065000px;}
.ybe{bottom:637.125000px;}
.y1d9{bottom:638.025000px;}
.y123{bottom:638.385000px;}
.y1ef{bottom:639.105000px;}
.y7d{bottom:640.185000px;}
.y18{bottom:645.045000px;}
.y94{bottom:647.385000px;}
.y141{bottom:647.565000px;}
.y47{bottom:648.285000px;}
.y10a{bottom:650.085000px;}
.ye7{bottom:650.985000px;}
.y228{bottom:652.065000px;}
.y20a{bottom:656.025000px;}
.ybd{bottom:659.265000px;}
.y1d8{bottom:659.985000px;}
.y17{bottom:662.865000px;}
.y46{bottom:666.825000px;}
.y122{bottom:668.265000px;}
.y109{bottom:668.445000px;}
.y93{bottom:669.345000px;}
.y140{bottom:669.705000px;}
.y227{bottom:672.225000px;}
.ye6{bottom:672.945000px;}
.y7c{bottom:673.485000px;}
.y16{bottom:675.465000px;}
.y209{bottom:677.985000px;}
.ybc{bottom:681.225000px;}
.y15e{bottom:681.945000px;}
.y45{bottom:685.185000px;}
.y108{bottom:686.625000px;}
.y92{bottom:691.305000px;}
.y13f{bottom:691.665000px;}
.y15{bottom:692.205000px;}
.y7b{bottom:693.645000px;}
.ye5{bottom:694.905000px;}
.y208{bottom:699.945000px;}
.ybb{bottom:703.185000px;}
.y44{bottom:703.365000px;}
.y1d7{bottom:703.905000px;}
.y107{bottom:704.985000px;}
.y14{bottom:705.345000px;}
.y226{bottom:712.365000px;}
.y7a{bottom:713.265000px;}
.ye4{bottom:716.865000px;}
.y43{bottom:721.725000px;}
.y207{bottom:721.905000px;}
.y106{bottom:723.345000px;}
.yba{bottom:725.145000px;}
.y1d6{bottom:725.865000px;}
.y13{bottom:726.765000px;}
.y79{bottom:731.625000px;}
.y225{bottom:732.525000px;}
.y91{bottom:735.225000px;}
.ye3{bottom:738.825000px;}
.y42{bottom:740.085000px;}
.y105{bottom:741.705000px;}
.y206{bottom:743.865000px;}
.y1d5{bottom:747.825000px;}
.y12{bottom:749.085000px;}
.y78{bottom:749.985000px;}
.y224{bottom:752.685000px;}
.yb9{bottom:756.105000px;}
.y90{bottom:757.185000px;}
.y41{bottom:758.265000px;}
.ye2{bottom:760.785000px;}
.y11{bottom:762.225000px;}
.y205{bottom:765.825000px;}
.y77{bottom:768.345000px;}
.y104{bottom:769.785000px;}
.y223{bottom:772.845000px;}
.y40{bottom:776.625000px;}
.yb8{bottom:778.065000px;}
.y1d4{bottom:778.785000px;}
.y8f{bottom:779.145000px;}
.y10{bottom:783.465000px;}
.y76{bottom:786.525000px;}
.y204{bottom:787.785000px;}
.ye1{bottom:791.925000px;}
.y222{bottom:793.005000px;}
.y3f{bottom:794.985000px;}
.yb7{bottom:800.025000px;}
.y1d3{bottom:800.925000px;}
.y13e{bottom:801.105000px;}
.y75{bottom:804.885000px;}
.yf{bottom:805.785000px;}
.y203{bottom:809.925000px;}
.y8e{bottom:810.105000px;}
.y221{bottom:813.165000px;}
.y3e{bottom:813.345000px;}
.ye0{bottom:813.885000px;}
.ye{bottom:818.925000px;}
.y191{bottom:820.545000px;}
.y1d2{bottom:822.885000px;}
.y13d{bottom:823.065000px;}
.y74{bottom:823.245000px;}
.yb6{bottom:830.805000px;}
.y3d{bottom:831.525000px;}
.y202{bottom:831.885000px;}
.y8d{bottom:832.065000px;}
.y220{bottom:833.325000px;}
.ydf{bottom:835.845000px;}
.yd{bottom:840.165000px;}
.y73{bottom:841.425000px;}
.y1d1{bottom:844.845000px;}
.y13c{bottom:845.025000px;}
.y3c{bottom:849.930000px;}
.y201{bottom:853.890000px;}
.y8c{bottom:854.070000px;}
.yde{bottom:857.850000px;}
.y72{bottom:859.830000px;}
.y1d0{bottom:866.850000px;}
.y13b{bottom:867.030000px;}
.y3b{bottom:868.290000px;}
.yc{bottom:869.370000px;}
.y200{bottom:875.850000px;}
.y8b{bottom:876.030000px;}
.yb5{bottom:876.930000px;}
.y71{bottom:878.190000px;}
.ydd{bottom:879.810000px;}
.y3a{bottom:886.650000px;}
.y1cf{bottom:888.810000px;}
.y13a{bottom:889.170000px;}
.y70{bottom:896.550000px;}
.y1ff{bottom:897.810000px;}
.y8a{bottom:898.170000px;}
.yb{bottom:898.710000px;}
.yb4{bottom:899.970000px;}
.ydc{bottom:901.770000px;}
.y39{bottom:904.830000px;}
.y1ce{bottom:910.770000px;}
.y139{bottom:911.130000px;}
.y6f{bottom:914.730000px;}
.y1fe{bottom:919.770000px;}
.y89{bottom:920.130000px;}
.yb3{bottom:922.830000px;}
.y38{bottom:923.190000px;}
.y103{bottom:923.730000px;}
.ya{bottom:927.870000px;}
.ydb{bottom:932.730000px;}
.y6e{bottom:933.090000px;}
.y37{bottom:941.550000px;}
.y1cd{bottom:941.730000px;}
.y88{bottom:942.090000px;}
.y102{bottom:945.690000px;}
.y6d{bottom:951.450000px;}
.yb2{bottom:954.690000px;}
.y9{bottom:956.490000px;}
.y36{bottom:959.730000px;}
.y1cc{bottom:963.690000px;}
.y87{bottom:964.050000px;}
.y6c{bottom:969.810000px;}
.yb1{bottom:976.650000px;}
.y8{bottom:982.050000px;}
.y1cb{bottom:985.650000px;}
.y86{bottom:986.010000px;}
.y6b{bottom:987.990000px;}
.y15d{bottom:994.290000px;}
.yb0{bottom:998.610000px;}
.y6a{bottom:1006.890000px;}
.y1ca{bottom:1007.610000px;}
.y138{bottom:1007.970000px;}
.y7{bottom:1011.750000px;}
.y85{bottom:1016.970000px;}
.y15c{bottom:1017.690000px;}
.yaf{bottom:1020.570000px;}
.y1c9{bottom:1029.570000px;}
.y137{bottom:1029.930000px;}
.y15b{bottom:1036.050000px;}
.y84{bottom:1038.930000px;}
.y69{bottom:1040.550000px;}
.y101{bottom:1042.530000px;}
.yda{bottom:1050.630000px;}
.yae{bottom:1051.530000px;}
.y15a{bottom:1054.410000px;}
.y6{bottom:1055.670000px;}
.y68{bottom:1060.170000px;}
.y83{bottom:1060.890000px;}
.y136{bottom:1061.610000px;}
.y100{bottom:1064.490000px;}
.yd9{bottom:1068.990000px;}
.yad{bottom:1073.490000px;}
.y67{bottom:1078.530000px;}
.y82{bottom:1082.850000px;}
.yff{bottom:1086.450000px;}
.yd8{bottom:1087.350000px;}
.yac{bottom:1095.450000px;}
.y18f{bottom:1096.350000px;}
.y66{bottom:1096.890000px;}
.y5{bottom:1099.590000px;}
.y81{bottom:1104.810000px;}
.yd7{bottom:1105.530000px;}
.yfe{bottom:1108.590000px;}
.y65{bottom:1115.250000px;}
.yab{bottom:1117.590000px;}
.yd6{bottom:1123.890000px;}
.y64{bottom:1133.460000px;}
.y80{bottom:1136.700000px;}
.yaa{bottom:1139.580000px;}
.yd5{bottom:1142.280000px;}
.y4{bottom:1143.720000px;}
.y63{bottom:1151.820000px;}
.y5d{bottom:1170.360000px;}
.y61{bottom:1177.920000px;}
.y5c{bottom:1191.060000px;}
.y5b{bottom:1209.240000px;}
.y5a{bottom:1227.420000px;}
.h1c{height:18.180000px;}
.h1b{height:18.360000px;}
.h1f{height:22.500000px;}
.ha{height:35.806641px;}
.hc{height:36.861328px;}
.h12{height:45.637031px;}
.h18{height:48.224531px;}
.h10{height:50.510039px;}
.h17{height:50.585625px;}
.hf{height:51.793945px;}
.h11{height:51.881484px;}
.h13{height:53.709961px;}
.h4{height:57.248437px;}
.h15{height:57.410156px;}
.h14{height:57.507187px;}
.h2{height:59.439023px;}
.hb{height:61.189805px;}
.h6{height:64.331719px;}
.h9{height:65.884219px;}
.hd{height:67.824844px;}
.h19{height:71.613281px;}
.h7{height:73.129219px;}
.h1a{height:73.722656px;}
.h16{height:77.760000px;}
.h8{height:86.255508px;}
.h3{height:95.076000px;}
.h5{height:143.226562px;}
.h20{height:274.710000px;}
.h21{height:293.070000px;}
.h1d{height:311.250000px;}
.h1e{height:512.715000px;}
.he{height:1251.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:52.380000px;}
.w7{width:67.860000px;}
.w8{width:84.240000px;}
.w3{width:90.000000px;}
.w6{width:126.576000px;}
.wb{width:135.576000px;}
.wd{width:143.136000px;}
.w5{width:177.509985px;}
.w4{width:177.869973px;}
.w9{width:286.455000px;}
.we{width:375.195000px;}
.wc{width:457.095000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:7.740000px;}
.x38{left:10.800000px;}
.x1f{left:15.479973px;}
.x36{left:22.500000px;}
.x41{left:24.840000px;}
.x3a{left:26.460000px;}
.x3{left:29.160000px;}
.x3b{left:37.800000px;}
.x25{left:66.419973px;}
.x23{left:69.119973px;}
.x1e{left:72.899973px;}
.x24{left:74.339973px;}
.x1d{left:76.139973px;}
.x2b{left:85.139987px;}
.x1a{left:101.735973px;}
.x1c{left:102.815973px;}
.x17{left:105.695973px;}
.x18{left:107.495973px;}
.x19{left:110.015973px;}
.x21{left:114.875973px;}
.x22{left:121.535973px;}
.x1b{left:125.855973px;}
.x1{left:127.655987px;}
.x26{left:136.655973px;}
.x2e{left:138.275987px;}
.x20{left:144.215973px;}
.x2c{left:150.149985px;}
.x16{left:167.069973px;}
.x2a{left:180.749987px;}
.x44{left:186.870000px;}
.x33{left:189.390000px;}
.x14{left:191.549987px;}
.x42{left:197.129987px;}
.x3f{left:203.070000px;}
.x2f{left:207.749987px;}
.x4{left:210.089987px;}
.x3e{left:211.169987px;}
.xb{left:220.349987px;}
.x8{left:228.629987px;}
.x29{left:231.509987px;}
.x2d{left:233.849987px;}
.x45{left:240.150000px;}
.x28{left:246.629987px;}
.x15{left:255.269987px;}
.x27{left:274.349987px;}
.x5{left:296.714987px;}
.x31{left:308.414987px;}
.x35{left:316.695000px;}
.x32{left:324.434987px;}
.x6{left:335.954987px;}
.x40{left:339.555000px;}
.x30{left:350.894987px;}
.xa{left:352.694987px;}
.x46{left:384.375000px;}
.x37{left:385.455000px;}
.x3c{left:403.094987px;}
.x9{left:418.574987px;}
.x43{left:438.374987px;}
.xf{left:467.894987px;}
.x39{left:470.415000px;}
.x3d{left:473.114987px;}
.x10{left:525.524987px;}
.xd{left:538.844987px;}
.x12{left:556.844987px;}
.xc{left:558.284987px;}
.x7{left:571.244987px;}
.x11{left:622.364987px;}
.x13{left:644.144987px;}
.xe{left:765.509987px;}
.x2{left:784.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls23{letter-spacing:-6.346667pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.515200pt;}
.ls15{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.309867pt;}
.ls10{letter-spacing:-0.289067pt;}
.ls14{letter-spacing:-0.204267pt;}
.ls11{letter-spacing:-0.199467pt;}
.ls5{letter-spacing:-0.156267pt;}
.ls8{letter-spacing:-0.102933pt;}
.ls1a{letter-spacing:-0.095467pt;}
.lsf{letter-spacing:-0.082133pt;}
.ls3{letter-spacing:-0.074133pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.053867pt;}
.ls12{letter-spacing:0.054400pt;}
.ls1d{letter-spacing:0.059733pt;}
.ls7{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.068480pt;}
.ls1f{letter-spacing:0.082560pt;}
.lsd{letter-spacing:0.102400pt;}
.ls0{letter-spacing:0.133120pt;}
.ls18{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.160533pt;}
.ls20{letter-spacing:0.176640pt;}
.ls21{letter-spacing:0.185600pt;}
.ls13{letter-spacing:0.190080pt;}
.ls17{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.197333pt;}
.lsa{letter-spacing:0.207360pt;}
.ls6{letter-spacing:0.220267pt;}
.ls1{letter-spacing:0.385280pt;}
.lsb{letter-spacing:0.593920pt;}
.ls16{letter-spacing:48.768000pt;}
.ws15{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.880000pt;}
.ws1{word-spacing:-58.805867pt;}
.ws12{word-spacing:-16.922880pt;}
.ws11{word-spacing:-16.718613pt;}
.ws16{word-spacing:-14.656000pt;}
.ws1d{word-spacing:-14.528000pt;}
.ws14{word-spacing:-14.464000pt;}
.ws13{word-spacing:-14.144000pt;}
.ws19{word-spacing:-13.888000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws8{word-spacing:-12.165653pt;}
.wsb{word-spacing:-12.149973pt;}
.ws1a{word-spacing:-12.064853pt;}
.ws1b{word-spacing:-12.058987pt;}
.ws4{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.952640pt;}
.ws18{word-spacing:-11.909653pt;}
.ws7{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.870507pt;}
.ws10{word-spacing:-11.753173pt;}
.wsf{word-spacing:-11.663573pt;}
.wsc{word-spacing:-11.642773pt;}
.ws17{word-spacing:-11.489920pt;}
.ws2{word-spacing:-10.848000pt;}
.wsa{word-spacing:-10.847360pt;}
.ws5{word-spacing:-10.783360pt;}
.ws1c{word-spacing:-8.117333pt;}
.ws9{word-spacing:0.000000pt;}
._3a{margin-left:-8.773760pt;}
._35{margin-left:-7.528320pt;}
._20{margin-left:-6.301653pt;}
._4{margin-left:-4.868480pt;}
._1b{margin-left:-3.880320pt;}
._0{margin-left:-2.816000pt;}
._2{margin-left:-1.920000pt;}
._1{margin-left:-1.024000pt;}
._3{width:0.936320pt;}
._9{width:2.124800pt;}
._8{width:3.463680pt;}
._7{width:4.370560pt;}
._18{width:5.585920pt;}
._a{width:6.533760pt;}
._10{width:8.082560pt;}
._d{width:9.136640pt;}
._c{width:10.499840pt;}
._1a{width:11.516160pt;}
._1f{width:12.437760pt;}
._15{width:13.328640pt;}
._13{width:14.316800pt;}
._14{width:15.234347pt;}
._5{width:16.307840pt;}
._6{width:17.582720pt;}
._f{width:18.846720pt;}
._24{width:20.199040pt;}
._23{width:21.144320pt;}
._12{width:22.277760pt;}
._16{width:23.429120pt;}
._17{width:24.442880pt;}
._21{width:25.344000pt;}
._22{width:26.304000pt;}
._e{width:27.569280pt;}
._11{width:28.578560pt;}
._25{width:29.722240pt;}
._b{width:30.711040pt;}
._28{width:32.279680pt;}
._29{width:33.647360pt;}
._1d{width:34.624000pt;}
._1e{width:35.616000pt;}
._1c{width:36.544000pt;}
._27{width:38.231680pt;}
._26{width:39.872000pt;}
._3b{width:41.245653pt;}
._19{width:48.101120pt;}
._34{width:49.920000pt;}
._33{width:53.399680pt;}
._32{width:54.592000pt;}
._3f{width:61.399680pt;}
._3e{width:62.528000pt;}
._2a{width:70.519040pt;}
._2e{width:89.188480pt;}
._2f{width:102.468480pt;}
._30{width:114.632960pt;}
._36{width:147.264000pt;}
._2b{width:149.160960pt;}
._31{width:150.701440pt;}
._2d{width:218.337920pt;}
._38{width:287.319680pt;}
._39{width:289.184000pt;}
._2c{width:297.896960pt;}
._3d{width:502.016000pt;}
._3c{width:502.941653pt;}
._37{width:648.791680pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:128.000000pt;}
.y62{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y14c{bottom:3.520000pt;}
.y177{bottom:3.680000pt;}
.y35{bottom:3.840000pt;}
.y2{bottom:5.120000pt;}
.y190{bottom:7.200000pt;}
.y176{bottom:19.840000pt;}
.y18c{bottom:36.000000pt;}
.y175{bottom:36.160000pt;}
.y1a2{bottom:36.200000pt;}
.y1{bottom:41.152000pt;}
.y60{bottom:41.792000pt;}
.y3{bottom:43.552000pt;}
.y18b{bottom:52.320000pt;}
.y1b7{bottom:52.346667pt;}
.y174{bottom:52.480000pt;}
.y1a1{bottom:52.520000pt;}
.y5f{bottom:59.712000pt;}
.y173{bottom:68.640000pt;}
.y1b6{bottom:68.666667pt;}
.y1a0{bottom:68.840000pt;}
.y170{bottom:76.640000pt;}
.y1b2{bottom:76.826667pt;}
.y197{bottom:76.840000pt;}
.y5e{bottom:77.632000pt;}
.y172{bottom:84.960000pt;}
.y1b5{bottom:84.986667pt;}
.y19f{bottom:85.000000pt;}
.y16f{bottom:92.960000pt;}
.y1b1{bottom:92.986667pt;}
.y196{bottom:93.000000pt;}
.y34{bottom:100.032000pt;}
.y18a{bottom:101.120000pt;}
.y1b4{bottom:101.146667pt;}
.y171{bottom:101.280000pt;}
.y19e{bottom:101.320000pt;}
.y1ee{bottom:102.112000pt;}
.y159{bottom:106.592000pt;}
.y121{bottom:107.232000pt;}
.y1c8{bottom:108.832000pt;}
.y16e{bottom:109.280000pt;}
.y1b0{bottom:109.306667pt;}
.y195{bottom:109.320000pt;}
.y135{bottom:113.632000pt;}
.ya9{bottom:113.952000pt;}
.y21f{bottom:114.272000pt;}
.y33{bottom:116.352000pt;}
.y18e{bottom:116.832000pt;}
.y168{bottom:117.440000pt;}
.y1b3{bottom:117.466667pt;}
.y189{bottom:117.480000pt;}
.y19d{bottom:117.640000pt;}
.y1fd{bottom:118.112000pt;}
.yd4{bottom:120.672000pt;}
.y1ed{bottom:121.632000pt;}
.yfd{bottom:124.992000pt;}
.y16d{bottom:125.600000pt;}
.y1af{bottom:125.626667pt;}
.y194{bottom:125.640000pt;}
.y158{bottom:126.112000pt;}
.y120{bottom:126.752000pt;}
.y1c7{bottom:128.352000pt;}
.y32{bottom:132.672000pt;}
.y134{bottom:133.152000pt;}
.ya8{bottom:133.466667pt;}
.y167{bottom:133.600000pt;}
.y1ab{bottom:133.786667pt;}
.y188{bottom:133.800000pt;}
.y19c{bottom:133.960000pt;}
.y18d{bottom:135.546667pt;}
.y1fc{bottom:137.626667pt;}
.yd3{bottom:140.186667pt;}
.y1ec{bottom:141.146667pt;}
.y16c{bottom:141.760000pt;}
.y193{bottom:141.800000pt;}
.y1ae{bottom:141.946667pt;}
.y157{bottom:145.626667pt;}
.y11f{bottom:146.266667pt;}
.y1c6{bottom:147.866667pt;}
.y31{bottom:148.826667pt;}
.y178{bottom:149.306667pt;}
.y166{bottom:149.920000pt;}
.y1aa{bottom:149.946667pt;}
.y192{bottom:149.960000pt;}
.y187{bottom:150.120000pt;}
.yfc{bottom:152.506667pt;}
.y133{bottom:152.666667pt;}
.ya7{bottom:152.986667pt;}
.y21e{bottom:153.306667pt;}
.y1fb{bottom:157.146667pt;}
.y1ad{bottom:158.106667pt;}
.y16b{bottom:158.120000pt;}
.yd2{bottom:159.706667pt;}
.y1eb{bottom:160.666667pt;}
.y30{bottom:165.146667pt;}
.y1a9{bottom:166.266667pt;}
.y165{bottom:166.280000pt;}
.y19b{bottom:166.440000pt;}
.yfb{bottom:172.026667pt;}
.y132{bottom:172.186667pt;}
.ya6{bottom:172.506667pt;}
.y21d{bottom:172.986667pt;}
.y11e{bottom:173.786667pt;}
.y1ac{bottom:174.426667pt;}
.y16a{bottom:174.440000pt;}
.y1c5{bottom:175.386667pt;}
.y1fa{bottom:176.666667pt;}
.yd1{bottom:179.226667pt;}
.y2f{bottom:181.466667pt;}
.y1a8{bottom:182.586667pt;}
.y164{bottom:182.600000pt;}
.y19a{bottom:182.760000pt;}
.y156{bottom:184.666667pt;}
.y1ea{bottom:188.986667pt;}
.y169{bottom:190.600000pt;}
.yfa{bottom:191.546667pt;}
.y131{bottom:191.706667pt;}
.y21c{bottom:192.506667pt;}
.y11d{bottom:193.306667pt;}
.y1c4{bottom:194.906667pt;}
.y1f9{bottom:196.186667pt;}
.y2e{bottom:197.786667pt;}
.yd0{bottom:198.746667pt;}
.y163{bottom:198.760000pt;}
.y1a7{bottom:198.906667pt;}
.y186{bottom:198.920000pt;}
.ya5{bottom:200.026667pt;}
.y155{bottom:204.186667pt;}
.yf9{bottom:211.066667pt;}
.y21b{bottom:212.026667pt;}
.y11c{bottom:212.826667pt;}
.y2d{bottom:213.946667pt;}
.y1c3{bottom:214.426667pt;}
.y1a6{bottom:215.066667pt;}
.y162{bottom:215.080000pt;}
.y199{bottom:215.240000pt;}
.y1f8{bottom:215.706667pt;}
.ycf{bottom:218.266667pt;}
.y130{bottom:218.426667pt;}
.y1e9{bottom:219.066667pt;}
.y154{bottom:223.706667pt;}
.ya4{bottom:228.346667pt;}
.y2c{bottom:230.266667pt;}
.yf8{bottom:230.586667pt;}
.y1a5{bottom:231.386667pt;}
.y161{bottom:231.400000pt;}
.y21a{bottom:231.546667pt;}
.y198{bottom:231.560000pt;}
.y11b{bottom:232.346667pt;}
.y1c2{bottom:233.946667pt;}
.y12f{bottom:234.746667pt;}
.y1f7{bottom:235.386667pt;}
.yce{bottom:237.786667pt;}
.y153{bottom:242.426667pt;}
.y2b{bottom:246.586667pt;}
.y160{bottom:247.560000pt;}
.y1a4{bottom:247.706667pt;}
.y185{bottom:247.720000pt;}
.yf7{bottom:250.106667pt;}
.y12e{bottom:251.066667pt;}
.y11a{bottom:251.866667pt;}
.y1c1{bottom:253.466667pt;}
.y1f6{bottom:254.906667pt;}
.ycd{bottom:257.306667pt;}
.ya3{bottom:258.426667pt;}
.y152{bottom:258.786667pt;}
.y2a{bottom:263.266667pt;}
.y15f{bottom:263.880000pt;}
.y184{bottom:264.040000pt;}
.y1e8{bottom:266.146667pt;}
.y12d{bottom:267.426667pt;}
.yf6{bottom:269.666667pt;}
.y219{bottom:270.626667pt;}
.y119{bottom:271.426667pt;}
.y151{bottom:272.226667pt;}
.y1c0{bottom:273.026667pt;}
.y1f5{bottom:274.466667pt;}
.y183{bottom:280.200000pt;}
.y12c{bottom:283.586667pt;}
.ycc{bottom:285.026667pt;}
.y1e7{bottom:285.666667pt;}
.ya2{bottom:285.986667pt;}
.y59{bottom:287.906667pt;}
.yf5{bottom:289.186667pt;}
.y218{bottom:290.146667pt;}
.y118{bottom:290.946667pt;}
.y29{bottom:293.346667pt;}
.y1f4{bottom:293.986667pt;}
.y182{bottom:296.520000pt;}
.y12b{bottom:299.906667pt;}
.y1bf{bottom:301.346667pt;}
.y58{bottom:302.466667pt;}
.ycb{bottom:304.546667pt;}
.y1e6{bottom:305.186667pt;}
.ya1{bottom:305.506667pt;}
.y150{bottom:306.146667pt;}
.yf4{bottom:308.706667pt;}
.y217{bottom:309.666667pt;}
.y117{bottom:310.466667pt;}
.y28{bottom:310.786667pt;}
.y181{bottom:312.840000pt;}
.y1f3{bottom:313.506667pt;}
.y57{bottom:317.186667pt;}
.y14f{bottom:323.106667pt;}
.yca{bottom:324.066667pt;}
.y1e5{bottom:324.706667pt;}
.ya0{bottom:325.026667pt;}
.y27{bottom:326.946667pt;}
.y180{bottom:329.160000pt;}
.y216{bottom:329.186667pt;}
.y116{bottom:329.986667pt;}
.y1be{bottom:331.426667pt;}
.y56{bottom:332.066667pt;}
.y1f2{bottom:333.026667pt;}
.yf3{bottom:336.226667pt;}
.y14e{bottom:339.906667pt;}
.y26{bottom:343.266667pt;}
.yc9{bottom:343.586667pt;}
.y1e4{bottom:344.226667pt;}
.y9f{bottom:344.546667pt;}
.y17f{bottom:345.320000pt;}
.y55{bottom:348.386667pt;}
.y215{bottom:348.706667pt;}
.y115{bottom:349.506667pt;}
.y1f1{bottom:352.546667pt;}
.yf2{bottom:355.746667pt;}
.y14d{bottom:356.866667pt;}
.y1bd{bottom:358.946667pt;}
.y25{bottom:359.586667pt;}
.y17e{bottom:361.666667pt;}
.yc8{bottom:363.106667pt;}
.y1e3{bottom:363.746667pt;}
.y9e{bottom:364.066667pt;}
.y54{bottom:364.706667pt;}
.y214{bottom:368.226667pt;}
.y1f0{bottom:372.066667pt;}
.y14b{bottom:373.826667pt;}
.yf1{bottom:375.266667pt;}
.y24{bottom:375.906667pt;}
.y114{bottom:377.026667pt;}
.y17d{bottom:377.986667pt;}
.y1bc{bottom:378.466667pt;}
.y53{bottom:380.866667pt;}
.yc7{bottom:382.626667pt;}
.y1e2{bottom:383.266667pt;}
.y12a{bottom:383.586667pt;}
.y213{bottom:387.746667pt;}
.y9d{bottom:391.586667pt;}
.y23{bottom:392.066667pt;}
.y17c{bottom:394.146667pt;}
.y14a{bottom:394.306667pt;}
.yf0{bottom:394.786667pt;}
.y52{bottom:397.186667pt;}
.y1bb{bottom:397.986667pt;}
.yc6{bottom:402.146667pt;}
.y1e1{bottom:402.786667pt;}
.y129{bottom:403.106667pt;}
.y113{bottom:404.706667pt;}
.y212{bottom:407.266667pt;}
.y22{bottom:408.386667pt;}
.y17b{bottom:410.466667pt;}
.y9c{bottom:411.106667pt;}
.y51{bottom:413.506667pt;}
.yef{bottom:414.466667pt;}
.y1ba{bottom:417.506667pt;}
.y149{bottom:419.426667pt;}
.yc5{bottom:421.666667pt;}
.y1e0{bottom:422.466667pt;}
.y128{bottom:422.626667pt;}
.y112{bottom:424.226667pt;}
.y21{bottom:424.706667pt;}
.y17a{bottom:426.786667pt;}
.y50{bottom:429.826667pt;}
.y9b{bottom:430.626667pt;}
.yee{bottom:433.986667pt;}
.y1b9{bottom:436.866667pt;}
.y148{bottom:438.946667pt;}
.y20{bottom:441.026667pt;}
.yc4{bottom:441.186667pt;}
.y1df{bottom:441.986667pt;}
.y127{bottom:442.146667pt;}
.y179{bottom:443.106667pt;}
.y111{bottom:443.746667pt;}
.y4f{bottom:445.986667pt;}
.y211{bottom:446.466667pt;}
.y9a{bottom:450.146667pt;}
.yed{bottom:453.506667pt;}
.y1b8{bottom:454.146667pt;}
.y1f{bottom:457.186667pt;}
.y147{bottom:458.466667pt;}
.yc3{bottom:460.706667pt;}
.y1de{bottom:461.506667pt;}
.y126{bottom:461.666667pt;}
.y4e{bottom:462.306667pt;}
.y110{bottom:463.266667pt;}
.y210{bottom:465.986667pt;}
.y1a3{bottom:467.906667pt;}
.y99{bottom:469.666667pt;}
.yec{bottom:473.026667pt;}
.y1e{bottom:473.506667pt;}
.y146{bottom:477.986667pt;}
.y4d{bottom:478.626667pt;}
.y1dd{bottom:481.026667pt;}
.y10f{bottom:482.786667pt;}
.y20f{bottom:485.506667pt;}
.yc2{bottom:488.226667pt;}
.y98{bottom:489.186667pt;}
.y1d{bottom:489.826667pt;}
.yeb{bottom:492.546667pt;}
.y4c{bottom:494.786667pt;}
.y145{bottom:497.506667pt;}
.y1dc{bottom:500.546667pt;}
.y10e{bottom:502.306667pt;}
.y20e{bottom:505.026667pt;}
.y1c{bottom:505.986667pt;}
.yc1{bottom:507.773333pt;}
.y97{bottom:508.893333pt;}
.y7f{bottom:510.973333pt;}
.y4b{bottom:511.133333pt;}
.y144{bottom:517.053333pt;}
.yea{bottom:520.093333pt;}
.y1b{bottom:522.333333pt;}
.y20d{bottom:524.573333pt;}
.y22a{bottom:525.853333pt;}
.yc0{bottom:527.293333pt;}
.y4a{bottom:527.453333pt;}
.y1db{bottom:528.093333pt;}
.y125{bottom:528.413333pt;}
.y10d{bottom:529.053333pt;}
.y96{bottom:536.413333pt;}
.y143{bottom:536.573333pt;}
.y1a{bottom:538.653333pt;}
.ye9{bottom:539.613333pt;}
.y7e{bottom:540.413333pt;}
.y49{bottom:543.773333pt;}
.y20c{bottom:544.093333pt;}
.y10c{bottom:545.373333pt;}
.ybf{bottom:546.813333pt;}
.y1da{bottom:547.613333pt;}
.y124{bottom:547.933333pt;}
.y19{bottom:555.453333pt;}
.y95{bottom:555.933333pt;}
.y142{bottom:556.093333pt;}
.ye8{bottom:559.133333pt;}
.y48{bottom:559.933333pt;}
.y10b{bottom:561.533333pt;}
.y229{bottom:561.693333pt;}
.y20b{bottom:563.613333pt;}
.ybe{bottom:566.333333pt;}
.y1d9{bottom:567.133333pt;}
.y123{bottom:567.453333pt;}
.y1ef{bottom:568.093333pt;}
.y7d{bottom:569.053333pt;}
.y18{bottom:573.373333pt;}
.y94{bottom:575.453333pt;}
.y141{bottom:575.613333pt;}
.y47{bottom:576.253333pt;}
.y10a{bottom:577.853333pt;}
.ye7{bottom:578.653333pt;}
.y228{bottom:579.613333pt;}
.y20a{bottom:583.133333pt;}
.ybd{bottom:586.013333pt;}
.y1d8{bottom:586.653333pt;}
.y17{bottom:589.213333pt;}
.y46{bottom:592.733333pt;}
.y122{bottom:594.013333pt;}
.y109{bottom:594.173333pt;}
.y93{bottom:594.973333pt;}
.y140{bottom:595.293333pt;}
.y227{bottom:597.533333pt;}
.ye6{bottom:598.173333pt;}
.y7c{bottom:598.653333pt;}
.y16{bottom:600.413333pt;}
.y209{bottom:602.653333pt;}
.ybc{bottom:605.533333pt;}
.y15e{bottom:606.173333pt;}
.y45{bottom:609.053333pt;}
.y108{bottom:610.333333pt;}
.y92{bottom:614.493333pt;}
.y13f{bottom:614.813333pt;}
.y15{bottom:615.293333pt;}
.y7b{bottom:616.573333pt;}
.ye5{bottom:617.693333pt;}
.y208{bottom:622.173333pt;}
.ybb{bottom:625.053333pt;}
.y44{bottom:625.213333pt;}
.y1d7{bottom:625.693333pt;}
.y107{bottom:626.653333pt;}
.y14{bottom:626.973333pt;}
.y226{bottom:633.213333pt;}
.y7a{bottom:634.013333pt;}
.ye4{bottom:637.213333pt;}
.y43{bottom:641.533333pt;}
.y207{bottom:641.693333pt;}
.y106{bottom:642.973333pt;}
.yba{bottom:644.573333pt;}
.y1d6{bottom:645.213333pt;}
.y13{bottom:646.013333pt;}
.y79{bottom:650.333333pt;}
.y225{bottom:651.133333pt;}
.y91{bottom:653.533333pt;}
.ye3{bottom:656.733333pt;}
.y42{bottom:657.853333pt;}
.y105{bottom:659.293333pt;}
.y206{bottom:661.213333pt;}
.y1d5{bottom:664.733333pt;}
.y12{bottom:665.853333pt;}
.y78{bottom:666.653333pt;}
.y224{bottom:669.053333pt;}
.yb9{bottom:672.093333pt;}
.y90{bottom:673.053333pt;}
.y41{bottom:674.013333pt;}
.ye2{bottom:676.253333pt;}
.y11{bottom:677.533333pt;}
.y205{bottom:680.733333pt;}
.y77{bottom:682.973333pt;}
.y104{bottom:684.253333pt;}
.y223{bottom:686.973333pt;}
.y40{bottom:690.333333pt;}
.yb8{bottom:691.613333pt;}
.y1d4{bottom:692.253333pt;}
.y8f{bottom:692.573333pt;}
.y10{bottom:696.413333pt;}
.y76{bottom:699.133333pt;}
.y204{bottom:700.253333pt;}
.ye1{bottom:703.933333pt;}
.y222{bottom:704.893333pt;}
.y3f{bottom:706.653333pt;}
.yb7{bottom:711.133333pt;}
.y1d3{bottom:711.933333pt;}
.y13e{bottom:712.093333pt;}
.y75{bottom:715.453333pt;}
.yf{bottom:716.253333pt;}
.y203{bottom:719.933333pt;}
.y8e{bottom:720.093333pt;}
.y221{bottom:722.813333pt;}
.y3e{bottom:722.973333pt;}
.ye0{bottom:723.453333pt;}
.ye{bottom:727.933333pt;}
.y191{bottom:729.373333pt;}
.y1d2{bottom:731.453333pt;}
.y13d{bottom:731.613333pt;}
.y74{bottom:731.773333pt;}
.yb6{bottom:738.493333pt;}
.y3d{bottom:739.133333pt;}
.y202{bottom:739.453333pt;}
.y8d{bottom:739.613333pt;}
.y220{bottom:740.733333pt;}
.ydf{bottom:742.973333pt;}
.yd{bottom:746.813333pt;}
.y73{bottom:747.933333pt;}
.y1d1{bottom:750.973333pt;}
.y13c{bottom:751.133333pt;}
.y3c{bottom:755.493333pt;}
.y201{bottom:759.013333pt;}
.y8c{bottom:759.173333pt;}
.yde{bottom:762.533333pt;}
.y72{bottom:764.293333pt;}
.y1d0{bottom:770.533333pt;}
.y13b{bottom:770.693333pt;}
.y3b{bottom:771.813333pt;}
.yc{bottom:772.773333pt;}
.y200{bottom:778.533333pt;}
.y8b{bottom:778.693333pt;}
.yb5{bottom:779.493333pt;}
.y71{bottom:780.613333pt;}
.ydd{bottom:782.053333pt;}
.y3a{bottom:788.133333pt;}
.y1cf{bottom:790.053333pt;}
.y13a{bottom:790.373333pt;}
.y70{bottom:796.933333pt;}
.y1ff{bottom:798.053333pt;}
.y8a{bottom:798.373333pt;}
.yb{bottom:798.853333pt;}
.yb4{bottom:799.973333pt;}
.ydc{bottom:801.573333pt;}
.y39{bottom:804.293333pt;}
.y1ce{bottom:809.573333pt;}
.y139{bottom:809.893333pt;}
.y6f{bottom:813.093333pt;}
.y1fe{bottom:817.573333pt;}
.y89{bottom:817.893333pt;}
.yb3{bottom:820.293333pt;}
.y38{bottom:820.613333pt;}
.y103{bottom:821.093333pt;}
.ya{bottom:824.773333pt;}
.ydb{bottom:829.093333pt;}
.y6e{bottom:829.413333pt;}
.y37{bottom:836.933333pt;}
.y1cd{bottom:837.093333pt;}
.y88{bottom:837.413333pt;}
.y102{bottom:840.613333pt;}
.y6d{bottom:845.733333pt;}
.yb2{bottom:848.613333pt;}
.y9{bottom:850.213333pt;}
.y36{bottom:853.093333pt;}
.y1cc{bottom:856.613333pt;}
.y87{bottom:856.933333pt;}
.y6c{bottom:862.053333pt;}
.yb1{bottom:868.133333pt;}
.y8{bottom:872.933333pt;}
.y1cb{bottom:876.133333pt;}
.y86{bottom:876.453333pt;}
.y6b{bottom:878.213333pt;}
.y15d{bottom:883.813333pt;}
.yb0{bottom:887.653333pt;}
.y6a{bottom:895.013333pt;}
.y1ca{bottom:895.653333pt;}
.y138{bottom:895.973333pt;}
.y7{bottom:899.333333pt;}
.y85{bottom:903.973333pt;}
.y15c{bottom:904.613333pt;}
.yaf{bottom:907.173333pt;}
.y1c9{bottom:915.173333pt;}
.y137{bottom:915.493333pt;}
.y15b{bottom:920.933333pt;}
.y84{bottom:923.493333pt;}
.y69{bottom:924.933333pt;}
.y101{bottom:926.693333pt;}
.yda{bottom:933.893333pt;}
.yae{bottom:934.693333pt;}
.y15a{bottom:937.253333pt;}
.y6{bottom:938.373333pt;}
.y68{bottom:942.373333pt;}
.y83{bottom:943.013333pt;}
.y136{bottom:943.653333pt;}
.y100{bottom:946.213333pt;}
.yd9{bottom:950.213333pt;}
.yad{bottom:954.213333pt;}
.y67{bottom:958.693333pt;}
.y82{bottom:962.533333pt;}
.yff{bottom:965.733333pt;}
.yd8{bottom:966.533333pt;}
.yac{bottom:973.733333pt;}
.y18f{bottom:974.533333pt;}
.y66{bottom:975.013333pt;}
.y5{bottom:977.413333pt;}
.y81{bottom:982.053333pt;}
.yd7{bottom:982.693333pt;}
.yfe{bottom:985.413333pt;}
.y65{bottom:991.333333pt;}
.yab{bottom:993.413333pt;}
.yd6{bottom:999.013333pt;}
.y64{bottom:1007.520000pt;}
.y80{bottom:1010.400000pt;}
.yaa{bottom:1012.960000pt;}
.yd5{bottom:1015.360000pt;}
.y4{bottom:1016.640000pt;}
.y63{bottom:1023.840000pt;}
.y5d{bottom:1040.320000pt;}
.y61{bottom:1047.040000pt;}
.y5c{bottom:1058.720000pt;}
.y5b{bottom:1074.880000pt;}
.y5a{bottom:1091.040000pt;}
.h1c{height:16.160000pt;}
.h1b{height:16.320000pt;}
.h1f{height:20.000000pt;}
.ha{height:31.828125pt;}
.hc{height:32.765625pt;}
.h12{height:40.566250pt;}
.h18{height:42.866250pt;}
.h10{height:44.897813pt;}
.h17{height:44.965000pt;}
.hf{height:46.039063pt;}
.h11{height:46.116875pt;}
.h13{height:47.742188pt;}
.h4{height:50.887500pt;}
.h15{height:51.031250pt;}
.h14{height:51.117500pt;}
.h2{height:52.834688pt;}
.hb{height:54.390938pt;}
.h6{height:57.183750pt;}
.h9{height:58.563750pt;}
.hd{height:60.288750pt;}
.h19{height:63.656250pt;}
.h7{height:65.003750pt;}
.h1a{height:65.531250pt;}
.h16{height:69.120000pt;}
.h8{height:76.671562pt;}
.h3{height:84.512000pt;}
.h5{height:127.312500pt;}
.h20{height:244.186667pt;}
.h21{height:260.506667pt;}
.h1d{height:276.666667pt;}
.h1e{height:455.746667pt;}
.he{height:1112.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:46.560000pt;}
.w7{width:60.320000pt;}
.w8{width:74.880000pt;}
.w3{width:80.000000pt;}
.w6{width:112.512000pt;}
.wb{width:120.512000pt;}
.wd{width:127.232000pt;}
.w5{width:157.786653pt;}
.w4{width:158.106643pt;}
.w9{width:254.626667pt;}
.we{width:333.506667pt;}
.wc{width:406.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:6.880000pt;}
.x38{left:9.600000pt;}
.x1f{left:13.759976pt;}
.x36{left:20.000000pt;}
.x41{left:22.080000pt;}
.x3a{left:23.520000pt;}
.x3{left:25.920000pt;}
.x3b{left:33.600000pt;}
.x25{left:59.039976pt;}
.x23{left:61.439976pt;}
.x1e{left:64.799976pt;}
.x24{left:66.079976pt;}
.x1d{left:67.679976pt;}
.x2b{left:75.679988pt;}
.x1a{left:90.431976pt;}
.x1c{left:91.391976pt;}
.x17{left:93.951976pt;}
.x18{left:95.551976pt;}
.x19{left:97.791976pt;}
.x21{left:102.111976pt;}
.x22{left:108.031976pt;}
.x1b{left:111.871976pt;}
.x1{left:113.471988pt;}
.x26{left:121.471976pt;}
.x2e{left:122.911988pt;}
.x20{left:128.191976pt;}
.x2c{left:133.466653pt;}
.x16{left:148.506643pt;}
.x2a{left:160.666655pt;}
.x44{left:166.106667pt;}
.x33{left:168.346667pt;}
.x14{left:170.266655pt;}
.x42{left:175.226655pt;}
.x3f{left:180.506667pt;}
.x2f{left:184.666655pt;}
.x4{left:186.746655pt;}
.x3e{left:187.706655pt;}
.xb{left:195.866655pt;}
.x8{left:203.226655pt;}
.x29{left:205.786655pt;}
.x2d{left:207.866655pt;}
.x45{left:213.466667pt;}
.x28{left:219.226655pt;}
.x15{left:226.906655pt;}
.x27{left:243.866655pt;}
.x5{left:263.746655pt;}
.x31{left:274.146655pt;}
.x35{left:281.506667pt;}
.x32{left:288.386655pt;}
.x6{left:298.626655pt;}
.x40{left:301.826667pt;}
.x30{left:311.906655pt;}
.xa{left:313.506655pt;}
.x46{left:341.666667pt;}
.x37{left:342.626667pt;}
.x3c{left:358.306655pt;}
.x9{left:372.066655pt;}
.x43{left:389.666655pt;}
.xf{left:415.906655pt;}
.x39{left:418.146667pt;}
.x3d{left:420.546655pt;}
.x10{left:467.133322pt;}
.xd{left:478.973322pt;}
.x12{left:494.973322pt;}
.xc{left:496.253322pt;}
.x7{left:507.773322pt;}
.x11{left:553.213322pt;}
.x13{left:572.573322pt;}
.xe{left:680.453322pt;}
.x2{left:697.093333pt;}
}




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