
    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_c3296915c831dfe64b483b3c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_30d5bc631c54a2ec63a12370.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_8f60c1751e0aaaf9b460beb0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_a6970fd8eae758b76d1db747.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_f843a1f8fc4db35cf1733100.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899414;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_bba021222ccb2b2ea7a35a0e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_60e762f702250095ad799844.woff')format("woff");}.ff7{font-family:ff7;line-height:0.851000;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_f4e1086fe2e444557be1072a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_54b54ff49e004c6aee7af138.woff')format("woff");}.ff9{font-family:ff9;line-height:1.028000;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_f22164933e95368b4d0fe823.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_8348e8537eebf7f1b813e486.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_a85d7bfddc1dc299f0fe0360.woff')format("woff");}.ffc{font-family:ffc;line-height:0.927000;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_aa91a224321e446781f2d98b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899414;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_d59c828513a1fcf9361cd1b5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.820000px;}
.v1{vertical-align:19.800000px;}
.v3{vertical-align:23.664000px;}
.v5{vertical-align:37.500000px;}
.v6{vertical-align:57.306000px;}
.ls22{letter-spacing:-7.200000px;}
.ls2e{letter-spacing:-6.408000px;}
.ls31{letter-spacing:-1.368000px;}
.ls19{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.600000px;}
.ls17{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.526200px;}
.ls2a{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.648000px;}
.ls13{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.756000px;}
.ls1b{letter-spacing:0.792000px;}
.ls2c{letter-spacing:0.864000px;}
.ls29{letter-spacing:0.936000px;}
.lsa{letter-spacing:1.008000px;}
.ls24{letter-spacing:1.152000px;}
.ls27{letter-spacing:1.216800px;}
.ls26{letter-spacing:1.224000px;}
.ls25{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.850000px;}
.ls21{letter-spacing:3.888000px;}
.ls7{letter-spacing:4.416000px;}
.ls4{letter-spacing:4.560000px;}
.ls32{letter-spacing:4.752000px;}
.ls2d{letter-spacing:4.980000px;}
.ls2b{letter-spacing:5.329800px;}
.ls2f{letter-spacing:7.200000px;}
.ls1d{letter-spacing:7.614000px;}
.ls1a{letter-spacing:7.860000px;}
.ls33{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls6{letter-spacing:8.460000px;}
.ls2{letter-spacing:10.740000px;}
.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;}
}
.ws2{word-spacing:-25.320000px;}
.ws50{word-spacing:-23.274000px;}
.ws17{word-spacing:-20.232000px;}
.ws2f{word-spacing:-18.936000px;}
.ws1{word-spacing:-18.867000px;}
.ws30{word-spacing:-18.432000px;}
.ws3b{word-spacing:-18.288000px;}
.ws46{word-spacing:-18.216000px;}
.ws24{word-spacing:-18.144000px;}
.ws41{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.928000px;}
.ws16{word-spacing:-17.784000px;}
.ws1b{word-spacing:-17.712000px;}
.ws42{word-spacing:-17.640000px;}
.ws48{word-spacing:-17.496000px;}
.ws49{word-spacing:-17.208000px;}
.ws36{word-spacing:-16.860000px;}
.ws34{word-spacing:-14.820000px;}
.ws15{word-spacing:-14.162400px;}
.ws4f{word-spacing:-13.488000px;}
.ws4c{word-spacing:-12.336000px;}
.ws3f{word-spacing:-11.856000px;}
.wsc{word-spacing:-11.802000px;}
.ws4{word-spacing:-10.020000px;}
.ws38{word-spacing:-9.480000px;}
.ws37{word-spacing:-8.640000px;}
.wsb{word-spacing:-8.496000px;}
.wsd{word-spacing:-8.460000px;}
.ws27{word-spacing:-7.860000px;}
.ws29{word-spacing:-7.614000px;}
.ws44{word-spacing:-7.200000px;}
.ws3e{word-spacing:-5.329800px;}
.ws45{word-spacing:-4.980000px;}
.ws4d{word-spacing:-4.752000px;}
.ws9{word-spacing:-4.416000px;}
.ws33{word-spacing:-1.296000px;}
.ws31{word-spacing:-1.152000px;}
.wsf{word-spacing:-1.008000px;}
.ws39{word-spacing:-0.936000px;}
.ws40{word-spacing:-0.864000px;}
.ws26{word-spacing:-0.792000px;}
.ws1d{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.648000px;}
.ws7{word-spacing:-0.600000px;}
.ws3c{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.504000px;}
.ws10{word-spacing:-0.432000px;}
.wse{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.288000px;}
.ws14{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.144000px;}
.ws13{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.072000px;}
.ws12{word-spacing:0.144000px;}
.ws21{word-spacing:0.216000px;}
.wsa{word-spacing:0.240000px;}
.ws1e{word-spacing:0.288000px;}
.ws2a{word-spacing:0.300000px;}
.ws11{word-spacing:0.360000px;}
.ws2b{word-spacing:0.432000px;}
.ws18{word-spacing:0.504000px;}
.ws20{word-spacing:0.576000px;}
.ws2e{word-spacing:0.600000px;}
.ws4a{word-spacing:0.648000px;}
.ws25{word-spacing:0.720000px;}
.ws2c{word-spacing:1.080000px;}
.ws4b{word-spacing:1.368000px;}
.ws51{word-spacing:1.440000px;}
.ws8{word-spacing:1.488000px;}
.ws6{word-spacing:1.800000px;}
.ws23{word-spacing:2.160000px;}
.ws22{word-spacing:2.400000px;}
.ws3a{word-spacing:2.664000px;}
.ws4e{word-spacing:3.360000px;}
.ws5{word-spacing:4.200000px;}
.ws47{word-spacing:5.760000px;}
.ws43{word-spacing:6.408000px;}
.ws2d{word-spacing:7.200000px;}
.ws32{word-spacing:10.080000px;}
.ws3d{word-spacing:10.152000px;}
.ws0{word-spacing:146.196000px;}
._17{margin-left:-948.820800px;}
._16{margin-left:-16.860000px;}
._1e{margin-left:-14.752800px;}
._1d{margin-left:-13.023600px;}
._25{margin-left:-10.002000px;}
._1f{margin-left:-8.545200px;}
._1c{margin-left:-7.197600px;}
._12{margin-left:-5.382000px;}
._11{margin-left:-3.888000px;}
._14{margin-left:-2.808000px;}
._0{margin-left:-1.722000px;}
._15{width:1.566000px;}
._9{width:2.724000px;}
._1{width:4.188000px;}
._13{width:5.352000px;}
._1a{width:6.412800px;}
._10{width:7.566000px;}
._f{width:8.616000px;}
._19{width:10.047600px;}
._18{width:11.796000px;}
._22{width:13.795500px;}
._20{width:15.505200px;}
._21{width:23.278200px;}
._6{width:24.666000px;}
._3{width:26.814000px;}
._1b{width:31.646100px;}
._8{width:33.000000px;}
._e{width:39.180000px;}
._2{width:47.736000px;}
._4{width:68.940000px;}
._5{width:71.046000px;}
._c{width:73.056000px;}
._a{width:75.180000px;}
._b{width:77.304000px;}
._7{width:152.934000px;}
._d{width:159.180000px;}
._24{width:222.144000px;}
._23{width:497.820000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs9{font-size:37.800000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:39.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y72{bottom:117.000000px;}
.y98{bottom:117.078000px;}
.yc3{bottom:117.216000px;}
.yfc{bottom:119.006850px;}
.y201{bottom:119.256000px;}
.yb0{bottom:120.022200px;}
.y22d{bottom:120.386250px;}
.y22{bottom:120.552750px;}
.y47{bottom:121.207500px;}
.y1d2{bottom:123.106050px;}
.y71{bottom:132.000000px;}
.y200{bottom:134.256000px;}
.y171{bottom:136.207500px;}
.yfb{bottom:137.456850px;}
.y97{bottom:138.984000px;}
.yc2{bottom:139.122000px;}
.y22c{bottom:139.286250px;}
.y21{bottom:140.352750px;}
.yaf{bottom:141.928200px;}
.y13b{bottom:143.707500px;}
.y1d1{bottom:145.012050px;}
.y70{bottom:147.000000px;}
.y1ff{bottom:149.256000px;}
.ya2{bottom:151.207500px;}
.y156{bottom:151.554150px;}
.y170{bottom:154.500000px;}
.ye0{bottom:156.141900px;}
.y1ad{bottom:156.591750px;}
.y22b{bottom:158.186250px;}
.y46{bottom:160.292100px;}
.y96{bottom:160.890000px;}
.y120{bottom:160.951200px;}
.yc1{bottom:161.028000px;}
.y6f{bottom:162.000000px;}
.yae{bottom:163.834200px;}
.y1fe{bottom:164.256000px;}
.yfa{bottom:164.411850px;}
.y1d0{bottom:166.918050px;}
.y20{bottom:168.655650px;}
.y190{bottom:170.989350px;}
.y16f{bottom:173.707500px;}
.y1ac{bottom:174.134400px;}
.y155{bottom:174.810150px;}
.y6e{bottom:177.000000px;}
.y22a{bottom:177.086250px;}
.ydf{bottom:177.951900px;}
.y1fd{bottom:179.256000px;}
.y45{bottom:181.892100px;}
.y95{bottom:182.796000px;}
.yc0{bottom:182.934000px;}
.y11f{bottom:183.901200px;}
.y13a{bottom:185.532600px;}
.yad{bottom:185.740200px;}
.y1f{bottom:188.455650px;}
.y1cf{bottom:188.824050px;}
.ya1{bottom:189.283500px;}
.yf9{bottom:191.366850px;}
.y6d{bottom:192.000000px;}
.y18f{bottom:193.939350px;}
.y1fc{bottom:194.256000px;}
.y229{bottom:195.986250px;}
.y154{bottom:198.066150px;}
.yde{bottom:199.695900px;}
.y1ab{bottom:200.189400px;}
.y44{bottom:203.492100px;}
.y94{bottom:204.702000px;}
.ybf{bottom:204.840000px;}
.y11e{bottom:206.851200px;}
.y6c{bottom:207.000000px;}
.y139{bottom:208.176600px;}
.yac{bottom:208.240200px;}
.y1e{bottom:208.255650px;}
.y1fb{bottom:209.256000px;}
.yf8{bottom:209.816850px;}
.y1ce{bottom:210.730050px;}
.ya0{bottom:211.783500px;}
.y16e{bottom:212.356350px;}
.y228{bottom:214.886250px;}
.y18e{bottom:216.889350px;}
.y1aa{bottom:217.739400px;}
.y153{bottom:221.322150px;}
.ydd{bottom:221.439900px;}
.y6b{bottom:222.000000px;}
.y24e{bottom:223.800000px;}
.y1fa{bottom:224.256000px;}
.y93{bottom:226.608000px;}
.ybe{bottom:226.746000px;}
.y1d{bottom:228.055650px;}
.y11d{bottom:229.801200px;}
.yab{bottom:230.740200px;}
.y138{bottom:230.820600px;}
.y1cd{bottom:232.636050px;}
.y43{bottom:233.596050px;}
.y227{bottom:233.786250px;}
.y9f{bottom:234.283500px;}
.y16d{bottom:234.406350px;}
.yf7{bottom:236.771850px;}
.y6a{bottom:237.000000px;}
.y1f9{bottom:239.256000px;}
.y18d{bottom:239.839350px;}
.y24d{bottom:242.550000px;}
.ydc{bottom:243.183900px;}
.y1a9{bottom:243.794400px;}
.y152{bottom:244.578150px;}
.y1c{bottom:247.855650px;}
.y92{bottom:248.514000px;}
.y42{bottom:251.446050px;}
.y69{bottom:252.000000px;}
.y226{bottom:252.686250px;}
.y11c{bottom:252.751200px;}
.yaa{bottom:253.240200px;}
.y137{bottom:253.464600px;}
.y1f8{bottom:254.256000px;}
.y1cc{bottom:254.542050px;}
.yf6{bottom:255.221850px;}
.y16c{bottom:256.456350px;}
.y9e{bottom:256.783500px;}
.y24c{bottom:261.300000px;}
.y1a8{bottom:261.344400px;}
.y18c{bottom:262.789350px;}
.ydb{bottom:264.927900px;}
.y68{bottom:267.000000px;}
.y1b{bottom:267.655650px;}
.y151{bottom:267.834150px;}
.y1f7{bottom:269.256000px;}
.y41{bottom:269.296050px;}
.y91{bottom:270.420000px;}
.ybd{bottom:270.540000px;}
.y225{bottom:271.586250px;}
.yf5{bottom:273.671850px;}
.y11b{bottom:275.701200px;}
.ya9{bottom:275.740200px;}
.y1cb{bottom:276.448050px;}
.y16b{bottom:278.506350px;}
.y9d{bottom:279.283500px;}
.y24b{bottom:280.050000px;}
.y67{bottom:282.000000px;}
.y1f6{bottom:284.256000px;}
.y18b{bottom:285.739350px;}
.yda{bottom:286.671900px;}
.y40{bottom:287.146050px;}
.y1a7{bottom:287.399400px;}
.y1a{bottom:287.455650px;}
.y224{bottom:290.486250px;}
.y150{bottom:291.090150px;}
.y90{bottom:292.326000px;}
.ybc{bottom:292.446000px;}
.y66{bottom:297.000000px;}
.ya8{bottom:298.240200px;}
.y1ca{bottom:298.354050px;}
.y11a{bottom:298.651200px;}
.y1f5{bottom:299.256000px;}
.yf4{bottom:300.626850px;}
.y135{bottom:301.642050px;}
.y9c{bottom:301.783500px;}
.y1a6{bottom:304.949400px;}
.y3f{bottom:304.996050px;}
.y19{bottom:307.255650px;}
.yd9{bottom:308.415900px;}
.y18a{bottom:308.689350px;}
.y223{bottom:309.386250px;}
.y24a{bottom:310.050000px;}
.y65{bottom:312.000000px;}
.y8f{bottom:314.232000px;}
.y1f4{bottom:314.256000px;}
.y14f{bottom:314.346150px;}
.ybb{bottom:314.352000px;}
.yf3{bottom:319.076850px;}
.y133{bottom:319.642050px;}
.y136{bottom:319.643550px;}
.y1c9{bottom:320.260050px;}
.ya7{bottom:320.740200px;}
.y119{bottom:321.601200px;}
.y9b{bottom:324.283500px;}
.y16a{bottom:325.042350px;}
.y64{bottom:327.000000px;}
.y18{bottom:327.055650px;}
.y222{bottom:328.286250px;}
.y1f3{bottom:329.256000px;}
.yd8{bottom:330.159900px;}
.y1a5{bottom:331.004400px;}
.y3e{bottom:331.350000px;}
.y189{bottom:331.639350px;}
.y8e{bottom:336.138000px;}
.yba{bottom:336.258000px;}
.y14e{bottom:337.602150px;}
.y134{bottom:337.642050px;}
.y63{bottom:342.000000px;}
.y1c8{bottom:342.166050px;}
.ya6{bottom:343.240200px;}
.y1f2{bottom:344.256000px;}
.y118{bottom:344.551200px;}
.yf2{bottom:346.060650px;}
.y9a{bottom:346.783500px;}
.y169{bottom:347.686350px;}
.y1a4{bottom:348.554400px;}
.y249{bottom:351.300000px;}
.yd7{bottom:351.903900px;}
.y3d{bottom:352.950000px;}
.y188{bottom:354.589350px;}
.y17{bottom:355.360650px;}
.y62{bottom:357.000000px;}
.y8d{bottom:358.044000px;}
.yb9{bottom:358.164000px;}
.y1f1{bottom:359.256000px;}
.y221{bottom:359.942100px;}
.y14d{bottom:360.858150px;}
.y1c7{bottom:364.072050px;}
.y132{bottom:364.627050px;}
.ya5{bottom:365.740200px;}
.y117{bottom:367.501200px;}
.yf1{bottom:368.254650px;}
.y99{bottom:369.283500px;}
.y248{bottom:370.050000px;}
.y168{bottom:370.330350px;}
.yd6{bottom:373.647900px;}
.y1f0{bottom:374.256000px;}
.y3c{bottom:374.550000px;}
.y1a3{bottom:374.609400px;}
.y61{bottom:376.207500px;}
.y8c{bottom:379.950000px;}
.yb8{bottom:380.070000px;}
.y131{bottom:383.377050px;}
.y14c{bottom:384.114150px;}
.y1c6{bottom:385.978050px;}
.y187{bottom:386.043300px;}
.y247{bottom:388.800000px;}
.y1ef{bottom:389.256000px;}
.yf0{bottom:390.448650px;}
.y116{bottom:390.451200px;}
.y220{bottom:390.852000px;}
.y1a2{bottom:392.159400px;}
.y167{bottom:392.974350px;}
.y60{bottom:394.500000px;}
.yd5{bottom:395.391900px;}
.y3b{bottom:396.150000px;}
.y8b{bottom:401.856000px;}
.yb7{bottom:401.976000px;}
.y16{bottom:402.460650px;}
.y186{bottom:405.843300px;}
.y14b{bottom:407.370150px;}
.y246{bottom:407.550000px;}
.y1c5{bottom:407.884050px;}
.y5f{bottom:409.500000px;}
.y1a1{bottom:409.709400px;}
.y21f{bottom:410.496000px;}
.y1ee{bottom:410.628000px;}
.yef{bottom:412.642650px;}
.y115{bottom:413.401200px;}
.y166{bottom:415.618350px;}
.yd4{bottom:417.135900px;}
.y3a{bottom:417.750000px;}
.y15{bottom:422.260650px;}
.y130{bottom:423.113400px;}
.y8a{bottom:423.762000px;}
.yb6{bottom:423.882000px;}
.y5e{bottom:424.500000px;}
.y245{bottom:426.300000px;}
.y1a0{bottom:427.259400px;}
.y1c4{bottom:429.790050px;}
.y14a{bottom:430.626150px;}
.y185{bottom:434.147250px;}
.yee{bottom:434.836650px;}
.y114{bottom:436.351200px;}
.y165{bottom:438.262350px;}
.y39{bottom:439.350000px;}
.y5d{bottom:443.707500px;}
.y244{bottom:445.050000px;}
.y89{bottom:445.668000px;}
.yb5{bottom:445.788000px;}
.yd3{bottom:447.388650px;}
.y14{bottom:450.563550px;}
.y1c3{bottom:451.696050px;}
.y19f{bottom:453.314400px;}
.y149{bottom:453.882150px;}
.y1ed{bottom:455.628000px;}
.yed{bottom:457.030650px;}
.y184{bottom:457.097250px;}
.y113{bottom:459.301200px;}
.y21e{bottom:459.900000px;}
.y164{bottom:460.906350px;}
.y38{bottom:460.950000px;}
.y243{bottom:463.800000px;}
.y12f{bottom:464.813400px;}
.yd2{bottom:465.388650px;}
.y88{bottom:467.574000px;}
.yb4{bottom:467.694000px;}
.y13{bottom:470.363550px;}
.y1ec{bottom:470.628000px;}
.y19e{bottom:470.864400px;}
.y1c2{bottom:473.596050px;}
.y21d{bottom:475.200000px;}
.y148{bottom:477.138150px;}
.y183{bottom:480.047250px;}
.y112{bottom:482.251200px;}
.y37{bottom:482.550000px;}
.y5c{bottom:483.060000px;}
.yd1{bottom:483.388650px;}
.y12e{bottom:483.713400px;}
.y1eb{bottom:485.628000px;}
.yec{bottom:487.731450px;}
.y87{bottom:489.480000px;}
.yb3{bottom:489.600000px;}
.y12{bottom:490.163550px;}
.y21c{bottom:490.500000px;}
.y163{bottom:492.059100px;}
.y19d{bottom:496.919400px;}
.y147{bottom:500.394150px;}
.y1ea{bottom:500.628000px;}
.y242{bottom:501.300000px;}
.yd0{bottom:501.388650px;}
.y12d{bottom:502.613400px;}
.y182{bottom:502.997250px;}
.y36{bottom:504.150000px;}
.y111{bottom:505.201200px;}
.y5b{bottom:505.560000px;}
.y21b{bottom:505.800000px;}
.yeb{bottom:506.181450px;}
.y11{bottom:509.963550px;}
.y162{bottom:510.959100px;}
.y86{bottom:511.386000px;}
.yb2{bottom:511.500000px;}
.y19c{bottom:514.469400px;}
.y1e9{bottom:515.628000px;}
.y1c1{bottom:517.306050px;}
.y241{bottom:520.050000px;}
.y21a{bottom:521.100000px;}
.y35{bottom:525.750000px;}
.y181{bottom:525.947250px;}
.y5a{bottom:527.754000px;}
.ycf{bottom:527.893650px;}
.y110{bottom:528.151200px;}
.y10{bottom:529.763550px;}
.y161{bottom:529.859100px;}
.y12c{bottom:530.035350px;}
.y1e8{bottom:530.628000px;}
.yea{bottom:533.136450px;}
.y85{bottom:533.292000px;}
.yb1{bottom:533.400000px;}
.y219{bottom:536.400000px;}
.y240{bottom:538.800000px;}
.y1c0{bottom:539.212050px;}
.y19b{bottom:540.583350px;}
.y1e7{bottom:545.628000px;}
.yce{bottom:545.893650px;}
.y34{bottom:547.350000px;}
.y180{bottom:548.897250px;}
.yf{bottom:549.563550px;}
.y59{bottom:549.948000px;}
.y146{bottom:550.371600px;}
.y10f{bottom:551.101200px;}
.ye9{bottom:551.586450px;}
.y218{bottom:551.700000px;}
.y12b{bottom:552.679350px;}
.y84{bottom:555.198000px;}
.y160{bottom:557.264100px;}
.y23f{bottom:557.550000px;}
.y1e6{bottom:560.628000px;}
.y1bf{bottom:561.118050px;}
.y19a{bottom:561.877350px;}
.ycd{bottom:563.893650px;}
.y217{bottom:567.000000px;}
.y33{bottom:568.950000px;}
.y144{bottom:569.121600px;}
.ye{bottom:569.363550px;}
.ye8{bottom:570.036450px;}
.y17f{bottom:571.847250px;}
.y58{bottom:572.142000px;}
.y12a{bottom:575.323350px;}
.y1e5{bottom:575.628000px;}
.y15f{bottom:576.164100px;}
.y23e{bottom:576.300000px;}
.y83{bottom:577.104000px;}
.ycc{bottom:581.893650px;}
.y216{bottom:582.300000px;}
.y1be{bottom:583.024050px;}
.y199{bottom:583.171350px;}
.y145{bottom:587.871600px;}
.yd{bottom:589.163550px;}
.y32{bottom:590.550000px;}
.y1e4{bottom:590.628000px;}
.y10d{bottom:591.930150px;}
.y57{bottom:594.336000px;}
.y23d{bottom:595.050000px;}
.y15e{bottom:595.064100px;}
.ye7{bottom:596.991450px;}
.y215{bottom:597.600000px;}
.y129{bottom:597.967350px;}
.y82{bottom:599.010000px;}
.y1bd{bottom:604.930050px;}
.y198{bottom:605.365350px;}
.y1e3{bottom:605.628000px;}
.ycb{bottom:608.433600px;}
.yc{bottom:608.963550px;}
.y10c{bottom:611.130150px;}
.y31{bottom:612.150000px;}
.y214{bottom:612.900000px;}
.y23c{bottom:613.800000px;}
.y143{bottom:614.856600px;}
.y56{bottom:616.530000px;}
.y17e{bottom:620.626200px;}
.y1e2{bottom:620.628000px;}
.y81{bottom:620.916000px;}
.y15d{bottom:622.498200px;}
.ye6{bottom:623.946450px;}
.y1bc{bottom:626.836050px;}
.y197{bottom:627.559350px;}
.y213{bottom:628.200000px;}
.y128{bottom:629.120250px;}
.y17d{bottom:629.999700px;}
.yca{bottom:630.177600px;}
.y10b{bottom:630.330150px;}
.y23b{bottom:632.550000px;}
.y142{bottom:633.606600px;}
.y30{bottom:633.750000px;}
.y1e1{bottom:635.628000px;}
.yb{bottom:637.268550px;}
.y55{bottom:638.724000px;}
.ye5{bottom:642.696450px;}
.y80{bottom:642.822000px;}
.y212{bottom:643.500000px;}
.y15c{bottom:645.142200px;}
.y127{bottom:648.020250px;}
.y1bb{bottom:648.742050px;}
.y10a{bottom:649.530150px;}
.y196{bottom:649.753350px;}
.y1e0{bottom:650.628000px;}
.y23a{bottom:651.300000px;}
.yc9{bottom:651.921600px;}
.y2f{bottom:655.350000px;}
.y211{bottom:658.800000px;}
.y54{bottom:660.918000px;}
.ye4{bottom:661.446450px;}
.y7f{bottom:664.728000px;}
.y1df{bottom:665.628000px;}
.y17c{bottom:666.359700px;}
.y126{bottom:666.920250px;}
.y15b{bottom:667.786200px;}
.y109{bottom:668.730150px;}
.y239{bottom:670.050000px;}
.y1ba{bottom:670.648050px;}
.y195{bottom:671.947350px;}
.y141{bottom:673.342950px;}
.yc8{bottom:673.665600px;}
.y210{bottom:674.100000px;}
.y2e{bottom:676.950000px;}
.ye3{bottom:680.196450px;}
.y1de{bottom:680.628000px;}
.y53{bottom:683.112000px;}
.ya{bottom:684.204300px;}
.y17b{bottom:685.109700px;}
.y7e{bottom:686.634000px;}
.y108{bottom:687.930150px;}
.y238{bottom:688.800000px;}
.y20f{bottom:689.400000px;}
.y15a{bottom:690.430200px;}
.y1b9{bottom:692.554050px;}
.y194{bottom:694.141350px;}
.y125{bottom:694.325250px;}
.yc7{bottom:695.409600px;}
.y1dd{bottom:695.628000px;}
.y2d{bottom:698.550000px;}
.y20e{bottom:704.700000px;}
.y52{bottom:705.306000px;}
.y107{bottom:707.130150px;}
.ye2{bottom:707.450400px;}
.y237{bottom:707.550000px;}
.y9{bottom:707.754300px;}
.y7d{bottom:708.540000px;}
.y1dc{bottom:710.628000px;}
.y159{bottom:713.074200px;}
.y124{bottom:713.224200px;}
.y1b8{bottom:714.460050px;}
.y193{bottom:716.335350px;}
.y140{bottom:716.392950px;}
.yff{bottom:716.728500px;}
.y10e{bottom:716.730150px;}
.yc6{bottom:717.153600px;}
.y20d{bottom:720.000000px;}
.y2c{bottom:720.150000px;}
.y17a{bottom:724.846050px;}
.y1db{bottom:725.628000px;}
.y236{bottom:726.300000px;}
.y106{bottom:726.330150px;}
.y51{bottom:727.530000px;}
.ye1{bottom:729.950400px;}
.y7c{bottom:730.446000px;}
.y123{bottom:732.124200px;}
.y20c{bottom:735.300000px;}
.y158{bottom:735.718200px;}
.y1b7{bottom:736.366050px;}
.y13f{bottom:736.492950px;}
.y192{bottom:738.529350px;}
.yc5{bottom:738.897600px;}
.y1da{bottom:740.628000px;}
.y2b{bottom:741.750000px;}
.y235{bottom:745.050000px;}
.y105{bottom:745.530150px;}
.y50{bottom:749.724000px;}
.y20b{bottom:750.600000px;}
.y7b{bottom:752.352000px;}
.y1d9{bottom:755.628000px;}
.y1b6{bottom:758.272050px;}
.y157{bottom:758.368050px;}
.y122{bottom:759.529200px;}
.yc4{bottom:760.647600px;}
.y191{bottom:760.723350px;}
.y2a{bottom:763.350000px;}
.y234{bottom:763.800000px;}
.y104{bottom:764.730150px;}
.y13e{bottom:765.084900px;}
.y20a{bottom:765.900000px;}
.y179{bottom:766.996050px;}
.y1d8{bottom:770.628000px;}
.y4f{bottom:771.918000px;}
.y7a{bottom:774.258000px;}
.y8{bottom:775.950000px;}
.y121{bottom:777.979200px;}
.y1b5{bottom:780.178050px;}
.y209{bottom:781.200000px;}
.y233{bottom:782.550000px;}
.y103{bottom:783.930150px;}
.y29{bottom:784.950000px;}
.y178{bottom:785.146050px;}
.y1d7{bottom:785.628000px;}
.y13d{bottom:787.440900px;}
.y4e{bottom:794.112000px;}
.y79{bottom:796.164000px;}
.y208{bottom:796.500000px;}
.y1d6{bottom:800.628000px;}
.y232{bottom:801.300000px;}
.y1b4{bottom:802.084050px;}
.y102{bottom:803.130150px;}
.y28{bottom:806.550000px;}
.y7{bottom:807.000000px;}
.y13c{bottom:809.796900px;}
.y177{bottom:811.800000px;}
.y1d5{bottom:815.628000px;}
.y4d{bottom:816.306000px;}
.y78{bottom:818.070000px;}
.y231{bottom:820.050000px;}
.y101{bottom:822.330150px;}
.y1b3{bottom:823.990050px;}
.y207{bottom:827.100000px;}
.y27{bottom:828.150000px;}
.y176{bottom:834.750000px;}
.y1d4{bottom:837.000000px;}
.y6{bottom:838.050000px;}
.y4c{bottom:838.524000px;}
.y230{bottom:838.800000px;}
.y77{bottom:839.976000px;}
.y100{bottom:841.528500px;}
.y206{bottom:842.400000px;}
.y1b2{bottom:845.896050px;}
.y26{bottom:849.750000px;}
.y22f{bottom:857.250000px;}
.y175{bottom:857.700000px;}
.y4b{bottom:860.718000px;}
.y76{bottom:861.882000px;}
.yfe{bottom:868.513500px;}
.y5{bottom:869.100000px;}
.y205{bottom:873.000000px;}
.y22e{bottom:875.700000px;}
.y1b1{bottom:876.300000px;}
.y174{bottom:880.650000px;}
.y1d3{bottom:882.600000px;}
.y4a{bottom:882.912000px;}
.y75{bottom:883.788000px;}
.yfd{bottom:887.263500px;}
.y204{bottom:888.300000px;}
.y25{bottom:894.150000px;}
.y1b0{bottom:894.600000px;}
.y173{bottom:903.600000px;}
.y49{bottom:905.106000px;}
.y74{bottom:905.694000px;}
.y24{bottom:912.600000px;}
.y1af{bottom:912.900000px;}
.y203{bottom:918.900000px;}
.y4{bottom:924.450000px;}
.y172{bottom:926.550000px;}
.ya3{bottom:926.999850px;}
.ya4{bottom:927.000000px;}
.y48{bottom:927.300000px;}
.y73{bottom:927.600000px;}
.y23{bottom:931.050000px;}
.y1ae{bottom:931.200000px;}
.y202{bottom:934.200000px;}
.h7{height:23.927813px;}
.ha{height:30.313623px;}
.h2{height:37.990723px;}
.h14{height:39.072000px;}
.h6{height:39.990234px;}
.h8{height:40.757812px;}
.hd{height:45.852539px;}
.hc{height:47.988281px;}
.hb{height:48.840000px;}
.h11{height:49.916777px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.he{height:50.953866px;}
.h13{height:50.976666px;}
.hf{height:55.466686px;}
.h10{height:55.469086px;}
.h5{height:61.136719px;}
.h9{height:66.555703px;}
.h12{height:88.453266px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xf{left:73.827750px;}
.xa{left:82.386000px;}
.x3{left:97.263750px;}
.x7{left:112.497000px;}
.xb{left:118.827750px;}
.x8{left:127.381950px;}
.x2{left:135.000000px;}
.x9{left:142.263750px;}
.x17{left:180.556950px;}
.x13{left:188.622750px;}
.x10{left:247.857750px;}
.xc{left:272.982750px;}
.x16{left:286.587750px;}
.xe{left:287.865750px;}
.x11{left:290.637750px;}
.x14{left:319.827750px;}
.x5{left:376.122000px;}
.xd{left:476.562750px;}
.x12{left:478.857750px;}
.x15{left:482.637750px;}
.x6{left:528.012000px;}
.x4{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.840000pt;}
.v1{vertical-align:17.600000pt;}
.v3{vertical-align:21.034667pt;}
.v5{vertical-align:33.333333pt;}
.v6{vertical-align:50.938667pt;}
.ls22{letter-spacing:-6.400000pt;}
.ls2e{letter-spacing:-5.696000pt;}
.ls31{letter-spacing:-1.216000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.467733pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.672000pt;}
.ls1b{letter-spacing:0.704000pt;}
.ls2c{letter-spacing:0.768000pt;}
.ls29{letter-spacing:0.832000pt;}
.lsa{letter-spacing:0.896000pt;}
.ls24{letter-spacing:1.024000pt;}
.ls27{letter-spacing:1.081600pt;}
.ls26{letter-spacing:1.088000pt;}
.ls25{letter-spacing:1.152000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls21{letter-spacing:3.456000pt;}
.ls7{letter-spacing:3.925333pt;}
.ls4{letter-spacing:4.053333pt;}
.ls32{letter-spacing:4.224000pt;}
.ls2d{letter-spacing:4.426667pt;}
.ls2b{letter-spacing:4.737600pt;}
.ls2f{letter-spacing:6.400000pt;}
.ls1d{letter-spacing:6.768000pt;}
.ls1a{letter-spacing:6.986667pt;}
.ls33{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls6{letter-spacing:7.520000pt;}
.ls2{letter-spacing:9.546667pt;}
.ws2{word-spacing:-22.506667pt;}
.ws50{word-spacing:-20.688000pt;}
.ws17{word-spacing:-17.984000pt;}
.ws2f{word-spacing:-16.832000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws30{word-spacing:-16.384000pt;}
.ws3b{word-spacing:-16.256000pt;}
.ws46{word-spacing:-16.192000pt;}
.ws24{word-spacing:-16.128000pt;}
.ws41{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.936000pt;}
.ws16{word-spacing:-15.808000pt;}
.ws1b{word-spacing:-15.744000pt;}
.ws42{word-spacing:-15.680000pt;}
.ws48{word-spacing:-15.552000pt;}
.ws49{word-spacing:-15.296000pt;}
.ws36{word-spacing:-14.986667pt;}
.ws34{word-spacing:-13.173333pt;}
.ws15{word-spacing:-12.588800pt;}
.ws4f{word-spacing:-11.989333pt;}
.ws4c{word-spacing:-10.965333pt;}
.ws3f{word-spacing:-10.538667pt;}
.wsc{word-spacing:-10.490667pt;}
.ws4{word-spacing:-8.906667pt;}
.ws38{word-spacing:-8.426667pt;}
.ws37{word-spacing:-7.680000pt;}
.wsb{word-spacing:-7.552000pt;}
.wsd{word-spacing:-7.520000pt;}
.ws27{word-spacing:-6.986667pt;}
.ws29{word-spacing:-6.768000pt;}
.ws44{word-spacing:-6.400000pt;}
.ws3e{word-spacing:-4.737600pt;}
.ws45{word-spacing:-4.426667pt;}
.ws4d{word-spacing:-4.224000pt;}
.ws9{word-spacing:-3.925333pt;}
.ws33{word-spacing:-1.152000pt;}
.ws31{word-spacing:-1.024000pt;}
.wsf{word-spacing:-0.896000pt;}
.ws39{word-spacing:-0.832000pt;}
.ws40{word-spacing:-0.768000pt;}
.ws26{word-spacing:-0.704000pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.576000pt;}
.ws7{word-spacing:-0.533333pt;}
.ws3c{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.448000pt;}
.ws10{word-spacing:-0.384000pt;}
.wse{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.256000pt;}
.ws14{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.128000pt;}
.ws13{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.064000pt;}
.ws12{word-spacing:0.128000pt;}
.ws21{word-spacing:0.192000pt;}
.wsa{word-spacing:0.213333pt;}
.ws1e{word-spacing:0.256000pt;}
.ws2a{word-spacing:0.266667pt;}
.ws11{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.384000pt;}
.ws18{word-spacing:0.448000pt;}
.ws20{word-spacing:0.512000pt;}
.ws2e{word-spacing:0.533333pt;}
.ws4a{word-spacing:0.576000pt;}
.ws25{word-spacing:0.640000pt;}
.ws2c{word-spacing:0.960000pt;}
.ws4b{word-spacing:1.216000pt;}
.ws51{word-spacing:1.280000pt;}
.ws8{word-spacing:1.322667pt;}
.ws6{word-spacing:1.600000pt;}
.ws23{word-spacing:1.920000pt;}
.ws22{word-spacing:2.133333pt;}
.ws3a{word-spacing:2.368000pt;}
.ws4e{word-spacing:2.986667pt;}
.ws5{word-spacing:3.733333pt;}
.ws47{word-spacing:5.120000pt;}
.ws43{word-spacing:5.696000pt;}
.ws2d{word-spacing:6.400000pt;}
.ws32{word-spacing:8.960000pt;}
.ws3d{word-spacing:9.024000pt;}
.ws0{word-spacing:129.952000pt;}
._17{margin-left:-843.396267pt;}
._16{margin-left:-14.986667pt;}
._1e{margin-left:-13.113600pt;}
._1d{margin-left:-11.576533pt;}
._25{margin-left:-8.890667pt;}
._1f{margin-left:-7.595733pt;}
._1c{margin-left:-6.397867pt;}
._12{margin-left:-4.784000pt;}
._11{margin-left:-3.456000pt;}
._14{margin-left:-2.496000pt;}
._0{margin-left:-1.530667pt;}
._15{width:1.392000pt;}
._9{width:2.421333pt;}
._1{width:3.722667pt;}
._13{width:4.757333pt;}
._1a{width:5.700267pt;}
._10{width:6.725333pt;}
._f{width:7.658667pt;}
._19{width:8.931200pt;}
._18{width:10.485333pt;}
._22{width:12.262667pt;}
._20{width:13.782400pt;}
._21{width:20.691733pt;}
._6{width:21.925333pt;}
._3{width:23.834667pt;}
._1b{width:28.129867pt;}
._8{width:29.333333pt;}
._e{width:34.826667pt;}
._2{width:42.432000pt;}
._4{width:61.280000pt;}
._5{width:63.152000pt;}
._c{width:64.938667pt;}
._a{width:66.826667pt;}
._b{width:68.714667pt;}
._7{width:135.941333pt;}
._d{width:141.493333pt;}
._24{width:197.461333pt;}
._23{width:442.506667pt;}
.fs6{font-size:31.733333pt;}
.fs9{font-size:33.600000pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.666667pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y72{bottom:104.000000pt;}
.y98{bottom:104.069333pt;}
.yc3{bottom:104.192000pt;}
.yfc{bottom:105.783867pt;}
.y201{bottom:106.005333pt;}
.yb0{bottom:106.686400pt;}
.y22d{bottom:107.010000pt;}
.y22{bottom:107.158000pt;}
.y47{bottom:107.740000pt;}
.y1d2{bottom:109.427600pt;}
.y71{bottom:117.333333pt;}
.y200{bottom:119.338667pt;}
.y171{bottom:121.073333pt;}
.yfb{bottom:122.183867pt;}
.y97{bottom:123.541333pt;}
.yc2{bottom:123.664000pt;}
.y22c{bottom:123.810000pt;}
.y21{bottom:124.758000pt;}
.yaf{bottom:126.158400pt;}
.y13b{bottom:127.740000pt;}
.y1d1{bottom:128.899600pt;}
.y70{bottom:130.666667pt;}
.y1ff{bottom:132.672000pt;}
.ya2{bottom:134.406667pt;}
.y156{bottom:134.714800pt;}
.y170{bottom:137.333333pt;}
.ye0{bottom:138.792800pt;}
.y1ad{bottom:139.192667pt;}
.y22b{bottom:140.610000pt;}
.y46{bottom:142.481867pt;}
.y96{bottom:143.013333pt;}
.y120{bottom:143.067733pt;}
.yc1{bottom:143.136000pt;}
.y6f{bottom:144.000000pt;}
.yae{bottom:145.630400pt;}
.y1fe{bottom:146.005333pt;}
.yfa{bottom:146.143867pt;}
.y1d0{bottom:148.371600pt;}
.y20{bottom:149.916133pt;}
.y190{bottom:151.990533pt;}
.y16f{bottom:154.406667pt;}
.y1ac{bottom:154.786133pt;}
.y155{bottom:155.386800pt;}
.y6e{bottom:157.333333pt;}
.y22a{bottom:157.410000pt;}
.ydf{bottom:158.179467pt;}
.y1fd{bottom:159.338667pt;}
.y45{bottom:161.681867pt;}
.y95{bottom:162.485333pt;}
.yc0{bottom:162.608000pt;}
.y11f{bottom:163.467733pt;}
.y13a{bottom:164.917867pt;}
.yad{bottom:165.102400pt;}
.y1f{bottom:167.516133pt;}
.y1cf{bottom:167.843600pt;}
.ya1{bottom:168.252000pt;}
.yf9{bottom:170.103867pt;}
.y6d{bottom:170.666667pt;}
.y18f{bottom:172.390533pt;}
.y1fc{bottom:172.672000pt;}
.y229{bottom:174.210000pt;}
.y154{bottom:176.058800pt;}
.yde{bottom:177.507467pt;}
.y1ab{bottom:177.946133pt;}
.y44{bottom:180.881867pt;}
.y94{bottom:181.957333pt;}
.ybf{bottom:182.080000pt;}
.y11e{bottom:183.867733pt;}
.y6c{bottom:184.000000pt;}
.y139{bottom:185.045867pt;}
.yac{bottom:185.102400pt;}
.y1e{bottom:185.116133pt;}
.y1fb{bottom:186.005333pt;}
.yf8{bottom:186.503867pt;}
.y1ce{bottom:187.315600pt;}
.ya0{bottom:188.252000pt;}
.y16e{bottom:188.761200pt;}
.y228{bottom:191.010000pt;}
.y18e{bottom:192.790533pt;}
.y1aa{bottom:193.546133pt;}
.y153{bottom:196.730800pt;}
.ydd{bottom:196.835467pt;}
.y6b{bottom:197.333333pt;}
.y24e{bottom:198.933333pt;}
.y1fa{bottom:199.338667pt;}
.y93{bottom:201.429333pt;}
.ybe{bottom:201.552000pt;}
.y1d{bottom:202.716133pt;}
.y11d{bottom:204.267733pt;}
.yab{bottom:205.102400pt;}
.y138{bottom:205.173867pt;}
.y1cd{bottom:206.787600pt;}
.y43{bottom:207.640933pt;}
.y227{bottom:207.810000pt;}
.y9f{bottom:208.252000pt;}
.y16d{bottom:208.361200pt;}
.yf7{bottom:210.463867pt;}
.y6a{bottom:210.666667pt;}
.y1f9{bottom:212.672000pt;}
.y18d{bottom:213.190533pt;}
.y24d{bottom:215.600000pt;}
.ydc{bottom:216.163467pt;}
.y1a9{bottom:216.706133pt;}
.y152{bottom:217.402800pt;}
.y1c{bottom:220.316133pt;}
.y92{bottom:220.901333pt;}
.y42{bottom:223.507600pt;}
.y69{bottom:224.000000pt;}
.y226{bottom:224.610000pt;}
.y11c{bottom:224.667733pt;}
.yaa{bottom:225.102400pt;}
.y137{bottom:225.301867pt;}
.y1f8{bottom:226.005333pt;}
.y1cc{bottom:226.259600pt;}
.yf6{bottom:226.863867pt;}
.y16c{bottom:227.961200pt;}
.y9e{bottom:228.252000pt;}
.y24c{bottom:232.266667pt;}
.y1a8{bottom:232.306133pt;}
.y18c{bottom:233.590533pt;}
.ydb{bottom:235.491467pt;}
.y68{bottom:237.333333pt;}
.y1b{bottom:237.916133pt;}
.y151{bottom:238.074800pt;}
.y1f7{bottom:239.338667pt;}
.y41{bottom:239.374267pt;}
.y91{bottom:240.373333pt;}
.ybd{bottom:240.480000pt;}
.y225{bottom:241.410000pt;}
.yf5{bottom:243.263867pt;}
.y11b{bottom:245.067733pt;}
.ya9{bottom:245.102400pt;}
.y1cb{bottom:245.731600pt;}
.y16b{bottom:247.561200pt;}
.y9d{bottom:248.252000pt;}
.y24b{bottom:248.933333pt;}
.y67{bottom:250.666667pt;}
.y1f6{bottom:252.672000pt;}
.y18b{bottom:253.990533pt;}
.yda{bottom:254.819467pt;}
.y40{bottom:255.240933pt;}
.y1a7{bottom:255.466133pt;}
.y1a{bottom:255.516133pt;}
.y224{bottom:258.210000pt;}
.y150{bottom:258.746800pt;}
.y90{bottom:259.845333pt;}
.ybc{bottom:259.952000pt;}
.y66{bottom:264.000000pt;}
.ya8{bottom:265.102400pt;}
.y1ca{bottom:265.203600pt;}
.y11a{bottom:265.467733pt;}
.y1f5{bottom:266.005333pt;}
.yf4{bottom:267.223867pt;}
.y135{bottom:268.126267pt;}
.y9c{bottom:268.252000pt;}
.y1a6{bottom:271.066133pt;}
.y3f{bottom:271.107600pt;}
.y19{bottom:273.116133pt;}
.yd9{bottom:274.147467pt;}
.y18a{bottom:274.390533pt;}
.y223{bottom:275.010000pt;}
.y24a{bottom:275.600000pt;}
.y65{bottom:277.333333pt;}
.y8f{bottom:279.317333pt;}
.y1f4{bottom:279.338667pt;}
.y14f{bottom:279.418800pt;}
.ybb{bottom:279.424000pt;}
.yf3{bottom:283.623867pt;}
.y133{bottom:284.126267pt;}
.y136{bottom:284.127600pt;}
.y1c9{bottom:284.675600pt;}
.ya7{bottom:285.102400pt;}
.y119{bottom:285.867733pt;}
.y9b{bottom:288.252000pt;}
.y16a{bottom:288.926533pt;}
.y64{bottom:290.666667pt;}
.y18{bottom:290.716133pt;}
.y222{bottom:291.810000pt;}
.y1f3{bottom:292.672000pt;}
.yd8{bottom:293.475467pt;}
.y1a5{bottom:294.226133pt;}
.y3e{bottom:294.533333pt;}
.y189{bottom:294.790533pt;}
.y8e{bottom:298.789333pt;}
.yba{bottom:298.896000pt;}
.y14e{bottom:300.090800pt;}
.y134{bottom:300.126267pt;}
.y63{bottom:304.000000pt;}
.y1c8{bottom:304.147600pt;}
.ya6{bottom:305.102400pt;}
.y1f2{bottom:306.005333pt;}
.y118{bottom:306.267733pt;}
.yf2{bottom:307.609467pt;}
.y9a{bottom:308.252000pt;}
.y169{bottom:309.054533pt;}
.y1a4{bottom:309.826133pt;}
.y249{bottom:312.266667pt;}
.yd7{bottom:312.803467pt;}
.y3d{bottom:313.733333pt;}
.y188{bottom:315.190533pt;}
.y17{bottom:315.876133pt;}
.y62{bottom:317.333333pt;}
.y8d{bottom:318.261333pt;}
.yb9{bottom:318.368000pt;}
.y1f1{bottom:319.338667pt;}
.y221{bottom:319.948533pt;}
.y14d{bottom:320.762800pt;}
.y1c7{bottom:323.619600pt;}
.y132{bottom:324.112933pt;}
.ya5{bottom:325.102400pt;}
.y117{bottom:326.667733pt;}
.yf1{bottom:327.337467pt;}
.y99{bottom:328.252000pt;}
.y248{bottom:328.933333pt;}
.y168{bottom:329.182533pt;}
.yd6{bottom:332.131467pt;}
.y1f0{bottom:332.672000pt;}
.y3c{bottom:332.933333pt;}
.y1a3{bottom:332.986133pt;}
.y61{bottom:334.406667pt;}
.y8c{bottom:337.733333pt;}
.yb8{bottom:337.840000pt;}
.y131{bottom:340.779600pt;}
.y14c{bottom:341.434800pt;}
.y1c6{bottom:343.091600pt;}
.y187{bottom:343.149600pt;}
.y247{bottom:345.600000pt;}
.y1ef{bottom:346.005333pt;}
.yf0{bottom:347.065467pt;}
.y116{bottom:347.067733pt;}
.y220{bottom:347.424000pt;}
.y1a2{bottom:348.586133pt;}
.y167{bottom:349.310533pt;}
.y60{bottom:350.666667pt;}
.yd5{bottom:351.459467pt;}
.y3b{bottom:352.133333pt;}
.y8b{bottom:357.205333pt;}
.yb7{bottom:357.312000pt;}
.y16{bottom:357.742800pt;}
.y186{bottom:360.749600pt;}
.y14b{bottom:362.106800pt;}
.y246{bottom:362.266667pt;}
.y1c5{bottom:362.563600pt;}
.y5f{bottom:364.000000pt;}
.y1a1{bottom:364.186133pt;}
.y21f{bottom:364.885333pt;}
.y1ee{bottom:365.002667pt;}
.yef{bottom:366.793467pt;}
.y115{bottom:367.467733pt;}
.y166{bottom:369.438533pt;}
.yd4{bottom:370.787467pt;}
.y3a{bottom:371.333333pt;}
.y15{bottom:375.342800pt;}
.y130{bottom:376.100800pt;}
.y8a{bottom:376.677333pt;}
.yb6{bottom:376.784000pt;}
.y5e{bottom:377.333333pt;}
.y245{bottom:378.933333pt;}
.y1a0{bottom:379.786133pt;}
.y1c4{bottom:382.035600pt;}
.y14a{bottom:382.778800pt;}
.y185{bottom:385.908667pt;}
.yee{bottom:386.521467pt;}
.y114{bottom:387.867733pt;}
.y165{bottom:389.566533pt;}
.y39{bottom:390.533333pt;}
.y5d{bottom:394.406667pt;}
.y244{bottom:395.600000pt;}
.y89{bottom:396.149333pt;}
.yb5{bottom:396.256000pt;}
.yd3{bottom:397.678800pt;}
.y14{bottom:400.500933pt;}
.y1c3{bottom:401.507600pt;}
.y19f{bottom:402.946133pt;}
.y149{bottom:403.450800pt;}
.y1ed{bottom:405.002667pt;}
.yed{bottom:406.249467pt;}
.y184{bottom:406.308667pt;}
.y113{bottom:408.267733pt;}
.y21e{bottom:408.800000pt;}
.y164{bottom:409.694533pt;}
.y38{bottom:409.733333pt;}
.y243{bottom:412.266667pt;}
.y12f{bottom:413.167467pt;}
.yd2{bottom:413.678800pt;}
.y88{bottom:415.621333pt;}
.yb4{bottom:415.728000pt;}
.y13{bottom:418.100933pt;}
.y1ec{bottom:418.336000pt;}
.y19e{bottom:418.546133pt;}
.y1c2{bottom:420.974267pt;}
.y21d{bottom:422.400000pt;}
.y148{bottom:424.122800pt;}
.y183{bottom:426.708667pt;}
.y112{bottom:428.667733pt;}
.y37{bottom:428.933333pt;}
.y5c{bottom:429.386667pt;}
.yd1{bottom:429.678800pt;}
.y12e{bottom:429.967467pt;}
.y1eb{bottom:431.669333pt;}
.yec{bottom:433.539067pt;}
.y87{bottom:435.093333pt;}
.yb3{bottom:435.200000pt;}
.y12{bottom:435.700933pt;}
.y21c{bottom:436.000000pt;}
.y163{bottom:437.385867pt;}
.y19d{bottom:441.706133pt;}
.y147{bottom:444.794800pt;}
.y1ea{bottom:445.002667pt;}
.y242{bottom:445.600000pt;}
.yd0{bottom:445.678800pt;}
.y12d{bottom:446.767467pt;}
.y182{bottom:447.108667pt;}
.y36{bottom:448.133333pt;}
.y111{bottom:449.067733pt;}
.y5b{bottom:449.386667pt;}
.y21b{bottom:449.600000pt;}
.yeb{bottom:449.939067pt;}
.y11{bottom:453.300933pt;}
.y162{bottom:454.185867pt;}
.y86{bottom:454.565333pt;}
.yb2{bottom:454.666667pt;}
.y19c{bottom:457.306133pt;}
.y1e9{bottom:458.336000pt;}
.y1c1{bottom:459.827600pt;}
.y241{bottom:462.266667pt;}
.y21a{bottom:463.200000pt;}
.y35{bottom:467.333333pt;}
.y181{bottom:467.508667pt;}
.y5a{bottom:469.114667pt;}
.ycf{bottom:469.238800pt;}
.y110{bottom:469.467733pt;}
.y10{bottom:470.900933pt;}
.y161{bottom:470.985867pt;}
.y12c{bottom:471.142533pt;}
.y1e8{bottom:471.669333pt;}
.yea{bottom:473.899067pt;}
.y85{bottom:474.037333pt;}
.yb1{bottom:474.133333pt;}
.y219{bottom:476.800000pt;}
.y240{bottom:478.933333pt;}
.y1c0{bottom:479.299600pt;}
.y19b{bottom:480.518533pt;}
.y1e7{bottom:485.002667pt;}
.yce{bottom:485.238800pt;}
.y34{bottom:486.533333pt;}
.y180{bottom:487.908667pt;}
.yf{bottom:488.500933pt;}
.y59{bottom:488.842667pt;}
.y146{bottom:489.219200pt;}
.y10f{bottom:489.867733pt;}
.ye9{bottom:490.299067pt;}
.y218{bottom:490.400000pt;}
.y12b{bottom:491.270533pt;}
.y84{bottom:493.509333pt;}
.y160{bottom:495.345867pt;}
.y23f{bottom:495.600000pt;}
.y1e6{bottom:498.336000pt;}
.y1bf{bottom:498.771600pt;}
.y19a{bottom:499.446533pt;}
.ycd{bottom:501.238800pt;}
.y217{bottom:504.000000pt;}
.y33{bottom:505.733333pt;}
.y144{bottom:505.885867pt;}
.ye{bottom:506.100933pt;}
.ye8{bottom:506.699067pt;}
.y17f{bottom:508.308667pt;}
.y58{bottom:508.570667pt;}
.y12a{bottom:511.398533pt;}
.y1e5{bottom:511.669333pt;}
.y15f{bottom:512.145867pt;}
.y23e{bottom:512.266667pt;}
.y83{bottom:512.981333pt;}
.ycc{bottom:517.238800pt;}
.y216{bottom:517.600000pt;}
.y1be{bottom:518.243600pt;}
.y199{bottom:518.374533pt;}
.y145{bottom:522.552533pt;}
.yd{bottom:523.700933pt;}
.y32{bottom:524.933333pt;}
.y1e4{bottom:525.002667pt;}
.y10d{bottom:526.160133pt;}
.y57{bottom:528.298667pt;}
.y23d{bottom:528.933333pt;}
.y15e{bottom:528.945867pt;}
.ye7{bottom:530.659067pt;}
.y215{bottom:531.200000pt;}
.y129{bottom:531.526533pt;}
.y82{bottom:532.453333pt;}
.y1bd{bottom:537.715600pt;}
.y198{bottom:538.102533pt;}
.y1e3{bottom:538.336000pt;}
.ycb{bottom:540.829867pt;}
.yc{bottom:541.300933pt;}
.y10c{bottom:543.226800pt;}
.y31{bottom:544.133333pt;}
.y214{bottom:544.800000pt;}
.y23c{bottom:545.600000pt;}
.y143{bottom:546.539200pt;}
.y56{bottom:548.026667pt;}
.y17e{bottom:551.667733pt;}
.y1e2{bottom:551.669333pt;}
.y81{bottom:551.925333pt;}
.y15d{bottom:553.331733pt;}
.ye6{bottom:554.619067pt;}
.y1bc{bottom:557.187600pt;}
.y197{bottom:557.830533pt;}
.y213{bottom:558.400000pt;}
.y128{bottom:559.218000pt;}
.y17d{bottom:559.999733pt;}
.yca{bottom:560.157867pt;}
.y10b{bottom:560.293467pt;}
.y23b{bottom:562.266667pt;}
.y142{bottom:563.205867pt;}
.y30{bottom:563.333333pt;}
.y1e1{bottom:565.002667pt;}
.yb{bottom:566.460933pt;}
.y55{bottom:567.754667pt;}
.ye5{bottom:571.285733pt;}
.y80{bottom:571.397333pt;}
.y212{bottom:572.000000pt;}
.y15c{bottom:573.459733pt;}
.y127{bottom:576.018000pt;}
.y1bb{bottom:576.659600pt;}
.y10a{bottom:577.360133pt;}
.y196{bottom:577.558533pt;}
.y1e0{bottom:578.336000pt;}
.y23a{bottom:578.933333pt;}
.yc9{bottom:579.485867pt;}
.y2f{bottom:582.533333pt;}
.y211{bottom:585.600000pt;}
.y54{bottom:587.482667pt;}
.ye4{bottom:587.952400pt;}
.y7f{bottom:590.869333pt;}
.y1df{bottom:591.669333pt;}
.y17c{bottom:592.319733pt;}
.y126{bottom:592.818000pt;}
.y15b{bottom:593.587733pt;}
.y109{bottom:594.426800pt;}
.y239{bottom:595.600000pt;}
.y1ba{bottom:596.131600pt;}
.y195{bottom:597.286533pt;}
.y141{bottom:598.527067pt;}
.yc8{bottom:598.813867pt;}
.y210{bottom:599.200000pt;}
.y2e{bottom:601.733333pt;}
.ye3{bottom:604.619067pt;}
.y1de{bottom:605.002667pt;}
.y53{bottom:607.210667pt;}
.ya{bottom:608.181600pt;}
.y17b{bottom:608.986400pt;}
.y7e{bottom:610.341333pt;}
.y108{bottom:611.493467pt;}
.y238{bottom:612.266667pt;}
.y20f{bottom:612.800000pt;}
.y15a{bottom:613.715733pt;}
.y1b9{bottom:615.603600pt;}
.y194{bottom:617.014533pt;}
.y125{bottom:617.178000pt;}
.yc7{bottom:618.141867pt;}
.y1dd{bottom:618.336000pt;}
.y2d{bottom:620.933333pt;}
.y20e{bottom:626.400000pt;}
.y52{bottom:626.938667pt;}
.y107{bottom:628.560133pt;}
.ye2{bottom:628.844800pt;}
.y237{bottom:628.933333pt;}
.y9{bottom:629.114933pt;}
.y7d{bottom:629.813333pt;}
.y1dc{bottom:631.669333pt;}
.y159{bottom:633.843733pt;}
.y124{bottom:633.977067pt;}
.y1b8{bottom:635.075600pt;}
.y193{bottom:636.742533pt;}
.y140{bottom:636.793733pt;}
.yff{bottom:637.092000pt;}
.y10e{bottom:637.093467pt;}
.yc6{bottom:637.469867pt;}
.y20d{bottom:640.000000pt;}
.y2c{bottom:640.133333pt;}
.y17a{bottom:644.307600pt;}
.y1db{bottom:645.002667pt;}
.y236{bottom:645.600000pt;}
.y106{bottom:645.626800pt;}
.y51{bottom:646.693333pt;}
.ye1{bottom:648.844800pt;}
.y7c{bottom:649.285333pt;}
.y123{bottom:650.777067pt;}
.y20c{bottom:653.600000pt;}
.y158{bottom:653.971733pt;}
.y1b7{bottom:654.547600pt;}
.y13f{bottom:654.660400pt;}
.y192{bottom:656.470533pt;}
.yc5{bottom:656.797867pt;}
.y1da{bottom:658.336000pt;}
.y2b{bottom:659.333333pt;}
.y235{bottom:662.266667pt;}
.y105{bottom:662.693467pt;}
.y50{bottom:666.421333pt;}
.y20b{bottom:667.200000pt;}
.y7b{bottom:668.757333pt;}
.y1d9{bottom:671.669333pt;}
.y1b6{bottom:674.019600pt;}
.y157{bottom:674.104933pt;}
.y122{bottom:675.137067pt;}
.yc4{bottom:676.131200pt;}
.y191{bottom:676.198533pt;}
.y2a{bottom:678.533333pt;}
.y234{bottom:678.933333pt;}
.y104{bottom:679.760133pt;}
.y13e{bottom:680.075467pt;}
.y20a{bottom:680.800000pt;}
.y179{bottom:681.774267pt;}
.y1d8{bottom:685.002667pt;}
.y4f{bottom:686.149333pt;}
.y7a{bottom:688.229333pt;}
.y8{bottom:689.733333pt;}
.y121{bottom:691.537067pt;}
.y1b5{bottom:693.491600pt;}
.y209{bottom:694.400000pt;}
.y233{bottom:695.600000pt;}
.y103{bottom:696.826800pt;}
.y29{bottom:697.733333pt;}
.y178{bottom:697.907600pt;}
.y1d7{bottom:698.336000pt;}
.y13d{bottom:699.947467pt;}
.y4e{bottom:705.877333pt;}
.y79{bottom:707.701333pt;}
.y208{bottom:708.000000pt;}
.y1d6{bottom:711.669333pt;}
.y232{bottom:712.266667pt;}
.y1b4{bottom:712.963600pt;}
.y102{bottom:713.893467pt;}
.y28{bottom:716.933333pt;}
.y7{bottom:717.333333pt;}
.y13c{bottom:719.819467pt;}
.y177{bottom:721.600000pt;}
.y1d5{bottom:725.002667pt;}
.y4d{bottom:725.605333pt;}
.y78{bottom:727.173333pt;}
.y231{bottom:728.933333pt;}
.y101{bottom:730.960133pt;}
.y1b3{bottom:732.435600pt;}
.y207{bottom:735.200000pt;}
.y27{bottom:736.133333pt;}
.y176{bottom:742.000000pt;}
.y1d4{bottom:744.000000pt;}
.y6{bottom:744.933333pt;}
.y4c{bottom:745.354667pt;}
.y230{bottom:745.600000pt;}
.y77{bottom:746.645333pt;}
.y100{bottom:748.025333pt;}
.y206{bottom:748.800000pt;}
.y1b2{bottom:751.907600pt;}
.y26{bottom:755.333333pt;}
.y22f{bottom:762.000000pt;}
.y175{bottom:762.400000pt;}
.y4b{bottom:765.082667pt;}
.y76{bottom:766.117333pt;}
.yfe{bottom:772.012000pt;}
.y5{bottom:772.533333pt;}
.y205{bottom:776.000000pt;}
.y22e{bottom:778.400000pt;}
.y1b1{bottom:778.933333pt;}
.y174{bottom:782.800000pt;}
.y1d3{bottom:784.533333pt;}
.y4a{bottom:784.810667pt;}
.y75{bottom:785.589333pt;}
.yfd{bottom:788.678667pt;}
.y204{bottom:789.600000pt;}
.y25{bottom:794.800000pt;}
.y1b0{bottom:795.200000pt;}
.y173{bottom:803.200000pt;}
.y49{bottom:804.538667pt;}
.y74{bottom:805.061333pt;}
.y24{bottom:811.200000pt;}
.y1af{bottom:811.466667pt;}
.y203{bottom:816.800000pt;}
.y4{bottom:821.733333pt;}
.y172{bottom:823.600000pt;}
.ya3{bottom:823.999867pt;}
.ya4{bottom:824.000000pt;}
.y48{bottom:824.266667pt;}
.y73{bottom:824.533333pt;}
.y23{bottom:827.600000pt;}
.y1ae{bottom:827.733333pt;}
.y202{bottom:830.400000pt;}
.h7{height:21.269167pt;}
.ha{height:26.945443pt;}
.h2{height:33.769531pt;}
.h14{height:34.730667pt;}
.h6{height:35.546875pt;}
.h8{height:36.229167pt;}
.hd{height:40.757812pt;}
.hc{height:42.656250pt;}
.hb{height:43.413333pt;}
.h11{height:44.370469pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.he{height:45.292325pt;}
.h13{height:45.312592pt;}
.hf{height:49.303721pt;}
.h10{height:49.305854pt;}
.h5{height:54.343750pt;}
.h9{height:59.160625pt;}
.h12{height:78.625125pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xf{left:65.624667pt;}
.xa{left:73.232000pt;}
.x3{left:86.456667pt;}
.x7{left:99.997333pt;}
.xb{left:105.624667pt;}
.x8{left:113.228400pt;}
.x2{left:120.000000pt;}
.x9{left:126.456667pt;}
.x17{left:160.495067pt;}
.x13{left:167.664667pt;}
.x10{left:220.318000pt;}
.xc{left:242.651333pt;}
.x16{left:254.744667pt;}
.xe{left:255.880667pt;}
.x11{left:258.344667pt;}
.x14{left:284.291333pt;}
.x5{left:334.330667pt;}
.xd{left:423.611333pt;}
.x12{left:425.651333pt;}
.x15{left:429.011333pt;}
.x6{left:469.344000pt;}
.x4{left:556.250000pt;}
}




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