
    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_f014bfcd3db8249a88357940.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.480469;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_5eeff136a0a7df0e610bb579.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.568848;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_42ca6a7f4ee780e6466fa4ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_f42211791268ba0d15b91809.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_3611e85c8e64622704676918.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_f5fc4c09c481422213bdf2fa.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_597b7666342db842df32638c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.568848;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_f4df917c1bf235f4efa7dd94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:26.640000px;}
.v5{vertical-align:36.000000px;}
.ls43{letter-spacing:-1.008000px;}
.ls69{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.864000px;}
.ls85{letter-spacing:-0.720000px;}
.ls5b{letter-spacing:-0.648000px;}
.ls59{letter-spacing:-0.597600px;}
.ls57{letter-spacing:-0.504000px;}
.ls49{letter-spacing:-0.432000px;}
.ls71{letter-spacing:-0.418320px;}
.ls4b{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.358560px;}
.ls58{letter-spacing:-0.298800px;}
.ls4c{letter-spacing:-0.289440px;}
.ls15{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.239040px;}
.ls7b{letter-spacing:-0.227520px;}
.ls14{letter-spacing:-0.216000px;}
.ls38{letter-spacing:-0.179280px;}
.ls2d{letter-spacing:-0.170640px;}
.ls12{letter-spacing:-0.168480px;}
.ls42{letter-spacing:-0.155520px;}
.ls18{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.119520px;}
.ls4f{letter-spacing:-0.116640px;}
.ls2e{letter-spacing:-0.113760px;}
.ls13{letter-spacing:-0.084240px;}
.ls29{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.059760px;}
.lsf{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.011520px;}
.ls40{letter-spacing:0.017928px;}
.ls0{letter-spacing:0.025272px;}
.ls35{letter-spacing:0.035856px;}
.ls48{letter-spacing:0.041832px;}
.ls5e{letter-spacing:0.048240px;}
.ls33{letter-spacing:0.048960px;}
.ls24{letter-spacing:0.056160px;}
.ls11{letter-spacing:0.059760px;}
.ls67{letter-spacing:0.064800px;}
.ls2b{letter-spacing:0.072000px;}
.ls36{letter-spacing:0.076320px;}
.ls82{letter-spacing:0.079200px;}
.ls6c{letter-spacing:0.096480px;}
.ls21{letter-spacing:0.104400px;}
.ls1b{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.136800px;}
.lsa{letter-spacing:0.138240px;}
.ls6f{letter-spacing:0.144000px;}
.ls41{letter-spacing:0.144720px;}
.ls5d{letter-spacing:0.155520px;}
.ls79{letter-spacing:0.170640px;}
.ls1a{letter-spacing:0.179280px;}
.ls16{letter-spacing:0.216000px;}
.ls7c{letter-spacing:0.227520px;}
.lse{letter-spacing:0.239040px;}
.ls31{letter-spacing:0.263520px;}
.ls7e{letter-spacing:0.270720px;}
.ls7a{letter-spacing:0.284400px;}
.ls4a{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.298800px;}
.ls28{letter-spacing:0.313920px;}
.ls6d{letter-spacing:0.349920px;}
.ls27{letter-spacing:0.351360px;}
.ls25{letter-spacing:0.352800px;}
.ls4d{letter-spacing:0.358560px;}
.ls2{letter-spacing:0.360000px;}
.ls7f{letter-spacing:0.367200px;}
.ls3d{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.478080px;}
.ls75{letter-spacing:0.490032px;}
.ls81{letter-spacing:0.504000px;}
.ls3f{letter-spacing:0.561600px;}
.ls2a{letter-spacing:0.576000px;}
.ls54{letter-spacing:0.639432px;}
.ls3c{letter-spacing:0.648000px;}
.ls55{letter-spacing:0.651384px;}
.ls2c{letter-spacing:0.657360px;}
.ls4e{letter-spacing:0.717120px;}
.ls1e{letter-spacing:0.720000px;}
.ls72{letter-spacing:0.776880px;}
.ls80{letter-spacing:0.792000px;}
.ls39{letter-spacing:0.836640px;}
.ls83{letter-spacing:0.921600px;}
.ls44{letter-spacing:0.956160px;}
.ls76{letter-spacing:1.360800px;}
.ls34{letter-spacing:1.368000px;}
.lsb{letter-spacing:1.434240px;}
.ls2f{letter-spacing:2.088000px;}
.ls53{letter-spacing:2.151360px;}
.ls78{letter-spacing:2.160000px;}
.ls51{letter-spacing:2.808000px;}
.ls8{letter-spacing:2.868480px;}
.ls23{letter-spacing:2.880000px;}
.ls70{letter-spacing:3.005928px;}
.ls46{letter-spacing:3.312000px;}
.ls32{letter-spacing:3.528000px;}
.lsd{letter-spacing:3.585600px;}
.ls20{letter-spacing:3.600000px;}
.ls1f{letter-spacing:4.248000px;}
.lsc{letter-spacing:4.302720px;}
.ls77{letter-spacing:4.960800px;}
.ls50{letter-spacing:4.968000px;}
.ls5a{letter-spacing:5.019840px;}
.ls65{letter-spacing:5.688000px;}
.ls3b{letter-spacing:5.736960px;}
.ls5{letter-spacing:6.408000px;}
.ls37{letter-spacing:6.454080px;}
.ls5f{letter-spacing:7.128000px;}
.ls56{letter-spacing:7.171200px;}
.ls22{letter-spacing:7.848000px;}
.ls47{letter-spacing:7.888320px;}
.ls3e{letter-spacing:8.568000px;}
.ls74{letter-spacing:8.665200px;}
.ls6e{letter-spacing:9.288000px;}
.ls7{letter-spacing:9.382320px;}
.ls45{letter-spacing:10.008000px;}
.ls4{letter-spacing:10.728000px;}
.ls1{letter-spacing:11.448000px;}
.ls73{letter-spacing:12.168000px;}
.ls5c{letter-spacing:12.250800px;}
.ls30{letter-spacing:14.328000px;}
.ls84{letter-spacing:16.488000px;}
.ls3a{letter-spacing:17.208000px;}
.ls7d{letter-spacing:22.968000px;}
.ls63{letter-spacing:70.576560px;}
.ls52{letter-spacing:190.036800px;}
.ls61{letter-spacing:240.474240px;}
.ls6b{letter-spacing:300.891600px;}
.ls62{letter-spacing:305.971200px;}
.ls60{letter-spacing:315.271440px;}
.ls66{letter-spacing:342.663840px;}
.ls6a{letter-spacing:365.671440px;}
.ls64{letter-spacing:373.662000px;}
.ls68{letter-spacing:375.053760px;}
.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;}
}
.ws91{word-spacing:-72.000000px;}
.wscf{word-spacing:-18.072000px;}
.ws145{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.wsa5{word-spacing:-17.640000px;}
.ws48{word-spacing:-17.568000px;}
.ws132{word-spacing:-17.496000px;}
.ws49{word-spacing:-17.424000px;}
.ws47{word-spacing:-17.352000px;}
.ws8d{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.208000px;}
.ws3{word-spacing:-17.136000px;}
.ws6{word-spacing:-17.064000px;}
.wsa3{word-spacing:-16.992000px;}
.wsc1{word-spacing:-16.848000px;}
.ws109{word-spacing:-16.704000px;}
.ws93{word-spacing:-15.358320px;}
.wsa7{word-spacing:-15.179040px;}
.wsa8{word-spacing:-15.119280px;}
.wsdb{word-spacing:-15.059520px;}
.wsc2{word-spacing:-14.999760px;}
.wsc3{word-spacing:-14.940000px;}
.wse7{word-spacing:-14.880240px;}
.wsa6{word-spacing:-14.760720px;}
.ws8f{word-spacing:-14.700960px;}
.ws0{word-spacing:-14.641200px;}
.wsc{word-spacing:-14.581440px;}
.wsb{word-spacing:-14.521680px;}
.ws2{word-spacing:-14.461920px;}
.ws9{word-spacing:-14.402160px;}
.ws92{word-spacing:-14.342400px;}
.ws8{word-spacing:-14.282640px;}
.wsc5{word-spacing:-14.222880px;}
.ws1{word-spacing:-14.163120px;}
.wsc4{word-spacing:-14.103360px;}
.wsd{word-spacing:-14.043600px;}
.ws12e{word-spacing:-13.992480px;}
.ws10a{word-spacing:-13.983840px;}
.ws4b{word-spacing:-13.594320px;}
.ws4a{word-spacing:-13.537440px;}
.ws8e{word-spacing:-11.770560px;}
.ws104{word-spacing:-11.722320px;}
.wsdd{word-spacing:-11.674080px;}
.ws7{word-spacing:-11.625840px;}
.wsa4{word-spacing:-11.336400px;}
.ws105{word-spacing:-9.720000px;}
.wsdc{word-spacing:-9.525600px;}
.wsa{word-spacing:-9.370080px;}
.wsa9{word-spacing:-9.253440px;}
.ws90{word-spacing:-9.214560px;}
.wsd7{word-spacing:-4.752000px;}
.ws134{word-spacing:-4.608000px;}
.wsd0{word-spacing:-4.176000px;}
.ws106{word-spacing:-4.032000px;}
.wsc6{word-spacing:-3.888000px;}
.ws146{word-spacing:-3.744000px;}
.ws14d{word-spacing:-3.672000px;}
.ws110{word-spacing:-3.600000px;}
.ws121{word-spacing:-3.585600px;}
.ws113{word-spacing:-3.525840px;}
.wsae{word-spacing:-3.456000px;}
.ws5e{word-spacing:-3.384000px;}
.wsc8{word-spacing:-3.312000px;}
.ws118{word-spacing:-3.240000px;}
.ws136{word-spacing:-3.168000px;}
.wse6{word-spacing:-3.107520px;}
.ws1e{word-spacing:-3.047760px;}
.ws116{word-spacing:-3.024000px;}
.ws7c{word-spacing:-2.988000px;}
.ws160{word-spacing:-2.952000px;}
.ws138{word-spacing:-2.880000px;}
.wse4{word-spacing:-2.868480px;}
.wsb9{word-spacing:-2.808720px;}
.ws158{word-spacing:-2.808000px;}
.wsd2{word-spacing:-2.736000px;}
.wsff{word-spacing:-2.664000px;}
.wse5{word-spacing:-2.629440px;}
.wsb3{word-spacing:-2.592000px;}
.ws133{word-spacing:-2.448000px;}
.ws64{word-spacing:-2.390400px;}
.ws65{word-spacing:-2.330640px;}
.ws153{word-spacing:-2.304000px;}
.ws11d{word-spacing:-2.270880px;}
.wsd4{word-spacing:-2.232000px;}
.wsda{word-spacing:-2.151360px;}
.wsa2{word-spacing:-2.091600px;}
.ws155{word-spacing:-2.088000px;}
.wsc7{word-spacing:-2.016000px;}
.ws94{word-spacing:-1.944000px;}
.ws103{word-spacing:-1.912320px;}
.ws115{word-spacing:-1.872000px;}
.ws151{word-spacing:-1.728000px;}
.ws23{word-spacing:-1.673280px;}
.ws71{word-spacing:-1.613520px;}
.ws154{word-spacing:-1.584000px;}
.ws67{word-spacing:-1.553760px;}
.wse8{word-spacing:-1.512000px;}
.ws26{word-spacing:-1.434240px;}
.ws7b{word-spacing:-1.374480px;}
.wsf6{word-spacing:-1.368000px;}
.ws70{word-spacing:-1.314720px;}
.ws1a{word-spacing:-1.296000px;}
.wsb4{word-spacing:-1.224000px;}
.ws24{word-spacing:-1.195200px;}
.ws50{word-spacing:-1.152000px;}
.ws107{word-spacing:-1.008000px;}
.ws2f{word-spacing:-0.956160px;}
.ws63{word-spacing:-0.896400px;}
.ws135{word-spacing:-0.864000px;}
.ws46{word-spacing:-0.836640px;}
.ws10f{word-spacing:-0.792000px;}
.ws51{word-spacing:-0.720000px;}
.ws7d{word-spacing:-0.717120px;}
.ws37{word-spacing:-0.657360px;}
.wse2{word-spacing:-0.648000px;}
.ws6f{word-spacing:-0.597600px;}
.ws5b{word-spacing:-0.576000px;}
.ws52{word-spacing:-0.504000px;}
.ws45{word-spacing:-0.478080px;}
.ws12{word-spacing:-0.432000px;}
.wsaa{word-spacing:-0.360000px;}
.ws6c{word-spacing:-0.298800px;}
.wsac{word-spacing:-0.288000px;}
.wse{word-spacing:-0.239040px;}
.ws131{word-spacing:-0.227520px;}
.ws9d{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.179280px;}
.ws12f{word-spacing:-0.170640px;}
.ws10{word-spacing:-0.168480px;}
.ws1c{word-spacing:-0.144000px;}
.ws25{word-spacing:-0.119520px;}
.ws11{word-spacing:-0.084240px;}
.wse0{word-spacing:-0.072000px;}
.ws22{word-spacing:-0.059760px;}
.wsf{word-spacing:0.000000px;}
.ws27{word-spacing:0.059760px;}
.ws4e{word-spacing:0.072000px;}
.ws1d{word-spacing:0.119520px;}
.ws4c{word-spacing:0.144000px;}
.ws87{word-spacing:0.179280px;}
.ws4d{word-spacing:0.216000px;}
.ws130{word-spacing:0.227520px;}
.ws3b{word-spacing:0.239040px;}
.ws14{word-spacing:0.288000px;}
.wscb{word-spacing:0.298800px;}
.ws6a{word-spacing:0.358560px;}
.wsf9{word-spacing:0.360000px;}
.wsab{word-spacing:0.432000px;}
.ws88{word-spacing:0.478080px;}
.ws35{word-spacing:0.537840px;}
.ws149{word-spacing:0.576000px;}
.ws5f{word-spacing:0.597600px;}
.wsd3{word-spacing:0.648000px;}
.ws68{word-spacing:0.717120px;}
.ws119{word-spacing:0.720000px;}
.ws9a{word-spacing:0.776880px;}
.ws139{word-spacing:0.792000px;}
.ws16{word-spacing:0.864000px;}
.ws1b{word-spacing:0.936000px;}
.ws36{word-spacing:0.956160px;}
.ws7e{word-spacing:1.008000px;}
.wsad{word-spacing:1.080000px;}
.ws62{word-spacing:1.195200px;}
.ws5d{word-spacing:1.254960px;}
.ws14c{word-spacing:1.296000px;}
.ws96{word-spacing:1.314720px;}
.ws85{word-spacing:1.368000px;}
.ws32{word-spacing:1.434240px;}
.ws84{word-spacing:1.440000px;}
.ws60{word-spacing:1.494000px;}
.ws111{word-spacing:1.512000px;}
.ws61{word-spacing:1.553760px;}
.ws80{word-spacing:1.584000px;}
.ws7f{word-spacing:1.656000px;}
.ws66{word-spacing:1.673280px;}
.wscc{word-spacing:1.912320px;}
.ws99{word-spacing:1.972080px;}
.wsaf{word-spacing:2.016000px;}
.ws2d{word-spacing:2.031840px;}
.ws144{word-spacing:2.088000px;}
.ws143{word-spacing:2.160000px;}
.ws2c{word-spacing:2.211120px;}
.ws13d{word-spacing:2.232000px;}
.ws74{word-spacing:2.304000px;}
.ws75{word-spacing:2.376000px;}
.ws2e{word-spacing:2.390400px;}
.wse1{word-spacing:2.448000px;}
.ws150{word-spacing:2.592000px;}
.ws69{word-spacing:2.629440px;}
.ws29{word-spacing:2.689200px;}
.ws14e{word-spacing:2.736000px;}
.ws2a{word-spacing:2.748960px;}
.ws10b{word-spacing:2.808000px;}
.ws86{word-spacing:2.868480px;}
.wsb5{word-spacing:2.928240px;}
.ws14f{word-spacing:2.952000px;}
.wsca{word-spacing:3.024000px;}
.ws73{word-spacing:3.096000px;}
.ws38{word-spacing:3.107520px;}
.wsf0{word-spacing:3.168000px;}
.wsfa{word-spacing:3.240000px;}
.ws15b{word-spacing:3.312000px;}
.ws39{word-spacing:3.346560px;}
.ws3f{word-spacing:3.406320px;}
.wsfc{word-spacing:3.456000px;}
.ws3a{word-spacing:3.466080px;}
.ws28{word-spacing:3.585600px;}
.ws117{word-spacing:3.600000px;}
.ws6b{word-spacing:3.645360px;}
.ws161{word-spacing:3.672000px;}
.ws79{word-spacing:3.744000px;}
.ws7a{word-spacing:3.816000px;}
.ws81{word-spacing:3.888000px;}
.ws13a{word-spacing:4.032000px;}
.ws122{word-spacing:4.063680px;}
.ws98{word-spacing:4.123440px;}
.wsec{word-spacing:4.176000px;}
.wsf5{word-spacing:4.248000px;}
.ws8a{word-spacing:4.302720px;}
.ws76{word-spacing:4.320000px;}
.ws89{word-spacing:4.362480px;}
.wsb2{word-spacing:4.392000px;}
.ws53{word-spacing:4.464000px;}
.ws54{word-spacing:4.536000px;}
.ws114{word-spacing:4.541760px;}
.ws123{word-spacing:4.661280px;}
.ws83{word-spacing:4.752000px;}
.wsbe{word-spacing:4.780800px;}
.ws42{word-spacing:4.840560px;}
.wsd1{word-spacing:4.896000px;}
.wsd8{word-spacing:4.900320px;}
.wsf8{word-spacing:5.040000px;}
.ws43{word-spacing:5.079600px;}
.wsf7{word-spacing:5.112000px;}
.ws82{word-spacing:5.184000px;}
.wsc9{word-spacing:5.256000px;}
.ws44{word-spacing:5.258880px;}
.ws124{word-spacing:5.378400px;}
.ws13f{word-spacing:5.472000px;}
.wsb8{word-spacing:5.497920px;}
.ws108{word-spacing:5.557680px;}
.wsb7{word-spacing:5.617440px;}
.ws129{word-spacing:5.688000px;}
.wsd9{word-spacing:5.736960px;}
.wsee{word-spacing:5.760000px;}
.ws5c{word-spacing:5.796720px;}
.ws140{word-spacing:5.832000px;}
.wsf3{word-spacing:5.904000px;}
.wsed{word-spacing:5.976000px;}
.ws19{word-spacing:6.048000px;}
.wsbd{word-spacing:6.274800px;}
.ws8b{word-spacing:6.334560px;}
.wsfb{word-spacing:6.336000px;}
.wsb6{word-spacing:6.454080px;}
.ws152{word-spacing:6.480000px;}
.ws6d{word-spacing:6.513840px;}
.wse9{word-spacing:6.552000px;}
.ws13{word-spacing:6.624000px;}
.ws6e{word-spacing:6.693120px;}
.ws18{word-spacing:6.696000px;}
.ws8c{word-spacing:6.932160px;}
.wscd{word-spacing:6.991920px;}
.wsc0{word-spacing:7.051680px;}
.ws33{word-spacing:7.171200px;}
.wsbf{word-spacing:7.230960px;}
.wsf1{word-spacing:7.272000px;}
.ws34{word-spacing:7.290720px;}
.wsd5{word-spacing:7.344000px;}
.ws11e{word-spacing:7.410240px;}
.wsf2{word-spacing:7.416000px;}
.ws15e{word-spacing:7.488000px;}
.wsba{word-spacing:7.649280px;}
.wsbc{word-spacing:7.709040px;}
.ws102{word-spacing:7.768800px;}
.ws12a{word-spacing:7.776000px;}
.ws10c{word-spacing:7.920000px;}
.wsbb{word-spacing:7.948080px;}
.ws57{word-spacing:7.992000px;}
.ws59{word-spacing:8.064000px;}
.wsce{word-spacing:8.127360px;}
.ws58{word-spacing:8.136000px;}
.ws137{word-spacing:8.352000px;}
.ws1f{word-spacing:8.426160px;}
.ws31{word-spacing:8.485920px;}
.ws156{word-spacing:8.496000px;}
.ws157{word-spacing:8.568000px;}
.ws30{word-spacing:8.605440px;}
.wsa0{word-spacing:8.640000px;}
.ws112{word-spacing:8.712000px;}
.ws9f{word-spacing:8.784000px;}
.ws125{word-spacing:8.844480px;}
.wsa1{word-spacing:8.856000px;}
.ws100{word-spacing:9.072000px;}
.ws21{word-spacing:9.083520px;}
.ws101{word-spacing:9.216000px;}
.ws10e{word-spacing:9.432000px;}
.ws72{word-spacing:9.504000px;}
.ws20{word-spacing:9.561600px;}
.ws10d{word-spacing:9.576000px;}
.wsf4{word-spacing:9.648000px;}
.wsea{word-spacing:10.008000px;}
.wseb{word-spacing:10.224000px;}
.wsb0{word-spacing:10.296000px;}
.wsb1{word-spacing:10.440000px;}
.ws15{word-spacing:10.512000px;}
.ws3e{word-spacing:10.577520px;}
.ws3d{word-spacing:10.697040px;}
.ws11a{word-spacing:10.728000px;}
.ws127{word-spacing:10.756800px;}
.ws126{word-spacing:10.816560px;}
.ws3c{word-spacing:10.876320px;}
.wsd6{word-spacing:10.944000px;}
.ws17{word-spacing:11.016000px;}
.ws128{word-spacing:11.055600px;}
.ws55{word-spacing:11.088000px;}
.ws15f{word-spacing:11.232000px;}
.ws56{word-spacing:11.592000px;}
.ws97{word-spacing:11.593440px;}
.ws9e{word-spacing:11.664000px;}
.ws4f{word-spacing:11.736000px;}
.ws11b{word-spacing:12.096000px;}
.ws11c{word-spacing:12.240000px;}
.wse3{word-spacing:12.250800px;}
.ws120{word-spacing:12.384000px;}
.ws11f{word-spacing:12.456000px;}
.ws12c{word-spacing:13.032000px;}
.ws14a{word-spacing:13.104000px;}
.ws12b{word-spacing:13.176000px;}
.ws15a{word-spacing:13.392000px;}
.ws12d{word-spacing:13.896000px;}
.ws41{word-spacing:14.282640px;}
.ws78{word-spacing:14.544000px;}
.ws77{word-spacing:14.616000px;}
.ws13b{word-spacing:15.336000px;}
.ws13c{word-spacing:15.408000px;}
.ws9c{word-spacing:15.984000px;}
.ws9b{word-spacing:16.056000px;}
.ws15d{word-spacing:16.272000px;}
.ws15c{word-spacing:16.704000px;}
.ws159{word-spacing:16.992000px;}
.ws5a{word-spacing:17.424000px;}
.ws95{word-spacing:17.496000px;}
.wsde{word-spacing:17.568000px;}
.wsdf{word-spacing:18.144000px;}
.wsfd{word-spacing:18.792000px;}
.wsfe{word-spacing:18.864000px;}
.ws148{word-spacing:20.016000px;}
.ws147{word-spacing:20.304000px;}
.ws141{word-spacing:23.040000px;}
.ws14b{word-spacing:23.112000px;}
.ws142{word-spacing:23.184000px;}
.wsef{word-spacing:32.688000px;}
.ws40{word-spacing:35.497440px;}
.ws13e{word-spacing:49.176000px;}
._6{margin-left:-7.256160px;}
._e{margin-left:-4.360320px;}
._7{margin-left:-2.868480px;}
._0{margin-left:-1.015920px;}
._1{width:1.015920px;}
._b{width:2.085624px;}
._8{width:3.131424px;}
._5{width:4.559760px;}
._c{width:6.095520px;}
._9{width:7.709040px;}
._12{width:9.243360px;}
._a{width:10.363680px;}
._4{width:11.568240px;}
._14{width:13.761360px;}
._d{width:15.552000px;}
._11{width:19.296000px;}
._18{width:20.760480px;}
._17{width:23.928480px;}
._16{width:48.880080px;}
._3{width:304.536960px;}
._f{width:315.331200px;}
._13{width:324.974880px;}
._10{width:627.958080px;}
._2{width:709.829280px;}
._15{width:846.648000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:3.240000px;}
.y22b{bottom:3.600000px;}
.y273{bottom:4.140000px;}
.y9f{bottom:26.100000px;}
.y1a0{bottom:44.100000px;}
.y3{bottom:57.780000px;}
.y2b{bottom:75.960000px;}
.y2{bottom:79.016220px;}
.y2a{bottom:79.020000px;}
.y188{bottom:138.600000px;}
.y20a{bottom:165.594600px;}
.y120{bottom:165.597300px;}
.y27{bottom:165.780000px;}
.y2a4{bottom:169.200000px;}
.y209{bottom:183.597300px;}
.y26{bottom:187.347600px;}
.ydb{bottom:187.361100px;}
.y26d{bottom:187.363800px;}
.y24c{bottom:187.369200px;}
.ycf{bottom:187.371900px;}
.y69{bottom:187.374600px;}
.y56{bottom:187.377300px;}
.y11f{bottom:187.380000px;}
.y2a3{bottom:190.080000px;}
.y1e7{bottom:191.160000px;}
.y29a{bottom:193.140000px;}
.y17d{bottom:201.376620px;}
.y11e{bottom:201.597300px;}
.y276{bottom:201.780000px;}
.y25{bottom:205.350300px;}
.yda{bottom:205.363800px;}
.y26c{bottom:205.366500px;}
.y1e6{bottom:205.371900px;}
.yce{bottom:205.374600px;}
.y68{bottom:205.377300px;}
.y208{bottom:205.380000px;}
.y55{bottom:209.160000px;}
.y2a2{bottom:211.140000px;}
.y299{bottom:214.200000px;}
.y17c{bottom:219.379320px;}
.y165{bottom:219.439080px;}
.y14e{bottom:219.498840px;}
.y207{bottom:219.594600px;}
.y265{bottom:219.780000px;}
.y24{bottom:223.353000px;}
.yd9{bottom:223.366500px;}
.y9c{bottom:223.369200px;}
.y54{bottom:223.371900px;}
.y1e5{bottom:223.374600px;}
.ycd{bottom:223.377300px;}
.y11d{bottom:223.380000px;}
.y67{bottom:227.160000px;}
.y2a1{bottom:232.200000px;}
.y298{bottom:235.080000px;}
.y164{bottom:237.441780px;}
.y14d{bottom:237.501540px;}
.y11c{bottom:237.597300px;}
.y250{bottom:239.940000px;}
.y23{bottom:241.355700px;}
.yd8{bottom:241.369200px;}
.y9b{bottom:241.371900px;}
.y53{bottom:241.374600px;}
.y1e4{bottom:241.377300px;}
.y17b{bottom:241.878960px;}
.ycc{bottom:245.160000px;}
.y2a0{bottom:253.080000px;}
.y163{bottom:255.444480px;}
.y137{bottom:255.549060px;}
.y297{bottom:256.140000px;}
.y22{bottom:259.358400px;}
.yd7{bottom:259.371900px;}
.y9a{bottom:259.374600px;}
.y52{bottom:259.377300px;}
.y11b{bottom:259.380000px;}
.y17a{bottom:259.881660px;}
.y14c{bottom:260.001180px;}
.y264{bottom:261.491400px;}
.y24b{bottom:263.160000px;}
.y136{bottom:273.551760px;}
.y206{bottom:273.591900px;}
.y11a{bottom:273.597300px;}
.y29f{bottom:274.140000px;}
.y296{bottom:277.200000px;}
.y21{bottom:277.361100px;}
.y24a{bottom:277.369200px;}
.yd6{bottom:277.374600px;}
.y99{bottom:277.377300px;}
.y1e3{bottom:277.560000px;}
.y179{bottom:277.884360px;}
.y162{bottom:277.944120px;}
.y14b{bottom:278.003880px;}
.y263{bottom:279.494100px;}
.y51{bottom:281.160000px;}
.y20c{bottom:282.600000px;}
.y205{bottom:291.594600px;}
.y119{bottom:291.600000px;}
.y29e{bottom:295.200000px;}
.y7c{bottom:295.361100px;}
.y20{bottom:295.363800px;}
.y50{bottom:295.369200px;}
.y249{bottom:295.371900px;}
.yd5{bottom:295.377300px;}
.y19e{bottom:295.560000px;}
.y178{bottom:295.887060px;}
.y161{bottom:295.946820px;}
.y14a{bottom:296.006580px;}
.y135{bottom:296.051400px;}
.y262{bottom:297.496800px;}
.y295{bottom:298.080000px;}
.y98{bottom:299.160000px;}
.y204{bottom:309.597300px;}
.y118{bottom:309.780000px;}
.y7b{bottom:313.363800px;}
.y1f{bottom:313.366500px;}
.y26b{bottom:313.369200px;}
.y4f{bottom:313.371900px;}
.ycb{bottom:313.374600px;}
.y177{bottom:313.889760px;}
.y160{bottom:313.949520px;}
.y149{bottom:314.009280px;}
.y134{bottom:314.054100px;}
.y261{bottom:315.499500px;}
.y29d{bottom:316.080000px;}
.y97{bottom:317.160000px;}
.y294{bottom:319.140000px;}
.y7a{bottom:331.366500px;}
.y1e{bottom:331.369200px;}
.y26a{bottom:331.371900px;}
.y4e{bottom:331.374600px;}
.yca{bottom:331.377300px;}
.y203{bottom:331.380000px;}
.y176{bottom:331.892460px;}
.y15f{bottom:331.952220px;}
.y148{bottom:332.011980px;}
.y133{bottom:332.056800px;}
.y260{bottom:333.502200px;}
.y96{bottom:335.160000px;}
.y29c{bottom:337.140000px;}
.y1bb{bottom:339.603660px;}
.y293{bottom:340.200000px;}
.y202{bottom:345.780000px;}
.y79{bottom:349.369200px;}
.y1d{bottom:349.371900px;}
.y95{bottom:349.374600px;}
.y4d{bottom:349.377300px;}
.yc9{bottom:349.380000px;}
.y22c{bottom:349.560000px;}
.y175{bottom:349.895160px;}
.y15e{bottom:349.954920px;}
.y147{bottom:350.014680px;}
.y132{bottom:350.059500px;}
.y19d{bottom:351.360000px;}
.y25f{bottom:351.504900px;}
.y245{bottom:353.160000px;}
.y1d1{bottom:357.546600px;}
.y1ba{bottom:357.606360px;}
.y29b{bottom:358.200000px;}
.y292{bottom:361.080000px;}
.y251{bottom:363.600000px;}
.y117{bottom:364.860000px;}
.y244{bottom:367.369200px;}
.y78{bottom:367.371900px;}
.y1c{bottom:367.374600px;}
.y94{bottom:367.377300px;}
.yc8{bottom:367.560000px;}
.y174{bottom:367.897860px;}
.y15d{bottom:367.957620px;}
.y146{bottom:368.017380px;}
.y131{bottom:368.062200px;}
.y25e{bottom:369.507600px;}
.y4c{bottom:371.160000px;}
.y19c{bottom:372.420000px;}
.y1d0{bottom:375.549300px;}
.y271{bottom:379.080000px;}
.y1b9{bottom:380.106000px;}
.y291{bottom:382.140000px;}
.y4b{bottom:385.361100px;}
.y243{bottom:385.371900px;}
.y77{bottom:385.374600px;}
.y1b{bottom:385.377300px;}
.y173{bottom:385.900560px;}
.y116{bottom:385.920000px;}
.y15c{bottom:385.960320px;}
.y145{bottom:386.020080px;}
.y130{bottom:386.064900px;}
.y25d{bottom:387.510300px;}
.y93{bottom:389.160000px;}
.y19b{bottom:393.300000px;}
.y1cf{bottom:398.048940px;}
.y1b8{bottom:398.108700px;}
.y201{bottom:398.116620px;}
.y1fb{bottom:398.131560px;}
.y1f5{bottom:398.146500px;}
.y270{bottom:400.140000px;}
.y290{bottom:403.200000px;}
.y269{bottom:403.353000px;}
.y4a{bottom:403.363800px;}
.y248{bottom:403.369200px;}
.y92{bottom:403.374600px;}
.y76{bottom:403.377300px;}
.y22a{bottom:403.560000px;}
.y172{bottom:403.903260px;}
.y15b{bottom:403.963020px;}
.y144{bottom:404.022780px;}
.y12f{bottom:404.067600px;}
.y25c{bottom:405.513000px;}
.yc7{bottom:406.800000px;}
.y1a{bottom:407.160000px;}
.y19a{bottom:414.360000px;}
.y1ce{bottom:416.051640px;}
.y1b7{bottom:416.111400px;}
.y200{bottom:416.119320px;}
.y1fa{bottom:416.134260px;}
.y1f4{bottom:416.149200px;}
.y26f{bottom:421.200000px;}
.y268{bottom:421.355700px;}
.y49{bottom:421.366500px;}
.y19{bottom:421.369200px;}
.y247{bottom:421.371900px;}
.y91{bottom:421.377300px;}
.y66{bottom:421.560000px;}
.y171{bottom:421.905960px;}
.y15a{bottom:421.965720px;}
.y143{bottom:422.025480px;}
.y12e{bottom:422.070300px;}
.y25b{bottom:423.515700px;}
.y28f{bottom:424.080000px;}
.y229{bottom:425.157300px;}
.y75{bottom:425.160000px;}
.yc6{bottom:427.860000px;}
.y1cd{bottom:434.054340px;}
.y1b6{bottom:434.114100px;}
.y1ff{bottom:434.122020px;}
.y1f9{bottom:434.136960px;}
.y1f3{bottom:434.151900px;}
.y199{bottom:435.420000px;}
.y267{bottom:439.358400px;}
.y48{bottom:439.369200px;}
.y18{bottom:439.371900px;}
.y246{bottom:439.374600px;}
.yd4{bottom:439.560000px;}
.y170{bottom:439.908660px;}
.y159{bottom:439.968420px;}
.y142{bottom:440.028180px;}
.y12d{bottom:440.073000px;}
.y25a{bottom:441.518400px;}
.y26e{bottom:442.080000px;}
.y74{bottom:443.160000px;}
.y28e{bottom:445.140000px;}
.y1e2{bottom:447.500340px;}
.y115{bottom:448.920000px;}
.y1cc{bottom:452.057040px;}
.y1b5{bottom:452.116800px;}
.y1fe{bottom:452.124720px;}
.y1f8{bottom:452.139660px;}
.y1f2{bottom:452.154600px;}
.y198{bottom:456.300000px;}
.y90{bottom:457.361100px;}
.y47{bottom:457.371900px;}
.y17{bottom:457.374600px;}
.y73{bottom:457.377300px;}
.y242{bottom:457.560000px;}
.y16f{bottom:457.911360px;}
.y158{bottom:457.971120px;}
.y141{bottom:458.030880px;}
.y12c{bottom:458.075700px;}
.y227{bottom:458.280000px;}
.y259{bottom:459.521100px;}
.yd3{bottom:463.140000px;}
.y1e1{bottom:465.503040px;}
.yc5{bottom:465.568200px;}
.y28d{bottom:466.200000px;}
.y228{bottom:466.380000px;}
.y114{bottom:469.800000px;}
.y1cb{bottom:470.059740px;}
.y1b4{bottom:470.119500px;}
.y1fd{bottom:470.127420px;}
.y1f7{bottom:470.142360px;}
.y1f1{bottom:470.157300px;}
.y8f{bottom:475.363800px;}
.y46{bottom:475.374600px;}
.y16{bottom:475.377300px;}
.y16e{bottom:475.914060px;}
.y157{bottom:475.973820px;}
.y140{bottom:476.033580px;}
.y12b{bottom:476.078400px;}
.y197{bottom:477.360000px;}
.y258{bottom:477.523800px;}
.y72{bottom:479.160000px;}
.yc4{bottom:483.570900px;}
.yd2{bottom:484.200000px;}
.y28c{bottom:487.080000px;}
.y1e0{bottom:488.002680px;}
.y1ca{bottom:488.062440px;}
.y1b3{bottom:488.122200px;}
.y1fc{bottom:488.130120px;}
.y1f6{bottom:488.145060px;}
.y1f0{bottom:488.160000px;}
.y113{bottom:490.860000px;}
.y8e{bottom:493.366500px;}
.y45{bottom:493.377300px;}
.y71{bottom:493.560000px;}
.y16d{bottom:493.916760px;}
.y156{bottom:493.976520px;}
.y13f{bottom:494.036280px;}
.y12a{bottom:494.081100px;}
.y257{bottom:495.526500px;}
.y15{bottom:497.160000px;}
.y196{bottom:498.420000px;}
.yb7{bottom:501.603480px;}
.yd1{bottom:505.080000px;}
.y1df{bottom:506.005380px;}
.y1c9{bottom:506.065140px;}
.yc3{bottom:506.070540px;}
.y1b2{bottom:506.124900px;}
.y1ee{bottom:507.780000px;}
.y28b{bottom:508.140000px;}
.y241{bottom:509.580000px;}
.y8d{bottom:511.369200px;}
.y14{bottom:511.377300px;}
.y44{bottom:511.380000px;}
.y16c{bottom:511.919460px;}
.y112{bottom:511.920000px;}
.y155{bottom:511.979220px;}
.y13e{bottom:512.038980px;}
.y129{bottom:512.083800px;}
.y226{bottom:512.640000px;}
.y256{bottom:513.529200px;}
.y1ef{bottom:515.880000px;}
.y195{bottom:519.300000px;}
.yb6{bottom:519.606180px;}
.yab{bottom:519.636060px;}
.y1de{bottom:524.008080px;}
.y1c8{bottom:524.067840px;}
.yc2{bottom:524.073240px;}
.y1b1{bottom:524.127600px;}
.y1ed{bottom:524.880000px;}
.yd0{bottom:526.140000px;}
.y28a{bottom:529.200000px;}
.y8c{bottom:529.371900px;}
.y43{bottom:529.560000px;}
.y16b{bottom:529.922160px;}
.y154{bottom:529.981920px;}
.y13d{bottom:530.041680px;}
.y128{bottom:530.086500px;}
.y240{bottom:530.640000px;}
.y255{bottom:531.531900px;}
.y111{bottom:532.800000px;}
.y13{bottom:533.160000px;}
.y225{bottom:533.700000px;}
.y194{bottom:540.360000px;}
.y1dd{bottom:542.010780px;}
.y1c7{bottom:542.070540px;}
.yc1{bottom:542.075940px;}
.yb5{bottom:542.105820px;}
.y1b0{bottom:542.130300px;}
.yaa{bottom:542.135700px;}
.y65{bottom:547.200000px;}
.y12{bottom:547.366500px;}
.y8b{bottom:547.374600px;}
.y16a{bottom:547.924860px;}
.y153{bottom:547.984620px;}
.y13c{bottom:548.044380px;}
.y127{bottom:548.089200px;}
.y254{bottom:549.534600px;}
.y289{bottom:550.080000px;}
.y23f{bottom:551.700000px;}
.y110{bottom:553.860000px;}
.y224{bottom:554.580000px;}
.y1dc{bottom:560.013480px;}
.y1c6{bottom:560.073240px;}
.yc0{bottom:560.078640px;}
.yb4{bottom:560.108520px;}
.y1af{bottom:560.133000px;}
.ya9{bottom:560.138400px;}
.y1ec{bottom:562.140000px;}
.y42{bottom:565.200000px;}
.y11{bottom:565.369200px;}
.y8a{bottom:565.377300px;}
.y169{bottom:565.927560px;}
.y152{bottom:565.987320px;}
.y13b{bottom:566.047080px;}
.y126{bottom:566.091900px;}
.y187{bottom:567.000000px;}
.y253{bottom:567.537300px;}
.y64{bottom:568.080000px;}
.y288{bottom:571.140000px;}
.y23e{bottom:572.580000px;}
.y10f{bottom:574.920000px;}
.y191{bottom:575.094600px;}
.y223{bottom:575.640000px;}
.y1db{bottom:578.016180px;}
.y1c5{bottom:578.075940px;}
.ybf{bottom:578.081340px;}
.yb3{bottom:578.111220px;}
.y1ae{bottom:578.135700px;}
.ya8{bottom:578.141100px;}
.y1eb{bottom:583.200000px;}
.y10{bottom:583.371900px;}
.y168{bottom:583.930260px;}
.y151{bottom:583.990020px;}
.y13a{bottom:584.049780px;}
.y125{bottom:584.094600px;}
.y252{bottom:585.540000px;}
.y41{bottom:586.080000px;}
.y89{bottom:587.160000px;}
.y63{bottom:589.140000px;}
.y287{bottom:592.200000px;}
.y190{bottom:593.097300px;}
.y23d{bottom:593.640000px;}
.y10e{bottom:595.800000px;}
.y1da{bottom:596.018880px;}
.y1c4{bottom:596.078640px;}
.ybe{bottom:596.084040px;}
.yb2{bottom:596.113920px;}
.y1ad{bottom:596.138400px;}
.ya7{bottom:596.143800px;}
.y222{bottom:596.700000px;}
.yf{bottom:601.374600px;}
.y266{bottom:601.560000px;}
.y167{bottom:601.932960px;}
.y150{bottom:601.992720px;}
.y139{bottom:602.052480px;}
.y124{bottom:602.097300px;}
.y1ea{bottom:604.080000px;}
.y88{bottom:605.160000px;}
.y40{bottom:607.140000px;}
.y62{bottom:610.200000px;}
.y193{bottom:611.097300px;}
.y18f{bottom:611.100000px;}
.y286{bottom:613.080000px;}
.y1d9{bottom:614.021580px;}
.y1c3{bottom:614.081340px;}
.ybd{bottom:614.086740px;}
.yb1{bottom:614.116620px;}
.y1ac{bottom:614.141100px;}
.ya6{bottom:614.146500px;}
.y23c{bottom:614.700000px;}
.y10d{bottom:616.860000px;}
.y221{bottom:617.580000px;}
.y24e{bottom:618.660000px;}
.ye{bottom:619.377300px;}
.y87{bottom:619.560000px;}
.y166{bottom:619.935660px;}
.y14f{bottom:619.995420px;}
.y138{bottom:620.055180px;}
.y123{bottom:620.100000px;}
.y1e9{bottom:625.140000px;}
.y24f{bottom:626.760000px;}
.y3f{bottom:628.200000px;}
.y18c{bottom:629.097300px;}
.y192{bottom:629.100000px;}
.y61{bottom:631.080000px;}
.y1d8{bottom:632.024280px;}
.y1c2{bottom:632.084040px;}
.ybc{bottom:632.089440px;}
.yb0{bottom:632.119320px;}
.y1ab{bottom:632.143800px;}
.ya5{bottom:632.149200px;}
.y18e{bottom:633.591900px;}
.y285{bottom:634.140000px;}
.y23b{bottom:635.580000px;}
.yd{bottom:637.380000px;}
.y10c{bottom:637.920000px;}
.y220{bottom:638.640000px;}
.y121{bottom:639.720000px;}
.y86{bottom:646.200000px;}
.y18b{bottom:647.100000px;}
.y122{bottom:647.820000px;}
.y1d7{bottom:650.026980px;}
.y1c1{bottom:650.086740px;}
.ybb{bottom:650.092140px;}
.yaf{bottom:650.122020px;}
.y1aa{bottom:650.146500px;}
.ya4{bottom:650.151900px;}
.y18d{bottom:651.594600px;}
.y60{bottom:652.140000px;}
.y284{bottom:655.200000px;}
.yc{bottom:655.560000px;}
.y23a{bottom:656.640000px;}
.y3e{bottom:657.529200px;}
.y21f{bottom:659.700000px;}
.y85{bottom:667.080000px;}
.y1d6{bottom:668.029680px;}
.y1c0{bottom:668.089440px;}
.yba{bottom:668.094840px;}
.yae{bottom:668.124720px;}
.y1a9{bottom:668.149200px;}
.ya3{bottom:668.154600px;}
.y18a{bottom:669.597300px;}
.y10b{bottom:672.636060px;}
.y24d{bottom:673.020000px;}
.y5f{bottom:673.200000px;}
.y3d{bottom:675.531900px;}
.y283{bottom:676.080000px;}
.y239{bottom:677.700000px;}
.y21e{bottom:680.580000px;}
.y1d5{bottom:686.032380px;}
.y1bf{bottom:686.092140px;}
.yb9{bottom:686.097540px;}
.yad{bottom:686.127420px;}
.y1a8{bottom:686.151900px;}
.ya2{bottom:686.157300px;}
.y189{bottom:687.600000px;}
.yb{bottom:688.140000px;}
.y10a{bottom:690.638760px;}
.yf3{bottom:690.654960px;}
.y3c{bottom:693.534600px;}
.y5e{bottom:694.080000px;}
.y282{bottom:697.140000px;}
.y238{bottom:698.580000px;}
.y21d{bottom:701.640000px;}
.y1d4{bottom:704.035080px;}
.y1be{bottom:704.094840px;}
.yb8{bottom:704.100240px;}
.yac{bottom:704.130120px;}
.y1a7{bottom:704.154600px;}
.ya1{bottom:704.160000px;}
.yfe{bottom:708.627780px;}
.yf2{bottom:708.657660px;}
.ya{bottom:709.200000px;}
.y3b{bottom:711.537300px;}
.y109{bottom:713.138400px;}
.y5d{bottom:715.140000px;}
.y281{bottom:718.200000px;}
.y237{bottom:719.640000px;}
.y185{bottom:720.720000px;}
.y1d3{bottom:722.037780px;}
.y1bd{bottom:722.097540px;}
.y1a6{bottom:722.157300px;}
.y9e{bottom:723.780000px;}
.yfd{bottom:726.630480px;}
.ye7{bottom:726.638760px;}
.y20b{bottom:728.280000px;}
.y186{bottom:728.820000px;}
.y3a{bottom:729.540000px;}
.y9{bottom:730.080000px;}
.y108{bottom:731.141100px;}
.yf1{bottom:731.157300px;}
.ya0{bottom:731.880000px;}
.y70{bottom:736.200000px;}
.y21c{bottom:736.377300px;}
.y184{bottom:737.820000px;}
.y9d{bottom:738.540000px;}
.y1e8{bottom:739.080000px;}
.y1d2{bottom:740.040480px;}
.y1bc{bottom:740.100240px;}
.y1a5{bottom:740.160000px;}
.y236{bottom:740.700000px;}
.yfc{bottom:744.633180px;}
.ye6{bottom:744.641460px;}
.y5c{bottom:744.646500px;}
.yf0{bottom:749.123460px;}
.y107{bottom:749.143800px;}
.y8{bottom:751.140000px;}
.y21b{bottom:754.380000px;}
.y39{bottom:757.080000px;}
.y19f{bottom:759.780000px;}
.y280{bottom:760.140000px;}
.y235{bottom:761.580000px;}
.y5b{bottom:762.649200px;}
.yef{bottom:767.126160px;}
.yfb{bottom:767.132820px;}
.ye5{bottom:767.141100px;}
.y106{bottom:767.146500px;}
.y1a2{bottom:767.877300px;}
.y183{bottom:770.016240px;}
.y182{bottom:770.031180px;}
.y7{bottom:772.200000px;}
.y21a{bottom:776.847600px;}
.y1a4{bottom:776.877300px;}
.y38{bottom:778.140000px;}
.y181{bottom:779.040000px;}
.y5a{bottom:780.651900px;}
.y27f{bottom:781.200000px;}
.y234{bottom:782.640000px;}
.yee{bottom:785.128860px;}
.yfa{bottom:785.135520px;}
.ye4{bottom:785.143800px;}
.y105{bottom:785.149200px;}
.y1a1{bottom:785.880000px;}
.y84{bottom:793.080000px;}
.y219{bottom:794.850300px;}
.y1a3{bottom:794.880000px;}
.y59{bottom:798.654600px;}
.y37{bottom:799.200000px;}
.y27e{bottom:802.080000px;}
.yed{bottom:803.131560px;}
.yf9{bottom:803.138220px;}
.ye3{bottom:803.146500px;}
.y104{bottom:803.151900px;}
.y233{bottom:803.700000px;}
.y17f{bottom:807.660000px;}
.y6{bottom:811.080000px;}
.y218{bottom:812.853000px;}
.y83{bottom:814.140000px;}
.y180{bottom:815.760000px;}
.y58{bottom:816.657300px;}
.y36{bottom:820.080000px;}
.yec{bottom:821.134260px;}
.yf8{bottom:821.140920px;}
.ye2{bottom:821.149200px;}
.y103{bottom:821.154600px;}
.y27d{bottom:823.140000px;}
.y232{bottom:824.580000px;}
.y217{bottom:830.855700px;}
.y57{bottom:834.660000px;}
.y82{bottom:835.200000px;}
.yeb{bottom:839.136960px;}
.yf7{bottom:839.143620px;}
.ye1{bottom:839.151900px;}
.y102{bottom:839.157300px;}
.y35{bottom:841.140000px;}
.y27c{bottom:844.200000px;}
.y231{bottom:845.640000px;}
.y216{bottom:848.858400px;}
.y6f{bottom:849.586500px;}
.y81{bottom:856.080000px;}
.y101{bottom:857.116440px;}
.yea{bottom:857.139660px;}
.yf6{bottom:857.146320px;}
.ye0{bottom:857.154600px;}
.y17e{bottom:862.020000px;}
.y34{bottom:862.200000px;}
.y27b{bottom:865.080000px;}
.y215{bottom:866.861100px;}
.y6e{bottom:867.589200px;}
.y5{bottom:869.401080px;}
.y22d{bottom:872.280000px;}
.y275{bottom:872.460000px;}
.y100{bottom:875.119140px;}
.ye9{bottom:875.142360px;}
.yf5{bottom:875.149020px;}
.ydf{bottom:875.157300px;}
.y80{bottom:877.140000px;}
.y230{bottom:880.380000px;}
.y33{bottom:883.080000px;}
.y214{bottom:884.863800px;}
.y6d{bottom:885.591900px;}
.y27a{bottom:886.140000px;}
.y274{bottom:892.260000px;}
.yff{bottom:893.121840px;}
.ye8{bottom:893.145060px;}
.yf4{bottom:893.151720px;}
.yde{bottom:893.160000px;}
.y4{bottom:896.400000px;}
.y7f{bottom:898.200000px;}
.y213{bottom:902.866500px;}
.y6c{bottom:903.594600px;}
.y32{bottom:904.140000px;}
.y272{bottom:905.940000px;}
.y279{bottom:907.200000px;}
.ydc{bottom:912.780000px;}
.y22f{bottom:916.377300px;}
.y211{bottom:916.380000px;}
.y7e{bottom:919.080000px;}
.y212{bottom:920.869200px;}
.ydd{bottom:920.880000px;}
.y6b{bottom:921.597300px;}
.y31{bottom:925.200000px;}
.y278{bottom:928.080000px;}
.y22e{bottom:934.380000px;}
.y210{bottom:938.871900px;}
.y6a{bottom:939.600000px;}
.y30{bottom:946.080000px;}
.y7d{bottom:949.140000px;}
.y20f{bottom:956.874600px;}
.y2f{bottom:967.140000px;}
.y277{bottom:970.200000px;}
.y20e{bottom:974.877300px;}
.y2e{bottom:988.200000px;}
.y20d{bottom:992.880000px;}
.y2d{bottom:1009.080000px;}
.y29{bottom:1078.380000px;}
.y28{bottom:1100.160000px;}
.y1{bottom:1120.140000px;}
.h9{height:17.098500px;}
.hd{height:40.500000px;}
.h18{height:54.000000px;}
.h1b{height:57.058500px;}
.h16{height:58.500000px;}
.h7{height:60.542930px;}
.h2{height:69.943711px;}
.h8{height:70.664062px;}
.h1{height:75.662930px;}
.hc{height:75.673730px;}
.ha{height:75.695330px;}
.hb{height:75.716930px;}
.hf{height:75.809090px;}
.h10{height:75.837170px;}
.h3{height:76.824000px;}
.h5{height:84.269531px;}
.h6{height:91.160156px;}
.he{height:102.302930px;}
.h12{height:103.022930px;}
.h4{height:106.657383px;}
.h13{height:111.638450px;}
.h11{height:111.662930px;}
.h14{height:147.613970px;}
.h15{height:153.000000px;}
.h19{height:153.001500px;}
.h17{height:297.000000px;}
.h1a{height:378.000000px;}
.h0{height:1188.000000px;}
.w9{width:21.240000px;}
.w10{width:22.320000px;}
.wd{width:22.680000px;}
.wb{width:23.040000px;}
.wa{width:23.220000px;}
.w11{width:23.760000px;}
.w6{width:23.940000px;}
.w18{width:24.660000px;}
.w17{width:25.020000px;}
.w3{width:25.200000px;}
.w2{width:25.560000px;}
.w14{width:25.920000px;}
.w1{width:26.100000px;}
.w4{width:26.460000px;}
.w8{width:147.600000px;}
.w7{width:147.601500px;}
.w12{width:190.980000px;}
.w5{width:193.678500px;}
.wf{width:196.918500px;}
.wc{width:196.920000px;}
.we{width:197.100000px;}
.w13{width:201.240000px;}
.w15{width:202.500000px;}
.w16{width:398.340000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:7.740000px;}
.x16{left:13.680000px;}
.x13{left:24.120000px;}
.x10{left:37.980000px;}
.xc{left:46.980000px;}
.x26{left:48.600000px;}
.x2b{left:50.760000px;}
.x28{left:59.760000px;}
.x1{left:162.000000px;}
.x2d{left:169.200000px;}
.x18{left:170.460000px;}
.x5{left:175.505760px;}
.xa{left:182.520000px;}
.x8{left:189.000000px;}
.x1c{left:190.440000px;}
.x11{left:193.140000px;}
.x24{left:200.160000px;}
.x31{left:204.300000px;}
.x29{left:206.100000px;}
.x9{left:216.000000px;}
.x1f{left:235.614960px;}
.x4{left:242.647380px;}
.x3{left:293.760000px;}
.x6{left:300.960000px;}
.x2{left:309.577320px;}
.x12{left:311.040000px;}
.x19{left:318.784320px;}
.x14{left:342.540000px;}
.x2e{left:353.340000px;}
.x25{left:360.360000px;}
.x30{left:364.500000px;}
.x22{left:368.101260px;}
.xe{left:369.914220px;}
.x20{left:409.140000px;}
.x21{left:416.341080px;}
.x15{left:459.360000px;}
.x1a{left:467.107380px;}
.x17{left:528.480000px;}
.x2a{left:555.300000px;}
.xb{left:556.560000px;}
.x27{left:558.000000px;}
.x2f{left:563.040000px;}
.xf{left:564.313500px;}
.x23{left:565.921800px;}
.x2c{left:601.740000px;}
.x1e{left:607.680000px;}
.xd{left:613.620000px;}
.x1b{left:615.416760px;}
.x7{left:738.720000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:23.680000pt;}
.v5{vertical-align:32.000000pt;}
.ls43{letter-spacing:-0.896000pt;}
.ls69{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls85{letter-spacing:-0.640000pt;}
.ls5b{letter-spacing:-0.576000pt;}
.ls59{letter-spacing:-0.531200pt;}
.ls57{letter-spacing:-0.448000pt;}
.ls49{letter-spacing:-0.384000pt;}
.ls71{letter-spacing:-0.371840pt;}
.ls4b{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.318720pt;}
.ls58{letter-spacing:-0.265600pt;}
.ls4c{letter-spacing:-0.257280pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.212480pt;}
.ls7b{letter-spacing:-0.202240pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls38{letter-spacing:-0.159360pt;}
.ls2d{letter-spacing:-0.151680pt;}
.ls12{letter-spacing:-0.149760pt;}
.ls42{letter-spacing:-0.138240pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.106240pt;}
.ls4f{letter-spacing:-0.103680pt;}
.ls2e{letter-spacing:-0.101120pt;}
.ls13{letter-spacing:-0.074880pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.053120pt;}
.lsf{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.010240pt;}
.ls40{letter-spacing:0.015936pt;}
.ls0{letter-spacing:0.022464pt;}
.ls35{letter-spacing:0.031872pt;}
.ls48{letter-spacing:0.037184pt;}
.ls5e{letter-spacing:0.042880pt;}
.ls33{letter-spacing:0.043520pt;}
.ls24{letter-spacing:0.049920pt;}
.ls11{letter-spacing:0.053120pt;}
.ls67{letter-spacing:0.057600pt;}
.ls2b{letter-spacing:0.064000pt;}
.ls36{letter-spacing:0.067840pt;}
.ls82{letter-spacing:0.070400pt;}
.ls6c{letter-spacing:0.085760pt;}
.ls21{letter-spacing:0.092800pt;}
.ls1b{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.121600pt;}
.lsa{letter-spacing:0.122880pt;}
.ls6f{letter-spacing:0.128000pt;}
.ls41{letter-spacing:0.128640pt;}
.ls5d{letter-spacing:0.138240pt;}
.ls79{letter-spacing:0.151680pt;}
.ls1a{letter-spacing:0.159360pt;}
.ls16{letter-spacing:0.192000pt;}
.ls7c{letter-spacing:0.202240pt;}
.lse{letter-spacing:0.212480pt;}
.ls31{letter-spacing:0.234240pt;}
.ls7e{letter-spacing:0.240640pt;}
.ls7a{letter-spacing:0.252800pt;}
.ls4a{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.265600pt;}
.ls28{letter-spacing:0.279040pt;}
.ls6d{letter-spacing:0.311040pt;}
.ls27{letter-spacing:0.312320pt;}
.ls25{letter-spacing:0.313600pt;}
.ls4d{letter-spacing:0.318720pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7f{letter-spacing:0.326400pt;}
.ls3d{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.424960pt;}
.ls75{letter-spacing:0.435584pt;}
.ls81{letter-spacing:0.448000pt;}
.ls3f{letter-spacing:0.499200pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls54{letter-spacing:0.568384pt;}
.ls3c{letter-spacing:0.576000pt;}
.ls55{letter-spacing:0.579008pt;}
.ls2c{letter-spacing:0.584320pt;}
.ls4e{letter-spacing:0.637440pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls72{letter-spacing:0.690560pt;}
.ls80{letter-spacing:0.704000pt;}
.ls39{letter-spacing:0.743680pt;}
.ls83{letter-spacing:0.819200pt;}
.ls44{letter-spacing:0.849920pt;}
.ls76{letter-spacing:1.209600pt;}
.ls34{letter-spacing:1.216000pt;}
.lsb{letter-spacing:1.274880pt;}
.ls2f{letter-spacing:1.856000pt;}
.ls53{letter-spacing:1.912320pt;}
.ls78{letter-spacing:1.920000pt;}
.ls51{letter-spacing:2.496000pt;}
.ls8{letter-spacing:2.549760pt;}
.ls23{letter-spacing:2.560000pt;}
.ls70{letter-spacing:2.671936pt;}
.ls46{letter-spacing:2.944000pt;}
.ls32{letter-spacing:3.136000pt;}
.lsd{letter-spacing:3.187200pt;}
.ls20{letter-spacing:3.200000pt;}
.ls1f{letter-spacing:3.776000pt;}
.lsc{letter-spacing:3.824640pt;}
.ls77{letter-spacing:4.409600pt;}
.ls50{letter-spacing:4.416000pt;}
.ls5a{letter-spacing:4.462080pt;}
.ls65{letter-spacing:5.056000pt;}
.ls3b{letter-spacing:5.099520pt;}
.ls5{letter-spacing:5.696000pt;}
.ls37{letter-spacing:5.736960pt;}
.ls5f{letter-spacing:6.336000pt;}
.ls56{letter-spacing:6.374400pt;}
.ls22{letter-spacing:6.976000pt;}
.ls47{letter-spacing:7.011840pt;}
.ls3e{letter-spacing:7.616000pt;}
.ls74{letter-spacing:7.702400pt;}
.ls6e{letter-spacing:8.256000pt;}
.ls7{letter-spacing:8.339840pt;}
.ls45{letter-spacing:8.896000pt;}
.ls4{letter-spacing:9.536000pt;}
.ls1{letter-spacing:10.176000pt;}
.ls73{letter-spacing:10.816000pt;}
.ls5c{letter-spacing:10.889600pt;}
.ls30{letter-spacing:12.736000pt;}
.ls84{letter-spacing:14.656000pt;}
.ls3a{letter-spacing:15.296000pt;}
.ls7d{letter-spacing:20.416000pt;}
.ls63{letter-spacing:62.734720pt;}
.ls52{letter-spacing:168.921600pt;}
.ls61{letter-spacing:213.754880pt;}
.ls6b{letter-spacing:267.459200pt;}
.ls62{letter-spacing:271.974400pt;}
.ls60{letter-spacing:280.241280pt;}
.ls66{letter-spacing:304.590080pt;}
.ls6a{letter-spacing:325.041280pt;}
.ls64{letter-spacing:332.144000pt;}
.ls68{letter-spacing:333.381120pt;}
.ws91{word-spacing:-64.000000pt;}
.wscf{word-spacing:-16.064000pt;}
.ws145{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsa5{word-spacing:-15.680000pt;}
.ws48{word-spacing:-15.616000pt;}
.ws132{word-spacing:-15.552000pt;}
.ws49{word-spacing:-15.488000pt;}
.ws47{word-spacing:-15.424000pt;}
.ws8d{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.296000pt;}
.ws3{word-spacing:-15.232000pt;}
.ws6{word-spacing:-15.168000pt;}
.wsa3{word-spacing:-15.104000pt;}
.wsc1{word-spacing:-14.976000pt;}
.ws109{word-spacing:-14.848000pt;}
.ws93{word-spacing:-13.651840pt;}
.wsa7{word-spacing:-13.492480pt;}
.wsa8{word-spacing:-13.439360pt;}
.wsdb{word-spacing:-13.386240pt;}
.wsc2{word-spacing:-13.333120pt;}
.wsc3{word-spacing:-13.280000pt;}
.wse7{word-spacing:-13.226880pt;}
.wsa6{word-spacing:-13.120640pt;}
.ws8f{word-spacing:-13.067520pt;}
.ws0{word-spacing:-13.014400pt;}
.wsc{word-spacing:-12.961280pt;}
.wsb{word-spacing:-12.908160pt;}
.ws2{word-spacing:-12.855040pt;}
.ws9{word-spacing:-12.801920pt;}
.ws92{word-spacing:-12.748800pt;}
.ws8{word-spacing:-12.695680pt;}
.wsc5{word-spacing:-12.642560pt;}
.ws1{word-spacing:-12.589440pt;}
.wsc4{word-spacing:-12.536320pt;}
.wsd{word-spacing:-12.483200pt;}
.ws12e{word-spacing:-12.437760pt;}
.ws10a{word-spacing:-12.430080pt;}
.ws4b{word-spacing:-12.083840pt;}
.ws4a{word-spacing:-12.033280pt;}
.ws8e{word-spacing:-10.462720pt;}
.ws104{word-spacing:-10.419840pt;}
.wsdd{word-spacing:-10.376960pt;}
.ws7{word-spacing:-10.334080pt;}
.wsa4{word-spacing:-10.076800pt;}
.ws105{word-spacing:-8.640000pt;}
.wsdc{word-spacing:-8.467200pt;}
.wsa{word-spacing:-8.328960pt;}
.wsa9{word-spacing:-8.225280pt;}
.ws90{word-spacing:-8.190720pt;}
.wsd7{word-spacing:-4.224000pt;}
.ws134{word-spacing:-4.096000pt;}
.wsd0{word-spacing:-3.712000pt;}
.ws106{word-spacing:-3.584000pt;}
.wsc6{word-spacing:-3.456000pt;}
.ws146{word-spacing:-3.328000pt;}
.ws14d{word-spacing:-3.264000pt;}
.ws110{word-spacing:-3.200000pt;}
.ws121{word-spacing:-3.187200pt;}
.ws113{word-spacing:-3.134080pt;}
.wsae{word-spacing:-3.072000pt;}
.ws5e{word-spacing:-3.008000pt;}
.wsc8{word-spacing:-2.944000pt;}
.ws118{word-spacing:-2.880000pt;}
.ws136{word-spacing:-2.816000pt;}
.wse6{word-spacing:-2.762240pt;}
.ws1e{word-spacing:-2.709120pt;}
.ws116{word-spacing:-2.688000pt;}
.ws7c{word-spacing:-2.656000pt;}
.ws160{word-spacing:-2.624000pt;}
.ws138{word-spacing:-2.560000pt;}
.wse4{word-spacing:-2.549760pt;}
.wsb9{word-spacing:-2.496640pt;}
.ws158{word-spacing:-2.496000pt;}
.wsd2{word-spacing:-2.432000pt;}
.wsff{word-spacing:-2.368000pt;}
.wse5{word-spacing:-2.337280pt;}
.wsb3{word-spacing:-2.304000pt;}
.ws133{word-spacing:-2.176000pt;}
.ws64{word-spacing:-2.124800pt;}
.ws65{word-spacing:-2.071680pt;}
.ws153{word-spacing:-2.048000pt;}
.ws11d{word-spacing:-2.018560pt;}
.wsd4{word-spacing:-1.984000pt;}
.wsda{word-spacing:-1.912320pt;}
.wsa2{word-spacing:-1.859200pt;}
.ws155{word-spacing:-1.856000pt;}
.wsc7{word-spacing:-1.792000pt;}
.ws94{word-spacing:-1.728000pt;}
.ws103{word-spacing:-1.699840pt;}
.ws115{word-spacing:-1.664000pt;}
.ws151{word-spacing:-1.536000pt;}
.ws23{word-spacing:-1.487360pt;}
.ws71{word-spacing:-1.434240pt;}
.ws154{word-spacing:-1.408000pt;}
.ws67{word-spacing:-1.381120pt;}
.wse8{word-spacing:-1.344000pt;}
.ws26{word-spacing:-1.274880pt;}
.ws7b{word-spacing:-1.221760pt;}
.wsf6{word-spacing:-1.216000pt;}
.ws70{word-spacing:-1.168640pt;}
.ws1a{word-spacing:-1.152000pt;}
.wsb4{word-spacing:-1.088000pt;}
.ws24{word-spacing:-1.062400pt;}
.ws50{word-spacing:-1.024000pt;}
.ws107{word-spacing:-0.896000pt;}
.ws2f{word-spacing:-0.849920pt;}
.ws63{word-spacing:-0.796800pt;}
.ws135{word-spacing:-0.768000pt;}
.ws46{word-spacing:-0.743680pt;}
.ws10f{word-spacing:-0.704000pt;}
.ws51{word-spacing:-0.640000pt;}
.ws7d{word-spacing:-0.637440pt;}
.ws37{word-spacing:-0.584320pt;}
.wse2{word-spacing:-0.576000pt;}
.ws6f{word-spacing:-0.531200pt;}
.ws5b{word-spacing:-0.512000pt;}
.ws52{word-spacing:-0.448000pt;}
.ws45{word-spacing:-0.424960pt;}
.ws12{word-spacing:-0.384000pt;}
.wsaa{word-spacing:-0.320000pt;}
.ws6c{word-spacing:-0.265600pt;}
.wsac{word-spacing:-0.256000pt;}
.wse{word-spacing:-0.212480pt;}
.ws131{word-spacing:-0.202240pt;}
.ws9d{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.159360pt;}
.ws12f{word-spacing:-0.151680pt;}
.ws10{word-spacing:-0.149760pt;}
.ws1c{word-spacing:-0.128000pt;}
.ws25{word-spacing:-0.106240pt;}
.ws11{word-spacing:-0.074880pt;}
.wse0{word-spacing:-0.064000pt;}
.ws22{word-spacing:-0.053120pt;}
.wsf{word-spacing:0.000000pt;}
.ws27{word-spacing:0.053120pt;}
.ws4e{word-spacing:0.064000pt;}
.ws1d{word-spacing:0.106240pt;}
.ws4c{word-spacing:0.128000pt;}
.ws87{word-spacing:0.159360pt;}
.ws4d{word-spacing:0.192000pt;}
.ws130{word-spacing:0.202240pt;}
.ws3b{word-spacing:0.212480pt;}
.ws14{word-spacing:0.256000pt;}
.wscb{word-spacing:0.265600pt;}
.ws6a{word-spacing:0.318720pt;}
.wsf9{word-spacing:0.320000pt;}
.wsab{word-spacing:0.384000pt;}
.ws88{word-spacing:0.424960pt;}
.ws35{word-spacing:0.478080pt;}
.ws149{word-spacing:0.512000pt;}
.ws5f{word-spacing:0.531200pt;}
.wsd3{word-spacing:0.576000pt;}
.ws68{word-spacing:0.637440pt;}
.ws119{word-spacing:0.640000pt;}
.ws9a{word-spacing:0.690560pt;}
.ws139{word-spacing:0.704000pt;}
.ws16{word-spacing:0.768000pt;}
.ws1b{word-spacing:0.832000pt;}
.ws36{word-spacing:0.849920pt;}
.ws7e{word-spacing:0.896000pt;}
.wsad{word-spacing:0.960000pt;}
.ws62{word-spacing:1.062400pt;}
.ws5d{word-spacing:1.115520pt;}
.ws14c{word-spacing:1.152000pt;}
.ws96{word-spacing:1.168640pt;}
.ws85{word-spacing:1.216000pt;}
.ws32{word-spacing:1.274880pt;}
.ws84{word-spacing:1.280000pt;}
.ws60{word-spacing:1.328000pt;}
.ws111{word-spacing:1.344000pt;}
.ws61{word-spacing:1.381120pt;}
.ws80{word-spacing:1.408000pt;}
.ws7f{word-spacing:1.472000pt;}
.ws66{word-spacing:1.487360pt;}
.wscc{word-spacing:1.699840pt;}
.ws99{word-spacing:1.752960pt;}
.wsaf{word-spacing:1.792000pt;}
.ws2d{word-spacing:1.806080pt;}
.ws144{word-spacing:1.856000pt;}
.ws143{word-spacing:1.920000pt;}
.ws2c{word-spacing:1.965440pt;}
.ws13d{word-spacing:1.984000pt;}
.ws74{word-spacing:2.048000pt;}
.ws75{word-spacing:2.112000pt;}
.ws2e{word-spacing:2.124800pt;}
.wse1{word-spacing:2.176000pt;}
.ws150{word-spacing:2.304000pt;}
.ws69{word-spacing:2.337280pt;}
.ws29{word-spacing:2.390400pt;}
.ws14e{word-spacing:2.432000pt;}
.ws2a{word-spacing:2.443520pt;}
.ws10b{word-spacing:2.496000pt;}
.ws86{word-spacing:2.549760pt;}
.wsb5{word-spacing:2.602880pt;}
.ws14f{word-spacing:2.624000pt;}
.wsca{word-spacing:2.688000pt;}
.ws73{word-spacing:2.752000pt;}
.ws38{word-spacing:2.762240pt;}
.wsf0{word-spacing:2.816000pt;}
.wsfa{word-spacing:2.880000pt;}
.ws15b{word-spacing:2.944000pt;}
.ws39{word-spacing:2.974720pt;}
.ws3f{word-spacing:3.027840pt;}
.wsfc{word-spacing:3.072000pt;}
.ws3a{word-spacing:3.080960pt;}
.ws28{word-spacing:3.187200pt;}
.ws117{word-spacing:3.200000pt;}
.ws6b{word-spacing:3.240320pt;}
.ws161{word-spacing:3.264000pt;}
.ws79{word-spacing:3.328000pt;}
.ws7a{word-spacing:3.392000pt;}
.ws81{word-spacing:3.456000pt;}
.ws13a{word-spacing:3.584000pt;}
.ws122{word-spacing:3.612160pt;}
.ws98{word-spacing:3.665280pt;}
.wsec{word-spacing:3.712000pt;}
.wsf5{word-spacing:3.776000pt;}
.ws8a{word-spacing:3.824640pt;}
.ws76{word-spacing:3.840000pt;}
.ws89{word-spacing:3.877760pt;}
.wsb2{word-spacing:3.904000pt;}
.ws53{word-spacing:3.968000pt;}
.ws54{word-spacing:4.032000pt;}
.ws114{word-spacing:4.037120pt;}
.ws123{word-spacing:4.143360pt;}
.ws83{word-spacing:4.224000pt;}
.wsbe{word-spacing:4.249600pt;}
.ws42{word-spacing:4.302720pt;}
.wsd1{word-spacing:4.352000pt;}
.wsd8{word-spacing:4.355840pt;}
.wsf8{word-spacing:4.480000pt;}
.ws43{word-spacing:4.515200pt;}
.wsf7{word-spacing:4.544000pt;}
.ws82{word-spacing:4.608000pt;}
.wsc9{word-spacing:4.672000pt;}
.ws44{word-spacing:4.674560pt;}
.ws124{word-spacing:4.780800pt;}
.ws13f{word-spacing:4.864000pt;}
.wsb8{word-spacing:4.887040pt;}
.ws108{word-spacing:4.940160pt;}
.wsb7{word-spacing:4.993280pt;}
.ws129{word-spacing:5.056000pt;}
.wsd9{word-spacing:5.099520pt;}
.wsee{word-spacing:5.120000pt;}
.ws5c{word-spacing:5.152640pt;}
.ws140{word-spacing:5.184000pt;}
.wsf3{word-spacing:5.248000pt;}
.wsed{word-spacing:5.312000pt;}
.ws19{word-spacing:5.376000pt;}
.wsbd{word-spacing:5.577600pt;}
.ws8b{word-spacing:5.630720pt;}
.wsfb{word-spacing:5.632000pt;}
.wsb6{word-spacing:5.736960pt;}
.ws152{word-spacing:5.760000pt;}
.ws6d{word-spacing:5.790080pt;}
.wse9{word-spacing:5.824000pt;}
.ws13{word-spacing:5.888000pt;}
.ws6e{word-spacing:5.949440pt;}
.ws18{word-spacing:5.952000pt;}
.ws8c{word-spacing:6.161920pt;}
.wscd{word-spacing:6.215040pt;}
.wsc0{word-spacing:6.268160pt;}
.ws33{word-spacing:6.374400pt;}
.wsbf{word-spacing:6.427520pt;}
.wsf1{word-spacing:6.464000pt;}
.ws34{word-spacing:6.480640pt;}
.wsd5{word-spacing:6.528000pt;}
.ws11e{word-spacing:6.586880pt;}
.wsf2{word-spacing:6.592000pt;}
.ws15e{word-spacing:6.656000pt;}
.wsba{word-spacing:6.799360pt;}
.wsbc{word-spacing:6.852480pt;}
.ws102{word-spacing:6.905600pt;}
.ws12a{word-spacing:6.912000pt;}
.ws10c{word-spacing:7.040000pt;}
.wsbb{word-spacing:7.064960pt;}
.ws57{word-spacing:7.104000pt;}
.ws59{word-spacing:7.168000pt;}
.wsce{word-spacing:7.224320pt;}
.ws58{word-spacing:7.232000pt;}
.ws137{word-spacing:7.424000pt;}
.ws1f{word-spacing:7.489920pt;}
.ws31{word-spacing:7.543040pt;}
.ws156{word-spacing:7.552000pt;}
.ws157{word-spacing:7.616000pt;}
.ws30{word-spacing:7.649280pt;}
.wsa0{word-spacing:7.680000pt;}
.ws112{word-spacing:7.744000pt;}
.ws9f{word-spacing:7.808000pt;}
.ws125{word-spacing:7.861760pt;}
.wsa1{word-spacing:7.872000pt;}
.ws100{word-spacing:8.064000pt;}
.ws21{word-spacing:8.074240pt;}
.ws101{word-spacing:8.192000pt;}
.ws10e{word-spacing:8.384000pt;}
.ws72{word-spacing:8.448000pt;}
.ws20{word-spacing:8.499200pt;}
.ws10d{word-spacing:8.512000pt;}
.wsf4{word-spacing:8.576000pt;}
.wsea{word-spacing:8.896000pt;}
.wseb{word-spacing:9.088000pt;}
.wsb0{word-spacing:9.152000pt;}
.wsb1{word-spacing:9.280000pt;}
.ws15{word-spacing:9.344000pt;}
.ws3e{word-spacing:9.402240pt;}
.ws3d{word-spacing:9.508480pt;}
.ws11a{word-spacing:9.536000pt;}
.ws127{word-spacing:9.561600pt;}
.ws126{word-spacing:9.614720pt;}
.ws3c{word-spacing:9.667840pt;}
.wsd6{word-spacing:9.728000pt;}
.ws17{word-spacing:9.792000pt;}
.ws128{word-spacing:9.827200pt;}
.ws55{word-spacing:9.856000pt;}
.ws15f{word-spacing:9.984000pt;}
.ws56{word-spacing:10.304000pt;}
.ws97{word-spacing:10.305280pt;}
.ws9e{word-spacing:10.368000pt;}
.ws4f{word-spacing:10.432000pt;}
.ws11b{word-spacing:10.752000pt;}
.ws11c{word-spacing:10.880000pt;}
.wse3{word-spacing:10.889600pt;}
.ws120{word-spacing:11.008000pt;}
.ws11f{word-spacing:11.072000pt;}
.ws12c{word-spacing:11.584000pt;}
.ws14a{word-spacing:11.648000pt;}
.ws12b{word-spacing:11.712000pt;}
.ws15a{word-spacing:11.904000pt;}
.ws12d{word-spacing:12.352000pt;}
.ws41{word-spacing:12.695680pt;}
.ws78{word-spacing:12.928000pt;}
.ws77{word-spacing:12.992000pt;}
.ws13b{word-spacing:13.632000pt;}
.ws13c{word-spacing:13.696000pt;}
.ws9c{word-spacing:14.208000pt;}
.ws9b{word-spacing:14.272000pt;}
.ws15d{word-spacing:14.464000pt;}
.ws15c{word-spacing:14.848000pt;}
.ws159{word-spacing:15.104000pt;}
.ws5a{word-spacing:15.488000pt;}
.ws95{word-spacing:15.552000pt;}
.wsde{word-spacing:15.616000pt;}
.wsdf{word-spacing:16.128000pt;}
.wsfd{word-spacing:16.704000pt;}
.wsfe{word-spacing:16.768000pt;}
.ws148{word-spacing:17.792000pt;}
.ws147{word-spacing:18.048000pt;}
.ws141{word-spacing:20.480000pt;}
.ws14b{word-spacing:20.544000pt;}
.ws142{word-spacing:20.608000pt;}
.wsef{word-spacing:29.056000pt;}
.ws40{word-spacing:31.553280pt;}
.ws13e{word-spacing:43.712000pt;}
._6{margin-left:-6.449920pt;}
._e{margin-left:-3.875840pt;}
._7{margin-left:-2.549760pt;}
._0{margin-left:-0.903040pt;}
._1{width:0.903040pt;}
._b{width:1.853888pt;}
._8{width:2.783488pt;}
._5{width:4.053120pt;}
._c{width:5.418240pt;}
._9{width:6.852480pt;}
._12{width:8.216320pt;}
._a{width:9.212160pt;}
._4{width:10.282880pt;}
._14{width:12.232320pt;}
._d{width:13.824000pt;}
._11{width:17.152000pt;}
._18{width:18.453760pt;}
._17{width:21.269760pt;}
._16{width:43.448960pt;}
._3{width:270.699520pt;}
._f{width:280.294400pt;}
._13{width:288.866560pt;}
._10{width:558.184960pt;}
._2{width:630.959360pt;}
._15{width:752.576000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:2.880000pt;}
.y22b{bottom:3.200000pt;}
.y273{bottom:3.680000pt;}
.y9f{bottom:23.200000pt;}
.y1a0{bottom:39.200000pt;}
.y3{bottom:51.360000pt;}
.y2b{bottom:67.520000pt;}
.y2{bottom:70.236640pt;}
.y2a{bottom:70.240000pt;}
.y188{bottom:123.200000pt;}
.y20a{bottom:147.195200pt;}
.y120{bottom:147.197600pt;}
.y27{bottom:147.360000pt;}
.y2a4{bottom:150.400000pt;}
.y209{bottom:163.197600pt;}
.y26{bottom:166.531200pt;}
.ydb{bottom:166.543200pt;}
.y26d{bottom:166.545600pt;}
.y24c{bottom:166.550400pt;}
.ycf{bottom:166.552800pt;}
.y69{bottom:166.555200pt;}
.y56{bottom:166.557600pt;}
.y11f{bottom:166.560000pt;}
.y2a3{bottom:168.960000pt;}
.y1e7{bottom:169.920000pt;}
.y29a{bottom:171.680000pt;}
.y17d{bottom:179.001440pt;}
.y11e{bottom:179.197600pt;}
.y276{bottom:179.360000pt;}
.y25{bottom:182.533600pt;}
.yda{bottom:182.545600pt;}
.y26c{bottom:182.548000pt;}
.y1e6{bottom:182.552800pt;}
.yce{bottom:182.555200pt;}
.y68{bottom:182.557600pt;}
.y208{bottom:182.560000pt;}
.y55{bottom:185.920000pt;}
.y2a2{bottom:187.680000pt;}
.y299{bottom:190.400000pt;}
.y17c{bottom:195.003840pt;}
.y165{bottom:195.056960pt;}
.y14e{bottom:195.110080pt;}
.y207{bottom:195.195200pt;}
.y265{bottom:195.360000pt;}
.y24{bottom:198.536000pt;}
.yd9{bottom:198.548000pt;}
.y9c{bottom:198.550400pt;}
.y54{bottom:198.552800pt;}
.y1e5{bottom:198.555200pt;}
.ycd{bottom:198.557600pt;}
.y11d{bottom:198.560000pt;}
.y67{bottom:201.920000pt;}
.y2a1{bottom:206.400000pt;}
.y298{bottom:208.960000pt;}
.y164{bottom:211.059360pt;}
.y14d{bottom:211.112480pt;}
.y11c{bottom:211.197600pt;}
.y250{bottom:213.280000pt;}
.y23{bottom:214.538400pt;}
.yd8{bottom:214.550400pt;}
.y9b{bottom:214.552800pt;}
.y53{bottom:214.555200pt;}
.y1e4{bottom:214.557600pt;}
.y17b{bottom:215.003520pt;}
.ycc{bottom:217.920000pt;}
.y2a0{bottom:224.960000pt;}
.y163{bottom:227.061760pt;}
.y137{bottom:227.154720pt;}
.y297{bottom:227.680000pt;}
.y22{bottom:230.540800pt;}
.yd7{bottom:230.552800pt;}
.y9a{bottom:230.555200pt;}
.y52{bottom:230.557600pt;}
.y11b{bottom:230.560000pt;}
.y17a{bottom:231.005920pt;}
.y14c{bottom:231.112160pt;}
.y264{bottom:232.436800pt;}
.y24b{bottom:233.920000pt;}
.y136{bottom:243.157120pt;}
.y206{bottom:243.192800pt;}
.y11a{bottom:243.197600pt;}
.y29f{bottom:243.680000pt;}
.y296{bottom:246.400000pt;}
.y21{bottom:246.543200pt;}
.y24a{bottom:246.550400pt;}
.yd6{bottom:246.555200pt;}
.y99{bottom:246.557600pt;}
.y1e3{bottom:246.720000pt;}
.y179{bottom:247.008320pt;}
.y162{bottom:247.061440pt;}
.y14b{bottom:247.114560pt;}
.y263{bottom:248.439200pt;}
.y51{bottom:249.920000pt;}
.y20c{bottom:251.200000pt;}
.y205{bottom:259.195200pt;}
.y119{bottom:259.200000pt;}
.y29e{bottom:262.400000pt;}
.y7c{bottom:262.543200pt;}
.y20{bottom:262.545600pt;}
.y50{bottom:262.550400pt;}
.y249{bottom:262.552800pt;}
.yd5{bottom:262.557600pt;}
.y19e{bottom:262.720000pt;}
.y178{bottom:263.010720pt;}
.y161{bottom:263.063840pt;}
.y14a{bottom:263.116960pt;}
.y135{bottom:263.156800pt;}
.y262{bottom:264.441600pt;}
.y295{bottom:264.960000pt;}
.y98{bottom:265.920000pt;}
.y204{bottom:275.197600pt;}
.y118{bottom:275.360000pt;}
.y7b{bottom:278.545600pt;}
.y1f{bottom:278.548000pt;}
.y26b{bottom:278.550400pt;}
.y4f{bottom:278.552800pt;}
.ycb{bottom:278.555200pt;}
.y177{bottom:279.013120pt;}
.y160{bottom:279.066240pt;}
.y149{bottom:279.119360pt;}
.y134{bottom:279.159200pt;}
.y261{bottom:280.444000pt;}
.y29d{bottom:280.960000pt;}
.y97{bottom:281.920000pt;}
.y294{bottom:283.680000pt;}
.y7a{bottom:294.548000pt;}
.y1e{bottom:294.550400pt;}
.y26a{bottom:294.552800pt;}
.y4e{bottom:294.555200pt;}
.yca{bottom:294.557600pt;}
.y203{bottom:294.560000pt;}
.y176{bottom:295.015520pt;}
.y15f{bottom:295.068640pt;}
.y148{bottom:295.121760pt;}
.y133{bottom:295.161600pt;}
.y260{bottom:296.446400pt;}
.y96{bottom:297.920000pt;}
.y29c{bottom:299.680000pt;}
.y1bb{bottom:301.869920pt;}
.y293{bottom:302.400000pt;}
.y202{bottom:307.360000pt;}
.y79{bottom:310.550400pt;}
.y1d{bottom:310.552800pt;}
.y95{bottom:310.555200pt;}
.y4d{bottom:310.557600pt;}
.yc9{bottom:310.560000pt;}
.y22c{bottom:310.720000pt;}
.y175{bottom:311.017920pt;}
.y15e{bottom:311.071040pt;}
.y147{bottom:311.124160pt;}
.y132{bottom:311.164000pt;}
.y19d{bottom:312.320000pt;}
.y25f{bottom:312.448800pt;}
.y245{bottom:313.920000pt;}
.y1d1{bottom:317.819200pt;}
.y1ba{bottom:317.872320pt;}
.y29b{bottom:318.400000pt;}
.y292{bottom:320.960000pt;}
.y251{bottom:323.200000pt;}
.y117{bottom:324.320000pt;}
.y244{bottom:326.550400pt;}
.y78{bottom:326.552800pt;}
.y1c{bottom:326.555200pt;}
.y94{bottom:326.557600pt;}
.yc8{bottom:326.720000pt;}
.y174{bottom:327.020320pt;}
.y15d{bottom:327.073440pt;}
.y146{bottom:327.126560pt;}
.y131{bottom:327.166400pt;}
.y25e{bottom:328.451200pt;}
.y4c{bottom:329.920000pt;}
.y19c{bottom:331.040000pt;}
.y1d0{bottom:333.821600pt;}
.y271{bottom:336.960000pt;}
.y1b9{bottom:337.872000pt;}
.y291{bottom:339.680000pt;}
.y4b{bottom:342.543200pt;}
.y243{bottom:342.552800pt;}
.y77{bottom:342.555200pt;}
.y1b{bottom:342.557600pt;}
.y173{bottom:343.022720pt;}
.y116{bottom:343.040000pt;}
.y15c{bottom:343.075840pt;}
.y145{bottom:343.128960pt;}
.y130{bottom:343.168800pt;}
.y25d{bottom:344.453600pt;}
.y93{bottom:345.920000pt;}
.y19b{bottom:349.600000pt;}
.y1cf{bottom:353.821280pt;}
.y1b8{bottom:353.874400pt;}
.y201{bottom:353.881440pt;}
.y1fb{bottom:353.894720pt;}
.y1f5{bottom:353.908000pt;}
.y270{bottom:355.680000pt;}
.y290{bottom:358.400000pt;}
.y269{bottom:358.536000pt;}
.y4a{bottom:358.545600pt;}
.y248{bottom:358.550400pt;}
.y92{bottom:358.555200pt;}
.y76{bottom:358.557600pt;}
.y22a{bottom:358.720000pt;}
.y172{bottom:359.025120pt;}
.y15b{bottom:359.078240pt;}
.y144{bottom:359.131360pt;}
.y12f{bottom:359.171200pt;}
.y25c{bottom:360.456000pt;}
.yc7{bottom:361.600000pt;}
.y1a{bottom:361.920000pt;}
.y19a{bottom:368.320000pt;}
.y1ce{bottom:369.823680pt;}
.y1b7{bottom:369.876800pt;}
.y200{bottom:369.883840pt;}
.y1fa{bottom:369.897120pt;}
.y1f4{bottom:369.910400pt;}
.y26f{bottom:374.400000pt;}
.y268{bottom:374.538400pt;}
.y49{bottom:374.548000pt;}
.y19{bottom:374.550400pt;}
.y247{bottom:374.552800pt;}
.y91{bottom:374.557600pt;}
.y66{bottom:374.720000pt;}
.y171{bottom:375.027520pt;}
.y15a{bottom:375.080640pt;}
.y143{bottom:375.133760pt;}
.y12e{bottom:375.173600pt;}
.y25b{bottom:376.458400pt;}
.y28f{bottom:376.960000pt;}
.y229{bottom:377.917600pt;}
.y75{bottom:377.920000pt;}
.yc6{bottom:380.320000pt;}
.y1cd{bottom:385.826080pt;}
.y1b6{bottom:385.879200pt;}
.y1ff{bottom:385.886240pt;}
.y1f9{bottom:385.899520pt;}
.y1f3{bottom:385.912800pt;}
.y199{bottom:387.040000pt;}
.y267{bottom:390.540800pt;}
.y48{bottom:390.550400pt;}
.y18{bottom:390.552800pt;}
.y246{bottom:390.555200pt;}
.yd4{bottom:390.720000pt;}
.y170{bottom:391.029920pt;}
.y159{bottom:391.083040pt;}
.y142{bottom:391.136160pt;}
.y12d{bottom:391.176000pt;}
.y25a{bottom:392.460800pt;}
.y26e{bottom:392.960000pt;}
.y74{bottom:393.920000pt;}
.y28e{bottom:395.680000pt;}
.y1e2{bottom:397.778080pt;}
.y115{bottom:399.040000pt;}
.y1cc{bottom:401.828480pt;}
.y1b5{bottom:401.881600pt;}
.y1fe{bottom:401.888640pt;}
.y1f8{bottom:401.901920pt;}
.y1f2{bottom:401.915200pt;}
.y198{bottom:405.600000pt;}
.y90{bottom:406.543200pt;}
.y47{bottom:406.552800pt;}
.y17{bottom:406.555200pt;}
.y73{bottom:406.557600pt;}
.y242{bottom:406.720000pt;}
.y16f{bottom:407.032320pt;}
.y158{bottom:407.085440pt;}
.y141{bottom:407.138560pt;}
.y12c{bottom:407.178400pt;}
.y227{bottom:407.360000pt;}
.y259{bottom:408.463200pt;}
.yd3{bottom:411.680000pt;}
.y1e1{bottom:413.780480pt;}
.yc5{bottom:413.838400pt;}
.y28d{bottom:414.400000pt;}
.y228{bottom:414.560000pt;}
.y114{bottom:417.600000pt;}
.y1cb{bottom:417.830880pt;}
.y1b4{bottom:417.884000pt;}
.y1fd{bottom:417.891040pt;}
.y1f7{bottom:417.904320pt;}
.y1f1{bottom:417.917600pt;}
.y8f{bottom:422.545600pt;}
.y46{bottom:422.555200pt;}
.y16{bottom:422.557600pt;}
.y16e{bottom:423.034720pt;}
.y157{bottom:423.087840pt;}
.y140{bottom:423.140960pt;}
.y12b{bottom:423.180800pt;}
.y197{bottom:424.320000pt;}
.y258{bottom:424.465600pt;}
.y72{bottom:425.920000pt;}
.yc4{bottom:429.840800pt;}
.yd2{bottom:430.400000pt;}
.y28c{bottom:432.960000pt;}
.y1e0{bottom:433.780160pt;}
.y1ca{bottom:433.833280pt;}
.y1b3{bottom:433.886400pt;}
.y1fc{bottom:433.893440pt;}
.y1f6{bottom:433.906720pt;}
.y1f0{bottom:433.920000pt;}
.y113{bottom:436.320000pt;}
.y8e{bottom:438.548000pt;}
.y45{bottom:438.557600pt;}
.y71{bottom:438.720000pt;}
.y16d{bottom:439.037120pt;}
.y156{bottom:439.090240pt;}
.y13f{bottom:439.143360pt;}
.y12a{bottom:439.183200pt;}
.y257{bottom:440.468000pt;}
.y15{bottom:441.920000pt;}
.y196{bottom:443.040000pt;}
.yb7{bottom:445.869760pt;}
.yd1{bottom:448.960000pt;}
.y1df{bottom:449.782560pt;}
.y1c9{bottom:449.835680pt;}
.yc3{bottom:449.840480pt;}
.y1b2{bottom:449.888800pt;}
.y1ee{bottom:451.360000pt;}
.y28b{bottom:451.680000pt;}
.y241{bottom:452.960000pt;}
.y8d{bottom:454.550400pt;}
.y14{bottom:454.557600pt;}
.y44{bottom:454.560000pt;}
.y16c{bottom:455.039520pt;}
.y112{bottom:455.040000pt;}
.y155{bottom:455.092640pt;}
.y13e{bottom:455.145760pt;}
.y129{bottom:455.185600pt;}
.y226{bottom:455.680000pt;}
.y256{bottom:456.470400pt;}
.y1ef{bottom:458.560000pt;}
.y195{bottom:461.600000pt;}
.yb6{bottom:461.872160pt;}
.yab{bottom:461.898720pt;}
.y1de{bottom:465.784960pt;}
.y1c8{bottom:465.838080pt;}
.yc2{bottom:465.842880pt;}
.y1b1{bottom:465.891200pt;}
.y1ed{bottom:466.560000pt;}
.yd0{bottom:467.680000pt;}
.y28a{bottom:470.400000pt;}
.y8c{bottom:470.552800pt;}
.y43{bottom:470.720000pt;}
.y16b{bottom:471.041920pt;}
.y154{bottom:471.095040pt;}
.y13d{bottom:471.148160pt;}
.y128{bottom:471.188000pt;}
.y240{bottom:471.680000pt;}
.y255{bottom:472.472800pt;}
.y111{bottom:473.600000pt;}
.y13{bottom:473.920000pt;}
.y225{bottom:474.400000pt;}
.y194{bottom:480.320000pt;}
.y1dd{bottom:481.787360pt;}
.y1c7{bottom:481.840480pt;}
.yc1{bottom:481.845280pt;}
.yb5{bottom:481.871840pt;}
.y1b0{bottom:481.893600pt;}
.yaa{bottom:481.898400pt;}
.y65{bottom:486.400000pt;}
.y12{bottom:486.548000pt;}
.y8b{bottom:486.555200pt;}
.y16a{bottom:487.044320pt;}
.y153{bottom:487.097440pt;}
.y13c{bottom:487.150560pt;}
.y127{bottom:487.190400pt;}
.y254{bottom:488.475200pt;}
.y289{bottom:488.960000pt;}
.y23f{bottom:490.400000pt;}
.y110{bottom:492.320000pt;}
.y224{bottom:492.960000pt;}
.y1dc{bottom:497.789760pt;}
.y1c6{bottom:497.842880pt;}
.yc0{bottom:497.847680pt;}
.yb4{bottom:497.874240pt;}
.y1af{bottom:497.896000pt;}
.ya9{bottom:497.900800pt;}
.y1ec{bottom:499.680000pt;}
.y42{bottom:502.400000pt;}
.y11{bottom:502.550400pt;}
.y8a{bottom:502.557600pt;}
.y169{bottom:503.046720pt;}
.y152{bottom:503.099840pt;}
.y13b{bottom:503.152960pt;}
.y126{bottom:503.192800pt;}
.y187{bottom:504.000000pt;}
.y253{bottom:504.477600pt;}
.y64{bottom:504.960000pt;}
.y288{bottom:507.680000pt;}
.y23e{bottom:508.960000pt;}
.y10f{bottom:511.040000pt;}
.y191{bottom:511.195200pt;}
.y223{bottom:511.680000pt;}
.y1db{bottom:513.792160pt;}
.y1c5{bottom:513.845280pt;}
.ybf{bottom:513.850080pt;}
.yb3{bottom:513.876640pt;}
.y1ae{bottom:513.898400pt;}
.ya8{bottom:513.903200pt;}
.y1eb{bottom:518.400000pt;}
.y10{bottom:518.552800pt;}
.y168{bottom:519.049120pt;}
.y151{bottom:519.102240pt;}
.y13a{bottom:519.155360pt;}
.y125{bottom:519.195200pt;}
.y252{bottom:520.480000pt;}
.y41{bottom:520.960000pt;}
.y89{bottom:521.920000pt;}
.y63{bottom:523.680000pt;}
.y287{bottom:526.400000pt;}
.y190{bottom:527.197600pt;}
.y23d{bottom:527.680000pt;}
.y10e{bottom:529.600000pt;}
.y1da{bottom:529.794560pt;}
.y1c4{bottom:529.847680pt;}
.ybe{bottom:529.852480pt;}
.yb2{bottom:529.879040pt;}
.y1ad{bottom:529.900800pt;}
.ya7{bottom:529.905600pt;}
.y222{bottom:530.400000pt;}
.yf{bottom:534.555200pt;}
.y266{bottom:534.720000pt;}
.y167{bottom:535.051520pt;}
.y150{bottom:535.104640pt;}
.y139{bottom:535.157760pt;}
.y124{bottom:535.197600pt;}
.y1ea{bottom:536.960000pt;}
.y88{bottom:537.920000pt;}
.y40{bottom:539.680000pt;}
.y62{bottom:542.400000pt;}
.y193{bottom:543.197600pt;}
.y18f{bottom:543.200000pt;}
.y286{bottom:544.960000pt;}
.y1d9{bottom:545.796960pt;}
.y1c3{bottom:545.850080pt;}
.ybd{bottom:545.854880pt;}
.yb1{bottom:545.881440pt;}
.y1ac{bottom:545.903200pt;}
.ya6{bottom:545.908000pt;}
.y23c{bottom:546.400000pt;}
.y10d{bottom:548.320000pt;}
.y221{bottom:548.960000pt;}
.y24e{bottom:549.920000pt;}
.ye{bottom:550.557600pt;}
.y87{bottom:550.720000pt;}
.y166{bottom:551.053920pt;}
.y14f{bottom:551.107040pt;}
.y138{bottom:551.160160pt;}
.y123{bottom:551.200000pt;}
.y1e9{bottom:555.680000pt;}
.y24f{bottom:557.120000pt;}
.y3f{bottom:558.400000pt;}
.y18c{bottom:559.197600pt;}
.y192{bottom:559.200000pt;}
.y61{bottom:560.960000pt;}
.y1d8{bottom:561.799360pt;}
.y1c2{bottom:561.852480pt;}
.ybc{bottom:561.857280pt;}
.yb0{bottom:561.883840pt;}
.y1ab{bottom:561.905600pt;}
.ya5{bottom:561.910400pt;}
.y18e{bottom:563.192800pt;}
.y285{bottom:563.680000pt;}
.y23b{bottom:564.960000pt;}
.yd{bottom:566.560000pt;}
.y10c{bottom:567.040000pt;}
.y220{bottom:567.680000pt;}
.y121{bottom:568.640000pt;}
.y86{bottom:574.400000pt;}
.y18b{bottom:575.200000pt;}
.y122{bottom:575.840000pt;}
.y1d7{bottom:577.801760pt;}
.y1c1{bottom:577.854880pt;}
.ybb{bottom:577.859680pt;}
.yaf{bottom:577.886240pt;}
.y1aa{bottom:577.908000pt;}
.ya4{bottom:577.912800pt;}
.y18d{bottom:579.195200pt;}
.y60{bottom:579.680000pt;}
.y284{bottom:582.400000pt;}
.yc{bottom:582.720000pt;}
.y23a{bottom:583.680000pt;}
.y3e{bottom:584.470400pt;}
.y21f{bottom:586.400000pt;}
.y85{bottom:592.960000pt;}
.y1d6{bottom:593.804160pt;}
.y1c0{bottom:593.857280pt;}
.yba{bottom:593.862080pt;}
.yae{bottom:593.888640pt;}
.y1a9{bottom:593.910400pt;}
.ya3{bottom:593.915200pt;}
.y18a{bottom:595.197600pt;}
.y10b{bottom:597.898720pt;}
.y24d{bottom:598.240000pt;}
.y5f{bottom:598.400000pt;}
.y3d{bottom:600.472800pt;}
.y283{bottom:600.960000pt;}
.y239{bottom:602.400000pt;}
.y21e{bottom:604.960000pt;}
.y1d5{bottom:609.806560pt;}
.y1bf{bottom:609.859680pt;}
.yb9{bottom:609.864480pt;}
.yad{bottom:609.891040pt;}
.y1a8{bottom:609.912800pt;}
.ya2{bottom:609.917600pt;}
.y189{bottom:611.200000pt;}
.yb{bottom:611.680000pt;}
.y10a{bottom:613.901120pt;}
.yf3{bottom:613.915520pt;}
.y3c{bottom:616.475200pt;}
.y5e{bottom:616.960000pt;}
.y282{bottom:619.680000pt;}
.y238{bottom:620.960000pt;}
.y21d{bottom:623.680000pt;}
.y1d4{bottom:625.808960pt;}
.y1be{bottom:625.862080pt;}
.yb8{bottom:625.866880pt;}
.yac{bottom:625.893440pt;}
.y1a7{bottom:625.915200pt;}
.ya1{bottom:625.920000pt;}
.yfe{bottom:629.891360pt;}
.yf2{bottom:629.917920pt;}
.ya{bottom:630.400000pt;}
.y3b{bottom:632.477600pt;}
.y109{bottom:633.900800pt;}
.y5d{bottom:635.680000pt;}
.y281{bottom:638.400000pt;}
.y237{bottom:639.680000pt;}
.y185{bottom:640.640000pt;}
.y1d3{bottom:641.811360pt;}
.y1bd{bottom:641.864480pt;}
.y1a6{bottom:641.917600pt;}
.y9e{bottom:643.360000pt;}
.yfd{bottom:645.893760pt;}
.ye7{bottom:645.901120pt;}
.y20b{bottom:647.360000pt;}
.y186{bottom:647.840000pt;}
.y3a{bottom:648.480000pt;}
.y9{bottom:648.960000pt;}
.y108{bottom:649.903200pt;}
.yf1{bottom:649.917600pt;}
.ya0{bottom:650.560000pt;}
.y70{bottom:654.400000pt;}
.y21c{bottom:654.557600pt;}
.y184{bottom:655.840000pt;}
.y9d{bottom:656.480000pt;}
.y1e8{bottom:656.960000pt;}
.y1d2{bottom:657.813760pt;}
.y1bc{bottom:657.866880pt;}
.y1a5{bottom:657.920000pt;}
.y236{bottom:658.400000pt;}
.yfc{bottom:661.896160pt;}
.ye6{bottom:661.903520pt;}
.y5c{bottom:661.908000pt;}
.yf0{bottom:665.887520pt;}
.y107{bottom:665.905600pt;}
.y8{bottom:667.680000pt;}
.y21b{bottom:670.560000pt;}
.y39{bottom:672.960000pt;}
.y19f{bottom:675.360000pt;}
.y280{bottom:675.680000pt;}
.y235{bottom:676.960000pt;}
.y5b{bottom:677.910400pt;}
.yef{bottom:681.889920pt;}
.yfb{bottom:681.895840pt;}
.ye5{bottom:681.903200pt;}
.y106{bottom:681.908000pt;}
.y1a2{bottom:682.557600pt;}
.y183{bottom:684.458880pt;}
.y182{bottom:684.472160pt;}
.y7{bottom:686.400000pt;}
.y21a{bottom:690.531200pt;}
.y1a4{bottom:690.557600pt;}
.y38{bottom:691.680000pt;}
.y181{bottom:692.480000pt;}
.y5a{bottom:693.912800pt;}
.y27f{bottom:694.400000pt;}
.y234{bottom:695.680000pt;}
.yee{bottom:697.892320pt;}
.yfa{bottom:697.898240pt;}
.ye4{bottom:697.905600pt;}
.y105{bottom:697.910400pt;}
.y1a1{bottom:698.560000pt;}
.y84{bottom:704.960000pt;}
.y219{bottom:706.533600pt;}
.y1a3{bottom:706.560000pt;}
.y59{bottom:709.915200pt;}
.y37{bottom:710.400000pt;}
.y27e{bottom:712.960000pt;}
.yed{bottom:713.894720pt;}
.yf9{bottom:713.900640pt;}
.ye3{bottom:713.908000pt;}
.y104{bottom:713.912800pt;}
.y233{bottom:714.400000pt;}
.y17f{bottom:717.920000pt;}
.y6{bottom:720.960000pt;}
.y218{bottom:722.536000pt;}
.y83{bottom:723.680000pt;}
.y180{bottom:725.120000pt;}
.y58{bottom:725.917600pt;}
.y36{bottom:728.960000pt;}
.yec{bottom:729.897120pt;}
.yf8{bottom:729.903040pt;}
.ye2{bottom:729.910400pt;}
.y103{bottom:729.915200pt;}
.y27d{bottom:731.680000pt;}
.y232{bottom:732.960000pt;}
.y217{bottom:738.538400pt;}
.y57{bottom:741.920000pt;}
.y82{bottom:742.400000pt;}
.yeb{bottom:745.899520pt;}
.yf7{bottom:745.905440pt;}
.ye1{bottom:745.912800pt;}
.y102{bottom:745.917600pt;}
.y35{bottom:747.680000pt;}
.y27c{bottom:750.400000pt;}
.y231{bottom:751.680000pt;}
.y216{bottom:754.540800pt;}
.y6f{bottom:755.188000pt;}
.y81{bottom:760.960000pt;}
.y101{bottom:761.881280pt;}
.yea{bottom:761.901920pt;}
.yf6{bottom:761.907840pt;}
.ye0{bottom:761.915200pt;}
.y17e{bottom:766.240000pt;}
.y34{bottom:766.400000pt;}
.y27b{bottom:768.960000pt;}
.y215{bottom:770.543200pt;}
.y6e{bottom:771.190400pt;}
.y5{bottom:772.800960pt;}
.y22d{bottom:775.360000pt;}
.y275{bottom:775.520000pt;}
.y100{bottom:777.883680pt;}
.ye9{bottom:777.904320pt;}
.yf5{bottom:777.910240pt;}
.ydf{bottom:777.917600pt;}
.y80{bottom:779.680000pt;}
.y230{bottom:782.560000pt;}
.y33{bottom:784.960000pt;}
.y214{bottom:786.545600pt;}
.y6d{bottom:787.192800pt;}
.y27a{bottom:787.680000pt;}
.y274{bottom:793.120000pt;}
.yff{bottom:793.886080pt;}
.ye8{bottom:793.906720pt;}
.yf4{bottom:793.912640pt;}
.yde{bottom:793.920000pt;}
.y4{bottom:796.800000pt;}
.y7f{bottom:798.400000pt;}
.y213{bottom:802.548000pt;}
.y6c{bottom:803.195200pt;}
.y32{bottom:803.680000pt;}
.y272{bottom:805.280000pt;}
.y279{bottom:806.400000pt;}
.ydc{bottom:811.360000pt;}
.y22f{bottom:814.557600pt;}
.y211{bottom:814.560000pt;}
.y7e{bottom:816.960000pt;}
.y212{bottom:818.550400pt;}
.ydd{bottom:818.560000pt;}
.y6b{bottom:819.197600pt;}
.y31{bottom:822.400000pt;}
.y278{bottom:824.960000pt;}
.y22e{bottom:830.560000pt;}
.y210{bottom:834.552800pt;}
.y6a{bottom:835.200000pt;}
.y30{bottom:840.960000pt;}
.y7d{bottom:843.680000pt;}
.y20f{bottom:850.555200pt;}
.y2f{bottom:859.680000pt;}
.y277{bottom:862.400000pt;}
.y20e{bottom:866.557600pt;}
.y2e{bottom:878.400000pt;}
.y20d{bottom:882.560000pt;}
.y2d{bottom:896.960000pt;}
.y29{bottom:958.560000pt;}
.y28{bottom:977.920000pt;}
.y1{bottom:995.680000pt;}
.h9{height:15.198667pt;}
.hd{height:36.000000pt;}
.h18{height:48.000000pt;}
.h1b{height:50.718667pt;}
.h16{height:52.000000pt;}
.h7{height:53.815937pt;}
.h2{height:62.172187pt;}
.h8{height:62.812500pt;}
.h1{height:67.255938pt;}
.hc{height:67.265538pt;}
.ha{height:67.284738pt;}
.hb{height:67.303938pt;}
.hf{height:67.385858pt;}
.h10{height:67.410817pt;}
.h3{height:68.288000pt;}
.h5{height:74.906250pt;}
.h6{height:81.031250pt;}
.he{height:90.935937pt;}
.h12{height:91.575938pt;}
.h4{height:94.806562pt;}
.h13{height:99.234177pt;}
.h11{height:99.255937pt;}
.h14{height:131.212417pt;}
.h15{height:136.000000pt;}
.h19{height:136.001333pt;}
.h17{height:264.000000pt;}
.h1a{height:336.000000pt;}
.h0{height:1056.000000pt;}
.w9{width:18.880000pt;}
.w10{width:19.840000pt;}
.wd{width:20.160000pt;}
.wb{width:20.480000pt;}
.wa{width:20.640000pt;}
.w11{width:21.120000pt;}
.w6{width:21.280000pt;}
.w18{width:21.920000pt;}
.w17{width:22.240000pt;}
.w3{width:22.400000pt;}
.w2{width:22.720000pt;}
.w14{width:23.040000pt;}
.w1{width:23.200000pt;}
.w4{width:23.520000pt;}
.w8{width:131.200000pt;}
.w7{width:131.201333pt;}
.w12{width:169.760000pt;}
.w5{width:172.158667pt;}
.wf{width:175.038667pt;}
.wc{width:175.040000pt;}
.we{width:175.200000pt;}
.w13{width:178.880000pt;}
.w15{width:180.000000pt;}
.w16{width:354.080000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.880000pt;}
.x16{left:12.160000pt;}
.x13{left:21.440000pt;}
.x10{left:33.760000pt;}
.xc{left:41.760000pt;}
.x26{left:43.200000pt;}
.x2b{left:45.120000pt;}
.x28{left:53.120000pt;}
.x1{left:144.000000pt;}
.x2d{left:150.400000pt;}
.x18{left:151.520000pt;}
.x5{left:156.005120pt;}
.xa{left:162.240000pt;}
.x8{left:168.000000pt;}
.x1c{left:169.280000pt;}
.x11{left:171.680000pt;}
.x24{left:177.920000pt;}
.x31{left:181.600000pt;}
.x29{left:183.200000pt;}
.x9{left:192.000000pt;}
.x1f{left:209.435520pt;}
.x4{left:215.686560pt;}
.x3{left:261.120000pt;}
.x6{left:267.520000pt;}
.x2{left:275.179840pt;}
.x12{left:276.480000pt;}
.x19{left:283.363840pt;}
.x14{left:304.480000pt;}
.x2e{left:314.080000pt;}
.x25{left:320.320000pt;}
.x30{left:324.000000pt;}
.x22{left:327.201120pt;}
.xe{left:328.812640pt;}
.x20{left:363.680000pt;}
.x21{left:370.080960pt;}
.x15{left:408.320000pt;}
.x1a{left:415.206560pt;}
.x17{left:469.760000pt;}
.x2a{left:493.600000pt;}
.xb{left:494.720000pt;}
.x27{left:496.000000pt;}
.x2f{left:500.480000pt;}
.xf{left:501.612000pt;}
.x23{left:503.041600pt;}
.x2c{left:534.880000pt;}
.x1e{left:540.160000pt;}
.xd{left:545.440000pt;}
.x1b{left:547.037120pt;}
.x7{left:656.640000pt;}
}




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