
    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_525cfbb836cfe12bd82a1569.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c213907b836a6284d1a41c53.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_3400b2061e86871d2cfb8b3e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_53453974761ca29907e156c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_503b3b2f81d14f51d4b4f22a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3c6d1c32b588f216e6be521b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7bad120e284eb31d15448a7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.677246;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_99f1783775131068014fbaf1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050293;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls33{letter-spacing:-1.314720px;}
.ls5d{letter-spacing:-1.075680px;}
.ls17{letter-spacing:-0.956160px;}
.ls38{letter-spacing:-0.836640px;}
.ls16{letter-spacing:-0.776880px;}
.ls25{letter-spacing:-0.657360px;}
.lsd{letter-spacing:-0.597600px;}
.ls32{letter-spacing:-0.537840px;}
.lsc{letter-spacing:-0.478080px;}
.ls6e{letter-spacing:-0.418320px;}
.ls5a{letter-spacing:-0.378000px;}
.lse{letter-spacing:-0.358560px;}
.ls8{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.239040px;}
.ls4b{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.191520px;}
.ls26{letter-spacing:-0.119520px;}
.ls50{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.059760px;}
.ls74{letter-spacing:0.095616px;}
.ls57{letter-spacing:0.108000px;}
.ls73{letter-spacing:0.113544px;}
.ls3{letter-spacing:0.119520px;}
.ls68{letter-spacing:0.125496px;}
.ls67{letter-spacing:0.131472px;}
.ls71{letter-spacing:0.144576px;}
.ls6a{letter-spacing:0.153360px;}
.ls6b{letter-spacing:0.155376px;}
.ls7a{letter-spacing:0.161352px;}
.ls4c{letter-spacing:0.162000px;}
.ls77{letter-spacing:0.164880px;}
.ls78{letter-spacing:0.167328px;}
.ls76{letter-spacing:0.167760px;}
.ls66{letter-spacing:0.173304px;}
.ls6{letter-spacing:0.179280px;}
.ls41{letter-spacing:0.180000px;}
.ls75{letter-spacing:0.185256px;}
.ls6c{letter-spacing:0.191232px;}
.ls64{letter-spacing:0.191520px;}
.ls70{letter-spacing:0.197208px;}
.ls61{letter-spacing:0.201600px;}
.ls54{letter-spacing:0.206640px;}
.ls65{letter-spacing:0.209520px;}
.ls62{letter-spacing:0.215136px;}
.ls56{letter-spacing:0.216000px;}
.ls6f{letter-spacing:0.221112px;}
.ls10{letter-spacing:0.227088px;}
.ls3a{letter-spacing:0.233064px;}
.ls7{letter-spacing:0.239040px;}
.ls72{letter-spacing:0.245016px;}
.ls63{letter-spacing:0.250992px;}
.ls60{letter-spacing:0.256968px;}
.ls53{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.262944px;}
.ls43{letter-spacing:0.268920px;}
.ls15{letter-spacing:0.274896px;}
.ls1f{letter-spacing:0.280872px;}
.ls1e{letter-spacing:0.286848px;}
.ls2b{letter-spacing:0.292824px;}
.ls4{letter-spacing:0.298800px;}
.ls1d{letter-spacing:0.304776px;}
.ls55{letter-spacing:0.306720px;}
.ls1a{letter-spacing:0.310752px;}
.ls69{letter-spacing:0.316728px;}
.ls2d{letter-spacing:0.322704px;}
.ls52{letter-spacing:0.334656px;}
.ls5c{letter-spacing:0.346608px;}
.ls2{letter-spacing:0.358560px;}
.ls48{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.364536px;}
.ls51{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.382464px;}
.ls6d{letter-spacing:0.388440px;}
.ls28{letter-spacing:0.400392px;}
.ls2c{letter-spacing:0.412344px;}
.ls3b{letter-spacing:0.442224px;}
.ls79{letter-spacing:0.466128px;}
.ls11{letter-spacing:0.478080px;}
.ls37{letter-spacing:0.537840px;}
.ls5e{letter-spacing:0.597600px;}
.ls4e{letter-spacing:0.603576px;}
.ls13{letter-spacing:0.896400px;}
.ls3f{letter-spacing:0.902376px;}
.ls14{letter-spacing:1.613520px;}
.ls49{letter-spacing:1.620000px;}
.ls2f{letter-spacing:2.330640px;}
.ls2e{letter-spacing:2.438208px;}
.ls22{letter-spacing:3.047760px;}
.ls5f{letter-spacing:3.764880px;}
.ls23{letter-spacing:4.482000px;}
.ls42{letter-spacing:4.619448px;}
.ls18{letter-spacing:5.199120px;}
.ls24{letter-spacing:5.916240px;}
.ls4d{letter-spacing:5.958072px;}
.ls3c{letter-spacing:6.633360px;}
.ls58{letter-spacing:7.350480px;}
.ls21{letter-spacing:7.398288px;}
.ls20{letter-spacing:7.410240px;}
.ls4f{letter-spacing:8.844480px;}
.ls44{letter-spacing:8.975952px;}
.ls30{letter-spacing:9.430128px;}
.ls29{letter-spacing:9.454032px;}
.ls31{letter-spacing:9.471960px;}
.ls4a{letter-spacing:9.540000px;}
.ls35{letter-spacing:10.278720px;}
.ls2a{letter-spacing:11.689056px;}
.ls3e{letter-spacing:11.712960px;}
.ls59{letter-spacing:12.418128px;}
.lsf{letter-spacing:13.864320px;}
.ls36{letter-spacing:14.581440px;}
.ls45{letter-spacing:15.298560px;}
.ls1b{letter-spacing:16.015680px;}
.ls5b{letter-spacing:16.027632px;}
.ls1c{letter-spacing:16.732800px;}
.ls27{letter-spacing:17.449920px;}
.ls47{letter-spacing:18.167040px;}
.ls39{letter-spacing:19.069416px;}
.ls40{letter-spacing:21.806424px;}
.ls3d{letter-spacing:22.469760px;}
.ls46{letter-spacing:24.680880px;}
.ls19{letter-spacing:36.871920px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.wsa4{word-spacing:-15.657120px;}
.ws5{word-spacing:-15.298560px;}
.ws45{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.179040px;}
.ws6{word-spacing:-15.059520px;}
.ws44{word-spacing:-14.999760px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.880240px;}
.ws71{word-spacing:-14.820480px;}
.ws3{word-spacing:-14.700960px;}
.ws98{word-spacing:-14.581440px;}
.wsa8{word-spacing:-14.461920px;}
.ws43{word-spacing:-14.342400px;}
.ws15{word-spacing:-14.163120px;}
.ws89{word-spacing:-13.878000px;}
.ws8a{word-spacing:-13.662000px;}
.ws8b{word-spacing:-13.500000px;}
.ws88{word-spacing:-13.392000px;}
.ws99{word-spacing:-13.122000px;}
.ws8f{word-spacing:-0.918000px;}
.wsc{word-spacing:-0.896400px;}
.wsa6{word-spacing:-0.776880px;}
.wsa9{word-spacing:-0.717120px;}
.wsf{word-spacing:-0.657360px;}
.wsaa{word-spacing:-0.597600px;}
.wsa5{word-spacing:-0.478080px;}
.ws12{word-spacing:-0.358560px;}
.wsab{word-spacing:-0.298800px;}
.ws75{word-spacing:-0.239040px;}
.ws90{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.191520px;}
.wsb{word-spacing:-0.179280px;}
.ws66{word-spacing:-0.119520px;}
.ws9b{word-spacing:-0.108000px;}
.ws11{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:0.059760px;}
.ws92{word-spacing:0.108000px;}
.ws7d{word-spacing:0.119520px;}
.ws85{word-spacing:0.162000px;}
.wsa{word-spacing:0.191520px;}
.ws87{word-spacing:0.216000px;}
.wse{word-spacing:0.239040px;}
.ws8{word-spacing:0.288000px;}
.ws56{word-spacing:0.298800px;}
.ws14{word-spacing:0.358560px;}
.ws86{word-spacing:0.378000px;}
.ws16{word-spacing:0.418320px;}
.ws10{word-spacing:0.478080px;}
.ws32{word-spacing:0.537840px;}
.ws9a{word-spacing:0.540000px;}
.ws13{word-spacing:0.597600px;}
.ws49{word-spacing:0.657360px;}
.wsa7{word-spacing:0.717120px;}
.ws3a{word-spacing:0.776880px;}
.ws70{word-spacing:0.836640px;}
.ws35{word-spacing:0.956160px;}
.wsad{word-spacing:1.015920px;}
.wsa1{word-spacing:1.075680px;}
.wsac{word-spacing:1.135440px;}
.ws20{word-spacing:1.254960px;}
.ws6c{word-spacing:1.314720px;}
.ws94{word-spacing:1.374480px;}
.ws40{word-spacing:1.494000px;}
.ws50{word-spacing:1.673280px;}
.ws41{word-spacing:1.972080px;}
.ws1b{word-spacing:2.211120px;}
.ws28{word-spacing:2.390400px;}
.ws65{word-spacing:2.569680px;}
.ws2e{word-spacing:2.689200px;}
.ws1c{word-spacing:2.928240px;}
.ws62{word-spacing:3.107520px;}
.ws25{word-spacing:3.406320px;}
.ws34{word-spacing:3.645360px;}
.ws4b{word-spacing:3.824640px;}
.ws33{word-spacing:4.003920px;}
.ws26{word-spacing:4.123440px;}
.ws73{word-spacing:4.242960px;}
.ws27{word-spacing:4.362480px;}
.ws5a{word-spacing:4.541760px;}
.ws42{word-spacing:4.721040px;}
.ws24{word-spacing:4.840560px;}
.ws6d{word-spacing:4.960080px;}
.ws2d{word-spacing:5.079600px;}
.ws53{word-spacing:5.139360px;}
.ws31{word-spacing:5.258880px;}
.ws37{word-spacing:5.557680px;}
.ws4a{word-spacing:5.796720px;}
.ws3f{word-spacing:5.856480px;}
.ws3e{word-spacing:5.976000px;}
.ws4c{word-spacing:6.274800px;}
.wsaf{word-spacing:6.394320px;}
.ws36{word-spacing:6.513840px;}
.ws78{word-spacing:6.693120px;}
.wsa2{word-spacing:6.872400px;}
.ws9c{word-spacing:7.020000px;}
.ws29{word-spacing:7.051680px;}
.ws30{word-spacing:7.290720px;}
.ws2f{word-spacing:7.470000px;}
.ws91{word-spacing:7.722000px;}
.ws23{word-spacing:7.768800px;}
.ws7f{word-spacing:7.888320px;}
.ws48{word-spacing:8.007840px;}
.ws9d{word-spacing:8.100000px;}
.ws46{word-spacing:8.187120px;}
.ws52{word-spacing:8.485920px;}
.ws51{word-spacing:8.724960px;}
.ws59{word-spacing:9.203040px;}
.ws54{word-spacing:9.442080px;}
.ws55{word-spacing:9.621360px;}
.wsae{word-spacing:9.681120px;}
.ws3c{word-spacing:9.920160px;}
.ws3d{word-spacing:10.159200px;}
.ws3b{word-spacing:10.338480px;}
.ws2a{word-spacing:10.637280px;}
.ws39{word-spacing:10.876320px;}
.ws38{word-spacing:11.055600px;}
.ws5b{word-spacing:11.354400px;}
.ws74{word-spacing:11.593440px;}
.ws68{word-spacing:11.772720px;}
.ws2b{word-spacing:12.071520px;}
.wsa0{word-spacing:12.191040px;}
.ws69{word-spacing:12.250800px;}
.ws1a{word-spacing:12.310560px;}
.ws2c{word-spacing:12.370320px;}
.ws67{word-spacing:12.489840px;}
.ws57{word-spacing:12.788640px;}
.ws72{word-spacing:13.027680px;}
.ws58{word-spacing:13.206960px;}
.ws1d{word-spacing:13.505760px;}
.ws63{word-spacing:13.744800px;}
.ws1e{word-spacing:13.924080px;}
.ws1f{word-spacing:14.222880px;}
.ws93{word-spacing:14.461920px;}
.ws95{word-spacing:14.641200px;}
.ws19{word-spacing:14.940000px;}
.ws7a{word-spacing:15.059520px;}
.ws5c{word-spacing:15.179040px;}
.ws5d{word-spacing:15.358320px;}
.ws21{word-spacing:15.657120px;}
.ws22{word-spacing:15.896160px;}
.ws6f{word-spacing:16.075440px;}
.ws64{word-spacing:16.374240px;}
.ws47{word-spacing:16.613280px;}
.ws77{word-spacing:17.091360px;}
.ws60{word-spacing:17.330400px;}
.wsa3{word-spacing:17.390160px;}
.ws61{word-spacing:17.509680px;}
.ws18{word-spacing:17.808480px;}
.ws9f{word-spacing:18.047520px;}
.ws17{word-spacing:18.226800px;}
.ws6b{word-spacing:18.525600px;}
.ws6a{word-spacing:18.943920px;}
.ws76{word-spacing:19.242720px;}
.ws79{word-spacing:19.481760px;}
.ws97{word-spacing:19.959840px;}
.ws96{word-spacing:20.198880px;}
.ws5f{word-spacing:21.453840px;}
.ws5e{word-spacing:21.692880px;}
.ws9e{word-spacing:21.872160px;}
.ws4f{word-spacing:22.170960px;}
.ws4d{word-spacing:22.410000px;}
.ws4e{word-spacing:22.589280px;}
.ws7b{word-spacing:24.322320px;}
.ws7c{word-spacing:24.561360px;}
.ws81{word-spacing:25.039440px;}
.ws6e{word-spacing:25.756560px;}
.ws80{word-spacing:27.907920px;}
.ws8c{word-spacing:28.625040px;}
.ws8d{word-spacing:29.342160px;}
.ws83{word-spacing:39.441600px;}
.ws8e{word-spacing:48.525120px;}
.ws82{word-spacing:58.624560px;}
.ws7e{word-spacing:85.755600px;}
.ws84{word-spacing:89.102160px;}
._2{margin-left:-2.620512px;}
._0{margin-left:-1.008000px;}
._1{width:1.152000px;}
._6{width:2.620512px;}
._8{width:3.801600px;}
._5{width:5.135760px;}
._3{width:7.080480px;}
._4{width:8.427456px;}
._7{width:10.876320px;}
._9{width:13.489200px;}
._d{width:16.006320px;}
._c{width:21.762720px;}
._a{width:24.726672px;}
._b{width:29.410560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:62.992571px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y20c{bottom:2.880000px;}
.y20f{bottom:3.060000px;}
.y1b8{bottom:3.239850px;}
.y181{bottom:3.240000px;}
.y25f{bottom:8.460000px;}
.y256{bottom:8.640000px;}
.y1e2{bottom:19.980000px;}
.y1ee{bottom:20.160000px;}
.y1c4{bottom:20.340000px;}
.y183{bottom:20.520000px;}
.y253{bottom:28.440000px;}
.y1fa{bottom:37.620000px;}
.y6{bottom:50.595005px;}
.y39c{bottom:52.920000px;}
.y29{bottom:56.490300px;}
.y5e{bottom:56.505240px;}
.y388{bottom:70.200000px;}
.y376{bottom:70.380000px;}
.y28{bottom:73.596600px;}
.y5d{bottom:73.611540px;}
.y5{bottom:75.795004px;}
.y27{bottom:90.882180px;}
.y5c{bottom:90.897120px;}
.y4{bottom:100.995005px;}
.y26{bottom:108.167760px;}
.y5b{bottom:108.182700px;}
.y2c7{bottom:116.460000px;}
.y135{bottom:119.940480px;}
.yd2{bottom:120.642660px;}
.y233{bottom:120.862980px;}
.y17f{bottom:121.344840px;}
.y373{bottom:123.114960px;}
.y289{bottom:125.806500px;}
.y98{bottom:127.290960px;}
.y1dd{bottom:132.383700px;}
.y201{bottom:132.456960px;}
.y15c{bottom:132.462900px;}
.y1ac{bottom:133.224840px;}
.y2c6{bottom:133.740000px;}
.y134{bottom:137.226060px;}
.y109{bottom:137.241000px;}
.yd1{bottom:137.928240px;}
.y232{bottom:138.148560px;}
.y17e{bottom:138.630420px;}
.y2b3{bottom:138.645360px;}
.y23{bottom:139.264499px;}
.y34d{bottom:140.400000px;}
.y3a4{bottom:142.380000px;}
.y288{bottom:143.092080px;}
.y97{bottom:144.576540px;}
.y372{bottom:144.897480px;}
.y36a{bottom:144.900000px;}
.y31f{bottom:149.400000px;}
.y1dc{bottom:149.669280px;}
.y200{bottom:149.742540px;}
.y15b{bottom:149.748480px;}
.y1ab{bottom:150.510420px;}
.y2c5{bottom:151.020000px;}
.y251{bottom:152.476560px;}
.y133{bottom:154.332360px;}
.y108{bottom:154.347300px;}
.yd0{bottom:155.213820px;}
.y231{bottom:155.434140px;}
.y17d{bottom:155.916000px;}
.y2b2{bottom:155.930940px;}
.y34c{bottom:157.680000px;}
.y287{bottom:160.377660px;}
.y96{bottom:161.862120px;}
.y369{bottom:162.180000px;}
.y31e{bottom:166.680000px;}
.y1db{bottom:166.954860px;}
.y1ff{bottom:167.028120px;}
.y15a{bottom:167.034060px;}
.y1aa{bottom:167.796000px;}
.y250{bottom:169.762140px;}
.y2fb{bottom:171.180000px;}
.y132{bottom:171.617940px;}
.y107{bottom:171.632880px;}
.ycf{bottom:172.320120px;}
.y230{bottom:172.540440px;}
.y2c4{bottom:172.620000px;}
.y17c{bottom:173.201580px;}
.y2b1{bottom:173.216520px;}
.y3a3{bottom:177.480000px;}
.y286{bottom:177.663240px;}
.y95{bottom:179.147700px;}
.y34b{bottom:179.460000px;}
.y31d{bottom:183.960000px;}
.y1fe{bottom:184.134420px;}
.y1da{bottom:184.240440px;}
.y159{bottom:184.319640px;}
.y1a9{bottom:185.081580px;}
.y24f{bottom:186.868440px;}
.y2fa{bottom:188.460000px;}
.y131{bottom:188.903520px;}
.y106{bottom:188.918460px;}
.yce{bottom:189.605700px;}
.y22f{bottom:189.826020px;}
.y2c3{bottom:189.900000px;}
.y17b{bottom:190.307880px;}
.y2b0{bottom:190.322820px;}
.y285{bottom:194.769540px;}
.y94{bottom:196.254000px;}
.y34a{bottom:196.740000px;}
.y1a{bottom:196.933500px;}
.y35c{bottom:201.240000px;}
.y1fd{bottom:201.420000px;}
.y1d9{bottom:201.526020px;}
.y1a8{bottom:202.367160px;}
.y24e{bottom:204.154020px;}
.y31c{bottom:205.740000px;}
.y130{bottom:206.189100px;}
.y105{bottom:206.204040px;}
.ycd{bottom:206.891280px;}
.y22e{bottom:207.111600px;}
.y2c2{bottom:207.180000px;}
.y17a{bottom:207.593460px;}
.y2af{bottom:207.608400px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y2f9{bottom:210.240000px;}
.y284{bottom:212.055120px;}
.y3a2{bottom:212.760000px;}
.y93{bottom:213.539580px;}
.y1fc{bottom:218.340000px;}
.y349{bottom:218.520000px;}
.y1d8{bottom:218.811600px;}
.y158{bottom:219.413700px;}
.y1a7{bottom:219.473460px;}
.y24d{bottom:221.439600px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y31b{bottom:223.020000px;}
.y12f{bottom:223.474680px;}
.y104{bottom:223.489620px;}
.ycc{bottom:224.176860px;}
.y22d{bottom:224.397180px;}
.y179{bottom:224.879040px;}
.y2ae{bottom:224.893980px;}
.y2f8{bottom:227.520000px;}
.y283{bottom:229.340700px;}
.y92{bottom:230.825160px;}
.y2c1{bottom:233.170740px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y348{bottom:235.620000px;}
.y1d7{bottom:235.917900px;}
.y1a6{bottom:236.759040px;}
.y24c{bottom:238.725180px;}
.y31a{bottom:240.120000px;}
.y12e{bottom:240.760260px;}
.ycb{bottom:241.462440px;}
.y22c{bottom:241.682760px;}
.y178{bottom:242.164620px;}
.y1f9{bottom:242.280000px;}
.y371{bottom:244.620000px;}
.y282{bottom:246.626280px;}
.y3a1{bottom:248.040000px;}
.y91{bottom:248.110740px;}
.y2f7{bottom:249.120000px;}
.y157{bottom:251.460000px;}
.y347{bottom:252.900000px;}
.y1d6{bottom:253.203480px;}
.y1a5{bottom:254.044620px;}
.y24b{bottom:256.010760px;}
.y368{bottom:257.400000px;}
.y12d{bottom:257.866560px;}
.yca{bottom:258.748020px;}
.y103{bottom:258.762960px;}
.y22b{bottom:258.968340px;}
.y177{bottom:259.450200px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y2ad{bottom:260.167320px;}
.y319{bottom:261.900000px;}
.y1fb{bottom:262.800000px;}
.y281{bottom:263.911860px;}
.y90{bottom:265.396320px;}
.y2f6{bottom:266.400000px;}
.y2c0{bottom:268.444080px;}
.y1d5{bottom:270.489060px;}
.y1a4{bottom:271.330200px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y24a{bottom:273.296340px;}
.y346{bottom:274.680000px;}
.y12c{bottom:275.152140px;}
.yc9{bottom:275.854320px;}
.y22a{bottom:276.074640px;}
.y176{bottom:276.735780px;}
.y2ac{bottom:277.452900px;}
.y5a{bottom:278.226180px;}
.y318{bottom:279.180000px;}
.y280{bottom:281.197440px;}
.y8f{bottom:282.681900px;}
.y39b{bottom:283.320000px;}
.y2f5{bottom:283.680000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y2bf{bottom:285.729660px;}
.y1d4{bottom:287.774640px;}
.y1a3{bottom:288.615780px;}
.y249{bottom:290.402640px;}
.y345{bottom:291.960000px;}
.yc8{bottom:293.139900px;}
.y229{bottom:293.360220px;}
.y175{bottom:293.842080px;}
.y102{bottom:293.857020px;}
.y1f8{bottom:293.940000px;}
.y2ab{bottom:294.738480px;}
.y59{bottom:295.511760px;}
.y367{bottom:296.460000px;}
.y27f{bottom:298.303740px;}
.y8e{bottom:299.788200px;}
.y317{bottom:300.960000px;}
.y2be{bottom:302.835960px;}
.y1d3{bottom:305.060220px;}
.y2f4{bottom:305.460000px;}
.y1a2{bottom:305.901360px;}
.y248{bottom:307.688220px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yc7{bottom:310.425480px;}
.y228{bottom:310.645800px;}
.y174{bottom:311.127660px;}
.y101{bottom:311.142600px;}
.y2aa{bottom:311.844780px;}
.y58{bottom:312.797340px;}
.y344{bottom:313.740000px;}
.y27e{bottom:315.589320px;}
.y8d{bottom:317.073780px;}
.y316{bottom:318.240000px;}
.y39d{bottom:319.140000px;}
.y2bd{bottom:320.121540px;}
.y3a0{bottom:321.660000px;}
.y1d2{bottom:322.345800px;}
.y2f3{bottom:322.740000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1a1{bottom:323.007660px;}
.y247{bottom:324.973800px;}
.yc6{bottom:327.711060px;}
.y227{bottom:327.931380px;}
.y100{bottom:328.428180px;}
.y1f7{bottom:328.500000px;}
.y2a9{bottom:329.130360px;}
.y57{bottom:329.903640px;}
.y343{bottom:331.020000px;}
.y39f{bottom:332.460000px;}
.y27d{bottom:332.874900px;}
.y8c{bottom:334.359360px;}
.y315{bottom:335.520000px;}
.y12b{bottom:336.704940px;}
.y2bc{bottom:337.407120px;}
.y39e{bottom:339.120000px;}
.y1d1{bottom:339.452100px;}
.y35b{bottom:340.020000px;}
.y1a0{bottom:340.293240px;}
.y246{bottom:342.259380px;}
.y2f2{bottom:344.520000px;}
.y226{bottom:345.216960px;}
.yff{bottom:345.713760px;}
.y173{bottom:346.401000px;}
.y2a8{bottom:346.415940px;}
.y56{bottom:347.189220px;}
.y11{bottom:348.133500px;}
.y27c{bottom:350.160480px;}
.y8b{bottom:351.644940px;}
.y342{bottom:352.620000px;}
.y2bb{bottom:354.692700px;}
.y1d0{bottom:356.737680px;}
.y314{bottom:357.120000px;}
.y19f{bottom:357.578820px;}
.y245{bottom:359.544960px;}
.y2f1{bottom:361.620000px;}
.y225{bottom:362.502540px;}
.yc5{bottom:362.984400px;}
.yfe{bottom:362.999340px;}
.y1f6{bottom:363.060000px;}
.y172{bottom:363.686580px;}
.y2a7{bottom:363.701520px;}
.y55{bottom:364.474800px;}
.y27b{bottom:367.446060px;}
.y39a{bottom:368.280000px;}
.y8a{bottom:368.930520px;}
.y341{bottom:369.900000px;}
.y2ba{bottom:371.978280px;}
.y1cf{bottom:374.023260px;}
.y313{bottom:374.400000px;}
.y244{bottom:376.830540px;}
.y19e{bottom:377.374320px;}
.y35a{bottom:378.900000px;}
.y224{bottom:379.608840px;}
.yc4{bottom:380.269980px;}
.yfd{bottom:380.284920px;}
.y171{bottom:380.972160px;}
.y2a6{bottom:380.987100px;}
.y54{bottom:381.760380px;}
.y2f0{bottom:383.400000px;}
.y27a{bottom:384.731640px;}
.y89{bottom:386.036820px;}
.y399{bottom:386.280000px;}
.y10{bottom:386.785499px;}
.y340{bottom:387.180000px;}
.y12a{bottom:389.263860px;}
.y1ce{bottom:391.308840px;}
.y366{bottom:391.680000px;}
.y243{bottom:393.936840px;}
.y19d{bottom:395.197740px;}
.y312{bottom:396.180000px;}
.y223{bottom:396.894420px;}
.yc3{bottom:397.376280px;}
.yfc{bottom:397.391220px;}
.y1f5{bottom:397.440000px;}
.y170{bottom:398.257740px;}
.y2a5{bottom:398.272680px;}
.y53{bottom:399.045960px;}
.y2ef{bottom:400.680000px;}
.y279{bottom:401.837940px;}
.y88{bottom:403.322400px;}
.y398{bottom:404.280000px;}
.y129{bottom:406.370160px;}
.yf{bottom:408.044999px;}
.y1cd{bottom:408.594420px;}
.y33f{bottom:408.960000px;}
.y242{bottom:411.222420px;}
.y311{bottom:413.460000px;}
.y222{bottom:414.180000px;}
.yc2{bottom:414.661860px;}
.yfb{bottom:414.676800px;}
.y19c{bottom:414.993240px;}
.y16f{bottom:415.364040px;}
.y2a4{bottom:415.378980px;}
.y52{bottom:416.331540px;}
.y359{bottom:417.960000px;}
.y278{bottom:419.123520px;}
.y87{bottom:420.607980px;}
.y397{bottom:422.280000px;}
.y2ee{bottom:422.460000px;}
.y128{bottom:423.655740px;}
.y1cc{bottom:425.880000px;}
.y33e{bottom:426.240000px;}
.y241{bottom:428.508000px;}
.y365{bottom:430.740000px;}
.y1f4{bottom:431.460000px;}
.yc1{bottom:431.947440px;}
.yfa{bottom:431.962380px;}
.y16e{bottom:432.649620px;}
.y2a3{bottom:432.664560px;}
.y51{bottom:433.437840px;}
.y19b{bottom:435.147300px;}
.y310{bottom:435.240000px;}
.y277{bottom:436.409100px;}
.y86{bottom:437.893560px;}
.y2ed{bottom:439.740000px;}
.y396{bottom:440.280000px;}
.y127{bottom:440.941320px;}
.y240{bottom:445.793580px;}
.y33d{bottom:447.840000px;}
.y221{bottom:448.380000px;}
.yc0{bottom:449.233020px;}
.yf9{bottom:449.247960px;}
.y16d{bottom:449.935200px;}
.y2a2{bottom:449.950140px;}
.y50{bottom:450.723420px;}
.y30f{bottom:452.340000px;}
.y276{bottom:453.694680px;}
.y85{bottom:455.179140px;}
.y19a{bottom:455.480640px;}
.y2ec{bottom:456.840000px;}
.y126{bottom:458.226900px;}
.y395{bottom:458.280000px;}
.y1cb{bottom:460.080000px;}
.y23f{bottom:463.079160px;}
.y220{bottom:464.040000px;}
.y156{bottom:464.949900px;}
.y33c{bottom:465.120000px;}
.y1f3{bottom:465.660000px;}
.ybf{bottom:466.518600px;}
.yf8{bottom:466.533540px;}
.y16c{bottom:467.220780px;}
.y2a1{bottom:467.235720px;}
.y4f{bottom:468.009000px;}
.y275{bottom:470.980260px;}
.y84{bottom:472.464720px;}
.y199{bottom:473.304060px;}
.y30e{bottom:474.120000px;}
.y125{bottom:475.512480px;}
.y394{bottom:476.280000px;}
.y1ca{bottom:477.360000px;}
.y2eb{bottom:478.620000px;}
.y21f{bottom:479.520000px;}
.y23e{bottom:480.364740px;}
.y155{bottom:482.235480px;}
.ybe{bottom:483.624900px;}
.yf7{bottom:483.639840px;}
.y16b{bottom:484.506360px;}
.y2a0{bottom:484.521300px;}
.ye{bottom:484.864502px;}
.y4e{bottom:485.294580px;}
.y33b{bottom:486.900000px;}
.y274{bottom:488.086560px;}
.y83{bottom:489.571020px;}
.y198{bottom:490.589640px;}
.y30d{bottom:491.400000px;}
.y124{bottom:492.618780px;}
.y393{bottom:494.280000px;}
.y1c9{bottom:494.640000px;}
.y21e{bottom:495.000000px;}
.y2ea{bottom:495.900000px;}
.y23d{bottom:497.471040px;}
.y154{bottom:499.521060px;}
.y1f2{bottom:499.680000px;}
.ybd{bottom:500.910480px;}
.yf6{bottom:500.925420px;}
.y16a{bottom:501.612660px;}
.y29f{bottom:501.627600px;}
.y4d{bottom:502.580160px;}
.yd{bottom:502.864502px;}
.y33a{bottom:504.180000px;}
.y273{bottom:505.372140px;}
.y82{bottom:506.856600px;}
.y197{bottom:507.875220px;}
.y30c{bottom:508.680000px;}
.y123{bottom:509.904360px;}
.y21d{bottom:510.480000px;}
.y1c8{bottom:511.740000px;}
.y392{bottom:512.280000px;}
.y358{bottom:513.180000px;}
.y23c{bottom:514.756620px;}
.y2e9{bottom:517.680000px;}
.ybc{bottom:518.196060px;}
.yf5{bottom:518.211000px;}
.y169{bottom:518.898240px;}
.y29e{bottom:518.913180px;}
.y4c{bottom:519.686460px;}
.yc{bottom:520.864502px;}
.y364{bottom:521.460000px;}
.y272{bottom:522.657720px;}
.y81{bottom:524.142180px;}
.y196{bottom:525.160800px;}
.y153{bottom:525.800520px;}
.y339{bottom:525.960000px;}
.y122{bottom:527.189940px;}
.y21c{bottom:527.220000px;}
.y1c7{bottom:529.020000px;}
.y391{bottom:530.280000px;}
.y30b{bottom:530.460000px;}
.y23b{bottom:532.042200px;}
.y1f1{bottom:533.700000px;}
.y2e8{bottom:534.960000px;}
.ybb{bottom:535.481640px;}
.yf4{bottom:535.496580px;}
.y168{bottom:536.183820px;}
.y29d{bottom:536.198760px;}
.y4b{bottom:536.972040px;}
.yb{bottom:538.864499px;}
.y271{bottom:539.943300px;}
.y80{bottom:541.427760px;}
.y195{bottom:542.267100px;}
.y152{bottom:543.086100px;}
.y338{bottom:543.240000px;}
.y121{bottom:544.475520px;}
.y1c6{bottom:546.300000px;}
.y370{bottom:547.740000px;}
.y23a{bottom:549.327780px;}
.y30a{bottom:552.240000px;}
.yba{bottom:552.767220px;}
.yf3{bottom:552.782160px;}
.y167{bottom:553.469400px;}
.y4a{bottom:554.257620px;}
.y2e7{bottom:556.740000px;}
.ya{bottom:556.864499px;}
.y21b{bottom:557.072100px;}
.y270{bottom:557.228880px;}
.y7f{bottom:558.713340px;}
.y194{bottom:559.552680px;}
.y337{bottom:560.340000px;}
.y120{bottom:561.761100px;}
.y1c5{bottom:563.580000px;}
.y390{bottom:565.560000px;}
.y239{bottom:566.613360px;}
.y1f0{bottom:567.720000px;}
.y151{bottom:569.186280px;}
.y309{bottom:569.340000px;}
.yb9{bottom:570.052800px;}
.yf2{bottom:570.067740px;}
.y166{bottom:570.754980px;}
.y29c{bottom:571.472100px;}
.y49{bottom:571.543200px;}
.y2e6{bottom:573.840000px;}
.y21a{bottom:574.357680px;}
.y26f{bottom:574.514460px;}
.y7e{bottom:575.998920px;}
.y193{bottom:576.838260px;}
.y363{bottom:577.620000px;}
.y11f{bottom:579.046680px;}
.y1c3{bottom:580.860000px;}
.y336{bottom:582.120000px;}
.y238{bottom:583.719660px;}
.y150{bottom:586.471860px;}
.y357{bottom:586.620000px;}
.yb8{bottom:587.159100px;}
.yf1{bottom:587.174040px;}
.y165{bottom:588.040560px;}
.y29b{bottom:588.757680px;}
.y48{bottom:588.828780px;}
.y308{bottom:591.120000px;}
.y26e{bottom:591.620760px;}
.y219{bottom:591.643260px;}
.y7d{bottom:593.105220px;}
.y192{bottom:594.123840px;}
.y2e5{bottom:595.620000px;}
.y11e{bottom:596.152980px;}
.y335{bottom:599.400000px;}
.y38f{bottom:600.840000px;}
.y237{bottom:601.005240px;}
.y1ef{bottom:601.740000px;}
.y36f{bottom:603.900000px;}
.yb7{bottom:604.444680px;}
.yf0{bottom:604.459620px;}
.y164{bottom:605.146860px;}
.y2b9{bottom:606.028320px;}
.y29a{bottom:606.043260px;}
.y47{bottom:606.114360px;}
.y307{bottom:608.400000px;}
.y26d{bottom:608.906340px;}
.y218{bottom:608.928840px;}
.y7c{bottom:610.390800px;}
.y191{bottom:611.409420px;}
.y14f{bottom:612.751320px;}
.y2e4{bottom:612.900000px;}
.y11d{bottom:613.438560px;}
.y1c2{bottom:615.240000px;}
.y362{bottom:616.680000px;}
.y236{bottom:618.290820px;}
.y387{bottom:618.840000px;}
.y334{bottom:621.180000px;}
.yb6{bottom:621.730260px;}
.yef{bottom:621.745200px;}
.y163{bottom:622.432440px;}
.y2b8{bottom:623.134620px;}
.y299{bottom:623.149560px;}
.y46{bottom:623.220660px;}
.y356{bottom:625.680000px;}
.y26c{bottom:626.191920px;}
.y217{bottom:626.214420px;}
.y7b{bottom:627.676380px;}
.y190{bottom:628.695000px;}
.y14e{bottom:630.036900px;}
.y2e3{bottom:630.180000px;}
.y11c{bottom:630.724140px;}
.y1c1{bottom:632.520000px;}
.y235{bottom:635.576400px;}
.y1ed{bottom:635.760000px;}
.y38b{bottom:637.380000px;}
.y333{bottom:638.460000px;}
.yb5{bottom:639.015840px;}
.yee{bottom:639.030780px;}
.y162{bottom:639.718020px;}
.y2b7{bottom:640.420200px;}
.y298{bottom:640.435140px;}
.y45{bottom:640.506240px;}
.y355{bottom:642.960000px;}
.y26b{bottom:643.477500px;}
.y216{bottom:643.500000px;}
.y7a{bottom:644.961960px;}
.y9{bottom:645.510000px;}
.y18f{bottom:645.801300px;}
.y306{bottom:647.460000px;}
.y11b{bottom:648.009720px;}
.y234{bottom:649.620000px;}
.y1c0{bottom:649.800000px;}
.y2e2{bottom:651.960000px;}
.y38a{bottom:654.660000px;}
.y332{bottom:655.740000px;}
.yb4{bottom:656.301420px;}
.y14d{bottom:656.316360px;}
.y161{bottom:657.003600px;}
.y38e{bottom:657.180000px;}
.y2b6{bottom:657.705780px;}
.y297{bottom:657.720720px;}
.y44{bottom:657.791820px;}
.y361{bottom:660.240000px;}
.y215{bottom:660.420000px;}
.y26a{bottom:660.763080px;}
.y79{bottom:662.247540px;}
.y18e{bottom:663.086880px;}
.y305{bottom:664.740000px;}
.y8{bottom:666.771000px;}
.y38d{bottom:667.980000px;}
.y2e1{bottom:669.240000px;}
.y1ec{bottom:669.960000px;}
.y389{bottom:671.940000px;}
.yb3{bottom:673.587000px;}
.y14c{bottom:673.601940px;}
.y160{bottom:674.289180px;}
.yed{bottom:674.304120px;}
.y38c{bottom:674.640000px;}
.y2b5{bottom:674.991360px;}
.y296{bottom:675.006300px;}
.y43{bottom:675.077400px;}
.y214{bottom:675.904500px;}
.y331{bottom:677.340000px;}
.y269{bottom:678.048660px;}
.y78{bottom:679.353840px;}
.y18d{bottom:680.372460px;}
.y11a{bottom:683.283060px;}
.y1bf{bottom:684.360000px;}
.y304{bottom:686.340000px;}
.yb2{bottom:690.693300px;}
.y14b{bottom:690.708240px;}
.y2e0{bottom:690.840000px;}
.y15f{bottom:691.574760px;}
.yec{bottom:691.589700px;}
.y2b4{bottom:692.276940px;}
.y295{bottom:692.291880px;}
.y42{bottom:692.362980px;}
.y330{bottom:694.620000px;}
.y268{bottom:695.154960px;}
.y77{bottom:696.639420px;}
.y18c{bottom:697.658040px;}
.y360{bottom:699.120000px;}
.y213{bottom:700.380000px;}
.y1be{bottom:701.460000px;}
.y354{bottom:703.620000px;}
.y386{bottom:703.800000px;}
.y1eb{bottom:704.340000px;}
.yb1{bottom:707.978880px;}
.y14a{bottom:707.993820px;}
.y2df{bottom:708.120000px;}
.y15e{bottom:708.681060px;}
.yeb{bottom:708.696000px;}
.y119{bottom:709.562520px;}
.y294{bottom:709.577460px;}
.y41{bottom:709.648560px;}
.y32f{bottom:711.900000px;}
.y267{bottom:712.440540px;}
.y76{bottom:713.925000px;}
.y18b{bottom:714.943620px;}
.y35f{bottom:716.400000px;}
.y1bd{bottom:718.740000px;}
.y353{bottom:720.900000px;}
.y385{bottom:721.800000px;}
.y212{bottom:724.320000px;}
.yb0{bottom:725.264460px;}
.y149{bottom:725.279400px;}
.y2de{bottom:725.400000px;}
.y15d{bottom:725.966640px;}
.yea{bottom:725.981580px;}
.y7{bottom:726.298500px;}
.y118{bottom:726.668820px;}
.y293{bottom:726.683760px;}
.y40{bottom:726.754860px;}
.y75{bottom:731.210580px;}
.y18a{bottom:732.229200px;}
.y32e{bottom:733.680000px;}
.y1bc{bottom:736.020000px;}
.y36e{bottom:738.180000px;}
.y266{bottom:738.720000px;}
.y1ea{bottom:738.900000px;}
.y211{bottom:739.800000px;}
.yaf{bottom:742.550040px;}
.y148{bottom:742.564980px;}
.y303{bottom:742.680000px;}
.ye9{bottom:743.267160px;}
.y117{bottom:743.954400px;}
.y292{bottom:743.969340px;}
.y3f{bottom:744.040440px;}
.y2dd{bottom:747.180000px;}
.y74{bottom:748.496160px;}
.y189{bottom:749.335500px;}
.y3{bottom:752.599495px;}
.y210{bottom:755.280000px;}
.y32d{bottom:755.460000px;}
.y384{bottom:757.080000px;}
.yae{bottom:759.835620px;}
.y147{bottom:759.850560px;}
.y302{bottom:759.960000px;}
.ye8{bottom:760.552740px;}
.y116{bottom:761.239980px;}
.y291{bottom:761.254920px;}
.y3e{bottom:761.326020px;}
.y2dc{bottom:764.460000px;}
.y73{bottom:765.781740px;}
.y188{bottom:766.621080px;}
.y1bb{bottom:770.580000px;}
.y20e{bottom:770.760000px;}
.y32c{bottom:772.560000px;}
.y1e9{bottom:772.920000px;}
.y265{bottom:773.631000px;}
.yad{bottom:776.941920px;}
.y146{bottom:776.956860px;}
.y352{bottom:777.060000px;}
.ye7{bottom:777.838320px;}
.y115{bottom:778.525560px;}
.y290{bottom:778.540500px;}
.y3d{bottom:778.611600px;}
.y2db{bottom:781.560000px;}
.y72{bottom:782.888040px;}
.y20d{bottom:786.420000px;}
.y1ba{bottom:787.860000px;}
.y264{bottom:789.115500px;}
.y35e{bottom:789.840000px;}
.y383{bottom:792.360000px;}
.yac{bottom:794.227500px;}
.y145{bottom:794.242440px;}
.y32b{bottom:794.340000px;}
.ye6{bottom:794.944620px;}
.y114{bottom:795.811140px;}
.y28f{bottom:795.826080px;}
.y3c{bottom:795.897180px;}
.y301{bottom:798.840000px;}
.y71{bottom:800.173620px;}
.y187{bottom:801.894420px;}
.y20b{bottom:802.980000px;}
.y2da{bottom:803.340000px;}
.y1b9{bottom:804.960000px;}
.y1e8{bottom:807.480000px;}
.yab{bottom:811.513080px;}
.y32a{bottom:811.620000px;}
.ye5{bottom:812.230200px;}
.y113{bottom:812.917440px;}
.y28e{bottom:812.932380px;}
.y3b{bottom:813.003480px;}
.y263{bottom:813.780000px;}
.y351{bottom:816.120000px;}
.y70{bottom:817.459200px;}
.y186{bottom:819.180000px;}
.y144{bottom:820.521900px;}
.y2d9{bottom:820.620000px;}
.y1b7{bottom:822.240000px;}
.y382{bottom:827.640000px;}
.yaa{bottom:828.798660px;}
.y35d{bottom:828.900000px;}
.ye4{bottom:829.515780px;}
.y112{bottom:830.203020px;}
.y28d{bottom:830.217960px;}
.y3a{bottom:830.289060px;}
.y20a{bottom:833.034420px;}
.y329{bottom:833.400000px;}
.y185{bottom:833.940000px;}
.y6f{bottom:834.744780px;}
.y262{bottom:837.540000px;}
.y2d8{bottom:837.900000px;}
.y1b6{bottom:839.520000px;}
.y1e7{bottom:841.860000px;}
.ya9{bottom:846.084240px;}
.ye3{bottom:846.801360px;}
.y111{bottom:847.488600px;}
.y28c{bottom:847.503540px;}
.y39{bottom:847.574640px;}
.y209{bottom:850.320000px;}
.y328{bottom:850.680000px;}
.y6e{bottom:852.030360px;}
.y350{bottom:855.180000px;}
.y1b5{bottom:856.800000px;}
.y2d7{bottom:859.680000px;}
.y261{bottom:860.040000px;}
.y381{bottom:862.920000px;}
.ya8{bottom:863.369820px;}
.ye2{bottom:864.086940px;}
.y110{bottom:864.774180px;}
.y28b{bottom:864.789120px;}
.y38{bottom:864.860220px;}
.y208{bottom:866.520000px;}
.y327{bottom:867.960000px;}
.y184{bottom:868.320000px;}
.y6d{bottom:869.315940px;}
.y36d{bottom:872.460000px;}
.y143{bottom:873.080820px;}
.y1b4{bottom:874.080000px;}
.y1e6{bottom:876.420000px;}
.y2d6{bottom:876.960000px;}
.y2{bottom:879.369000px;}
.ya7{bottom:880.476120px;}
.ye1{bottom:881.372520px;}
.y10f{bottom:882.059760px;}
.y28a{bottom:882.074700px;}
.y37{bottom:882.145800px;}
.y260{bottom:882.540000px;}
.y207{bottom:883.800000px;}
.y6c{bottom:886.422240px;}
.y326{bottom:889.560000px;}
.y1b3{bottom:891.360000px;}
.y300{bottom:894.060000px;}
.ya6{bottom:897.761700px;}
.y380{bottom:898.020000px;}
.ye0{bottom:898.478820px;}
.y2d5{bottom:898.560000px;}
.y10e{bottom:899.345340px;}
.y142{bottom:899.360280px;}
.y36{bottom:899.431380px;}
.y206{bottom:901.080000px;}
.y182{bottom:902.880000px;}
.y6b{bottom:903.707820px;}
.y25e{bottom:905.760000px;}
.y325{bottom:906.840000px;}
.y1b2{bottom:908.460000px;}
.y1e5{bottom:910.980000px;}
.y34f{bottom:911.340000px;}
.ya5{bottom:915.047280px;}
.ydf{bottom:915.764400px;}
.y2d4{bottom:915.840000px;}
.y10d{bottom:916.451640px;}
.y141{bottom:916.466580px;}
.y35{bottom:916.537680px;}
.y205{bottom:918.360000px;}
.y6a{bottom:920.993400px;}
.y1b1{bottom:925.740000px;}
.y324{bottom:928.620000px;}
.y25d{bottom:928.980000px;}
.yde{bottom:933.049980px;}
.y2d3{bottom:933.120000px;}
.y37f{bottom:933.300000px;}
.y10c{bottom:933.737220px;}
.y140{bottom:933.752160px;}
.y34{bottom:933.823260px;}
.y204{bottom:935.460000px;}
.y180{bottom:938.160000px;}
.y69{bottom:938.278980px;}
.y1b0{bottom:944.100000px;}
.y1e4{bottom:945.360000px;}
.y323{bottom:945.900000px;}
.ya4{bottom:950.320620px;}
.ydd{bottom:950.335560px;}
.y2ff{bottom:950.400000px;}
.y10b{bottom:951.022800px;}
.y13f{bottom:951.037740px;}
.y33{bottom:951.108840px;}
.y37e{bottom:951.300000px;}
.y25c{bottom:951.480000px;}
.y203{bottom:953.820000px;}
.y2d2{bottom:954.900000px;}
.y68{bottom:955.564560px;}
.y1{bottom:966.726000px;}
.ydc{bottom:967.621140px;}
.y2fe{bottom:967.680000px;}
.y10a{bottom:968.308380px;}
.y13e{bottom:968.323320px;}
.y32{bottom:968.394420px;}
.y37d{bottom:969.300000px;}
.y2d1{bottom:972.180000px;}
.y67{bottom:972.850140px;}
.y25b{bottom:973.980000px;}
.y1e3{bottom:979.920000px;}
.ydb{bottom:984.906720px;}
.y34e{bottom:984.960000px;}
.ya3{bottom:985.593960px;}
.y13d{bottom:985.608900px;}
.y31{bottom:985.680000px;}
.y37c{bottom:987.300000px;}
.y2d0{bottom:989.460000px;}
.y66{bottom:989.956440px;}
.y1af{bottom:993.004200px;}
.y25a{bottom:996.480000px;}
.yda{bottom:1002.013020px;}
.y202{bottom:1002.700260px;}
.ya2{bottom:1002.879540px;}
.y13c{bottom:1002.894480px;}
.y30{bottom:1004.946480px;}
.y375{bottom:1005.300000px;}
.y2fd{bottom:1006.560000px;}
.y65{bottom:1009.751940px;}
.y1ae{bottom:1010.289780px;}
.y2cf{bottom:1011.060000px;}
.y1e1{bottom:1013.940000px;}
.y259{bottom:1018.980000px;}
.yd9{bottom:1019.298600px;}
.ya1{bottom:1019.985840px;}
.y13b{bottom:1020.000780px;}
.y322{bottom:1023.840000px;}
.y64{bottom:1027.575360px;}
.y2ce{bottom:1028.340000px;}
.y2f{bottom:1032.477480px;}
.yd8{bottom:1036.584180px;}
.ya0{bottom:1037.271420px;}
.y13a{bottom:1037.286360px;}
.y378{bottom:1041.120000px;}
.y258{bottom:1041.480000px;}
.y37b{bottom:1043.640000px;}
.y63{bottom:1044.860940px;}
.y2cd{bottom:1045.620000px;}
.y1e0{bottom:1047.960000px;}
.y2fc{bottom:1050.120000px;}
.yd7{bottom:1053.869760px;}
.y37a{bottom:1054.440000px;}
.y9f{bottom:1054.557000px;}
.y139{bottom:1054.571940px;}
.y377{bottom:1058.400000px;}
.y2e{bottom:1060.200000px;}
.y379{bottom:1061.100000px;}
.y62{bottom:1062.146520px;}
.y321{bottom:1062.900000px;}
.y257{bottom:1063.980000px;}
.y2cc{bottom:1067.400000px;}
.yd6{bottom:1071.155340px;}
.y9e{bottom:1071.842580px;}
.y138{bottom:1071.857520px;}
.y61{bottom:1079.432100px;}
.y36c{bottom:1080.180000px;}
.y1df{bottom:1082.520000px;}
.y2cb{bottom:1084.680000px;}
.y2d{bottom:1085.748120px;}
.y255{bottom:1086.480000px;}
.y1ad{bottom:1088.246700px;}
.yd5{bottom:1088.440920px;}
.y9d{bottom:1089.128160px;}
.y137{bottom:1089.143100px;}
.y374{bottom:1091.880000px;}
.y60{bottom:1096.538400px;}
.y320{bottom:1101.960000px;}
.y2c{bottom:1102.854420px;}
.y9c{bottom:1106.413740px;}
.y136{bottom:1106.428680px;}
.y2ca{bottom:1106.460000px;}
.y252{bottom:1110.240000px;}
.y1de{bottom:1118.160000px;}
.y36b{bottom:1119.060000px;}
.y2b{bottom:1120.140000px;}
.y254{bottom:1121.400000px;}
.y5f{bottom:1122.817860px;}
.y9b{bottom:1123.520040px;}
.yd4{bottom:1123.534980px;}
.y2c9{bottom:1123.560000px;}
.y2a{bottom:1138.140000px;}
.y9a{bottom:1140.805620px;}
.yd3{bottom:1140.820560px;}
.y2c8{bottom:1140.840000px;}
.y99{bottom:1161.168840px;}
.y25{bottom:1178.454420px;}
.y24{bottom:1195.740000px;}
.h1f{height:15.478500px;}
.h1a{height:15.480000px;}
.h1e{height:15.660000px;}
.h12{height:17.098500px;}
.h13{height:17.100000px;}
.hf{height:17.280000px;}
.h22{height:22.498500px;}
.h21{height:22.500000px;}
.h7{height:32.130000px;}
.h15{height:34.020000px;}
.h17{height:34.200000px;}
.h16{height:34.201500px;}
.h14{height:34.378500px;}
.h11{height:34.380000px;}
.h10{height:34.560000px;}
.h1b{height:36.571289px;}
.h1c{height:36.597656px;}
.h19{height:37.494141px;}
.h1d{height:37.520508px;}
.hc{height:40.472227px;}
.hd{height:40.501406px;}
.he{height:41.493516px;}
.h9{height:41.522695px;}
.h20{height:42.300000px;}
.h23{height:43.768764px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h24{height:49.868086px;}
.ha{height:49.992188px;}
.h18{height:51.658500px;}
.h2{height:55.080000px;}
.h5{height:64.260000px;}
.hb{height:64.899844px;}
.h26{height:84.240000px;}
.h25{height:84.420000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2b{width:39.060000px;}
.w2a{width:39.061500px;}
.w32{width:39.778500px;}
.w33{width:39.780000px;}
.w2c{width:43.920000px;}
.w29{width:44.280000px;}
.w35{width:44.640000px;}
.w34{width:45.000000px;}
.w31{width:45.001500px;}
.w2d{width:58.320000px;}
.w2f{width:59.040000px;}
.w11{width:63.538500px;}
.w10{width:63.720000px;}
.wf{width:73.260000px;}
.w14{width:74.160000px;}
.w24{width:74.338500px;}
.wa{width:76.320000px;}
.w9{width:76.321500px;}
.w8{width:76.498500px;}
.wb{width:76.500000px;}
.wc{width:77.940000px;}
.w23{width:84.240000px;}
.w15{width:87.840000px;}
.w1c{width:91.980000px;}
.w22{width:93.780000px;}
.w1f{width:98.640000px;}
.w1a{width:99.180000px;}
.w19{width:99.360000px;}
.w1e{width:99.540000px;}
.w17{width:101.160000px;}
.w13{width:101.520000px;}
.w1d{width:105.481500px;}
.wd{width:105.658500px;}
.w16{width:108.000000px;}
.w20{width:108.898500px;}
.w25{width:135.000000px;}
.w4{width:138.240000px;}
.w21{width:140.220000px;}
.w18{width:142.378500px;}
.w1b{width:143.820000px;}
.w6{width:159.480000px;}
.w7{width:160.020000px;}
.w12{width:160.920000px;}
.we{width:318.960000px;}
.w5{width:329.400000px;}
.w2e{width:365.580000px;}
.w30{width:366.300000px;}
.w28{width:424.621500px;}
.w26{width:637.018500px;}
.w2{width:637.794021px;}
.w27{width:639.540000px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x36{left:22.500000px;}
.x39{left:28.800000px;}
.x3d{left:31.320000px;}
.x37{left:40.320000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x12{left:126.720000px;}
.x6{left:134.826300px;}
.xb{left:161.818560px;}
.xc{left:164.522700px;}
.xd{left:171.180000px;}
.x40{left:186.120000px;}
.x4{left:203.484001px;}
.x19{left:232.920000px;}
.x29{left:236.160000px;}
.x1d{left:241.020000px;}
.x34{left:258.840000px;}
.x35{left:262.620000px;}
.x22{left:269.640000px;}
.x27{left:271.080000px;}
.x10{left:273.060000px;}
.x2f{left:285.840000px;}
.x13{left:287.100000px;}
.x1e{left:288.180000px;}
.x30{left:289.620000px;}
.x9{left:325.800000px;}
.x31{left:351.540000px;}
.x32{left:355.320000px;}
.x33{left:359.100000px;}
.x14{left:363.600000px;}
.x23{left:369.000000px;}
.x2a{left:376.380000px;}
.x2b{left:384.480000px;}
.x1f{left:389.700000px;}
.x15{left:439.920000px;}
.x5{left:446.400000px;}
.x3{left:454.959000px;}
.x20{left:463.860000px;}
.x24{left:468.180000px;}
.x2c{left:470.160000px;}
.x16{left:516.240000px;}
.x1a{left:551.880000px;}
.x2d{left:554.400000px;}
.x25{left:567.540000px;}
.x17{left:592.740000px;}
.x38{left:597.420000px;}
.x11{left:602.640000px;}
.x1b{left:625.140000px;}
.x3a{left:626.220000px;}
.x2e{left:628.740000px;}
.x3b{left:637.200000px;}
.x21{left:659.700000px;}
.x26{left:666.900000px;}
.x18{left:669.060000px;}
.x3c{left:676.980000px;}
.x1c{left:688.860000px;}
.x3e{left:708.300000px;}
.x3f{left:721.980000px;}
.x8{left:735.668280px;}
.xa{left:743.223600px;}
.x28{left:750.240000px;}
.x7{left:758.167920px;}
.xe{left:769.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls33{letter-spacing:-1.168640pt;}
.ls5d{letter-spacing:-0.956160pt;}
.ls17{letter-spacing:-0.849920pt;}
.ls38{letter-spacing:-0.743680pt;}
.ls16{letter-spacing:-0.690560pt;}
.ls25{letter-spacing:-0.584320pt;}
.lsd{letter-spacing:-0.531200pt;}
.ls32{letter-spacing:-0.478080pt;}
.lsc{letter-spacing:-0.424960pt;}
.ls6e{letter-spacing:-0.371840pt;}
.ls5a{letter-spacing:-0.336000pt;}
.lse{letter-spacing:-0.318720pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.212480pt;}
.ls4b{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.170240pt;}
.ls26{letter-spacing:-0.106240pt;}
.ls50{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053120pt;}
.ls74{letter-spacing:0.084992pt;}
.ls57{letter-spacing:0.096000pt;}
.ls73{letter-spacing:0.100928pt;}
.ls3{letter-spacing:0.106240pt;}
.ls68{letter-spacing:0.111552pt;}
.ls67{letter-spacing:0.116864pt;}
.ls71{letter-spacing:0.128512pt;}
.ls6a{letter-spacing:0.136320pt;}
.ls6b{letter-spacing:0.138112pt;}
.ls7a{letter-spacing:0.143424pt;}
.ls4c{letter-spacing:0.144000pt;}
.ls77{letter-spacing:0.146560pt;}
.ls78{letter-spacing:0.148736pt;}
.ls76{letter-spacing:0.149120pt;}
.ls66{letter-spacing:0.154048pt;}
.ls6{letter-spacing:0.159360pt;}
.ls41{letter-spacing:0.160000pt;}
.ls75{letter-spacing:0.164672pt;}
.ls6c{letter-spacing:0.169984pt;}
.ls64{letter-spacing:0.170240pt;}
.ls70{letter-spacing:0.175296pt;}
.ls61{letter-spacing:0.179200pt;}
.ls54{letter-spacing:0.183680pt;}
.ls65{letter-spacing:0.186240pt;}
.ls62{letter-spacing:0.191232pt;}
.ls56{letter-spacing:0.192000pt;}
.ls6f{letter-spacing:0.196544pt;}
.ls10{letter-spacing:0.201856pt;}
.ls3a{letter-spacing:0.207168pt;}
.ls7{letter-spacing:0.212480pt;}
.ls72{letter-spacing:0.217792pt;}
.ls63{letter-spacing:0.223104pt;}
.ls60{letter-spacing:0.228416pt;}
.ls53{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.233728pt;}
.ls43{letter-spacing:0.239040pt;}
.ls15{letter-spacing:0.244352pt;}
.ls1f{letter-spacing:0.249664pt;}
.ls1e{letter-spacing:0.254976pt;}
.ls2b{letter-spacing:0.260288pt;}
.ls4{letter-spacing:0.265600pt;}
.ls1d{letter-spacing:0.270912pt;}
.ls55{letter-spacing:0.272640pt;}
.ls1a{letter-spacing:0.276224pt;}
.ls69{letter-spacing:0.281536pt;}
.ls2d{letter-spacing:0.286848pt;}
.ls52{letter-spacing:0.297472pt;}
.ls5c{letter-spacing:0.308096pt;}
.ls2{letter-spacing:0.318720pt;}
.ls48{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.324032pt;}
.ls51{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.339968pt;}
.ls6d{letter-spacing:0.345280pt;}
.ls28{letter-spacing:0.355904pt;}
.ls2c{letter-spacing:0.366528pt;}
.ls3b{letter-spacing:0.393088pt;}
.ls79{letter-spacing:0.414336pt;}
.ls11{letter-spacing:0.424960pt;}
.ls37{letter-spacing:0.478080pt;}
.ls5e{letter-spacing:0.531200pt;}
.ls4e{letter-spacing:0.536512pt;}
.ls13{letter-spacing:0.796800pt;}
.ls3f{letter-spacing:0.802112pt;}
.ls14{letter-spacing:1.434240pt;}
.ls49{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:2.071680pt;}
.ls2e{letter-spacing:2.167296pt;}
.ls22{letter-spacing:2.709120pt;}
.ls5f{letter-spacing:3.346560pt;}
.ls23{letter-spacing:3.984000pt;}
.ls42{letter-spacing:4.106176pt;}
.ls18{letter-spacing:4.621440pt;}
.ls24{letter-spacing:5.258880pt;}
.ls4d{letter-spacing:5.296064pt;}
.ls3c{letter-spacing:5.896320pt;}
.ls58{letter-spacing:6.533760pt;}
.ls21{letter-spacing:6.576256pt;}
.ls20{letter-spacing:6.586880pt;}
.ls4f{letter-spacing:7.861760pt;}
.ls44{letter-spacing:7.978624pt;}
.ls30{letter-spacing:8.382336pt;}
.ls29{letter-spacing:8.403584pt;}
.ls31{letter-spacing:8.419520pt;}
.ls4a{letter-spacing:8.480000pt;}
.ls35{letter-spacing:9.136640pt;}
.ls2a{letter-spacing:10.390272pt;}
.ls3e{letter-spacing:10.411520pt;}
.ls59{letter-spacing:11.038336pt;}
.lsf{letter-spacing:12.323840pt;}
.ls36{letter-spacing:12.961280pt;}
.ls45{letter-spacing:13.598720pt;}
.ls1b{letter-spacing:14.236160pt;}
.ls5b{letter-spacing:14.246784pt;}
.ls1c{letter-spacing:14.873600pt;}
.ls27{letter-spacing:15.511040pt;}
.ls47{letter-spacing:16.148480pt;}
.ls39{letter-spacing:16.950592pt;}
.ls40{letter-spacing:19.383488pt;}
.ls3d{letter-spacing:19.973120pt;}
.ls46{letter-spacing:21.938560pt;}
.ls19{letter-spacing:32.775040pt;}
.ws1{word-spacing:-21.280000pt;}
.wsa4{word-spacing:-13.917440pt;}
.ws5{word-spacing:-13.598720pt;}
.ws45{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.492480pt;}
.ws6{word-spacing:-13.386240pt;}
.ws44{word-spacing:-13.333120pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.226880pt;}
.ws71{word-spacing:-13.173760pt;}
.ws3{word-spacing:-13.067520pt;}
.ws98{word-spacing:-12.961280pt;}
.wsa8{word-spacing:-12.855040pt;}
.ws43{word-spacing:-12.748800pt;}
.ws15{word-spacing:-12.589440pt;}
.ws89{word-spacing:-12.336000pt;}
.ws8a{word-spacing:-12.144000pt;}
.ws8b{word-spacing:-12.000000pt;}
.ws88{word-spacing:-11.904000pt;}
.ws99{word-spacing:-11.664000pt;}
.ws8f{word-spacing:-0.816000pt;}
.wsc{word-spacing:-0.796800pt;}
.wsa6{word-spacing:-0.690560pt;}
.wsa9{word-spacing:-0.637440pt;}
.wsf{word-spacing:-0.584320pt;}
.wsaa{word-spacing:-0.531200pt;}
.wsa5{word-spacing:-0.424960pt;}
.ws12{word-spacing:-0.318720pt;}
.wsab{word-spacing:-0.265600pt;}
.ws75{word-spacing:-0.212480pt;}
.ws90{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.170240pt;}
.wsb{word-spacing:-0.159360pt;}
.ws66{word-spacing:-0.106240pt;}
.ws9b{word-spacing:-0.096000pt;}
.ws11{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:0.053120pt;}
.ws92{word-spacing:0.096000pt;}
.ws7d{word-spacing:0.106240pt;}
.ws85{word-spacing:0.144000pt;}
.wsa{word-spacing:0.170240pt;}
.ws87{word-spacing:0.192000pt;}
.wse{word-spacing:0.212480pt;}
.ws8{word-spacing:0.256000pt;}
.ws56{word-spacing:0.265600pt;}
.ws14{word-spacing:0.318720pt;}
.ws86{word-spacing:0.336000pt;}
.ws16{word-spacing:0.371840pt;}
.ws10{word-spacing:0.424960pt;}
.ws32{word-spacing:0.478080pt;}
.ws9a{word-spacing:0.480000pt;}
.ws13{word-spacing:0.531200pt;}
.ws49{word-spacing:0.584320pt;}
.wsa7{word-spacing:0.637440pt;}
.ws3a{word-spacing:0.690560pt;}
.ws70{word-spacing:0.743680pt;}
.ws35{word-spacing:0.849920pt;}
.wsad{word-spacing:0.903040pt;}
.wsa1{word-spacing:0.956160pt;}
.wsac{word-spacing:1.009280pt;}
.ws20{word-spacing:1.115520pt;}
.ws6c{word-spacing:1.168640pt;}
.ws94{word-spacing:1.221760pt;}
.ws40{word-spacing:1.328000pt;}
.ws50{word-spacing:1.487360pt;}
.ws41{word-spacing:1.752960pt;}
.ws1b{word-spacing:1.965440pt;}
.ws28{word-spacing:2.124800pt;}
.ws65{word-spacing:2.284160pt;}
.ws2e{word-spacing:2.390400pt;}
.ws1c{word-spacing:2.602880pt;}
.ws62{word-spacing:2.762240pt;}
.ws25{word-spacing:3.027840pt;}
.ws34{word-spacing:3.240320pt;}
.ws4b{word-spacing:3.399680pt;}
.ws33{word-spacing:3.559040pt;}
.ws26{word-spacing:3.665280pt;}
.ws73{word-spacing:3.771520pt;}
.ws27{word-spacing:3.877760pt;}
.ws5a{word-spacing:4.037120pt;}
.ws42{word-spacing:4.196480pt;}
.ws24{word-spacing:4.302720pt;}
.ws6d{word-spacing:4.408960pt;}
.ws2d{word-spacing:4.515200pt;}
.ws53{word-spacing:4.568320pt;}
.ws31{word-spacing:4.674560pt;}
.ws37{word-spacing:4.940160pt;}
.ws4a{word-spacing:5.152640pt;}
.ws3f{word-spacing:5.205760pt;}
.ws3e{word-spacing:5.312000pt;}
.ws4c{word-spacing:5.577600pt;}
.wsaf{word-spacing:5.683840pt;}
.ws36{word-spacing:5.790080pt;}
.ws78{word-spacing:5.949440pt;}
.wsa2{word-spacing:6.108800pt;}
.ws9c{word-spacing:6.240000pt;}
.ws29{word-spacing:6.268160pt;}
.ws30{word-spacing:6.480640pt;}
.ws2f{word-spacing:6.640000pt;}
.ws91{word-spacing:6.864000pt;}
.ws23{word-spacing:6.905600pt;}
.ws7f{word-spacing:7.011840pt;}
.ws48{word-spacing:7.118080pt;}
.ws9d{word-spacing:7.200000pt;}
.ws46{word-spacing:7.277440pt;}
.ws52{word-spacing:7.543040pt;}
.ws51{word-spacing:7.755520pt;}
.ws59{word-spacing:8.180480pt;}
.ws54{word-spacing:8.392960pt;}
.ws55{word-spacing:8.552320pt;}
.wsae{word-spacing:8.605440pt;}
.ws3c{word-spacing:8.817920pt;}
.ws3d{word-spacing:9.030400pt;}
.ws3b{word-spacing:9.189760pt;}
.ws2a{word-spacing:9.455360pt;}
.ws39{word-spacing:9.667840pt;}
.ws38{word-spacing:9.827200pt;}
.ws5b{word-spacing:10.092800pt;}
.ws74{word-spacing:10.305280pt;}
.ws68{word-spacing:10.464640pt;}
.ws2b{word-spacing:10.730240pt;}
.wsa0{word-spacing:10.836480pt;}
.ws69{word-spacing:10.889600pt;}
.ws1a{word-spacing:10.942720pt;}
.ws2c{word-spacing:10.995840pt;}
.ws67{word-spacing:11.102080pt;}
.ws57{word-spacing:11.367680pt;}
.ws72{word-spacing:11.580160pt;}
.ws58{word-spacing:11.739520pt;}
.ws1d{word-spacing:12.005120pt;}
.ws63{word-spacing:12.217600pt;}
.ws1e{word-spacing:12.376960pt;}
.ws1f{word-spacing:12.642560pt;}
.ws93{word-spacing:12.855040pt;}
.ws95{word-spacing:13.014400pt;}
.ws19{word-spacing:13.280000pt;}
.ws7a{word-spacing:13.386240pt;}
.ws5c{word-spacing:13.492480pt;}
.ws5d{word-spacing:13.651840pt;}
.ws21{word-spacing:13.917440pt;}
.ws22{word-spacing:14.129920pt;}
.ws6f{word-spacing:14.289280pt;}
.ws64{word-spacing:14.554880pt;}
.ws47{word-spacing:14.767360pt;}
.ws77{word-spacing:15.192320pt;}
.ws60{word-spacing:15.404800pt;}
.wsa3{word-spacing:15.457920pt;}
.ws61{word-spacing:15.564160pt;}
.ws18{word-spacing:15.829760pt;}
.ws9f{word-spacing:16.042240pt;}
.ws17{word-spacing:16.201600pt;}
.ws6b{word-spacing:16.467200pt;}
.ws6a{word-spacing:16.839040pt;}
.ws76{word-spacing:17.104640pt;}
.ws79{word-spacing:17.317120pt;}
.ws97{word-spacing:17.742080pt;}
.ws96{word-spacing:17.954560pt;}
.ws5f{word-spacing:19.070080pt;}
.ws5e{word-spacing:19.282560pt;}
.ws9e{word-spacing:19.441920pt;}
.ws4f{word-spacing:19.707520pt;}
.ws4d{word-spacing:19.920000pt;}
.ws4e{word-spacing:20.079360pt;}
.ws7b{word-spacing:21.619840pt;}
.ws7c{word-spacing:21.832320pt;}
.ws81{word-spacing:22.257280pt;}
.ws6e{word-spacing:22.894720pt;}
.ws80{word-spacing:24.807040pt;}
.ws8c{word-spacing:25.444480pt;}
.ws8d{word-spacing:26.081920pt;}
.ws83{word-spacing:35.059200pt;}
.ws8e{word-spacing:43.133440pt;}
.ws82{word-spacing:52.110720pt;}
.ws7e{word-spacing:76.227200pt;}
.ws84{word-spacing:79.201920pt;}
._2{margin-left:-2.329344pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.024000pt;}
._6{width:2.329344pt;}
._8{width:3.379200pt;}
._5{width:4.565120pt;}
._3{width:6.293760pt;}
._4{width:7.491072pt;}
._7{width:9.667840pt;}
._9{width:11.990400pt;}
._d{width:14.227840pt;}
._c{width:19.344640pt;}
._a{width:21.979264pt;}
._b{width:26.142720pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:55.993396pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y20c{bottom:2.560000pt;}
.y20f{bottom:2.720000pt;}
.y1b8{bottom:2.879867pt;}
.y181{bottom:2.880000pt;}
.y25f{bottom:7.520000pt;}
.y256{bottom:7.680000pt;}
.y1e2{bottom:17.760000pt;}
.y1ee{bottom:17.920000pt;}
.y1c4{bottom:18.080000pt;}
.y183{bottom:18.240000pt;}
.y253{bottom:25.280000pt;}
.y1fa{bottom:33.440000pt;}
.y6{bottom:44.973338pt;}
.y39c{bottom:47.040000pt;}
.y29{bottom:50.213600pt;}
.y5e{bottom:50.226880pt;}
.y388{bottom:62.400000pt;}
.y376{bottom:62.560000pt;}
.y28{bottom:65.419200pt;}
.y5d{bottom:65.432480pt;}
.y5{bottom:67.373337pt;}
.y27{bottom:80.784160pt;}
.y5c{bottom:80.797440pt;}
.y4{bottom:89.773337pt;}
.y26{bottom:96.149120pt;}
.y5b{bottom:96.162400pt;}
.y2c7{bottom:103.520000pt;}
.y135{bottom:106.613760pt;}
.yd2{bottom:107.237920pt;}
.y233{bottom:107.433760pt;}
.y17f{bottom:107.862080pt;}
.y373{bottom:109.435520pt;}
.y289{bottom:111.828000pt;}
.y98{bottom:113.147520pt;}
.y1dd{bottom:117.674400pt;}
.y201{bottom:117.739520pt;}
.y15c{bottom:117.744800pt;}
.y1ac{bottom:118.422080pt;}
.y2c6{bottom:118.880000pt;}
.y134{bottom:121.978720pt;}
.y109{bottom:121.992000pt;}
.yd1{bottom:122.602880pt;}
.y232{bottom:122.798720pt;}
.y17e{bottom:123.227040pt;}
.y2b3{bottom:123.240320pt;}
.y23{bottom:123.790666pt;}
.y34d{bottom:124.800000pt;}
.y3a4{bottom:126.560000pt;}
.y288{bottom:127.192960pt;}
.y97{bottom:128.512480pt;}
.y372{bottom:128.797760pt;}
.y36a{bottom:128.800000pt;}
.y31f{bottom:132.800000pt;}
.y1dc{bottom:133.039360pt;}
.y200{bottom:133.104480pt;}
.y15b{bottom:133.109760pt;}
.y1ab{bottom:133.787040pt;}
.y2c5{bottom:134.240000pt;}
.y251{bottom:135.534720pt;}
.y133{bottom:137.184320pt;}
.y108{bottom:137.197600pt;}
.yd0{bottom:137.967840pt;}
.y231{bottom:138.163680pt;}
.y17d{bottom:138.592000pt;}
.y2b2{bottom:138.605280pt;}
.y34c{bottom:140.160000pt;}
.y287{bottom:142.557920pt;}
.y96{bottom:143.877440pt;}
.y369{bottom:144.160000pt;}
.y31e{bottom:148.160000pt;}
.y1db{bottom:148.404320pt;}
.y1ff{bottom:148.469440pt;}
.y15a{bottom:148.474720pt;}
.y1aa{bottom:149.152000pt;}
.y250{bottom:150.899680pt;}
.y2fb{bottom:152.160000pt;}
.y132{bottom:152.549280pt;}
.y107{bottom:152.562560pt;}
.ycf{bottom:153.173440pt;}
.y230{bottom:153.369280pt;}
.y2c4{bottom:153.440000pt;}
.y17c{bottom:153.956960pt;}
.y2b1{bottom:153.970240pt;}
.y3a3{bottom:157.760000pt;}
.y286{bottom:157.922880pt;}
.y95{bottom:159.242400pt;}
.y34b{bottom:159.520000pt;}
.y31d{bottom:163.520000pt;}
.y1fe{bottom:163.675040pt;}
.y1da{bottom:163.769280pt;}
.y159{bottom:163.839680pt;}
.y1a9{bottom:164.516960pt;}
.y24f{bottom:166.105280pt;}
.y2fa{bottom:167.520000pt;}
.y131{bottom:167.914240pt;}
.y106{bottom:167.927520pt;}
.yce{bottom:168.538400pt;}
.y22f{bottom:168.734240pt;}
.y2c3{bottom:168.800000pt;}
.y17b{bottom:169.162560pt;}
.y2b0{bottom:169.175840pt;}
.y285{bottom:173.128480pt;}
.y94{bottom:174.448000pt;}
.y34a{bottom:174.880000pt;}
.y1a{bottom:175.052000pt;}
.y35c{bottom:178.880000pt;}
.y1fd{bottom:179.040000pt;}
.y1d9{bottom:179.134240pt;}
.y1a8{bottom:179.881920pt;}
.y24e{bottom:181.470240pt;}
.y31c{bottom:182.880000pt;}
.y130{bottom:183.279200pt;}
.y105{bottom:183.292480pt;}
.ycd{bottom:183.903360pt;}
.y22e{bottom:184.099200pt;}
.y2c2{bottom:184.160000pt;}
.y17a{bottom:184.527520pt;}
.y2af{bottom:184.540800pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y2f9{bottom:186.880000pt;}
.y284{bottom:188.493440pt;}
.y3a2{bottom:189.120000pt;}
.y93{bottom:189.812960pt;}
.y1fc{bottom:194.080000pt;}
.y349{bottom:194.240000pt;}
.y1d8{bottom:194.499200pt;}
.y158{bottom:195.034400pt;}
.y1a7{bottom:195.087520pt;}
.y24d{bottom:196.835200pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y31b{bottom:198.240000pt;}
.y12f{bottom:198.644160pt;}
.y104{bottom:198.657440pt;}
.ycc{bottom:199.268320pt;}
.y22d{bottom:199.464160pt;}
.y179{bottom:199.892480pt;}
.y2ae{bottom:199.905760pt;}
.y2f8{bottom:202.240000pt;}
.y283{bottom:203.858400pt;}
.y92{bottom:205.177920pt;}
.y2c1{bottom:207.262880pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y348{bottom:209.440000pt;}
.y1d7{bottom:209.704800pt;}
.y1a6{bottom:210.452480pt;}
.y24c{bottom:212.200160pt;}
.y31a{bottom:213.440000pt;}
.y12e{bottom:214.009120pt;}
.ycb{bottom:214.633280pt;}
.y22c{bottom:214.829120pt;}
.y178{bottom:215.257440pt;}
.y1f9{bottom:215.360000pt;}
.y371{bottom:217.440000pt;}
.y282{bottom:219.223360pt;}
.y3a1{bottom:220.480000pt;}
.y91{bottom:220.542880pt;}
.y2f7{bottom:221.440000pt;}
.y157{bottom:223.520000pt;}
.y347{bottom:224.800000pt;}
.y1d6{bottom:225.069760pt;}
.y1a5{bottom:225.817440pt;}
.y24b{bottom:227.565120pt;}
.y368{bottom:228.800000pt;}
.y12d{bottom:229.214720pt;}
.yca{bottom:229.998240pt;}
.y103{bottom:230.011520pt;}
.y22b{bottom:230.194080pt;}
.y177{bottom:230.622400pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y2ad{bottom:231.259840pt;}
.y319{bottom:232.800000pt;}
.y1fb{bottom:233.600000pt;}
.y281{bottom:234.588320pt;}
.y90{bottom:235.907840pt;}
.y2f6{bottom:236.800000pt;}
.y2c0{bottom:238.616960pt;}
.y1d5{bottom:240.434720pt;}
.y1a4{bottom:241.182400pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y24a{bottom:242.930080pt;}
.y346{bottom:244.160000pt;}
.y12c{bottom:244.579680pt;}
.yc9{bottom:245.203840pt;}
.y22a{bottom:245.399680pt;}
.y176{bottom:245.987360pt;}
.y2ac{bottom:246.624800pt;}
.y5a{bottom:247.312160pt;}
.y318{bottom:248.160000pt;}
.y280{bottom:249.953280pt;}
.y8f{bottom:251.272800pt;}
.y39b{bottom:251.840000pt;}
.y2f5{bottom:252.160000pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y2bf{bottom:253.981920pt;}
.y1d4{bottom:255.799680pt;}
.y1a3{bottom:256.547360pt;}
.y249{bottom:258.135680pt;}
.y345{bottom:259.520000pt;}
.yc8{bottom:260.568800pt;}
.y229{bottom:260.764640pt;}
.y175{bottom:261.192960pt;}
.y102{bottom:261.206240pt;}
.y1f8{bottom:261.280000pt;}
.y2ab{bottom:261.989760pt;}
.y59{bottom:262.677120pt;}
.y367{bottom:263.520000pt;}
.y27f{bottom:265.158880pt;}
.y8e{bottom:266.478400pt;}
.y317{bottom:267.520000pt;}
.y2be{bottom:269.187520pt;}
.y1d3{bottom:271.164640pt;}
.y2f4{bottom:271.520000pt;}
.y1a2{bottom:271.912320pt;}
.y248{bottom:273.500640pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yc7{bottom:275.933760pt;}
.y228{bottom:276.129600pt;}
.y174{bottom:276.557920pt;}
.y101{bottom:276.571200pt;}
.y2aa{bottom:277.195360pt;}
.y58{bottom:278.042080pt;}
.y344{bottom:278.880000pt;}
.y27e{bottom:280.523840pt;}
.y8d{bottom:281.843360pt;}
.y316{bottom:282.880000pt;}
.y39d{bottom:283.680000pt;}
.y2bd{bottom:284.552480pt;}
.y3a0{bottom:285.920000pt;}
.y1d2{bottom:286.529600pt;}
.y2f3{bottom:286.880000pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1a1{bottom:287.117920pt;}
.y247{bottom:288.865600pt;}
.yc6{bottom:291.298720pt;}
.y227{bottom:291.494560pt;}
.y100{bottom:291.936160pt;}
.y1f7{bottom:292.000000pt;}
.y2a9{bottom:292.560320pt;}
.y57{bottom:293.247680pt;}
.y343{bottom:294.240000pt;}
.y39f{bottom:295.520000pt;}
.y27d{bottom:295.888800pt;}
.y8c{bottom:297.208320pt;}
.y315{bottom:298.240000pt;}
.y12b{bottom:299.293280pt;}
.y2bc{bottom:299.917440pt;}
.y39e{bottom:301.440000pt;}
.y1d1{bottom:301.735200pt;}
.y35b{bottom:302.240000pt;}
.y1a0{bottom:302.482880pt;}
.y246{bottom:304.230560pt;}
.y2f2{bottom:306.240000pt;}
.y226{bottom:306.859520pt;}
.yff{bottom:307.301120pt;}
.y173{bottom:307.912000pt;}
.y2a8{bottom:307.925280pt;}
.y56{bottom:308.612640pt;}
.y11{bottom:309.452000pt;}
.y27c{bottom:311.253760pt;}
.y8b{bottom:312.573280pt;}
.y342{bottom:313.440000pt;}
.y2bb{bottom:315.282400pt;}
.y1d0{bottom:317.100160pt;}
.y314{bottom:317.440000pt;}
.y19f{bottom:317.847840pt;}
.y245{bottom:319.595520pt;}
.y2f1{bottom:321.440000pt;}
.y225{bottom:322.224480pt;}
.yc5{bottom:322.652800pt;}
.yfe{bottom:322.666080pt;}
.y1f6{bottom:322.720000pt;}
.y172{bottom:323.276960pt;}
.y2a7{bottom:323.290240pt;}
.y55{bottom:323.977600pt;}
.y27b{bottom:326.618720pt;}
.y39a{bottom:327.360000pt;}
.y8a{bottom:327.938240pt;}
.y341{bottom:328.800000pt;}
.y2ba{bottom:330.647360pt;}
.y1cf{bottom:332.465120pt;}
.y313{bottom:332.800000pt;}
.y244{bottom:334.960480pt;}
.y19e{bottom:335.443840pt;}
.y35a{bottom:336.800000pt;}
.y224{bottom:337.430080pt;}
.yc4{bottom:338.017760pt;}
.yfd{bottom:338.031040pt;}
.y171{bottom:338.641920pt;}
.y2a6{bottom:338.655200pt;}
.y54{bottom:339.342560pt;}
.y2f0{bottom:340.800000pt;}
.y27a{bottom:341.983680pt;}
.y89{bottom:343.143840pt;}
.y399{bottom:343.360000pt;}
.y10{bottom:343.809333pt;}
.y340{bottom:344.160000pt;}
.y12a{bottom:346.012320pt;}
.y1ce{bottom:347.830080pt;}
.y366{bottom:348.160000pt;}
.y243{bottom:350.166080pt;}
.y19d{bottom:351.286880pt;}
.y312{bottom:352.160000pt;}
.y223{bottom:352.795040pt;}
.yc3{bottom:353.223360pt;}
.yfc{bottom:353.236640pt;}
.y1f5{bottom:353.280000pt;}
.y170{bottom:354.006880pt;}
.y2a5{bottom:354.020160pt;}
.y53{bottom:354.707520pt;}
.y2ef{bottom:356.160000pt;}
.y279{bottom:357.189280pt;}
.y88{bottom:358.508800pt;}
.y398{bottom:359.360000pt;}
.y129{bottom:361.217920pt;}
.yf{bottom:362.706666pt;}
.y1cd{bottom:363.195040pt;}
.y33f{bottom:363.520000pt;}
.y242{bottom:365.531040pt;}
.y311{bottom:367.520000pt;}
.y222{bottom:368.160000pt;}
.yc2{bottom:368.588320pt;}
.yfb{bottom:368.601600pt;}
.y19c{bottom:368.882880pt;}
.y16f{bottom:369.212480pt;}
.y2a4{bottom:369.225760pt;}
.y52{bottom:370.072480pt;}
.y359{bottom:371.520000pt;}
.y278{bottom:372.554240pt;}
.y87{bottom:373.873760pt;}
.y397{bottom:375.360000pt;}
.y2ee{bottom:375.520000pt;}
.y128{bottom:376.582880pt;}
.y1cc{bottom:378.560000pt;}
.y33e{bottom:378.880000pt;}
.y241{bottom:380.896000pt;}
.y365{bottom:382.880000pt;}
.y1f4{bottom:383.520000pt;}
.yc1{bottom:383.953280pt;}
.yfa{bottom:383.966560pt;}
.y16e{bottom:384.577440pt;}
.y2a3{bottom:384.590720pt;}
.y51{bottom:385.278080pt;}
.y19b{bottom:386.797600pt;}
.y310{bottom:386.880000pt;}
.y277{bottom:387.919200pt;}
.y86{bottom:389.238720pt;}
.y2ed{bottom:390.880000pt;}
.y396{bottom:391.360000pt;}
.y127{bottom:391.947840pt;}
.y240{bottom:396.260960pt;}
.y33d{bottom:398.080000pt;}
.y221{bottom:398.560000pt;}
.yc0{bottom:399.318240pt;}
.yf9{bottom:399.331520pt;}
.y16d{bottom:399.942400pt;}
.y2a2{bottom:399.955680pt;}
.y50{bottom:400.643040pt;}
.y30f{bottom:402.080000pt;}
.y276{bottom:403.284160pt;}
.y85{bottom:404.603680pt;}
.y19a{bottom:404.871680pt;}
.y2ec{bottom:406.080000pt;}
.y126{bottom:407.312800pt;}
.y395{bottom:407.360000pt;}
.y1cb{bottom:408.960000pt;}
.y23f{bottom:411.625920pt;}
.y220{bottom:412.480000pt;}
.y156{bottom:413.288800pt;}
.y33c{bottom:413.440000pt;}
.y1f3{bottom:413.920000pt;}
.ybf{bottom:414.683200pt;}
.yf8{bottom:414.696480pt;}
.y16c{bottom:415.307360pt;}
.y2a1{bottom:415.320640pt;}
.y4f{bottom:416.008000pt;}
.y275{bottom:418.649120pt;}
.y84{bottom:419.968640pt;}
.y199{bottom:420.714720pt;}
.y30e{bottom:421.440000pt;}
.y125{bottom:422.677760pt;}
.y394{bottom:423.360000pt;}
.y1ca{bottom:424.320000pt;}
.y2eb{bottom:425.440000pt;}
.y21f{bottom:426.240000pt;}
.y23e{bottom:426.990880pt;}
.y155{bottom:428.653760pt;}
.ybe{bottom:429.888800pt;}
.yf7{bottom:429.902080pt;}
.y16b{bottom:430.672320pt;}
.y2a0{bottom:430.685600pt;}
.ye{bottom:430.990669pt;}
.y4e{bottom:431.372960pt;}
.y33b{bottom:432.800000pt;}
.y274{bottom:433.854720pt;}
.y83{bottom:435.174240pt;}
.y198{bottom:436.079680pt;}
.y30d{bottom:436.800000pt;}
.y124{bottom:437.883360pt;}
.y393{bottom:439.360000pt;}
.y1c9{bottom:439.680000pt;}
.y21e{bottom:440.000000pt;}
.y2ea{bottom:440.800000pt;}
.y23d{bottom:442.196480pt;}
.y154{bottom:444.018720pt;}
.y1f2{bottom:444.160000pt;}
.ybd{bottom:445.253760pt;}
.yf6{bottom:445.267040pt;}
.y16a{bottom:445.877920pt;}
.y29f{bottom:445.891200pt;}
.y4d{bottom:446.737920pt;}
.yd{bottom:446.990669pt;}
.y33a{bottom:448.160000pt;}
.y273{bottom:449.219680pt;}
.y82{bottom:450.539200pt;}
.y197{bottom:451.444640pt;}
.y30c{bottom:452.160000pt;}
.y123{bottom:453.248320pt;}
.y21d{bottom:453.760000pt;}
.y1c8{bottom:454.880000pt;}
.y392{bottom:455.360000pt;}
.y358{bottom:456.160000pt;}
.y23c{bottom:457.561440pt;}
.y2e9{bottom:460.160000pt;}
.ybc{bottom:460.618720pt;}
.yf5{bottom:460.632000pt;}
.y169{bottom:461.242880pt;}
.y29e{bottom:461.256160pt;}
.y4c{bottom:461.943520pt;}
.yc{bottom:462.990669pt;}
.y364{bottom:463.520000pt;}
.y272{bottom:464.584640pt;}
.y81{bottom:465.904160pt;}
.y196{bottom:466.809600pt;}
.y153{bottom:467.378240pt;}
.y339{bottom:467.520000pt;}
.y122{bottom:468.613280pt;}
.y21c{bottom:468.640000pt;}
.y1c7{bottom:470.240000pt;}
.y391{bottom:471.360000pt;}
.y30b{bottom:471.520000pt;}
.y23b{bottom:472.926400pt;}
.y1f1{bottom:474.400000pt;}
.y2e8{bottom:475.520000pt;}
.ybb{bottom:475.983680pt;}
.yf4{bottom:475.996960pt;}
.y168{bottom:476.607840pt;}
.y29d{bottom:476.621120pt;}
.y4b{bottom:477.308480pt;}
.yb{bottom:478.990666pt;}
.y271{bottom:479.949600pt;}
.y80{bottom:481.269120pt;}
.y195{bottom:482.015200pt;}
.y152{bottom:482.743200pt;}
.y338{bottom:482.880000pt;}
.y121{bottom:483.978240pt;}
.y1c6{bottom:485.600000pt;}
.y370{bottom:486.880000pt;}
.y23a{bottom:488.291360pt;}
.y30a{bottom:490.880000pt;}
.yba{bottom:491.348640pt;}
.yf3{bottom:491.361920pt;}
.y167{bottom:491.972800pt;}
.y4a{bottom:492.673440pt;}
.y2e7{bottom:494.880000pt;}
.ya{bottom:494.990666pt;}
.y21b{bottom:495.175200pt;}
.y270{bottom:495.314560pt;}
.y7f{bottom:496.634080pt;}
.y194{bottom:497.380160pt;}
.y337{bottom:498.080000pt;}
.y120{bottom:499.343200pt;}
.y1c5{bottom:500.960000pt;}
.y390{bottom:502.720000pt;}
.y239{bottom:503.656320pt;}
.y1f0{bottom:504.640000pt;}
.y151{bottom:505.943360pt;}
.y309{bottom:506.080000pt;}
.yb9{bottom:506.713600pt;}
.yf2{bottom:506.726880pt;}
.y166{bottom:507.337760pt;}
.y29c{bottom:507.975200pt;}
.y49{bottom:508.038400pt;}
.y2e6{bottom:510.080000pt;}
.y21a{bottom:510.540160pt;}
.y26f{bottom:510.679520pt;}
.y7e{bottom:511.999040pt;}
.y193{bottom:512.745120pt;}
.y363{bottom:513.440000pt;}
.y11f{bottom:514.708160pt;}
.y1c3{bottom:516.320000pt;}
.y336{bottom:517.440000pt;}
.y238{bottom:518.861920pt;}
.y150{bottom:521.308320pt;}
.y357{bottom:521.440000pt;}
.yb8{bottom:521.919200pt;}
.yf1{bottom:521.932480pt;}
.y165{bottom:522.702720pt;}
.y29b{bottom:523.340160pt;}
.y48{bottom:523.403360pt;}
.y308{bottom:525.440000pt;}
.y26e{bottom:525.885120pt;}
.y219{bottom:525.905120pt;}
.y7d{bottom:527.204640pt;}
.y192{bottom:528.110080pt;}
.y2e5{bottom:529.440000pt;}
.y11e{bottom:529.913760pt;}
.y335{bottom:532.800000pt;}
.y38f{bottom:534.080000pt;}
.y237{bottom:534.226880pt;}
.y1ef{bottom:534.880000pt;}
.y36f{bottom:536.800000pt;}
.yb7{bottom:537.284160pt;}
.yf0{bottom:537.297440pt;}
.y164{bottom:537.908320pt;}
.y2b9{bottom:538.691840pt;}
.y29a{bottom:538.705120pt;}
.y47{bottom:538.768320pt;}
.y307{bottom:540.800000pt;}
.y26d{bottom:541.250080pt;}
.y218{bottom:541.270080pt;}
.y7c{bottom:542.569600pt;}
.y191{bottom:543.475040pt;}
.y14f{bottom:544.667840pt;}
.y2e4{bottom:544.800000pt;}
.y11d{bottom:545.278720pt;}
.y1c2{bottom:546.880000pt;}
.y362{bottom:548.160000pt;}
.y236{bottom:549.591840pt;}
.y387{bottom:550.080000pt;}
.y334{bottom:552.160000pt;}
.yb6{bottom:552.649120pt;}
.yef{bottom:552.662400pt;}
.y163{bottom:553.273280pt;}
.y2b8{bottom:553.897440pt;}
.y299{bottom:553.910720pt;}
.y46{bottom:553.973920pt;}
.y356{bottom:556.160000pt;}
.y26c{bottom:556.615040pt;}
.y217{bottom:556.635040pt;}
.y7b{bottom:557.934560pt;}
.y190{bottom:558.840000pt;}
.y14e{bottom:560.032800pt;}
.y2e3{bottom:560.160000pt;}
.y11c{bottom:560.643680pt;}
.y1c1{bottom:562.240000pt;}
.y235{bottom:564.956800pt;}
.y1ed{bottom:565.120000pt;}
.y38b{bottom:566.560000pt;}
.y333{bottom:567.520000pt;}
.yb5{bottom:568.014080pt;}
.yee{bottom:568.027360pt;}
.y162{bottom:568.638240pt;}
.y2b7{bottom:569.262400pt;}
.y298{bottom:569.275680pt;}
.y45{bottom:569.338880pt;}
.y355{bottom:571.520000pt;}
.y26b{bottom:571.980000pt;}
.y216{bottom:572.000000pt;}
.y7a{bottom:573.299520pt;}
.y9{bottom:573.786667pt;}
.y18f{bottom:574.045600pt;}
.y306{bottom:575.520000pt;}
.y11b{bottom:576.008640pt;}
.y234{bottom:577.440000pt;}
.y1c0{bottom:577.600000pt;}
.y2e2{bottom:579.520000pt;}
.y38a{bottom:581.920000pt;}
.y332{bottom:582.880000pt;}
.yb4{bottom:583.379040pt;}
.y14d{bottom:583.392320pt;}
.y161{bottom:584.003200pt;}
.y38e{bottom:584.160000pt;}
.y2b6{bottom:584.627360pt;}
.y297{bottom:584.640640pt;}
.y44{bottom:584.703840pt;}
.y361{bottom:586.880000pt;}
.y215{bottom:587.040000pt;}
.y26a{bottom:587.344960pt;}
.y79{bottom:588.664480pt;}
.y18e{bottom:589.410560pt;}
.y305{bottom:590.880000pt;}
.y8{bottom:592.685334pt;}
.y38d{bottom:593.760000pt;}
.y2e1{bottom:594.880000pt;}
.y1ec{bottom:595.520000pt;}
.y389{bottom:597.280000pt;}
.yb3{bottom:598.744000pt;}
.y14c{bottom:598.757280pt;}
.y160{bottom:599.368160pt;}
.yed{bottom:599.381440pt;}
.y38c{bottom:599.680000pt;}
.y2b5{bottom:599.992320pt;}
.y296{bottom:600.005600pt;}
.y43{bottom:600.068800pt;}
.y214{bottom:600.804000pt;}
.y331{bottom:602.080000pt;}
.y269{bottom:602.709920pt;}
.y78{bottom:603.870080pt;}
.y18d{bottom:604.775520pt;}
.y11a{bottom:607.362720pt;}
.y1bf{bottom:608.320000pt;}
.y304{bottom:610.080000pt;}
.yb2{bottom:613.949600pt;}
.y14b{bottom:613.962880pt;}
.y2e0{bottom:614.080000pt;}
.y15f{bottom:614.733120pt;}
.yec{bottom:614.746400pt;}
.y2b4{bottom:615.357280pt;}
.y295{bottom:615.370560pt;}
.y42{bottom:615.433760pt;}
.y330{bottom:617.440000pt;}
.y268{bottom:617.915520pt;}
.y77{bottom:619.235040pt;}
.y18c{bottom:620.140480pt;}
.y360{bottom:621.440000pt;}
.y213{bottom:622.560000pt;}
.y1be{bottom:623.520000pt;}
.y354{bottom:625.440000pt;}
.y386{bottom:625.600000pt;}
.y1eb{bottom:626.080000pt;}
.yb1{bottom:629.314560pt;}
.y14a{bottom:629.327840pt;}
.y2df{bottom:629.440000pt;}
.y15e{bottom:629.938720pt;}
.yeb{bottom:629.952000pt;}
.y119{bottom:630.722240pt;}
.y294{bottom:630.735520pt;}
.y41{bottom:630.798720pt;}
.y32f{bottom:632.800000pt;}
.y267{bottom:633.280480pt;}
.y76{bottom:634.600000pt;}
.y18b{bottom:635.505440pt;}
.y35f{bottom:636.800000pt;}
.y1bd{bottom:638.880000pt;}
.y353{bottom:640.800000pt;}
.y385{bottom:641.600000pt;}
.y212{bottom:643.840000pt;}
.yb0{bottom:644.679520pt;}
.y149{bottom:644.692800pt;}
.y2de{bottom:644.800000pt;}
.y15d{bottom:645.303680pt;}
.yea{bottom:645.316960pt;}
.y7{bottom:645.598667pt;}
.y118{bottom:645.927840pt;}
.y293{bottom:645.941120pt;}
.y40{bottom:646.004320pt;}
.y75{bottom:649.964960pt;}
.y18a{bottom:650.870400pt;}
.y32e{bottom:652.160000pt;}
.y1bc{bottom:654.240000pt;}
.y36e{bottom:656.160000pt;}
.y266{bottom:656.640000pt;}
.y1ea{bottom:656.800000pt;}
.y211{bottom:657.600000pt;}
.yaf{bottom:660.044480pt;}
.y148{bottom:660.057760pt;}
.y303{bottom:660.160000pt;}
.ye9{bottom:660.681920pt;}
.y117{bottom:661.292800pt;}
.y292{bottom:661.306080pt;}
.y3f{bottom:661.369280pt;}
.y2dd{bottom:664.160000pt;}
.y74{bottom:665.329920pt;}
.y189{bottom:666.076000pt;}
.y3{bottom:668.977329pt;}
.y210{bottom:671.360000pt;}
.y32d{bottom:671.520000pt;}
.y384{bottom:672.960000pt;}
.yae{bottom:675.409440pt;}
.y147{bottom:675.422720pt;}
.y302{bottom:675.520000pt;}
.ye8{bottom:676.046880pt;}
.y116{bottom:676.657760pt;}
.y291{bottom:676.671040pt;}
.y3e{bottom:676.734240pt;}
.y2dc{bottom:679.520000pt;}
.y73{bottom:680.694880pt;}
.y188{bottom:681.440960pt;}
.y1bb{bottom:684.960000pt;}
.y20e{bottom:685.120000pt;}
.y32c{bottom:686.720000pt;}
.y1e9{bottom:687.040000pt;}
.y265{bottom:687.672000pt;}
.yad{bottom:690.615040pt;}
.y146{bottom:690.628320pt;}
.y352{bottom:690.720000pt;}
.ye7{bottom:691.411840pt;}
.y115{bottom:692.022720pt;}
.y290{bottom:692.036000pt;}
.y3d{bottom:692.099200pt;}
.y2db{bottom:694.720000pt;}
.y72{bottom:695.900480pt;}
.y20d{bottom:699.040000pt;}
.y1ba{bottom:700.320000pt;}
.y264{bottom:701.436000pt;}
.y35e{bottom:702.080000pt;}
.y383{bottom:704.320000pt;}
.yac{bottom:705.980000pt;}
.y145{bottom:705.993280pt;}
.y32b{bottom:706.080000pt;}
.ye6{bottom:706.617440pt;}
.y114{bottom:707.387680pt;}
.y28f{bottom:707.400960pt;}
.y3c{bottom:707.464160pt;}
.y301{bottom:710.080000pt;}
.y71{bottom:711.265440pt;}
.y187{bottom:712.795040pt;}
.y20b{bottom:713.760000pt;}
.y2da{bottom:714.080000pt;}
.y1b9{bottom:715.520000pt;}
.y1e8{bottom:717.760000pt;}
.yab{bottom:721.344960pt;}
.y32a{bottom:721.440000pt;}
.ye5{bottom:721.982400pt;}
.y113{bottom:722.593280pt;}
.y28e{bottom:722.606560pt;}
.y3b{bottom:722.669760pt;}
.y263{bottom:723.360000pt;}
.y351{bottom:725.440000pt;}
.y70{bottom:726.630400pt;}
.y186{bottom:728.160000pt;}
.y144{bottom:729.352800pt;}
.y2d9{bottom:729.440000pt;}
.y1b7{bottom:730.880000pt;}
.y382{bottom:735.680000pt;}
.yaa{bottom:736.709920pt;}
.y35d{bottom:736.800000pt;}
.ye4{bottom:737.347360pt;}
.y112{bottom:737.958240pt;}
.y28d{bottom:737.971520pt;}
.y3a{bottom:738.034720pt;}
.y20a{bottom:740.475040pt;}
.y329{bottom:740.800000pt;}
.y185{bottom:741.280000pt;}
.y6f{bottom:741.995360pt;}
.y262{bottom:744.480000pt;}
.y2d8{bottom:744.800000pt;}
.y1b6{bottom:746.240000pt;}
.y1e7{bottom:748.320000pt;}
.ya9{bottom:752.074880pt;}
.ye3{bottom:752.712320pt;}
.y111{bottom:753.323200pt;}
.y28c{bottom:753.336480pt;}
.y39{bottom:753.399680pt;}
.y209{bottom:755.840000pt;}
.y328{bottom:756.160000pt;}
.y6e{bottom:757.360320pt;}
.y350{bottom:760.160000pt;}
.y1b5{bottom:761.600000pt;}
.y2d7{bottom:764.160000pt;}
.y261{bottom:764.480000pt;}
.y381{bottom:767.040000pt;}
.ya8{bottom:767.439840pt;}
.ye2{bottom:768.077280pt;}
.y110{bottom:768.688160pt;}
.y28b{bottom:768.701440pt;}
.y38{bottom:768.764640pt;}
.y208{bottom:770.240000pt;}
.y327{bottom:771.520000pt;}
.y184{bottom:771.840000pt;}
.y6d{bottom:772.725280pt;}
.y36d{bottom:775.520000pt;}
.y143{bottom:776.071840pt;}
.y1b4{bottom:776.960000pt;}
.y1e6{bottom:779.040000pt;}
.y2d6{bottom:779.520000pt;}
.y2{bottom:781.661334pt;}
.ya7{bottom:782.645440pt;}
.ye1{bottom:783.442240pt;}
.y10f{bottom:784.053120pt;}
.y28a{bottom:784.066400pt;}
.y37{bottom:784.129600pt;}
.y260{bottom:784.480000pt;}
.y207{bottom:785.600000pt;}
.y6c{bottom:787.930880pt;}
.y326{bottom:790.720000pt;}
.y1b3{bottom:792.320000pt;}
.y300{bottom:794.720000pt;}
.ya6{bottom:798.010400pt;}
.y380{bottom:798.240000pt;}
.ye0{bottom:798.647840pt;}
.y2d5{bottom:798.720000pt;}
.y10e{bottom:799.418080pt;}
.y142{bottom:799.431360pt;}
.y36{bottom:799.494560pt;}
.y206{bottom:800.960000pt;}
.y182{bottom:802.560000pt;}
.y6b{bottom:803.295840pt;}
.y25e{bottom:805.120000pt;}
.y325{bottom:806.080000pt;}
.y1b2{bottom:807.520000pt;}
.y1e5{bottom:809.760000pt;}
.y34f{bottom:810.080000pt;}
.ya5{bottom:813.375360pt;}
.ydf{bottom:814.012800pt;}
.y2d4{bottom:814.080000pt;}
.y10d{bottom:814.623680pt;}
.y141{bottom:814.636960pt;}
.y35{bottom:814.700160pt;}
.y205{bottom:816.320000pt;}
.y6a{bottom:818.660800pt;}
.y1b1{bottom:822.880000pt;}
.y324{bottom:825.440000pt;}
.y25d{bottom:825.760000pt;}
.yde{bottom:829.377760pt;}
.y2d3{bottom:829.440000pt;}
.y37f{bottom:829.600000pt;}
.y10c{bottom:829.988640pt;}
.y140{bottom:830.001920pt;}
.y34{bottom:830.065120pt;}
.y204{bottom:831.520000pt;}
.y180{bottom:833.920000pt;}
.y69{bottom:834.025760pt;}
.y1b0{bottom:839.200000pt;}
.y1e4{bottom:840.320000pt;}
.y323{bottom:840.800000pt;}
.ya4{bottom:844.729440pt;}
.ydd{bottom:844.742720pt;}
.y2ff{bottom:844.800000pt;}
.y10b{bottom:845.353600pt;}
.y13f{bottom:845.366880pt;}
.y33{bottom:845.430080pt;}
.y37e{bottom:845.600000pt;}
.y25c{bottom:845.760000pt;}
.y203{bottom:847.840000pt;}
.y2d2{bottom:848.800000pt;}
.y68{bottom:849.390720pt;}
.y1{bottom:859.312000pt;}
.ydc{bottom:860.107680pt;}
.y2fe{bottom:860.160000pt;}
.y10a{bottom:860.718560pt;}
.y13e{bottom:860.731840pt;}
.y32{bottom:860.795040pt;}
.y37d{bottom:861.600000pt;}
.y2d1{bottom:864.160000pt;}
.y67{bottom:864.755680pt;}
.y25b{bottom:865.760000pt;}
.y1e3{bottom:871.040000pt;}
.ydb{bottom:875.472640pt;}
.y34e{bottom:875.520000pt;}
.ya3{bottom:876.083520pt;}
.y13d{bottom:876.096800pt;}
.y31{bottom:876.160000pt;}
.y37c{bottom:877.600000pt;}
.y2d0{bottom:879.520000pt;}
.y66{bottom:879.961280pt;}
.y1af{bottom:882.670400pt;}
.y25a{bottom:885.760000pt;}
.yda{bottom:890.678240pt;}
.y202{bottom:891.289120pt;}
.ya2{bottom:891.448480pt;}
.y13c{bottom:891.461760pt;}
.y30{bottom:893.285760pt;}
.y375{bottom:893.600000pt;}
.y2fd{bottom:894.720000pt;}
.y65{bottom:897.557280pt;}
.y1ae{bottom:898.035360pt;}
.y2cf{bottom:898.720000pt;}
.y1e1{bottom:901.280000pt;}
.y259{bottom:905.760000pt;}
.yd9{bottom:906.043200pt;}
.ya1{bottom:906.654080pt;}
.y13b{bottom:906.667360pt;}
.y322{bottom:910.080000pt;}
.y64{bottom:913.400320pt;}
.y2ce{bottom:914.080000pt;}
.y2f{bottom:917.757760pt;}
.yd8{bottom:921.408160pt;}
.ya0{bottom:922.019040pt;}
.y13a{bottom:922.032320pt;}
.y378{bottom:925.440000pt;}
.y258{bottom:925.760000pt;}
.y37b{bottom:927.680000pt;}
.y63{bottom:928.765280pt;}
.y2cd{bottom:929.440000pt;}
.y1e0{bottom:931.520000pt;}
.y2fc{bottom:933.440000pt;}
.yd7{bottom:936.773120pt;}
.y37a{bottom:937.280000pt;}
.y9f{bottom:937.384000pt;}
.y139{bottom:937.397280pt;}
.y377{bottom:940.800000pt;}
.y2e{bottom:942.400000pt;}
.y379{bottom:943.200000pt;}
.y62{bottom:944.130240pt;}
.y321{bottom:944.800000pt;}
.y257{bottom:945.760000pt;}
.y2cc{bottom:948.800000pt;}
.yd6{bottom:952.138080pt;}
.y9e{bottom:952.748960pt;}
.y138{bottom:952.762240pt;}
.y61{bottom:959.495200pt;}
.y36c{bottom:960.160000pt;}
.y1df{bottom:962.240000pt;}
.y2cb{bottom:964.160000pt;}
.y2d{bottom:965.109440pt;}
.y255{bottom:965.760000pt;}
.y1ad{bottom:967.330400pt;}
.yd5{bottom:967.503040pt;}
.y9d{bottom:968.113920pt;}
.y137{bottom:968.127200pt;}
.y374{bottom:970.560000pt;}
.y60{bottom:974.700800pt;}
.y320{bottom:979.520000pt;}
.y2c{bottom:980.315040pt;}
.y9c{bottom:983.478880pt;}
.y136{bottom:983.492160pt;}
.y2ca{bottom:983.520000pt;}
.y252{bottom:986.880000pt;}
.y1de{bottom:993.920000pt;}
.y36b{bottom:994.720000pt;}
.y2b{bottom:995.680000pt;}
.y254{bottom:996.800000pt;}
.y5f{bottom:998.060320pt;}
.y9b{bottom:998.684480pt;}
.yd4{bottom:998.697760pt;}
.y2c9{bottom:998.720000pt;}
.y2a{bottom:1011.680000pt;}
.y9a{bottom:1014.049440pt;}
.yd3{bottom:1014.062720pt;}
.y2c8{bottom:1014.080000pt;}
.y99{bottom:1032.150080pt;}
.y25{bottom:1047.515040pt;}
.y24{bottom:1062.880000pt;}
.h1f{height:13.758667pt;}
.h1a{height:13.760000pt;}
.h1e{height:13.920000pt;}
.h12{height:15.198667pt;}
.h13{height:15.200000pt;}
.hf{height:15.360000pt;}
.h22{height:19.998667pt;}
.h21{height:20.000000pt;}
.h7{height:28.560000pt;}
.h15{height:30.240000pt;}
.h17{height:30.400000pt;}
.h16{height:30.401333pt;}
.h14{height:30.558667pt;}
.h11{height:30.560000pt;}
.h10{height:30.720000pt;}
.h1b{height:32.507812pt;}
.h1c{height:32.531250pt;}
.h19{height:33.328125pt;}
.h1d{height:33.351562pt;}
.hc{height:35.975313pt;}
.hd{height:36.001250pt;}
.he{height:36.883125pt;}
.h9{height:36.909063pt;}
.h20{height:37.600000pt;}
.h23{height:38.905568pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h24{height:44.327188pt;}
.ha{height:44.437500pt;}
.h18{height:45.918667pt;}
.h2{height:48.960000pt;}
.h5{height:57.120000pt;}
.hb{height:57.688750pt;}
.h26{height:74.880000pt;}
.h25{height:75.040000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2b{width:34.720000pt;}
.w2a{width:34.721333pt;}
.w32{width:35.358667pt;}
.w33{width:35.360000pt;}
.w2c{width:39.040000pt;}
.w29{width:39.360000pt;}
.w35{width:39.680000pt;}
.w34{width:40.000000pt;}
.w31{width:40.001333pt;}
.w2d{width:51.840000pt;}
.w2f{width:52.480000pt;}
.w11{width:56.478667pt;}
.w10{width:56.640000pt;}
.wf{width:65.120000pt;}
.w14{width:65.920000pt;}
.w24{width:66.078667pt;}
.wa{width:67.840000pt;}
.w9{width:67.841333pt;}
.w8{width:67.998667pt;}
.wb{width:68.000000pt;}
.wc{width:69.280000pt;}
.w23{width:74.880000pt;}
.w15{width:78.080000pt;}
.w1c{width:81.760000pt;}
.w22{width:83.360000pt;}
.w1f{width:87.680000pt;}
.w1a{width:88.160000pt;}
.w19{width:88.320000pt;}
.w1e{width:88.480000pt;}
.w17{width:89.920000pt;}
.w13{width:90.240000pt;}
.w1d{width:93.761333pt;}
.wd{width:93.918667pt;}
.w16{width:96.000000pt;}
.w20{width:96.798667pt;}
.w25{width:120.000000pt;}
.w4{width:122.880000pt;}
.w21{width:124.640000pt;}
.w18{width:126.558667pt;}
.w1b{width:127.840000pt;}
.w6{width:141.760000pt;}
.w7{width:142.240000pt;}
.w12{width:143.040000pt;}
.we{width:283.520000pt;}
.w5{width:292.800000pt;}
.w2e{width:324.960000pt;}
.w30{width:325.600000pt;}
.w28{width:377.441333pt;}
.w26{width:566.238667pt;}
.w2{width:566.928019pt;}
.w27{width:568.480000pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x36{left:20.000000pt;}
.x39{left:25.600000pt;}
.x3d{left:27.840000pt;}
.x37{left:35.840000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x12{left:112.640000pt;}
.x6{left:119.845600pt;}
.xb{left:143.838720pt;}
.xc{left:146.242400pt;}
.xd{left:152.160000pt;}
.x40{left:165.440000pt;}
.x4{left:180.874667pt;}
.x19{left:207.040000pt;}
.x29{left:209.920000pt;}
.x1d{left:214.240000pt;}
.x34{left:230.080000pt;}
.x35{left:233.440000pt;}
.x22{left:239.680000pt;}
.x27{left:240.960000pt;}
.x10{left:242.720000pt;}
.x2f{left:254.080000pt;}
.x13{left:255.200000pt;}
.x1e{left:256.160000pt;}
.x30{left:257.440000pt;}
.x9{left:289.600000pt;}
.x31{left:312.480000pt;}
.x32{left:315.840000pt;}
.x33{left:319.200000pt;}
.x14{left:323.200000pt;}
.x23{left:328.000000pt;}
.x2a{left:334.560000pt;}
.x2b{left:341.760000pt;}
.x1f{left:346.400000pt;}
.x15{left:391.040000pt;}
.x5{left:396.800000pt;}
.x3{left:404.408000pt;}
.x20{left:412.320000pt;}
.x24{left:416.160000pt;}
.x2c{left:417.920000pt;}
.x16{left:458.880000pt;}
.x1a{left:490.560000pt;}
.x2d{left:492.800000pt;}
.x25{left:504.480000pt;}
.x17{left:526.880000pt;}
.x38{left:531.040000pt;}
.x11{left:535.680000pt;}
.x1b{left:555.680000pt;}
.x3a{left:556.640000pt;}
.x2e{left:558.880000pt;}
.x3b{left:566.400000pt;}
.x21{left:586.400000pt;}
.x26{left:592.800000pt;}
.x18{left:594.720000pt;}
.x3c{left:601.760000pt;}
.x1c{left:612.320000pt;}
.x3e{left:629.600000pt;}
.x3f{left:641.760000pt;}
.x8{left:653.927360pt;}
.xa{left:660.643200pt;}
.x28{left:666.880000pt;}
.x7{left:673.927040pt;}
.xe{left:684.160000pt;}
}




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