
    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_3cedc5c909f0dec677084388.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_a6e8ebd65dfdd967beb27ed6.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_9a96c889a413cfa8da21ac5b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_236686b0c8acf488f7156a73.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f2481a6141606a0ee55c3e70.woff')format("woff");}.ff5{font-family:ff5;line-height:1.045000;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_8e1e547b2ebc2005eec2df98.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_61e501b6a140ab56ecd33ada.woff')format("woff");}.ff7{font-family:ff7;line-height:0.947266;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_89119cec2360bc77918cbdc1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_765e04b2ae4328c27762a5b8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.070312;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_217f2439e997c1cea293362c.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_2360960e4ef31047f6b826c2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899902;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_29521ed4f316ed3b66c85d20.woff')format("woff");}.ffc{font-family:ffc;line-height:1.033000;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);}
.v4{vertical-align:-23.760000px;}
.v5{vertical-align:-19.800000px;}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.800600px;}
.v1{vertical-align:23.688000px;}
.ls76{letter-spacing:-7.200000px;}
.ls42{letter-spacing:-6.912000px;}
.ls22{letter-spacing:-5.832000px;}
.ls37{letter-spacing:-5.400000px;}
.ls82{letter-spacing:-4.512000px;}
.ls86{letter-spacing:-4.500000px;}
.ls24{letter-spacing:-3.840000px;}
.ls25{letter-spacing:-3.600000px;}
.ls7c{letter-spacing:-3.096000px;}
.ls69{letter-spacing:-2.736000px;}
.ls73{letter-spacing:-2.520000px;}
.ls83{letter-spacing:-2.352000px;}
.ls7d{letter-spacing:-2.160000px;}
.ls81{letter-spacing:-1.872000px;}
.ls53{letter-spacing:-1.008000px;}
.ls3b{letter-spacing:-0.936000px;}
.ls47{letter-spacing:-0.864000px;}
.ls46{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.720000px;}
.ls4b{letter-spacing:-0.648000px;}
.ls48{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.504000px;}
.ls80{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls6c{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.ls7f{letter-spacing:0.192000px;}
.ls29{letter-spacing:0.210000px;}
.ls15{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.ls6e{letter-spacing:0.300000px;}
.ls20{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.360000px;}
.ls38{letter-spacing:0.432000px;}
.ls2a{letter-spacing:0.433800px;}
.ls1b{letter-spacing:0.444000px;}
.ls1d{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.648000px;}
.ls2b{letter-spacing:0.720000px;}
.ls33{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.936000px;}
.ls6b{letter-spacing:1.008000px;}
.ls5d{letter-spacing:1.080000px;}
.ls41{letter-spacing:1.152000px;}
.ls5{letter-spacing:1.224000px;}
.ls51{letter-spacing:1.368000px;}
.ls72{letter-spacing:1.440000px;}
.ls3a{letter-spacing:1.656000px;}
.ls79{letter-spacing:1.728000px;}
.ls5e{letter-spacing:2.448000px;}
.ls26{letter-spacing:2.520000px;}
.ls63{letter-spacing:2.592000px;}
.ls61{letter-spacing:2.664000px;}
.ls64{letter-spacing:2.736000px;}
.ls62{letter-spacing:2.808000px;}
.ls40{letter-spacing:2.952000px;}
.ls6a{letter-spacing:3.024000px;}
.ls3f{letter-spacing:3.096000px;}
.ls17{letter-spacing:3.180000px;}
.ls5c{letter-spacing:3.360000px;}
.ls5b{letter-spacing:3.420000px;}
.ls74{letter-spacing:3.480000px;}
.ls75{letter-spacing:3.540000px;}
.ls52{letter-spacing:3.564000px;}
.ls11{letter-spacing:3.600000px;}
.ls4c{letter-spacing:3.660000px;}
.ls5f{letter-spacing:3.672000px;}
.ls4e{letter-spacing:3.720000px;}
.ls60{letter-spacing:3.816000px;}
.ls18{letter-spacing:3.960000px;}
.ls6f{letter-spacing:4.020000px;}
.ls70{letter-spacing:4.080000px;}
.ls71{letter-spacing:4.140000px;}
.ls3e{letter-spacing:4.260000px;}
.ls7a{letter-spacing:4.392000px;}
.ls3{letter-spacing:4.560000px;}
.ls7b{letter-spacing:4.680000px;}
.ls49{letter-spacing:4.698000px;}
.ls7e{letter-spacing:4.752000px;}
.ls77{letter-spacing:4.968000px;}
.ls78{letter-spacing:5.040000px;}
.ls85{letter-spacing:5.088000px;}
.ls67{letter-spacing:5.112000px;}
.ls68{letter-spacing:5.184000px;}
.ls66{letter-spacing:5.256000px;}
.ls32{letter-spacing:5.400000px;}
.ls50{letter-spacing:5.454000px;}
.ls2d{letter-spacing:5.904000px;}
.ls58{letter-spacing:5.976000px;}
.ls4a{letter-spacing:5.994000px;}
.ls8{letter-spacing:6.048000px;}
.ls10{letter-spacing:6.060000px;}
.ls1f{letter-spacing:6.120000px;}
.ls84{letter-spacing:6.144000px;}
.ls28{letter-spacing:6.192000px;}
.ls2e{letter-spacing:6.552000px;}
.ls5a{letter-spacing:7.020000px;}
.ls27{letter-spacing:7.056000px;}
.ls59{letter-spacing:7.074000px;}
.ls44{letter-spacing:7.560000px;}
.ls43{letter-spacing:7.614000px;}
.ls35{letter-spacing:7.920000px;}
.ls4d{letter-spacing:8.160000px;}
.lsd{letter-spacing:8.400000px;}
.ls0{letter-spacing:8.460000px;}
.ls2f{letter-spacing:8.784000px;}
.ls65{letter-spacing:8.856000px;}
.ls34{letter-spacing:8.928000px;}
.ls30{letter-spacing:9.000000px;}
.ls36{letter-spacing:9.072000px;}
.ls31{letter-spacing:9.144000px;}
.ls57{letter-spacing:9.216000px;}
.ls1e{letter-spacing:9.360000px;}
.ls2c{letter-spacing:9.504000px;}
.ls6d{letter-spacing:9.576000px;}
.ls2{letter-spacing:9.780000px;}
.ls1{letter-spacing:10.740000px;}
.ls45{letter-spacing:11.394000px;}
.ls4f{letter-spacing:11.820000px;}
.ls56{letter-spacing:11.880000px;}
.ls55{letter-spacing:11.940000px;}
.ls54{letter-spacing:12.000000px;}
.lse{letter-spacing:12.660000px;}
.ls3d{letter-spacing:15.240000px;}
.ls3c{letter-spacing:17.280000px;}
.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;}
}
.ws64{word-spacing:-49.320000px;}
.ws31{word-spacing:-49.248000px;}
.ws5f{word-spacing:-49.176000px;}
.ws6f{word-spacing:-49.104000px;}
.ws27{word-spacing:-49.032000px;}
.ws59{word-spacing:-48.960000px;}
.ws5{word-spacing:-48.888000px;}
.ws3d{word-spacing:-48.816000px;}
.ws3c{word-spacing:-48.744000px;}
.ws28{word-spacing:-48.672000px;}
.ws38{word-spacing:-48.600000px;}
.ws2{word-spacing:-48.528000px;}
.ws3a{word-spacing:-48.456000px;}
.ws5e{word-spacing:-48.384000px;}
.ws37{word-spacing:-48.312000px;}
.ws4{word-spacing:-48.240000px;}
.ws3b{word-spacing:-48.168000px;}
.ws66{word-spacing:-48.096000px;}
.ws6d{word-spacing:-48.024000px;}
.ws67{word-spacing:-47.952000px;}
.ws54{word-spacing:-47.808000px;}
.ws57{word-spacing:-47.592000px;}
.ws65{word-spacing:-40.740000px;}
.ws11{word-spacing:-40.440000px;}
.ws5d{word-spacing:-40.140000px;}
.ws33{word-spacing:-32.352000px;}
.ws73{word-spacing:-31.872000px;}
.ws74{word-spacing:-27.840000px;}
.ws3{word-spacing:-25.320000px;}
.ws14{word-spacing:-25.260000px;}
.ws44{word-spacing:-23.160000px;}
.ws12{word-spacing:-22.920000px;}
.ws49{word-spacing:-22.788000px;}
.ws4a{word-spacing:-22.734000px;}
.ws5b{word-spacing:-22.248000px;}
.ws5a{word-spacing:-22.194000px;}
.ws4c{word-spacing:-21.168000px;}
.ws24{word-spacing:-20.880000px;}
.ws17{word-spacing:-20.820000px;}
.ws32{word-spacing:-20.592000px;}
.ws15{word-spacing:-20.460000px;}
.ws26{word-spacing:-20.304000px;}
.ws1{word-spacing:-20.280000px;}
.ws22{word-spacing:-20.232000px;}
.ws16{word-spacing:-20.040000px;}
.ws39{word-spacing:-19.872000px;}
.ws56{word-spacing:-18.738000px;}
.ws5c{word-spacing:-18.198000px;}
.ws13{word-spacing:-16.860000px;}
.ws4b{word-spacing:-15.174000px;}
.ws36{word-spacing:-14.832000px;}
.ws25{word-spacing:-14.400000px;}
.ws23{word-spacing:-14.162400px;}
.ws29{word-spacing:-13.488000px;}
.ws78{word-spacing:-12.360000px;}
.ws72{word-spacing:-12.336000px;}
.ws48{word-spacing:-11.802000px;}
.ws6c{word-spacing:-11.394000px;}
.ws8{word-spacing:-10.740000px;}
.ws2b{word-spacing:-9.888000px;}
.ws2a{word-spacing:-9.648000px;}
.ws0{word-spacing:-8.520000px;}
.ws19{word-spacing:-8.460000px;}
.ws43{word-spacing:-8.400000px;}
.ws55{word-spacing:-8.160000px;}
.ws51{word-spacing:-7.614000px;}
.ws50{word-spacing:-7.560000px;}
.wsb{word-spacing:-1.224000px;}
.ws61{word-spacing:-1.008000px;}
.wsa{word-spacing:-0.936000px;}
.ws1b{word-spacing:-0.864000px;}
.ws34{word-spacing:-0.792000px;}
.ws2d{word-spacing:-0.720000px;}
.ws1c{word-spacing:-0.648000px;}
.ws2e{word-spacing:-0.576000px;}
.ws2f{word-spacing:-0.504000px;}
.ws3e{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.360000px;}
.ws9{word-spacing:-0.336000px;}
.ws6b{word-spacing:-0.300000px;}
.ws1d{word-spacing:-0.288000px;}
.ws1e{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.144000px;}
.ws18{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
.ws3f{word-spacing:0.072000px;}
.ws2c{word-spacing:0.144000px;}
.ws1a{word-spacing:0.216000px;}
.ws30{word-spacing:0.240000px;}
.wse{word-spacing:0.288000px;}
.ws62{word-spacing:0.300000px;}
.ws21{word-spacing:0.360000px;}
.wsd{word-spacing:0.432000px;}
.ws75{word-spacing:0.480000px;}
.ws1f{word-spacing:0.504000px;}
.ws4f{word-spacing:0.576000px;}
.ws53{word-spacing:0.648000px;}
.ws20{word-spacing:0.720000px;}
.ws4d{word-spacing:0.792000px;}
.ws4e{word-spacing:0.864000px;}
.ws42{word-spacing:0.936000px;}
.ws58{word-spacing:1.008000px;}
.ws76{word-spacing:1.872000px;}
.ws69{word-spacing:2.160000px;}
.ws6a{word-spacing:2.340000px;}
.ws77{word-spacing:2.352000px;}
.ws68{word-spacing:2.520000px;}
.ws60{word-spacing:2.736000px;}
.ws70{word-spacing:3.096000px;}
.ws41{word-spacing:3.408000px;}
.ws63{word-spacing:3.456000px;}
.ws46{word-spacing:4.200000px;}
.ws45{word-spacing:4.260000px;}
.ws52{word-spacing:4.320000px;}
.ws7a{word-spacing:5.088000px;}
.ws79{word-spacing:6.144000px;}
.ws35{word-spacing:6.192000px;}
.ws47{word-spacing:6.912000px;}
.ws6e{word-spacing:7.200000px;}
.ws40{word-spacing:9.864000px;}
.ws71{word-spacing:11.016000px;}
.ws7{word-spacing:12.540000px;}
.ws10{word-spacing:146.100000px;}
._0{margin-left:-948.900000px;}
._16{margin-left:-15.036000px;}
._17{margin-left:-11.292000px;}
._8{margin-left:-9.720000px;}
._11{margin-left:-8.028000px;}
._d{margin-left:-6.996000px;}
._1{margin-left:-5.940000px;}
._15{margin-left:-4.656000px;}
._7{margin-left:-3.060000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._5{width:3.120000px;}
._4{width:4.200000px;}
._a{width:5.220000px;}
._e{width:6.444000px;}
._6{width:8.400000px;}
._9{width:10.140000px;}
._b{width:11.244000px;}
._c{width:12.264000px;}
._12{width:13.620000px;}
._14{width:15.318300px;}
._13{width:31.646100px;}
._f{width:90.000000px;}
._10{width:156.120000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:76.757850px;}
.y1{bottom:93.257850px;}
.y69{bottom:138.257850px;}
.y8c{bottom:138.258150px;}
.yd0{bottom:138.468150px;}
.y45{bottom:138.546150px;}
.y1f3{bottom:138.788100px;}
.y134{bottom:139.646250px;}
.y1bb{bottom:140.359800px;}
.y214{bottom:140.380050px;}
.y272{bottom:140.501850px;}
.y177{bottom:141.418350px;}
.y198{bottom:141.721350px;}
.y1cf{bottom:141.768000px;}
.yb1{bottom:142.465200px;}
.y24e{bottom:142.465350px;}
.y159{bottom:142.820100px;}
.y231{bottom:142.941900px;}
.yf4{bottom:143.749950px;}
.y20{bottom:144.340500px;}
.y68{bottom:153.257850px;}
.y8b{bottom:153.258150px;}
.y271{bottom:155.501850px;}
.y1f2{bottom:157.238100px;}
.y213{bottom:158.680050px;}
.ycf{bottom:160.374150px;}
.y44{bottom:160.452150px;}
.yb0{bottom:160.757700px;}
.y158{bottom:161.120100px;}
.y133{bottom:161.696250px;}
.y1ba{bottom:163.165800px;}
.y176{bottom:163.324350px;}
.y1ce{bottom:163.818000px;}
.y230{bottom:165.441900px;}
.y295{bottom:165.629850px;}
.yf3{bottom:166.249950px;}
.y197{bottom:166.546350px;}
.y1f{bottom:166.840500px;}
.y270{bottom:170.501850px;}
.y67{bottom:172.465350px;}
.y8a{bottom:172.465650px;}
.y1f1{bottom:175.688100px;}
.y212{bottom:176.980050px;}
.y157{bottom:178.970100px;}
.yaf{bottom:179.965200px;}
.yce{bottom:182.280150px;}
.y43{bottom:182.358150px;}
.y24d{bottom:183.257850px;}
.y132{bottom:184.052250px;}
.y294{bottom:184.379850px;}
.y175{bottom:185.230350px;}
.y26f{bottom:185.501850px;}
.y1cd{bottom:185.868000px;}
.y1b9{bottom:185.971800px;}
.y22f{bottom:187.491900px;}
.yf2{bottom:188.749950px;}
.y1e{bottom:189.340500px;}
.y89{bottom:190.758150px;}
.y196{bottom:193.554300px;}
.y66{bottom:194.965350px;}
.y211{bottom:195.280050px;}
.y156{bottom:196.820100px;}
.y26e{bottom:200.501850px;}
.y1f0{bottom:200.513100px;}
.y293{bottom:203.129850px;}
.ycd{bottom:204.186150px;}
.y42{bottom:204.258150px;}
.y24c{bottom:205.757850px;}
.y131{bottom:206.408250px;}
.y174{bottom:207.136350px;}
.y1cc{bottom:207.918000px;}
.y1b8{bottom:208.777800px;}
.y88{bottom:209.965650px;}
.yf1{bottom:211.249950px;}
.y1d{bottom:211.840500px;}
.y26d{bottom:215.501850px;}
.y195{bottom:215.748300px;}
.y110{bottom:216.017850px;}
.y65{bottom:217.465350px;}
.y22e{bottom:218.045850px;}
.y1ef{bottom:218.963100px;}
.yae{bottom:221.363700px;}
.y292{bottom:221.879850px;}
.y210{bottom:222.084000px;}
.y155{bottom:223.174050px;}
.ycc{bottom:226.092150px;}
.y41{bottom:226.158150px;}
.y24b{bottom:228.257850px;}
.y130{bottom:228.764250px;}
.y173{bottom:229.042350px;}
.y1cb{bottom:229.968000px;}
.y26c{bottom:230.501850px;}
.y1b7{bottom:231.583800px;}
.yf0{bottom:233.749950px;}
.y1c{bottom:234.340500px;}
.y22d{bottom:236.345850px;}
.y1ee{bottom:237.413100px;}
.y194{bottom:237.942300px;}
.y10f{bottom:238.211850px;}
.yad{bottom:243.107700px;}
.y20f{bottom:244.134000px;}
.y154{bottom:244.774050px;}
.y26b{bottom:245.501850px;}
.ycb{bottom:247.998150px;}
.y24a{bottom:250.757850px;}
.y12f{bottom:251.120250px;}
.y291{bottom:251.879850px;}
.y1ca{bottom:252.018000px;}
.y1b6{bottom:254.389800px;}
.yef{bottom:256.249950px;}
.y1b{bottom:256.840500px;}
.y172{bottom:259.446300px;}
.y64{bottom:260.039850px;}
.y193{bottom:260.136300px;}
.y10e{bottom:260.405850px;}
.y26a{bottom:260.501850px;}
.y1ed{bottom:262.238100px;}
.y22c{bottom:263.149800px;}
.yac{bottom:265.157700px;}
.y20e{bottom:266.184000px;}
.y153{bottom:266.374050px;}
.y87{bottom:268.758150px;}
.y40{bottom:269.826150px;}
.yca{bottom:269.904150px;}
.y290{bottom:270.629850px;}
.y249{bottom:273.257850px;}
.y12e{bottom:273.476250px;}
.y1c9{bottom:274.068000px;}
.y269{bottom:275.501850px;}
.y1b5{bottom:277.195800px;}
.yee{bottom:278.749950px;}
.y1a{bottom:279.340500px;}
.y192{bottom:282.330300px;}
.y10d{bottom:282.599850px;}
.y63{bottom:282.683850px;}
.y171{bottom:286.076250px;}
.yab{bottom:287.207700px;}
.y152{bottom:287.974050px;}
.y1ec{bottom:289.198050px;}
.y28f{bottom:289.379850px;}
.y268{bottom:290.501850px;}
.y3f{bottom:291.732150px;}
.yc9{bottom:291.810150px;}
.y86{bottom:292.158150px;}
.y22b{bottom:293.703750px;}
.y248{bottom:295.757850px;}
.y1c8{bottom:296.118000px;}
.y20d{bottom:296.737950px;}
.y1b4{bottom:300.001800px;}
.yed{bottom:301.249950px;}
.y19{bottom:301.840500px;}
.y12d{bottom:304.330200px;}
.y191{bottom:304.524300px;}
.y10c{bottom:304.793850px;}
.y62{bottom:304.877850px;}
.y267{bottom:305.501850px;}
.y170{bottom:307.982250px;}
.y28e{bottom:308.129850px;}
.yaa{bottom:309.257700px;}
.y151{bottom:309.574050px;}
.y1eb{bottom:311.392050px;}
.y22a{bottom:312.003750px;}
.y3e{bottom:313.638150px;}
.yc8{bottom:313.716150px;}
.y20c{bottom:315.037950px;}
.y85{bottom:315.558150px;}
.y247{bottom:318.257850px;}
.y266{bottom:320.501850px;}
.y1b3{bottom:322.807800px;}
.yec{bottom:323.749950px;}
.y18{bottom:324.340500px;}
.y1c7{bottom:326.671950px;}
.y190{bottom:326.718300px;}
.y28d{bottom:326.879850px;}
.y10b{bottom:326.987850px;}
.y61{bottom:327.071850px;}
.y16f{bottom:329.888250px;}
.y229{bottom:330.303750px;}
.y150{bottom:331.174050px;}
.ya9{bottom:331.307700px;}
.y12c{bottom:331.398150px;}
.y20b{bottom:333.337950px;}
.y265{bottom:335.501850px;}
.y3d{bottom:335.544150px;}
.yc7{bottom:335.622150px;}
.y84{bottom:338.958150px;}
.y246{bottom:340.757850px;}
.y1ea{bottom:342.096000px;}
.y1c6{bottom:344.971950px;}
.y1b2{bottom:345.613800px;}
.yeb{bottom:346.249950px;}
.y17{bottom:346.840500px;}
.y228{bottom:348.603750px;}
.y18f{bottom:348.912300px;}
.y10a{bottom:349.181850px;}
.y60{bottom:349.265850px;}
.y264{bottom:350.501850px;}
.y16e{bottom:351.794250px;}
.y14f{bottom:352.774050px;}
.ya8{bottom:353.357700px;}
.y12b{bottom:353.754150px;}
.y28c{bottom:356.879850px;}
.y3c{bottom:357.450150px;}
.yc6{bottom:357.528150px;}
.y20a{bottom:360.141900px;}
.y1e9{bottom:360.546000px;}
.y83{bottom:362.358150px;}
.y245{bottom:363.257850px;}
.y1c5{bottom:363.271950px;}
.y263{bottom:365.501850px;}
.y1b1{bottom:368.419800px;}
.yea{bottom:368.749950px;}
.y16{bottom:369.340500px;}
.y18e{bottom:371.106300px;}
.y109{bottom:371.375850px;}
.y5f{bottom:371.459850px;}
.y16d{bottom:373.700250px;}
.y14e{bottom:374.374050px;}
.ya7{bottom:375.407700px;}
.y227{bottom:375.407850px;}
.y12a{bottom:376.110150px;}
.y1e8{bottom:378.996000px;}
.y3b{bottom:379.356150px;}
.yc5{bottom:379.434150px;}
.y262{bottom:380.501850px;}
.y209{bottom:382.191900px;}
.y244{bottom:385.757850px;}
.y82{bottom:385.758150px;}
.y1c4{bottom:390.075900px;}
.y1b0{bottom:391.225800px;}
.ye9{bottom:391.249950px;}
.y15{bottom:391.840500px;}
.y18d{bottom:393.300300px;}
.y108{bottom:393.569850px;}
.y5e{bottom:393.653850px;}
.y261{bottom:395.501850px;}
.y14d{bottom:395.974050px;}
.ya6{bottom:397.457700px;}
.y226{bottom:397.457850px;}
.y28b{bottom:398.129850px;}
.y129{bottom:398.466150px;}
.y3a{bottom:401.262150px;}
.yc4{bottom:401.340150px;}
.y16c{bottom:404.104200px;}
.y1e7{bottom:405.967950px;}
.y243{bottom:408.257850px;}
.y81{bottom:409.158150px;}
.y260{bottom:410.501850px;}
.y1c3{bottom:412.125900px;}
.y208{bottom:412.745850px;}
.ye8{bottom:413.749950px;}
.y1af{bottom:414.031800px;}
.y14{bottom:414.340500px;}
.y107{bottom:415.763850px;}
.y5d{bottom:415.847850px;}
.y28a{bottom:416.879850px;}
.y14c{bottom:417.574050px;}
.ya5{bottom:419.507700px;}
.y225{bottom:419.507850px;}
.y128{bottom:420.822150px;}
.y16b{bottom:422.254200px;}
.y39{bottom:423.168150px;}
.yc3{bottom:423.246150px;}
.y18c{bottom:424.004250px;}
.y25f{bottom:425.501850px;}
.y1e6{bottom:428.161950px;}
.y207{bottom:431.045850px;}
.y80{bottom:432.558150px;}
.y1c2{bottom:434.175900px;}
.y289{bottom:435.629850px;}
.ye7{bottom:436.249950px;}
.y1ae{bottom:436.837800px;}
.y13{bottom:436.840500px;}
.y106{bottom:437.957850px;}
.y5c{bottom:438.041850px;}
.y14b{bottom:439.174050px;}
.y16a{bottom:440.404200px;}
.y25e{bottom:440.501850px;}
.ya4{bottom:441.557700px;}
.y224{bottom:441.557850px;}
.y18b{bottom:442.454250px;}
.y127{bottom:443.178150px;}
.y38{bottom:445.074150px;}
.yc2{bottom:445.152150px;}
.y1e5{bottom:450.355950px;}
.y242{bottom:453.257850px;}
.y288{bottom:454.379850px;}
.y25d{bottom:455.501850px;}
.y7f{bottom:455.958150px;}
.y1c1{bottom:456.225900px;}
.y206{bottom:457.849800px;}
.ye6{bottom:458.749950px;}
.y12{bottom:459.340500px;}
.y1ad{bottom:459.643800px;}
.y105{bottom:460.163850px;}
.y5b{bottom:460.235850px;}
.y14a{bottom:460.774050px;}
.ya3{bottom:463.607700px;}
.y223{bottom:463.607850px;}
.y126{bottom:465.534150px;}
.y169{bottom:466.974150px;}
.y37{bottom:466.980150px;}
.yc1{bottom:467.058150px;}
.y18a{bottom:469.426200px;}
.y25c{bottom:470.501850px;}
.y1e4{bottom:472.549950px;}
.y287{bottom:473.129850px;}
.y241{bottom:475.757850px;}
.y1c0{bottom:478.275900px;}
.y7e{bottom:479.358150px;}
.y205{bottom:479.899800px;}
.ye5{bottom:481.249950px;}
.y11{bottom:481.840500px;}
.y104{bottom:482.357850px;}
.y149{bottom:482.374050px;}
.y5a{bottom:482.429850px;}
.y1ac{bottom:482.449800px;}
.y25b{bottom:485.501850px;}
.ya2{bottom:485.657700px;}
.y222{bottom:485.657850px;}
.y168{bottom:488.880150px;}
.y36{bottom:488.886150px;}
.yc0{bottom:488.958150px;}
.y189{bottom:491.620200px;}
.y286{bottom:491.879850px;}
.y125{bottom:496.387950px;}
.y240{bottom:498.257850px;}
.y1bf{bottom:500.325900px;}
.y25a{bottom:500.501850px;}
.y204{bottom:501.949800px;}
.y7d{bottom:502.758150px;}
.y1e3{bottom:503.253900px;}
.ye4{bottom:503.749950px;}
.y148{bottom:503.974050px;}
.y10{bottom:504.340500px;}
.y59{bottom:504.623850px;}
.ya1{bottom:507.707700px;}
.y221{bottom:507.707850px;}
.y285{bottom:510.629850px;}
.y167{bottom:510.786150px;}
.y35{bottom:510.792150px;}
.ybf{bottom:510.858150px;}
.y1ab{bottom:513.753750px;}
.y188{bottom:513.814200px;}
.y124{bottom:514.987950px;}
.y259{bottom:515.501850px;}
.y23f{bottom:520.757850px;}
.y1e2{bottom:521.703900px;}
.y1be{bottom:522.375900px;}
.y203{bottom:523.999800px;}
.y147{bottom:525.574050px;}
.y7c{bottom:526.158150px;}
.ye3{bottom:526.249950px;}
.y58{bottom:526.817850px;}
.yf{bottom:526.840500px;}
.y103{bottom:526.853850px;}
.y284{bottom:529.379850px;}
.ya0{bottom:529.757700px;}
.y220{bottom:529.757850px;}
.y258{bottom:530.501850px;}
.y166{bottom:532.692150px;}
.y34{bottom:532.698150px;}
.y1aa{bottom:532.803750px;}
.y187{bottom:536.008200px;}
.y123{bottom:542.068050px;}
.y23e{bottom:543.257850px;}
.y1bd{bottom:544.425900px;}
.y257{bottom:545.501850px;}
.y202{bottom:546.049800px;}
.y283{bottom:548.129850px;}
.ye2{bottom:548.749950px;}
.y1e1{bottom:548.759850px;}
.y57{bottom:549.011850px;}
.y102{bottom:549.047850px;}
.ye{bottom:549.340500px;}
.y7b{bottom:549.558150px;}
.y9f{bottom:551.807700px;}
.y21f{bottom:551.807850px;}
.ybe{bottom:554.549850px;}
.y165{bottom:554.598150px;}
.y33{bottom:554.604150px;}
.y146{bottom:555.684000px;}
.y1a9{bottom:560.321700px;}
.y256{bottom:560.501850px;}
.y122{bottom:564.424050px;}
.y23d{bottom:565.757850px;}
.y186{bottom:566.718000px;}
.y282{bottom:566.879850px;}
.y201{bottom:568.099800px;}
.y1e0{bottom:570.953850px;}
.y56{bottom:571.205850px;}
.y101{bottom:571.241850px;}
.ye1{bottom:571.249950px;}
.yd{bottom:571.840500px;}
.y7a{bottom:572.958150px;}
.y9e{bottom:573.857700px;}
.y21e{bottom:573.857850px;}
.y255{bottom:575.501850px;}
.ybd{bottom:576.455850px;}
.y164{bottom:576.504150px;}
.y32{bottom:576.510150px;}
.y145{bottom:579.909000px;}
.y1a8{bottom:583.127700px;}
.y185{bottom:585.018000px;}
.y281{bottom:585.629850px;}
.y121{bottom:586.780050px;}
.y23c{bottom:588.257850px;}
.y200{bottom:590.149800px;}
.y254{bottom:590.501850px;}
.y1df{bottom:593.147850px;}
.y55{bottom:593.399850px;}
.y100{bottom:593.435850px;}
.ye0{bottom:593.749950px;}
.yc{bottom:594.340500px;}
.y9d{bottom:595.907700px;}
.y21d{bottom:595.907850px;}
.y79{bottom:596.358150px;}
.ybc{bottom:598.361850px;}
.y163{bottom:598.410150px;}
.y31{bottom:598.416150px;}
.y184{bottom:603.318000px;}
.y144{bottom:604.134000px;}
.y280{bottom:604.379850px;}
.y1a7{bottom:605.933700px;}
.y120{bottom:609.136050px;}
.y23b{bottom:610.757850px;}
.y253{bottom:611.885850px;}
.y1ff{bottom:612.199800px;}
.y1de{bottom:615.341850px;}
.y54{bottom:615.593850px;}
.yff{bottom:615.629850px;}
.ydf{bottom:616.249950px;}
.yb{bottom:616.840500px;}
.y9c{bottom:617.957700px;}
.y21c{bottom:617.957850px;}
.y78{bottom:619.758150px;}
.ybb{bottom:620.267850px;}
.y162{bottom:620.316150px;}
.y30{bottom:620.322150px;}
.y27f{bottom:623.129850px;}
.y183{bottom:627.993000px;}
.y1a6{bottom:628.739700px;}
.y143{bottom:630.487800px;}
.y11f{bottom:631.492050px;}
.y23a{bottom:633.257850px;}
.y1fe{bottom:634.249800px;}
.y1dd{bottom:637.535850px;}
.y53{bottom:637.787850px;}
.yfe{bottom:637.823850px;}
.yde{bottom:638.749950px;}
.y9b{bottom:640.007700px;}
.y21b{bottom:640.007850px;}
.y27e{bottom:641.879850px;}
.yba{bottom:642.173850px;}
.y161{bottom:642.222150px;}
.y2f{bottom:642.228150px;}
.y77{bottom:643.158150px;}
.y182{bottom:646.293000px;}
.y1a5{bottom:651.545700px;}
.y142{bottom:652.087800px;}
.y239{bottom:655.757850px;}
.y1fd{bottom:656.299800px;}
.y252{bottom:656.885850px;}
.y1dc{bottom:659.729850px;}
.y52{bottom:659.981850px;}
.yfd{bottom:660.017850px;}
.y27d{bottom:660.629850px;}
.ydd{bottom:661.249950px;}
.ya{bottom:661.840500px;}
.y9a{bottom:662.057700px;}
.y21a{bottom:662.057850px;}
.y11e{bottom:662.345850px;}
.yb9{bottom:664.079850px;}
.y160{bottom:664.128150px;}
.y2e{bottom:664.134150px;}
.y76{bottom:666.558150px;}
.y181{bottom:670.968000px;}
.y251{bottom:671.885850px;}
.y141{bottom:673.687800px;}
.y1a4{bottom:674.351700px;}
.y238{bottom:678.257850px;}
.y1fc{bottom:678.349800px;}
.y27c{bottom:679.379850px;}
.y9{bottom:680.590500px;}
.y11d{bottom:680.945850px;}
.y1db{bottom:681.923850px;}
.y51{bottom:682.175850px;}
.yfc{bottom:682.211850px;}
.ydc{bottom:683.749950px;}
.y99{bottom:684.107700px;}
.y219{bottom:684.107850px;}
.yb8{bottom:685.985850px;}
.y15f{bottom:686.034150px;}
.y2d{bottom:686.040150px;}
.y250{bottom:686.885850px;}
.y180{bottom:689.268000px;}
.y75{bottom:689.958150px;}
.y140{bottom:695.287800px;}
.y1a3{bottom:697.157700px;}
.y27b{bottom:698.129850px;}
.y1fb{bottom:700.399800px;}
.y237{bottom:700.757850px;}
.y24f{bottom:701.885850px;}
.y1da{bottom:704.117850px;}
.yfb{bottom:704.405850px;}
.y98{bottom:706.157700px;}
.y218{bottom:706.157850px;}
.yb7{bottom:707.891850px;}
.y15e{bottom:707.940150px;}
.y2c{bottom:707.946150px;}
.y11c{bottom:708.031800px;}
.y74{bottom:713.358150px;}
.ydb{bottom:714.753900px;}
.y17f{bottom:716.071950px;}
.y27a{bottom:716.879850px;}
.y13f{bottom:716.887800px;}
.y1a2{bottom:719.956200px;}
.y1fa{bottom:722.449800px;}
.y8{bottom:722.726400px;}
.y236{bottom:723.257850px;}
.y1d9{bottom:726.311850px;}
.y50{bottom:726.581850px;}
.yfa{bottom:726.599850px;}
.y97{bottom:728.207700px;}
.y217{bottom:728.207850px;}
.yb6{bottom:729.797850px;}
.y15d{bottom:729.846150px;}
.y2b{bottom:729.852150px;}
.y11b{bottom:730.387800px;}
.yda{bottom:733.503900px;}
.y279{bottom:735.629850px;}
.y73{bottom:736.757850px;}
.y17e{bottom:738.121950px;}
.y13e{bottom:738.487800px;}
.y1a1{bottom:742.757700px;}
.y1f9{bottom:744.499800px;}
.y7{bottom:745.226400px;}
.y235{bottom:745.757850px;}
.y1d8{bottom:748.505850px;}
.y4f{bottom:748.775850px;}
.y96{bottom:750.257700px;}
.y216{bottom:750.257850px;}
.yb5{bottom:751.703850px;}
.y15c{bottom:751.752150px;}
.y2a{bottom:751.758150px;}
.yd9{bottom:752.253900px;}
.y11a{bottom:752.743800px;}
.y278{bottom:754.379850px;}
.y72{bottom:760.157850px;}
.y17d{bottom:760.171950px;}
.y1f8{bottom:766.549800px;}
.y234{bottom:768.257850px;}
.y13d{bottom:768.603750px;}
.y1d7{bottom:770.699850px;}
.y4e{bottom:770.969850px;}
.yd8{bottom:771.003900px;}
.yf9{bottom:771.005850px;}
.y95{bottom:772.307700px;}
.y215{bottom:772.307850px;}
.y277{bottom:773.129850px;}
.yb4{bottom:773.609850px;}
.y29{bottom:773.658150px;}
.y119{bottom:775.099800px;}
.y17c{bottom:782.221950px;}
.y71{bottom:783.557850px;}
.y13c{bottom:786.453750px;}
.y1a0{bottom:788.315850px;}
.y1f7{bottom:788.599800px;}
.yd7{bottom:789.753900px;}
.y233{bottom:790.757850px;}
.y6{bottom:791.112150px;}
.y276{bottom:791.879850px;}
.y1d6{bottom:792.893850px;}
.y4d{bottom:793.163850px;}
.yf8{bottom:793.199850px;}
.y94{bottom:794.357850px;}
.yb3{bottom:795.515850px;}
.y28{bottom:795.558150px;}
.y15b{bottom:795.561000px;}
.y17b{bottom:804.271950px;}
.y118{bottom:805.953750px;}
.y70{bottom:806.957850px;}
.yd6{bottom:808.503900px;}
.y275{bottom:810.629850px;}
.y13b{bottom:810.678750px;}
.y19f{bottom:811.121850px;}
.y232{bottom:813.257850px;}
.y5{bottom:813.612150px;}
.y1d5{bottom:815.087850px;}
.y4c{bottom:815.363850px;}
.yf7{bottom:815.393850px;}
.y93{bottom:816.407850px;}
.yb2{bottom:817.421850px;}
.y15a{bottom:817.458000px;}
.y1f6{bottom:819.153750px;}
.y117{bottom:824.553750px;}
.y6f{bottom:830.357850px;}
.y19e{bottom:833.927850px;}
.y17a{bottom:834.828900px;}
.y13a{bottom:834.903750px;}
.yd5{bottom:835.757850px;}
.y1d4{bottom:837.281850px;}
.y1f5{bottom:837.453750px;}
.y4b{bottom:837.569850px;}
.yf6{bottom:837.587850px;}
.y92{bottom:838.457850px;}
.y27{bottom:839.327850px;}
.y116{bottom:843.153750px;}
.y179{bottom:853.128900px;}
.y6e{bottom:853.757850px;}
.y1f4{bottom:855.753750px;}
.y19d{bottom:856.733850px;}
.yd4{bottom:858.257850px;}
.y139{bottom:859.128750px;}
.y1d3{bottom:859.475850px;}
.y4a{bottom:859.763850px;}
.yf5{bottom:859.781850px;}
.y1bc{bottom:860.507700px;}
.y91{bottom:860.507850px;}
.y26{bottom:861.233850px;}
.y115{bottom:861.753750px;}
.y138{bottom:876.978750px;}
.y6d{bottom:877.157850px;}
.y178{bottom:877.803900px;}
.y19c{bottom:879.539850px;}
.y114{bottom:880.353750px;}
.y4{bottom:880.757850px;}
.y1d2{bottom:881.669850px;}
.y49{bottom:881.975850px;}
.y90{bottom:882.557850px;}
.y25{bottom:883.139850px;}
.y274{bottom:895.757850px;}
.y113{bottom:898.953750px;}
.y6c{bottom:900.557850px;}
.y137{bottom:901.203750px;}
.y19b{bottom:902.345850px;}
.yd3{bottom:903.257850px;}
.y1d1{bottom:903.863850px;}
.y48{bottom:904.169850px;}
.y8f{bottom:904.607850px;}
.y24{bottom:905.045850px;}
.y3{bottom:910.757850px;}
.y6b{bottom:923.957850px;}
.y19a{bottom:925.151850px;}
.yd2{bottom:925.757850px;}
.y112{bottom:926.051850px;}
.y1d0{bottom:926.057850px;}
.y47{bottom:926.363850px;}
.y8e{bottom:926.657850px;}
.y23{bottom:926.951850px;}
.y136{bottom:927.557850px;}
.y2{bottom:940.757850px;}
.y6a{bottom:947.357850px;}
.y199{bottom:947.957850px;}
.yd1{bottom:948.257850px;}
.y111{bottom:948.407850px;}
.y46{bottom:948.557850px;}
.y8d{bottom:948.707850px;}
.y22{bottom:948.857850px;}
.y135{bottom:949.157850px;}
.y273{bottom:955.757850px;}
.h7{height:24.630908px;}
.ha{height:30.313623px;}
.hc{height:37.256836px;}
.hf{height:39.888000px;}
.h8{height:40.757812px;}
.hb{height:45.852539px;}
.hd{height:49.860000px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h6{height:51.222656px;}
.he{height:56.041992px;}
.h5{height:61.136719px;}
.h9{height:61.137919px;}
.h3{height:101.894531px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x4{left:88.759800px;}
.x8{left:99.559800px;}
.x6{left:103.641750px;}
.x2{left:112.500000px;}
.xb{left:118.523550px;}
.x7{left:123.300000px;}
.x3{left:127.381950px;}
.xd{left:133.405500px;}
.x9{left:142.263750px;}
.xc{left:144.053550px;}
.x5{left:156.244800px;}
.xa{left:167.793750px;}
.x1{left:625.781250px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v5{vertical-align:-17.600000pt;}
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.600533pt;}
.v1{vertical-align:21.056000pt;}
.ls76{letter-spacing:-6.400000pt;}
.ls42{letter-spacing:-6.144000pt;}
.ls22{letter-spacing:-5.184000pt;}
.ls37{letter-spacing:-4.800000pt;}
.ls82{letter-spacing:-4.010667pt;}
.ls86{letter-spacing:-4.000000pt;}
.ls24{letter-spacing:-3.413333pt;}
.ls25{letter-spacing:-3.200000pt;}
.ls7c{letter-spacing:-2.752000pt;}
.ls69{letter-spacing:-2.432000pt;}
.ls73{letter-spacing:-2.240000pt;}
.ls83{letter-spacing:-2.090667pt;}
.ls7d{letter-spacing:-1.920000pt;}
.ls81{letter-spacing:-1.664000pt;}
.ls53{letter-spacing:-0.896000pt;}
.ls3b{letter-spacing:-0.832000pt;}
.ls47{letter-spacing:-0.768000pt;}
.ls46{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls4b{letter-spacing:-0.576000pt;}
.ls48{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls80{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls6c{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls7f{letter-spacing:0.170667pt;}
.ls29{letter-spacing:0.186667pt;}
.ls15{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls6e{letter-spacing:0.266667pt;}
.ls20{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls38{letter-spacing:0.384000pt;}
.ls2a{letter-spacing:0.385600pt;}
.ls1b{letter-spacing:0.394667pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls33{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.832000pt;}
.ls6b{letter-spacing:0.896000pt;}
.ls5d{letter-spacing:0.960000pt;}
.ls41{letter-spacing:1.024000pt;}
.ls5{letter-spacing:1.088000pt;}
.ls51{letter-spacing:1.216000pt;}
.ls72{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.472000pt;}
.ls79{letter-spacing:1.536000pt;}
.ls5e{letter-spacing:2.176000pt;}
.ls26{letter-spacing:2.240000pt;}
.ls63{letter-spacing:2.304000pt;}
.ls61{letter-spacing:2.368000pt;}
.ls64{letter-spacing:2.432000pt;}
.ls62{letter-spacing:2.496000pt;}
.ls40{letter-spacing:2.624000pt;}
.ls6a{letter-spacing:2.688000pt;}
.ls3f{letter-spacing:2.752000pt;}
.ls17{letter-spacing:2.826667pt;}
.ls5c{letter-spacing:2.986667pt;}
.ls5b{letter-spacing:3.040000pt;}
.ls74{letter-spacing:3.093333pt;}
.ls75{letter-spacing:3.146667pt;}
.ls52{letter-spacing:3.168000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls4c{letter-spacing:3.253333pt;}
.ls5f{letter-spacing:3.264000pt;}
.ls4e{letter-spacing:3.306667pt;}
.ls60{letter-spacing:3.392000pt;}
.ls18{letter-spacing:3.520000pt;}
.ls6f{letter-spacing:3.573333pt;}
.ls70{letter-spacing:3.626667pt;}
.ls71{letter-spacing:3.680000pt;}
.ls3e{letter-spacing:3.786667pt;}
.ls7a{letter-spacing:3.904000pt;}
.ls3{letter-spacing:4.053333pt;}
.ls7b{letter-spacing:4.160000pt;}
.ls49{letter-spacing:4.176000pt;}
.ls7e{letter-spacing:4.224000pt;}
.ls77{letter-spacing:4.416000pt;}
.ls78{letter-spacing:4.480000pt;}
.ls85{letter-spacing:4.522667pt;}
.ls67{letter-spacing:4.544000pt;}
.ls68{letter-spacing:4.608000pt;}
.ls66{letter-spacing:4.672000pt;}
.ls32{letter-spacing:4.800000pt;}
.ls50{letter-spacing:4.848000pt;}
.ls2d{letter-spacing:5.248000pt;}
.ls58{letter-spacing:5.312000pt;}
.ls4a{letter-spacing:5.328000pt;}
.ls8{letter-spacing:5.376000pt;}
.ls10{letter-spacing:5.386667pt;}
.ls1f{letter-spacing:5.440000pt;}
.ls84{letter-spacing:5.461333pt;}
.ls28{letter-spacing:5.504000pt;}
.ls2e{letter-spacing:5.824000pt;}
.ls5a{letter-spacing:6.240000pt;}
.ls27{letter-spacing:6.272000pt;}
.ls59{letter-spacing:6.288000pt;}
.ls44{letter-spacing:6.720000pt;}
.ls43{letter-spacing:6.768000pt;}
.ls35{letter-spacing:7.040000pt;}
.ls4d{letter-spacing:7.253333pt;}
.lsd{letter-spacing:7.466667pt;}
.ls0{letter-spacing:7.520000pt;}
.ls2f{letter-spacing:7.808000pt;}
.ls65{letter-spacing:7.872000pt;}
.ls34{letter-spacing:7.936000pt;}
.ls30{letter-spacing:8.000000pt;}
.ls36{letter-spacing:8.064000pt;}
.ls31{letter-spacing:8.128000pt;}
.ls57{letter-spacing:8.192000pt;}
.ls1e{letter-spacing:8.320000pt;}
.ls2c{letter-spacing:8.448000pt;}
.ls6d{letter-spacing:8.512000pt;}
.ls2{letter-spacing:8.693333pt;}
.ls1{letter-spacing:9.546667pt;}
.ls45{letter-spacing:10.128000pt;}
.ls4f{letter-spacing:10.506667pt;}
.ls56{letter-spacing:10.560000pt;}
.ls55{letter-spacing:10.613333pt;}
.ls54{letter-spacing:10.666667pt;}
.lse{letter-spacing:11.253333pt;}
.ls3d{letter-spacing:13.546667pt;}
.ls3c{letter-spacing:15.360000pt;}
.ws64{word-spacing:-43.840000pt;}
.ws31{word-spacing:-43.776000pt;}
.ws5f{word-spacing:-43.712000pt;}
.ws6f{word-spacing:-43.648000pt;}
.ws27{word-spacing:-43.584000pt;}
.ws59{word-spacing:-43.520000pt;}
.ws5{word-spacing:-43.456000pt;}
.ws3d{word-spacing:-43.392000pt;}
.ws3c{word-spacing:-43.328000pt;}
.ws28{word-spacing:-43.264000pt;}
.ws38{word-spacing:-43.200000pt;}
.ws2{word-spacing:-43.136000pt;}
.ws3a{word-spacing:-43.072000pt;}
.ws5e{word-spacing:-43.008000pt;}
.ws37{word-spacing:-42.944000pt;}
.ws4{word-spacing:-42.880000pt;}
.ws3b{word-spacing:-42.816000pt;}
.ws66{word-spacing:-42.752000pt;}
.ws6d{word-spacing:-42.688000pt;}
.ws67{word-spacing:-42.624000pt;}
.ws54{word-spacing:-42.496000pt;}
.ws57{word-spacing:-42.304000pt;}
.ws65{word-spacing:-36.213333pt;}
.ws11{word-spacing:-35.946667pt;}
.ws5d{word-spacing:-35.680000pt;}
.ws33{word-spacing:-28.757333pt;}
.ws73{word-spacing:-28.330667pt;}
.ws74{word-spacing:-24.746667pt;}
.ws3{word-spacing:-22.506667pt;}
.ws14{word-spacing:-22.453333pt;}
.ws44{word-spacing:-20.586667pt;}
.ws12{word-spacing:-20.373333pt;}
.ws49{word-spacing:-20.256000pt;}
.ws4a{word-spacing:-20.208000pt;}
.ws5b{word-spacing:-19.776000pt;}
.ws5a{word-spacing:-19.728000pt;}
.ws4c{word-spacing:-18.816000pt;}
.ws24{word-spacing:-18.560000pt;}
.ws17{word-spacing:-18.506667pt;}
.ws32{word-spacing:-18.304000pt;}
.ws15{word-spacing:-18.186667pt;}
.ws26{word-spacing:-18.048000pt;}
.ws1{word-spacing:-18.026667pt;}
.ws22{word-spacing:-17.984000pt;}
.ws16{word-spacing:-17.813333pt;}
.ws39{word-spacing:-17.664000pt;}
.ws56{word-spacing:-16.656000pt;}
.ws5c{word-spacing:-16.176000pt;}
.ws13{word-spacing:-14.986667pt;}
.ws4b{word-spacing:-13.488000pt;}
.ws36{word-spacing:-13.184000pt;}
.ws25{word-spacing:-12.800000pt;}
.ws23{word-spacing:-12.588800pt;}
.ws29{word-spacing:-11.989333pt;}
.ws78{word-spacing:-10.986667pt;}
.ws72{word-spacing:-10.965333pt;}
.ws48{word-spacing:-10.490667pt;}
.ws6c{word-spacing:-10.128000pt;}
.ws8{word-spacing:-9.546667pt;}
.ws2b{word-spacing:-8.789333pt;}
.ws2a{word-spacing:-8.576000pt;}
.ws0{word-spacing:-7.573333pt;}
.ws19{word-spacing:-7.520000pt;}
.ws43{word-spacing:-7.466667pt;}
.ws55{word-spacing:-7.253333pt;}
.ws51{word-spacing:-6.768000pt;}
.ws50{word-spacing:-6.720000pt;}
.wsb{word-spacing:-1.088000pt;}
.ws61{word-spacing:-0.896000pt;}
.wsa{word-spacing:-0.832000pt;}
.ws1b{word-spacing:-0.768000pt;}
.ws34{word-spacing:-0.704000pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws1c{word-spacing:-0.576000pt;}
.ws2e{word-spacing:-0.512000pt;}
.ws2f{word-spacing:-0.448000pt;}
.ws3e{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.320000pt;}
.ws9{word-spacing:-0.298667pt;}
.ws6b{word-spacing:-0.266667pt;}
.ws1d{word-spacing:-0.256000pt;}
.ws1e{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.128000pt;}
.ws18{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.064000pt;}
.ws2c{word-spacing:0.128000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws30{word-spacing:0.213333pt;}
.wse{word-spacing:0.256000pt;}
.ws62{word-spacing:0.266667pt;}
.ws21{word-spacing:0.320000pt;}
.wsd{word-spacing:0.384000pt;}
.ws75{word-spacing:0.426667pt;}
.ws1f{word-spacing:0.448000pt;}
.ws4f{word-spacing:0.512000pt;}
.ws53{word-spacing:0.576000pt;}
.ws20{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.704000pt;}
.ws4e{word-spacing:0.768000pt;}
.ws42{word-spacing:0.832000pt;}
.ws58{word-spacing:0.896000pt;}
.ws76{word-spacing:1.664000pt;}
.ws69{word-spacing:1.920000pt;}
.ws6a{word-spacing:2.080000pt;}
.ws77{word-spacing:2.090667pt;}
.ws68{word-spacing:2.240000pt;}
.ws60{word-spacing:2.432000pt;}
.ws70{word-spacing:2.752000pt;}
.ws41{word-spacing:3.029333pt;}
.ws63{word-spacing:3.072000pt;}
.ws46{word-spacing:3.733333pt;}
.ws45{word-spacing:3.786667pt;}
.ws52{word-spacing:3.840000pt;}
.ws7a{word-spacing:4.522667pt;}
.ws79{word-spacing:5.461333pt;}
.ws35{word-spacing:5.504000pt;}
.ws47{word-spacing:6.144000pt;}
.ws6e{word-spacing:6.400000pt;}
.ws40{word-spacing:8.768000pt;}
.ws71{word-spacing:9.792000pt;}
.ws7{word-spacing:11.146667pt;}
.ws10{word-spacing:129.866667pt;}
._0{margin-left:-843.466667pt;}
._16{margin-left:-13.365333pt;}
._17{margin-left:-10.037333pt;}
._8{margin-left:-8.640000pt;}
._11{margin-left:-7.136000pt;}
._d{margin-left:-6.218667pt;}
._1{margin-left:-5.280000pt;}
._15{margin-left:-4.138667pt;}
._7{margin-left:-2.720000pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._5{width:2.773333pt;}
._4{width:3.733333pt;}
._a{width:4.640000pt;}
._e{width:5.728000pt;}
._6{width:7.466667pt;}
._9{width:9.013333pt;}
._b{width:9.994667pt;}
._c{width:10.901333pt;}
._12{width:12.106667pt;}
._14{width:13.616267pt;}
._13{width:28.129867pt;}
._f{width:80.000000pt;}
._10{width:138.773333pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:68.229200pt;}
.y1{bottom:82.895867pt;}
.y69{bottom:122.895867pt;}
.y8c{bottom:122.896133pt;}
.yd0{bottom:123.082800pt;}
.y45{bottom:123.152133pt;}
.y1f3{bottom:123.367200pt;}
.y134{bottom:124.130000pt;}
.y1bb{bottom:124.764267pt;}
.y214{bottom:124.782267pt;}
.y272{bottom:124.890533pt;}
.y177{bottom:125.705200pt;}
.y198{bottom:125.974533pt;}
.y1cf{bottom:126.016000pt;}
.yb1{bottom:126.635733pt;}
.y24e{bottom:126.635867pt;}
.y159{bottom:126.951200pt;}
.y231{bottom:127.059467pt;}
.yf4{bottom:127.777733pt;}
.y20{bottom:128.302667pt;}
.y68{bottom:136.229200pt;}
.y8b{bottom:136.229467pt;}
.y271{bottom:138.223867pt;}
.y1f2{bottom:139.767200pt;}
.y213{bottom:141.048933pt;}
.ycf{bottom:142.554800pt;}
.y44{bottom:142.624133pt;}
.yb0{bottom:142.895733pt;}
.y158{bottom:143.217867pt;}
.y133{bottom:143.730000pt;}
.y1ba{bottom:145.036267pt;}
.y176{bottom:145.177200pt;}
.y1ce{bottom:145.616000pt;}
.y230{bottom:147.059467pt;}
.y295{bottom:147.226533pt;}
.yf3{bottom:147.777733pt;}
.y197{bottom:148.041200pt;}
.y1f{bottom:148.302667pt;}
.y270{bottom:151.557200pt;}
.y67{bottom:153.302533pt;}
.y8a{bottom:153.302800pt;}
.y1f1{bottom:156.167200pt;}
.y212{bottom:157.315600pt;}
.y157{bottom:159.084533pt;}
.yaf{bottom:159.969067pt;}
.yce{bottom:162.026800pt;}
.y43{bottom:162.096133pt;}
.y24d{bottom:162.895867pt;}
.y132{bottom:163.602000pt;}
.y294{bottom:163.893200pt;}
.y175{bottom:164.649200pt;}
.y26f{bottom:164.890533pt;}
.y1cd{bottom:165.216000pt;}
.y1b9{bottom:165.308267pt;}
.y22f{bottom:166.659467pt;}
.yf2{bottom:167.777733pt;}
.y1e{bottom:168.302667pt;}
.y89{bottom:169.562800pt;}
.y196{bottom:172.048267pt;}
.y66{bottom:173.302533pt;}
.y211{bottom:173.582267pt;}
.y156{bottom:174.951200pt;}
.y26e{bottom:178.223867pt;}
.y1f0{bottom:178.233867pt;}
.y293{bottom:180.559867pt;}
.ycd{bottom:181.498800pt;}
.y42{bottom:181.562800pt;}
.y24c{bottom:182.895867pt;}
.y131{bottom:183.474000pt;}
.y174{bottom:184.121200pt;}
.y1cc{bottom:184.816000pt;}
.y1b8{bottom:185.580267pt;}
.y88{bottom:186.636133pt;}
.yf1{bottom:187.777733pt;}
.y1d{bottom:188.302667pt;}
.y26d{bottom:191.557200pt;}
.y195{bottom:191.776267pt;}
.y110{bottom:192.015867pt;}
.y65{bottom:193.302533pt;}
.y22e{bottom:193.818533pt;}
.y1ef{bottom:194.633867pt;}
.yae{bottom:196.767733pt;}
.y292{bottom:197.226533pt;}
.y210{bottom:197.408000pt;}
.y155{bottom:198.376933pt;}
.ycc{bottom:200.970800pt;}
.y41{bottom:201.029467pt;}
.y24b{bottom:202.895867pt;}
.y130{bottom:203.346000pt;}
.y173{bottom:203.593200pt;}
.y1cb{bottom:204.416000pt;}
.y26c{bottom:204.890533pt;}
.y1b7{bottom:205.852267pt;}
.yf0{bottom:207.777733pt;}
.y1c{bottom:208.302667pt;}
.y22d{bottom:210.085200pt;}
.y1ee{bottom:211.033867pt;}
.y194{bottom:211.504267pt;}
.y10f{bottom:211.743867pt;}
.yad{bottom:216.095733pt;}
.y20f{bottom:217.008000pt;}
.y154{bottom:217.576933pt;}
.y26b{bottom:218.223867pt;}
.ycb{bottom:220.442800pt;}
.y24a{bottom:222.895867pt;}
.y12f{bottom:223.218000pt;}
.y291{bottom:223.893200pt;}
.y1ca{bottom:224.016000pt;}
.y1b6{bottom:226.124267pt;}
.yef{bottom:227.777733pt;}
.y1b{bottom:228.302667pt;}
.y172{bottom:230.618933pt;}
.y64{bottom:231.146533pt;}
.y193{bottom:231.232267pt;}
.y10e{bottom:231.471867pt;}
.y26a{bottom:231.557200pt;}
.y1ed{bottom:233.100533pt;}
.y22c{bottom:233.910933pt;}
.yac{bottom:235.695733pt;}
.y20e{bottom:236.608000pt;}
.y153{bottom:236.776933pt;}
.y87{bottom:238.896133pt;}
.y40{bottom:239.845467pt;}
.yca{bottom:239.914800pt;}
.y290{bottom:240.559867pt;}
.y249{bottom:242.895867pt;}
.y12e{bottom:243.090000pt;}
.y1c9{bottom:243.616000pt;}
.y269{bottom:244.890533pt;}
.y1b5{bottom:246.396267pt;}
.yee{bottom:247.777733pt;}
.y1a{bottom:248.302667pt;}
.y192{bottom:250.960267pt;}
.y10d{bottom:251.199867pt;}
.y63{bottom:251.274533pt;}
.y171{bottom:254.290000pt;}
.yab{bottom:255.295733pt;}
.y152{bottom:255.976933pt;}
.y1ec{bottom:257.064933pt;}
.y28f{bottom:257.226533pt;}
.y268{bottom:258.223867pt;}
.y3f{bottom:259.317467pt;}
.yc9{bottom:259.386800pt;}
.y86{bottom:259.696133pt;}
.y22b{bottom:261.070000pt;}
.y248{bottom:262.895867pt;}
.y1c8{bottom:263.216000pt;}
.y20d{bottom:263.767067pt;}
.y1b4{bottom:266.668267pt;}
.yed{bottom:267.777733pt;}
.y19{bottom:268.302667pt;}
.y12d{bottom:270.515733pt;}
.y191{bottom:270.688267pt;}
.y10c{bottom:270.927867pt;}
.y62{bottom:271.002533pt;}
.y267{bottom:271.557200pt;}
.y170{bottom:273.762000pt;}
.y28e{bottom:273.893200pt;}
.yaa{bottom:274.895733pt;}
.y151{bottom:275.176933pt;}
.y1eb{bottom:276.792933pt;}
.y22a{bottom:277.336667pt;}
.y3e{bottom:278.789467pt;}
.yc8{bottom:278.858800pt;}
.y20c{bottom:280.033733pt;}
.y85{bottom:280.496133pt;}
.y247{bottom:282.895867pt;}
.y266{bottom:284.890533pt;}
.y1b3{bottom:286.940267pt;}
.yec{bottom:287.777733pt;}
.y18{bottom:288.302667pt;}
.y1c7{bottom:290.375067pt;}
.y190{bottom:290.416267pt;}
.y28d{bottom:290.559867pt;}
.y10b{bottom:290.655867pt;}
.y61{bottom:290.730533pt;}
.y16f{bottom:293.234000pt;}
.y229{bottom:293.603333pt;}
.y150{bottom:294.376933pt;}
.ya9{bottom:294.495733pt;}
.y12c{bottom:294.576133pt;}
.y20b{bottom:296.300400pt;}
.y265{bottom:298.223867pt;}
.y3d{bottom:298.261467pt;}
.yc7{bottom:298.330800pt;}
.y84{bottom:301.296133pt;}
.y246{bottom:302.895867pt;}
.y1ea{bottom:304.085333pt;}
.y1c6{bottom:306.641733pt;}
.y1b2{bottom:307.212267pt;}
.yeb{bottom:307.777733pt;}
.y17{bottom:308.302667pt;}
.y228{bottom:309.870000pt;}
.y18f{bottom:310.144267pt;}
.y10a{bottom:310.383867pt;}
.y60{bottom:310.458533pt;}
.y264{bottom:311.557200pt;}
.y16e{bottom:312.706000pt;}
.y14f{bottom:313.576933pt;}
.ya8{bottom:314.095733pt;}
.y12b{bottom:314.448133pt;}
.y28c{bottom:317.226533pt;}
.y3c{bottom:317.733467pt;}
.yc6{bottom:317.802800pt;}
.y20a{bottom:320.126133pt;}
.y1e9{bottom:320.485333pt;}
.y83{bottom:322.096133pt;}
.y245{bottom:322.895867pt;}
.y1c5{bottom:322.908400pt;}
.y263{bottom:324.890533pt;}
.y1b1{bottom:327.484267pt;}
.yea{bottom:327.777733pt;}
.y16{bottom:328.302667pt;}
.y18e{bottom:329.872267pt;}
.y109{bottom:330.111867pt;}
.y5f{bottom:330.186533pt;}
.y16d{bottom:332.178000pt;}
.y14e{bottom:332.776933pt;}
.ya7{bottom:333.695733pt;}
.y227{bottom:333.695867pt;}
.y12a{bottom:334.320133pt;}
.y1e8{bottom:336.885333pt;}
.y3b{bottom:337.205467pt;}
.yc5{bottom:337.274800pt;}
.y262{bottom:338.223867pt;}
.y209{bottom:339.726133pt;}
.y244{bottom:342.895867pt;}
.y82{bottom:342.896133pt;}
.y1c4{bottom:346.734133pt;}
.y1b0{bottom:347.756267pt;}
.ye9{bottom:347.777733pt;}
.y15{bottom:348.302667pt;}
.y18d{bottom:349.600267pt;}
.y108{bottom:349.839867pt;}
.y5e{bottom:349.914533pt;}
.y261{bottom:351.557200pt;}
.y14d{bottom:351.976933pt;}
.ya6{bottom:353.295733pt;}
.y226{bottom:353.295867pt;}
.y28b{bottom:353.893200pt;}
.y129{bottom:354.192133pt;}
.y3a{bottom:356.677467pt;}
.yc4{bottom:356.746800pt;}
.y16c{bottom:359.203733pt;}
.y1e7{bottom:360.860400pt;}
.y243{bottom:362.895867pt;}
.y81{bottom:363.696133pt;}
.y260{bottom:364.890533pt;}
.y1c3{bottom:366.334133pt;}
.y208{bottom:366.885200pt;}
.ye8{bottom:367.777733pt;}
.y1af{bottom:368.028267pt;}
.y14{bottom:368.302667pt;}
.y107{bottom:369.567867pt;}
.y5d{bottom:369.642533pt;}
.y28a{bottom:370.559867pt;}
.y14c{bottom:371.176933pt;}
.ya5{bottom:372.895733pt;}
.y225{bottom:372.895867pt;}
.y128{bottom:374.064133pt;}
.y16b{bottom:375.337067pt;}
.y39{bottom:376.149467pt;}
.yc3{bottom:376.218800pt;}
.y18c{bottom:376.892667pt;}
.y25f{bottom:378.223867pt;}
.y1e6{bottom:380.588400pt;}
.y207{bottom:383.151867pt;}
.y80{bottom:384.496133pt;}
.y1c2{bottom:385.934133pt;}
.y289{bottom:387.226533pt;}
.ye7{bottom:387.777733pt;}
.y1ae{bottom:388.300267pt;}
.y13{bottom:388.302667pt;}
.y106{bottom:389.295867pt;}
.y5c{bottom:389.370533pt;}
.y14b{bottom:390.376933pt;}
.y16a{bottom:391.470400pt;}
.y25e{bottom:391.557200pt;}
.ya4{bottom:392.495733pt;}
.y224{bottom:392.495867pt;}
.y18b{bottom:393.292667pt;}
.y127{bottom:393.936133pt;}
.y38{bottom:395.621467pt;}
.yc2{bottom:395.690800pt;}
.y1e5{bottom:400.316400pt;}
.y242{bottom:402.895867pt;}
.y288{bottom:403.893200pt;}
.y25d{bottom:404.890533pt;}
.y7f{bottom:405.296133pt;}
.y1c1{bottom:405.534133pt;}
.y206{bottom:406.977600pt;}
.ye6{bottom:407.777733pt;}
.y12{bottom:408.302667pt;}
.y1ad{bottom:408.572267pt;}
.y105{bottom:409.034533pt;}
.y5b{bottom:409.098533pt;}
.y14a{bottom:409.576933pt;}
.ya3{bottom:412.095733pt;}
.y223{bottom:412.095867pt;}
.y126{bottom:413.808133pt;}
.y169{bottom:415.088133pt;}
.y37{bottom:415.093467pt;}
.yc1{bottom:415.162800pt;}
.y18a{bottom:417.267733pt;}
.y25c{bottom:418.223867pt;}
.y1e4{bottom:420.044400pt;}
.y287{bottom:420.559867pt;}
.y241{bottom:422.895867pt;}
.y1c0{bottom:425.134133pt;}
.y7e{bottom:426.096133pt;}
.y205{bottom:426.577600pt;}
.ye5{bottom:427.777733pt;}
.y11{bottom:428.302667pt;}
.y104{bottom:428.762533pt;}
.y149{bottom:428.776933pt;}
.y5a{bottom:428.826533pt;}
.y1ac{bottom:428.844267pt;}
.y25b{bottom:431.557200pt;}
.ya2{bottom:431.695733pt;}
.y222{bottom:431.695867pt;}
.y168{bottom:434.560133pt;}
.y36{bottom:434.565467pt;}
.yc0{bottom:434.629467pt;}
.y189{bottom:436.995733pt;}
.y286{bottom:437.226533pt;}
.y125{bottom:441.233733pt;}
.y240{bottom:442.895867pt;}
.y1bf{bottom:444.734133pt;}
.y25a{bottom:444.890533pt;}
.y204{bottom:446.177600pt;}
.y7d{bottom:446.896133pt;}
.y1e3{bottom:447.336800pt;}
.ye4{bottom:447.777733pt;}
.y148{bottom:447.976933pt;}
.y10{bottom:448.302667pt;}
.y59{bottom:448.554533pt;}
.ya1{bottom:451.295733pt;}
.y221{bottom:451.295867pt;}
.y285{bottom:453.893200pt;}
.y167{bottom:454.032133pt;}
.y35{bottom:454.037467pt;}
.ybf{bottom:454.096133pt;}
.y1ab{bottom:456.670000pt;}
.y188{bottom:456.723733pt;}
.y124{bottom:457.767067pt;}
.y259{bottom:458.223867pt;}
.y23f{bottom:462.895867pt;}
.y1e2{bottom:463.736800pt;}
.y1be{bottom:464.334133pt;}
.y203{bottom:465.777600pt;}
.y147{bottom:467.176933pt;}
.y7c{bottom:467.696133pt;}
.ye3{bottom:467.777733pt;}
.y58{bottom:468.282533pt;}
.yf{bottom:468.302667pt;}
.y103{bottom:468.314533pt;}
.y284{bottom:470.559867pt;}
.ya0{bottom:470.895733pt;}
.y220{bottom:470.895867pt;}
.y258{bottom:471.557200pt;}
.y166{bottom:473.504133pt;}
.y34{bottom:473.509467pt;}
.y1aa{bottom:473.603333pt;}
.y187{bottom:476.451733pt;}
.y123{bottom:481.838267pt;}
.y23e{bottom:482.895867pt;}
.y1bd{bottom:483.934133pt;}
.y257{bottom:484.890533pt;}
.y202{bottom:485.377600pt;}
.y283{bottom:487.226533pt;}
.ye2{bottom:487.777733pt;}
.y1e1{bottom:487.786533pt;}
.y57{bottom:488.010533pt;}
.y102{bottom:488.042533pt;}
.ye{bottom:488.302667pt;}
.y7b{bottom:488.496133pt;}
.y9f{bottom:490.495733pt;}
.y21f{bottom:490.495867pt;}
.ybe{bottom:492.933200pt;}
.y165{bottom:492.976133pt;}
.y33{bottom:492.981467pt;}
.y146{bottom:493.941333pt;}
.y1a9{bottom:498.063733pt;}
.y256{bottom:498.223867pt;}
.y122{bottom:501.710267pt;}
.y23d{bottom:502.895867pt;}
.y186{bottom:503.749333pt;}
.y282{bottom:503.893200pt;}
.y201{bottom:504.977600pt;}
.y1e0{bottom:507.514533pt;}
.y56{bottom:507.738533pt;}
.y101{bottom:507.770533pt;}
.ye1{bottom:507.777733pt;}
.yd{bottom:508.302667pt;}
.y7a{bottom:509.296133pt;}
.y9e{bottom:510.095733pt;}
.y21e{bottom:510.095867pt;}
.y255{bottom:511.557200pt;}
.ybd{bottom:512.405200pt;}
.y164{bottom:512.448133pt;}
.y32{bottom:512.453467pt;}
.y145{bottom:515.474667pt;}
.y1a8{bottom:518.335733pt;}
.y185{bottom:520.016000pt;}
.y281{bottom:520.559867pt;}
.y121{bottom:521.582267pt;}
.y23c{bottom:522.895867pt;}
.y200{bottom:524.577600pt;}
.y254{bottom:524.890533pt;}
.y1df{bottom:527.242533pt;}
.y55{bottom:527.466533pt;}
.y100{bottom:527.498533pt;}
.ye0{bottom:527.777733pt;}
.yc{bottom:528.302667pt;}
.y9d{bottom:529.695733pt;}
.y21d{bottom:529.695867pt;}
.y79{bottom:530.096133pt;}
.ybc{bottom:531.877200pt;}
.y163{bottom:531.920133pt;}
.y31{bottom:531.925467pt;}
.y184{bottom:536.282667pt;}
.y144{bottom:537.008000pt;}
.y280{bottom:537.226533pt;}
.y1a7{bottom:538.607733pt;}
.y120{bottom:541.454267pt;}
.y23b{bottom:542.895867pt;}
.y253{bottom:543.898533pt;}
.y1ff{bottom:544.177600pt;}
.y1de{bottom:546.970533pt;}
.y54{bottom:547.194533pt;}
.yff{bottom:547.226533pt;}
.ydf{bottom:547.777733pt;}
.yb{bottom:548.302667pt;}
.y9c{bottom:549.295733pt;}
.y21c{bottom:549.295867pt;}
.y78{bottom:550.896133pt;}
.ybb{bottom:551.349200pt;}
.y162{bottom:551.392133pt;}
.y30{bottom:551.397467pt;}
.y27f{bottom:553.893200pt;}
.y183{bottom:558.216000pt;}
.y1a6{bottom:558.879733pt;}
.y143{bottom:560.433600pt;}
.y11f{bottom:561.326267pt;}
.y23a{bottom:562.895867pt;}
.y1fe{bottom:563.777600pt;}
.y1dd{bottom:566.698533pt;}
.y53{bottom:566.922533pt;}
.yfe{bottom:566.954533pt;}
.yde{bottom:567.777733pt;}
.y9b{bottom:568.895733pt;}
.y21b{bottom:568.895867pt;}
.y27e{bottom:570.559867pt;}
.yba{bottom:570.821200pt;}
.y161{bottom:570.864133pt;}
.y2f{bottom:570.869467pt;}
.y77{bottom:571.696133pt;}
.y182{bottom:574.482667pt;}
.y1a5{bottom:579.151733pt;}
.y142{bottom:579.633600pt;}
.y239{bottom:582.895867pt;}
.y1fd{bottom:583.377600pt;}
.y252{bottom:583.898533pt;}
.y1dc{bottom:586.426533pt;}
.y52{bottom:586.650533pt;}
.yfd{bottom:586.682533pt;}
.y27d{bottom:587.226533pt;}
.ydd{bottom:587.777733pt;}
.ya{bottom:588.302667pt;}
.y9a{bottom:588.495733pt;}
.y21a{bottom:588.495867pt;}
.y11e{bottom:588.751867pt;}
.yb9{bottom:590.293200pt;}
.y160{bottom:590.336133pt;}
.y2e{bottom:590.341467pt;}
.y76{bottom:592.496133pt;}
.y181{bottom:596.416000pt;}
.y251{bottom:597.231867pt;}
.y141{bottom:598.833600pt;}
.y1a4{bottom:599.423733pt;}
.y238{bottom:602.895867pt;}
.y1fc{bottom:602.977600pt;}
.y27c{bottom:603.893200pt;}
.y9{bottom:604.969333pt;}
.y11d{bottom:605.285200pt;}
.y1db{bottom:606.154533pt;}
.y51{bottom:606.378533pt;}
.yfc{bottom:606.410533pt;}
.ydc{bottom:607.777733pt;}
.y99{bottom:608.095733pt;}
.y219{bottom:608.095867pt;}
.yb8{bottom:609.765200pt;}
.y15f{bottom:609.808133pt;}
.y2d{bottom:609.813467pt;}
.y250{bottom:610.565200pt;}
.y180{bottom:612.682667pt;}
.y75{bottom:613.296133pt;}
.y140{bottom:618.033600pt;}
.y1a3{bottom:619.695733pt;}
.y27b{bottom:620.559867pt;}
.y1fb{bottom:622.577600pt;}
.y237{bottom:622.895867pt;}
.y24f{bottom:623.898533pt;}
.y1da{bottom:625.882533pt;}
.yfb{bottom:626.138533pt;}
.y98{bottom:627.695733pt;}
.y218{bottom:627.695867pt;}
.yb7{bottom:629.237200pt;}
.y15e{bottom:629.280133pt;}
.y2c{bottom:629.285467pt;}
.y11c{bottom:629.361600pt;}
.y74{bottom:634.096133pt;}
.ydb{bottom:635.336800pt;}
.y17f{bottom:636.508400pt;}
.y27a{bottom:637.226533pt;}
.y13f{bottom:637.233600pt;}
.y1a2{bottom:639.961067pt;}
.y1fa{bottom:642.177600pt;}
.y8{bottom:642.423467pt;}
.y236{bottom:642.895867pt;}
.y1d9{bottom:645.610533pt;}
.y50{bottom:645.850533pt;}
.yfa{bottom:645.866533pt;}
.y97{bottom:647.295733pt;}
.y217{bottom:647.295867pt;}
.yb6{bottom:648.709200pt;}
.y15d{bottom:648.752133pt;}
.y2b{bottom:648.757467pt;}
.y11b{bottom:649.233600pt;}
.yda{bottom:652.003467pt;}
.y279{bottom:653.893200pt;}
.y73{bottom:654.895867pt;}
.y17e{bottom:656.108400pt;}
.y13e{bottom:656.433600pt;}
.y1a1{bottom:660.229067pt;}
.y1f9{bottom:661.777600pt;}
.y7{bottom:662.423467pt;}
.y235{bottom:662.895867pt;}
.y1d8{bottom:665.338533pt;}
.y4f{bottom:665.578533pt;}
.y96{bottom:666.895733pt;}
.y216{bottom:666.895867pt;}
.yb5{bottom:668.181200pt;}
.y15c{bottom:668.224133pt;}
.y2a{bottom:668.229467pt;}
.yd9{bottom:668.670133pt;}
.y11a{bottom:669.105600pt;}
.y278{bottom:670.559867pt;}
.y72{bottom:675.695867pt;}
.y17d{bottom:675.708400pt;}
.y1f8{bottom:681.377600pt;}
.y234{bottom:682.895867pt;}
.y13d{bottom:683.203333pt;}
.y1d7{bottom:685.066533pt;}
.y4e{bottom:685.306533pt;}
.yd8{bottom:685.336800pt;}
.yf9{bottom:685.338533pt;}
.y95{bottom:686.495733pt;}
.y215{bottom:686.495867pt;}
.y277{bottom:687.226533pt;}
.yb4{bottom:687.653200pt;}
.y29{bottom:687.696133pt;}
.y119{bottom:688.977600pt;}
.y17c{bottom:695.308400pt;}
.y71{bottom:696.495867pt;}
.y13c{bottom:699.070000pt;}
.y1a0{bottom:700.725200pt;}
.y1f7{bottom:700.977600pt;}
.yd7{bottom:702.003467pt;}
.y233{bottom:702.895867pt;}
.y6{bottom:703.210800pt;}
.y276{bottom:703.893200pt;}
.y1d6{bottom:704.794533pt;}
.y4d{bottom:705.034533pt;}
.yf8{bottom:705.066533pt;}
.y94{bottom:706.095867pt;}
.yb3{bottom:707.125200pt;}
.y28{bottom:707.162800pt;}
.y15b{bottom:707.165333pt;}
.y17b{bottom:714.908400pt;}
.y118{bottom:716.403333pt;}
.y70{bottom:717.295867pt;}
.yd6{bottom:718.670133pt;}
.y275{bottom:720.559867pt;}
.y13b{bottom:720.603333pt;}
.y19f{bottom:720.997200pt;}
.y232{bottom:722.895867pt;}
.y5{bottom:723.210800pt;}
.y1d5{bottom:724.522533pt;}
.y4c{bottom:724.767867pt;}
.yf7{bottom:724.794533pt;}
.y93{bottom:725.695867pt;}
.yb2{bottom:726.597200pt;}
.y15a{bottom:726.629333pt;}
.y1f6{bottom:728.136667pt;}
.y117{bottom:732.936667pt;}
.y6f{bottom:738.095867pt;}
.y19e{bottom:741.269200pt;}
.y17a{bottom:742.070133pt;}
.y13a{bottom:742.136667pt;}
.yd5{bottom:742.895867pt;}
.y1d4{bottom:744.250533pt;}
.y1f5{bottom:744.403333pt;}
.y4b{bottom:744.506533pt;}
.yf6{bottom:744.522533pt;}
.y92{bottom:745.295867pt;}
.y27{bottom:746.069200pt;}
.y116{bottom:749.470000pt;}
.y179{bottom:758.336800pt;}
.y6e{bottom:758.895867pt;}
.y1f4{bottom:760.670000pt;}
.y19d{bottom:761.541200pt;}
.yd4{bottom:762.895867pt;}
.y139{bottom:763.670000pt;}
.y1d3{bottom:763.978533pt;}
.y4a{bottom:764.234533pt;}
.yf5{bottom:764.250533pt;}
.y1bc{bottom:764.895733pt;}
.y91{bottom:764.895867pt;}
.y26{bottom:765.541200pt;}
.y115{bottom:766.003333pt;}
.y138{bottom:779.536667pt;}
.y6d{bottom:779.695867pt;}
.y178{bottom:780.270133pt;}
.y19c{bottom:781.813200pt;}
.y114{bottom:782.536667pt;}
.y4{bottom:782.895867pt;}
.y1d2{bottom:783.706533pt;}
.y49{bottom:783.978533pt;}
.y90{bottom:784.495867pt;}
.y25{bottom:785.013200pt;}
.y274{bottom:796.229200pt;}
.y113{bottom:799.070000pt;}
.y6c{bottom:800.495867pt;}
.y137{bottom:801.070000pt;}
.y19b{bottom:802.085200pt;}
.yd3{bottom:802.895867pt;}
.y1d1{bottom:803.434533pt;}
.y48{bottom:803.706533pt;}
.y8f{bottom:804.095867pt;}
.y24{bottom:804.485200pt;}
.y3{bottom:809.562533pt;}
.y6b{bottom:821.295867pt;}
.y19a{bottom:822.357200pt;}
.yd2{bottom:822.895867pt;}
.y112{bottom:823.157200pt;}
.y1d0{bottom:823.162533pt;}
.y47{bottom:823.434533pt;}
.y8e{bottom:823.695867pt;}
.y23{bottom:823.957200pt;}
.y136{bottom:824.495867pt;}
.y2{bottom:836.229200pt;}
.y6a{bottom:842.095867pt;}
.y199{bottom:842.629200pt;}
.yd1{bottom:842.895867pt;}
.y111{bottom:843.029200pt;}
.y46{bottom:843.162533pt;}
.y8d{bottom:843.295867pt;}
.y22{bottom:843.429200pt;}
.y135{bottom:843.695867pt;}
.y273{bottom:849.562533pt;}
.h7{height:21.894141pt;}
.ha{height:26.945443pt;}
.hc{height:33.117188pt;}
.hf{height:35.456000pt;}
.h8{height:36.229167pt;}
.hb{height:40.757812pt;}
.hd{height:44.320000pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h6{height:45.531250pt;}
.he{height:49.815104pt;}
.h5{height:54.343750pt;}
.h9{height:54.344817pt;}
.h3{height:90.572917pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x4{left:78.897600pt;}
.x8{left:88.497600pt;}
.x6{left:92.126000pt;}
.x2{left:100.000000pt;}
.xb{left:105.354267pt;}
.x7{left:109.600000pt;}
.x3{left:113.228400pt;}
.xd{left:118.582667pt;}
.x9{left:126.456667pt;}
.xc{left:128.047600pt;}
.x5{left:138.884267pt;}
.xa{left:149.150000pt;}
.x1{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; }
  