
    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_e503eeae5560e3f8f35e18b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_8f018859fe2ac784bc280ae4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_beb1e956115dd9e709716945.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_47334d6cae7c66addd5e66a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e57c11f0e97e550085b5fd3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_194852485cfd3245746a3837.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_f5d2763b104a3e546c62c4f4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_bf1b5422c0ab97663a95ec2d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3a803595d913a0650ebded40.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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_7bb6d8ef8e08ae327cf3205e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_5604dbc593bd1e456ae56be4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_f2463ce3c71d429c6c042a23.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_346cca0d89306bbbb0661d90.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls37{letter-spacing:-1.203840px;}
.ls40{letter-spacing:-0.950400px;}
.ls12{letter-spacing:-0.936000px;}
.ls1d{letter-spacing:-0.758160px;}
.ls1a{letter-spacing:-0.720000px;}
.ls3a{letter-spacing:-0.648000px;}
.ls1e{letter-spacing:-0.576000px;}
.ls30{letter-spacing:-0.506880px;}
.ls13{letter-spacing:-0.336960px;}
.ls35{letter-spacing:-0.316800px;}
.ls10{letter-spacing:-0.298800px;}
.ls11{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.264960px;}
.lsa{letter-spacing:-0.252720px;}
.ls23{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.133575px;}
.ls9{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.084240px;}
.lsc{letter-spacing:-0.077760px;}
.ls18{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.050688px;}
.ls5{letter-spacing:0.054000px;}
.ls31{letter-spacing:0.063360px;}
.ls25{letter-spacing:0.072000px;}
.lse{letter-spacing:0.077760px;}
.ls2b{letter-spacing:0.119520px;}
.ls24{letter-spacing:0.126720px;}
.ls0{letter-spacing:0.132480px;}
.ls17{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.179280px;}
.ls20{letter-spacing:0.190080px;}
.ls32{letter-spacing:0.200362px;}
.ls38{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.233280px;}
.ls36{letter-spacing:0.239040px;}
.ls19{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.322704px;}
.ls3b{letter-spacing:0.336960px;}
.ls2c{letter-spacing:0.358560px;}
.ls29{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.440000px;}
.ls3d{letter-spacing:1.447200px;}
.ls16{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.880000px;}
.ls3f{letter-spacing:3.047760px;}
.ls14{letter-spacing:3.600000px;}
.ls3e{letter-spacing:4.320000px;}
.ls2f{letter-spacing:5.040000px;}
.ls2e{letter-spacing:5.760000px;}
.ls21{letter-spacing:6.480000px;}
.ls28{letter-spacing:7.200000px;}
.ls3c{letter-spacing:7.207200px;}
.ls1b{letter-spacing:7.920000px;}
.ls27{letter-spacing:8.640000px;}
.ls34{letter-spacing:12.240000px;}
.ls3{letter-spacing:14.742000px;}
.ls41{letter-spacing:54.864000px;}
.ls1c{letter-spacing:64.224000px;}
.ls42{letter-spacing:72.362160px;}
.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;}
}
.ws3{word-spacing:-26.593920px;}
.ws78{word-spacing:-23.755680px;}
.ws5{word-spacing:-23.334480px;}
.ws6{word-spacing:-23.081760px;}
.ws85{word-spacing:-22.660560px;}
.ws3d{word-spacing:-20.304000px;}
.ws88{word-spacing:-19.872000px;}
.ws1d{word-spacing:-18.288000px;}
.ws1c{word-spacing:-18.144000px;}
.ws6d{word-spacing:-18.072000px;}
.ws1b{word-spacing:-18.000000px;}
.ws2e{word-spacing:-17.928000px;}
.ws1a{word-spacing:-17.856000px;}
.ws49{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws61{word-spacing:-16.563251px;}
.ws7f{word-spacing:-15.903360px;}
.ws1{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws55{word-spacing:-9.720000px;}
.ws86{word-spacing:-4.392000px;}
.ws3a{word-spacing:-4.320000px;}
.ws3b{word-spacing:-4.032000px;}
.ws63{word-spacing:-3.801600px;}
.ws52{word-spacing:-3.744000px;}
.ws2b{word-spacing:-3.600000px;}
.ws84{word-spacing:-3.456000px;}
.ws2a{word-spacing:-3.312000px;}
.ws67{word-spacing:-3.294720px;}
.ws2c{word-spacing:-3.024000px;}
.ws68{word-spacing:-2.977920px;}
.ws15{word-spacing:-2.880000px;}
.ws31{word-spacing:-2.592000px;}
.ws45{word-spacing:-2.344320px;}
.ws39{word-spacing:-2.160000px;}
.ws41{word-spacing:-1.872000px;}
.ws44{word-spacing:-1.647360px;}
.ws71{word-spacing:-1.584000px;}
.ws22{word-spacing:-1.440000px;}
.ws2d{word-spacing:-1.152000px;}
.ws50{word-spacing:-0.887040px;}
.ws4a{word-spacing:-0.864000px;}
.ws69{word-spacing:-0.760320px;}
.ws20{word-spacing:-0.720000px;}
.ws60{word-spacing:-0.504000px;}
.ws21{word-spacing:-0.432000px;}
.ws7e{word-spacing:-0.336960px;}
.ws3e{word-spacing:-0.288000px;}
.ws74{word-spacing:-0.216000px;}
.ws66{word-spacing:-0.200362px;}
.ws43{word-spacing:-0.190080px;}
.ws5c{word-spacing:-0.179280px;}
.wsd{word-spacing:-0.155520px;}
.ws3c{word-spacing:-0.144000px;}
.ws73{word-spacing:-0.126720px;}
.ws51{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.wse{word-spacing:0.059760px;}
.ws28{word-spacing:0.072000px;}
.wsb{word-spacing:0.084240px;}
.ws9{word-spacing:0.108000px;}
.ws58{word-spacing:0.144000px;}
.wsc{word-spacing:0.155520px;}
.ws3f{word-spacing:0.216000px;}
.ws5d{word-spacing:0.239040px;}
.wsa{word-spacing:0.252720px;}
.ws82{word-spacing:0.253440px;}
.ws8{word-spacing:0.264960px;}
.ws13{word-spacing:0.288000px;}
.ws38{word-spacing:0.576000px;}
.ws77{word-spacing:0.648000px;}
.ws14{word-spacing:0.720000px;}
.ws27{word-spacing:1.008000px;}
.ws2f{word-spacing:1.095120px;}
.ws72{word-spacing:1.203840px;}
.ws42{word-spacing:1.267200px;}
.ws23{word-spacing:1.296000px;}
.ws19{word-spacing:1.440000px;}
.ws11{word-spacing:1.728000px;}
.ws4f{word-spacing:1.964160px;}
.ws5a{word-spacing:1.972080px;}
.ws53{word-spacing:2.016000px;}
.ws4c{word-spacing:2.027520px;}
.ws65{word-spacing:2.090880px;}
.ws17{word-spacing:2.160000px;}
.ws5b{word-spacing:2.211120px;}
.ws12{word-spacing:2.376000px;}
.ws18{word-spacing:2.448000px;}
.ws81{word-spacing:2.661120px;}
.ws64{word-spacing:2.724480px;}
.ws54{word-spacing:2.736000px;}
.ws7a{word-spacing:2.851200px;}
.ws26{word-spacing:2.880000px;}
.ws59{word-spacing:2.928240px;}
.ws79{word-spacing:3.024000px;}
.ws83{word-spacing:3.107520px;}
.ws40{word-spacing:3.168000px;}
.ws6f{word-spacing:3.406320px;}
.ws7d{word-spacing:3.421440px;}
.ws6c{word-spacing:3.456000px;}
.ws1f{word-spacing:3.600000px;}
.ws6e{word-spacing:3.824640px;}
.ws25{word-spacing:3.888000px;}
.ws47{word-spacing:4.118400px;}
.ws4b{word-spacing:4.176000px;}
.ws10{word-spacing:4.320000px;}
.wsf{word-spacing:4.608000px;}
.ws46{word-spacing:4.878720px;}
.ws62{word-spacing:4.896000px;}
.ws24{word-spacing:5.040000px;}
.ws30{word-spacing:5.328000px;}
.ws37{word-spacing:5.760000px;}
.ws5e{word-spacing:5.832000px;}
.ws36{word-spacing:6.048000px;}
.ws80{word-spacing:6.272640px;}
.ws29{word-spacing:6.480000px;}
.ws57{word-spacing:6.768000px;}
.ws4d{word-spacing:7.032960px;}
.ws4e{word-spacing:7.096320px;}
.ws35{word-spacing:7.200000px;}
.ws5f{word-spacing:7.488000px;}
.ws70{word-spacing:7.776000px;}
.ws34{word-spacing:7.920000px;}
.ws16{word-spacing:8.208000px;}
.ws48{word-spacing:8.640000px;}
.ws7c{word-spacing:8.856000px;}
.ws1e{word-spacing:8.928000px;}
.ws76{word-spacing:9.360000px;}
.ws75{word-spacing:10.368000px;}
.ws32{word-spacing:10.656000px;}
.ws33{word-spacing:10.800000px;}
.ws7b{word-spacing:11.088000px;}
.ws6b{word-spacing:12.240000px;}
.ws6a{word-spacing:12.528000px;}
.ws56{word-spacing:12.960000px;}
.ws87{word-spacing:37.440000px;}
._a{margin-left:-10.600200px;}
._9{margin-left:-4.176000px;}
._6{margin-left:-2.843280px;}
._2{margin-left:-1.063800px;}
._3{width:1.050480px;}
._4{width:2.100960px;}
._b{width:3.155040px;}
._5{width:4.176000px;}
._7{width:5.233680px;}
._8{width:6.598080px;}
._c{width:8.136000px;}
._e{width:9.631800px;}
._1{width:94.338000px;}
._d{width:121.104000px;}
._0{width:731.538000px;}
._f{width:846.000000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fsa{font-size:66.787304px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y11b{bottom:165.408840px;}
.y1cd{bottom:165.420000px;}
.y29b{bottom:169.560000px;}
.y2fd{bottom:170.100000px;}
.y2bd{bottom:170.640000px;}
.y76{bottom:171.000000px;}
.y2f6{bottom:171.180000px;}
.y126{bottom:171.540000px;}
.y1b0{bottom:172.260000px;}
.y2fb{bottom:173.880000px;}
.y302{bottom:174.600000px;}
.y2f8{bottom:176.760000px;}
.y15c{bottom:177.300000px;}
.y23a{bottom:179.998560px;}
.y2fe{bottom:181.260000px;}
.y9f{bottom:181.800000px;}
.y11a{bottom:182.694420px;}
.ye5{bottom:183.780000px;}
.y1f8{bottom:185.400000px;}
.y2ff{bottom:185.760000px;}
.y2fa{bottom:187.020000px;}
.y1cc{bottom:187.920000px;}
.y75{bottom:191.700000px;}
.y2bc{bottom:192.600000px;}
.y29a{bottom:193.320000px;}
.y125{bottom:195.300000px;}
.y1af{bottom:196.020000px;}
.y2fc{bottom:197.100000px;}
.y2e6{bottom:198.000000px;}
.y2f5{bottom:198.180000px;}
.y2d{bottom:198.360000px;}
.y300{bottom:199.260000px;}
.y239{bottom:200.511360px;}
.y15b{bottom:201.060000px;}
.y307{bottom:201.420000px;}
.y301{bottom:201.600000px;}
.y2f7{bottom:203.760000px;}
.y119{bottom:205.200000px;}
.y9e{bottom:205.740000px;}
.ye4{bottom:207.720000px;}
.y170{bottom:208.440000px;}
.y277{bottom:208.980000px;}
.y1f7{bottom:209.340000px;}
.y1e4{bottom:209.700000px;}
.y74{bottom:212.400000px;}
.y1cb{bottom:212.760000px;}
.y2f9{bottom:214.020000px;}
.y188{bottom:214.560000px;}
.y299{bottom:217.080000px;}
.y2e5{bottom:218.700000px;}
.yfc{bottom:219.060000px;}
.y238{bottom:221.214240px;}
.y2c{bottom:222.300000px;}
.ybf{bottom:223.200000px;}
.y15a{bottom:225.000000px;}
.y1ae{bottom:228.960000px;}
.y9d{bottom:229.500000px;}
.y118{bottom:230.040000px;}
.y276{bottom:230.940000px;}
.ye3{bottom:231.480000px;}
.y16f{bottom:232.200000px;}
.y1f6{bottom:233.100000px;}
.y1ca{bottom:233.460000px;}
.y2bb{bottom:236.340000px;}
.y298{bottom:237.780000px;}
.y187{bottom:238.320000px;}
.y142{bottom:238.500000px;}
.y2e4{bottom:239.400000px;}
.y237{bottom:241.917120px;}
.y219{bottom:242.820000px;}
.yfb{bottom:243.000000px;}
.y73{bottom:245.340000px;}
.y2b{bottom:246.060000px;}
.ybe{bottom:246.960000px;}
.y117{bottom:250.740000px;}
.y50{bottom:251.820000px;}
.y1ad{bottom:252.720000px;}
.y9c{bottom:253.260000px;}
.y1f5{bottom:256.860000px;}
.y159{bottom:257.760000px;}
.y2ba{bottom:258.300000px;}
.y297{bottom:258.480000px;}
.y2e3{bottom:260.100000px;}
.y186{bottom:262.080000px;}
.y141{bottom:262.260000px;}
.y236{bottom:262.620000px;}
.ye2{bottom:264.240000px;}
.y16e{bottom:265.140000px;}
.y72{bottom:266.040000px;}
.y1e3{bottom:266.220000px;}
.y218{bottom:266.580000px;}
.yfa{bottom:266.760000px;}
.ybd{bottom:270.720000px;}
.y275{bottom:274.680000px;}
.y4f{bottom:275.580000px;}
.y1ac{bottom:276.480000px;}
.y214{bottom:278.640000px;}
.y2a{bottom:278.820000px;}
.y296{bottom:279.180000px;}
.y2b9{bottom:280.260000px;}
.y2e2{bottom:280.800000px;}
.y158{bottom:281.520000px;}
.y269{bottom:282.780000px;}
.y258{bottom:284.760000px;}
.y9b{bottom:286.020000px;}
.y71{bottom:286.740000px;}
.ye1{bottom:288.000000px;}
.y16d{bottom:288.900000px;}
.y1f4{bottom:289.081440px;}
.y1e2{bottom:289.980000px;}
.yf9{bottom:290.520000px;}
.y235{bottom:292.860000px;}
.ybc{bottom:294.480000px;}
.y116{bottom:294.660000px;}
.y185{bottom:294.840000px;}
.y274{bottom:296.640000px;}
.y4e{bottom:299.520000px;}
.y295{bottom:299.880000px;}
.y213{bottom:300.600000px;}
.y2e1{bottom:301.500000px;}
.y2b8{bottom:302.220000px;}
.y29{bottom:302.580000px;}
.y1c9{bottom:302.940000px;}
.y157{bottom:305.280000px;}
.y268{bottom:306.540000px;}
.y70{bottom:307.440000px;}
.y257{bottom:308.520000px;}
.y1ab{bottom:309.240000px;}
.y1f3{bottom:309.784320px;}
.y9a{bottom:309.960000px;}
.ye0{bottom:311.940000px;}
.y16c{bottom:312.660000px;}
.y1e1{bottom:313.920000px;}
.y234{bottom:316.620000px;}
.ybb{bottom:318.420000px;}
.y184{bottom:318.780000px;}
.y294{bottom:320.580000px;}
.y2e0{bottom:322.200000px;}
.y212{bottom:322.560000px;}
.y4d{bottom:323.280000px;}
.y2b7{bottom:324.000000px;}
.y28{bottom:326.520000px;}
.y1c8{bottom:326.700000px;}
.y156{bottom:329.220000px;}
.y267{bottom:330.300000px;}
.y1f2{bottom:330.487200px;}
.y256{bottom:332.460000px;}
.y1aa{bottom:333.180000px;}
.y99{bottom:333.720000px;}
.y16b{bottom:336.420000px;}
.y1e0{bottom:337.680000px;}
.y6f{bottom:340.200000px;}
.y273{bottom:340.380000px;}
.y233{bottom:340.560000px;}
.y293{bottom:341.280000px;}
.y115{bottom:342.360000px;}
.y183{bottom:342.540000px;}
.y140{bottom:342.720000px;}
.y2df{bottom:342.900000px;}
.y211{bottom:344.520000px;}
.ydf{bottom:344.700000px;}
.y2b6{bottom:345.960000px;}
.y4c{bottom:347.040000px;}
.yf8{bottom:347.220000px;}
.y27{bottom:350.280000px;}
.y1c7{bottom:350.460000px;}
.y1f1{bottom:351.000000px;}
.yba{bottom:351.180000px;}
.y266{bottom:354.060000px;}
.y255{bottom:356.220000px;}
.y1a9{bottom:356.940000px;}
.y98{bottom:357.480000px;}
.y16a{bottom:360.360000px;}
.y1df{bottom:361.440000px;}
.y155{bottom:361.980000px;}
.y272{bottom:362.340000px;}
.y2de{bottom:363.600000px;}
.y6e{bottom:363.960000px;}
.y232{bottom:364.320000px;}
.y182{bottom:366.300000px;}
.y13f{bottom:366.480000px;}
.y2b5{bottom:367.920000px;}
.yde{bottom:368.460000px;}
.y4b{bottom:370.800000px;}
.yf7{bottom:370.980000px;}
.y1c6{bottom:374.400000px;}
.yb9{bottom:374.940000px;}
.y114{bottom:375.120000px;}
.y97{bottom:378.180000px;}
.y254{bottom:379.980000px;}
.y26{bottom:380.520000px;}
.y1a8{bottom:380.700000px;}
.y1f0{bottom:381.420000px;}
.y292{bottom:382.680000px;}
.y169{bottom:384.120000px;}
.y2dd{bottom:384.300000px;}
.y154{bottom:385.740000px;}
.y265{bottom:387.000000px;}
.y6d{bottom:387.720000px;}
.y210{bottom:388.260000px;}
.y2b4{bottom:389.700000px;}
.y181{bottom:390.060000px;}
.y13e{bottom:390.240000px;}
.ydd{bottom:392.220000px;}
.y1de{bottom:394.200000px;}
.y4a{bottom:394.740000px;}
.y231{bottom:397.080000px;}
.y306{bottom:397.440000px;}
.y1c5{bottom:398.160000px;}
.yb8{bottom:398.700000px;}
.y96{bottom:398.880000px;}
.y291{bottom:403.380000px;}
.yf6{bottom:403.740000px;}
.y1a7{bottom:404.460000px;}
.y2dc{bottom:405.000000px;}
.y1ef{bottom:405.180000px;}
.y271{bottom:406.080000px;}
.y153{bottom:409.500000px;}
.y20f{bottom:410.220000px;}
.y264{bottom:410.760000px;}
.y2b3{bottom:411.660000px;}
.y180{bottom:414.000000px;}
.ydc{bottom:416.160000px;}
.y168{bottom:416.880000px;}
.y6c{bottom:417.960000px;}
.y1dd{bottom:418.140000px;}
.y124{bottom:418.500000px;}
.y95{bottom:419.580000px;}
.y230{bottom:420.840000px;}
.y1c4{bottom:421.920000px;}
.yb7{bottom:422.640000px;}
.y13d{bottom:423.180000px;}
.y290{bottom:424.080000px;}
.y305{bottom:424.440000px;}
.y25{bottom:425.160000px;}
.y2db{bottom:425.700000px;}
.y49{bottom:427.500000px;}
.y1a6{bottom:428.400000px;}
.y1ee{bottom:428.940000px;}
.y20e{bottom:432.000000px;}
.y152{bottom:433.440000px;}
.y2b2{bottom:433.620000px;}
.y263{bottom:434.520000px;}
.y17f{bottom:437.760000px;}
.y270{bottom:438.840000px;}
.y94{bottom:440.280000px;}
.y167{bottom:440.640000px;}
.y1dc{bottom:441.900000px;}
.y22f{bottom:444.780000px;}
.y24{bottom:445.860000px;}
.y2da{bottom:446.400000px;}
.y113{bottom:446.580000px;}
.y13c{bottom:446.940000px;}
.ydb{bottom:448.920000px;}
.y48{bottom:451.260000px;}
.yf5{bottom:451.440000px;}
.y1ed{bottom:452.700000px;}
.y20d{bottom:453.960000px;}
.yb6{bottom:454.665600px;}
.y1c3{bottom:454.680000px;}
.y2b1{bottom:455.400000px;}
.y253{bottom:457.920000px;}
.y262{bottom:458.280000px;}
.y93{bottom:460.980000px;}
.y1a5{bottom:461.160000px;}
.y17e{bottom:461.520000px;}
.y26f{bottom:462.780000px;}
.y166{bottom:464.580000px;}
.y28f{bottom:465.480000px;}
.y6b{bottom:465.660000px;}
.y151{bottom:466.200000px;}
.y23{bottom:466.560000px;}
.y2d9{bottom:467.100000px;}
.y22e{bottom:468.540000px;}
.y13b{bottom:470.700000px;}
.yda{bottom:472.680000px;}
.y1db{bottom:474.660000px;}
.y47{bottom:475.020000px;}
.yf4{bottom:475.200000px;}
.yb5{bottom:475.368480px;}
.y1c2{bottom:478.440000px;}
.y112{bottom:479.340000px;}
.y92{bottom:481.680000px;}
.y20c{bottom:483.480000px;}
.y217{bottom:484.020000px;}
.y1a4{bottom:484.920000px;}
.y17d{bottom:485.280000px;}
.y1ec{bottom:485.640000px;}
.y28e{bottom:486.180000px;}
.y2d8{bottom:487.800000px;}
.y165{bottom:488.340000px;}
.y6a{bottom:489.600000px;}
.y150{bottom:489.960000px;}
.y261{bottom:490.491360px;}
.y22d{bottom:492.300000px;}
.y26e{bottom:492.840000px;}
.y13a{bottom:494.460000px;}
.yb4{bottom:496.071360px;}
.yd9{bottom:496.440000px;}
.y1da{bottom:498.420000px;}
.yf3{bottom:498.960000px;}
.y22{bottom:499.320000px;}
.y91{bottom:502.380000px;}
.y111{bottom:503.100000px;}
.y252{bottom:505.620000px;}
.y28d{bottom:506.880000px;}
.y46{bottom:507.780000px;}
.y2d7{bottom:508.500000px;}
.y1a3{bottom:508.680000px;}
.y1eb{bottom:509.400000px;}
.y260{bottom:511.194240px;}
.y164{bottom:512.100000px;}
.y14f{bottom:513.720000px;}
.y17c{bottom:514.800000px;}
.yb3{bottom:516.774240px;}
.y139{bottom:518.400000px;}
.yd8{bottom:520.380000px;}
.y1d9{bottom:522.180000px;}
.y69{bottom:522.360000px;}
.yf2{bottom:522.720000px;}
.y21{bottom:523.080000px;}
.y22c{bottom:525.060000px;}
.y1c1{bottom:526.140000px;}
.y110{bottom:526.860000px;}
.y28c{bottom:527.580000px;}
.y20b{bottom:528.480000px;}
.y2d6{bottom:529.200000px;}
.y251{bottom:529.380000px;}
.y45{bottom:531.720000px;}
.y25f{bottom:531.897120px;}
.y1a2{bottom:532.620000px;}
.y1ea{bottom:533.160000px;}
.y17b{bottom:535.500000px;}
.y2b0{bottom:535.860000px;}
.yb2{bottom:537.477120px;}
.y14e{bottom:537.660000px;}
.y26d{bottom:540.720000px;}
.y138{bottom:542.160000px;}
.y90{bottom:543.780000px;}
.yd7{bottom:544.140000px;}
.y163{bottom:545.940000px;}
.y68{bottom:546.120000px;}
.yf1{bottom:546.660000px;}
.y20{bottom:546.840000px;}
.y28b{bottom:548.280000px;}
.y22b{bottom:549.000000px;}
.y2d5{bottom:549.900000px;}
.y10f{bottom:550.800000px;}
.y20a{bottom:552.240000px;}
.y25e{bottom:552.600000px;}
.y250{bottom:553.140000px;}
.y44{bottom:555.480000px;}
.y123{bottom:555.660000px;}
.y1a1{bottom:556.380000px;}
.y1e9{bottom:556.920000px;}
.yb1{bottom:558.180000px;}
.y1c0{bottom:558.900000px;}
.y2af{bottom:559.620000px;}
.y8f{bottom:564.480000px;}
.y162{bottom:567.540000px;}
.y28a{bottom:568.980000px;}
.y67{bottom:569.880000px;}
.y2d4{bottom:570.600000px;}
.y1f{bottom:570.780000px;}
.y14d{bottom:571.320000px;}
.y22a{bottom:572.760000px;}
.y10e{bottom:574.560000px;}
.y137{bottom:574.920000px;}
.y209{bottom:576.000000px;}
.yd6{bottom:576.361440px;}
.y1d8{bottom:578.880000px;}
.y216{bottom:579.240000px;}
.yf0{bottom:579.420000px;}
.y179{bottom:579.957120px;}
.y17a{bottom:579.960000px;}
.y1a0{bottom:580.140000px;}
.y1e8{bottom:580.680000px;}
.y1bf{bottom:582.660000px;}
.y25d{bottom:582.840000px;}
.y8e{bottom:585.180000px;}
.y24f{bottom:585.900000px;}
.y43{bottom:588.240000px;}
.yb0{bottom:588.420000px;}
.y161{bottom:589.320000px;}
.y289{bottom:589.680000px;}
.y2ae{bottom:589.860000px;}
.y2d3{bottom:591.300000px;}
.y14c{bottom:593.100000px;}
.y229{bottom:596.520000px;}
.yd5{bottom:596.874240px;}
.y136{bottom:598.680000px;}
.y208{bottom:599.940000px;}
.y177{bottom:600.652800px;}
.y178{bottom:600.660000px;}
.y66{bottom:602.640000px;}
.yef{bottom:603.180000px;}
.y1e{bottom:603.540000px;}
.y19f{bottom:603.900000px;}
.y8d{bottom:605.880000px;}
.y25c{bottom:606.600000px;}
.y10d{bottom:607.320000px;}
.y24e{bottom:609.660000px;}
.y288{bottom:610.380000px;}
.y160{bottom:611.100000px;}
.y2d2{bottom:611.820000px;}
.y42{bottom:612.000000px;}
.yaf{bottom:612.180000px;}
.y1e7{bottom:614.700000px;}
.y1be{bottom:616.680000px;}
.yd4{bottom:617.577120px;}
.y228{bottom:620.280000px;}
.y176{bottom:621.165600px;}
.y14b{bottom:622.440000px;}
.y135{bottom:622.620000px;}
.y207{bottom:623.700000px;}
.y1d{bottom:624.240000px;}
.y1d7{bottom:626.400000px;}
.y65{bottom:626.580000px;}
.y19e{bottom:627.660000px;}
.y10c{bottom:631.080000px;}
.y2d1{bottom:632.520000px;}
.y15f{bottom:632.700000px;}
.y41{bottom:635.940000px;}
.y1e6{bottom:636.660000px;}
.y122{bottom:636.840000px;}
.y2ad{bottom:637.560000px;}
.yd3{bottom:638.280000px;}
.y1bd{bottom:638.640000px;}
.y25b{bottom:638.821440px;}
.y175{bottom:641.868480px;}
.y24d{bottom:642.600000px;}
.y8c{bottom:647.280000px;}
.y64{bottom:650.340000px;}
.y19d{bottom:651.600000px;}
.y227{bottom:653.220000px;}
.y10b{bottom:655.020000px;}
.y134{bottom:655.380000px;}
.y206{bottom:656.460000px;}
.y1c{bottom:657.000000px;}
.y1e5{bottom:658.440000px;}
.y121{bottom:658.620000px;}
.y25a{bottom:659.524320px;}
.y40{bottom:659.700000px;}
.yee{bottom:659.880000px;}
.y1bc{bottom:660.420000px;}
.y2ac{bottom:661.500000px;}
.y15e{bottom:662.220000px;}
.y174{bottom:662.571360px;}
.y287{bottom:663.840000px;}
.y14a{bottom:665.460000px;}
.y24c{bottom:666.360000px;}
.y8b{bottom:667.980000px;}
.yd2{bottom:668.520000px;}
.y26c{bottom:668.700000px;}
.yae{bottom:668.880000px;}
.y2d0{bottom:673.920000px;}
.y63{bottom:674.100000px;}
.y19c{bottom:675.360000px;}
.y226{bottom:676.980000px;}
.y133{bottom:679.140000px;}
.y205{bottom:680.220000px;}
.y259{bottom:680.227200px;}
.y120{bottom:680.400000px;}
.y1bb{bottom:682.380000px;}
.y1d6{bottom:683.100000px;}
.y173{bottom:683.274240px;}
.y3f{bottom:683.460000px;}
.yed{bottom:683.640000px;}
.y2ab{bottom:685.260000px;}
.y10a{bottom:687.780000px;}
.y8a{bottom:688.680000px;}
.y1b{bottom:689.760000px;}
.y24b{bottom:690.120000px;}
.yd1{bottom:692.460000px;}
.yad{bottom:692.640000px;}
.y2cf{bottom:694.620000px;}
.y62{bottom:697.860000px;}
.y149{bottom:698.220000px;}
.y225{bottom:700.740000px;}
.y132{bottom:702.900000px;}
.y172{bottom:703.977120px;}
.y204{bottom:704.160000px;}
.y1ba{bottom:704.340000px;}
.y1d5{bottom:706.860000px;}
.y3e{bottom:707.220000px;}
.yec{bottom:707.400000px;}
.y19b{bottom:708.120000px;}
.y2aa{bottom:709.020000px;}
.y89{bottom:709.380000px;}
.y11f{bottom:709.920000px;}
.y109{bottom:711.540000px;}
.y1a{bottom:713.700000px;}
.y24a{bottom:713.880000px;}
.y2ce{bottom:715.320000px;}
.y26b{bottom:716.220000px;}
.yac{bottom:716.400000px;}
.y148{bottom:722.160000px;}
.y2f4{bottom:723.780000px;}
.y224{bottom:724.500000px;}
.y171{bottom:724.680000px;}
.yd0{bottom:725.220000px;}
.y131{bottom:726.840000px;}
.y88{bottom:730.080000px;}
.y1d4{bottom:730.620000px;}
.y61{bottom:730.800000px;}
.y15d{bottom:731.160000px;}
.y19a{bottom:731.880000px;}
.y286{bottom:732.240000px;}
.y1b9{bottom:733.680000px;}
.y108{bottom:735.300000px;}
.y2cd{bottom:736.020000px;}
.y203{bottom:736.920000px;}
.y19{bottom:737.460000px;}
.y249{bottom:737.820000px;}
.y3d{bottom:740.160000px;}
.y2a9{bottom:741.780000px;}
.y2f3{bottom:744.480000px;}
.y147{bottom:745.920000px;}
.y223{bottom:748.260000px;}
.y87{bottom:750.780000px;}
.y285{bottom:752.940000px;}
.y60{bottom:754.560000px;}
.y11e{bottom:754.920000px;}
.y199{bottom:755.820000px;}
.y2cc{bottom:756.720000px;}
.ycf{bottom:757.980000px;}
.y130{bottom:759.600000px;}
.y202{bottom:760.680000px;}
.y18{bottom:761.220000px;}
.y248{bottom:761.580000px;}
.y3c{bottom:763.920000px;}
.y2f2{bottom:765.180000px;}
.y2a8{bottom:765.720000px;}
.y107{bottom:768.060000px;}
.y86{bottom:771.480000px;}
.y284{bottom:773.640000px;}
.y2cb{bottom:777.420000px;}
.y5f{bottom:778.320000px;}
.y146{bottom:778.680000px;}
.y198{bottom:779.580000px;}
.y222{bottom:781.200000px;}
.yce{bottom:781.740000px;}
.y12f{bottom:783.360000px;}
.y201{bottom:784.440000px;}
.y247{bottom:785.340000px;}
.y2f1{bottom:785.880000px;}
.y3b{bottom:787.680000px;}
.yab{bottom:787.860000px;}
.y2a7{bottom:789.480000px;}
.y106{bottom:792.000000px;}
.y85{bottom:792.180000px;}
.y17{bottom:793.980000px;}
.y283{bottom:794.340000px;}
.y26a{bottom:796.680000px;}
.y2ca{bottom:798.120000px;}
.y5e{bottom:802.080000px;}
.y145{bottom:802.440000px;}
.y1b8{bottom:802.620000px;}
.y197{bottom:803.340000px;}
.y221{bottom:804.960000px;}
.ycd{bottom:805.680000px;}
.y2f0{bottom:806.580000px;}
.y12e{bottom:807.120000px;}
.y1d3{bottom:811.080000px;}
.y3a{bottom:811.440000px;}
.yeb{bottom:811.620000px;}
.y84{bottom:812.880000px;}
.y2a6{bottom:813.240000px;}
.y16{bottom:814.680000px;}
.y282{bottom:815.040000px;}
.y105{bottom:815.760000px;}
.y200{bottom:817.380000px;}
.y246{bottom:817.554240px;}
.y2c9{bottom:818.820000px;}
.y215{bottom:820.440000px;}
.yaa{bottom:820.620000px;}
.y5d{bottom:826.020000px;}
.y144{bottom:826.380000px;}
.y196{bottom:827.100000px;}
.y2ef{bottom:827.280000px;}
.ycc{bottom:829.440000px;}
.y12d{bottom:830.880000px;}
.y83{bottom:833.580000px;}
.y2a5{bottom:833.940000px;}
.y1d2{bottom:834.840000px;}
.y15{bottom:835.380000px;}
.y281{bottom:835.740000px;}
.y220{bottom:837.720000px;}
.y245{bottom:838.257120px;}
.y104{bottom:839.520000px;}
.y1ff{bottom:841.140000px;}
.ya9{bottom:844.380000px;}
.y2ee{bottom:847.800000px;}
.y143{bottom:850.140000px;}
.y195{bottom:851.040000px;}
.y2a4{bottom:854.640000px;}
.y12c{bottom:854.820000px;}
.y14{bottom:856.080000px;}
.y280{bottom:856.440000px;}
.y5c{bottom:858.780000px;}
.y244{bottom:858.960000px;}
.y39{bottom:859.140000px;}
.y2c8{bottom:860.220000px;}
.y21f{bottom:861.480000px;}
.ycb{bottom:862.200000px;}
.y82{bottom:866.340000px;}
.ya8{bottom:868.140000px;}
.y2ed{bottom:868.500000px;}
.y103{bottom:873.360000px;}
.y1b7{bottom:873.900000px;}
.y2a3{bottom:875.340000px;}
.y13{bottom:876.780000px;}
.y27f{bottom:877.140000px;}
.y2c7{bottom:880.920000px;}
.y5b{bottom:882.540000px;}
.y38{bottom:882.900000px;}
.y194{bottom:883.800000px;}
.y21e{bottom:885.420000px;}
.yca{bottom:885.960000px;}
.y81{bottom:887.040000px;}
.y12b{bottom:888.480000px;}
.y243{bottom:889.200000px;}
.y2ec{bottom:890.280000px;}
.y11d{bottom:891.900000px;}
.ya7{bottom:892.080000px;}
.y1d1{bottom:892.620000px;}
.y1b6{bottom:894.600000px;}
.y102{bottom:894.960000px;}
.y2a2{bottom:896.040000px;}
.y12{bottom:897.480000px;}
.y1fe{bottom:897.660000px;}
.y27e{bottom:897.840000px;}
.y2c6{bottom:901.620000px;}
.y5a{bottom:906.300000px;}
.y37{bottom:906.660000px;}
.y193{bottom:907.560000px;}
.y80{bottom:907.740000px;}
.yc9{bottom:909.900000px;}
.y12a{bottom:910.260000px;}
.y2eb{bottom:911.340000px;}
.y242{bottom:912.960000px;}
.y1d0{bottom:914.580000px;}
.y1b5{bottom:915.300000px;}
.y11c{bottom:915.660000px;}
.ya6{bottom:915.840000px;}
.y101{bottom:916.740000px;}
.y21d{bottom:918.180000px;}
.y27d{bottom:918.540000px;}
.y11{bottom:920.160000px;}
.y1fd{bottom:921.600000px;}
.y2c5{bottom:922.320000px;}
.y7f{bottom:928.440000px;}
.y59{bottom:930.240000px;}
.y36{bottom:930.600000px;}
.y192{bottom:931.320000px;}
.y129{bottom:932.040000px;}
.yc8{bottom:933.660000px;}
.y1b4{bottom:936.000000px;}
.y1cf{bottom:936.360000px;}
.y241{bottom:936.720000px;}
.y2a1{bottom:937.440000px;}
.y100{bottom:938.520000px;}
.y27c{bottom:939.240000px;}
.ya5{bottom:939.600000px;}
.y21c{bottom:941.940000px;}
.y10{bottom:942.300000px;}
.y2c4{bottom:943.020000px;}
.y1fc{bottom:945.360000px;}
.y2ea{bottom:952.740000px;}
.y128{bottom:953.640000px;}
.y58{bottom:954.000000px;}
.y35{bottom:954.360000px;}
.y191{bottom:955.260000px;}
.y1b3{bottom:956.700000px;}
.yc7{bottom:957.420000px;}
.y2a0{bottom:958.140000px;}
.y27b{bottom:959.940000px;}
.yff{bottom:960.300000px;}
.y7e{bottom:961.200000px;}
.yea{bottom:963.360000px;}
.y2c3{bottom:963.720000px;}
.y21b{bottom:965.700000px;}
.y1ce{bottom:965.880000px;}
.y240{bottom:969.660000px;}
.ya4{bottom:973.440000px;}
.y127{bottom:975.420000px;}
.y57{bottom:977.760000px;}
.y1fb{bottom:978.120000px;}
.y29f{bottom:978.840000px;}
.y190{bottom:979.020000px;}
.y27a{bottom:980.640000px;}
.yc6{bottom:981.180000px;}
.y7d{bottom:981.900000px;}
.y2c2{bottom:984.420000px;}
.yf{bottom:985.143600px;}
.y34{bottom:987.120000px;}
.yfe{bottom:989.640000px;}
.y23f{bottom:993.420000px;}
.y2e9{bottom:994.140000px;}
.ya3{bottom:995.040000px;}
.y21a{bottom:995.940000px;}
.ye9{bottom:997.200000px;}
.y29e{bottom:999.540000px;}
.y1fa{bottom:1001.880000px;}
.y7c{bottom:1002.600000px;}
.y18f{bottom:1002.780000px;}
.yc5{bottom:1004.940000px;}
.y2c1{bottom:1005.120000px;}
.ye{bottom:1008.899280px;}
.y56{bottom:1010.520000px;}
.y33{bottom:1010.880000px;}
.y1b2{bottom:1013.400000px;}
.y2e8{bottom:1014.660000px;}
.ya2{bottom:1016.820000px;}
.y23e{bottom:1017.180000px;}
.ye8{bottom:1018.980000px;}
.y29d{bottom:1020.240000px;}
.y7b{bottom:1023.300000px;}
.y1f9{bottom:1025.640000px;}
.y18e{bottom:1026.540000px;}
.yc4{bottom:1028.880000px;}
.yd{bottom:1032.480000px;}
.y55{bottom:1034.460000px;}
.y32{bottom:1034.640000px;}
.y2c0{bottom:1035.360000px;}
.y279{bottom:1037.160000px;}
.ye7{bottom:1040.580000px;}
.y23d{bottom:1040.940000px;}
.y1b1{bottom:1043.640000px;}
.y7a{bottom:1044.000000px;}
.y304{bottom:1045.800000px;}
.ya1{bottom:1046.340000px;}
.y2e7{bottom:1056.060000px;}
.y54{bottom:1058.220000px;}
.y31{bottom:1058.580000px;}
.y18d{bottom:1058.758560px;}
.yc3{bottom:1061.640000px;}
.y23c{bottom:1064.880000px;}
.y278{bottom:1067.400000px;}
.yfd{bottom:1067.580000px;}
.ye6{bottom:1070.100000px;}
.y79{bottom:1076.760000px;}
.y18c{bottom:1079.461440px;}
.y53{bottom:1081.980000px;}
.y30{bottom:1082.340000px;}
.y2bf{bottom:1083.060000px;}
.yc{bottom:1083.406320px;}
.yc2{bottom:1085.400000px;}
.y23b{bottom:1088.640000px;}
.ya0{bottom:1091.340000px;}
.y29c{bottom:1094.400000px;}
.y78{bottom:1097.460000px;}
.y18b{bottom:1100.164320px;}
.y52{bottom:1105.740000px;}
.y303{bottom:1107.900000px;}
.yb{bottom:1108.973160px;}
.yc1{bottom:1109.160000px;}
.y2f{bottom:1115.100000px;}
.y2be{bottom:1117.080000px;}
.y77{bottom:1118.160000px;}
.y18a{bottom:1120.867200px;}
.ya{bottom:1134.540000px;}
.y51{bottom:1135.980000px;}
.yc0{bottom:1138.680000px;}
.y2e{bottom:1138.860000px;}
.y189{bottom:1141.380000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h5{height:32.758500px;}
.h11{height:34.114922px;}
.h3{height:38.759766px;}
.he{height:47.520000px;}
.h1a{height:47.988281px;}
.ha{height:48.796875px;}
.h9{height:48.905156px;}
.h19{height:49.651200px;}
.h18{height:49.674240px;}
.h14{height:49.680000px;}
.h16{height:49.685760px;}
.hf{height:49.737600px;}
.h13{height:50.090478px;}
.h15{height:52.417969px;}
.h12{height:52.435898px;}
.hd{height:52.593750px;}
.h1b{height:58.121719px;}
.h8{height:58.921875px;}
.hb{height:61.329023px;}
.h17{height:61.534687px;}
.h4{height:63.175781px;}
.hc{height:63.351562px;}
.h7{height:63.635625px;}
.h6{height:68.938594px;}
.h10{height:69.687773px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:29.881500px;}
.w3{width:38.880000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.615500px;}
.x1{left:132.300000px;}
.xe{left:154.620000px;}
.x16{left:170.100000px;}
.x6{left:172.260000px;}
.x9{left:174.420000px;}
.xf{left:181.620000px;}
.x13{left:187.020000px;}
.x12{left:204.840000px;}
.x14{left:208.620000px;}
.x15{left:244.620000px;}
.x7{left:247.507380px;}
.x4{left:297.180000px;}
.x10{left:343.620000px;}
.x8{left:365.232780px;}
.xd{left:367.740000px;}
.xb{left:431.630640px;}
.xa{left:445.316400px;}
.x5{left:466.740000px;}
.x2{left:533.331000px;}
.xc{left:567.360000px;}
.x11{left:762.300000px;}
.x19{left:809.460000px;}
.x1c{left:813.780000px;}
.x1a{left:816.300000px;}
.x18{left:820.620000px;}
.x1b{left:822.780000px;}
.x17{left:829.620000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls37{letter-spacing:-1.070080pt;}
.ls40{letter-spacing:-0.844800pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls1d{letter-spacing:-0.673920pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls3a{letter-spacing:-0.576000pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls30{letter-spacing:-0.450560pt;}
.ls13{letter-spacing:-0.299520pt;}
.ls35{letter-spacing:-0.281600pt;}
.ls10{letter-spacing:-0.265600pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.235520pt;}
.lsa{letter-spacing:-0.224640pt;}
.ls23{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.118733pt;}
.ls9{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.074880pt;}
.lsc{letter-spacing:-0.069120pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.045056pt;}
.ls5{letter-spacing:0.048000pt;}
.ls31{letter-spacing:0.056320pt;}
.ls25{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.069120pt;}
.ls2b{letter-spacing:0.106240pt;}
.ls24{letter-spacing:0.112640pt;}
.ls0{letter-spacing:0.117760pt;}
.ls17{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.159360pt;}
.ls20{letter-spacing:0.168960pt;}
.ls32{letter-spacing:0.178099pt;}
.ls38{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.207360pt;}
.ls36{letter-spacing:0.212480pt;}
.ls19{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.286848pt;}
.ls3b{letter-spacing:0.299520pt;}
.ls2c{letter-spacing:0.318720pt;}
.ls29{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.280000pt;}
.ls3d{letter-spacing:1.286400pt;}
.ls16{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.560000pt;}
.ls3f{letter-spacing:2.709120pt;}
.ls14{letter-spacing:3.200000pt;}
.ls3e{letter-spacing:3.840000pt;}
.ls2f{letter-spacing:4.480000pt;}
.ls2e{letter-spacing:5.120000pt;}
.ls21{letter-spacing:5.760000pt;}
.ls28{letter-spacing:6.400000pt;}
.ls3c{letter-spacing:6.406400pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls27{letter-spacing:7.680000pt;}
.ls34{letter-spacing:10.880000pt;}
.ls3{letter-spacing:13.104000pt;}
.ls41{letter-spacing:48.768000pt;}
.ls1c{letter-spacing:57.088000pt;}
.ls42{letter-spacing:64.321920pt;}
.ws3{word-spacing:-23.639040pt;}
.ws78{word-spacing:-21.116160pt;}
.ws5{word-spacing:-20.741760pt;}
.ws6{word-spacing:-20.517120pt;}
.ws85{word-spacing:-20.142720pt;}
.ws3d{word-spacing:-18.048000pt;}
.ws88{word-spacing:-17.664000pt;}
.ws1d{word-spacing:-16.256000pt;}
.ws1c{word-spacing:-16.128000pt;}
.ws6d{word-spacing:-16.064000pt;}
.ws1b{word-spacing:-16.000000pt;}
.ws2e{word-spacing:-15.936000pt;}
.ws1a{word-spacing:-15.872000pt;}
.ws49{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws61{word-spacing:-14.722890pt;}
.ws7f{word-spacing:-14.136320pt;}
.ws1{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws55{word-spacing:-8.640000pt;}
.ws86{word-spacing:-3.904000pt;}
.ws3a{word-spacing:-3.840000pt;}
.ws3b{word-spacing:-3.584000pt;}
.ws63{word-spacing:-3.379200pt;}
.ws52{word-spacing:-3.328000pt;}
.ws2b{word-spacing:-3.200000pt;}
.ws84{word-spacing:-3.072000pt;}
.ws2a{word-spacing:-2.944000pt;}
.ws67{word-spacing:-2.928640pt;}
.ws2c{word-spacing:-2.688000pt;}
.ws68{word-spacing:-2.647040pt;}
.ws15{word-spacing:-2.560000pt;}
.ws31{word-spacing:-2.304000pt;}
.ws45{word-spacing:-2.083840pt;}
.ws39{word-spacing:-1.920000pt;}
.ws41{word-spacing:-1.664000pt;}
.ws44{word-spacing:-1.464320pt;}
.ws71{word-spacing:-1.408000pt;}
.ws22{word-spacing:-1.280000pt;}
.ws2d{word-spacing:-1.024000pt;}
.ws50{word-spacing:-0.788480pt;}
.ws4a{word-spacing:-0.768000pt;}
.ws69{word-spacing:-0.675840pt;}
.ws20{word-spacing:-0.640000pt;}
.ws60{word-spacing:-0.448000pt;}
.ws21{word-spacing:-0.384000pt;}
.ws7e{word-spacing:-0.299520pt;}
.ws3e{word-spacing:-0.256000pt;}
.ws74{word-spacing:-0.192000pt;}
.ws66{word-spacing:-0.178099pt;}
.ws43{word-spacing:-0.168960pt;}
.ws5c{word-spacing:-0.159360pt;}
.wsd{word-spacing:-0.138240pt;}
.ws3c{word-spacing:-0.128000pt;}
.ws73{word-spacing:-0.112640pt;}
.ws51{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.wse{word-spacing:0.053120pt;}
.ws28{word-spacing:0.064000pt;}
.wsb{word-spacing:0.074880pt;}
.ws9{word-spacing:0.096000pt;}
.ws58{word-spacing:0.128000pt;}
.wsc{word-spacing:0.138240pt;}
.ws3f{word-spacing:0.192000pt;}
.ws5d{word-spacing:0.212480pt;}
.wsa{word-spacing:0.224640pt;}
.ws82{word-spacing:0.225280pt;}
.ws8{word-spacing:0.235520pt;}
.ws13{word-spacing:0.256000pt;}
.ws38{word-spacing:0.512000pt;}
.ws77{word-spacing:0.576000pt;}
.ws14{word-spacing:0.640000pt;}
.ws27{word-spacing:0.896000pt;}
.ws2f{word-spacing:0.973440pt;}
.ws72{word-spacing:1.070080pt;}
.ws42{word-spacing:1.126400pt;}
.ws23{word-spacing:1.152000pt;}
.ws19{word-spacing:1.280000pt;}
.ws11{word-spacing:1.536000pt;}
.ws4f{word-spacing:1.745920pt;}
.ws5a{word-spacing:1.752960pt;}
.ws53{word-spacing:1.792000pt;}
.ws4c{word-spacing:1.802240pt;}
.ws65{word-spacing:1.858560pt;}
.ws17{word-spacing:1.920000pt;}
.ws5b{word-spacing:1.965440pt;}
.ws12{word-spacing:2.112000pt;}
.ws18{word-spacing:2.176000pt;}
.ws81{word-spacing:2.365440pt;}
.ws64{word-spacing:2.421760pt;}
.ws54{word-spacing:2.432000pt;}
.ws7a{word-spacing:2.534400pt;}
.ws26{word-spacing:2.560000pt;}
.ws59{word-spacing:2.602880pt;}
.ws79{word-spacing:2.688000pt;}
.ws83{word-spacing:2.762240pt;}
.ws40{word-spacing:2.816000pt;}
.ws6f{word-spacing:3.027840pt;}
.ws7d{word-spacing:3.041280pt;}
.ws6c{word-spacing:3.072000pt;}
.ws1f{word-spacing:3.200000pt;}
.ws6e{word-spacing:3.399680pt;}
.ws25{word-spacing:3.456000pt;}
.ws47{word-spacing:3.660800pt;}
.ws4b{word-spacing:3.712000pt;}
.ws10{word-spacing:3.840000pt;}
.wsf{word-spacing:4.096000pt;}
.ws46{word-spacing:4.336640pt;}
.ws62{word-spacing:4.352000pt;}
.ws24{word-spacing:4.480000pt;}
.ws30{word-spacing:4.736000pt;}
.ws37{word-spacing:5.120000pt;}
.ws5e{word-spacing:5.184000pt;}
.ws36{word-spacing:5.376000pt;}
.ws80{word-spacing:5.575680pt;}
.ws29{word-spacing:5.760000pt;}
.ws57{word-spacing:6.016000pt;}
.ws4d{word-spacing:6.251520pt;}
.ws4e{word-spacing:6.307840pt;}
.ws35{word-spacing:6.400000pt;}
.ws5f{word-spacing:6.656000pt;}
.ws70{word-spacing:6.912000pt;}
.ws34{word-spacing:7.040000pt;}
.ws16{word-spacing:7.296000pt;}
.ws48{word-spacing:7.680000pt;}
.ws7c{word-spacing:7.872000pt;}
.ws1e{word-spacing:7.936000pt;}
.ws76{word-spacing:8.320000pt;}
.ws75{word-spacing:9.216000pt;}
.ws32{word-spacing:9.472000pt;}
.ws33{word-spacing:9.600000pt;}
.ws7b{word-spacing:9.856000pt;}
.ws6b{word-spacing:10.880000pt;}
.ws6a{word-spacing:11.136000pt;}
.ws56{word-spacing:11.520000pt;}
.ws87{word-spacing:33.280000pt;}
._a{margin-left:-9.422400pt;}
._9{margin-left:-3.712000pt;}
._6{margin-left:-2.527360pt;}
._2{margin-left:-0.945600pt;}
._3{width:0.933760pt;}
._4{width:1.867520pt;}
._b{width:2.804480pt;}
._5{width:3.712000pt;}
._7{width:4.652160pt;}
._8{width:5.864960pt;}
._c{width:7.232000pt;}
._e{width:8.561600pt;}
._1{width:83.856000pt;}
._d{width:107.648000pt;}
._0{width:650.256000pt;}
._f{width:752.000000pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fsa{font-size:59.366493pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y11b{bottom:147.030080pt;}
.y1cd{bottom:147.040000pt;}
.y29b{bottom:150.720000pt;}
.y2fd{bottom:151.200000pt;}
.y2bd{bottom:151.680000pt;}
.y76{bottom:152.000000pt;}
.y2f6{bottom:152.160000pt;}
.y126{bottom:152.480000pt;}
.y1b0{bottom:153.120000pt;}
.y2fb{bottom:154.560000pt;}
.y302{bottom:155.200000pt;}
.y2f8{bottom:157.120000pt;}
.y15c{bottom:157.600000pt;}
.y23a{bottom:159.998720pt;}
.y2fe{bottom:161.120000pt;}
.y9f{bottom:161.600000pt;}
.y11a{bottom:162.395040pt;}
.ye5{bottom:163.360000pt;}
.y1f8{bottom:164.800000pt;}
.y2ff{bottom:165.120000pt;}
.y2fa{bottom:166.240000pt;}
.y1cc{bottom:167.040000pt;}
.y75{bottom:170.400000pt;}
.y2bc{bottom:171.200000pt;}
.y29a{bottom:171.840000pt;}
.y125{bottom:173.600000pt;}
.y1af{bottom:174.240000pt;}
.y2fc{bottom:175.200000pt;}
.y2e6{bottom:176.000000pt;}
.y2f5{bottom:176.160000pt;}
.y2d{bottom:176.320000pt;}
.y300{bottom:177.120000pt;}
.y239{bottom:178.232320pt;}
.y15b{bottom:178.720000pt;}
.y307{bottom:179.040000pt;}
.y301{bottom:179.200000pt;}
.y2f7{bottom:181.120000pt;}
.y119{bottom:182.400000pt;}
.y9e{bottom:182.880000pt;}
.ye4{bottom:184.640000pt;}
.y170{bottom:185.280000pt;}
.y277{bottom:185.760000pt;}
.y1f7{bottom:186.080000pt;}
.y1e4{bottom:186.400000pt;}
.y74{bottom:188.800000pt;}
.y1cb{bottom:189.120000pt;}
.y2f9{bottom:190.240000pt;}
.y188{bottom:190.720000pt;}
.y299{bottom:192.960000pt;}
.y2e5{bottom:194.400000pt;}
.yfc{bottom:194.720000pt;}
.y238{bottom:196.634880pt;}
.y2c{bottom:197.600000pt;}
.ybf{bottom:198.400000pt;}
.y15a{bottom:200.000000pt;}
.y1ae{bottom:203.520000pt;}
.y9d{bottom:204.000000pt;}
.y118{bottom:204.480000pt;}
.y276{bottom:205.280000pt;}
.ye3{bottom:205.760000pt;}
.y16f{bottom:206.400000pt;}
.y1f6{bottom:207.200000pt;}
.y1ca{bottom:207.520000pt;}
.y2bb{bottom:210.080000pt;}
.y298{bottom:211.360000pt;}
.y187{bottom:211.840000pt;}
.y142{bottom:212.000000pt;}
.y2e4{bottom:212.800000pt;}
.y237{bottom:215.037440pt;}
.y219{bottom:215.840000pt;}
.yfb{bottom:216.000000pt;}
.y73{bottom:218.080000pt;}
.y2b{bottom:218.720000pt;}
.ybe{bottom:219.520000pt;}
.y117{bottom:222.880000pt;}
.y50{bottom:223.840000pt;}
.y1ad{bottom:224.640000pt;}
.y9c{bottom:225.120000pt;}
.y1f5{bottom:228.320000pt;}
.y159{bottom:229.120000pt;}
.y2ba{bottom:229.600000pt;}
.y297{bottom:229.760000pt;}
.y2e3{bottom:231.200000pt;}
.y186{bottom:232.960000pt;}
.y141{bottom:233.120000pt;}
.y236{bottom:233.440000pt;}
.ye2{bottom:234.880000pt;}
.y16e{bottom:235.680000pt;}
.y72{bottom:236.480000pt;}
.y1e3{bottom:236.640000pt;}
.y218{bottom:236.960000pt;}
.yfa{bottom:237.120000pt;}
.ybd{bottom:240.640000pt;}
.y275{bottom:244.160000pt;}
.y4f{bottom:244.960000pt;}
.y1ac{bottom:245.760000pt;}
.y214{bottom:247.680000pt;}
.y2a{bottom:247.840000pt;}
.y296{bottom:248.160000pt;}
.y2b9{bottom:249.120000pt;}
.y2e2{bottom:249.600000pt;}
.y158{bottom:250.240000pt;}
.y269{bottom:251.360000pt;}
.y258{bottom:253.120000pt;}
.y9b{bottom:254.240000pt;}
.y71{bottom:254.880000pt;}
.ye1{bottom:256.000000pt;}
.y16d{bottom:256.800000pt;}
.y1f4{bottom:256.961280pt;}
.y1e2{bottom:257.760000pt;}
.yf9{bottom:258.240000pt;}
.y235{bottom:260.320000pt;}
.ybc{bottom:261.760000pt;}
.y116{bottom:261.920000pt;}
.y185{bottom:262.080000pt;}
.y274{bottom:263.680000pt;}
.y4e{bottom:266.240000pt;}
.y295{bottom:266.560000pt;}
.y213{bottom:267.200000pt;}
.y2e1{bottom:268.000000pt;}
.y2b8{bottom:268.640000pt;}
.y29{bottom:268.960000pt;}
.y1c9{bottom:269.280000pt;}
.y157{bottom:271.360000pt;}
.y268{bottom:272.480000pt;}
.y70{bottom:273.280000pt;}
.y257{bottom:274.240000pt;}
.y1ab{bottom:274.880000pt;}
.y1f3{bottom:275.363840pt;}
.y9a{bottom:275.520000pt;}
.ye0{bottom:277.280000pt;}
.y16c{bottom:277.920000pt;}
.y1e1{bottom:279.040000pt;}
.y234{bottom:281.440000pt;}
.ybb{bottom:283.040000pt;}
.y184{bottom:283.360000pt;}
.y294{bottom:284.960000pt;}
.y2e0{bottom:286.400000pt;}
.y212{bottom:286.720000pt;}
.y4d{bottom:287.360000pt;}
.y2b7{bottom:288.000000pt;}
.y28{bottom:290.240000pt;}
.y1c8{bottom:290.400000pt;}
.y156{bottom:292.640000pt;}
.y267{bottom:293.600000pt;}
.y1f2{bottom:293.766400pt;}
.y256{bottom:295.520000pt;}
.y1aa{bottom:296.160000pt;}
.y99{bottom:296.640000pt;}
.y16b{bottom:299.040000pt;}
.y1e0{bottom:300.160000pt;}
.y6f{bottom:302.400000pt;}
.y273{bottom:302.560000pt;}
.y233{bottom:302.720000pt;}
.y293{bottom:303.360000pt;}
.y115{bottom:304.320000pt;}
.y183{bottom:304.480000pt;}
.y140{bottom:304.640000pt;}
.y2df{bottom:304.800000pt;}
.y211{bottom:306.240000pt;}
.ydf{bottom:306.400000pt;}
.y2b6{bottom:307.520000pt;}
.y4c{bottom:308.480000pt;}
.yf8{bottom:308.640000pt;}
.y27{bottom:311.360000pt;}
.y1c7{bottom:311.520000pt;}
.y1f1{bottom:312.000000pt;}
.yba{bottom:312.160000pt;}
.y266{bottom:314.720000pt;}
.y255{bottom:316.640000pt;}
.y1a9{bottom:317.280000pt;}
.y98{bottom:317.760000pt;}
.y16a{bottom:320.320000pt;}
.y1df{bottom:321.280000pt;}
.y155{bottom:321.760000pt;}
.y272{bottom:322.080000pt;}
.y2de{bottom:323.200000pt;}
.y6e{bottom:323.520000pt;}
.y232{bottom:323.840000pt;}
.y182{bottom:325.600000pt;}
.y13f{bottom:325.760000pt;}
.y2b5{bottom:327.040000pt;}
.yde{bottom:327.520000pt;}
.y4b{bottom:329.600000pt;}
.yf7{bottom:329.760000pt;}
.y1c6{bottom:332.800000pt;}
.yb9{bottom:333.280000pt;}
.y114{bottom:333.440000pt;}
.y97{bottom:336.160000pt;}
.y254{bottom:337.760000pt;}
.y26{bottom:338.240000pt;}
.y1a8{bottom:338.400000pt;}
.y1f0{bottom:339.040000pt;}
.y292{bottom:340.160000pt;}
.y169{bottom:341.440000pt;}
.y2dd{bottom:341.600000pt;}
.y154{bottom:342.880000pt;}
.y265{bottom:344.000000pt;}
.y6d{bottom:344.640000pt;}
.y210{bottom:345.120000pt;}
.y2b4{bottom:346.400000pt;}
.y181{bottom:346.720000pt;}
.y13e{bottom:346.880000pt;}
.ydd{bottom:348.640000pt;}
.y1de{bottom:350.400000pt;}
.y4a{bottom:350.880000pt;}
.y231{bottom:352.960000pt;}
.y306{bottom:353.280000pt;}
.y1c5{bottom:353.920000pt;}
.yb8{bottom:354.400000pt;}
.y96{bottom:354.560000pt;}
.y291{bottom:358.560000pt;}
.yf6{bottom:358.880000pt;}
.y1a7{bottom:359.520000pt;}
.y2dc{bottom:360.000000pt;}
.y1ef{bottom:360.160000pt;}
.y271{bottom:360.960000pt;}
.y153{bottom:364.000000pt;}
.y20f{bottom:364.640000pt;}
.y264{bottom:365.120000pt;}
.y2b3{bottom:365.920000pt;}
.y180{bottom:368.000000pt;}
.ydc{bottom:369.920000pt;}
.y168{bottom:370.560000pt;}
.y6c{bottom:371.520000pt;}
.y1dd{bottom:371.680000pt;}
.y124{bottom:372.000000pt;}
.y95{bottom:372.960000pt;}
.y230{bottom:374.080000pt;}
.y1c4{bottom:375.040000pt;}
.yb7{bottom:375.680000pt;}
.y13d{bottom:376.160000pt;}
.y290{bottom:376.960000pt;}
.y305{bottom:377.280000pt;}
.y25{bottom:377.920000pt;}
.y2db{bottom:378.400000pt;}
.y49{bottom:380.000000pt;}
.y1a6{bottom:380.800000pt;}
.y1ee{bottom:381.280000pt;}
.y20e{bottom:384.000000pt;}
.y152{bottom:385.280000pt;}
.y2b2{bottom:385.440000pt;}
.y263{bottom:386.240000pt;}
.y17f{bottom:389.120000pt;}
.y270{bottom:390.080000pt;}
.y94{bottom:391.360000pt;}
.y167{bottom:391.680000pt;}
.y1dc{bottom:392.800000pt;}
.y22f{bottom:395.360000pt;}
.y24{bottom:396.320000pt;}
.y2da{bottom:396.800000pt;}
.y113{bottom:396.960000pt;}
.y13c{bottom:397.280000pt;}
.ydb{bottom:399.040000pt;}
.y48{bottom:401.120000pt;}
.yf5{bottom:401.280000pt;}
.y1ed{bottom:402.400000pt;}
.y20d{bottom:403.520000pt;}
.yb6{bottom:404.147200pt;}
.y1c3{bottom:404.160000pt;}
.y2b1{bottom:404.800000pt;}
.y253{bottom:407.040000pt;}
.y262{bottom:407.360000pt;}
.y93{bottom:409.760000pt;}
.y1a5{bottom:409.920000pt;}
.y17e{bottom:410.240000pt;}
.y26f{bottom:411.360000pt;}
.y166{bottom:412.960000pt;}
.y28f{bottom:413.760000pt;}
.y6b{bottom:413.920000pt;}
.y151{bottom:414.400000pt;}
.y23{bottom:414.720000pt;}
.y2d9{bottom:415.200000pt;}
.y22e{bottom:416.480000pt;}
.y13b{bottom:418.400000pt;}
.yda{bottom:420.160000pt;}
.y1db{bottom:421.920000pt;}
.y47{bottom:422.240000pt;}
.yf4{bottom:422.400000pt;}
.yb5{bottom:422.549760pt;}
.y1c2{bottom:425.280000pt;}
.y112{bottom:426.080000pt;}
.y92{bottom:428.160000pt;}
.y20c{bottom:429.760000pt;}
.y217{bottom:430.240000pt;}
.y1a4{bottom:431.040000pt;}
.y17d{bottom:431.360000pt;}
.y1ec{bottom:431.680000pt;}
.y28e{bottom:432.160000pt;}
.y2d8{bottom:433.600000pt;}
.y165{bottom:434.080000pt;}
.y6a{bottom:435.200000pt;}
.y150{bottom:435.520000pt;}
.y261{bottom:435.992320pt;}
.y22d{bottom:437.600000pt;}
.y26e{bottom:438.080000pt;}
.y13a{bottom:439.520000pt;}
.yb4{bottom:440.952320pt;}
.yd9{bottom:441.280000pt;}
.y1da{bottom:443.040000pt;}
.yf3{bottom:443.520000pt;}
.y22{bottom:443.840000pt;}
.y91{bottom:446.560000pt;}
.y111{bottom:447.200000pt;}
.y252{bottom:449.440000pt;}
.y28d{bottom:450.560000pt;}
.y46{bottom:451.360000pt;}
.y2d7{bottom:452.000000pt;}
.y1a3{bottom:452.160000pt;}
.y1eb{bottom:452.800000pt;}
.y260{bottom:454.394880pt;}
.y164{bottom:455.200000pt;}
.y14f{bottom:456.640000pt;}
.y17c{bottom:457.600000pt;}
.yb3{bottom:459.354880pt;}
.y139{bottom:460.800000pt;}
.yd8{bottom:462.560000pt;}
.y1d9{bottom:464.160000pt;}
.y69{bottom:464.320000pt;}
.yf2{bottom:464.640000pt;}
.y21{bottom:464.960000pt;}
.y22c{bottom:466.720000pt;}
.y1c1{bottom:467.680000pt;}
.y110{bottom:468.320000pt;}
.y28c{bottom:468.960000pt;}
.y20b{bottom:469.760000pt;}
.y2d6{bottom:470.400000pt;}
.y251{bottom:470.560000pt;}
.y45{bottom:472.640000pt;}
.y25f{bottom:472.797440pt;}
.y1a2{bottom:473.440000pt;}
.y1ea{bottom:473.920000pt;}
.y17b{bottom:476.000000pt;}
.y2b0{bottom:476.320000pt;}
.yb2{bottom:477.757440pt;}
.y14e{bottom:477.920000pt;}
.y26d{bottom:480.640000pt;}
.y138{bottom:481.920000pt;}
.y90{bottom:483.360000pt;}
.yd7{bottom:483.680000pt;}
.y163{bottom:485.280000pt;}
.y68{bottom:485.440000pt;}
.yf1{bottom:485.920000pt;}
.y20{bottom:486.080000pt;}
.y28b{bottom:487.360000pt;}
.y22b{bottom:488.000000pt;}
.y2d5{bottom:488.800000pt;}
.y10f{bottom:489.600000pt;}
.y20a{bottom:490.880000pt;}
.y25e{bottom:491.200000pt;}
.y250{bottom:491.680000pt;}
.y44{bottom:493.760000pt;}
.y123{bottom:493.920000pt;}
.y1a1{bottom:494.560000pt;}
.y1e9{bottom:495.040000pt;}
.yb1{bottom:496.160000pt;}
.y1c0{bottom:496.800000pt;}
.y2af{bottom:497.440000pt;}
.y8f{bottom:501.760000pt;}
.y162{bottom:504.480000pt;}
.y28a{bottom:505.760000pt;}
.y67{bottom:506.560000pt;}
.y2d4{bottom:507.200000pt;}
.y1f{bottom:507.360000pt;}
.y14d{bottom:507.840000pt;}
.y22a{bottom:509.120000pt;}
.y10e{bottom:510.720000pt;}
.y137{bottom:511.040000pt;}
.y209{bottom:512.000000pt;}
.yd6{bottom:512.321280pt;}
.y1d8{bottom:514.560000pt;}
.y216{bottom:514.880000pt;}
.yf0{bottom:515.040000pt;}
.y179{bottom:515.517440pt;}
.y17a{bottom:515.520000pt;}
.y1a0{bottom:515.680000pt;}
.y1e8{bottom:516.160000pt;}
.y1bf{bottom:517.920000pt;}
.y25d{bottom:518.080000pt;}
.y8e{bottom:520.160000pt;}
.y24f{bottom:520.800000pt;}
.y43{bottom:522.880000pt;}
.yb0{bottom:523.040000pt;}
.y161{bottom:523.840000pt;}
.y289{bottom:524.160000pt;}
.y2ae{bottom:524.320000pt;}
.y2d3{bottom:525.600000pt;}
.y14c{bottom:527.200000pt;}
.y229{bottom:530.240000pt;}
.yd5{bottom:530.554880pt;}
.y136{bottom:532.160000pt;}
.y208{bottom:533.280000pt;}
.y177{bottom:533.913600pt;}
.y178{bottom:533.920000pt;}
.y66{bottom:535.680000pt;}
.yef{bottom:536.160000pt;}
.y1e{bottom:536.480000pt;}
.y19f{bottom:536.800000pt;}
.y8d{bottom:538.560000pt;}
.y25c{bottom:539.200000pt;}
.y10d{bottom:539.840000pt;}
.y24e{bottom:541.920000pt;}
.y288{bottom:542.560000pt;}
.y160{bottom:543.200000pt;}
.y2d2{bottom:543.840000pt;}
.y42{bottom:544.000000pt;}
.yaf{bottom:544.160000pt;}
.y1e7{bottom:546.400000pt;}
.y1be{bottom:548.160000pt;}
.yd4{bottom:548.957440pt;}
.y228{bottom:551.360000pt;}
.y176{bottom:552.147200pt;}
.y14b{bottom:553.280000pt;}
.y135{bottom:553.440000pt;}
.y207{bottom:554.400000pt;}
.y1d{bottom:554.880000pt;}
.y1d7{bottom:556.800000pt;}
.y65{bottom:556.960000pt;}
.y19e{bottom:557.920000pt;}
.y10c{bottom:560.960000pt;}
.y2d1{bottom:562.240000pt;}
.y15f{bottom:562.400000pt;}
.y41{bottom:565.280000pt;}
.y1e6{bottom:565.920000pt;}
.y122{bottom:566.080000pt;}
.y2ad{bottom:566.720000pt;}
.yd3{bottom:567.360000pt;}
.y1bd{bottom:567.680000pt;}
.y25b{bottom:567.841280pt;}
.y175{bottom:570.549760pt;}
.y24d{bottom:571.200000pt;}
.y8c{bottom:575.360000pt;}
.y64{bottom:578.080000pt;}
.y19d{bottom:579.200000pt;}
.y227{bottom:580.640000pt;}
.y10b{bottom:582.240000pt;}
.y134{bottom:582.560000pt;}
.y206{bottom:583.520000pt;}
.y1c{bottom:584.000000pt;}
.y1e5{bottom:585.280000pt;}
.y121{bottom:585.440000pt;}
.y25a{bottom:586.243840pt;}
.y40{bottom:586.400000pt;}
.yee{bottom:586.560000pt;}
.y1bc{bottom:587.040000pt;}
.y2ac{bottom:588.000000pt;}
.y15e{bottom:588.640000pt;}
.y174{bottom:588.952320pt;}
.y287{bottom:590.080000pt;}
.y14a{bottom:591.520000pt;}
.y24c{bottom:592.320000pt;}
.y8b{bottom:593.760000pt;}
.yd2{bottom:594.240000pt;}
.y26c{bottom:594.400000pt;}
.yae{bottom:594.560000pt;}
.y2d0{bottom:599.040000pt;}
.y63{bottom:599.200000pt;}
.y19c{bottom:600.320000pt;}
.y226{bottom:601.760000pt;}
.y133{bottom:603.680000pt;}
.y205{bottom:604.640000pt;}
.y259{bottom:604.646400pt;}
.y120{bottom:604.800000pt;}
.y1bb{bottom:606.560000pt;}
.y1d6{bottom:607.200000pt;}
.y173{bottom:607.354880pt;}
.y3f{bottom:607.520000pt;}
.yed{bottom:607.680000pt;}
.y2ab{bottom:609.120000pt;}
.y10a{bottom:611.360000pt;}
.y8a{bottom:612.160000pt;}
.y1b{bottom:613.120000pt;}
.y24b{bottom:613.440000pt;}
.yd1{bottom:615.520000pt;}
.yad{bottom:615.680000pt;}
.y2cf{bottom:617.440000pt;}
.y62{bottom:620.320000pt;}
.y149{bottom:620.640000pt;}
.y225{bottom:622.880000pt;}
.y132{bottom:624.800000pt;}
.y172{bottom:625.757440pt;}
.y204{bottom:625.920000pt;}
.y1ba{bottom:626.080000pt;}
.y1d5{bottom:628.320000pt;}
.y3e{bottom:628.640000pt;}
.yec{bottom:628.800000pt;}
.y19b{bottom:629.440000pt;}
.y2aa{bottom:630.240000pt;}
.y89{bottom:630.560000pt;}
.y11f{bottom:631.040000pt;}
.y109{bottom:632.480000pt;}
.y1a{bottom:634.400000pt;}
.y24a{bottom:634.560000pt;}
.y2ce{bottom:635.840000pt;}
.y26b{bottom:636.640000pt;}
.yac{bottom:636.800000pt;}
.y148{bottom:641.920000pt;}
.y2f4{bottom:643.360000pt;}
.y224{bottom:644.000000pt;}
.y171{bottom:644.160000pt;}
.yd0{bottom:644.640000pt;}
.y131{bottom:646.080000pt;}
.y88{bottom:648.960000pt;}
.y1d4{bottom:649.440000pt;}
.y61{bottom:649.600000pt;}
.y15d{bottom:649.920000pt;}
.y19a{bottom:650.560000pt;}
.y286{bottom:650.880000pt;}
.y1b9{bottom:652.160000pt;}
.y108{bottom:653.600000pt;}
.y2cd{bottom:654.240000pt;}
.y203{bottom:655.040000pt;}
.y19{bottom:655.520000pt;}
.y249{bottom:655.840000pt;}
.y3d{bottom:657.920000pt;}
.y2a9{bottom:659.360000pt;}
.y2f3{bottom:661.760000pt;}
.y147{bottom:663.040000pt;}
.y223{bottom:665.120000pt;}
.y87{bottom:667.360000pt;}
.y285{bottom:669.280000pt;}
.y60{bottom:670.720000pt;}
.y11e{bottom:671.040000pt;}
.y199{bottom:671.840000pt;}
.y2cc{bottom:672.640000pt;}
.ycf{bottom:673.760000pt;}
.y130{bottom:675.200000pt;}
.y202{bottom:676.160000pt;}
.y18{bottom:676.640000pt;}
.y248{bottom:676.960000pt;}
.y3c{bottom:679.040000pt;}
.y2f2{bottom:680.160000pt;}
.y2a8{bottom:680.640000pt;}
.y107{bottom:682.720000pt;}
.y86{bottom:685.760000pt;}
.y284{bottom:687.680000pt;}
.y2cb{bottom:691.040000pt;}
.y5f{bottom:691.840000pt;}
.y146{bottom:692.160000pt;}
.y198{bottom:692.960000pt;}
.y222{bottom:694.400000pt;}
.yce{bottom:694.880000pt;}
.y12f{bottom:696.320000pt;}
.y201{bottom:697.280000pt;}
.y247{bottom:698.080000pt;}
.y2f1{bottom:698.560000pt;}
.y3b{bottom:700.160000pt;}
.yab{bottom:700.320000pt;}
.y2a7{bottom:701.760000pt;}
.y106{bottom:704.000000pt;}
.y85{bottom:704.160000pt;}
.y17{bottom:705.760000pt;}
.y283{bottom:706.080000pt;}
.y26a{bottom:708.160000pt;}
.y2ca{bottom:709.440000pt;}
.y5e{bottom:712.960000pt;}
.y145{bottom:713.280000pt;}
.y1b8{bottom:713.440000pt;}
.y197{bottom:714.080000pt;}
.y221{bottom:715.520000pt;}
.ycd{bottom:716.160000pt;}
.y2f0{bottom:716.960000pt;}
.y12e{bottom:717.440000pt;}
.y1d3{bottom:720.960000pt;}
.y3a{bottom:721.280000pt;}
.yeb{bottom:721.440000pt;}
.y84{bottom:722.560000pt;}
.y2a6{bottom:722.880000pt;}
.y16{bottom:724.160000pt;}
.y282{bottom:724.480000pt;}
.y105{bottom:725.120000pt;}
.y200{bottom:726.560000pt;}
.y246{bottom:726.714880pt;}
.y2c9{bottom:727.840000pt;}
.y215{bottom:729.280000pt;}
.yaa{bottom:729.440000pt;}
.y5d{bottom:734.240000pt;}
.y144{bottom:734.560000pt;}
.y196{bottom:735.200000pt;}
.y2ef{bottom:735.360000pt;}
.ycc{bottom:737.280000pt;}
.y12d{bottom:738.560000pt;}
.y83{bottom:740.960000pt;}
.y2a5{bottom:741.280000pt;}
.y1d2{bottom:742.080000pt;}
.y15{bottom:742.560000pt;}
.y281{bottom:742.880000pt;}
.y220{bottom:744.640000pt;}
.y245{bottom:745.117440pt;}
.y104{bottom:746.240000pt;}
.y1ff{bottom:747.680000pt;}
.ya9{bottom:750.560000pt;}
.y2ee{bottom:753.600000pt;}
.y143{bottom:755.680000pt;}
.y195{bottom:756.480000pt;}
.y2a4{bottom:759.680000pt;}
.y12c{bottom:759.840000pt;}
.y14{bottom:760.960000pt;}
.y280{bottom:761.280000pt;}
.y5c{bottom:763.360000pt;}
.y244{bottom:763.520000pt;}
.y39{bottom:763.680000pt;}
.y2c8{bottom:764.640000pt;}
.y21f{bottom:765.760000pt;}
.ycb{bottom:766.400000pt;}
.y82{bottom:770.080000pt;}
.ya8{bottom:771.680000pt;}
.y2ed{bottom:772.000000pt;}
.y103{bottom:776.320000pt;}
.y1b7{bottom:776.800000pt;}
.y2a3{bottom:778.080000pt;}
.y13{bottom:779.360000pt;}
.y27f{bottom:779.680000pt;}
.y2c7{bottom:783.040000pt;}
.y5b{bottom:784.480000pt;}
.y38{bottom:784.800000pt;}
.y194{bottom:785.600000pt;}
.y21e{bottom:787.040000pt;}
.yca{bottom:787.520000pt;}
.y81{bottom:788.480000pt;}
.y12b{bottom:789.760000pt;}
.y243{bottom:790.400000pt;}
.y2ec{bottom:791.360000pt;}
.y11d{bottom:792.800000pt;}
.ya7{bottom:792.960000pt;}
.y1d1{bottom:793.440000pt;}
.y1b6{bottom:795.200000pt;}
.y102{bottom:795.520000pt;}
.y2a2{bottom:796.480000pt;}
.y12{bottom:797.760000pt;}
.y1fe{bottom:797.920000pt;}
.y27e{bottom:798.080000pt;}
.y2c6{bottom:801.440000pt;}
.y5a{bottom:805.600000pt;}
.y37{bottom:805.920000pt;}
.y193{bottom:806.720000pt;}
.y80{bottom:806.880000pt;}
.yc9{bottom:808.800000pt;}
.y12a{bottom:809.120000pt;}
.y2eb{bottom:810.080000pt;}
.y242{bottom:811.520000pt;}
.y1d0{bottom:812.960000pt;}
.y1b5{bottom:813.600000pt;}
.y11c{bottom:813.920000pt;}
.ya6{bottom:814.080000pt;}
.y101{bottom:814.880000pt;}
.y21d{bottom:816.160000pt;}
.y27d{bottom:816.480000pt;}
.y11{bottom:817.920000pt;}
.y1fd{bottom:819.200000pt;}
.y2c5{bottom:819.840000pt;}
.y7f{bottom:825.280000pt;}
.y59{bottom:826.880000pt;}
.y36{bottom:827.200000pt;}
.y192{bottom:827.840000pt;}
.y129{bottom:828.480000pt;}
.yc8{bottom:829.920000pt;}
.y1b4{bottom:832.000000pt;}
.y1cf{bottom:832.320000pt;}
.y241{bottom:832.640000pt;}
.y2a1{bottom:833.280000pt;}
.y100{bottom:834.240000pt;}
.y27c{bottom:834.880000pt;}
.ya5{bottom:835.200000pt;}
.y21c{bottom:837.280000pt;}
.y10{bottom:837.600000pt;}
.y2c4{bottom:838.240000pt;}
.y1fc{bottom:840.320000pt;}
.y2ea{bottom:846.880000pt;}
.y128{bottom:847.680000pt;}
.y58{bottom:848.000000pt;}
.y35{bottom:848.320000pt;}
.y191{bottom:849.120000pt;}
.y1b3{bottom:850.400000pt;}
.yc7{bottom:851.040000pt;}
.y2a0{bottom:851.680000pt;}
.y27b{bottom:853.280000pt;}
.yff{bottom:853.600000pt;}
.y7e{bottom:854.400000pt;}
.yea{bottom:856.320000pt;}
.y2c3{bottom:856.640000pt;}
.y21b{bottom:858.400000pt;}
.y1ce{bottom:858.560000pt;}
.y240{bottom:861.920000pt;}
.ya4{bottom:865.280000pt;}
.y127{bottom:867.040000pt;}
.y57{bottom:869.120000pt;}
.y1fb{bottom:869.440000pt;}
.y29f{bottom:870.080000pt;}
.y190{bottom:870.240000pt;}
.y27a{bottom:871.680000pt;}
.yc6{bottom:872.160000pt;}
.y7d{bottom:872.800000pt;}
.y2c2{bottom:875.040000pt;}
.yf{bottom:875.683200pt;}
.y34{bottom:877.440000pt;}
.yfe{bottom:879.680000pt;}
.y23f{bottom:883.040000pt;}
.y2e9{bottom:883.680000pt;}
.ya3{bottom:884.480000pt;}
.y21a{bottom:885.280000pt;}
.ye9{bottom:886.400000pt;}
.y29e{bottom:888.480000pt;}
.y1fa{bottom:890.560000pt;}
.y7c{bottom:891.200000pt;}
.y18f{bottom:891.360000pt;}
.yc5{bottom:893.280000pt;}
.y2c1{bottom:893.440000pt;}
.ye{bottom:896.799360pt;}
.y56{bottom:898.240000pt;}
.y33{bottom:898.560000pt;}
.y1b2{bottom:900.800000pt;}
.y2e8{bottom:901.920000pt;}
.ya2{bottom:903.840000pt;}
.y23e{bottom:904.160000pt;}
.ye8{bottom:905.760000pt;}
.y29d{bottom:906.880000pt;}
.y7b{bottom:909.600000pt;}
.y1f9{bottom:911.680000pt;}
.y18e{bottom:912.480000pt;}
.yc4{bottom:914.560000pt;}
.yd{bottom:917.760000pt;}
.y55{bottom:919.520000pt;}
.y32{bottom:919.680000pt;}
.y2c0{bottom:920.320000pt;}
.y279{bottom:921.920000pt;}
.ye7{bottom:924.960000pt;}
.y23d{bottom:925.280000pt;}
.y1b1{bottom:927.680000pt;}
.y7a{bottom:928.000000pt;}
.y304{bottom:929.600000pt;}
.ya1{bottom:930.080000pt;}
.y2e7{bottom:938.720000pt;}
.y54{bottom:940.640000pt;}
.y31{bottom:940.960000pt;}
.y18d{bottom:941.118720pt;}
.yc3{bottom:943.680000pt;}
.y23c{bottom:946.560000pt;}
.y278{bottom:948.800000pt;}
.yfd{bottom:948.960000pt;}
.ye6{bottom:951.200000pt;}
.y79{bottom:957.120000pt;}
.y18c{bottom:959.521280pt;}
.y53{bottom:961.760000pt;}
.y30{bottom:962.080000pt;}
.y2bf{bottom:962.720000pt;}
.yc{bottom:963.027840pt;}
.yc2{bottom:964.800000pt;}
.y23b{bottom:967.680000pt;}
.ya0{bottom:970.080000pt;}
.y29c{bottom:972.800000pt;}
.y78{bottom:975.520000pt;}
.y18b{bottom:977.923840pt;}
.y52{bottom:982.880000pt;}
.y303{bottom:984.800000pt;}
.yb{bottom:985.753920pt;}
.yc1{bottom:985.920000pt;}
.y2f{bottom:991.200000pt;}
.y2be{bottom:992.960000pt;}
.y77{bottom:993.920000pt;}
.y18a{bottom:996.326400pt;}
.ya{bottom:1008.480000pt;}
.y51{bottom:1009.760000pt;}
.yc0{bottom:1012.160000pt;}
.y2e{bottom:1012.320000pt;}
.y189{bottom:1014.560000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h5{height:29.118667pt;}
.h11{height:30.324375pt;}
.h3{height:34.453125pt;}
.he{height:42.240000pt;}
.h1a{height:42.656250pt;}
.ha{height:43.375000pt;}
.h9{height:43.471250pt;}
.h19{height:44.134400pt;}
.h18{height:44.154880pt;}
.h14{height:44.160000pt;}
.h16{height:44.165120pt;}
.hf{height:44.211200pt;}
.h13{height:44.524869pt;}
.h15{height:46.593750pt;}
.h12{height:46.609688pt;}
.hd{height:46.750000pt;}
.h1b{height:51.663750pt;}
.h8{height:52.375000pt;}
.hb{height:54.514687pt;}
.h17{height:54.697500pt;}
.h4{height:56.156250pt;}
.hc{height:56.312500pt;}
.h7{height:56.565000pt;}
.h6{height:61.278750pt;}
.h10{height:61.944687pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:26.561333pt;}
.w3{width:34.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.436000pt;}
.x1{left:117.600000pt;}
.xe{left:137.440000pt;}
.x16{left:151.200000pt;}
.x6{left:153.120000pt;}
.x9{left:155.040000pt;}
.xf{left:161.440000pt;}
.x13{left:166.240000pt;}
.x12{left:182.080000pt;}
.x14{left:185.440000pt;}
.x15{left:217.440000pt;}
.x7{left:220.006560pt;}
.x4{left:264.160000pt;}
.x10{left:305.440000pt;}
.x8{left:324.651360pt;}
.xd{left:326.880000pt;}
.xb{left:383.671680pt;}
.xa{left:395.836800pt;}
.x5{left:414.880000pt;}
.x2{left:474.072000pt;}
.xc{left:504.320000pt;}
.x11{left:677.600000pt;}
.x19{left:719.520000pt;}
.x1c{left:723.360000pt;}
.x1a{left:725.600000pt;}
.x18{left:729.440000pt;}
.x1b{left:731.360000pt;}
.x17{left:737.440000pt;}
}




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