
    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_853f5756dfdfe8b6fce133a2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_6dcd717bd4c7e355cca3fd1c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_17bcaa880d35f16189763ae0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.929688;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_33d3b7ea283ecb71537a2002.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_ace377404503344e0ffc2ac2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_ce59088745030eddc4d01039.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_3c471f802c36241f64fedc6e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_21a17233b6cb16faf2c93da8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_b9e3922efb01a7fc707f51d0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.119629;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_9595bc075feaa95d96a408f8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_77793da8c818b1dbd8c1e576.woff')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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_ab3d6c595ca47e66e277aa7a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.053223;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_59c517336c79b347652981a6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_31085a74ad06e29c815f5ec4.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2c8d3b2f78aaefc4c9b80296.woff')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6b3f1bb047e880dc06fad915.woff')format("woff");}.ff10{font-family:ff10;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6db67a5272f87bf520c8a3b5.woff')format("woff");}.ff11{font-family:ff11;line-height:0.776855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249238,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249238,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249238,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-4.512000px;}
.ls3{letter-spacing:-3.792000px;}
.ls4{letter-spacing:-3.564000px;}
.ls40{letter-spacing:-1.754628px;}
.ls12{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.828000px;}
.ls3e{letter-spacing:-0.789938px;}
.ls39{letter-spacing:-0.690000px;}
.lsc{letter-spacing:-0.672000px;}
.ls28{letter-spacing:-0.504000px;}
.ls35{letter-spacing:-0.457800px;}
.ls44{letter-spacing:-0.450600px;}
.ls48{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.414600px;}
.ls32{letter-spacing:-0.366000px;}
.ls15{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.269400px;}
.ls25{letter-spacing:-0.262200px;}
.ls43{letter-spacing:-0.259800px;}
.ls2c{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.229800px;}
.ls10{letter-spacing:-0.223800px;}
.ls29{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.181200px;}
.ls47{letter-spacing:-0.178800px;}
.ls22{letter-spacing:-0.152400px;}
.ls19{letter-spacing:-0.109200px;}
.ls42{letter-spacing:-0.106800px;}
.ls46{letter-spacing:-0.089400px;}
.ls3a{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.058320px;}
.lsb{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.037440px;}
.ls2f{letter-spacing:-0.020919px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.034560px;}
.ls41{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.060600px;}
.ls2a{letter-spacing:0.072000px;}
.ls45{letter-spacing:0.089400px;}
.ls11{letter-spacing:0.090600px;}
.ls6{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.136200px;}
.ls2b{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.156240px;}
.ls3d{letter-spacing:0.164413px;}
.ls3c{letter-spacing:0.175755px;}
.ls34{letter-spacing:0.183000px;}
.lsa{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.223800px;}
.ls2e{letter-spacing:0.232428px;}
.ls21{letter-spacing:0.234600px;}
.ls37{letter-spacing:0.256200px;}
.ls1e{letter-spacing:0.262080px;}
.ls23{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.269280px;}
.ls27{letter-spacing:0.269400px;}
.ls1f{letter-spacing:0.305280px;}
.ls16{letter-spacing:0.305400px;}
.ls38{letter-spacing:0.313800px;}
.ls31{letter-spacing:0.341400px;}
.ls30{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.404400px;}
.ls2d{letter-spacing:0.468000px;}
.ls1b{letter-spacing:0.661680px;}
.ls3f{letter-spacing:1.160364px;}
.ls1c{letter-spacing:4.625280px;}
.ls1d{letter-spacing:10.385280px;}
.ls18{letter-spacing:25.349760px;}
.ls17{letter-spacing:62.069760px;}
.ls3b{letter-spacing:845.741280px;}
.ls36{letter-spacing:978.905280px;}
.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;}
}
.ws15{word-spacing:-66.240000px;}
.ws9{word-spacing:-48.240000px;}
.ws2{word-spacing:-26.621280px;}
.ws30{word-spacing:-23.760120px;}
.ws20{word-spacing:-23.381280px;}
.ws5{word-spacing:-23.057280px;}
.ws4{word-spacing:-22.829280px;}
.ws39{word-spacing:-22.728720px;}
.ws3{word-spacing:-22.109280px;}
.ws49{word-spacing:-20.232000px;}
.ws32{word-spacing:-20.160000px;}
.ws25{word-spacing:-20.016000px;}
.ws3a{word-spacing:-19.944000px;}
.ws48{word-spacing:-19.584000px;}
.ws33{word-spacing:-19.512000px;}
.ws1{word-spacing:-19.038240px;}
.ws0{word-spacing:-18.808440px;}
.ws18{word-spacing:-18.720120px;}
.ws1f{word-spacing:-18.676920px;}
.ws16{word-spacing:-18.414720px;}
.ws3d{word-spacing:-18.352269px;}
.ws19{word-spacing:-18.305520px;}
.ws22{word-spacing:-18.262320px;}
.ws1e{word-spacing:-18.152520px;}
.ws17{word-spacing:-18.109320px;}
.ws34{word-spacing:-17.956920px;}
.ws1d{word-spacing:-17.586720px;}
.ws36{word-spacing:-16.613280px;}
.ws21{word-spacing:-16.560000px;}
.ws41{word-spacing:-16.506480px;}
.ws42{word-spacing:-16.353480px;}
.ws2f{word-spacing:-15.372000px;}
.ws38{word-spacing:-15.284040px;}
.ws8{word-spacing:-15.228000px;}
.ws37{word-spacing:-15.226440px;}
.ws12{word-spacing:-15.137280px;}
.ws7{word-spacing:-15.102720px;}
.ws35{word-spacing:-14.940000px;}
.ws23{word-spacing:-14.508000px;}
.ws24{word-spacing:-13.680120px;}
.wsc{word-spacing:-13.634520px;}
.ws1a{word-spacing:-13.566360px;}
.ws14{word-spacing:-13.546920px;}
.ws1c{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.501320px;}
.ws1b{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.410720px;}
.ws13{word-spacing:-13.373280px;}
.wsd{word-spacing:-13.229520px;}
.wsf{word-spacing:-13.186920px;}
.wse{word-spacing:-13.141320px;}
.wsb{word-spacing:-12.738720px;}
.ws11{word-spacing:-12.510720px;}
.ws2d{word-spacing:-12.081632px;}
.ws2c{word-spacing:-12.060713px;}
.ws43{word-spacing:-12.060000px;}
.ws31{word-spacing:-12.013680px;}
.ws45{word-spacing:-11.698680px;}
.ws47{word-spacing:-11.609280px;}
.ws44{word-spacing:-11.519880px;}
.ws46{word-spacing:-11.430480px;}
.ws2e{word-spacing:-10.899733px;}
.ws2a{word-spacing:-10.476000px;}
.ws40{word-spacing:-10.209588px;}
.ws3f{word-spacing:-10.178483px;}
.ws29{word-spacing:-10.116000px;}
.ws28{word-spacing:-10.080000px;}
.ws26{word-spacing:-10.008000px;}
.ws2b{word-spacing:-9.849156px;}
.ws27{word-spacing:-9.756000px;}
.ws3b{word-spacing:-8.668712px;}
.ws3c{word-spacing:-8.668529px;}
.ws3e{word-spacing:-1.693300px;}
.ws6{word-spacing:0.000000px;}
._10{margin-left:-17.974800px;}
._c{margin-left:-15.791760px;}
._f{margin-left:-14.663760px;}
._d{margin-left:-13.308480px;}
._b{margin-left:-11.186640px;}
._a{margin-left:-8.646840px;}
._e{margin-left:-7.329600px;}
._11{margin-left:-5.997480px;}
._5{margin-left:-4.692240px;}
._6{margin-left:-3.543120px;}
._7{margin-left:-2.242320px;}
._3{margin-left:-1.080000px;}
._2{width:1.008000px;}
._1{width:2.304000px;}
._0{width:3.600000px;}
._4{width:4.788000px;}
._8{width:5.890320px;}
._12{width:7.485120px;}
._13{width:8.611200px;}
._16{width:10.664640px;}
._1a{width:12.019920px;}
._1c{width:13.049280px;}
._1b{width:14.175360px;}
._2e{width:15.179040px;}
._2c{width:16.763520px;}
._1d{width:19.464720px;}
._22{width:20.966400px;}
._17{width:24.243840px;}
._18{width:25.369920px;}
._19{width:26.796000px;}
._21{width:28.319040px;}
._30{width:30.892320px;}
._23{width:32.465280px;}
._33{width:35.377920px;}
._15{width:43.383600px;}
._14{width:44.513280px;}
._24{width:55.068840px;}
._2a{width:59.247360px;}
._28{width:65.148480px;}
._2f{width:71.462640px;}
._29{width:80.310960px;}
._25{width:83.563200px;}
._2b{width:90.926640px;}
._26{width:102.239280px;}
._1e{width:115.093440px;}
._1f{width:128.356080px;}
._27{width:149.341440px;}
._35{width:177.096000px;}
._20{width:194.681280px;}
._9{width:845.741280px;}
._34{width:847.542720px;}
._31{width:879.967680px;}
._32{width:1685.022720px;}
._2d{width:2873.525280px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc6{color:rgb(166,166,166);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(217,217,217);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs14{font-size:31.181757px;}
.fs13{font-size:31.182416px;}
.fs1{font-size:36.000000px;}
.fs16{font-size:36.613248px;}
.fs17{font-size:36.725137px;}
.fs15{font-size:36.851946px;}
.fs2{font-size:41.760000px;}
.fse{font-size:43.580338px;}
.fs11{font-size:48.228908px;}
.fsb{font-size:48.240000px;}
.fs10{font-size:53.458549px;}
.fsa{font-size:54.000000px;}
.fsd{font-size:58.107118px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsf{font-size:67.985328px;}
.fs5{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs12{font-size:77.282467px;}
.fs3{font-size:84.240000px;}
.fsc{font-size:87.160677px;}
.fs8{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.y11{bottom:-17.640000px;}
.y198{bottom:-16.584740px;}
.y2e6{bottom:-10.080000px;}
.y2e4{bottom:-9.900000px;}
.y2ea{bottom:-5.040000px;}
.y0{bottom:0.000000px;}
.y177{bottom:0.360000px;}
.y1c6{bottom:0.396000px;}
.y6a{bottom:1.800000px;}
.y33{bottom:1.836000px;}
.y1a8{bottom:2.033749px;}
.y1a0{bottom:2.324285px;}
.y124{bottom:2.520000px;}
.y19c{bottom:2.614820px;}
.y197{bottom:2.905356px;}
.y261{bottom:3.543476px;}
.y179{bottom:3.600000px;}
.y1b7{bottom:3.631695px;}
.y1a4{bottom:3.776963px;}
.y65{bottom:3.960000px;}
.y2e1{bottom:3.990000px;}
.y1ac{bottom:4.067498px;}
.y254{bottom:4.252148px;}
.y279{bottom:4.252166px;}
.y257{bottom:4.252167px;}
.y25f{bottom:4.271065px;}
.y27f{bottom:4.275790px;}
.y259{bottom:4.280514px;}
.y29e{bottom:4.320000px;}
.y222{bottom:4.500000px;}
.y2c8{bottom:4.680000px;}
.y155{bottom:4.860000px;}
.y293{bottom:4.912960px;}
.y299{bottom:4.913030px;}
.y291{bottom:4.942204px;}
.y27b{bottom:4.960857px;}
.y10{bottom:5.220000px;}
.y1b9{bottom:5.229641px;}
.y215{bottom:5.580000px;}
.y1b5{bottom:5.665444px;}
.y20a{bottom:5.760000px;}
.y20e{bottom:5.940000px;}
.y220{bottom:6.120000px;}
.y15c{bottom:6.300000px;}
.y15a{bottom:6.480000px;}
.y213{bottom:6.840000px;}
.y192{bottom:6.972854px;}
.y66{bottom:7.020000px;}
.y283{bottom:7.086922px;}
.y35{bottom:9.000000px;}
.y163{bottom:9.030000px;}
.y15f{bottom:9.180000px;}
.y28d{bottom:9.884407px;}
.y28c{bottom:10.586258px;}
.y2d3{bottom:10.800000px;}
.y2df{bottom:10.830000px;}
.y2d1{bottom:10.980000px;}
.y2f8{bottom:11.025000px;}
.y27d{bottom:11.339080px;}
.y2ce{bottom:11.700000px;}
.y122{bottom:12.060000px;}
.y46{bottom:13.500000px;}
.y48{bottom:13.680000px;}
.y29b{bottom:15.840000px;}
.y2be{bottom:17.280000px;}
.y36{bottom:17.820000px;}
.y2e0{bottom:17.850000px;}
.y2da{bottom:17.865000px;}
.y1a7{bottom:18.303742px;}
.y34{bottom:18.540000px;}
.y19f{bottom:18.594278px;}
.y154{bottom:18.720000px;}
.y19b{bottom:18.884813px;}
.y11d{bottom:19.080000px;}
.y282{bottom:19.134390px;}
.y196{bottom:19.175349px;}
.y28b{bottom:19.745419px;}
.y1a3{bottom:20.046956px;}
.y1b0{bottom:20.071167px;}
.y1ab{bottom:20.337491px;}
.y28e{bottom:20.447271px;}
.y64{bottom:20.520000px;}
.y20d{bottom:20.700000px;}
.y28f{bottom:22.552825px;}
.y1b4{bottom:23.388115px;}
.y37{bottom:23.400000px;}
.y249{bottom:23.415160px;}
.y191{bottom:24.695525px;}
.y156{bottom:25.740000px;}
.y121{bottom:25.920000px;}
.y61{bottom:27.180000px;}
.y68{bottom:28.980000px;}
.y44{bottom:29.340000px;}
.y56{bottom:29.520000px;}
.y4f{bottom:29.550000px;}
.y17a{bottom:29.700000px;}
.y178{bottom:29.880000px;}
.y28a{bottom:31.700288px;}
.y2cf{bottom:32.580000px;}
.y11b{bottom:32.760000px;}
.y1a6{bottom:34.573735px;}
.y19e{bottom:34.864271px;}
.y19a{bottom:35.157227px;}
.y195{bottom:35.445342px;}
.y17b{bottom:35.640000px;}
.y67{bottom:35.820000px;}
.y1af{bottom:36.341160px;}
.y1a2{bottom:36.353266px;}
.y1b2{bottom:36.462217px;}
.y1aa{bottom:36.607484px;}
.y255{bottom:36.880294px;}
.y30{bottom:37.260000px;}
.y6c{bottom:38.520000px;}
.y120{bottom:39.780000px;}
.y152{bottom:40.500000px;}
.y190{bottom:42.454513px;}
.y2c6{bottom:42.840000px;}
.y45{bottom:45.180000px;}
.y5f{bottom:45.360000px;}
.y4e{bottom:45.390000px;}
.ye{bottom:45.900000px;}
.y248{bottom:46.093281px;}
.y11a{bottom:46.620000px;}
.yf{bottom:47.880000px;}
.y153{bottom:48.420000px;}
.y253{bottom:51.073018px;}
.y17c{bottom:51.480000px;}
.y11f{bottom:53.460000px;}
.y53{bottom:54.360000px;}
.yd{bottom:57.780000px;}
.y31{bottom:58.140000px;}
.y24f{bottom:58.868622px;}
.y2f{bottom:59.220000px;}
.y11c{bottom:60.480000px;}
.y24a{bottom:60.994696px;}
.y6e{bottom:61.020000px;}
.y151{bottom:62.280000px;}
.y244{bottom:63.120770px;}
.y69{bottom:63.900000px;}
.y4a{bottom:66.810000px;}
.y11e{bottom:67.320000px;}
.y242{bottom:67.372936px;}
.yc{bottom:69.696000px;}
.y55{bottom:70.200000px;}
.y4d{bottom:70.230000px;}
.y175{bottom:71.280000px;}
.y1c5{bottom:71.316000px;}
.yb{bottom:81.576000px;}
.y32{bottom:84.780000px;}
.y5e{bottom:86.040000px;}
.y172{bottom:87.840000px;}
.y18c{bottom:93.420000px;}
.ya{bottom:93.456000px;}
.y18d{bottom:94.435500px;}
.y54{bottom:95.040000px;}
.y4c{bottom:95.070000px;}
.y2f5{bottom:99.360000px;}
.y176{bottom:100.620000px;}
.y5d{bottom:101.880000px;}
.y62{bottom:102.996000px;}
.ybf{bottom:104.256000px;}
.y9{bottom:105.336000px;}
.y2ba{bottom:106.596000px;}
.y1b1{bottom:107.151274px;}
.y2e2{bottom:110.160000px;}
.y57{bottom:110.925000px;}
.y171{bottom:113.580000px;}
.y10f{bottom:113.796000px;}
.y8{bottom:117.216000px;}
.y4b{bottom:119.910000px;}
.y1c2{bottom:122.694928px;}
.ybe{bottom:126.036000px;}
.y5c{bottom:126.945000px;}
.y2f4{bottom:137.520000px;}
.y2b9{bottom:139.356000px;}
.y170{bottom:139.500000px;}
.y5b{bottom:142.785000px;}
.y10e{bottom:144.576000px;}
.ybd{bottom:147.996000px;}
.y2de{bottom:148.500000px;}
.y16f{bottom:165.450000px;}
.y10d{bottom:166.350000px;}
.y5a{bottom:167.625000px;}
.y51{bottom:169.065000px;}
.y60{bottom:169.410000px;}
.y2b8{bottom:169.770000px;}
.y1e7{bottom:173.370000px;}
.y97{bottom:173.910000px;}
.y2f3{bottom:175.890000px;}
.ybc{bottom:178.770000px;}
.y199{bottom:180.976368px;}
.yeb{bottom:182.010000px;}
.y2dd{bottom:186.690000px;}
.y16e{bottom:191.370000px;}
.y59{bottom:192.465000px;}
.y2b7{bottom:194.790000px;}
.y1e6{bottom:195.150000px;}
.y96{bottom:195.510000px;}
.y1c1{bottom:195.648415px;}
.y10c{bottom:197.310000px;}
.ybb{bottom:200.550000px;}
.y58{bottom:208.305000px;}
.y211{bottom:211.170000px;}
.yea{bottom:212.790000px;}
.y2f2{bottom:214.050000px;}
.y2b6{bottom:215.850000px;}
.y1e5{bottom:216.930000px;}
.y16d{bottom:217.110000px;}
.yba{bottom:222.330000px;}
.y2dc{bottom:225.030000px;}
.y95{bottom:226.290000px;}
.y10b{bottom:228.090000px;}
.y50{bottom:231.150000px;}
.y1e4{bottom:238.890000px;}
.y2b5{bottom:241.230000px;}
.y16c{bottom:243.030000px;}
.ye9{bottom:243.570000px;}
.yb9{bottom:244.290000px;}
.y10a{bottom:249.870000px;}
.y2f1{bottom:252.390000px;}
.y1ae{bottom:253.031615px;}
.y94{bottom:257.250000px;}
.y210{bottom:260.490000px;}
.y2db{bottom:263.190000px;}
.yb8{bottom:266.070000px;}
.y2b4{bottom:266.790000px;}
.y16b{bottom:268.950000px;}
.y1e3{bottom:270.210000px;}
.y29{bottom:271.650000px;}
.y1c0{bottom:271.795372px;}
.y142{bottom:273.270000px;}
.ye8{bottom:274.530000px;}
.y20f{bottom:285.690000px;}
.yb7{bottom:287.850000px;}
.y93{bottom:288.030000px;}
.y141{bottom:289.470000px;}
.y2f0{bottom:290.550000px;}
.y2b3{bottom:292.350000px;}
.y109{bottom:293.430000px;}
.y240{bottom:293.610000px;}
.y16a{bottom:294.870000px;}
.y23d{bottom:295.590000px;}
.y28{bottom:300.450000px;}
.y2d9{bottom:301.530000px;}
.y1e2{bottom:302.430000px;}
.y140{bottom:304.050000px;}
.ye7{bottom:305.310000px;}
.yb6{bottom:309.630000px;}
.y23f{bottom:310.710000px;}
.y281{bottom:311.500817px;}
.y20c{bottom:315.210000px;}
.y108{bottom:315.390000px;}
.y23c{bottom:317.370000px;}
.y2b2{bottom:317.730000px;}
.y13f{bottom:318.630000px;}
.y92{bottom:318.810000px;}
.y169{bottom:320.655000px;}
.y1e1{bottom:324.210000px;}
.y1a1{bottom:326.416063px;}
.y2ef{bottom:328.935000px;}
.y18b{bottom:330.375000px;}
.yb5{bottom:331.410000px;}
.y13e{bottom:333.210000px;}
.ye6{bottom:336.090000px;}
.y2d8{bottom:339.735000px;}
.y280{bottom:340.580489px;}
.y2b1{bottom:343.335000px;}
.y20b{bottom:344.955000px;}
.y1e0{bottom:346.035000px;}
.y168{bottom:346.575000px;}
.y1bf{bottom:346.753554px;}
.y107{bottom:346.755000px;}
.y27{bottom:347.475000px;}
.y13d{bottom:347.655000px;}
.y23b{bottom:348.195000px;}
.y91{bottom:349.635000px;}
.y27e{bottom:354.754315px;}
.y18a{bottom:356.295000px;}
.y13c{bottom:362.235000px;}
.yb4{bottom:362.415000px;}
.ye5{bottom:366.915000px;}
.y2ee{bottom:367.095000px;}
.y2b0{bottom:368.895000px;}
.y27c{bottom:368.951763px;}
.y167{bottom:372.495000px;}
.y209{bottom:374.475000px;}
.y13b{bottom:376.815000px;}
.y1df{bottom:376.995000px;}
.y2d7{bottom:378.075000px;}
.y106{bottom:378.435000px;}
.y23a{bottom:379.155000px;}
.y90{bottom:380.415000px;}
.y189{bottom:382.035000px;}
.yb3{bottom:384.195000px;}
.y13a{bottom:391.395000px;}
.y1a9{bottom:392.403959px;}
.y2af{bottom:394.275000px;}
.y26{bottom:394.455000px;}
.y19d{bottom:396.035654px;}
.ye4{bottom:397.695000px;}
.y27a{bottom:398.031727px;}
.y105{bottom:398.235000px;}
.y166{bottom:398.415000px;}
.y1de{bottom:398.775000px;}
.y1b3{bottom:398.941009px;}
.y239{bottom:400.935000px;}
.y2ed{bottom:405.435000px;}
.yb2{bottom:405.975000px;}
.y188{bottom:407.955000px;}
.y1bd{bottom:409.545558px;}
.y208{bottom:410.475000px;}
.y8f{bottom:411.375000px;}
.y1be{bottom:411.579308px;}
.y1bc{bottom:411.724575px;}
.y278{bottom:413.647503px;}
.y2d6{bottom:416.235000px;}
.y104{bottom:418.215000px;}
.y2ae{bottom:419.835000px;}
.y139{bottom:420.555000px;}
.y238{bottom:422.715000px;}
.y165{bottom:424.155000px;}
.y2fe{bottom:428.475000px;}
.y277{bottom:428.530020px;}
.ye3{bottom:428.655000px;}
.y1dd{bottom:429.555000px;}
.y1fe{bottom:429.735000px;}
.y187{bottom:433.875000px;}
.y138{bottom:434.955000px;}
.y25{bottom:435.675000px;}
.yb1{bottom:436.755000px;}
.y103{bottom:438.015000px;}
.y207{bottom:441.795000px;}
.y8e{bottom:442.155000px;}
.y276{bottom:443.431435px;}
.y2ec{bottom:443.595000px;}
.y237{bottom:444.495000px;}
.y2ad{bottom:445.395000px;}
.y137{bottom:449.535000px;}
.y164{bottom:450.075000px;}
.y1dc{bottom:451.335000px;}
.y2d5{bottom:454.575000px;}
.y102{bottom:457.815000px;}
.y275{bottom:458.342300px;}
.yb0{bottom:458.715000px;}
.ye2{bottom:459.435000px;}
.y186{bottom:459.795000px;}
.y52{bottom:460.515000px;}
.y2fd{bottom:461.235000px;}
.y1ad{bottom:462.883050px;}
.y136{bottom:464.115000px;}
.y236{bottom:466.275000px;}
.y1a5{bottom:466.369478px;}
.y24{bottom:466.455000px;}
.y194{bottom:466.514745px;}
.y2ac{bottom:470.775000px;}
.y8d{bottom:472.935000px;}
.y274{bottom:473.224816px;}
.y206{bottom:474.015000px;}
.y162{bottom:475.995000px;}
.ycf{bottom:477.615000px;}
.y135{bottom:478.695000px;}
.y1bb{bottom:481.622596px;}
.y2eb{bottom:481.935000px;}
.y1db{bottom:482.295000px;}
.y1ba{bottom:482.639471px;}
.y185{bottom:485.565000px;}
.y273{bottom:488.126232px;}
.y2fc{bottom:488.625000px;}
.yaf{bottom:489.495000px;}
.ye1{bottom:490.215000px;}
.y2d4{bottom:492.765000px;}
.y134{bottom:493.275000px;}
.y2ab{bottom:496.335000px;}
.y1b6{bottom:496.730447px;}
.y23{bottom:497.235000px;}
.y161{bottom:501.945000px;}
.y272{bottom:503.008748px;}
.y8c{bottom:503.715000px;}
.y1da{bottom:504.075000px;}
.y1fd{bottom:504.255000px;}
.y205{bottom:504.795000px;}
.y133{bottom:507.855000px;}
.yae{bottom:511.275000px;}
.y184{bottom:511.485000px;}
.y101{bottom:511.635000px;}
.y271{bottom:517.919613px;}
.y235{bottom:519.015000px;}
.y2e9{bottom:520.125000px;}
.ye0{bottom:520.995000px;}
.y2aa{bottom:521.895000px;}
.y132{bottom:522.255000px;}
.y1fc{bottom:526.035000px;}
.y2fb{bottom:526.965000px;}
.y160{bottom:527.685000px;}
.y22{bottom:528.015000px;}
.y2d2{bottom:531.105000px;}
.y270{bottom:532.821028px;}
.yad{bottom:533.055000px;}
.y8b{bottom:534.675000px;}
.y1d9{bottom:534.855000px;}
.y204{bottom:535.755000px;}
.y131{bottom:536.835000px;}
.y183{bottom:537.405000px;}
.y234{bottom:540.795000px;}
.y2a9{bottom:547.275000px;}
.y26f{bottom:547.703545px;}
.y1fb{bottom:547.815000px;}
.y130{bottom:551.415000px;}
.ydf{bottom:551.955000px;}
.y1b8{bottom:552.537491px;}
.y15e{bottom:553.605000px;}
.yac{bottom:554.835000px;}
.y1d8{bottom:556.635000px;}
.y2e8{bottom:558.465000px;}
.y21{bottom:558.975000px;}
.y233{bottom:562.575000px;}
.y26e{bottom:562.614409px;}
.y182{bottom:563.325000px;}
.y18e{bottom:563.457459px;}
.y2fa{bottom:565.125000px;}
.y8a{bottom:565.455000px;}
.y12f{bottom:565.995000px;}
.y203{bottom:566.535000px;}
.y100{bottom:567.615000px;}
.y2d0{bottom:569.265000px;}
.y2a8{bottom:572.835000px;}
.y49{bottom:576.615000px;}
.yab{bottom:576.795000px;}
.y26d{bottom:577.496926px;}
.y1fa{bottom:578.595000px;}
.y15d{bottom:579.525000px;}
.y12e{bottom:580.575000px;}
.yff{bottom:586.515000px;}
.y1d7{bottom:587.955000px;}
.y202{bottom:588.315000px;}
.y181{bottom:589.065000px;}
.y20{bottom:589.755000px;}
.yce{bottom:591.735000px;}
.y26c{bottom:592.398341px;}
.y232{bottom:594.075000px;}
.y12d{bottom:595.155000px;}
.y89{bottom:596.235000px;}
.y2e7{bottom:596.625000px;}
.y2a7{bottom:598.395000px;}
.yaa{bottom:598.575000px;}
.y2f9{bottom:603.465000px;}
.y15b{bottom:605.445000px;}
.y193{bottom:605.560236px;}
.yfe{bottom:605.625000px;}
.y18f{bottom:606.286575px;}
.yde{bottom:607.245000px;}
.y26b{bottom:607.309205px;}
.y2cd{bottom:607.605000px;}
.y12c{bottom:609.585000px;}
.y2ca{bottom:610.845000px;}
.y180{bottom:614.985000px;}
.y201{bottom:619.125000px;}
.ya9{bottom:620.385000px;}
.y1f{bottom:620.565000px;}
.y26a{bottom:622.191722px;}
.ycd{bottom:622.545000px;}
.y2a6{bottom:623.805000px;}
.y12b{bottom:624.165000px;}
.y231{bottom:626.325000px;}
.y88{bottom:627.045000px;}
.y1c4{bottom:630.836833px;}
.y159{bottom:631.185000px;}
.y1f9{bottom:631.365000px;}
.y1c3{bottom:631.417904px;}
.y2e5{bottom:634.965000px;}
.yfd{bottom:636.405000px;}
.y269{bottom:637.093137px;}
.y12a{bottom:638.745000px;}
.y17f{bottom:640.905000px;}
.y2f7{bottom:641.625000px;}
.ya8{bottom:642.165000px;}
.y221{bottom:644.325000px;}
.ycc{bottom:644.505000px;}
.y1d6{bottom:644.865000px;}
.y2a5{bottom:649.365000px;}
.y1e{bottom:651.345000px;}
.y268{bottom:651.975654px;}
.y1f8{bottom:653.145000px;}
.y129{bottom:653.325000px;}
.y230{bottom:657.105000px;}
.y87{bottom:657.825000px;}
.y2c5{bottom:662.145000px;}
.ydd{bottom:662.865000px;}
.y158{bottom:663.090000px;}
.ycb{bottom:666.285000px;}
.y17e{bottom:666.870000px;}
.y267{bottom:666.886518px;}
.yfc{bottom:667.185000px;}
.y21f{bottom:667.725000px;}
.y128{bottom:667.905000px;}
.y2cc{bottom:668.490000px;}
.ya7{bottom:673.125000px;}
.y2e3{bottom:673.170000px;}
.y1f7{bottom:674.925000px;}
.y22f{bottom:678.885000px;}
.y2f6{bottom:680.010000px;}
.ydc{bottom:680.145000px;}
.y7a{bottom:680.325000px;}
.y266{bottom:681.787933px;}
.y127{bottom:682.305000px;}
.y1d{bottom:685.185000px;}
.y2c9{bottom:687.705000px;}
.yca{bottom:688.065000px;}
.y86{bottom:688.785000px;}
.yfb{bottom:688.965000px;}
.y21e{bottom:692.025000px;}
.y17d{bottom:692.610000px;}
.y157{bottom:694.590000px;}
.y265{bottom:696.670450px;}
.y1f6{bottom:696.705000px;}
.y126{bottom:696.885000px;}
.ydb{bottom:697.425000px;}
.y2a4{bottom:700.305000px;}
.y1d5{bottom:700.665000px;}
.y2cb{bottom:701.250000px;}
.y79{bottom:702.105000px;}
.ya6{bottom:703.905000px;}
.yfa{bottom:710.925000px;}
.y125{bottom:711.465000px;}
.y264{bottom:711.581315px;}
.y2c7{bottom:713.265000px;}
.y150{bottom:714.210000px;}
.y21d{bottom:715.245000px;}
.y1c{bottom:716.865000px;}
.y47{bottom:717.585000px;}
.y85{bottom:719.565000px;}
.y1d4{bottom:719.745000px;}
.y174{bottom:721.050000px;}
.ya5{bottom:725.685000px;}
.y2a3{bottom:725.865000px;}
.y123{bottom:726.045000px;}
.y263{bottom:726.482730px;}
.y1f5{bottom:728.205000px;}
.y22e{bottom:731.625000px;}
.yda{bottom:732.525000px;}
.yf9{bottom:732.705000px;}
.y78{bottom:733.065000px;}
.y21c{bottom:738.465000px;}
.y1d3{bottom:738.645000px;}
.y2c4{bottom:739.005000px;}
.y119{bottom:740.625000px;}
.y262{bottom:741.365247px;}
.yc9{bottom:743.505000px;}
.ya4{bottom:747.465000px;}
.yd9{bottom:749.805000px;}
.y84{bottom:750.345000px;}
.y2a2{bottom:751.425000px;}
.y43{bottom:752.325000px;}
.y22d{bottom:753.405000px;}
.y1b{bottom:754.125000px;}
.yf8{bottom:754.485000px;}
.y260{bottom:756.276111px;}
.y1d2{bottom:757.725000px;}
.y1f4{bottom:758.085000px;}
.y21b{bottom:761.685000px;}
.y77{bottom:763.845000px;}
.y2c3{bottom:764.565000px;}
.y14f{bottom:769.470000px;}
.y25e{bottom:771.158628px;}
.y173{bottom:772.350000px;}
.y1a{bottom:773.925000px;}
.y22c{bottom:775.185000px;}
.yf7{bottom:776.265000px;}
.y1d1{bottom:776.625000px;}
.y2a1{bottom:776.805000px;}
.ya3{bottom:780.045000px;}
.y83{bottom:781.125000px;}
.yd8{bottom:785.085000px;}
.y25d{bottom:786.060043px;}
.y14e{bottom:791.250000px;}
.y19{bottom:793.905000px;}
.y76{bottom:794.625000px;}
.y1d0{bottom:795.525000px;}
.y22b{bottom:796.965000px;}
.y2c2{bottom:797.145000px;}
.y288{bottom:797.325000px;}
.yf6{bottom:798.045000px;}
.y25c{bottom:800.970907px;}
.yc8{bottom:802.185000px;}
.yd7{bottom:802.365000px;}
.y1f3{bottom:807.585000px;}
.y21a{bottom:808.305000px;}
.y287{bottom:811.365000px;}
.y82{bottom:812.085000px;}
.y298{bottom:812.165465px;}
.y14d{bottom:813.210000px;}
.y18{bottom:813.705000px;}
.y1cf{bottom:814.605000px;}
.ya2{bottom:815.145000px;}
.y25b{bottom:815.853424px;}
.yd6{bottom:819.645000px;}
.yf5{bottom:820.005000px;}
.y42{bottom:825.045000px;}
.y75{bottom:825.405000px;}
.y22a{bottom:827.925000px;}
.y1f2{bottom:829.545000px;}
.y297{bottom:829.770775px;}
.y2c1{bottom:829.905000px;}
.y25a{bottom:830.754839px;}
.y219{bottom:831.525000px;}
.yc7{bottom:832.965000px;}
.y17{bottom:833.505000px;}
.y14c{bottom:835.020000px;}
.y118{bottom:836.565000px;}
.y14b{bottom:840.165000px;}
.yf4{bottom:841.785000px;}
.y81{bottom:842.865000px;}
.y258{bottom:845.637356px;}
.ya1{bottom:845.925000px;}
.y296{bottom:847.404791px;}
.y229{bottom:849.705000px;}
.y1f1{bottom:851.325000px;}
.y1ce{bottom:852.585000px;}
.y2a0{bottom:853.305000px;}
.yc6{bottom:854.745000px;}
.yd5{bottom:854.925000px;}
.y41{bottom:855.285000px;}
.y305{bottom:856.005000px;}
.y74{bottom:856.185000px;}
.y16{bottom:856.905000px;}
.y256{bottom:860.548220px;}
.y2c0{bottom:862.665000px;}
.yf3{bottom:863.565000px;}
.y295{bottom:865.009564px;}
.y14a{bottom:868.065000px;}
.y117{bottom:868.785000px;}
.y1cd{bottom:871.530000px;}
.yd4{bottom:872.250000px;}
.y1f0{bottom:873.150000px;}
.y80{bottom:873.690000px;}
.y241{bottom:875.449635px;}
.y252{bottom:875.449637px;}
.y251{bottom:875.449638px;}
.y250{bottom:875.449640px;}
.y24e{bottom:875.449641px;}
.y24d{bottom:875.449642px;}
.y24c{bottom:875.449644px;}
.y24b{bottom:875.449645px;}
.y247{bottom:875.449646px;}
.y246{bottom:875.449648px;}
.y245{bottom:875.449649px;}
.y243{bottom:875.449650px;}
.ya0{bottom:877.110000px;}
.y218{bottom:878.010000px;}
.y29f{bottom:878.910000px;}
.y304{bottom:879.270000px;}
.y294{bottom:882.614336px;}
.y40{bottom:884.130000px;}
.yf2{bottom:885.390000px;}
.yc5{bottom:885.570000px;}
.y73{bottom:887.190000px;}
.y15{bottom:888.630000px;}
.y2bf{bottom:889.350000px;}
.y228{bottom:893.310000px;}
.y149{bottom:896.190000px;}
.y9f{bottom:898.170000px;}
.y116{bottom:899.610000px;}
.y303{bottom:899.970000px;}
.y292{bottom:900.248352px;}
.y217{bottom:901.230000px;}
.y1cc{bottom:902.310000px;}
.y3f{bottom:903.930000px;}
.y7f{bottom:904.470000px;}
.yf1{bottom:907.170000px;}
.y14{bottom:910.050000px;}
.y6f{bottom:914.190000px;}
.y148{bottom:915.090000px;}
.yc4{bottom:916.530000px;}
.y290{bottom:917.853125px;}
.y72{bottom:917.970000px;}
.y9e{bottom:919.230000px;}
.y302{bottom:920.670000px;}
.y115{bottom:921.390000px;}
.y3e{bottom:923.730000px;}
.y227{bottom:924.090000px;}
.y216{bottom:924.630000px;}
.yd3{bottom:926.070000px;}
.yf0{bottom:929.130000px;}
.y29d{bottom:929.850000px;}
.y1cb{bottom:930.030000px;}
.y147{bottom:933.990000px;}
.y7e{bottom:935.250000px;}
.y289{bottom:935.452048px;}
.y1ef{bottom:936.690000px;}
.yc3{bottom:938.310000px;}
.y6d{bottom:939.570000px;}
.y9d{bottom:940.290000px;}
.y2bd{bottom:940.650000px;}
.y301{bottom:941.370000px;}
.y114{bottom:943.170000px;}
.y13{bottom:944.610000px;}
.y226{bottom:946.050000px;}
.y1ca{bottom:947.310000px;}
.y214{bottom:947.850000px;}
.y71{bottom:948.750000px;}
.yef{bottom:950.910000px;}
.y3d{bottom:952.710000px;}
.y146{bottom:953.070000px;}
.y29c{bottom:955.410000px;}
.y1ee{bottom:958.650000px;}
.yc2{bottom:960.090000px;}
.y9c{bottom:961.350000px;}
.y1c9{bottom:964.590000px;}
.y113{bottom:965.130000px;}
.y7d{bottom:966.210000px;}
.y2bc{bottom:966.390000px;}
.y212{bottom:971.070000px;}
.y3c{bottom:972.510000px;}
.yee{bottom:972.690000px;}
.y225{bottom:976.830000px;}
.y12{bottom:980.070000px;}
.y1ed{bottom:980.430000px;}
.y145{bottom:980.970000px;}
.y1c8{bottom:981.870000px;}
.y9b{bottom:982.410000px;}
.yd2{bottom:984.750000px;}
.y112{bottom:986.910000px;}
.y3b{bottom:992.310000px;}
.yed{bottom:994.470000px;}
.y7c{bottom:996.990000px;}
.y300{bottom:998.070000px;}
.y2bb{bottom:998.790000px;}
.y286{bottom:1000.230000px;}
.y1ec{bottom:1002.210000px;}
.y9a{bottom:1003.470000px;}
.yd1{bottom:1006.530000px;}
.y224{bottom:1008.150000px;}
.y70{bottom:1008.330000px;}
.y111{bottom:1008.690000px;}
.y144{bottom:1009.050000px;}
.y7{bottom:1010.850000px;}
.y3a{bottom:1012.110000px;}
.yc1{bottom:1015.530000px;}
.yec{bottom:1016.430000px;}
.y6b{bottom:1021.650000px;}
.y99{bottom:1024.530000px;}
.y285{bottom:1031.550000px;}
.y7b{bottom:1031.910000px;}
.y1eb{bottom:1033.530000px;}
.y1c7{bottom:1035.690000px;}
.y23e{bottom:1038.390000px;}
.y110{bottom:1039.470000px;}
.y200{bottom:1039.830000px;}
.y143{bottom:1040.370000px;}
.y39{bottom:1040.910000px;}
.y6{bottom:1041.810000px;}
.y98{bottom:1042.350000px;}
.y29a{bottom:1047.390000px;}
.y2ff{bottom:1056.930000px;}
.y284{bottom:1064.490000px;}
.y223{bottom:1065.030000px;}
.y1ea{bottom:1065.930000px;}
.yd0{bottom:1066.290000px;}
.y38{bottom:1070.430000px;}
.y1ff{bottom:1071.150000px;}
.yc0{bottom:1071.690000px;}
.y5{bottom:1072.590000px;}
.y1e9{bottom:1084.110000px;}
.y2e{bottom:1088.610000px;}
.y63{bottom:1090.950000px;}
.y4{bottom:1103.370000px;}
.y3{bottom:1134.150000px;}
.y1e8{bottom:1139.400000px;}
.y2d{bottom:1142.280000px;}
.y2c{bottom:1161.180000px;}
.y2{bottom:1165.140000px;}
.y2b{bottom:1183.140000px;}
.y1{bottom:1195.920000px;}
.y2a{bottom:1204.920000px;}
.h5d{height:13.465153px;}
.h5c{height:13.488776px;}
.h27{height:13.680000px;}
.h2a{height:13.680150px;}
.h28{height:13.716000px;}
.h26{height:13.860000px;}
.h29{height:13.860150px;}
.h58{height:14.173846px;}
.h57{height:14.197469px;}
.h5a{height:14.906160px;}
.h45{height:16.269993px;}
.h4a{height:16.299047px;}
.h49{height:16.415261px;}
.h62{height:16.902921px;}
.h33{height:22.140000px;}
.h4e{height:22.485000px;}
.h50{height:22.500000px;}
.h52{height:22.536000px;}
.h1e{height:23.436000px;}
.h10{height:23.580000px;}
.h47{height:23.678651px;}
.h4{height:24.156000px;}
.h7{height:24.328477px;}
.h30{height:24.660000px;}
.h32{height:24.696000px;}
.h31{height:24.840000px;}
.h2f{height:24.876000px;}
.h67{height:25.020000px;}
.h5b{height:28.371293px;}
.h2e{height:28.440000px;}
.h1c{height:28.620000px;}
.h4b{height:28.800000px;}
.h2d{height:28.980000px;}
.h4d{height:29.016000px;}
.h5{height:30.402422px;}
.h5e{height:32.227459px;}
.h56{height:32.521599px;}
.h54{height:32.522285px;}
.h12{height:34.020000px;}
.h59{height:36.654011px;}
.h6c{height:36.720000px;}
.h6d{height:36.756000px;}
.h3{height:37.546875px;}
.h60{height:38.186473px;}
.h61{height:38.303171px;}
.h43{height:38.931769px;}
.h1a{height:43.246406px;}
.h6b{height:43.554375px;}
.h34{height:45.720000px;}
.h1d{height:45.900000px;}
.h40{height:47.212033px;}
.h68{height:47.344922px;}
.h3d{height:47.502569px;}
.h13{height:47.520000px;}
.h3c{height:47.793105px;}
.h3a{height:47.938372px;}
.he{height:48.224531px;}
.h64{height:48.616875px;}
.h3f{height:49.129568px;}
.h42{height:49.536318px;}
.h41{height:49.681586px;}
.h15{height:50.312812px;}
.h65{height:50.400000px;}
.h69{height:50.580000px;}
.h23{height:52.260820px;}
.h6a{height:52.416000px;}
.h3b{height:53.171418px;}
.h11{height:56.320312px;}
.h46{height:57.028959px;}
.h5f{height:57.785765px;}
.h3e{height:57.795019px;}
.h4c{height:58.536000px;}
.h63{height:58.680000px;}
.h37{height:59.153046px;}
.h39{height:59.298314px;}
.h1b{height:61.020000px;}
.h51{height:61.189805px;}
.h9{height:62.327813px;}
.h14{height:65.520000px;}
.h1f{height:65.700000px;}
.h24{height:65.884219px;}
.h38{height:66.723881px;}
.h4f{height:67.824844px;}
.h2{height:69.086250px;}
.hd{height:75.093750px;}
.h44{height:75.848515px;}
.h48{height:76.867376px;}
.h20{height:81.360000px;}
.hc{height:81.580078px;}
.hf{height:82.656000px;}
.h8{height:83.787539px;}
.h6{height:86.255508px;}
.h36{height:86.692529px;}
.h21{height:87.859687px;}
.h25{height:88.200000px;}
.ha{height:99.874688px;}
.h66{height:101.700000px;}
.hb{height:110.583984px;}
.h22{height:112.640625px;}
.h18{height:115.380000px;}
.h55{height:139.735021px;}
.h53{height:139.735041px;}
.h16{height:140.256000px;}
.h19{height:228.630000px;}
.h17{height:344.730000px;}
.h35{height:584.230754px;}
.h2b{height:892.980000px;}
.h2c{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:2.700000px;}
.w45{width:14.882204px;}
.w44{width:14.905827px;}
.w4b{width:19.037232px;}
.w4a{width:19.066565px;}
.w42{width:31.680000px;}
.w29{width:42.888641px;}
.w2a{width:42.917718px;}
.w2b{width:43.034025px;}
.w28{width:43.034026px;}
.w16{width:52.416000px;}
.w40{width:53.820000px;}
.w1c{width:63.180000px;}
.w56{width:64.980000px;}
.w57{width:65.340000px;}
.w27{width:65.743198px;}
.w54{width:67.716000px;}
.w55{width:70.560000px;}
.w8{width:72.540000px;}
.w53{width:83.520000px;}
.w1b{width:83.700000px;}
.w11{width:85.896000px;}
.wd{width:86.256000px;}
.w5{width:86.400000px;}
.w10{width:87.120000px;}
.w26{width:88.277909px;}
.wf{width:93.096000px;}
.w3b{width:93.636000px;}
.w3f{width:94.356000px;}
.w21{width:94.674858px;}
.w24{width:94.820244px;}
.w3c{width:94.860000px;}
.w23{width:94.965629px;}
.w39{width:95.076000px;}
.w25{width:95.401784px;}
.w37{width:95.580000px;}
.w35{width:95.796000px;}
.w22{width:97.001022px;}
.w3d{width:100.836000px;}
.w2d{width:102.240000px;}
.w2e{width:102.276000px;}
.w32{width:102.420000px;}
.w33{width:102.456000px;}
.w31{width:102.636000px;}
.w2f{width:102.780000px;}
.w30{width:102.816000px;}
.wa{width:105.300000px;}
.w20{width:118.954191px;}
.w58{width:123.156000px;}
.w50{width:137.736000px;}
.w9{width:138.276000px;}
.we{width:147.816000px;}
.w3{width:157.350000px;}
.w7{width:157.500000px;}
.w51{width:158.610000px;}
.w4c{width:169.095000px;}
.w17{width:169.200000px;}
.w52{width:190.110000px;}
.w3a{width:191.910000px;}
.w3e{width:192.630000px;}
.w38{width:200.550000px;}
.w4d{width:201.270000px;}
.w1a{width:222.150000px;}
.w19{width:222.330000px;}
.w41{width:232.995000px;}
.w1e{width:264.960000px;}
.w36{width:287.175000px;}
.w34{width:297.750000px;}
.w18{width:317.910000px;}
.w4f{width:317.955000px;}
.w49{width:344.230697px;}
.w4e{width:371.415000px;}
.w2c{width:427.500000px;}
.w6{width:440.640000px;}
.wb{width:441.825000px;}
.wc{width:492.300000px;}
.w59{width:513.615000px;}
.w15{width:603.105000px;}
.w1d{width:603.180000px;}
.w1f{width:624.574914px;}
.w48{width:675.321273px;}
.w47{width:690.912152px;}
.w46{width:722.141154px;}
.w43{width:722.141156px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w14{width:1262.879981px;}
.w12{width:1262.880000px;}
.w13{width:1263.000000px;}
.x30{left:-10.800013px;}
.x0{left:0.000000px;}
.xa8{left:1.417353px;}
.x67{left:4.652328px;}
.x42{left:6.660000px;}
.x1d{left:7.740000px;}
.xba{left:9.540000px;}
.xe{left:10.800000px;}
.x26{left:12.090000px;}
.xbd{left:13.140000px;}
.x13{left:14.220000px;}
.x23{left:15.690000px;}
.x3d{left:17.460000px;}
.x3{left:19.800000px;}
.x2d{left:21.630000px;}
.x1e{left:22.680000px;}
.x2a{left:24.690000px;}
.x3e{left:25.740000px;}
.x43{left:27.720000px;}
.x1c{left:28.800000px;}
.x17{left:30.420000px;}
.x15{left:32.040000px;}
.x62{left:33.142985px;}
.x11{left:34.230000px;}
.x33{left:35.279987px;}
.x83{left:36.360000px;}
.x45{left:37.440000px;}
.x84{left:38.520000px;}
.x19{left:39.600000px;}
.x46{left:40.860000px;}
.x29{left:42.330000px;}
.x50{left:43.380000px;}
.x16{left:44.640000px;}
.x44{left:46.440000px;}
.x32{left:48.135000px;}
.x34{left:49.140000px;}
.x56{left:50.940000px;}
.x36{left:52.919987px;}
.x55{left:54.540000px;}
.x58{left:56.370000px;}
.x5f{left:57.420000px;}
.x59{left:58.500000px;}
.x5a{left:59.760000px;}
.x28{left:60.870000px;}
.x57{left:62.460000px;}
.x5e{left:64.440000px;}
.x53{left:65.874000px;}
.x22{left:67.350000px;}
.x5d{left:68.940000px;}
.x54{left:70.200000px;}
.x20{left:71.670000px;}
.x4d{left:73.800000px;}
.x4{left:75.270000px;}
.xcd{left:76.320000px;}
.x52{left:78.474000px;}
.x21{left:80.490000px;}
.x25{left:82.470000px;}
.xab{left:83.951552px;}
.x1{left:84.995987px;}
.x87{left:86.430000px;}
.x88{left:87.480000px;}
.xd3{left:89.280000px;}
.x85{left:92.700000px;}
.x81{left:95.940000px;}
.xbb{left:98.280000px;}
.x7f{left:100.074000px;}
.xcf{left:102.960000px;}
.x27{left:104.430000px;}
.x47{left:106.235987px;}
.xb1{left:107.946091px;}
.xb2{left:110.058079px;}
.xa{left:111.995987px;}
.x37{left:117.035987px;}
.x7e{left:119.565000px;}
.xbe{left:120.960000px;}
.x7b{left:125.454000px;}
.x39{left:127.475987px;}
.xc1{left:128.739000px;}
.x35{left:130.710000px;}
.x2c{left:133.590000px;}
.x10{left:134.640000px;}
.xbf{left:136.305000px;}
.x73{left:138.095987px;}
.xcc{left:142.020000px;}
.xb9{left:143.685000px;}
.xce{left:146.160000px;}
.x38{left:154.469987px;}
.xd2{left:155.520000px;}
.x14{left:159.150000px;}
.xb8{left:160.605000px;}
.xb7{left:164.025000px;}
.x2b{left:166.710000px;}
.xd4{left:168.300000px;}
.xbc{left:170.325000px;}
.x1b{left:181.155000px;}
.x86{left:184.545000px;}
.xb6{left:185.625000px;}
.x74{left:189.030000px;}
.x3b{left:194.610000px;}
.xcb{left:196.560000px;}
.x2e{left:203.295000px;}
.x24{left:208.155000px;}
.x1f{left:218.955000px;}
.xd1{left:221.445000px;}
.x8a{left:224.895000px;}
.xd0{left:237.285000px;}
.xb4{left:244.695000px;}
.xa9{left:267.374987px;}
.xc0{left:269.894987px;}
.x4c{left:281.009981px;}
.xc4{left:285.374987px;}
.x80{left:286.815000px;}
.xaa{left:288.178996px;}
.x8d{left:289.389148px;}
.x75{left:292.035000px;}
.x18{left:298.155000px;}
.x70{left:299.440389px;}
.x6a{left:300.458076px;}
.x6d{left:302.493471px;}
.x8e{left:304.998925px;}
.x31{left:307.080000px;}
.x63{left:317.904302px;}
.x8f{left:320.618151px;}
.x6{left:326.954987px;}
.xc7{left:330.330000px;}
.x90{left:336.209030px;}
.x3c{left:343.155000px;}
.x3a{left:347.474987px;}
.x91{left:351.818806px;}
.x92{left:367.428583px;}
.x71{left:373.470529px;}
.x7c{left:382.755000px;}
.x61{left:391.498296px;}
.x76{left:394.815000px;}
.x93{left:398.638688px;}
.x1a{left:404.175000px;}
.xc5{left:408.494981px;}
.xb3{left:413.024987px;}
.x94{left:414.229566px;}
.x95{left:429.848792px;}
.x3f{left:436.965000px;}
.x6c{left:442.523668px;}
.x6e{left:445.576761px;}
.xb5{left:446.865000px;}
.x5{left:450.824987px;}
.xc2{left:457.305000px;}
.x66{left:459.969895px;}
.x65{left:462.005290px;}
.x5c{left:465.480000px;}
.xc8{left:471.675000px;}
.x96{left:476.668673px;}
.x7d{left:478.545000px;}
.x97{left:492.278450px;}
.x77{left:498.345000px;}
.x98{left:507.869329px;}
.x7a{left:510.404987px;}
.xac{left:513.927125px;}
.x99{left:523.488554px;}
.x40{left:524.805000px;}
.x89{left:532.725000px;}
.x9a{left:539.098331px;}
.x69{left:551.744314px;}
.xad{left:553.444781px;}
.x9b{left:554.689210px;}
.x9c{left:570.308435px;}
.xae{left:573.180142px;}
.xb{left:577.049987px;}
.x9d{left:585.918212px;}
.xaf{left:592.950704px;}
.xc3{left:595.950000px;}
.x78{left:601.710000px;}
.xc9{left:605.055000px;}
.xc6{left:610.094981px;}
.x41{left:611.430000px;}
.xb0{left:612.697798px;}
.x4e{left:616.215000px;}
.x9e{left:632.719195px;}
.x9f{left:648.328972px;}
.x4b{left:653.040000px;}
.x72{left:655.864361px;}
.xa0{left:663.948198px;}
.x82{left:671.550000px;}
.x8{left:675.509987px;}
.xa1{left:679.539077px;}
.xa2{left:695.148853px;}
.x68{left:696.862998px;}
.x12{left:702.720000px;}
.x79{left:704.850000px;}
.x2{left:708.990000px;}
.xa3{left:710.768079px;}
.x4a{left:716.940000px;}
.xa4{left:726.358958px;}
.xca{left:729.645000px;}
.xa5{left:741.968734px;}
.xa6{left:757.578511px;}
.xf{left:766.620000px;}
.xa7{left:773.169390px;}
.x6f{left:787.474341px;}
.x6b{left:788.637420px;}
.x64{left:805.938261px;}
.x9{left:808.019987px;}
.x7{left:818.639987px;}
.x8c{left:834.839987px;}
.x4f{left:839.625000px;}
.x8b{left:861.300000px;}
.xd{left:890.280000px;}
.x48{left:904.424981px;}
.x60{left:922.964981px;}
.x51{left:1062.870000px;}
.x5b{left:1135.409981px;}
.xc{left:1230.914987px;}
.x2f{left:1264.784987px;}
.x49{left:1332.179981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-4.010667pt;}
.ls3{letter-spacing:-3.370667pt;}
.ls4{letter-spacing:-3.168000pt;}
.ls40{letter-spacing:-1.559670pt;}
.ls12{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.736000pt;}
.ls3e{letter-spacing:-0.702167pt;}
.ls39{letter-spacing:-0.613333pt;}
.lsc{letter-spacing:-0.597333pt;}
.ls28{letter-spacing:-0.448000pt;}
.ls35{letter-spacing:-0.406933pt;}
.ls44{letter-spacing:-0.400533pt;}
.ls48{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.368533pt;}
.ls32{letter-spacing:-0.325333pt;}
.ls15{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.239467pt;}
.ls25{letter-spacing:-0.233067pt;}
.ls43{letter-spacing:-0.230933pt;}
.ls2c{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.204267pt;}
.ls10{letter-spacing:-0.198933pt;}
.ls29{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.161067pt;}
.ls47{letter-spacing:-0.158933pt;}
.ls22{letter-spacing:-0.135467pt;}
.ls19{letter-spacing:-0.097067pt;}
.ls42{letter-spacing:-0.094933pt;}
.ls46{letter-spacing:-0.079467pt;}
.ls3a{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.051840pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.033280pt;}
.ls2f{letter-spacing:-0.018594pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.030720pt;}
.ls41{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls45{letter-spacing:0.079467pt;}
.ls11{letter-spacing:0.080533pt;}
.ls6{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.121067pt;}
.ls2b{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.138880pt;}
.ls3d{letter-spacing:0.146145pt;}
.ls3c{letter-spacing:0.156227pt;}
.ls34{letter-spacing:0.162667pt;}
.lsa{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.198933pt;}
.ls2e{letter-spacing:0.206603pt;}
.ls21{letter-spacing:0.208533pt;}
.ls37{letter-spacing:0.227733pt;}
.ls1e{letter-spacing:0.232960pt;}
.ls23{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.239360pt;}
.ls27{letter-spacing:0.239467pt;}
.ls1f{letter-spacing:0.271360pt;}
.ls16{letter-spacing:0.271467pt;}
.ls38{letter-spacing:0.278933pt;}
.ls31{letter-spacing:0.303467pt;}
.ls30{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.359467pt;}
.ls2d{letter-spacing:0.416000pt;}
.ls1b{letter-spacing:0.588160pt;}
.ls3f{letter-spacing:1.031435pt;}
.ls1c{letter-spacing:4.111360pt;}
.ls1d{letter-spacing:9.231360pt;}
.ls18{letter-spacing:22.533120pt;}
.ls17{letter-spacing:55.173120pt;}
.ls3b{letter-spacing:751.770027pt;}
.ls36{letter-spacing:870.138027pt;}
.ws15{word-spacing:-58.880000pt;}
.ws9{word-spacing:-42.880000pt;}
.ws2{word-spacing:-23.663360pt;}
.ws30{word-spacing:-21.120107pt;}
.ws20{word-spacing:-20.783360pt;}
.ws5{word-spacing:-20.495360pt;}
.ws4{word-spacing:-20.292693pt;}
.ws39{word-spacing:-20.203307pt;}
.ws3{word-spacing:-19.652693pt;}
.ws49{word-spacing:-17.984000pt;}
.ws32{word-spacing:-17.920000pt;}
.ws25{word-spacing:-17.792000pt;}
.ws3a{word-spacing:-17.728000pt;}
.ws48{word-spacing:-17.408000pt;}
.ws33{word-spacing:-17.344000pt;}
.ws1{word-spacing:-16.922880pt;}
.ws0{word-spacing:-16.718613pt;}
.ws18{word-spacing:-16.640107pt;}
.ws1f{word-spacing:-16.601707pt;}
.ws16{word-spacing:-16.368640pt;}
.ws3d{word-spacing:-16.313128pt;}
.ws19{word-spacing:-16.271573pt;}
.ws22{word-spacing:-16.233173pt;}
.ws1e{word-spacing:-16.135573pt;}
.ws17{word-spacing:-16.097173pt;}
.ws34{word-spacing:-15.961707pt;}
.ws1d{word-spacing:-15.632640pt;}
.ws36{word-spacing:-14.767360pt;}
.ws21{word-spacing:-14.720000pt;}
.ws41{word-spacing:-14.672427pt;}
.ws42{word-spacing:-14.536427pt;}
.ws2f{word-spacing:-13.664000pt;}
.ws38{word-spacing:-13.585813pt;}
.ws8{word-spacing:-13.536000pt;}
.ws37{word-spacing:-13.534613pt;}
.ws12{word-spacing:-13.455360pt;}
.ws7{word-spacing:-13.424640pt;}
.ws35{word-spacing:-13.280000pt;}
.ws23{word-spacing:-12.896000pt;}
.ws24{word-spacing:-12.160107pt;}
.wsc{word-spacing:-12.119573pt;}
.ws1a{word-spacing:-12.058987pt;}
.ws14{word-spacing:-12.041707pt;}
.ws1c{word-spacing:-12.005120pt;}
.ws10{word-spacing:-12.001173pt;}
.ws1b{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.920640pt;}
.ws13{word-spacing:-11.887360pt;}
.wsd{word-spacing:-11.759573pt;}
.wsf{word-spacing:-11.721707pt;}
.wse{word-spacing:-11.681173pt;}
.wsb{word-spacing:-11.323307pt;}
.ws11{word-spacing:-11.120640pt;}
.ws2d{word-spacing:-10.739228pt;}
.ws2c{word-spacing:-10.720634pt;}
.ws43{word-spacing:-10.720000pt;}
.ws31{word-spacing:-10.678827pt;}
.ws45{word-spacing:-10.398827pt;}
.ws47{word-spacing:-10.319360pt;}
.ws44{word-spacing:-10.239893pt;}
.ws46{word-spacing:-10.160427pt;}
.ws2e{word-spacing:-9.688652pt;}
.ws2a{word-spacing:-9.312000pt;}
.ws40{word-spacing:-9.075190pt;}
.ws3f{word-spacing:-9.047540pt;}
.ws29{word-spacing:-8.992000pt;}
.ws28{word-spacing:-8.960000pt;}
.ws26{word-spacing:-8.896000pt;}
.ws2b{word-spacing:-8.754806pt;}
.ws27{word-spacing:-8.672000pt;}
.ws3b{word-spacing:-7.705521pt;}
.ws3c{word-spacing:-7.705359pt;}
.ws3e{word-spacing:-1.505155pt;}
.ws6{word-spacing:0.000000pt;}
._10{margin-left:-15.977600pt;}
._c{margin-left:-14.037120pt;}
._f{margin-left:-13.034453pt;}
._d{margin-left:-11.829760pt;}
._b{margin-left:-9.943680pt;}
._a{margin-left:-7.686080pt;}
._e{margin-left:-6.515200pt;}
._11{margin-left:-5.331093pt;}
._5{margin-left:-4.170880pt;}
._6{margin-left:-3.149440pt;}
._7{margin-left:-1.993173pt;}
._3{margin-left:-0.960000pt;}
._2{width:0.896000pt;}
._1{width:2.048000pt;}
._0{width:3.200000pt;}
._4{width:4.256000pt;}
._8{width:5.235840pt;}
._12{width:6.653440pt;}
._13{width:7.654400pt;}
._16{width:9.479680pt;}
._1a{width:10.684373pt;}
._1c{width:11.599360pt;}
._1b{width:12.600320pt;}
._2e{width:13.492480pt;}
._2c{width:14.900907pt;}
._1d{width:17.301973pt;}
._22{width:18.636800pt;}
._17{width:21.550080pt;}
._18{width:22.551040pt;}
._19{width:23.818667pt;}
._21{width:25.172480pt;}
._30{width:27.459840pt;}
._23{width:28.858027pt;}
._33{width:31.447040pt;}
._15{width:38.563200pt;}
._14{width:39.567360pt;}
._24{width:48.950080pt;}
._2a{width:52.664320pt;}
._28{width:57.909760pt;}
._2f{width:63.522347pt;}
._29{width:71.387520pt;}
._25{width:74.278400pt;}
._2b{width:80.823680pt;}
._26{width:90.879360pt;}
._1e{width:102.305280pt;}
._1f{width:114.094293pt;}
._27{width:132.747947pt;}
._35{width:157.418667pt;}
._20{width:173.050027pt;}
._9{width:751.770027pt;}
._34{width:753.371307pt;}
._31{width:782.193493pt;}
._32{width:1497.797973pt;}
._2d{width:2554.244693pt;}
.fs6{font-size:21.120000pt;}
.fs14{font-size:27.717118pt;}
.fs13{font-size:27.717703pt;}
.fs1{font-size:32.000000pt;}
.fs16{font-size:32.545109pt;}
.fs17{font-size:32.644567pt;}
.fs15{font-size:32.757286pt;}
.fs2{font-size:37.120000pt;}
.fse{font-size:38.738079pt;}
.fs11{font-size:42.870140pt;}
.fsb{font-size:42.880000pt;}
.fs10{font-size:47.518710pt;}
.fsa{font-size:48.000000pt;}
.fsd{font-size:51.650772pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsf{font-size:60.431403pt;}
.fs5{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs12{font-size:68.695526pt;}
.fs3{font-size:74.880000pt;}
.fsc{font-size:77.476157pt;}
.fs8{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.y11{bottom:-15.680000pt;}
.y198{bottom:-14.741991pt;}
.y2e6{bottom:-8.960000pt;}
.y2e4{bottom:-8.800000pt;}
.y2ea{bottom:-4.480000pt;}
.y0{bottom:0.000000pt;}
.y177{bottom:0.320000pt;}
.y1c6{bottom:0.352000pt;}
.y6a{bottom:1.600000pt;}
.y33{bottom:1.632000pt;}
.y1a8{bottom:1.807777pt;}
.y1a0{bottom:2.066031pt;}
.y124{bottom:2.240000pt;}
.y19c{bottom:2.324285pt;}
.y197{bottom:2.582539pt;}
.y261{bottom:3.149756pt;}
.y179{bottom:3.200000pt;}
.y1b7{bottom:3.228173pt;}
.y1a4{bottom:3.357300pt;}
.y65{bottom:3.520000pt;}
.y2e1{bottom:3.546667pt;}
.y1ac{bottom:3.615554pt;}
.y254{bottom:3.779687pt;}
.y279{bottom:3.779703pt;}
.y257{bottom:3.779704pt;}
.y25f{bottom:3.796502pt;}
.y27f{bottom:3.800702pt;}
.y259{bottom:3.804902pt;}
.y29e{bottom:3.840000pt;}
.y222{bottom:4.000000pt;}
.y2c8{bottom:4.160000pt;}
.y155{bottom:4.320000pt;}
.y293{bottom:4.367075pt;}
.y299{bottom:4.367138pt;}
.y291{bottom:4.393070pt;}
.y27b{bottom:4.409651pt;}
.y10{bottom:4.640000pt;}
.y1b9{bottom:4.648569pt;}
.y215{bottom:4.960000pt;}
.y1b5{bottom:5.035950pt;}
.y20a{bottom:5.120000pt;}
.y20e{bottom:5.280000pt;}
.y220{bottom:5.440000pt;}
.y15c{bottom:5.600000pt;}
.y15a{bottom:5.760000pt;}
.y213{bottom:6.080000pt;}
.y192{bottom:6.198093pt;}
.y66{bottom:6.240000pt;}
.y283{bottom:6.299486pt;}
.y35{bottom:8.000000pt;}
.y163{bottom:8.026667pt;}
.y15f{bottom:8.160000pt;}
.y28d{bottom:8.786140pt;}
.y28c{bottom:9.410008pt;}
.y2d3{bottom:9.600000pt;}
.y2df{bottom:9.626667pt;}
.y2d1{bottom:9.760000pt;}
.y2f8{bottom:9.800000pt;}
.y27d{bottom:10.079182pt;}
.y2ce{bottom:10.400000pt;}
.y122{bottom:10.720000pt;}
.y46{bottom:12.000000pt;}
.y48{bottom:12.160000pt;}
.y29b{bottom:14.080000pt;}
.y2be{bottom:15.360000pt;}
.y36{bottom:15.840000pt;}
.y2e0{bottom:15.866667pt;}
.y2da{bottom:15.880000pt;}
.y1a7{bottom:16.269993pt;}
.y34{bottom:16.480000pt;}
.y19f{bottom:16.528247pt;}
.y154{bottom:16.640000pt;}
.y19b{bottom:16.786501pt;}
.y11d{bottom:16.960000pt;}
.y282{bottom:17.008347pt;}
.y196{bottom:17.044755pt;}
.y28b{bottom:17.551484pt;}
.y1a3{bottom:17.819516pt;}
.y1b0{bottom:17.841037pt;}
.y1ab{bottom:18.077770pt;}
.y28e{bottom:18.175352pt;}
.y64{bottom:18.240000pt;}
.y20d{bottom:18.400000pt;}
.y28f{bottom:20.046955pt;}
.y1b4{bottom:20.789436pt;}
.y37{bottom:20.800000pt;}
.y249{bottom:20.813475pt;}
.y191{bottom:21.951578pt;}
.y156{bottom:22.880000pt;}
.y121{bottom:23.040000pt;}
.y61{bottom:24.160000pt;}
.y68{bottom:25.760000pt;}
.y44{bottom:26.080000pt;}
.y56{bottom:26.240000pt;}
.y4f{bottom:26.266667pt;}
.y17a{bottom:26.400000pt;}
.y178{bottom:26.560000pt;}
.y28a{bottom:28.178034pt;}
.y2cf{bottom:28.960000pt;}
.y11b{bottom:29.120000pt;}
.y1a6{bottom:30.732209pt;}
.y19e{bottom:30.990463pt;}
.y19a{bottom:31.250869pt;}
.y195{bottom:31.506971pt;}
.y17b{bottom:31.680000pt;}
.y67{bottom:31.840000pt;}
.y1af{bottom:32.303253pt;}
.y1a2{bottom:32.314014pt;}
.y1b2{bottom:32.410859pt;}
.y1aa{bottom:32.539986pt;}
.y255{bottom:32.782484pt;}
.y30{bottom:33.120000pt;}
.y6c{bottom:34.240000pt;}
.y120{bottom:35.360000pt;}
.y152{bottom:36.000000pt;}
.y190{bottom:37.737345pt;}
.y2c6{bottom:38.080000pt;}
.y45{bottom:40.160000pt;}
.y5f{bottom:40.320000pt;}
.y4e{bottom:40.346667pt;}
.ye{bottom:40.800000pt;}
.y248{bottom:40.971805pt;}
.y11a{bottom:41.440000pt;}
.yf{bottom:42.560000pt;}
.y153{bottom:43.040000pt;}
.y253{bottom:45.398238pt;}
.y17c{bottom:45.760000pt;}
.y11f{bottom:47.520000pt;}
.y53{bottom:48.320000pt;}
.yd{bottom:51.360000pt;}
.y31{bottom:51.680000pt;}
.y24f{bottom:52.327664pt;}
.y2f{bottom:52.640000pt;}
.y11c{bottom:53.760000pt;}
.y24a{bottom:54.217507pt;}
.y6e{bottom:54.240000pt;}
.y151{bottom:55.360000pt;}
.y244{bottom:56.107351pt;}
.y69{bottom:56.800000pt;}
.y4a{bottom:59.386667pt;}
.y11e{bottom:59.840000pt;}
.y242{bottom:59.887054pt;}
.yc{bottom:61.952000pt;}
.y55{bottom:62.400000pt;}
.y4d{bottom:62.426667pt;}
.y175{bottom:63.360000pt;}
.y1c5{bottom:63.392000pt;}
.yb{bottom:72.512000pt;}
.y32{bottom:75.360000pt;}
.y5e{bottom:76.480000pt;}
.y172{bottom:78.080000pt;}
.y18c{bottom:83.040000pt;}
.ya{bottom:83.072000pt;}
.y18d{bottom:83.942667pt;}
.y54{bottom:84.480000pt;}
.y4c{bottom:84.506667pt;}
.y2f5{bottom:88.320000pt;}
.y176{bottom:89.440000pt;}
.y5d{bottom:90.560000pt;}
.y62{bottom:91.552000pt;}
.ybf{bottom:92.672000pt;}
.y9{bottom:93.632000pt;}
.y2ba{bottom:94.752000pt;}
.y1b1{bottom:95.245577pt;}
.y2e2{bottom:97.920000pt;}
.y57{bottom:98.600000pt;}
.y171{bottom:100.960000pt;}
.y10f{bottom:101.152000pt;}
.y8{bottom:104.192000pt;}
.y4b{bottom:106.586667pt;}
.y1c2{bottom:109.062159pt;}
.ybe{bottom:112.032000pt;}
.y5c{bottom:112.840000pt;}
.y2f4{bottom:122.240000pt;}
.y2b9{bottom:123.872000pt;}
.y170{bottom:124.000000pt;}
.y5b{bottom:126.920000pt;}
.y10e{bottom:128.512000pt;}
.ybd{bottom:131.552000pt;}
.y2de{bottom:132.000000pt;}
.y16f{bottom:147.066667pt;}
.y10d{bottom:147.866667pt;}
.y5a{bottom:149.000000pt;}
.y51{bottom:150.280000pt;}
.y60{bottom:150.586667pt;}
.y2b8{bottom:150.906667pt;}
.y1e7{bottom:154.106667pt;}
.y97{bottom:154.586667pt;}
.y2f3{bottom:156.346667pt;}
.ybc{bottom:158.906667pt;}
.y199{bottom:160.867882pt;}
.yeb{bottom:161.786667pt;}
.y2dd{bottom:165.946667pt;}
.y16e{bottom:170.106667pt;}
.y59{bottom:171.080000pt;}
.y2b7{bottom:173.146667pt;}
.y1e6{bottom:173.466667pt;}
.y96{bottom:173.786667pt;}
.y1c1{bottom:173.909702pt;}
.y10c{bottom:175.386667pt;}
.ybb{bottom:178.266667pt;}
.y58{bottom:185.160000pt;}
.y211{bottom:187.706667pt;}
.yea{bottom:189.146667pt;}
.y2f2{bottom:190.266667pt;}
.y2b6{bottom:191.866667pt;}
.y1e5{bottom:192.826667pt;}
.y16d{bottom:192.986667pt;}
.yba{bottom:197.626667pt;}
.y2dc{bottom:200.026667pt;}
.y95{bottom:201.146667pt;}
.y10b{bottom:202.746667pt;}
.y50{bottom:205.466667pt;}
.y1e4{bottom:212.346667pt;}
.y2b5{bottom:214.426667pt;}
.y16c{bottom:216.026667pt;}
.ye9{bottom:216.506667pt;}
.yb9{bottom:217.146667pt;}
.y10a{bottom:222.106667pt;}
.y2f1{bottom:224.346667pt;}
.y1ae{bottom:224.916991pt;}
.y94{bottom:228.666667pt;}
.y210{bottom:231.546667pt;}
.y2db{bottom:233.946667pt;}
.yb8{bottom:236.506667pt;}
.y2b4{bottom:237.146667pt;}
.y16b{bottom:239.066667pt;}
.y1e3{bottom:240.186667pt;}
.y29{bottom:241.466667pt;}
.y1c0{bottom:241.595886pt;}
.y142{bottom:242.906667pt;}
.ye8{bottom:244.026667pt;}
.y20f{bottom:253.946667pt;}
.yb7{bottom:255.866667pt;}
.y93{bottom:256.026667pt;}
.y141{bottom:257.306667pt;}
.y2f0{bottom:258.266667pt;}
.y2b3{bottom:259.866667pt;}
.y109{bottom:260.826667pt;}
.y240{bottom:260.986667pt;}
.y16a{bottom:262.106667pt;}
.y23d{bottom:262.746667pt;}
.y28{bottom:267.066667pt;}
.y2d9{bottom:268.026667pt;}
.y1e2{bottom:268.826667pt;}
.y140{bottom:270.266667pt;}
.ye7{bottom:271.386667pt;}
.yb6{bottom:275.226667pt;}
.y23f{bottom:276.186667pt;}
.y281{bottom:276.889615pt;}
.y20c{bottom:280.186667pt;}
.y108{bottom:280.346667pt;}
.y23c{bottom:282.106667pt;}
.y2b2{bottom:282.426667pt;}
.y13f{bottom:283.226667pt;}
.y92{bottom:283.386667pt;}
.y169{bottom:285.026667pt;}
.y1e1{bottom:288.186667pt;}
.y1a1{bottom:290.147611pt;}
.y2ef{bottom:292.386667pt;}
.y18b{bottom:293.666667pt;}
.yb5{bottom:294.586667pt;}
.y13e{bottom:296.186667pt;}
.ye6{bottom:298.746667pt;}
.y2d8{bottom:301.986667pt;}
.y280{bottom:302.738213pt;}
.y2b1{bottom:305.186667pt;}
.y20b{bottom:306.626667pt;}
.y1e0{bottom:307.586667pt;}
.y168{bottom:308.066667pt;}
.y1bf{bottom:308.225381pt;}
.y107{bottom:308.226667pt;}
.y27{bottom:308.866667pt;}
.y13d{bottom:309.026667pt;}
.y23b{bottom:309.506667pt;}
.y91{bottom:310.786667pt;}
.y27e{bottom:315.337169pt;}
.y18a{bottom:316.706667pt;}
.y13c{bottom:321.986667pt;}
.yb4{bottom:322.146667pt;}
.ye5{bottom:326.146667pt;}
.y2ee{bottom:326.306667pt;}
.y2b0{bottom:327.906667pt;}
.y27c{bottom:327.957123pt;}
.y167{bottom:331.106667pt;}
.y209{bottom:332.866667pt;}
.y13b{bottom:334.946667pt;}
.y1df{bottom:335.106667pt;}
.y2d7{bottom:336.066667pt;}
.y106{bottom:336.386667pt;}
.y23a{bottom:337.026667pt;}
.y90{bottom:338.146667pt;}
.y189{bottom:339.586667pt;}
.yb3{bottom:341.506667pt;}
.y13a{bottom:347.906667pt;}
.y1a9{bottom:348.803519pt;}
.y2af{bottom:350.466667pt;}
.y26{bottom:350.626667pt;}
.y19d{bottom:352.031692pt;}
.ye4{bottom:353.506667pt;}
.y27a{bottom:353.805980pt;}
.y105{bottom:353.986667pt;}
.y166{bottom:354.146667pt;}
.y1de{bottom:354.466667pt;}
.y1b3{bottom:354.614231pt;}
.y239{bottom:356.386667pt;}
.y2ed{bottom:360.386667pt;}
.yb2{bottom:360.866667pt;}
.y188{bottom:362.626667pt;}
.y1bd{bottom:364.040496pt;}
.y208{bottom:364.866667pt;}
.y8f{bottom:365.666667pt;}
.y1be{bottom:365.848273pt;}
.y1bc{bottom:365.977400pt;}
.y278{bottom:367.686670pt;}
.y2d6{bottom:369.986667pt;}
.y104{bottom:371.746667pt;}
.y2ae{bottom:373.186667pt;}
.y139{bottom:373.826667pt;}
.y238{bottom:375.746667pt;}
.y165{bottom:377.026667pt;}
.y2fe{bottom:380.866667pt;}
.y277{bottom:380.915573pt;}
.ye3{bottom:381.026667pt;}
.y1dd{bottom:381.826667pt;}
.y1fe{bottom:381.986667pt;}
.y187{bottom:385.666667pt;}
.y138{bottom:386.626667pt;}
.y25{bottom:387.266667pt;}
.yb1{bottom:388.226667pt;}
.y103{bottom:389.346667pt;}
.y207{bottom:392.706667pt;}
.y8e{bottom:393.026667pt;}
.y276{bottom:394.161276pt;}
.y2ec{bottom:394.306667pt;}
.y237{bottom:395.106667pt;}
.y2ad{bottom:395.906667pt;}
.y137{bottom:399.586667pt;}
.y164{bottom:400.066667pt;}
.y1dc{bottom:401.186667pt;}
.y2d5{bottom:404.066667pt;}
.y102{bottom:406.946667pt;}
.y275{bottom:407.415377pt;}
.yb0{bottom:407.746667pt;}
.ye2{bottom:408.386667pt;}
.y186{bottom:408.706667pt;}
.y52{bottom:409.346667pt;}
.y2fd{bottom:409.986667pt;}
.y1ad{bottom:411.451600pt;}
.y136{bottom:412.546667pt;}
.y236{bottom:414.466667pt;}
.y1a5{bottom:414.550647pt;}
.y24{bottom:414.626667pt;}
.y194{bottom:414.679774pt;}
.y2ac{bottom:418.466667pt;}
.y8d{bottom:420.386667pt;}
.y274{bottom:420.644281pt;}
.y206{bottom:421.346667pt;}
.y162{bottom:423.106667pt;}
.ycf{bottom:424.546667pt;}
.y135{bottom:425.506667pt;}
.y1bb{bottom:428.108974pt;}
.y2eb{bottom:428.386667pt;}
.y1db{bottom:428.706667pt;}
.y1ba{bottom:429.012863pt;}
.y185{bottom:431.613333pt;}
.y273{bottom:433.889984pt;}
.y2fc{bottom:434.333333pt;}
.yaf{bottom:435.106667pt;}
.ye1{bottom:435.746667pt;}
.y2d4{bottom:438.013333pt;}
.y134{bottom:438.466667pt;}
.y2ab{bottom:441.186667pt;}
.y1b6{bottom:441.538175pt;}
.y23{bottom:441.986667pt;}
.y161{bottom:446.173333pt;}
.y272{bottom:447.118887pt;}
.y8c{bottom:447.746667pt;}
.y1da{bottom:448.066667pt;}
.y1fd{bottom:448.226667pt;}
.y205{bottom:448.706667pt;}
.y133{bottom:451.426667pt;}
.yae{bottom:454.466667pt;}
.y184{bottom:454.653333pt;}
.y101{bottom:454.786667pt;}
.y271{bottom:460.372989pt;}
.y235{bottom:461.346667pt;}
.y2e9{bottom:462.333333pt;}
.ye0{bottom:463.106667pt;}
.y2aa{bottom:463.906667pt;}
.y132{bottom:464.226667pt;}
.y1fc{bottom:467.586667pt;}
.y2fb{bottom:468.413333pt;}
.y160{bottom:469.053333pt;}
.y22{bottom:469.346667pt;}
.y2d2{bottom:472.093333pt;}
.y270{bottom:473.618691pt;}
.yad{bottom:473.826667pt;}
.y8b{bottom:475.266667pt;}
.y1d9{bottom:475.426667pt;}
.y204{bottom:476.226667pt;}
.y131{bottom:477.186667pt;}
.y183{bottom:477.693333pt;}
.y234{bottom:480.706667pt;}
.y2a9{bottom:486.466667pt;}
.y26f{bottom:486.847595pt;}
.y1fb{bottom:486.946667pt;}
.y130{bottom:490.146667pt;}
.ydf{bottom:490.626667pt;}
.y1b8{bottom:491.144437pt;}
.y15e{bottom:492.093333pt;}
.yac{bottom:493.186667pt;}
.y1d8{bottom:494.786667pt;}
.y2e8{bottom:496.413333pt;}
.y21{bottom:496.866667pt;}
.y233{bottom:500.066667pt;}
.y26e{bottom:500.101697pt;}
.y182{bottom:500.733333pt;}
.y18e{bottom:500.851075pt;}
.y2fa{bottom:502.333333pt;}
.y8a{bottom:502.626667pt;}
.y12f{bottom:503.106667pt;}
.y203{bottom:503.586667pt;}
.y100{bottom:504.546667pt;}
.y2d0{bottom:506.013333pt;}
.y2a8{bottom:509.186667pt;}
.y49{bottom:512.546667pt;}
.yab{bottom:512.706667pt;}
.y26d{bottom:513.330601pt;}
.y1fa{bottom:514.306667pt;}
.y15d{bottom:515.133333pt;}
.y12e{bottom:516.066667pt;}
.yff{bottom:521.346667pt;}
.y1d7{bottom:522.626667pt;}
.y202{bottom:522.946667pt;}
.y181{bottom:523.613333pt;}
.y20{bottom:524.226667pt;}
.yce{bottom:525.986667pt;}
.y26c{bottom:526.576303pt;}
.y232{bottom:528.066667pt;}
.y12d{bottom:529.026667pt;}
.y89{bottom:529.986667pt;}
.y2e7{bottom:530.333333pt;}
.y2a7{bottom:531.906667pt;}
.yaa{bottom:532.066667pt;}
.y2f9{bottom:536.413333pt;}
.y15b{bottom:538.173333pt;}
.y193{bottom:538.275766pt;}
.yfe{bottom:538.333333pt;}
.y18f{bottom:538.921400pt;}
.yde{bottom:539.773333pt;}
.y26b{bottom:539.830405pt;}
.y2cd{bottom:540.093333pt;}
.y12c{bottom:541.853333pt;}
.y2ca{bottom:542.973333pt;}
.y180{bottom:546.653333pt;}
.y201{bottom:550.333333pt;}
.ya9{bottom:551.453333pt;}
.y1f{bottom:551.613333pt;}
.y26a{bottom:553.059308pt;}
.ycd{bottom:553.373333pt;}
.y2a6{bottom:554.493333pt;}
.y12b{bottom:554.813333pt;}
.y231{bottom:556.733333pt;}
.y88{bottom:557.373333pt;}
.y1c4{bottom:560.743851pt;}
.y159{bottom:561.053333pt;}
.y1f9{bottom:561.213333pt;}
.y1c3{bottom:561.260359pt;}
.y2e5{bottom:564.413333pt;}
.yfd{bottom:565.693333pt;}
.y269{bottom:566.305011pt;}
.y12a{bottom:567.773333pt;}
.y17f{bottom:569.693333pt;}
.y2f7{bottom:570.333333pt;}
.ya8{bottom:570.813333pt;}
.y221{bottom:572.733333pt;}
.ycc{bottom:572.893333pt;}
.y1d6{bottom:573.213333pt;}
.y2a5{bottom:577.213333pt;}
.y1e{bottom:578.973333pt;}
.y268{bottom:579.533915pt;}
.y1f8{bottom:580.573333pt;}
.y129{bottom:580.733333pt;}
.y230{bottom:584.093333pt;}
.y87{bottom:584.733333pt;}
.y2c5{bottom:588.573333pt;}
.ydd{bottom:589.213333pt;}
.y158{bottom:589.413333pt;}
.ycb{bottom:592.253333pt;}
.y17e{bottom:592.773333pt;}
.y267{bottom:592.788016pt;}
.yfc{bottom:593.053333pt;}
.y21f{bottom:593.533333pt;}
.y128{bottom:593.693333pt;}
.y2cc{bottom:594.213333pt;}
.ya7{bottom:598.333333pt;}
.y2e3{bottom:598.373333pt;}
.y1f7{bottom:599.933333pt;}
.y22f{bottom:603.453333pt;}
.y2f6{bottom:604.453333pt;}
.ydc{bottom:604.573333pt;}
.y7a{bottom:604.733333pt;}
.y266{bottom:606.033719pt;}
.y127{bottom:606.493333pt;}
.y1d{bottom:609.053333pt;}
.y2c9{bottom:611.293333pt;}
.yca{bottom:611.613333pt;}
.y86{bottom:612.253333pt;}
.yfb{bottom:612.413333pt;}
.y21e{bottom:615.133333pt;}
.y17d{bottom:615.653333pt;}
.y157{bottom:617.413333pt;}
.y265{bottom:619.262622pt;}
.y1f6{bottom:619.293333pt;}
.y126{bottom:619.453333pt;}
.ydb{bottom:619.933333pt;}
.y2a4{bottom:622.493333pt;}
.y1d5{bottom:622.813333pt;}
.y2cb{bottom:623.333333pt;}
.y79{bottom:624.093333pt;}
.ya6{bottom:625.693333pt;}
.yfa{bottom:631.933333pt;}
.y125{bottom:632.413333pt;}
.y264{bottom:632.516724pt;}
.y2c7{bottom:634.013333pt;}
.y150{bottom:634.853333pt;}
.y21d{bottom:635.773333pt;}
.y1c{bottom:637.213333pt;}
.y47{bottom:637.853333pt;}
.y85{bottom:639.613333pt;}
.y1d4{bottom:639.773333pt;}
.y174{bottom:640.933333pt;}
.ya5{bottom:645.053333pt;}
.y2a3{bottom:645.213333pt;}
.y123{bottom:645.373333pt;}
.y263{bottom:645.762426pt;}
.y1f5{bottom:647.293333pt;}
.y22e{bottom:650.333333pt;}
.yda{bottom:651.133333pt;}
.yf9{bottom:651.293333pt;}
.y78{bottom:651.613333pt;}
.y21c{bottom:656.413333pt;}
.y1d3{bottom:656.573333pt;}
.y2c4{bottom:656.893333pt;}
.y119{bottom:658.333333pt;}
.y262{bottom:658.991330pt;}
.yc9{bottom:660.893333pt;}
.ya4{bottom:664.413333pt;}
.yd9{bottom:666.493333pt;}
.y84{bottom:666.973333pt;}
.y2a2{bottom:667.933333pt;}
.y43{bottom:668.733333pt;}
.y22d{bottom:669.693333pt;}
.y1b{bottom:670.333333pt;}
.yf8{bottom:670.653333pt;}
.y260{bottom:672.245432pt;}
.y1d2{bottom:673.533333pt;}
.y1f4{bottom:673.853333pt;}
.y21b{bottom:677.053333pt;}
.y77{bottom:678.973333pt;}
.y2c3{bottom:679.613333pt;}
.y14f{bottom:683.973333pt;}
.y25e{bottom:685.474336pt;}
.y173{bottom:686.533333pt;}
.y1a{bottom:687.933333pt;}
.y22c{bottom:689.053333pt;}
.yf7{bottom:690.013333pt;}
.y1d1{bottom:690.333333pt;}
.y2a1{bottom:690.493333pt;}
.ya3{bottom:693.373333pt;}
.y83{bottom:694.333333pt;}
.yd8{bottom:697.853333pt;}
.y25d{bottom:698.720038pt;}
.y14e{bottom:703.333333pt;}
.y19{bottom:705.693333pt;}
.y76{bottom:706.333333pt;}
.y1d0{bottom:707.133333pt;}
.y22b{bottom:708.413333pt;}
.y2c2{bottom:708.573333pt;}
.y288{bottom:708.733333pt;}
.yf6{bottom:709.373333pt;}
.y25c{bottom:711.974140pt;}
.yc8{bottom:713.053333pt;}
.yd7{bottom:713.213333pt;}
.y1f3{bottom:717.853333pt;}
.y21a{bottom:718.493333pt;}
.y287{bottom:721.213333pt;}
.y82{bottom:721.853333pt;}
.y298{bottom:721.924857pt;}
.y14d{bottom:722.853333pt;}
.y18{bottom:723.293333pt;}
.y1cf{bottom:724.093333pt;}
.ya2{bottom:724.573333pt;}
.y25b{bottom:725.203043pt;}
.yd6{bottom:728.573333pt;}
.yf5{bottom:728.893333pt;}
.y42{bottom:733.373333pt;}
.y75{bottom:733.693333pt;}
.y22a{bottom:735.933333pt;}
.y1f2{bottom:737.373333pt;}
.y297{bottom:737.574022pt;}
.y2c1{bottom:737.693333pt;}
.y25a{bottom:738.448746pt;}
.y219{bottom:739.133333pt;}
.yc7{bottom:740.413333pt;}
.y17{bottom:740.893333pt;}
.y14c{bottom:742.240000pt;}
.y118{bottom:743.613333pt;}
.y14b{bottom:746.813333pt;}
.yf4{bottom:748.253333pt;}
.y81{bottom:749.213333pt;}
.y258{bottom:751.677650pt;}
.ya1{bottom:751.933333pt;}
.y296{bottom:753.248703pt;}
.y229{bottom:755.293333pt;}
.y1f1{bottom:756.733333pt;}
.y1ce{bottom:757.853333pt;}
.y2a0{bottom:758.493333pt;}
.yc6{bottom:759.773333pt;}
.yd5{bottom:759.933333pt;}
.y41{bottom:760.253333pt;}
.y305{bottom:760.893333pt;}
.y74{bottom:761.053333pt;}
.y16{bottom:761.693333pt;}
.y256{bottom:764.931751pt;}
.y2c0{bottom:766.813333pt;}
.yf3{bottom:767.613333pt;}
.y295{bottom:768.897390pt;}
.y14a{bottom:771.613333pt;}
.y117{bottom:772.253333pt;}
.y1cd{bottom:774.693333pt;}
.yd4{bottom:775.333333pt;}
.y1f0{bottom:776.133333pt;}
.y80{bottom:776.613333pt;}
.y241{bottom:778.177454pt;}
.y252{bottom:778.177455pt;}
.y251{bottom:778.177456pt;}
.y250{bottom:778.177458pt;}
.y24e{bottom:778.177459pt;}
.y24d{bottom:778.177460pt;}
.y24c{bottom:778.177461pt;}
.y24b{bottom:778.177462pt;}
.y247{bottom:778.177463pt;}
.y246{bottom:778.177465pt;}
.y245{bottom:778.177466pt;}
.y243{bottom:778.177467pt;}
.ya0{bottom:779.653333pt;}
.y218{bottom:780.453333pt;}
.y29f{bottom:781.253333pt;}
.y304{bottom:781.573333pt;}
.y294{bottom:784.546077pt;}
.y40{bottom:785.893333pt;}
.yf2{bottom:787.013333pt;}
.yc5{bottom:787.173333pt;}
.y73{bottom:788.613333pt;}
.y15{bottom:789.893333pt;}
.y2bf{bottom:790.533333pt;}
.y228{bottom:794.053333pt;}
.y149{bottom:796.613333pt;}
.y9f{bottom:798.373333pt;}
.y116{bottom:799.653333pt;}
.y303{bottom:799.973333pt;}
.y292{bottom:800.220758pt;}
.y217{bottom:801.093333pt;}
.y1cc{bottom:802.053333pt;}
.y3f{bottom:803.493333pt;}
.y7f{bottom:803.973333pt;}
.yf1{bottom:806.373333pt;}
.y14{bottom:808.933333pt;}
.y6f{bottom:812.613333pt;}
.y148{bottom:813.413333pt;}
.yc4{bottom:814.693333pt;}
.y290{bottom:815.869444pt;}
.y72{bottom:815.973333pt;}
.y9e{bottom:817.093333pt;}
.y302{bottom:818.373333pt;}
.y115{bottom:819.013333pt;}
.y3e{bottom:821.093333pt;}
.y227{bottom:821.413333pt;}
.y216{bottom:821.893333pt;}
.yd3{bottom:823.173333pt;}
.yf0{bottom:825.893333pt;}
.y29d{bottom:826.533333pt;}
.y1cb{bottom:826.693333pt;}
.y147{bottom:830.213333pt;}
.y7e{bottom:831.333333pt;}
.y289{bottom:831.512932pt;}
.y1ef{bottom:832.613333pt;}
.yc3{bottom:834.053333pt;}
.y6d{bottom:835.173333pt;}
.y9d{bottom:835.813333pt;}
.y2bd{bottom:836.133333pt;}
.y301{bottom:836.773333pt;}
.y114{bottom:838.373333pt;}
.y13{bottom:839.653333pt;}
.y226{bottom:840.933333pt;}
.y1ca{bottom:842.053333pt;}
.y214{bottom:842.533333pt;}
.y71{bottom:843.333333pt;}
.yef{bottom:845.253333pt;}
.y3d{bottom:846.853333pt;}
.y146{bottom:847.173333pt;}
.y29c{bottom:849.253333pt;}
.y1ee{bottom:852.133333pt;}
.yc2{bottom:853.413333pt;}
.y9c{bottom:854.533333pt;}
.y1c9{bottom:857.413333pt;}
.y113{bottom:857.893333pt;}
.y7d{bottom:858.853333pt;}
.y2bc{bottom:859.013333pt;}
.y212{bottom:863.173333pt;}
.y3c{bottom:864.453333pt;}
.yee{bottom:864.613333pt;}
.y225{bottom:868.293333pt;}
.y12{bottom:871.173333pt;}
.y1ed{bottom:871.493333pt;}
.y145{bottom:871.973333pt;}
.y1c8{bottom:872.773333pt;}
.y9b{bottom:873.253333pt;}
.yd2{bottom:875.333333pt;}
.y112{bottom:877.253333pt;}
.y3b{bottom:882.053333pt;}
.yed{bottom:883.973333pt;}
.y7c{bottom:886.213333pt;}
.y300{bottom:887.173333pt;}
.y2bb{bottom:887.813333pt;}
.y286{bottom:889.093333pt;}
.y1ec{bottom:890.853333pt;}
.y9a{bottom:891.973333pt;}
.yd1{bottom:894.693333pt;}
.y224{bottom:896.133333pt;}
.y70{bottom:896.293333pt;}
.y111{bottom:896.613333pt;}
.y144{bottom:896.933333pt;}
.y7{bottom:898.533333pt;}
.y3a{bottom:899.653333pt;}
.yc1{bottom:902.693333pt;}
.yec{bottom:903.493333pt;}
.y6b{bottom:908.133333pt;}
.y99{bottom:910.693333pt;}
.y285{bottom:916.933333pt;}
.y7b{bottom:917.253333pt;}
.y1eb{bottom:918.693333pt;}
.y1c7{bottom:920.613333pt;}
.y23e{bottom:923.013333pt;}
.y110{bottom:923.973333pt;}
.y200{bottom:924.293333pt;}
.y143{bottom:924.773333pt;}
.y39{bottom:925.253333pt;}
.y6{bottom:926.053333pt;}
.y98{bottom:926.533333pt;}
.y29a{bottom:931.013333pt;}
.y2ff{bottom:939.493333pt;}
.y284{bottom:946.213333pt;}
.y223{bottom:946.693333pt;}
.y1ea{bottom:947.493333pt;}
.yd0{bottom:947.813333pt;}
.y38{bottom:951.493333pt;}
.y1ff{bottom:952.133333pt;}
.yc0{bottom:952.613333pt;}
.y5{bottom:953.413333pt;}
.y1e9{bottom:963.653333pt;}
.y2e{bottom:967.653333pt;}
.y63{bottom:969.733333pt;}
.y4{bottom:980.773333pt;}
.y3{bottom:1008.133333pt;}
.y1e8{bottom:1012.800000pt;}
.y2d{bottom:1015.360000pt;}
.y2c{bottom:1032.160000pt;}
.y2{bottom:1035.680000pt;}
.y2b{bottom:1051.680000pt;}
.y1{bottom:1063.040000pt;}
.y2a{bottom:1071.040000pt;}
.h5d{height:11.969025pt;}
.h5c{height:11.990023pt;}
.h27{height:12.160000pt;}
.h2a{height:12.160133pt;}
.h28{height:12.192000pt;}
.h26{height:12.320000pt;}
.h29{height:12.320133pt;}
.h58{height:12.598974pt;}
.h57{height:12.619972pt;}
.h5a{height:13.249920pt;}
.h45{height:14.462216pt;}
.h4a{height:14.488041pt;}
.h49{height:14.591343pt;}
.h62{height:15.024819pt;}
.h33{height:19.680000pt;}
.h4e{height:19.986667pt;}
.h50{height:20.000000pt;}
.h52{height:20.032000pt;}
.h1e{height:20.832000pt;}
.h10{height:20.960000pt;}
.h47{height:21.047689pt;}
.h4{height:21.472000pt;}
.h7{height:21.625312pt;}
.h30{height:21.920000pt;}
.h32{height:21.952000pt;}
.h31{height:22.080000pt;}
.h2f{height:22.112000pt;}
.h67{height:22.240000pt;}
.h5b{height:25.218927pt;}
.h2e{height:25.280000pt;}
.h1c{height:25.440000pt;}
.h4b{height:25.600000pt;}
.h2d{height:25.760000pt;}
.h4d{height:25.792000pt;}
.h5{height:27.024375pt;}
.h5e{height:28.646630pt;}
.h56{height:28.908088pt;}
.h54{height:28.908698pt;}
.h12{height:30.240000pt;}
.h59{height:32.581343pt;}
.h6c{height:32.640000pt;}
.h6d{height:32.672000pt;}
.h3{height:33.375000pt;}
.h60{height:33.943532pt;}
.h61{height:34.047263pt;}
.h43{height:34.606017pt;}
.h1a{height:38.441250pt;}
.h6b{height:38.715000pt;}
.h34{height:40.640000pt;}
.h1d{height:40.800000pt;}
.h40{height:41.966252pt;}
.h68{height:42.084375pt;}
.h3d{height:42.224506pt;}
.h13{height:42.240000pt;}
.h3c{height:42.482760pt;}
.h3a{height:42.611887pt;}
.he{height:42.866250pt;}
.h64{height:43.215000pt;}
.h3f{height:43.670727pt;}
.h42{height:44.032283pt;}
.h41{height:44.161410pt;}
.h15{height:44.722500pt;}
.h65{height:44.800000pt;}
.h69{height:44.960000pt;}
.h23{height:46.454062pt;}
.h6a{height:46.592000pt;}
.h3b{height:47.263482pt;}
.h11{height:50.062500pt;}
.h46{height:50.692408pt;}
.h5f{height:51.365124pt;}
.h3e{height:51.373350pt;}
.h4c{height:52.032000pt;}
.h63{height:52.160000pt;}
.h37{height:52.580485pt;}
.h39{height:52.709612pt;}
.h1b{height:54.240000pt;}
.h51{height:54.390938pt;}
.h9{height:55.402500pt;}
.h14{height:58.240000pt;}
.h1f{height:58.400000pt;}
.h24{height:58.563750pt;}
.h38{height:59.310117pt;}
.h4f{height:60.288750pt;}
.h2{height:61.410000pt;}
.hd{height:66.750000pt;}
.h44{height:67.420902pt;}
.h48{height:68.326556pt;}
.h20{height:72.320000pt;}
.hc{height:72.515625pt;}
.hf{height:73.472000pt;}
.h8{height:74.477812pt;}
.h6{height:76.671562pt;}
.h36{height:77.060026pt;}
.h21{height:78.097500pt;}
.h25{height:78.400000pt;}
.ha{height:88.777500pt;}
.h66{height:90.400000pt;}
.hb{height:98.296875pt;}
.h22{height:100.125000pt;}
.h18{height:102.560000pt;}
.h55{height:124.208908pt;}
.h53{height:124.208925pt;}
.h16{height:124.672000pt;}
.h19{height:203.226667pt;}
.h17{height:306.426667pt;}
.h35{height:519.316226pt;}
.h2b{height:793.760000pt;}
.h2c{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:2.400000pt;}
.w45{width:13.228626pt;}
.w44{width:13.249624pt;}
.w4b{width:16.921984pt;}
.w4a{width:16.948058pt;}
.w42{width:28.160000pt;}
.w29{width:38.123237pt;}
.w2a{width:38.149083pt;}
.w2b{width:38.252466pt;}
.w28{width:38.252468pt;}
.w16{width:46.592000pt;}
.w40{width:47.840000pt;}
.w1c{width:56.160000pt;}
.w56{width:57.760000pt;}
.w57{width:58.080000pt;}
.w27{width:58.438398pt;}
.w54{width:60.192000pt;}
.w55{width:62.720000pt;}
.w8{width:64.480000pt;}
.w53{width:74.240000pt;}
.w1b{width:74.400000pt;}
.w11{width:76.352000pt;}
.wd{width:76.672000pt;}
.w5{width:76.800000pt;}
.w10{width:77.440000pt;}
.w26{width:78.469252pt;}
.wf{width:82.752000pt;}
.w3b{width:83.232000pt;}
.w3f{width:83.872000pt;}
.w21{width:84.155430pt;}
.w24{width:84.284661pt;}
.w3c{width:84.320000pt;}
.w23{width:84.413892pt;}
.w39{width:84.512000pt;}
.w25{width:84.801586pt;}
.w37{width:84.960000pt;}
.w35{width:85.152000pt;}
.w22{width:86.223130pt;}
.w3d{width:89.632000pt;}
.w2d{width:90.880000pt;}
.w2e{width:90.912000pt;}
.w32{width:91.040000pt;}
.w33{width:91.072000pt;}
.w31{width:91.232000pt;}
.w2f{width:91.360000pt;}
.w30{width:91.392000pt;}
.wa{width:93.600000pt;}
.w20{width:105.737058pt;}
.w58{width:109.472000pt;}
.w50{width:122.432000pt;}
.w9{width:122.912000pt;}
.we{width:131.392000pt;}
.w3{width:139.866667pt;}
.w7{width:140.000000pt;}
.w51{width:140.986667pt;}
.w4c{width:150.306667pt;}
.w17{width:150.400000pt;}
.w52{width:168.986667pt;}
.w3a{width:170.586667pt;}
.w3e{width:171.226667pt;}
.w38{width:178.266667pt;}
.w4d{width:178.906667pt;}
.w1a{width:197.466667pt;}
.w19{width:197.626667pt;}
.w41{width:207.106667pt;}
.w1e{width:235.520000pt;}
.w36{width:255.266667pt;}
.w34{width:264.666667pt;}
.w18{width:282.586667pt;}
.w4f{width:282.626667pt;}
.w49{width:305.982842pt;}
.w4e{width:330.146667pt;}
.w2c{width:380.000000pt;}
.w6{width:391.680000pt;}
.wb{width:392.733333pt;}
.wc{width:437.600000pt;}
.w59{width:456.546667pt;}
.w15{width:536.093333pt;}
.w1d{width:536.160000pt;}
.w1f{width:555.177701pt;}
.w48{width:600.285576pt;}
.w47{width:614.144135pt;}
.w46{width:641.903248pt;}
.w43{width:641.903250pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w14{width:1122.559983pt;}
.w12{width:1122.560000pt;}
.w13{width:1122.666667pt;}
.x30{left:-9.600012pt;}
.x0{left:0.000000pt;}
.xa8{left:1.259869pt;}
.x67{left:4.135403pt;}
.x42{left:5.920000pt;}
.x1d{left:6.880000pt;}
.xba{left:8.480000pt;}
.xe{left:9.600000pt;}
.x26{left:10.746667pt;}
.xbd{left:11.680000pt;}
.x13{left:12.640000pt;}
.x23{left:13.946667pt;}
.x3d{left:15.520000pt;}
.x3{left:17.600000pt;}
.x2d{left:19.226667pt;}
.x1e{left:20.160000pt;}
.x2a{left:21.946667pt;}
.x3e{left:22.880000pt;}
.x43{left:24.640000pt;}
.x1c{left:25.600000pt;}
.x17{left:27.040000pt;}
.x15{left:28.480000pt;}
.x62{left:29.460431pt;}
.x11{left:30.426667pt;}
.x33{left:31.359988pt;}
.x83{left:32.320000pt;}
.x45{left:33.280000pt;}
.x84{left:34.240000pt;}
.x19{left:35.200000pt;}
.x46{left:36.320000pt;}
.x29{left:37.626667pt;}
.x50{left:38.560000pt;}
.x16{left:39.680000pt;}
.x44{left:41.280000pt;}
.x32{left:42.786667pt;}
.x34{left:43.680000pt;}
.x56{left:45.280000pt;}
.x36{left:47.039988pt;}
.x55{left:48.480000pt;}
.x58{left:50.106667pt;}
.x5f{left:51.040000pt;}
.x59{left:52.000000pt;}
.x5a{left:53.120000pt;}
.x28{left:54.106667pt;}
.x57{left:55.520000pt;}
.x5e{left:57.280000pt;}
.x53{left:58.554667pt;}
.x22{left:59.866667pt;}
.x5d{left:61.280000pt;}
.x54{left:62.400000pt;}
.x20{left:63.706667pt;}
.x4d{left:65.600000pt;}
.x4{left:66.906667pt;}
.xcd{left:67.840000pt;}
.x52{left:69.754667pt;}
.x21{left:71.546667pt;}
.x25{left:73.306667pt;}
.xab{left:74.623602pt;}
.x1{left:75.551988pt;}
.x87{left:76.826667pt;}
.x88{left:77.760000pt;}
.xd3{left:79.360000pt;}
.x85{left:82.400000pt;}
.x81{left:85.280000pt;}
.xbb{left:87.360000pt;}
.x7f{left:88.954667pt;}
.xcf{left:91.520000pt;}
.x27{left:92.826667pt;}
.x47{left:94.431988pt;}
.xb1{left:95.952081pt;}
.xb2{left:97.829404pt;}
.xa{left:99.551988pt;}
.x37{left:104.031988pt;}
.x7e{left:106.280000pt;}
.xbe{left:107.520000pt;}
.x7b{left:111.514667pt;}
.x39{left:113.311988pt;}
.xc1{left:114.434667pt;}
.x35{left:116.186667pt;}
.x2c{left:118.746667pt;}
.x10{left:119.680000pt;}
.xbf{left:121.160000pt;}
.x73{left:122.751988pt;}
.xcc{left:126.240000pt;}
.xb9{left:127.720000pt;}
.xce{left:129.920000pt;}
.x38{left:137.306655pt;}
.xd2{left:138.240000pt;}
.x14{left:141.466667pt;}
.xb8{left:142.760000pt;}
.xb7{left:145.800000pt;}
.x2b{left:148.186667pt;}
.xd4{left:149.600000pt;}
.xbc{left:151.400000pt;}
.x1b{left:161.026667pt;}
.x86{left:164.040000pt;}
.xb6{left:165.000000pt;}
.x74{left:168.026667pt;}
.x3b{left:172.986667pt;}
.xcb{left:174.720000pt;}
.x2e{left:180.706667pt;}
.x24{left:185.026667pt;}
.x1f{left:194.626667pt;}
.xd1{left:196.840000pt;}
.x8a{left:199.906667pt;}
.xd0{left:210.920000pt;}
.xb4{left:217.506667pt;}
.xa9{left:237.666655pt;}
.xc0{left:239.906655pt;}
.x4c{left:249.786650pt;}
.xc4{left:253.666655pt;}
.x80{left:254.946667pt;}
.xaa{left:256.159108pt;}
.x8d{left:257.234799pt;}
.x75{left:259.586667pt;}
.x18{left:265.026667pt;}
.x70{left:266.169235pt;}
.x6a{left:267.073845pt;}
.x6d{left:268.883085pt;}
.x8e{left:271.110156pt;}
.x31{left:272.960000pt;}
.x63{left:282.581602pt;}
.x8f{left:284.993912pt;}
.x6{left:290.626655pt;}
.xc7{left:293.626667pt;}
.x90{left:298.852471pt;}
.x3c{left:305.026667pt;}
.x3a{left:308.866655pt;}
.x91{left:312.727828pt;}
.x92{left:326.603185pt;}
.x71{left:331.973804pt;}
.x7c{left:340.226667pt;}
.x61{left:347.998485pt;}
.x76{left:350.946667pt;}
.x93{left:354.345500pt;}
.x1a{left:359.266667pt;}
.xc5{left:363.106650pt;}
.xb3{left:367.133322pt;}
.x94{left:368.204059pt;}
.x95{left:382.087815pt;}
.x3f{left:388.413333pt;}
.x6c{left:393.354372pt;}
.x6e{left:396.068232pt;}
.xb5{left:397.213333pt;}
.x5{left:400.733322pt;}
.xc2{left:406.493333pt;}
.x66{left:408.862129pt;}
.x65{left:410.671369pt;}
.x5c{left:413.760000pt;}
.xc8{left:419.266667pt;}
.x96{left:423.705487pt;}
.x7d{left:425.373333pt;}
.x97{left:437.580844pt;}
.x77{left:442.973333pt;}
.x98{left:451.439403pt;}
.x7a{left:453.693322pt;}
.xac{left:456.824111pt;}
.x99{left:465.323159pt;}
.x40{left:466.493333pt;}
.x89{left:473.533333pt;}
.x9a{left:479.198516pt;}
.x69{left:490.439390pt;}
.xad{left:491.950916pt;}
.x9b{left:493.057075pt;}
.x9c{left:506.940832pt;}
.xae{left:509.493460pt;}
.xb{left:512.933322pt;}
.x9d{left:520.816189pt;}
.xaf{left:527.067292pt;}
.xc3{left:529.733333pt;}
.x78{left:534.853333pt;}
.xc9{left:537.826667pt;}
.xc6{left:542.306650pt;}
.x41{left:543.493333pt;}
.xb0{left:544.620265pt;}
.x4e{left:547.746667pt;}
.x9e{left:562.417063pt;}
.x9f{left:576.292420pt;}
.x4b{left:580.480000pt;}
.x72{left:582.990543pt;}
.xa0{left:590.176176pt;}
.x82{left:596.933333pt;}
.x8{left:600.453322pt;}
.xa1{left:604.034735pt;}
.xa2{left:617.910092pt;}
.x68{left:619.433776pt;}
.x12{left:624.640000pt;}
.x79{left:626.533333pt;}
.x2{left:630.213333pt;}
.xa3{left:631.793848pt;}
.x4a{left:637.280000pt;}
.xa4{left:645.652407pt;}
.xca{left:648.573333pt;}
.xa5{left:659.527764pt;}
.xa6{left:673.403121pt;}
.xf{left:681.440000pt;}
.xa7{left:687.261680pt;}
.x6f{left:699.977192pt;}
.x6b{left:701.011040pt;}
.x64{left:716.389566pt;}
.x9{left:718.239988pt;}
.x7{left:727.679988pt;}
.x8c{left:742.079988pt;}
.x4f{left:746.333333pt;}
.x8b{left:765.600000pt;}
.xd{left:791.360000pt;}
.x48{left:803.933317pt;}
.x60{left:820.413317pt;}
.x51{left:944.773333pt;}
.x5b{left:1009.253317pt;}
.xc{left:1094.146655pt;}
.x2f{left:1124.253322pt;}
.x49{left:1184.159983pt;}
}




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