
    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_2657d03e5752bec22838adb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_948e49ac7fe9451a7205290d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_e7dec0c741d148d860b99d30.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_eacd5481ec81c400b9c26309.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.206543;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_b47b179ef4820a8848b46c95.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943500;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_a70007c8f3108b5079e3e878.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091000;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_5f7242fcb3617074f3eb7ac0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_f5b8c52f7efcf2878d5e834d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918500;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_93e8ae8446e09fd008bdd85c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.744500;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_e4d3fb22dc8c94fbd97809fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923500;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_d772623dfd7b46176b1e7791.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.965500;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_452338403041252512d84713.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.736000;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_9d07f3a6983509d49320bf04.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9d07f3a6983509d49320bf04.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_61672331b416e25a26489e8f.woff2')format("woff");}.fff{font-family:fff;line-height:0.744500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fea287f52592696d230558e0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910500;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:ff11;src:url('chunks/assets/font_921234d4301ae6d22cbd80e2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.942000;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;}
.m4{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182482,0.000000,0.000000,0.250000,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);}
.m3{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);}
.v7{vertical-align:-20.250000px;}
.v3{vertical-align:-18.900000px;}
.v4{vertical-align:-15.828000px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.251200px;}
.v5{vertical-align:21.600000px;}
.v2{vertical-align:32.400600px;}
.ls11{letter-spacing:-1.050000px;}
.ls1f{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.131760px;}
.lsd{letter-spacing:-0.046116px;}
.lsb{letter-spacing:-0.032940px;}
.lsa{letter-spacing:-0.013176px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013176px;}
.ls7{letter-spacing:0.019764px;}
.ls0{letter-spacing:0.025164px;}
.ls2{letter-spacing:0.026352px;}
.ls4{letter-spacing:0.032940px;}
.ls5{letter-spacing:0.039528px;}
.ls1{letter-spacing:0.041940px;}
.ls6{letter-spacing:0.046116px;}
.lsf{letter-spacing:0.059292px;}
.lsc{letter-spacing:0.223992px;}
.ls24{letter-spacing:0.405000px;}
.ls17{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.855000px;}
.ls18{letter-spacing:0.864000px;}
.ls1b{letter-spacing:1.008000px;}
.ls15{letter-spacing:2.898000px;}
.ls22{letter-spacing:4.800000px;}
.ls23{letter-spacing:5.280000px;}
.ls13{letter-spacing:6.000000px;}
.ls16{letter-spacing:6.720000px;}
.ls12{letter-spacing:8.400000px;}
.ls10{letter-spacing:10.800000px;}
.ls1c{letter-spacing:77.051100px;}
.lse{letter-spacing:155.384568px;}
.ls1a{letter-spacing:185.085000px;}
.ls1d{letter-spacing:209.907000px;}
.ls19{letter-spacing:211.185000px;}
.ls1e{letter-spacing:262.485000px;}
.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;}
}
.ws17{word-spacing:-26.244000px;}
.ws1a{word-spacing:-20.580000px;}
.ws2{word-spacing:-14.921820px;}
.ws0{word-spacing:-14.875704px;}
.ws1{word-spacing:-14.855940px;}
.ws6d{word-spacing:-12.864000px;}
.ws1c{word-spacing:-12.288000px;}
.ws13{word-spacing:-12.247200px;}
.ws8b{word-spacing:-12.144000px;}
.ws20{word-spacing:-11.952000px;}
.ws6c{word-spacing:-11.808000px;}
.ws51{word-spacing:-11.520000px;}
.ws11{word-spacing:-10.752000px;}
.ws6e{word-spacing:-10.530000px;}
.ws15{word-spacing:-10.206000px;}
.ws1b{word-spacing:-8.601600px;}
.ws19{word-spacing:-8.400000px;}
.ws5b{word-spacing:-8.064000px;}
.ws14{word-spacing:-7.526400px;}
.ws2a{word-spacing:-6.720000px;}
.ws1d{word-spacing:-6.000000px;}
.ws74{word-spacing:-5.280000px;}
.ws73{word-spacing:-4.800000px;}
.ws8c{word-spacing:-3.420000px;}
.ws28{word-spacing:-2.898000px;}
.ws18{word-spacing:-2.160000px;}
.ws80{word-spacing:-1.845000px;}
.ws84{word-spacing:-1.710000px;}
.ws7d{word-spacing:-1.575000px;}
.ws29{word-spacing:-1.392000px;}
.ws83{word-spacing:-1.260000px;}
.ws77{word-spacing:-1.035000px;}
.ws4b{word-spacing:-1.008000px;}
.ws40{word-spacing:-0.864000px;}
.ws93{word-spacing:-0.855000px;}
.ws1e{word-spacing:-0.720000px;}
.ws72{word-spacing:-0.576000px;}
.ws3f{word-spacing:-0.432000px;}
.ws7b{word-spacing:-0.405000px;}
.ws92{word-spacing:-0.315000px;}
.ws10{word-spacing:-0.191052px;}
.wse{word-spacing:-0.177876px;}
.wsf{word-spacing:-0.151524px;}
.ws7{word-spacing:-0.085644px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.075492px;}
.ws5{word-spacing:0.092268px;}
.ws6b{word-spacing:0.144000px;}
.ws4{word-spacing:0.234864px;}
.ws76{word-spacing:0.315000px;}
.ws69{word-spacing:0.576000px;}
.ws7e{word-spacing:0.810000px;}
.ws16{word-spacing:1.050000px;}
.ws4c{word-spacing:1.296000px;}
.ws6f{word-spacing:1.728000px;}
.ws70{word-spacing:1.920000px;}
.ws7c{word-spacing:2.205000px;}
.ws86{word-spacing:2.385000px;}
.ws43{word-spacing:2.448000px;}
.ws88{word-spacing:2.475000px;}
.ws90{word-spacing:3.015000px;}
.ws42{word-spacing:3.600000px;}
.ws85{word-spacing:4.050000px;}
.ws8f{word-spacing:5.445000px;}
.ws79{word-spacing:5.580000px;}
.ws71{word-spacing:6.240000px;}
.ws89{word-spacing:6.300000px;}
.ws8e{word-spacing:6.615000px;}
.ws82{word-spacing:6.885000px;}
.ws41{word-spacing:7.056000px;}
.ws7a{word-spacing:7.110000px;}
.ws94{word-spacing:7.830000px;}
.ws91{word-spacing:7.920000px;}
.wsb{word-spacing:8.109828px;}
.ws9{word-spacing:8.834508px;}
.wsa{word-spacing:8.841096px;}
.ws87{word-spacing:9.225000px;}
.wsc{word-spacing:10.626444px;}
.ws8{word-spacing:10.652796px;}
.wsd{word-spacing:10.665972px;}
.ws7f{word-spacing:11.025000px;}
.ws78{word-spacing:11.700000px;}
.ws81{word-spacing:12.330000px;}
.ws8d{word-spacing:12.600000px;}
.ws75{word-spacing:17.145000px;}
.ws8a{word-spacing:17.685000px;}
.ws54{word-spacing:61.875000px;}
.ws58{word-spacing:63.855000px;}
.ws57{word-spacing:64.035000px;}
.ws5a{word-spacing:66.195000px;}
.ws12{word-spacing:67.780800px;}
.ws52{word-spacing:67.995000px;}
.ws59{word-spacing:87.975000px;}
.ws55{word-spacing:89.955000px;}
.ws53{word-spacing:90.135000px;}
.ws56{word-spacing:92.295000px;}
.ws39{word-spacing:108.855000px;}
.ws37{word-spacing:108.900000px;}
.ws33{word-spacing:109.440000px;}
.ws2b{word-spacing:109.530000px;}
.ws32{word-spacing:119.565000px;}
.ws34{word-spacing:121.005000px;}
.ws3c{word-spacing:121.545000px;}
.ws3d{word-spacing:121.680000px;}
.ws3e{word-spacing:126.135000px;}
.ws38{word-spacing:135.000000px;}
.ws3a{word-spacing:135.540000px;}
.ws30{word-spacing:138.240000px;}
.ws2f{word-spacing:139.410000px;}
.ws31{word-spacing:145.665000px;}
.ws35{word-spacing:146.250000px;}
.ws61{word-spacing:160.740000px;}
.ws50{word-spacing:164.115000px;}
.ws3b{word-spacing:164.970000px;}
.ws2d{word-spacing:165.015000px;}
.ws23{word-spacing:165.825000px;}
.ws2e{word-spacing:170.235000px;}
.ws36{word-spacing:171.765000px;}
.ws65{word-spacing:186.300000px;}
.ws66{word-spacing:186.840000px;}
.ws60{word-spacing:188.775000px;}
.ws62{word-spacing:196.920000px;}
.ws63{word-spacing:199.080000px;}
.ws46{word-spacing:199.440000px;}
.ws44{word-spacing:200.025000px;}
.ws68{word-spacing:204.435000px;}
.ws27{word-spacing:205.650000px;}
.ws21{word-spacing:206.460000px;}
.ws5f{word-spacing:215.685000px;}
.ws64{word-spacing:217.215000px;}
.ws67{word-spacing:217.755000px;}
.ws47{word-spacing:225.270000px;}
.ws4a{word-spacing:225.540000px;}
.ws4e{word-spacing:229.653600px;}
.ws49{word-spacing:251.370000px;}
.ws4f{word-spacing:256.092000px;}
.ws4d{word-spacing:263.533200px;}
.ws45{word-spacing:270.900000px;}
.ws25{word-spacing:296.595000px;}
.ws48{word-spacing:304.065000px;}
.ws22{word-spacing:315.495000px;}
.ws26{word-spacing:340.110000px;}
.ws2c{word-spacing:369.966600px;}
.ws5d{word-spacing:392.638800px;}
.ws24{word-spacing:424.170000px;}
.ws5c{word-spacing:455.548200px;}
.ws5e{word-spacing:455.548800px;}
.ws6a{word-spacing:1360.529604px;}
.ws1f{word-spacing:2393.846400px;}
._c{margin-left:-13.737600px;}
._11{margin-left:-12.240000px;}
._17{margin-left:-11.230800px;}
._9{margin-left:-8.676000px;}
._8{margin-left:-6.696000px;}
._16{margin-left:-4.995600px;}
._5{margin-left:-3.618000px;}
._6{margin-left:-2.596800px;}
._3{margin-left:-1.092000px;}
._0{width:1.317600px;}
._b{width:2.494800px;}
._d{width:3.661200px;}
._a{width:4.935600px;}
._e{width:6.010200px;}
._14{width:7.017000px;}
._12{width:8.116800px;}
._4{width:9.450000px;}
._13{width:11.101200px;}
._55{width:12.567300px;}
._15{width:14.001600px;}
._f{width:15.249600px;}
._10{width:17.037000px;}
._28{width:18.576000px;}
._53{width:19.618800px;}
._56{width:21.627600px;}
._7{width:26.584800px;}
._54{width:28.291200px;}
._45{width:76.832400px;}
._20{width:93.735000px;}
._47{width:99.495000px;}
._44{width:103.014000px;}
._21{width:111.330000px;}
._1f{width:120.465000px;}
._22{width:132.480000px;}
._26{width:137.790000px;}
._46{width:141.885000px;}
._25{width:146.655000px;}
._24{width:150.345000px;}
._27{width:157.185000px;}
._31{width:163.755000px;}
._40{width:170.280000px;}
._49{width:172.710000px;}
._23{width:176.445000px;}
._51{width:184.725000px;}
._30{width:186.660000px;}
._4d{width:191.925000px;}
._43{width:194.940000px;}
._52{width:197.325000px;}
._4b{width:202.590000px;}
._4a{width:207.810000px;}
._4e{width:216.225000px;}
._42{width:218.700000px;}
._3f{width:220.095000px;}
._2f{width:221.580000px;}
._50{width:223.560000px;}
._4c{width:228.690000px;}
._34{width:236.790000px;}
._4f{width:242.505000px;}
._38{width:243.990000px;}
._3d{width:249.525000px;}
._32{width:251.370000px;}
._41{width:255.195000px;}
._39{width:261.585000px;}
._2b{width:262.890000px;}
._29{width:271.755000px;}
._2e{width:272.925000px;}
._3b{width:283.365000px;}
._3c{width:289.035000px;}
._1a{width:299.430000px;}
._2a{width:315.585000px;}
._19{width:320.760000px;}
._33{width:323.010000px;}
._18{width:332.415000px;}
._36{width:339.660000px;}
._2c{width:342.630000px;}
._1b{width:351.630000px;}
._35{width:353.115000px;}
._1e{width:373.314600px;}
._1c{width:377.685000px;}
._2d{width:380.250000px;}
._37{width:421.245000px;}
._3a{width:441.900000px;}
._1d{width:452.271600px;}
._3e{width:471.001800px;}
._2{width:732.060000px;}
._48{width:826.002000px;}
._1{width:1326.570000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.400000px;}
.fs10{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fs3{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs11{font-size:47.556000px;}
.fsc{font-size:48.000000px;}
.fs9{font-size:50.400000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:57.540000px;}
.fsb{font-size:60.000000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fsd{font-size:78.120000px;}
.fs5{font-size:78.540000px;}
.fs1{font-size:83.880000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:16.710000px;}
.y2a{bottom:40.619700px;}
.y1f{bottom:41.910000px;}
.y2b{bottom:43.169700px;}
.y1e{bottom:62.880000px;}
.y36{bottom:63.862650px;}
.y17d{bottom:72.297600px;}
.y1e1{bottom:75.128400px;}
.y1e3{bottom:75.761850px;}
.y98{bottom:76.438650px;}
.y128{bottom:76.444950px;}
.ycd{bottom:76.453650px;}
.yf3{bottom:77.079150px;}
.y22{bottom:77.280000px;}
.y35{bottom:78.867150px;}
.y1a5{bottom:81.808200px;}
.y250{bottom:83.057400px;}
.y17c{bottom:88.047600px;}
.y1e0{bottom:90.878400px;}
.y20f{bottom:92.194950px;}
.y1e2{bottom:92.261850px;}
.y34{bottom:93.871650px;}
.y97{bottom:95.938650px;}
.y127{bottom:95.944950px;}
.ycc{bottom:95.953650px;}
.yf2{bottom:96.579150px;}
.y21{bottom:98.250000px;}
.y24f{bottom:98.807400px;}
.y1a4{bottom:102.868200px;}
.y185{bottom:105.991200px;}
.y20e{bottom:107.944950px;}
.y17b{bottom:112.797600px;}
.y24e{bottom:114.557400px;}
.y96{bottom:115.438650px;}
.y126{bottom:115.444950px;}
.ycb{bottom:115.453650px;}
.y1df{bottom:115.628400px;}
.yf1{bottom:116.079150px;}
.y1e4{bottom:119.170500px;}
.y184{bottom:122.491200px;}
.y20d{bottom:123.694950px;}
.y1a3{bottom:123.928200px;}
.y24d{bottom:130.307400px;}
.y17a{bottom:133.857600px;}
.y95{bottom:134.938650px;}
.y125{bottom:134.944950px;}
.yca{bottom:134.953650px;}
.yf0{bottom:135.579150px;}
.y1de{bottom:136.688400px;}
.y183{bottom:138.991200px;}
.y20c{bottom:139.444950px;}
.y27{bottom:144.540000px;}
.y1a2{bottom:144.988200px;}
.y24c{bottom:146.057400px;}
.y94{bottom:154.438650px;}
.y124{bottom:154.444950px;}
.yc9{bottom:154.453650px;}
.y179{bottom:154.917600px;}
.yef{bottom:155.079150px;}
.y20b{bottom:155.194950px;}
.y182{bottom:155.491200px;}
.y1dd{bottom:157.748400px;}
.y24b{bottom:161.807400px;}
.y26{bottom:165.510000px;}
.y1a1{bottom:166.048200px;}
.y20a{bottom:170.944950px;}
.y181{bottom:171.991200px;}
.y93{bottom:173.938650px;}
.y123{bottom:173.944950px;}
.yc8{bottom:173.953650px;}
.yee{bottom:174.579150px;}
.y178{bottom:175.977600px;}
.y61{bottom:176.124900px;}
.y24a{bottom:177.557400px;}
.y1dc{bottom:178.808400px;}
.y1b{bottom:183.502590px;}
.y25{bottom:186.480000px;}
.y209{bottom:186.694950px;}
.y1a0{bottom:187.108200px;}
.y180{bottom:188.491200px;}
.y249{bottom:193.307400px;}
.y92{bottom:193.438650px;}
.y122{bottom:193.444950px;}
.yc7{bottom:193.453650px;}
.yed{bottom:194.079150px;}
.y60{bottom:195.624900px;}
.y177{bottom:197.037600px;}
.y1db{bottom:199.868400px;}
.y208{bottom:202.444950px;}
.y17f{bottom:204.991200px;}
.y1a{bottom:206.725290px;}
.y24{bottom:207.450000px;}
.y19f{bottom:208.168200px;}
.y248{bottom:209.057400px;}
.y91{bottom:212.938650px;}
.y121{bottom:212.944950px;}
.yc6{bottom:212.953650px;}
.yec{bottom:213.579150px;}
.y5f{bottom:215.124900px;}
.y176{bottom:218.097600px;}
.y207{bottom:218.194950px;}
.y1da{bottom:220.928400px;}
.y17e{bottom:221.491200px;}
.y247{bottom:224.807400px;}
.y19e{bottom:229.228200px;}
.y19{bottom:229.849170px;}
.y90{bottom:232.438650px;}
.y120{bottom:232.444950px;}
.yc5{bottom:232.453650px;}
.yeb{bottom:233.079150px;}
.y246{bottom:240.557400px;}
.y1d9{bottom:241.988400px;}
.y175{bottom:242.003850px;}
.y173{bottom:242.004000px;}
.y206{bottom:243.676950px;}
.y19d{bottom:250.288200px;}
.y5e{bottom:251.002650px;}
.y8f{bottom:251.938650px;}
.y11f{bottom:251.944950px;}
.yc4{bottom:251.953650px;}
.yea{bottom:252.579150px;}
.y18{bottom:252.981180px;}
.y245{bottom:256.307400px;}
.y1d8{bottom:266.265900px;}
.y174{bottom:269.510100px;}
.y19c{bottom:271.348200px;}
.y8e{bottom:271.438650px;}
.y11e{bottom:271.444950px;}
.yc3{bottom:271.453650px;}
.y244{bottom:272.057400px;}
.ye9{bottom:272.079150px;}
.y5d{bottom:273.507150px;}
.y17{bottom:276.203880px;}
.y243{bottom:287.807400px;}
.y8d{bottom:290.938650px;}
.y11d{bottom:290.944950px;}
.yc2{bottom:290.953650px;}
.ye8{bottom:291.579150px;}
.y19b{bottom:292.408200px;}
.y1d7{bottom:293.772150px;}
.y5c{bottom:296.011650px;}
.y172{bottom:297.541200px;}
.y205{bottom:302.176950px;}
.y242{bottom:303.557400px;}
.y23{bottom:305.055000px;}
.y8c{bottom:310.438650px;}
.y11c{bottom:310.444950px;}
.yc1{bottom:310.453650px;}
.ye7{bottom:311.079150px;}
.y19a{bottom:313.468200px;}
.y171{bottom:314.041200px;}
.y5b{bottom:318.516150px;}
.y241{bottom:319.307400px;}
.y1d6{bottom:321.278250px;}
.y8b{bottom:329.938650px;}
.y11b{bottom:329.944950px;}
.yc0{bottom:329.953650px;}
.ye6{bottom:330.579150px;}
.y204{bottom:331.432950px;}
.y199{bottom:334.528200px;}
.y240{bottom:335.057400px;}
.y5a{bottom:341.020650px;}
.y16{bottom:344.356740px;}
.y1d5{bottom:349.309800px;}
.y8a{bottom:349.438650px;}
.y11a{bottom:349.444950px;}
.ybf{bottom:349.453650px;}
.y16a{bottom:349.455300px;}
.ye5{bottom:350.079150px;}
.y23f{bottom:350.807400px;}
.y143{bottom:351.783300px;}
.y198{bottom:355.588200px;}
.y59{bottom:363.525150px;}
.y1d4{bottom:365.809800px;}
.y23e{bottom:366.557400px;}
.y89{bottom:368.938650px;}
.y119{bottom:368.944950px;}
.ybe{bottom:368.953650px;}
.y169{bottom:368.955300px;}
.ye4{bottom:369.579150px;}
.y142{bottom:371.283300px;}
.y197{bottom:376.648200px;}
.y23d{bottom:382.307400px;}
.y203{bottom:382.432950px;}
.y15{bottom:382.517730px;}
.y1e6{bottom:383.656800px;}
.y58{bottom:386.029650px;}
.y88{bottom:388.438650px;}
.y118{bottom:388.444950px;}
.ybd{bottom:388.453650px;}
.y168{bottom:388.455300px;}
.ye3{bottom:389.079150px;}
.y141{bottom:390.783300px;}
.y196{bottom:397.708200px;}
.y23c{bottom:398.057400px;}
.y202{bottom:401.932950px;}
.y87{bottom:407.938650px;}
.y117{bottom:407.944950px;}
.ybc{bottom:407.953650px;}
.y167{bottom:407.955300px;}
.y57{bottom:408.534150px;}
.ye2{bottom:408.579150px;}
.y140{bottom:410.283300px;}
.y1c5{bottom:412.453800px;}
.y23b{bottom:413.807400px;}
.y195{bottom:418.768200px;}
.y14{bottom:420.678720px;}
.y201{bottom:421.432950px;}
.y86{bottom:427.438650px;}
.y116{bottom:427.444950px;}
.ybb{bottom:427.453650px;}
.y166{bottom:427.455300px;}
.ye1{bottom:428.079150px;}
.y23a{bottom:429.557400px;}
.y13f{bottom:429.783300px;}
.y56{bottom:431.038650px;}
.y1c4{bottom:431.953800px;}
.y194{bottom:439.828200px;}
.y200{bottom:440.932950px;}
.y239{bottom:445.307400px;}
.y85{bottom:446.938650px;}
.y115{bottom:446.944950px;}
.yba{bottom:446.953650px;}
.y165{bottom:446.955300px;}
.ye0{bottom:447.579150px;}
.y13e{bottom:449.283300px;}
.y1c3{bottom:451.453800px;}
.y55{bottom:453.543150px;}
.y13{bottom:458.839710px;}
.y1ff{bottom:460.432950px;}
.y193{bottom:460.888200px;}
.y238{bottom:461.057400px;}
.y84{bottom:466.438650px;}
.y114{bottom:466.444950px;}
.yb9{bottom:466.453650px;}
.y164{bottom:466.455300px;}
.ydf{bottom:467.079150px;}
.y13d{bottom:468.783300px;}
.y1c2{bottom:470.953800px;}
.y54{bottom:476.047650px;}
.y237{bottom:476.807400px;}
.y192{bottom:481.948200px;}
.y83{bottom:485.938650px;}
.y113{bottom:485.944950px;}
.yb8{bottom:485.953650px;}
.y163{bottom:485.955300px;}
.yde{bottom:486.579150px;}
.y13c{bottom:488.283300px;}
.y1fe{bottom:489.688950px;}
.y1c1{bottom:490.453800px;}
.y236{bottom:492.557400px;}
.y12{bottom:497.000700px;}
.y53{bottom:498.552150px;}
.y191{bottom:503.008200px;}
.y82{bottom:505.438650px;}
.y112{bottom:505.444950px;}
.yb7{bottom:505.453650px;}
.y162{bottom:505.455300px;}
.ydd{bottom:506.079150px;}
.y13b{bottom:507.783300px;}
.y235{bottom:508.307400px;}
.y1c0{bottom:509.953800px;}
.y52{bottom:521.056650px;}
.y1ab{bottom:523.033200px;}
.y234{bottom:524.057400px;}
.y190{bottom:524.068200px;}
.y81{bottom:524.938650px;}
.y111{bottom:524.944950px;}
.yb6{bottom:524.953650px;}
.y161{bottom:524.955300px;}
.ydc{bottom:525.579150px;}
.y13a{bottom:527.283300px;}
.y1bf{bottom:529.453800px;}
.y11{bottom:535.161690px;}
.y1aa{bottom:539.533200px;}
.y233{bottom:539.807400px;}
.y1fd{bottom:540.688950px;}
.y1e5{bottom:541.447500px;}
.y51{bottom:543.561150px;}
.y80{bottom:544.438650px;}
.y110{bottom:544.444950px;}
.yb5{bottom:544.453650px;}
.y160{bottom:544.455300px;}
.ydb{bottom:545.079150px;}
.y18f{bottom:545.128200px;}
.y139{bottom:546.783300px;}
.y1be{bottom:548.953800px;}
.y232{bottom:555.557400px;}
.y1a9{bottom:556.033200px;}
.y7f{bottom:563.938650px;}
.y10f{bottom:563.944950px;}
.yb4{bottom:563.953650px;}
.y15f{bottom:563.955300px;}
.yda{bottom:564.579150px;}
.y50{bottom:566.065650px;}
.y138{bottom:566.283300px;}
.y1bd{bottom:568.453800px;}
.y18e{bottom:569.405700px;}
.y18c{bottom:569.405850px;}
.y1fc{bottom:569.944950px;}
.y231{bottom:571.307400px;}
.y1a8{bottom:572.533200px;}
.y10{bottom:573.322680px;}
.y7e{bottom:583.438650px;}
.y10e{bottom:583.444950px;}
.yb3{bottom:583.453650px;}
.y15e{bottom:583.455300px;}
.yd9{bottom:584.079150px;}
.y18b{bottom:585.155850px;}
.y230{bottom:587.057400px;}
.y1bc{bottom:587.953800px;}
.y4f{bottom:588.570150px;}
.y1a7{bottom:589.033200px;}
.y18d{bottom:596.911950px;}
.y44{bottom:598.962150px;}
.y22f{bottom:602.807400px;}
.y137{bottom:602.883300px;}
.y7d{bottom:602.938650px;}
.y10d{bottom:602.944950px;}
.yb2{bottom:602.953650px;}
.y15d{bottom:602.955300px;}
.yd8{bottom:603.579150px;}
.y1a6{bottom:605.533200px;}
.y1bb{bottom:607.453800px;}
.y4e{bottom:611.074650px;}
.yf{bottom:611.483670px;}
.y43{bottom:613.966650px;}
.y22e{bottom:618.557400px;}
.y7c{bottom:622.438650px;}
.y10c{bottom:622.444950px;}
.yb1{bottom:622.453650px;}
.y15c{bottom:622.455300px;}
.yd7{bottom:623.079150px;}
.y1ba{bottom:626.953800px;}
.y42{bottom:628.971150px;}
.y4d{bottom:633.579150px;}
.y22d{bottom:634.307400px;}
.y28{bottom:635.130000px;}
.y7b{bottom:641.938650px;}
.y10b{bottom:641.944950px;}
.yb0{bottom:641.953650px;}
.y15b{bottom:641.955300px;}
.yd6{bottom:642.579150px;}
.y41{bottom:643.975650px;}
.y1b9{bottom:646.453800px;}
.ye{bottom:649.644660px;}
.y22c{bottom:650.057400px;}
.y4c{bottom:656.083650px;}
.y136{bottom:661.383300px;}
.y7a{bottom:661.438650px;}
.y10a{bottom:661.444950px;}
.yaf{bottom:661.453650px;}
.y15a{bottom:661.455300px;}
.yd5{bottom:662.079150px;}
.y22b{bottom:665.807400px;}
.y1b8{bottom:665.953800px;}
.y1d{bottom:667.530000px;}
.y40{bottom:673.974150px;}
.y4b{bottom:678.588150px;}
.y135{bottom:680.883300px;}
.y79{bottom:680.938650px;}
.y109{bottom:680.943150px;}
.y1fb{bottom:680.944950px;}
.yae{bottom:680.953650px;}
.y159{bottom:680.955300px;}
.y22a{bottom:681.557400px;}
.y1b7{bottom:685.453800px;}
.yd{bottom:687.805650px;}
.y3f{bottom:688.978650px;}
.y229{bottom:697.307400px;}
.yd4{bottom:698.679150px;}
.y78{bottom:700.438650px;}
.y108{bottom:700.443150px;}
.y1fa{bottom:700.444950px;}
.yad{bottom:700.453650px;}
.y158{bottom:700.455300px;}
.y4a{bottom:701.092650px;}
.y1b6{bottom:704.953800px;}
.y3e{bottom:708.708150px;}
.y228{bottom:713.057400px;}
.y77{bottom:719.938650px;}
.y107{bottom:719.943150px;}
.y1f9{bottom:719.944950px;}
.yac{bottom:719.953650px;}
.y157{bottom:719.955300px;}
.y49{bottom:723.597150px;}
.y3d{bottom:724.224150px;}
.y1b5{bottom:724.453800px;}
.yc{bottom:725.966640px;}
.y227{bottom:728.807400px;}
.y170{bottom:737.043300px;}
.y3c{bottom:739.228650px;}
.y76{bottom:739.438650px;}
.y106{bottom:739.443150px;}
.y1f8{bottom:739.444950px;}
.yab{bottom:739.453650px;}
.y156{bottom:739.455300px;}
.y1b4{bottom:743.953800px;}
.y226{bottom:744.557400px;}
.y48{bottom:746.101650px;}
.y20{bottom:749.250000px;}
.y16f{bottom:753.543300px;}
.yd3{bottom:757.179150px;}
.y75{bottom:758.938650px;}
.y105{bottom:758.943150px;}
.y1f7{bottom:758.944950px;}
.yaa{bottom:758.953650px;}
.y155{bottom:758.955300px;}
.y3b{bottom:758.958150px;}
.y266{bottom:760.298550px;}
.y225{bottom:760.307400px;}
.y1b3{bottom:763.453800px;}
.yb{bottom:764.127630px;}
.y47{bottom:768.606150px;}
.y16e{bottom:770.043300px;}
.y3a{bottom:774.478650px;}
.y265{bottom:776.048550px;}
.y224{bottom:776.057400px;}
.yd2{bottom:776.679150px;}
.y26d{bottom:776.798550px;}
.y74{bottom:778.438650px;}
.y104{bottom:778.443150px;}
.y1f6{bottom:778.444950px;}
.ya9{bottom:778.453650px;}
.y154{bottom:778.455300px;}
.y1b2{bottom:782.953800px;}
.y16d{bottom:786.543300px;}
.y46{bottom:791.110650px;}
.y264{bottom:791.798550px;}
.y223{bottom:791.807400px;}
.y39{bottom:794.208150px;}
.yd1{bottom:796.179150px;}
.y26c{bottom:796.298550px;}
.y73{bottom:797.938650px;}
.y103{bottom:797.943150px;}
.y1f5{bottom:797.944950px;}
.ya8{bottom:797.953650px;}
.y153{bottom:797.955300px;}
.ya{bottom:802.288620px;}
.y1b1{bottom:802.453800px;}
.y16c{bottom:803.043300px;}
.y263{bottom:807.548550px;}
.y222{bottom:807.557400px;}
.y38{bottom:809.728650px;}
.y45{bottom:813.610650px;}
.yd0{bottom:815.679150px;}
.y26b{bottom:815.798550px;}
.y72{bottom:817.438650px;}
.y102{bottom:817.443150px;}
.y1f4{bottom:817.444950px;}
.ya7{bottom:817.453650px;}
.y152{bottom:817.455300px;}
.y16b{bottom:819.543300px;}
.y1b0{bottom:821.953800px;}
.y262{bottom:823.298550px;}
.y221{bottom:823.307400px;}
.y37{bottom:829.458150px;}
.y26a{bottom:835.298550px;}
.y71{bottom:836.938650px;}
.y101{bottom:836.943150px;}
.y1f3{bottom:836.944950px;}
.ya6{bottom:836.953650px;}
.y151{bottom:836.955300px;}
.y261{bottom:839.048550px;}
.y220{bottom:839.057400px;}
.y9{bottom:840.449610px;}
.y1af{bottom:841.453800px;}
.y260{bottom:854.798550px;}
.y21f{bottom:854.807400px;}
.y70{bottom:856.438650px;}
.y100{bottom:856.443150px;}
.y1f2{bottom:856.444950px;}
.ya5{bottom:856.453650px;}
.y150{bottom:856.455300px;}
.y1ae{bottom:860.953800px;}
.y134{bottom:868.827450px;}
.y25f{bottom:870.548550px;}
.y21e{bottom:870.557400px;}
.y6f{bottom:875.938650px;}
.yff{bottom:875.943150px;}
.y1f1{bottom:875.944950px;}
.ya4{bottom:875.953650px;}
.y14f{bottom:875.955300px;}
.y33{bottom:876.679500px;}
.y8{bottom:878.610600px;}
.y1ad{bottom:880.453800px;}
.y133{bottom:884.577450px;}
.y25e{bottom:886.298550px;}
.y21d{bottom:886.307400px;}
.y6e{bottom:895.438650px;}
.yfe{bottom:895.443150px;}
.y1f0{bottom:895.444950px;}
.ya3{bottom:895.453650px;}
.y14e{bottom:895.455300px;}
.y269{bottom:899.798550px;}
.y1ac{bottom:899.953800px;}
.y7{bottom:900.041520px;}
.y25d{bottom:902.048550px;}
.y21c{bottom:902.057400px;}
.y32{bottom:906.685500px;}
.y132{bottom:909.327450px;}
.y6d{bottom:914.938650px;}
.yfd{bottom:914.943150px;}
.y1ef{bottom:914.944950px;}
.ya2{bottom:914.953650px;}
.y14d{bottom:914.955300px;}
.y25c{bottom:917.798550px;}
.y21b{bottom:917.807400px;}
.y268{bottom:919.298550px;}
.y6{bottom:925.687830px;}
.y131{bottom:930.387450px;}
.y25b{bottom:933.548550px;}
.y21a{bottom:933.557400px;}
.y6c{bottom:934.438650px;}
.yfc{bottom:934.443150px;}
.y1ee{bottom:934.444950px;}
.ya1{bottom:934.453650px;}
.y14c{bottom:934.455300px;}
.y1cc{bottom:946.420650px;}
.y267{bottom:947.798550px;}
.y25a{bottom:949.298550px;}
.y219{bottom:949.307400px;}
.y5{bottom:951.334140px;}
.y130{bottom:951.447450px;}
.y6b{bottom:953.938650px;}
.yfb{bottom:953.943150px;}
.y1ed{bottom:953.944950px;}
.ya0{bottom:953.953650px;}
.y14b{bottom:953.955300px;}
.y1cb{bottom:962.170650px;}
.y259{bottom:965.048550px;}
.y218{bottom:965.057400px;}
.y31{bottom:967.506300px;}
.y12f{bottom:972.507450px;}
.y6a{bottom:973.438650px;}
.yfa{bottom:973.443150px;}
.y1ec{bottom:973.444950px;}
.y9f{bottom:973.453650px;}
.y14a{bottom:973.455300px;}
.y4{bottom:976.980450px;}
.y258{bottom:980.798550px;}
.y217{bottom:980.807400px;}
.y1ca{bottom:981.854250px;}
.y1d3{bottom:991.453800px;}
.y69{bottom:992.938650px;}
.yf9{bottom:992.943150px;}
.y1eb{bottom:992.944950px;}
.y9e{bottom:992.953650px;}
.y149{bottom:992.955300px;}
.y12e{bottom:996.413700px;}
.y257{bottom:996.548550px;}
.y216{bottom:996.557400px;}
.y30{bottom:1002.012300px;}
.y1c9{bottom:1002.913950px;}
.y1d2{bottom:1007.953800px;}
.y256{bottom:1012.298550px;}
.y215{bottom:1012.307400px;}
.y68{bottom:1012.438650px;}
.yf8{bottom:1012.443150px;}
.y1ea{bottom:1012.444950px;}
.y9d{bottom:1012.450650px;}
.y18a{bottom:1012.453650px;}
.y148{bottom:1012.455300px;}
.y3{bottom:1019.370450px;}
.y12d{bottom:1024.444950px;}
.y1d1{bottom:1024.453800px;}
.y1c6{bottom:1026.820200px;}
.y255{bottom:1028.048550px;}
.y214{bottom:1028.057400px;}
.y67{bottom:1031.938650px;}
.yf7{bottom:1031.943150px;}
.y1e9{bottom:1031.944950px;}
.y9c{bottom:1031.950650px;}
.y189{bottom:1031.953650px;}
.y147{bottom:1031.955300px;}
.y12c{bottom:1040.944950px;}
.y1d0{bottom:1040.953800px;}
.y254{bottom:1043.798550px;}
.y213{bottom:1043.807400px;}
.y66{bottom:1051.438650px;}
.yf6{bottom:1051.443150px;}
.y1e8{bottom:1051.444950px;}
.y9b{bottom:1051.450650px;}
.y188{bottom:1051.453650px;}
.y146{bottom:1051.455300px;}
.y1c8{bottom:1054.326450px;}
.y2f{bottom:1056.012300px;}
.y12b{bottom:1057.444950px;}
.y1cf{bottom:1057.453800px;}
.y253{bottom:1059.548550px;}
.y212{bottom:1059.557400px;}
.y2{bottom:1060.044600px;}
.yf5{bottom:1070.943150px;}
.y1e7{bottom:1070.944950px;}
.y9a{bottom:1070.950650px;}
.y187{bottom:1070.953650px;}
.y145{bottom:1070.955300px;}
.y12a{bottom:1073.944950px;}
.y1ce{bottom:1073.953800px;}
.y252{bottom:1075.298550px;}
.y211{bottom:1075.307400px;}
.y1c7{bottom:1081.832550px;}
.y1c{bottom:1086.240450px;}
.y65{bottom:1088.038650px;}
.yf4{bottom:1090.443150px;}
.y129{bottom:1090.444950px;}
.y99{bottom:1090.450650px;}
.y186{bottom:1090.453650px;}
.y1cd{bottom:1090.453800px;}
.y144{bottom:1090.455300px;}
.y251{bottom:1091.048550px;}
.y210{bottom:1091.057400px;}
.y1{bottom:1093.890450px;}
.y2e{bottom:1096.573650px;}
.y2d{bottom:1115.319150px;}
.y2c{bottom:1118.319150px;}
.ycf{bottom:1126.684950px;}
.y63{bottom:1126.685700px;}
.y64{bottom:1129.263000px;}
.yce{bottom:1129.384950px;}
.y62{bottom:1129.385700px;}
.h13{height:22.799700px;}
.h27{height:24.428250px;}
.h28{height:28.617750px;}
.h1b{height:30.429000px;}
.h19{height:30.576000px;}
.h1e{height:30.941400px;}
.h14{height:31.206000px;}
.hd{height:32.571000px;}
.h8{height:32.625000px;}
.h17{height:32.970000px;}
.h2c{height:33.142500px;}
.h23{height:33.435000px;}
.h24{height:34.897500px;}
.h2a{height:34.906104px;}
.h21{height:35.325000px;}
.h2b{height:37.680000px;}
.hb{height:38.157000px;}
.hf{height:39.771000px;}
.h22{height:40.882500px;}
.h18{height:43.608000px;}
.h1d{height:43.620000px;}
.h15{height:44.580000px;}
.hc{height:44.622270px;}
.h25{height:44.679450px;}
.h1{height:45.035156px;}
.h3{height:45.807187px;}
.h1c{height:47.100000px;}
.h1f{height:47.656800px;}
.h20{height:47.664000px;}
.h26{height:48.882750px;}
.h16{height:49.059000px;}
.h2{height:58.322812px;}
.h1a{height:60.191460px;}
.he{height:60.907770px;}
.h5{height:63.615234px;}
.h11{height:69.847800px;}
.h12{height:69.871800px;}
.h4{height:78.780000px;}
.h10{height:80.244000px;}
.h6{height:114.150000px;}
.h7{height:223.350000px;}
.h29{height:551.658000px;}
.h9{height:1173.543000px;}
.ha{height:1173.750000px;}
.h0{height:1263.000000px;}
.w4{width:575.460000px;}
.w2{width:580.575000px;}
.w3{width:583.020000px;}
.w7{width:756.066000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w5{width:892.914000px;}
.w6{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.500000px;}
.x25{left:34.799550px;}
.x13{left:67.138500px;}
.x8{left:69.732300px;}
.x1b{left:76.180800px;}
.x1a{left:78.732300px;}
.x14{left:86.746950px;}
.x17{left:89.189700px;}
.x26{left:99.131100px;}
.x9{left:104.654700px;}
.x3{left:106.380000px;}
.xa{left:118.125900px;}
.x1c{left:133.841100px;}
.x21{left:141.399900px;}
.x24{left:160.342050px;}
.x5{left:186.885000px;}
.x7{left:188.505000px;}
.xb{left:191.856900px;}
.xc{left:194.487000px;}
.x2{left:204.216300px;}
.x23{left:219.450600px;}
.xf{left:313.801050px;}
.xd{left:319.005450px;}
.xe{left:321.635550px;}
.x1f{left:330.420900px;}
.x20{left:341.670900px;}
.x27{left:386.624550px;}
.x15{left:458.710950px;}
.x18{left:461.210400px;}
.x16{left:478.210950px;}
.x28{left:479.232300px;}
.x19{left:480.698400px;}
.x4{left:485.820000px;}
.x1d{left:504.063450px;}
.x22{left:596.982300px;}
.x1e{left:605.190900px;}
.x1{left:742.950000px;}
.x10{left:761.785650px;}
.x11{left:786.082650px;}
.x12{left:788.331600px;}
@media print{
.v7{vertical-align:-18.000000pt;}
.v3{vertical-align:-16.800000pt;}
.v4{vertical-align:-14.069333pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.001067pt;}
.v5{vertical-align:19.200000pt;}
.v2{vertical-align:28.800533pt;}
.ls11{letter-spacing:-0.933333pt;}
.ls1f{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.117120pt;}
.lsd{letter-spacing:-0.040992pt;}
.lsb{letter-spacing:-0.029280pt;}
.lsa{letter-spacing:-0.011712pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011712pt;}
.ls7{letter-spacing:0.017568pt;}
.ls0{letter-spacing:0.022368pt;}
.ls2{letter-spacing:0.023424pt;}
.ls4{letter-spacing:0.029280pt;}
.ls5{letter-spacing:0.035136pt;}
.ls1{letter-spacing:0.037280pt;}
.ls6{letter-spacing:0.040992pt;}
.lsf{letter-spacing:0.052704pt;}
.lsc{letter-spacing:0.199104pt;}
.ls24{letter-spacing:0.360000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.760000pt;}
.ls18{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.896000pt;}
.ls15{letter-spacing:2.576000pt;}
.ls22{letter-spacing:4.266667pt;}
.ls23{letter-spacing:4.693333pt;}
.ls13{letter-spacing:5.333333pt;}
.ls16{letter-spacing:5.973333pt;}
.ls12{letter-spacing:7.466667pt;}
.ls10{letter-spacing:9.600000pt;}
.ls1c{letter-spacing:68.489867pt;}
.lse{letter-spacing:138.119616pt;}
.ls1a{letter-spacing:164.520000pt;}
.ls1d{letter-spacing:186.584000pt;}
.ls19{letter-spacing:187.720000pt;}
.ls1e{letter-spacing:233.320000pt;}
.ws17{word-spacing:-23.328000pt;}
.ws1a{word-spacing:-18.293333pt;}
.ws2{word-spacing:-13.263840pt;}
.ws0{word-spacing:-13.222848pt;}
.ws1{word-spacing:-13.205280pt;}
.ws6d{word-spacing:-11.434667pt;}
.ws1c{word-spacing:-10.922667pt;}
.ws13{word-spacing:-10.886400pt;}
.ws8b{word-spacing:-10.794667pt;}
.ws20{word-spacing:-10.624000pt;}
.ws6c{word-spacing:-10.496000pt;}
.ws51{word-spacing:-10.240000pt;}
.ws11{word-spacing:-9.557333pt;}
.ws6e{word-spacing:-9.360000pt;}
.ws15{word-spacing:-9.072000pt;}
.ws1b{word-spacing:-7.645867pt;}
.ws19{word-spacing:-7.466667pt;}
.ws5b{word-spacing:-7.168000pt;}
.ws14{word-spacing:-6.690133pt;}
.ws2a{word-spacing:-5.973333pt;}
.ws1d{word-spacing:-5.333333pt;}
.ws74{word-spacing:-4.693333pt;}
.ws73{word-spacing:-4.266667pt;}
.ws8c{word-spacing:-3.040000pt;}
.ws28{word-spacing:-2.576000pt;}
.ws18{word-spacing:-1.920000pt;}
.ws80{word-spacing:-1.640000pt;}
.ws84{word-spacing:-1.520000pt;}
.ws7d{word-spacing:-1.400000pt;}
.ws29{word-spacing:-1.237333pt;}
.ws83{word-spacing:-1.120000pt;}
.ws77{word-spacing:-0.920000pt;}
.ws4b{word-spacing:-0.896000pt;}
.ws40{word-spacing:-0.768000pt;}
.ws93{word-spacing:-0.760000pt;}
.ws1e{word-spacing:-0.640000pt;}
.ws72{word-spacing:-0.512000pt;}
.ws3f{word-spacing:-0.384000pt;}
.ws7b{word-spacing:-0.360000pt;}
.ws92{word-spacing:-0.280000pt;}
.ws10{word-spacing:-0.169824pt;}
.wse{word-spacing:-0.158112pt;}
.wsf{word-spacing:-0.134688pt;}
.ws7{word-spacing:-0.076128pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.067104pt;}
.ws5{word-spacing:0.082016pt;}
.ws6b{word-spacing:0.128000pt;}
.ws4{word-spacing:0.208768pt;}
.ws76{word-spacing:0.280000pt;}
.ws69{word-spacing:0.512000pt;}
.ws7e{word-spacing:0.720000pt;}
.ws16{word-spacing:0.933333pt;}
.ws4c{word-spacing:1.152000pt;}
.ws6f{word-spacing:1.536000pt;}
.ws70{word-spacing:1.706667pt;}
.ws7c{word-spacing:1.960000pt;}
.ws86{word-spacing:2.120000pt;}
.ws43{word-spacing:2.176000pt;}
.ws88{word-spacing:2.200000pt;}
.ws90{word-spacing:2.680000pt;}
.ws42{word-spacing:3.200000pt;}
.ws85{word-spacing:3.600000pt;}
.ws8f{word-spacing:4.840000pt;}
.ws79{word-spacing:4.960000pt;}
.ws71{word-spacing:5.546667pt;}
.ws89{word-spacing:5.600000pt;}
.ws8e{word-spacing:5.880000pt;}
.ws82{word-spacing:6.120000pt;}
.ws41{word-spacing:6.272000pt;}
.ws7a{word-spacing:6.320000pt;}
.ws94{word-spacing:6.960000pt;}
.ws91{word-spacing:7.040000pt;}
.wsb{word-spacing:7.208736pt;}
.ws9{word-spacing:7.852896pt;}
.wsa{word-spacing:7.858752pt;}
.ws87{word-spacing:8.200000pt;}
.wsc{word-spacing:9.445728pt;}
.ws8{word-spacing:9.469152pt;}
.wsd{word-spacing:9.480864pt;}
.ws7f{word-spacing:9.800000pt;}
.ws78{word-spacing:10.400000pt;}
.ws81{word-spacing:10.960000pt;}
.ws8d{word-spacing:11.200000pt;}
.ws75{word-spacing:15.240000pt;}
.ws8a{word-spacing:15.720000pt;}
.ws54{word-spacing:55.000000pt;}
.ws58{word-spacing:56.760000pt;}
.ws57{word-spacing:56.920000pt;}
.ws5a{word-spacing:58.840000pt;}
.ws12{word-spacing:60.249600pt;}
.ws52{word-spacing:60.440000pt;}
.ws59{word-spacing:78.200000pt;}
.ws55{word-spacing:79.960000pt;}
.ws53{word-spacing:80.120000pt;}
.ws56{word-spacing:82.040000pt;}
.ws39{word-spacing:96.760000pt;}
.ws37{word-spacing:96.800000pt;}
.ws33{word-spacing:97.280000pt;}
.ws2b{word-spacing:97.360000pt;}
.ws32{word-spacing:106.280000pt;}
.ws34{word-spacing:107.560000pt;}
.ws3c{word-spacing:108.040000pt;}
.ws3d{word-spacing:108.160000pt;}
.ws3e{word-spacing:112.120000pt;}
.ws38{word-spacing:120.000000pt;}
.ws3a{word-spacing:120.480000pt;}
.ws30{word-spacing:122.880000pt;}
.ws2f{word-spacing:123.920000pt;}
.ws31{word-spacing:129.480000pt;}
.ws35{word-spacing:130.000000pt;}
.ws61{word-spacing:142.880000pt;}
.ws50{word-spacing:145.880000pt;}
.ws3b{word-spacing:146.640000pt;}
.ws2d{word-spacing:146.680000pt;}
.ws23{word-spacing:147.400000pt;}
.ws2e{word-spacing:151.320000pt;}
.ws36{word-spacing:152.680000pt;}
.ws65{word-spacing:165.600000pt;}
.ws66{word-spacing:166.080000pt;}
.ws60{word-spacing:167.800000pt;}
.ws62{word-spacing:175.040000pt;}
.ws63{word-spacing:176.960000pt;}
.ws46{word-spacing:177.280000pt;}
.ws44{word-spacing:177.800000pt;}
.ws68{word-spacing:181.720000pt;}
.ws27{word-spacing:182.800000pt;}
.ws21{word-spacing:183.520000pt;}
.ws5f{word-spacing:191.720000pt;}
.ws64{word-spacing:193.080000pt;}
.ws67{word-spacing:193.560000pt;}
.ws47{word-spacing:200.240000pt;}
.ws4a{word-spacing:200.480000pt;}
.ws4e{word-spacing:204.136533pt;}
.ws49{word-spacing:223.440000pt;}
.ws4f{word-spacing:227.637333pt;}
.ws4d{word-spacing:234.251733pt;}
.ws45{word-spacing:240.800000pt;}
.ws25{word-spacing:263.640000pt;}
.ws48{word-spacing:270.280000pt;}
.ws22{word-spacing:280.440000pt;}
.ws26{word-spacing:302.320000pt;}
.ws2c{word-spacing:328.859200pt;}
.ws5d{word-spacing:349.012267pt;}
.ws24{word-spacing:377.040000pt;}
.ws5c{word-spacing:404.931733pt;}
.ws5e{word-spacing:404.932267pt;}
.ws6a{word-spacing:1209.359648pt;}
.ws1f{word-spacing:2127.863467pt;}
._c{margin-left:-12.211200pt;}
._11{margin-left:-10.880000pt;}
._17{margin-left:-9.982933pt;}
._9{margin-left:-7.712000pt;}
._8{margin-left:-5.952000pt;}
._16{margin-left:-4.440533pt;}
._5{margin-left:-3.216000pt;}
._6{margin-left:-2.308267pt;}
._3{margin-left:-0.970667pt;}
._0{width:1.171200pt;}
._b{width:2.217600pt;}
._d{width:3.254400pt;}
._a{width:4.387200pt;}
._e{width:5.342400pt;}
._14{width:6.237333pt;}
._12{width:7.214933pt;}
._4{width:8.400000pt;}
._13{width:9.867733pt;}
._55{width:11.170933pt;}
._15{width:12.445867pt;}
._f{width:13.555200pt;}
._10{width:15.144000pt;}
._28{width:16.512000pt;}
._53{width:17.438933pt;}
._56{width:19.224533pt;}
._7{width:23.630933pt;}
._54{width:25.147733pt;}
._45{width:68.295467pt;}
._20{width:83.320000pt;}
._47{width:88.440000pt;}
._44{width:91.568000pt;}
._21{width:98.960000pt;}
._1f{width:107.080000pt;}
._22{width:117.760000pt;}
._26{width:122.480000pt;}
._46{width:126.120000pt;}
._25{width:130.360000pt;}
._24{width:133.640000pt;}
._27{width:139.720000pt;}
._31{width:145.560000pt;}
._40{width:151.360000pt;}
._49{width:153.520000pt;}
._23{width:156.840000pt;}
._51{width:164.200000pt;}
._30{width:165.920000pt;}
._4d{width:170.600000pt;}
._43{width:173.280000pt;}
._52{width:175.400000pt;}
._4b{width:180.080000pt;}
._4a{width:184.720000pt;}
._4e{width:192.200000pt;}
._42{width:194.400000pt;}
._3f{width:195.640000pt;}
._2f{width:196.960000pt;}
._50{width:198.720000pt;}
._4c{width:203.280000pt;}
._34{width:210.480000pt;}
._4f{width:215.560000pt;}
._38{width:216.880000pt;}
._3d{width:221.800000pt;}
._32{width:223.440000pt;}
._41{width:226.840000pt;}
._39{width:232.520000pt;}
._2b{width:233.680000pt;}
._29{width:241.560000pt;}
._2e{width:242.600000pt;}
._3b{width:251.880000pt;}
._3c{width:256.920000pt;}
._1a{width:266.160000pt;}
._2a{width:280.520000pt;}
._19{width:285.120000pt;}
._33{width:287.120000pt;}
._18{width:295.480000pt;}
._36{width:301.920000pt;}
._2c{width:304.560000pt;}
._1b{width:312.560000pt;}
._35{width:313.880000pt;}
._1e{width:331.835200pt;}
._1c{width:335.720000pt;}
._2d{width:338.000000pt;}
._37{width:374.440000pt;}
._3a{width:392.800000pt;}
._1d{width:402.019200pt;}
._3e{width:418.668267pt;}
._2{width:650.720000pt;}
._48{width:734.224000pt;}
._1{width:1179.173333pt;}
.fsa{font-size:26.133333pt;}
.fs10{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fs3{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs11{font-size:42.272000pt;}
.fsc{font-size:42.666667pt;}
.fs9{font-size:44.800000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:51.146667pt;}
.fsb{font-size:53.333333pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fsd{font-size:69.440000pt;}
.fs5{font-size:69.813333pt;}
.fs1{font-size:74.560000pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:14.853333pt;}
.y2a{bottom:36.106400pt;}
.y1f{bottom:37.253333pt;}
.y2b{bottom:38.373067pt;}
.y1e{bottom:55.893333pt;}
.y36{bottom:56.766800pt;}
.y17d{bottom:64.264533pt;}
.y1e1{bottom:66.780800pt;}
.y1e3{bottom:67.343867pt;}
.y98{bottom:67.945467pt;}
.y128{bottom:67.951067pt;}
.ycd{bottom:67.958800pt;}
.yf3{bottom:68.514800pt;}
.y22{bottom:68.693333pt;}
.y35{bottom:70.104133pt;}
.y1a5{bottom:72.718400pt;}
.y250{bottom:73.828800pt;}
.y17c{bottom:78.264533pt;}
.y1e0{bottom:80.780800pt;}
.y20f{bottom:81.951067pt;}
.y1e2{bottom:82.010533pt;}
.y34{bottom:83.441467pt;}
.y97{bottom:85.278800pt;}
.y127{bottom:85.284400pt;}
.ycc{bottom:85.292133pt;}
.yf2{bottom:85.848133pt;}
.y21{bottom:87.333333pt;}
.y24f{bottom:87.828800pt;}
.y1a4{bottom:91.438400pt;}
.y185{bottom:94.214400pt;}
.y20e{bottom:95.951067pt;}
.y17b{bottom:100.264533pt;}
.y24e{bottom:101.828800pt;}
.y96{bottom:102.612133pt;}
.y126{bottom:102.617733pt;}
.ycb{bottom:102.625467pt;}
.y1df{bottom:102.780800pt;}
.yf1{bottom:103.181467pt;}
.y1e4{bottom:105.929333pt;}
.y184{bottom:108.881067pt;}
.y20d{bottom:109.951067pt;}
.y1a3{bottom:110.158400pt;}
.y24d{bottom:115.828800pt;}
.y17a{bottom:118.984533pt;}
.y95{bottom:119.945467pt;}
.y125{bottom:119.951067pt;}
.yca{bottom:119.958800pt;}
.yf0{bottom:120.514800pt;}
.y1de{bottom:121.500800pt;}
.y183{bottom:123.547733pt;}
.y20c{bottom:123.951067pt;}
.y27{bottom:128.480000pt;}
.y1a2{bottom:128.878400pt;}
.y24c{bottom:129.828800pt;}
.y94{bottom:137.278800pt;}
.y124{bottom:137.284400pt;}
.yc9{bottom:137.292133pt;}
.y179{bottom:137.704533pt;}
.yef{bottom:137.848133pt;}
.y20b{bottom:137.951067pt;}
.y182{bottom:138.214400pt;}
.y1dd{bottom:140.220800pt;}
.y24b{bottom:143.828800pt;}
.y26{bottom:147.120000pt;}
.y1a1{bottom:147.598400pt;}
.y20a{bottom:151.951067pt;}
.y181{bottom:152.881067pt;}
.y93{bottom:154.612133pt;}
.y123{bottom:154.617733pt;}
.yc8{bottom:154.625467pt;}
.yee{bottom:155.181467pt;}
.y178{bottom:156.424533pt;}
.y61{bottom:156.555467pt;}
.y24a{bottom:157.828800pt;}
.y1dc{bottom:158.940800pt;}
.y1b{bottom:163.113413pt;}
.y25{bottom:165.760000pt;}
.y209{bottom:165.951067pt;}
.y1a0{bottom:166.318400pt;}
.y180{bottom:167.547733pt;}
.y249{bottom:171.828800pt;}
.y92{bottom:171.945467pt;}
.y122{bottom:171.951067pt;}
.yc7{bottom:171.958800pt;}
.yed{bottom:172.514800pt;}
.y60{bottom:173.888800pt;}
.y177{bottom:175.144533pt;}
.y1db{bottom:177.660800pt;}
.y208{bottom:179.951067pt;}
.y17f{bottom:182.214400pt;}
.y1a{bottom:183.755813pt;}
.y24{bottom:184.400000pt;}
.y19f{bottom:185.038400pt;}
.y248{bottom:185.828800pt;}
.y91{bottom:189.278800pt;}
.y121{bottom:189.284400pt;}
.yc6{bottom:189.292133pt;}
.yec{bottom:189.848133pt;}
.y5f{bottom:191.222133pt;}
.y176{bottom:193.864533pt;}
.y207{bottom:193.951067pt;}
.y1da{bottom:196.380800pt;}
.y17e{bottom:196.881067pt;}
.y247{bottom:199.828800pt;}
.y19e{bottom:203.758400pt;}
.y19{bottom:204.310373pt;}
.y90{bottom:206.612133pt;}
.y120{bottom:206.617733pt;}
.yc5{bottom:206.625467pt;}
.yeb{bottom:207.181467pt;}
.y246{bottom:213.828800pt;}
.y1d9{bottom:215.100800pt;}
.y175{bottom:215.114533pt;}
.y173{bottom:215.114667pt;}
.y206{bottom:216.601733pt;}
.y19d{bottom:222.478400pt;}
.y5e{bottom:223.113467pt;}
.y8f{bottom:223.945467pt;}
.y11f{bottom:223.951067pt;}
.yc4{bottom:223.958800pt;}
.yea{bottom:224.514800pt;}
.y18{bottom:224.872160pt;}
.y245{bottom:227.828800pt;}
.y1d8{bottom:236.680800pt;}
.y174{bottom:239.564533pt;}
.y19c{bottom:241.198400pt;}
.y8e{bottom:241.278800pt;}
.y11e{bottom:241.284400pt;}
.yc3{bottom:241.292133pt;}
.y244{bottom:241.828800pt;}
.ye9{bottom:241.848133pt;}
.y5d{bottom:243.117467pt;}
.y17{bottom:245.514560pt;}
.y243{bottom:255.828800pt;}
.y8d{bottom:258.612133pt;}
.y11d{bottom:258.617733pt;}
.yc2{bottom:258.625467pt;}
.ye8{bottom:259.181467pt;}
.y19b{bottom:259.918400pt;}
.y1d7{bottom:261.130800pt;}
.y5c{bottom:263.121467pt;}
.y172{bottom:264.481067pt;}
.y205{bottom:268.601733pt;}
.y242{bottom:269.828800pt;}
.y23{bottom:271.160000pt;}
.y8c{bottom:275.945467pt;}
.y11c{bottom:275.951067pt;}
.yc1{bottom:275.958800pt;}
.ye7{bottom:276.514800pt;}
.y19a{bottom:278.638400pt;}
.y171{bottom:279.147733pt;}
.y5b{bottom:283.125467pt;}
.y241{bottom:283.828800pt;}
.y1d6{bottom:285.580667pt;}
.y8b{bottom:293.278800pt;}
.y11b{bottom:293.284400pt;}
.yc0{bottom:293.292133pt;}
.ye6{bottom:293.848133pt;}
.y204{bottom:294.607067pt;}
.y199{bottom:297.358400pt;}
.y240{bottom:297.828800pt;}
.y5a{bottom:303.129467pt;}
.y16{bottom:306.094880pt;}
.y1d5{bottom:310.497600pt;}
.y8a{bottom:310.612133pt;}
.y11a{bottom:310.617733pt;}
.ybf{bottom:310.625467pt;}
.y16a{bottom:310.626933pt;}
.ye5{bottom:311.181467pt;}
.y23f{bottom:311.828800pt;}
.y143{bottom:312.696267pt;}
.y198{bottom:316.078400pt;}
.y59{bottom:323.133467pt;}
.y1d4{bottom:325.164267pt;}
.y23e{bottom:325.828800pt;}
.y89{bottom:327.945467pt;}
.y119{bottom:327.951067pt;}
.ybe{bottom:327.958800pt;}
.y169{bottom:327.960267pt;}
.ye4{bottom:328.514800pt;}
.y142{bottom:330.029600pt;}
.y197{bottom:334.798400pt;}
.y23d{bottom:339.828800pt;}
.y203{bottom:339.940400pt;}
.y15{bottom:340.015760pt;}
.y1e6{bottom:341.028267pt;}
.y58{bottom:343.137467pt;}
.y88{bottom:345.278800pt;}
.y118{bottom:345.284400pt;}
.ybd{bottom:345.292133pt;}
.y168{bottom:345.293600pt;}
.ye3{bottom:345.848133pt;}
.y141{bottom:347.362933pt;}
.y196{bottom:353.518400pt;}
.y23c{bottom:353.828800pt;}
.y202{bottom:357.273733pt;}
.y87{bottom:362.612133pt;}
.y117{bottom:362.617733pt;}
.ybc{bottom:362.625467pt;}
.y167{bottom:362.626933pt;}
.y57{bottom:363.141467pt;}
.ye2{bottom:363.181467pt;}
.y140{bottom:364.696267pt;}
.y1c5{bottom:366.625600pt;}
.y23b{bottom:367.828800pt;}
.y195{bottom:372.238400pt;}
.y14{bottom:373.936640pt;}
.y201{bottom:374.607067pt;}
.y86{bottom:379.945467pt;}
.y116{bottom:379.951067pt;}
.ybb{bottom:379.958800pt;}
.y166{bottom:379.960267pt;}
.ye1{bottom:380.514800pt;}
.y23a{bottom:381.828800pt;}
.y13f{bottom:382.029600pt;}
.y56{bottom:383.145467pt;}
.y1c4{bottom:383.958933pt;}
.y194{bottom:390.958400pt;}
.y200{bottom:391.940400pt;}
.y239{bottom:395.828800pt;}
.y85{bottom:397.278800pt;}
.y115{bottom:397.284400pt;}
.yba{bottom:397.292133pt;}
.y165{bottom:397.293600pt;}
.ye0{bottom:397.848133pt;}
.y13e{bottom:399.362933pt;}
.y1c3{bottom:401.292267pt;}
.y55{bottom:403.149467pt;}
.y13{bottom:407.857520pt;}
.y1ff{bottom:409.273733pt;}
.y193{bottom:409.678400pt;}
.y238{bottom:409.828800pt;}
.y84{bottom:414.612133pt;}
.y114{bottom:414.617733pt;}
.yb9{bottom:414.625467pt;}
.y164{bottom:414.626933pt;}
.ydf{bottom:415.181467pt;}
.y13d{bottom:416.696267pt;}
.y1c2{bottom:418.625600pt;}
.y54{bottom:423.153467pt;}
.y237{bottom:423.828800pt;}
.y192{bottom:428.398400pt;}
.y83{bottom:431.945467pt;}
.y113{bottom:431.951067pt;}
.yb8{bottom:431.958800pt;}
.y163{bottom:431.960267pt;}
.yde{bottom:432.514800pt;}
.y13c{bottom:434.029600pt;}
.y1fe{bottom:435.279067pt;}
.y1c1{bottom:435.958933pt;}
.y236{bottom:437.828800pt;}
.y12{bottom:441.778400pt;}
.y53{bottom:443.157467pt;}
.y191{bottom:447.118400pt;}
.y82{bottom:449.278800pt;}
.y112{bottom:449.284400pt;}
.yb7{bottom:449.292133pt;}
.y162{bottom:449.293600pt;}
.ydd{bottom:449.848133pt;}
.y13b{bottom:451.362933pt;}
.y235{bottom:451.828800pt;}
.y1c0{bottom:453.292267pt;}
.y52{bottom:463.161467pt;}
.y1ab{bottom:464.918400pt;}
.y234{bottom:465.828800pt;}
.y190{bottom:465.838400pt;}
.y81{bottom:466.612133pt;}
.y111{bottom:466.617733pt;}
.yb6{bottom:466.625467pt;}
.y161{bottom:466.626933pt;}
.ydc{bottom:467.181467pt;}
.y13a{bottom:468.696267pt;}
.y1bf{bottom:470.625600pt;}
.y11{bottom:475.699280pt;}
.y1aa{bottom:479.585067pt;}
.y233{bottom:479.828800pt;}
.y1fd{bottom:480.612400pt;}
.y1e5{bottom:481.286667pt;}
.y51{bottom:483.165467pt;}
.y80{bottom:483.945467pt;}
.y110{bottom:483.951067pt;}
.yb5{bottom:483.958800pt;}
.y160{bottom:483.960267pt;}
.ydb{bottom:484.514800pt;}
.y18f{bottom:484.558400pt;}
.y139{bottom:486.029600pt;}
.y1be{bottom:487.958933pt;}
.y232{bottom:493.828800pt;}
.y1a9{bottom:494.251733pt;}
.y7f{bottom:501.278800pt;}
.y10f{bottom:501.284400pt;}
.yb4{bottom:501.292133pt;}
.y15f{bottom:501.293600pt;}
.yda{bottom:501.848133pt;}
.y50{bottom:503.169467pt;}
.y138{bottom:503.362933pt;}
.y1bd{bottom:505.292267pt;}
.y18e{bottom:506.138400pt;}
.y18c{bottom:506.138533pt;}
.y1fc{bottom:506.617733pt;}
.y231{bottom:507.828800pt;}
.y1a8{bottom:508.918400pt;}
.y10{bottom:509.620160pt;}
.y7e{bottom:518.612133pt;}
.y10e{bottom:518.617733pt;}
.yb3{bottom:518.625467pt;}
.y15e{bottom:518.626933pt;}
.yd9{bottom:519.181467pt;}
.y18b{bottom:520.138533pt;}
.y230{bottom:521.828800pt;}
.y1bc{bottom:522.625600pt;}
.y4f{bottom:523.173467pt;}
.y1a7{bottom:523.585067pt;}
.y18d{bottom:530.588400pt;}
.y44{bottom:532.410800pt;}
.y22f{bottom:535.828800pt;}
.y137{bottom:535.896267pt;}
.y7d{bottom:535.945467pt;}
.y10d{bottom:535.951067pt;}
.yb2{bottom:535.958800pt;}
.y15d{bottom:535.960267pt;}
.yd8{bottom:536.514800pt;}
.y1a6{bottom:538.251733pt;}
.y1bb{bottom:539.958933pt;}
.y4e{bottom:543.177467pt;}
.yf{bottom:543.541040pt;}
.y43{bottom:545.748133pt;}
.y22e{bottom:549.828800pt;}
.y7c{bottom:553.278800pt;}
.y10c{bottom:553.284400pt;}
.yb1{bottom:553.292133pt;}
.y15c{bottom:553.293600pt;}
.yd7{bottom:553.848133pt;}
.y1ba{bottom:557.292267pt;}
.y42{bottom:559.085467pt;}
.y4d{bottom:563.181467pt;}
.y22d{bottom:563.828800pt;}
.y28{bottom:564.560000pt;}
.y7b{bottom:570.612133pt;}
.y10b{bottom:570.617733pt;}
.yb0{bottom:570.625467pt;}
.y15b{bottom:570.626933pt;}
.yd6{bottom:571.181467pt;}
.y41{bottom:572.422800pt;}
.y1b9{bottom:574.625600pt;}
.ye{bottom:577.461920pt;}
.y22c{bottom:577.828800pt;}
.y4c{bottom:583.185467pt;}
.y136{bottom:587.896267pt;}
.y7a{bottom:587.945467pt;}
.y10a{bottom:587.951067pt;}
.yaf{bottom:587.958800pt;}
.y15a{bottom:587.960267pt;}
.yd5{bottom:588.514800pt;}
.y22b{bottom:591.828800pt;}
.y1b8{bottom:591.958933pt;}
.y1d{bottom:593.360000pt;}
.y40{bottom:599.088133pt;}
.y4b{bottom:603.189467pt;}
.y135{bottom:605.229600pt;}
.y79{bottom:605.278800pt;}
.y109{bottom:605.282800pt;}
.y1fb{bottom:605.284400pt;}
.yae{bottom:605.292133pt;}
.y159{bottom:605.293600pt;}
.y22a{bottom:605.828800pt;}
.y1b7{bottom:609.292267pt;}
.yd{bottom:611.382800pt;}
.y3f{bottom:612.425467pt;}
.y229{bottom:619.828800pt;}
.yd4{bottom:621.048133pt;}
.y78{bottom:622.612133pt;}
.y108{bottom:622.616133pt;}
.y1fa{bottom:622.617733pt;}
.yad{bottom:622.625467pt;}
.y158{bottom:622.626933pt;}
.y4a{bottom:623.193467pt;}
.y1b6{bottom:626.625600pt;}
.y3e{bottom:629.962800pt;}
.y228{bottom:633.828800pt;}
.y77{bottom:639.945467pt;}
.y107{bottom:639.949467pt;}
.y1f9{bottom:639.951067pt;}
.yac{bottom:639.958800pt;}
.y157{bottom:639.960267pt;}
.y49{bottom:643.197467pt;}
.y3d{bottom:643.754800pt;}
.y1b5{bottom:643.958933pt;}
.yc{bottom:645.303680pt;}
.y227{bottom:647.828800pt;}
.y170{bottom:655.149600pt;}
.y3c{bottom:657.092133pt;}
.y76{bottom:657.278800pt;}
.y106{bottom:657.282800pt;}
.y1f8{bottom:657.284400pt;}
.yab{bottom:657.292133pt;}
.y156{bottom:657.293600pt;}
.y1b4{bottom:661.292267pt;}
.y226{bottom:661.828800pt;}
.y48{bottom:663.201467pt;}
.y20{bottom:666.000000pt;}
.y16f{bottom:669.816267pt;}
.yd3{bottom:673.048133pt;}
.y75{bottom:674.612133pt;}
.y105{bottom:674.616133pt;}
.y1f7{bottom:674.617733pt;}
.yaa{bottom:674.625467pt;}
.y155{bottom:674.626933pt;}
.y3b{bottom:674.629467pt;}
.y266{bottom:675.820933pt;}
.y225{bottom:675.828800pt;}
.y1b3{bottom:678.625600pt;}
.yb{bottom:679.224560pt;}
.y47{bottom:683.205467pt;}
.y16e{bottom:684.482933pt;}
.y3a{bottom:688.425467pt;}
.y265{bottom:689.820933pt;}
.y224{bottom:689.828800pt;}
.yd2{bottom:690.381467pt;}
.y26d{bottom:690.487600pt;}
.y74{bottom:691.945467pt;}
.y104{bottom:691.949467pt;}
.y1f6{bottom:691.951067pt;}
.ya9{bottom:691.958800pt;}
.y154{bottom:691.960267pt;}
.y1b2{bottom:695.958933pt;}
.y16d{bottom:699.149600pt;}
.y46{bottom:703.209467pt;}
.y264{bottom:703.820933pt;}
.y223{bottom:703.828800pt;}
.y39{bottom:705.962800pt;}
.yd1{bottom:707.714800pt;}
.y26c{bottom:707.820933pt;}
.y73{bottom:709.278800pt;}
.y103{bottom:709.282800pt;}
.y1f5{bottom:709.284400pt;}
.ya8{bottom:709.292133pt;}
.y153{bottom:709.293600pt;}
.ya{bottom:713.145440pt;}
.y1b1{bottom:713.292267pt;}
.y16c{bottom:713.816267pt;}
.y263{bottom:717.820933pt;}
.y222{bottom:717.828800pt;}
.y38{bottom:719.758800pt;}
.y45{bottom:723.209467pt;}
.yd0{bottom:725.048133pt;}
.y26b{bottom:725.154267pt;}
.y72{bottom:726.612133pt;}
.y102{bottom:726.616133pt;}
.y1f4{bottom:726.617733pt;}
.ya7{bottom:726.625467pt;}
.y152{bottom:726.626933pt;}
.y16b{bottom:728.482933pt;}
.y1b0{bottom:730.625600pt;}
.y262{bottom:731.820933pt;}
.y221{bottom:731.828800pt;}
.y37{bottom:737.296133pt;}
.y26a{bottom:742.487600pt;}
.y71{bottom:743.945467pt;}
.y101{bottom:743.949467pt;}
.y1f3{bottom:743.951067pt;}
.ya6{bottom:743.958800pt;}
.y151{bottom:743.960267pt;}
.y261{bottom:745.820933pt;}
.y220{bottom:745.828800pt;}
.y9{bottom:747.066320pt;}
.y1af{bottom:747.958933pt;}
.y260{bottom:759.820933pt;}
.y21f{bottom:759.828800pt;}
.y70{bottom:761.278800pt;}
.y100{bottom:761.282800pt;}
.y1f2{bottom:761.284400pt;}
.ya5{bottom:761.292133pt;}
.y150{bottom:761.293600pt;}
.y1ae{bottom:765.292267pt;}
.y134{bottom:772.291067pt;}
.y25f{bottom:773.820933pt;}
.y21e{bottom:773.828800pt;}
.y6f{bottom:778.612133pt;}
.yff{bottom:778.616133pt;}
.y1f1{bottom:778.617733pt;}
.ya4{bottom:778.625467pt;}
.y14f{bottom:778.626933pt;}
.y33{bottom:779.270667pt;}
.y8{bottom:780.987200pt;}
.y1ad{bottom:782.625600pt;}
.y133{bottom:786.291067pt;}
.y25e{bottom:787.820933pt;}
.y21d{bottom:787.828800pt;}
.y6e{bottom:795.945467pt;}
.yfe{bottom:795.949467pt;}
.y1f0{bottom:795.951067pt;}
.ya3{bottom:795.958800pt;}
.y14e{bottom:795.960267pt;}
.y269{bottom:799.820933pt;}
.y1ac{bottom:799.958933pt;}
.y7{bottom:800.036907pt;}
.y25d{bottom:801.820933pt;}
.y21c{bottom:801.828800pt;}
.y32{bottom:805.942667pt;}
.y132{bottom:808.291067pt;}
.y6d{bottom:813.278800pt;}
.yfd{bottom:813.282800pt;}
.y1ef{bottom:813.284400pt;}
.ya2{bottom:813.292133pt;}
.y14d{bottom:813.293600pt;}
.y25c{bottom:815.820933pt;}
.y21b{bottom:815.828800pt;}
.y268{bottom:817.154267pt;}
.y6{bottom:822.833627pt;}
.y131{bottom:827.011067pt;}
.y25b{bottom:829.820933pt;}
.y21a{bottom:829.828800pt;}
.y6c{bottom:830.612133pt;}
.yfc{bottom:830.616133pt;}
.y1ee{bottom:830.617733pt;}
.ya1{bottom:830.625467pt;}
.y14c{bottom:830.626933pt;}
.y1cc{bottom:841.262800pt;}
.y267{bottom:842.487600pt;}
.y25a{bottom:843.820933pt;}
.y219{bottom:843.828800pt;}
.y5{bottom:845.630347pt;}
.y130{bottom:845.731067pt;}
.y6b{bottom:847.945467pt;}
.yfb{bottom:847.949467pt;}
.y1ed{bottom:847.951067pt;}
.ya0{bottom:847.958800pt;}
.y14b{bottom:847.960267pt;}
.y1cb{bottom:855.262800pt;}
.y259{bottom:857.820933pt;}
.y218{bottom:857.828800pt;}
.y31{bottom:860.005600pt;}
.y12f{bottom:864.451067pt;}
.y6a{bottom:865.278800pt;}
.yfa{bottom:865.282800pt;}
.y1ec{bottom:865.284400pt;}
.y9f{bottom:865.292133pt;}
.y14a{bottom:865.293600pt;}
.y4{bottom:868.427067pt;}
.y258{bottom:871.820933pt;}
.y217{bottom:871.828800pt;}
.y1ca{bottom:872.759333pt;}
.y1d3{bottom:881.292267pt;}
.y69{bottom:882.612133pt;}
.yf9{bottom:882.616133pt;}
.y1eb{bottom:882.617733pt;}
.y9e{bottom:882.625467pt;}
.y149{bottom:882.626933pt;}
.y12e{bottom:885.701067pt;}
.y257{bottom:885.820933pt;}
.y216{bottom:885.828800pt;}
.y30{bottom:890.677600pt;}
.y1c9{bottom:891.479067pt;}
.y1d2{bottom:895.958933pt;}
.y256{bottom:899.820933pt;}
.y215{bottom:899.828800pt;}
.y68{bottom:899.945467pt;}
.yf8{bottom:899.949467pt;}
.y1ea{bottom:899.951067pt;}
.y9d{bottom:899.956133pt;}
.y18a{bottom:899.958800pt;}
.y148{bottom:899.960267pt;}
.y3{bottom:906.107067pt;}
.y12d{bottom:910.617733pt;}
.y1d1{bottom:910.625600pt;}
.y1c6{bottom:912.729067pt;}
.y255{bottom:913.820933pt;}
.y214{bottom:913.828800pt;}
.y67{bottom:917.278800pt;}
.yf7{bottom:917.282800pt;}
.y1e9{bottom:917.284400pt;}
.y9c{bottom:917.289467pt;}
.y189{bottom:917.292133pt;}
.y147{bottom:917.293600pt;}
.y12c{bottom:925.284400pt;}
.y1d0{bottom:925.292267pt;}
.y254{bottom:927.820933pt;}
.y213{bottom:927.828800pt;}
.y66{bottom:934.612133pt;}
.yf6{bottom:934.616133pt;}
.y1e8{bottom:934.617733pt;}
.y9b{bottom:934.622800pt;}
.y188{bottom:934.625467pt;}
.y146{bottom:934.626933pt;}
.y1c8{bottom:937.179067pt;}
.y2f{bottom:938.677600pt;}
.y12b{bottom:939.951067pt;}
.y1cf{bottom:939.958933pt;}
.y253{bottom:941.820933pt;}
.y212{bottom:941.828800pt;}
.y2{bottom:942.261867pt;}
.yf5{bottom:951.949467pt;}
.y1e7{bottom:951.951067pt;}
.y9a{bottom:951.956133pt;}
.y187{bottom:951.958800pt;}
.y145{bottom:951.960267pt;}
.y12a{bottom:954.617733pt;}
.y1ce{bottom:954.625600pt;}
.y252{bottom:955.820933pt;}
.y211{bottom:955.828800pt;}
.y1c7{bottom:961.628933pt;}
.y1c{bottom:965.547067pt;}
.y65{bottom:967.145467pt;}
.yf4{bottom:969.282800pt;}
.y129{bottom:969.284400pt;}
.y99{bottom:969.289467pt;}
.y186{bottom:969.292133pt;}
.y1cd{bottom:969.292267pt;}
.y144{bottom:969.293600pt;}
.y251{bottom:969.820933pt;}
.y210{bottom:969.828800pt;}
.y1{bottom:972.347067pt;}
.y2e{bottom:974.732133pt;}
.y2d{bottom:991.394800pt;}
.y2c{bottom:994.061467pt;}
.ycf{bottom:1001.497733pt;}
.y63{bottom:1001.498400pt;}
.y64{bottom:1003.789333pt;}
.yce{bottom:1003.897733pt;}
.y62{bottom:1003.898400pt;}
.h13{height:20.266400pt;}
.h27{height:21.714000pt;}
.h28{height:25.438000pt;}
.h1b{height:27.048000pt;}
.h19{height:27.178667pt;}
.h1e{height:27.503467pt;}
.h14{height:27.738667pt;}
.hd{height:28.952000pt;}
.h8{height:29.000000pt;}
.h17{height:29.306667pt;}
.h2c{height:29.460000pt;}
.h23{height:29.720000pt;}
.h24{height:31.020000pt;}
.h2a{height:31.027648pt;}
.h21{height:31.400000pt;}
.h2b{height:33.493333pt;}
.hb{height:33.917333pt;}
.hf{height:35.352000pt;}
.h22{height:36.340000pt;}
.h18{height:38.762667pt;}
.h1d{height:38.773333pt;}
.h15{height:39.626667pt;}
.hc{height:39.664240pt;}
.h25{height:39.715067pt;}
.h1{height:40.031250pt;}
.h3{height:40.717500pt;}
.h1c{height:41.866667pt;}
.h1f{height:42.361600pt;}
.h20{height:42.368000pt;}
.h26{height:43.451333pt;}
.h16{height:43.608000pt;}
.h2{height:51.842500pt;}
.h1a{height:53.503520pt;}
.he{height:54.140240pt;}
.h5{height:56.546875pt;}
.h11{height:62.086933pt;}
.h12{height:62.108267pt;}
.h4{height:70.026667pt;}
.h10{height:71.328000pt;}
.h6{height:101.466667pt;}
.h7{height:198.533333pt;}
.h29{height:490.362667pt;}
.h9{height:1043.149333pt;}
.ha{height:1043.333333pt;}
.h0{height:1122.666667pt;}
.w4{width:511.520000pt;}
.w2{width:516.066667pt;}
.w3{width:518.240000pt;}
.w7{width:672.058667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w5{width:793.701333pt;}
.w6{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.333333pt;}
.x25{left:30.932933pt;}
.x13{left:59.678667pt;}
.x8{left:61.984267pt;}
.x1b{left:67.716267pt;}
.x1a{left:69.984267pt;}
.x14{left:77.108400pt;}
.x17{left:79.279733pt;}
.x26{left:88.116533pt;}
.x9{left:93.026400pt;}
.x3{left:94.560000pt;}
.xa{left:105.000800pt;}
.x1c{left:118.969867pt;}
.x21{left:125.688800pt;}
.x24{left:142.526267pt;}
.x5{left:166.120000pt;}
.x7{left:167.560000pt;}
.xb{left:170.539467pt;}
.xc{left:172.877333pt;}
.x2{left:181.525600pt;}
.x23{left:195.067200pt;}
.xf{left:278.934267pt;}
.xd{left:283.560400pt;}
.xe{left:285.898267pt;}
.x1f{left:293.707467pt;}
.x20{left:303.707467pt;}
.x27{left:343.666267pt;}
.x15{left:407.743067pt;}
.x18{left:409.964800pt;}
.x16{left:425.076400pt;}
.x28{left:425.984267pt;}
.x19{left:427.287467pt;}
.x4{left:431.840000pt;}
.x1d{left:448.056400pt;}
.x22{left:530.650933pt;}
.x1e{left:537.947467pt;}
.x1{left:660.400000pt;}
.x10{left:677.142800pt;}
.x11{left:698.740133pt;}
.x12{left:700.739200pt;}
}




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