
    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_07574630bc3caed1ec45797c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_278fbf2dfd9de3595030aaf4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4f12b760d3c992596d0cc067.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9ae48cc2f9180ccc33f3e476.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f4afce073574d85431c05588.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c8cc1eb0656e345d9d517b34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_913277e3d7ccbd58c2a2b319.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c11e81866b1d2dc0e31e1131.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_106ad563cb7cdb9041686f93.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_11e40d6e1a4e5da9e5c86b2f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c721f9cde5d789103d19d9f5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_95db1a5740a06a06b70db647.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_92eab32a8d84c75a78b603d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972000;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);}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-18.000000px;}
.v1{vertical-align:-2.949120px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.549760px;}
.ls38{letter-spacing:-0.993600px;}
.ls3a{letter-spacing:-0.927360px;}
.ls3e{letter-spacing:-0.861120px;}
.ls3b{letter-spacing:-0.794880px;}
.ls4a{letter-spacing:-0.771840px;}
.ls30{letter-spacing:-0.758160px;}
.ls5{letter-spacing:-0.728640px;}
.ls33{letter-spacing:-0.662400px;}
.ls1b{letter-spacing:-0.596160px;}
.ls51{letter-spacing:-0.529920px;}
.ls4f{letter-spacing:-0.463680px;}
.ls12{letter-spacing:-0.397440px;}
.ls49{letter-spacing:-0.337680px;}
.ls41{letter-spacing:-0.336960px;}
.ls11{letter-spacing:-0.331200px;}
.ls31{letter-spacing:-0.298800px;}
.ls4d{letter-spacing:-0.289440px;}
.ls27{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.264960px;}
.ls4c{letter-spacing:-0.241200px;}
.ls50{letter-spacing:-0.240480px;}
.ls17{letter-spacing:-0.239040px;}
.ls46{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.198720px;}
.ls3{letter-spacing:-0.192960px;}
.ls4b{letter-spacing:-0.144720px;}
.ls7{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.132480px;}
.ls1a{letter-spacing:-0.120240px;}
.ls14{letter-spacing:-0.119520px;}
.lse{letter-spacing:-0.108000px;}
.ls3d{letter-spacing:-0.084240px;}
.ls2c{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.066240px;}
.ls15{letter-spacing:-0.059760px;}
.ls2{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.019872px;}
.ls4e{letter-spacing:0.048240px;}
.ls37{letter-spacing:0.052992px;}
.ls29{letter-spacing:0.059760px;}
.ls9{letter-spacing:0.066240px;}
.ls24{letter-spacing:0.092736px;}
.ls2b{letter-spacing:0.119520px;}
.ls32{letter-spacing:0.120240px;}
.ls10{letter-spacing:0.132480px;}
.ls28{letter-spacing:0.144000px;}
.ls3f{letter-spacing:0.145728px;}
.ls22{letter-spacing:0.179280px;}
.ls52{letter-spacing:0.192096px;}
.ls43{letter-spacing:0.198720px;}
.ls19{letter-spacing:0.205344px;}
.ls40{letter-spacing:0.207360px;}
.ls8{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.264960px;}
.ls56{letter-spacing:0.271584px;}
.ls23{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.298800px;}
.ls58{letter-spacing:0.304704px;}
.ls34{letter-spacing:0.317952px;}
.ls13{letter-spacing:0.331200px;}
.ls2d{letter-spacing:0.336960px;}
.ls47{letter-spacing:0.358560px;}
.ls39{letter-spacing:0.360720px;}
.lsb{letter-spacing:0.370512px;}
.ls55{letter-spacing:0.377568px;}
.ls36{letter-spacing:0.384192px;}
.ls35{letter-spacing:0.397440px;}
.ls26{letter-spacing:0.421200px;}
.ls5a{letter-spacing:0.437184px;}
.ls5b{letter-spacing:0.476928px;}
.ls57{letter-spacing:0.523296px;}
.ls2f{letter-spacing:0.549792px;}
.ls16{letter-spacing:0.597600px;}
.ls48{letter-spacing:0.609552px;}
.ls54{letter-spacing:0.655776px;}
.lsa{letter-spacing:0.657360px;}
.ls2e{letter-spacing:0.675288px;}
.lsd{letter-spacing:0.848592px;}
.ls25{letter-spacing:0.861120px;}
.ls1e{letter-spacing:1.008000px;}
.ls20{letter-spacing:2.318400px;}
.ls18{letter-spacing:28.496880px;}
.ls3c{letter-spacing:32.769360px;}
.ls44{letter-spacing:36.144000px;}
.ls45{letter-spacing:59.351040px;}
.ls53{letter-spacing:64.016640px;}
.ls42{letter-spacing:67.233600px;}
.ls1d{letter-spacing:78.768000px;}
.ls1f{letter-spacing:97.488000px;}
.ls21{letter-spacing:126.288000px;}
.ls0{letter-spacing:845.585280px;}
.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;}
}
.ws78{word-spacing:-66.240000px;}
.ws94{word-spacing:-59.760000px;}
.ws40{word-spacing:-27.895680px;}
.ws1f{word-spacing:-27.775440px;}
.ws90{word-spacing:-27.655200px;}
.ws97{word-spacing:-27.534960px;}
.ws89{word-spacing:-23.755680px;}
.ws93{word-spacing:-23.418720px;}
.ws61{word-spacing:-23.334480px;}
.ws71{word-spacing:-23.081760px;}
.ws3a{word-spacing:-22.660560px;}
.ws72{word-spacing:-20.304000px;}
.ws77{word-spacing:-19.944000px;}
.ws76{word-spacing:-19.800000px;}
.ws80{word-spacing:-18.745920px;}
.ws57{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.282240px;}
.ws0{word-spacing:-18.149760px;}
.ws3b{word-spacing:-17.270640px;}
.ws11{word-spacing:-17.210880px;}
.ws10{word-spacing:-16.852320px;}
.ws6b{word-spacing:-16.613280px;}
.ws12{word-spacing:-16.493760px;}
.ws27{word-spacing:-16.488000px;}
.ws13{word-spacing:-16.374240px;}
.ws2{word-spacing:-16.272000px;}
.ws31{word-spacing:-16.200000px;}
.ws2f{word-spacing:-16.128000px;}
.ws6e{word-spacing:-16.096320px;}
.ws6c{word-spacing:-16.030080px;}
.ws70{word-spacing:-15.831360px;}
.wsa{word-spacing:-15.632640px;}
.ws98{word-spacing:-15.566400px;}
.ws6d{word-spacing:-15.500160px;}
.ws20{word-spacing:-15.433920px;}
.wsb{word-spacing:-15.367680px;}
.wsd{word-spacing:-15.301440px;}
.ws29{word-spacing:-15.235200px;}
.ws6a{word-spacing:-15.228000px;}
.wse{word-spacing:-15.168960px;}
.wsc{word-spacing:-15.102720px;}
.wsf{word-spacing:-15.036480px;}
.ws9{word-spacing:-15.012000px;}
.ws30{word-spacing:-14.970240px;}
.ws5a{word-spacing:-14.904000px;}
.ws8f{word-spacing:-14.771520px;}
.ws5b{word-spacing:-14.705280px;}
.ws58{word-spacing:-14.639040px;}
.ws28{word-spacing:-14.572800px;}
.ws66{word-spacing:-14.506560px;}
.ws62{word-spacing:-14.440320px;}
.ws59{word-spacing:-14.374080px;}
.ws67{word-spacing:-14.307840px;}
.ws2d{word-spacing:-13.804560px;}
.ws2e{word-spacing:-13.625280px;}
.ws2c{word-spacing:-13.505760px;}
.ws2a{word-spacing:-13.446000px;}
.ws2b{word-spacing:-13.266720px;}
.ws7f{word-spacing:-10.950480px;}
.ws7e{word-spacing:-10.902240px;}
.ws8a{word-spacing:-10.808640px;}
.ws7b{word-spacing:-10.757520px;}
.ws7d{word-spacing:-10.661040px;}
.ws7c{word-spacing:-10.612800px;}
.ws79{word-spacing:-10.564560px;}
.ws7a{word-spacing:-10.130400px;}
.ws68{word-spacing:-9.646560px;}
.ws86{word-spacing:-9.437760px;}
.ws41{word-spacing:-3.775680px;}
.ws48{word-spacing:-3.047040px;}
.ws46{word-spacing:-2.649600px;}
.ws47{word-spacing:-2.185920px;}
.ws9b{word-spacing:-1.192320px;}
.ws9d{word-spacing:-1.126080px;}
.ws8d{word-spacing:-1.059840px;}
.ws64{word-spacing:-0.993600px;}
.ws25{word-spacing:-0.927360px;}
.ws87{word-spacing:-0.861120px;}
.ws56{word-spacing:-0.794880px;}
.ws32{word-spacing:-0.758160px;}
.ws5f{word-spacing:-0.728640px;}
.ws39{word-spacing:-0.648000px;}
.ws5e{word-spacing:-0.596160px;}
.ws22{word-spacing:-0.529920px;}
.ws9a{word-spacing:-0.463680px;}
.ws95{word-spacing:-0.421200px;}
.ws99{word-spacing:-0.397440px;}
.ws17{word-spacing:-0.331200px;}
.ws1d{word-spacing:-0.298800px;}
.ws75{word-spacing:-0.288000px;}
.ws23{word-spacing:-0.264960px;}
.ws65{word-spacing:-0.252720px;}
.ws34{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.198720px;}
.ws84{word-spacing:-0.144720px;}
.ws1a{word-spacing:-0.132480px;}
.ws3d{word-spacing:-0.119520px;}
.ws15{word-spacing:-0.108000px;}
.ws8e{word-spacing:-0.084240px;}
.ws18{word-spacing:-0.066240px;}
.ws37{word-spacing:-0.059760px;}
.ws85{word-spacing:-0.048240px;}
.ws3{word-spacing:0.000000px;}
.ws83{word-spacing:0.048240px;}
.ws1e{word-spacing:0.059760px;}
.ws26{word-spacing:0.066240px;}
.ws8{word-spacing:0.072000px;}
.ws14{word-spacing:0.108000px;}
.ws6f{word-spacing:0.119520px;}
.ws1b{word-spacing:0.132480px;}
.ws36{word-spacing:0.144000px;}
.ws82{word-spacing:0.144720px;}
.ws3e{word-spacing:0.179280px;}
.ws19{word-spacing:0.198720px;}
.ws8b{word-spacing:0.216000px;}
.ws38{word-spacing:0.239040px;}
.ws92{word-spacing:0.240480px;}
.ws81{word-spacing:0.241200px;}
.ws63{word-spacing:0.264960px;}
.ws1c{word-spacing:0.331200px;}
.ws35{word-spacing:0.397440px;}
.ws73{word-spacing:0.421200px;}
.ws7{word-spacing:0.432000px;}
.ws6{word-spacing:0.463680px;}
.ws21{word-spacing:0.480960px;}
.ws4{word-spacing:0.482400px;}
.ws5d{word-spacing:0.529920px;}
.ws33{word-spacing:0.576000px;}
.ws24{word-spacing:0.596160px;}
.ws88{word-spacing:0.597600px;}
.ws8c{word-spacing:0.601200px;}
.ws91{word-spacing:0.662400px;}
.ws69{word-spacing:0.673920px;}
.ws5{word-spacing:0.728640px;}
.ws96{word-spacing:0.758160px;}
.ws3c{word-spacing:0.776880px;}
.ws60{word-spacing:0.794880px;}
.ws74{word-spacing:0.861120px;}
.ws3f{word-spacing:0.896400px;}
.ws9c{word-spacing:0.927360px;}
.ws5c{word-spacing:0.993600px;}
.ws4d{word-spacing:1.258560px;}
.ws4c{word-spacing:1.589760px;}
.ws55{word-spacing:1.987200px;}
.ws4f{word-spacing:2.715840px;}
.ws50{word-spacing:3.047040px;}
.ws54{word-spacing:3.444480px;}
.ws52{word-spacing:5.564160px;}
.ws51{word-spacing:7.750080px;}
.ws49{word-spacing:9.604800px;}
.ws4b{word-spacing:12.784320px;}
.ws4a{word-spacing:12.983040px;}
.ws43{word-spacing:13.115520px;}
.ws4e{word-spacing:14.970240px;}
.ws45{word-spacing:17.089920px;}
.ws44{word-spacing:17.288640px;}
.ws42{word-spacing:23.581440px;}
.ws53{word-spacing:36.564480px;}
._7{margin-left:-13.795488px;}
._4{margin-left:-11.555712px;}
._6{margin-left:-10.052784px;}
._5{margin-left:-8.352000px;}
._8{margin-left:-6.382656px;}
._a{margin-left:-5.274144px;}
._b{margin-left:-4.005360px;}
._9{margin-left:-2.845584px;}
._1{margin-left:-1.358928px;}
._0{width:1.070928px;}
._2{width:2.169072px;}
._c{width:13.303152px;}
._d{width:32.600880px;}
._e{width:35.774928px;}
._3{width:847.396800px;}
.fcb{color:rgb(0,0,255);}
.fca{color:rgb(57,57,128);}
.fc9{color:rgb(78,80,78);}
.fc8{color:rgb(77,108,153);}
.fc5{color:transparent;}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(237,111,48);}
.fc7{color:rgb(38,38,38);}
.fc6{color:rgb(141,209,231);}
.fc4{color:rgb(127,127,127);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs7{font-size:120.240000px;}
.y38{bottom:-0.000150px;}
.y0{bottom:0.000000px;}
.y1f{bottom:0.180000px;}
.y23{bottom:3.060000px;}
.y27{bottom:3.240000px;}
.y1a{bottom:3.420000px;}
.y2f{bottom:4.500000px;}
.y2e{bottom:4.680000px;}
.y1c{bottom:4.860000px;}
.y8{bottom:9.720000px;}
.y1f7{bottom:9.900000px;}
.y1f5{bottom:12.060000px;}
.y203{bottom:17.820000px;}
.y1fc{bottom:19.440000px;}
.y1f9{bottom:20.160000px;}
.y25{bottom:21.960000px;}
.y2c{bottom:22.140000px;}
.y18{bottom:22.500000px;}
.y1ff{bottom:23.220000px;}
.yc{bottom:23.767020px;}
.y21{bottom:24.840000px;}
.y20{bottom:40.860000px;}
.y4{bottom:42.660000px;}
.yb{bottom:55.086840px;}
.y1e{bottom:63.720000px;}
.ya{bottom:70.210080px;}
.y5{bottom:82.800000px;}
.y9{bottom:84.067020px;}
.y1d{bottom:92.160000px;}
.y7{bottom:97.923960px;}
.y2ef{bottom:111.070080px;}
.y6{bottom:111.600000px;}
.y2c3{bottom:112.325040px;}
.y269{bottom:113.395860px;}
.y251{bottom:115.380000px;}
.y180{bottom:116.496720px;}
.y22a{bottom:118.080000px;}
.y298{bottom:120.602160px;}
.y33b{bottom:121.872960px;}
.y1e2{bottom:122.119200px;}
.y1ab{bottom:123.693840px;}
.y112{bottom:124.275600px;}
.y172{bottom:126.370800px;}
.ye2{bottom:128.273760px;}
.y250{bottom:128.340000px;}
.y9e{bottom:129.960000px;}
.y2ee{bottom:129.965040px;}
.y268{bottom:131.040000px;}
.y229{bottom:131.220000px;}
.y17f{bottom:136.832400px;}
.y38d{bottom:136.985040px;}
.y33a{bottom:140.950080px;}
.y1e1{bottom:141.014160px;}
.y297{bottom:141.120000px;}
.y3bc{bottom:142.382880px;}
.y1aa{bottom:142.770960px;}
.y111{bottom:144.793440px;}
.y171{bottom:146.524320px;}
.y3{bottom:146.700000px;}
.y24f{bottom:147.240000px;}
.y9d{bottom:147.420000px;}
.ye1{bottom:148.261680px;}
.y2ed{bottom:148.860000px;}
.y228{bottom:150.300000px;}
.y267{bottom:154.498320px;}
.y38c{bottom:155.880000px;}
.y141{bottom:155.972880px;}
.y17e{bottom:157.350240px;}
.y339{bottom:159.845040px;}
.y1e0{bottom:160.637760px;}
.y2c2{bottom:160.740000px;}
.y3bb{bottom:161.460000px;}
.y1a9{bottom:161.665920px;}
.y110{bottom:165.311280px;}
.y170{bottom:167.042160px;}
.y9c{bottom:167.760000px;}
.ye0{bottom:168.597360px;}
.y296{bottom:169.920000px;}
.y38b{bottom:174.787920px;}
.y140{bottom:176.308560px;}
.y17d{bottom:177.868080px;}
.y338{bottom:178.740000px;}
.y2ec{bottom:179.460000px;}
.y1df{bottom:179.714880px;}
.y3ba{bottom:180.367920px;}
.y3e3{bottom:180.380880px;}
.y1a8{bottom:180.560880px;}
.y307{bottom:182.386800px;}
.y20e{bottom:183.970080px;}
.y24e{bottom:184.155840px;}
.y10f{bottom:185.646960px;}
.y16f{bottom:187.583760px;}
.ydf{bottom:188.933040px;}
.y2c1{bottom:192.458880px;}
.y38a{bottom:193.865040px;}
.y13f{bottom:196.826400px;}
.y337{bottom:197.832960px;}
.y17c{bottom:198.203760px;}
.y9b{bottom:198.360000px;}
.y1de{bottom:198.609840px;}
.y3b9{bottom:199.262880px;}
.y3e2{bottom:199.275840px;}
.y1a7{bottom:199.638000px;}
.y306{bottom:201.463920px;}
.y20d{bottom:202.865040px;}
.y24d{bottom:203.232960px;}
.y295{bottom:203.464800px;}
.y10e{bottom:206.164800px;}
.y16e{bottom:207.919440px;}
.yde{bottom:209.268720px;}
.y2c0{bottom:211.353840px;}
.y389{bottom:212.760000px;}
.y336{bottom:216.727920px;}
.y13e{bottom:217.162080px;}
.y1dd{bottom:217.504800px;}
.y3b8{bottom:218.340000px;}
.y3e1{bottom:218.352960px;}
.y1a6{bottom:218.532960px;}
.y17b{bottom:218.721600px;}
.y2eb{bottom:220.350960px;}
.y305{bottom:220.358880px;}
.y20c{bottom:221.760000px;}
.y24c{bottom:222.127920px;}
.y294{bottom:223.800480px;}
.y10d{bottom:226.682640px;}
.y9a{bottom:227.520000px;}
.y16d{bottom:228.437280px;}
.ydd{bottom:229.422240px;}
.y2bf{bottom:230.430960px;}
.y388{bottom:231.672960px;}
.y335{bottom:235.622880px;}
.y1dc{bottom:236.581920px;}
.y3b7{bottom:237.247920px;}
.y1a5{bottom:237.427920px;}
.y13d{bottom:237.679920px;}
.y17a{bottom:239.239440px;}
.y2ea{bottom:239.245920px;}
.y304{bottom:239.253840px;}
.y24b{bottom:241.022880px;}
.y293{bottom:244.318320px;}
.y10c{bottom:247.018320px;}
.y16c{bottom:248.955120px;}
.y2be{bottom:249.325920px;}
.y20b{bottom:249.463260px;}
.ydc{bottom:249.757920px;}
.y387{bottom:250.567920px;}
.y227{bottom:254.683980px;}
.y334{bottom:254.700000px;}
.y1db{bottom:255.476880px;}
.y3b6{bottom:256.142880px;}
.y1a4{bottom:256.505040px;}
.y99{bottom:256.680000px;}
.y13c{bottom:258.197760px;}
.y2e9{bottom:258.323040px;}
.y303{bottom:258.330960px;}
.y179{bottom:259.575120px;}
.y24a{bottom:260.100000px;}
.y292{bottom:264.654000px;}
.y20a{bottom:266.748840px;}
.y10b{bottom:267.536160px;}
.y2bd{bottom:268.220880px;}
.y16b{bottom:269.290800px;}
.y386{bottom:269.645040px;}
.ydb{bottom:270.093600px;}
.y226{bottom:271.969560px;}
.y333{bottom:273.607920px;}
.y1da{bottom:274.371840px;}
.y3b5{bottom:275.220000px;}
.y1a3{bottom:275.400000px;}
.y2e8{bottom:277.218000px;}
.y302{bottom:277.225920px;}
.y13b{bottom:278.533440px;}
.y178{bottom:280.092960px;}
.y209{bottom:284.034420px;}
.y291{bottom:285.171840px;}
.y98{bottom:286.200000px;}
.y2bc{bottom:287.298000px;}
.y10a{bottom:288.054000px;}
.y385{bottom:288.540000px;}
.y225{bottom:289.255140px;}
.y249{bottom:289.440000px;}
.y16a{bottom:289.808640px;}
.yda{bottom:290.429280px;}
.y332{bottom:292.502880px;}
.y1d9{bottom:293.448960px;}
.y3e0{bottom:294.127920px;}
.y3b4{bottom:294.140880px;}
.y2e7{bottom:296.112960px;}
.y301{bottom:296.120880px;}
.y13a{bottom:299.051280px;}
.y266{bottom:299.398320px;}
.y177{bottom:300.610800px;}
.y208{bottom:301.320000px;}
.y1a2{bottom:304.020000px;}
.y290{bottom:305.689680px;}
.y2bb{bottom:306.192960px;}
.y224{bottom:306.720000px;}
.y384{bottom:307.447920px;}
.y109{bottom:308.389680px;}
.y169{bottom:310.326480px;}
.yd9{bottom:310.764960px;}
.y331{bottom:311.580000px;}
.y1d8{bottom:312.343920px;}
.y3df{bottom:313.022880px;}
.y3b3{bottom:313.035840px;}
.y2e6{bottom:315.190080px;}
.y300{bottom:315.198000px;}
.y97{bottom:316.800000px;}
.y265{bottom:319.551840px;}
.y139{bottom:319.569120px;}
.y248{bottom:321.153840px;}
.y207{bottom:324.379440px;}
.y2ba{bottom:325.087920px;}
.y28f{bottom:326.025360px;}
.y383{bottom:326.525040px;}
.y108{bottom:328.907520px;}
.y223{bottom:330.120000px;}
.y330{bottom:330.505920px;}
.y168{bottom:330.662160px;}
.y1d7{bottom:331.238880px;}
.y3de{bottom:332.100000px;}
.y3b2{bottom:332.112960px;}
.y1a1{bottom:333.028800px;}
.y176{bottom:333.184320px;}
.y2e5{bottom:334.085040px;}
.y2ff{bottom:334.092960px;}
.y138{bottom:339.904800px;}
.y247{bottom:340.048800px;}
.y264{bottom:340.069680px;}
.yd8{bottom:343.172880px;}
.y2b9{bottom:343.982880px;}
.y382{bottom:345.420000px;}
.y96{bottom:345.960000px;}
.y28e{bottom:346.543200px;}
.y32f{bottom:349.400880px;}
.y107{bottom:349.425360px;}
.y1d6{bottom:350.316000px;}
.y3b1{bottom:351.007920px;}
.y3dd{bottom:351.018000px;}
.y167{bottom:351.182160px;}
.y1a0{bottom:352.105920px;}
.y2e4{bottom:352.980000px;}
.y2fe{bottom:352.987920px;}
.y175{bottom:353.520000px;}
.y246{bottom:359.125920px;}
.y137{bottom:360.422640px;}
.y263{bottom:360.587520px;}
.y2b8{bottom:363.060000px;}
.yd7{bottom:363.326400px;}
.y381{bottom:364.332960px;}
.y28d{bottom:367.061040px;}
.y32e{bottom:368.478000px;}
.y1d5{bottom:369.210960px;}
.y106{bottom:369.761040px;}
.y3b0{bottom:369.902880px;}
.y3dc{bottom:369.912960px;}
.y19f{bottom:371.000880px;}
.y166{bottom:371.717280px;}
.y2fd{bottom:372.065040px;}
.y95{bottom:375.120000px;}
.y245{bottom:378.020880px;}
.y262{bottom:380.923200px;}
.y136{bottom:380.940480px;}
.y174{bottom:381.600000px;}
.y2e3{bottom:382.320000px;}
.y380{bottom:383.410080px;}
.yd6{bottom:383.662080px;}
.y32d{bottom:387.372960px;}
.y28c{bottom:387.396720px;}
.y1d4{bottom:388.105920px;}
.y3af{bottom:388.980000px;}
.y3db{bottom:388.990080px;}
.y19e{bottom:389.895840px;}
.y105{bottom:390.278880px;}
.y2fc{bottom:390.960000px;}
.y165{bottom:392.052960px;}
.y2b7{bottom:392.400000px;}
.y52{bottom:395.683200px;}
.y244{bottom:396.915840px;}
.y135{bottom:401.276160px;}
.y261{bottom:401.441040px;}
.y37f{bottom:402.305040px;}
.yd5{bottom:403.815600px;}
.y94{bottom:404.280000px;}
.y32c{bottom:406.267920px;}
.y1d3{bottom:407.183040px;}
.y3da{bottom:407.885040px;}
.y3ae{bottom:407.898000px;}
.y28b{bottom:407.914560px;}
.y19d{bottom:408.972960px;}
.y173{bottom:409.500000px;}
.y164{bottom:412.570800px;}
.y51{bottom:412.968780px;}
.y2e2{bottom:414.218880px;}
.y243{bottom:415.992960px;}
.y2fb{bottom:420.300000px;}
.y37e{bottom:421.200000px;}
.y134{bottom:421.794000px;}
.y260{bottom:421.958880px;}
.y104{bottom:422.852400px;}
.y2b6{bottom:424.105920px;}
.yd4{bottom:424.151280px;}
.y32b{bottom:425.345040px;}
.y1d2{bottom:426.078000px;}
.y3d9{bottom:426.780000px;}
.y3ad{bottom:426.792960px;}
.y19c{bottom:427.867920px;}
.y28a{bottom:428.432400px;}
.y50{bottom:430.254360px;}
.y163{bottom:433.088640px;}
.y2e1{bottom:433.113840px;}
.y93{bottom:433.800000px;}
.y242{bottom:434.887920px;}
.y37d{bottom:440.292960px;}
.y25f{bottom:442.294560px;}
.y133{bottom:442.311840px;}
.y2b5{bottom:443.183040px;}
.y103{bottom:443.188080px;}
.y32a{bottom:444.240000px;}
.yd3{bottom:444.486960px;}
.y1d1{bottom:444.972960px;}
.y3ac{bottom:445.870080px;}
.y3d8{bottom:445.872960px;}
.y19b{bottom:446.762880px;}
.y4f{bottom:447.539940px;}
.y289{bottom:448.768080px;}
.y2e0{bottom:452.008800px;}
.y162{bottom:453.424320px;}
.y77{bottom:453.780000px;}
.y241{bottom:453.782880px;}
.y37c{bottom:459.187920px;}
.y2b4{bottom:462.078000px;}
.y25e{bottom:462.812400px;}
.y102{bottom:463.705920px;}
.y1d0{bottom:464.050080px;}
.y92{bottom:464.400000px;}
.y4e{bottom:464.646240px;}
.y3ab{bottom:464.765040px;}
.y3d7{bottom:464.767920px;}
.yd2{bottom:464.822640px;}
.y19a{bottom:465.840000px;}
.y288{bottom:469.285920px;}
.y2df{bottom:471.085920px;}
.y76{bottom:471.370320px;}
.y240{bottom:472.865040px;}
.y329{bottom:473.580000px;}
.y161{bottom:473.942160px;}
.y132{bottom:474.885360px;}
.y37b{bottom:478.082880px;}
.y2b3{bottom:480.972960px;}
.y4d{bottom:481.931820px;}
.y1cf{bottom:482.945040px;}
.y25d{bottom:483.330240px;}
.y3aa{bottom:483.660000px;}
.y3d6{bottom:483.662880px;}
.y101{bottom:484.041600px;}
.yd1{bottom:485.158320px;}
.y287{bottom:489.803760px;}
.y75{bottom:489.917520px;}
.y2de{bottom:489.980880px;}
.y23f{bottom:491.760000px;}
.y91{bottom:493.380000px;}
.y160{bottom:494.460000px;}
.y199{bottom:495.180000px;}
.y131{bottom:495.221040px;}
.y37a{bottom:497.160000px;}
.y4c{bottom:499.217400px;}
.y2b2{bottom:500.050080px;}
.y1ce{bottom:501.840000px;}
.y3d5{bottom:502.740000px;}
.y3a9{bottom:502.750080px;}
.y25c{bottom:503.665920px;}
.y100{bottom:504.559440px;}
.yd0{bottom:505.311840px;}
.y328{bottom:505.363680px;}
.y2dd{bottom:508.875840px;}
.y74{bottom:508.994640px;}
.y286{bottom:510.139440px;}
.y130{bottom:515.556720px;}
.y379{bottom:516.067920px;}
.y4b{bottom:516.502980px;}
.y2b1{bottom:518.945040px;}
.y23e{bottom:520.380000px;}
.y3a8{bottom:521.645040px;}
.y3d4{bottom:521.652960px;}
.y90{bottom:522.540000px;}
.y35a{bottom:523.511280px;}
.y15f{bottom:523.980000px;}
.y25b{bottom:524.183760px;}
.y327{bottom:524.440800px;}
.yff{bottom:525.077280px;}
.ycf{bottom:525.647520px;}
.y198{bottom:526.919760px;}
.y73{bottom:527.889600px;}
.y2dc{bottom:527.952960px;}
.y1cd{bottom:530.460000px;}
.y285{bottom:530.657280px;}
.y4a{bottom:533.788560px;}
.y378{bottom:534.962880px;}
.y12f{bottom:536.074560px;}
.y2b0{bottom:537.840000px;}
.y3a7{bottom:540.540000px;}
.y3d3{bottom:540.547920px;}
.y326{bottom:543.335760px;}
.y25a{bottom:544.701600px;}
.yfe{bottom:545.412960px;}
.y197{bottom:545.814720px;}
.yce{bottom:545.983200px;}
.y72{bottom:546.784560px;}
.y2db{bottom:546.847920px;}
.y23d{bottom:549.411840px;}
.y49{bottom:550.894860px;}
.y284{bottom:551.175120px;}
.y8f{bottom:551.700000px;}
.y377{bottom:554.040000px;}
.y359{bottom:555.372720px;}
.y12e{bottom:556.592400px;}
.y3d2{bottom:559.625040px;}
.y3a6{bottom:559.656000px;}
.y1cc{bottom:559.759680px;}
.y15e{bottom:560.242080px;}
.y325{bottom:562.230720px;}
.y196{bottom:564.891840px;}
.y259{bottom:565.037280px;}
.y2da{bottom:565.742880px;}
.y71{bottom:565.861680px;}
.yfd{bottom:565.930800px;}
.ycd{bottom:566.318880px;}
.y48{bottom:568.180440px;}
.y2af{bottom:568.440000px;}
.y23c{bottom:568.488960px;}
.y283{bottom:571.510800px;}
.y376{bottom:572.947920px;}
.y358{bottom:574.267680px;}
.y12d{bottom:576.928080px;}
.y3d1{bottom:578.520000px;}
.y3a5{bottom:578.550960px;}
.y1cb{bottom:578.654640px;}
.y15d{bottom:580.577760px;}
.y8e{bottom:580.860000px;}
.y324{bottom:581.307840px;}
.y195{bottom:583.786800px;}
.y70{bottom:584.756640px;}
.y2d9{bottom:584.820000px;}
.y47{bottom:585.466020px;}
.y258{bottom:585.555120px;}
.yfc{bottom:586.448640px;}
.ycc{bottom:586.472400px;}
.y23b{bottom:587.383920px;}
.y375{bottom:591.842880px;}
.y282{bottom:592.028640px;}
.y357{bottom:593.344800px;}
.y1b{bottom:594.180000px;}
.y3d0{bottom:597.432960px;}
.y12c{bottom:597.445920px;}
.y1ca{bottom:597.549600px;}
.y323{bottom:600.202800px;}
.y15c{bottom:601.095600px;}
.y194{bottom:602.681760px;}
.y46{bottom:602.751600px;}
.y6f{bottom:603.651600px;}
.y206{bottom:603.912240px;}
.y257{bottom:606.072960px;}
.y23a{bottom:606.278880px;}
.ycb{bottom:606.808080px;}
.yfb{bottom:607.148640px;}
.y8d{bottom:610.020000px;}
.y374{bottom:610.920000px;}
.y356{bottom:612.239760px;}
.y281{bottom:612.546480px;}
.y2ae{bottom:613.879920px;}
.y2d8{bottom:614.160000px;}
.y3cf{bottom:616.510080px;}
.y3a4{bottom:616.523040px;}
.y1c9{bottom:616.626720px;}
.y12b{bottom:617.963760px;}
.y322{bottom:619.097760px;}
.y45{bottom:620.037180px;}
.y15b{bottom:621.431280px;}
.y193{bottom:621.758880px;}
.y6e{bottom:622.728720px;}
.y205{bottom:622.807200px;}
.y239{bottom:625.356000px;}
.y256{bottom:626.408640px;}
.yca{bottom:627.143760px;}
.yfa{bottom:627.666480px;}
.y373{bottom:629.827920px;}
.y355{bottom:631.134720px;}
.y280{bottom:632.882160px;}
.y2ad{bottom:634.215600px;}
.y3ce{bottom:635.405040px;}
.y3a3{bottom:635.418000px;}
.y1c8{bottom:635.521680px;}
.y44{bottom:637.322760px;}
.y321{bottom:638.174880px;}
.y12a{bottom:638.299440px;}
.y8c{bottom:639.540000px;}
.y192{bottom:640.653840px;}
.y204{bottom:641.520000px;}
.y6d{bottom:641.623680px;}
.y15a{bottom:641.949120px;}
.y238{bottom:644.250960px;}
.y2d7{bottom:645.873840px;}
.y255{bottom:646.926480px;}
.yc9{bottom:647.479440px;}
.yf9{bottom:648.184320px;}
.y372{bottom:648.722880px;}
.y354{bottom:650.211840px;}
.y27f{bottom:653.400000px;}
.y3cd{bottom:654.300000px;}
.y3a2{bottom:654.312960px;}
.y1c7{bottom:654.416640px;}
.y43{bottom:654.429060px;}
.y2ac{bottom:654.551280px;}
.y320{bottom:657.069840px;}
.y202{bottom:658.080000px;}
.y129{bottom:658.817280px;}
.y191{bottom:659.548800px;}
.y6c{bottom:660.518640px;}
.y159{bottom:662.466960px;}
.y237{bottom:663.145920px;}
.y2d6{bottom:664.950960px;}
.y254{bottom:667.444320px;}
.y371{bottom:667.800000px;}
.yc8{bottom:667.815120px;}
.yf8{bottom:668.520000px;}
.y353{bottom:669.106800px;}
.y8b{bottom:669.600000px;}
.y42{bottom:671.714640px;}
.y3a1{bottom:673.390080px;}
.y3cc{bottom:673.395120px;}
.y1c6{bottom:673.493760px;}
.y2ab{bottom:675.069120px;}
.y31f{bottom:675.964800px;}
.y190{bottom:678.625920px;}
.y128{bottom:679.335120px;}
.y6b{bottom:679.413600px;}
.y27e{bottom:682.200000px;}
.y236{bottom:682.223040px;}
.y158{bottom:682.802640px;}
.y2d5{bottom:683.845920px;}
.y370{bottom:686.718000px;}
.y253{bottom:687.780000px;}
.y8a{bottom:687.960000px;}
.yc7{bottom:687.968640px;}
.y352{bottom:688.001760px;}
.y201{bottom:688.140000px;}
.y41{bottom:689.000220px;}
.y3a0{bottom:692.285040px;}
.y3cb{bottom:692.290080px;}
.y1c5{bottom:692.388720px;}
.y31e{bottom:695.041920px;}
.y2aa{bottom:695.586960px;}
.y18f{bottom:697.520880px;}
.y6a{bottom:698.490720px;}
.yf7{bottom:699.303420px;}
.y127{bottom:699.670800px;}
.y235{bottom:701.118000px;}
.y1fe{bottom:702.720000px;}
.y2d4{bottom:702.740880px;}
.y157{bottom:703.320480px;}
.y36f{bottom:705.612960px;}
.y40{bottom:706.285800px;}
.y89{bottom:706.680000px;}
.y351{bottom:707.078880px;}
.yc6{bottom:708.304320px;}
.y200{bottom:711.180000px;}
.y3ca{bottom:711.185040px;}
.y1c4{bottom:711.283680px;}
.y31d{bottom:713.936880px;}
.y27d{bottom:715.740480px;}
.y2a9{bottom:715.922640px;}
.y18e{bottom:716.415840px;}
.y252{bottom:717.300000px;}
.y69{bottom:717.385680px;}
.y234{bottom:720.012960px;}
.y126{bottom:720.188640px;}
.y17{bottom:721.080000px;}
.y2d3{bottom:721.635840px;}
.y3f{bottom:723.571380px;}
.y156{bottom:723.838320px;}
.y36e{bottom:724.690080px;}
.y350{bottom:725.973840px;}
.yc5{bottom:728.640000px;}
.y3c9{bottom:730.080000px;}
.y39f{bottom:730.087920px;}
.y1c3{bottom:730.178640px;}
.y31c{bottom:732.831840px;}
.y18d{bottom:735.492960px;}
.y88{bottom:735.840000px;}
.y27c{bottom:736.076160px;}
.y68{bottom:736.280640px;}
.y2a8{bottom:736.440480px;}
.y1fb{bottom:737.280000px;}
.yb2{bottom:738.894420px;}
.y233{bottom:739.090080px;}
.y125{bottom:740.706480px;}
.y2d2{bottom:740.712960px;}
.y3e{bottom:740.856960px;}
.y1fd{bottom:742.140000px;}
.yf6{bottom:742.680000px;}
.y19{bottom:743.580000px;}
.y36d{bottom:743.585040px;}
.y155{bottom:744.174000px;}
.y34f{bottom:744.868800px;}
.y39e{bottom:749.165040px;}
.y3c8{bottom:749.185920px;}
.y1c2{bottom:749.255760px;}
.y31b{bottom:751.908960px;}
.y18c{bottom:754.387920px;}
.y67{bottom:755.357760px;}
.yb1{bottom:756.180000px;}
.y27b{bottom:756.594000px;}
.y2a7{bottom:756.958320px;}
.y3d{bottom:757.963260px;}
.y232{bottom:757.985040px;}
.y2d1{bottom:759.607920px;}
.y124{bottom:761.042160px;}
.y36c{bottom:762.480000px;}
.yc4{bottom:763.380000px;}
.y34e{bottom:763.945920px;}
.y87{bottom:764.460000px;}
.y154{bottom:764.691840px;}
.y1f8{bottom:768.060000px;}
.y3c7{bottom:768.080880px;}
.y1c1{bottom:768.150720px;}
.y31a{bottom:770.803920px;}
.y18b{bottom:773.282880px;}
.y1fa{bottom:773.640000px;}
.y66{bottom:774.252720px;}
.y3c{bottom:775.248840px;}
.yb0{bottom:775.985940px;}
.y231{bottom:776.880000px;}
.y27a{bottom:776.929680px;}
.y2a6{bottom:777.294000px;}
.y2d0{bottom:778.502880px;}
.y123{bottom:781.560000px;}
.y86{bottom:782.820000px;}
.y34d{bottom:782.840880px;}
.yc3{bottom:783.540000px;}
.y153{bottom:785.209680px;}
.y39d{bottom:786.967920px;}
.y3c6{bottom:786.975840px;}
.y1c0{bottom:787.045680px;}
.yf5{bottom:788.306400px;}
.y319{bottom:789.698880px;}
.y18a{bottom:792.360000px;}
.y3b{bottom:792.534420px;}
.y65{bottom:793.147680px;}
.y222{bottom:794.536560px;}
.yaf{bottom:796.140000px;}
.y279{bottom:797.447520px;}
.y2cf{bottom:797.580000px;}
.y2a5{bottom:797.811840px;}
.y1f6{bottom:799.560000px;}
.y36b{bottom:800.467920px;}
.y85{bottom:801.180000px;}
.y34c{bottom:801.735840px;}
.yc2{bottom:803.880000px;}
.y230{bottom:805.500000px;}
.y152{bottom:805.545360px;}
.y39c{bottom:806.045040px;}
.y3c5{bottom:806.052960px;}
.y1bf{bottom:806.122800px;}
.yf4{bottom:808.459920px;}
.y318{bottom:808.776000px;}
.y3a{bottom:809.820000px;}
.y122{bottom:811.080000px;}
.y64{bottom:812.224800px;}
.y221{bottom:813.795840px;}
.yae{bottom:816.314940px;}
.y278{bottom:817.965360px;}
.y2a4{bottom:818.329680px;}
.y84{bottom:819.360000px;}
.y36a{bottom:819.362880px;}
.y1f4{bottom:820.800000px;}
.y34b{bottom:820.812960px;}
.y189{bottom:821.700000px;}
.yc1{bottom:824.040000px;}
.y39b{bottom:824.940000px;}
.y3c4{bottom:824.947920px;}
.y1be{bottom:825.017760px;}
.y151{bottom:826.063200px;}
.y2ce{bottom:826.920000px;}
.y39{bottom:827.460000px;}
.y317{bottom:827.670960px;}
.yf3{bottom:828.977760px;}
.y63{bottom:831.119760px;}
.y220{bottom:832.872960px;}
.y22f{bottom:834.283980px;}
.yad{bottom:836.110440px;}
.y83{bottom:837.720000px;}
.y277{bottom:838.301040px;}
.y369{bottom:838.440000px;}
.y2a3{bottom:838.665360px;}
.y34a{bottom:839.707920px;}
.y37{bottom:843.480000px;}
.y3c3{bottom:843.842880px;}
.y39a{bottom:843.852960px;}
.y1bd{bottom:843.912720px;}
.y36{bottom:844.200000px;}
.yc0{bottom:844.380000px;}
.y1f3{bottom:844.920000px;}
.y316{bottom:846.565920px;}
.y150{bottom:846.581040px;}
.y121{bottom:847.309680px;}
.yf2{bottom:849.495600px;}
.y62{bottom:850.014720px;}
.y22e{bottom:851.569560px;}
.y21f{bottom:851.767920px;}
.y188{bottom:853.401600px;}
.yac{bottom:855.905940px;}
.y82{bottom:856.620000px;}
.y368{bottom:857.352960px;}
.y349{bottom:858.602880px;}
.y2cd{bottom:858.633840px;}
.y2fa{bottom:858.638880px;}
.y276{bottom:858.818880px;}
.y2a2{bottom:859.183200px;}
.y3c2{bottom:862.920000px;}
.y399{bottom:862.930080px;}
.y1bc{bottom:862.989840px;}
.y35{bottom:864.000000px;}
.ybf{bottom:864.720000px;}
.y315{bottom:865.643040px;}
.y14f{bottom:866.916720px;}
.y120{bottom:867.645360px;}
.y22d{bottom:868.855140px;}
.y61{bottom:869.091840px;}
.yf1{bottom:869.831280px;}
.y21e{bottom:870.662880px;}
.y187{bottom:872.296560px;}
.y1f2{bottom:872.634420px;}
.yab{bottom:876.060000px;}
.y367{bottom:876.247920px;}
.y348{bottom:877.680000px;}
.y2cc{bottom:877.710960px;}
.y2f9{bottom:877.716000px;}
.y275{bottom:879.336720px;}
.y2a1{bottom:879.701040px;}
.y398{bottom:881.825040px;}
.y3c1{bottom:881.838000px;}
.y1bb{bottom:881.884800px;}
.y314{bottom:884.538000px;}
.ybe{bottom:885.060000px;}
.y34{bottom:885.420000px;}
.y81{bottom:885.780000px;}
.y22c{bottom:886.320000px;}
.y14e{bottom:887.434560px;}
.y60{bottom:887.986800px;}
.y11f{bottom:888.163200px;}
.y21d{bottom:889.792560px;}
.y1f1{bottom:889.920000px;}
.y186{bottom:891.373680px;}
.y16{bottom:892.992240px;}
.y366{bottom:895.325040px;}
.yaa{bottom:896.234790px;}
.y2cb{bottom:896.605920px;}
.y2f8{bottom:896.610960px;}
.y274{bottom:899.672400px;}
.y2a0{bottom:900.036720px;}
.y397{bottom:900.720000px;}
.y3c0{bottom:900.732960px;}
.y1ba{bottom:900.779760px;}
.yf0{bottom:902.404800px;}
.y313{bottom:903.432960px;}
.ybd{bottom:905.220000px;}
.y33{bottom:906.840000px;}
.y5f{bottom:906.881760px;}
.y347{bottom:907.020000px;}
.y14d{bottom:907.952400px;}
.y11e{bottom:908.498880px;}
.y21c{bottom:908.687520px;}
.y22b{bottom:909.720000px;}
.y185{bottom:910.268640px;}
.y365{bottom:914.220000px;}
.y80{bottom:915.300000px;}
.y2ca{bottom:915.500880px;}
.y2f7{bottom:915.505920px;}
.ya9{bottom:916.030290px;}
.y1f0{bottom:916.040160px;}
.y396{bottom:919.810080px;}
.y15{bottom:919.819440px;}
.y1b9{bottom:919.856880px;}
.y273{bottom:920.190240px;}
.y29f{bottom:920.554560px;}
.y312{bottom:922.510080px;}
.yef{bottom:922.558320px;}
.ybc{bottom:925.560000px;}
.y5e{bottom:925.958880px;}
.y21b{bottom:927.582480px;}
.y14c{bottom:928.288080px;}
.y11d{bottom:929.016720px;}
.y184{bottom:929.163600px;}
.y32{bottom:929.705040px;}
.y364{bottom:933.122880px;}
.y2c9{bottom:934.578000px;}
.y2f6{bottom:934.583040px;}
.y1ef{bottom:934.935120px;}
.ya8{bottom:935.825790px;}
.y395{bottom:938.705040px;}
.y14{bottom:938.714400px;}
.y346{bottom:938.725920px;}
.y1b8{bottom:938.751840px;}
.y272{bottom:940.708080px;}
.y29e{bottom:941.072400px;}
.y311{bottom:941.405040px;}
.yee{bottom:942.711840px;}
.y5d{bottom:944.853840px;}
.y7f{bottom:945.900000px;}
.y21a{bottom:947.023920px;}
.y183{bottom:948.240720px;}
.y31{bottom:948.600000px;}
.y14b{bottom:948.805920px;}
.y11c{bottom:949.534560px;}
.y363{bottom:952.200000px;}
.y2c8{bottom:953.472960px;}
.y2f5{bottom:953.478000px;}
.y1ee{bottom:954.012240px;}
.ya7{bottom:955.979850px;}
.y394{bottom:957.600000px;}
.y345{bottom:957.620880px;}
.y1b7{bottom:957.646800px;}
.y13{bottom:957.791520px;}
.y310{bottom:960.300000px;}
.y271{bottom:961.043760px;}
.y29d{bottom:961.408080px;}
.yed{bottom:963.047520px;}
.y5c{bottom:963.748800px;}
.y30{bottom:965.340000px;}
.y219{bottom:965.918880px;}
.ybb{bottom:966.240000px;}
.y182{bottom:967.500000px;}
.y14a{bottom:969.323760px;}
.y11b{bottom:969.870240px;}
.y362{bottom:971.107920px;}
.y2c7{bottom:972.367920px;}
.y2f4{bottom:972.372960px;}
.y1ed{bottom:972.907200px;}
.y12{bottom:973.275120px;}
.y7e{bottom:975.060000px;}
.ya6{bottom:976.333500px;}
.y3bf{bottom:976.692960px;}
.y344{bottom:976.698000px;}
.y393{bottom:976.703040px;}
.y1b6{bottom:976.723920px;}
.y30f{bottom:979.398000px;}
.y270{bottom:981.561600px;}
.y29c{bottom:981.925920px;}
.y5b{bottom:982.825920px;}
.yec{bottom:983.383200px;}
.y218{bottom:984.813840px;}
.y2d{bottom:984.960000px;}
.yba{bottom:986.580000px;}
.y149{bottom:989.659440px;}
.y361{bottom:990.002880px;}
.y11a{bottom:990.388080px;}
.y2c6{bottom:991.445040px;}
.y2f3{bottom:991.450080px;}
.y1ec{bottom:991.802160px;}
.y3be{bottom:995.587920px;}
.y343{bottom:995.592960px;}
.y392{bottom:995.598000px;}
.y1b5{bottom:995.618880px;}
.ya5{bottom:996.129000px;}
.y181{bottom:998.100000px;}
.y30e{bottom:998.292960px;}
.y5a{bottom:1001.720880px;}
.y26f{bottom:1002.079440px;}
.y29b{bottom:1002.443760px;}
.yeb{bottom:1003.718880px;}
.y217{bottom:1003.890960px;}
.y7d{bottom:1004.220000px;}
.y2b{bottom:1006.200000px;}
.yb9{bottom:1006.740000px;}
.y360{bottom:1009.080000px;}
.y148{bottom:1010.177280px;}
.y2c5{bottom:1010.340000px;}
.y2f2{bottom:1010.345040px;}
.y119{bottom:1010.905920px;}
.y1eb{bottom:1011.607920px;}
.y3bd{bottom:1014.482880px;}
.y342{bottom:1014.487920px;}
.y391{bottom:1014.492960px;}
.y1b4{bottom:1014.513840px;}
.ya4{bottom:1015.924500px;}
.y30d{bottom:1017.187920px;}
.y59{bottom:1020.615840px;}
.y26e{bottom:1022.415120px;}
.y29a{bottom:1022.779440px;}
.y216{bottom:1022.785920px;}
.yea{bottom:1023.872400px;}
.yb8{bottom:1027.080000px;}
.y35f{bottom:1027.987920px;}
.y2f1{bottom:1029.240000px;}
.y1ea{bottom:1030.502880px;}
.y147{bottom:1030.695120px;}
.y7c{bottom:1033.560000px;}
.y341{bottom:1033.565040px;}
.y390{bottom:1033.570080px;}
.y1b3{bottom:1033.590960px;}
.ya3{bottom:1035.720000px;}
.y30c{bottom:1036.265040px;}
.y2c4{bottom:1039.680000px;}
.y58{bottom:1039.692960px;}
.y215{bottom:1041.680880px;}
.y26d{bottom:1042.932960px;}
.y299{bottom:1043.297280px;}
.y118{bottom:1043.479440px;}
.ye9{bottom:1044.208080px;}
.y2a{bottom:1044.900000px;}
.y35e{bottom:1046.882880px;}
.yb7{bottom:1047.420000px;}
.y1e9{bottom:1050.308640px;}
.y146{bottom:1051.030800px;}
.y340{bottom:1052.460000px;}
.y38f{bottom:1052.465040px;}
.y1b2{bottom:1052.485920px;}
.y30b{bottom:1055.160000px;}
.ya2{bottom:1055.520000px;}
.y2f0{bottom:1058.580000px;}
.y57{bottom:1058.587920px;}
.y214{bottom:1060.758000px;}
.y26c{bottom:1063.450800px;}
.y117{bottom:1063.815120px;}
.y29{bottom:1064.520000px;}
.ye8{bottom:1064.543760px;}
.y7b{bottom:1064.700000px;}
.y35d{bottom:1065.960000px;}
.yb6{bottom:1067.760000px;}
.y1e8{bottom:1069.203600px;}
.y38e{bottom:1071.360000px;}
.y33f{bottom:1071.372960px;}
.y1b1{bottom:1071.380880px;}
.y145{bottom:1071.548640px;}
.ya1{bottom:1074.426300px;}
.y56{bottom:1077.482880px;}
.y213{bottom:1079.652960px;}
.y26b{bottom:1083.786480px;}
.y116{bottom:1084.150800px;}
.y28{bottom:1084.320000px;}
.y30a{bottom:1084.500000px;}
.y35c{bottom:1084.867920px;}
.ye7{bottom:1084.879440px;}
.yb5{bottom:1088.097120px;}
.y1e7{bottom:1088.098560px;}
.y33e{bottom:1090.450080px;}
.y1b0{bottom:1090.458000px;}
.y11{bottom:1090.635840px;}
.y144{bottom:1092.066480px;}
.y7a{bottom:1095.660000px;}
.y55{bottom:1096.560000px;}
.ya0{bottom:1098.540000px;}
.y212{bottom:1098.547920px;}
.y35b{bottom:1103.762880px;}
.y26{bottom:1103.940000px;}
.y26a{bottom:1104.304320px;}
.y115{bottom:1104.668640px;}
.ye6{bottom:1105.215120px;}
.y1e6{bottom:1107.904320px;}
.y33d{bottom:1109.345040px;}
.y1af{bottom:1109.352960px;}
.y10{bottom:1109.712960px;}
.y143{bottom:1112.402160px;}
.y211{bottom:1117.625040px;}
.y309{bottom:1118.871000px;}
.yb4{bottom:1122.840000px;}
.y24{bottom:1123.740000px;}
.y9f{bottom:1124.104500px;}
.y79{bottom:1125.180000px;}
.y114{bottom:1125.186480px;}
.ye5{bottom:1125.368640px;}
.y1e5{bottom:1126.799280px;}
.y54{bottom:1126.979850px;}
.y33c{bottom:1128.240000px;}
.y1ae{bottom:1128.247920px;}
.yf{bottom:1128.607920px;}
.y142{bottom:1132.920000px;}
.y210{bottom:1136.520000px;}
.y78{bottom:1143.900000px;}
.y113{bottom:1145.522160px;}
.ye4{bottom:1145.704320px;}
.y1e4{bottom:1146.605040px;}
.y1ad{bottom:1147.325040px;}
.ye{bottom:1147.685040px;}
.yb3{bottom:1153.260000px;}
.y308{bottom:1153.440000px;}
.y22{bottom:1162.440000px;}
.y20f{bottom:1165.140000px;}
.y1e3{bottom:1165.500000px;}
.ye3{bottom:1166.040000px;}
.y1ac{bottom:1166.220000px;}
.yd{bottom:1166.580000px;}
.y53{bottom:1168.020000px;}
.y2{bottom:1207.440000px;}
.y1{bottom:1226.340000px;}
.h15{height:0.000000px;}
.hd{height:4.032000px;}
.h2b{height:14.580000px;}
.h23{height:14.760000px;}
.he{height:18.900000px;}
.h11{height:19.081500px;}
.h13{height:20.520000px;}
.h14{height:20.700000px;}
.h27{height:21.240000px;}
.h25{height:23.400000px;}
.h31{height:28.324688px;}
.h2c{height:29.160000px;}
.h2f{height:29.974219px;}
.h29{height:30.780000px;}
.h8{height:30.961500px;}
.h28{height:31.501500px;}
.h24{height:33.541875px;}
.h2a{height:34.560000px;}
.h26{height:34.625391px;}
.h3{height:35.143594px;}
.hc{height:37.800000px;}
.h12{height:37.981500px;}
.ha{height:39.339844px;}
.hb{height:43.200000px;}
.h18{height:43.506914px;}
.h17{height:43.536094px;}
.h16{height:44.149219px;}
.h1e{height:46.792080px;}
.h5{height:48.224531px;}
.h2{height:48.256875px;}
.h9{height:49.218750px;}
.h10{height:51.402240px;}
.h20{height:51.619928px;}
.h1f{height:51.620528px;}
.h1d{height:51.625687px;}
.h21{height:51.655327px;}
.h1c{height:51.661687px;}
.h1b{height:51.679688px;}
.hf{height:51.865920px;}
.h22{height:52.417969px;}
.h2d{height:56.247840px;}
.h2e{height:56.376000px;}
.h30{height:56.437920px;}
.h1a{height:61.329023px;}
.h6{height:66.982440px;}
.h32{height:93.862800px;}
.h4{height:93.960000px;}
.h19{height:94.147920px;}
.h7{height:134.280000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w12{width:24.300000px;}
.wa{width:84.780000px;}
.wb{width:93.778500px;}
.wd{width:93.780000px;}
.w13{width:113.580000px;}
.wf{width:137.880000px;}
.wc{width:143.998500px;}
.we{width:144.000000px;}
.w2{width:176.040000px;}
.w4{width:194.581500px;}
.w7{width:216.000000px;}
.w10{width:264.241500px;}
.w8{width:264.781500px;}
.w11{width:274.500000px;}
.w3{width:393.300000px;}
.w9{width:409.680000px;}
.w5{width:654.300000px;}
.w6{width:654.480000px;}
.w14{width:676.620000px;}
.w1{width:892.500000px;}
.w0{width:892.620000px;}
.x1{left:-6.840000px;}
.x0{left:0.000000px;}
.xf{left:7.560000px;}
.x2{left:20.160000px;}
.x5{left:27.900000px;}
.x24{left:31.140000px;}
.x4{left:38.340000px;}
.x6{left:66.240000px;}
.x26{left:102.600000px;}
.x3{left:108.000000px;}
.x28{left:113.580000px;}
.x14{left:116.100000px;}
.x1c{left:124.560000px;}
.x20{left:129.240000px;}
.x29{left:132.300000px;}
.x13{left:134.460000px;}
.x1d{left:140.940000px;}
.x1f{left:150.479280px;}
.x23{left:161.985600px;}
.x7{left:174.240000px;}
.x16{left:181.080000px;}
.x19{left:194.220000px;}
.x8{left:214.380000px;}
.x1b{left:219.243240px;}
.xb{left:221.761620px;}
.xd{left:236.703960px;}
.x25{left:245.880000px;}
.x2a{left:253.980000px;}
.x1a{left:288.720000px;}
.xc{left:296.642160px;}
.x15{left:324.000000px;}
.x18{left:374.220000px;}
.x9{left:385.740000px;}
.x12{left:483.481440px;}
.x27{left:510.120000px;}
.x1e{left:578.340000px;}
.xa{left:600.120000px;}
.xe{left:607.680000px;}
.x10{left:615.240000px;}
.x2b{left:761.407920px;}
.x2c{left:765.000000px;}
.x21{left:776.160000px;}
.x22{left:777.780000px;}
.x17{left:783.540000px;}
.x11{left:794.523960px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-16.000000pt;}
.v1{vertical-align:-2.621440pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.933120pt;}
.ls38{letter-spacing:-0.883200pt;}
.ls3a{letter-spacing:-0.824320pt;}
.ls3e{letter-spacing:-0.765440pt;}
.ls3b{letter-spacing:-0.706560pt;}
.ls4a{letter-spacing:-0.686080pt;}
.ls30{letter-spacing:-0.673920pt;}
.ls5{letter-spacing:-0.647680pt;}
.ls33{letter-spacing:-0.588800pt;}
.ls1b{letter-spacing:-0.529920pt;}
.ls51{letter-spacing:-0.471040pt;}
.ls4f{letter-spacing:-0.412160pt;}
.ls12{letter-spacing:-0.353280pt;}
.ls49{letter-spacing:-0.300160pt;}
.ls41{letter-spacing:-0.299520pt;}
.ls11{letter-spacing:-0.294400pt;}
.ls31{letter-spacing:-0.265600pt;}
.ls4d{letter-spacing:-0.257280pt;}
.ls27{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.235520pt;}
.ls4c{letter-spacing:-0.214400pt;}
.ls50{letter-spacing:-0.213760pt;}
.ls17{letter-spacing:-0.212480pt;}
.ls46{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.176640pt;}
.ls3{letter-spacing:-0.171520pt;}
.ls4b{letter-spacing:-0.128640pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.117760pt;}
.ls1a{letter-spacing:-0.106880pt;}
.ls14{letter-spacing:-0.106240pt;}
.lse{letter-spacing:-0.096000pt;}
.ls3d{letter-spacing:-0.074880pt;}
.ls2c{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.058880pt;}
.ls15{letter-spacing:-0.053120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.017664pt;}
.ls4e{letter-spacing:0.042880pt;}
.ls37{letter-spacing:0.047104pt;}
.ls29{letter-spacing:0.053120pt;}
.ls9{letter-spacing:0.058880pt;}
.ls24{letter-spacing:0.082432pt;}
.ls2b{letter-spacing:0.106240pt;}
.ls32{letter-spacing:0.106880pt;}
.ls10{letter-spacing:0.117760pt;}
.ls28{letter-spacing:0.128000pt;}
.ls3f{letter-spacing:0.129536pt;}
.ls22{letter-spacing:0.159360pt;}
.ls52{letter-spacing:0.170752pt;}
.ls43{letter-spacing:0.176640pt;}
.ls19{letter-spacing:0.182528pt;}
.ls40{letter-spacing:0.184320pt;}
.ls8{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.235520pt;}
.ls56{letter-spacing:0.241408pt;}
.ls23{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.265600pt;}
.ls58{letter-spacing:0.270848pt;}
.ls34{letter-spacing:0.282624pt;}
.ls13{letter-spacing:0.294400pt;}
.ls2d{letter-spacing:0.299520pt;}
.ls47{letter-spacing:0.318720pt;}
.ls39{letter-spacing:0.320640pt;}
.lsb{letter-spacing:0.329344pt;}
.ls55{letter-spacing:0.335616pt;}
.ls36{letter-spacing:0.341504pt;}
.ls35{letter-spacing:0.353280pt;}
.ls26{letter-spacing:0.374400pt;}
.ls5a{letter-spacing:0.388608pt;}
.ls5b{letter-spacing:0.423936pt;}
.ls57{letter-spacing:0.465152pt;}
.ls2f{letter-spacing:0.488704pt;}
.ls16{letter-spacing:0.531200pt;}
.ls48{letter-spacing:0.541824pt;}
.ls54{letter-spacing:0.582912pt;}
.lsa{letter-spacing:0.584320pt;}
.ls2e{letter-spacing:0.600256pt;}
.lsd{letter-spacing:0.754304pt;}
.ls25{letter-spacing:0.765440pt;}
.ls1e{letter-spacing:0.896000pt;}
.ls20{letter-spacing:2.060800pt;}
.ls18{letter-spacing:25.330560pt;}
.ls3c{letter-spacing:29.128320pt;}
.ls44{letter-spacing:32.128000pt;}
.ls45{letter-spacing:52.756480pt;}
.ls53{letter-spacing:56.903680pt;}
.ls42{letter-spacing:59.763200pt;}
.ls1d{letter-spacing:70.016000pt;}
.ls1f{letter-spacing:86.656000pt;}
.ls21{letter-spacing:112.256000pt;}
.ls0{letter-spacing:751.631360pt;}
.ws78{word-spacing:-58.880000pt;}
.ws94{word-spacing:-53.120000pt;}
.ws40{word-spacing:-24.796160pt;}
.ws1f{word-spacing:-24.689280pt;}
.ws90{word-spacing:-24.582400pt;}
.ws97{word-spacing:-24.475520pt;}
.ws89{word-spacing:-21.116160pt;}
.ws93{word-spacing:-20.816640pt;}
.ws61{word-spacing:-20.741760pt;}
.ws71{word-spacing:-20.517120pt;}
.ws3a{word-spacing:-20.142720pt;}
.ws72{word-spacing:-18.048000pt;}
.ws77{word-spacing:-17.728000pt;}
.ws76{word-spacing:-17.600000pt;}
.ws80{word-spacing:-16.663040pt;}
.ws57{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.250880pt;}
.ws0{word-spacing:-16.133120pt;}
.ws3b{word-spacing:-15.351680pt;}
.ws11{word-spacing:-15.298560pt;}
.ws10{word-spacing:-14.979840pt;}
.ws6b{word-spacing:-14.767360pt;}
.ws12{word-spacing:-14.661120pt;}
.ws27{word-spacing:-14.656000pt;}
.ws13{word-spacing:-14.554880pt;}
.ws2{word-spacing:-14.464000pt;}
.ws31{word-spacing:-14.400000pt;}
.ws2f{word-spacing:-14.336000pt;}
.ws6e{word-spacing:-14.307840pt;}
.ws6c{word-spacing:-14.248960pt;}
.ws70{word-spacing:-14.072320pt;}
.wsa{word-spacing:-13.895680pt;}
.ws98{word-spacing:-13.836800pt;}
.ws6d{word-spacing:-13.777920pt;}
.ws20{word-spacing:-13.719040pt;}
.wsb{word-spacing:-13.660160pt;}
.wsd{word-spacing:-13.601280pt;}
.ws29{word-spacing:-13.542400pt;}
.ws6a{word-spacing:-13.536000pt;}
.wse{word-spacing:-13.483520pt;}
.wsc{word-spacing:-13.424640pt;}
.wsf{word-spacing:-13.365760pt;}
.ws9{word-spacing:-13.344000pt;}
.ws30{word-spacing:-13.306880pt;}
.ws5a{word-spacing:-13.248000pt;}
.ws8f{word-spacing:-13.130240pt;}
.ws5b{word-spacing:-13.071360pt;}
.ws58{word-spacing:-13.012480pt;}
.ws28{word-spacing:-12.953600pt;}
.ws66{word-spacing:-12.894720pt;}
.ws62{word-spacing:-12.835840pt;}
.ws59{word-spacing:-12.776960pt;}
.ws67{word-spacing:-12.718080pt;}
.ws2d{word-spacing:-12.270720pt;}
.ws2e{word-spacing:-12.111360pt;}
.ws2c{word-spacing:-12.005120pt;}
.ws2a{word-spacing:-11.952000pt;}
.ws2b{word-spacing:-11.792640pt;}
.ws7f{word-spacing:-9.733760pt;}
.ws7e{word-spacing:-9.690880pt;}
.ws8a{word-spacing:-9.607680pt;}
.ws7b{word-spacing:-9.562240pt;}
.ws7d{word-spacing:-9.476480pt;}
.ws7c{word-spacing:-9.433600pt;}
.ws79{word-spacing:-9.390720pt;}
.ws7a{word-spacing:-9.004800pt;}
.ws68{word-spacing:-8.574720pt;}
.ws86{word-spacing:-8.389120pt;}
.ws41{word-spacing:-3.356160pt;}
.ws48{word-spacing:-2.708480pt;}
.ws46{word-spacing:-2.355200pt;}
.ws47{word-spacing:-1.943040pt;}
.ws9b{word-spacing:-1.059840pt;}
.ws9d{word-spacing:-1.000960pt;}
.ws8d{word-spacing:-0.942080pt;}
.ws64{word-spacing:-0.883200pt;}
.ws25{word-spacing:-0.824320pt;}
.ws87{word-spacing:-0.765440pt;}
.ws56{word-spacing:-0.706560pt;}
.ws32{word-spacing:-0.673920pt;}
.ws5f{word-spacing:-0.647680pt;}
.ws39{word-spacing:-0.576000pt;}
.ws5e{word-spacing:-0.529920pt;}
.ws22{word-spacing:-0.471040pt;}
.ws9a{word-spacing:-0.412160pt;}
.ws95{word-spacing:-0.374400pt;}
.ws99{word-spacing:-0.353280pt;}
.ws17{word-spacing:-0.294400pt;}
.ws1d{word-spacing:-0.265600pt;}
.ws75{word-spacing:-0.256000pt;}
.ws23{word-spacing:-0.235520pt;}
.ws65{word-spacing:-0.224640pt;}
.ws34{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.176640pt;}
.ws84{word-spacing:-0.128640pt;}
.ws1a{word-spacing:-0.117760pt;}
.ws3d{word-spacing:-0.106240pt;}
.ws15{word-spacing:-0.096000pt;}
.ws8e{word-spacing:-0.074880pt;}
.ws18{word-spacing:-0.058880pt;}
.ws37{word-spacing:-0.053120pt;}
.ws85{word-spacing:-0.042880pt;}
.ws3{word-spacing:0.000000pt;}
.ws83{word-spacing:0.042880pt;}
.ws1e{word-spacing:0.053120pt;}
.ws26{word-spacing:0.058880pt;}
.ws8{word-spacing:0.064000pt;}
.ws14{word-spacing:0.096000pt;}
.ws6f{word-spacing:0.106240pt;}
.ws1b{word-spacing:0.117760pt;}
.ws36{word-spacing:0.128000pt;}
.ws82{word-spacing:0.128640pt;}
.ws3e{word-spacing:0.159360pt;}
.ws19{word-spacing:0.176640pt;}
.ws8b{word-spacing:0.192000pt;}
.ws38{word-spacing:0.212480pt;}
.ws92{word-spacing:0.213760pt;}
.ws81{word-spacing:0.214400pt;}
.ws63{word-spacing:0.235520pt;}
.ws1c{word-spacing:0.294400pt;}
.ws35{word-spacing:0.353280pt;}
.ws73{word-spacing:0.374400pt;}
.ws7{word-spacing:0.384000pt;}
.ws6{word-spacing:0.412160pt;}
.ws21{word-spacing:0.427520pt;}
.ws4{word-spacing:0.428800pt;}
.ws5d{word-spacing:0.471040pt;}
.ws33{word-spacing:0.512000pt;}
.ws24{word-spacing:0.529920pt;}
.ws88{word-spacing:0.531200pt;}
.ws8c{word-spacing:0.534400pt;}
.ws91{word-spacing:0.588800pt;}
.ws69{word-spacing:0.599040pt;}
.ws5{word-spacing:0.647680pt;}
.ws96{word-spacing:0.673920pt;}
.ws3c{word-spacing:0.690560pt;}
.ws60{word-spacing:0.706560pt;}
.ws74{word-spacing:0.765440pt;}
.ws3f{word-spacing:0.796800pt;}
.ws9c{word-spacing:0.824320pt;}
.ws5c{word-spacing:0.883200pt;}
.ws4d{word-spacing:1.118720pt;}
.ws4c{word-spacing:1.413120pt;}
.ws55{word-spacing:1.766400pt;}
.ws4f{word-spacing:2.414080pt;}
.ws50{word-spacing:2.708480pt;}
.ws54{word-spacing:3.061760pt;}
.ws52{word-spacing:4.945920pt;}
.ws51{word-spacing:6.888960pt;}
.ws49{word-spacing:8.537600pt;}
.ws4b{word-spacing:11.363840pt;}
.ws4a{word-spacing:11.540480pt;}
.ws43{word-spacing:11.658240pt;}
.ws4e{word-spacing:13.306880pt;}
.ws45{word-spacing:15.191040pt;}
.ws44{word-spacing:15.367680pt;}
.ws42{word-spacing:20.961280pt;}
.ws53{word-spacing:32.501760pt;}
._7{margin-left:-12.262656pt;}
._4{margin-left:-10.271744pt;}
._6{margin-left:-8.935808pt;}
._5{margin-left:-7.424000pt;}
._8{margin-left:-5.673472pt;}
._a{margin-left:-4.688128pt;}
._b{margin-left:-3.560320pt;}
._9{margin-left:-2.529408pt;}
._1{margin-left:-1.207936pt;}
._0{width:0.951936pt;}
._2{width:1.928064pt;}
._c{width:11.825024pt;}
._d{width:28.978560pt;}
._e{width:31.799936pt;}
._3{width:753.241600pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs7{font-size:106.880000pt;}
.y38{bottom:-0.000133pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:0.160000pt;}
.y23{bottom:2.720000pt;}
.y27{bottom:2.880000pt;}
.y1a{bottom:3.040000pt;}
.y2f{bottom:4.000000pt;}
.y2e{bottom:4.160000pt;}
.y1c{bottom:4.320000pt;}
.y8{bottom:8.640000pt;}
.y1f7{bottom:8.800000pt;}
.y1f5{bottom:10.720000pt;}
.y203{bottom:15.840000pt;}
.y1fc{bottom:17.280000pt;}
.y1f9{bottom:17.920000pt;}
.y25{bottom:19.520000pt;}
.y2c{bottom:19.680000pt;}
.y18{bottom:20.000000pt;}
.y1ff{bottom:20.640000pt;}
.yc{bottom:21.126240pt;}
.y21{bottom:22.080000pt;}
.y20{bottom:36.320000pt;}
.y4{bottom:37.920000pt;}
.yb{bottom:48.966080pt;}
.y1e{bottom:56.640000pt;}
.ya{bottom:62.408960pt;}
.y5{bottom:73.600000pt;}
.y9{bottom:74.726240pt;}
.y1d{bottom:81.920000pt;}
.y7{bottom:87.043520pt;}
.y2ef{bottom:98.728960pt;}
.y6{bottom:99.200000pt;}
.y2c3{bottom:99.844480pt;}
.y269{bottom:100.796320pt;}
.y251{bottom:102.560000pt;}
.y180{bottom:103.552640pt;}
.y22a{bottom:104.960000pt;}
.y298{bottom:107.201920pt;}
.y33b{bottom:108.331520pt;}
.y1e2{bottom:108.550400pt;}
.y1ab{bottom:109.950080pt;}
.y112{bottom:110.467200pt;}
.y172{bottom:112.329600pt;}
.ye2{bottom:114.021120pt;}
.y250{bottom:114.080000pt;}
.y9e{bottom:115.520000pt;}
.y2ee{bottom:115.524480pt;}
.y268{bottom:116.480000pt;}
.y229{bottom:116.640000pt;}
.y17f{bottom:121.628800pt;}
.y38d{bottom:121.764480pt;}
.y33a{bottom:125.288960pt;}
.y1e1{bottom:125.345920pt;}
.y297{bottom:125.440000pt;}
.y3bc{bottom:126.562560pt;}
.y1aa{bottom:126.907520pt;}
.y111{bottom:128.705280pt;}
.y171{bottom:130.243840pt;}
.y3{bottom:130.400000pt;}
.y24f{bottom:130.880000pt;}
.y9d{bottom:131.040000pt;}
.ye1{bottom:131.788160pt;}
.y2ed{bottom:132.320000pt;}
.y228{bottom:133.600000pt;}
.y267{bottom:137.331840pt;}
.y38c{bottom:138.560000pt;}
.y141{bottom:138.642560pt;}
.y17e{bottom:139.866880pt;}
.y339{bottom:142.084480pt;}
.y1e0{bottom:142.789120pt;}
.y2c2{bottom:142.880000pt;}
.y3bb{bottom:143.520000pt;}
.y1a9{bottom:143.703040pt;}
.y110{bottom:146.943360pt;}
.y170{bottom:148.481920pt;}
.y9c{bottom:149.120000pt;}
.ye0{bottom:149.864320pt;}
.y296{bottom:151.040000pt;}
.y38b{bottom:155.367040pt;}
.y140{bottom:156.718720pt;}
.y17d{bottom:158.104960pt;}
.y338{bottom:158.880000pt;}
.y2ec{bottom:159.520000pt;}
.y1df{bottom:159.746560pt;}
.y3ba{bottom:160.327040pt;}
.y3e3{bottom:160.338560pt;}
.y1a8{bottom:160.498560pt;}
.y307{bottom:162.121600pt;}
.y20e{bottom:163.528960pt;}
.y24e{bottom:163.694080pt;}
.y10f{bottom:165.019520pt;}
.y16f{bottom:166.741120pt;}
.ydf{bottom:167.940480pt;}
.y2c1{bottom:171.074560pt;}
.y38a{bottom:172.324480pt;}
.y13f{bottom:174.956800pt;}
.y337{bottom:175.851520pt;}
.y17c{bottom:176.181120pt;}
.y9b{bottom:176.320000pt;}
.y1de{bottom:176.542080pt;}
.y3b9{bottom:177.122560pt;}
.y3e2{bottom:177.134080pt;}
.y1a7{bottom:177.456000pt;}
.y306{bottom:179.079040pt;}
.y20d{bottom:180.324480pt;}
.y24d{bottom:180.651520pt;}
.y295{bottom:180.857600pt;}
.y10e{bottom:183.257600pt;}
.y16e{bottom:184.817280pt;}
.yde{bottom:186.016640pt;}
.y2c0{bottom:187.870080pt;}
.y389{bottom:189.120000pt;}
.y336{bottom:192.647040pt;}
.y13e{bottom:193.032960pt;}
.y1dd{bottom:193.337600pt;}
.y3b8{bottom:194.080000pt;}
.y3e1{bottom:194.091520pt;}
.y1a6{bottom:194.251520pt;}
.y17b{bottom:194.419200pt;}
.y2eb{bottom:195.867520pt;}
.y305{bottom:195.874560pt;}
.y20c{bottom:197.120000pt;}
.y24c{bottom:197.447040pt;}
.y294{bottom:198.933760pt;}
.y10d{bottom:201.495680pt;}
.y9a{bottom:202.240000pt;}
.y16d{bottom:203.055360pt;}
.ydd{bottom:203.930880pt;}
.y2bf{bottom:204.827520pt;}
.y388{bottom:205.931520pt;}
.y335{bottom:209.442560pt;}
.y1dc{bottom:210.295040pt;}
.y3b7{bottom:210.887040pt;}
.y1a5{bottom:211.047040pt;}
.y13d{bottom:211.271040pt;}
.y17a{bottom:212.657280pt;}
.y2ea{bottom:212.663040pt;}
.y304{bottom:212.670080pt;}
.y24b{bottom:214.242560pt;}
.y293{bottom:217.171840pt;}
.y10c{bottom:219.571840pt;}
.y16c{bottom:221.293440pt;}
.y2be{bottom:221.623040pt;}
.y20b{bottom:221.745120pt;}
.ydc{bottom:222.007040pt;}
.y387{bottom:222.727040pt;}
.y227{bottom:226.385760pt;}
.y334{bottom:226.400000pt;}
.y1db{bottom:227.090560pt;}
.y3b6{bottom:227.682560pt;}
.y1a4{bottom:228.004480pt;}
.y99{bottom:228.160000pt;}
.y13c{bottom:229.509120pt;}
.y2e9{bottom:229.620480pt;}
.y303{bottom:229.627520pt;}
.y179{bottom:230.733440pt;}
.y24a{bottom:231.200000pt;}
.y292{bottom:235.248000pt;}
.y20a{bottom:237.110080pt;}
.y10b{bottom:237.809920pt;}
.y2bd{bottom:238.418560pt;}
.y16b{bottom:239.369600pt;}
.y386{bottom:239.684480pt;}
.ydb{bottom:240.083200pt;}
.y226{bottom:241.750720pt;}
.y333{bottom:243.207040pt;}
.y1da{bottom:243.886080pt;}
.y3b5{bottom:244.640000pt;}
.y1a3{bottom:244.800000pt;}
.y2e8{bottom:246.416000pt;}
.y302{bottom:246.423040pt;}
.y13b{bottom:247.585280pt;}
.y178{bottom:248.971520pt;}
.y209{bottom:252.475040pt;}
.y291{bottom:253.486080pt;}
.y98{bottom:254.400000pt;}
.y2bc{bottom:255.376000pt;}
.y10a{bottom:256.048000pt;}
.y385{bottom:256.480000pt;}
.y225{bottom:257.115680pt;}
.y249{bottom:257.280000pt;}
.y16a{bottom:257.607680pt;}
.yda{bottom:258.159360pt;}
.y332{bottom:260.002560pt;}
.y1d9{bottom:260.843520pt;}
.y3e0{bottom:261.447040pt;}
.y3b4{bottom:261.458560pt;}
.y2e7{bottom:263.211520pt;}
.y301{bottom:263.218560pt;}
.y13a{bottom:265.823360pt;}
.y266{bottom:266.131840pt;}
.y177{bottom:267.209600pt;}
.y208{bottom:267.840000pt;}
.y1a2{bottom:270.240000pt;}
.y290{bottom:271.724160pt;}
.y2bb{bottom:272.171520pt;}
.y224{bottom:272.640000pt;}
.y384{bottom:273.287040pt;}
.y109{bottom:274.124160pt;}
.y169{bottom:275.845760pt;}
.yd9{bottom:276.235520pt;}
.y331{bottom:276.960000pt;}
.y1d8{bottom:277.639040pt;}
.y3df{bottom:278.242560pt;}
.y3b3{bottom:278.254080pt;}
.y2e6{bottom:280.168960pt;}
.y300{bottom:280.176000pt;}
.y97{bottom:281.600000pt;}
.y265{bottom:284.046080pt;}
.y139{bottom:284.061440pt;}
.y248{bottom:285.470080pt;}
.y207{bottom:288.337280pt;}
.y2ba{bottom:288.967040pt;}
.y28f{bottom:289.800320pt;}
.y383{bottom:290.244480pt;}
.y108{bottom:292.362240pt;}
.y223{bottom:293.440000pt;}
.y330{bottom:293.783040pt;}
.y168{bottom:293.921920pt;}
.y1d7{bottom:294.434560pt;}
.y3de{bottom:295.200000pt;}
.y3b2{bottom:295.211520pt;}
.y1a1{bottom:296.025600pt;}
.y176{bottom:296.163840pt;}
.y2e5{bottom:296.964480pt;}
.y2ff{bottom:296.971520pt;}
.y138{bottom:302.137600pt;}
.y247{bottom:302.265600pt;}
.y264{bottom:302.284160pt;}
.yd8{bottom:305.042560pt;}
.y2b9{bottom:305.762560pt;}
.y382{bottom:307.040000pt;}
.y96{bottom:307.520000pt;}
.y28e{bottom:308.038400pt;}
.y32f{bottom:310.578560pt;}
.y107{bottom:310.600320pt;}
.y1d6{bottom:311.392000pt;}
.y3b1{bottom:312.007040pt;}
.y3dd{bottom:312.016000pt;}
.y167{bottom:312.161920pt;}
.y1a0{bottom:312.983040pt;}
.y2e4{bottom:313.760000pt;}
.y2fe{bottom:313.767040pt;}
.y175{bottom:314.240000pt;}
.y246{bottom:319.223040pt;}
.y137{bottom:320.375680pt;}
.y263{bottom:320.522240pt;}
.y2b8{bottom:322.720000pt;}
.yd7{bottom:322.956800pt;}
.y381{bottom:323.851520pt;}
.y28d{bottom:326.276480pt;}
.y32e{bottom:327.536000pt;}
.y1d5{bottom:328.187520pt;}
.y106{bottom:328.676480pt;}
.y3b0{bottom:328.802560pt;}
.y3dc{bottom:328.811520pt;}
.y19f{bottom:329.778560pt;}
.y166{bottom:330.415360pt;}
.y2fd{bottom:330.724480pt;}
.y95{bottom:333.440000pt;}
.y245{bottom:336.018560pt;}
.y262{bottom:338.598400pt;}
.y136{bottom:338.613760pt;}
.y174{bottom:339.200000pt;}
.y2e3{bottom:339.840000pt;}
.y380{bottom:340.808960pt;}
.yd6{bottom:341.032960pt;}
.y32d{bottom:344.331520pt;}
.y28c{bottom:344.352640pt;}
.y1d4{bottom:344.983040pt;}
.y3af{bottom:345.760000pt;}
.y3db{bottom:345.768960pt;}
.y19e{bottom:346.574080pt;}
.y105{bottom:346.914560pt;}
.y2fc{bottom:347.520000pt;}
.y165{bottom:348.491520pt;}
.y2b7{bottom:348.800000pt;}
.y52{bottom:351.718400pt;}
.y244{bottom:352.814080pt;}
.y135{bottom:356.689920pt;}
.y261{bottom:356.836480pt;}
.y37f{bottom:357.604480pt;}
.yd5{bottom:358.947200pt;}
.y94{bottom:359.360000pt;}
.y32c{bottom:361.127040pt;}
.y1d3{bottom:361.940480pt;}
.y3da{bottom:362.564480pt;}
.y3ae{bottom:362.576000pt;}
.y28b{bottom:362.590720pt;}
.y19d{bottom:363.531520pt;}
.y173{bottom:364.000000pt;}
.y164{bottom:366.729600pt;}
.y51{bottom:367.083360pt;}
.y2e2{bottom:368.194560pt;}
.y243{bottom:369.771520pt;}
.y2fb{bottom:373.600000pt;}
.y37e{bottom:374.400000pt;}
.y134{bottom:374.928000pt;}
.y260{bottom:375.074560pt;}
.y104{bottom:375.868800pt;}
.y2b6{bottom:376.983040pt;}
.yd4{bottom:377.023360pt;}
.y32b{bottom:378.084480pt;}
.y1d2{bottom:378.736000pt;}
.y3d9{bottom:379.360000pt;}
.y3ad{bottom:379.371520pt;}
.y19c{bottom:380.327040pt;}
.y28a{bottom:380.828800pt;}
.y50{bottom:382.448320pt;}
.y163{bottom:384.967680pt;}
.y2e1{bottom:384.990080pt;}
.y93{bottom:385.600000pt;}
.y242{bottom:386.567040pt;}
.y37d{bottom:391.371520pt;}
.y25f{bottom:393.150720pt;}
.y133{bottom:393.166080pt;}
.y2b5{bottom:393.940480pt;}
.y103{bottom:393.944960pt;}
.y32a{bottom:394.880000pt;}
.yd3{bottom:395.099520pt;}
.y1d1{bottom:395.531520pt;}
.y3ac{bottom:396.328960pt;}
.y3d8{bottom:396.331520pt;}
.y19b{bottom:397.122560pt;}
.y4f{bottom:397.813280pt;}
.y289{bottom:398.904960pt;}
.y2e0{bottom:401.785600pt;}
.y162{bottom:403.043840pt;}
.y77{bottom:403.360000pt;}
.y241{bottom:403.362560pt;}
.y37c{bottom:408.167040pt;}
.y2b4{bottom:410.736000pt;}
.y25e{bottom:411.388800pt;}
.y102{bottom:412.183040pt;}
.y1d0{bottom:412.488960pt;}
.y92{bottom:412.800000pt;}
.y4e{bottom:413.018880pt;}
.y3ab{bottom:413.124480pt;}
.y3d7{bottom:413.127040pt;}
.yd2{bottom:413.175680pt;}
.y19a{bottom:414.080000pt;}
.y288{bottom:417.143040pt;}
.y2df{bottom:418.743040pt;}
.y76{bottom:418.995840pt;}
.y240{bottom:420.324480pt;}
.y329{bottom:420.960000pt;}
.y161{bottom:421.281920pt;}
.y132{bottom:422.120320pt;}
.y37b{bottom:424.962560pt;}
.y2b3{bottom:427.531520pt;}
.y4d{bottom:428.383840pt;}
.y1cf{bottom:429.284480pt;}
.y25d{bottom:429.626880pt;}
.y3aa{bottom:429.920000pt;}
.y3d6{bottom:429.922560pt;}
.y101{bottom:430.259200pt;}
.yd1{bottom:431.251840pt;}
.y287{bottom:435.381120pt;}
.y75{bottom:435.482240pt;}
.y2de{bottom:435.538560pt;}
.y23f{bottom:437.120000pt;}
.y91{bottom:438.560000pt;}
.y160{bottom:439.520000pt;}
.y199{bottom:440.160000pt;}
.y131{bottom:440.196480pt;}
.y37a{bottom:441.920000pt;}
.y4c{bottom:443.748800pt;}
.y2b2{bottom:444.488960pt;}
.y1ce{bottom:446.080000pt;}
.y3d5{bottom:446.880000pt;}
.y3a9{bottom:446.888960pt;}
.y25c{bottom:447.703040pt;}
.y100{bottom:448.497280pt;}
.yd0{bottom:449.166080pt;}
.y328{bottom:449.212160pt;}
.y2dd{bottom:452.334080pt;}
.y74{bottom:452.439680pt;}
.y286{bottom:453.457280pt;}
.y130{bottom:458.272640pt;}
.y379{bottom:458.727040pt;}
.y4b{bottom:459.113760pt;}
.y2b1{bottom:461.284480pt;}
.y23e{bottom:462.560000pt;}
.y3a8{bottom:463.684480pt;}
.y3d4{bottom:463.691520pt;}
.y90{bottom:464.480000pt;}
.y35a{bottom:465.343360pt;}
.y15f{bottom:465.760000pt;}
.y25b{bottom:465.941120pt;}
.y327{bottom:466.169600pt;}
.yff{bottom:466.735360pt;}
.ycf{bottom:467.242240pt;}
.y198{bottom:468.373120pt;}
.y73{bottom:469.235200pt;}
.y2dc{bottom:469.291520pt;}
.y1cd{bottom:471.520000pt;}
.y285{bottom:471.695360pt;}
.y4a{bottom:474.478720pt;}
.y378{bottom:475.522560pt;}
.y12f{bottom:476.510720pt;}
.y2b0{bottom:478.080000pt;}
.y3a7{bottom:480.480000pt;}
.y3d3{bottom:480.487040pt;}
.y326{bottom:482.965120pt;}
.y25a{bottom:484.179200pt;}
.yfe{bottom:484.811520pt;}
.y197{bottom:485.168640pt;}
.yce{bottom:485.318400pt;}
.y72{bottom:486.030720pt;}
.y2db{bottom:486.087040pt;}
.y23d{bottom:488.366080pt;}
.y49{bottom:489.684320pt;}
.y284{bottom:489.933440pt;}
.y8f{bottom:490.400000pt;}
.y377{bottom:492.480000pt;}
.y359{bottom:493.664640pt;}
.y12e{bottom:494.748800pt;}
.y3d2{bottom:497.444480pt;}
.y3a6{bottom:497.472000pt;}
.y1cc{bottom:497.564160pt;}
.y15e{bottom:497.992960pt;}
.y325{bottom:499.760640pt;}
.y196{bottom:502.126080pt;}
.y259{bottom:502.255360pt;}
.y2da{bottom:502.882560pt;}
.y71{bottom:502.988160pt;}
.yfd{bottom:503.049600pt;}
.ycd{bottom:503.394560pt;}
.y48{bottom:505.049280pt;}
.y2af{bottom:505.280000pt;}
.y23c{bottom:505.323520pt;}
.y283{bottom:508.009600pt;}
.y376{bottom:509.287040pt;}
.y358{bottom:510.460160pt;}
.y12d{bottom:512.824960pt;}
.y3d1{bottom:514.240000pt;}
.y3a5{bottom:514.267520pt;}
.y1cb{bottom:514.359680pt;}
.y15d{bottom:516.069120pt;}
.y8e{bottom:516.320000pt;}
.y324{bottom:516.718080pt;}
.y195{bottom:518.921600pt;}
.y70{bottom:519.783680pt;}
.y2d9{bottom:519.840000pt;}
.y47{bottom:520.414240pt;}
.y258{bottom:520.493440pt;}
.yfc{bottom:521.287680pt;}
.ycc{bottom:521.308800pt;}
.y23b{bottom:522.119040pt;}
.y375{bottom:526.082560pt;}
.y282{bottom:526.247680pt;}
.y357{bottom:527.417600pt;}
.y1b{bottom:528.160000pt;}
.y3d0{bottom:531.051520pt;}
.y12c{bottom:531.063040pt;}
.y1ca{bottom:531.155200pt;}
.y323{bottom:533.513600pt;}
.y15c{bottom:534.307200pt;}
.y194{bottom:535.717120pt;}
.y46{bottom:535.779200pt;}
.y6f{bottom:536.579200pt;}
.y206{bottom:536.810880pt;}
.y257{bottom:538.731520pt;}
.y23a{bottom:538.914560pt;}
.ycb{bottom:539.384960pt;}
.yfb{bottom:539.687680pt;}
.y8d{bottom:542.240000pt;}
.y374{bottom:543.040000pt;}
.y356{bottom:544.213120pt;}
.y281{bottom:544.485760pt;}
.y2ae{bottom:545.671040pt;}
.y2d8{bottom:545.920000pt;}
.y3cf{bottom:548.008960pt;}
.y3a4{bottom:548.020480pt;}
.y1c9{bottom:548.112640pt;}
.y12b{bottom:549.301120pt;}
.y322{bottom:550.309120pt;}
.y45{bottom:551.144160pt;}
.y15b{bottom:552.383360pt;}
.y193{bottom:552.674560pt;}
.y6e{bottom:553.536640pt;}
.y205{bottom:553.606400pt;}
.y239{bottom:555.872000pt;}
.y256{bottom:556.807680pt;}
.yca{bottom:557.461120pt;}
.yfa{bottom:557.925760pt;}
.y373{bottom:559.847040pt;}
.y355{bottom:561.008640pt;}
.y280{bottom:562.561920pt;}
.y2ad{bottom:563.747200pt;}
.y3ce{bottom:564.804480pt;}
.y3a3{bottom:564.816000pt;}
.y1c8{bottom:564.908160pt;}
.y44{bottom:566.509120pt;}
.y321{bottom:567.266560pt;}
.y12a{bottom:567.377280pt;}
.y8c{bottom:568.480000pt;}
.y192{bottom:569.470080pt;}
.y204{bottom:570.240000pt;}
.y6d{bottom:570.332160pt;}
.y15a{bottom:570.621440pt;}
.y238{bottom:572.667520pt;}
.y2d7{bottom:574.110080pt;}
.y255{bottom:575.045760pt;}
.yc9{bottom:575.537280pt;}
.yf9{bottom:576.163840pt;}
.y372{bottom:576.642560pt;}
.y354{bottom:577.966080pt;}
.y27f{bottom:580.800000pt;}
.y3cd{bottom:581.600000pt;}
.y3a2{bottom:581.611520pt;}
.y1c7{bottom:581.703680pt;}
.y43{bottom:581.714720pt;}
.y2ac{bottom:581.823360pt;}
.y320{bottom:584.062080pt;}
.y202{bottom:584.960000pt;}
.y129{bottom:585.615360pt;}
.y191{bottom:586.265600pt;}
.y6c{bottom:587.127680pt;}
.y159{bottom:588.859520pt;}
.y237{bottom:589.463040pt;}
.y2d6{bottom:591.067520pt;}
.y254{bottom:593.283840pt;}
.y371{bottom:593.600000pt;}
.yc8{bottom:593.613440pt;}
.yf8{bottom:594.240000pt;}
.y353{bottom:594.761600pt;}
.y8b{bottom:595.200000pt;}
.y42{bottom:597.079680pt;}
.y3a1{bottom:598.568960pt;}
.y3cc{bottom:598.573440pt;}
.y1c6{bottom:598.661120pt;}
.y2ab{bottom:600.061440pt;}
.y31f{bottom:600.857600pt;}
.y190{bottom:603.223040pt;}
.y128{bottom:603.853440pt;}
.y6b{bottom:603.923200pt;}
.y27e{bottom:606.400000pt;}
.y236{bottom:606.420480pt;}
.y158{bottom:606.935680pt;}
.y2d5{bottom:607.863040pt;}
.y370{bottom:610.416000pt;}
.y253{bottom:611.360000pt;}
.y8a{bottom:611.520000pt;}
.yc7{bottom:611.527680pt;}
.y352{bottom:611.557120pt;}
.y201{bottom:611.680000pt;}
.y41{bottom:612.444640pt;}
.y3a0{bottom:615.364480pt;}
.y3cb{bottom:615.368960pt;}
.y1c5{bottom:615.456640pt;}
.y31e{bottom:617.815040pt;}
.y2aa{bottom:618.299520pt;}
.y18f{bottom:620.018560pt;}
.y6a{bottom:620.880640pt;}
.yf7{bottom:621.603040pt;}
.y127{bottom:621.929600pt;}
.y235{bottom:623.216000pt;}
.y1fe{bottom:624.640000pt;}
.y2d4{bottom:624.658560pt;}
.y157{bottom:625.173760pt;}
.y36f{bottom:627.211520pt;}
.y40{bottom:627.809600pt;}
.y89{bottom:628.160000pt;}
.y351{bottom:628.514560pt;}
.yc6{bottom:629.603840pt;}
.y200{bottom:632.160000pt;}
.y3ca{bottom:632.164480pt;}
.y1c4{bottom:632.252160pt;}
.y31d{bottom:634.610560pt;}
.y27d{bottom:636.213760pt;}
.y2a9{bottom:636.375680pt;}
.y18e{bottom:636.814080pt;}
.y252{bottom:637.600000pt;}
.y69{bottom:637.676160pt;}
.y234{bottom:640.011520pt;}
.y126{bottom:640.167680pt;}
.y17{bottom:640.960000pt;}
.y2d3{bottom:641.454080pt;}
.y3f{bottom:643.174560pt;}
.y156{bottom:643.411840pt;}
.y36e{bottom:644.168960pt;}
.y350{bottom:645.310080pt;}
.yc5{bottom:647.680000pt;}
.y3c9{bottom:648.960000pt;}
.y39f{bottom:648.967040pt;}
.y1c3{bottom:649.047680pt;}
.y31c{bottom:651.406080pt;}
.y18d{bottom:653.771520pt;}
.y88{bottom:654.080000pt;}
.y27c{bottom:654.289920pt;}
.y68{bottom:654.471680pt;}
.y2a8{bottom:654.613760pt;}
.y1fb{bottom:655.360000pt;}
.yb2{bottom:656.795040pt;}
.y233{bottom:656.968960pt;}
.y125{bottom:658.405760pt;}
.y2d2{bottom:658.411520pt;}
.y3e{bottom:658.539520pt;}
.y1fd{bottom:659.680000pt;}
.yf6{bottom:660.160000pt;}
.y19{bottom:660.960000pt;}
.y36d{bottom:660.964480pt;}
.y155{bottom:661.488000pt;}
.y34f{bottom:662.105600pt;}
.y39e{bottom:665.924480pt;}
.y3c8{bottom:665.943040pt;}
.y1c2{bottom:666.005120pt;}
.y31b{bottom:668.363520pt;}
.y18c{bottom:670.567040pt;}
.y67{bottom:671.429120pt;}
.yb1{bottom:672.160000pt;}
.y27b{bottom:672.528000pt;}
.y2a7{bottom:672.851840pt;}
.y3d{bottom:673.745120pt;}
.y232{bottom:673.764480pt;}
.y2d1{bottom:675.207040pt;}
.y124{bottom:676.481920pt;}
.y36c{bottom:677.760000pt;}
.yc4{bottom:678.560000pt;}
.y34e{bottom:679.063040pt;}
.y87{bottom:679.520000pt;}
.y154{bottom:679.726080pt;}
.y1f8{bottom:682.720000pt;}
.y3c7{bottom:682.738560pt;}
.y1c1{bottom:682.800640pt;}
.y31a{bottom:685.159040pt;}
.y18b{bottom:687.362560pt;}
.y1fa{bottom:687.680000pt;}
.y66{bottom:688.224640pt;}
.y3c{bottom:689.110080pt;}
.yb0{bottom:689.765280pt;}
.y231{bottom:690.560000pt;}
.y27a{bottom:690.604160pt;}
.y2a6{bottom:690.928000pt;}
.y2d0{bottom:692.002560pt;}
.y123{bottom:694.720000pt;}
.y86{bottom:695.840000pt;}
.y34d{bottom:695.858560pt;}
.yc3{bottom:696.480000pt;}
.y153{bottom:697.964160pt;}
.y39d{bottom:699.527040pt;}
.y3c6{bottom:699.534080pt;}
.y1c0{bottom:699.596160pt;}
.yf5{bottom:700.716800pt;}
.y319{bottom:701.954560pt;}
.y18a{bottom:704.320000pt;}
.y3b{bottom:704.475040pt;}
.y65{bottom:705.020160pt;}
.y222{bottom:706.254720pt;}
.yaf{bottom:707.680000pt;}
.y279{bottom:708.842240pt;}
.y2cf{bottom:708.960000pt;}
.y2a5{bottom:709.166080pt;}
.y1f6{bottom:710.720000pt;}
.y36b{bottom:711.527040pt;}
.y85{bottom:712.160000pt;}
.y34c{bottom:712.654080pt;}
.yc2{bottom:714.560000pt;}
.y230{bottom:716.000000pt;}
.y152{bottom:716.040320pt;}
.y39c{bottom:716.484480pt;}
.y3c5{bottom:716.491520pt;}
.y1bf{bottom:716.553600pt;}
.yf4{bottom:718.631040pt;}
.y318{bottom:718.912000pt;}
.y3a{bottom:719.840000pt;}
.y122{bottom:720.960000pt;}
.y64{bottom:721.977600pt;}
.y221{bottom:723.374080pt;}
.yae{bottom:725.613280pt;}
.y278{bottom:727.080320pt;}
.y2a4{bottom:727.404160pt;}
.y84{bottom:728.320000pt;}
.y36a{bottom:728.322560pt;}
.y1f4{bottom:729.600000pt;}
.y34b{bottom:729.611520pt;}
.y189{bottom:730.400000pt;}
.yc1{bottom:732.480000pt;}
.y39b{bottom:733.280000pt;}
.y3c4{bottom:733.287040pt;}
.y1be{bottom:733.349120pt;}
.y151{bottom:734.278400pt;}
.y2ce{bottom:735.040000pt;}
.y39{bottom:735.520000pt;}
.y317{bottom:735.707520pt;}
.yf3{bottom:736.869120pt;}
.y63{bottom:738.773120pt;}
.y220{bottom:740.331520pt;}
.y22f{bottom:741.585760pt;}
.yad{bottom:743.209280pt;}
.y83{bottom:744.640000pt;}
.y277{bottom:745.156480pt;}
.y369{bottom:745.280000pt;}
.y2a3{bottom:745.480320pt;}
.y34a{bottom:746.407040pt;}
.y37{bottom:749.760000pt;}
.y3c3{bottom:750.082560pt;}
.y39a{bottom:750.091520pt;}
.y1bd{bottom:750.144640pt;}
.y36{bottom:750.400000pt;}
.yc0{bottom:750.560000pt;}
.y1f3{bottom:751.040000pt;}
.y316{bottom:752.503040pt;}
.y150{bottom:752.516480pt;}
.y121{bottom:753.164160pt;}
.yf2{bottom:755.107200pt;}
.y62{bottom:755.568640pt;}
.y22e{bottom:756.950720pt;}
.y21f{bottom:757.127040pt;}
.y188{bottom:758.579200pt;}
.yac{bottom:760.805280pt;}
.y82{bottom:761.440000pt;}
.y368{bottom:762.091520pt;}
.y349{bottom:763.202560pt;}
.y2cd{bottom:763.230080pt;}
.y2fa{bottom:763.234560pt;}
.y276{bottom:763.394560pt;}
.y2a2{bottom:763.718400pt;}
.y3c2{bottom:767.040000pt;}
.y399{bottom:767.048960pt;}
.y1bc{bottom:767.102080pt;}
.y35{bottom:768.000000pt;}
.ybf{bottom:768.640000pt;}
.y315{bottom:769.460480pt;}
.y14f{bottom:770.592640pt;}
.y120{bottom:771.240320pt;}
.y22d{bottom:772.315680pt;}
.y61{bottom:772.526080pt;}
.yf1{bottom:773.183360pt;}
.y21e{bottom:773.922560pt;}
.y187{bottom:775.374720pt;}
.y1f2{bottom:775.675040pt;}
.yab{bottom:778.720000pt;}
.y367{bottom:778.887040pt;}
.y348{bottom:780.160000pt;}
.y2cc{bottom:780.187520pt;}
.y2f9{bottom:780.192000pt;}
.y275{bottom:781.632640pt;}
.y2a1{bottom:781.956480pt;}
.y398{bottom:783.844480pt;}
.y3c1{bottom:783.856000pt;}
.y1bb{bottom:783.897600pt;}
.y314{bottom:786.256000pt;}
.ybe{bottom:786.720000pt;}
.y34{bottom:787.040000pt;}
.y81{bottom:787.360000pt;}
.y22c{bottom:787.840000pt;}
.y14e{bottom:788.830720pt;}
.y60{bottom:789.321600pt;}
.y11f{bottom:789.478400pt;}
.y21d{bottom:790.926720pt;}
.y1f1{bottom:791.040000pt;}
.y186{bottom:792.332160pt;}
.y16{bottom:793.770880pt;}
.y366{bottom:795.844480pt;}
.yaa{bottom:796.653147pt;}
.y2cb{bottom:796.983040pt;}
.y2f8{bottom:796.987520pt;}
.y274{bottom:799.708800pt;}
.y2a0{bottom:800.032640pt;}
.y397{bottom:800.640000pt;}
.y3c0{bottom:800.651520pt;}
.y1ba{bottom:800.693120pt;}
.yf0{bottom:802.137600pt;}
.y313{bottom:803.051520pt;}
.ybd{bottom:804.640000pt;}
.y33{bottom:806.080000pt;}
.y5f{bottom:806.117120pt;}
.y347{bottom:806.240000pt;}
.y14d{bottom:807.068800pt;}
.y11e{bottom:807.554560pt;}
.y21c{bottom:807.722240pt;}
.y22b{bottom:808.640000pt;}
.y185{bottom:809.127680pt;}
.y365{bottom:812.640000pt;}
.y80{bottom:813.600000pt;}
.y2ca{bottom:813.778560pt;}
.y2f7{bottom:813.783040pt;}
.ya9{bottom:814.249147pt;}
.y1f0{bottom:814.257920pt;}
.y396{bottom:817.608960pt;}
.y15{bottom:817.617280pt;}
.y1b9{bottom:817.650560pt;}
.y273{bottom:817.946880pt;}
.y29f{bottom:818.270720pt;}
.y312{bottom:820.008960pt;}
.yef{bottom:820.051840pt;}
.ybc{bottom:822.720000pt;}
.y5e{bottom:823.074560pt;}
.y21b{bottom:824.517760pt;}
.y14c{bottom:825.144960pt;}
.y11d{bottom:825.792640pt;}
.y184{bottom:825.923200pt;}
.y32{bottom:826.404480pt;}
.y364{bottom:829.442560pt;}
.y2c9{bottom:830.736000pt;}
.y2f6{bottom:830.740480pt;}
.y1ef{bottom:831.053440pt;}
.ya8{bottom:831.845147pt;}
.y395{bottom:834.404480pt;}
.y14{bottom:834.412800pt;}
.y346{bottom:834.423040pt;}
.y1b8{bottom:834.446080pt;}
.y272{bottom:836.184960pt;}
.y29e{bottom:836.508800pt;}
.y311{bottom:836.804480pt;}
.yee{bottom:837.966080pt;}
.y5d{bottom:839.870080pt;}
.y7f{bottom:840.800000pt;}
.y21a{bottom:841.799040pt;}
.y183{bottom:842.880640pt;}
.y31{bottom:843.200000pt;}
.y14b{bottom:843.383040pt;}
.y11c{bottom:844.030720pt;}
.y363{bottom:846.400000pt;}
.y2c8{bottom:847.531520pt;}
.y2f5{bottom:847.536000pt;}
.y1ee{bottom:848.010880pt;}
.ya7{bottom:849.759867pt;}
.y394{bottom:851.200000pt;}
.y345{bottom:851.218560pt;}
.y1b7{bottom:851.241600pt;}
.y13{bottom:851.370240pt;}
.y310{bottom:853.600000pt;}
.y271{bottom:854.261120pt;}
.y29d{bottom:854.584960pt;}
.yed{bottom:856.042240pt;}
.y5c{bottom:856.665600pt;}
.y30{bottom:858.080000pt;}
.y219{bottom:858.594560pt;}
.ybb{bottom:858.880000pt;}
.y182{bottom:860.000000pt;}
.y14a{bottom:861.621120pt;}
.y11b{bottom:862.106880pt;}
.y362{bottom:863.207040pt;}
.y2c7{bottom:864.327040pt;}
.y2f4{bottom:864.331520pt;}
.y1ed{bottom:864.806400pt;}
.y12{bottom:865.133440pt;}
.y7e{bottom:866.720000pt;}
.ya6{bottom:867.852000pt;}
.y3bf{bottom:868.171520pt;}
.y344{bottom:868.176000pt;}
.y393{bottom:868.180480pt;}
.y1b6{bottom:868.199040pt;}
.y30f{bottom:870.576000pt;}
.y270{bottom:872.499200pt;}
.y29c{bottom:872.823040pt;}
.y5b{bottom:873.623040pt;}
.yec{bottom:874.118400pt;}
.y218{bottom:875.390080pt;}
.y2d{bottom:875.520000pt;}
.yba{bottom:876.960000pt;}
.y149{bottom:879.697280pt;}
.y361{bottom:880.002560pt;}
.y11a{bottom:880.344960pt;}
.y2c6{bottom:881.284480pt;}
.y2f3{bottom:881.288960pt;}
.y1ec{bottom:881.601920pt;}
.y3be{bottom:884.967040pt;}
.y343{bottom:884.971520pt;}
.y392{bottom:884.976000pt;}
.y1b5{bottom:884.994560pt;}
.ya5{bottom:885.448000pt;}
.y181{bottom:887.200000pt;}
.y30e{bottom:887.371520pt;}
.y5a{bottom:890.418560pt;}
.y26f{bottom:890.737280pt;}
.y29b{bottom:891.061120pt;}
.yeb{bottom:892.194560pt;}
.y217{bottom:892.347520pt;}
.y7d{bottom:892.640000pt;}
.y2b{bottom:894.400000pt;}
.yb9{bottom:894.880000pt;}
.y360{bottom:896.960000pt;}
.y148{bottom:897.935360pt;}
.y2c5{bottom:898.080000pt;}
.y2f2{bottom:898.084480pt;}
.y119{bottom:898.583040pt;}
.y1eb{bottom:899.207040pt;}
.y3bd{bottom:901.762560pt;}
.y342{bottom:901.767040pt;}
.y391{bottom:901.771520pt;}
.y1b4{bottom:901.790080pt;}
.ya4{bottom:903.044000pt;}
.y30d{bottom:904.167040pt;}
.y59{bottom:907.214080pt;}
.y26e{bottom:908.813440pt;}
.y29a{bottom:909.137280pt;}
.y216{bottom:909.143040pt;}
.yea{bottom:910.108800pt;}
.yb8{bottom:912.960000pt;}
.y35f{bottom:913.767040pt;}
.y2f1{bottom:914.880000pt;}
.y1ea{bottom:916.002560pt;}
.y147{bottom:916.173440pt;}
.y7c{bottom:918.720000pt;}
.y341{bottom:918.724480pt;}
.y390{bottom:918.728960pt;}
.y1b3{bottom:918.747520pt;}
.ya3{bottom:920.640000pt;}
.y30c{bottom:921.124480pt;}
.y2c4{bottom:924.160000pt;}
.y58{bottom:924.171520pt;}
.y215{bottom:925.938560pt;}
.y26d{bottom:927.051520pt;}
.y299{bottom:927.375360pt;}
.y118{bottom:927.537280pt;}
.ye9{bottom:928.184960pt;}
.y2a{bottom:928.800000pt;}
.y35e{bottom:930.562560pt;}
.yb7{bottom:931.040000pt;}
.y1e9{bottom:933.607680pt;}
.y146{bottom:934.249600pt;}
.y340{bottom:935.520000pt;}
.y38f{bottom:935.524480pt;}
.y1b2{bottom:935.543040pt;}
.y30b{bottom:937.920000pt;}
.ya2{bottom:938.240000pt;}
.y2f0{bottom:940.960000pt;}
.y57{bottom:940.967040pt;}
.y214{bottom:942.896000pt;}
.y26c{bottom:945.289600pt;}
.y117{bottom:945.613440pt;}
.y29{bottom:946.240000pt;}
.ye8{bottom:946.261120pt;}
.y7b{bottom:946.400000pt;}
.y35d{bottom:947.520000pt;}
.yb6{bottom:949.120000pt;}
.y1e8{bottom:950.403200pt;}
.y38e{bottom:952.320000pt;}
.y33f{bottom:952.331520pt;}
.y1b1{bottom:952.338560pt;}
.y145{bottom:952.487680pt;}
.ya1{bottom:955.045600pt;}
.y56{bottom:957.762560pt;}
.y213{bottom:959.691520pt;}
.y26b{bottom:963.365760pt;}
.y116{bottom:963.689600pt;}
.y28{bottom:963.840000pt;}
.y30a{bottom:964.000000pt;}
.y35c{bottom:964.327040pt;}
.ye7{bottom:964.337280pt;}
.yb5{bottom:967.197440pt;}
.y1e7{bottom:967.198720pt;}
.y33e{bottom:969.288960pt;}
.y1b0{bottom:969.296000pt;}
.y11{bottom:969.454080pt;}
.y144{bottom:970.725760pt;}
.y7a{bottom:973.920000pt;}
.y55{bottom:974.720000pt;}
.ya0{bottom:976.480000pt;}
.y212{bottom:976.487040pt;}
.y35b{bottom:981.122560pt;}
.y26{bottom:981.280000pt;}
.y26a{bottom:981.603840pt;}
.y115{bottom:981.927680pt;}
.ye6{bottom:982.413440pt;}
.y1e6{bottom:984.803840pt;}
.y33d{bottom:986.084480pt;}
.y1af{bottom:986.091520pt;}
.y10{bottom:986.411520pt;}
.y143{bottom:988.801920pt;}
.y211{bottom:993.444480pt;}
.y309{bottom:994.552000pt;}
.yb4{bottom:998.080000pt;}
.y24{bottom:998.880000pt;}
.y9f{bottom:999.204000pt;}
.y79{bottom:1000.160000pt;}
.y114{bottom:1000.165760pt;}
.ye5{bottom:1000.327680pt;}
.y1e5{bottom:1001.599360pt;}
.y54{bottom:1001.759867pt;}
.y33c{bottom:1002.880000pt;}
.y1ae{bottom:1002.887040pt;}
.yf{bottom:1003.207040pt;}
.y142{bottom:1007.040000pt;}
.y210{bottom:1010.240000pt;}
.y78{bottom:1016.800000pt;}
.y113{bottom:1018.241920pt;}
.ye4{bottom:1018.403840pt;}
.y1e4{bottom:1019.204480pt;}
.y1ad{bottom:1019.844480pt;}
.ye{bottom:1020.164480pt;}
.yb3{bottom:1025.120000pt;}
.y308{bottom:1025.280000pt;}
.y22{bottom:1033.280000pt;}
.y20f{bottom:1035.680000pt;}
.y1e3{bottom:1036.000000pt;}
.ye3{bottom:1036.480000pt;}
.y1ac{bottom:1036.640000pt;}
.yd{bottom:1036.960000pt;}
.y53{bottom:1038.240000pt;}
.y2{bottom:1073.280000pt;}
.y1{bottom:1090.080000pt;}
.h15{height:0.000000pt;}
.hd{height:3.584000pt;}
.h2b{height:12.960000pt;}
.h23{height:13.120000pt;}
.he{height:16.800000pt;}
.h11{height:16.961333pt;}
.h13{height:18.240000pt;}
.h14{height:18.400000pt;}
.h27{height:18.880000pt;}
.h25{height:20.800000pt;}
.h31{height:25.177500pt;}
.h2c{height:25.920000pt;}
.h2f{height:26.643750pt;}
.h29{height:27.360000pt;}
.h8{height:27.521333pt;}
.h28{height:28.001333pt;}
.h24{height:29.815000pt;}
.h2a{height:30.720000pt;}
.h26{height:30.778125pt;}
.h3{height:31.238750pt;}
.hc{height:33.600000pt;}
.h12{height:33.761333pt;}
.ha{height:34.968750pt;}
.hb{height:38.400000pt;}
.h18{height:38.672812pt;}
.h17{height:38.698750pt;}
.h16{height:39.243750pt;}
.h1e{height:41.592960pt;}
.h5{height:42.866250pt;}
.h2{height:42.895000pt;}
.h9{height:43.750000pt;}
.h10{height:45.690880pt;}
.h20{height:45.884380pt;}
.h1f{height:45.884913pt;}
.h1d{height:45.889500pt;}
.h21{height:45.915847pt;}
.h1c{height:45.921500pt;}
.h1b{height:45.937500pt;}
.hf{height:46.103040pt;}
.h22{height:46.593750pt;}
.h2d{height:49.998080pt;}
.h2e{height:50.112000pt;}
.h30{height:50.167040pt;}
.h1a{height:54.514687pt;}
.h6{height:59.539947pt;}
.h32{height:83.433600pt;}
.h4{height:83.520000pt;}
.h19{height:83.687040pt;}
.h7{height:119.360000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w12{width:21.600000pt;}
.wa{width:75.360000pt;}
.wb{width:83.358667pt;}
.wd{width:83.360000pt;}
.w13{width:100.960000pt;}
.wf{width:122.560000pt;}
.wc{width:127.998667pt;}
.we{width:128.000000pt;}
.w2{width:156.480000pt;}
.w4{width:172.961333pt;}
.w7{width:192.000000pt;}
.w10{width:234.881333pt;}
.w8{width:235.361333pt;}
.w11{width:244.000000pt;}
.w3{width:349.600000pt;}
.w9{width:364.160000pt;}
.w5{width:581.600000pt;}
.w6{width:581.760000pt;}
.w14{width:601.440000pt;}
.w1{width:793.333333pt;}
.w0{width:793.440000pt;}
.x1{left:-6.080000pt;}
.x0{left:0.000000pt;}
.xf{left:6.720000pt;}
.x2{left:17.920000pt;}
.x5{left:24.800000pt;}
.x24{left:27.680000pt;}
.x4{left:34.080000pt;}
.x6{left:58.880000pt;}
.x26{left:91.200000pt;}
.x3{left:96.000000pt;}
.x28{left:100.960000pt;}
.x14{left:103.200000pt;}
.x1c{left:110.720000pt;}
.x20{left:114.880000pt;}
.x29{left:117.600000pt;}
.x13{left:119.520000pt;}
.x1d{left:125.280000pt;}
.x1f{left:133.759360pt;}
.x23{left:143.987200pt;}
.x7{left:154.880000pt;}
.x16{left:160.960000pt;}
.x19{left:172.640000pt;}
.x8{left:190.560000pt;}
.x1b{left:194.882880pt;}
.xb{left:197.121440pt;}
.xd{left:210.403520pt;}
.x25{left:218.560000pt;}
.x2a{left:225.760000pt;}
.x1a{left:256.640000pt;}
.xc{left:263.681920pt;}
.x15{left:288.000000pt;}
.x18{left:332.640000pt;}
.x9{left:342.880000pt;}
.x12{left:429.761280pt;}
.x27{left:453.440000pt;}
.x1e{left:514.080000pt;}
.xa{left:533.440000pt;}
.xe{left:540.160000pt;}
.x10{left:546.880000pt;}
.x2b{left:676.807040pt;}
.x2c{left:680.000000pt;}
.x21{left:689.920000pt;}
.x22{left:691.360000pt;}
.x17{left:696.480000pt;}
.x11{left:706.243520pt;}
}




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