
    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_f4ed607c35c0b442946a0c1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fc2920a511c6a2438e23b687.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b1c4c8f87f60bc95a704780d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_b6eb80b2dbad058f505fc8b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740234;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_491fd5c03073f1aa73e15c67.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_f91a77280ed532704d889f1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_e52aa6ca9794429a6adb3d7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_21fa3c079a51cf42b3496f3f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_85246ec94c58cc8fb70b415b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_5b41d229bb4aa8d19aad2759.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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_e9d97601027ef26235272377.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933594;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_c74cfde58f01231255530446.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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_c350472f7ca781519ca9ac21.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.136230;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_455c233d91af6764e569cc1c.woff2')format("woff");}.fff{font-family:fff;line-height:0.927734;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v5{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v7{vertical-align:-5.760000px;}
.v6{vertical-align:-3.600000px;}
.va{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.440000px;}
.v9{vertical-align:2.880000px;}
.v1{vertical-align:15.120000px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:23.760000px;}
.ls1f{letter-spacing:-0.804000px;}
.ls1d{letter-spacing:-0.587400px;}
.ls7{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.501000px;}
.ls6{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.259800px;}
.ls20{letter-spacing:-0.219000px;}
.ls17{letter-spacing:-0.195600px;}
.ls4{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.109200px;}
.ls23{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.024480px;}
.ls14{letter-spacing:0.031680px;}
.lsc{letter-spacing:0.040320px;}
.ls11{letter-spacing:0.046080px;}
.ls12{letter-spacing:0.061800px;}
.lsd{letter-spacing:0.074880px;}
.ls19{letter-spacing:0.086400px;}
.lsf{letter-spacing:0.100800px;}
.ls10{letter-spacing:0.132480px;}
.ls9{letter-spacing:0.172800px;}
.lsa{letter-spacing:0.187200px;}
.ls26{letter-spacing:0.195600px;}
.lsb{letter-spacing:0.218880px;}
.ls18{letter-spacing:0.219000px;}
.ls21{letter-spacing:0.226080px;}
.ls13{letter-spacing:0.244800px;}
.ls15{letter-spacing:0.259200px;}
.ls1c{letter-spacing:0.299520px;}
.ls1{letter-spacing:0.305280px;}
.ls8{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.328320px;}
.ls5{letter-spacing:0.576000px;}
.ls0{letter-spacing:1.098000px;}
.ls1b{letter-spacing:67.680000px;}
.ls22{letter-spacing:81.360000px;}
.ls1e{letter-spacing:150.145920px;}
.lse{letter-spacing:169.067520px;}
.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;}
}
.ws10{word-spacing:-66.499200px;}
.wsb{word-spacing:-66.240000px;}
.ws8{word-spacing:-63.360000px;}
.ws18{word-spacing:-62.772600px;}
.ws4{word-spacing:-20.016000px;}
.ws1b{word-spacing:-16.613280px;}
.ws1a{word-spacing:-16.506480px;}
.ws17{word-spacing:-16.353480px;}
.ws6{word-spacing:-16.145400px;}
.ws15{word-spacing:-16.059000px;}
.ws1c{word-spacing:-16.035600px;}
.ws16{word-spacing:-15.926400px;}
.ws7{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.730800px;}
.ws14{word-spacing:-15.644400px;}
.ws19{word-spacing:-15.621000px;}
.ws11{word-spacing:-15.215040px;}
.ws12{word-spacing:-15.001920px;}
.wse{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.572800px;}
.ws5{word-spacing:-13.410720px;}
.ws2{word-spacing:-12.888000px;}
.ws0{word-spacing:-12.312000px;}
.ws1{word-spacing:-12.168000px;}
.wsa{word-spacing:-10.486080px;}
.wsd{word-spacing:-10.440000px;}
.wsf{word-spacing:-9.499560px;}
.ws3{word-spacing:-7.920000px;}
.ws9{word-spacing:0.000000px;}
._1b{margin-left:-2.249280px;}
._0{margin-left:-1.008000px;}
._1{width:1.252800px;}
._3{width:2.298240px;}
._2{width:3.555600px;}
._6{width:4.721280px;}
._4{width:6.589440px;}
._5{width:7.914240px;}
._7{width:9.394560px;}
._1a{width:10.621440px;}
._f{width:11.784960px;}
._8{width:13.685760px;}
._13{width:14.739360px;}
._12{width:16.971840px;}
._9{width:18.120960px;}
._1c{width:19.609920px;}
._10{width:20.972160px;}
._e{width:22.360320px;}
._a{width:23.610240px;}
._b{width:24.860160px;}
._11{width:26.353920px;}
._d{width:27.423360px;}
._c{width:28.823040px;}
._31{width:39.591840px;}
._14{width:43.349760px;}
._26{width:50.508000px;}
._32{width:53.238720px;}
._15{width:61.349760px;}
._23{width:63.505920px;}
._27{width:77.262240px;}
._16{width:78.629760px;}
._34{width:80.182080px;}
._17{width:86.549760px;}
._18{width:100.949760px;}
._2b{width:103.429920px;}
._1d{width:122.698560px;}
._2c{width:128.205840px;}
._19{width:140.174400px;}
._28{width:164.667360px;}
._30{width:165.874080px;}
._25{width:169.193280px;}
._29{width:179.655360px;}
._1e{width:181.635360px;}
._33{width:194.194080px;}
._1f{width:196.215360px;}
._2a{width:198.615360px;}
._24{width:208.970400px;}
._20{width:330.980160px;}
._21{width:368.295360px;}
._22{width:382.515360px;}
._2d{width:1502.940000px;}
._2f{width:1513.740000px;}
._2e{width:1592.166720px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,240);}
.fsa{font-size:2.880000px;}
.fsd{font-size:5.760000px;}
.fse{font-size:18.000000px;}
.fsc{font-size:30.240000px;}
.fs1{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fsb{font-size:44.018465px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:66.786636px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:144.000000px;}
.y60{bottom:-1.440000px;}
.y0{bottom:0.000000px;}
.y80{bottom:2.160000px;}
.y69{bottom:3.060000px;}
.y7f{bottom:3.600000px;}
.y84{bottom:3.780000px;}
.y68{bottom:4.320000px;}
.y66{bottom:4.500000px;}
.y82{bottom:5.940000px;}
.ya3{bottom:6.660000px;}
.ya6{bottom:7.920000px;}
.ya9{bottom:8.100000px;}
.ya4{bottom:8.820000px;}
.y9a{bottom:9.180000px;}
.yba{bottom:9.900000px;}
.ybf{bottom:9.930000px;}
.ya7{bottom:10.080000px;}
.yaa{bottom:10.260000px;}
.yb4{bottom:10.620000px;}
.y6f{bottom:10.800000px;}
.y76{bottom:11.340000px;}
.ybb{bottom:12.060000px;}
.yc0{bottom:12.090000px;}
.ybd{bottom:12.240000px;}
.yb0{bottom:12.825000px;}
.y77{bottom:13.500000px;}
.ya1{bottom:14.040000px;}
.y72{bottom:14.760000px;}
.y6d{bottom:16.020000px;}
.y61{bottom:16.200000px;}
.y74{bottom:16.920000px;}
.y94{bottom:17.460000px;}
.y6b{bottom:17.640000px;}
.y7b{bottom:18.000000px;}
.y63{bottom:18.900000px;}
.yc5{bottom:19.800000px;}
.y89{bottom:19.980000px;}
.yc6{bottom:21.960000px;}
.y79{bottom:22.320000px;}
.y7e{bottom:23.040000px;}
.y81{bottom:23.760000px;}
.y98{bottom:24.840000px;}
.y70{bottom:25.560000px;}
.yb2{bottom:26.100000px;}
.y99{bottom:27.000000px;}
.y90{bottom:27.585000px;}
.yb3{bottom:28.260000px;}
.yae{bottom:28.305000px;}
.y9f{bottom:29.520000px;}
.y87{bottom:30.420000px;}
.yaf{bottom:30.465000px;}
.y96{bottom:31.500000px;}
.ya0{bottom:31.680000px;}
.y92{bottom:32.940000px;}
.y6c{bottom:33.660000px;}
.y93{bottom:35.100000px;}
.y8e{bottom:43.065000px;}
.y8f{bottom:45.225000px;}
.y1ad{bottom:111.996000px;}
.y195{bottom:112.536000px;}
.y169{bottom:113.976000px;}
.y100{bottom:114.156000px;}
.y9b{bottom:115.416000px;}
.y22f{bottom:115.596000px;}
.y154{bottom:117.396000px;}
.y30{bottom:117.936000px;}
.y1d9{bottom:121.716000px;}
.y201{bottom:124.056000px;}
.y127{bottom:126.216000px;}
.y168{bottom:128.736000px;}
.y5d{bottom:133.056000px;}
.y194{bottom:133.776000px;}
.y22e{bottom:134.496000px;}
.y153{bottom:135.216000px;}
.yff{bottom:135.396000px;}
.y2f{bottom:137.556000px;}
.y200{bottom:142.056000px;}
.y1d8{bottom:142.956000px;}
.yd5{bottom:144.936000px;}
.y13d{bottom:147.456000px;}
.y126{bottom:147.996000px;}
.y167{bottom:150.870000px;}
.y22d{bottom:152.490000px;}
.y152{bottom:152.850000px;}
.y5c{bottom:154.290000px;}
.y193{bottom:155.010000px;}
.y97{bottom:155.910000px;}
.yfe{bottom:156.630000px;}
.y2e{bottom:156.990000px;}
.y1ff{bottom:160.050000px;}
.y1d7{bottom:160.230000px;}
.yd4{bottom:166.170000px;}
.y1ac{bottom:166.710000px;}
.y22c{bottom:170.490000px;}
.y151{bottom:170.670000px;}
.y1d6{bottom:174.450000px;}
.y5b{bottom:175.530000px;}
.y192{bottom:176.250000px;}
.y2d{bottom:176.790000px;}
.y125{bottom:177.690000px;}
.yfd{bottom:177.870000px;}
.y1fe{bottom:178.050000px;}
.y166{bottom:180.570000px;}
.yd3{bottom:187.410000px;}
.y22b{bottom:188.490000px;}
.y191{bottom:190.470000px;}
.y1d5{bottom:195.690000px;}
.y1fd{bottom:196.050000px;}
.y95{bottom:196.410000px;}
.y5a{bottom:196.770000px;}
.y2c{bottom:197.130000px;}
.yfc{bottom:199.110000px;}
.y150{bottom:199.830000px;}
.y190{bottom:200.010000px;}
.y13c{bottom:200.550000px;}
.y22a{bottom:206.490000px;}
.yd2{bottom:208.650000px;}
.y1fc{bottom:214.050000px;}
.y124{bottom:216.390000px;}
.y1d4{bottom:216.930000px;}
.y2b{bottom:217.110000px;}
.y1ab{bottom:217.650000px;}
.y59{bottom:218.190000px;}
.y165{bottom:220.350000px;}
.yfb{bottom:220.530000px;}
.y18f{bottom:221.790000px;}
.y229{bottom:224.490000px;}
.yd1{bottom:229.890000px;}
.y1fb{bottom:232.050000px;}
.y1aa{bottom:235.290000px;}
.y2a{bottom:236.550000px;}
.y1d3{bottom:238.170000px;}
.y58{bottom:239.430000px;}
.yfa{bottom:242.310000px;}
.y228{bottom:242.490000px;}
.y91{bottom:243.570000px;}
.y1fa{bottom:250.050000px;}
.yd0{bottom:251.130000px;}
.y13b{bottom:254.010000px;}
.y29{bottom:255.990000px;}
.y1a9{bottom:259.410000px;}
.y227{bottom:260.490000px;}
.y57{bottom:260.670000px;}
.y17d{bottom:264.090000px;}
.yf9{bottom:264.450000px;}
.y18e{bottom:265.170000px;}
.y14f{bottom:267.510000px;}
.y1f9{bottom:268.050000px;}
.y1b4{bottom:272.190000px;}
.ycf{bottom:272.550000px;}
.y28{bottom:275.610000px;}
.y123{bottom:277.230000px;}
.y226{bottom:278.490000px;}
.y1d2{bottom:280.650000px;}
.y56{bottom:281.910000px;}
.y18d{bottom:282.270000px;}
.y1a8{bottom:283.710000px;}
.yf8{bottom:286.050000px;}
.y17c{bottom:286.230000px;}
.y8d{bottom:292.170000px;}
.yce{bottom:293.790000px;}
.y27{bottom:295.050000px;}
.y18c{bottom:296.490000px;}
.y122{bottom:298.470000px;}
.y1a7{bottom:301.350000px;}
.y13a{bottom:301.530000px;}
.y55{bottom:303.150000px;}
.y1f8{bottom:304.050000px;}
.yf7{bottom:307.290000px;}
.y17b{bottom:308.370000px;}
.y1d1{bottom:309.990000px;}
.y26{bottom:314.490000px;}
.ycd{bottom:315.030000px;}
.y18b{bottom:317.775000px;}
.y121{bottom:319.755000px;}
.y14e{bottom:321.735000px;}
.y1f7{bottom:322.095000px;}
.y54{bottom:324.435000px;}
.y164{bottom:328.395000px;}
.y139{bottom:328.755000px;}
.yf6{bottom:329.115000px;}
.y17a{bottom:330.555000px;}
.y1a6{bottom:330.735000px;}
.y225{bottom:332.535000px;}
.y25{bottom:334.155000px;}
.ycc{bottom:336.315000px;}
.y18a{bottom:339.015000px;}
.y1f6{bottom:340.095000px;}
.y120{bottom:340.995000px;}
.y53{bottom:345.675000px;}
.y1d0{bottom:349.635000px;}
.y224{bottom:350.535000px;}
.yf5{bottom:350.715000px;}
.y179{bottom:352.155000px;}
.y24{bottom:353.595000px;}
.y138{bottom:356.115000px;}
.ycb{bottom:357.555000px;}
.y1f5{bottom:358.095000px;}
.y189{bottom:360.435000px;}
.y11f{bottom:362.415000px;}
.y8c{bottom:366.555000px;}
.y52{bottom:366.915000px;}
.y223{bottom:368.535000px;}
.y1a5{bottom:370.335000px;}
.y1cf{bottom:371.055000px;}
.yf4{bottom:371.955000px;}
.y23{bottom:373.035000px;}
.y14d{bottom:373.755000px;}
.y1f4{bottom:376.095000px;}
.yca{bottom:378.795000px;}
.y188{bottom:381.675000px;}
.y11e{bottom:383.655000px;}
.y137{bottom:385.455000px;}
.y222{bottom:386.535000px;}
.y1b3{bottom:387.795000px;}
.y51{bottom:388.335000px;}
.y1a4{bottom:391.755000px;}
.y178{bottom:391.935000px;}
.y1ce{bottom:392.295000px;}
.y22{bottom:392.475000px;}
.yf3{bottom:393.375000px;}
.y1f3{bottom:394.095000px;}
.y187{bottom:398.775000px;}
.yc9{bottom:400.035000px;}
.y11d{bottom:404.175000px;}
.y221{bottom:404.535000px;}
.y8b{bottom:405.255000px;}
.y14c{bottom:407.415000px;}
.y50{bottom:409.575000px;}
.y21{bottom:412.095000px;}
.y186{bottom:412.995000px;}
.y177{bottom:413.535000px;}
.y1a3{bottom:421.095000px;}
.yc8{bottom:421.275000px;}
.y220{bottom:422.535000px;}
.yf2{bottom:422.715000px;}
.y11c{bottom:425.595000px;}
.y185{bottom:428.835000px;}
.y1f2{bottom:430.095000px;}
.y4f{bottom:430.815000px;}
.y20{bottom:431.535000px;}
.y176{bottom:434.775000px;}
.yc7{bottom:434.955000px;}
.y8a{bottom:437.295000px;}
.y184{bottom:440.355000px;}
.y21f{bottom:440.535000px;}
.y14b{bottom:442.875000px;}
.y11b{bottom:446.835000px;}
.y1f1{bottom:448.095000px;}
.y136{bottom:450.795000px;}
.y1f{bottom:450.975000px;}
.y4e{bottom:452.055000px;}
.yc4{bottom:455.115000px;}
.y163{bottom:455.835000px;}
.y1cd{bottom:456.015000px;}
.y175{bottom:456.195000px;}
.y88{bottom:456.735000px;}
.y21e{bottom:458.535000px;}
.y1a2{bottom:460.695000px;}
.y183{bottom:461.595000px;}
.yf1{bottom:462.315000px;}
.y1f0{bottom:466.095000px;}
.y11a{bottom:468.075000px;}
.y1e{bottom:470.415000px;}
.y4d{bottom:473.295000px;}
.y21d{bottom:476.535000px;}
.y1cc{bottom:477.255000px;}
.y174{bottom:477.435000px;}
.y162{bottom:477.615000px;}
.y14a{bottom:477.975000px;}
.y182{bottom:483.375000px;}
.yf0{bottom:484.095000px;}
.y119{bottom:489.315000px;}
.y1d{bottom:490.035000px;}
.yc3{bottom:490.575000px;}
.y4c{bottom:494.535000px;}
.y135{bottom:498.315000px;}
.y173{bottom:498.675000px;}
.y1ef{bottom:502.095000px;}
.y86{bottom:502.635000px;}
.y1b2{bottom:504.075000px;}
.y181{bottom:505.515000px;}
.yef{bottom:506.235000px;}
.y1cb{bottom:506.595000px;}
.y1c{bottom:509.475000px;}
.y118{bottom:510.555000px;}
.y21c{bottom:512.535000px;}
.y1a1{bottom:512.895000px;}
.y149{bottom:514.155000px;}
.y4b{bottom:515.775000px;}
.yc2{bottom:516.315000px;}
.y1ee{bottom:520.095000px;}
.y180{bottom:527.115000px;}
.y134{bottom:528.015000px;}
.yee{bottom:528.375000px;}
.y21b{bottom:530.535000px;}
.y117{bottom:531.795000px;}
.y4a{bottom:537.015000px;}
.y172{bottom:537.915000px;}
.y1ed{bottom:538.095000px;}
.y1b{bottom:538.815000px;}
.yc1{bottom:541.875000px;}
.y148{bottom:543.135000px;}
.yed{bottom:545.835000px;}
.y1ca{bottom:546.195000px;}
.y85{bottom:546.555000px;}
.y17f{bottom:548.355000px;}
.y21a{bottom:548.535000px;}
.y116{bottom:553.755000px;}
.y161{bottom:555.915000px;}
.y1ec{bottom:556.095000px;}
.y49{bottom:558.435000px;}
.y171{bottom:559.155000px;}
.yec{bottom:560.055000px;}
.y1a0{bottom:565.275000px;}
.y219{bottom:566.535000px;}
.y1c9{bottom:567.435000px;}
.ybe{bottom:567.615000px;}
.y1eb{bottom:574.125000px;}
.y115{bottom:575.385000px;}
.y83{bottom:576.285000px;}
.y1a{bottom:576.645000px;}
.y48{bottom:579.705000px;}
.yeb{bottom:581.325000px;}
.y218{bottom:584.565000px;}
.y19f{bottom:586.545000px;}
.y1c8{bottom:588.885000px;}
.y1ea{bottom:592.125000px;}
.ybc{bottom:593.205000px;}
.y19{bottom:595.545000px;}
.y7d{bottom:595.725000px;}
.y133{bottom:596.265000px;}
.y18{bottom:596.445000px;}
.y114{bottom:596.625000px;}
.y47{bottom:600.945000px;}
.y217{bottom:602.565000px;}
.yea{bottom:603.285000px;}
.y1c7{bottom:610.125000px;}
.y19e{bottom:615.885000px;}
.y17{bottom:616.425000px;}
.y235{bottom:617.505000px;}
.y113{bottom:617.865000px;}
.yb9{bottom:618.945000px;}
.y1b1{bottom:620.565000px;}
.ye9{bottom:620.745000px;}
.y46{bottom:622.185000px;}
.y1e9{bottom:628.125000px;}
.y1c6{bottom:631.365000px;}
.y7c{bottom:634.425000px;}
.ye8{bottom:634.965000px;}
.y16{bottom:636.045000px;}
.y216{bottom:638.565000px;}
.y234{bottom:638.925000px;}
.y112{bottom:639.645000px;}
.y45{bottom:643.425000px;}
.yb8{bottom:644.505000px;}
.y147{bottom:646.485000px;}
.y132{bottom:652.065000px;}
.y1c5{bottom:652.605000px;}
.y15{bottom:655.485000px;}
.y215{bottom:656.565000px;}
.ye7{bottom:656.745000px;}
.y1e8{bottom:657.645000px;}
.y111{bottom:661.245000px;}
.y44{bottom:664.665000px;}
.y7a{bottom:665.925000px;}
.yb7{bottom:670.245000px;}
.y160{bottom:672.945000px;}
.y1c4{bottom:673.845000px;}
.y214{bottom:674.565000px;}
.y14{bottom:674.925000px;}
.ye6{bottom:678.345000px;}
.y110{bottom:682.485000px;}
.y43{bottom:685.905000px;}
.y233{bottom:688.965000px;}
.y213{bottom:692.565000px;}
.y13{bottom:694.545000px;}
.y1c3{bottom:695.085000px;}
.y1e7{bottom:696.345000px;}
.yb6{bottom:697.245000px;}
.y78{bottom:697.425000px;}
.ye5{bottom:700.125000px;}
.y19d{bottom:700.665000px;}
.y131{bottom:701.025000px;}
.y10f{bottom:703.725000px;}
.y42{bottom:707.145000px;}
.y212{bottom:710.565000px;}
.y12{bottom:713.985000px;}
.y1c2{bottom:716.325000px;}
.ye4{bottom:721.725000px;}
.y10e{bottom:724.965000px;}
.y41{bottom:728.565000px;}
.y130{bottom:730.725000px;}
.y1b0{bottom:731.265000px;}
.y11{bottom:732.885000px;}
.y75{bottom:733.245000px;}
.y10{bottom:733.785000px;}
.y1e6{bottom:735.945000px;}
.y170{bottom:736.125000px;}
.y1c1{bottom:737.565000px;}
.yb5{bottom:737.745000px;}
.y232{bottom:739.545000px;}
.ye3{bottom:742.965000px;}
.y19c{bottom:745.665000px;}
.y10d{bottom:746.385000px;}
.y211{bottom:746.565000px;}
.y40{bottom:749.805000px;}
.yf{bottom:753.225000px;}
.ye{bottom:754.125000px;}
.y146{bottom:756.465000px;}
.y1e5{bottom:757.725000px;}
.y1c0{bottom:758.985000px;}
.y73{bottom:760.245000px;}
.y231{bottom:760.785000px;}
.ye2{bottom:764.385000px;}
.y210{bottom:764.565000px;}
.yb1{bottom:764.745000px;}
.y10c{bottom:767.625000px;}
.y3f{bottom:771.045000px;}
.y19b{bottom:773.025000px;}
.yd{bottom:774.105000px;}
.y1e4{bottom:779.325000px;}
.y12f{bottom:779.865000px;}
.y1bf{bottom:780.225000px;}
.y145{bottom:781.305000px;}
.y20f{bottom:782.565000px;}
.ye1{bottom:786.165000px;}
.y10b{bottom:788.865000px;}
.y15f{bottom:790.125000px;}
.y71{bottom:790.665000px;}
.y3e{bottom:792.285000px;}
.yc{bottom:793.005000px;}
.yb{bottom:793.905000px;}
.y1e3{bottom:800.565000px;}
.y1be{bottom:801.465000px;}
.y144{bottom:806.325000px;}
.yad{bottom:806.505000px;}
.ye0{bottom:807.765000px;}
.y19a{bottom:808.305000px;}
.y12e{bottom:810.825000px;}
.y15e{bottom:811.365000px;}
.y3d{bottom:813.525000px;}
.y17e{bottom:815.685000px;}
.y10a{bottom:818.205000px;}
.y20e{bottom:818.565000px;}
.ya{bottom:820.230000px;}
.y6e{bottom:820.410000px;}
.ydf{bottom:829.050000px;}
.y1e2{bottom:829.950000px;}
.y1bd{bottom:830.850000px;}
.y12d{bottom:832.110000px;}
.y15d{bottom:832.650000px;}
.y3c{bottom:834.810000px;}
.y20d{bottom:836.610000px;}
.y1af{bottom:842.190000px;}
.y143{bottom:843.090000px;}
.y199{bottom:848.130000px;}
.yde{bottom:850.290000px;}
.yac{bottom:850.470000px;}
.y15c{bottom:853.890000px;}
.y20c{bottom:854.610000px;}
.y3b{bottom:856.050000px;}
.y109{bottom:858.390000px;}
.y6a{bottom:860.910000px;}
.y15b{bottom:868.110000px;}
.y1e1{bottom:870.090000px;}
.y1bc{bottom:870.450000px;}
.ydd{bottom:871.530000px;}
.y20b{bottom:872.610000px;}
.yab{bottom:874.050000px;}
.y142{bottom:875.670000px;}
.y15a{bottom:877.110000px;}
.y3a{bottom:877.290000px;}
.y9{bottom:878.190000px;}
.y12c{bottom:879.270000px;}
.y108{bottom:879.990000px;}
.y141{bottom:884.670000px;}
.y20a{bottom:890.610000px;}
.y1bb{bottom:891.690000px;}
.y1e0{bottom:891.870000px;}
.ydc{bottom:893.310000px;}
.y198{bottom:894.030000px;}
.y39{bottom:896.910000px;}
.y8{bottom:897.090000px;}
.ya8{bottom:897.630000px;}
.y159{bottom:899.070000px;}
.y107{bottom:901.230000px;}
.y230{bottom:902.130000px;}
.y1df{bottom:906.090000px;}
.y140{bottom:906.450000px;}
.y65{bottom:908.070000px;}
.y209{bottom:908.610000px;}
.y7{bottom:912.750000px;}
.y1ba{bottom:912.930000px;}
.y16f{bottom:913.290000px;}
.y67{bottom:914.370000px;}
.y1de{bottom:915.090000px;}
.ydb{bottom:915.450000px;}
.y38{bottom:916.350000px;}
.y158{bottom:920.670000px;}
.ya5{bottom:921.390000px;}
.y106{bottom:922.470000px;}
.y12b{bottom:926.250000px;}
.y208{bottom:926.610000px;}
.y6{bottom:930.750000px;}
.y1b9{bottom:934.170000px;}
.y16e{bottom:934.530000px;}
.y37{bottom:935.790000px;}
.y1dd{bottom:936.330000px;}
.yda{bottom:937.770000px;}
.y157{bottom:941.910000px;}
.y64{bottom:942.270000px;}
.y105{bottom:943.710000px;}
.y207{bottom:944.610000px;}
.ya2{bottom:944.970000px;}
.y197{bottom:947.130000px;}
.y1b8{bottom:948.570000px;}
.y13f{bottom:953.970000px;}
.y12a{bottom:954.870000px;}
.y36{bottom:955.410000px;}
.y16d{bottom:955.770000px;}
.y1b7{bottom:957.570000px;}
.y1ae{bottom:958.110000px;}
.yd9{bottom:959.370000px;}
.y206{bottom:962.610000px;}
.y156{bottom:963.150000px;}
.y104{bottom:965.130000px;}
.y9e{bottom:967.290000px;}
.y62{bottom:974.670000px;}
.y35{bottom:974.850000px;}
.y16c{bottom:977.010000px;}
.y1b6{bottom:978.810000px;}
.yd8{bottom:980.610000px;}
.y196{bottom:983.490000px;}
.y155{bottom:984.390000px;}
.y103{bottom:986.910000px;}
.y1dc{bottom:989.070000px;}
.y5{bottom:991.230000px;}
.y129{bottom:992.130000px;}
.y34{bottom:994.290000px;}
.y205{bottom:998.610000px;}
.y1b5{bottom:1000.590000px;}
.y13e{bottom:1001.490000px;}
.yd7{bottom:1001.850000px;}
.y5f{bottom:1007.070000px;}
.y16b{bottom:1008.510000px;}
.y102{bottom:1009.050000px;}
.y1db{bottom:1010.310000px;}
.y9d{bottom:1012.470000px;}
.y33{bottom:1013.730000px;}
.y204{bottom:1016.610000px;}
.y128{bottom:1022.730000px;}
.yd6{bottom:1023.090000px;}
.y16a{bottom:1030.290000px;}
.y101{bottom:1031.190000px;}
.y1da{bottom:1031.550000px;}
.y4{bottom:1032.630000px;}
.y32{bottom:1033.350000px;}
.y203{bottom:1034.610000px;}
.y9c{bottom:1039.470000px;}
.y5e{bottom:1052.430000px;}
.y202{bottom:1052.610000px;}
.y31{bottom:1052.790000px;}
.y3{bottom:1100.880000px;}
.y2{bottom:1119.420000px;}
.y1{bottom:1134.900000px;}
.hf{height:2.410313px;}
.h2d{height:4.820625px;}
.h2e{height:15.064453px;}
.he{height:17.820000px;}
.h1b{height:19.440000px;}
.h2a{height:20.160000px;}
.h21{height:22.320000px;}
.h22{height:23.580000px;}
.h23{height:23.760000px;}
.h2b{height:25.308281px;}
.h27{height:25.560000px;}
.h28{height:25.596000px;}
.h26{height:25.740000px;}
.h15{height:27.000000px;}
.ha{height:29.700000px;}
.h13{height:29.736000px;}
.h14{height:30.420000px;}
.h18{height:31.500000px;}
.hc{height:32.400000px;}
.hd{height:34.200000px;}
.h5{height:35.261367px;}
.h29{height:35.460000px;}
.h17{height:35.820000px;}
.h1a{height:37.097593px;}
.h19{height:38.700000px;}
.h1{height:39.313477px;}
.h11{height:40.500000px;}
.h2c{height:41.493516px;}
.hb{height:41.535703px;}
.h25{height:41.760000px;}
.h7{height:42.910312px;}
.h1c{height:43.920000px;}
.h24{height:43.956000px;}
.h6{height:44.936719px;}
.h20{height:45.180000px;}
.h1d{height:45.900000px;}
.h10{height:47.160000px;}
.h1f{height:48.600000px;}
.h9{height:53.026875px;}
.h12{height:53.398125px;}
.h16{height:55.825312px;}
.h8{height:56.286003px;}
.h1e{height:58.716000px;}
.h4{height:59.021367px;}
.h2{height:65.884219px;}
.h3{height:108.281250px;}
.h0{height:1188.000000px;}
.w2{width:155.370000px;}
.w4{width:454.755000px;}
.w3{width:479.235000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:28.080000px;}
.x1b{left:34.920000px;}
.x1e{left:45.894000px;}
.x20{left:53.094000px;}
.x23{left:60.294000px;}
.x26{left:61.920000px;}
.x19{left:65.694000px;}
.x22{left:68.394000px;}
.x25{left:70.194000px;}
.x1c{left:74.694000px;}
.x21{left:76.494000px;}
.x1d{left:78.294000px;}
.xa{left:80.999986px;}
.x24{left:82.074000px;}
.x42{left:86.579986px;}
.x5a{left:89.999986px;}
.x40{left:91.655986px;}
.x46{left:95.255986px;}
.x3{left:108.035986px;}
.x4{left:110.015986px;}
.xb{left:114.515986px;}
.x8{left:123.695986px;}
.x39{left:133.775986px;}
.x27{left:135.035986px;}
.x18{left:148.536000px;}
.x3e{left:160.409986px;}
.x3c{left:164.909986px;}
.x31{left:168.509986px;}
.x9{left:174.989986px;}
.x44{left:189.029986px;}
.x48{left:195.509986px;}
.x4c{left:200.909986px;}
.x50{left:205.409986px;}
.x5{left:249.869986px;}
.x4e{left:254.189986px;}
.x36{left:267.689986px;}
.x58{left:272.369986px;}
.x5c{left:288.974986px;}
.x2{left:291.314986px;}
.x4a{left:299.054986px;}
.x1a{left:303.915000px;}
.x34{left:307.874986px;}
.xe{left:314.534986px;}
.xf{left:319.754986px;}
.x6{left:323.534986px;}
.x54{left:348.914986px;}
.x57{left:352.154986px;}
.x43{left:354.674986px;}
.x2d{left:356.114986px;}
.x2f{left:357.374986px;}
.x52{left:376.634986px;}
.x29{left:395.714986px;}
.x56{left:402.014986px;}
.x3d{left:408.494986px;}
.x28{left:413.714986px;}
.x3f{left:422.174986px;}
.x41{left:425.954986px;}
.x47{left:428.114986px;}
.x14{left:452.594986px;}
.x15{left:457.814986px;}
.x7{left:459.074986px;}
.x1{left:472.574986px;}
.x10{left:478.334986px;}
.x11{left:483.584986px;}
.x2c{left:524.444986px;}
.x30{left:536.504986px;}
.x33{left:541.904986px;}
.x2b{left:555.044986px;}
.x37{left:564.944986px;}
.x2a{left:613.004986px;}
.x38{left:632.624986px;}
.xc{left:640.724986px;}
.xd{left:645.944986px;}
.x3b{left:647.204986px;}
.x5b{left:653.144986px;}
.x32{left:655.304986px;}
.x3a{left:657.644986px;}
.x16{left:671.144986px;}
.x59{left:672.764986px;}
.x2e{left:674.789986px;}
.x17{left:676.409986px;}
.x35{left:689.549986px;}
.x12{left:711.509986px;}
.x13{left:716.729986px;}
.x55{left:727.709986px;}
.x51{left:728.789986px;}
.x53{left:730.769986px;}
.x4f{left:738.509986px;}
.x49{left:744.989986px;}
.x4b{left:758.129986px;}
.x4d{left:774.509986px;}
.x45{left:809.969986px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v7{vertical-align:-5.120000pt;}
.v6{vertical-align:-3.200000pt;}
.va{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.280000pt;}
.v9{vertical-align:2.560000pt;}
.v1{vertical-align:13.440000pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-0.714667pt;}
.ls1d{letter-spacing:-0.522133pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.445333pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls20{letter-spacing:-0.194667pt;}
.ls17{letter-spacing:-0.173867pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.097067pt;}
.ls23{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.021760pt;}
.ls14{letter-spacing:0.028160pt;}
.lsc{letter-spacing:0.035840pt;}
.ls11{letter-spacing:0.040960pt;}
.ls12{letter-spacing:0.054933pt;}
.lsd{letter-spacing:0.066560pt;}
.ls19{letter-spacing:0.076800pt;}
.lsf{letter-spacing:0.089600pt;}
.ls10{letter-spacing:0.117760pt;}
.ls9{letter-spacing:0.153600pt;}
.lsa{letter-spacing:0.166400pt;}
.ls26{letter-spacing:0.173867pt;}
.lsb{letter-spacing:0.194560pt;}
.ls18{letter-spacing:0.194667pt;}
.ls21{letter-spacing:0.200960pt;}
.ls13{letter-spacing:0.217600pt;}
.ls15{letter-spacing:0.230400pt;}
.ls1c{letter-spacing:0.266240pt;}
.ls1{letter-spacing:0.271360pt;}
.ls8{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.291840pt;}
.ls5{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.976000pt;}
.ls1b{letter-spacing:60.160000pt;}
.ls22{letter-spacing:72.320000pt;}
.ls1e{letter-spacing:133.463040pt;}
.lse{letter-spacing:150.282240pt;}
.ws10{word-spacing:-59.110400pt;}
.wsb{word-spacing:-58.880000pt;}
.ws8{word-spacing:-56.320000pt;}
.ws18{word-spacing:-55.797867pt;}
.ws4{word-spacing:-17.792000pt;}
.ws1b{word-spacing:-14.767360pt;}
.ws1a{word-spacing:-14.672427pt;}
.ws17{word-spacing:-14.536427pt;}
.ws6{word-spacing:-14.351467pt;}
.ws15{word-spacing:-14.274667pt;}
.ws1c{word-spacing:-14.253867pt;}
.ws16{word-spacing:-14.156800pt;}
.ws7{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.982933pt;}
.ws14{word-spacing:-13.906133pt;}
.ws19{word-spacing:-13.885333pt;}
.ws11{word-spacing:-13.524480pt;}
.ws12{word-spacing:-13.335040pt;}
.wse{word-spacing:-13.306880pt;}
.wsc{word-spacing:-12.953600pt;}
.ws5{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.456000pt;}
.ws0{word-spacing:-10.944000pt;}
.ws1{word-spacing:-10.816000pt;}
.wsa{word-spacing:-9.320960pt;}
.wsd{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.444053pt;}
.ws3{word-spacing:-7.040000pt;}
.ws9{word-spacing:0.000000pt;}
._1b{margin-left:-1.999360pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.113600pt;}
._3{width:2.042880pt;}
._2{width:3.160533pt;}
._6{width:4.196693pt;}
._4{width:5.857280pt;}
._5{width:7.034880pt;}
._7{width:8.350720pt;}
._1a{width:9.441280pt;}
._f{width:10.475520pt;}
._8{width:12.165120pt;}
._13{width:13.101653pt;}
._12{width:15.086080pt;}
._9{width:16.107520pt;}
._1c{width:17.431040pt;}
._10{width:18.641920pt;}
._e{width:19.875840pt;}
._a{width:20.986880pt;}
._b{width:22.097920pt;}
._11{width:23.425707pt;}
._d{width:24.376320pt;}
._c{width:25.620480pt;}
._31{width:35.192747pt;}
._14{width:38.533120pt;}
._26{width:44.896000pt;}
._32{width:47.323307pt;}
._15{width:54.533120pt;}
._23{width:56.449707pt;}
._27{width:68.677547pt;}
._16{width:69.893120pt;}
._34{width:71.272960pt;}
._17{width:76.933120pt;}
._18{width:89.733120pt;}
._2b{width:91.937707pt;}
._1d{width:109.065387pt;}
._2c{width:113.960747pt;}
._19{width:124.599467pt;}
._28{width:146.370987pt;}
._30{width:147.443627pt;}
._25{width:150.394027pt;}
._29{width:159.693653pt;}
._1e{width:161.453653pt;}
._33{width:172.616960pt;}
._1f{width:174.413653pt;}
._2a{width:176.546987pt;}
._24{width:185.751467pt;}
._20{width:294.204587pt;}
._21{width:327.373653pt;}
._22{width:340.013653pt;}
._2d{width:1335.946667pt;}
._2f{width:1345.546667pt;}
._2e{width:1415.259307pt;}
.fsa{font-size:2.560000pt;}
.fsd{font-size:5.120000pt;}
.fse{font-size:16.000000pt;}
.fsc{font-size:26.880000pt;}
.fs1{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fsb{font-size:39.127524pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:59.365899pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:128.000000pt;}
.y60{bottom:-1.280000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:1.920000pt;}
.y69{bottom:2.720000pt;}
.y7f{bottom:3.200000pt;}
.y84{bottom:3.360000pt;}
.y68{bottom:3.840000pt;}
.y66{bottom:4.000000pt;}
.y82{bottom:5.280000pt;}
.ya3{bottom:5.920000pt;}
.ya6{bottom:7.040000pt;}
.ya9{bottom:7.200000pt;}
.ya4{bottom:7.840000pt;}
.y9a{bottom:8.160000pt;}
.yba{bottom:8.800000pt;}
.ybf{bottom:8.826667pt;}
.ya7{bottom:8.960000pt;}
.yaa{bottom:9.120000pt;}
.yb4{bottom:9.440000pt;}
.y6f{bottom:9.600000pt;}
.y76{bottom:10.080000pt;}
.ybb{bottom:10.720000pt;}
.yc0{bottom:10.746667pt;}
.ybd{bottom:10.880000pt;}
.yb0{bottom:11.400000pt;}
.y77{bottom:12.000000pt;}
.ya1{bottom:12.480000pt;}
.y72{bottom:13.120000pt;}
.y6d{bottom:14.240000pt;}
.y61{bottom:14.400000pt;}
.y74{bottom:15.040000pt;}
.y94{bottom:15.520000pt;}
.y6b{bottom:15.680000pt;}
.y7b{bottom:16.000000pt;}
.y63{bottom:16.800000pt;}
.yc5{bottom:17.600000pt;}
.y89{bottom:17.760000pt;}
.yc6{bottom:19.520000pt;}
.y79{bottom:19.840000pt;}
.y7e{bottom:20.480000pt;}
.y81{bottom:21.120000pt;}
.y98{bottom:22.080000pt;}
.y70{bottom:22.720000pt;}
.yb2{bottom:23.200000pt;}
.y99{bottom:24.000000pt;}
.y90{bottom:24.520000pt;}
.yb3{bottom:25.120000pt;}
.yae{bottom:25.160000pt;}
.y9f{bottom:26.240000pt;}
.y87{bottom:27.040000pt;}
.yaf{bottom:27.080000pt;}
.y96{bottom:28.000000pt;}
.ya0{bottom:28.160000pt;}
.y92{bottom:29.280000pt;}
.y6c{bottom:29.920000pt;}
.y93{bottom:31.200000pt;}
.y8e{bottom:38.280000pt;}
.y8f{bottom:40.200000pt;}
.y1ad{bottom:99.552000pt;}
.y195{bottom:100.032000pt;}
.y169{bottom:101.312000pt;}
.y100{bottom:101.472000pt;}
.y9b{bottom:102.592000pt;}
.y22f{bottom:102.752000pt;}
.y154{bottom:104.352000pt;}
.y30{bottom:104.832000pt;}
.y1d9{bottom:108.192000pt;}
.y201{bottom:110.272000pt;}
.y127{bottom:112.192000pt;}
.y168{bottom:114.432000pt;}
.y5d{bottom:118.272000pt;}
.y194{bottom:118.912000pt;}
.y22e{bottom:119.552000pt;}
.y153{bottom:120.192000pt;}
.yff{bottom:120.352000pt;}
.y2f{bottom:122.272000pt;}
.y200{bottom:126.272000pt;}
.y1d8{bottom:127.072000pt;}
.yd5{bottom:128.832000pt;}
.y13d{bottom:131.072000pt;}
.y126{bottom:131.552000pt;}
.y167{bottom:134.106667pt;}
.y22d{bottom:135.546667pt;}
.y152{bottom:135.866667pt;}
.y5c{bottom:137.146667pt;}
.y193{bottom:137.786667pt;}
.y97{bottom:138.586667pt;}
.yfe{bottom:139.226667pt;}
.y2e{bottom:139.546667pt;}
.y1ff{bottom:142.266667pt;}
.y1d7{bottom:142.426667pt;}
.yd4{bottom:147.706667pt;}
.y1ac{bottom:148.186667pt;}
.y22c{bottom:151.546667pt;}
.y151{bottom:151.706667pt;}
.y1d6{bottom:155.066667pt;}
.y5b{bottom:156.026667pt;}
.y192{bottom:156.666667pt;}
.y2d{bottom:157.146667pt;}
.y125{bottom:157.946667pt;}
.yfd{bottom:158.106667pt;}
.y1fe{bottom:158.266667pt;}
.y166{bottom:160.506667pt;}
.yd3{bottom:166.586667pt;}
.y22b{bottom:167.546667pt;}
.y191{bottom:169.306667pt;}
.y1d5{bottom:173.946667pt;}
.y1fd{bottom:174.266667pt;}
.y95{bottom:174.586667pt;}
.y5a{bottom:174.906667pt;}
.y2c{bottom:175.226667pt;}
.yfc{bottom:176.986667pt;}
.y150{bottom:177.626667pt;}
.y190{bottom:177.786667pt;}
.y13c{bottom:178.266667pt;}
.y22a{bottom:183.546667pt;}
.yd2{bottom:185.466667pt;}
.y1fc{bottom:190.266667pt;}
.y124{bottom:192.346667pt;}
.y1d4{bottom:192.826667pt;}
.y2b{bottom:192.986667pt;}
.y1ab{bottom:193.466667pt;}
.y59{bottom:193.946667pt;}
.y165{bottom:195.866667pt;}
.yfb{bottom:196.026667pt;}
.y18f{bottom:197.146667pt;}
.y229{bottom:199.546667pt;}
.yd1{bottom:204.346667pt;}
.y1fb{bottom:206.266667pt;}
.y1aa{bottom:209.146667pt;}
.y2a{bottom:210.266667pt;}
.y1d3{bottom:211.706667pt;}
.y58{bottom:212.826667pt;}
.yfa{bottom:215.386667pt;}
.y228{bottom:215.546667pt;}
.y91{bottom:216.506667pt;}
.y1fa{bottom:222.266667pt;}
.yd0{bottom:223.226667pt;}
.y13b{bottom:225.786667pt;}
.y29{bottom:227.546667pt;}
.y1a9{bottom:230.586667pt;}
.y227{bottom:231.546667pt;}
.y57{bottom:231.706667pt;}
.y17d{bottom:234.746667pt;}
.yf9{bottom:235.066667pt;}
.y18e{bottom:235.706667pt;}
.y14f{bottom:237.786667pt;}
.y1f9{bottom:238.266667pt;}
.y1b4{bottom:241.946667pt;}
.ycf{bottom:242.266667pt;}
.y28{bottom:244.986667pt;}
.y123{bottom:246.426667pt;}
.y226{bottom:247.546667pt;}
.y1d2{bottom:249.466667pt;}
.y56{bottom:250.586667pt;}
.y18d{bottom:250.906667pt;}
.y1a8{bottom:252.186667pt;}
.yf8{bottom:254.266667pt;}
.y17c{bottom:254.426667pt;}
.y8d{bottom:259.706667pt;}
.yce{bottom:261.146667pt;}
.y27{bottom:262.266667pt;}
.y18c{bottom:263.546667pt;}
.y122{bottom:265.306667pt;}
.y1a7{bottom:267.866667pt;}
.y13a{bottom:268.026667pt;}
.y55{bottom:269.466667pt;}
.y1f8{bottom:270.266667pt;}
.yf7{bottom:273.146667pt;}
.y17b{bottom:274.106667pt;}
.y1d1{bottom:275.546667pt;}
.y26{bottom:279.546667pt;}
.ycd{bottom:280.026667pt;}
.y18b{bottom:282.466667pt;}
.y121{bottom:284.226667pt;}
.y14e{bottom:285.986667pt;}
.y1f7{bottom:286.306667pt;}
.y54{bottom:288.386667pt;}
.y164{bottom:291.906667pt;}
.y139{bottom:292.226667pt;}
.yf6{bottom:292.546667pt;}
.y17a{bottom:293.826667pt;}
.y1a6{bottom:293.986667pt;}
.y225{bottom:295.586667pt;}
.y25{bottom:297.026667pt;}
.ycc{bottom:298.946667pt;}
.y18a{bottom:301.346667pt;}
.y1f6{bottom:302.306667pt;}
.y120{bottom:303.106667pt;}
.y53{bottom:307.266667pt;}
.y1d0{bottom:310.786667pt;}
.y224{bottom:311.586667pt;}
.yf5{bottom:311.746667pt;}
.y179{bottom:313.026667pt;}
.y24{bottom:314.306667pt;}
.y138{bottom:316.546667pt;}
.ycb{bottom:317.826667pt;}
.y1f5{bottom:318.306667pt;}
.y189{bottom:320.386667pt;}
.y11f{bottom:322.146667pt;}
.y8c{bottom:325.826667pt;}
.y52{bottom:326.146667pt;}
.y223{bottom:327.586667pt;}
.y1a5{bottom:329.186667pt;}
.y1cf{bottom:329.826667pt;}
.yf4{bottom:330.626667pt;}
.y23{bottom:331.586667pt;}
.y14d{bottom:332.226667pt;}
.y1f4{bottom:334.306667pt;}
.yca{bottom:336.706667pt;}
.y188{bottom:339.266667pt;}
.y11e{bottom:341.026667pt;}
.y137{bottom:342.626667pt;}
.y222{bottom:343.586667pt;}
.y1b3{bottom:344.706667pt;}
.y51{bottom:345.186667pt;}
.y1a4{bottom:348.226667pt;}
.y178{bottom:348.386667pt;}
.y1ce{bottom:348.706667pt;}
.y22{bottom:348.866667pt;}
.yf3{bottom:349.666667pt;}
.y1f3{bottom:350.306667pt;}
.y187{bottom:354.466667pt;}
.yc9{bottom:355.586667pt;}
.y11d{bottom:359.266667pt;}
.y221{bottom:359.586667pt;}
.y8b{bottom:360.226667pt;}
.y14c{bottom:362.146667pt;}
.y50{bottom:364.066667pt;}
.y21{bottom:366.306667pt;}
.y186{bottom:367.106667pt;}
.y177{bottom:367.586667pt;}
.y1a3{bottom:374.306667pt;}
.yc8{bottom:374.466667pt;}
.y220{bottom:375.586667pt;}
.yf2{bottom:375.746667pt;}
.y11c{bottom:378.306667pt;}
.y185{bottom:381.186667pt;}
.y1f2{bottom:382.306667pt;}
.y4f{bottom:382.946667pt;}
.y20{bottom:383.586667pt;}
.y176{bottom:386.466667pt;}
.yc7{bottom:386.626667pt;}
.y8a{bottom:388.706667pt;}
.y184{bottom:391.426667pt;}
.y21f{bottom:391.586667pt;}
.y14b{bottom:393.666667pt;}
.y11b{bottom:397.186667pt;}
.y1f1{bottom:398.306667pt;}
.y136{bottom:400.706667pt;}
.y1f{bottom:400.866667pt;}
.y4e{bottom:401.826667pt;}
.yc4{bottom:404.546667pt;}
.y163{bottom:405.186667pt;}
.y1cd{bottom:405.346667pt;}
.y175{bottom:405.506667pt;}
.y88{bottom:405.986667pt;}
.y21e{bottom:407.586667pt;}
.y1a2{bottom:409.506667pt;}
.y183{bottom:410.306667pt;}
.yf1{bottom:410.946667pt;}
.y1f0{bottom:414.306667pt;}
.y11a{bottom:416.066667pt;}
.y1e{bottom:418.146667pt;}
.y4d{bottom:420.706667pt;}
.y21d{bottom:423.586667pt;}
.y1cc{bottom:424.226667pt;}
.y174{bottom:424.386667pt;}
.y162{bottom:424.546667pt;}
.y14a{bottom:424.866667pt;}
.y182{bottom:429.666667pt;}
.yf0{bottom:430.306667pt;}
.y119{bottom:434.946667pt;}
.y1d{bottom:435.586667pt;}
.yc3{bottom:436.066667pt;}
.y4c{bottom:439.586667pt;}
.y135{bottom:442.946667pt;}
.y173{bottom:443.266667pt;}
.y1ef{bottom:446.306667pt;}
.y86{bottom:446.786667pt;}
.y1b2{bottom:448.066667pt;}
.y181{bottom:449.346667pt;}
.yef{bottom:449.986667pt;}
.y1cb{bottom:450.306667pt;}
.y1c{bottom:452.866667pt;}
.y118{bottom:453.826667pt;}
.y21c{bottom:455.586667pt;}
.y1a1{bottom:455.906667pt;}
.y149{bottom:457.026667pt;}
.y4b{bottom:458.466667pt;}
.yc2{bottom:458.946667pt;}
.y1ee{bottom:462.306667pt;}
.y180{bottom:468.546667pt;}
.y134{bottom:469.346667pt;}
.yee{bottom:469.666667pt;}
.y21b{bottom:471.586667pt;}
.y117{bottom:472.706667pt;}
.y4a{bottom:477.346667pt;}
.y172{bottom:478.146667pt;}
.y1ed{bottom:478.306667pt;}
.y1b{bottom:478.946667pt;}
.yc1{bottom:481.666667pt;}
.y148{bottom:482.786667pt;}
.yed{bottom:485.186667pt;}
.y1ca{bottom:485.506667pt;}
.y85{bottom:485.826667pt;}
.y17f{bottom:487.426667pt;}
.y21a{bottom:487.586667pt;}
.y116{bottom:492.226667pt;}
.y161{bottom:494.146667pt;}
.y1ec{bottom:494.306667pt;}
.y49{bottom:496.386667pt;}
.y171{bottom:497.026667pt;}
.yec{bottom:497.826667pt;}
.y1a0{bottom:502.466667pt;}
.y219{bottom:503.586667pt;}
.y1c9{bottom:504.386667pt;}
.ybe{bottom:504.546667pt;}
.y1eb{bottom:510.333333pt;}
.y115{bottom:511.453333pt;}
.y83{bottom:512.253333pt;}
.y1a{bottom:512.573333pt;}
.y48{bottom:515.293333pt;}
.yeb{bottom:516.733333pt;}
.y218{bottom:519.613333pt;}
.y19f{bottom:521.373333pt;}
.y1c8{bottom:523.453333pt;}
.y1ea{bottom:526.333333pt;}
.ybc{bottom:527.293333pt;}
.y19{bottom:529.373333pt;}
.y7d{bottom:529.533333pt;}
.y133{bottom:530.013333pt;}
.y18{bottom:530.173333pt;}
.y114{bottom:530.333333pt;}
.y47{bottom:534.173333pt;}
.y217{bottom:535.613333pt;}
.yea{bottom:536.253333pt;}
.y1c7{bottom:542.333333pt;}
.y19e{bottom:547.453333pt;}
.y17{bottom:547.933333pt;}
.y235{bottom:548.893333pt;}
.y113{bottom:549.213333pt;}
.yb9{bottom:550.173333pt;}
.y1b1{bottom:551.613333pt;}
.ye9{bottom:551.773333pt;}
.y46{bottom:553.053333pt;}
.y1e9{bottom:558.333333pt;}
.y1c6{bottom:561.213333pt;}
.y7c{bottom:563.933333pt;}
.ye8{bottom:564.413333pt;}
.y16{bottom:565.373333pt;}
.y216{bottom:567.613333pt;}
.y234{bottom:567.933333pt;}
.y112{bottom:568.573333pt;}
.y45{bottom:571.933333pt;}
.yb8{bottom:572.893333pt;}
.y147{bottom:574.653333pt;}
.y132{bottom:579.613333pt;}
.y1c5{bottom:580.093333pt;}
.y15{bottom:582.653333pt;}
.y215{bottom:583.613333pt;}
.ye7{bottom:583.773333pt;}
.y1e8{bottom:584.573333pt;}
.y111{bottom:587.773333pt;}
.y44{bottom:590.813333pt;}
.y7a{bottom:591.933333pt;}
.yb7{bottom:595.773333pt;}
.y160{bottom:598.173333pt;}
.y1c4{bottom:598.973333pt;}
.y214{bottom:599.613333pt;}
.y14{bottom:599.933333pt;}
.ye6{bottom:602.973333pt;}
.y110{bottom:606.653333pt;}
.y43{bottom:609.693333pt;}
.y233{bottom:612.413333pt;}
.y213{bottom:615.613333pt;}
.y13{bottom:617.373333pt;}
.y1c3{bottom:617.853333pt;}
.y1e7{bottom:618.973333pt;}
.yb6{bottom:619.773333pt;}
.y78{bottom:619.933333pt;}
.ye5{bottom:622.333333pt;}
.y19d{bottom:622.813333pt;}
.y131{bottom:623.133333pt;}
.y10f{bottom:625.533333pt;}
.y42{bottom:628.573333pt;}
.y212{bottom:631.613333pt;}
.y12{bottom:634.653333pt;}
.y1c2{bottom:636.733333pt;}
.ye4{bottom:641.533333pt;}
.y10e{bottom:644.413333pt;}
.y41{bottom:647.613333pt;}
.y130{bottom:649.533333pt;}
.y1b0{bottom:650.013333pt;}
.y11{bottom:651.453333pt;}
.y75{bottom:651.773333pt;}
.y10{bottom:652.253333pt;}
.y1e6{bottom:654.173333pt;}
.y170{bottom:654.333333pt;}
.y1c1{bottom:655.613333pt;}
.yb5{bottom:655.773333pt;}
.y232{bottom:657.373333pt;}
.ye3{bottom:660.413333pt;}
.y19c{bottom:662.813333pt;}
.y10d{bottom:663.453333pt;}
.y211{bottom:663.613333pt;}
.y40{bottom:666.493333pt;}
.yf{bottom:669.533333pt;}
.ye{bottom:670.333333pt;}
.y146{bottom:672.413333pt;}
.y1e5{bottom:673.533333pt;}
.y1c0{bottom:674.653333pt;}
.y73{bottom:675.773333pt;}
.y231{bottom:676.253333pt;}
.ye2{bottom:679.453333pt;}
.y210{bottom:679.613333pt;}
.yb1{bottom:679.773333pt;}
.y10c{bottom:682.333333pt;}
.y3f{bottom:685.373333pt;}
.y19b{bottom:687.133333pt;}
.yd{bottom:688.093333pt;}
.y1e4{bottom:692.733333pt;}
.y12f{bottom:693.213333pt;}
.y1bf{bottom:693.533333pt;}
.y145{bottom:694.493333pt;}
.y20f{bottom:695.613333pt;}
.ye1{bottom:698.813333pt;}
.y10b{bottom:701.213333pt;}
.y15f{bottom:702.333333pt;}
.y71{bottom:702.813333pt;}
.y3e{bottom:704.253333pt;}
.yc{bottom:704.893333pt;}
.yb{bottom:705.693333pt;}
.y1e3{bottom:711.613333pt;}
.y1be{bottom:712.413333pt;}
.y144{bottom:716.733333pt;}
.yad{bottom:716.893333pt;}
.ye0{bottom:718.013333pt;}
.y19a{bottom:718.493333pt;}
.y12e{bottom:720.733333pt;}
.y15e{bottom:721.213333pt;}
.y3d{bottom:723.133333pt;}
.y17e{bottom:725.053333pt;}
.y10a{bottom:727.293333pt;}
.y20e{bottom:727.613333pt;}
.ya{bottom:729.093333pt;}
.y6e{bottom:729.253333pt;}
.ydf{bottom:736.933333pt;}
.y1e2{bottom:737.733333pt;}
.y1bd{bottom:738.533333pt;}
.y12d{bottom:739.653333pt;}
.y15d{bottom:740.133333pt;}
.y3c{bottom:742.053333pt;}
.y20d{bottom:743.653333pt;}
.y1af{bottom:748.613333pt;}
.y143{bottom:749.413333pt;}
.y199{bottom:753.893333pt;}
.yde{bottom:755.813333pt;}
.yac{bottom:755.973333pt;}
.y15c{bottom:759.013333pt;}
.y20c{bottom:759.653333pt;}
.y3b{bottom:760.933333pt;}
.y109{bottom:763.013333pt;}
.y6a{bottom:765.253333pt;}
.y15b{bottom:771.653333pt;}
.y1e1{bottom:773.413333pt;}
.y1bc{bottom:773.733333pt;}
.ydd{bottom:774.693333pt;}
.y20b{bottom:775.653333pt;}
.yab{bottom:776.933333pt;}
.y142{bottom:778.373333pt;}
.y15a{bottom:779.653333pt;}
.y3a{bottom:779.813333pt;}
.y9{bottom:780.613333pt;}
.y12c{bottom:781.573333pt;}
.y108{bottom:782.213333pt;}
.y141{bottom:786.373333pt;}
.y20a{bottom:791.653333pt;}
.y1bb{bottom:792.613333pt;}
.y1e0{bottom:792.773333pt;}
.ydc{bottom:794.053333pt;}
.y198{bottom:794.693333pt;}
.y39{bottom:797.253333pt;}
.y8{bottom:797.413333pt;}
.ya8{bottom:797.893333pt;}
.y159{bottom:799.173333pt;}
.y107{bottom:801.093333pt;}
.y230{bottom:801.893333pt;}
.y1df{bottom:805.413333pt;}
.y140{bottom:805.733333pt;}
.y65{bottom:807.173333pt;}
.y209{bottom:807.653333pt;}
.y7{bottom:811.333333pt;}
.y1ba{bottom:811.493333pt;}
.y16f{bottom:811.813333pt;}
.y67{bottom:812.773333pt;}
.y1de{bottom:813.413333pt;}
.ydb{bottom:813.733333pt;}
.y38{bottom:814.533333pt;}
.y158{bottom:818.373333pt;}
.ya5{bottom:819.013333pt;}
.y106{bottom:819.973333pt;}
.y12b{bottom:823.333333pt;}
.y208{bottom:823.653333pt;}
.y6{bottom:827.333333pt;}
.y1b9{bottom:830.373333pt;}
.y16e{bottom:830.693333pt;}
.y37{bottom:831.813333pt;}
.y1dd{bottom:832.293333pt;}
.yda{bottom:833.573333pt;}
.y157{bottom:837.253333pt;}
.y64{bottom:837.573333pt;}
.y105{bottom:838.853333pt;}
.y207{bottom:839.653333pt;}
.ya2{bottom:839.973333pt;}
.y197{bottom:841.893333pt;}
.y1b8{bottom:843.173333pt;}
.y13f{bottom:847.973333pt;}
.y12a{bottom:848.773333pt;}
.y36{bottom:849.253333pt;}
.y16d{bottom:849.573333pt;}
.y1b7{bottom:851.173333pt;}
.y1ae{bottom:851.653333pt;}
.yd9{bottom:852.773333pt;}
.y206{bottom:855.653333pt;}
.y156{bottom:856.133333pt;}
.y104{bottom:857.893333pt;}
.y9e{bottom:859.813333pt;}
.y62{bottom:866.373333pt;}
.y35{bottom:866.533333pt;}
.y16c{bottom:868.453333pt;}
.y1b6{bottom:870.053333pt;}
.yd8{bottom:871.653333pt;}
.y196{bottom:874.213333pt;}
.y155{bottom:875.013333pt;}
.y103{bottom:877.253333pt;}
.y1dc{bottom:879.173333pt;}
.y5{bottom:881.093333pt;}
.y129{bottom:881.893333pt;}
.y34{bottom:883.813333pt;}
.y205{bottom:887.653333pt;}
.y1b5{bottom:889.413333pt;}
.y13e{bottom:890.213333pt;}
.yd7{bottom:890.533333pt;}
.y5f{bottom:895.173333pt;}
.y16b{bottom:896.453333pt;}
.y102{bottom:896.933333pt;}
.y1db{bottom:898.053333pt;}
.y9d{bottom:899.973333pt;}
.y33{bottom:901.093333pt;}
.y204{bottom:903.653333pt;}
.y128{bottom:909.093333pt;}
.yd6{bottom:909.413333pt;}
.y16a{bottom:915.813333pt;}
.y101{bottom:916.613333pt;}
.y1da{bottom:916.933333pt;}
.y4{bottom:917.893333pt;}
.y32{bottom:918.533333pt;}
.y203{bottom:919.653333pt;}
.y9c{bottom:923.973333pt;}
.y5e{bottom:935.493333pt;}
.y202{bottom:935.653333pt;}
.y31{bottom:935.813333pt;}
.y3{bottom:978.560000pt;}
.y2{bottom:995.040000pt;}
.y1{bottom:1008.800000pt;}
.hf{height:2.142500pt;}
.h2d{height:4.285000pt;}
.h2e{height:13.390625pt;}
.he{height:15.840000pt;}
.h1b{height:17.280000pt;}
.h2a{height:17.920000pt;}
.h21{height:19.840000pt;}
.h22{height:20.960000pt;}
.h23{height:21.120000pt;}
.h2b{height:22.496250pt;}
.h27{height:22.720000pt;}
.h28{height:22.752000pt;}
.h26{height:22.880000pt;}
.h15{height:24.000000pt;}
.ha{height:26.400000pt;}
.h13{height:26.432000pt;}
.h14{height:27.040000pt;}
.h18{height:28.000000pt;}
.hc{height:28.800000pt;}
.hd{height:30.400000pt;}
.h5{height:31.343437pt;}
.h29{height:31.520000pt;}
.h17{height:31.840000pt;}
.h1a{height:32.975638pt;}
.h19{height:34.400000pt;}
.h1{height:34.945312pt;}
.h11{height:36.000000pt;}
.h2c{height:36.883125pt;}
.hb{height:36.920625pt;}
.h25{height:37.120000pt;}
.h7{height:38.142500pt;}
.h1c{height:39.040000pt;}
.h24{height:39.072000pt;}
.h6{height:39.943750pt;}
.h20{height:40.160000pt;}
.h1d{height:40.800000pt;}
.h10{height:41.920000pt;}
.h1f{height:43.200000pt;}
.h9{height:47.135000pt;}
.h12{height:47.465000pt;}
.h16{height:49.622500pt;}
.h8{height:50.032003pt;}
.h1e{height:52.192000pt;}
.h4{height:52.463437pt;}
.h2{height:58.563750pt;}
.h3{height:96.250000pt;}
.h0{height:1056.000000pt;}
.w2{width:138.106667pt;}
.w4{width:404.226667pt;}
.w3{width:425.986667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:24.960000pt;}
.x1b{left:31.040000pt;}
.x1e{left:40.794667pt;}
.x20{left:47.194667pt;}
.x23{left:53.594667pt;}
.x26{left:55.040000pt;}
.x19{left:58.394667pt;}
.x22{left:60.794667pt;}
.x25{left:62.394667pt;}
.x1c{left:66.394667pt;}
.x21{left:67.994667pt;}
.x1d{left:69.594667pt;}
.xa{left:71.999988pt;}
.x24{left:72.954667pt;}
.x42{left:76.959988pt;}
.x5a{left:79.999988pt;}
.x40{left:81.471988pt;}
.x46{left:84.671988pt;}
.x3{left:96.031988pt;}
.x4{left:97.791988pt;}
.xb{left:101.791988pt;}
.x8{left:109.951988pt;}
.x39{left:118.911988pt;}
.x27{left:120.031988pt;}
.x18{left:132.032000pt;}
.x3e{left:142.586655pt;}
.x3c{left:146.586655pt;}
.x31{left:149.786655pt;}
.x9{left:155.546655pt;}
.x44{left:168.026655pt;}
.x48{left:173.786655pt;}
.x4c{left:178.586655pt;}
.x50{left:182.586655pt;}
.x5{left:222.106655pt;}
.x4e{left:225.946655pt;}
.x36{left:237.946655pt;}
.x58{left:242.106655pt;}
.x5c{left:256.866655pt;}
.x2{left:258.946655pt;}
.x4a{left:265.826655pt;}
.x1a{left:270.146667pt;}
.x34{left:273.666655pt;}
.xe{left:279.586655pt;}
.xf{left:284.226655pt;}
.x6{left:287.586655pt;}
.x54{left:310.146655pt;}
.x57{left:313.026655pt;}
.x43{left:315.266655pt;}
.x2d{left:316.546655pt;}
.x2f{left:317.666655pt;}
.x52{left:334.786655pt;}
.x29{left:351.746655pt;}
.x56{left:357.346655pt;}
.x3d{left:363.106655pt;}
.x28{left:367.746655pt;}
.x3f{left:375.266655pt;}
.x41{left:378.626655pt;}
.x47{left:380.546655pt;}
.x14{left:402.306655pt;}
.x15{left:406.946655pt;}
.x7{left:408.066655pt;}
.x1{left:420.066655pt;}
.x10{left:425.186655pt;}
.x11{left:429.853321pt;}
.x2c{left:466.173321pt;}
.x30{left:476.893321pt;}
.x33{left:481.693321pt;}
.x2b{left:493.373321pt;}
.x37{left:502.173321pt;}
.x2a{left:544.893321pt;}
.x38{left:562.333321pt;}
.xc{left:569.533321pt;}
.xd{left:574.173321pt;}
.x3b{left:575.293321pt;}
.x5b{left:580.573321pt;}
.x32{left:582.493321pt;}
.x3a{left:584.573321pt;}
.x16{left:596.573321pt;}
.x59{left:598.013321pt;}
.x2e{left:599.813321pt;}
.x17{left:601.253321pt;}
.x35{left:612.933321pt;}
.x12{left:632.453321pt;}
.x13{left:637.093321pt;}
.x55{left:646.853321pt;}
.x51{left:647.813321pt;}
.x53{left:649.573321pt;}
.x4f{left:656.453321pt;}
.x49{left:662.213321pt;}
.x4b{left:673.893321pt;}
.x4d{left:688.453321pt;}
.x45{left:719.973321pt;}
}




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