
    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_83a2cfd4898b479cf9e64d33.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_b7a6a694426d1d4d2efb0492.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8bf47fc6b457e76463eb27c4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_65b8d27341e4bab7b5bf3440.woff')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_3c1e2cbdf3b93967d8b606f8.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_e4c8863ee4220e770475c591.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_4ac45c816692abd5eff206bb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_317f9eb29709eee129f3442c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d70c48e6d05801d0bc783638.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_a875b353bbabbda87100e200.woff')format("woff");}.ffb{font-family:ffb;line-height:0.981934;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_ffce938f4168bd47519bbd23.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ef8d0e9477d26b11705ebc91.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c0ce9e4183d9d135b762688e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.201172;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_5d123772bb4c8abe91c34807.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b032fa9c030de2432a01776b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.983887;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_426de1ee4ea0429119aab716.woff')format("woff");}.ff11{font-family:ff11;line-height:0.983887;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;}
.m5{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,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);}
.m3{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250092,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;}
.v2{vertical-align:2.183917px;}
.v3{vertical-align:18.738787px;}
.v1{vertical-align:23.760000px;}
.ls5d{letter-spacing:-0.852000px;}
.ls2b{letter-spacing:-0.834000px;}
.ls4{letter-spacing:-0.720000px;}
.ls52{letter-spacing:-0.694931px;}
.ls43{letter-spacing:-0.690000px;}
.ls38{letter-spacing:-0.660000px;}
.ls23{letter-spacing:-0.590400px;}
.ls41{letter-spacing:-0.561600px;}
.ls50{letter-spacing:-0.497143px;}
.ls5e{letter-spacing:-0.472200px;}
.ls44{letter-spacing:-0.463800px;}
.ls1e{letter-spacing:-0.454800px;}
.ls28{letter-spacing:-0.366000px;}
.ls2f{letter-spacing:-0.324000px;}
.ls25{letter-spacing:-0.322800px;}
.ls22{letter-spacing:-0.282000px;}
.ls16{letter-spacing:-0.253200px;}
.ls31{letter-spacing:-0.238800px;}
.lse{letter-spacing:-0.229800px;}
.ls1b{letter-spacing:-0.216000px;}
.ls4a{letter-spacing:-0.206127px;}
.ls40{letter-spacing:-0.205200px;}
.ls3f{letter-spacing:-0.193200px;}
.ls4b{letter-spacing:-0.187388px;}
.lsc{letter-spacing:-0.172200px;}
.ls39{letter-spacing:-0.164400px;}
.lsd{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.132600px;}
.ls29{letter-spacing:-0.115200px;}
.ls42{letter-spacing:-0.078000px;}
.ls47{letter-spacing:-0.076800px;}
.ls59{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.067200px;}
.ls49{letter-spacing:-0.058320px;}
.ls17{letter-spacing:-0.048960px;}
.ls21{letter-spacing:-0.043200px;}
.ls45{letter-spacing:-0.034560px;}
.ls3c{letter-spacing:-0.025920px;}
.ls30{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.022320px;}
.ls36{letter-spacing:0.060600px;}
.ls11{letter-spacing:0.072000px;}
.ls4c{letter-spacing:0.074839px;}
.ls13{letter-spacing:0.075000px;}
.ls7{letter-spacing:0.087600px;}
.ls5b{letter-spacing:0.089400px;}
.ls20{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.132480px;}
.ls1d{letter-spacing:0.132600px;}
.ls34{letter-spacing:0.141000px;}
.ls15{letter-spacing:0.147000px;}
.lsb{letter-spacing:0.149760px;}
.ls2c{letter-spacing:0.174240px;}
.lsf{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.218400px;}
.ls1c{letter-spacing:0.231600px;}
.ls2a{letter-spacing:0.233400px;}
.ls56{letter-spacing:0.238200px;}
.ls18{letter-spacing:0.238320px;}
.ls5{letter-spacing:0.238800px;}
.ls5c{letter-spacing:0.247800px;}
.ls60{letter-spacing:0.252480px;}
.ls6{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.256320px;}
.ls12{letter-spacing:0.265200px;}
.ls55{letter-spacing:0.279600px;}
.ls14{letter-spacing:0.285000px;}
.ls3{letter-spacing:0.313800px;}
.ls3e{letter-spacing:0.358560px;}
.ls1f{letter-spacing:0.396000px;}
.ls2e{letter-spacing:0.468000px;}
.ls48{letter-spacing:0.873567px;}
.ls2d{letter-spacing:0.894240px;}
.ls4d{letter-spacing:0.908756px;}
.ls3d{letter-spacing:1.124450px;}
.ls51{letter-spacing:1.202765px;}
.ls53{letter-spacing:1.336405px;}
.ls54{letter-spacing:1.438546px;}
.ls24{letter-spacing:2.309760px;}
.ls5a{letter-spacing:3.749760px;}
.ls3b{letter-spacing:5.189760px;}
.ls46{letter-spacing:16.241760px;}
.lsa{letter-spacing:21.749760px;}
.ls9{letter-spacing:29.669760px;}
.ls33{letter-spacing:39.161280px;}
.ls37{letter-spacing:51.240000px;}
.ls58{letter-spacing:54.840000px;}
.ls57{letter-spacing:59.321280px;}
.ls5f{letter-spacing:59.345280px;}
.ls3a{letter-spacing:69.401280px;}
.ls26{letter-spacing:86.717280px;}
.ls8{letter-spacing:112.469760px;}
.ls19{letter-spacing:121.349280px;}
.ls4e{letter-spacing:428.841819px;}
.ls4f{letter-spacing:529.964947px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(0,52,27),0 0.015em rgb(0,52,27),0.015em 0 rgb(0,52,27),0 -0.015em  rgb(0,52,27);}
.sc4{text-shadow:-0.015em 0 rgb(0,104,56),0 0.015em rgb(0,104,56),0.015em 0 rgb(0,104,56),0 -0.015em  rgb(0,104,56);}
.sc3{text-shadow:-0.015em 0 rgb(186,104,39),0 0.015em rgb(186,104,39),0.015em 0 rgb(186,104,39),0 -0.015em  rgb(186,104,39);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(171,98,46),0 0.015em rgb(171,98,46),0.015em 0 rgb(171,98,46),0 -0.015em  rgb(171,98,46);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(0,52,27);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,104,56);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(186,104,39);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(171,98,46);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws67{word-spacing:-72.000000px;}
.ws66{word-spacing:-66.240000px;}
.ws5e{word-spacing:-54.101315px;}
.ws47{word-spacing:-29.446665px;}
.ws6{word-spacing:-19.038240px;}
.ws3a{word-spacing:-18.961440px;}
.ws7{word-spacing:-18.866040px;}
.wsa{word-spacing:-18.808440px;}
.wsb{word-spacing:-16.488000px;}
.wsd{word-spacing:-16.344000px;}
.ws8{word-spacing:-16.272000px;}
.ws68{word-spacing:-16.200000px;}
.ws9{word-spacing:-16.128000px;}
.ws1{word-spacing:-15.284040px;}
.ws10{word-spacing:-15.255240px;}
.ws65{word-spacing:-15.249840px;}
.wse{word-spacing:-15.235440px;}
.ws4{word-spacing:-15.226440px;}
.ws3{word-spacing:-15.209040px;}
.ws11{word-spacing:-15.117240px;}
.ws26{word-spacing:-15.111240px;}
.ws16{word-spacing:-15.102840px;}
.ws19{word-spacing:-15.099840px;}
.ws69{word-spacing:-15.059640px;}
.wsf{word-spacing:-15.045240px;}
.ws2c{word-spacing:-15.030840px;}
.ws1d{word-spacing:-14.990400px;}
.ws2{word-spacing:-14.970240px;}
.ws2b{word-spacing:-14.944320px;}
.ws39{word-spacing:-14.935680px;}
.ws1a{word-spacing:-14.927040px;}
.ws13{word-spacing:-14.921280px;}
.ws36{word-spacing:-14.892240px;}
.ws1f{word-spacing:-14.855040px;}
.wsc{word-spacing:-14.837640px;}
.ws2a{word-spacing:-14.805840px;}
.ws33{word-spacing:-14.777040px;}
.ws14{word-spacing:-14.754240px;}
.ws22{word-spacing:-14.731440px;}
.ws12{word-spacing:-14.717040px;}
.ws1c{word-spacing:-14.647440px;}
.ws1e{word-spacing:-14.604240px;}
.ws17{word-spacing:-14.515440px;}
.ws38{word-spacing:-14.506440px;}
.ws1b{word-spacing:-14.379840px;}
.ws29{word-spacing:-14.310240px;}
.ws37{word-spacing:-14.280240px;}
.ws20{word-spacing:-14.136240px;}
.ws27{word-spacing:-13.724160px;}
.ws28{word-spacing:-13.566360px;}
.ws63{word-spacing:-13.546313px;}
.ws23{word-spacing:-13.505760px;}
.ws24{word-spacing:-13.438560px;}
.ws40{word-spacing:-13.356838px;}
.ws54{word-spacing:-13.289216px;}
.ws2f{word-spacing:-12.423923px;}
.ws5f{word-spacing:-12.226897px;}
.ws53{word-spacing:-12.081105px;}
.ws21{word-spacing:-11.880000px;}
.ws5d{word-spacing:-11.115361px;}
.ws35{word-spacing:-10.924560px;}
.ws5{word-spacing:-10.902240px;}
.ws3f{word-spacing:-10.858437px;}
.ws34{word-spacing:-10.697040px;}
.ws3c{word-spacing:-9.871306px;}
.ws18{word-spacing:-9.833760px;}
.ws15{word-spacing:-9.669360px;}
.ws25{word-spacing:-9.437760px;}
.ws46{word-spacing:-6.654946px;}
.ws45{word-spacing:-6.049951px;}
.ws0{word-spacing:0.000000px;}
.ws56{word-spacing:9.889400px;}
.ws49{word-spacing:21.576374px;}
.ws44{word-spacing:39.940386px;}
.ws48{word-spacing:43.431154px;}
.ws52{word-spacing:51.826130px;}
.ws4a{word-spacing:55.121480px;}
.ws31{word-spacing:56.522352px;}
.ws4f{word-spacing:57.795772px;}
.ws51{word-spacing:57.929621px;}
.ws32{word-spacing:68.066705px;}
.ws30{word-spacing:71.639957px;}
.ws3d{word-spacing:78.564240px;}
.ws3e{word-spacing:82.014829px;}
.ws3b{word-spacing:104.504809px;}
.ws4c{word-spacing:109.849445px;}
.ws4d{word-spacing:117.358345px;}
.ws4b{word-spacing:121.633465px;}
.ws50{word-spacing:123.649223px;}
.ws2e{word-spacing:130.296265px;}
.ws41{word-spacing:131.148600px;}
.ws43{word-spacing:140.818986px;}
.ws5b{word-spacing:143.877411px;}
.ws58{word-spacing:145.144324px;}
.ws57{word-spacing:189.732155px;}
.ws5a{word-spacing:199.070957px;}
.ws42{word-spacing:210.590775px;}
.ws62{word-spacing:217.187270px;}
.ws5c{word-spacing:230.235932px;}
.ws61{word-spacing:230.840475px;}
.ws64{word-spacing:250.486909px;}
.ws4e{word-spacing:260.228209px;}
.ws59{word-spacing:445.712602px;}
.ws60{word-spacing:494.141739px;}
.ws2d{word-spacing:1255.176030px;}
.ws55{word-spacing:1487.071806px;}
._7{margin-left:-17.507040px;}
._9{margin-left:-15.881400px;}
._8{margin-left:-14.337360px;}
._d{margin-left:-11.893920px;}
._4{margin-left:-10.246320px;}
._a{margin-left:-8.292000px;}
._b{margin-left:-6.511200px;}
._c{margin-left:-4.764000px;}
._6{margin-left:-3.638880px;}
._5{margin-left:-2.585520px;}
._0{margin-left:-1.104000px;}
._2{width:1.185840px;}
._3{width:2.573280px;}
._15{width:3.730560px;}
._13{width:5.187840px;}
._11{width:6.270720px;}
._10{width:7.330560px;}
._f{width:8.993280px;}
._e{width:10.002240px;}
._12{width:11.077440px;}
._1a{width:12.386880px;}
._1e{width:13.593600px;}
._16{width:16.162560px;}
._19{width:18.024960px;}
._1f{width:19.466880px;}
._18{width:20.887680px;}
._17{width:21.991680px;}
._20{width:23.161920px;}
._1c{width:25.731840px;}
._1b{width:26.760960px;}
._1d{width:27.966240px;}
._58{width:29.595840px;}
._21{width:31.066560px;}
._3d{width:39.097198px;}
._3c{width:49.764806px;}
._5a{width:54.869760px;}
._22{width:56.370240px;}
._2b{width:64.063138px;}
._42{width:65.842965px;}
._3b{width:70.878180px;}
._49{width:72.396644px;}
._45{width:75.169362px;}
._35{width:77.878455px;}
._3a{width:79.085247px;}
._47{width:83.335303px;}
._48{width:89.730702px;}
._2c{width:90.968944px;}
._57{width:114.355953px;}
._27{width:119.693760px;}
._28{width:120.888000px;}
._29{width:121.947840px;}
._26{width:123.868800px;}
._25{width:125.591040px;}
._23{width:130.227840px;}
._53{width:134.810641px;}
._2d{width:141.011279px;}
._31{width:142.550859px;}
._41{width:152.381137px;}
._39{width:159.882293px;}
._14{width:167.885760px;}
._37{width:185.199547px;}
._59{width:189.854421px;}
._3f{width:192.749838px;}
._34{width:198.168654px;}
._33{width:200.426878px;}
._32{width:221.896942px;}
._4f{width:228.209184px;}
._4e{width:229.414167px;}
._55{width:235.586636px;}
._4b{width:239.826211px;}
._52{width:241.331212px;}
._30{width:267.698055px;}
._43{width:272.917045px;}
._2e{width:310.839211px;}
._4a{width:313.466341px;}
._36{width:315.063368px;}
._38{width:319.161981px;}
._3e{width:324.047163px;}
._56{width:347.083735px;}
._2f{width:363.834093px;}
._2a{width:371.201760px;}
._5b{width:426.613920px;}
._40{width:448.373659px;}
._4d{width:490.954679px;}
._50{width:503.250433px;}
._24{width:527.800320px;}
._5c{width:589.167360px;}
._44{width:800.520971px;}
._1{width:849.185760px;}
._4c{width:1716.275691px;}
._46{width:1923.253284px;}
._51{width:1981.780354px;}
._54{width:2496.037945px;}
.fcf{color:rgb(0,176,80);}
.fce{color:rgb(5,99,193);}
.fcd{color:rgb(58,53,48);}
.fc5{color:rgb(16,138,66);}
.fc0{color:rgb(0,104,56);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(89,89,89);}
.fc7{color:rgb(242,242,242);}
.fc8{color:rgb(255,255,255);}
.fca{color:rgb(36,36,36);}
.fc2{color:rgb(12,92,53);}
.fc3{color:transparent;}
.fc4{color:rgb(171,98,46);}
.fc9{color:rgb(186,104,39);}
.fc10{color:rgb(255,0,0);}
.fcb{color:rgb(0,148,68);}
.fcc{color:rgb(0,52,27);}
.fsb{font-size:2.880000px;}
.fs10{font-size:26.769695px;}
.fs11{font-size:29.446665px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fse{font-size:43.678346px;}
.fsf{font-size:48.046180px;}
.fs3{font-size:48.240000px;}
.fs15{font-size:49.183014px;}
.fsd{font-size:52.414015px;}
.fs12{font-size:53.456218px;}
.fs8{font-size:54.000000px;}
.fs16{font-size:54.101315px;}
.fsc{font-size:54.973110px;}
.fs13{font-size:58.801840px;}
.fsa{font-size:59.760000px;}
.fs17{font-size:59.939437px;}
.fs14{font-size:64.147462px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs19{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.fs18{font-size:156.240000px;}
.y10{bottom:-54.570000px;}
.yf{bottom:-25.380000px;}
.y3c3{bottom:-21.240092px;}
.y3c5{bottom:-21.240075px;}
.y3c7{bottom:-21.240000px;}
.yc{bottom:-20.700000px;}
.y3b9{bottom:-19.620000px;}
.y3bd{bottom:-17.640092px;}
.y3c0{bottom:-14.400092px;}
.y3c2{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y230{bottom:0.180000px;}
.y3b8{bottom:0.540000px;}
.y231{bottom:0.900000px;}
.y22e{bottom:1.080000px;}
.y2a3{bottom:2.007727px;}
.y2aa{bottom:2.021112px;}
.y2c2{bottom:2.362426px;}
.y3bc{bottom:2.520000px;}
.y27a{bottom:3.275876px;}
.y284{bottom:3.275963px;}
.y2d5{bottom:3.341014px;}
.y2f8{bottom:3.381106px;}
.y1e6{bottom:3.748167px;}
.y205{bottom:3.779401px;}
.y1fb{bottom:3.785648px;}
.y288{bottom:3.854614px;}
.ye{bottom:4.140000px;}
.y314{bottom:4.340401px;}
.y2e{bottom:4.500000px;}
.y2f4{bottom:4.717511px;}
.y326{bottom:5.289655px;}
.y3bf{bottom:5.760000px;}
.y292{bottom:6.043259px;}
.y158{bottom:6.660000px;}
.y299{bottom:9.389471px;}
.y3bb{bottom:9.720000px;}
.y13{bottom:10.260000px;}
.y290{bottom:10.393334px;}
.y24{bottom:10.440000px;}
.y35{bottom:10.620000px;}
.y2a2{bottom:11.711742px;}
.y2a9{bottom:11.725127px;}
.y2d8{bottom:12.027649px;}
.y2fa{bottom:12.067741px;}
.yb{bottom:12.780000px;}
.y1ec{bottom:13.118583px;}
.y1bd{bottom:13.320000px;}
.y1cc{bottom:13.500000px;}
.y31c{bottom:13.531328px;}
.y2e1{bottom:14.032257px;}
.y2e8{bottom:14.058985px;}
.y296{bottom:14.074167px;}
.y3be{bottom:14.400000px;}
.y2ba{bottom:14.404773px;}
.y1e0{bottom:14.580000px;}
.y28e{bottom:14.743410px;}
.y16{bottom:15.120000px;}
.y19{bottom:15.300000px;}
.y120{bottom:15.660000px;}
.y32b{bottom:16.200000px;}
.y64{bottom:16.380000px;}
.y2c{bottom:16.560000px;}
.y3ae{bottom:16.590000px;}
.y68{bottom:16.605000px;}
.y29d{bottom:16.744444px;}
.y2b4{bottom:16.747121px;}
.y25f{bottom:16.958118px;}
.y308{bottom:17.250942px;}
.y15{bottom:17.640000px;}
.y39{bottom:18.000000px;}
.y2b2{bottom:18.754849px;}
.y36{bottom:18.900000px;}
.y295{bottom:19.093485px;}
.y302{bottom:19.095305px;}
.y28f{bottom:19.106870px;}
.y283{bottom:19.108927px;}
.y268{bottom:19.109276px;}
.y26f{bottom:19.131115px;}
.y279{bottom:19.135483px;}
.y8{bottom:20.340000px;}
.y33{bottom:20.520000px;}
.y3c4{bottom:20.700000px;}
.y2d0{bottom:20.754377px;}
.y3c1{bottom:21.240000px;}
.y3c6{bottom:21.420000px;}
.y29f{bottom:21.429141px;}
.y2bd{bottom:21.432273px;}
.y2a6{bottom:21.449218px;}
.y1fe{bottom:21.864305px;}
.y1ef{bottom:21.889293px;}
.y1f2{bottom:21.901787px;}
.y2c0{bottom:22.101516px;}
.y3a{bottom:22.320000px;}
.y2b{bottom:22.860000px;}
.y2b9{bottom:23.104924px;}
.y169{bottom:23.220000px;}
.y31e{bottom:23.271487px;}
.y294{bottom:23.443561px;}
.y291{bottom:23.456946px;}
.y25d{bottom:23.509869px;}
.y297{bottom:23.778182px;}
.y260{bottom:24.055849px;}
.y2d{bottom:24.480000px;}
.y1c7{bottom:24.660000px;}
.y306{bottom:25.857969px;}
.y18a{bottom:26.100000px;}
.y29c{bottom:26.448459px;}
.y2ae{bottom:26.451136px;}
.y2be{bottom:26.451591px;}
.y2a7{bottom:26.468536px;}
.y30a{bottom:27.087545px;}
.y2b1{bottom:27.475077px;}
.y315{bottom:27.702332px;}
.y157{bottom:27.720000px;}
.y129{bottom:28.080000px;}
.y3ac{bottom:28.110000px;}
.y298{bottom:28.810885px;}
.y2ce{bottom:29.441012px;}
.y2f5{bottom:30.109215px;}
.y22a{bottom:30.210000px;}
.y30{bottom:30.420000px;}
.y31{bottom:30.600000px;}
.y262{bottom:30.607601px;}
.y34{bottom:30.780000px;}
.y2bf{bottom:30.801667px;}
.y29e{bottom:31.133156px;}
.y2bc{bottom:31.136288px;}
.y3c{bottom:31.140000px;}
.y2a5{bottom:31.153233px;}
.y25e{bottom:31.175419px;}
.y2b8{bottom:31.825152px;}
.y38{bottom:32.760000px;}
.y31b{bottom:33.011645px;}
.y2e0{bottom:33.436864px;}
.y327{bottom:33.760888px;}
.y1cb{bottom:34.560000px;}
.y1ce{bottom:34.740000px;}
.y267{bottom:34.964516px;}
.y278{bottom:34.968883px;}
.y282{bottom:34.969626px;}
.y26e{bottom:34.997274px;}
.y304{bottom:35.079785px;}
.y301{bottom:35.104376px;}
.y286{bottom:36.061585px;}
.y29b{bottom:36.172551px;}
.y2ad{bottom:36.175228px;}
.y17b{bottom:36.540000px;}
.y17f{bottom:36.720000px;}
.y2d2{bottom:38.127648px;}
.y2cf{bottom:38.154376px;}
.y167{bottom:38.160000px;}
.y3{bottom:38.340000px;}
.y123{bottom:39.600000px;}
.y1a8{bottom:39.630000px;}
.ya8{bottom:39.780000px;}
.y3ad{bottom:39.810000px;}
.y1ee{bottom:40.005431px;}
.y1fa{bottom:40.017925px;}
.y2b7{bottom:40.525303px;}
.y2a1{bottom:40.857248px;}
.y2a8{bottom:40.870632px;}
.y178{bottom:41.040000px;}
.y320{bottom:42.751804px;}
.y31d{bottom:42.781774px;}
.y2dd{bottom:42.791703px;}
.y2f2{bottom:42.797957px;}
.y2e6{bottom:42.831795px;}
.y309{bottom:43.072024px;}
.y264{bottom:43.154205px;}
.y27e{bottom:43.159316px;}
.y26b{bottom:43.186964px;}
.y229{bottom:43.530000px;}
.y305{bottom:43.686812px;}
.y1c9{bottom:44.640000px;}
.y1c6{bottom:44.820000px;}
.y1d6{bottom:44.865000px;}
.y2b0{bottom:44.888764px;}
.y2ac{bottom:45.892627px;}
.y3b{bottom:45.900000px;}
.y1d{bottom:46.260000px;}
.y2d6{bottom:46.814283px;}
.y2f9{bottom:46.841011px;}
.y189{bottom:47.190000px;}
.y37{bottom:47.340000px;}
.y30c{bottom:48.592818px;}
.y312{bottom:48.598572px;}
.y1a1{bottom:48.600000px;}
.y30e{bottom:48.629705px;}
.y1a7{bottom:48.630000px;}
.y153{bottom:48.780000px;}
.y2b6{bottom:49.238839px;}
.y269{bottom:50.251936px;}
.y285{bottom:50.257047px;}
.y270{bottom:50.284695px;}
.y2a0{bottom:50.574647px;}
.y266{bottom:50.797916px;}
.y281{bottom:50.803026px;}
.y26d{bottom:50.830675px;}
.y277{bottom:50.835042px;}
.y3a9{bottom:51.120000px;}
.y7{bottom:51.300000px;}
.y12b{bottom:51.330000px;}
.y179{bottom:51.660000px;}
.y184{bottom:51.840000px;}
.y27c{bottom:51.927001px;}
.y2da{bottom:52.146541px;}
.y2ef{bottom:52.152795px;}
.y2e3{bottom:52.186633px;}
.y31a{bottom:52.521932px;}
.y2db{bottom:52.814744px;}
.y2f0{bottom:52.820998px;}
.y2e4{bottom:52.854836px;}
.y307{bottom:52.933218px;}
.ya{bottom:53.100000px;}
.y168{bottom:53.280000px;}
.y2af{bottom:53.588915px;}
.y1dd{bottom:54.900000px;}
.y2d4{bottom:55.527647px;}
.y2b3{bottom:55.596642px;}
.y3b7{bottom:55.620000px;}
.y10b{bottom:56.445000px;}
.y17e{bottom:57.780000px;}
.y188{bottom:57.810000px;}
.y2b5{bottom:57.938990px;}
.y1f9{bottom:58.159051px;}
.y2{bottom:58.500000px;}
.y272{bottom:59.024732px;}
.y324{bottom:59.227177px;}
.y16e{bottom:59.400000px;}
.y154{bottom:59.430000px;}
.y32a{bottom:61.560000px;}
.y2dc{bottom:62.169582px;}
.y2f1{bottom:62.175836px;}
.y2e5{bottom:62.209674px;}
.y2ed{bottom:62.215020px;}
.y126{bottom:62.820000px;}
.ya7{bottom:62.850000px;}
.y12c{bottom:63.030000px;}
.y2d7{bottom:64.214282px;}
.y1da{bottom:64.800000px;}
.y1ca{bottom:64.830000px;}
.y1c5{bottom:64.980000px;}
.y1d5{bottom:65.025000px;}
.y27b{bottom:66.122463px;}
.y310{bottom:66.463466px;}
.y17a{bottom:66.600000px;}
.y280{bottom:66.663725px;}
.y265{bottom:66.664075px;}
.y276{bottom:66.668443px;}
.y26c{bottom:66.685914px;}
.y165{bottom:69.840000px;}
.y156{bottom:69.870000px;}
.y10c{bottom:70.560000px;}
.y2ea{bottom:71.569858px;}
.y122{bottom:71.820000px;}
.y1a6{bottom:71.850000px;}
.y1a3{bottom:71.865000px;}
.y2df{bottom:72.232715px;}
.y2eb{bottom:72.238060px;}
.y182{bottom:72.900000px;}
.y2d3{bottom:72.900918px;}
.y1c0{bottom:75.060000px;}
.y1d0{bottom:75.105000px;}
.y1f8{bottom:76.275190px;}
.y1e{bottom:77.220000px;}
.y17d{bottom:78.840000px;}
.y1a0{bottom:80.820000px;}
.y322{bottom:80.999159px;}
.y2ec{bottom:81.592899px;}
.y275{bottom:82.523682px;}
.y27f{bottom:82.524425px;}
.y1d9{bottom:84.960000px;}
.y1c4{bottom:85.140000px;}
.y1d4{bottom:85.185000px;}
.y3aa{bottom:85.860000px;}
.ya6{bottom:86.070000px;}
.y16f{bottom:90.900000px;}
.y155{bottom:90.930000px;}
.y164{bottom:90.945000px;}
.y2de{bottom:91.610594px;}
.y2e7{bottom:91.637322px;}
.y183{bottom:93.960000px;}
.y22c{bottom:94.170000px;}
.y228{bottom:94.290000px;}
.y1f7{bottom:94.428810px;}
.y209{bottom:95.012275px;}
.y1bf{bottom:95.220000px;}
.y274{bottom:98.357082px;}
.y186{bottom:99.900000px;}
.y1d3{bottom:105.165000px;}
.y1c3{bottom:105.300000px;}
.y22b{bottom:107.490000px;}
.y16a{bottom:108.720000px;}
.ya5{bottom:109.290000px;}
.y60{bottom:110.700000px;}
.yfe{bottom:111.600000px;}
.y16c{bottom:111.990000px;}
.y163{bottom:112.005000px;}
.y19f{bottom:112.860000px;}
.y273{bottom:114.223241px;}
.y13c{bottom:115.740000px;}
.yfd{bottom:116.820000px;}
.y3a1{bottom:117.360000px;}
.y15c{bottom:118.125000px;}
.y95{bottom:124.560000px;}
.y1d2{bottom:125.325000px;}
.y1c2{bottom:125.460000px;}
.y1dc{bottom:125.490000px;}
.y2cc{bottom:126.720000px;}
.y18b{bottom:127.980000px;}
.y311{bottom:129.257594px;}
.y185{bottom:130.005000px;}
.y109{bottom:130.215000px;}
.ya4{bottom:132.330000px;}
.y16b{bottom:133.050000px;}
.y15a{bottom:133.065000px;}
.y1a9{bottom:133.380000px;}
.y13b{bottom:137.340000px;}
.y347{bottom:139.500000px;}
.yfc{bottom:140.400000px;}
.y3a0{bottom:140.580000px;}
.y1c8{bottom:142.020000px;}
.y5f{bottom:142.920000px;}
.y10a{bottom:144.330000px;}
.y19e{bottom:145.080000px;}
.y1d1{bottom:145.485000px;}
.yfb{bottom:145.620000px;}
.y15b{bottom:148.005000px;}
.y187{bottom:153.360000px;}
.y162{bottom:154.125000px;}
.ya3{bottom:155.550000px;}
.y1e3{bottom:155.700000px;}
.y94{bottom:156.780000px;}
.yec{bottom:157.500000px;}
.y2cb{bottom:158.940000px;}
.y39f{bottom:163.800000px;}
.y1c1{bottom:165.600000px;}
.y13a{bottom:168.120000px;}
.yfa{bottom:168.300000px;}
.y11d{bottom:172.620000px;}
.y5e{bottom:174.960000px;}
.y161{bottom:175.185000px;}
.y1a5{bottom:175.320000px;}
.y19d{bottom:177.300000px;}
.y93{bottom:179.820000px;}
.yb7{bottom:180.540000px;}
.y1e2{bottom:187.740000px;}
.ya2{bottom:187.770000px;}
.yeb{bottom:189.720000px;}
.y139{bottom:189.900000px;}
.y2ca{bottom:191.160000px;}
.y346{bottom:191.340000px;}
.y383{bottom:194.070000px;}
.y39e{bottom:195.870000px;}
.y160{bottom:196.245000px;}
.y364{bottom:197.850000px;}
.yb6{bottom:203.790000px;}
.y107{bottom:203.940000px;}
.y5d{bottom:204.150000px;}
.y11c{bottom:204.870000px;}
.y32{bottom:205.950000px;}
.y19c{bottom:209.520000px;}
.ya1{bottom:210.990000px;}
.y92{bottom:212.070000px;}
.yea{bottom:212.970000px;}
.y15f{bottom:217.305000px;}
.y108{bottom:218.085000px;}
.y1e1{bottom:219.990000px;}
.y138{bottom:220.710000px;}
.y1be{bottom:223.230000px;}
.y5c{bottom:224.310000px;}
.y345{bottom:225.030000px;}
.y382{bottom:226.290000px;}
.y363{bottom:229.890000px;}
.y208{bottom:230.699653px;}
.ya0{bottom:234.030000px;}
.y91{bottom:235.290000px;}
.yb5{bottom:235.830000px;}
.y30f{bottom:236.322473px;}
.y11b{bottom:237.090000px;}
.y15e{bottom:238.365000px;}
.y19b{bottom:241.590000px;}
.y137{bottom:242.310000px;}
.y5b{bottom:244.470000px;}
.ye9{bottom:245.010000px;}
.y1df{bottom:245.370000px;}
.y39d{bottom:253.110000px;}
.y2c9{bottom:255.450000px;}
.y166{bottom:256.890000px;}
.y9f{bottom:257.250000px;}
.y344{bottom:257.790000px;}
.y381{bottom:258.510000px;}
.y2f{bottom:259.050000px;}
.y15d{bottom:259.425000px;}
.y11a{bottom:260.130000px;}
.y362{bottom:262.830000px;}
.y5a{bottom:264.630000px;}
.y19a{bottom:264.810000px;}
.y226{bottom:265.170000px;}
.y90{bottom:267.330000px;}
.ye8{bottom:268.230000px;}
.y1a4{bottom:272.550000px;}
.y136{bottom:273.090000px;}
.y199{bottom:273.810000px;}
.y39c{bottom:276.150000px;}
.y104{bottom:277.710000px;}
.y9e{bottom:280.470000px;}
.yb4{bottom:282.270000px;}
.y106{bottom:283.170000px;}
.y119{bottom:283.350000px;}
.y59{bottom:284.790000px;}
.y1de{bottom:286.410000px;}
.y2c8{bottom:287.670000px;}
.y380{bottom:290.550000px;}
.ye7{bottom:291.450000px;}
.y135{bottom:294.870000px;}
.y361{bottom:296.490000px;}
.y198{bottom:297.030000px;}
.y225{bottom:297.390000px;}
.y39b{bottom:299.370000px;}
.y8f{bottom:299.550000px;}
.y105{bottom:300.450000px;}
.y318{bottom:301.710000px;}
.y9d{bottom:303.555000px;}
.y58{bottom:304.950000px;}
.y118{bottom:306.570000px;}
.yda{bottom:311.250000px;}
.y2a{bottom:312.150000px;}
.y227{bottom:313.200000px;}
.yb3{bottom:314.310000px;}
.y181{bottom:317.190000px;}
.y2c7{bottom:319.710000px;}
.y37f{bottom:322.770000px;}
.ye6{bottom:323.490000px;}
.y343{bottom:324.390000px;}
.y224{bottom:324.930000px;}
.y57{bottom:325.110000px;}
.y134{bottom:325.650000px;}
.y9c{bottom:326.775000px;}
.y360{bottom:328.530000px;}
.y117{bottom:329.610000px;}
.y39a{bottom:331.590000px;}
.y8e{bottom:331.770000px;}
.y317{bottom:333.750000px;}
.yd9{bottom:334.470000px;}
.yb2{bottom:337.530000px;}
.y159{bottom:341.850000px;}
.ye5{bottom:346.710000px;}
.y133{bottom:347.250000px;}
.y102{bottom:351.435000px;}
.y2c6{bottom:351.930000px;}
.y399{bottom:354.630000px;}
.y37e{bottom:354.990000px;}
.yd8{bottom:357.510000px;}
.y29{bottom:357.690000px;}
.y342{bottom:357.870000px;}
.y9b{bottom:358.995000px;}
.yb1{bottom:360.750000px;}
.y1a2{bottom:360.930000px;}
.y316{bottom:361.290000px;}
.y35f{bottom:361.470000px;}
.y116{bottom:361.830000px;}
.y323{bottom:362.431160px;}
.y8d{bottom:363.810000px;}
.y103{bottom:365.580000px;}
.y1e4{bottom:365.610000px;}
.y207{bottom:367.075562px;}
.y56{bottom:369.570000px;}
.ye4{bottom:369.930000px;}
.y398{bottom:377.850000px;}
.y132{bottom:378.030000px;}
.y22d{bottom:378.930000px;}
.y30d{bottom:379.081089px;}
.y22f{bottom:379.830000px;}
.yd7{bottom:380.730000px;}
.y341{bottom:381.090000px;}
.y28c{bottom:381.495000px;}
.y2bb{bottom:382.022274px;}
.y2c5{bottom:384.150000px;}
.y206{bottom:385.223310px;}
.y37d{bottom:387.030000px;}
.yf9{bottom:389.910000px;}
.y28{bottom:390.450000px;}
.y9a{bottom:391.035000px;}
.y115{bottom:392.610000px;}
.yb0{bottom:392.790000px;}
.ye3{bottom:392.970000px;}
.y35e{bottom:394.950000px;}
.y8c{bottom:396.030000px;}
.y131{bottom:399.810000px;}
.y397{bottom:401.070000px;}
.y204{bottom:403.339448px;}
.yd6{bottom:403.950000px;}
.y3b5{bottom:405.030000px;}
.y1bc{bottom:405.390000px;}
.y2f6{bottom:411.870000px;}
.yf8{bottom:412.950000px;}
.y340{bottom:415.110000px;}
.ye2{bottom:416.190000px;}
.y2c4{bottom:416.370000px;}
.y114{bottom:417.630000px;}
.y55{bottom:417.990000px;}
.y8b{bottom:419.250000px;}
.y203{bottom:421.486821px;}
.y396{bottom:424.110000px;}
.yaf{bottom:425.010000px;}
.y100{bottom:425.190000px;}
.yd5{bottom:426.990000px;}
.y35d{bottom:427.170000px;}
.y130{bottom:432.075000px;}
.y27{bottom:432.255000px;}
.yf7{bottom:436.215000px;}
.y3b4{bottom:437.295000px;}
.y101{bottom:439.305000px;}
.y2ab{bottom:440.296341px;}
.y8a{bottom:442.335000px;}
.y25b{bottom:443.415000px;}
.y2c3{bottom:443.955000px;}
.y27d{bottom:444.066099px;}
.y2ee{bottom:444.843423px;}
.y54{bottom:447.195000px;}
.y395{bottom:447.375000px;}
.yae{bottom:448.275000px;}
.yd4{bottom:450.255000px;}
.y37c{bottom:451.515000px;}
.y33f{bottom:452.415000px;}
.ye1{bottom:453.315000px;}
.y12f{bottom:455.115000px;}
.y202{bottom:457.750333px;}
.y197{bottom:458.175000px;}
.yf6{bottom:459.435000px;}
.y35c{bottom:460.155000px;}
.y223{bottom:462.315000px;}
.y89{bottom:465.555000px;}
.y53{bottom:467.355000px;}
.y3b3{bottom:469.335000px;}
.y394{bottom:470.595000px;}
.y180{bottom:471.315000px;}
.y145{bottom:473.115000px;}
.yd3{bottom:473.475000px;}
.yad{bottom:480.495000px;}
.y26{bottom:481.755000px;}
.y246{bottom:481.935000px;}
.yf5{bottom:482.655000px;}
.y37b{bottom:483.735000px;}
.y222{bottom:485.535000px;}
.y30b{bottom:486.177101px;}
.y33e{bottom:486.615000px;}
.y52{bottom:487.335000px;}
.y88{bottom:488.775000px;}
.y6{bottom:489.495000px;}
.y321{bottom:492.911344px;}
.ye0{bottom:492.915000px;}
.y35b{bottom:493.275000px;}
.y393{bottom:493.635000px;}
.y201{bottom:494.010097px;}
.y25{bottom:498.135000px;}
.yac{bottom:503.535000px;}
.y144{bottom:505.335000px;}
.yd2{bottom:505.515000px;}
.yf4{bottom:505.695000px;}
.y51{bottom:507.495000px;}
.y221{bottom:508.575000px;}
.y3b2{bottom:509.655000px;}
.y87{bottom:511.995000px;}
.y12e{bottom:512.715000px;}
.y245{bottom:514.155000px;}
.y37a{bottom:515.775000px;}
.ydf{bottom:516.135000px;}
.y2a4{bottom:517.998059px;}
.y1bb{bottom:520.815000px;}
.y33d{bottom:520.995000px;}
.y392{bottom:525.855000px;}
.y35a{bottom:526.395000px;}
.yab{bottom:526.755000px;}
.y50{bottom:527.655000px;}
.yd1{bottom:528.735000px;}
.y2fe{bottom:529.050500px;}
.y200{bottom:530.279855px;}
.y23{bottom:531.075000px;}
.y220{bottom:531.795000px;}
.y86{bottom:535.035000px;}
.y257{bottom:537.195000px;}
.y143{bottom:537.555000px;}
.yf3{bottom:537.915000px;}
.y379{bottom:538.995000px;}
.y271{bottom:539.148048px;}
.yde{bottom:539.175000px;}
.y3b1{bottom:541.875000px;}
.y244{bottom:546.195000px;}
.y1ff{bottom:548.395994px;}
.y1db{bottom:549.795000px;}
.yaa{bottom:549.975000px;}
.yd0{bottom:551.955000px;}
.y1ba{bottom:553.035000px;}
.y391{bottom:558.075000px;}
.y85{bottom:558.255000px;}
.y359{bottom:559.335000px;}
.y142{bottom:560.595000px;}
.yf2{bottom:561.135000px;}
.y2e9{bottom:561.210500px;}
.y22{bottom:564.015000px;}
.y1fd{bottom:566.537120px;}
.y256{bottom:569.415000px;}
.y378{bottom:571.215000px;}
.ydd{bottom:571.395000px;}
.y4f{bottom:572.115000px;}
.y3b0{bottom:574.095000px;}
.y17c{bottom:574.275000px;}
.ycf{bottom:574.995000px;}
.y29a{bottom:576.289070px;}
.y12d{bottom:577.875000px;}
.y243{bottom:578.415000px;}
.y9{bottom:581.475000px;}
.ya9{bottom:582.015000px;}
.y33c{bottom:582.915000px;}
.y1b9{bottom:583.815000px;}
.yf0{bottom:584.175000px;}
.y21f{bottom:587.055000px;}
.yf1{bottom:590.115000px;}
.y84{bottom:590.475000px;}
.y255{bottom:592.635000px;}
.y141{bottom:592.815000px;}
.y358{bottom:592.995000px;}
.y303{bottom:593.236226px;}
.y377{bottom:594.255000px;}
.yce{bottom:598.215000px;}
.y3af{bottom:599.475000px;}
.ydc{bottom:602.175000px;}
.y33b{bottom:604.875000px;}
.y1b8{bottom:605.415000px;}
.y21{bottom:605.775000px;}
.y99{bottom:607.395000px;}
.y242{bottom:610.635000px;}
.y83{bottom:613.515000px;}
.y254{bottom:615.675000px;}
.y152{bottom:616.395000px;}
.y376{bottom:617.475000px;}
.y6f{bottom:618.915000px;}
.y21e{bottom:619.275000px;}
.y12a{bottom:619.635000px;}
.y4e{bottom:620.535000px;}
.y1fc{bottom:620.923017px;}
.ycd{bottom:621.435000px;}
.y390{bottom:623.235000px;}
.y140{bottom:623.595000px;}
.y357{bottom:624.135000px;}
.ydb{bottom:626.835000px;}
.y1b7{bottom:627.195000px;}
.y293{bottom:634.560005px;}
.yef{bottom:639.615000px;}
.y375{bottom:640.695000px;}
.y21d{bottom:642.495000px;}
.y241{bottom:642.675000px;}
.y6e{bottom:644.295000px;}
.y82{bottom:645.735000px;}
.y253{bottom:647.895000px;}
.y13f{bottom:648.435000px;}
.y1b6{bottom:648.975000px;}
.y4d{bottom:650.055000px;}
.ycc{bottom:653.655000px;}
.y20{bottom:655.275000px;}
.y38f{bottom:655.455000px;}
.y356{bottom:657.615000px;}
.y3ab{bottom:664.455000px;}
.y21c{bottom:665.535000px;}
.y26a{bottom:665.928814px;}
.y33a{bottom:666.435000px;}
.yee{bottom:670.425000px;}
.y252{bottom:671.145000px;}
.y1f{bottom:671.685000px;}
.y300{bottom:673.220102px;}
.y240{bottom:674.925000px;}
.y1f6{bottom:675.296420px;}
.y4c{bottom:676.545000px;}
.ycb{bottom:676.725000px;}
.y177{bottom:677.445000px;}
.y81{bottom:677.985000px;}
.y28d{bottom:678.094222px;}
.y38e{bottom:678.525000px;}
.y374{bottom:678.885000px;}
.y1b5{bottom:679.785000px;}
.yff{bottom:683.280000px;}
.y2fd{bottom:684.212519px;}
.y6d{bottom:686.265000px;}
.y355{bottom:690.585000px;}
.y1d8{bottom:691.665000px;}
.y251{bottom:694.185000px;}
.yed{bottom:695.085000px;}
.y21b{bottom:697.785000px;}
.y23f{bottom:698.145000px;}
.y4b{bottom:698.505000px;}
.yca{bottom:699.945000px;}
.yd{bottom:700.125000px;}
.y80{bottom:701.025000px;}
.y1b4{bottom:701.385000px;}
.y339{bottom:708.585000px;}
.y38d{bottom:710.745000px;}
.y2c1{bottom:712.928288px;}
.y2e2{bottom:716.372519px;}
.y21a{bottom:721.005000px;}
.y23e{bottom:721.185000px;}
.y354{bottom:721.365000px;}
.y151{bottom:722.445000px;}
.yc9{bottom:723.165000px;}
.y7f{bottom:724.245000px;}
.y4a{bottom:725.865000px;}
.y250{bottom:726.405000px;}
.y6c{bottom:728.205000px;}
.y338{bottom:728.745000px;}
.y3a8{bottom:729.645000px;}
.y128{bottom:731.085000px;}
.y38c{bottom:733.965000px;}
.y313{bottom:737.219499px;}
.y28b{bottom:738.690000px;}
.y219{bottom:744.225000px;}
.y1b3{bottom:744.945000px;}
.yc8{bottom:746.205000px;}
.y7e{bottom:747.465000px;}
.y337{bottom:748.905000px;}
.y24f{bottom:749.625000px;}
.y373{bottom:749.985000px;}
.y353{bottom:753.225000px;}
.y23d{bottom:753.405000px;}
.y38b{bottom:757.005000px;}
.y49{bottom:760.425000px;}
.y263{bottom:761.038411px;}
.y218{bottom:767.265000px;}
.y176{bottom:768.345000px;}
.y335{bottom:769.065000px;}
.yc7{bottom:769.425000px;}
.y6b{bottom:769.965000px;}
.y372{bottom:770.145000px;}
.y7d{bottom:770.505000px;}
.y28a{bottom:770.910000px;}
.y1c{bottom:771.225000px;}
.y24e{bottom:772.665000px;}
.y336{bottom:775.005000px;}
.y1b2{bottom:775.725000px;}
.y23c{bottom:776.625000px;}
.y150{bottom:777.525000px;}
.y38a{bottom:780.225000px;}
.y196{bottom:780.585000px;}
.y1f5{bottom:784.093202px;}
.y113{bottom:785.085000px;}
.y352{bottom:785.265000px;}
.y334{bottom:789.225000px;}
.y371{bottom:790.305000px;}
.y217{bottom:790.485000px;}
.y1d7{bottom:793.005000px;}
.y7c{bottom:793.725000px;}
.y48{bottom:794.985000px;}
.y127{bottom:796.245000px;}
.y1b1{bottom:797.505000px;}
.y23b{bottom:799.665000px;}
.y2fc{bottom:800.613434px;}
.yc6{bottom:801.645000px;}
.y389{bottom:803.445000px;}
.y24d{bottom:804.885000px;}
.y14f{bottom:806.685000px;}
.y112{bottom:808.305000px;}
.y333{bottom:809.385000px;}
.y36f{bottom:810.465000px;}
.y6a{bottom:811.905000px;}
.y370{bottom:816.405000px;}
.y7b{bottom:816.945000px;}
.y351{bottom:817.125000px;}
.y1f4{bottom:820.350467px;}
.y216{bottom:822.705000px;}
.y23a{bottom:822.885000px;}
.y175{bottom:823.245000px;}
.y289{bottom:824.220000px;}
.yc5{bottom:824.685000px;}
.y24c{bottom:828.105000px;}
.y47{bottom:828.465000px;}
.y332{bottom:829.365000px;}
.y1b0{bottom:829.545000px;}
.y36e{bottom:830.625000px;}
.y111{bottom:831.525000px;}
.y2d9{bottom:832.773434px;}
.y388{bottom:835.665000px;}
.y195{bottom:837.645000px;}
.y125{bottom:838.185000px;}
.y14e{bottom:838.905000px;}
.y3a7{bottom:841.065000px;}
.y215{bottom:845.745000px;}
.y239{bottom:846.105000px;}
.yc4{bottom:847.905000px;}
.y7a{bottom:848.985000px;}
.y350{bottom:849.165000px;}
.y331{bottom:849.525000px;}
.y36d{bottom:850.785000px;}
.y24b{bottom:851.145000px;}
.y174{bottom:852.585000px;}
.y46{bottom:853.125000px;}
.y69{bottom:853.845000px;}
.y110{bottom:854.565000px;}
.y261{bottom:856.115250px;}
.y1f3{bottom:856.620226px;}
.y387{bottom:861.045000px;}
.y1af{bottom:861.765000px;}
.y14d{bottom:862.125000px;}
.y194{bottom:866.985000px;}
.y214{bottom:868.965000px;}
.y330{bottom:869.685000px;}
.y36c{bottom:870.945000px;}
.yc3{bottom:871.125000px;}
.y79{bottom:872.205000px;}
.y1cf{bottom:874.365000px;}
.y1b{bottom:875.625000px;}
.y45{bottom:877.785000px;}
.y238{bottom:878.145000px;}
.y34f{bottom:881.025000px;}
.y24a{bottom:883.365000px;}
.y173{bottom:884.625000px;}
.y14c{bottom:885.165000px;}
.y10f{bottom:886.785000px;}
.y32f{bottom:889.845000px;}
.y36b{bottom:891.105000px;}
.y213{bottom:892.185000px;}
.y1f1{bottom:892.877490px;}
.y1ae{bottom:893.985000px;}
.yc2{bottom:894.165000px;}
.y78{bottom:895.425000px;}
.y67{bottom:895.785000px;}
.y3a6{bottom:899.385000px;}
.y237{bottom:901.365000px;}
.y193{bottom:902.625000px;}
.y44{bottom:902.805000px;}
.y249{bottom:906.630000px;}
.y172{bottom:907.890000px;}
.y14b{bottom:908.430000px;}
.y32e{bottom:910.050000px;}
.y36a{bottom:911.310000px;}
.y1a{bottom:913.290000px;}
.y212{bottom:915.270000px;}
.y34e{bottom:916.350000px;}
.y2fb{bottom:916.974257px;}
.yc1{bottom:917.430000px;}
.y10e{bottom:917.610000px;}
.y77{bottom:918.510000px;}
.y1ad{bottom:919.410000px;}
.y3a5{bottom:922.650000px;}
.y236{bottom:924.630000px;}
.y386{bottom:926.070000px;}
.y124{bottom:926.430000px;}
.y25c{bottom:927.147159px;}
.y31f{bottom:927.882851px;}
.y1f0{bottom:929.147249px;}
.y43{bottom:929.310000px;}
.y248{bottom:929.670000px;}
.y32d{bottom:930.210000px;}
.y369{bottom:931.470000px;}
.y66{bottom:937.770000px;}
.y192{bottom:939.390000px;}
.y171{bottom:940.110000px;}
.yc0{bottom:940.650000px;}
.y76{bottom:941.730000px;}
.y10d{bottom:942.450000px;}
.y14a{bottom:945.510000px;}
.y1ed{bottom:947.263387px;}
.y235{bottom:947.670000px;}
.y2d1{bottom:949.134257px;}
.y34d{bottom:950.010000px;}
.y211{bottom:951.090000px;}
.y368{bottom:951.450000px;}
.y3a4{bottom:954.870000px;}
.y18{bottom:955.770000px;}
.y42{bottom:956.670000px;}
.y1ac{bottom:961.350000px;}
.y247{bottom:961.890000px;}
.y191{bottom:962.610000px;}
.ybf{bottom:963.690000px;}
.y75{bottom:964.950000px;}
.y170{bottom:965.490000px;}
.y32c{bottom:968.370000px;}
.y234{bottom:970.890000px;}
.y367{bottom:971.610000px;}
.y65{bottom:979.710000px;}
.y34c{bottom:982.230000px;}
.y287{bottom:983.983606px;}
.y149{bottom:985.110000px;}
.y190{bottom:985.650000px;}
.ybe{bottom:986.910000px;}
.y210{bottom:987.810000px;}
.y74{bottom:987.990000px;}
.y41{bottom:990.510000px;}
.y385{bottom:991.230000px;}
.y121{bottom:991.590000px;}
.y233{bottom:994.110000px;}
.y17{bottom:998.430000px;}
.y1eb{bottom:1001.674272px;}
.y2f7{bottom:1003.907432px;}
.y329{bottom:1006.710000px;}
.y148{bottom:1008.150000px;}
.y366{bottom:1009.770000px;}
.y20f{bottom:1010.850000px;}
.y34b{bottom:1015.170000px;}
.y25a{bottom:1015.710000px;}
.y13e{bottom:1016.070000px;}
.y40{bottom:1016.970000px;}
.y232{bottom:1017.150000px;}
.y18f{bottom:1017.870000px;}
.y73{bottom:1020.210000px;}
.y63{bottom:1021.650000px;}
.ybd{bottom:1023.990000px;}
.y319{bottom:1025.359361px;}
.y147{bottom:1031.370000px;}
.y20e{bottom:1034.070000px;}
.y2cd{bottom:1036.067432px;}
.y1cd{bottom:1036.230000px;}
.y1ea{bottom:1037.931537px;}
.ybc{bottom:1039.110000px;}
.y98{bottom:1040.370000px;}
.y14{bottom:1040.910000px;}
.y18e{bottom:1041.090000px;}
.y72{bottom:1043.430000px;}
.y3f{bottom:1044.150000px;}
.y365{bottom:1048.110000px;}
.y34a{bottom:1048.290000px;}
.y16d{bottom:1050.450000px;}
.y259{bottom:1052.970000px;}
.y146{bottom:1054.590000px;}
.y1e9{bottom:1056.047675px;}
.y384{bottom:1056.210000px;}
.y3a3{bottom:1056.390000px;}
.y20d{bottom:1057.290000px;}
.y1ab{bottom:1058.550000px;}
.ybb{bottom:1062.330000px;}
.y62{bottom:1063.410000px;}
.y97{bottom:1063.590000px;}
.y18d{bottom:1064.130000px;}
.y71{bottom:1066.650000px;}
.y13d{bottom:1071.330000px;}
.y3b6{bottom:1073.310000px;}
.y2ff{bottom:1073.467336px;}
.y1e8{bottom:1074.201296px;}
.y3a2{bottom:1076.550000px;}
.y3e{bottom:1078.890000px;}
.y20c{bottom:1080.330000px;}
.y349{bottom:1081.950000px;}
.y258{bottom:1082.310000px;}
.y12{bottom:1083.390000px;}
.y96{bottom:1086.810000px;}
.y11f{bottom:1088.790000px;}
.y70{bottom:1089.690000px;}
.y1e7{bottom:1092.317434px;}
.yba{bottom:1094.550000px;}
.y18c{bottom:1101.210000px;}
.y325{bottom:1103.355554px;}
.y20b{bottom:1103.550000px;}
.y2f3{bottom:1105.627336px;}
.y348{bottom:1107.150000px;}
.y5{bottom:1108.590000px;}
.y1e5{bottom:1110.458560px;}
.y1aa{bottom:1114.530000px;}
.yb9{bottom:1117.590000px;}
.y11{bottom:1124.970000px;}
.y3d{bottom:1127.490000px;}
.y61{bottom:1127.850000px;}
.y3ba{bottom:1128.210000px;}
.y4{bottom:1131.810000px;}
.y328{bottom:1136.490000px;}
.y20a{bottom:1139.370000px;}
.yb8{bottom:1140.810000px;}
.y11e{bottom:1143.690000px;}
.y1{bottom:1194.120000px;}
.h6a{height:9.051503px;}
.h52{height:11.700000px;}
.h53{height:12.420000px;}
.h51{height:12.600000px;}
.h97{height:14.400000px;}
.h96{height:14.580000px;}
.h5e{height:14.768741px;}
.h92{height:16.200000px;}
.h7d{height:16.630007px;}
.h46{height:17.491444px;}
.h48{height:17.522679px;}
.h74{height:18.074884px;}
.h94{height:18.180000px;}
.h85{height:20.267022px;}
.h95{height:21.420000px;}
.h64{height:26.625913px;}
.h62{height:27.410181px;}
.h66{height:29.288504px;}
.h6b{height:30.151199px;}
.h9{height:30.240000px;}
.hb{height:32.040000px;}
.h11{height:32.220000px;}
.h93{height:33.156000px;}
.h61{height:34.499445px;}
.h5a{height:35.119693px;}
.h49{height:35.638817px;}
.he{height:36.936000px;}
.h3c{height:38.016000px;}
.h3f{height:38.196000px;}
.h22{height:38.671172px;}
.h26{height:39.060000px;}
.h45{height:40.320000px;}
.h1c{height:41.040000px;}
.h1b{height:41.220000px;}
.h1d{height:41.256000px;}
.h21{height:41.535703px;}
.hc{height:41.580000px;}
.hd{height:41.760000px;}
.h8a{height:42.759141px;}
.h63{height:43.199596px;}
.h20{height:43.400391px;}
.h5d{height:43.443745px;}
.h12{height:44.640000px;}
.h56{height:44.723384px;}
.h59{height:47.788120px;}
.h50{height:47.980898px;}
.h65{height:48.027291px;}
.h79{height:48.918847px;}
.h16{height:49.394180px;}
.h76{height:50.359756px;}
.h13{height:52.200000px;}
.h14{height:52.380000px;}
.h6f{height:53.169100px;}
.h2{height:53.237812px;}
.h8f{height:53.302500px;}
.h8c{height:53.367187px;}
.h55{height:53.668061px;}
.h25{height:53.709961px;}
.h4c{height:53.754956px;}
.h4a{height:53.786190px;}
.h78{height:53.810732px;}
.h47{height:54.677844px;}
.h6d{height:54.735200px;}
.h3b{height:55.260000px;}
.h7e{height:55.395731px;}
.h54{height:56.290468px;}
.h67{height:57.939659px;}
.h68{height:57.956391px;}
.h71{height:58.486010px;}
.h23{height:59.439023px;}
.h82{height:59.617497px;}
.h27{height:61.189805px;}
.h80{height:61.373535px;}
.h75{height:63.384609px;}
.h29{height:64.260000px;}
.h8e{height:64.296000px;}
.h2b{height:64.440000px;}
.h91{height:64.476000px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h37{height:68.554688px;}
.h6c{height:68.891701px;}
.h17{height:70.380000px;}
.h57{height:70.485930px;}
.h6{height:71.613281px;}
.h15{height:73.440000px;}
.h7f{height:77.246950px;}
.h69{height:77.364420px;}
.h5{height:77.400000px;}
.h77{height:79.369088px;}
.h1f{height:80.208984px;}
.h3e{height:80.496000px;}
.h40{height:80.640000px;}
.h35{height:81.180000px;}
.h36{height:81.216000px;}
.h8b{height:83.787539px;}
.h2f{height:84.240000px;}
.h19{height:86.255508px;}
.h6e{height:86.264972px;}
.h3a{height:87.480000px;}
.h2a{height:87.516000px;}
.h31{height:90.000000px;}
.h18{height:91.177734px;}
.h7{height:93.636000px;}
.h58{height:94.536319px;}
.h5b{height:94.563618px;}
.h28{height:96.480000px;}
.h39{height:96.516000px;}
.h81{height:96.727267px;}
.h10{height:98.820000px;}
.h42{height:100.620000px;}
.h44{height:100.800000px;}
.h33{height:102.240000px;}
.h32{height:102.276000px;}
.hf{height:103.680000px;}
.h2d{height:105.336000px;}
.h7a{height:106.450485px;}
.h7b{height:106.481225px;}
.h88{height:107.419922px;}
.h86{height:107.640000px;}
.h8d{height:107.676000px;}
.h4b{height:108.165841px;}
.h90{height:110.520000px;}
.h2c{height:110.736000px;}
.h1a{height:114.486328px;}
.h70{height:115.699302px;}
.h72{height:115.732712px;}
.h89{height:119.594180px;}
.ha{height:125.455078px;}
.h5c{height:126.230418px;}
.h84{height:129.731420px;}
.h8{height:131.052305px;}
.h4f{height:132.660000px;}
.h43{height:140.976000px;}
.h7c{height:142.138910px;}
.h30{height:147.456000px;}
.h34{height:153.390000px;}
.h73{height:154.488471px;}
.h87{height:159.978164px;}
.h41{height:161.130000px;}
.h83{height:173.224974px;}
.h3d{height:181.260000px;}
.h4e{height:198.815249px;}
.h2e{height:273.810000px;}
.h38{height:321.690000px;}
.h1e{height:415.695000px;}
.h4d{height:470.769723px;}
.h24{height:473.220000px;}
.h5f{height:892.980000px;}
.h60{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w37{width:35.482943px;}
.w35{width:35.499680px;}
.w39{width:43.868299px;}
.w28{width:44.280000px;}
.w36{width:46.546257px;}
.w38{width:51.567428px;}
.w27{width:59.404016px;}
.w29{width:61.560000px;}
.w48{width:65.212792px;}
.w4c{width:65.243538px;}
.w3a{width:66.630941px;}
.w45{width:70.885779px;}
.w46{width:70.919184px;}
.w41{width:70.922221px;}
.w2c{width:71.037283px;}
.w19{width:73.260000px;}
.w2a{width:73.656000px;}
.wd{width:76.140000px;}
.w4a{width:76.896366px;}
.w53{width:78.810436px;}
.w4b{width:81.815766px;}
.w40{width:86.998370px;}
.w2d{width:89.083265px;}
.w58{width:89.640000px;}
.w50{width:93.800533px;}
.w62{width:99.000000px;}
.w64{width:99.036000px;}
.w63{width:99.180000px;}
.w61{width:99.216000px;}
.w52{width:102.794591px;}
.w51{width:103.581571px;}
.w2e{width:104.371842px;}
.w5f{width:115.020000px;}
.w3c{width:125.897498px;}
.we{width:126.936000px;}
.w2f{width:127.310169px;}
.w1f{width:130.680000px;}
.w3b{width:138.303138px;}
.w1a{width:145.296000px;}
.w59{width:151.590000px;}
.w60{width:151.950000px;}
.w1c{width:162.750000px;}
.w9{width:168.510000px;}
.w8{width:168.690000px;}
.wa{width:169.050000px;}
.wb{width:171.390000px;}
.w6{width:171.930000px;}
.w24{width:182.550000px;}
.w56{width:189.145045px;}
.w13{width:190.290000px;}
.w5c{width:193.890000px;}
.w4f{width:196.898973px;}
.w5a{width:202.710000px;}
.w3{width:210.135000px;}
.w5b{width:211.935000px;}
.w5e{width:212.475000px;}
.w1e{width:213.375000px;}
.w23{width:235.335000px;}
.wf{width:237.270000px;}
.w10{width:237.855000px;}
.w5{width:252.975000px;}
.w22{width:260.310000px;}
.w5d{width:271.110000px;}
.w21{width:273.315000px;}
.w20{width:273.495000px;}
.w1d{width:301.350000px;}
.w18{width:339.015000px;}
.w17{width:339.195000px;}
.w12{width:352.875000px;}
.w3e{width:382.399006px;}
.w1b{width:435.165000px;}
.w30{width:465.045766px;}
.w43{width:473.701613px;}
.w4{width:485.205000px;}
.w14{width:487.725000px;}
.w55{width:491.570255px;}
.w7{width:507.705000px;}
.wc{width:508.245000px;}
.w11{width:524.805000px;}
.w54{width:534.362777px;}
.w26{width:618.963613px;}
.w44{width:619.299352px;}
.w57{width:636.405000px;}
.w3f{width:643.647565px;}
.w47{width:645.387956px;}
.w15{width:678.930000px;}
.w25{width:679.604431px;}
.w2b{width:685.253979px;}
.w4e{width:697.792249px;}
.w42{width:704.543082px;}
.w16{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w49{width:937.712255px;}
.w4d{width:961.127715px;}
.w34{width:1017.265845px;}
.w3d{width:1047.771133px;}
.w33{width:1262.879981px;}
.w31{width:1262.880000px;}
.w32{width:1263.000000px;}
.x97{left:-55.547941px;}
.x95{left:-53.542600px;}
.x7a{left:-29.809019px;}
.xa7{left:-20.744613px;}
.xbc{left:-15.739602px;}
.xad{left:-11.714321px;}
.xa8{left:-6.012931px;}
.xa9{left:-4.676724px;}
.xa3{left:-1.336207px;}
.x0{left:0.000000px;}
.x61{left:1.873944px;}
.x7c{left:3.682192px;}
.x5e{left:4.860000px;}
.x9c{left:6.016023px;}
.x7e{left:7.029640px;}
.x9{left:8.100000px;}
.x4e{left:9.540000px;}
.x6{left:10.800000px;}
.xd{left:12.060000px;}
.x63{left:13.742254px;}
.x57{left:15.120000px;}
.x8f{left:16.737237px;}
.x18{left:18.360000px;}
.x5b{left:20.160000px;}
.x53{left:21.240000px;}
.x17{left:22.860000px;}
.x5a{left:24.120000px;}
.x1c{left:25.200000px;}
.x15{left:26.460000px;}
.x14{left:27.720000px;}
.x4d{left:29.160000px;}
.x54{left:31.680000px;}
.x4a{left:32.934000px;}
.x4b{left:34.920000px;}
.x59{left:36.180000px;}
.x56{left:37.620000px;}
.xb9{left:39.049203px;}
.xc1{left:40.674000px;}
.x1a{left:41.940000px;}
.x74{left:44.806452px;}
.xf{left:47.160000px;}
.x52{left:48.954000px;}
.x26{left:50.394000px;}
.x11{left:51.660000px;}
.x4c{left:58.860000px;}
.xc3{left:60.345000px;}
.x62{left:61.902608px;}
.x6c{left:63.179987px;}
.x55{left:64.440000px;}
.x1f{left:68.400000px;}
.xb6{left:71.362042px;}
.xa1{left:75.601350px;}
.x29{left:78.474000px;}
.x1b{left:80.280000px;}
.x2c{left:82.614000px;}
.x2b{left:84.954000px;}
.x13{left:86.265000px;}
.x2a{left:89.994000px;}
.x2d{left:91.074000px;}
.xc6{left:92.694000px;}
.x20{left:93.825000px;}
.x51{left:95.265000px;}
.xc9{left:99.576000px;}
.x16{left:100.665000px;}
.x19{left:101.880000px;}
.x4{left:106.415987px;}
.x36{left:111.275987px;}
.x3b{left:116.891987px;}
.x4f{left:118.440000px;}
.x37{left:119.591987px;}
.x3c{left:121.211987px;}
.x39{left:122.831987px;}
.xbe{left:125.994000px;}
.x1e{left:128.205000px;}
.x3a{left:129.671987px;}
.xac{left:130.977745px;}
.x40{left:132.294000px;}
.x43{left:133.415987px;}
.x79{left:137.497998px;}
.x42{left:140.400000px;}
.x58{left:144.900000px;}
.x23{left:148.895987px;}
.x8a{left:153.565746px;}
.x44{left:160.409987px;}
.x92{left:165.745512px;}
.x49{left:167.430000px;}
.x94{left:168.582411px;}
.x38{left:176.144987px;}
.x98{left:178.609115px;}
.x76{left:180.350612px;}
.xe{left:183.270000px;}
.x65{left:189.179987px;}
.x48{left:192.990000px;}
.xb8{left:201.649542px;}
.x28{left:204.510000px;}
.xc2{left:207.930000px;}
.xbd{left:216.127220px;}
.x7b{left:220.531432px;}
.x5c{left:238.530000px;}
.x99{left:250.199783px;}
.x8b{left:256.369204px;}
.xaa{left:264.836217px;}
.x3{left:271.514987px;}
.xa{left:279.075000px;}
.x27{left:298.335000px;}
.xa0{left:299.731611px;}
.xc7{left:301.755000px;}
.xba{left:305.988113px;}
.x3f{left:307.694987px;}
.x10{left:310.935000px;}
.x3e{left:315.434987px;}
.x66{left:320.504987px;}
.x35{left:322.454987px;}
.x6d{left:326.560118px;}
.x30{left:329.114987px;}
.x31{left:333.974973px;}
.x32{left:339.194987px;}
.xa4{left:350.453677px;}
.x6a{left:355.215000px;}
.xc4{left:360.255000px;}
.x46{left:363.674987px;}
.x5f{left:367.815000px;}
.x22{left:368.894987px;}
.x67{left:379.724987px;}
.x6f{left:381.417247px;}
.x24{left:386.174987px;}
.x25{left:390.314987px;}
.x9a{left:393.381119px;}
.x8c{left:395.000393px;}
.x6e{left:398.143422px;}
.x8{left:402.555000px;}
.x7{left:404.175000px;}
.x5{left:409.755000px;}
.xca{left:417.135000px;}
.xc8{left:425.415000px;}
.x7f{left:427.934333px;}
.x41{left:447.045000px;}
.xb{left:448.485000px;}
.xae{left:459.562898px;}
.x9b{left:464.971787px;}
.x72{left:469.748567px;}
.x33{left:479.264973px;}
.xb0{left:480.557708px;}
.x8e{left:482.517811px;}
.x34{left:484.484987px;}
.x90{left:503.623467px;}
.x73{left:506.576095px;}
.x75{left:508.760178px;}
.x1d{left:510.045000px;}
.x5d{left:512.745000px;}
.x68{left:514.619987px;}
.x7d{left:521.232636px;}
.xcb{left:523.905000px;}
.xaf{left:541.999738px;}
.x12{left:548.925000px;}
.x69{left:550.619987px;}
.x8d{left:557.070408px;}
.xc5{left:563.685000px;}
.x9e{left:568.046216px;}
.x50{left:572.685000px;}
.x9f{left:574.730685px;}
.x6b{left:577.185000px;}
.x70{left:597.604756px;}
.xbb{left:599.419265px;}
.x60{left:603.510000px;}
.xa5{left:609.939675px;}
.xbf{left:615.389973px;}
.xc{left:617.730000px;}
.xc0{left:620.609987px;}
.xb2{left:624.548537px;}
.x2e{left:646.529987px;}
.x83{left:650.941282px;}
.x9d{left:652.979175px;}
.x91{left:664.556945px;}
.xb1{left:673.679769px;}
.xb7{left:680.189987px;}
.xa6{left:681.520281px;}
.x1{left:683.969987px;}
.x71{left:687.228582px;}
.x96{left:724.569843px;}
.xa2{left:753.089987px;}
.x64{left:754.529987px;}
.x47{left:769.829987px;}
.x2{left:778.319987px;}
.x21{left:782.459987px;}
.x45{left:786.779987px;}
.x3d{left:791.639987px;}
.x2f{left:792.719987px;}
.x87{left:804.307933px;}
.xb3{left:805.372099px;}
.x84{left:807.874560px;}
.x93{left:813.059987px;}
.x85{left:843.692247px;}
.xb4{left:871.193667px;}
.x89{left:882.671678px;}
.x86{left:895.597767px;}
.xb5{left:937.052130px;}
.x81{left:954.661883px;}
.x88{left:975.635236px;}
.xab{left:1002.885997px;}
.x80{left:1047.284001px;}
.x82{left:1118.952850px;}
.x77{left:1139.759981px;}
.x78{left:1155.059981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.941260pt;}
.v3{vertical-align:16.656699pt;}
.v1{vertical-align:21.120000pt;}
.ls5d{letter-spacing:-0.757333pt;}
.ls2b{letter-spacing:-0.741333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls52{letter-spacing:-0.617716pt;}
.ls43{letter-spacing:-0.613333pt;}
.ls38{letter-spacing:-0.586667pt;}
.ls23{letter-spacing:-0.524800pt;}
.ls41{letter-spacing:-0.499200pt;}
.ls50{letter-spacing:-0.441905pt;}
.ls5e{letter-spacing:-0.419733pt;}
.ls44{letter-spacing:-0.412267pt;}
.ls1e{letter-spacing:-0.404267pt;}
.ls28{letter-spacing:-0.325333pt;}
.ls2f{letter-spacing:-0.288000pt;}
.ls25{letter-spacing:-0.286933pt;}
.ls22{letter-spacing:-0.250667pt;}
.ls16{letter-spacing:-0.225067pt;}
.ls31{letter-spacing:-0.212267pt;}
.lse{letter-spacing:-0.204267pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls4a{letter-spacing:-0.183224pt;}
.ls40{letter-spacing:-0.182400pt;}
.ls3f{letter-spacing:-0.171733pt;}
.ls4b{letter-spacing:-0.166567pt;}
.lsc{letter-spacing:-0.153067pt;}
.ls39{letter-spacing:-0.146133pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.117867pt;}
.ls29{letter-spacing:-0.102400pt;}
.ls42{letter-spacing:-0.069333pt;}
.ls47{letter-spacing:-0.068267pt;}
.ls59{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.059733pt;}
.ls49{letter-spacing:-0.051840pt;}
.ls17{letter-spacing:-0.043520pt;}
.ls21{letter-spacing:-0.038400pt;}
.ls45{letter-spacing:-0.030720pt;}
.ls3c{letter-spacing:-0.023040pt;}
.ls30{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.019840pt;}
.ls36{letter-spacing:0.053867pt;}
.ls11{letter-spacing:0.064000pt;}
.ls4c{letter-spacing:0.066523pt;}
.ls13{letter-spacing:0.066667pt;}
.ls7{letter-spacing:0.077867pt;}
.ls5b{letter-spacing:0.079467pt;}
.ls20{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.117760pt;}
.ls1d{letter-spacing:0.117867pt;}
.ls34{letter-spacing:0.125333pt;}
.ls15{letter-spacing:0.130667pt;}
.lsb{letter-spacing:0.133120pt;}
.ls2c{letter-spacing:0.154880pt;}
.lsf{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.194133pt;}
.ls1c{letter-spacing:0.205867pt;}
.ls2a{letter-spacing:0.207467pt;}
.ls56{letter-spacing:0.211733pt;}
.ls18{letter-spacing:0.211840pt;}
.ls5{letter-spacing:0.212267pt;}
.ls5c{letter-spacing:0.220267pt;}
.ls60{letter-spacing:0.224427pt;}
.ls6{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.227840pt;}
.ls12{letter-spacing:0.235733pt;}
.ls55{letter-spacing:0.248533pt;}
.ls14{letter-spacing:0.253333pt;}
.ls3{letter-spacing:0.278933pt;}
.ls3e{letter-spacing:0.318720pt;}
.ls1f{letter-spacing:0.352000pt;}
.ls2e{letter-spacing:0.416000pt;}
.ls48{letter-spacing:0.776504pt;}
.ls2d{letter-spacing:0.794880pt;}
.ls4d{letter-spacing:0.807783pt;}
.ls3d{letter-spacing:0.999511pt;}
.ls51{letter-spacing:1.069124pt;}
.ls53{letter-spacing:1.187916pt;}
.ls54{letter-spacing:1.278708pt;}
.ls24{letter-spacing:2.053120pt;}
.ls5a{letter-spacing:3.333120pt;}
.ls3b{letter-spacing:4.613120pt;}
.ls46{letter-spacing:14.437120pt;}
.lsa{letter-spacing:19.333120pt;}
.ls9{letter-spacing:26.373120pt;}
.ls33{letter-spacing:34.810027pt;}
.ls37{letter-spacing:45.546667pt;}
.ls58{letter-spacing:48.746667pt;}
.ls57{letter-spacing:52.730027pt;}
.ls5f{letter-spacing:52.751360pt;}
.ls3a{letter-spacing:61.690027pt;}
.ls26{letter-spacing:77.082027pt;}
.ls8{letter-spacing:99.973120pt;}
.ls19{letter-spacing:107.866027pt;}
.ls4e{letter-spacing:381.192728pt;}
.ls4f{letter-spacing:471.079953pt;}
.ws67{word-spacing:-64.000000pt;}
.ws66{word-spacing:-58.880000pt;}
.ws5e{word-spacing:-48.090058pt;}
.ws47{word-spacing:-26.174813pt;}
.ws6{word-spacing:-16.922880pt;}
.ws3a{word-spacing:-16.854613pt;}
.ws7{word-spacing:-16.769813pt;}
.wsa{word-spacing:-16.718613pt;}
.wsb{word-spacing:-14.656000pt;}
.wsd{word-spacing:-14.528000pt;}
.ws8{word-spacing:-14.464000pt;}
.ws68{word-spacing:-14.400000pt;}
.ws9{word-spacing:-14.336000pt;}
.ws1{word-spacing:-13.585813pt;}
.ws10{word-spacing:-13.560213pt;}
.ws65{word-spacing:-13.555413pt;}
.wse{word-spacing:-13.542613pt;}
.ws4{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.519147pt;}
.ws11{word-spacing:-13.437547pt;}
.ws26{word-spacing:-13.432213pt;}
.ws16{word-spacing:-13.424747pt;}
.ws19{word-spacing:-13.422080pt;}
.ws69{word-spacing:-13.386347pt;}
.wsf{word-spacing:-13.373547pt;}
.ws2c{word-spacing:-13.360747pt;}
.ws1d{word-spacing:-13.324800pt;}
.ws2{word-spacing:-13.306880pt;}
.ws2b{word-spacing:-13.283840pt;}
.ws39{word-spacing:-13.276160pt;}
.ws1a{word-spacing:-13.268480pt;}
.ws13{word-spacing:-13.263360pt;}
.ws36{word-spacing:-13.237547pt;}
.ws1f{word-spacing:-13.204480pt;}
.wsc{word-spacing:-13.189013pt;}
.ws2a{word-spacing:-13.160747pt;}
.ws33{word-spacing:-13.135147pt;}
.ws14{word-spacing:-13.114880pt;}
.ws22{word-spacing:-13.094613pt;}
.ws12{word-spacing:-13.081813pt;}
.ws1c{word-spacing:-13.019947pt;}
.ws1e{word-spacing:-12.981547pt;}
.ws17{word-spacing:-12.902613pt;}
.ws38{word-spacing:-12.894613pt;}
.ws1b{word-spacing:-12.782080pt;}
.ws29{word-spacing:-12.720213pt;}
.ws37{word-spacing:-12.693547pt;}
.ws20{word-spacing:-12.565547pt;}
.ws27{word-spacing:-12.199253pt;}
.ws28{word-spacing:-12.058987pt;}
.ws63{word-spacing:-12.041167pt;}
.ws23{word-spacing:-12.005120pt;}
.ws24{word-spacing:-11.945387pt;}
.ws40{word-spacing:-11.872745pt;}
.ws54{word-spacing:-11.812636pt;}
.ws2f{word-spacing:-11.043487pt;}
.ws5f{word-spacing:-10.868353pt;}
.ws53{word-spacing:-10.738760pt;}
.ws21{word-spacing:-10.560000pt;}
.ws5d{word-spacing:-9.880321pt;}
.ws35{word-spacing:-9.710720pt;}
.ws5{word-spacing:-9.690880pt;}
.ws3f{word-spacing:-9.651944pt;}
.ws34{word-spacing:-9.508480pt;}
.ws3c{word-spacing:-8.774494pt;}
.ws18{word-spacing:-8.741120pt;}
.ws15{word-spacing:-8.594987pt;}
.ws25{word-spacing:-8.389120pt;}
.ws46{word-spacing:-5.915508pt;}
.ws45{word-spacing:-5.377734pt;}
.ws0{word-spacing:0.000000pt;}
.ws56{word-spacing:8.790578pt;}
.ws49{word-spacing:19.179000pt;}
.ws44{word-spacing:35.502565pt;}
.ws48{word-spacing:38.605470pt;}
.ws52{word-spacing:46.067671pt;}
.ws4a{word-spacing:48.996871pt;}
.ws31{word-spacing:50.242091pt;}
.ws4f{word-spacing:51.374020pt;}
.ws51{word-spacing:51.492996pt;}
.ws32{word-spacing:60.503738pt;}
.ws30{word-spacing:63.679962pt;}
.ws3d{word-spacing:69.834880pt;}
.ws3e{word-spacing:72.902071pt;}
.ws3b{word-spacing:92.893164pt;}
.ws4c{word-spacing:97.643951pt;}
.ws4d{word-spacing:104.318529pt;}
.ws4b{word-spacing:108.118636pt;}
.ws50{word-spacing:109.910420pt;}
.ws2e{word-spacing:115.818903pt;}
.ws41{word-spacing:116.576534pt;}
.ws43{word-spacing:125.172432pt;}
.ws5b{word-spacing:127.891032pt;}
.ws58{word-spacing:129.017177pt;}
.ws57{word-spacing:168.650805pt;}
.ws5a{word-spacing:176.951961pt;}
.ws42{word-spacing:187.191800pt;}
.ws62{word-spacing:193.055351pt;}
.ws5c{word-spacing:204.654162pt;}
.ws61{word-spacing:205.191533pt;}
.ws64{word-spacing:222.655030pt;}
.ws4e{word-spacing:231.313964pt;}
.ws59{word-spacing:396.188979pt;}
.ws60{word-spacing:439.237101pt;}
.ws2d{word-spacing:1115.712026pt;}
.ws55{word-spacing:1321.841605pt;}
._7{margin-left:-15.561813pt;}
._9{margin-left:-14.116800pt;}
._8{margin-left:-12.744320pt;}
._d{margin-left:-10.572373pt;}
._4{margin-left:-9.107840pt;}
._a{margin-left:-7.370667pt;}
._b{margin-left:-5.787733pt;}
._c{margin-left:-4.234667pt;}
._6{margin-left:-3.234560pt;}
._5{margin-left:-2.298240pt;}
._0{margin-left:-0.981333pt;}
._2{width:1.054080pt;}
._3{width:2.287360pt;}
._15{width:3.316053pt;}
._13{width:4.611413pt;}
._11{width:5.573973pt;}
._10{width:6.516053pt;}
._f{width:7.994027pt;}
._e{width:8.890880pt;}
._12{width:9.846613pt;}
._1a{width:11.010560pt;}
._1e{width:12.083200pt;}
._16{width:14.366720pt;}
._19{width:16.022187pt;}
._1f{width:17.303893pt;}
._18{width:18.566827pt;}
._17{width:19.548160pt;}
._20{width:20.588373pt;}
._1c{width:22.872747pt;}
._1b{width:23.787520pt;}
._1d{width:24.858880pt;}
._58{width:26.307413pt;}
._21{width:27.614720pt;}
._3d{width:34.753065pt;}
._3c{width:44.235383pt;}
._5a{width:48.773120pt;}
._22{width:50.106880pt;}
._2b{width:56.945011pt;}
._42{width:58.527080pt;}
._3b{width:63.002827pt;}
._49{width:64.352573pt;}
._45{width:66.817211pt;}
._35{width:69.225294pt;}
._3a{width:70.297997pt;}
._47{width:74.075825pt;}
._48{width:79.760624pt;}
._2c{width:80.861284pt;}
._57{width:101.649736pt;}
._27{width:106.394453pt;}
._28{width:107.456000pt;}
._29{width:108.398080pt;}
._26{width:110.105600pt;}
._25{width:111.636480pt;}
._23{width:115.758080pt;}
._53{width:119.831680pt;}
._2d{width:125.343359pt;}
._31{width:126.711875pt;}
._41{width:135.449900pt;}
._39{width:142.117594pt;}
._14{width:149.231787pt;}
._37{width:164.621819pt;}
._59{width:168.759485pt;}
._3f{width:171.333189pt;}
._34{width:176.149914pt;}
._33{width:178.157225pt;}
._32{width:197.241726pt;}
._4f{width:202.852608pt;}
._4e{width:203.923704pt;}
._55{width:209.410343pt;}
._4b{width:213.178855pt;}
._52{width:214.516633pt;}
._30{width:237.953827pt;}
._43{width:242.592929pt;}
._2e{width:276.301521pt;}
._4a{width:278.636747pt;}
._36{width:280.056327pt;}
._38{width:283.699539pt;}
._3e{width:288.041923pt;}
._56{width:308.518875pt;}
._2f{width:323.408083pt;}
._2a{width:329.957120pt;}
._5b{width:379.212373pt;}
._40{width:398.554364pt;}
._4d{width:436.404159pt;}
._50{width:447.333718pt;}
._24{width:469.155840pt;}
._5c{width:523.704320pt;}
._44{width:711.574197pt;}
._1{width:754.831787pt;}
._4c{width:1525.578392pt;}
._46{width:1709.558475pt;}
._51{width:1761.582537pt;}
._54{width:2218.700396pt;}
.fsb{font-size:2.560000pt;}
.fs10{font-size:23.795285pt;}
.fs11{font-size:26.174813pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fse{font-size:38.825196pt;}
.fsf{font-size:42.707716pt;}
.fs3{font-size:42.880000pt;}
.fs15{font-size:43.718234pt;}
.fsd{font-size:46.590235pt;}
.fs12{font-size:47.516638pt;}
.fs8{font-size:48.000000pt;}
.fs16{font-size:48.090058pt;}
.fsc{font-size:48.864987pt;}
.fs13{font-size:52.268302pt;}
.fsa{font-size:53.120000pt;}
.fs17{font-size:53.279500pt;}
.fs14{font-size:57.019966pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs19{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.fs18{font-size:138.880000pt;}
.y10{bottom:-48.506667pt;}
.yf{bottom:-22.560000pt;}
.y3c3{bottom:-18.880081pt;}
.y3c5{bottom:-18.880067pt;}
.y3c7{bottom:-18.880000pt;}
.yc{bottom:-18.400000pt;}
.y3b9{bottom:-17.440000pt;}
.y3bd{bottom:-15.680081pt;}
.y3c0{bottom:-12.800081pt;}
.y3c2{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y230{bottom:0.160000pt;}
.y3b8{bottom:0.480000pt;}
.y231{bottom:0.800000pt;}
.y22e{bottom:0.960000pt;}
.y2a3{bottom:1.784646pt;}
.y2aa{bottom:1.796544pt;}
.y2c2{bottom:2.099934pt;}
.y3bc{bottom:2.240000pt;}
.y27a{bottom:2.911890pt;}
.y284{bottom:2.911967pt;}
.y2d5{bottom:2.969790pt;}
.y2f8{bottom:3.005427pt;}
.y1e6{bottom:3.331704pt;}
.y205{bottom:3.359468pt;}
.y1fb{bottom:3.365021pt;}
.y288{bottom:3.426324pt;}
.ye{bottom:3.680000pt;}
.y314{bottom:3.858134pt;}
.y2e{bottom:4.000000pt;}
.y2f4{bottom:4.193343pt;}
.y326{bottom:4.701916pt;}
.y3bf{bottom:5.120000pt;}
.y292{bottom:5.371786pt;}
.y158{bottom:5.920000pt;}
.y299{bottom:8.346196pt;}
.y3bb{bottom:8.640000pt;}
.y13{bottom:9.120000pt;}
.y290{bottom:9.238519pt;}
.y24{bottom:9.280000pt;}
.y35{bottom:9.440000pt;}
.y2a2{bottom:10.410437pt;}
.y2a9{bottom:10.422335pt;}
.y2d8{bottom:10.691244pt;}
.y2fa{bottom:10.726881pt;}
.yb{bottom:11.360000pt;}
.y1ec{bottom:11.660963pt;}
.y1bd{bottom:11.840000pt;}
.y1cc{bottom:12.000000pt;}
.y31c{bottom:12.027847pt;}
.y2e1{bottom:12.473118pt;}
.y2e8{bottom:12.496876pt;}
.y296{bottom:12.510371pt;}
.y3be{bottom:12.800000pt;}
.y2ba{bottom:12.804243pt;}
.y1e0{bottom:12.960000pt;}
.y28e{bottom:13.105253pt;}
.y16{bottom:13.440000pt;}
.y19{bottom:13.600000pt;}
.y120{bottom:13.920000pt;}
.y32b{bottom:14.400000pt;}
.y64{bottom:14.560000pt;}
.y2c{bottom:14.720000pt;}
.y3ae{bottom:14.746667pt;}
.y68{bottom:14.760000pt;}
.y29d{bottom:14.883951pt;}
.y2b4{bottom:14.886330pt;}
.y25f{bottom:15.073882pt;}
.y308{bottom:15.334171pt;}
.y15{bottom:15.680000pt;}
.y39{bottom:16.000000pt;}
.y2b2{bottom:16.670977pt;}
.y36{bottom:16.800000pt;}
.y295{bottom:16.971987pt;}
.y302{bottom:16.973605pt;}
.y28f{bottom:16.983885pt;}
.y283{bottom:16.985713pt;}
.y268{bottom:16.986023pt;}
.y26f{bottom:17.005436pt;}
.y279{bottom:17.009318pt;}
.y8{bottom:18.080000pt;}
.y33{bottom:18.240000pt;}
.y3c4{bottom:18.400000pt;}
.y2d0{bottom:18.448335pt;}
.y3c1{bottom:18.880000pt;}
.y3c6{bottom:19.040000pt;}
.y29f{bottom:19.048125pt;}
.y2bd{bottom:19.050910pt;}
.y2a6{bottom:19.065972pt;}
.y1fe{bottom:19.434938pt;}
.y1ef{bottom:19.457149pt;}
.y1f2{bottom:19.468255pt;}
.y2c0{bottom:19.645792pt;}
.y3a{bottom:19.840000pt;}
.y2b{bottom:20.320000pt;}
.y2b9{bottom:20.537710pt;}
.y169{bottom:20.640000pt;}
.y31e{bottom:20.685766pt;}
.y294{bottom:20.838721pt;}
.y291{bottom:20.850618pt;}
.y25d{bottom:20.897662pt;}
.y297{bottom:21.136162pt;}
.y260{bottom:21.382977pt;}
.y2d{bottom:21.760000pt;}
.y1c7{bottom:21.920000pt;}
.y306{bottom:22.984862pt;}
.y18a{bottom:23.200000pt;}
.y29c{bottom:23.509741pt;}
.y2ae{bottom:23.512121pt;}
.y2be{bottom:23.512525pt;}
.y2a7{bottom:23.527588pt;}
.y30a{bottom:24.077818pt;}
.y2b1{bottom:24.422291pt;}
.y315{bottom:24.624296pt;}
.y157{bottom:24.640000pt;}
.y129{bottom:24.960000pt;}
.y3ac{bottom:24.986667pt;}
.y298{bottom:25.609675pt;}
.y2ce{bottom:26.169789pt;}
.y2f5{bottom:26.763747pt;}
.y22a{bottom:26.853333pt;}
.y30{bottom:27.040000pt;}
.y31{bottom:27.200000pt;}
.y262{bottom:27.206756pt;}
.y34{bottom:27.360000pt;}
.y2bf{bottom:27.379259pt;}
.y29e{bottom:27.673916pt;}
.y2bc{bottom:27.676700pt;}
.y3c{bottom:27.680000pt;}
.y2a5{bottom:27.691763pt;}
.y25e{bottom:27.711484pt;}
.y2b8{bottom:28.289024pt;}
.y38{bottom:29.120000pt;}
.y31b{bottom:29.343685pt;}
.y2e0{bottom:29.721657pt;}
.y327{bottom:30.009678pt;}
.y1cb{bottom:30.720000pt;}
.y1ce{bottom:30.880000pt;}
.y267{bottom:31.079569pt;}
.y278{bottom:31.083452pt;}
.y282{bottom:31.084112pt;}
.y26e{bottom:31.108688pt;}
.y304{bottom:31.182031pt;}
.y301{bottom:31.203890pt;}
.y286{bottom:32.054742pt;}
.y29b{bottom:32.153379pt;}
.y2ad{bottom:32.155758pt;}
.y17b{bottom:32.480000pt;}
.y17f{bottom:32.640000pt;}
.y2d2{bottom:33.891242pt;}
.y2cf{bottom:33.915001pt;}
.y167{bottom:33.920000pt;}
.y3{bottom:34.080000pt;}
.y123{bottom:35.200000pt;}
.y1a8{bottom:35.226667pt;}
.ya8{bottom:35.360000pt;}
.y3ad{bottom:35.386667pt;}
.y1ee{bottom:35.560383pt;}
.y1fa{bottom:35.571489pt;}
.y2b7{bottom:36.022492pt;}
.y2a1{bottom:36.317553pt;}
.y2a8{bottom:36.329451pt;}
.y178{bottom:36.480000pt;}
.y320{bottom:38.001603pt;}
.y31d{bottom:38.028243pt;}
.y2dd{bottom:38.037069pt;}
.y2f2{bottom:38.042628pt;}
.y2e6{bottom:38.072707pt;}
.y309{bottom:38.286244pt;}
.y264{bottom:38.359294pt;}
.y27e{bottom:38.363836pt;}
.y26b{bottom:38.388413pt;}
.y229{bottom:38.693333pt;}
.y305{bottom:38.832722pt;}
.y1c9{bottom:39.680000pt;}
.y1c6{bottom:39.840000pt;}
.y1d6{bottom:39.880000pt;}
.y2b0{bottom:39.901123pt;}
.y2ac{bottom:40.793446pt;}
.y3b{bottom:40.800000pt;}
.y1d{bottom:41.120000pt;}
.y2d6{bottom:41.612696pt;}
.y2f9{bottom:41.636454pt;}
.y189{bottom:41.946667pt;}
.y37{bottom:42.080000pt;}
.y30c{bottom:43.193616pt;}
.y312{bottom:43.198731pt;}
.y1a1{bottom:43.200000pt;}
.y30e{bottom:43.226404pt;}
.y1a7{bottom:43.226667pt;}
.y153{bottom:43.360000pt;}
.y2b6{bottom:43.767857pt;}
.y269{bottom:44.668388pt;}
.y285{bottom:44.672931pt;}
.y270{bottom:44.697507pt;}
.y2a0{bottom:44.955242pt;}
.y266{bottom:45.153703pt;}
.y281{bottom:45.158245pt;}
.y26d{bottom:45.182822pt;}
.y277{bottom:45.186704pt;}
.y3a9{bottom:45.440000pt;}
.y7{bottom:45.600000pt;}
.y12b{bottom:45.626667pt;}
.y179{bottom:45.920000pt;}
.y184{bottom:46.080000pt;}
.y27c{bottom:46.157334pt;}
.y2da{bottom:46.352481pt;}
.y2ef{bottom:46.358040pt;}
.y2e3{bottom:46.388118pt;}
.y31a{bottom:46.686162pt;}
.y2db{bottom:46.946439pt;}
.y2f0{bottom:46.951998pt;}
.y2e4{bottom:46.982076pt;}
.y307{bottom:47.051750pt;}
.ya{bottom:47.200000pt;}
.y168{bottom:47.360000pt;}
.y2af{bottom:47.634591pt;}
.y1dd{bottom:48.800000pt;}
.y2d4{bottom:49.357908pt;}
.y2b3{bottom:49.419237pt;}
.y3b7{bottom:49.440000pt;}
.y10b{bottom:50.173333pt;}
.y17e{bottom:51.360000pt;}
.y188{bottom:51.386667pt;}
.y2b5{bottom:51.501325pt;}
.y1f9{bottom:51.696935pt;}
.y2{bottom:52.000000pt;}
.y272{bottom:52.466429pt;}
.y324{bottom:52.646380pt;}
.y16e{bottom:52.800000pt;}
.y154{bottom:52.826667pt;}
.y32a{bottom:54.720000pt;}
.y2dc{bottom:55.261850pt;}
.y2f1{bottom:55.267410pt;}
.y2e5{bottom:55.297488pt;}
.y2ed{bottom:55.302240pt;}
.y126{bottom:55.840000pt;}
.ya7{bottom:55.866667pt;}
.y12c{bottom:56.026667pt;}
.y2d7{bottom:57.079362pt;}
.y1da{bottom:57.600000pt;}
.y1ca{bottom:57.626667pt;}
.y1c5{bottom:57.760000pt;}
.y1d5{bottom:57.800000pt;}
.y27b{bottom:58.775523pt;}
.y310{bottom:59.078636pt;}
.y17a{bottom:59.200000pt;}
.y280{bottom:59.256645pt;}
.y265{bottom:59.256955pt;}
.y276{bottom:59.260838pt;}
.y26c{bottom:59.276368pt;}
.y165{bottom:62.080000pt;}
.y156{bottom:62.106667pt;}
.y10c{bottom:62.720000pt;}
.y2ea{bottom:63.617651pt;}
.y122{bottom:63.840000pt;}
.y1a6{bottom:63.866667pt;}
.y1a3{bottom:63.880000pt;}
.y2df{bottom:64.206858pt;}
.y2eb{bottom:64.211609pt;}
.y182{bottom:64.800000pt;}
.y2d3{bottom:64.800816pt;}
.y1c0{bottom:66.720000pt;}
.y1d0{bottom:66.760000pt;}
.y1f8{bottom:67.800169pt;}
.y1e{bottom:68.640000pt;}
.y17d{bottom:70.080000pt;}
.y1a0{bottom:71.840000pt;}
.y322{bottom:71.999252pt;}
.y2ec{bottom:72.527021pt;}
.y275{bottom:73.354384pt;}
.y27f{bottom:73.355044pt;}
.y1d9{bottom:75.520000pt;}
.y1c4{bottom:75.680000pt;}
.y1d4{bottom:75.720000pt;}
.y3aa{bottom:76.320000pt;}
.ya6{bottom:76.506667pt;}
.y16f{bottom:80.800000pt;}
.y155{bottom:80.826667pt;}
.y164{bottom:80.840000pt;}
.y2de{bottom:81.431639pt;}
.y2e7{bottom:81.455397pt;}
.y183{bottom:83.520000pt;}
.y22c{bottom:83.706667pt;}
.y228{bottom:83.813333pt;}
.y1f7{bottom:83.936720pt;}
.y209{bottom:84.455355pt;}
.y1bf{bottom:84.640000pt;}
.y274{bottom:87.428518pt;}
.y186{bottom:88.800000pt;}
.y1d3{bottom:93.480000pt;}
.y1c3{bottom:93.600000pt;}
.y22b{bottom:95.546667pt;}
.y16a{bottom:96.640000pt;}
.ya5{bottom:97.146667pt;}
.y60{bottom:98.400000pt;}
.yfe{bottom:99.200000pt;}
.y16c{bottom:99.546667pt;}
.y163{bottom:99.560000pt;}
.y19f{bottom:100.320000pt;}
.y273{bottom:101.531770pt;}
.y13c{bottom:102.880000pt;}
.yfd{bottom:103.840000pt;}
.y3a1{bottom:104.320000pt;}
.y15c{bottom:105.000000pt;}
.y95{bottom:110.720000pt;}
.y1d2{bottom:111.400000pt;}
.y1c2{bottom:111.520000pt;}
.y1dc{bottom:111.546667pt;}
.y2cc{bottom:112.640000pt;}
.y18b{bottom:113.760000pt;}
.y311{bottom:114.895639pt;}
.y185{bottom:115.560000pt;}
.y109{bottom:115.746667pt;}
.ya4{bottom:117.626667pt;}
.y16b{bottom:118.266667pt;}
.y15a{bottom:118.280000pt;}
.y1a9{bottom:118.560000pt;}
.y13b{bottom:122.080000pt;}
.y347{bottom:124.000000pt;}
.yfc{bottom:124.800000pt;}
.y3a0{bottom:124.960000pt;}
.y1c8{bottom:126.240000pt;}
.y5f{bottom:127.040000pt;}
.y10a{bottom:128.293333pt;}
.y19e{bottom:128.960000pt;}
.y1d1{bottom:129.320000pt;}
.yfb{bottom:129.440000pt;}
.y15b{bottom:131.560000pt;}
.y187{bottom:136.320000pt;}
.y162{bottom:137.000000pt;}
.ya3{bottom:138.266667pt;}
.y1e3{bottom:138.400000pt;}
.y94{bottom:139.360000pt;}
.yec{bottom:140.000000pt;}
.y2cb{bottom:141.280000pt;}
.y39f{bottom:145.600000pt;}
.y1c1{bottom:147.200000pt;}
.y13a{bottom:149.440000pt;}
.yfa{bottom:149.600000pt;}
.y11d{bottom:153.440000pt;}
.y5e{bottom:155.520000pt;}
.y161{bottom:155.720000pt;}
.y1a5{bottom:155.840000pt;}
.y19d{bottom:157.600000pt;}
.y93{bottom:159.840000pt;}
.yb7{bottom:160.480000pt;}
.y1e2{bottom:166.880000pt;}
.ya2{bottom:166.906667pt;}
.yeb{bottom:168.640000pt;}
.y139{bottom:168.800000pt;}
.y2ca{bottom:169.920000pt;}
.y346{bottom:170.080000pt;}
.y383{bottom:172.506667pt;}
.y39e{bottom:174.106667pt;}
.y160{bottom:174.440000pt;}
.y364{bottom:175.866667pt;}
.yb6{bottom:181.146667pt;}
.y107{bottom:181.280000pt;}
.y5d{bottom:181.466667pt;}
.y11c{bottom:182.106667pt;}
.y32{bottom:183.066667pt;}
.y19c{bottom:186.240000pt;}
.ya1{bottom:187.546667pt;}
.y92{bottom:188.506667pt;}
.yea{bottom:189.306667pt;}
.y15f{bottom:193.160000pt;}
.y108{bottom:193.853333pt;}
.y1e1{bottom:195.546667pt;}
.y138{bottom:196.186667pt;}
.y1be{bottom:198.426667pt;}
.y5c{bottom:199.386667pt;}
.y345{bottom:200.026667pt;}
.y382{bottom:201.146667pt;}
.y363{bottom:204.346667pt;}
.y208{bottom:205.066358pt;}
.ya0{bottom:208.026667pt;}
.y91{bottom:209.146667pt;}
.yb5{bottom:209.626667pt;}
.y30f{bottom:210.064421pt;}
.y11b{bottom:210.746667pt;}
.y15e{bottom:211.880000pt;}
.y19b{bottom:214.746667pt;}
.y137{bottom:215.386667pt;}
.y5b{bottom:217.306667pt;}
.ye9{bottom:217.786667pt;}
.y1df{bottom:218.106667pt;}
.y39d{bottom:224.986667pt;}
.y2c9{bottom:227.066667pt;}
.y166{bottom:228.346667pt;}
.y9f{bottom:228.666667pt;}
.y344{bottom:229.146667pt;}
.y381{bottom:229.786667pt;}
.y2f{bottom:230.266667pt;}
.y15d{bottom:230.600000pt;}
.y11a{bottom:231.226667pt;}
.y362{bottom:233.626667pt;}
.y5a{bottom:235.226667pt;}
.y19a{bottom:235.386667pt;}
.y226{bottom:235.706667pt;}
.y90{bottom:237.626667pt;}
.ye8{bottom:238.426667pt;}
.y1a4{bottom:242.266667pt;}
.y136{bottom:242.746667pt;}
.y199{bottom:243.386667pt;}
.y39c{bottom:245.466667pt;}
.y104{bottom:246.853333pt;}
.y9e{bottom:249.306667pt;}
.yb4{bottom:250.906667pt;}
.y106{bottom:251.706667pt;}
.y119{bottom:251.866667pt;}
.y59{bottom:253.146667pt;}
.y1de{bottom:254.586667pt;}
.y2c8{bottom:255.706667pt;}
.y380{bottom:258.266667pt;}
.ye7{bottom:259.066667pt;}
.y135{bottom:262.106667pt;}
.y361{bottom:263.546667pt;}
.y198{bottom:264.026667pt;}
.y225{bottom:264.346667pt;}
.y39b{bottom:266.106667pt;}
.y8f{bottom:266.266667pt;}
.y105{bottom:267.066667pt;}
.y318{bottom:268.186667pt;}
.y9d{bottom:269.826667pt;}
.y58{bottom:271.066667pt;}
.y118{bottom:272.506667pt;}
.yda{bottom:276.666667pt;}
.y2a{bottom:277.466667pt;}
.y227{bottom:278.400000pt;}
.yb3{bottom:279.386667pt;}
.y181{bottom:281.946667pt;}
.y2c7{bottom:284.186667pt;}
.y37f{bottom:286.906667pt;}
.ye6{bottom:287.546667pt;}
.y343{bottom:288.346667pt;}
.y224{bottom:288.826667pt;}
.y57{bottom:288.986667pt;}
.y134{bottom:289.466667pt;}
.y9c{bottom:290.466667pt;}
.y360{bottom:292.026667pt;}
.y117{bottom:292.986667pt;}
.y39a{bottom:294.746667pt;}
.y8e{bottom:294.906667pt;}
.y317{bottom:296.666667pt;}
.yd9{bottom:297.306667pt;}
.yb2{bottom:300.026667pt;}
.y159{bottom:303.866667pt;}
.ye5{bottom:308.186667pt;}
.y133{bottom:308.666667pt;}
.y102{bottom:312.386667pt;}
.y2c6{bottom:312.826667pt;}
.y399{bottom:315.226667pt;}
.y37e{bottom:315.546667pt;}
.yd8{bottom:317.786667pt;}
.y29{bottom:317.946667pt;}
.y342{bottom:318.106667pt;}
.y9b{bottom:319.106667pt;}
.yb1{bottom:320.666667pt;}
.y1a2{bottom:320.826667pt;}
.y316{bottom:321.146667pt;}
.y35f{bottom:321.306667pt;}
.y116{bottom:321.626667pt;}
.y323{bottom:322.161031pt;}
.y8d{bottom:323.386667pt;}
.y103{bottom:324.960000pt;}
.y1e4{bottom:324.986667pt;}
.y207{bottom:326.289388pt;}
.y56{bottom:328.506667pt;}
.ye4{bottom:328.826667pt;}
.y398{bottom:335.866667pt;}
.y132{bottom:336.026667pt;}
.y22d{bottom:336.826667pt;}
.y30d{bottom:336.960968pt;}
.y22f{bottom:337.626667pt;}
.yd7{bottom:338.426667pt;}
.y341{bottom:338.746667pt;}
.y28c{bottom:339.106667pt;}
.y2bb{bottom:339.575355pt;}
.y2c5{bottom:341.466667pt;}
.y206{bottom:342.420720pt;}
.y37d{bottom:344.026667pt;}
.yf9{bottom:346.586667pt;}
.y28{bottom:347.066667pt;}
.y9a{bottom:347.586667pt;}
.y115{bottom:348.986667pt;}
.yb0{bottom:349.146667pt;}
.ye3{bottom:349.306667pt;}
.y35e{bottom:351.066667pt;}
.y8c{bottom:352.026667pt;}
.y131{bottom:355.386667pt;}
.y397{bottom:356.506667pt;}
.y204{bottom:358.523954pt;}
.yd6{bottom:359.066667pt;}
.y3b5{bottom:360.026667pt;}
.y1bc{bottom:360.346667pt;}
.y2f6{bottom:366.106667pt;}
.yf8{bottom:367.066667pt;}
.y340{bottom:368.986667pt;}
.ye2{bottom:369.946667pt;}
.y2c4{bottom:370.106667pt;}
.y114{bottom:371.226667pt;}
.y55{bottom:371.546667pt;}
.y8b{bottom:372.666667pt;}
.y203{bottom:374.654952pt;}
.y396{bottom:376.986667pt;}
.yaf{bottom:377.786667pt;}
.y100{bottom:377.946667pt;}
.yd5{bottom:379.546667pt;}
.y35d{bottom:379.706667pt;}
.y130{bottom:384.066667pt;}
.y27{bottom:384.226667pt;}
.yf7{bottom:387.746667pt;}
.y3b4{bottom:388.706667pt;}
.y101{bottom:390.493333pt;}
.y2ab{bottom:391.374525pt;}
.y8a{bottom:393.186667pt;}
.y25b{bottom:394.146667pt;}
.y2c3{bottom:394.626667pt;}
.y27d{bottom:394.725421pt;}
.y2ee{bottom:395.416376pt;}
.y54{bottom:397.506667pt;}
.y395{bottom:397.666667pt;}
.yae{bottom:398.466667pt;}
.yd4{bottom:400.226667pt;}
.y37c{bottom:401.346667pt;}
.y33f{bottom:402.146667pt;}
.ye1{bottom:402.946667pt;}
.y12f{bottom:404.546667pt;}
.y202{bottom:406.889185pt;}
.y197{bottom:407.266667pt;}
.yf6{bottom:408.386667pt;}
.y35c{bottom:409.026667pt;}
.y223{bottom:410.946667pt;}
.y89{bottom:413.826667pt;}
.y53{bottom:415.426667pt;}
.y3b3{bottom:417.186667pt;}
.y394{bottom:418.306667pt;}
.y180{bottom:418.946667pt;}
.y145{bottom:420.546667pt;}
.yd3{bottom:420.866667pt;}
.yad{bottom:427.106667pt;}
.y26{bottom:428.226667pt;}
.y246{bottom:428.386667pt;}
.yf5{bottom:429.026667pt;}
.y37b{bottom:429.986667pt;}
.y222{bottom:431.586667pt;}
.y30b{bottom:432.157423pt;}
.y33e{bottom:432.546667pt;}
.y52{bottom:433.186667pt;}
.y88{bottom:434.466667pt;}
.y6{bottom:435.106667pt;}
.y321{bottom:438.143417pt;}
.ye0{bottom:438.146667pt;}
.y35b{bottom:438.466667pt;}
.y393{bottom:438.786667pt;}
.y201{bottom:439.120086pt;}
.y25{bottom:442.786667pt;}
.yac{bottom:447.586667pt;}
.y144{bottom:449.186667pt;}
.yd2{bottom:449.346667pt;}
.yf4{bottom:449.506667pt;}
.y51{bottom:451.106667pt;}
.y221{bottom:452.066667pt;}
.y3b2{bottom:453.026667pt;}
.y87{bottom:455.106667pt;}
.y12e{bottom:455.746667pt;}
.y245{bottom:457.026667pt;}
.y37a{bottom:458.466667pt;}
.ydf{bottom:458.786667pt;}
.y2a4{bottom:460.442719pt;}
.y1bb{bottom:462.946667pt;}
.y33d{bottom:463.106667pt;}
.y392{bottom:467.426667pt;}
.y35a{bottom:467.906667pt;}
.yab{bottom:468.226667pt;}
.y50{bottom:469.026667pt;}
.yd1{bottom:469.986667pt;}
.y2fe{bottom:470.267111pt;}
.y200{bottom:471.359871pt;}
.y23{bottom:472.066667pt;}
.y220{bottom:472.706667pt;}
.y86{bottom:475.586667pt;}
.y257{bottom:477.506667pt;}
.y143{bottom:477.826667pt;}
.yf3{bottom:478.146667pt;}
.y379{bottom:479.106667pt;}
.y271{bottom:479.242709pt;}
.yde{bottom:479.266667pt;}
.y3b1{bottom:481.666667pt;}
.y244{bottom:485.506667pt;}
.y1ff{bottom:487.463105pt;}
.y1db{bottom:488.706667pt;}
.yaa{bottom:488.866667pt;}
.yd0{bottom:490.626667pt;}
.y1ba{bottom:491.586667pt;}
.y391{bottom:496.066667pt;}
.y85{bottom:496.226667pt;}
.y359{bottom:497.186667pt;}
.y142{bottom:498.306667pt;}
.yf2{bottom:498.786667pt;}
.y2e9{bottom:498.853778pt;}
.y22{bottom:501.346667pt;}
.y1fd{bottom:503.588551pt;}
.y256{bottom:506.146667pt;}
.y378{bottom:507.746667pt;}
.ydd{bottom:507.906667pt;}
.y4f{bottom:508.546667pt;}
.y3b0{bottom:510.306667pt;}
.y17c{bottom:510.466667pt;}
.ycf{bottom:511.106667pt;}
.y29a{bottom:512.256951pt;}
.y12d{bottom:513.666667pt;}
.y243{bottom:514.146667pt;}
.y9{bottom:516.866667pt;}
.ya9{bottom:517.346667pt;}
.y33c{bottom:518.146667pt;}
.y1b9{bottom:518.946667pt;}
.yf0{bottom:519.266667pt;}
.y21f{bottom:521.826667pt;}
.yf1{bottom:524.546667pt;}
.y84{bottom:524.866667pt;}
.y255{bottom:526.786667pt;}
.y141{bottom:526.946667pt;}
.y358{bottom:527.106667pt;}
.y303{bottom:527.321090pt;}
.y377{bottom:528.226667pt;}
.yce{bottom:531.746667pt;}
.y3af{bottom:532.866667pt;}
.ydc{bottom:535.266667pt;}
.y33b{bottom:537.666667pt;}
.y1b8{bottom:538.146667pt;}
.y21{bottom:538.466667pt;}
.y99{bottom:539.906667pt;}
.y242{bottom:542.786667pt;}
.y83{bottom:545.346667pt;}
.y254{bottom:547.266667pt;}
.y152{bottom:547.906667pt;}
.y376{bottom:548.866667pt;}
.y6f{bottom:550.146667pt;}
.y21e{bottom:550.466667pt;}
.y12a{bottom:550.786667pt;}
.y4e{bottom:551.586667pt;}
.y1fc{bottom:551.931571pt;}
.ycd{bottom:552.386667pt;}
.y390{bottom:553.986667pt;}
.y140{bottom:554.306667pt;}
.y357{bottom:554.786667pt;}
.ydb{bottom:557.186667pt;}
.y1b7{bottom:557.506667pt;}
.y293{bottom:564.053338pt;}
.yef{bottom:568.546667pt;}
.y375{bottom:569.506667pt;}
.y21d{bottom:571.106667pt;}
.y241{bottom:571.266667pt;}
.y6e{bottom:572.706667pt;}
.y82{bottom:573.986667pt;}
.y253{bottom:575.906667pt;}
.y13f{bottom:576.386667pt;}
.y1b6{bottom:576.866667pt;}
.y4d{bottom:577.826667pt;}
.ycc{bottom:581.026667pt;}
.y20{bottom:582.466667pt;}
.y38f{bottom:582.626667pt;}
.y356{bottom:584.546667pt;}
.y3ab{bottom:590.626667pt;}
.y21c{bottom:591.586667pt;}
.y26a{bottom:591.936723pt;}
.y33a{bottom:592.386667pt;}
.yee{bottom:595.933333pt;}
.y252{bottom:596.573333pt;}
.y1f{bottom:597.053333pt;}
.y300{bottom:598.417869pt;}
.y240{bottom:599.933333pt;}
.y1f6{bottom:600.263485pt;}
.y4c{bottom:601.373333pt;}
.ycb{bottom:601.533333pt;}
.y177{bottom:602.173333pt;}
.y81{bottom:602.653333pt;}
.y28d{bottom:602.750420pt;}
.y38e{bottom:603.133333pt;}
.y374{bottom:603.453333pt;}
.y1b5{bottom:604.253333pt;}
.yff{bottom:607.360000pt;}
.y2fd{bottom:608.188906pt;}
.y6d{bottom:610.013333pt;}
.y355{bottom:613.853333pt;}
.y1d8{bottom:614.813333pt;}
.y251{bottom:617.053333pt;}
.yed{bottom:617.853333pt;}
.y21b{bottom:620.253333pt;}
.y23f{bottom:620.573333pt;}
.y4b{bottom:620.893333pt;}
.yca{bottom:622.173333pt;}
.yd{bottom:622.333333pt;}
.y80{bottom:623.133333pt;}
.y1b4{bottom:623.453333pt;}
.y339{bottom:629.853333pt;}
.y38d{bottom:631.773333pt;}
.y2c1{bottom:633.714034pt;}
.y2e2{bottom:636.775573pt;}
.y21a{bottom:640.893333pt;}
.y23e{bottom:641.053333pt;}
.y354{bottom:641.213333pt;}
.y151{bottom:642.173333pt;}
.yc9{bottom:642.813333pt;}
.y7f{bottom:643.773333pt;}
.y4a{bottom:645.213333pt;}
.y250{bottom:645.693333pt;}
.y6c{bottom:647.293333pt;}
.y338{bottom:647.773333pt;}
.y3a8{bottom:648.573333pt;}
.y128{bottom:649.853333pt;}
.y38c{bottom:652.413333pt;}
.y313{bottom:655.306221pt;}
.y28b{bottom:656.613333pt;}
.y219{bottom:661.533333pt;}
.y1b3{bottom:662.173333pt;}
.yc8{bottom:663.293333pt;}
.y7e{bottom:664.413333pt;}
.y337{bottom:665.693333pt;}
.y24f{bottom:666.333333pt;}
.y373{bottom:666.653333pt;}
.y353{bottom:669.533333pt;}
.y23d{bottom:669.693333pt;}
.y38b{bottom:672.893333pt;}
.y49{bottom:675.933333pt;}
.y263{bottom:676.478588pt;}
.y218{bottom:682.013333pt;}
.y176{bottom:682.973333pt;}
.y335{bottom:683.613333pt;}
.yc7{bottom:683.933333pt;}
.y6b{bottom:684.413333pt;}
.y372{bottom:684.573333pt;}
.y7d{bottom:684.893333pt;}
.y28a{bottom:685.253333pt;}
.y1c{bottom:685.533333pt;}
.y24e{bottom:686.813333pt;}
.y336{bottom:688.893333pt;}
.y1b2{bottom:689.533333pt;}
.y23c{bottom:690.333333pt;}
.y150{bottom:691.133333pt;}
.y38a{bottom:693.533333pt;}
.y196{bottom:693.853333pt;}
.y1f5{bottom:696.971735pt;}
.y113{bottom:697.853333pt;}
.y352{bottom:698.013333pt;}
.y334{bottom:701.533333pt;}
.y371{bottom:702.493333pt;}
.y217{bottom:702.653333pt;}
.y1d7{bottom:704.893333pt;}
.y7c{bottom:705.533333pt;}
.y48{bottom:706.653333pt;}
.y127{bottom:707.773333pt;}
.y1b1{bottom:708.893333pt;}
.y23b{bottom:710.813333pt;}
.y2fc{bottom:711.656386pt;}
.yc6{bottom:712.573333pt;}
.y389{bottom:714.173333pt;}
.y24d{bottom:715.453333pt;}
.y14f{bottom:717.053333pt;}
.y112{bottom:718.493333pt;}
.y333{bottom:719.453333pt;}
.y36f{bottom:720.413333pt;}
.y6a{bottom:721.693333pt;}
.y370{bottom:725.693333pt;}
.y7b{bottom:726.173333pt;}
.y351{bottom:726.333333pt;}
.y1f4{bottom:729.200415pt;}
.y216{bottom:731.293333pt;}
.y23a{bottom:731.453333pt;}
.y175{bottom:731.773333pt;}
.y289{bottom:732.640000pt;}
.yc5{bottom:733.053333pt;}
.y24c{bottom:736.093333pt;}
.y47{bottom:736.413333pt;}
.y332{bottom:737.213333pt;}
.y1b0{bottom:737.373333pt;}
.y36e{bottom:738.333333pt;}
.y111{bottom:739.133333pt;}
.y2d9{bottom:740.243053pt;}
.y388{bottom:742.813333pt;}
.y195{bottom:744.573333pt;}
.y125{bottom:745.053333pt;}
.y14e{bottom:745.693333pt;}
.y3a7{bottom:747.613333pt;}
.y215{bottom:751.773333pt;}
.y239{bottom:752.093333pt;}
.yc4{bottom:753.693333pt;}
.y7a{bottom:754.653333pt;}
.y350{bottom:754.813333pt;}
.y331{bottom:755.133333pt;}
.y36d{bottom:756.253333pt;}
.y24b{bottom:756.573333pt;}
.y174{bottom:757.853333pt;}
.y46{bottom:758.333333pt;}
.y69{bottom:758.973333pt;}
.y110{bottom:759.613333pt;}
.y261{bottom:760.991333pt;}
.y1f3{bottom:761.440200pt;}
.y387{bottom:765.373333pt;}
.y1af{bottom:766.013333pt;}
.y14d{bottom:766.333333pt;}
.y194{bottom:770.653333pt;}
.y214{bottom:772.413333pt;}
.y330{bottom:773.053333pt;}
.y36c{bottom:774.173333pt;}
.yc3{bottom:774.333333pt;}
.y79{bottom:775.293333pt;}
.y1cf{bottom:777.213333pt;}
.y1b{bottom:778.333333pt;}
.y45{bottom:780.253333pt;}
.y238{bottom:780.573333pt;}
.y34f{bottom:783.133333pt;}
.y24a{bottom:785.213333pt;}
.y173{bottom:786.333333pt;}
.y14c{bottom:786.813333pt;}
.y10f{bottom:788.253333pt;}
.y32f{bottom:790.973333pt;}
.y36b{bottom:792.093333pt;}
.y213{bottom:793.053333pt;}
.y1f1{bottom:793.668880pt;}
.y1ae{bottom:794.653333pt;}
.yc2{bottom:794.813333pt;}
.y78{bottom:795.933333pt;}
.y67{bottom:796.253333pt;}
.y3a6{bottom:799.453333pt;}
.y237{bottom:801.213333pt;}
.y193{bottom:802.333333pt;}
.y44{bottom:802.493333pt;}
.y249{bottom:805.893333pt;}
.y172{bottom:807.013333pt;}
.y14b{bottom:807.493333pt;}
.y32e{bottom:808.933333pt;}
.y36a{bottom:810.053333pt;}
.y1a{bottom:811.813333pt;}
.y212{bottom:813.573333pt;}
.y34e{bottom:814.533333pt;}
.y2fb{bottom:815.088229pt;}
.yc1{bottom:815.493333pt;}
.y10e{bottom:815.653333pt;}
.y77{bottom:816.453333pt;}
.y1ad{bottom:817.253333pt;}
.y3a5{bottom:820.133333pt;}
.y236{bottom:821.893333pt;}
.y386{bottom:823.173333pt;}
.y124{bottom:823.493333pt;}
.y25c{bottom:824.130808pt;}
.y31f{bottom:824.784756pt;}
.y1f0{bottom:825.908666pt;}
.y43{bottom:826.053333pt;}
.y248{bottom:826.373333pt;}
.y32d{bottom:826.853333pt;}
.y369{bottom:827.973333pt;}
.y66{bottom:833.573333pt;}
.y192{bottom:835.013333pt;}
.y171{bottom:835.653333pt;}
.yc0{bottom:836.133333pt;}
.y76{bottom:837.093333pt;}
.y10d{bottom:837.733333pt;}
.y14a{bottom:840.453333pt;}
.y1ed{bottom:842.011900pt;}
.y235{bottom:842.373333pt;}
.y2d1{bottom:843.674895pt;}
.y34d{bottom:844.453333pt;}
.y211{bottom:845.413333pt;}
.y368{bottom:845.733333pt;}
.y3a4{bottom:848.773333pt;}
.y18{bottom:849.573333pt;}
.y42{bottom:850.373333pt;}
.y1ac{bottom:854.533333pt;}
.y247{bottom:855.013333pt;}
.y191{bottom:855.653333pt;}
.ybf{bottom:856.613333pt;}
.y75{bottom:857.733333pt;}
.y170{bottom:858.213333pt;}
.y32c{bottom:860.773333pt;}
.y234{bottom:863.013333pt;}
.y367{bottom:863.653333pt;}
.y65{bottom:870.853333pt;}
.y34c{bottom:873.093333pt;}
.y287{bottom:874.652094pt;}
.y149{bottom:875.653333pt;}
.y190{bottom:876.133333pt;}
.ybe{bottom:877.253333pt;}
.y210{bottom:878.053333pt;}
.y74{bottom:878.213333pt;}
.y41{bottom:880.453333pt;}
.y385{bottom:881.093333pt;}
.y121{bottom:881.413333pt;}
.y233{bottom:883.653333pt;}
.y17{bottom:887.493333pt;}
.y1eb{bottom:890.377131pt;}
.y2f7{bottom:892.362162pt;}
.y329{bottom:894.853333pt;}
.y148{bottom:896.133333pt;}
.y366{bottom:897.573333pt;}
.y20f{bottom:898.533333pt;}
.y34b{bottom:902.373333pt;}
.y25a{bottom:902.853333pt;}
.y13e{bottom:903.173333pt;}
.y40{bottom:903.973333pt;}
.y232{bottom:904.133333pt;}
.y18f{bottom:904.773333pt;}
.y73{bottom:906.853333pt;}
.y63{bottom:908.133333pt;}
.ybd{bottom:910.213333pt;}
.y319{bottom:911.430543pt;}
.y147{bottom:916.773333pt;}
.y20e{bottom:919.173333pt;}
.y2cd{bottom:920.948829pt;}
.y1cd{bottom:921.093333pt;}
.y1ea{bottom:922.605811pt;}
.ybc{bottom:923.653333pt;}
.y98{bottom:924.773333pt;}
.y14{bottom:925.253333pt;}
.y18e{bottom:925.413333pt;}
.y72{bottom:927.493333pt;}
.y3f{bottom:928.133333pt;}
.y365{bottom:931.653333pt;}
.y34a{bottom:931.813333pt;}
.y16d{bottom:933.733333pt;}
.y259{bottom:935.973333pt;}
.y146{bottom:937.413333pt;}
.y1e9{bottom:938.709045pt;}
.y384{bottom:938.853333pt;}
.y3a3{bottom:939.013333pt;}
.y20d{bottom:939.813333pt;}
.y1ab{bottom:940.933333pt;}
.ybb{bottom:944.293333pt;}
.y62{bottom:945.253333pt;}
.y97{bottom:945.413333pt;}
.y18d{bottom:945.893333pt;}
.y71{bottom:948.133333pt;}
.y13d{bottom:952.293333pt;}
.y3b6{bottom:954.053333pt;}
.y2ff{bottom:954.193188pt;}
.y1e8{bottom:954.845596pt;}
.y3a2{bottom:956.933333pt;}
.y3e{bottom:959.013333pt;}
.y20c{bottom:960.293333pt;}
.y349{bottom:961.733333pt;}
.y258{bottom:962.053333pt;}
.y12{bottom:963.013333pt;}
.y96{bottom:966.053333pt;}
.y11f{bottom:967.813333pt;}
.y70{bottom:968.613333pt;}
.y1e7{bottom:970.948830pt;}
.yba{bottom:972.933333pt;}
.y18c{bottom:978.853333pt;}
.y325{bottom:980.760493pt;}
.y20b{bottom:980.933333pt;}
.y2f3{bottom:982.779854pt;}
.y348{bottom:984.133333pt;}
.y5{bottom:985.413333pt;}
.y1e5{bottom:987.074276pt;}
.y1aa{bottom:990.693333pt;}
.yb9{bottom:993.413333pt;}
.y11{bottom:999.973333pt;}
.y3d{bottom:1002.213333pt;}
.y61{bottom:1002.533333pt;}
.y3ba{bottom:1002.853333pt;}
.y4{bottom:1006.053333pt;}
.y328{bottom:1010.213333pt;}
.y20a{bottom:1012.773333pt;}
.yb8{bottom:1014.053333pt;}
.y11e{bottom:1016.613333pt;}
.y1{bottom:1061.440000pt;}
.h6a{height:8.045781pt;}
.h52{height:10.400000pt;}
.h53{height:11.040000pt;}
.h51{height:11.200000pt;}
.h97{height:12.800000pt;}
.h96{height:12.960000pt;}
.h5e{height:13.127769pt;}
.h92{height:14.400000pt;}
.h7d{height:14.782228pt;}
.h46{height:15.547950pt;}
.h48{height:15.575714pt;}
.h74{height:16.066563pt;}
.h94{height:16.160000pt;}
.h85{height:18.015131pt;}
.h95{height:19.040000pt;}
.h64{height:23.667478pt;}
.h62{height:24.364606pt;}
.h66{height:26.034226pt;}
.h6b{height:26.801066pt;}
.h9{height:26.880000pt;}
.hb{height:28.480000pt;}
.h11{height:28.640000pt;}
.h93{height:29.472000pt;}
.h61{height:30.666173pt;}
.h5a{height:31.217505pt;}
.h49{height:31.678949pt;}
.he{height:32.832000pt;}
.h3c{height:33.792000pt;}
.h3f{height:33.952000pt;}
.h22{height:34.374375pt;}
.h26{height:34.720000pt;}
.h45{height:35.840000pt;}
.h1c{height:36.480000pt;}
.h1b{height:36.640000pt;}
.h1d{height:36.672000pt;}
.h21{height:36.920625pt;}
.hc{height:36.960000pt;}
.hd{height:37.120000pt;}
.h8a{height:38.008125pt;}
.h63{height:38.399641pt;}
.h20{height:38.578125pt;}
.h5d{height:38.616662pt;}
.h12{height:39.680000pt;}
.h56{height:39.754119pt;}
.h59{height:42.478328pt;}
.h50{height:42.649687pt;}
.h65{height:42.690925pt;}
.h79{height:43.483420pt;}
.h16{height:43.905937pt;}
.h76{height:44.764227pt;}
.h13{height:46.400000pt;}
.h14{height:46.560000pt;}
.h6f{height:47.261422pt;}
.h2{height:47.322500pt;}
.h8f{height:47.380000pt;}
.h8c{height:47.437500pt;}
.h55{height:47.704943pt;}
.h25{height:47.742188pt;}
.h4c{height:47.782183pt;}
.h4a{height:47.809947pt;}
.h78{height:47.831762pt;}
.h47{height:48.602528pt;}
.h6d{height:48.653511pt;}
.h3b{height:49.120000pt;}
.h7e{height:49.240650pt;}
.h54{height:50.035971pt;}
.h67{height:51.501920pt;}
.h68{height:51.516792pt;}
.h71{height:51.987564pt;}
.h23{height:52.834688pt;}
.h82{height:52.993331pt;}
.h27{height:54.390938pt;}
.h80{height:54.554254pt;}
.h75{height:56.341875pt;}
.h29{height:57.120000pt;}
.h8e{height:57.152000pt;}
.h2b{height:57.280000pt;}
.h91{height:57.312000pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h37{height:60.937500pt;}
.h6c{height:61.237068pt;}
.h17{height:62.560000pt;}
.h57{height:62.654160pt;}
.h6{height:63.656250pt;}
.h15{height:65.280000pt;}
.h7f{height:68.663956pt;}
.h69{height:68.768373pt;}
.h5{height:68.800000pt;}
.h77{height:70.550301pt;}
.h1f{height:71.296875pt;}
.h3e{height:71.552000pt;}
.h40{height:71.680000pt;}
.h35{height:72.160000pt;}
.h36{height:72.192000pt;}
.h8b{height:74.477812pt;}
.h2f{height:74.880000pt;}
.h19{height:76.671562pt;}
.h6e{height:76.679975pt;}
.h3a{height:77.760000pt;}
.h2a{height:77.792000pt;}
.h31{height:80.000000pt;}
.h18{height:81.046875pt;}
.h7{height:83.232000pt;}
.h58{height:84.032284pt;}
.h5b{height:84.056549pt;}
.h28{height:85.760000pt;}
.h39{height:85.792000pt;}
.h81{height:85.979793pt;}
.h10{height:87.840000pt;}
.h42{height:89.440000pt;}
.h44{height:89.600000pt;}
.h33{height:90.880000pt;}
.h32{height:90.912000pt;}
.hf{height:92.160000pt;}
.h2d{height:93.632000pt;}
.h7a{height:94.622654pt;}
.h7b{height:94.649977pt;}
.h88{height:95.484375pt;}
.h86{height:95.680000pt;}
.h8d{height:95.712000pt;}
.h4b{height:96.147414pt;}
.h90{height:98.240000pt;}
.h2c{height:98.432000pt;}
.h1a{height:101.765625pt;}
.h70{height:102.843824pt;}
.h72{height:102.873522pt;}
.h89{height:106.305937pt;}
.ha{height:111.515625pt;}
.h5c{height:112.204816pt;}
.h84{height:115.316818pt;}
.h8{height:116.490937pt;}
.h4f{height:117.920000pt;}
.h43{height:125.312000pt;}
.h7c{height:126.345697pt;}
.h30{height:131.072000pt;}
.h34{height:136.346667pt;}
.h73{height:137.323085pt;}
.h87{height:142.202812pt;}
.h41{height:143.226667pt;}
.h83{height:153.977755pt;}
.h3d{height:161.120000pt;}
.h4e{height:176.724666pt;}
.h2e{height:243.386667pt;}
.h38{height:285.946667pt;}
.h1e{height:369.506667pt;}
.h4d{height:418.461976pt;}
.h24{height:420.640000pt;}
.h5f{height:793.760000pt;}
.h60{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w37{width:31.540394pt;}
.w35{width:31.555271pt;}
.w39{width:38.994043pt;}
.w28{width:39.360000pt;}
.w36{width:41.374450pt;}
.w38{width:45.837714pt;}
.w27{width:52.803570pt;}
.w29{width:54.720000pt;}
.w48{width:57.966926pt;}
.w4c{width:57.994256pt;}
.w3a{width:59.227503pt;}
.w45{width:63.009581pt;}
.w46{width:63.039274pt;}
.w41{width:63.041974pt;}
.w2c{width:63.144252pt;}
.w19{width:65.120000pt;}
.w2a{width:65.472000pt;}
.wd{width:67.680000pt;}
.w4a{width:68.352326pt;}
.w53{width:70.053721pt;}
.w4b{width:72.725125pt;}
.w40{width:77.331885pt;}
.w2d{width:79.185124pt;}
.w58{width:79.680000pt;}
.w50{width:83.378251pt;}
.w62{width:88.000000pt;}
.w64{width:88.032000pt;}
.w63{width:88.160000pt;}
.w61{width:88.192000pt;}
.w52{width:91.372970pt;}
.w51{width:92.072508pt;}
.w2e{width:92.774971pt;}
.w5f{width:102.240000pt;}
.w3c{width:111.908887pt;}
.we{width:112.832000pt;}
.w2f{width:113.164595pt;}
.w1f{width:116.160000pt;}
.w3b{width:122.936123pt;}
.w1a{width:129.152000pt;}
.w59{width:134.746667pt;}
.w60{width:135.066667pt;}
.w1c{width:144.666667pt;}
.w9{width:149.786667pt;}
.w8{width:149.946667pt;}
.wa{width:150.266667pt;}
.wb{width:152.346667pt;}
.w6{width:152.826667pt;}
.w24{width:162.266667pt;}
.w56{width:168.128929pt;}
.w13{width:169.146667pt;}
.w5c{width:172.346667pt;}
.w4f{width:175.021309pt;}
.w5a{width:180.186667pt;}
.w3{width:186.786667pt;}
.w5b{width:188.386667pt;}
.w5e{width:188.866667pt;}
.w1e{width:189.666667pt;}
.w23{width:209.186667pt;}
.wf{width:210.906667pt;}
.w10{width:211.426667pt;}
.w5{width:224.866667pt;}
.w22{width:231.386667pt;}
.w5d{width:240.986667pt;}
.w21{width:242.946667pt;}
.w20{width:243.106667pt;}
.w1d{width:267.866667pt;}
.w18{width:301.346667pt;}
.w17{width:301.506667pt;}
.w12{width:313.666667pt;}
.w3e{width:339.910227pt;}
.w1b{width:386.813333pt;}
.w30{width:413.374015pt;}
.w43{width:421.068101pt;}
.w4{width:431.293333pt;}
.w14{width:433.533333pt;}
.w55{width:436.951338pt;}
.w7{width:451.293333pt;}
.wc{width:451.773333pt;}
.w11{width:466.493333pt;}
.w54{width:474.989135pt;}
.w26{width:550.189878pt;}
.w44{width:550.488313pt;}
.w57{width:565.693333pt;}
.w3f{width:572.131169pt;}
.w47{width:573.678183pt;}
.w15{width:603.493333pt;}
.w25{width:604.092828pt;}
.w2b{width:609.114648pt;}
.w4e{width:620.259777pt;}
.w42{width:626.260517pt;}
.w16{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w49{width:833.522005pt;}
.w4d{width:854.335746pt;}
.w34{width:904.236306pt;}
.w3d{width:931.352118pt;}
.w33{width:1122.559983pt;}
.w31{width:1122.560000pt;}
.w32{width:1122.666667pt;}
.x97{left:-49.375948pt;}
.x95{left:-47.593423pt;}
.x7a{left:-26.496906pt;}
.xa7{left:-18.439656pt;}
.xbc{left:-13.990757pt;}
.xad{left:-10.412729pt;}
.xa8{left:-5.344828pt;}
.xa9{left:-4.157088pt;}
.xa3{left:-1.187740pt;}
.x0{left:0.000000pt;}
.x61{left:1.665728pt;}
.x7c{left:3.273060pt;}
.x5e{left:4.320000pt;}
.x9c{left:5.347576pt;}
.x7e{left:6.248569pt;}
.x9{left:7.200000pt;}
.x4e{left:8.480000pt;}
.x6{left:9.600000pt;}
.xd{left:10.720000pt;}
.x63{left:12.215337pt;}
.x57{left:13.440000pt;}
.x8f{left:14.877544pt;}
.x18{left:16.320000pt;}
.x5b{left:17.920000pt;}
.x53{left:18.880000pt;}
.x17{left:20.320000pt;}
.x5a{left:21.440000pt;}
.x1c{left:22.400000pt;}
.x15{left:23.520000pt;}
.x14{left:24.640000pt;}
.x4d{left:25.920000pt;}
.x54{left:28.160000pt;}
.x4a{left:29.274667pt;}
.x4b{left:31.040000pt;}
.x59{left:32.160000pt;}
.x56{left:33.440000pt;}
.xb9{left:34.710403pt;}
.xc1{left:36.154667pt;}
.x1a{left:37.280000pt;}
.x74{left:39.827958pt;}
.xf{left:41.920000pt;}
.x52{left:43.514667pt;}
.x26{left:44.794667pt;}
.x11{left:45.920000pt;}
.x4c{left:52.320000pt;}
.xc3{left:53.640000pt;}
.x62{left:55.024540pt;}
.x6c{left:56.159988pt;}
.x55{left:57.280000pt;}
.x1f{left:60.800000pt;}
.xb6{left:63.432926pt;}
.xa1{left:67.201200pt;}
.x29{left:69.754667pt;}
.x1b{left:71.360000pt;}
.x2c{left:73.434667pt;}
.x2b{left:75.514667pt;}
.x13{left:76.680000pt;}
.x2a{left:79.994667pt;}
.x2d{left:80.954667pt;}
.xc6{left:82.394667pt;}
.x20{left:83.400000pt;}
.x51{left:84.680000pt;}
.xc9{left:88.512000pt;}
.x16{left:89.480000pt;}
.x19{left:90.560000pt;}
.x4{left:94.591988pt;}
.x36{left:98.911988pt;}
.x3b{left:103.903988pt;}
.x4f{left:105.280000pt;}
.x37{left:106.303988pt;}
.x3c{left:107.743988pt;}
.x39{left:109.183988pt;}
.xbe{left:111.994667pt;}
.x1e{left:113.960000pt;}
.x3a{left:115.263988pt;}
.xac{left:116.424662pt;}
.x40{left:117.594667pt;}
.x43{left:118.591988pt;}
.x79{left:122.220443pt;}
.x42{left:124.800000pt;}
.x58{left:128.800000pt;}
.x23{left:132.351988pt;}
.x8a{left:136.502885pt;}
.x44{left:142.586655pt;}
.x92{left:147.329344pt;}
.x49{left:148.826667pt;}
.x94{left:149.851032pt;}
.x38{left:156.573322pt;}
.x98{left:158.763658pt;}
.x76{left:160.311656pt;}
.xe{left:162.906667pt;}
.x65{left:168.159988pt;}
.x48{left:171.546667pt;}
.xb8{left:179.244038pt;}
.x28{left:181.786667pt;}
.xc2{left:184.826667pt;}
.xbd{left:192.113085pt;}
.x7b{left:196.027940pt;}
.x5c{left:212.026667pt;}
.x99{left:222.399807pt;}
.x8b{left:227.883737pt;}
.xaa{left:235.409971pt;}
.x3{left:241.346655pt;}
.xa{left:248.066667pt;}
.x27{left:265.186667pt;}
.xa0{left:266.428099pt;}
.xc7{left:268.226667pt;}
.xba{left:271.989434pt;}
.x3f{left:273.506655pt;}
.x10{left:276.386667pt;}
.x3e{left:280.386655pt;}
.x66{left:284.893322pt;}
.x35{left:286.626655pt;}
.x6d{left:290.275661pt;}
.x30{left:292.546655pt;}
.x31{left:296.866643pt;}
.x32{left:301.506655pt;}
.xa4{left:311.514380pt;}
.x6a{left:315.746667pt;}
.xc4{left:320.226667pt;}
.x46{left:323.266655pt;}
.x5f{left:326.946667pt;}
.x22{left:327.906655pt;}
.x67{left:337.533322pt;}
.x6f{left:339.037553pt;}
.x24{left:343.266655pt;}
.x25{left:346.946655pt;}
.x9a{left:349.672106pt;}
.x8c{left:351.111460pt;}
.x6e{left:353.905264pt;}
.x8{left:357.826667pt;}
.x7{left:359.266667pt;}
.x5{left:364.226667pt;}
.xca{left:370.786667pt;}
.xc8{left:378.146667pt;}
.x7f{left:380.386074pt;}
.x41{left:397.373333pt;}
.xb{left:398.653333pt;}
.xae{left:408.500354pt;}
.x9b{left:413.308255pt;}
.x72{left:417.554282pt;}
.x33{left:426.013310pt;}
.xb0{left:427.162407pt;}
.x8e{left:428.904721pt;}
.x34{left:430.653322pt;}
.x90{left:447.665304pt;}
.x73{left:450.289862pt;}
.x75{left:452.231269pt;}
.x1d{left:453.373333pt;}
.x5d{left:455.773333pt;}
.x68{left:457.439988pt;}
.x7d{left:463.317898pt;}
.xcb{left:465.693333pt;}
.xaf{left:481.777545pt;}
.x12{left:487.933333pt;}
.x69{left:489.439988pt;}
.x8d{left:495.173696pt;}
.xc5{left:501.053333pt;}
.x9e{left:504.929969pt;}
.x50{left:509.053333pt;}
.x9f{left:510.871720pt;}
.x6b{left:513.053333pt;}
.x70{left:531.204228pt;}
.xbb{left:532.817124pt;}
.x60{left:536.453333pt;}
.xa5{left:542.168600pt;}
.xbf{left:547.013310pt;}
.xc{left:549.093333pt;}
.xc0{left:551.653322pt;}
.xb2{left:555.154255pt;}
.x2e{left:574.693322pt;}
.x83{left:578.614472pt;}
.x9d{left:580.425934pt;}
.x91{left:590.717285pt;}
.xb1{left:598.826462pt;}
.xb7{left:604.613322pt;}
.xa6{left:605.795805pt;}
.x1{left:607.973322pt;}
.x71{left:610.869850pt;}
.x96{left:644.062083pt;}
.xa2{left:669.413322pt;}
.x64{left:670.693322pt;}
.x47{left:684.293322pt;}
.x2{left:691.839988pt;}
.x21{left:695.519988pt;}
.x45{left:699.359988pt;}
.x3d{left:703.679988pt;}
.x2f{left:704.639988pt;}
.x87{left:714.940385pt;}
.xb3{left:715.886310pt;}
.x84{left:718.110720pt;}
.x93{left:722.719988pt;}
.x85{left:749.948664pt;}
.xb4{left:774.394371pt;}
.x89{left:784.597047pt;}
.x86{left:796.086904pt;}
.xb5{left:832.935227pt;}
.x81{left:848.588340pt;}
.x88{left:867.231321pt;}
.xab{left:891.454219pt;}
.x80{left:930.919112pt;}
.x82{left:994.624756pt;}
.x77{left:1013.119983pt;}
.x78{left:1026.719983pt;}
}




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