
    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_52e54c7cb5a1e3d2a3b6fcf6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.111000;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_b272f52785f0dfce9eede698.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980200;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_a60d7aeb71baa6d2fe937f51.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_96820bed7a5b5a8518a4aee7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4372042e337e0a29a74bb439.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.122000;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_ca42805f35c599ceab53ae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_5a6b66de437754c75f0e057d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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_a02ed004df393fa5ef6314e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.030000;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_e04c17842b25e1acaea16f73.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.977000;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_4afa04d30ebbc484e994e1ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.111000;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_9b88a7ad2fa1068ff470edfa.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.111000;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_6cb677f59971c8b923fbd2e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.208008;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_614b93ea89a9c601e31dd66b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.207031;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,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);}
.m2{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:-17.981400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.958000px;}
.v1{vertical-align:21.396300px;}
.ls35{letter-spacing:-1.290000px;}
.ls37{letter-spacing:-1.161000px;}
.ls36{letter-spacing:-1.096500px;}
.ls33{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-0.645000px;}
.ls32{letter-spacing:-0.629640px;}
.ls19{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.486000px;}
.ls2c{letter-spacing:-0.432000px;}
.ls20{letter-spacing:-0.387000px;}
.ls31{letter-spacing:-0.376038px;}
.ls2d{letter-spacing:-0.322500px;}
.ls2e{letter-spacing:-0.258000px;}
.ls6{letter-spacing:-0.210000px;}
.ls44{letter-spacing:-0.188019px;}
.ls43{letter-spacing:-0.129000px;}
.ls1a{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.013200px;}
.ls40{letter-spacing:0.051439px;}
.ls1c{letter-spacing:0.054000px;}
.ls1e{letter-spacing:0.064500px;}
.ls3c{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.129000px;}
.ls38{letter-spacing:0.135000px;}
.ls2a{letter-spacing:0.161250px;}
.ls24{letter-spacing:0.162000px;}
.ls16{letter-spacing:0.187153px;}
.ls3a{letter-spacing:0.189000px;}
.ls26{letter-spacing:0.193500px;}
.ls47{letter-spacing:0.216000px;}
.ls42{letter-spacing:0.225750px;}
.ls25{letter-spacing:0.258000px;}
.ls46{letter-spacing:0.270000px;}
.ls3f{letter-spacing:0.274612px;}
.ls23{letter-spacing:0.290250px;}
.ls14{letter-spacing:0.322500px;}
.ls3d{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.354750px;}
.ls13{letter-spacing:0.364753px;}
.ls28{letter-spacing:0.375553px;}
.ls1f{letter-spacing:0.378000px;}
.ls11{letter-spacing:0.387000px;}
.ls17{letter-spacing:0.451500px;}
.ls3{letter-spacing:0.480000px;}
.ls3e{letter-spacing:0.483750px;}
.ls18{letter-spacing:0.516000px;}
.ls48{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.548250px;}
.ls3b{letter-spacing:0.567000px;}
.ls15{letter-spacing:0.580500px;}
.ls27{letter-spacing:0.593250px;}
.ls12{letter-spacing:0.645000px;}
.ls2f{letter-spacing:0.709500px;}
.lsf{letter-spacing:0.774000px;}
.ls4d{letter-spacing:0.810000px;}
.ls45{letter-spacing:0.838500px;}
.ls5{letter-spacing:0.840000px;}
.ls4a{letter-spacing:0.864000px;}
.ls39{letter-spacing:0.918000px;}
.ls8{letter-spacing:0.967500px;}
.lsc{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.096500px;}
.ls10{letter-spacing:1.161000px;}
.lsb{letter-spacing:1.188000px;}
.ls9{letter-spacing:1.419000px;}
.lsd{letter-spacing:1.512000px;}
.lsa{letter-spacing:1.612500px;}
.lse{letter-spacing:1.728000px;}
.ls1{letter-spacing:1.764000px;}
.ls49{letter-spacing:2.106000px;}
.ls34{letter-spacing:2.121644px;}
.ls29{letter-spacing:3.564000px;}
.ls4b{letter-spacing:5.688000px;}
.ls41{letter-spacing:6.211350px;}
.ls2{letter-spacing:9.990000px;}
.ls1b{letter-spacing:1459.270800px;}
.ls0{letter-spacing:2130.501600px;}
.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;}
}
.ws2e{word-spacing:-12.835500px;}
.wsca{word-spacing:-12.312000px;}
.wsa1{word-spacing:-10.746000px;}
.ws11{word-spacing:-9.552000px;}
.ws2d{word-spacing:-8.955000px;}
.wscb{word-spacing:-8.618400px;}
.ws2f{word-spacing:-7.483156px;}
.wsa8{word-spacing:-7.257533px;}
.ws95{word-spacing:-7.107118px;}
.ws12{word-spacing:-6.264918px;}
.ws96{word-spacing:-5.635278px;}
.wsc8{word-spacing:-2.106000px;}
.ws18{word-spacing:-1.612500px;}
.wsc3{word-spacing:-0.864000px;}
.wsb4{word-spacing:-0.838500px;}
.wscc{word-spacing:-0.810000px;}
.ws6e{word-spacing:-0.645000px;}
.ws1e{word-spacing:-0.580500px;}
.ws6{word-spacing:-0.480000px;}
.ws60{word-spacing:-0.387000px;}
.wsc4{word-spacing:-0.324000px;}
.ws10{word-spacing:-0.240000px;}
.wsb5{word-spacing:-0.216000px;}
.ws51{word-spacing:-0.064500px;}
.ws67{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws8e{word-spacing:0.064500px;}
.ws5d{word-spacing:0.129000px;}
.ws2a{word-spacing:0.162000px;}
.wsad{word-spacing:0.188019px;}
.wsa5{word-spacing:0.193500px;}
.ws5{word-spacing:0.210000px;}
.wsa0{word-spacing:0.216000px;}
.ws6c{word-spacing:0.258000px;}
.ws6a{word-spacing:0.322500px;}
.ws77{word-spacing:0.324000px;}
.ws5a{word-spacing:0.387000px;}
.ws7a{word-spacing:0.451500px;}
.wsc6{word-spacing:0.486000px;}
.ws71{word-spacing:0.516000px;}
.ws29{word-spacing:0.540000px;}
.ws90{word-spacing:0.580500px;}
.wsbb{word-spacing:0.594000px;}
.ws65{word-spacing:0.645000px;}
.wsb6{word-spacing:0.648000px;}
.ws21{word-spacing:0.756000px;}
.ws3f{word-spacing:0.774000px;}
.wsc0{word-spacing:0.810000px;}
.ws59{word-spacing:0.838500px;}
.ws28{word-spacing:0.864000px;}
.wsa7{word-spacing:0.903000px;}
.wsb7{word-spacing:0.918000px;}
.ws66{word-spacing:0.967500px;}
.ws48{word-spacing:0.972000px;}
.ws7f{word-spacing:1.026000px;}
.ws38{word-spacing:1.032000px;}
.wsbf{word-spacing:1.080000px;}
.ws52{word-spacing:1.096500px;}
.wsb3{word-spacing:1.134000px;}
.ws58{word-spacing:1.161000px;}
.wsa{word-spacing:1.200000px;}
.ws78{word-spacing:1.225500px;}
.ws4a{word-spacing:1.242000px;}
.wsa9{word-spacing:1.290000px;}
.ws4d{word-spacing:1.354500px;}
.ws4c{word-spacing:1.419000px;}
.ws7d{word-spacing:1.483500px;}
.ws26{word-spacing:1.512000px;}
.ws7{word-spacing:1.536000px;}
.ws37{word-spacing:1.548000px;}
.ws25{word-spacing:1.566000px;}
.ws3d{word-spacing:1.612500px;}
.ws24{word-spacing:1.620000px;}
.wsb{word-spacing:1.632000px;}
.ws99{word-spacing:1.677000px;}
.ws86{word-spacing:1.728000px;}
.ws53{word-spacing:1.741500px;}
.ws87{word-spacing:1.782000px;}
.ws5e{word-spacing:1.806000px;}
.ws7e{word-spacing:1.836000px;}
.ws6f{word-spacing:1.870500px;}
.wsf{word-spacing:1.872000px;}
.ws4{word-spacing:1.890000px;}
.ws7c{word-spacing:1.935000px;}
.ws22{word-spacing:1.998000px;}
.ws8f{word-spacing:1.999500px;}
.ws23{word-spacing:2.052000px;}
.ws9e{word-spacing:2.064000px;}
.ws8d{word-spacing:2.106000px;}
.wsd{word-spacing:2.112000px;}
.ws94{word-spacing:2.128500px;}
.wsc5{word-spacing:2.160000px;}
.ws69{word-spacing:2.193000px;}
.ws6b{word-spacing:2.214000px;}
.wse{word-spacing:2.256000px;}
.ws3e{word-spacing:2.257500px;}
.ws72{word-spacing:2.268000px;}
.ws41{word-spacing:2.322000px;}
.ws43{word-spacing:2.386500px;}
.ws9a{word-spacing:2.430000px;}
.ws4e{word-spacing:2.451000px;}
.wsab{word-spacing:2.515500px;}
.ws1f{word-spacing:2.580000px;}
.wsbe{word-spacing:2.592000px;}
.ws3c{word-spacing:2.644500px;}
.wsba{word-spacing:2.646000px;}
.ws47{word-spacing:2.700000px;}
.ws40{word-spacing:2.773500px;}
.ws61{word-spacing:2.838000px;}
.ws85{word-spacing:2.862000px;}
.ws3b{word-spacing:2.902500px;}
.ws9c{word-spacing:2.916000px;}
.ws64{word-spacing:2.967000px;}
.wsbd{word-spacing:2.970000px;}
.ws9{word-spacing:3.024000px;}
.ws33{word-spacing:3.031500px;}
.ws83{word-spacing:3.078000px;}
.ws54{word-spacing:3.096000px;}
.ws84{word-spacing:3.132000px;}
.ws50{word-spacing:3.160500px;}
.ws76{word-spacing:3.186000px;}
.wsc{word-spacing:3.216000px;}
.ws9f{word-spacing:3.225000px;}
.wsb2{word-spacing:3.240000px;}
.ws15{word-spacing:3.289500px;}
.ws27{word-spacing:3.294000px;}
.ws9b{word-spacing:3.348000px;}
.ws36{word-spacing:3.354000px;}
.wsb8{word-spacing:3.402000px;}
.ws91{word-spacing:3.418500px;}
.wsb0{word-spacing:3.456000px;}
.ws82{word-spacing:3.483000px;}
.ws45{word-spacing:3.547500px;}
.ws46{word-spacing:3.564000px;}
.ws8{word-spacing:3.600000px;}
.ws1d{word-spacing:3.612000px;}
.ws2c{word-spacing:3.618000px;}
.wsa3{word-spacing:3.676500px;}
.ws4f{word-spacing:3.741000px;}
.ws8b{word-spacing:3.780000px;}
.ws42{word-spacing:3.805500px;}
.ws49{word-spacing:3.834000px;}
.ws55{word-spacing:3.870000px;}
.ws7b{word-spacing:3.934500px;}
.ws30{word-spacing:3.942000px;}
.ws20{word-spacing:3.999000px;}
.ws70{word-spacing:4.063500px;}
.wsc2{word-spacing:4.104000px;}
.ws62{word-spacing:4.128000px;}
.wsc9{word-spacing:4.158000px;}
.ws39{word-spacing:4.192500px;}
.ws4b{word-spacing:4.212000px;}
.ws5b{word-spacing:4.257000px;}
.ws1c{word-spacing:4.266000px;}
.wsc1{word-spacing:4.320000px;}
.wsa2{word-spacing:4.321500px;}
.wsb1{word-spacing:4.374000px;}
.ws88{word-spacing:4.386000px;}
.ws32{word-spacing:4.428000px;}
.ws56{word-spacing:4.450500px;}
.wsae{word-spacing:4.515000px;}
.ws31{word-spacing:4.536000px;}
.ws35{word-spacing:4.579500px;}
.ws57{word-spacing:4.644000px;}
.ws3{word-spacing:4.662000px;}
.ws89{word-spacing:4.708500px;}
.ws68{word-spacing:4.752000px;}
.ws63{word-spacing:4.773000px;}
.ws8a{word-spacing:4.806000px;}
.ws44{word-spacing:4.837500px;}
.wsb9{word-spacing:4.860000px;}
.ws1a{word-spacing:4.902000px;}
.wsbc{word-spacing:4.914000px;}
.ws3a{word-spacing:4.966500px;}
.wscd{word-spacing:5.022000px;}
.ws98{word-spacing:5.031000px;}
.ws93{word-spacing:5.095500px;}
.ws75{word-spacing:5.130000px;}
.wsa4{word-spacing:5.160000px;}
.wsce{word-spacing:5.166000px;}
.ws73{word-spacing:5.184000px;}
.ws92{word-spacing:5.224500px;}
.ws74{word-spacing:5.238000px;}
.ws8c{word-spacing:5.292000px;}
.ws2b{word-spacing:5.346000px;}
.ws5c{word-spacing:5.353500px;}
.ws1b{word-spacing:5.400000px;}
.ws16{word-spacing:5.418000px;}
.ws9d{word-spacing:5.482500px;}
.ws80{word-spacing:5.547000px;}
.wsaa{word-spacing:5.611500px;}
.ws19{word-spacing:5.676000px;}
.wsac{word-spacing:5.740500px;}
.wscf{word-spacing:5.754000px;}
.ws97{word-spacing:5.805000px;}
.wsaf{word-spacing:5.869500px;}
.ws5f{word-spacing:5.934000px;}
.ws81{word-spacing:5.998500px;}
.ws34{word-spacing:6.063000px;}
.ws79{word-spacing:6.127500px;}
.wsa6{word-spacing:6.321000px;}
.ws17{word-spacing:6.385500px;}
.ws14{word-spacing:6.450000px;}
.ws6d{word-spacing:6.643500px;}
.wsc7{word-spacing:7.074000px;}
.ws2{word-spacing:10.656000px;}
.ws1{word-spacing:13.344000px;}
.ws13{word-spacing:19.414500px;}
._4{margin-left:-16.371600px;}
._0{margin-left:-13.348800px;}
._9{margin-left:-11.676000px;}
._7{margin-left:-10.164000px;}
._11{margin-left:-4.060500px;}
._3{margin-left:-1.764000px;}
._6{width:1.050000px;}
._16{width:2.205900px;}
._f{width:3.283200px;}
._2{width:4.527600px;}
._17{width:5.540550px;}
._1{width:7.014000px;}
._5{width:9.828000px;}
._8{width:11.676000px;}
._a{width:14.016000px;}
._d{width:15.018000px;}
._18{width:17.603376px;}
._14{width:19.414500px;}
._12{width:28.079748px;}
._13{width:29.645748px;}
._15{width:31.481748px;}
._e{width:32.723748px;}
._10{width:33.866748px;}
._c{width:1579.440000px;}
._b{width:1842.336000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:25.200000px;}
.fsa{font-size:31.482000px;}
.fsb{font-size:36.000000px;}
.fs9{font-size:37.603800px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:64.500000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:56.003550px;}
.y1{bottom:56.123550px;}
.y22d{bottom:110.494200px;}
.yd{bottom:110.549700px;}
.y149{bottom:110.554200px;}
.ya2{bottom:110.557200px;}
.y4c{bottom:110.560200px;}
.y7a{bottom:110.566350px;}
.ye4{bottom:110.575200px;}
.y1fd{bottom:110.769975px;}
.y1b9{bottom:112.002000px;}
.y25e{bottom:113.609700px;}
.y190{bottom:115.046700px;}
.y12b{bottom:116.083875px;}
.yc{bottom:122.551200px;}
.y169{bottom:123.167850px;}
.ya1{bottom:126.541200px;}
.y4b{bottom:126.544200px;}
.y79{bottom:126.550350px;}
.ye3{bottom:126.559200px;}
.y18f{bottom:126.562050px;}
.y22c{bottom:126.653700px;}
.y1fc{bottom:128.523600px;}
.y1b8{bottom:129.594375px;}
.y25d{bottom:129.769200px;}
.y148{bottom:131.033700px;}
.y12a{bottom:133.676250px;}
.yb{bottom:138.792900px;}
.y168{bottom:139.151850px;}
.yc0{bottom:142.525200px;}
.y4a{bottom:142.528200px;}
.y78{bottom:142.534350px;}
.ye2{bottom:142.543200px;}
.y18e{bottom:142.546050px;}
.y22b{bottom:142.813200px;}
.y25c{bottom:145.928700px;}
.y1fb{bottom:146.277225px;}
.ya0{bottom:147.020700px;}
.y1b7{bottom:147.186750px;}
.y129{bottom:151.268625px;}
.ya{bottom:154.227900px;}
.y167{bottom:155.135850px;}
.y77{bottom:158.518350px;}
.ye1{bottom:158.527200px;}
.y18d{bottom:158.530050px;}
.y22a{bottom:158.972700px;}
.y25b{bottom:162.088200px;}
.y49{bottom:163.007700px;}
.y1fa{bottom:164.030850px;}
.y1b6{bottom:164.779125px;}
.y128{bottom:168.861000px;}
.y1d7{bottom:171.128100px;}
.y9{bottom:174.209400px;}
.y76{bottom:174.502350px;}
.ye0{bottom:174.511200px;}
.y18c{bottom:174.514050px;}
.y48{bottom:174.529200px;}
.y229{bottom:175.132200px;}
.y25a{bottom:178.247700px;}
.y1f9{bottom:181.784475px;}
.y1b5{bottom:182.371500px;}
.y8{bottom:185.391900px;}
.y9f{bottom:185.500725px;}
.y127{bottom:186.453375px;}
.y1d6{bottom:187.112100px;}
.y166{bottom:188.765700px;}
.ybf{bottom:190.336500px;}
.ydf{bottom:190.495200px;}
.y18b{bottom:190.498050px;}
.y47{bottom:190.513200px;}
.y228{bottom:191.291700px;}
.y259{bottom:194.407200px;}
.y75{bottom:194.981850px;}
.y1f8{bottom:199.538100px;}
.y1b4{bottom:199.963875px;}
.y7{bottom:200.826900px;}
.y1d5{bottom:203.096100px;}
.y9e{bottom:203.117850px;}
.y126{bottom:204.045750px;}
.ybe{bottom:206.320500px;}
.y165{bottom:206.358075px;}
.yde{bottom:206.479200px;}
.y18a{bottom:206.482050px;}
.y74{bottom:206.485200px;}
.y46{bottom:206.497200px;}
.y227{bottom:207.451200px;}
.y258{bottom:210.566700px;}
.y6{bottom:212.009400px;}
.y1b3{bottom:217.556250px;}
.y1d4{bottom:219.080100px;}
.y9d{bottom:220.710225px;}
.y125{bottom:221.638125px;}
.ybd{bottom:222.304500px;}
.ydd{bottom:222.463200px;}
.y189{bottom:222.466050px;}
.y73{bottom:222.469200px;}
.y45{bottom:222.481200px;}
.y226{bottom:223.610700px;}
.y164{bottom:223.950450px;}
.y257{bottom:226.726200px;}
.y1f7{bottom:234.900225px;}
.y9c{bottom:238.302600px;}
.y188{bottom:238.450050px;}
.y72{bottom:238.453200px;}
.y44{bottom:238.465200px;}
.y124{bottom:239.230500px;}
.y225{bottom:239.770200px;}
.y163{bottom:241.542825px;}
.y256{bottom:242.885700px;}
.ydc{bottom:242.942550px;}
.y100{bottom:242.942700px;}
.y1b2{bottom:243.952875px;}
.y1d3{bottom:252.737700px;}
.y71{bottom:254.437200px;}
.y43{bottom:254.449200px;}
.y9b{bottom:255.894975px;}
.y224{bottom:255.929700px;}
.ybc{bottom:255.960900px;}
.y123{bottom:256.822875px;}
.y187{bottom:258.929550px;}
.y255{bottom:259.045200px;}
.y162{bottom:259.135200px;}
.y1d2{bottom:270.330075px;}
.y42{bottom:270.433200px;}
.y223{bottom:272.089200px;}
.y9a{bottom:273.487350px;}
.ybb{bottom:273.553275px;}
.y122{bottom:274.415250px;}
.y70{bottom:274.916700px;}
.y254{bottom:275.204700px;}
.y161{bottom:276.727575px;}
.y147{bottom:281.537250px;}
.yff{bottom:281.545125px;}
.y41{bottom:286.417200px;}
.y1f6{bottom:287.854725px;}
.y1d1{bottom:287.922450px;}
.y1b1{bottom:287.941875px;}
.y222{bottom:288.248700px;}
.y99{bottom:291.079725px;}
.yba{bottom:291.145650px;}
.y253{bottom:291.364200px;}
.y121{bottom:292.007625px;}
.y146{bottom:297.521250px;}
.ydb{bottom:297.522450px;}
.yfe{bottom:299.137500px;}
.y40{bottom:302.401200px;}
.y221{bottom:304.408200px;}
.y1d0{bottom:305.514825px;}
.y1b0{bottom:305.534250px;}
.y1f5{bottom:305.608350px;}
.y252{bottom:307.523700px;}
.y98{bottom:308.672100px;}
.yb9{bottom:308.738025px;}
.y120{bottom:309.600000px;}
.y186{bottom:310.439175px;}
.y160{bottom:311.912325px;}
.y145{bottom:313.505250px;}
.yda{bottom:313.506450px;}
.y6f{bottom:315.231075px;}
.yfd{bottom:316.729875px;}
.y3f{bottom:318.385200px;}
.y220{bottom:320.567700px;}
.y1cf{bottom:323.107200px;}
.y1af{bottom:323.126625px;}
.y1f4{bottom:323.361975px;}
.y251{bottom:323.683200px;}
.yb8{bottom:326.330400px;}
.y11f{bottom:327.192375px;}
.y185{bottom:328.031550px;}
.y144{bottom:329.489250px;}
.yd9{bottom:329.490450px;}
.y6e{bottom:332.823450px;}
.yfc{bottom:334.322250px;}
.y21f{bottom:336.727200px;}
.y3e{bottom:338.864550px;}
.y250{bottom:339.842700px;}
.y1ce{bottom:340.699575px;}
.y1ae{bottom:340.719000px;}
.y1f3{bottom:341.115600px;}
.y97{bottom:343.866150px;}
.yb7{bottom:343.922775px;}
.y11e{bottom:344.784750px;}
.yd8{bottom:345.474450px;}
.y184{bottom:345.623925px;}
.y6d{bottom:350.415825px;}
.yfb{bottom:351.914625px;}
.y21e{bottom:352.886700px;}
.y24f{bottom:356.002200px;}
.y1cd{bottom:358.291950px;}
.y1ad{bottom:358.311375px;}
.y1f2{bottom:358.869225px;}
.y96{bottom:359.850150px;}
.yb6{bottom:361.515150px;}
.y11d{bottom:362.377125px;}
.y143{bottom:363.111900px;}
.y183{bottom:363.216300px;}
.y15f{bottom:364.705575px;}
.y6c{bottom:368.008200px;}
.y21d{bottom:369.046200px;}
.yfa{bottom:369.507000px;}
.y24e{bottom:372.161700px;}
.y1cc{bottom:375.884325px;}
.y1ac{bottom:375.903750px;}
.y1f1{bottom:376.622850px;}
.yd7{bottom:379.060125px;}
.yb5{bottom:379.107525px;}
.y11c{bottom:379.969500px;}
.y142{bottom:380.704275px;}
.y182{bottom:380.808675px;}
.y15e{bottom:382.297950px;}
.y1f{bottom:383.709750px;}
.y21c{bottom:385.205700px;}
.y3d{bottom:385.520625px;}
.y6b{bottom:385.600575px;}
.y24d{bottom:388.321200px;}
.y1cb{bottom:393.476700px;}
.y1ab{bottom:393.496125px;}
.y95{bottom:393.529200px;}
.y1f0{bottom:394.376475px;}
.yb4{bottom:396.699900px;}
.yd6{bottom:396.718950px;}
.y11b{bottom:397.561875px;}
.y141{bottom:398.296650px;}
.y181{bottom:398.401050px;}
.y15d{bottom:399.890325px;}
.y21b{bottom:401.365200px;}
.y3c{bottom:403.113000px;}
.y6a{bottom:403.192950px;}
.y24c{bottom:404.480700px;}
.yf9{bottom:404.704200px;}
.y1e{bottom:405.297750px;}
.y1ca{bottom:411.069075px;}
.y1aa{bottom:411.088500px;}
.y94{bottom:411.121575px;}
.y1ef{bottom:412.130100px;}
.yb3{bottom:414.292275px;}
.yd5{bottom:414.311325px;}
.y11a{bottom:415.154250px;}
.y140{bottom:415.889025px;}
.y180{bottom:415.993425px;}
.y15c{bottom:417.482700px;}
.y21a{bottom:417.524700px;}
.y1d{bottom:419.685750px;}
.y24b{bottom:420.640200px;}
.yf8{bottom:420.688200px;}
.y3b{bottom:420.705375px;}
.y69{bottom:420.785325px;}
.y1c9{bottom:428.661450px;}
.y1a9{bottom:428.680875px;}
.y93{bottom:428.713950px;}
.y1ee{bottom:429.883725px;}
.yb2{bottom:431.884650px;}
.yd4{bottom:431.903700px;}
.y119{bottom:432.746625px;}
.y13f{bottom:433.481400px;}
.y17f{bottom:433.585800px;}
.y219{bottom:433.684200px;}
.y1c{bottom:434.073750px;}
.y15b{bottom:435.075075px;}
.yf7{bottom:436.672200px;}
.y24a{bottom:436.799700px;}
.y3a{bottom:438.309975px;}
.y68{bottom:438.377700px;}
.y1c8{bottom:446.253825px;}
.y1a8{bottom:446.273250px;}
.y92{bottom:446.306325px;}
.y1b{bottom:448.461750px;}
.yb1{bottom:449.477025px;}
.yd3{bottom:449.496075px;}
.y218{bottom:449.843700px;}
.y118{bottom:450.339000px;}
.y13e{bottom:451.073775px;}
.y17e{bottom:451.178175px;}
.y15a{bottom:452.667450px;}
.y249{bottom:452.959200px;}
.y39{bottom:455.902350px;}
.y67{bottom:455.970075px;}
.y1a{bottom:462.849750px;}
.y1c7{bottom:463.846200px;}
.y1a7{bottom:463.865625px;}
.y91{bottom:463.898700px;}
.y1ed{bottom:465.245850px;}
.y217{bottom:466.003200px;}
.yb0{bottom:467.069400px;}
.yd2{bottom:467.088450px;}
.y117{bottom:467.931375px;}
.y13d{bottom:468.666150px;}
.y17d{bottom:468.770550px;}
.y248{bottom:469.118700px;}
.y159{bottom:470.259825px;}
.yf6{bottom:470.298975px;}
.y38{bottom:473.494725px;}
.y66{bottom:473.562450px;}
.y19{bottom:477.237750px;}
.y1a6{bottom:481.458000px;}
.y90{bottom:481.491075px;}
.y216{bottom:482.162700px;}
.yaf{bottom:484.661775px;}
.yd1{bottom:484.680825px;}
.y247{bottom:485.278200px;}
.y116{bottom:485.523750px;}
.y13c{bottom:486.258525px;}
.y17c{bottom:486.362925px;}
.y158{bottom:487.879350px;}
.yf5{bottom:487.891350px;}
.y1c6{bottom:490.242825px;}
.y37{bottom:491.107725px;}
.y65{bottom:491.212275px;}
.y215{bottom:498.322200px;}
.y1a5{bottom:499.050375px;}
.y8f{bottom:499.083450px;}
.y246{bottom:501.437700px;}
.yd0{bottom:502.273200px;}
.y115{bottom:503.116125px;}
.y13b{bottom:503.850900px;}
.y17b{bottom:503.955300px;}
.yf4{bottom:505.483725px;}
.y36{bottom:508.700100px;}
.y64{bottom:508.804650px;}
.yae{bottom:511.058400px;}
.y157{bottom:514.275975px;}
.y214{bottom:514.481700px;}
.y1a4{bottom:516.642750px;}
.y8e{bottom:516.675825px;}
.y245{bottom:517.597200px;}
.y1ec{bottom:518.200350px;}
.ycf{bottom:519.865575px;}
.y114{bottom:520.708500px;}
.y13a{bottom:521.443275px;}
.y17a{bottom:521.547675px;}
.yf3{bottom:523.076100px;}
.y18{bottom:523.617750px;}
.y35{bottom:526.292475px;}
.y63{bottom:526.397025px;}
.y213{bottom:530.641200px;}
.y156{bottom:531.868350px;}
.y244{bottom:533.756700px;}
.y1c5{bottom:534.231825px;}
.y1a3{bottom:534.235125px;}
.y8d{bottom:534.268200px;}
.y1eb{bottom:535.953975px;}
.yce{bottom:537.457950px;}
.y113{bottom:538.300875px;}
.y139{bottom:539.035650px;}
.y179{bottom:539.140050px;}
.yf2{bottom:540.668475px;}
.y34{bottom:543.884850px;}
.y62{bottom:543.989400px;}
.y17{bottom:545.205750px;}
.y212{bottom:546.800700px;}
.y243{bottom:549.916200px;}
.y1c4{bottom:551.824200px;}
.y1a2{bottom:551.827500px;}
.y8c{bottom:551.860575px;}
.y1ea{bottom:553.707600px;}
.yad{bottom:555.047400px;}
.y112{bottom:555.893250px;}
.y178{bottom:556.732425px;}
.yf1{bottom:558.260850px;}
.y155{bottom:558.264975px;}
.y16{bottom:559.593750px;}
.y33{bottom:561.477225px;}
.y61{bottom:561.581775px;}
.y211{bottom:562.960200px;}
.ycd{bottom:563.854575px;}
.y242{bottom:566.075700px;}
.y1c3{bottom:569.416575px;}
.y1a1{bottom:569.419875px;}
.y8b{bottom:569.452950px;}
.y1e9{bottom:571.461225px;}
.yac{bottom:572.639775px;}
.y111{bottom:573.485625px;}
.y15{bottom:573.981750px;}
.y138{bottom:574.232850px;}
.y177{bottom:574.324800px;}
.yf0{bottom:575.853225px;}
.y154{bottom:575.857350px;}
.y32{bottom:579.069600px;}
.y210{bottom:579.119700px;}
.y60{bottom:579.174150px;}
.y241{bottom:582.235200px;}
.y1c2{bottom:587.008950px;}
.y1a0{bottom:587.012250px;}
.y8a{bottom:587.045325px;}
.y14{bottom:588.369750px;}
.y1e8{bottom:589.214850px;}
.y137{bottom:590.216850px;}
.yab{bottom:590.232150px;}
.y110{bottom:591.078000px;}
.y176{bottom:591.917175px;}
.yef{bottom:593.445600px;}
.y153{bottom:593.449725px;}
.y20f{bottom:595.279200px;}
.y5f{bottom:596.766525px;}
.y240{bottom:598.394700px;}
.y13{bottom:602.757750px;}
.y1c1{bottom:604.601325px;}
.y19f{bottom:604.604625px;}
.y89{bottom:604.637700px;}
.y136{bottom:606.200850px;}
.y1e7{bottom:606.968475px;}
.yaa{bottom:607.824525px;}
.ycc{bottom:607.843575px;}
.y10f{bottom:608.670375px;}
.y175{bottom:609.522525px;}
.yee{bottom:611.037975px;}
.y152{bottom:611.042100px;}
.y20e{bottom:611.438700px;}
.y31{bottom:614.275650px;}
.y5e{bottom:614.358900px;}
.y23f{bottom:614.554200px;}
.y12{bottom:617.145750px;}
.y1c0{bottom:622.193700px;}
.y19e{bottom:622.197000px;}
.y88{bottom:622.230075px;}
.y1e6{bottom:624.722100px;}
.ya9{bottom:625.416900px;}
.ycb{bottom:625.435950px;}
.y10e{bottom:626.262750px;}
.y174{bottom:627.114900px;}
.y20d{bottom:627.598200px;}
.yed{bottom:628.630350px;}
.y151{bottom:628.634475px;}
.y30{bottom:630.259650px;}
.y23e{bottom:630.713700px;}
.y5d{bottom:631.951275px;}
.y1bf{bottom:639.786075px;}
.y19d{bottom:639.789375px;}
.y135{bottom:639.821700px;}
.y87{bottom:639.822450px;}
.y1e5{bottom:642.475725px;}
.ya8{bottom:643.009275px;}
.yca{bottom:643.028325px;}
.y20c{bottom:643.757700px;}
.yec{bottom:646.222725px;}
.y150{bottom:646.226850px;}
.y2f{bottom:646.243650px;}
.y23d{bottom:646.873200px;}
.y5c{bottom:649.543650px;}
.y173{bottom:653.511525px;}
.y1be{bottom:657.378450px;}
.y19c{bottom:657.381750px;}
.y134{bottom:657.414075px;}
.y86{bottom:657.414825px;}
.y20b{bottom:659.917200px;}
.y1e4{bottom:660.229350px;}
.ya7{bottom:660.601650px;}
.yc9{bottom:660.620700px;}
.y10d{bottom:661.474800px;}
.y2e{bottom:662.227650px;}
.y23c{bottom:663.032700px;}
.yeb{bottom:663.815100px;}
.y14f{bottom:663.819225px;}
.y5b{bottom:667.136025px;}
.y1bd{bottom:674.970825px;}
.y19b{bottom:674.974125px;}
.y133{bottom:675.006450px;}
.y85{bottom:675.007200px;}
.y20a{bottom:676.076700px;}
.y10c{bottom:677.458800px;}
.y1e3{bottom:677.982975px;}
.y2d{bottom:678.211650px;}
.yc8{bottom:678.213075px;}
.y23b{bottom:679.192200px;}
.y14e{bottom:681.411600px;}
.y5a{bottom:684.728400px;}
.y209{bottom:692.236200px;}
.y19a{bottom:692.587125px;}
.y132{bottom:692.598825px;}
.y84{bottom:692.599575px;}
.y10b{bottom:693.442800px;}
.y2c{bottom:694.195650px;}
.y23a{bottom:695.351700px;}
.y1e2{bottom:695.736600px;}
.ya6{bottom:695.795700px;}
.yc7{bottom:695.805450px;}
.y172{bottom:697.500525px;}
.yea{bottom:699.012300px;}
.y1bc{bottom:701.367450px;}
.y59{bottom:702.320775px;}
.y11{bottom:703.485300px;}
.y263{bottom:703.745100px;}
.y208{bottom:708.395700px;}
.y10a{bottom:709.426800px;}
.y199{bottom:710.179500px;}
.y131{bottom:710.191200px;}
.y83{bottom:710.191950px;}
.y239{bottom:711.511200px;}
.ya5{bottom:711.779700px;}
.yc6{bottom:713.397825px;}
.y1e1{bottom:713.490225px;}
.ye9{bottom:714.996300px;}
.y171{bottom:715.092900px;}
.y262{bottom:716.534100px;}
.y14d{bottom:716.611800px;}
.y58{bottom:719.929650px;}
.y10{bottom:722.121750px;}
.y207{bottom:724.555200px;}
.y109{bottom:725.410800px;}
.y238{bottom:727.670700px;}
.y198{bottom:727.771875px;}
.y130{bottom:727.783575px;}
.y82{bottom:727.784325px;}
.y2b{bottom:727.816500px;}
.ye8{bottom:730.980300px;}
.yc5{bottom:730.990200px;}
.y1e0{bottom:731.243850px;}
.y14c{bottom:732.595800px;}
.y170{bottom:732.685275px;}
.y261{bottom:734.934300px;}
.y57{bottom:737.522025px;}
.y206{bottom:740.714700px;}
.y108{bottom:741.394800px;}
.y237{bottom:743.830200px;}
.y197{bottom:745.364250px;}
.y12f{bottom:745.375950px;}
.ya4{bottom:745.376700px;}
.y1bb{bottom:745.392825px;}
.y2a{bottom:745.408875px;}
.ye7{bottom:746.967300px;}
.y260{bottom:747.723300px;}
.y14b{bottom:748.579800px;}
.yc4{bottom:748.582575px;}
.y1df{bottom:748.997475px;}
.y16f{bottom:750.298125px;}
.y56{bottom:755.114400px;}
.y205{bottom:756.874200px;}
.y107{bottom:757.378800px;}
.y236{bottom:759.989700px;}
.y25f{bottom:760.512300px;}
.y196{bottom:762.956625px;}
.y12e{bottom:762.968325px;}
.y81{bottom:762.969075px;}
.y1ba{bottom:762.985200px;}
.y29{bottom:763.001250px;}
.y14a{bottom:764.563800px;}
.yc3{bottom:766.174950px;}
.y1de{bottom:766.751100px;}
.yf{bottom:767.711250px;}
.y16e{bottom:767.890500px;}
.y55{bottom:772.706775px;}
.y204{bottom:773.033700px;}
.y106{bottom:773.362800px;}
.y235{bottom:776.149200px;}
.y12d{bottom:780.560700px;}
.y195{bottom:780.569325px;}
.ye6{bottom:780.577575px;}
.y28{bottom:780.593625px;}
.y1dd{bottom:784.504725px;}
.y16d{bottom:785.482875px;}
.y203{bottom:789.193200px;}
.y54{bottom:790.299150px;}
.y234{bottom:792.308700px;}
.ye{bottom:798.090750px;}
.ya3{bottom:798.153825px;}
.y194{bottom:798.161700px;}
.ye5{bottom:798.169950px;}
.y27{bottom:798.186000px;}
.yc2{bottom:801.369000px;}
.y1dc{bottom:802.258350px;}
.y16c{bottom:803.075250px;}
.y202{bottom:805.352700px;}
.y105{bottom:806.958075px;}
.y233{bottom:808.468200px;}
.y12c{bottom:815.745450px;}
.y193{bottom:815.754075px;}
.y80{bottom:815.762325px;}
.y26{bottom:815.778375px;}
.yc1{bottom:817.353000px;}
.y1db{bottom:820.011975px;}
.y16b{bottom:820.667625px;}
.y201{bottom:821.512200px;}
.y104{bottom:824.550450px;}
.y232{bottom:824.627700px;}
.y53{bottom:825.505200px;}
.y192{bottom:833.346450px;}
.y7f{bottom:833.354700px;}
.y25{bottom:833.370750px;}
.y200{bottom:837.671700px;}
.y1da{bottom:837.765600px;}
.y16a{bottom:838.260000px;}
.y231{bottom:840.787200px;}
.y52{bottom:841.489200px;}
.y103{bottom:842.142825px;}
.y191{bottom:850.938825px;}
.y7e{bottom:850.947075px;}
.y24{bottom:850.963125px;}
.y1ff{bottom:853.831200px;}
.y230{bottom:856.946700px;}
.y51{bottom:857.473200px;}
.y102{bottom:859.735200px;}
.y7d{bottom:868.539450px;}
.y23{bottom:868.555500px;}
.y1fe{bottom:869.990700px;}
.y2{bottom:872.507550px;}
.y22f{bottom:873.106200px;}
.y1d9{bottom:873.133200px;}
.y50{bottom:873.457200px;}
.y101{bottom:877.327575px;}
.y7c{bottom:886.131825px;}
.y22e{bottom:889.265700px;}
.y1d8{bottom:889.279200px;}
.y4f{bottom:889.441200px;}
.y3{bottom:900.688050px;}
.y7b{bottom:903.724200px;}
.y22{bottom:903.740250px;}
.y4e{bottom:905.425200px;}
.y20{bottom:948.916950px;}
.y4d{bottom:949.402950px;}
.y5{bottom:952.869600px;}
.y4{bottom:966.369600px;}
.h12{height:27.054000px;}
.h11{height:27.054600px;}
.h5{height:30.828000px;}
.h6{height:31.206000px;}
.h7{height:31.500000px;}
.hd{height:35.136000px;}
.h3{height:35.664000px;}
.h2{height:37.530000px;}
.h13{height:38.242800px;}
.hc{height:40.032000px;}
.h14{height:42.020508px;}
.hb{height:42.534000px;}
.h10{height:45.036000px;}
.he{height:47.214000px;}
.h9{height:48.312000px;}
.h8{height:50.990400px;}
.hf{height:53.793000px;}
.ha{height:55.044000px;}
.h4{height:77.400000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x4{left:89.885700px;}
.xf{left:102.047250px;}
.x11{left:106.301850px;}
.x5{left:110.549700px;}
.x10{left:116.928750px;}
.xc{left:123.469050px;}
.xe{left:142.591350px;}
.x6{left:145.195650px;}
.x7{left:150.820650px;}
.xd{left:163.853850px;}
.x8{left:200.419350px;}
.x9{left:231.779850px;}
.xa{left:296.987850px;}
.xb{left:311.750700px;}
.x2{left:460.555500px;}
.x3{left:511.415400px;}
@media print{
.v2{vertical-align:-15.983467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.962667pt;}
.v1{vertical-align:19.018933pt;}
.ls35{letter-spacing:-1.146667pt;}
.ls37{letter-spacing:-1.032000pt;}
.ls36{letter-spacing:-0.974667pt;}
.ls33{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.573333pt;}
.ls32{letter-spacing:-0.559680pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.432000pt;}
.ls2c{letter-spacing:-0.384000pt;}
.ls20{letter-spacing:-0.344000pt;}
.ls31{letter-spacing:-0.334256pt;}
.ls2d{letter-spacing:-0.286667pt;}
.ls2e{letter-spacing:-0.229333pt;}
.ls6{letter-spacing:-0.186667pt;}
.ls44{letter-spacing:-0.167128pt;}
.ls43{letter-spacing:-0.114667pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.011733pt;}
.ls40{letter-spacing:0.045724pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls1e{letter-spacing:0.057333pt;}
.ls3c{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.114667pt;}
.ls38{letter-spacing:0.120000pt;}
.ls2a{letter-spacing:0.143333pt;}
.ls24{letter-spacing:0.144000pt;}
.ls16{letter-spacing:0.166358pt;}
.ls3a{letter-spacing:0.168000pt;}
.ls26{letter-spacing:0.172000pt;}
.ls47{letter-spacing:0.192000pt;}
.ls42{letter-spacing:0.200667pt;}
.ls25{letter-spacing:0.229333pt;}
.ls46{letter-spacing:0.240000pt;}
.ls3f{letter-spacing:0.244099pt;}
.ls23{letter-spacing:0.258000pt;}
.ls14{letter-spacing:0.286667pt;}
.ls3d{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.315333pt;}
.ls13{letter-spacing:0.324225pt;}
.ls28{letter-spacing:0.333825pt;}
.ls1f{letter-spacing:0.336000pt;}
.ls11{letter-spacing:0.344000pt;}
.ls17{letter-spacing:0.401333pt;}
.ls3{letter-spacing:0.426667pt;}
.ls3e{letter-spacing:0.430000pt;}
.ls18{letter-spacing:0.458667pt;}
.ls48{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.487333pt;}
.ls3b{letter-spacing:0.504000pt;}
.ls15{letter-spacing:0.516000pt;}
.ls27{letter-spacing:0.527333pt;}
.ls12{letter-spacing:0.573333pt;}
.ls2f{letter-spacing:0.630667pt;}
.lsf{letter-spacing:0.688000pt;}
.ls4d{letter-spacing:0.720000pt;}
.ls45{letter-spacing:0.745333pt;}
.ls5{letter-spacing:0.746667pt;}
.ls4a{letter-spacing:0.768000pt;}
.ls39{letter-spacing:0.816000pt;}
.ls8{letter-spacing:0.860000pt;}
.lsc{letter-spacing:0.960000pt;}
.ls7{letter-spacing:0.974667pt;}
.ls10{letter-spacing:1.032000pt;}
.lsb{letter-spacing:1.056000pt;}
.ls9{letter-spacing:1.261333pt;}
.lsd{letter-spacing:1.344000pt;}
.lsa{letter-spacing:1.433333pt;}
.lse{letter-spacing:1.536000pt;}
.ls1{letter-spacing:1.568000pt;}
.ls49{letter-spacing:1.872000pt;}
.ls34{letter-spacing:1.885906pt;}
.ls29{letter-spacing:3.168000pt;}
.ls4b{letter-spacing:5.056000pt;}
.ls41{letter-spacing:5.521200pt;}
.ls2{letter-spacing:8.880000pt;}
.ls1b{letter-spacing:1297.129600pt;}
.ls0{letter-spacing:1893.779200pt;}
.ws2e{word-spacing:-11.409333pt;}
.wsca{word-spacing:-10.944000pt;}
.wsa1{word-spacing:-9.552000pt;}
.ws11{word-spacing:-8.490667pt;}
.ws2d{word-spacing:-7.960000pt;}
.wscb{word-spacing:-7.660800pt;}
.ws2f{word-spacing:-6.651694pt;}
.wsa8{word-spacing:-6.451141pt;}
.ws95{word-spacing:-6.317438pt;}
.ws12{word-spacing:-5.568816pt;}
.ws96{word-spacing:-5.009136pt;}
.wsc8{word-spacing:-1.872000pt;}
.ws18{word-spacing:-1.433333pt;}
.wsc3{word-spacing:-0.768000pt;}
.wsb4{word-spacing:-0.745333pt;}
.wscc{word-spacing:-0.720000pt;}
.ws6e{word-spacing:-0.573333pt;}
.ws1e{word-spacing:-0.516000pt;}
.ws6{word-spacing:-0.426667pt;}
.ws60{word-spacing:-0.344000pt;}
.wsc4{word-spacing:-0.288000pt;}
.ws10{word-spacing:-0.213333pt;}
.wsb5{word-spacing:-0.192000pt;}
.ws51{word-spacing:-0.057333pt;}
.ws67{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.057333pt;}
.ws5d{word-spacing:0.114667pt;}
.ws2a{word-spacing:0.144000pt;}
.wsad{word-spacing:0.167128pt;}
.wsa5{word-spacing:0.172000pt;}
.ws5{word-spacing:0.186667pt;}
.wsa0{word-spacing:0.192000pt;}
.ws6c{word-spacing:0.229333pt;}
.ws6a{word-spacing:0.286667pt;}
.ws77{word-spacing:0.288000pt;}
.ws5a{word-spacing:0.344000pt;}
.ws7a{word-spacing:0.401333pt;}
.wsc6{word-spacing:0.432000pt;}
.ws71{word-spacing:0.458667pt;}
.ws29{word-spacing:0.480000pt;}
.ws90{word-spacing:0.516000pt;}
.wsbb{word-spacing:0.528000pt;}
.ws65{word-spacing:0.573333pt;}
.wsb6{word-spacing:0.576000pt;}
.ws21{word-spacing:0.672000pt;}
.ws3f{word-spacing:0.688000pt;}
.wsc0{word-spacing:0.720000pt;}
.ws59{word-spacing:0.745333pt;}
.ws28{word-spacing:0.768000pt;}
.wsa7{word-spacing:0.802667pt;}
.wsb7{word-spacing:0.816000pt;}
.ws66{word-spacing:0.860000pt;}
.ws48{word-spacing:0.864000pt;}
.ws7f{word-spacing:0.912000pt;}
.ws38{word-spacing:0.917333pt;}
.wsbf{word-spacing:0.960000pt;}
.ws52{word-spacing:0.974667pt;}
.wsb3{word-spacing:1.008000pt;}
.ws58{word-spacing:1.032000pt;}
.wsa{word-spacing:1.066667pt;}
.ws78{word-spacing:1.089333pt;}
.ws4a{word-spacing:1.104000pt;}
.wsa9{word-spacing:1.146667pt;}
.ws4d{word-spacing:1.204000pt;}
.ws4c{word-spacing:1.261333pt;}
.ws7d{word-spacing:1.318667pt;}
.ws26{word-spacing:1.344000pt;}
.ws7{word-spacing:1.365333pt;}
.ws37{word-spacing:1.376000pt;}
.ws25{word-spacing:1.392000pt;}
.ws3d{word-spacing:1.433333pt;}
.ws24{word-spacing:1.440000pt;}
.wsb{word-spacing:1.450667pt;}
.ws99{word-spacing:1.490667pt;}
.ws86{word-spacing:1.536000pt;}
.ws53{word-spacing:1.548000pt;}
.ws87{word-spacing:1.584000pt;}
.ws5e{word-spacing:1.605333pt;}
.ws7e{word-spacing:1.632000pt;}
.ws6f{word-spacing:1.662667pt;}
.wsf{word-spacing:1.664000pt;}
.ws4{word-spacing:1.680000pt;}
.ws7c{word-spacing:1.720000pt;}
.ws22{word-spacing:1.776000pt;}
.ws8f{word-spacing:1.777333pt;}
.ws23{word-spacing:1.824000pt;}
.ws9e{word-spacing:1.834667pt;}
.ws8d{word-spacing:1.872000pt;}
.wsd{word-spacing:1.877333pt;}
.ws94{word-spacing:1.892000pt;}
.wsc5{word-spacing:1.920000pt;}
.ws69{word-spacing:1.949333pt;}
.ws6b{word-spacing:1.968000pt;}
.wse{word-spacing:2.005333pt;}
.ws3e{word-spacing:2.006667pt;}
.ws72{word-spacing:2.016000pt;}
.ws41{word-spacing:2.064000pt;}
.ws43{word-spacing:2.121333pt;}
.ws9a{word-spacing:2.160000pt;}
.ws4e{word-spacing:2.178667pt;}
.wsab{word-spacing:2.236000pt;}
.ws1f{word-spacing:2.293333pt;}
.wsbe{word-spacing:2.304000pt;}
.ws3c{word-spacing:2.350667pt;}
.wsba{word-spacing:2.352000pt;}
.ws47{word-spacing:2.400000pt;}
.ws40{word-spacing:2.465333pt;}
.ws61{word-spacing:2.522667pt;}
.ws85{word-spacing:2.544000pt;}
.ws3b{word-spacing:2.580000pt;}
.ws9c{word-spacing:2.592000pt;}
.ws64{word-spacing:2.637333pt;}
.wsbd{word-spacing:2.640000pt;}
.ws9{word-spacing:2.688000pt;}
.ws33{word-spacing:2.694667pt;}
.ws83{word-spacing:2.736000pt;}
.ws54{word-spacing:2.752000pt;}
.ws84{word-spacing:2.784000pt;}
.ws50{word-spacing:2.809333pt;}
.ws76{word-spacing:2.832000pt;}
.wsc{word-spacing:2.858667pt;}
.ws9f{word-spacing:2.866667pt;}
.wsb2{word-spacing:2.880000pt;}
.ws15{word-spacing:2.924000pt;}
.ws27{word-spacing:2.928000pt;}
.ws9b{word-spacing:2.976000pt;}
.ws36{word-spacing:2.981333pt;}
.wsb8{word-spacing:3.024000pt;}
.ws91{word-spacing:3.038667pt;}
.wsb0{word-spacing:3.072000pt;}
.ws82{word-spacing:3.096000pt;}
.ws45{word-spacing:3.153333pt;}
.ws46{word-spacing:3.168000pt;}
.ws8{word-spacing:3.200000pt;}
.ws1d{word-spacing:3.210667pt;}
.ws2c{word-spacing:3.216000pt;}
.wsa3{word-spacing:3.268000pt;}
.ws4f{word-spacing:3.325333pt;}
.ws8b{word-spacing:3.360000pt;}
.ws42{word-spacing:3.382667pt;}
.ws49{word-spacing:3.408000pt;}
.ws55{word-spacing:3.440000pt;}
.ws7b{word-spacing:3.497333pt;}
.ws30{word-spacing:3.504000pt;}
.ws20{word-spacing:3.554667pt;}
.ws70{word-spacing:3.612000pt;}
.wsc2{word-spacing:3.648000pt;}
.ws62{word-spacing:3.669333pt;}
.wsc9{word-spacing:3.696000pt;}
.ws39{word-spacing:3.726667pt;}
.ws4b{word-spacing:3.744000pt;}
.ws5b{word-spacing:3.784000pt;}
.ws1c{word-spacing:3.792000pt;}
.wsc1{word-spacing:3.840000pt;}
.wsa2{word-spacing:3.841333pt;}
.wsb1{word-spacing:3.888000pt;}
.ws88{word-spacing:3.898667pt;}
.ws32{word-spacing:3.936000pt;}
.ws56{word-spacing:3.956000pt;}
.wsae{word-spacing:4.013333pt;}
.ws31{word-spacing:4.032000pt;}
.ws35{word-spacing:4.070667pt;}
.ws57{word-spacing:4.128000pt;}
.ws3{word-spacing:4.144000pt;}
.ws89{word-spacing:4.185333pt;}
.ws68{word-spacing:4.224000pt;}
.ws63{word-spacing:4.242667pt;}
.ws8a{word-spacing:4.272000pt;}
.ws44{word-spacing:4.300000pt;}
.wsb9{word-spacing:4.320000pt;}
.ws1a{word-spacing:4.357333pt;}
.wsbc{word-spacing:4.368000pt;}
.ws3a{word-spacing:4.414667pt;}
.wscd{word-spacing:4.464000pt;}
.ws98{word-spacing:4.472000pt;}
.ws93{word-spacing:4.529333pt;}
.ws75{word-spacing:4.560000pt;}
.wsa4{word-spacing:4.586667pt;}
.wsce{word-spacing:4.592000pt;}
.ws73{word-spacing:4.608000pt;}
.ws92{word-spacing:4.644000pt;}
.ws74{word-spacing:4.656000pt;}
.ws8c{word-spacing:4.704000pt;}
.ws2b{word-spacing:4.752000pt;}
.ws5c{word-spacing:4.758667pt;}
.ws1b{word-spacing:4.800000pt;}
.ws16{word-spacing:4.816000pt;}
.ws9d{word-spacing:4.873333pt;}
.ws80{word-spacing:4.930667pt;}
.wsaa{word-spacing:4.988000pt;}
.ws19{word-spacing:5.045333pt;}
.wsac{word-spacing:5.102667pt;}
.wscf{word-spacing:5.114667pt;}
.ws97{word-spacing:5.160000pt;}
.wsaf{word-spacing:5.217333pt;}
.ws5f{word-spacing:5.274667pt;}
.ws81{word-spacing:5.332000pt;}
.ws34{word-spacing:5.389333pt;}
.ws79{word-spacing:5.446667pt;}
.wsa6{word-spacing:5.618667pt;}
.ws17{word-spacing:5.676000pt;}
.ws14{word-spacing:5.733333pt;}
.ws6d{word-spacing:5.905333pt;}
.wsc7{word-spacing:6.288000pt;}
.ws2{word-spacing:9.472000pt;}
.ws1{word-spacing:11.861333pt;}
.ws13{word-spacing:17.257333pt;}
._4{margin-left:-14.552533pt;}
._0{margin-left:-11.865600pt;}
._9{margin-left:-10.378667pt;}
._7{margin-left:-9.034667pt;}
._11{margin-left:-3.609333pt;}
._3{margin-left:-1.568000pt;}
._6{width:0.933333pt;}
._16{width:1.960800pt;}
._f{width:2.918400pt;}
._2{width:4.024533pt;}
._17{width:4.924933pt;}
._1{width:6.234667pt;}
._5{width:8.736000pt;}
._8{width:10.378667pt;}
._a{width:12.458667pt;}
._d{width:13.349333pt;}
._18{width:15.647445pt;}
._14{width:17.257333pt;}
._12{width:24.959776pt;}
._13{width:26.351776pt;}
._15{width:27.983776pt;}
._e{width:29.087776pt;}
._10{width:30.103776pt;}
._c{width:1403.946667pt;}
._b{width:1637.632000pt;}
.fsc{font-size:22.400000pt;}
.fsa{font-size:27.984000pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:33.425600pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:57.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:49.780933pt;}
.y1{bottom:49.887600pt;}
.y22d{bottom:98.217067pt;}
.yd{bottom:98.266400pt;}
.y149{bottom:98.270400pt;}
.ya2{bottom:98.273067pt;}
.y4c{bottom:98.275733pt;}
.y7a{bottom:98.281200pt;}
.ye4{bottom:98.289067pt;}
.y1fd{bottom:98.462200pt;}
.y1b9{bottom:99.557333pt;}
.y25e{bottom:100.986400pt;}
.y190{bottom:102.263733pt;}
.y12b{bottom:103.185667pt;}
.yc{bottom:108.934400pt;}
.y169{bottom:109.482533pt;}
.ya1{bottom:112.481067pt;}
.y4b{bottom:112.483733pt;}
.y79{bottom:112.489200pt;}
.ye3{bottom:112.497067pt;}
.y18f{bottom:112.499600pt;}
.y22c{bottom:112.581067pt;}
.y1fc{bottom:114.243200pt;}
.y1b8{bottom:115.195000pt;}
.y25d{bottom:115.350400pt;}
.y148{bottom:116.474400pt;}
.y12a{bottom:118.823333pt;}
.yb{bottom:123.371467pt;}
.y168{bottom:123.690533pt;}
.yc0{bottom:126.689067pt;}
.y4a{bottom:126.691733pt;}
.y78{bottom:126.697200pt;}
.ye2{bottom:126.705067pt;}
.y18e{bottom:126.707600pt;}
.y22b{bottom:126.945067pt;}
.y25c{bottom:129.714400pt;}
.y1fb{bottom:130.024200pt;}
.ya0{bottom:130.685067pt;}
.y1b7{bottom:130.832667pt;}
.y129{bottom:134.461000pt;}
.ya{bottom:137.091467pt;}
.y167{bottom:137.898533pt;}
.y77{bottom:140.905200pt;}
.ye1{bottom:140.913067pt;}
.y18d{bottom:140.915600pt;}
.y22a{bottom:141.309067pt;}
.y25b{bottom:144.078400pt;}
.y49{bottom:144.895733pt;}
.y1fa{bottom:145.805200pt;}
.y1b6{bottom:146.470333pt;}
.y128{bottom:150.098667pt;}
.y1d7{bottom:152.113867pt;}
.y9{bottom:154.852800pt;}
.y76{bottom:155.113200pt;}
.ye0{bottom:155.121067pt;}
.y18c{bottom:155.123600pt;}
.y48{bottom:155.137067pt;}
.y229{bottom:155.673067pt;}
.y25a{bottom:158.442400pt;}
.y1f9{bottom:161.586200pt;}
.y1b5{bottom:162.108000pt;}
.y8{bottom:164.792800pt;}
.y9f{bottom:164.889533pt;}
.y127{bottom:165.736333pt;}
.y1d6{bottom:166.321867pt;}
.y166{bottom:167.791733pt;}
.ybf{bottom:169.188000pt;}
.ydf{bottom:169.329067pt;}
.y18b{bottom:169.331600pt;}
.y47{bottom:169.345067pt;}
.y228{bottom:170.037067pt;}
.y259{bottom:172.806400pt;}
.y75{bottom:173.317200pt;}
.y1f8{bottom:177.367200pt;}
.y1b4{bottom:177.745667pt;}
.y7{bottom:178.512800pt;}
.y1d5{bottom:180.529867pt;}
.y9e{bottom:180.549200pt;}
.y126{bottom:181.374000pt;}
.ybe{bottom:183.396000pt;}
.y165{bottom:183.429400pt;}
.yde{bottom:183.537067pt;}
.y18a{bottom:183.539600pt;}
.y74{bottom:183.542400pt;}
.y46{bottom:183.553067pt;}
.y227{bottom:184.401067pt;}
.y258{bottom:187.170400pt;}
.y6{bottom:188.452800pt;}
.y1b3{bottom:193.383333pt;}
.y1d4{bottom:194.737867pt;}
.y9d{bottom:196.186867pt;}
.y125{bottom:197.011667pt;}
.ybd{bottom:197.604000pt;}
.ydd{bottom:197.745067pt;}
.y189{bottom:197.747600pt;}
.y73{bottom:197.750400pt;}
.y45{bottom:197.761067pt;}
.y226{bottom:198.765067pt;}
.y164{bottom:199.067067pt;}
.y257{bottom:201.534400pt;}
.y1f7{bottom:208.800200pt;}
.y9c{bottom:211.824533pt;}
.y188{bottom:211.955600pt;}
.y72{bottom:211.958400pt;}
.y44{bottom:211.969067pt;}
.y124{bottom:212.649333pt;}
.y225{bottom:213.129067pt;}
.y163{bottom:214.704733pt;}
.y256{bottom:215.898400pt;}
.ydc{bottom:215.948933pt;}
.y100{bottom:215.949067pt;}
.y1b2{bottom:216.847000pt;}
.y1d3{bottom:224.655733pt;}
.y71{bottom:226.166400pt;}
.y43{bottom:226.177067pt;}
.y9b{bottom:227.462200pt;}
.y224{bottom:227.493067pt;}
.ybc{bottom:227.520800pt;}
.y123{bottom:228.287000pt;}
.y187{bottom:230.159600pt;}
.y255{bottom:230.262400pt;}
.y162{bottom:230.342400pt;}
.y1d2{bottom:240.293400pt;}
.y42{bottom:240.385067pt;}
.y223{bottom:241.857067pt;}
.y9a{bottom:243.099867pt;}
.ybb{bottom:243.158467pt;}
.y122{bottom:243.924667pt;}
.y70{bottom:244.370400pt;}
.y254{bottom:244.626400pt;}
.y161{bottom:245.980067pt;}
.y147{bottom:250.255333pt;}
.yff{bottom:250.262333pt;}
.y41{bottom:254.593067pt;}
.y1f6{bottom:255.870867pt;}
.y1d1{bottom:255.931067pt;}
.y1b1{bottom:255.948333pt;}
.y222{bottom:256.221067pt;}
.y99{bottom:258.737533pt;}
.yba{bottom:258.796133pt;}
.y253{bottom:258.990400pt;}
.y121{bottom:259.562333pt;}
.y146{bottom:264.463333pt;}
.ydb{bottom:264.464400pt;}
.yfe{bottom:265.900000pt;}
.y40{bottom:268.801067pt;}
.y221{bottom:270.585067pt;}
.y1d0{bottom:271.568733pt;}
.y1b0{bottom:271.586000pt;}
.y1f5{bottom:271.651867pt;}
.y252{bottom:273.354400pt;}
.y98{bottom:274.375200pt;}
.yb9{bottom:274.433800pt;}
.y120{bottom:275.200000pt;}
.y186{bottom:275.945933pt;}
.y160{bottom:277.255400pt;}
.y145{bottom:278.671333pt;}
.yda{bottom:278.672400pt;}
.y6f{bottom:280.205400pt;}
.yfd{bottom:281.537667pt;}
.y3f{bottom:283.009067pt;}
.y220{bottom:284.949067pt;}
.y1cf{bottom:287.206400pt;}
.y1af{bottom:287.223667pt;}
.y1f4{bottom:287.432867pt;}
.y251{bottom:287.718400pt;}
.yb8{bottom:290.071467pt;}
.y11f{bottom:290.837667pt;}
.y185{bottom:291.583600pt;}
.y144{bottom:292.879333pt;}
.yd9{bottom:292.880400pt;}
.y6e{bottom:295.843067pt;}
.yfc{bottom:297.175333pt;}
.y21f{bottom:299.313067pt;}
.y3e{bottom:301.212933pt;}
.y250{bottom:302.082400pt;}
.y1ce{bottom:302.844067pt;}
.y1ae{bottom:302.861333pt;}
.y1f3{bottom:303.213867pt;}
.y97{bottom:305.658800pt;}
.yb7{bottom:305.709133pt;}
.y11e{bottom:306.475333pt;}
.yd8{bottom:307.088400pt;}
.y184{bottom:307.221267pt;}
.y6d{bottom:311.480733pt;}
.yfb{bottom:312.813000pt;}
.y21e{bottom:313.677067pt;}
.y24f{bottom:316.446400pt;}
.y1cd{bottom:318.481733pt;}
.y1ad{bottom:318.499000pt;}
.y1f2{bottom:318.994867pt;}
.y96{bottom:319.866800pt;}
.yb6{bottom:321.346800pt;}
.y11d{bottom:322.113000pt;}
.y143{bottom:322.766133pt;}
.y183{bottom:322.858933pt;}
.y15f{bottom:324.182733pt;}
.y6c{bottom:327.118400pt;}
.y21d{bottom:328.041067pt;}
.yfa{bottom:328.450667pt;}
.y24e{bottom:330.810400pt;}
.y1cc{bottom:334.119400pt;}
.y1ac{bottom:334.136667pt;}
.y1f1{bottom:334.775867pt;}
.yd7{bottom:336.942333pt;}
.yb5{bottom:336.984467pt;}
.y11c{bottom:337.750667pt;}
.y142{bottom:338.403800pt;}
.y182{bottom:338.496600pt;}
.y15e{bottom:339.820400pt;}
.y1f{bottom:341.075333pt;}
.y21c{bottom:342.405067pt;}
.y3d{bottom:342.685000pt;}
.y6b{bottom:342.756067pt;}
.y24d{bottom:345.174400pt;}
.y1cb{bottom:349.757067pt;}
.y1ab{bottom:349.774333pt;}
.y95{bottom:349.803733pt;}
.y1f0{bottom:350.556867pt;}
.yb4{bottom:352.622133pt;}
.yd6{bottom:352.639067pt;}
.y11b{bottom:353.388333pt;}
.y141{bottom:354.041467pt;}
.y181{bottom:354.134267pt;}
.y15d{bottom:355.458067pt;}
.y21b{bottom:356.769067pt;}
.y3c{bottom:358.322667pt;}
.y6a{bottom:358.393733pt;}
.y24c{bottom:359.538400pt;}
.yf9{bottom:359.737067pt;}
.y1e{bottom:360.264667pt;}
.y1ca{bottom:365.394733pt;}
.y1aa{bottom:365.412000pt;}
.y94{bottom:365.441400pt;}
.y1ef{bottom:366.337867pt;}
.yb3{bottom:368.259800pt;}
.yd5{bottom:368.276733pt;}
.y11a{bottom:369.026000pt;}
.y140{bottom:369.679133pt;}
.y180{bottom:369.771933pt;}
.y15c{bottom:371.095733pt;}
.y21a{bottom:371.133067pt;}
.y1d{bottom:373.054000pt;}
.y24b{bottom:373.902400pt;}
.yf8{bottom:373.945067pt;}
.y3b{bottom:373.960333pt;}
.y69{bottom:374.031400pt;}
.y1c9{bottom:381.032400pt;}
.y1a9{bottom:381.049667pt;}
.y93{bottom:381.079067pt;}
.y1ee{bottom:382.118867pt;}
.yb2{bottom:383.897467pt;}
.yd4{bottom:383.914400pt;}
.y119{bottom:384.663667pt;}
.y13f{bottom:385.316800pt;}
.y17f{bottom:385.409600pt;}
.y219{bottom:385.497067pt;}
.y1c{bottom:385.843333pt;}
.y15b{bottom:386.733400pt;}
.yf7{bottom:388.153067pt;}
.y24a{bottom:388.266400pt;}
.y3a{bottom:389.608867pt;}
.y68{bottom:389.669067pt;}
.y1c8{bottom:396.670067pt;}
.y1a8{bottom:396.687333pt;}
.y92{bottom:396.716733pt;}
.y1b{bottom:398.632667pt;}
.yb1{bottom:399.535133pt;}
.yd3{bottom:399.552067pt;}
.y218{bottom:399.861067pt;}
.y118{bottom:400.301333pt;}
.y13e{bottom:400.954467pt;}
.y17e{bottom:401.047267pt;}
.y15a{bottom:402.371067pt;}
.y249{bottom:402.630400pt;}
.y39{bottom:405.246533pt;}
.y67{bottom:405.306733pt;}
.y1a{bottom:411.422000pt;}
.y1c7{bottom:412.307733pt;}
.y1a7{bottom:412.325000pt;}
.y91{bottom:412.354400pt;}
.y1ed{bottom:413.551867pt;}
.y217{bottom:414.225067pt;}
.yb0{bottom:415.172800pt;}
.yd2{bottom:415.189733pt;}
.y117{bottom:415.939000pt;}
.y13d{bottom:416.592133pt;}
.y17d{bottom:416.684933pt;}
.y248{bottom:416.994400pt;}
.y159{bottom:418.008733pt;}
.yf6{bottom:418.043533pt;}
.y38{bottom:420.884200pt;}
.y66{bottom:420.944400pt;}
.y19{bottom:424.211333pt;}
.y1a6{bottom:427.962667pt;}
.y90{bottom:427.992067pt;}
.y216{bottom:428.589067pt;}
.yaf{bottom:430.810467pt;}
.yd1{bottom:430.827400pt;}
.y247{bottom:431.358400pt;}
.y116{bottom:431.576667pt;}
.y13c{bottom:432.229800pt;}
.y17c{bottom:432.322600pt;}
.y158{bottom:433.670533pt;}
.yf5{bottom:433.681200pt;}
.y1c6{bottom:435.771400pt;}
.y37{bottom:436.540200pt;}
.y65{bottom:436.633133pt;}
.y215{bottom:442.953067pt;}
.y1a5{bottom:443.600333pt;}
.y8f{bottom:443.629733pt;}
.y246{bottom:445.722400pt;}
.yd0{bottom:446.465067pt;}
.y115{bottom:447.214333pt;}
.y13b{bottom:447.867467pt;}
.y17b{bottom:447.960267pt;}
.yf4{bottom:449.318867pt;}
.y36{bottom:452.177867pt;}
.y64{bottom:452.270800pt;}
.yae{bottom:454.274133pt;}
.y157{bottom:457.134200pt;}
.y214{bottom:457.317067pt;}
.y1a4{bottom:459.238000pt;}
.y8e{bottom:459.267400pt;}
.y245{bottom:460.086400pt;}
.y1ec{bottom:460.622533pt;}
.ycf{bottom:462.102733pt;}
.y114{bottom:462.852000pt;}
.y13a{bottom:463.505133pt;}
.y17a{bottom:463.597933pt;}
.yf3{bottom:464.956533pt;}
.y18{bottom:465.438000pt;}
.y35{bottom:467.815533pt;}
.y63{bottom:467.908467pt;}
.y213{bottom:471.681067pt;}
.y156{bottom:472.771867pt;}
.y244{bottom:474.450400pt;}
.y1c5{bottom:474.872733pt;}
.y1a3{bottom:474.875667pt;}
.y8d{bottom:474.905067pt;}
.y1eb{bottom:476.403533pt;}
.yce{bottom:477.740400pt;}
.y113{bottom:478.489667pt;}
.y139{bottom:479.142800pt;}
.y179{bottom:479.235600pt;}
.yf2{bottom:480.594200pt;}
.y34{bottom:483.453200pt;}
.y62{bottom:483.546133pt;}
.y17{bottom:484.627333pt;}
.y212{bottom:486.045067pt;}
.y243{bottom:488.814400pt;}
.y1c4{bottom:490.510400pt;}
.y1a2{bottom:490.513333pt;}
.y8c{bottom:490.542733pt;}
.y1ea{bottom:492.184533pt;}
.yad{bottom:493.375467pt;}
.y112{bottom:494.127333pt;}
.y178{bottom:494.873267pt;}
.yf1{bottom:496.231867pt;}
.y155{bottom:496.235533pt;}
.y16{bottom:497.416667pt;}
.y33{bottom:499.090867pt;}
.y61{bottom:499.183800pt;}
.y211{bottom:500.409067pt;}
.ycd{bottom:501.204067pt;}
.y242{bottom:503.178400pt;}
.y1c3{bottom:506.148067pt;}
.y1a1{bottom:506.151000pt;}
.y8b{bottom:506.180400pt;}
.y1e9{bottom:507.965533pt;}
.yac{bottom:509.013133pt;}
.y111{bottom:509.765000pt;}
.y15{bottom:510.206000pt;}
.y138{bottom:510.429200pt;}
.y177{bottom:510.510933pt;}
.yf0{bottom:511.869533pt;}
.y154{bottom:511.873200pt;}
.y32{bottom:514.728533pt;}
.y210{bottom:514.773067pt;}
.y60{bottom:514.821467pt;}
.y241{bottom:517.542400pt;}
.y1c2{bottom:521.785733pt;}
.y1a0{bottom:521.788667pt;}
.y8a{bottom:521.818067pt;}
.y14{bottom:522.995333pt;}
.y1e8{bottom:523.746533pt;}
.y137{bottom:524.637200pt;}
.yab{bottom:524.650800pt;}
.y110{bottom:525.402667pt;}
.y176{bottom:526.148600pt;}
.yef{bottom:527.507200pt;}
.y153{bottom:527.510867pt;}
.y20f{bottom:529.137067pt;}
.y5f{bottom:530.459133pt;}
.y240{bottom:531.906400pt;}
.y13{bottom:535.784667pt;}
.y1c1{bottom:537.423400pt;}
.y19f{bottom:537.426333pt;}
.y89{bottom:537.455733pt;}
.y136{bottom:538.845200pt;}
.y1e7{bottom:539.527533pt;}
.yaa{bottom:540.288467pt;}
.ycc{bottom:540.305400pt;}
.y10f{bottom:541.040333pt;}
.y175{bottom:541.797800pt;}
.yee{bottom:543.144867pt;}
.y152{bottom:543.148533pt;}
.y20e{bottom:543.501067pt;}
.y31{bottom:546.022800pt;}
.y5e{bottom:546.096800pt;}
.y23f{bottom:546.270400pt;}
.y12{bottom:548.574000pt;}
.y1c0{bottom:553.061067pt;}
.y19e{bottom:553.064000pt;}
.y88{bottom:553.093400pt;}
.y1e6{bottom:555.308533pt;}
.ya9{bottom:555.926133pt;}
.ycb{bottom:555.943067pt;}
.y10e{bottom:556.678000pt;}
.y174{bottom:557.435467pt;}
.y20d{bottom:557.865067pt;}
.yed{bottom:558.782533pt;}
.y151{bottom:558.786200pt;}
.y30{bottom:560.230800pt;}
.y23e{bottom:560.634400pt;}
.y5d{bottom:561.734467pt;}
.y1bf{bottom:568.698733pt;}
.y19d{bottom:568.701667pt;}
.y135{bottom:568.730400pt;}
.y87{bottom:568.731067pt;}
.y1e5{bottom:571.089533pt;}
.ya8{bottom:571.563800pt;}
.yca{bottom:571.580733pt;}
.y20c{bottom:572.229067pt;}
.yec{bottom:574.420200pt;}
.y150{bottom:574.423867pt;}
.y2f{bottom:574.438800pt;}
.y23d{bottom:574.998400pt;}
.y5c{bottom:577.372133pt;}
.y173{bottom:580.899133pt;}
.y1be{bottom:584.336400pt;}
.y19c{bottom:584.339333pt;}
.y134{bottom:584.368067pt;}
.y86{bottom:584.368733pt;}
.y20b{bottom:586.593067pt;}
.y1e4{bottom:586.870533pt;}
.ya7{bottom:587.201467pt;}
.yc9{bottom:587.218400pt;}
.y10d{bottom:587.977600pt;}
.y2e{bottom:588.646800pt;}
.y23c{bottom:589.362400pt;}
.yeb{bottom:590.057867pt;}
.y14f{bottom:590.061533pt;}
.y5b{bottom:593.009800pt;}
.y1bd{bottom:599.974067pt;}
.y19b{bottom:599.977000pt;}
.y133{bottom:600.005733pt;}
.y85{bottom:600.006400pt;}
.y20a{bottom:600.957067pt;}
.y10c{bottom:602.185600pt;}
.y1e3{bottom:602.651533pt;}
.y2d{bottom:602.854800pt;}
.yc8{bottom:602.856067pt;}
.y23b{bottom:603.726400pt;}
.y14e{bottom:605.699200pt;}
.y5a{bottom:608.647467pt;}
.y209{bottom:615.321067pt;}
.y19a{bottom:615.633000pt;}
.y132{bottom:615.643400pt;}
.y84{bottom:615.644067pt;}
.y10b{bottom:616.393600pt;}
.y2c{bottom:617.062800pt;}
.y23a{bottom:618.090400pt;}
.y1e2{bottom:618.432533pt;}
.ya6{bottom:618.485067pt;}
.yc7{bottom:618.493733pt;}
.y172{bottom:620.000467pt;}
.yea{bottom:621.344267pt;}
.y1bc{bottom:623.437733pt;}
.y59{bottom:624.285133pt;}
.y11{bottom:625.320267pt;}
.y263{bottom:625.551200pt;}
.y208{bottom:629.685067pt;}
.y10a{bottom:630.601600pt;}
.y199{bottom:631.270667pt;}
.y131{bottom:631.281067pt;}
.y83{bottom:631.281733pt;}
.y239{bottom:632.454400pt;}
.ya5{bottom:632.693067pt;}
.yc6{bottom:634.131400pt;}
.y1e1{bottom:634.213533pt;}
.ye9{bottom:635.552267pt;}
.y171{bottom:635.638133pt;}
.y262{bottom:636.919200pt;}
.y14d{bottom:636.988267pt;}
.y58{bottom:639.937467pt;}
.y10{bottom:641.886000pt;}
.y207{bottom:644.049067pt;}
.y109{bottom:644.809600pt;}
.y238{bottom:646.818400pt;}
.y198{bottom:646.908333pt;}
.y130{bottom:646.918733pt;}
.y82{bottom:646.919400pt;}
.y2b{bottom:646.948000pt;}
.ye8{bottom:649.760267pt;}
.yc5{bottom:649.769067pt;}
.y1e0{bottom:649.994533pt;}
.y14c{bottom:651.196267pt;}
.y170{bottom:651.275800pt;}
.y261{bottom:653.274933pt;}
.y57{bottom:655.575133pt;}
.y206{bottom:658.413067pt;}
.y108{bottom:659.017600pt;}
.y237{bottom:661.182400pt;}
.y197{bottom:662.546000pt;}
.y12f{bottom:662.556400pt;}
.ya4{bottom:662.557067pt;}
.y1bb{bottom:662.571400pt;}
.y2a{bottom:662.585667pt;}
.ye7{bottom:663.970933pt;}
.y260{bottom:664.642933pt;}
.y14b{bottom:665.404267pt;}
.yc4{bottom:665.406733pt;}
.y1df{bottom:665.775533pt;}
.y16f{bottom:666.931667pt;}
.y56{bottom:671.212800pt;}
.y205{bottom:672.777067pt;}
.y107{bottom:673.225600pt;}
.y236{bottom:675.546400pt;}
.y25f{bottom:676.010933pt;}
.y196{bottom:678.183667pt;}
.y12e{bottom:678.194067pt;}
.y81{bottom:678.194733pt;}
.y1ba{bottom:678.209067pt;}
.y29{bottom:678.223333pt;}
.y14a{bottom:679.612267pt;}
.yc3{bottom:681.044400pt;}
.y1de{bottom:681.556533pt;}
.yf{bottom:682.410000pt;}
.y16e{bottom:682.569333pt;}
.y55{bottom:686.850467pt;}
.y204{bottom:687.141067pt;}
.y106{bottom:687.433600pt;}
.y235{bottom:689.910400pt;}
.y12d{bottom:693.831733pt;}
.y195{bottom:693.839400pt;}
.ye6{bottom:693.846733pt;}
.y28{bottom:693.861000pt;}
.y1dd{bottom:697.337533pt;}
.y16d{bottom:698.207000pt;}
.y203{bottom:701.505067pt;}
.y54{bottom:702.488133pt;}
.y234{bottom:704.274400pt;}
.ye{bottom:709.414000pt;}
.ya3{bottom:709.470067pt;}
.y194{bottom:709.477067pt;}
.ye5{bottom:709.484400pt;}
.y27{bottom:709.498667pt;}
.yc2{bottom:712.328000pt;}
.y1dc{bottom:713.118533pt;}
.y16c{bottom:713.844667pt;}
.y202{bottom:715.869067pt;}
.y105{bottom:717.296067pt;}
.y233{bottom:718.638400pt;}
.y12c{bottom:725.107067pt;}
.y193{bottom:725.114733pt;}
.y80{bottom:725.122067pt;}
.y26{bottom:725.136333pt;}
.yc1{bottom:726.536000pt;}
.y1db{bottom:728.899533pt;}
.y16b{bottom:729.482333pt;}
.y201{bottom:730.233067pt;}
.y104{bottom:732.933733pt;}
.y232{bottom:733.002400pt;}
.y53{bottom:733.782400pt;}
.y192{bottom:740.752400pt;}
.y7f{bottom:740.759733pt;}
.y25{bottom:740.774000pt;}
.y200{bottom:744.597067pt;}
.y1da{bottom:744.680533pt;}
.y16a{bottom:745.120000pt;}
.y231{bottom:747.366400pt;}
.y52{bottom:747.990400pt;}
.y103{bottom:748.571400pt;}
.y191{bottom:756.390067pt;}
.y7e{bottom:756.397400pt;}
.y24{bottom:756.411667pt;}
.y1ff{bottom:758.961067pt;}
.y230{bottom:761.730400pt;}
.y51{bottom:762.198400pt;}
.y102{bottom:764.209067pt;}
.y7d{bottom:772.035067pt;}
.y23{bottom:772.049333pt;}
.y1fe{bottom:773.325067pt;}
.y2{bottom:775.562267pt;}
.y22f{bottom:776.094400pt;}
.y1d9{bottom:776.118400pt;}
.y50{bottom:776.406400pt;}
.y101{bottom:779.846733pt;}
.y7c{bottom:787.672733pt;}
.y22e{bottom:790.458400pt;}
.y1d8{bottom:790.470400pt;}
.y4f{bottom:790.614400pt;}
.y3{bottom:800.611600pt;}
.y7b{bottom:803.310400pt;}
.y22{bottom:803.324667pt;}
.y4e{bottom:804.822400pt;}
.y20{bottom:843.481733pt;}
.y4d{bottom:843.913733pt;}
.y5{bottom:846.995200pt;}
.y4{bottom:858.995200pt;}
.h12{height:24.048000pt;}
.h11{height:24.048533pt;}
.h5{height:27.402667pt;}
.h6{height:27.738667pt;}
.h7{height:28.000000pt;}
.hd{height:31.232000pt;}
.h3{height:31.701333pt;}
.h2{height:33.360000pt;}
.h13{height:33.993600pt;}
.hc{height:35.584000pt;}
.h14{height:37.351562pt;}
.hb{height:37.808000pt;}
.h10{height:40.032000pt;}
.he{height:41.968000pt;}
.h9{height:42.944000pt;}
.h8{height:45.324800pt;}
.hf{height:47.816000pt;}
.ha{height:48.928000pt;}
.h4{height:68.800000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x4{left:79.898400pt;}
.xf{left:90.708667pt;}
.x11{left:94.490533pt;}
.x5{left:98.266400pt;}
.x10{left:103.936667pt;}
.xc{left:109.750267pt;}
.xe{left:126.747867pt;}
.x6{left:129.062800pt;}
.x7{left:134.062800pt;}
.xd{left:145.647867pt;}
.x8{left:178.150533pt;}
.x9{left:206.026533pt;}
.xa{left:263.989200pt;}
.xb{left:277.111733pt;}
.x2{left:409.382667pt;}
.x3{left:454.591467pt;}
}




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