
    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_1181cf04f9fe005088a44be3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_2f2f3d31d3f2280108162f69.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_884e389b61510daecdf0457f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a1bcb3441e67a418701bb79c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6e76c42dd192a8c94bba1fe8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.808105;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_928676e4f1f8a5a32a494f95.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-36.011880px;}
.v3{vertical-align:-34.569000px;}
.v5{vertical-align:-1.442880px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:34.569000px;}
.v4{vertical-align:69.138000px;}
.ls7b{letter-spacing:-3.150288px;}
.ls73{letter-spacing:-1.707408px;}
.ls6e{letter-spacing:-0.991980px;}
.ls69{letter-spacing:-0.565128px;}
.ls70{letter-spacing:-0.505008px;}
.ls86{letter-spacing:-0.312624px;}
.ls62{letter-spacing:-0.300600px;}
.ls35{letter-spacing:-0.294588px;}
.ls23{letter-spacing:-0.276552px;}
.ls5a{letter-spacing:-0.270540px;}
.ls68{letter-spacing:-0.264528px;}
.ls6a{letter-spacing:-0.258516px;}
.ls4f{letter-spacing:-0.246492px;}
.ls7f{letter-spacing:-0.240480px;}
.ls74{letter-spacing:-0.234468px;}
.ls67{letter-spacing:-0.228456px;}
.ls57{letter-spacing:-0.222444px;}
.ls53{letter-spacing:-0.216432px;}
.ls6c{letter-spacing:-0.210420px;}
.ls77{letter-spacing:-0.204408px;}
.ls66{letter-spacing:-0.198396px;}
.ls80{letter-spacing:-0.192384px;}
.ls37{letter-spacing:-0.186372px;}
.ls4a{letter-spacing:-0.180360px;}
.ls56{letter-spacing:-0.174348px;}
.ls2b{letter-spacing:-0.168336px;}
.ls4e{letter-spacing:-0.162324px;}
.ls5e{letter-spacing:-0.156312px;}
.ls45{letter-spacing:-0.150300px;}
.ls31{letter-spacing:-0.144288px;}
.ls51{letter-spacing:-0.138276px;}
.ls2a{letter-spacing:-0.132264px;}
.ls27{letter-spacing:-0.126252px;}
.ls48{letter-spacing:-0.120240px;}
.ls28{letter-spacing:-0.114228px;}
.ls4d{letter-spacing:-0.108216px;}
.ls44{letter-spacing:-0.102204px;}
.ls40{letter-spacing:-0.096192px;}
.ls54{letter-spacing:-0.090180px;}
.ls25{letter-spacing:-0.084168px;}
.ls36{letter-spacing:-0.078156px;}
.ls4b{letter-spacing:-0.072144px;}
.ls42{letter-spacing:-0.066132px;}
.ls1f{letter-spacing:-0.064800px;}
.ls49{letter-spacing:-0.060120px;}
.ls50{letter-spacing:-0.054108px;}
.ls46{letter-spacing:-0.048096px;}
.ls47{letter-spacing:-0.042084px;}
.ls2f{letter-spacing:-0.036072px;}
.ls34{letter-spacing:-0.030060px;}
.ls52{letter-spacing:-0.024048px;}
.ls1b{letter-spacing:-0.021600px;}
.ls43{letter-spacing:-0.018036px;}
.ls2d{letter-spacing:-0.012024px;}
.ls22{letter-spacing:-0.010800px;}
.ls41{letter-spacing:-0.006012px;}
.ls1e{letter-spacing:-0.005400px;}
.ls1c{letter-spacing:0.000000px;}
.lse{letter-spacing:0.005400px;}
.ls38{letter-spacing:0.006012px;}
.ls2{letter-spacing:0.009576px;}
.ls6{letter-spacing:0.010800px;}
.ls19{letter-spacing:0.012024px;}
.ls7{letter-spacing:0.016200px;}
.ls3e{letter-spacing:0.018036px;}
.ls5{letter-spacing:0.021600px;}
.ls39{letter-spacing:0.024048px;}
.lsd{letter-spacing:0.027000px;}
.ls3f{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.032400px;}
.ls5d{letter-spacing:0.036072px;}
.ls10{letter-spacing:0.037800px;}
.ls0{letter-spacing:0.041940px;}
.ls5c{letter-spacing:0.042084px;}
.ls11{letter-spacing:0.043200px;}
.ls6f{letter-spacing:0.048096px;}
.lsf{letter-spacing:0.048600px;}
.ls1{letter-spacing:0.050328px;}
.ls13{letter-spacing:0.054000px;}
.ls55{letter-spacing:0.054108px;}
.ls14{letter-spacing:0.059400px;}
.ls61{letter-spacing:0.060120px;}
.ls12{letter-spacing:0.064800px;}
.ls16{letter-spacing:0.066132px;}
.lsb{letter-spacing:0.070200px;}
.ls3c{letter-spacing:0.072144px;}
.ls8{letter-spacing:0.075600px;}
.ls3d{letter-spacing:0.078156px;}
.ls30{letter-spacing:0.084168px;}
.ls20{letter-spacing:0.086400px;}
.ls18{letter-spacing:0.090180px;}
.ls21{letter-spacing:0.091800px;}
.ls29{letter-spacing:0.096192px;}
.lsc{letter-spacing:0.097200px;}
.ls2e{letter-spacing:0.102204px;}
.lsa{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.108216px;}
.ls2c{letter-spacing:0.114228px;}
.ls24{letter-spacing:0.120240px;}
.ls4{letter-spacing:0.124488px;}
.ls4c{letter-spacing:0.126252px;}
.ls26{letter-spacing:0.132264px;}
.ls3{letter-spacing:0.134064px;}
.ls65{letter-spacing:0.138276px;}
.ls15{letter-spacing:0.144288px;}
.ls17{letter-spacing:0.150300px;}
.ls59{letter-spacing:0.156312px;}
.ls63{letter-spacing:0.162324px;}
.ls3a{letter-spacing:0.168336px;}
.ls5b{letter-spacing:0.174348px;}
.ls5f{letter-spacing:0.180360px;}
.ls33{letter-spacing:0.186372px;}
.ls1a{letter-spacing:0.282492px;}
.ls7e{letter-spacing:0.541080px;}
.ls76{letter-spacing:0.811620px;}
.ls72{letter-spacing:1.172340px;}
.ls7c{letter-spacing:1.527048px;}
.ls75{letter-spacing:2.224440px;}
.ls58{letter-spacing:2.248488px;}
.ls71{letter-spacing:2.609208px;}
.ls60{letter-spacing:2.969928px;}
.ls3b{letter-spacing:4.388760px;}
.ls7d{letter-spacing:6.571116px;}
.ls79{letter-spacing:6.931836px;}
.ls1d{letter-spacing:8.100000px;}
.ls81{letter-spacing:9.090144px;}
.ls64{letter-spacing:12.691332px;}
.ls82{letter-spacing:13.767480px;}
.ls87{letter-spacing:17.729388px;}
.ls85{letter-spacing:17.735400px;}
.ls7a{letter-spacing:19.172268px;}
.ls84{letter-spacing:36.192240px;}
.ls83{letter-spacing:66.432600px;}
.ls6d{letter-spacing:527.492880px;}
.ls6b{letter-spacing:548.715240px;}
.ls78{letter-spacing:663.929208px;}
.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;}
}
.wsb{word-spacing:-16.500000px;}
.ws32{word-spacing:-15.210360px;}
.ws20{word-spacing:-15.198336px;}
.ws51{word-spacing:-15.192324px;}
.ws0{word-spacing:-15.180300px;}
.ws1f{word-spacing:-15.174288px;}
.ws4c{word-spacing:-15.168276px;}
.ws1e{word-spacing:-15.162264px;}
.ws42{word-spacing:-15.156252px;}
.ws1c{word-spacing:-15.138216px;}
.ws2c{word-spacing:-15.120180px;}
.ws33{word-spacing:-15.114168px;}
.ws43{word-spacing:-15.102144px;}
.ws2e{word-spacing:-15.096132px;}
.ws4d{word-spacing:-15.078096px;}
.ws38{word-spacing:-15.072084px;}
.ws13{word-spacing:-15.060060px;}
.ws4e{word-spacing:-15.048036px;}
.ws3c{word-spacing:-15.036012px;}
.ws18{word-spacing:-15.030000px;}
.ws52{word-spacing:-15.017976px;}
.ws1d{word-spacing:-15.005952px;}
.ws11{word-spacing:-14.993928px;}
.ws39{word-spacing:-14.987916px;}
.ws1a{word-spacing:-14.981904px;}
.ws3d{word-spacing:-14.963868px;}
.ws14{word-spacing:-14.939820px;}
.ws3a{word-spacing:-14.921784px;}
.ws17{word-spacing:-14.903748px;}
.ws25{word-spacing:-14.897736px;}
.ws12{word-spacing:-14.891724px;}
.ws8{word-spacing:-14.867676px;}
.wsa{word-spacing:-14.849640px;}
.ws36{word-spacing:-14.801544px;}
.ws9{word-spacing:-14.783508px;}
.ws31{word-spacing:-14.524992px;}
.ws37{word-spacing:-3.384756px;}
.ws53{word-spacing:-2.879748px;}
.ws56{word-spacing:-2.513016px;}
.ws34{word-spacing:-2.272536px;}
.ws23{word-spacing:-2.194380px;}
.ws5c{word-spacing:-1.689372px;}
.ws35{word-spacing:-1.593180px;}
.ws29{word-spacing:-1.490976px;}
.ws5{word-spacing:-1.112220px;}
.ws15{word-spacing:-0.955908px;}
.ws5b{word-spacing:-0.733464px;}
.ws5e{word-spacing:-0.432864px;}
.ws22{word-spacing:-0.366732px;}
.ws5a{word-spacing:-0.360720px;}
.ws3f{word-spacing:-0.276552px;}
.ws54{word-spacing:-0.258516px;}
.ws2f{word-spacing:-0.246492px;}
.ws3e{word-spacing:-0.042084px;}
.ws50{word-spacing:-0.006012px;}
.ws1{word-spacing:0.000000px;}
.ws44{word-spacing:0.084168px;}
.ws30{word-spacing:0.096192px;}
.ws41{word-spacing:0.108216px;}
.ws2a{word-spacing:0.186372px;}
.ws7{word-spacing:0.189000px;}
.ws24{word-spacing:0.192384px;}
.ws40{word-spacing:0.210420px;}
.ws58{word-spacing:0.216432px;}
.ws57{word-spacing:0.222444px;}
.ws6{word-spacing:2.020032px;}
.ws10{word-spacing:2.380752px;}
.ws16{word-spacing:4.058100px;}
.ws55{word-spacing:4.088160px;}
.ws45{word-spacing:7.076124px;}
.wsd{word-spacing:7.647264px;}
.ws3b{word-spacing:7.665300px;}
.ws46{word-spacing:7.749468px;}
.wsf{word-spacing:8.302572px;}
.ws4a{word-spacing:9.066096px;}
.ws49{word-spacing:9.192348px;}
.ws59{word-spacing:9.721404px;}
.ws47{word-spacing:9.739440px;}
.ws4{word-spacing:9.849600px;}
.ws2{word-spacing:10.233000px;}
.ws3{word-spacing:10.249200px;}
.wsc{word-spacing:10.587132px;}
.ws1b{word-spacing:11.146248px;}
.ws48{word-spacing:11.332620px;}
.ws19{word-spacing:12.781512px;}
.wse{word-spacing:16.328592px;}
.ws4b{word-spacing:17.476884px;}
.ws5d{word-spacing:17.915760px;}
.ws4f{word-spacing:19.989900px;}
.ws27{word-spacing:106.923420px;}
.ws2d{word-spacing:211.838832px;}
.ws26{word-spacing:313.351452px;}
.ws2b{word-spacing:352.820232px;}
.ws21{word-spacing:593.498628px;}
.ws28{word-spacing:662.275908px;}
._37{margin-left:-664.818984px;}
._36{margin-left:-663.772896px;}
._40{margin-left:-19.787724px;}
._3f{margin-left:-18.779256px;}
._46{margin-left:-17.569296px;}
._45{margin-left:-14.452632px;}
._1c{margin-left:-12.885480px;}
._1d{margin-left:-11.741112px;}
._44{margin-left:-10.468620px;}
._6{margin-left:-8.256600px;}
._7{margin-left:-7.219800px;}
._3e{margin-left:-6.137352px;}
._12{margin-left:-4.763196px;}
._a{margin-left:-3.693600px;}
._4{margin-left:-2.302776px;}
._1{margin-left:-1.062936px;}
._0{width:1.199484px;}
._10{width:2.236032px;}
._e{width:3.335472px;}
._d{width:4.368600px;}
._b{width:6.021000px;}
._5{width:7.695000px;}
._f{width:9.239400px;}
._9{width:10.983600px;}
._13{width:12.243528px;}
._14{width:13.248900px;}
._2{width:14.893200px;}
._3{width:16.070400px;}
._8{width:17.986536px;}
._c{width:19.267200px;}
._15{width:21.090096px;}
._16{width:22.722264px;}
._11{width:23.772000px;}
._43{width:24.925752px;}
._18{width:28.538964px;}
._17{width:29.663208px;}
._1b{width:30.745368px;}
._19{width:33.270408px;}
._1a{width:34.706088px;}
._2e{width:73.634976px;}
._47{width:75.648996px;}
._3c{width:77.548788px;}
._24{width:95.049720px;}
._34{width:110.469312px;}
._35{width:125.186688px;}
._20{width:127.243980px;}
._25{width:142.304040px;}
._32{width:143.770968px;}
._2d{width:148.424256px;}
._3a{width:165.142440px;}
._3b{width:222.576264px;}
._39{width:229.817628px;}
._28{width:255.768516px;}
._29{width:275.127156px;}
._1e{width:290.337516px;}
._1f{width:296.523864px;}
._2a{width:297.672156px;}
._22{width:349.429464px;}
._33{width:488.949948px;}
._38{width:490.705452px;}
._30{width:546.743304px;}
._42{width:552.328452px;}
._21{width:615.980412px;}
._41{width:618.905340px;}
._23{width:635.294052px;}
._3d{width:642.141720px;}
._27{width:650.318040px;}
._2b{width:684.697572px;}
._2c{width:704.011212px;}
._26{width:781.758396px;}
._2f{width:850.535676px;}
._31{width:865.842228px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.000000px;}
.fs1{font-size:47.880000px;}
.fs4{font-size:53.999400px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs7{font-size:65.880000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y103{bottom:3.240450px;}
.y109{bottom:3.240600px;}
.y32{bottom:41.404800px;}
.y30{bottom:55.905300px;}
.y31{bottom:68.799300px;}
.y2f{bottom:69.345300px;}
.y1dd{bottom:122.513280px;}
.y284{bottom:123.057330px;}
.y125{bottom:123.248310px;}
.ya6{bottom:123.899190px;}
.y19d{bottom:129.821010px;}
.yf4{bottom:132.075330px;}
.y23e{bottom:132.075510px;}
.y276{bottom:132.212670px;}
.ycf{bottom:134.329830px;}
.y2d{bottom:138.045180px;}
.y221{bottom:138.930450px;}
.y1dc{bottom:139.797780px;}
.y283{bottom:140.341830px;}
.y124{bottom:140.532810px;}
.ya5{bottom:141.093510px;}
.y1a7{bottom:142.596330px;}
.y28b{bottom:144.850830px;}
.y179{bottom:145.586130px;}
.y19c{bottom:147.105510px;}
.yf3{bottom:149.359830px;}
.y23d{bottom:149.360010px;}
.y275{bottom:149.497170px;}
.yce{bottom:151.614330px;}
.y154{bottom:152.584140px;}
.y21c{bottom:153.690000px;}
.y88{bottom:153.869010px;}
.y2c{bottom:155.239500px;}
.y220{bottom:156.915420px;}
.y21d{bottom:156.930450px;}
.y1db{bottom:156.992100px;}
.y282{bottom:157.626330px;}
.y123{bottom:157.727130px;}
.ya4{bottom:158.378010px;}
.y1a6{bottom:159.880830px;}
.y28a{bottom:162.135330px;}
.y178{bottom:162.780450px;}
.y19b{bottom:164.390010px;}
.yf2{bottom:166.644330px;}
.y23c{bottom:166.644510px;}
.y274{bottom:166.781670px;}
.ycd{bottom:168.898830px;}
.y153{bottom:169.868640px;}
.y87{bottom:171.153510px;}
.y2b{bottom:172.524000px;}
.y21f{bottom:174.109740px;}
.y21b{bottom:174.115950px;}
.y1da{bottom:174.276600px;}
.y281{bottom:174.820650px;}
.y122{bottom:175.011630px;}
.ya3{bottom:175.662510px;}
.y1a5{bottom:177.075150px;}
.y170{bottom:177.540000px;}
.y289{bottom:179.329650px;}
.y177{bottom:180.750390px;}
.y16f{bottom:180.754350px;}
.y171{bottom:180.780450px;}
.y19a{bottom:181.584330px;}
.yf1{bottom:183.838650px;}
.y23b{bottom:183.838830px;}
.y273{bottom:183.975990px;}
.ycc{bottom:186.093150px;}
.y152{bottom:187.062960px;}
.y86{bottom:188.347830px;}
.y16b{bottom:189.411630px;}
.y2a{bottom:189.718320px;}
.y21e{bottom:191.394240px;}
.y21a{bottom:191.400450px;}
.y1d9{bottom:191.561100px;}
.y1d3{bottom:191.576130px;}
.y280{bottom:192.105150px;}
.ya2{bottom:192.856830px;}
.y5e{bottom:194.359650px;}
.y288{bottom:196.614150px;}
.y176{bottom:198.034890px;}
.y16e{bottom:198.038850px;}
.y173{bottom:198.049920px;}
.y199{bottom:198.868830px;}
.yf0{bottom:201.123150px;}
.y23a{bottom:201.123330px;}
.y272{bottom:201.260490px;}
.ycb{bottom:203.377650px;}
.y151{bottom:204.347460px;}
.y85{bottom:205.632330px;}
.y219{bottom:206.160000px;}
.y16a{bottom:206.696130px;}
.y29{bottom:207.002820px;}
.y1d8{bottom:208.755420px;}
.y1d2{bottom:208.770450px;}
.y27f{bottom:209.389650px;}
.y218{bottom:209.400450px;}
.ya1{bottom:210.141330px;}
.y5d{bottom:211.644150px;}
.y287{bottom:213.898650px;}
.y175{bottom:215.319390px;}
.y16d{bottom:215.323350px;}
.y172{bottom:215.334420px;}
.y198{bottom:216.153330px;}
.yef{bottom:218.407650px;}
.y239{bottom:218.407830px;}
.y271{bottom:218.544990px;}
.yca{bottom:220.662150px;}
.y150{bottom:221.631960px;}
.y121{bottom:222.265950px;}
.y84{bottom:222.916830px;}
.y169{bottom:223.890450px;}
.y28{bottom:224.287320px;}
.y1d7{bottom:226.039920px;}
.y27e{bottom:226.583970px;}
.y217{bottom:227.400450px;}
.y5c{bottom:228.838470px;}
.y286{bottom:231.092970px;}
.y174{bottom:232.513710px;}
.y16c{bottom:232.517670px;}
.y197{bottom:233.347650px;}
.yee{bottom:235.601970px;}
.y238{bottom:235.602150px;}
.y270{bottom:235.739310px;}
.yc9{bottom:237.856470px;}
.y120{bottom:239.550450px;}
.y83{bottom:240.111150px;}
.y27{bottom:241.481640px;}
.y215{bottom:242.160000px;}
.ya0{bottom:242.365650px;}
.y1d6{bottom:243.324420px;}
.y27d{bottom:243.868470px;}
.y214{bottom:245.376600px;}
.y211{bottom:245.391630px;}
.y216{bottom:245.400450px;}
.y5b{bottom:246.122970px;}
.y285{bottom:248.377470px;}
.y168{bottom:250.528200px;}
.y196{bottom:250.632150px;}
.yed{bottom:252.886470px;}
.y237{bottom:252.886650px;}
.y26f{bottom:253.023810px;}
.yc8{bottom:255.140970px;}
.y82{bottom:257.395650px;}
.y26{bottom:258.766140px;}
.y167{bottom:259.170450px;}
.y1d5{bottom:260.518740px;}
.y27c{bottom:261.152970px;}
.y213{bottom:262.570920px;}
.y210{bottom:262.585950px;}
.y5a{bottom:263.407470px;}
.y195{bottom:267.916650px;}
.y14f{bottom:268.796100px;}
.yec{bottom:270.170970px;}
.y236{bottom:270.171150px;}
.y26e{bottom:270.218130px;}
.yc7{bottom:272.425470px;}
.y11f{bottom:272.490450px;}
.y11a{bottom:273.647280px;}
.y81{bottom:274.680150px;}
.y25{bottom:276.050640px;}
.y1d4{bottom:277.803240px;}
.y27b{bottom:278.347290px;}
.y212{bottom:279.855420px;}
.y20f{bottom:279.870450px;}
.y59{bottom:280.601790px;}
.y166{bottom:282.570000px;}
.y194{bottom:285.110970px;}
.y165{bottom:285.810450px;}
.y14e{bottom:286.080600px;}
.y235{bottom:287.365470px;}
.y26d{bottom:287.502630px;}
.yc6{bottom:289.619790px;}
.y11e{bottom:290.490450px;}
.y119{bottom:290.841600px;}
.y80{bottom:291.874470px;}
.y24{bottom:293.244960px;}
.y27a{bottom:295.631790px;}
.y1cf{bottom:295.791780px;}
.y20e{bottom:297.846750px;}
.y20b{bottom:297.861780px;}
.y58{bottom:297.886290px;}
.y115{bottom:299.851350px;}
.yeb{bottom:302.395290px;}
.y193{bottom:302.395470px;}
.y164{bottom:303.806100px;}
.y1d1{bottom:304.434030px;}
.y234{bottom:304.649970px;}
.y26c{bottom:304.787130px;}
.yc5{bottom:306.904290px;}
.y118{bottom:308.126100px;}
.y11d{bottom:308.490450px;}
.y7f{bottom:309.158970px;}
.y23{bottom:310.529460px;}
.y279{bottom:312.916290px;}
.y1ce{bottom:313.076280px;}
.y20d{bottom:315.131250px;}
.y20a{bottom:315.146280px;}
.y57{bottom:315.170790px;}
.y148{bottom:315.870000px;}
.y114{bottom:317.135850px;}
.y147{bottom:319.092810px;}
.y149{bottom:319.110600px;}
.yea{bottom:319.679790px;}
.y192{bottom:319.679970px;}
.y163{bottom:321.090600px;}
.y1d0{bottom:321.628350px;}
.y233{bottom:321.934470px;}
.y26b{bottom:321.981450px;}
.y11b{bottom:323.250000px;}
.yc4{bottom:324.188790px;}
.y117{bottom:325.410600px;}
.y7e{bottom:326.443470px;}
.y11c{bottom:326.490450px;}
.y14d{bottom:326.580450px;}
.y22{bottom:327.813960px;}
.y278{bottom:330.110610px;}
.y1cd{bottom:330.270600px;}
.y20c{bottom:332.325570px;}
.y209{bottom:332.340600px;}
.y56{bottom:332.365110px;}
.y1ac{bottom:332.455290px;}
.y161{bottom:335.850000px;}
.y146{bottom:336.287130px;}
.ye9{bottom:336.874110px;}
.y191{bottom:336.874290px;}
.y162{bottom:339.090600px;}
.y26a{bottom:339.265950px;}
.y116{bottom:341.250000px;}
.yc3{bottom:341.383110px;}
.y7d{bottom:343.637790px;}
.y113{bottom:344.490450px;}
.y111{bottom:344.845950px;}
.y21{bottom:345.008280px;}
.y1ca{bottom:345.030000px;}
.y277{bottom:347.395110px;}
.y160{bottom:347.640450px;}
.y1c9{bottom:348.265950px;}
.y1cb{bottom:348.270600px;}
.y55{bottom:349.649610px;}
.y208{bottom:350.316420px;}
.y205{bottom:350.331450px;}
.y14c{bottom:352.050450px;}
.y145{bottom:353.571630px;}
.y232{bottom:354.068610px;}
.ye8{bottom:354.158610px;}
.y190{bottom:354.158790px;}
.y269{bottom:356.550450px;}
.yc2{bottom:358.667610px;}
.y7c{bottom:360.922290px;}
.y110{bottom:362.130450px;}
.y20{bottom:362.292780px;}
.y112{bottom:362.491170px;}
.y1ab{bottom:364.679610px;}
.y1c7{bottom:365.550450px;}
.y1cc{bottom:365.555100px;}
.y54{bottom:366.934110px;}
.y207{bottom:367.600920px;}
.y204{bottom:367.615950px;}
.y14b{bottom:370.050450px;}
.y144{bottom:370.856130px;}
.ye7{bottom:371.443110px;}
.y18f{bottom:371.443290px;}
.y15d{bottom:374.271780px;}
.y267{bottom:374.537130px;}
.yc1{bottom:375.861930px;}
.y9f{bottom:378.116610px;}
.y1f{bottom:379.577280px;}
.y10f{bottom:380.488200px;}
.y1aa{bottom:381.873930px;}
.y1c8{bottom:382.834950px;}
.y15f{bottom:382.914030px;}
.y53{bottom:384.128430px;}
.y14a{bottom:384.810000px;}
.y206{bottom:384.885420px;}
.y203{bottom:384.900450px;}
.y231{bottom:386.383110px;}
.y143{bottom:388.050450px;}
.y141{bottom:388.495410px;}
.ye6{bottom:388.637430px;}
.y18e{bottom:388.637610px;}
.y10e{bottom:389.130450px;}
.y15c{bottom:391.556280px;}
.y266{bottom:391.731450px;}
.y7b{bottom:393.056430px;}
.yc0{bottom:393.146430px;}
.y9e{bottom:395.401110px;}
.y1e{bottom:396.771600px;}
.y1c5{bottom:397.590000px;}
.y1a9{bottom:399.158430px;}
.y15e{bottom:400.198530px;}
.y268{bottom:400.373700px;}
.y1c4{bottom:400.800030px;}
.y52{bottom:401.412930px;}
.y142{bottom:402.810000px;}
.y202{bottom:402.900450px;}
.y230{bottom:403.667610px;}
.ye5{bottom:405.921930px;}
.y18d{bottom:405.922110px;}
.y140{bottom:406.050450px;}
.y13e{bottom:406.496280px;}
.y15b{bottom:408.750600px;}
.y265{bottom:409.015950px;}
.ybf{bottom:410.430930px;}
.y108{bottom:412.530000px;}
.y9d{bottom:412.685610px;}
.y1d{bottom:414.056100px;}
.y10a{bottom:415.770600px;}
.y1a8{bottom:416.442930px;}
.y1fe{bottom:417.660000px;}
.y1c3{bottom:417.994350px;}
.y1a4{bottom:418.697430px;}
.y22f{bottom:420.861930px;}
.y1ff{bottom:420.900450px;}
.ye4{bottom:423.116250px;}
.y18c{bottom:423.116430px;}
.y10d{bottom:423.240450px;}
.y15a{bottom:423.510000px;}
.y13d{bottom:423.690600px;}
.y13f{bottom:424.051320px;}
.y101{bottom:424.397130px;}
.y7a{bottom:425.370930px;}
.y264{bottom:426.300450px;}
.y159{bottom:426.750600px;}
.ybe{bottom:427.715430px;}
.y9c{bottom:429.879930px;}
.y1c{bottom:431.340600px;}
.y107{bottom:432.947130px;}
.y51{bottom:433.637250px;}
.y1c2{bottom:435.278850px;}
.y1a3{bottom:435.891750px;}
.y201{bottom:438.079740px;}
.y1fd{bottom:438.085950px;}
.y22e{bottom:438.146430px;}
.ye3{bottom:440.400750px;}
.y18b{bottom:440.400930px;}
.y261{bottom:441.060000px;}
.y158{bottom:441.510450px;}
.y100{bottom:441.591450px;}
.y13c{bottom:442.045950px;}
.y79{bottom:442.655430px;}
.y1bd{bottom:443.936130px;}
.y260{bottom:444.296130px;}
.y262{bottom:444.300450px;}
.y9b{bottom:447.164430px;}
.y10c{bottom:448.710450px;}
.y106{bottom:450.231630px;}
.y50{bottom:450.921750px;}
.y1c1{bottom:452.473170px;}
.y1c6{bottom:452.490450px;}
.y1a2{bottom:453.176250px;}
.y200{bottom:455.364240px;}
.y1fc{bottom:455.370450px;}
.y22d{bottom:455.430930px;}
.ye2{bottom:457.685250px;}
.y18a{bottom:457.685430px;}
.yff{bottom:458.875950px;}
.y13b{bottom:459.330450px;}
.ybd{bottom:459.939750px;}
.y78{bottom:459.939930px;}
.y1bc{bottom:461.130450px;}
.y25f{bottom:461.490450px;}
.y263{bottom:461.494770px;}
.y1b{bottom:463.200450px;}
.y10b{bottom:466.710450px;}
.y105{bottom:467.516130px;}
.y4f{bottom:468.116070px;}
.y1c0{bottom:469.757670px;}
.y1a1{bottom:470.370570px;}
.y22c{bottom:472.625250px;}
.y1fb{bottom:473.365950px;}
.y132{bottom:474.090000px;}
.ye1{bottom:474.879570px;}
.y189{bottom:474.879750px;}
.yfe{bottom:476.160450px;}
.y25e{bottom:476.250000px;}
.ybc{bottom:477.134070px;}
.y77{bottom:477.134250px;}
.y131{bottom:477.312630px;}
.y133{bottom:477.330450px;}
.y1a{bottom:478.765950px;}
.y9a{bottom:479.388750px;}
.y25d{bottom:479.490450px;}
.y102{bottom:481.470000px;}
.y104{bottom:484.710450px;}
.y13a{bottom:484.800450px;}
.y4e{bottom:485.400570px;}
.y137{bottom:485.954880px;}
.y1bf{bottom:487.042170px;}
.y1a0{bottom:487.655070px;}
.y22b{bottom:489.909750px;}
.y1fa{bottom:490.650450px;}
.ye0{bottom:492.164070px;}
.y188{bottom:492.164250px;}
.y19{bottom:494.250450px;}
.ybb{bottom:494.418570px;}
.y76{bottom:494.418750px;}
.y130{bottom:494.597130px;}
.y25c{bottom:497.485950px;}
.y4d{bottom:502.685070px;}
.yfd{bottom:502.710450px;}
.y136{bottom:503.149200px;}
.yfb{bottom:503.156130px;}
.y1be{bottom:504.236490px;}
.y19f{bottom:504.939570px;}
.y1f6{bottom:505.410000px;}
.y22a{bottom:507.194250px;}
.y1f5{bottom:508.641630px;}
.y1f7{bottom:508.650450px;}
.ydf{bottom:509.448570px;}
.y187{bottom:509.448750px;}
.y18{bottom:509.815950px;}
.y139{bottom:510.360450px;}
.yba{bottom:511.703070px;}
.y75{bottom:511.703250px;}
.y12f{bottom:511.791450px;}
.y25b{bottom:514.770450px;}
.y1f9{bottom:517.202520px;}
.y1b4{bottom:519.000000px;}
.y4c{bottom:519.879390px;}
.yfa{bottom:520.350450px;}
.y135{bottom:520.433700px;}
.yfc{bottom:520.711170px;}
.y1bb{bottom:522.210390px;}
.y19e{bottom:522.224070px;}
.y1b5{bottom:522.240450px;}
.y229{bottom:524.388570px;}
.y17{bottom:525.300450px;}
.y1f4{bottom:525.835950px;}
.yde{bottom:526.642890px;}
.y186{bottom:526.643070px;}
.y138{bottom:528.360450px;}
.yb9{bottom:528.897390px;}
.y74{bottom:528.897570px;}
.y12e{bottom:529.075950px;}
.y25a{bottom:529.530000px;}
.y259{bottom:532.770450px;}
.y1f8{bottom:534.487020px;}
.y4b{bottom:537.163890px;}
.yf9{bottom:538.708200px;}
.y1ba{bottom:539.494890px;}
.y1b3{bottom:539.498670px;}
.y16{bottom:540.865950px;}
.y228{bottom:541.673070px;}
.y134{bottom:543.120000px;}
.y1f3{bottom:543.120450px;}
.ydd{bottom:543.927390px;}
.y185{bottom:543.927570px;}
.yb8{bottom:546.181890px;}
.y73{bottom:546.182070px;}
.y12d{bottom:546.360450px;}
.yf8{bottom:547.350450px;}
.y258{bottom:547.530000px;}
.y257{bottom:550.770450px;}
.y4a{bottom:554.448390px;}
.y15{bottom:556.350450px;}
.y1b9{bottom:556.779390px;}
.y1b2{bottom:556.783170px;}
.y227{bottom:558.957570px;}
.y1f2{bottom:561.120450px;}
.ydc{bottom:561.211890px;}
.y184{bottom:561.212070px;}
.yb7{bottom:563.466390px;}
.y72{bottom:563.466570px;}
.y12c{bottom:564.360450px;}
.y12a{bottom:564.716130px;}
.y1ae{bottom:565.440450px;}
.y252{bottom:565.530000px;}
.y256{bottom:568.755420px;}
.y251{bottom:568.761630px;}
.y253{bottom:568.770450px;}
.y49{bottom:571.642710px;}
.y14{bottom:571.915950px;}
.y1b8{bottom:573.973710px;}
.y1b1{bottom:573.977490px;}
.yf7{bottom:573.990450px;}
.y1f0{bottom:575.880000px;}
.y226{bottom:576.151890px;}
.ydb{bottom:578.406210px;}
.y183{bottom:578.406390px;}
.y1ed{bottom:579.111630px;}
.y1f1{bottom:579.120450px;}
.yb6{bottom:580.660710px;}
.y71{bottom:580.660890px;}
.y129{bottom:581.910450px;}
.y12b{bottom:582.361350px;}
.y255{bottom:586.039920px;}
.y250{bottom:586.046130px;}
.y13{bottom:587.400450px;}
.yf6{bottom:588.750450px;}
.y48{bottom:588.927210px;}
.y1b7{bottom:591.258210px;}
.y1b0{bottom:591.261990px;}
.y225{bottom:593.436390px;}
.yda{bottom:595.690710px;}
.y182{bottom:595.690890px;}
.y1ef{bottom:596.381100px;}
.y1ec{bottom:596.396130px;}
.yb5{bottom:597.945210px;}
.y70{bottom:597.945390px;}
.y128{bottom:600.360450px;}
.y12{bottom:602.965950px;}
.y254{bottom:603.234240px;}
.y24f{bottom:603.240450px;}
.y47{bottom:606.211710px;}
.y1b6{bottom:608.542710px;}
.y1af{bottom:608.546490px;}
.y224{bottom:610.720890px;}
.yd9{bottom:612.975210px;}
.y181{bottom:612.975390px;}
.y1ee{bottom:613.575420px;}
.y1eb{bottom:613.590450px;}
.yb4{bottom:615.229710px;}
.y99{bottom:615.229890px;}
.y127{bottom:618.360450px;}
.y11{bottom:618.450450px;}
.y24e{bottom:621.231630px;}
.y1ad{bottom:623.310000px;}
.y46{bottom:623.406030px;}
.y157{bottom:626.550450px;}
.y223{bottom:627.915210px;}
.yd8{bottom:630.169530px;}
.y6f{bottom:630.169710px;}
.y1ea{bottom:631.585950px;}
.yb3{bottom:632.424030px;}
.y98{bottom:632.424210px;}
.y126{bottom:633.120450px;}
.y10{bottom:634.015950px;}
.y24d{bottom:638.516130px;}
.y45{bottom:640.690530px;}
.y156{bottom:644.478090px;}
.y222{bottom:645.199710px;}
.y180{bottom:647.454210px;}
.y1e9{bottom:648.870450px;}
.yf{bottom:649.500450px;}
.yb2{bottom:649.708530px;}
.y97{bottom:649.708710px;}
.y24c{bottom:655.710450px;}
.y44{bottom:657.975030px;}
.yd7{bottom:662.393850px;}
.y6e{bottom:662.484210px;}
.y17f{bottom:664.738710px;}
.ye{bottom:665.065950px;}
.y1e8{bottom:666.846600px;}
.y1e5{bottom:666.861630px;}
.y24a{bottom:670.470000px;}
.y249{bottom:673.686420px;}
.y246{bottom:673.701450px;}
.y24b{bottom:673.710450px;}
.y43{bottom:675.169350px;}
.y155{bottom:677.423850px;}
.y6d{bottom:679.678530px;}
.yd{bottom:680.550450px;}
.yb1{bottom:681.932850px;}
.y96{bottom:681.933030px;}
.y1e7{bottom:684.040920px;}
.y1e4{bottom:684.055950px;}
.y248{bottom:690.970920px;}
.y245{bottom:690.985950px;}
.y42{bottom:692.453850px;}
.yd6{bottom:694.708350px;}
.yc{bottom:696.115950px;}
.y6c{bottom:696.963030px;}
.y95{bottom:699.217530px;}
.y1e6{bottom:701.325420px;}
.y1e3{bottom:701.340450px;}
.y247{bottom:708.255420px;}
.y244{bottom:708.270450px;}
.y41{bottom:709.738350px;}
.yb{bottom:711.600450px;}
.yd5{bottom:711.992850px;}
.yb0{bottom:714.247350px;}
.y6b{bottom:714.247530px;}
.y1e2{bottom:716.100000px;}
.y94{bottom:716.502030px;}
.y1e1{bottom:719.340450px;}
.y243{bottom:723.030000px;}
.y242{bottom:726.270450px;}
.y40{bottom:726.932670px;}
.ya{bottom:727.165950px;}
.yd4{bottom:729.187170px;}
.yaf{bottom:731.441670px;}
.y6a{bottom:731.441850px;}
.y93{bottom:733.696350px;}
.y1e0{bottom:734.100450px;}
.y241{bottom:741.030450px;}
.y9{bottom:742.650450px;}
.y3f{bottom:744.217170px;}
.yd3{bottom:746.471670px;}
.yae{bottom:748.726170px;}
.y69{bottom:748.726350px;}
.y92{bottom:750.980850px;}
.y8{bottom:758.215950px;}
.y3e{bottom:761.501670px;}
.yd2{bottom:763.756170px;}
.yad{bottom:765.920490px;}
.y68{bottom:765.920670px;}
.y17e{bottom:768.175170px;}
.y7{bottom:773.700450px;}
.y3d{bottom:778.695990px;}
.yd1{bottom:780.950490px;}
.y91{bottom:783.114990px;}
.yac{bottom:783.204990px;}
.y67{bottom:783.205170px;}
.y17d{bottom:785.459670px;}
.y6{bottom:789.265950px;}
.y3c{bottom:795.980490px;}
.yd0{bottom:798.234990px;}
.yab{bottom:800.489490px;}
.y66{bottom:800.489670px;}
.y17c{bottom:802.744170px;}
.y5{bottom:804.750450px;}
.y3b{bottom:813.174810px;}
.y90{bottom:815.429490px;}
.yaa{bottom:817.683810px;}
.y65{bottom:817.683990px;}
.y17b{bottom:819.938490px;}
.y3a{bottom:830.459310px;}
.y8f{bottom:832.713990px;}
.ya9{bottom:834.968310px;}
.y64{bottom:834.968490px;}
.y4{bottom:834.994950px;}
.y17a{bottom:837.222990px;}
.y39{bottom:847.743810px;}
.y3{bottom:848.760450px;}
.y8e{bottom:849.998490px;}
.ya8{bottom:852.252810px;}
.y63{bottom:852.252990px;}
.y38{bottom:864.938130px;}
.y8d{bottom:867.192810px;}
.y62{bottom:869.447310px;}
.y2{bottom:879.454950px;}
.y37{bottom:882.222630px;}
.ya7{bottom:884.386950px;}
.y8c{bottom:884.477310px;}
.y1df{bottom:885.210450px;}
.y61{bottom:886.731810px;}
.y36{bottom:899.507130px;}
.y240{bottom:900.240450px;}
.y8b{bottom:901.761810px;}
.y1de{bottom:903.204690px;}
.y1{bottom:903.570450px;}
.y60{bottom:904.016310px;}
.y35{bottom:916.701450px;}
.y23f{bottom:918.234690px;}
.y8a{bottom:918.956130px;}
.y34{bottom:933.985950px;}
.y5f{bottom:936.150450px;}
.yf5{bottom:950.460450px;}
.y89{bottom:951.180450px;}
.y33{bottom:951.270450px;}
.y2e{bottom:1018.668450px;}
.hc{height:16.740000px;}
.h8{height:29.162109px;}
.h9{height:40.745391px;}
.h2{height:42.011895px;}
.ha{height:43.909277px;}
.h7{height:45.826172px;}
.h3{height:47.381836px;}
.h4{height:47.513672px;}
.h5{height:52.751777px;}
.h6{height:52.898555px;}
.h1{height:73.599785px;}
.hb{height:75.314391px;}
.hf{height:86.960057px;}
.hd{height:87.320777px;}
.he{height:109.883391px;}
.h10{height:121.889777px;}
.h0{height:1080.000000px;}
.w9{width:6.210000px;}
.w2{width:11.070000px;}
.w1d{width:20.790000px;}
.w1b{width:29.160000px;}
.wb{width:48.330000px;}
.w10{width:49.140000px;}
.w3{width:51.660000px;}
.wd{width:52.560000px;}
.w15{width:53.280000px;}
.w5{width:53.550000px;}
.w8{width:54.990000px;}
.w18{width:55.440000px;}
.w6{width:56.610000px;}
.w1a{width:58.410000px;}
.w13{width:60.390000px;}
.w1f{width:61.200000px;}
.wc{width:88.740000px;}
.w7{width:94.950000px;}
.wa{width:96.210000px;}
.w4{width:100.170000px;}
.w12{width:107.730000px;}
.w1c{width:112.410000px;}
.wf{width:114.210000px;}
.w1e{width:117.900000px;}
.w17{width:120.690000px;}
.w19{width:122.040000px;}
.we{width:124.650000px;}
.w11{width:138.780000px;}
.w16{width:170.370000px;}
.w20{width:185.760000px;}
.w14{width:191.250000px;}
.w1{width:756.750000px;}
.w0{width:756.850500px;}
.x0{left:0.000000px;}
.x63{left:9.179985px;}
.x2f{left:17.099985px;}
.x5a{left:25.019985px;}
.x39{left:29.159985px;}
.x22{left:32.489985px;}
.x4d{left:37.079985px;}
.x44{left:41.669985px;}
.x40{left:48.419985px;}
.x66{left:50.039985px;}
.x43{left:63.359985px;}
.x61{left:69.659985px;}
.x3b{left:76.229985px;}
.x45{left:78.749985px;}
.x4f{left:89.999985px;}
.x4b{left:93.599985px;}
.xd{left:100.133250px;}
.x6{left:102.110250px;}
.x54{left:106.559985px;}
.x5c{left:108.269985px;}
.x14{left:110.570250px;}
.x4{left:115.695930px;}
.x51{left:118.130250px;}
.x1{left:119.480250px;}
.x64{left:127.220250px;}
.xa{left:129.140550px;}
.xb{left:131.419050px;}
.x5b{left:139.730250px;}
.x33{left:148.460250px;}
.x23{left:150.620250px;}
.x2{left:153.053220px;}
.x4e{left:155.210250px;}
.x58{left:158.090250px;}
.xc{left:161.463720px;}
.x1d{left:176.538810px;}
.x56{left:179.683500px;}
.x62{left:184.370250px;}
.xe{left:201.203040px;}
.x13{left:202.820250px;}
.x50{left:208.130250px;}
.x2c{left:211.370250px;}
.x47{left:221.630250px;}
.x5e{left:223.880265px;}
.x5d{left:228.020250px;}
.x3d{left:237.440370px;}
.x5f{left:244.670250px;}
.x67{left:254.300250px;}
.x21{left:258.255030px;}
.x31{left:260.689890px;}
.x3e{left:261.728850px;}
.x2a{left:265.817010px;}
.x16{left:266.897280px;}
.x24{left:269.150250px;}
.x17{left:277.790250px;}
.x3f{left:280.310265px;}
.x42{left:287.870250px;}
.x34{left:289.035840px;}
.x48{left:290.557830px;}
.x68{left:294.794850px;}
.x3a{left:297.410250px;}
.x4a{left:305.330250px;}
.x35{left:309.020250px;}
.x3{left:310.280250px;}
.xf{left:312.620430px;}
.x7{left:314.330250px;}
.x53{left:318.290250px;}
.x11{left:324.050250px;}
.x1f{left:326.570250px;}
.x2e{left:331.160250px;}
.x10{left:333.857820px;}
.x2b{left:338.441970px;}
.x5{left:343.220250px;}
.x36{left:346.910265px;}
.x37{left:351.590265px;}
.x30{left:354.560250px;}
.x38{left:364.010250px;}
.x46{left:366.620250px;}
.x9{left:370.871550px;}
.x32{left:386.686380px;}
.x25{left:393.884220px;}
.x15{left:407.833590px;}
.x65{left:411.620250px;}
.x18{left:415.400250px;}
.x59{left:422.420250px;}
.x55{left:432.050250px;}
.x4c{left:444.920250px;}
.x52{left:457.070250px;}
.x41{left:477.680250px;}
.x1e{left:481.930650px;}
.x8{left:483.201600px;}
.x60{left:491.540265px;}
.x19{left:525.731880px;}
.x1a{left:530.600265px;}
.x26{left:534.286200px;}
.x1c{left:536.630250px;}
.x27{left:539.150265px;}
.x1b{left:541.670250px;}
.x29{left:545.180250px;}
.x28{left:550.220250px;}
.x49{left:614.570250px;}
.x3c{left:617.450250px;}
.x57{left:619.880250px;}
.x2d{left:637.160250px;}
.x20{left:641.030250px;}
.x12{left:649.760250px;}
@media print{
.v2{vertical-align:-32.010560pt;}
.v3{vertical-align:-30.728000pt;}
.v5{vertical-align:-1.282560pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.728000pt;}
.v4{vertical-align:61.456000pt;}
.ls7b{letter-spacing:-2.800256pt;}
.ls73{letter-spacing:-1.517696pt;}
.ls6e{letter-spacing:-0.881760pt;}
.ls69{letter-spacing:-0.502336pt;}
.ls70{letter-spacing:-0.448896pt;}
.ls86{letter-spacing:-0.277888pt;}
.ls62{letter-spacing:-0.267200pt;}
.ls35{letter-spacing:-0.261856pt;}
.ls23{letter-spacing:-0.245824pt;}
.ls5a{letter-spacing:-0.240480pt;}
.ls68{letter-spacing:-0.235136pt;}
.ls6a{letter-spacing:-0.229792pt;}
.ls4f{letter-spacing:-0.219104pt;}
.ls7f{letter-spacing:-0.213760pt;}
.ls74{letter-spacing:-0.208416pt;}
.ls67{letter-spacing:-0.203072pt;}
.ls57{letter-spacing:-0.197728pt;}
.ls53{letter-spacing:-0.192384pt;}
.ls6c{letter-spacing:-0.187040pt;}
.ls77{letter-spacing:-0.181696pt;}
.ls66{letter-spacing:-0.176352pt;}
.ls80{letter-spacing:-0.171008pt;}
.ls37{letter-spacing:-0.165664pt;}
.ls4a{letter-spacing:-0.160320pt;}
.ls56{letter-spacing:-0.154976pt;}
.ls2b{letter-spacing:-0.149632pt;}
.ls4e{letter-spacing:-0.144288pt;}
.ls5e{letter-spacing:-0.138944pt;}
.ls45{letter-spacing:-0.133600pt;}
.ls31{letter-spacing:-0.128256pt;}
.ls51{letter-spacing:-0.122912pt;}
.ls2a{letter-spacing:-0.117568pt;}
.ls27{letter-spacing:-0.112224pt;}
.ls48{letter-spacing:-0.106880pt;}
.ls28{letter-spacing:-0.101536pt;}
.ls4d{letter-spacing:-0.096192pt;}
.ls44{letter-spacing:-0.090848pt;}
.ls40{letter-spacing:-0.085504pt;}
.ls54{letter-spacing:-0.080160pt;}
.ls25{letter-spacing:-0.074816pt;}
.ls36{letter-spacing:-0.069472pt;}
.ls4b{letter-spacing:-0.064128pt;}
.ls42{letter-spacing:-0.058784pt;}
.ls1f{letter-spacing:-0.057600pt;}
.ls49{letter-spacing:-0.053440pt;}
.ls50{letter-spacing:-0.048096pt;}
.ls46{letter-spacing:-0.042752pt;}
.ls47{letter-spacing:-0.037408pt;}
.ls2f{letter-spacing:-0.032064pt;}
.ls34{letter-spacing:-0.026720pt;}
.ls52{letter-spacing:-0.021376pt;}
.ls1b{letter-spacing:-0.019200pt;}
.ls43{letter-spacing:-0.016032pt;}
.ls2d{letter-spacing:-0.010688pt;}
.ls22{letter-spacing:-0.009600pt;}
.ls41{letter-spacing:-0.005344pt;}
.ls1e{letter-spacing:-0.004800pt;}
.ls1c{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.004800pt;}
.ls38{letter-spacing:0.005344pt;}
.ls2{letter-spacing:0.008512pt;}
.ls6{letter-spacing:0.009600pt;}
.ls19{letter-spacing:0.010688pt;}
.ls7{letter-spacing:0.014400pt;}
.ls3e{letter-spacing:0.016032pt;}
.ls5{letter-spacing:0.019200pt;}
.ls39{letter-spacing:0.021376pt;}
.lsd{letter-spacing:0.024000pt;}
.ls3f{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.028800pt;}
.ls5d{letter-spacing:0.032064pt;}
.ls10{letter-spacing:0.033600pt;}
.ls0{letter-spacing:0.037280pt;}
.ls5c{letter-spacing:0.037408pt;}
.ls11{letter-spacing:0.038400pt;}
.ls6f{letter-spacing:0.042752pt;}
.lsf{letter-spacing:0.043200pt;}
.ls1{letter-spacing:0.044736pt;}
.ls13{letter-spacing:0.048000pt;}
.ls55{letter-spacing:0.048096pt;}
.ls14{letter-spacing:0.052800pt;}
.ls61{letter-spacing:0.053440pt;}
.ls12{letter-spacing:0.057600pt;}
.ls16{letter-spacing:0.058784pt;}
.lsb{letter-spacing:0.062400pt;}
.ls3c{letter-spacing:0.064128pt;}
.ls8{letter-spacing:0.067200pt;}
.ls3d{letter-spacing:0.069472pt;}
.ls30{letter-spacing:0.074816pt;}
.ls20{letter-spacing:0.076800pt;}
.ls18{letter-spacing:0.080160pt;}
.ls21{letter-spacing:0.081600pt;}
.ls29{letter-spacing:0.085504pt;}
.lsc{letter-spacing:0.086400pt;}
.ls2e{letter-spacing:0.090848pt;}
.lsa{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.096192pt;}
.ls2c{letter-spacing:0.101536pt;}
.ls24{letter-spacing:0.106880pt;}
.ls4{letter-spacing:0.110656pt;}
.ls4c{letter-spacing:0.112224pt;}
.ls26{letter-spacing:0.117568pt;}
.ls3{letter-spacing:0.119168pt;}
.ls65{letter-spacing:0.122912pt;}
.ls15{letter-spacing:0.128256pt;}
.ls17{letter-spacing:0.133600pt;}
.ls59{letter-spacing:0.138944pt;}
.ls63{letter-spacing:0.144288pt;}
.ls3a{letter-spacing:0.149632pt;}
.ls5b{letter-spacing:0.154976pt;}
.ls5f{letter-spacing:0.160320pt;}
.ls33{letter-spacing:0.165664pt;}
.ls1a{letter-spacing:0.251104pt;}
.ls7e{letter-spacing:0.480960pt;}
.ls76{letter-spacing:0.721440pt;}
.ls72{letter-spacing:1.042080pt;}
.ls7c{letter-spacing:1.357376pt;}
.ls75{letter-spacing:1.977280pt;}
.ls58{letter-spacing:1.998656pt;}
.ls71{letter-spacing:2.319296pt;}
.ls60{letter-spacing:2.639936pt;}
.ls3b{letter-spacing:3.901120pt;}
.ls7d{letter-spacing:5.840992pt;}
.ls79{letter-spacing:6.161632pt;}
.ls1d{letter-spacing:7.200000pt;}
.ls81{letter-spacing:8.080128pt;}
.ls64{letter-spacing:11.281184pt;}
.ls82{letter-spacing:12.237760pt;}
.ls87{letter-spacing:15.759456pt;}
.ls85{letter-spacing:15.764800pt;}
.ls7a{letter-spacing:17.042016pt;}
.ls84{letter-spacing:32.170880pt;}
.ls83{letter-spacing:59.051200pt;}
.ls6d{letter-spacing:468.882560pt;}
.ls6b{letter-spacing:487.746880pt;}
.ls78{letter-spacing:590.159296pt;}
.wsb{word-spacing:-14.666667pt;}
.ws32{word-spacing:-13.520320pt;}
.ws20{word-spacing:-13.509632pt;}
.ws51{word-spacing:-13.504288pt;}
.ws0{word-spacing:-13.493600pt;}
.ws1f{word-spacing:-13.488256pt;}
.ws4c{word-spacing:-13.482912pt;}
.ws1e{word-spacing:-13.477568pt;}
.ws42{word-spacing:-13.472224pt;}
.ws1c{word-spacing:-13.456192pt;}
.ws2c{word-spacing:-13.440160pt;}
.ws33{word-spacing:-13.434816pt;}
.ws43{word-spacing:-13.424128pt;}
.ws2e{word-spacing:-13.418784pt;}
.ws4d{word-spacing:-13.402752pt;}
.ws38{word-spacing:-13.397408pt;}
.ws13{word-spacing:-13.386720pt;}
.ws4e{word-spacing:-13.376032pt;}
.ws3c{word-spacing:-13.365344pt;}
.ws18{word-spacing:-13.360000pt;}
.ws52{word-spacing:-13.349312pt;}
.ws1d{word-spacing:-13.338624pt;}
.ws11{word-spacing:-13.327936pt;}
.ws39{word-spacing:-13.322592pt;}
.ws1a{word-spacing:-13.317248pt;}
.ws3d{word-spacing:-13.301216pt;}
.ws14{word-spacing:-13.279840pt;}
.ws3a{word-spacing:-13.263808pt;}
.ws17{word-spacing:-13.247776pt;}
.ws25{word-spacing:-13.242432pt;}
.ws12{word-spacing:-13.237088pt;}
.ws8{word-spacing:-13.215712pt;}
.wsa{word-spacing:-13.199680pt;}
.ws36{word-spacing:-13.156928pt;}
.ws9{word-spacing:-13.140896pt;}
.ws31{word-spacing:-12.911104pt;}
.ws37{word-spacing:-3.008672pt;}
.ws53{word-spacing:-2.559776pt;}
.ws56{word-spacing:-2.233792pt;}
.ws34{word-spacing:-2.020032pt;}
.ws23{word-spacing:-1.950560pt;}
.ws5c{word-spacing:-1.501664pt;}
.ws35{word-spacing:-1.416160pt;}
.ws29{word-spacing:-1.325312pt;}
.ws5{word-spacing:-0.988640pt;}
.ws15{word-spacing:-0.849696pt;}
.ws5b{word-spacing:-0.651968pt;}
.ws5e{word-spacing:-0.384768pt;}
.ws22{word-spacing:-0.325984pt;}
.ws5a{word-spacing:-0.320640pt;}
.ws3f{word-spacing:-0.245824pt;}
.ws54{word-spacing:-0.229792pt;}
.ws2f{word-spacing:-0.219104pt;}
.ws3e{word-spacing:-0.037408pt;}
.ws50{word-spacing:-0.005344pt;}
.ws1{word-spacing:0.000000pt;}
.ws44{word-spacing:0.074816pt;}
.ws30{word-spacing:0.085504pt;}
.ws41{word-spacing:0.096192pt;}
.ws2a{word-spacing:0.165664pt;}
.ws7{word-spacing:0.168000pt;}
.ws24{word-spacing:0.171008pt;}
.ws40{word-spacing:0.187040pt;}
.ws58{word-spacing:0.192384pt;}
.ws57{word-spacing:0.197728pt;}
.ws6{word-spacing:1.795584pt;}
.ws10{word-spacing:2.116224pt;}
.ws16{word-spacing:3.607200pt;}
.ws55{word-spacing:3.633920pt;}
.ws45{word-spacing:6.289888pt;}
.wsd{word-spacing:6.797568pt;}
.ws3b{word-spacing:6.813600pt;}
.ws46{word-spacing:6.888416pt;}
.wsf{word-spacing:7.380064pt;}
.ws4a{word-spacing:8.058752pt;}
.ws49{word-spacing:8.170976pt;}
.ws59{word-spacing:8.641248pt;}
.ws47{word-spacing:8.657280pt;}
.ws4{word-spacing:8.755200pt;}
.ws2{word-spacing:9.096000pt;}
.ws3{word-spacing:9.110400pt;}
.wsc{word-spacing:9.410784pt;}
.ws1b{word-spacing:9.907776pt;}
.ws48{word-spacing:10.073440pt;}
.ws19{word-spacing:11.361344pt;}
.wse{word-spacing:14.514304pt;}
.ws4b{word-spacing:15.535008pt;}
.ws5d{word-spacing:15.925120pt;}
.ws4f{word-spacing:17.768800pt;}
.ws27{word-spacing:95.043040pt;}
.ws2d{word-spacing:188.301184pt;}
.ws26{word-spacing:278.534624pt;}
.ws2b{word-spacing:313.617984pt;}
.ws21{word-spacing:527.554336pt;}
.ws28{word-spacing:588.689696pt;}
._37{margin-left:-590.950208pt;}
._36{margin-left:-590.020352pt;}
._40{margin-left:-17.589088pt;}
._3f{margin-left:-16.692672pt;}
._46{margin-left:-15.617152pt;}
._45{margin-left:-12.846784pt;}
._1c{margin-left:-11.453760pt;}
._1d{margin-left:-10.436544pt;}
._44{margin-left:-9.305440pt;}
._6{margin-left:-7.339200pt;}
._7{margin-left:-6.417600pt;}
._3e{margin-left:-5.455424pt;}
._12{margin-left:-4.233952pt;}
._a{margin-left:-3.283200pt;}
._4{margin-left:-2.046912pt;}
._1{margin-left:-0.944832pt;}
._0{width:1.066208pt;}
._10{width:1.987584pt;}
._e{width:2.964864pt;}
._d{width:3.883200pt;}
._b{width:5.352000pt;}
._5{width:6.840000pt;}
._f{width:8.212800pt;}
._9{width:9.763200pt;}
._13{width:10.883136pt;}
._14{width:11.776800pt;}
._2{width:13.238400pt;}
._3{width:14.284800pt;}
._8{width:15.988032pt;}
._c{width:17.126400pt;}
._15{width:18.746752pt;}
._16{width:20.197568pt;}
._11{width:21.130667pt;}
._43{width:22.156224pt;}
._18{width:25.367968pt;}
._17{width:26.367296pt;}
._1b{width:27.329216pt;}
._19{width:29.573696pt;}
._1a{width:30.849856pt;}
._2e{width:65.453312pt;}
._47{width:67.243552pt;}
._3c{width:68.932256pt;}
._24{width:84.488640pt;}
._34{width:98.194944pt;}
._35{width:111.277056pt;}
._20{width:113.105760pt;}
._25{width:126.492480pt;}
._32{width:127.796416pt;}
._2d{width:131.932672pt;}
._3a{width:146.793280pt;}
._3b{width:197.845568pt;}
._39{width:204.282336pt;}
._28{width:227.349792pt;}
._29{width:244.557472pt;}
._1e{width:258.077792pt;}
._1f{width:263.576768pt;}
._2a{width:264.597472pt;}
._22{width:310.603968pt;}
._33{width:434.622176pt;}
._38{width:436.182624pt;}
._30{width:485.994048pt;}
._42{width:490.958624pt;}
._21{width:547.538144pt;}
._41{width:550.138080pt;}
._23{width:564.705824pt;}
._3d{width:570.792640pt;}
._27{width:578.060480pt;}
._2b{width:608.620064pt;}
._2c{width:625.787744pt;}
._26{width:694.896352pt;}
._2f{width:756.031712pt;}
._31{width:769.637536pt;}
.fs6{font-size:37.333333pt;}
.fs1{font-size:42.560000pt;}
.fs4{font-size:47.999467pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs7{font-size:58.560000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:2.880400pt;}
.y109{bottom:2.880533pt;}
.y32{bottom:36.804267pt;}
.y30{bottom:49.693600pt;}
.y31{bottom:61.154933pt;}
.y2f{bottom:61.640267pt;}
.y1dd{bottom:108.900693pt;}
.y284{bottom:109.384293pt;}
.y125{bottom:109.554053pt;}
.ya6{bottom:110.132613pt;}
.y19d{bottom:115.396453pt;}
.yf4{bottom:117.400293pt;}
.y23e{bottom:117.400453pt;}
.y276{bottom:117.522373pt;}
.ycf{bottom:119.404293pt;}
.y2d{bottom:122.706827pt;}
.y221{bottom:123.493733pt;}
.y1dc{bottom:124.264693pt;}
.y283{bottom:124.748293pt;}
.y124{bottom:124.918053pt;}
.ya5{bottom:125.416453pt;}
.y1a7{bottom:126.752293pt;}
.y28b{bottom:128.756293pt;}
.y179{bottom:129.409893pt;}
.y19c{bottom:130.760453pt;}
.yf3{bottom:132.764293pt;}
.y23d{bottom:132.764453pt;}
.y275{bottom:132.886373pt;}
.yce{bottom:134.768293pt;}
.y154{bottom:135.630347pt;}
.y21c{bottom:136.613333pt;}
.y88{bottom:136.772453pt;}
.y2c{bottom:137.990667pt;}
.y220{bottom:139.480373pt;}
.y21d{bottom:139.493733pt;}
.y1db{bottom:139.548533pt;}
.y282{bottom:140.112293pt;}
.y123{bottom:140.201893pt;}
.ya4{bottom:140.780453pt;}
.y1a6{bottom:142.116293pt;}
.y28a{bottom:144.120293pt;}
.y178{bottom:144.693733pt;}
.y19b{bottom:146.124453pt;}
.yf2{bottom:148.128293pt;}
.y23c{bottom:148.128453pt;}
.y274{bottom:148.250373pt;}
.ycd{bottom:150.132293pt;}
.y153{bottom:150.994347pt;}
.y87{bottom:152.136453pt;}
.y2b{bottom:153.354667pt;}
.y21f{bottom:154.764213pt;}
.y21b{bottom:154.769733pt;}
.y1da{bottom:154.912533pt;}
.y281{bottom:155.396133pt;}
.y122{bottom:155.565893pt;}
.ya3{bottom:156.144453pt;}
.y1a5{bottom:157.400133pt;}
.y170{bottom:157.813333pt;}
.y289{bottom:159.404133pt;}
.y177{bottom:160.667013pt;}
.y16f{bottom:160.670533pt;}
.y171{bottom:160.693733pt;}
.y19a{bottom:161.408293pt;}
.yf1{bottom:163.412133pt;}
.y23b{bottom:163.412293pt;}
.y273{bottom:163.534213pt;}
.ycc{bottom:165.416133pt;}
.y152{bottom:166.278187pt;}
.y86{bottom:167.420293pt;}
.y16b{bottom:168.365893pt;}
.y2a{bottom:168.638507pt;}
.y21e{bottom:170.128213pt;}
.y21a{bottom:170.133733pt;}
.y1d9{bottom:170.276533pt;}
.y1d3{bottom:170.289893pt;}
.y280{bottom:170.760133pt;}
.ya2{bottom:171.428293pt;}
.y5e{bottom:172.764133pt;}
.y288{bottom:174.768133pt;}
.y176{bottom:176.031013pt;}
.y16e{bottom:176.034533pt;}
.y173{bottom:176.044373pt;}
.y199{bottom:176.772293pt;}
.yf0{bottom:178.776133pt;}
.y23a{bottom:178.776293pt;}
.y272{bottom:178.898213pt;}
.ycb{bottom:180.780133pt;}
.y151{bottom:181.642187pt;}
.y85{bottom:182.784293pt;}
.y219{bottom:183.253333pt;}
.y16a{bottom:183.729893pt;}
.y29{bottom:184.002507pt;}
.y1d8{bottom:185.560373pt;}
.y1d2{bottom:185.573733pt;}
.y27f{bottom:186.124133pt;}
.y218{bottom:186.133733pt;}
.ya1{bottom:186.792293pt;}
.y5d{bottom:188.128133pt;}
.y287{bottom:190.132133pt;}
.y175{bottom:191.395013pt;}
.y16d{bottom:191.398533pt;}
.y172{bottom:191.408373pt;}
.y198{bottom:192.136293pt;}
.yef{bottom:194.140133pt;}
.y239{bottom:194.140293pt;}
.y271{bottom:194.262213pt;}
.yca{bottom:196.144133pt;}
.y150{bottom:197.006187pt;}
.y121{bottom:197.569733pt;}
.y84{bottom:198.148293pt;}
.y169{bottom:199.013733pt;}
.y28{bottom:199.366507pt;}
.y1d7{bottom:200.924373pt;}
.y27e{bottom:201.407973pt;}
.y217{bottom:202.133733pt;}
.y5c{bottom:203.411973pt;}
.y286{bottom:205.415973pt;}
.y174{bottom:206.678853pt;}
.y16c{bottom:206.682373pt;}
.y197{bottom:207.420133pt;}
.yee{bottom:209.423973pt;}
.y238{bottom:209.424133pt;}
.y270{bottom:209.546053pt;}
.yc9{bottom:211.427973pt;}
.y120{bottom:212.933733pt;}
.y83{bottom:213.432133pt;}
.y27{bottom:214.650347pt;}
.y215{bottom:215.253333pt;}
.ya0{bottom:215.436133pt;}
.y1d6{bottom:216.288373pt;}
.y27d{bottom:216.771973pt;}
.y214{bottom:218.112533pt;}
.y211{bottom:218.125893pt;}
.y216{bottom:218.133733pt;}
.y5b{bottom:218.775973pt;}
.y285{bottom:220.779973pt;}
.y168{bottom:222.691733pt;}
.y196{bottom:222.784133pt;}
.yed{bottom:224.787973pt;}
.y237{bottom:224.788133pt;}
.y26f{bottom:224.910053pt;}
.yc8{bottom:226.791973pt;}
.y82{bottom:228.796133pt;}
.y26{bottom:230.014347pt;}
.y167{bottom:230.373733pt;}
.y1d5{bottom:231.572213pt;}
.y27c{bottom:232.135973pt;}
.y213{bottom:233.396373pt;}
.y210{bottom:233.409733pt;}
.y5a{bottom:234.139973pt;}
.y195{bottom:238.148133pt;}
.y14f{bottom:238.929867pt;}
.yec{bottom:240.151973pt;}
.y236{bottom:240.152133pt;}
.y26e{bottom:240.193893pt;}
.yc7{bottom:242.155973pt;}
.y11f{bottom:242.213733pt;}
.y11a{bottom:243.242027pt;}
.y81{bottom:244.160133pt;}
.y25{bottom:245.378347pt;}
.y1d4{bottom:246.936213pt;}
.y27b{bottom:247.419813pt;}
.y212{bottom:248.760373pt;}
.y20f{bottom:248.773733pt;}
.y59{bottom:249.423813pt;}
.y166{bottom:251.173333pt;}
.y194{bottom:253.431973pt;}
.y165{bottom:254.053733pt;}
.y14e{bottom:254.293867pt;}
.y235{bottom:255.435973pt;}
.y26d{bottom:255.557893pt;}
.yc6{bottom:257.439813pt;}
.y11e{bottom:258.213733pt;}
.y119{bottom:258.525867pt;}
.y80{bottom:259.443973pt;}
.y24{bottom:260.662187pt;}
.y27a{bottom:262.783813pt;}
.y1cf{bottom:262.926027pt;}
.y20e{bottom:264.752667pt;}
.y20b{bottom:264.766027pt;}
.y58{bottom:264.787813pt;}
.y115{bottom:266.534533pt;}
.yeb{bottom:268.795813pt;}
.y193{bottom:268.795973pt;}
.y164{bottom:270.049867pt;}
.y1d1{bottom:270.608027pt;}
.y234{bottom:270.799973pt;}
.y26c{bottom:270.921893pt;}
.yc5{bottom:272.803813pt;}
.y118{bottom:273.889867pt;}
.y11d{bottom:274.213733pt;}
.y7f{bottom:274.807973pt;}
.y23{bottom:276.026187pt;}
.y279{bottom:278.147813pt;}
.y1ce{bottom:278.290027pt;}
.y20d{bottom:280.116667pt;}
.y20a{bottom:280.130027pt;}
.y57{bottom:280.151813pt;}
.y148{bottom:280.773333pt;}
.y114{bottom:281.898533pt;}
.y147{bottom:283.638053pt;}
.y149{bottom:283.653867pt;}
.yea{bottom:284.159813pt;}
.y192{bottom:284.159973pt;}
.y163{bottom:285.413867pt;}
.y1d0{bottom:285.891867pt;}
.y233{bottom:286.163973pt;}
.y26b{bottom:286.205733pt;}
.y11b{bottom:287.333333pt;}
.yc4{bottom:288.167813pt;}
.y117{bottom:289.253867pt;}
.y7e{bottom:290.171973pt;}
.y11c{bottom:290.213733pt;}
.y14d{bottom:290.293733pt;}
.y22{bottom:291.390187pt;}
.y278{bottom:293.431653pt;}
.y1cd{bottom:293.573867pt;}
.y20c{bottom:295.400507pt;}
.y209{bottom:295.413867pt;}
.y56{bottom:295.435653pt;}
.y1ac{bottom:295.515813pt;}
.y161{bottom:298.533333pt;}
.y146{bottom:298.921893pt;}
.ye9{bottom:299.443653pt;}
.y191{bottom:299.443813pt;}
.y162{bottom:301.413867pt;}
.y26a{bottom:301.569733pt;}
.y116{bottom:303.333333pt;}
.yc3{bottom:303.451653pt;}
.y7d{bottom:305.455813pt;}
.y113{bottom:306.213733pt;}
.y111{bottom:306.529733pt;}
.y21{bottom:306.674027pt;}
.y1ca{bottom:306.693333pt;}
.y277{bottom:308.795653pt;}
.y160{bottom:309.013733pt;}
.y1c9{bottom:309.569733pt;}
.y1cb{bottom:309.573867pt;}
.y55{bottom:310.799653pt;}
.y208{bottom:311.392373pt;}
.y205{bottom:311.405733pt;}
.y14c{bottom:312.933733pt;}
.y145{bottom:314.285893pt;}
.y232{bottom:314.727653pt;}
.ye8{bottom:314.807653pt;}
.y190{bottom:314.807813pt;}
.y269{bottom:316.933733pt;}
.yc2{bottom:318.815653pt;}
.y7c{bottom:320.819813pt;}
.y110{bottom:321.893733pt;}
.y20{bottom:322.038027pt;}
.y112{bottom:322.214373pt;}
.y1ab{bottom:324.159653pt;}
.y1c7{bottom:324.933733pt;}
.y1cc{bottom:324.937867pt;}
.y54{bottom:326.163653pt;}
.y207{bottom:326.756373pt;}
.y204{bottom:326.769733pt;}
.y14b{bottom:328.933733pt;}
.y144{bottom:329.649893pt;}
.ye7{bottom:330.171653pt;}
.y18f{bottom:330.171813pt;}
.y15d{bottom:332.686027pt;}
.y267{bottom:332.921893pt;}
.yc1{bottom:334.099493pt;}
.y9f{bottom:336.103653pt;}
.y1f{bottom:337.402027pt;}
.y10f{bottom:338.211733pt;}
.y1aa{bottom:339.443493pt;}
.y1c8{bottom:340.297733pt;}
.y15f{bottom:340.368027pt;}
.y53{bottom:341.447493pt;}
.y14a{bottom:342.053333pt;}
.y206{bottom:342.120373pt;}
.y203{bottom:342.133733pt;}
.y231{bottom:343.451653pt;}
.y143{bottom:344.933733pt;}
.y141{bottom:345.329253pt;}
.ye6{bottom:345.455493pt;}
.y18e{bottom:345.455653pt;}
.y10e{bottom:345.893733pt;}
.y15c{bottom:348.050027pt;}
.y266{bottom:348.205733pt;}
.y7b{bottom:349.383493pt;}
.yc0{bottom:349.463493pt;}
.y9e{bottom:351.467653pt;}
.y1e{bottom:352.685867pt;}
.y1c5{bottom:353.413333pt;}
.y1a9{bottom:354.807493pt;}
.y15e{bottom:355.732027pt;}
.y268{bottom:355.887733pt;}
.y1c4{bottom:356.266693pt;}
.y52{bottom:356.811493pt;}
.y142{bottom:358.053333pt;}
.y202{bottom:358.133733pt;}
.y230{bottom:358.815653pt;}
.ye5{bottom:360.819493pt;}
.y18d{bottom:360.819653pt;}
.y140{bottom:360.933733pt;}
.y13e{bottom:361.330027pt;}
.y15b{bottom:363.333867pt;}
.y265{bottom:363.569733pt;}
.ybf{bottom:364.827493pt;}
.y108{bottom:366.693333pt;}
.y9d{bottom:366.831653pt;}
.y1d{bottom:368.049867pt;}
.y10a{bottom:369.573867pt;}
.y1a8{bottom:370.171493pt;}
.y1fe{bottom:371.253333pt;}
.y1c3{bottom:371.550533pt;}
.y1a4{bottom:372.175493pt;}
.y22f{bottom:374.099493pt;}
.y1ff{bottom:374.133733pt;}
.ye4{bottom:376.103333pt;}
.y18c{bottom:376.103493pt;}
.y10d{bottom:376.213733pt;}
.y15a{bottom:376.453333pt;}
.y13d{bottom:376.613867pt;}
.y13f{bottom:376.934507pt;}
.y101{bottom:377.241893pt;}
.y7a{bottom:378.107493pt;}
.y264{bottom:378.933733pt;}
.y159{bottom:379.333867pt;}
.ybe{bottom:380.191493pt;}
.y9c{bottom:382.115493pt;}
.y1c{bottom:383.413867pt;}
.y107{bottom:384.841893pt;}
.y51{bottom:385.455333pt;}
.y1c2{bottom:386.914533pt;}
.y1a3{bottom:387.459333pt;}
.y201{bottom:389.404213pt;}
.y1fd{bottom:389.409733pt;}
.y22e{bottom:389.463493pt;}
.ye3{bottom:391.467333pt;}
.y18b{bottom:391.467493pt;}
.y261{bottom:392.053333pt;}
.y158{bottom:392.453733pt;}
.y100{bottom:392.525733pt;}
.y13c{bottom:392.929733pt;}
.y79{bottom:393.471493pt;}
.y1bd{bottom:394.609893pt;}
.y260{bottom:394.929893pt;}
.y262{bottom:394.933733pt;}
.y9b{bottom:397.479493pt;}
.y10c{bottom:398.853733pt;}
.y106{bottom:400.205893pt;}
.y50{bottom:400.819333pt;}
.y1c1{bottom:402.198373pt;}
.y1c6{bottom:402.213733pt;}
.y1a2{bottom:402.823333pt;}
.y200{bottom:404.768213pt;}
.y1fc{bottom:404.773733pt;}
.y22d{bottom:404.827493pt;}
.ye2{bottom:406.831333pt;}
.y18a{bottom:406.831493pt;}
.yff{bottom:407.889733pt;}
.y13b{bottom:408.293733pt;}
.ybd{bottom:408.835333pt;}
.y78{bottom:408.835493pt;}
.y1bc{bottom:409.893733pt;}
.y25f{bottom:410.213733pt;}
.y263{bottom:410.217573pt;}
.y1b{bottom:411.733733pt;}
.y10b{bottom:414.853733pt;}
.y105{bottom:415.569893pt;}
.y4f{bottom:416.103173pt;}
.y1c0{bottom:417.562373pt;}
.y1a1{bottom:418.107173pt;}
.y22c{bottom:420.111333pt;}
.y1fb{bottom:420.769733pt;}
.y132{bottom:421.413333pt;}
.ye1{bottom:422.115173pt;}
.y189{bottom:422.115333pt;}
.yfe{bottom:423.253733pt;}
.y25e{bottom:423.333333pt;}
.ybc{bottom:424.119173pt;}
.y77{bottom:424.119333pt;}
.y131{bottom:424.277893pt;}
.y133{bottom:424.293733pt;}
.y1a{bottom:425.569733pt;}
.y9a{bottom:426.123333pt;}
.y25d{bottom:426.213733pt;}
.y102{bottom:427.973333pt;}
.y104{bottom:430.853733pt;}
.y13a{bottom:430.933733pt;}
.y4e{bottom:431.467173pt;}
.y137{bottom:431.959893pt;}
.y1bf{bottom:432.926373pt;}
.y1a0{bottom:433.471173pt;}
.y22b{bottom:435.475333pt;}
.y1fa{bottom:436.133733pt;}
.ye0{bottom:437.479173pt;}
.y188{bottom:437.479333pt;}
.y19{bottom:439.333733pt;}
.ybb{bottom:439.483173pt;}
.y76{bottom:439.483333pt;}
.y130{bottom:439.641893pt;}
.y25c{bottom:442.209733pt;}
.y4d{bottom:446.831173pt;}
.yfd{bottom:446.853733pt;}
.y136{bottom:447.243733pt;}
.yfb{bottom:447.249893pt;}
.y1be{bottom:448.210213pt;}
.y19f{bottom:448.835173pt;}
.y1f6{bottom:449.253333pt;}
.y22a{bottom:450.839333pt;}
.y1f5{bottom:452.125893pt;}
.y1f7{bottom:452.133733pt;}
.ydf{bottom:452.843173pt;}
.y187{bottom:452.843333pt;}
.y18{bottom:453.169733pt;}
.y139{bottom:453.653733pt;}
.yba{bottom:454.847173pt;}
.y75{bottom:454.847333pt;}
.y12f{bottom:454.925733pt;}
.y25b{bottom:457.573733pt;}
.y1f9{bottom:459.735573pt;}
.y1b4{bottom:461.333333pt;}
.y4c{bottom:462.115013pt;}
.yfa{bottom:462.533733pt;}
.y135{bottom:462.607733pt;}
.yfc{bottom:462.854373pt;}
.y1bb{bottom:464.187013pt;}
.y19e{bottom:464.199173pt;}
.y1b5{bottom:464.213733pt;}
.y229{bottom:466.123173pt;}
.y17{bottom:466.933733pt;}
.y1f4{bottom:467.409733pt;}
.yde{bottom:468.127013pt;}
.y186{bottom:468.127173pt;}
.y138{bottom:469.653733pt;}
.yb9{bottom:470.131013pt;}
.y74{bottom:470.131173pt;}
.y12e{bottom:470.289733pt;}
.y25a{bottom:470.693333pt;}
.y259{bottom:473.573733pt;}
.y1f8{bottom:475.099573pt;}
.y4b{bottom:477.479013pt;}
.yf9{bottom:478.851733pt;}
.y1ba{bottom:479.551013pt;}
.y1b3{bottom:479.554373pt;}
.y16{bottom:480.769733pt;}
.y228{bottom:481.487173pt;}
.y134{bottom:482.773333pt;}
.y1f3{bottom:482.773733pt;}
.ydd{bottom:483.491013pt;}
.y185{bottom:483.491173pt;}
.yb8{bottom:485.495013pt;}
.y73{bottom:485.495173pt;}
.y12d{bottom:485.653733pt;}
.yf8{bottom:486.533733pt;}
.y258{bottom:486.693333pt;}
.y257{bottom:489.573733pt;}
.y4a{bottom:492.843013pt;}
.y15{bottom:494.533733pt;}
.y1b9{bottom:494.915013pt;}
.y1b2{bottom:494.918373pt;}
.y227{bottom:496.851173pt;}
.y1f2{bottom:498.773733pt;}
.ydc{bottom:498.855013pt;}
.y184{bottom:498.855173pt;}
.yb7{bottom:500.859013pt;}
.y72{bottom:500.859173pt;}
.y12c{bottom:501.653733pt;}
.y12a{bottom:501.969893pt;}
.y1ae{bottom:502.613733pt;}
.y252{bottom:502.693333pt;}
.y256{bottom:505.560373pt;}
.y251{bottom:505.565893pt;}
.y253{bottom:505.573733pt;}
.y49{bottom:508.126853pt;}
.y14{bottom:508.369733pt;}
.y1b8{bottom:510.198853pt;}
.y1b1{bottom:510.202213pt;}
.yf7{bottom:510.213733pt;}
.y1f0{bottom:511.893333pt;}
.y226{bottom:512.135013pt;}
.ydb{bottom:514.138853pt;}
.y183{bottom:514.139013pt;}
.y1ed{bottom:514.765893pt;}
.y1f1{bottom:514.773733pt;}
.yb6{bottom:516.142853pt;}
.y71{bottom:516.143013pt;}
.y129{bottom:517.253733pt;}
.y12b{bottom:517.654533pt;}
.y255{bottom:520.924373pt;}
.y250{bottom:520.929893pt;}
.y13{bottom:522.133733pt;}
.yf6{bottom:523.333733pt;}
.y48{bottom:523.490853pt;}
.y1b7{bottom:525.562853pt;}
.y1b0{bottom:525.566213pt;}
.y225{bottom:527.499013pt;}
.yda{bottom:529.502853pt;}
.y182{bottom:529.503013pt;}
.y1ef{bottom:530.116533pt;}
.y1ec{bottom:530.129893pt;}
.yb5{bottom:531.506853pt;}
.y70{bottom:531.507013pt;}
.y128{bottom:533.653733pt;}
.y12{bottom:535.969733pt;}
.y254{bottom:536.208213pt;}
.y24f{bottom:536.213733pt;}
.y47{bottom:538.854853pt;}
.y1b6{bottom:540.926853pt;}
.y1af{bottom:540.930213pt;}
.y224{bottom:542.863013pt;}
.yd9{bottom:544.866853pt;}
.y181{bottom:544.867013pt;}
.y1ee{bottom:545.400373pt;}
.y1eb{bottom:545.413733pt;}
.yb4{bottom:546.870853pt;}
.y99{bottom:546.871013pt;}
.y127{bottom:549.653733pt;}
.y11{bottom:549.733733pt;}
.y24e{bottom:552.205893pt;}
.y1ad{bottom:554.053333pt;}
.y46{bottom:554.138693pt;}
.y157{bottom:556.933733pt;}
.y223{bottom:558.146853pt;}
.yd8{bottom:560.150693pt;}
.y6f{bottom:560.150853pt;}
.y1ea{bottom:561.409733pt;}
.yb3{bottom:562.154693pt;}
.y98{bottom:562.154853pt;}
.y126{bottom:562.773733pt;}
.y10{bottom:563.569733pt;}
.y24d{bottom:567.569893pt;}
.y45{bottom:569.502693pt;}
.y156{bottom:572.869413pt;}
.y222{bottom:573.510853pt;}
.y180{bottom:575.514853pt;}
.y1e9{bottom:576.773733pt;}
.yf{bottom:577.333733pt;}
.yb2{bottom:577.518693pt;}
.y97{bottom:577.518853pt;}
.y24c{bottom:582.853733pt;}
.y44{bottom:584.866693pt;}
.yd7{bottom:588.794533pt;}
.y6e{bottom:588.874853pt;}
.y17f{bottom:590.878853pt;}
.ye{bottom:591.169733pt;}
.y1e8{bottom:592.752533pt;}
.y1e5{bottom:592.765893pt;}
.y24a{bottom:595.973333pt;}
.y249{bottom:598.832373pt;}
.y246{bottom:598.845733pt;}
.y24b{bottom:598.853733pt;}
.y43{bottom:600.150533pt;}
.y155{bottom:602.154533pt;}
.y6d{bottom:604.158693pt;}
.yd{bottom:604.933733pt;}
.yb1{bottom:606.162533pt;}
.y96{bottom:606.162693pt;}
.y1e7{bottom:608.036373pt;}
.y1e4{bottom:608.049733pt;}
.y248{bottom:614.196373pt;}
.y245{bottom:614.209733pt;}
.y42{bottom:615.514533pt;}
.yd6{bottom:617.518533pt;}
.yc{bottom:618.769733pt;}
.y6c{bottom:619.522693pt;}
.y95{bottom:621.526693pt;}
.y1e6{bottom:623.400373pt;}
.y1e3{bottom:623.413733pt;}
.y247{bottom:629.560373pt;}
.y244{bottom:629.573733pt;}
.y41{bottom:630.878533pt;}
.yb{bottom:632.533733pt;}
.yd5{bottom:632.882533pt;}
.yb0{bottom:634.886533pt;}
.y6b{bottom:634.886693pt;}
.y1e2{bottom:636.533333pt;}
.y94{bottom:636.890693pt;}
.y1e1{bottom:639.413733pt;}
.y243{bottom:642.693333pt;}
.y242{bottom:645.573733pt;}
.y40{bottom:646.162373pt;}
.ya{bottom:646.369733pt;}
.yd4{bottom:648.166373pt;}
.yaf{bottom:650.170373pt;}
.y6a{bottom:650.170533pt;}
.y93{bottom:652.174533pt;}
.y1e0{bottom:652.533733pt;}
.y241{bottom:658.693733pt;}
.y9{bottom:660.133733pt;}
.y3f{bottom:661.526373pt;}
.yd3{bottom:663.530373pt;}
.yae{bottom:665.534373pt;}
.y69{bottom:665.534533pt;}
.y92{bottom:667.538533pt;}
.y8{bottom:673.969733pt;}
.y3e{bottom:676.890373pt;}
.yd2{bottom:678.894373pt;}
.yad{bottom:680.818213pt;}
.y68{bottom:680.818373pt;}
.y17e{bottom:682.822373pt;}
.y7{bottom:687.733733pt;}
.y3d{bottom:692.174213pt;}
.yd1{bottom:694.178213pt;}
.y91{bottom:696.102213pt;}
.yac{bottom:696.182213pt;}
.y67{bottom:696.182373pt;}
.y17d{bottom:698.186373pt;}
.y6{bottom:701.569733pt;}
.y3c{bottom:707.538213pt;}
.yd0{bottom:709.542213pt;}
.yab{bottom:711.546213pt;}
.y66{bottom:711.546373pt;}
.y17c{bottom:713.550373pt;}
.y5{bottom:715.333733pt;}
.y3b{bottom:722.822053pt;}
.y90{bottom:724.826213pt;}
.yaa{bottom:726.830053pt;}
.y65{bottom:726.830213pt;}
.y17b{bottom:728.834213pt;}
.y3a{bottom:738.186053pt;}
.y8f{bottom:740.190213pt;}
.ya9{bottom:742.194053pt;}
.y64{bottom:742.194213pt;}
.y4{bottom:742.217733pt;}
.y17a{bottom:744.198213pt;}
.y39{bottom:753.550053pt;}
.y3{bottom:754.453733pt;}
.y8e{bottom:755.554213pt;}
.ya8{bottom:757.558053pt;}
.y63{bottom:757.558213pt;}
.y38{bottom:768.833893pt;}
.y8d{bottom:770.838053pt;}
.y62{bottom:772.842053pt;}
.y2{bottom:781.737733pt;}
.y37{bottom:784.197893pt;}
.ya7{bottom:786.121733pt;}
.y8c{bottom:786.202053pt;}
.y1df{bottom:786.853733pt;}
.y61{bottom:788.206053pt;}
.y36{bottom:799.561893pt;}
.y240{bottom:800.213733pt;}
.y8b{bottom:801.566053pt;}
.y1de{bottom:802.848613pt;}
.y1{bottom:803.173733pt;}
.y60{bottom:803.570053pt;}
.y35{bottom:814.845733pt;}
.y23f{bottom:816.208613pt;}
.y8a{bottom:816.849893pt;}
.y34{bottom:830.209733pt;}
.y5f{bottom:832.133733pt;}
.yf5{bottom:844.853733pt;}
.y89{bottom:845.493733pt;}
.y33{bottom:845.573733pt;}
.y2e{bottom:905.483067pt;}
.hc{height:14.880000pt;}
.h8{height:25.921875pt;}
.h9{height:36.218125pt;}
.h2{height:37.343906pt;}
.ha{height:39.030469pt;}
.h7{height:40.734375pt;}
.h3{height:42.117188pt;}
.h4{height:42.234375pt;}
.h5{height:46.890469pt;}
.h6{height:47.020937pt;}
.h1{height:65.422031pt;}
.hb{height:66.946125pt;}
.hf{height:77.297829pt;}
.hd{height:77.618469pt;}
.he{height:97.674125pt;}
.h10{height:108.346469pt;}
.h0{height:960.000000pt;}
.w9{width:5.520000pt;}
.w2{width:9.840000pt;}
.w1d{width:18.480000pt;}
.w1b{width:25.920000pt;}
.wb{width:42.960000pt;}
.w10{width:43.680000pt;}
.w3{width:45.920000pt;}
.wd{width:46.720000pt;}
.w15{width:47.360000pt;}
.w5{width:47.600000pt;}
.w8{width:48.880000pt;}
.w18{width:49.280000pt;}
.w6{width:50.320000pt;}
.w1a{width:51.920000pt;}
.w13{width:53.680000pt;}
.w1f{width:54.400000pt;}
.wc{width:78.880000pt;}
.w7{width:84.400000pt;}
.wa{width:85.520000pt;}
.w4{width:89.040000pt;}
.w12{width:95.760000pt;}
.w1c{width:99.920000pt;}
.wf{width:101.520000pt;}
.w1e{width:104.800000pt;}
.w17{width:107.280000pt;}
.w19{width:108.480000pt;}
.we{width:110.800000pt;}
.w11{width:123.360000pt;}
.w16{width:151.440000pt;}
.w20{width:165.120000pt;}
.w14{width:170.000000pt;}
.w1{width:672.666667pt;}
.w0{width:672.756000pt;}
.x0{left:0.000000pt;}
.x63{left:8.159987pt;}
.x2f{left:15.199987pt;}
.x5a{left:22.239987pt;}
.x39{left:25.919987pt;}
.x22{left:28.879987pt;}
.x4d{left:32.959987pt;}
.x44{left:37.039987pt;}
.x40{left:43.039987pt;}
.x66{left:44.479987pt;}
.x43{left:56.319987pt;}
.x61{left:61.919987pt;}
.x3b{left:67.759987pt;}
.x45{left:69.999987pt;}
.x4f{left:79.999987pt;}
.x4b{left:83.199987pt;}
.xd{left:89.007333pt;}
.x6{left:90.764667pt;}
.x54{left:94.719987pt;}
.x5c{left:96.239987pt;}
.x14{left:98.284667pt;}
.x4{left:102.840827pt;}
.x51{left:105.004667pt;}
.x1{left:106.204667pt;}
.x64{left:113.084667pt;}
.xa{left:114.791600pt;}
.xb{left:116.816933pt;}
.x5b{left:124.204667pt;}
.x33{left:131.964667pt;}
.x23{left:133.884667pt;}
.x2{left:136.047307pt;}
.x4e{left:137.964667pt;}
.x58{left:140.524667pt;}
.xc{left:143.523307pt;}
.x1d{left:156.923387pt;}
.x56{left:159.718667pt;}
.x62{left:163.884667pt;}
.xe{left:178.847147pt;}
.x13{left:180.284667pt;}
.x50{left:185.004667pt;}
.x2c{left:187.884667pt;}
.x47{left:197.004667pt;}
.x5e{left:199.004680pt;}
.x5d{left:202.684667pt;}
.x3d{left:211.058107pt;}
.x5f{left:217.484667pt;}
.x67{left:226.044667pt;}
.x21{left:229.560027pt;}
.x31{left:231.724347pt;}
.x3e{left:232.647867pt;}
.x2a{left:236.281787pt;}
.x16{left:237.242027pt;}
.x24{left:239.244667pt;}
.x17{left:246.924667pt;}
.x3f{left:249.164680pt;}
.x42{left:255.884667pt;}
.x34{left:256.920747pt;}
.x48{left:258.273627pt;}
.x68{left:262.039867pt;}
.x3a{left:264.364667pt;}
.x4a{left:271.404667pt;}
.x35{left:274.684667pt;}
.x3{left:275.804667pt;}
.xf{left:277.884827pt;}
.x7{left:279.404667pt;}
.x53{left:282.924667pt;}
.x11{left:288.044667pt;}
.x1f{left:290.284667pt;}
.x2e{left:294.364667pt;}
.x10{left:296.762507pt;}
.x2b{left:300.837307pt;}
.x5{left:305.084667pt;}
.x36{left:308.364680pt;}
.x37{left:312.524680pt;}
.x30{left:315.164667pt;}
.x38{left:323.564667pt;}
.x46{left:325.884667pt;}
.x9{left:329.663600pt;}
.x32{left:343.721227pt;}
.x25{left:350.119307pt;}
.x15{left:362.518747pt;}
.x65{left:365.884667pt;}
.x18{left:369.244667pt;}
.x59{left:375.484667pt;}
.x55{left:384.044667pt;}
.x4c{left:395.484667pt;}
.x52{left:406.284667pt;}
.x41{left:424.604667pt;}
.x1e{left:428.382800pt;}
.x8{left:429.512533pt;}
.x60{left:436.924680pt;}
.x19{left:467.317227pt;}
.x1a{left:471.644680pt;}
.x26{left:474.921067pt;}
.x1c{left:477.004667pt;}
.x27{left:479.244680pt;}
.x1b{left:481.484667pt;}
.x29{left:484.604667pt;}
.x28{left:489.084667pt;}
.x49{left:546.284667pt;}
.x3c{left:548.844667pt;}
.x57{left:551.004667pt;}
.x2d{left:566.364667pt;}
.x20{left:569.804667pt;}
.x12{left:577.564667pt;}
}




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