
    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_9481c6c2c28ddc9bda6d84ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_ff3840ccb757d88c6a6849a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_07e8490b91dc0608d9502c01.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2856687b09a0cb441d2ddcaf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_290be9c91c72a01420f85044.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_08f1afa3e09a361999bfb865.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f9a3cdf54a9b31041feac07a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_21b50bbdd38c46dc5e469071.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7d93237a9e490192d1fbe03a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_1f86557fe3b75bab589d2035.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_aee4e6bf805f3c96fbefec08.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e719fd00b26a9d80a18a3784.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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_0dad2c9bc9f468e99dfd263f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.774902;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_900053cc578c10e792c2a51e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.024902;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_434e44dcfbe786643ec90328.woff2')format("woff");}.fff{font-family:fff;line-height:1.372070;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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-2.160000px;}
.lsa{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.648000px;}
.ls1{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.132600px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.022320px;}
.ls1d{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.126000px;}
.ls12{letter-spacing:0.138240px;}
.ls1f{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.198000px;}
.ls25{letter-spacing:0.202320px;}
.ls26{letter-spacing:0.246000px;}
.ls8{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.792000px;}
.ls15{letter-spacing:5.184000px;}
.lsb{letter-spacing:6.660000px;}
.ls14{letter-spacing:8.784000px;}
.ls6{letter-spacing:10.229760px;}
.ls16{letter-spacing:16.704000px;}
.ls11{letter-spacing:20.160000px;}
.ls1c{letter-spacing:28.224000px;}
.ls1b{letter-spacing:31.824000px;}
.ls28{letter-spacing:33.264000px;}
.lse{letter-spacing:33.984000px;}
.ls2a{letter-spacing:64.224000px;}
.ls29{letter-spacing:64.944000px;}
.ls10{letter-spacing:65.664000px;}
.ls4{letter-spacing:67.085760px;}
.ls5{letter-spacing:67.109760px;}
.ls3{letter-spacing:194.376000px;}
.ls2b{letter-spacing:318.420000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-48.816000px;}
.wsd{word-spacing:-19.038240px;}
.ws9{word-spacing:-19.008000px;}
.wsc{word-spacing:-18.792000px;}
.ws11{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.280000px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.837640px;}
.wse{word-spacing:-12.204000px;}
.wsf{word-spacing:-10.924560px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-14.455680px;}
._13{margin-left:-11.548080px;}
._15{margin-left:-8.891520px;}
._12{margin-left:-6.148320px;}
._14{margin-left:-4.845960px;}
._9{margin-left:-3.168000px;}
._16{margin-left:-2.115360px;}
._1{margin-left:-1.095120px;}
._0{width:1.272000px;}
._7{width:2.424000px;}
._18{width:3.525840px;}
._5{width:4.644000px;}
._4{width:5.760000px;}
._6{width:7.428000px;}
._8{width:8.496000px;}
._f{width:10.440000px;}
._d{width:11.664000px;}
._e{width:12.924000px;}
._b{width:13.968000px;}
._c{width:15.048000px;}
._1e{width:16.719120px;}
._1c{width:19.152000px;}
._1d{width:20.376000px;}
._a{width:21.960000px;}
._1f{width:23.184000px;}
._1b{width:24.984000px;}
._22{width:26.520000px;}
._23{width:27.807120px;}
._26{width:30.024000px;}
._19{width:31.680000px;}
._1a{width:33.264000px;}
._20{width:34.488000px;}
._21{width:36.504000px;}
._27{width:40.176000px;}
._28{width:41.724000px;}
._24{width:49.536000px;}
._25{width:51.003120px;}
._29{width:62.536080px;}
._2a{width:71.046960px;}
._2b{width:80.329680px;}
._2c{width:88.860720px;}
._2e{width:94.932000px;}
._2d{width:96.192000px;}
._37{width:106.488000px;}
._35{width:144.576000px;}
._36{width:164.823120px;}
._3{width:194.376000px;}
._11{width:257.040000px;}
._30{width:265.608000px;}
._32{width:317.664000px;}
._33{width:484.200000px;}
._34{width:485.244000px;}
._2f{width:788.616000px;}
._10{width:806.556000px;}
._31{width:821.892000px;}
._2{width:849.185760px;}
.fcb{color:rgb(100,89,70);}
.fcc{color:rgb(93,115,145);}
.fc8{color:rgb(2,126,111);}
.fc9{color:rgb(53,47,37);}
.fc7{color:rgb(80,99,125);}
.fc4{color:rgb(47,84,150);}
.fc2{color:transparent;}
.fca{color:rgb(68,84,106);}
.fc6{color:rgb(38,38,38);}
.fc5{color:rgb(51,51,51);}
.fc3{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,114,196);}
.fsb{font-size:2.880000px;}
.fs9{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fsc{font-size:81.360000px;}
.fs3{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fsa{font-size:108.000000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y143{bottom:0.720000px;}
.y12{bottom:2.700000px;}
.y18b{bottom:3.960000px;}
.y1a5{bottom:4.320000px;}
.yf{bottom:4.500000px;}
.y157{bottom:4.530000px;}
.y148{bottom:4.575000px;}
.y13c{bottom:4.605000px;}
.y131{bottom:4.650000px;}
.y12f{bottom:5.040000px;}
.y1c4{bottom:5.760000px;}
.y1c0{bottom:8.640000px;}
.y162{bottom:11.700000px;}
.y12a{bottom:12.960000px;}
.y193{bottom:17.640000px;}
.y129{bottom:20.550000px;}
.y11{bottom:23.256000px;}
.ye{bottom:24.660000px;}
.y18a{bottom:24.690000px;}
.y196{bottom:25.740000px;}
.y1c3{bottom:26.460000px;}
.y1c7{bottom:26.820000px;}
.y161{bottom:33.480000px;}
.y179{bottom:42.480000px;}
.y175{bottom:42.660000px;}
.yd{bottom:44.820000px;}
.y195{bottom:46.440000px;}
.y1c6{bottom:47.520000px;}
.y1a4{bottom:48.240000px;}
.y1bf{bottom:50.220000px;}
.y160{bottom:55.080000px;}
.y15{bottom:55.800000px;}
.y192{bottom:61.560000px;}
.yc{bottom:64.980000px;}
.y1a7{bottom:66.285000px;}
.y1b5{bottom:66.450000px;}
.y1c5{bottom:68.220000px;}
.y1c2{bottom:68.265000px;}
.y1b3{bottom:68.940000px;}
.y180{bottom:69.300000px;}
.y1be{bottom:70.920000px;}
.y14{bottom:71.460000px;}
.y15f{bottom:76.860000px;}
.y19c{bottom:80.460000px;}
.y191{bottom:82.260000px;}
.y17e{bottom:84.060000px;}
.y178{bottom:84.240000px;}
.yb{bottom:89.100000px;}
.y1b2{bottom:89.640000px;}
.y1a3{bottom:90.000000px;}
.y1bd{bottom:91.620000px;}
.y15e{bottom:98.640000px;}
.y199{bottom:100.260000px;}
.y19b{bottom:101.160000px;}
.y190{bottom:102.960000px;}
.y1ba{bottom:109.620000px;}
.y1ad{bottom:109.800000px;}
.yde{bottom:110.160000px;}
.y1aa{bottom:110.340000px;}
.y1a2{bottom:110.700000px;}
.y1bc{bottom:112.320000px;}
.yd8{bottom:113.220000px;}
.y10{bottom:113.580000px;}
.yf8{bottom:113.760000px;}
.yc2{bottom:115.560000px;}
.y17f{bottom:118.440000px;}
.y15d{bottom:120.420000px;}
.y2c{bottom:120.960000px;}
.y19a{bottom:121.860000px;}
.y18f{bottom:123.660000px;}
.y17d{bottom:125.640000px;}
.y177{bottom:126.000000px;}
.ye0{bottom:126.360000px;}
.y7e{bottom:128.196000px;}
.y1b9{bottom:130.320000px;}
.y1ac{bottom:130.500000px;}
.y1b7{bottom:130.860000px;}
.y1a9{bottom:131.040000px;}
.y1a1{bottom:131.400000px;}
.y99{bottom:131.616000px;}
.y5e{bottom:132.696000px;}
.y127{bottom:133.416000px;}
.ybc{bottom:133.596000px;}
.y82{bottom:137.556000px;}
.y6a{bottom:138.996000px;}
.y12d{bottom:141.480000px;}
.y150{bottom:141.525000px;}
.y198{bottom:141.660000px;}
.y15c{bottom:142.020000px;}
.y139{bottom:142.200000px;}
.y145{bottom:142.410000px;}
.y206{bottom:144.216000px;}
.y18e{bottom:144.360000px;}
.y1f8{bottom:144.576000px;}
.y185{bottom:147.096000px;}
.y108{bottom:148.536000px;}
.y1c9{bottom:149.436000px;}
.y15a{bottom:150.330000px;}
.y1b8{bottom:151.020000px;}
.y1ab{bottom:151.200000px;}
.y1b6{bottom:151.560000px;}
.ydd{bottom:151.590000px;}
.y1a8{bottom:151.740000px;}
.y1a0{bottom:152.100000px;}
.y1bb{bottom:154.125000px;}
.yd7{bottom:154.650000px;}
.yc1{bottom:156.990000px;}
.ya4{bottom:160.590000px;}
.y5d{bottom:161.490000px;}
.y173{bottom:161.670000px;}
.y15b{bottom:163.800000px;}
.y17c{bottom:167.430000px;}
.y1e0{bottom:167.610000px;}
.ycc{bottom:167.790000px;}
.y7d{bottom:169.590000px;}
.y3b{bottom:171.210000px;}
.y1b1{bottom:172.440000px;}
.y137{bottom:172.800000px;}
.y159{bottom:172.845000px;}
.y98{bottom:173.010000px;}
.yf7{bottom:173.190000px;}
.y142{bottom:173.565000px;}
.y14e{bottom:173.730000px;}
.ybb{bottom:174.990000px;}
.y81{bottom:179.310000px;}
.y2b{bottom:180.390000px;}
.y197{bottom:183.780000px;}
.y205{bottom:185.610000px;}
.ydf{bottom:185.790000px;}
.y18d{bottom:185.940000px;}
.y1f7{bottom:185.970000px;}
.y116{bottom:189.930000px;}
.y5c{bottom:190.290000px;}
.y188{bottom:191.190000px;}
.y126{bottom:192.810000px;}
.ydc{bottom:192.990000px;}
.y1b0{bottom:193.140000px;}
.y19f{bottom:193.500000px;}
.y1c8{bottom:193.710000px;}
.yd6{bottom:196.050000px;}
.yc0{bottom:198.390000px;}
.y184{bottom:205.410000px;}
.y107{bottom:207.930000px;}
.y1df{bottom:209.010000px;}
.y1cb{bottom:209.190000px;}
.y7c{bottom:210.990000px;}
.y97{bottom:214.410000px;}
.yf1{bottom:219.270000px;}
.ya3{bottom:219.990000px;}
.y80{bottom:221.070000px;}
.yaf{bottom:221.790000px;}
.y3a{bottom:226.470000px;}
.y204{bottom:227.010000px;}
.ycb{bottom:227.190000px;}
.y1f6{bottom:227.370000px;}
.y115{bottom:231.330000px;}
.yf6{bottom:232.590000px;}
.y125{bottom:234.210000px;}
.yba{bottom:234.390000px;}
.y1af{bottom:234.930000px;}
.y19e{bottom:235.125000px;}
.y5b{bottom:239.430000px;}
.ya{bottom:239.610000px;}
.y2a{bottom:239.790000px;}
.y183{bottom:240.870000px;}
.yc7{bottom:245.190000px;}
.y1de{bottom:250.410000px;}
.y187{bottom:250.590000px;}
.y7b{bottom:252.390000px;}
.yd5{bottom:255.450000px;}
.y96{bottom:255.810000px;}
.ybf{bottom:257.790000px;}
.y172{bottom:262.470000px;}
.y7f{bottom:262.830000px;}
.yae{bottom:263.190000px;}
.y106{bottom:267.330000px;}
.y203{bottom:268.410000px;}
.y1ca{bottom:268.590000px;}
.y1f5{bottom:268.770000px;}
.y114{bottom:272.550000px;}
.y124{bottom:275.610000px;}
.yb9{bottom:275.790000px;}
.y5a{bottom:276.150000px;}
.yf0{bottom:278.670000px;}
.ya2{bottom:279.390000px;}
.y29{bottom:281.190000px;}
.y39{bottom:285.870000px;}
.yc6{bottom:286.590000px;}
.y1dd{bottom:291.810000px;}
.yf5{bottom:291.990000px;}
.y7a{bottom:293.790000px;}
.yd4{bottom:296.850000px;}
.y95{bottom:297.210000px;}
.ybe{bottom:299.190000px;}
.y171{bottom:303.870000px;}
.yad{bottom:304.590000px;}
.y59{bottom:305.490000px;}
.y186{bottom:309.990000px;}
.y1f4{bottom:310.170000px;}
.y113{bottom:313.950000px;}
.y123{bottom:317.010000px;}
.yb8{bottom:317.190000px;}
.y182{bottom:318.990000px;}
.y1c1{bottom:320.250000px;}
.y28{bottom:322.590000px;}
.y105{bottom:326.550000px;}
.yc5{bottom:327.990000px;}
.y1dc{bottom:333.570000px;}
.y58{bottom:334.650000px;}
.y79{bottom:335.190000px;}
.yef{bottom:338.070000px;}
.y94{bottom:338.610000px;}
.ya1{bottom:338.790000px;}
.ybd{bottom:340.590000px;}
.y38{bottom:345.270000px;}
.yac{bottom:345.990000px;}
.y14f{bottom:347.430000px;}
.y158{bottom:347.580000px;}
.yf4{bottom:351.390000px;}
.y202{bottom:351.570000px;}
.y1f3{bottom:351.930000px;}
.y112{bottom:355.350000px;}
.yb7{bottom:358.590000px;}
.y57{bottom:363.810000px;}
.y27{bottom:363.990000px;}
.y156{bottom:365.940000px;}
.y104{bottom:367.950000px;}
.yc4{bottom:369.390000px;}
.y1db{bottom:374.970000px;}
.y122{bottom:376.410000px;}
.y78{bottom:376.590000px;}
.y93{bottom:380.055000px;}
.yc8{bottom:382.035000px;}
.y155{bottom:384.300000px;}
.y170{bottom:386.715000px;}
.yca{bottom:387.435000px;}
.y201{bottom:393.015000px;}
.y56{bottom:393.195000px;}
.y1f2{bottom:393.375000px;}
.y181{bottom:397.335000px;}
.yee{bottom:397.515000px;}
.ya0{bottom:398.235000px;}
.yb6{bottom:400.035000px;}
.y154{bottom:402.840000px;}
.y37{bottom:404.715000px;}
.y26{bottom:405.435000px;}
.y1ae{bottom:405.975000px;}
.y103{bottom:409.395000px;}
.yf3{bottom:410.835000px;}
.y111{bottom:414.795000px;}
.y1da{bottom:416.235000px;}
.y77{bottom:418.035000px;}
.y153{bottom:421.200000px;}
.yd3{bottom:421.635000px;}
.y55{bottom:422.355000px;}
.y69{bottom:423.435000px;}
.y16f{bottom:428.115000px;}
.yc3{bottom:428.835000px;}
.y200{bottom:434.235000px;}
.y1f1{bottom:434.595000px;}
.y121{bottom:435.855000px;}
.y92{bottom:439.455000px;}
.y152{bottom:439.560000px;}
.yb5{bottom:441.435000px;}
.y25{bottom:446.835000px;}
.y102{bottom:450.795000px;}
.y54{bottom:451.695000px;}
.yed{bottom:456.915000px;}
.y9f{bottom:457.635000px;}
.y151{bottom:457.815000px;}
.y1d9{bottom:457.995000px;}
.y76{bottom:459.435000px;}
.yd2{bottom:463.395000px;}
.y36{bottom:464.115000px;}
.y68{bottom:464.835000px;}
.y16e{bottom:469.515000px;}
.yf2{bottom:470.235000px;}
.y110{bottom:474.195000px;}
.y17b{bottom:475.455000px;}
.y1f0{bottom:475.995000px;}
.y53{bottom:480.855000px;}
.y9{bottom:482.655000px;}
.yb4{bottom:482.835000px;}
.y24{bottom:488.235000px;}
.y120{bottom:495.255000px;}
.y8{bottom:498.495000px;}
.y1d8{bottom:499.395000px;}
.y75{bottom:500.835000px;}
.yd1{bottom:505.155000px;}
.y67{bottom:506.235000px;}
.y52{bottom:510.195000px;}
.y16d{bottom:510.915000px;}
.yec{bottom:516.315000px;}
.y9e{bottom:517.035000px;}
.y1ef{bottom:517.395000px;}
.y91{bottom:522.255000px;}
.y35{bottom:523.515000px;}
.yb3{bottom:524.235000px;}
.y23{bottom:529.635000px;}
.y10f{bottom:533.595000px;}
.y144{bottom:535.935000px;}
.y11f{bottom:536.655000px;}
.y14d{bottom:536.760000px;}
.y51{bottom:539.355000px;}
.y1d7{bottom:540.795000px;}
.y74{bottom:542.235000px;}
.yd0{bottom:546.555000px;}
.y66{bottom:547.635000px;}
.y101{bottom:551.595000px;}
.y16c{bottom:552.315000px;}
.y14c{bottom:555.300000px;}
.yeb{bottom:557.715000px;}
.y1ff{bottom:558.795000px;}
.y1ee{bottom:559.155000px;}
.y90{bottom:563.655000px;}
.yb2{bottom:565.635000px;}
.y50{bottom:568.515000px;}
.y22{bottom:571.035000px;}
.y14b{bottom:573.660000px;}
.y1b4{bottom:574.455000px;}
.y10e{bottom:574.995000px;}
.y9d{bottom:576.435000px;}
.y1d6{bottom:582.195000px;}
.y34{bottom:582.915000px;}
.y73{bottom:583.635000px;}
.ycf{bottom:588.315000px;}
.y65{bottom:589.035000px;}
.y14a{bottom:592.020000px;}
.y100{bottom:592.995000px;}
.y16b{bottom:593.715000px;}
.y7{bottom:595.515000px;}
.y11e{bottom:596.055000px;}
.y4f{bottom:597.855000px;}
.y1fe{bottom:600.195000px;}
.y1ed{bottom:600.555000px;}
.y8f{bottom:605.055000px;}
.yb1{bottom:607.035000px;}
.y149{bottom:610.380000px;}
.yea{bottom:617.115000px;}
.y1d5{bottom:623.595000px;}
.y72{bottom:625.035000px;}
.y4e{bottom:627.015000px;}
.y147{bottom:628.740000px;}
.yce{bottom:629.715000px;}
.y21{bottom:630.435000px;}
.yff{bottom:634.785000px;}
.y16a{bottom:635.145000px;}
.y9c{bottom:635.865000px;}
.y1fd{bottom:641.625000px;}
.y1ec{bottom:641.985000px;}
.y33{bottom:642.345000px;}
.y8e{bottom:646.485000px;}
.y146{bottom:647.205000px;}
.yb0{bottom:648.465000px;}
.y6{bottom:652.785000px;}
.y11d{bottom:655.485000px;}
.y4d{bottom:656.385000px;}
.y19d{bottom:658.365000px;}
.ye9{bottom:658.545000px;}
.y1d4{bottom:665.385000px;}
.y71{bottom:666.465000px;}
.ycd{bottom:671.505000px;}
.y64{bottom:671.865000px;}
.y10d{bottom:676.185000px;}
.yfe{bottom:676.545000px;}
.y5{bottom:678.345000px;}
.y17a{bottom:678.525000px;}
.y1fc{bottom:683.025000px;}
.y1eb{bottom:683.385000px;}
.y4c{bottom:685.545000px;}
.y8d{bottom:687.885000px;}
.y20{bottom:689.865000px;}
.y169{bottom:694.905000px;}
.y9b{bottom:695.265000px;}
.y32{bottom:701.745000px;}
.y4b{bottom:706.245000px;}
.y1d3{bottom:706.785000px;}
.y70{bottom:707.865000px;}
.yab{bottom:713.265000px;}
.y11c{bottom:714.885000px;}
.y10c{bottom:717.585000px;}
.ye8{bottom:717.945000px;}
.yfd{bottom:718.305000px;}
.y1ea{bottom:724.785000px;}
.y138{bottom:725.325000px;}
.y141{bottom:726.120000px;}
.y8c{bottom:729.285000px;}
.y63{bottom:731.265000px;}
.y4a{bottom:735.225000px;}
.y4{bottom:740.985000px;}
.y140{bottom:744.480000px;}
.y1d2{bottom:748.185000px;}
.y1f{bottom:749.265000px;}
.y168{bottom:754.305000px;}
.y9a{bottom:754.665000px;}
.y11b{bottom:756.285000px;}
.y176{bottom:756.645000px;}
.ye7{bottom:759.345000px;}
.y31{bottom:761.145000px;}
.y13f{bottom:762.840000px;}
.y49{bottom:764.565000px;}
.y1fb{bottom:766.185000px;}
.y1e9{bottom:766.545000px;}
.ydb{bottom:767.265000px;}
.y8b{bottom:770.685000px;}
.y62{bottom:772.665000px;}
.y10b{bottom:777.345000px;}
.yfc{bottom:778.065000px;}
.y13e{bottom:781.200000px;}
.y1d1{bottom:789.585000px;}
.y1e{bottom:790.665000px;}
.y48{bottom:793.725000px;}
.y167{bottom:795.705000px;}
.yaa{bottom:796.065000px;}
.y11a{bottom:797.685000px;}
.y13d{bottom:799.740000px;}
.y3{bottom:806.865000px;}
.y1fa{bottom:807.585000px;}
.y1e8{bottom:807.945000px;}
.yda{bottom:808.665000px;}
.y8a{bottom:812.085000px;}
.y61{bottom:814.065000px;}
.y13b{bottom:818.100000px;}
.ye6{bottom:818.745000px;}
.yfb{bottom:819.465000px;}
.y30{bottom:820.545000px;}
.y47{bottom:823.065000px;}
.y1a6{bottom:827.205000px;}
.y1d0{bottom:830.985000px;}
.y1d{bottom:832.065000px;}
.y13a{bottom:836.385000px;}
.y166{bottom:837.105000px;}
.ya9{bottom:837.465000px;}
.y119{bottom:839.085000px;}
.y1e7{bottom:849.345000px;}
.yd9{bottom:850.065000px;}
.y46{bottom:852.225000px;}
.y60{bottom:855.465000px;}
.ye5{bottom:860.145000px;}
.yfa{bottom:860.865000px;}
.y89{bottom:871.485000px;}
.y1cf{bottom:872.385000px;}
.y2{bottom:872.925000px;}
.y1c{bottom:873.465000px;}
.y165{bottom:878.505000px;}
.ya8{bottom:878.865000px;}
.y2f{bottom:879.945000px;}
.y118{bottom:880.485000px;}
.y45{bottom:881.385000px;}
.y1e6{bottom:890.790000px;}
.yc9{bottom:891.510000px;}
.y5f{bottom:896.910000px;}
.y44{bottom:902.130000px;}
.y18c{bottom:910.950000px;}
.y1ce{bottom:914.190000px;}
.y12c{bottom:914.550000px;}
.y136{bottom:914.580000px;}
.y1b{bottom:914.910000px;}
.y174{bottom:918.150000px;}
.ye4{bottom:919.590000px;}
.y10a{bottom:919.950000px;}
.yf9{bottom:920.310000px;}
.y88{bottom:930.750000px;}
.y43{bottom:931.290000px;}
.y1e5{bottom:932.190000px;}
.y6f{bottom:932.910000px;}
.y135{bottom:932.940000px;}
.y164{bottom:937.950000px;}
.ya7{bottom:938.310000px;}
.y2e{bottom:939.390000px;}
.y117{bottom:939.930000px;}
.y134{bottom:951.300000px;}
.y1{bottom:952.350000px;}
.y1cd{bottom:955.590000px;}
.y1a{bottom:956.310000px;}
.y42{bottom:960.450000px;}
.y109{bottom:961.350000px;}
.y133{bottom:969.840000px;}
.y87{bottom:972.510000px;}
.y1f9{bottom:973.590000px;}
.y1e4{bottom:973.950000px;}
.y6e{bottom:974.310000px;}
.ye3{bottom:979.350000px;}
.ya6{bottom:979.710000px;}
.y2d{bottom:980.790000px;}
.y132{bottom:988.200000px;}
.y41{bottom:989.610000px;}
.y1cc{bottom:996.990000px;}
.y19{bottom:997.710000px;}
.y130{bottom:1006.560000px;}
.y86{bottom:1014.270000px;}
.y1e3{bottom:1015.350000px;}
.y6d{bottom:1015.710000px;}
.y40{bottom:1018.950000px;}
.ye2{bottom:1020.750000px;}
.ya5{bottom:1021.110000px;}
.y12e{bottom:1024.890000px;}
.y163{bottom:1038.750000px;}
.y18{bottom:1039.110000px;}
.y3f{bottom:1048.110000px;}
.y194{bottom:1050.450000px;}
.y85{bottom:1056.030000px;}
.y1e2{bottom:1056.750000px;}
.y6c{bottom:1057.110000px;}
.y3e{bottom:1077.450000px;}
.ye1{bottom:1080.150000px;}
.y17{bottom:1080.510000px;}
.y84{bottom:1097.790000px;}
.y1e1{bottom:1098.150000px;}
.y6b{bottom:1098.510000px;}
.y12b{bottom:1107.510000px;}
.y3d{bottom:1111.110000px;}
.y189{bottom:1114.350000px;}
.y128{bottom:1123.170000px;}
.y3c{bottom:1134.330000px;}
.y83{bottom:1139.580000px;}
.y16{bottom:1139.940000px;}
.y13{bottom:1195.740000px;}
.h1c{height:2.375156px;}
.h1b{height:17.640000px;}
.h19{height:18.000000px;}
.h15{height:33.516000px;}
.h7{height:38.736000px;}
.h16{height:39.783867px;}
.h26{height:41.436000px;}
.h1a{height:44.534180px;}
.hd{height:51.329531px;}
.he{height:52.998047px;}
.ha{height:54.421875px;}
.h2{height:54.628594px;}
.h9{height:60.226875px;}
.h29{height:63.180000px;}
.h13{height:64.546875px;}
.h10{height:65.010937px;}
.h8{height:66.757500px;}
.h5{height:69.473320px;}
.h11{height:70.628906px;}
.hc{height:70.664062px;}
.h21{height:71.824219px;}
.hb{height:72.562500px;}
.h14{height:74.004654px;}
.h12{height:74.953125px;}
.h22{height:77.400000px;}
.h25{height:77.436000px;}
.h28{height:79.850391px;}
.h2c{height:83.016000px;}
.h2f{height:83.196000px;}
.h33{height:84.960000px;}
.h32{height:84.996000px;}
.h17{height:89.068359px;}
.hf{height:93.983203px;}
.h6{height:109.080000px;}
.h2a{height:138.600000px;}
.h23{height:160.770000px;}
.h30{height:167.760000px;}
.h2d{height:167.940000px;}
.h31{height:170.850000px;}
.h3{height:178.136719px;}
.h20{height:179.460000px;}
.h18{height:188.460000px;}
.h1f{height:188.490000px;}
.h1d{height:189.210000px;}
.h1e{height:189.390000px;}
.h4{height:197.731758px;}
.h24{height:202.170000px;}
.h27{height:202.680000px;}
.h2e{height:251.670000px;}
.h2b{height:251.850000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:1.800000px;}
.w1b{width:21.780000px;}
.w1a{width:22.140000px;}
.w1c{width:22.320000px;}
.w18{width:22.500000px;}
.w19{width:22.680000px;}
.w17{width:22.860000px;}
.w16{width:23.040000px;}
.w15{width:23.076000px;}
.w13{width:23.400000px;}
.wc{width:23.580000px;}
.we{width:23.760000px;}
.wd{width:23.940000px;}
.wf{width:24.120000px;}
.w8{width:24.300000px;}
.wa{width:24.480000px;}
.w12{width:24.516000px;}
.w9{width:24.660000px;}
.wb{width:24.696000px;}
.w14{width:61.200000px;}
.w10{width:61.380000px;}
.w21{width:136.980000px;}
.w1f{width:137.340000px;}
.w11{width:171.570000px;}
.w7{width:171.750000px;}
.w22{width:211.530000px;}
.w23{width:211.710000px;}
.w4{width:252.750000px;}
.w20{width:498.705000px;}
.w1e{width:499.065000px;}
.w3{width:635.865000px;}
.w6{width:649.545000px;}
.w1d{width:675.150000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:5.010000px;}
.x1f{left:6.300000px;}
.x24{left:7.920000px;}
.x1d{left:9.180000px;}
.x3e{left:10.836000px;}
.x26{left:12.090000px;}
.xf{left:13.140000px;}
.x51{left:16.380000px;}
.x56{left:21.060000px;}
.x57{left:23.574000px;}
.x50{left:26.814000px;}
.x53{left:30.234000px;}
.x52{left:31.680000px;}
.x4f{left:32.934000px;}
.x42{left:34.734000px;}
.x4e{left:41.394000px;}
.x4b{left:43.560000px;}
.x49{left:46.794000px;}
.x58{left:50.574000px;}
.x54{left:52.740000px;}
.x48{left:56.334000px;}
.x59{left:59.034000px;}
.x55{left:60.660000px;}
.x45{left:61.734000px;}
.x47{left:66.240000px;}
.x44{left:75.240000px;}
.xa{left:81.714000px;}
.x3d{left:86.400000px;}
.x46{left:88.740000px;}
.x4d{left:105.834000px;}
.x1a{left:120.816000px;}
.x1b{left:122.616000px;}
.x5{left:128.015987px;}
.x43{left:129.240000px;}
.x14{left:144.215987px;}
.x17{left:148.895987px;}
.x1e{left:151.950000px;}
.x18{left:154.649987px;}
.x2{left:158.249987px;}
.x19{left:175.709987px;}
.x25{left:176.940000px;}
.x16{left:180.749987px;}
.x10{left:182.009987px;}
.x20{left:201.270000px;}
.x3{left:206.489987px;}
.x3f{left:208.649987px;}
.xc{left:211.899000px;}
.xd{left:219.459000px;}
.x1c{left:220.719000px;}
.xb{left:223.239000px;}
.x21{left:225.930000px;}
.x9{left:234.579000px;}
.x22{left:250.410000px;}
.x23{left:275.115000px;}
.x27{left:299.415000px;}
.x40{left:301.574987px;}
.x4{left:335.954987px;}
.x11{left:337.214987px;}
.x4a{left:340.815000px;}
.x7{left:353.954987px;}
.x28{left:360.795000px;}
.x15{left:380.594987px;}
.x29{left:385.095000px;}
.x6{left:396.254987px;}
.x13{left:398.594987px;}
.x12{left:401.474987px;}
.x2a{left:409.755000px;}
.x2b{left:434.415000px;}
.x2c{left:458.925000px;}
.x2d{left:483.585000px;}
.x8{left:491.504987px;}
.x2e{left:508.065000px;}
.xe{left:510.945000px;}
.x1{left:530.204987px;}
.x2f{left:532.545000px;}
.x4c{left:553.065000px;}
.x30{left:593.745000px;}
.x31{left:617.865000px;}
.x41{left:627.450000px;}
.x32{left:640.950000px;}
.x38{left:642.750000px;}
.x33{left:665.250000px;}
.x39{left:667.410000px;}
.x34{left:688.290000px;}
.x3a{left:692.070000px;}
.x35{left:711.150000px;}
.x3b{left:716.550000px;}
.x36{left:734.190000px;}
.x3c{left:741.210000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.920000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.019840pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.112000pt;}
.ls12{letter-spacing:0.122880pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.176000pt;}
.ls25{letter-spacing:0.179840pt;}
.ls26{letter-spacing:0.218667pt;}
.ls8{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.704000pt;}
.ls15{letter-spacing:4.608000pt;}
.lsb{letter-spacing:5.920000pt;}
.ls14{letter-spacing:7.808000pt;}
.ls6{letter-spacing:9.093120pt;}
.ls16{letter-spacing:14.848000pt;}
.ls11{letter-spacing:17.920000pt;}
.ls1c{letter-spacing:25.088000pt;}
.ls1b{letter-spacing:28.288000pt;}
.ls28{letter-spacing:29.568000pt;}
.lse{letter-spacing:30.208000pt;}
.ls2a{letter-spacing:57.088000pt;}
.ls29{letter-spacing:57.728000pt;}
.ls10{letter-spacing:58.368000pt;}
.ls4{letter-spacing:59.631787pt;}
.ls5{letter-spacing:59.653120pt;}
.ls3{letter-spacing:172.778667pt;}
.ls2b{letter-spacing:283.040000pt;}
.ws0{word-spacing:-43.392000pt;}
.wsd{word-spacing:-16.922880pt;}
.ws9{word-spacing:-16.896000pt;}
.wsc{word-spacing:-16.704000pt;}
.ws11{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.189013pt;}
.wse{word-spacing:-10.848000pt;}
.wsf{word-spacing:-9.710720pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-12.849493pt;}
._13{margin-left:-10.264960pt;}
._15{margin-left:-7.903573pt;}
._12{margin-left:-5.465173pt;}
._14{margin-left:-4.307520pt;}
._9{margin-left:-2.816000pt;}
._16{margin-left:-1.880320pt;}
._1{margin-left:-0.973440pt;}
._0{width:1.130667pt;}
._7{width:2.154667pt;}
._18{width:3.134080pt;}
._5{width:4.128000pt;}
._4{width:5.120000pt;}
._6{width:6.602667pt;}
._8{width:7.552000pt;}
._f{width:9.280000pt;}
._d{width:10.368000pt;}
._e{width:11.488000pt;}
._b{width:12.416000pt;}
._c{width:13.376000pt;}
._1e{width:14.861440pt;}
._1c{width:17.024000pt;}
._1d{width:18.112000pt;}
._a{width:19.520000pt;}
._1f{width:20.608000pt;}
._1b{width:22.208000pt;}
._22{width:23.573333pt;}
._23{width:24.717440pt;}
._26{width:26.688000pt;}
._19{width:28.160000pt;}
._1a{width:29.568000pt;}
._20{width:30.656000pt;}
._21{width:32.448000pt;}
._27{width:35.712000pt;}
._28{width:37.088000pt;}
._24{width:44.032000pt;}
._25{width:45.336107pt;}
._29{width:55.587627pt;}
._2a{width:63.152853pt;}
._2b{width:71.404160pt;}
._2c{width:78.987307pt;}
._2e{width:84.384000pt;}
._2d{width:85.504000pt;}
._37{width:94.656000pt;}
._35{width:128.512000pt;}
._36{width:146.509440pt;}
._3{width:172.778667pt;}
._11{width:228.480000pt;}
._30{width:236.096000pt;}
._32{width:282.368000pt;}
._33{width:430.400000pt;}
._34{width:431.328000pt;}
._2f{width:700.992000pt;}
._10{width:716.938667pt;}
._31{width:730.570667pt;}
._2{width:754.831787pt;}
.fsb{font-size:2.560000pt;}
.fs9{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fsc{font-size:72.320000pt;}
.fs3{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fsa{font-size:96.000000pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y143{bottom:0.640000pt;}
.y12{bottom:2.400000pt;}
.y18b{bottom:3.520000pt;}
.y1a5{bottom:3.840000pt;}
.yf{bottom:4.000000pt;}
.y157{bottom:4.026667pt;}
.y148{bottom:4.066667pt;}
.y13c{bottom:4.093333pt;}
.y131{bottom:4.133333pt;}
.y12f{bottom:4.480000pt;}
.y1c4{bottom:5.120000pt;}
.y1c0{bottom:7.680000pt;}
.y162{bottom:10.400000pt;}
.y12a{bottom:11.520000pt;}
.y193{bottom:15.680000pt;}
.y129{bottom:18.266667pt;}
.y11{bottom:20.672000pt;}
.ye{bottom:21.920000pt;}
.y18a{bottom:21.946667pt;}
.y196{bottom:22.880000pt;}
.y1c3{bottom:23.520000pt;}
.y1c7{bottom:23.840000pt;}
.y161{bottom:29.760000pt;}
.y179{bottom:37.760000pt;}
.y175{bottom:37.920000pt;}
.yd{bottom:39.840000pt;}
.y195{bottom:41.280000pt;}
.y1c6{bottom:42.240000pt;}
.y1a4{bottom:42.880000pt;}
.y1bf{bottom:44.640000pt;}
.y160{bottom:48.960000pt;}
.y15{bottom:49.600000pt;}
.y192{bottom:54.720000pt;}
.yc{bottom:57.760000pt;}
.y1a7{bottom:58.920000pt;}
.y1b5{bottom:59.066667pt;}
.y1c5{bottom:60.640000pt;}
.y1c2{bottom:60.680000pt;}
.y1b3{bottom:61.280000pt;}
.y180{bottom:61.600000pt;}
.y1be{bottom:63.040000pt;}
.y14{bottom:63.520000pt;}
.y15f{bottom:68.320000pt;}
.y19c{bottom:71.520000pt;}
.y191{bottom:73.120000pt;}
.y17e{bottom:74.720000pt;}
.y178{bottom:74.880000pt;}
.yb{bottom:79.200000pt;}
.y1b2{bottom:79.680000pt;}
.y1a3{bottom:80.000000pt;}
.y1bd{bottom:81.440000pt;}
.y15e{bottom:87.680000pt;}
.y199{bottom:89.120000pt;}
.y19b{bottom:89.920000pt;}
.y190{bottom:91.520000pt;}
.y1ba{bottom:97.440000pt;}
.y1ad{bottom:97.600000pt;}
.yde{bottom:97.920000pt;}
.y1aa{bottom:98.080000pt;}
.y1a2{bottom:98.400000pt;}
.y1bc{bottom:99.840000pt;}
.yd8{bottom:100.640000pt;}
.y10{bottom:100.960000pt;}
.yf8{bottom:101.120000pt;}
.yc2{bottom:102.720000pt;}
.y17f{bottom:105.280000pt;}
.y15d{bottom:107.040000pt;}
.y2c{bottom:107.520000pt;}
.y19a{bottom:108.320000pt;}
.y18f{bottom:109.920000pt;}
.y17d{bottom:111.680000pt;}
.y177{bottom:112.000000pt;}
.ye0{bottom:112.320000pt;}
.y7e{bottom:113.952000pt;}
.y1b9{bottom:115.840000pt;}
.y1ac{bottom:116.000000pt;}
.y1b7{bottom:116.320000pt;}
.y1a9{bottom:116.480000pt;}
.y1a1{bottom:116.800000pt;}
.y99{bottom:116.992000pt;}
.y5e{bottom:117.952000pt;}
.y127{bottom:118.592000pt;}
.ybc{bottom:118.752000pt;}
.y82{bottom:122.272000pt;}
.y6a{bottom:123.552000pt;}
.y12d{bottom:125.760000pt;}
.y150{bottom:125.800000pt;}
.y198{bottom:125.920000pt;}
.y15c{bottom:126.240000pt;}
.y139{bottom:126.400000pt;}
.y145{bottom:126.586667pt;}
.y206{bottom:128.192000pt;}
.y18e{bottom:128.320000pt;}
.y1f8{bottom:128.512000pt;}
.y185{bottom:130.752000pt;}
.y108{bottom:132.032000pt;}
.y1c9{bottom:132.832000pt;}
.y15a{bottom:133.626667pt;}
.y1b8{bottom:134.240000pt;}
.y1ab{bottom:134.400000pt;}
.y1b6{bottom:134.720000pt;}
.ydd{bottom:134.746667pt;}
.y1a8{bottom:134.880000pt;}
.y1a0{bottom:135.200000pt;}
.y1bb{bottom:137.000000pt;}
.yd7{bottom:137.466667pt;}
.yc1{bottom:139.546667pt;}
.ya4{bottom:142.746667pt;}
.y5d{bottom:143.546667pt;}
.y173{bottom:143.706667pt;}
.y15b{bottom:145.600000pt;}
.y17c{bottom:148.826667pt;}
.y1e0{bottom:148.986667pt;}
.ycc{bottom:149.146667pt;}
.y7d{bottom:150.746667pt;}
.y3b{bottom:152.186667pt;}
.y1b1{bottom:153.280000pt;}
.y137{bottom:153.600000pt;}
.y159{bottom:153.640000pt;}
.y98{bottom:153.786667pt;}
.yf7{bottom:153.946667pt;}
.y142{bottom:154.280000pt;}
.y14e{bottom:154.426667pt;}
.ybb{bottom:155.546667pt;}
.y81{bottom:159.386667pt;}
.y2b{bottom:160.346667pt;}
.y197{bottom:163.360000pt;}
.y205{bottom:164.986667pt;}
.ydf{bottom:165.146667pt;}
.y18d{bottom:165.280000pt;}
.y1f7{bottom:165.306667pt;}
.y116{bottom:168.826667pt;}
.y5c{bottom:169.146667pt;}
.y188{bottom:169.946667pt;}
.y126{bottom:171.386667pt;}
.ydc{bottom:171.546667pt;}
.y1b0{bottom:171.680000pt;}
.y19f{bottom:172.000000pt;}
.y1c8{bottom:172.186667pt;}
.yd6{bottom:174.266667pt;}
.yc0{bottom:176.346667pt;}
.y184{bottom:182.586667pt;}
.y107{bottom:184.826667pt;}
.y1df{bottom:185.786667pt;}
.y1cb{bottom:185.946667pt;}
.y7c{bottom:187.546667pt;}
.y97{bottom:190.586667pt;}
.yf1{bottom:194.906667pt;}
.ya3{bottom:195.546667pt;}
.y80{bottom:196.506667pt;}
.yaf{bottom:197.146667pt;}
.y3a{bottom:201.306667pt;}
.y204{bottom:201.786667pt;}
.ycb{bottom:201.946667pt;}
.y1f6{bottom:202.106667pt;}
.y115{bottom:205.626667pt;}
.yf6{bottom:206.746667pt;}
.y125{bottom:208.186667pt;}
.yba{bottom:208.346667pt;}
.y1af{bottom:208.826667pt;}
.y19e{bottom:209.000000pt;}
.y5b{bottom:212.826667pt;}
.ya{bottom:212.986667pt;}
.y2a{bottom:213.146667pt;}
.y183{bottom:214.106667pt;}
.yc7{bottom:217.946667pt;}
.y1de{bottom:222.586667pt;}
.y187{bottom:222.746667pt;}
.y7b{bottom:224.346667pt;}
.yd5{bottom:227.066667pt;}
.y96{bottom:227.386667pt;}
.ybf{bottom:229.146667pt;}
.y172{bottom:233.306667pt;}
.y7f{bottom:233.626667pt;}
.yae{bottom:233.946667pt;}
.y106{bottom:237.626667pt;}
.y203{bottom:238.586667pt;}
.y1ca{bottom:238.746667pt;}
.y1f5{bottom:238.906667pt;}
.y114{bottom:242.266667pt;}
.y124{bottom:244.986667pt;}
.yb9{bottom:245.146667pt;}
.y5a{bottom:245.466667pt;}
.yf0{bottom:247.706667pt;}
.ya2{bottom:248.346667pt;}
.y29{bottom:249.946667pt;}
.y39{bottom:254.106667pt;}
.yc6{bottom:254.746667pt;}
.y1dd{bottom:259.386667pt;}
.yf5{bottom:259.546667pt;}
.y7a{bottom:261.146667pt;}
.yd4{bottom:263.866667pt;}
.y95{bottom:264.186667pt;}
.ybe{bottom:265.946667pt;}
.y171{bottom:270.106667pt;}
.yad{bottom:270.746667pt;}
.y59{bottom:271.546667pt;}
.y186{bottom:275.546667pt;}
.y1f4{bottom:275.706667pt;}
.y113{bottom:279.066667pt;}
.y123{bottom:281.786667pt;}
.yb8{bottom:281.946667pt;}
.y182{bottom:283.546667pt;}
.y1c1{bottom:284.666667pt;}
.y28{bottom:286.746667pt;}
.y105{bottom:290.266667pt;}
.yc5{bottom:291.546667pt;}
.y1dc{bottom:296.506667pt;}
.y58{bottom:297.466667pt;}
.y79{bottom:297.946667pt;}
.yef{bottom:300.506667pt;}
.y94{bottom:300.986667pt;}
.ya1{bottom:301.146667pt;}
.ybd{bottom:302.746667pt;}
.y38{bottom:306.906667pt;}
.yac{bottom:307.546667pt;}
.y14f{bottom:308.826667pt;}
.y158{bottom:308.960000pt;}
.yf4{bottom:312.346667pt;}
.y202{bottom:312.506667pt;}
.y1f3{bottom:312.826667pt;}
.y112{bottom:315.866667pt;}
.yb7{bottom:318.746667pt;}
.y57{bottom:323.386667pt;}
.y27{bottom:323.546667pt;}
.y156{bottom:325.280000pt;}
.y104{bottom:327.066667pt;}
.yc4{bottom:328.346667pt;}
.y1db{bottom:333.306667pt;}
.y122{bottom:334.586667pt;}
.y78{bottom:334.746667pt;}
.y93{bottom:337.826667pt;}
.yc8{bottom:339.586667pt;}
.y155{bottom:341.600000pt;}
.y170{bottom:343.746667pt;}
.yca{bottom:344.386667pt;}
.y201{bottom:349.346667pt;}
.y56{bottom:349.506667pt;}
.y1f2{bottom:349.666667pt;}
.y181{bottom:353.186667pt;}
.yee{bottom:353.346667pt;}
.ya0{bottom:353.986667pt;}
.yb6{bottom:355.586667pt;}
.y154{bottom:358.080000pt;}
.y37{bottom:359.746667pt;}
.y26{bottom:360.386667pt;}
.y1ae{bottom:360.866667pt;}
.y103{bottom:363.906667pt;}
.yf3{bottom:365.186667pt;}
.y111{bottom:368.706667pt;}
.y1da{bottom:369.986667pt;}
.y77{bottom:371.586667pt;}
.y153{bottom:374.400000pt;}
.yd3{bottom:374.786667pt;}
.y55{bottom:375.426667pt;}
.y69{bottom:376.386667pt;}
.y16f{bottom:380.546667pt;}
.yc3{bottom:381.186667pt;}
.y200{bottom:385.986667pt;}
.y1f1{bottom:386.306667pt;}
.y121{bottom:387.426667pt;}
.y92{bottom:390.626667pt;}
.y152{bottom:390.720000pt;}
.yb5{bottom:392.386667pt;}
.y25{bottom:397.186667pt;}
.y102{bottom:400.706667pt;}
.y54{bottom:401.506667pt;}
.yed{bottom:406.146667pt;}
.y9f{bottom:406.786667pt;}
.y151{bottom:406.946667pt;}
.y1d9{bottom:407.106667pt;}
.y76{bottom:408.386667pt;}
.yd2{bottom:411.906667pt;}
.y36{bottom:412.546667pt;}
.y68{bottom:413.186667pt;}
.y16e{bottom:417.346667pt;}
.yf2{bottom:417.986667pt;}
.y110{bottom:421.506667pt;}
.y17b{bottom:422.626667pt;}
.y1f0{bottom:423.106667pt;}
.y53{bottom:427.426667pt;}
.y9{bottom:429.026667pt;}
.yb4{bottom:429.186667pt;}
.y24{bottom:433.986667pt;}
.y120{bottom:440.226667pt;}
.y8{bottom:443.106667pt;}
.y1d8{bottom:443.906667pt;}
.y75{bottom:445.186667pt;}
.yd1{bottom:449.026667pt;}
.y67{bottom:449.986667pt;}
.y52{bottom:453.506667pt;}
.y16d{bottom:454.146667pt;}
.yec{bottom:458.946667pt;}
.y9e{bottom:459.586667pt;}
.y1ef{bottom:459.906667pt;}
.y91{bottom:464.226667pt;}
.y35{bottom:465.346667pt;}
.yb3{bottom:465.986667pt;}
.y23{bottom:470.786667pt;}
.y10f{bottom:474.306667pt;}
.y144{bottom:476.386667pt;}
.y11f{bottom:477.026667pt;}
.y14d{bottom:477.120000pt;}
.y51{bottom:479.426667pt;}
.y1d7{bottom:480.706667pt;}
.y74{bottom:481.986667pt;}
.yd0{bottom:485.826667pt;}
.y66{bottom:486.786667pt;}
.y101{bottom:490.306667pt;}
.y16c{bottom:490.946667pt;}
.y14c{bottom:493.600000pt;}
.yeb{bottom:495.746667pt;}
.y1ff{bottom:496.706667pt;}
.y1ee{bottom:497.026667pt;}
.y90{bottom:501.026667pt;}
.yb2{bottom:502.786667pt;}
.y50{bottom:505.346667pt;}
.y22{bottom:507.586667pt;}
.y14b{bottom:509.920000pt;}
.y1b4{bottom:510.626667pt;}
.y10e{bottom:511.106667pt;}
.y9d{bottom:512.386667pt;}
.y1d6{bottom:517.506667pt;}
.y34{bottom:518.146667pt;}
.y73{bottom:518.786667pt;}
.ycf{bottom:522.946667pt;}
.y65{bottom:523.586667pt;}
.y14a{bottom:526.240000pt;}
.y100{bottom:527.106667pt;}
.y16b{bottom:527.746667pt;}
.y7{bottom:529.346667pt;}
.y11e{bottom:529.826667pt;}
.y4f{bottom:531.426667pt;}
.y1fe{bottom:533.506667pt;}
.y1ed{bottom:533.826667pt;}
.y8f{bottom:537.826667pt;}
.yb1{bottom:539.586667pt;}
.y149{bottom:542.560000pt;}
.yea{bottom:548.546667pt;}
.y1d5{bottom:554.306667pt;}
.y72{bottom:555.586667pt;}
.y4e{bottom:557.346667pt;}
.y147{bottom:558.880000pt;}
.yce{bottom:559.746667pt;}
.y21{bottom:560.386667pt;}
.yff{bottom:564.253333pt;}
.y16a{bottom:564.573333pt;}
.y9c{bottom:565.213333pt;}
.y1fd{bottom:570.333333pt;}
.y1ec{bottom:570.653333pt;}
.y33{bottom:570.973333pt;}
.y8e{bottom:574.653333pt;}
.y146{bottom:575.293333pt;}
.yb0{bottom:576.413333pt;}
.y6{bottom:580.253333pt;}
.y11d{bottom:582.653333pt;}
.y4d{bottom:583.453333pt;}
.y19d{bottom:585.213333pt;}
.ye9{bottom:585.373333pt;}
.y1d4{bottom:591.453333pt;}
.y71{bottom:592.413333pt;}
.ycd{bottom:596.893333pt;}
.y64{bottom:597.213333pt;}
.y10d{bottom:601.053333pt;}
.yfe{bottom:601.373333pt;}
.y5{bottom:602.973333pt;}
.y17a{bottom:603.133333pt;}
.y1fc{bottom:607.133333pt;}
.y1eb{bottom:607.453333pt;}
.y4c{bottom:609.373333pt;}
.y8d{bottom:611.453333pt;}
.y20{bottom:613.213333pt;}
.y169{bottom:617.693333pt;}
.y9b{bottom:618.013333pt;}
.y32{bottom:623.773333pt;}
.y4b{bottom:627.773333pt;}
.y1d3{bottom:628.253333pt;}
.y70{bottom:629.213333pt;}
.yab{bottom:634.013333pt;}
.y11c{bottom:635.453333pt;}
.y10c{bottom:637.853333pt;}
.ye8{bottom:638.173333pt;}
.yfd{bottom:638.493333pt;}
.y1ea{bottom:644.253333pt;}
.y138{bottom:644.733333pt;}
.y141{bottom:645.440000pt;}
.y8c{bottom:648.253333pt;}
.y63{bottom:650.013333pt;}
.y4a{bottom:653.533333pt;}
.y4{bottom:658.653333pt;}
.y140{bottom:661.760000pt;}
.y1d2{bottom:665.053333pt;}
.y1f{bottom:666.013333pt;}
.y168{bottom:670.493333pt;}
.y9a{bottom:670.813333pt;}
.y11b{bottom:672.253333pt;}
.y176{bottom:672.573333pt;}
.ye7{bottom:674.973333pt;}
.y31{bottom:676.573333pt;}
.y13f{bottom:678.080000pt;}
.y49{bottom:679.613333pt;}
.y1fb{bottom:681.053333pt;}
.y1e9{bottom:681.373333pt;}
.ydb{bottom:682.013333pt;}
.y8b{bottom:685.053333pt;}
.y62{bottom:686.813333pt;}
.y10b{bottom:690.973333pt;}
.yfc{bottom:691.613333pt;}
.y13e{bottom:694.400000pt;}
.y1d1{bottom:701.853333pt;}
.y1e{bottom:702.813333pt;}
.y48{bottom:705.533333pt;}
.y167{bottom:707.293333pt;}
.yaa{bottom:707.613333pt;}
.y11a{bottom:709.053333pt;}
.y13d{bottom:710.880000pt;}
.y3{bottom:717.213333pt;}
.y1fa{bottom:717.853333pt;}
.y1e8{bottom:718.173333pt;}
.yda{bottom:718.813333pt;}
.y8a{bottom:721.853333pt;}
.y61{bottom:723.613333pt;}
.y13b{bottom:727.200000pt;}
.ye6{bottom:727.773333pt;}
.yfb{bottom:728.413333pt;}
.y30{bottom:729.373333pt;}
.y47{bottom:731.613333pt;}
.y1a6{bottom:735.293333pt;}
.y1d0{bottom:738.653333pt;}
.y1d{bottom:739.613333pt;}
.y13a{bottom:743.453333pt;}
.y166{bottom:744.093333pt;}
.ya9{bottom:744.413333pt;}
.y119{bottom:745.853333pt;}
.y1e7{bottom:754.973333pt;}
.yd9{bottom:755.613333pt;}
.y46{bottom:757.533333pt;}
.y60{bottom:760.413333pt;}
.ye5{bottom:764.573333pt;}
.yfa{bottom:765.213333pt;}
.y89{bottom:774.653333pt;}
.y1cf{bottom:775.453333pt;}
.y2{bottom:775.933333pt;}
.y1c{bottom:776.413333pt;}
.y165{bottom:780.893333pt;}
.ya8{bottom:781.213333pt;}
.y2f{bottom:782.173333pt;}
.y118{bottom:782.653333pt;}
.y45{bottom:783.453333pt;}
.y1e6{bottom:791.813333pt;}
.yc9{bottom:792.453333pt;}
.y5f{bottom:797.253333pt;}
.y44{bottom:801.893333pt;}
.y18c{bottom:809.733333pt;}
.y1ce{bottom:812.613333pt;}
.y12c{bottom:812.933333pt;}
.y136{bottom:812.960000pt;}
.y1b{bottom:813.253333pt;}
.y174{bottom:816.133333pt;}
.ye4{bottom:817.413333pt;}
.y10a{bottom:817.733333pt;}
.yf9{bottom:818.053333pt;}
.y88{bottom:827.333333pt;}
.y43{bottom:827.813333pt;}
.y1e5{bottom:828.613333pt;}
.y6f{bottom:829.253333pt;}
.y135{bottom:829.280000pt;}
.y164{bottom:833.733333pt;}
.ya7{bottom:834.053333pt;}
.y2e{bottom:835.013333pt;}
.y117{bottom:835.493333pt;}
.y134{bottom:845.600000pt;}
.y1{bottom:846.533333pt;}
.y1cd{bottom:849.413333pt;}
.y1a{bottom:850.053333pt;}
.y42{bottom:853.733333pt;}
.y109{bottom:854.533333pt;}
.y133{bottom:862.080000pt;}
.y87{bottom:864.453333pt;}
.y1f9{bottom:865.413333pt;}
.y1e4{bottom:865.733333pt;}
.y6e{bottom:866.053333pt;}
.ye3{bottom:870.533333pt;}
.ya6{bottom:870.853333pt;}
.y2d{bottom:871.813333pt;}
.y132{bottom:878.400000pt;}
.y41{bottom:879.653333pt;}
.y1cc{bottom:886.213333pt;}
.y19{bottom:886.853333pt;}
.y130{bottom:894.720000pt;}
.y86{bottom:901.573333pt;}
.y1e3{bottom:902.533333pt;}
.y6d{bottom:902.853333pt;}
.y40{bottom:905.733333pt;}
.ye2{bottom:907.333333pt;}
.ya5{bottom:907.653333pt;}
.y12e{bottom:911.013333pt;}
.y163{bottom:923.333333pt;}
.y18{bottom:923.653333pt;}
.y3f{bottom:931.653333pt;}
.y194{bottom:933.733333pt;}
.y85{bottom:938.693333pt;}
.y1e2{bottom:939.333333pt;}
.y6c{bottom:939.653333pt;}
.y3e{bottom:957.733333pt;}
.ye1{bottom:960.133333pt;}
.y17{bottom:960.453333pt;}
.y84{bottom:975.813333pt;}
.y1e1{bottom:976.133333pt;}
.y6b{bottom:976.453333pt;}
.y12b{bottom:984.453333pt;}
.y3d{bottom:987.653333pt;}
.y189{bottom:990.533333pt;}
.y128{bottom:998.373333pt;}
.y3c{bottom:1008.293333pt;}
.y83{bottom:1012.960000pt;}
.y16{bottom:1013.280000pt;}
.y13{bottom:1062.880000pt;}
.h1c{height:2.111250pt;}
.h1b{height:15.680000pt;}
.h19{height:16.000000pt;}
.h15{height:29.792000pt;}
.h7{height:34.432000pt;}
.h16{height:35.363437pt;}
.h26{height:36.832000pt;}
.h1a{height:39.585938pt;}
.hd{height:45.626250pt;}
.he{height:47.109375pt;}
.ha{height:48.375000pt;}
.h2{height:48.558750pt;}
.h9{height:53.535000pt;}
.h29{height:56.160000pt;}
.h13{height:57.375000pt;}
.h10{height:57.787500pt;}
.h8{height:59.340000pt;}
.h5{height:61.754062pt;}
.h11{height:62.781250pt;}
.hc{height:62.812500pt;}
.h21{height:63.843750pt;}
.hb{height:64.500000pt;}
.h14{height:65.781915pt;}
.h12{height:66.625000pt;}
.h22{height:68.800000pt;}
.h25{height:68.832000pt;}
.h28{height:70.978125pt;}
.h2c{height:73.792000pt;}
.h2f{height:73.952000pt;}
.h33{height:75.520000pt;}
.h32{height:75.552000pt;}
.h17{height:79.171875pt;}
.hf{height:83.540625pt;}
.h6{height:96.960000pt;}
.h2a{height:123.200000pt;}
.h23{height:142.906667pt;}
.h30{height:149.120000pt;}
.h2d{height:149.280000pt;}
.h31{height:151.866667pt;}
.h3{height:158.343750pt;}
.h20{height:159.520000pt;}
.h18{height:167.520000pt;}
.h1f{height:167.546667pt;}
.h1d{height:168.186667pt;}
.h1e{height:168.346667pt;}
.h4{height:175.761562pt;}
.h24{height:179.706667pt;}
.h27{height:180.160000pt;}
.h2e{height:223.706667pt;}
.h2b{height:223.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:1.600000pt;}
.w1b{width:19.360000pt;}
.w1a{width:19.680000pt;}
.w1c{width:19.840000pt;}
.w18{width:20.000000pt;}
.w19{width:20.160000pt;}
.w17{width:20.320000pt;}
.w16{width:20.480000pt;}
.w15{width:20.512000pt;}
.w13{width:20.800000pt;}
.wc{width:20.960000pt;}
.we{width:21.120000pt;}
.wd{width:21.280000pt;}
.wf{width:21.440000pt;}
.w8{width:21.600000pt;}
.wa{width:21.760000pt;}
.w12{width:21.792000pt;}
.w9{width:21.920000pt;}
.wb{width:21.952000pt;}
.w14{width:54.400000pt;}
.w10{width:54.560000pt;}
.w21{width:121.760000pt;}
.w1f{width:122.080000pt;}
.w11{width:152.506667pt;}
.w7{width:152.666667pt;}
.w22{width:188.026667pt;}
.w23{width:188.186667pt;}
.w4{width:224.666667pt;}
.w20{width:443.293333pt;}
.w1e{width:443.613333pt;}
.w3{width:565.213333pt;}
.w6{width:577.373333pt;}
.w1d{width:600.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:4.453333pt;}
.x1f{left:5.600000pt;}
.x24{left:7.040000pt;}
.x1d{left:8.160000pt;}
.x3e{left:9.632000pt;}
.x26{left:10.746667pt;}
.xf{left:11.680000pt;}
.x51{left:14.560000pt;}
.x56{left:18.720000pt;}
.x57{left:20.954667pt;}
.x50{left:23.834667pt;}
.x53{left:26.874667pt;}
.x52{left:28.160000pt;}
.x4f{left:29.274667pt;}
.x42{left:30.874667pt;}
.x4e{left:36.794667pt;}
.x4b{left:38.720000pt;}
.x49{left:41.594667pt;}
.x58{left:44.954667pt;}
.x54{left:46.880000pt;}
.x48{left:50.074667pt;}
.x59{left:52.474667pt;}
.x55{left:53.920000pt;}
.x45{left:54.874667pt;}
.x47{left:58.880000pt;}
.x44{left:66.880000pt;}
.xa{left:72.634667pt;}
.x3d{left:76.800000pt;}
.x46{left:78.880000pt;}
.x4d{left:94.074667pt;}
.x1a{left:107.392000pt;}
.x1b{left:108.992000pt;}
.x5{left:113.791988pt;}
.x43{left:114.880000pt;}
.x14{left:128.191988pt;}
.x17{left:132.351988pt;}
.x1e{left:135.066667pt;}
.x18{left:137.466655pt;}
.x2{left:140.666655pt;}
.x19{left:156.186655pt;}
.x25{left:157.280000pt;}
.x16{left:160.666655pt;}
.x10{left:161.786655pt;}
.x20{left:178.906667pt;}
.x3{left:183.546655pt;}
.x3f{left:185.466655pt;}
.xc{left:188.354667pt;}
.xd{left:195.074667pt;}
.x1c{left:196.194667pt;}
.xb{left:198.434667pt;}
.x21{left:200.826667pt;}
.x9{left:208.514667pt;}
.x22{left:222.586667pt;}
.x23{left:244.546667pt;}
.x27{left:266.146667pt;}
.x40{left:268.066655pt;}
.x4{left:298.626655pt;}
.x11{left:299.746655pt;}
.x4a{left:302.946667pt;}
.x7{left:314.626655pt;}
.x28{left:320.706667pt;}
.x15{left:338.306655pt;}
.x29{left:342.306667pt;}
.x6{left:352.226655pt;}
.x13{left:354.306655pt;}
.x12{left:356.866655pt;}
.x2a{left:364.226667pt;}
.x2b{left:386.146667pt;}
.x2c{left:407.933333pt;}
.x2d{left:429.853333pt;}
.x8{left:436.893322pt;}
.x2e{left:451.613333pt;}
.xe{left:454.173333pt;}
.x1{left:471.293322pt;}
.x2f{left:473.373333pt;}
.x4c{left:491.613333pt;}
.x30{left:527.773333pt;}
.x31{left:549.213333pt;}
.x41{left:557.733333pt;}
.x32{left:569.733333pt;}
.x38{left:571.333333pt;}
.x33{left:591.333333pt;}
.x39{left:593.253333pt;}
.x34{left:611.813333pt;}
.x3a{left:615.173333pt;}
.x35{left:632.133333pt;}
.x3b{left:636.933333pt;}
.x36{left:652.613333pt;}
.x3c{left:658.853333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  