
    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_5f134e6ff3e15af4ab787dd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_ae9aeef0ab43cdf15f3c3603.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_314230f731bb5559d5cfe45f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_b44c6edc33f0f80c78fd312b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_6dc9a3a0859c0a7baffda592.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_c9ecc3481afbedb18062d61e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675000;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_8b474cc5f53c4ae62708e124.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_8ba636a28f662dae702e7f4b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.131000;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_64d39fe38150b5f4ea0dbc43.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.510000;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_5bdf6c71314eee8c954eb324.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962000;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_aed053199fa7ffdbdf084023.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.545000;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_ff873ec0f27903eaa5959e68.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.678000;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_f85408edbc43130cd395888a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.168000;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_0e4f9b052c8af6655e93650f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.039000;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_d3b9d204f9d56ccf71ea36ee.woff2')format("woff");}.fff{font-family:fff;line-height:0.679000;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_20562e6d21cd698ce82b5067.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.264000;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_30de13d174db22cf311661ad.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.279000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m7{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;}
.ls48{letter-spacing:-3.445645px;}
.lsd{letter-spacing:-2.462410px;}
.lse{letter-spacing:-2.433610px;}
.ls3c{letter-spacing:-1.271984px;}
.ls3f{letter-spacing:-1.262384px;}
.ls27{letter-spacing:-1.234787px;}
.ls3e{letter-spacing:-1.219185px;}
.ls39{letter-spacing:-1.209585px;}
.ls15{letter-spacing:-1.206012px;}
.ls3b{letter-spacing:-1.204785px;}
.ls11{letter-spacing:-1.200012px;}
.ls3d{letter-spacing:-1.190385px;}
.ls10{letter-spacing:-1.188012px;}
.ls38{letter-spacing:-1.180785px;}
.ls41{letter-spacing:-1.166385px;}
.ls23{letter-spacing:-1.164228px;}
.ls36{letter-spacing:-1.161585px;}
.ls13{letter-spacing:-1.158012px;}
.ls70{letter-spacing:-1.151985px;}
.ls40{letter-spacing:-1.142386px;}
.ls37{letter-spacing:-1.127986px;}
.ls71{letter-spacing:-1.124985px;}
.ls14{letter-spacing:-1.116011px;}
.lsf{letter-spacing:-1.110011px;}
.ls1f{letter-spacing:-1.105429px;}
.ls72{letter-spacing:-1.102485px;}
.ls24{letter-spacing:-1.099549px;}
.ls2c{letter-spacing:-1.093663px;}
.ls16{letter-spacing:-1.092011px;}
.ls22{letter-spacing:-1.087789px;}
.ls12{letter-spacing:-1.086011px;}
.ls20{letter-spacing:-1.076029px;}
.ls28{letter-spacing:-1.064269px;}
.ls2a{letter-spacing:-1.058389px;}
.ls25{letter-spacing:-1.052509px;}
.ls2b{letter-spacing:-1.040749px;}
.ls26{letter-spacing:-1.034869px;}
.ls29{letter-spacing:-0.999590px;}
.ls21{letter-spacing:-0.829072px;}
.ls52{letter-spacing:-0.811185px;}
.ls57{letter-spacing:-0.705591px;}
.lsc{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.000019px;}
.ls6f{letter-spacing:0.044968px;}
.ls6c{letter-spacing:0.045002px;}
.ls6e{letter-spacing:0.045032px;}
.ls50{letter-spacing:0.058812px;}
.ls55{letter-spacing:0.058819px;}
.ls62{letter-spacing:0.117553px;}
.ls1b{letter-spacing:0.117613px;}
.ls33{letter-spacing:0.143987px;}
.ls59{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.176365px;}
.ls18{letter-spacing:0.176400px;}
.ls4f{letter-spacing:0.176402px;}
.ls2f{letter-spacing:0.176425px;}
.ls74{letter-spacing:0.179937px;}
.ls1{letter-spacing:0.540005px;}
.ls6b{letter-spacing:0.548993px;}
.ls2{letter-spacing:0.552006px;}
.ls6{letter-spacing:0.564006px;}
.ls6a{letter-spacing:0.571492px;}
.ls5{letter-spacing:0.582006px;}
.ls7{letter-spacing:0.588006px;}
.ls3{letter-spacing:0.594006px;}
.ls0{letter-spacing:0.618006px;}
.ls4{letter-spacing:0.636006px;}
.ls1e{letter-spacing:11.289470px;}
.ls3a{letter-spacing:11.731053px;}
.ls34{letter-spacing:11.759860px;}
.ls68{letter-spacing:12.143850px;}
.ls5e{letter-spacing:12.239861px;}
.ls67{letter-spacing:12.239887px;}
.ls5c{letter-spacing:12.335863px;}
.ls5f{letter-spacing:12.355046px;}
.ls5b{letter-spacing:12.431860px;}
.ls56{letter-spacing:12.479857px;}
.ls5d{letter-spacing:12.575848px;}
.ls6d{letter-spacing:13.499777px;}
.ls5a{letter-spacing:14.159800px;}
.ls64{letter-spacing:14.159860px;}
.ls66{letter-spacing:14.255848px;}
.ls35{letter-spacing:14.395020px;}
.ls58{letter-spacing:14.495800px;}
.ls31{letter-spacing:14.495860px;}
.ls65{letter-spacing:14.543810px;}
.ls17{letter-spacing:15.210152px;}
.ls46{letter-spacing:16.616710px;}
.ls45{letter-spacing:16.699001px;}
.ls19{letter-spacing:17.463431px;}
.ls54{letter-spacing:17.639797px;}
.ls4a{letter-spacing:17.698632px;}
.ls49{letter-spacing:17.874991px;}
.lsa{letter-spacing:18.110215px;}
.ls73{letter-spacing:18.515280px;}
.ls8{letter-spacing:18.815808px;}
.ls51{letter-spacing:18.992197px;}
.ls1d{letter-spacing:20.168231px;}
.ls9{letter-spacing:22.226173px;}
.ls61{letter-spacing:23.578571px;}
.ls2d{letter-spacing:23.813798px;}
.ls1a{letter-spacing:25.930511px;}
.ls42{letter-spacing:26.636111px;}
.ls4e{letter-spacing:28.164937px;}
.ls4b{letter-spacing:28.870477px;}
.ls63{letter-spacing:29.046911px;}
.ls1c{letter-spacing:29.340851px;}
.ls30{letter-spacing:30.634478px;}
.ls43{letter-spacing:30.987281px;}
.ls44{letter-spacing:34.750421px;}
.ls4c{letter-spacing:35.691217px;}
.ls4d{letter-spacing:35.691277px;}
.ls47{letter-spacing:36.690817px;}
.ls60{letter-spacing:36.867251px;}
.ls53{letter-spacing:38.395957px;}
.ls69{letter-spacing:42.629531px;}
.lsb{letter-spacing:60.974978px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1f6{word-spacing:-18.577080px;}
.ws14d{word-spacing:-16.675510px;}
.ws1f{word-spacing:-15.270153px;}
.wsdc{word-spacing:-14.443019px;}
.ws1ac{word-spacing:-12.403045px;}
.wse1{word-spacing:-11.779053px;}
.ws20{word-spacing:-0.061800px;}
.ws2a{word-spacing:-0.058799px;}
.ws48{word-spacing:-0.047999px;}
.ws3b{word-spacing:-0.044999px;}
.ws42{word-spacing:-0.041999px;}
.ws49{word-spacing:0.000000px;}
.ws8a{word-spacing:0.770272px;}
.ws8d{word-spacing:1.105429px;}
.ws1f7{word-spacing:10.754857px;}
.ws1f8{word-spacing:10.934854px;}
.ws1f1{word-spacing:11.204851px;}
.ws1f2{word-spacing:11.384848px;}
.ws1f0{word-spacing:11.519846px;}
.ws19a{word-spacing:11.519856px;}
.ws19c{word-spacing:11.567855px;}
.ws1e1{word-spacing:11.654845px;}
.ws19b{word-spacing:11.663854px;}
.ws1f3{word-spacing:11.699844px;}
.ws191{word-spacing:11.759853px;}
.ws19d{word-spacing:11.807852px;}
.ws19e{word-spacing:11.855852px;}
.ws3a{word-spacing:11.879842px;}
.ws1b9{word-spacing:11.951851px;}
.ws1aa{word-spacing:11.999850px;}
.ws199{word-spacing:12.239847px;}
.ws43{word-spacing:12.305824px;}
.ws190{word-spacing:12.335846px;}
.ws18e{word-spacing:12.383845px;}
.ws3e{word-spacing:12.431822px;}
.ws1ab{word-spacing:12.431845px;}
.ws44{word-spacing:12.515821px;}
.ws45{word-spacing:12.599820px;}
.ws1e3{word-spacing:12.680831px;}
.ws41{word-spacing:12.683819px;}
.ws40{word-spacing:12.809817px;}
.ws3f{word-spacing:12.893816px;}
.ws1e2{word-spacing:12.973327px;}
.ws1fb{word-spacing:13.139825px;}
.ws19f{word-spacing:13.142266px;}
.ws1fc{word-spacing:13.184824px;}
.ws1ef{word-spacing:13.207324px;}
.ws1ee{word-spacing:13.229824px;}
.ws1ed{word-spacing:13.301823px;}
.ws3c{word-spacing:13.319822px;}
.ws1ec{word-spacing:13.364822px;}
.ws1f5{word-spacing:13.409821px;}
.ws1de{word-spacing:13.454821px;}
.ws1e7{word-spacing:13.499812px;}
.ws1e4{word-spacing:13.499820px;}
.ws1e6{word-spacing:13.544819px;}
.ws1e9{word-spacing:13.544831px;}
.ws1df{word-spacing:13.544835px;}
.ws1ea{word-spacing:13.589819px;}
.ws1e5{word-spacing:13.634818px;}
.ws1e8{word-spacing:13.679818px;}
.ws163{word-spacing:13.700260px;}
.ws1e0{word-spacing:13.724817px;}
.wsdb{word-spacing:13.727828px;}
.ws1eb{word-spacing:13.769816px;}
.ws1ce{word-spacing:13.775828px;}
.ws1f9{word-spacing:13.814816px;}
.wsd8{word-spacing:13.823827px;}
.wsde{word-spacing:13.833427px;}
.ws1f4{word-spacing:13.859815px;}
.ws3d{word-spacing:13.904815px;}
.wse7{word-spacing:13.910226px;}
.ws18f{word-spacing:13.915021px;}
.ws47{word-spacing:13.919826px;}
.wsba{word-spacing:13.919829px;}
.ws1fa{word-spacing:13.949814px;}
.wse9{word-spacing:13.967791px;}
.ws46{word-spacing:13.967825px;}
.wsb9{word-spacing:13.967851px;}
.wsdf{word-spacing:13.991825px;}
.wse0{word-spacing:13.996625px;}
.ws1a9{word-spacing:14.015825px;}
.wse4{word-spacing:14.054224px;}
.wse8{word-spacing:14.078224px;}
.ws18d{word-spacing:14.111824px;}
.wsdd{word-spacing:14.159823px;}
.wse2{word-spacing:14.164623px;}
.wse5{word-spacing:14.179023px;}
.wse3{word-spacing:14.183823px;}
.wsda{word-spacing:14.207822px;}
.wsbb{word-spacing:14.255822px;}
.wsd9{word-spacing:14.303810px;}
.wse6{word-spacing:14.510219px;}
.ws4a{word-spacing:14.523452px;}
.ws1d8{word-spacing:14.582251px;}
.ws150{word-spacing:14.641051px;}
.ws151{word-spacing:14.817449px;}
.ws12c{word-spacing:14.876248px;}
.ws119{word-spacing:14.935048px;}
.wsd{word-spacing:14.940149px;}
.ws154{word-spacing:14.993847px;}
.wse{word-spacing:15.060151px;}
.ws2c{word-spacing:15.111446px;}
.wsbd{word-spacing:15.111464px;}
.ws71{word-spacing:15.170245px;}
.ws128{word-spacing:15.229045px;}
.ws4c{word-spacing:15.287844px;}
.ws9f{word-spacing:15.346643px;}
.ws18c{word-spacing:15.405443px;}
.wsf{word-spacing:15.420154px;}
.ws6e{word-spacing:15.464242px;}
.ws27{word-spacing:15.581841px;}
.wsa9{word-spacing:15.640640px;}
.ws14c{word-spacing:15.758239px;}
.ws30{word-spacing:15.817039px;}
.ws14e{word-spacing:15.875838px;}
.ws6b{word-spacing:16.052236px;}
.wsd7{word-spacing:16.092000px;}
.ws14f{word-spacing:16.228634px;}
.ws9d{word-spacing:16.339378px;}
.wsa6{word-spacing:16.346233px;}
.ws12d{word-spacing:16.394578px;}
.ws12b{word-spacing:16.405033px;}
.ws87{word-spacing:16.449779px;}
.ws6f{word-spacing:16.522631px;}
.ws72{word-spacing:16.560180px;}
.wsce{word-spacing:16.615381px;}
.wsa8{word-spacing:16.640230px;}
.wsf2{word-spacing:16.670581px;}
.ws12a{word-spacing:16.699030px;}
.wsbe{word-spacing:16.725782px;}
.ws9c{word-spacing:16.775469px;}
.ws10c{word-spacing:16.780982px;}
.ws123{word-spacing:16.816628px;}
.wsb5{word-spacing:16.875428px;}
.ws112{word-spacing:16.891384px;}
.ws1a{word-spacing:16.932169px;}
.ws195{word-spacing:16.946584px;}
.ws152{word-spacing:16.993027px;}
.wsd4{word-spacing:17.051826px;}
.ws11a{word-spacing:17.112186px;}
.ws194{word-spacing:17.169425px;}
.ws19{word-spacing:17.220172px;}
.ws197{word-spacing:17.228224px;}
.ws10{word-spacing:17.262173px;}
.ws1c{word-spacing:17.268173px;}
.ws1d{word-spacing:17.280173px;}
.ws18{word-spacing:17.310173px;}
.ws15{word-spacing:17.316173px;}
.ws1a5{word-spacing:17.345823px;}
.ws1e{word-spacing:17.352174px;}
.ws17{word-spacing:17.376174px;}
.ws12{word-spacing:17.388174px;}
.ws11{word-spacing:17.400174px;}
.ws6c{word-spacing:17.404622px;}
.ws1b{word-spacing:17.412174px;}
.ws16{word-spacing:17.418174px;}
.ws86{word-spacing:17.463422px;}
.wsa0{word-spacing:17.522221px;}
.ws5a{word-spacing:17.581021px;}
.ws11e{word-spacing:17.639777px;}
.ws1d7{word-spacing:17.639820px;}
.ws13{word-spacing:17.646176px;}
.wsb6{word-spacing:17.698619px;}
.ws179{word-spacing:17.698621px;}
.ws17c{word-spacing:17.757386px;}
.wsee{word-spacing:17.757419px;}
.ws17a{word-spacing:17.757446px;}
.wscd{word-spacing:17.816218px;}
.ws17b{word-spacing:17.816239px;}
.ws90{word-spacing:17.833858px;}
.wsa1{word-spacing:17.875018px;}
.ws91{word-spacing:17.916177px;}
.wsad{word-spacing:17.992616px;}
.ws187{word-spacing:17.992620px;}
.ws37{word-spacing:18.051416px;}
.wsb{word-spacing:18.060181px;}
.wsa{word-spacing:18.120181px;}
.wsc{word-spacing:18.180182px;}
.wsb0{word-spacing:18.227814px;}
.ws4b{word-spacing:18.286613px;}
.ws9{word-spacing:18.360184px;}
.ws14{word-spacing:18.420184px;}
.ws1dd{word-spacing:18.478200px;}
.ws31{word-spacing:18.521811px;}
.ws7f{word-spacing:18.580610px;}
.ws8{word-spacing:18.600186px;}
.ws107{word-spacing:18.698209px;}
.ws1a1{word-spacing:18.757049px;}
.ws24{word-spacing:18.815808px;}
.ws8f{word-spacing:18.868727px;}
.ws1a3{word-spacing:18.874607px;}
.ws1cb{word-spacing:18.933407px;}
.wsae{word-spacing:18.992206px;}
.ws106{word-spacing:19.051006px;}
.ws178{word-spacing:19.109805px;}
.ws1a2{word-spacing:19.168579px;}
.ws16d{word-spacing:19.168604px;}
.ws105{word-spacing:19.227404px;}
.ws1d3{word-spacing:19.286203px;}
.ws15d{word-spacing:19.345003px;}
.ws101{word-spacing:19.403802px;}
.ws168{word-spacing:19.462601px;}
.wsd0{word-spacing:19.462620px;}
.wsaa{word-spacing:19.521401px;}
.ws1a8{word-spacing:19.580200px;}
.ws7{word-spacing:19.602178px;}
.ws9a{word-spacing:19.615474px;}
.wsd1{word-spacing:19.639000px;}
.ws63{word-spacing:19.697799px;}
.ws5{word-spacing:19.734179px;}
.ws127{word-spacing:19.756598px;}
.ws6{word-spacing:19.800180px;}
.wscb{word-spacing:19.874197px;}
.wsec{word-spacing:19.932997px;}
.wsb4{word-spacing:19.991796px;}
.ws134{word-spacing:20.050595px;}
.ws22{word-spacing:20.109395px;}
.ws7e{word-spacing:20.168194px;}
.ws50{word-spacing:20.226994px;}
.ws21{word-spacing:20.285793px;}
.ws1b0{word-spacing:20.403392px;}
.wsb3{word-spacing:20.462191px;}
.wsfa{word-spacing:20.520991px;}
.ws1bb{word-spacing:20.579790px;}
.ws4d{word-spacing:20.638589px;}
.wsd6{word-spacing:20.697389px;}
.ws62{word-spacing:20.756188px;}
.wsd5{word-spacing:20.814988px;}
.wsf6{word-spacing:20.873775px;}
.ws2f{word-spacing:20.873787px;}
.ws64{word-spacing:20.932586px;}
.wsa2{word-spacing:20.991386px;}
.ws1b4{word-spacing:21.050185px;}
.ws4f{word-spacing:21.108985px;}
.ws2e{word-spacing:21.226583px;}
.ws94{word-spacing:21.279503px;}
.ws161{word-spacing:21.285383px;}
.ws26{word-spacing:21.344182px;}
.ws1bc{word-spacing:21.402982px;}
.wsb8{word-spacing:21.461781px;}
.ws140{word-spacing:21.520561px;}
.wsc7{word-spacing:21.520580px;}
.ws54{word-spacing:21.579380px;}
.ws181{word-spacing:21.638179px;}
.ws53{word-spacing:21.696979px;}
.ws148{word-spacing:21.755778px;}
.wseb{word-spacing:21.755784px;}
.ws131{word-spacing:21.814577px;}
.ws36{word-spacing:21.873377px;}
.ws2d{word-spacing:21.932176px;}
.ws13f{word-spacing:21.990976px;}
.ws1bd{word-spacing:22.049775px;}
.wscc{word-spacing:22.108574px;}
.ws174{word-spacing:22.167374px;}
.ws173{word-spacing:22.167388px;}
.ws13e{word-spacing:22.226173px;}
.ws8c{word-spacing:22.255573px;}
.wsab{word-spacing:22.284973px;}
.ws155{word-spacing:22.320252px;}
.ws8e{word-spacing:22.326132px;}
.wsac{word-spacing:22.343772px;}
.ws9e{word-spacing:22.402571px;}
.ws171{word-spacing:22.402607px;}
.ws113{word-spacing:22.461371px;}
.ws9b{word-spacing:22.496650px;}
.ws172{word-spacing:22.520170px;}
.ws74{word-spacing:22.578970px;}
.ws34{word-spacing:22.637769px;}
.ws159{word-spacing:22.696568px;}
.ws33{word-spacing:22.755368px;}
.ws177{word-spacing:22.755414px;}
.ws1c8{word-spacing:22.814167px;}
.wsf3{word-spacing:22.872967px;}
.ws67{word-spacing:22.931766px;}
.ws196{word-spacing:23.049365px;}
.ws1a7{word-spacing:23.225763px;}
.ws121{word-spacing:23.284562px;}
.ws66{word-spacing:23.343362px;}
.ws2b{word-spacing:23.402161px;}
.wsbc{word-spacing:23.460961px;}
.ws176{word-spacing:23.519760px;}
.ws52{word-spacing:23.578559px;}
.ws0{word-spacing:23.634000px;}
.ws162{word-spacing:23.637359px;}
.wsc3{word-spacing:23.696158px;}
.ws120{word-spacing:23.754958px;}
.ws95{word-spacing:23.760838px;}
.ws103{word-spacing:23.813757px;}
.ws132{word-spacing:23.872556px;}
.ws88{word-spacing:23.919596px;}
.ws165{word-spacing:23.931356px;}
.ws166{word-spacing:23.990155px;}
.ws10e{word-spacing:24.048955px;}
.ws1af{word-spacing:24.107754px;}
.ws117{word-spacing:24.166553px;}
.ws12e{word-spacing:24.225335px;}
.wsf4{word-spacing:24.225353px;}
.wsf5{word-spacing:24.284152px;}
.wsf8{word-spacing:24.342952px;}
.ws16c{word-spacing:24.519350px;}
.ws139{word-spacing:24.578149px;}
.ws13c{word-spacing:24.636949px;}
.ws13a{word-spacing:24.695748px;}
.ws1c3{word-spacing:24.813347px;}
.ws1b6{word-spacing:24.872146px;}
.ws13d{word-spacing:24.930946px;}
.ws124{word-spacing:25.048544px;}
.ws111{word-spacing:25.107344px;}
.ws167{word-spacing:25.224943px;}
.ws1ca{word-spacing:25.342541px;}
.ws1a6{word-spacing:25.577739px;}
.wsa3{word-spacing:25.695338px;}
.ws1a4{word-spacing:25.812937px;}
.ws5c{word-spacing:25.871736px;}
.ws83{word-spacing:25.930535px;}
.ws5d{word-spacing:25.989335px;}
.ws35{word-spacing:26.048134px;}
.ws135{word-spacing:26.165733px;}
.ws169{word-spacing:26.224532px;}
.ws158{word-spacing:26.283332px;}
.ws73{word-spacing:26.342131px;}
.ws70{word-spacing:26.400931px;}
.ws116{word-spacing:26.459730px;}
.ws157{word-spacing:26.518529px;}
.ws145{word-spacing:26.577329px;}
.ws1c4{word-spacing:26.636128px;}
.ws1d4{word-spacing:26.812526px;}
.ws186{word-spacing:26.871326px;}
.ws75{word-spacing:26.930125px;}
.wsf1{word-spacing:26.988925px;}
.ws1d9{word-spacing:27.165323px;}
.ws1a0{word-spacing:27.224122px;}
.ws5b{word-spacing:27.282922px;}
.ws68{word-spacing:27.341721px;}
.ws8b{word-spacing:27.371121px;}
.ws17d{word-spacing:27.400520px;}
.ws89{word-spacing:27.418160px;}
.ws184{word-spacing:27.518119px;}
.wsa4{word-spacing:27.576919px;}
.ws97{word-spacing:27.635718px;}
.ws11d{word-spacing:27.753317px;}
.ws122{word-spacing:27.812116px;}
.ws137{word-spacing:27.929715px;}
.ws185{word-spacing:27.988514px;}
.ws96{word-spacing:28.047314px;}
.ws1b5{word-spacing:28.164913px;}
.ws10b{word-spacing:28.223712px;}
.ws93{word-spacing:28.282511px;}
.ws102{word-spacing:28.341311px;}
.ws28{word-spacing:28.400110px;}
.wsfe{word-spacing:28.576508px;}
.ws1c1{word-spacing:28.694107px;}
.ws32{word-spacing:28.752907px;}
.wsff{word-spacing:28.811706px;}
.ws156{word-spacing:28.870505px;}
.ws11b{word-spacing:28.929305px;}
.ws146{word-spacing:28.988104px;}
.ws65{word-spacing:29.046904px;}
.ws153{word-spacing:29.105703px;}
.ws114{word-spacing:29.164502px;}
.ws118{word-spacing:29.223302px;}
.ws115{word-spacing:29.282101px;}
.wsfd{word-spacing:29.340901px;}
.ws78{word-spacing:29.399700px;}
.ws18b{word-spacing:29.693697px;}
.ws1c5{word-spacing:29.752496px;}
.ws104{word-spacing:29.870095px;}
.ws5e{word-spacing:29.928895px;}
.wsb2{word-spacing:30.046493px;}
.ws1c9{word-spacing:30.105293px;}
.ws11f{word-spacing:30.164092px;}
.wsb1{word-spacing:30.340490px;}
.wsfc{word-spacing:30.634487px;}
.wsc9{word-spacing:30.693287px;}
.ws17f{word-spacing:30.752086px;}
.wsc2{word-spacing:30.810886px;}
.ws1da{word-spacing:30.869685px;}
.wscf{word-spacing:30.928484px;}
.wsca{word-spacing:31.104883px;}
.ws16a{word-spacing:31.163682px;}
.ws76{word-spacing:31.222481px;}
.wsc5{word-spacing:31.398854px;}
.wsf9{word-spacing:31.398880px;}
.ws69{word-spacing:31.516478px;}
.ws1d2{word-spacing:31.575278px;}
.ws143{word-spacing:31.751676px;}
.ws188{word-spacing:31.869275px;}
.ws6a{word-spacing:31.928074px;}
.ws170{word-spacing:32.104472px;}
.wsbf{word-spacing:32.222071px;}
.ws82{word-spacing:32.280871px;}
.ws110{word-spacing:32.457269px;}
.ws1bf{word-spacing:32.516068px;}
.ws17e{word-spacing:32.574868px;}
.ws77{word-spacing:32.692466px;}
.ws79{word-spacing:32.868865px;}
.ws55{word-spacing:32.986463px;}
.ws130{word-spacing:33.045263px;}
.ws10a{word-spacing:33.162862px;}
.wsc4{word-spacing:33.398059px;}
.wsfb{word-spacing:33.456859px;}
.ws1cc{word-spacing:33.515658px;}
.ws14b{word-spacing:33.692056px;}
.ws138{word-spacing:33.750856px;}
.ws164{word-spacing:33.868454px;}
.ws12f{word-spacing:34.044853px;}
.wsea{word-spacing:34.103652px;}
.ws1b3{word-spacing:34.162451px;}
.ws129{word-spacing:34.221251px;}
.ws149{word-spacing:34.338850px;}
.ws189{word-spacing:34.456448px;}
.ws1db{word-spacing:34.574047px;}
.ws56{word-spacing:34.632847px;}
.wsaf{word-spacing:34.809245px;}
.ws57{word-spacing:34.868044px;}
.ws108{word-spacing:35.044442px;}
.ws99{word-spacing:35.103242px;}
.ws15c{word-spacing:35.279640px;}
.ws15a{word-spacing:35.338456px;}
.ws10f{word-spacing:35.397239px;}
.ws1d1{word-spacing:35.456038px;}
.ws14a{word-spacing:35.514838px;}
.ws1c2{word-spacing:35.691236px;}
.ws126{word-spacing:35.750035px;}
.ws15b{word-spacing:35.750063px;}
.ws183{word-spacing:35.808835px;}
.ws182{word-spacing:35.867634px;}
.ws147{word-spacing:35.926433px;}
.ws1ae{word-spacing:36.044032px;}
.wsef{word-spacing:36.161631px;}
.ws16f{word-spacing:36.279230px;}
.ws1be{word-spacing:36.455628px;}
.ws7d{word-spacing:36.514427px;}
.ws109{word-spacing:36.632026px;}
.wsc0{word-spacing:36.808424px;}
.ws1ad{word-spacing:36.926023px;}
.ws13b{word-spacing:36.984823px;}
.ws180{word-spacing:37.102421px;}
.ws1c0{word-spacing:37.161221px;}
.ws1b2{word-spacing:37.396418px;}
.ws51{word-spacing:37.455218px;}
.ws1c6{word-spacing:37.572817px;}
.ws1c7{word-spacing:37.690415px;}
.ws192{word-spacing:37.749215px;}
.ws141{word-spacing:37.925613px;}
.ws198{word-spacing:38.454808px;}
.ws144{word-spacing:38.631206px;}
.ws193{word-spacing:38.690005px;}
.ws1b1{word-spacing:38.866403px;}
.ws59{word-spacing:38.984002px;}
.wsa5{word-spacing:39.042802px;}
.wsd3{word-spacing:39.101601px;}
.ws7a{word-spacing:39.219200px;}
.ws175{word-spacing:39.571996px;}
.ws1cf{word-spacing:39.748394px;}
.ws1ba{word-spacing:39.807194px;}
.wsb7{word-spacing:39.924793px;}
.ws15e{word-spacing:39.983592px;}
.ws6d{word-spacing:40.218790px;}
.wsc6{word-spacing:40.277589px;}
.ws1d0{word-spacing:40.630385px;}
.wsa7{word-spacing:40.806784px;}
.ws4{word-spacing:40.881770px;}
.ws1{word-spacing:40.910570px;}
.ws2{word-spacing:41.198572px;}
.ws3{word-spacing:41.342572px;}
.ws133{word-spacing:41.453577px;}
.ws85{word-spacing:41.571176px;}
.ws11c{word-spacing:41.865173px;}
.ws84{word-spacing:41.982772px;}
.wsc1{word-spacing:42.276769px;}
.ws1dc{word-spacing:42.394367px;}
.ws23{word-spacing:42.688364px;}
.ws125{word-spacing:42.923562px;}
.ws1d5{word-spacing:43.099960px;}
.ws1d6{word-spacing:43.158760px;}
.ws5f{word-spacing:43.217559px;}
.ws92{word-spacing:43.370437px;}
.wsc8{word-spacing:43.629155px;}
.ws136{word-spacing:43.687954px;}
.wsed{word-spacing:44.217149px;}
.ws16e{word-spacing:44.275948px;}
.ws142{word-spacing:44.511146px;}
.ws18a{word-spacing:44.805143px;}
.ws16b{word-spacing:45.687134px;}
.ws81{word-spacing:46.451526px;}
.ws7c{word-spacing:46.745523px;}
.ws61{word-spacing:47.098319px;}
.ws60{word-spacing:47.157119px;}
.wsf7{word-spacing:47.451116px;}
.ws1cd{word-spacing:47.568715px;}
.ws160{word-spacing:48.568304px;}
.ws15f{word-spacing:48.744703px;}
.ws1b8{word-spacing:49.156298px;}
.ws1b7{word-spacing:49.332697px;}
.ws25{word-spacing:50.391086px;}
.ws10d{word-spacing:51.449475px;}
.ws98{word-spacing:51.725832px;}
.ws7b{word-spacing:52.390265px;}
.ws4e{word-spacing:52.625463px;}
.wsf0{word-spacing:53.860250px;}
.ws39{word-spacing:60.916178px;}
.ws38{word-spacing:60.974978px;}
.ws100{word-spacing:61.268975px;}
.ws29{word-spacing:62.503762px;}
.ws58{word-spacing:63.091756px;}
.ws80{word-spacing:68.442502px;}
.wsd2{word-spacing:73.910846px;}
._3b{margin-left:-19.458062px;}
._33{margin-left:-17.555669px;}
._8{margin-left:-16.404164px;}
._9{margin-left:-15.288153px;}
._2c{margin-left:-13.821187px;}
._2b{margin-left:-12.816133px;}
._39{margin-left:-11.704363px;}
._1d{margin-left:-5.377169px;}
._1b{margin-left:-4.351156px;}
._a{margin-left:-3.275831px;}
._5{margin-left:-1.680017px;}
._3{width:1.320013px;}
._17{width:2.560747px;}
._34{width:3.671989px;}
._0{width:8.970000px;}
._37{width:10.944240px;}
._2d{width:12.133983px;}
._38{width:13.152289px;}
._7{width:14.160142px;}
._12{width:15.215810px;}
._6{width:16.380164px;}
._d{width:17.555855px;}
._4{width:19.200192px;}
._13{width:20.344830px;}
._15{width:21.402982px;}
._c{width:22.948702px;}
._10{width:24.351419px;}
._32{width:25.451910px;}
._e{width:26.888261px;}
._1f{width:28.164913px;}
._f{width:30.138926px;}
._31{width:31.398880px;}
._1{width:32.682000px;}
._2f{width:34.521194px;}
._18{width:35.926433px;}
._2e{width:37.461164px;}
._16{width:38.572406px;}
._20{width:39.748394px;}
._b{width:41.159580px;}
._1e{width:42.912586px;}
._1a{width:44.687544px;}
._36{width:46.804322px;}
._1c{width:47.921511px;}
._35{width:49.803101px;}
._14{width:53.951423px;}
._11{width:59.673161px;}
._30{width:62.536135px;}
._19{width:64.444142px;}
._3c{width:65.879122px;}
._24{width:472.074090px;}
._26{width:480.377915px;}
._28{width:498.233772px;}
._22{width:511.385623px;}
._2a{width:525.593510px;}
._25{width:533.225350px;}
._29{width:540.761240px;}
._27{width:549.401123px;}
._23{width:773.846247px;}
._2{width:1602.276000px;}
._3a{width:1835.257031px;}
._21{width:1859.784611px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:27.996600px;}
.fs9{font-size:29.995200px;}
.fse{font-size:31.995000px;}
.fs7{font-size:39.194400px;}
.fsa{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs8{font-size:44.999400px;}
.fsb{font-size:47.999400px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.200600px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y3b{bottom:65.394085px;}
.y3a{bottom:77.384914px;}
.y273{bottom:89.292375px;}
.y2ba{bottom:89.294460px;}
.y137{bottom:89.297580px;}
.y105{bottom:89.298855px;}
.y194{bottom:89.299815px;}
.y72{bottom:89.319945px;}
.y1cd{bottom:89.326995px;}
.y1ff{bottom:89.344545px;}
.ya7{bottom:89.349735px;}
.y168{bottom:89.373225px;}
.y39{bottom:89.375743px;}
.y217{bottom:89.388660px;}
.y23a{bottom:89.408550px;}
.yde{bottom:98.660250px;}
.y38{bottom:101.366571px;}
.y272{bottom:102.814695px;}
.y2b9{bottom:102.816780px;}
.y136{bottom:107.319600px;}
.y104{bottom:107.320875px;}
.y193{bottom:107.321835px;}
.y71{bottom:107.341965px;}
.y1cc{bottom:107.349000px;}
.y1fe{bottom:107.366565px;}
.ya6{bottom:107.371755px;}
.y167{bottom:107.395245px;}
.y216{bottom:107.410665px;}
.y239{bottom:107.430570px;}
.y37{bottom:113.357400px;}
.ydd{bottom:113.708070px;}
.y271{bottom:116.337015px;}
.y2b8{bottom:116.339100px;}
.y135{bottom:125.262900px;}
.y103{bottom:125.269395px;}
.y192{bottom:125.270355px;}
.y1c1{bottom:125.273610px;}
.y70{bottom:125.290485px;}
.ya5{bottom:125.320260px;}
.y166{bottom:125.343765px;}
.y1d8{bottom:125.363970px;}
.y1cb{bottom:125.371020px;}
.y1fd{bottom:125.388585px;}
.y223{bottom:125.393760px;}
.y215{bottom:125.432685px;}
.y238{bottom:125.452575px;}
.ydc{bottom:128.671875px;}
.y270{bottom:129.769335px;}
.y2b7{bottom:129.771420px;}
.y36{bottom:138.782161px;}
.y102{bottom:143.291400px;}
.y26f{bottom:143.291655px;}
.y191{bottom:143.292360px;}
.y2b6{bottom:143.293740px;}
.y1c0{bottom:143.296605px;}
.y6f{bottom:143.312490px;}
.y1ca{bottom:143.319540px;}
.y1fc{bottom:143.337090px;}
.ya4{bottom:143.342280px;}
.y165{bottom:143.365770px;}
.y214{bottom:143.381205px;}
.y237{bottom:143.401095px;}
.ydb{bottom:143.719695px;}
.y31{bottom:150.572470px;}
.y35{bottom:152.304480px;}
.y2fd{bottom:152.319615px;}
.y26e{bottom:156.813975px;}
.y2b5{bottom:156.816060px;}
.yda{bottom:158.683500px;}
.y190{bottom:161.314380px;}
.y101{bottom:161.319600px;}
.y6e{bottom:161.334510px;}
.y1c9{bottom:161.341545px;}
.y1fb{bottom:161.359110px;}
.y1df{bottom:161.363910px;}
.ya3{bottom:161.364300px;}
.y134{bottom:161.379210px;}
.y164{bottom:161.387790px;}
.y213{bottom:161.403210px;}
.y236{bottom:161.423115px;}
.y34{bottom:165.826800px;}
.y2fc{bottom:165.841935px;}
.y30{bottom:168.520986px;}
.y2b4{bottom:170.338380px;}
.y33{bottom:170.844150px;}
.y18f{bottom:179.262900px;}
.y2fb{bottom:179.274255px;}
.y6d{bottom:179.283030px;}
.ya2{bottom:179.312820px;}
.y133{bottom:179.327715px;}
.y163{bottom:179.336310px;}
.y32{bottom:179.347950px;}
.y1d7{bottom:179.356530px;}
.y1c8{bottom:179.363565px;}
.y1fa{bottom:179.381130px;}
.y1de{bottom:179.385930px;}
.y222{bottom:179.386320px;}
.y212{bottom:179.425230px;}
.y235{bottom:179.445135px;}
.y2b3{bottom:183.770700px;}
.y2f{bottom:186.543003px;}
.y2fa{bottom:192.796575px;}
.y2b2{bottom:197.293020px;}
.y18e{bottom:197.296605px;}
.y6c{bottom:197.305035px;}
.y1bf{bottom:197.311380px;}
.y1c7{bottom:197.312085px;}
.y1f9{bottom:197.329635px;}
.y1dd{bottom:197.334450px;}
.ya1{bottom:197.334825px;}
.y132{bottom:197.349735px;}
.y162{bottom:197.358315px;}
.y100{bottom:197.366730px;}
.y211{bottom:197.373750px;}
.y234{bottom:197.393640px;}
.y26d{bottom:197.459670px;}
.y2e{bottom:204.565019px;}
.y2f9{bottom:206.318895px;}
.y2b1{bottom:210.815340px;}
.y26c{bottom:210.891990px;}
.y18d{bottom:215.319600px;}
.y6b{bottom:215.327055px;}
.y1be{bottom:215.333400px;}
.y1c6{bottom:215.334105px;}
.y1f8{bottom:215.351655px;}
.y1dc{bottom:215.356455px;}
.ya0{bottom:215.356845px;}
.y131{bottom:215.371755px;}
.y161{bottom:215.380335px;}
.yff{bottom:215.388735px;}
.y210{bottom:215.395770px;}
.y233{bottom:215.415660px;}
.y2f8{bottom:219.841215px;}
.y24{bottom:222.484136px;}
.y2d{bottom:222.513536px;}
.y2b0{bottom:224.337660px;}
.y26b{bottom:224.414310px;}
.y2f7{bottom:233.273535px;}
.y6a{bottom:233.275575px;}
.y9f{bottom:233.305365px;}
.y130{bottom:233.320260px;}
.y160{bottom:233.328855px;}
.yfe{bottom:233.337255px;}
.y1d6{bottom:233.349075px;}
.y1bd{bottom:233.355420px;}
.y1c5{bottom:233.356110px;}
.y1f7{bottom:233.373675px;}
.y1db{bottom:233.378475px;}
.y221{bottom:233.378865px;}
.y20f{bottom:233.417775px;}
.y232{bottom:233.437680px;}
.y2af{bottom:237.769980px;}
.y26a{bottom:237.936630px;}
.y23{bottom:240.506152px;}
.y2c{bottom:240.535552px;}
.y2f6{bottom:246.795855px;}
.y2ae{bottom:251.291265px;}
.y69{bottom:251.297580px;}
.y1bc{bottom:251.303925px;}
.y1c4{bottom:251.304630px;}
.y1f6{bottom:251.322195px;}
.y1da{bottom:251.326995px;}
.y9e{bottom:251.327370px;}
.y1a5{bottom:251.334825px;}
.y12f{bottom:251.342280px;}
.y15f{bottom:251.350875px;}
.yfd{bottom:251.359275px;}
.y18c{bottom:251.365635px;}
.y20e{bottom:251.366295px;}
.y231{bottom:251.386185px;}
.y269{bottom:255.880140px;}
.y22{bottom:258.528168px;}
.y2b{bottom:258.557568px;}
.y2f5{bottom:260.318175px;}
.y68{bottom:269.319600px;}
.y1bb{bottom:269.325945px;}
.y1c3{bottom:269.326650px;}
.y1f5{bottom:269.344200px;}
.y1d9{bottom:269.349000px;}
.y9d{bottom:269.349390px;}
.y1a4{bottom:269.356845px;}
.y12e{bottom:269.364300px;}
.y15e{bottom:269.372880px;}
.yfc{bottom:269.381280px;}
.y18b{bottom:269.387655px;}
.y20d{bottom:269.388315px;}
.y268{bottom:269.402460px;}
.y230{bottom:269.408205px;}
.y2f4{bottom:273.840495px;}
.y21{bottom:276.476685px;}
.y2a{bottom:276.506085px;}
.y267{bottom:282.924780px;}
.y67{bottom:287.262915px;}
.y1b2{bottom:287.268255px;}
.y2f3{bottom:287.272815px;}
.y9c{bottom:287.297910px;}
.y12d{bottom:287.312820px;}
.y15d{bottom:287.321400px;}
.yfb{bottom:287.329800px;}
.y18a{bottom:287.336175px;}
.y1ba{bottom:287.347965px;}
.y1c2{bottom:287.348655px;}
.y1f4{bottom:287.366220px;}
.y220{bottom:287.371410px;}
.y1a3{bottom:287.378865px;}
.y20c{bottom:287.410320px;}
.y22f{bottom:287.430225px;}
.y2ad{bottom:291.770700px;}
.y20{bottom:294.498701px;}
.y29{bottom:294.528101px;}
.y266{bottom:296.447100px;}
.y2f2{bottom:300.795135px;}
.y66{bottom:305.291250px;}
.y1f3{bottom:305.314740px;}
.y9b{bottom:305.319930px;}
.y1a2{bottom:305.327370px;}
.y12c{bottom:305.334825px;}
.y15c{bottom:305.343420px;}
.yfa{bottom:305.351820px;}
.y189{bottom:305.358180px;}
.y20b{bottom:305.358840px;}
.y22e{bottom:305.378745px;}
.y1f{bottom:312.520717px;}
.y28{bottom:312.550117px;}
.y2f1{bottom:314.317455px;}
.y2ac{bottom:318.815340px;}
.y1f2{bottom:323.336745px;}
.y9a{bottom:323.341935px;}
.y1a1{bottom:323.349390px;}
.y12b{bottom:323.356845px;}
.y15b{bottom:323.365425px;}
.yf9{bottom:323.373840px;}
.y188{bottom:323.380200px;}
.y20a{bottom:323.380860px;}
.y22d{bottom:323.400750px;}
.y1e6{bottom:323.426475px;}
.y2f0{bottom:327.839775px;}
.y265{bottom:329.782665px;}
.y1e{bottom:330.469234px;}
.y27{bottom:330.498634px;}
.y2ab{bottom:332.337660px;}
.y1d4{bottom:336.096240px;}
.y1e5{bottom:338.474295px;}
.y2ef{bottom:341.272095px;}
.y1f1{bottom:341.285265px;}
.y99{bottom:341.290455px;}
.y1a0{bottom:341.297910px;}
.y1b1{bottom:341.299365px;}
.y12a{bottom:341.305365px;}
.y15a{bottom:341.313945px;}
.yf8{bottom:341.322345px;}
.y187{bottom:341.328720px;}
.y209{bottom:341.329380px;}
.y22c{bottom:341.349270px;}
.y65{bottom:341.359620px;}
.y2a8{bottom:345.768945px;}
.y2aa{bottom:345.769980px;}
.y1c{bottom:348.491250px;}
.y26{bottom:348.520650px;}
.y2a9{bottom:350.787315px;}
.y1d3{bottom:351.060045px;}
.y1e4{bottom:353.438100px;}
.y2ee{bottom:354.794415px;}
.y1d{bottom:355.039350px;}
.y2a5{bottom:359.289060px;}
.y2a7{bottom:359.291265px;}
.y1f0{bottom:359.307285px;}
.y98{bottom:359.312475px;}
.y19f{bottom:359.319930px;}
.y1b0{bottom:359.321370px;}
.y129{bottom:359.327370px;}
.y159{bottom:359.335965px;}
.yf7{bottom:359.344365px;}
.y186{bottom:359.350725px;}
.y208{bottom:359.351385px;}
.y22b{bottom:359.371290px;}
.y64{bottom:359.381625px;}
.y2a6{bottom:364.308630px;}
.y1d2{bottom:366.107850px;}
.y1b{bottom:366.519600px;}
.y25{bottom:366.542666px;}
.y2ed{bottom:368.316735px;}
.y1e3{bottom:368.485920px;}
.y264{bottom:371.559345px;}
.y2a4{bottom:372.811380px;}
.y1ef{bottom:377.329305px;}
.y97{bottom:377.334480px;}
.y19e{bottom:377.341935px;}
.y1af{bottom:377.343390px;}
.y128{bottom:377.349390px;}
.y158{bottom:377.357970px;}
.yf6{bottom:377.366385px;}
.y185{bottom:377.372745px;}
.y207{bottom:377.373405px;}
.y22a{bottom:377.393295px;}
.y63{bottom:377.403645px;}
.y1d1{bottom:381.071670px;}
.y2ec{bottom:381.839055px;}
.y1e2{bottom:383.449725px;}
.y2a3{bottom:386.333700px;}
.y2a1{bottom:386.337660px;}
.y263{bottom:389.581365px;}
.y2a2{bottom:391.266000px;}
.y2eb{bottom:395.271375px;}
.y1ee{bottom:395.277810px;}
.y96{bottom:395.283000px;}
.y19d{bottom:395.290455px;}
.y1ae{bottom:395.291910px;}
.y127{bottom:395.297910px;}
.y157{bottom:395.306490px;}
.yf5{bottom:395.314890px;}
.y184{bottom:395.321265px;}
.y206{bottom:395.321925px;}
.y229{bottom:395.341815px;}
.y62{bottom:395.352165px;}
.y1d0{bottom:396.035475px;}
.y1e1{bottom:398.413545px;}
.y29e{bottom:399.767910px;}
.y2a0{bottom:399.769980px;}
.y29f{bottom:404.787285px;}
.y262{bottom:407.603370px;}
.y2ea{bottom:408.793695px;}
.y1cf{bottom:411.083295px;}
.y1a{bottom:412.188780px;}
.y29d{bottom:413.290230px;}
.y1ed{bottom:413.299830px;}
.y95{bottom:413.305020px;}
.y19c{bottom:413.312475px;}
.y1ad{bottom:413.313930px;}
.y126{bottom:413.319930px;}
.y156{bottom:413.328510px;}
.yf4{bottom:413.336910px;}
.y183{bottom:413.343270px;}
.y205{bottom:413.343930px;}
.y228{bottom:413.363835px;}
.y61{bottom:413.374170px;}
.y1e0{bottom:413.461350px;}
.y2e9{bottom:422.316015px;}
.y261{bottom:425.551890px;}
.y1ce{bottom:426.047100px;}
.y29a{bottom:426.811380px;}
.y29c{bottom:426.812550px;}
.y1ec{bottom:431.321850px;}
.y94{bottom:431.327040px;}
.y19b{bottom:431.334480px;}
.y1ac{bottom:431.335935px;}
.y125{bottom:431.341935px;}
.y155{bottom:431.350530px;}
.yf3{bottom:431.358930px;}
.y182{bottom:431.365290px;}
.y204{bottom:431.365950px;}
.y227{bottom:431.385855px;}
.y60{bottom:431.396190px;}
.y29b{bottom:431.829915px;}
.y2e8{bottom:435.838335px;}
.y19{bottom:437.704035px;}
.y299{bottom:440.333700px;}
.y260{bottom:443.573910px;}
.y298{bottom:445.266000px;}
.y1eb{bottom:449.270355px;}
.y2e7{bottom:449.270655px;}
.y93{bottom:449.275545px;}
.y19a{bottom:449.283000px;}
.y1ab{bottom:449.284455px;}
.y124{bottom:449.290455px;}
.y154{bottom:449.299035px;}
.yf2{bottom:449.307450px;}
.y181{bottom:449.313810px;}
.y203{bottom:449.314470px;}
.y226{bottom:449.334360px;}
.y5f{bottom:449.344710px;}
.y297{bottom:453.766740px;}
.y18{bottom:455.644215px;}
.y25f{bottom:461.595930px;}
.y2e6{bottom:462.792975px;}
.y1ea{bottom:467.292375px;}
.y92{bottom:467.297565px;}
.y199{bottom:467.305020px;}
.y1aa{bottom:467.306475px;}
.y123{bottom:467.312475px;}
.y153{bottom:467.321055px;}
.yf1{bottom:467.329455px;}
.y180{bottom:467.335830px;}
.y202{bottom:467.336490px;}
.y225{bottom:467.356380px;}
.y5e{bottom:467.366730px;}
.y17{bottom:473.674395px;}
.y2e5{bottom:476.315295px;}
.y25e{bottom:479.544435px;}
.y296{bottom:480.811380px;}
.y1e9{bottom:485.314395px;}
.y91{bottom:485.319585px;}
.y8f{bottom:485.320710px;}
.y198{bottom:485.327040px;}
.y1a9{bottom:485.328480px;}
.y122{bottom:485.334480px;}
.y152{bottom:485.343075px;}
.yf0{bottom:485.351475px;}
.y17f{bottom:485.357835px;}
.y201{bottom:485.358495px;}
.y224{bottom:485.378400px;}
.y5d{bottom:485.388735px;}
.y2e4{bottom:489.837615px;}
.y90{bottom:491.867565px;}
.y295{bottom:494.333700px;}
.y16{bottom:496.204620px;}
.y25d{bottom:497.566455px;}
.y1e8{bottom:503.262915px;}
.y8e{bottom:503.269230px;}
.y2e3{bottom:503.269935px;}
.y197{bottom:503.275545px;}
.y1a8{bottom:503.277000px;}
.y121{bottom:503.283000px;}
.y151{bottom:503.291595px;}
.yef{bottom:503.299995px;}
.y17e{bottom:503.306355px;}
.y200{bottom:503.307015px;}
.y5c{bottom:503.337255px;}
.y294{bottom:507.769980px;}
.y15{bottom:514.144800px;}
.y25c{bottom:515.588475px;}
.y2e2{bottom:516.792255px;}
.y8d{bottom:521.291250px;}
.y196{bottom:521.297565px;}
.y1a7{bottom:521.299020px;}
.y120{bottom:521.305020px;}
.y150{bottom:521.313600px;}
.yee{bottom:521.322000px;}
.y17d{bottom:521.328375px;}
.y5b{bottom:521.359275px;}
.y2e1{bottom:530.314575px;}
.y14{bottom:532.174980px;}
.y25b{bottom:533.536980px;}
.y23e{bottom:538.309455px;}
.y195{bottom:539.319585px;}
.y1a6{bottom:539.321040px;}
.y8c{bottom:539.322570px;}
.y11f{bottom:539.327040px;}
.y14f{bottom:539.335620px;}
.yed{bottom:539.344020px;}
.y17c{bottom:539.350380px;}
.y5a{bottom:539.381280px;}
.y2e0{bottom:543.836895px;}
.y293{bottom:543.842595px;}
.y21e{bottom:549.204810px;}
.y13{bottom:550.205160px;}
.y25a{bottom:551.565180px;}
.y23d{bottom:553.273275px;}
.y8b{bottom:557.262765px;}
.y2df{bottom:557.269215px;}
.y292{bottom:557.274915px;}
.y11e{bottom:557.275545px;}
.y14e{bottom:557.284140px;}
.yec{bottom:557.292540px;}
.y17b{bottom:557.298900px;}
.y59{bottom:557.329800px;}
.y21d{bottom:564.168630px;}
.y23c{bottom:568.237080px;}
.y2de{bottom:570.791535px;}
.y12{bottom:572.660385px;}
.y11d{bottom:575.297565px;}
.y14d{bottom:575.306145px;}
.yeb{bottom:575.314560px;}
.y17a{bottom:575.320920px;}
.y58{bottom:575.351820px;}
.y21c{bottom:579.216435px;}
.y23b{bottom:583.284900px;}
.y2dd{bottom:584.313855px;}
.y291{bottom:584.319555px;}
.y11{bottom:590.690565px;}
.y11c{bottom:593.319585px;}
.y14c{bottom:593.328165px;}
.yea{bottom:593.336565px;}
.y179{bottom:593.342940px;}
.y57{bottom:593.373840px;}
.y259{bottom:593.373855px;}
.y21b{bottom:594.180255px;}
.y1b8{bottom:594.612795px;}
.y2dc{bottom:597.836175px;}
.y290{bottom:597.841875px;}
.y8a{bottom:602.364675px;}
.y10{bottom:608.720746px;}
.y21a{bottom:609.144060px;}
.y1b7{bottom:609.660600px;}
.yc9{bottom:611.262765px;}
.y2db{bottom:611.268495px;}
.y14b{bottom:611.276685px;}
.yc7{bottom:611.283000px;}
.yb9{bottom:611.283990px;}
.ye9{bottom:611.285085px;}
.y178{bottom:611.291445px;}
.y56{bottom:611.322345px;}
.y258{bottom:611.322360px;}
.yc8{bottom:617.810850px;}
.y89{bottom:620.313180px;}
.y219{bottom:624.191880px;}
.y1b6{bottom:624.624420px;}
.y2da{bottom:624.790815px;}
.y28f{bottom:624.796515px;}
.yf{bottom:626.660925px;}
.y14a{bottom:629.298690px;}
.yc6{bottom:629.305020px;}
.yb8{bottom:629.306010px;}
.ye8{bottom:629.307105px;}
.y177{bottom:629.313465px;}
.y55{bottom:629.344365px;}
.y257{bottom:629.344380px;}
.y2d9{bottom:638.313135px;}
.y28e{bottom:638.318820px;}
.y88{bottom:638.335200px;}
.y218{bottom:639.155685px;}
.y1b5{bottom:639.672225px;}
.ye{bottom:644.691105px;}
.y149{bottom:647.320710px;}
.yc5{bottom:647.327040px;}
.yb7{bottom:647.328030px;}
.ye7{bottom:647.329110px;}
.y176{bottom:647.335485px;}
.y11b{bottom:647.350380px;}
.y54{bottom:647.366385px;}
.y256{bottom:647.366400px;}
.y2d8{bottom:651.835455px;}
.y28d{bottom:651.841140px;}
.y1b4{bottom:654.636045px;}
.y87{bottom:656.357220px;}
.yd{bottom:662.721286px;}
.y2d7{bottom:665.267775px;}
.y148{bottom:665.269230px;}
.y28c{bottom:665.273475px;}
.yc4{bottom:665.275545px;}
.yb6{bottom:665.276550px;}
.ye6{bottom:665.277630px;}
.y175{bottom:665.283990px;}
.y11a{bottom:665.298900px;}
.y53{bottom:665.314890px;}
.y255{bottom:665.314905px;}
.y1b3{bottom:669.599850px;}
.y86{bottom:674.305740px;}
.y2d6{bottom:678.790095px;}
.y28b{bottom:678.795780px;}
.yc{bottom:680.661465px;}
.y147{bottom:683.291250px;}
.yc3{bottom:683.297565px;}
.yb5{bottom:683.298555px;}
.ye5{bottom:683.299650px;}
.y174{bottom:683.306010px;}
.y119{bottom:683.320920px;}
.y52{bottom:683.336910px;}
.y254{bottom:683.336925px;}
.y2d5{bottom:692.312400px;}
.y28a{bottom:692.318100px;}
.y85{bottom:692.327745px;}
.yc2{bottom:701.319585px;}
.yb4{bottom:701.320575px;}
.ye4{bottom:701.321655px;}
.y173{bottom:701.328030px;}
.y118{bottom:701.342940px;}
.y51{bottom:701.358930px;}
.y253{bottom:701.358945px;}
.yb{bottom:703.191690px;}
.y2d4{bottom:705.834720px;}
.y289{bottom:705.840420px;}
.y84{bottom:710.349765px;}
.y2d3{bottom:719.267055px;}
.yc1{bottom:719.268105px;}
.yb3{bottom:719.269095px;}
.ye3{bottom:719.270175px;}
.y288{bottom:719.272740px;}
.y172{bottom:719.276550px;}
.y117{bottom:719.291445px;}
.y50{bottom:719.307450px;}
.y252{bottom:719.307465px;}
.ya{bottom:721.131870px;}
.y83{bottom:728.298285px;}
.y2d2{bottom:732.789360px;}
.y287{bottom:732.795060px;}
.yb2{bottom:737.291100px;}
.ye2{bottom:737.292195px;}
.yb0{bottom:737.298555px;}
.y116{bottom:737.313465px;}
.y146{bottom:737.327280px;}
.y4f{bottom:737.329455px;}
.y251{bottom:737.329470px;}
.y9{bottom:739.162050px;}
.yb1{bottom:743.839185px;}
.y2d1{bottom:746.311680px;}
.y82{bottom:746.320290px;}
.ye1{bottom:755.314215px;}
.yaf{bottom:755.320575px;}
.y115{bottom:755.335485px;}
.y145{bottom:755.349300px;}
.y4e{bottom:755.351475px;}
.y250{bottom:755.351490px;}
.y2d0{bottom:759.834000px;}
.y286{bottom:759.839700px;}
.y81{bottom:764.342310px;}
.y8{bottom:766.204500px;}
.ye0{bottom:773.262720px;}
.y2cf{bottom:773.266320px;}
.yae{bottom:773.269095px;}
.y285{bottom:773.272020px;}
.y114{bottom:773.283990px;}
.yc0{bottom:773.291055px;}
.y144{bottom:773.297820px;}
.y4d{bottom:773.299995px;}
.y24f{bottom:773.300010px;}
.y80{bottom:782.290830px;}
.y2ce{bottom:786.788640px;}
.y284{bottom:786.794340px;}
.yad{bottom:791.291100px;}
.y113{bottom:791.306010px;}
.ybf{bottom:791.313075px;}
.y143{bottom:791.319825px;}
.y4c{bottom:791.322000px;}
.y24e{bottom:791.322015px;}
.y2cd{bottom:800.310960px;}
.y7f{bottom:800.312835px;}
.y283{bottom:800.316660px;}
.yac{bottom:809.322525px;}
.y112{bottom:809.328030px;}
.ybe{bottom:809.335095px;}
.y142{bottom:809.341845px;}
.y4b{bottom:809.344020px;}
.y24d{bottom:809.344035px;}
.y2cc{bottom:813.833280px;}
.y7e{bottom:818.334855px;}
.y6{bottom:823.946250px;}
.yab{bottom:827.262720px;}
.y2cb{bottom:827.265600px;}
.y282{bottom:827.271300px;}
.y111{bottom:827.276550px;}
.ybd{bottom:827.283600px;}
.y141{bottom:827.290365px;}
.y4a{bottom:827.292540px;}
.y24c{bottom:827.292555px;}
.y7{bottom:831.259650px;}
.y7d{bottom:836.283375px;}
.y2ca{bottom:840.787920px;}
.y281{bottom:840.793620px;}
.y171{bottom:845.291100px;}
.y110{bottom:845.298555px;}
.ybc{bottom:845.305620px;}
.y140{bottom:845.312385px;}
.y49{bottom:845.314560px;}
.y24b{bottom:845.314575px;}
.y7c{bottom:854.305395px;}
.y2c9{bottom:854.310240px;}
.y280{bottom:854.315940px;}
.y5{bottom:859.931513px;}
.yaa{bottom:863.314215px;}
.y10f{bottom:863.320575px;}
.ybb{bottom:863.327640px;}
.y13f{bottom:863.334390px;}
.y48{bottom:863.336565px;}
.y24a{bottom:863.336580px;}
.y2c8{bottom:867.832560px;}
.y27f{bottom:867.838260px;}
.y7b{bottom:872.333685px;}
.ya9{bottom:881.262720px;}
.y2c7{bottom:881.264880px;}
.y10e{bottom:881.269095px;}
.y27e{bottom:881.270580px;}
.yba{bottom:881.276145px;}
.y170{bottom:881.276550px;}
.y13e{bottom:881.282910px;}
.y47{bottom:881.285085px;}
.y249{bottom:881.285100px;}
.y2c6{bottom:894.787200px;}
.y27d{bottom:894.792900px;}
.y4{bottom:898.955675px;}
.y10d{bottom:899.291100px;}
.y16f{bottom:899.298555px;}
.y13d{bottom:899.304930px;}
.y46{bottom:899.307105px;}
.y248{bottom:899.307120px;}
.y2c5{bottom:908.309520px;}
.y27c{bottom:908.315220px;}
.y10c{bottom:917.319495px;}
.y16e{bottom:917.320575px;}
.y13c{bottom:917.326935px;}
.y45{bottom:917.329110px;}
.y247{bottom:917.329125px;}
.y7a{bottom:917.347860px;}
.yd9{bottom:919.785645px;}
.yd8{bottom:921.486330px;}
.y2c4{bottom:921.831840px;}
.y27b{bottom:921.837540px;}
.y2c3{bottom:935.264160px;}
.y16d{bottom:935.269095px;}
.y13b{bottom:935.275455px;}
.y44{bottom:935.277630px;}
.y246{bottom:935.277645px;}
.y79{bottom:935.296380px;}
.y3{bottom:937.907837px;}
.yd6{bottom:939.259650px;}
.yd7{bottom:941.215485px;}
.yd5{bottom:941.220600px;}
.y2c2{bottom:948.786480px;}
.y27a{bottom:948.792180px;}
.y16c{bottom:953.291100px;}
.y10b{bottom:953.297310px;}
.y13a{bottom:953.297475px;}
.y43{bottom:953.299650px;}
.y245{bottom:953.299665px;}
.y78{bottom:953.318400px;}
.yd3{bottom:960.264315px;}
.yd4{bottom:962.220330px;}
.yd2{bottom:962.225175px;}
.y2c1{bottom:962.308800px;}
.y279{bottom:962.314500px;}
.y138{bottom:968.853330px;}
.y10a{bottom:971.319315px;}
.y139{bottom:971.319495px;}
.y42{bottom:971.321655px;}
.y244{bottom:971.321670px;}
.y77{bottom:971.340405px;}
.y2c0{bottom:975.831120px;}
.y278{bottom:975.836820px;}
.y2{bottom:976.932000px;}
.yd0{bottom:981.184020px;}
.yd1{bottom:983.224920px;}
.ycf{bottom:983.230035px;}
.y2bf{bottom:989.263440px;}
.y109{bottom:989.267835px;}
.y277{bottom:989.269140px;}
.y41{bottom:989.270175px;}
.y243{bottom:989.270190px;}
.y76{bottom:989.288925px;}
.ycd{bottom:1002.188685px;}
.y2be{bottom:1002.785760px;}
.y276{bottom:1002.791460px;}
.yce{bottom:1004.229765px;}
.ycc{bottom:1004.231085px;}
.y108{bottom:1007.289855px;}
.y40{bottom:1007.292195px;}
.y242{bottom:1007.292210px;}
.y75{bottom:1007.310945px;}
.y16b{bottom:1007.364225px;}
.y2bd{bottom:1016.308080px;}
.ycb{bottom:1023.958830px;}
.y107{bottom:1025.311860px;}
.y3f{bottom:1025.314215px;}
.y241{bottom:1025.314230px;}
.y74{bottom:1025.332950px;}
.y16a{bottom:1025.386230px;}
.y2bc{bottom:1029.830400px;}
.y275{bottom:1029.836100px;}
.y1{bottom:1033.908300px;}
.y106{bottom:1043.260380px;}
.y3e{bottom:1043.262720px;}
.y240{bottom:1043.262735px;}
.y274{bottom:1043.268420px;}
.y73{bottom:1043.281470px;}
.y169{bottom:1043.334750px;}
.yca{bottom:1043.687985px;}
.y3d{bottom:1112.827987px;}
.y2fe{bottom:1127.791788px;}
.y3c{bottom:1127.791800px;}
.ya8{bottom:1127.791815px;}
.y2bb{bottom:1127.791830px;}
.y23f{bottom:1127.802075px;}
.y1b9{bottom:1127.802105px;}
.ydf{bottom:1127.803380px;}
.y1d5{bottom:1127.810295px;}
.y1e7{bottom:1127.812380px;}
.y21f{bottom:1127.813550px;}
.h12{height:20.185549px;}
.hb{height:21.626539px;}
.h11{height:23.068395px;}
.h9{height:28.376746px;}
.hc{height:30.281567px;}
.h5{height:31.721260px;}
.ha{height:32.444567px;}
.he{height:34.607567px;}
.h10{height:38.934000px;}
.hf{height:39.799633px;}
.hd{height:42.287471px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557800px;}
.h4{height:47.586433px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x11{left:89.036250px;}
.x1{left:91.077150px;}
.x1e{left:93.458250px;}
.xe{left:94.818900px;}
.x13{left:97.034430px;}
.x1f{left:101.451900px;}
.x2d{left:107.578980px;}
.x3{left:154.261350px;}
.x4{left:164.381100px;}
.x20{left:217.190550px;}
.x21{left:227.905500px;}
.x5{left:246.954300px;}
.x6{left:252.566850px;}
.x12{left:270.510150px;}
.x16{left:289.218915px;}
.x17{left:305.291250px;}
.xf{left:342.538500px;}
.x7{left:345.259800px;}
.x8{left:358.525950px;}
.x9{left:450.793650px;}
.x10{left:457.080363px;}
.x23{left:461.083350px;}
.xa{left:464.059650px;}
.x22{left:469.081530px;}
.x2c{left:479.626095px;}
.x25{left:495.269265px;}
.x26{left:499.351065px;}
.xb{left:541.700700px;}
.xc{left:552.075450px;}
.x29{left:574.525830px;}
.x2a{left:578.607750px;}
.x18{left:657.439185px;}
.x19{left:665.858100px;}
.xd{left:673.766850px;}
.x27{left:683.036100px;}
.x28{left:687.117930px;}
.x1a{left:705.146250px;}
.x24{left:707.952630px;}
.x1c{left:712.799835px;}
.x1b{left:717.306885px;}
.x2b{left:721.728900px;}
.x14{left:722.749335px;}
.x1d{left:725.045385px;}
.x15{left:732.699000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls48{letter-spacing:-3.062795pt;}
.lsd{letter-spacing:-2.188809pt;}
.lse{letter-spacing:-2.163209pt;}
.ls3c{letter-spacing:-1.130653pt;}
.ls3f{letter-spacing:-1.122119pt;}
.ls27{letter-spacing:-1.097589pt;}
.ls3e{letter-spacing:-1.083720pt;}
.ls39{letter-spacing:-1.075187pt;}
.ls15{letter-spacing:-1.072011pt;}
.ls3b{letter-spacing:-1.070920pt;}
.ls11{letter-spacing:-1.066677pt;}
.ls3d{letter-spacing:-1.058120pt;}
.ls10{letter-spacing:-1.056011pt;}
.ls38{letter-spacing:-1.049587pt;}
.ls41{letter-spacing:-1.036787pt;}
.ls23{letter-spacing:-1.034869pt;}
.ls36{letter-spacing:-1.032520pt;}
.ls13{letter-spacing:-1.029344pt;}
.ls70{letter-spacing:-1.023986pt;}
.ls40{letter-spacing:-1.015454pt;}
.ls37{letter-spacing:-1.002654pt;}
.ls71{letter-spacing:-0.999987pt;}
.ls14{letter-spacing:-0.992010pt;}
.lsf{letter-spacing:-0.986677pt;}
.ls1f{letter-spacing:-0.982603pt;}
.ls72{letter-spacing:-0.979987pt;}
.ls24{letter-spacing:-0.977377pt;}
.ls2c{letter-spacing:-0.972145pt;}
.ls16{letter-spacing:-0.970676pt;}
.ls22{letter-spacing:-0.966923pt;}
.ls12{letter-spacing:-0.965343pt;}
.ls20{letter-spacing:-0.956470pt;}
.ls28{letter-spacing:-0.946017pt;}
.ls2a{letter-spacing:-0.940790pt;}
.ls25{letter-spacing:-0.935564pt;}
.ls2b{letter-spacing:-0.925111pt;}
.ls26{letter-spacing:-0.919884pt;}
.ls29{letter-spacing:-0.888524pt;}
.ls21{letter-spacing:-0.736952pt;}
.ls52{letter-spacing:-0.721053pt;}
.ls57{letter-spacing:-0.627192pt;}
.lsc{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.000017pt;}
.ls6f{letter-spacing:0.039972pt;}
.ls6c{letter-spacing:0.040002pt;}
.ls6e{letter-spacing:0.040028pt;}
.ls50{letter-spacing:0.052277pt;}
.ls55{letter-spacing:0.052283pt;}
.ls62{letter-spacing:0.104492pt;}
.ls1b{letter-spacing:0.104545pt;}
.ls33{letter-spacing:0.127989pt;}
.ls59{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.156769pt;}
.ls18{letter-spacing:0.156800pt;}
.ls4f{letter-spacing:0.156802pt;}
.ls2f{letter-spacing:0.156822pt;}
.ls74{letter-spacing:0.159944pt;}
.ls1{letter-spacing:0.480005pt;}
.ls6b{letter-spacing:0.487993pt;}
.ls2{letter-spacing:0.490672pt;}
.ls6{letter-spacing:0.501338pt;}
.ls6a{letter-spacing:0.507993pt;}
.ls5{letter-spacing:0.517339pt;}
.ls7{letter-spacing:0.522672pt;}
.ls3{letter-spacing:0.528005pt;}
.ls0{letter-spacing:0.549339pt;}
.ls4{letter-spacing:0.565339pt;}
.ls1e{letter-spacing:10.035084pt;}
.ls3a{letter-spacing:10.427603pt;}
.ls34{letter-spacing:10.453209pt;}
.ls68{letter-spacing:10.794533pt;}
.ls5e{letter-spacing:10.879876pt;}
.ls67{letter-spacing:10.879900pt;}
.ls5c{letter-spacing:10.965212pt;}
.ls5f{letter-spacing:10.982263pt;}
.ls5b{letter-spacing:11.050542pt;}
.ls56{letter-spacing:11.093206pt;}
.ls5d{letter-spacing:11.178532pt;}
.ls6d{letter-spacing:11.999802pt;}
.ls5a{letter-spacing:12.586489pt;}
.ls64{letter-spacing:12.586542pt;}
.ls66{letter-spacing:12.671865pt;}
.ls35{letter-spacing:12.795573pt;}
.ls58{letter-spacing:12.885155pt;}
.ls31{letter-spacing:12.885209pt;}
.ls65{letter-spacing:12.927831pt;}
.ls17{letter-spacing:13.520135pt;}
.ls46{letter-spacing:14.770409pt;}
.ls45{letter-spacing:14.843556pt;}
.ls19{letter-spacing:15.523050pt;}
.ls54{letter-spacing:15.679820pt;}
.ls4a{letter-spacing:15.732117pt;}
.ls49{letter-spacing:15.888881pt;}
.lsa{letter-spacing:16.097969pt;}
.ls73{letter-spacing:16.458027pt;}
.ls8{letter-spacing:16.725163pt;}
.ls51{letter-spacing:16.881953pt;}
.ls1d{letter-spacing:17.927316pt;}
.ls9{letter-spacing:19.756598pt;}
.ls61{letter-spacing:20.958730pt;}
.ls2d{letter-spacing:21.167821pt;}
.ls1a{letter-spacing:23.049343pt;}
.ls42{letter-spacing:23.676543pt;}
.ls4e{letter-spacing:25.035500pt;}
.ls4b{letter-spacing:25.662646pt;}
.ls63{letter-spacing:25.819476pt;}
.ls1c{letter-spacing:26.080756pt;}
.ls30{letter-spacing:27.230647pt;}
.ls43{letter-spacing:27.544250pt;}
.ls44{letter-spacing:30.889263pt;}
.ls4c{letter-spacing:31.725526pt;}
.ls4d{letter-spacing:31.725580pt;}
.ls47{letter-spacing:32.614060pt;}
.ls60{letter-spacing:32.770890pt;}
.ls53{letter-spacing:34.129740pt;}
.ls69{letter-spacing:37.892916pt;}
.lsb{letter-spacing:54.199980pt;}
.ws1f6{word-spacing:-16.512960pt;}
.ws14d{word-spacing:-14.822675pt;}
.ws1f{word-spacing:-13.573469pt;}
.wsdc{word-spacing:-12.838240pt;}
.ws1ac{word-spacing:-11.024929pt;}
.wse1{word-spacing:-10.470269pt;}
.ws20{word-spacing:-0.054933pt;}
.ws2a{word-spacing:-0.052266pt;}
.ws48{word-spacing:-0.042666pt;}
.ws3b{word-spacing:-0.039999pt;}
.ws42{word-spacing:-0.037333pt;}
.ws49{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.684686pt;}
.ws8d{word-spacing:0.982603pt;}
.ws1f7{word-spacing:9.559873pt;}
.ws1f8{word-spacing:9.719870pt;}
.ws1f1{word-spacing:9.959867pt;}
.ws1f2{word-spacing:10.119865pt;}
.ws1f0{word-spacing:10.239863pt;}
.ws19a{word-spacing:10.239872pt;}
.ws19c{word-spacing:10.282538pt;}
.ws1e1{word-spacing:10.359862pt;}
.ws19b{word-spacing:10.367870pt;}
.ws1f3{word-spacing:10.399861pt;}
.ws191{word-spacing:10.453203pt;}
.ws19d{word-spacing:10.495869pt;}
.ws19e{word-spacing:10.538535pt;}
.ws3a{word-spacing:10.559859pt;}
.ws1b9{word-spacing:10.623867pt;}
.ws1aa{word-spacing:10.666533pt;}
.ws199{word-spacing:10.879864pt;}
.ws43{word-spacing:10.938510pt;}
.ws190{word-spacing:10.965196pt;}
.ws18e{word-spacing:11.007862pt;}
.ws3e{word-spacing:11.050509pt;}
.ws1ab{word-spacing:11.050529pt;}
.ws44{word-spacing:11.125174pt;}
.ws45{word-spacing:11.199840pt;}
.ws1e3{word-spacing:11.271850pt;}
.ws41{word-spacing:11.274506pt;}
.ws40{word-spacing:11.386504pt;}
.ws3f{word-spacing:11.461170pt;}
.ws1e2{word-spacing:11.531846pt;}
.ws1fb{word-spacing:11.679844pt;}
.ws19f{word-spacing:11.682014pt;}
.ws1fc{word-spacing:11.719844pt;}
.ws1ef{word-spacing:11.739843pt;}
.ws1ee{word-spacing:11.759843pt;}
.ws1ed{word-spacing:11.823842pt;}
.ws3c{word-spacing:11.839842pt;}
.ws1ec{word-spacing:11.879842pt;}
.ws1f5{word-spacing:11.919841pt;}
.ws1de{word-spacing:11.959841pt;}
.ws1e7{word-spacing:11.999833pt;}
.ws1e4{word-spacing:11.999840pt;}
.ws1e6{word-spacing:12.039839pt;}
.ws1e9{word-spacing:12.039850pt;}
.ws1df{word-spacing:12.039853pt;}
.ws1ea{word-spacing:12.079839pt;}
.ws1e5{word-spacing:12.119838pt;}
.ws1e8{word-spacing:12.159838pt;}
.ws163{word-spacing:12.178009pt;}
.ws1e0{word-spacing:12.199837pt;}
.wsdb{word-spacing:12.202514pt;}
.ws1eb{word-spacing:12.239837pt;}
.ws1ce{word-spacing:12.245180pt;}
.ws1f9{word-spacing:12.279836pt;}
.wsd8{word-spacing:12.287846pt;}
.wsde{word-spacing:12.296380pt;}
.ws1f4{word-spacing:12.319836pt;}
.ws3d{word-spacing:12.359835pt;}
.wse7{word-spacing:12.364645pt;}
.ws18f{word-spacing:12.368908pt;}
.ws47{word-spacing:12.373179pt;}
.wsba{word-spacing:12.373181pt;}
.ws1fa{word-spacing:12.399835pt;}
.wse9{word-spacing:12.415814pt;}
.ws46{word-spacing:12.415845pt;}
.wsb9{word-spacing:12.415868pt;}
.wsdf{word-spacing:12.437178pt;}
.wse0{word-spacing:12.441444pt;}
.ws1a9{word-spacing:12.458511pt;}
.wse4{word-spacing:12.492644pt;}
.wse8{word-spacing:12.513977pt;}
.ws18d{word-spacing:12.543843pt;}
.wsdd{word-spacing:12.586509pt;}
.wse2{word-spacing:12.590776pt;}
.wse5{word-spacing:12.603576pt;}
.wse3{word-spacing:12.607842pt;}
.wsda{word-spacing:12.629175pt;}
.wsbb{word-spacing:12.671842pt;}
.wsd9{word-spacing:12.714498pt;}
.wse6{word-spacing:12.897972pt;}
.ws4a{word-spacing:12.909735pt;}
.ws1d8{word-spacing:12.962001pt;}
.ws150{word-spacing:13.014267pt;}
.ws151{word-spacing:13.171066pt;}
.ws12c{word-spacing:13.223332pt;}
.ws119{word-spacing:13.275598pt;}
.wsd{word-spacing:13.280133pt;}
.ws154{word-spacing:13.327864pt;}
.wse{word-spacing:13.386801pt;}
.ws2c{word-spacing:13.432396pt;}
.wsbd{word-spacing:13.432413pt;}
.ws71{word-spacing:13.484662pt;}
.ws128{word-spacing:13.536929pt;}
.ws4c{word-spacing:13.589195pt;}
.ws9f{word-spacing:13.641461pt;}
.ws18c{word-spacing:13.693727pt;}
.wsf{word-spacing:13.706804pt;}
.ws6e{word-spacing:13.745993pt;}
.ws27{word-spacing:13.850525pt;}
.wsa9{word-spacing:13.902791pt;}
.ws14c{word-spacing:14.007324pt;}
.ws30{word-spacing:14.059590pt;}
.ws14e{word-spacing:14.111856pt;}
.ws6b{word-spacing:14.268654pt;}
.wsd7{word-spacing:14.304000pt;}
.ws14f{word-spacing:14.425453pt;}
.ws9d{word-spacing:14.523891pt;}
.wsa6{word-spacing:14.529985pt;}
.ws12d{word-spacing:14.572958pt;}
.ws12b{word-spacing:14.582251pt;}
.ws87{word-spacing:14.622026pt;}
.ws6f{word-spacing:14.686783pt;}
.ws72{word-spacing:14.720160pt;}
.wsce{word-spacing:14.769227pt;}
.wsa8{word-spacing:14.791316pt;}
.wsf2{word-spacing:14.818294pt;}
.ws12a{word-spacing:14.843582pt;}
.wsbe{word-spacing:14.867362pt;}
.ws9c{word-spacing:14.911528pt;}
.ws10c{word-spacing:14.916429pt;}
.ws123{word-spacing:14.948114pt;}
.wsb5{word-spacing:15.000380pt;}
.ws112{word-spacing:15.014563pt;}
.ws1a{word-spacing:15.050817pt;}
.ws195{word-spacing:15.063630pt;}
.ws152{word-spacing:15.104913pt;}
.wsd4{word-spacing:15.157179pt;}
.ws11a{word-spacing:15.210832pt;}
.ws194{word-spacing:15.261711pt;}
.ws19{word-spacing:15.306820pt;}
.ws197{word-spacing:15.313977pt;}
.ws10{word-spacing:15.344153pt;}
.ws1c{word-spacing:15.349487pt;}
.ws1d{word-spacing:15.360154pt;}
.ws18{word-spacing:15.386821pt;}
.ws15{word-spacing:15.392154pt;}
.ws1a5{word-spacing:15.418509pt;}
.ws1e{word-spacing:15.424154pt;}
.ws17{word-spacing:15.445488pt;}
.ws12{word-spacing:15.456155pt;}
.ws11{word-spacing:15.466821pt;}
.ws6c{word-spacing:15.470775pt;}
.ws1b{word-spacing:15.477488pt;}
.ws16{word-spacing:15.482821pt;}
.ws86{word-spacing:15.523042pt;}
.wsa0{word-spacing:15.575308pt;}
.ws5a{word-spacing:15.627574pt;}
.ws11e{word-spacing:15.679802pt;}
.ws1d7{word-spacing:15.679840pt;}
.ws13{word-spacing:15.685490pt;}
.wsb6{word-spacing:15.732106pt;}
.ws179{word-spacing:15.732107pt;}
.ws17c{word-spacing:15.784343pt;}
.wsee{word-spacing:15.784372pt;}
.ws17a{word-spacing:15.784396pt;}
.wscd{word-spacing:15.836638pt;}
.ws17b{word-spacing:15.836657pt;}
.ws90{word-spacing:15.852318pt;}
.wsa1{word-spacing:15.888905pt;}
.ws91{word-spacing:15.925491pt;}
.wsad{word-spacing:15.993437pt;}
.ws187{word-spacing:15.993440pt;}
.ws37{word-spacing:16.045703pt;}
.wsb{word-spacing:16.053494pt;}
.wsa{word-spacing:16.106828pt;}
.wsc{word-spacing:16.160162pt;}
.wsb0{word-spacing:16.202501pt;}
.ws4b{word-spacing:16.254767pt;}
.ws9{word-spacing:16.320163pt;}
.ws14{word-spacing:16.373497pt;}
.ws1dd{word-spacing:16.425067pt;}
.ws31{word-spacing:16.463832pt;}
.ws7f{word-spacing:16.516098pt;}
.ws8{word-spacing:16.533499pt;}
.ws107{word-spacing:16.620630pt;}
.ws1a1{word-spacing:16.672932pt;}
.ws24{word-spacing:16.725163pt;}
.ws8f{word-spacing:16.772202pt;}
.ws1a3{word-spacing:16.777429pt;}
.ws1cb{word-spacing:16.829695pt;}
.wsae{word-spacing:16.881961pt;}
.ws106{word-spacing:16.934227pt;}
.ws178{word-spacing:16.986493pt;}
.ws1a2{word-spacing:17.038737pt;}
.ws16d{word-spacing:17.038759pt;}
.ws105{word-spacing:17.091026pt;}
.ws1d3{word-spacing:17.143292pt;}
.ws15d{word-spacing:17.195558pt;}
.ws101{word-spacing:17.247824pt;}
.ws168{word-spacing:17.300090pt;}
.wsd0{word-spacing:17.300107pt;}
.wsaa{word-spacing:17.352356pt;}
.ws1a8{word-spacing:17.404622pt;}
.ws7{word-spacing:17.424158pt;}
.ws9a{word-spacing:17.435977pt;}
.wsd1{word-spacing:17.456889pt;}
.ws63{word-spacing:17.509155pt;}
.ws5{word-spacing:17.541493pt;}
.ws127{word-spacing:17.561421pt;}
.ws6{word-spacing:17.600160pt;}
.wscb{word-spacing:17.665953pt;}
.wsec{word-spacing:17.718219pt;}
.wsb4{word-spacing:17.770485pt;}
.ws134{word-spacing:17.822751pt;}
.ws22{word-spacing:17.875018pt;}
.ws7e{word-spacing:17.927284pt;}
.ws50{word-spacing:17.979550pt;}
.ws21{word-spacing:18.031816pt;}
.ws1b0{word-spacing:18.136348pt;}
.wsb3{word-spacing:18.188614pt;}
.wsfa{word-spacing:18.240881pt;}
.ws1bb{word-spacing:18.293147pt;}
.ws4d{word-spacing:18.345413pt;}
.wsd6{word-spacing:18.397679pt;}
.ws62{word-spacing:18.449945pt;}
.wsd5{word-spacing:18.502211pt;}
.wsf6{word-spacing:18.554467pt;}
.ws2f{word-spacing:18.554477pt;}
.ws64{word-spacing:18.606743pt;}
.wsa2{word-spacing:18.659010pt;}
.ws1b4{word-spacing:18.711276pt;}
.ws4f{word-spacing:18.763542pt;}
.ws2e{word-spacing:18.868074pt;}
.ws94{word-spacing:18.915114pt;}
.ws161{word-spacing:18.920340pt;}
.ws26{word-spacing:18.972606pt;}
.ws1bc{word-spacing:19.024873pt;}
.wsb8{word-spacing:19.077139pt;}
.ws140{word-spacing:19.129388pt;}
.wsc7{word-spacing:19.129405pt;}
.ws54{word-spacing:19.181671pt;}
.ws181{word-spacing:19.233937pt;}
.ws53{word-spacing:19.286203pt;}
.ws148{word-spacing:19.338469pt;}
.wseb{word-spacing:19.338475pt;}
.ws131{word-spacing:19.390735pt;}
.ws36{word-spacing:19.443002pt;}
.ws2d{word-spacing:19.495268pt;}
.ws13f{word-spacing:19.547534pt;}
.ws1bd{word-spacing:19.599800pt;}
.wscc{word-spacing:19.652066pt;}
.ws174{word-spacing:19.704332pt;}
.ws173{word-spacing:19.704345pt;}
.ws13e{word-spacing:19.756598pt;}
.ws8c{word-spacing:19.782731pt;}
.wsab{word-spacing:19.808865pt;}
.ws155{word-spacing:19.840224pt;}
.ws8e{word-spacing:19.845451pt;}
.wsac{word-spacing:19.861131pt;}
.ws9e{word-spacing:19.913397pt;}
.ws171{word-spacing:19.913429pt;}
.ws113{word-spacing:19.965663pt;}
.ws9b{word-spacing:19.997023pt;}
.ws172{word-spacing:20.017929pt;}
.ws74{word-spacing:20.070195pt;}
.ws34{word-spacing:20.122461pt;}
.ws159{word-spacing:20.174727pt;}
.ws33{word-spacing:20.226994pt;}
.ws177{word-spacing:20.227035pt;}
.ws1c8{word-spacing:20.279260pt;}
.wsf3{word-spacing:20.331526pt;}
.ws67{word-spacing:20.383792pt;}
.ws196{word-spacing:20.488324pt;}
.ws1a7{word-spacing:20.645123pt;}
.ws121{word-spacing:20.697389pt;}
.ws66{word-spacing:20.749655pt;}
.ws2b{word-spacing:20.801921pt;}
.wsbc{word-spacing:20.854187pt;}
.ws176{word-spacing:20.906453pt;}
.ws52{word-spacing:20.958719pt;}
.ws0{word-spacing:21.008000pt;}
.ws162{word-spacing:21.010986pt;}
.wsc3{word-spacing:21.063252pt;}
.ws120{word-spacing:21.115518pt;}
.ws95{word-spacing:21.120744pt;}
.ws103{word-spacing:21.167784pt;}
.ws132{word-spacing:21.220050pt;}
.ws88{word-spacing:21.261863pt;}
.ws165{word-spacing:21.272316pt;}
.ws166{word-spacing:21.324582pt;}
.ws10e{word-spacing:21.376849pt;}
.ws1af{word-spacing:21.429115pt;}
.ws117{word-spacing:21.481381pt;}
.ws12e{word-spacing:21.533631pt;}
.wsf4{word-spacing:21.533647pt;}
.wsf5{word-spacing:21.585913pt;}
.wsf8{word-spacing:21.638179pt;}
.ws16c{word-spacing:21.794978pt;}
.ws139{word-spacing:21.847244pt;}
.ws13c{word-spacing:21.899510pt;}
.ws13a{word-spacing:21.951776pt;}
.ws1c3{word-spacing:22.056308pt;}
.ws1b6{word-spacing:22.108574pt;}
.ws13d{word-spacing:22.160841pt;}
.ws124{word-spacing:22.265373pt;}
.ws111{word-spacing:22.317639pt;}
.ws167{word-spacing:22.422171pt;}
.ws1ca{word-spacing:22.526703pt;}
.ws1a6{word-spacing:22.735768pt;}
.wsa3{word-spacing:22.840300pt;}
.ws1a4{word-spacing:22.944833pt;}
.ws5c{word-spacing:22.997099pt;}
.ws83{word-spacing:23.049365pt;}
.ws5d{word-spacing:23.101631pt;}
.ws35{word-spacing:23.153897pt;}
.ws135{word-spacing:23.258429pt;}
.ws169{word-spacing:23.310695pt;}
.ws158{word-spacing:23.362962pt;}
.ws73{word-spacing:23.415228pt;}
.ws70{word-spacing:23.467494pt;}
.ws116{word-spacing:23.519760pt;}
.ws157{word-spacing:23.572026pt;}
.ws145{word-spacing:23.624292pt;}
.ws1c4{word-spacing:23.676558pt;}
.ws1d4{word-spacing:23.833357pt;}
.ws186{word-spacing:23.885623pt;}
.ws75{word-spacing:23.937889pt;}
.wsf1{word-spacing:23.990155pt;}
.ws1d9{word-spacing:24.146954pt;}
.ws1a0{word-spacing:24.199220pt;}
.ws5b{word-spacing:24.251486pt;}
.ws68{word-spacing:24.303752pt;}
.ws8b{word-spacing:24.329885pt;}
.ws17d{word-spacing:24.356018pt;}
.ws89{word-spacing:24.371698pt;}
.ws184{word-spacing:24.460550pt;}
.wsa4{word-spacing:24.512817pt;}
.ws97{word-spacing:24.565083pt;}
.ws11d{word-spacing:24.669615pt;}
.ws122{word-spacing:24.721881pt;}
.ws137{word-spacing:24.826413pt;}
.ws185{word-spacing:24.878679pt;}
.ws96{word-spacing:24.930946pt;}
.ws1b5{word-spacing:25.035478pt;}
.ws10b{word-spacing:25.087744pt;}
.ws93{word-spacing:25.140010pt;}
.ws102{word-spacing:25.192276pt;}
.ws28{word-spacing:25.244542pt;}
.wsfe{word-spacing:25.401341pt;}
.ws1c1{word-spacing:25.505873pt;}
.ws32{word-spacing:25.558139pt;}
.wsff{word-spacing:25.610405pt;}
.ws156{word-spacing:25.662671pt;}
.ws11b{word-spacing:25.714938pt;}
.ws146{word-spacing:25.767204pt;}
.ws65{word-spacing:25.819470pt;}
.ws153{word-spacing:25.871736pt;}
.ws114{word-spacing:25.924002pt;}
.ws118{word-spacing:25.976268pt;}
.ws115{word-spacing:26.028534pt;}
.wsfd{word-spacing:26.080801pt;}
.ws78{word-spacing:26.133067pt;}
.ws18b{word-spacing:26.394397pt;}
.ws1c5{word-spacing:26.446663pt;}
.ws104{word-spacing:26.551196pt;}
.ws5e{word-spacing:26.603462pt;}
.wsb2{word-spacing:26.707994pt;}
.ws1c9{word-spacing:26.760260pt;}
.ws11f{word-spacing:26.812526pt;}
.wsb1{word-spacing:26.969325pt;}
.wsfc{word-spacing:27.230655pt;}
.wsc9{word-spacing:27.282922pt;}
.ws17f{word-spacing:27.335188pt;}
.wsc2{word-spacing:27.387454pt;}
.ws1da{word-spacing:27.439720pt;}
.wscf{word-spacing:27.491986pt;}
.wsca{word-spacing:27.648785pt;}
.ws16a{word-spacing:27.701051pt;}
.ws76{word-spacing:27.753317pt;}
.wsc5{word-spacing:27.910092pt;}
.wsf9{word-spacing:27.910115pt;}
.ws69{word-spacing:28.014647pt;}
.ws1d2{word-spacing:28.066914pt;}
.ws143{word-spacing:28.223712pt;}
.ws188{word-spacing:28.328244pt;}
.ws6a{word-spacing:28.380510pt;}
.ws170{word-spacing:28.537309pt;}
.wsbf{word-spacing:28.641841pt;}
.ws82{word-spacing:28.694107pt;}
.ws110{word-spacing:28.850906pt;}
.ws1bf{word-spacing:28.903172pt;}
.ws17e{word-spacing:28.955438pt;}
.ws77{word-spacing:29.059970pt;}
.ws79{word-spacing:29.216769pt;}
.ws55{word-spacing:29.321301pt;}
.ws130{word-spacing:29.373567pt;}
.ws10a{word-spacing:29.478099pt;}
.wsc4{word-spacing:29.687164pt;}
.wsfb{word-spacing:29.739430pt;}
.ws1cc{word-spacing:29.791696pt;}
.ws14b{word-spacing:29.948494pt;}
.ws138{word-spacing:30.000761pt;}
.ws164{word-spacing:30.105293pt;}
.ws12f{word-spacing:30.262091pt;}
.wsea{word-spacing:30.314357pt;}
.ws1b3{word-spacing:30.366623pt;}
.ws129{word-spacing:30.418890pt;}
.ws149{word-spacing:30.523422pt;}
.ws189{word-spacing:30.627954pt;}
.ws1db{word-spacing:30.732486pt;}
.ws56{word-spacing:30.784753pt;}
.wsaf{word-spacing:30.941551pt;}
.ws57{word-spacing:30.993817pt;}
.ws108{word-spacing:31.150615pt;}
.ws99{word-spacing:31.202882pt;}
.ws15c{word-spacing:31.359680pt;}
.ws15a{word-spacing:31.411961pt;}
.ws10f{word-spacing:31.464212pt;}
.ws1d1{word-spacing:31.516478pt;}
.ws14a{word-spacing:31.568745pt;}
.ws1c2{word-spacing:31.725543pt;}
.ws126{word-spacing:31.777809pt;}
.ws15b{word-spacing:31.777834pt;}
.ws183{word-spacing:31.830075pt;}
.ws182{word-spacing:31.882341pt;}
.ws147{word-spacing:31.934607pt;}
.ws1ae{word-spacing:32.039140pt;}
.wsef{word-spacing:32.143672pt;}
.ws16f{word-spacing:32.248204pt;}
.ws1be{word-spacing:32.405003pt;}
.ws7d{word-spacing:32.457269pt;}
.ws109{word-spacing:32.561801pt;}
.wsc0{word-spacing:32.718599pt;}
.ws1ad{word-spacing:32.823132pt;}
.ws13b{word-spacing:32.875398pt;}
.ws180{word-spacing:32.979930pt;}
.ws1c0{word-spacing:33.032196pt;}
.ws1b2{word-spacing:33.241261pt;}
.ws51{word-spacing:33.293527pt;}
.ws1c6{word-spacing:33.398059pt;}
.ws1c7{word-spacing:33.502591pt;}
.ws192{word-spacing:33.554858pt;}
.ws141{word-spacing:33.711656pt;}
.ws198{word-spacing:34.182051pt;}
.ws144{word-spacing:34.338850pt;}
.ws193{word-spacing:34.391116pt;}
.ws1b1{word-spacing:34.547914pt;}
.ws59{word-spacing:34.652446pt;}
.wsa5{word-spacing:34.704713pt;}
.wsd3{word-spacing:34.756979pt;}
.ws7a{word-spacing:34.861511pt;}
.ws175{word-spacing:35.175108pt;}
.ws1cf{word-spacing:35.331906pt;}
.ws1ba{word-spacing:35.384172pt;}
.wsb7{word-spacing:35.488705pt;}
.ws15e{word-spacing:35.540971pt;}
.ws6d{word-spacing:35.750035pt;}
.wsc6{word-spacing:35.802301pt;}
.ws1d0{word-spacing:36.115898pt;}
.wsa7{word-spacing:36.272697pt;}
.ws4{word-spacing:36.339351pt;}
.ws1{word-spacing:36.364952pt;}
.ws2{word-spacing:36.620953pt;}
.ws3{word-spacing:36.748953pt;}
.ws133{word-spacing:36.847624pt;}
.ws85{word-spacing:36.952156pt;}
.ws11c{word-spacing:37.213487pt;}
.ws84{word-spacing:37.318019pt;}
.wsc1{word-spacing:37.579350pt;}
.ws1dc{word-spacing:37.683882pt;}
.ws23{word-spacing:37.945213pt;}
.ws125{word-spacing:38.154277pt;}
.ws1d5{word-spacing:38.311076pt;}
.ws1d6{word-spacing:38.363342pt;}
.ws5f{word-spacing:38.415608pt;}
.ws92{word-spacing:38.551500pt;}
.wsc8{word-spacing:38.781471pt;}
.ws136{word-spacing:38.833737pt;}
.wsed{word-spacing:39.304132pt;}
.ws16e{word-spacing:39.356398pt;}
.ws142{word-spacing:39.565463pt;}
.ws18a{word-spacing:39.826794pt;}
.ws16b{word-spacing:40.610786pt;}
.ws81{word-spacing:41.290245pt;}
.ws7c{word-spacing:41.551576pt;}
.ws61{word-spacing:41.865173pt;}
.ws60{word-spacing:41.917439pt;}
.wsf7{word-spacing:42.178770pt;}
.ws1cd{word-spacing:42.283302pt;}
.ws160{word-spacing:43.171826pt;}
.ws15f{word-spacing:43.328625pt;}
.ws1b8{word-spacing:43.694487pt;}
.ws1b7{word-spacing:43.851286pt;}
.ws25{word-spacing:44.792076pt;}
.ws10d{word-spacing:45.732867pt;}
.ws98{word-spacing:45.978517pt;}
.ws7b{word-spacing:46.569125pt;}
.ws4e{word-spacing:46.778189pt;}
.wsf0{word-spacing:47.875778pt;}
.ws39{word-spacing:54.147714pt;}
.ws38{word-spacing:54.199980pt;}
.ws100{word-spacing:54.461311pt;}
.ws29{word-spacing:55.558900pt;}
.ws58{word-spacing:56.081561pt;}
.ws80{word-spacing:60.837779pt;}
.wsd2{word-spacing:65.698530pt;}
._3b{margin-left:-17.296055pt;}
._33{margin-left:-15.605039pt;}
._8{margin-left:-14.581479pt;}
._9{margin-left:-13.589469pt;}
._2c{margin-left:-12.285499pt;}
._2b{margin-left:-11.392118pt;}
._39{margin-left:-10.403878pt;}
._1d{margin-left:-4.779706pt;}
._1b{margin-left:-3.867694pt;}
._a{margin-left:-2.911850pt;}
._5{margin-left:-1.493348pt;}
._3{width:1.173345pt;}
._17{width:2.276220pt;}
._34{width:3.263990pt;}
._0{width:7.973333pt;}
._37{width:9.728213pt;}
._2d{width:10.785763pt;}
._38{width:11.690923pt;}
._7{width:12.586793pt;}
._12{width:13.525164pt;}
._6{width:14.560146pt;}
._d{width:15.605204pt;}
._4{width:17.066837pt;}
._13{width:18.084293pt;}
._15{width:19.024873pt;}
._c{width:20.398846pt;}
._10{width:21.645706pt;}
._32{width:22.623920pt;}
._e{width:23.900677pt;}
._1f{width:25.035478pt;}
._f{width:26.790157pt;}
._31{width:27.910115pt;}
._1{width:29.050667pt;}
._2f{width:30.685506pt;}
._18{width:31.934607pt;}
._2e{width:33.298813pt;}
._16{width:34.286583pt;}
._20{width:35.331906pt;}
._b{width:36.586293pt;}
._1e{width:38.144521pt;}
._1a{width:39.722261pt;}
._36{width:41.603842pt;}
._1c{width:42.596899pt;}
._35{width:44.269423pt;}
._14{width:47.956820pt;}
._11{width:53.042810pt;}
._30{width:55.587676pt;}
._19{width:57.283682pt;}
._3c{width:58.559219pt;}
._24{width:419.621413pt;}
._26{width:427.002591pt;}
._28{width:442.874464pt;}
._22{width:454.564998pt;}
._2a{width:467.194231pt;}
._25{width:473.978089pt;}
._29{width:480.676658pt;}
._27{width:488.356554pt;}
._23{width:687.863331pt;}
._2{width:1424.245333pt;}
._3a{width:1631.339583pt;}
._21{width:1653.141876pt;}
.fsf{font-size:24.885867pt;}
.fs9{font-size:26.662400pt;}
.fse{font-size:28.440000pt;}
.fs7{font-size:34.839467pt;}
.fsa{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs8{font-size:39.999467pt;}
.fsb{font-size:42.666133pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.067200pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:58.128076pt;}
.y3a{bottom:68.786590pt;}
.y273{bottom:79.371000pt;}
.y2ba{bottom:79.372853pt;}
.y137{bottom:79.375627pt;}
.y105{bottom:79.376760pt;}
.y194{bottom:79.377613pt;}
.y72{bottom:79.395507pt;}
.y1cd{bottom:79.401773pt;}
.y1ff{bottom:79.417373pt;}
.ya7{bottom:79.421987pt;}
.y168{bottom:79.442867pt;}
.y39{bottom:79.445105pt;}
.y217{bottom:79.456587pt;}
.y23a{bottom:79.474267pt;}
.yde{bottom:87.698000pt;}
.y38{bottom:90.103619pt;}
.y272{bottom:91.390840pt;}
.y2b9{bottom:91.392693pt;}
.y136{bottom:95.395200pt;}
.y104{bottom:95.396333pt;}
.y193{bottom:95.397187pt;}
.y71{bottom:95.415080pt;}
.y1cc{bottom:95.421333pt;}
.y1fe{bottom:95.436947pt;}
.ya6{bottom:95.441560pt;}
.y167{bottom:95.462440pt;}
.y216{bottom:95.476147pt;}
.y239{bottom:95.493840pt;}
.y37{bottom:100.762133pt;}
.ydd{bottom:101.073840pt;}
.y271{bottom:103.410680pt;}
.y2b8{bottom:103.412533pt;}
.y135{bottom:111.344800pt;}
.y103{bottom:111.350573pt;}
.y192{bottom:111.351427pt;}
.y1c1{bottom:111.354320pt;}
.y70{bottom:111.369320pt;}
.ya5{bottom:111.395787pt;}
.y166{bottom:111.416680pt;}
.y1d8{bottom:111.434640pt;}
.y1cb{bottom:111.440907pt;}
.y1fd{bottom:111.456520pt;}
.y223{bottom:111.461120pt;}
.y215{bottom:111.495720pt;}
.y238{bottom:111.513400pt;}
.ydc{bottom:114.375000pt;}
.y270{bottom:115.350520pt;}
.y2b7{bottom:115.352373pt;}
.y36{bottom:123.361921pt;}
.y102{bottom:127.370133pt;}
.y26f{bottom:127.370360pt;}
.y191{bottom:127.370987pt;}
.y2b6{bottom:127.372213pt;}
.y1c0{bottom:127.374760pt;}
.y6f{bottom:127.388880pt;}
.y1ca{bottom:127.395147pt;}
.y1fc{bottom:127.410747pt;}
.ya4{bottom:127.415360pt;}
.y165{bottom:127.436240pt;}
.y214{bottom:127.449960pt;}
.y237{bottom:127.467640pt;}
.ydb{bottom:127.750840pt;}
.y31{bottom:133.842195pt;}
.y35{bottom:135.381760pt;}
.y2fd{bottom:135.395213pt;}
.y26e{bottom:139.390200pt;}
.y2b5{bottom:139.392053pt;}
.yda{bottom:141.052000pt;}
.y190{bottom:143.390560pt;}
.y101{bottom:143.395200pt;}
.y6e{bottom:143.408453pt;}
.y1c9{bottom:143.414707pt;}
.y1fb{bottom:143.430320pt;}
.y1df{bottom:143.434587pt;}
.ya3{bottom:143.434933pt;}
.y134{bottom:143.448187pt;}
.y164{bottom:143.455813pt;}
.y213{bottom:143.469520pt;}
.y236{bottom:143.487213pt;}
.y34{bottom:147.401600pt;}
.y2fc{bottom:147.415053pt;}
.y30{bottom:149.796432pt;}
.y2b4{bottom:151.411893pt;}
.y33{bottom:151.861467pt;}
.y18f{bottom:159.344800pt;}
.y2fb{bottom:159.354893pt;}
.y6d{bottom:159.362693pt;}
.ya2{bottom:159.389173pt;}
.y133{bottom:159.402413pt;}
.y163{bottom:159.410053pt;}
.y32{bottom:159.420400pt;}
.y1d7{bottom:159.428027pt;}
.y1c8{bottom:159.434280pt;}
.y1fa{bottom:159.449893pt;}
.y1de{bottom:159.454160pt;}
.y222{bottom:159.454507pt;}
.y212{bottom:159.489093pt;}
.y235{bottom:159.506787pt;}
.y2b3{bottom:163.351733pt;}
.y2f{bottom:165.816002pt;}
.y2fa{bottom:171.374733pt;}
.y2b2{bottom:175.371573pt;}
.y18e{bottom:175.374760pt;}
.y6c{bottom:175.382253pt;}
.y1bf{bottom:175.387893pt;}
.y1c7{bottom:175.388520pt;}
.y1f9{bottom:175.404120pt;}
.y1dd{bottom:175.408400pt;}
.ya1{bottom:175.408733pt;}
.y132{bottom:175.421987pt;}
.y162{bottom:175.429613pt;}
.y100{bottom:175.437093pt;}
.y211{bottom:175.443333pt;}
.y234{bottom:175.461013pt;}
.y26d{bottom:175.519707pt;}
.y2e{bottom:181.835572pt;}
.y2f9{bottom:183.394573pt;}
.y2b1{bottom:187.391413pt;}
.y26c{bottom:187.459547pt;}
.y18d{bottom:191.395200pt;}
.y6b{bottom:191.401827pt;}
.y1be{bottom:191.407467pt;}
.y1c6{bottom:191.408093pt;}
.y1f8{bottom:191.423693pt;}
.y1dc{bottom:191.427960pt;}
.ya0{bottom:191.428307pt;}
.y131{bottom:191.441560pt;}
.y161{bottom:191.449187pt;}
.yff{bottom:191.456653pt;}
.y210{bottom:191.462907pt;}
.y233{bottom:191.480587pt;}
.y2f8{bottom:195.414413pt;}
.y24{bottom:197.763676pt;}
.y2d{bottom:197.789809pt;}
.y2b0{bottom:199.411253pt;}
.y26b{bottom:199.479387pt;}
.y2f7{bottom:207.354253pt;}
.y6a{bottom:207.356067pt;}
.y9f{bottom:207.382547pt;}
.y130{bottom:207.395787pt;}
.y160{bottom:207.403427pt;}
.yfe{bottom:207.410893pt;}
.y1d6{bottom:207.421400pt;}
.y1bd{bottom:207.427040pt;}
.y1c5{bottom:207.427653pt;}
.y1f7{bottom:207.443267pt;}
.y1db{bottom:207.447533pt;}
.y221{bottom:207.447880pt;}
.y20f{bottom:207.482467pt;}
.y232{bottom:207.500160pt;}
.y2af{bottom:211.351093pt;}
.y26a{bottom:211.499227pt;}
.y23{bottom:213.783246pt;}
.y2c{bottom:213.809379pt;}
.y2f6{bottom:219.374093pt;}
.y2ae{bottom:223.370013pt;}
.y69{bottom:223.375627pt;}
.y1bc{bottom:223.381267pt;}
.y1c4{bottom:223.381893pt;}
.y1f6{bottom:223.397507pt;}
.y1da{bottom:223.401773pt;}
.y9e{bottom:223.402107pt;}
.y1a5{bottom:223.408733pt;}
.y12f{bottom:223.415360pt;}
.y15f{bottom:223.423000pt;}
.yfd{bottom:223.430467pt;}
.y18c{bottom:223.436120pt;}
.y20e{bottom:223.436707pt;}
.y231{bottom:223.454387pt;}
.y269{bottom:227.449013pt;}
.y22{bottom:229.802816pt;}
.y2b{bottom:229.828949pt;}
.y2f5{bottom:231.393933pt;}
.y68{bottom:239.395200pt;}
.y1bb{bottom:239.400840pt;}
.y1c3{bottom:239.401467pt;}
.y1f5{bottom:239.417067pt;}
.y1d9{bottom:239.421333pt;}
.y9d{bottom:239.421680pt;}
.y1a4{bottom:239.428307pt;}
.y12e{bottom:239.434933pt;}
.y15e{bottom:239.442560pt;}
.yfc{bottom:239.450027pt;}
.y18b{bottom:239.455693pt;}
.y20d{bottom:239.456280pt;}
.y268{bottom:239.468853pt;}
.y230{bottom:239.473960pt;}
.y2f4{bottom:243.413773pt;}
.y21{bottom:245.757053pt;}
.y2a{bottom:245.783186pt;}
.y267{bottom:251.488693pt;}
.y67{bottom:255.344813pt;}
.y1b2{bottom:255.349560pt;}
.y2f3{bottom:255.353613pt;}
.y9c{bottom:255.375920pt;}
.y12d{bottom:255.389173pt;}
.y15d{bottom:255.396800pt;}
.yfb{bottom:255.404267pt;}
.y18a{bottom:255.409933pt;}
.y1ba{bottom:255.420413pt;}
.y1c2{bottom:255.421027pt;}
.y1f4{bottom:255.436640pt;}
.y220{bottom:255.441253pt;}
.y1a3{bottom:255.447880pt;}
.y20c{bottom:255.475840pt;}
.y22f{bottom:255.493533pt;}
.y2ad{bottom:259.351733pt;}
.y20{bottom:261.776623pt;}
.y29{bottom:261.802756pt;}
.y266{bottom:263.508533pt;}
.y2f2{bottom:267.373453pt;}
.y66{bottom:271.370000pt;}
.y1f3{bottom:271.390880pt;}
.y9b{bottom:271.395493pt;}
.y1a2{bottom:271.402107pt;}
.y12c{bottom:271.408733pt;}
.y15c{bottom:271.416373pt;}
.yfa{bottom:271.423840pt;}
.y189{bottom:271.429493pt;}
.y20b{bottom:271.430080pt;}
.y22e{bottom:271.447773pt;}
.y1f{bottom:277.796193pt;}
.y28{bottom:277.822326pt;}
.y2f1{bottom:279.393293pt;}
.y2ac{bottom:283.391413pt;}
.y1f2{bottom:287.410440pt;}
.y9a{bottom:287.415053pt;}
.y1a1{bottom:287.421680pt;}
.y12b{bottom:287.428307pt;}
.y15b{bottom:287.435933pt;}
.yf9{bottom:287.443413pt;}
.y188{bottom:287.449067pt;}
.y20a{bottom:287.449653pt;}
.y22d{bottom:287.467333pt;}
.y1e6{bottom:287.490200pt;}
.y2f0{bottom:291.413133pt;}
.y265{bottom:293.140147pt;}
.y1e{bottom:293.750430pt;}
.y27{bottom:293.776563pt;}
.y2ab{bottom:295.411253pt;}
.y1d4{bottom:298.752213pt;}
.y1e5{bottom:300.866040pt;}
.y2ef{bottom:303.352973pt;}
.y1f1{bottom:303.364680pt;}
.y99{bottom:303.369293pt;}
.y1a0{bottom:303.375920pt;}
.y1b1{bottom:303.377213pt;}
.y12a{bottom:303.382547pt;}
.y15a{bottom:303.390173pt;}
.yf8{bottom:303.397640pt;}
.y187{bottom:303.403307pt;}
.y209{bottom:303.403893pt;}
.y22c{bottom:303.421573pt;}
.y65{bottom:303.430773pt;}
.y2a8{bottom:307.350173pt;}
.y2aa{bottom:307.351093pt;}
.y1c{bottom:309.770000pt;}
.y26{bottom:309.796133pt;}
.y2a9{bottom:311.810947pt;}
.y1d3{bottom:312.053373pt;}
.y1e4{bottom:314.167200pt;}
.y2ee{bottom:315.372813pt;}
.y1d{bottom:315.590533pt;}
.y2a5{bottom:319.368053pt;}
.y2a7{bottom:319.370013pt;}
.y1f0{bottom:319.384253pt;}
.y98{bottom:319.388867pt;}
.y19f{bottom:319.395493pt;}
.y1b0{bottom:319.396773pt;}
.y129{bottom:319.402107pt;}
.y159{bottom:319.409747pt;}
.yf7{bottom:319.417213pt;}
.y186{bottom:319.422867pt;}
.y208{bottom:319.423453pt;}
.y22b{bottom:319.441147pt;}
.y64{bottom:319.450333pt;}
.y2a6{bottom:323.829893pt;}
.y1d2{bottom:325.429200pt;}
.y1b{bottom:325.795200pt;}
.y25{bottom:325.815703pt;}
.y2ed{bottom:327.392653pt;}
.y1e3{bottom:327.543040pt;}
.y264{bottom:330.274973pt;}
.y2a4{bottom:331.387893pt;}
.y1ef{bottom:335.403827pt;}
.y97{bottom:335.408427pt;}
.y19e{bottom:335.415053pt;}
.y1af{bottom:335.416347pt;}
.y128{bottom:335.421680pt;}
.y158{bottom:335.429307pt;}
.yf6{bottom:335.436787pt;}
.y185{bottom:335.442440pt;}
.y207{bottom:335.443027pt;}
.y22a{bottom:335.460707pt;}
.y63{bottom:335.469907pt;}
.y1d1{bottom:338.730373pt;}
.y2ec{bottom:339.412493pt;}
.y1e2{bottom:340.844200pt;}
.y2a3{bottom:343.407733pt;}
.y2a1{bottom:343.411253pt;}
.y263{bottom:346.294547pt;}
.y2a2{bottom:347.792000pt;}
.y2eb{bottom:351.352333pt;}
.y1ee{bottom:351.358053pt;}
.y96{bottom:351.362667pt;}
.y19d{bottom:351.369293pt;}
.y1ae{bottom:351.370587pt;}
.y127{bottom:351.375920pt;}
.y157{bottom:351.383547pt;}
.yf5{bottom:351.391013pt;}
.y184{bottom:351.396680pt;}
.y206{bottom:351.397267pt;}
.y229{bottom:351.414947pt;}
.y62{bottom:351.424147pt;}
.y1d0{bottom:352.031533pt;}
.y1e1{bottom:354.145373pt;}
.y29e{bottom:355.349253pt;}
.y2a0{bottom:355.351093pt;}
.y29f{bottom:359.810920pt;}
.y262{bottom:362.314107pt;}
.y2ea{bottom:363.372173pt;}
.y1cf{bottom:365.407373pt;}
.y1a{bottom:366.390027pt;}
.y29d{bottom:367.369093pt;}
.y1ed{bottom:367.377627pt;}
.y95{bottom:367.382240pt;}
.y19c{bottom:367.388867pt;}
.y1ad{bottom:367.390160pt;}
.y126{bottom:367.395493pt;}
.y156{bottom:367.403120pt;}
.yf4{bottom:367.410587pt;}
.y183{bottom:367.416240pt;}
.y205{bottom:367.416827pt;}
.y228{bottom:367.434520pt;}
.y61{bottom:367.443707pt;}
.y1e0{bottom:367.521200pt;}
.y2e9{bottom:375.392013pt;}
.y261{bottom:378.268347pt;}
.y1ce{bottom:378.708533pt;}
.y29a{bottom:379.387893pt;}
.y29c{bottom:379.388933pt;}
.y1ec{bottom:383.397200pt;}
.y94{bottom:383.401813pt;}
.y19b{bottom:383.408427pt;}
.y1ac{bottom:383.409720pt;}
.y125{bottom:383.415053pt;}
.y155{bottom:383.422693pt;}
.yf3{bottom:383.430160pt;}
.y182{bottom:383.435813pt;}
.y204{bottom:383.436400pt;}
.y227{bottom:383.454093pt;}
.y60{bottom:383.463280pt;}
.y29b{bottom:383.848813pt;}
.y2e8{bottom:387.411853pt;}
.y19{bottom:389.070254pt;}
.y299{bottom:391.407733pt;}
.y260{bottom:394.287920pt;}
.y298{bottom:395.792000pt;}
.y1eb{bottom:399.351427pt;}
.y2e7{bottom:399.351693pt;}
.y93{bottom:399.356040pt;}
.y19a{bottom:399.362667pt;}
.y1ab{bottom:399.363960pt;}
.y124{bottom:399.369293pt;}
.y154{bottom:399.376920pt;}
.yf2{bottom:399.384400pt;}
.y181{bottom:399.390053pt;}
.y203{bottom:399.390640pt;}
.y226{bottom:399.408320pt;}
.y5f{bottom:399.417520pt;}
.y297{bottom:403.348213pt;}
.y18{bottom:405.017080pt;}
.y25f{bottom:410.307493pt;}
.y2e6{bottom:411.371533pt;}
.y1ea{bottom:415.371000pt;}
.y92{bottom:415.375613pt;}
.y199{bottom:415.382240pt;}
.y1aa{bottom:415.383533pt;}
.y123{bottom:415.388867pt;}
.y153{bottom:415.396493pt;}
.yf1{bottom:415.403960pt;}
.y180{bottom:415.409627pt;}
.y202{bottom:415.410213pt;}
.y225{bottom:415.427893pt;}
.y5e{bottom:415.437093pt;}
.y17{bottom:421.043907pt;}
.y2e5{bottom:423.391373pt;}
.y25e{bottom:426.261720pt;}
.y296{bottom:427.387893pt;}
.y1e9{bottom:431.390573pt;}
.y91{bottom:431.395187pt;}
.y8f{bottom:431.396187pt;}
.y198{bottom:431.401813pt;}
.y1a9{bottom:431.403093pt;}
.y122{bottom:431.408427pt;}
.y152{bottom:431.416067pt;}
.yf0{bottom:431.423533pt;}
.y17f{bottom:431.429187pt;}
.y201{bottom:431.429773pt;}
.y224{bottom:431.447467pt;}
.y5d{bottom:431.456653pt;}
.y2e4{bottom:435.411213pt;}
.y90{bottom:437.215613pt;}
.y295{bottom:439.407733pt;}
.y16{bottom:441.070774pt;}
.y25d{bottom:442.281293pt;}
.y1e8{bottom:447.344813pt;}
.y8e{bottom:447.350427pt;}
.y2e3{bottom:447.351053pt;}
.y197{bottom:447.356040pt;}
.y1a8{bottom:447.357333pt;}
.y121{bottom:447.362667pt;}
.y151{bottom:447.370307pt;}
.yef{bottom:447.377773pt;}
.y17e{bottom:447.383427pt;}
.y200{bottom:447.384013pt;}
.y5c{bottom:447.410893pt;}
.y294{bottom:451.351093pt;}
.y15{bottom:457.017600pt;}
.y25c{bottom:458.300867pt;}
.y2e2{bottom:459.370893pt;}
.y8d{bottom:463.370000pt;}
.y196{bottom:463.375613pt;}
.y1a7{bottom:463.376907pt;}
.y120{bottom:463.382240pt;}
.y150{bottom:463.389867pt;}
.yee{bottom:463.397333pt;}
.y17d{bottom:463.403000pt;}
.y5b{bottom:463.430467pt;}
.y2e1{bottom:471.390733pt;}
.y14{bottom:473.044427pt;}
.y25b{bottom:474.255093pt;}
.y23e{bottom:478.497293pt;}
.y195{bottom:479.395187pt;}
.y1a6{bottom:479.396480pt;}
.y8c{bottom:479.397840pt;}
.y11f{bottom:479.401813pt;}
.y14f{bottom:479.409440pt;}
.yed{bottom:479.416907pt;}
.y17c{bottom:479.422560pt;}
.y5a{bottom:479.450027pt;}
.y2e0{bottom:483.410573pt;}
.y293{bottom:483.415640pt;}
.y21e{bottom:488.182053pt;}
.y13{bottom:489.071254pt;}
.y25a{bottom:490.280160pt;}
.y23d{bottom:491.798467pt;}
.y8b{bottom:495.344680pt;}
.y2df{bottom:495.350413pt;}
.y292{bottom:495.355480pt;}
.y11e{bottom:495.356040pt;}
.y14e{bottom:495.363680pt;}
.yec{bottom:495.371147pt;}
.y17b{bottom:495.376800pt;}
.y59{bottom:495.404267pt;}
.y21d{bottom:501.483227pt;}
.y23c{bottom:505.099627pt;}
.y2de{bottom:507.370253pt;}
.y12{bottom:509.031453pt;}
.y11d{bottom:511.375613pt;}
.y14d{bottom:511.383240pt;}
.yeb{bottom:511.390720pt;}
.y17a{bottom:511.396373pt;}
.y58{bottom:511.423840pt;}
.y21c{bottom:514.859053pt;}
.y23b{bottom:518.475467pt;}
.y2dd{bottom:519.390093pt;}
.y291{bottom:519.395160pt;}
.y11{bottom:525.058280pt;}
.y11c{bottom:527.395187pt;}
.y14c{bottom:527.402813pt;}
.yea{bottom:527.410280pt;}
.y179{bottom:527.415947pt;}
.y57{bottom:527.443413pt;}
.y259{bottom:527.443427pt;}
.y21b{bottom:528.160227pt;}
.y1b8{bottom:528.544707pt;}
.y2dc{bottom:531.409933pt;}
.y290{bottom:531.415000pt;}
.y8a{bottom:535.435267pt;}
.y10{bottom:541.085107pt;}
.y21a{bottom:541.461387pt;}
.y1b7{bottom:541.920533pt;}
.yc9{bottom:543.344680pt;}
.y2db{bottom:543.349773pt;}
.y14b{bottom:543.357053pt;}
.yc7{bottom:543.362667pt;}
.yb9{bottom:543.363547pt;}
.ye9{bottom:543.364520pt;}
.y178{bottom:543.370173pt;}
.y56{bottom:543.397640pt;}
.y258{bottom:543.397653pt;}
.yc8{bottom:549.165200pt;}
.y89{bottom:551.389493pt;}
.y219{bottom:554.837227pt;}
.y1b6{bottom:555.221707pt;}
.y2da{bottom:555.369613pt;}
.y28f{bottom:555.374680pt;}
.yf{bottom:557.031933pt;}
.y14a{bottom:559.376613pt;}
.yc6{bottom:559.382240pt;}
.yb8{bottom:559.383120pt;}
.ye8{bottom:559.384093pt;}
.y177{bottom:559.389747pt;}
.y55{bottom:559.417213pt;}
.y257{bottom:559.417227pt;}
.y2d9{bottom:567.389453pt;}
.y28e{bottom:567.394507pt;}
.y88{bottom:567.409067pt;}
.y218{bottom:568.138387pt;}
.y1b5{bottom:568.597533pt;}
.ye{bottom:573.058760pt;}
.y149{bottom:575.396187pt;}
.yc5{bottom:575.401813pt;}
.yb7{bottom:575.402693pt;}
.ye7{bottom:575.403653pt;}
.y176{bottom:575.409320pt;}
.y11b{bottom:575.422560pt;}
.y54{bottom:575.436787pt;}
.y256{bottom:575.436800pt;}
.y2d8{bottom:579.409293pt;}
.y28d{bottom:579.414347pt;}
.y1b4{bottom:581.898707pt;}
.y87{bottom:583.428640pt;}
.yd{bottom:589.085587pt;}
.y2d7{bottom:591.349133pt;}
.y148{bottom:591.350427pt;}
.y28c{bottom:591.354200pt;}
.yc4{bottom:591.356040pt;}
.yb6{bottom:591.356933pt;}
.ye6{bottom:591.357893pt;}
.y175{bottom:591.363547pt;}
.y11a{bottom:591.376800pt;}
.y53{bottom:591.391013pt;}
.y255{bottom:591.391027pt;}
.y1b3{bottom:595.199867pt;}
.y86{bottom:599.382880pt;}
.y2d6{bottom:603.368973pt;}
.y28b{bottom:603.374027pt;}
.yc{bottom:605.032413pt;}
.y147{bottom:607.370000pt;}
.yc3{bottom:607.375613pt;}
.yb5{bottom:607.376493pt;}
.ye5{bottom:607.377467pt;}
.y174{bottom:607.383120pt;}
.y119{bottom:607.396373pt;}
.y52{bottom:607.410587pt;}
.y254{bottom:607.410600pt;}
.y2d5{bottom:615.388800pt;}
.y28a{bottom:615.393867pt;}
.y85{bottom:615.402440pt;}
.yc2{bottom:623.395187pt;}
.yb4{bottom:623.396067pt;}
.ye4{bottom:623.397027pt;}
.y173{bottom:623.402693pt;}
.y118{bottom:623.415947pt;}
.y51{bottom:623.430160pt;}
.y253{bottom:623.430173pt;}
.yb{bottom:625.059280pt;}
.y2d4{bottom:627.408640pt;}
.y289{bottom:627.413707pt;}
.y84{bottom:631.422013pt;}
.y2d3{bottom:639.348493pt;}
.yc1{bottom:639.349427pt;}
.yb3{bottom:639.350307pt;}
.ye3{bottom:639.351267pt;}
.y288{bottom:639.353547pt;}
.y172{bottom:639.356933pt;}
.y117{bottom:639.370173pt;}
.y50{bottom:639.384400pt;}
.y252{bottom:639.384413pt;}
.ya{bottom:641.006106pt;}
.y83{bottom:647.376253pt;}
.y2d2{bottom:651.368320pt;}
.y287{bottom:651.373387pt;}
.yb2{bottom:655.369867pt;}
.ye2{bottom:655.370840pt;}
.yb0{bottom:655.376493pt;}
.y116{bottom:655.389747pt;}
.y146{bottom:655.402027pt;}
.y4f{bottom:655.403960pt;}
.y251{bottom:655.403973pt;}
.y9{bottom:657.032933pt;}
.yb1{bottom:661.190387pt;}
.y2d1{bottom:663.388160pt;}
.y82{bottom:663.395813pt;}
.ye1{bottom:671.390413pt;}
.yaf{bottom:671.396067pt;}
.y115{bottom:671.409320pt;}
.y145{bottom:671.421600pt;}
.y4e{bottom:671.423533pt;}
.y250{bottom:671.423547pt;}
.y2d0{bottom:675.408000pt;}
.y286{bottom:675.413067pt;}
.y81{bottom:679.415387pt;}
.y8{bottom:681.070667pt;}
.ye0{bottom:687.344640pt;}
.y2cf{bottom:687.347840pt;}
.yae{bottom:687.350307pt;}
.y285{bottom:687.352907pt;}
.y114{bottom:687.363547pt;}
.yc0{bottom:687.369827pt;}
.y144{bottom:687.375840pt;}
.y4d{bottom:687.377773pt;}
.y24f{bottom:687.377787pt;}
.y80{bottom:695.369627pt;}
.y2ce{bottom:699.367680pt;}
.y284{bottom:699.372747pt;}
.yad{bottom:703.369867pt;}
.y113{bottom:703.383120pt;}
.ybf{bottom:703.389400pt;}
.y143{bottom:703.395400pt;}
.y4c{bottom:703.397333pt;}
.y24e{bottom:703.397347pt;}
.y2cd{bottom:711.387520pt;}
.y7f{bottom:711.389187pt;}
.y283{bottom:711.392587pt;}
.yac{bottom:719.397800pt;}
.y112{bottom:719.402693pt;}
.ybe{bottom:719.408973pt;}
.y142{bottom:719.414973pt;}
.y4b{bottom:719.416907pt;}
.y24d{bottom:719.416920pt;}
.y2cc{bottom:723.407360pt;}
.y7e{bottom:727.408760pt;}
.y6{bottom:732.396667pt;}
.yab{bottom:735.344640pt;}
.y2cb{bottom:735.347200pt;}
.y282{bottom:735.352267pt;}
.y111{bottom:735.356933pt;}
.ybd{bottom:735.363200pt;}
.y141{bottom:735.369213pt;}
.y4a{bottom:735.371147pt;}
.y24c{bottom:735.371160pt;}
.y7{bottom:738.897467pt;}
.y7d{bottom:743.363000pt;}
.y2ca{bottom:747.367040pt;}
.y281{bottom:747.372107pt;}
.y171{bottom:751.369867pt;}
.y110{bottom:751.376493pt;}
.ybc{bottom:751.382773pt;}
.y140{bottom:751.388787pt;}
.y49{bottom:751.390720pt;}
.y24b{bottom:751.390733pt;}
.y7c{bottom:759.382573pt;}
.y2c9{bottom:759.386880pt;}
.y280{bottom:759.391947pt;}
.y5{bottom:764.383567pt;}
.yaa{bottom:767.390413pt;}
.y10f{bottom:767.396067pt;}
.ybb{bottom:767.402347pt;}
.y13f{bottom:767.408347pt;}
.y48{bottom:767.410280pt;}
.y24a{bottom:767.410293pt;}
.y2c8{bottom:771.406720pt;}
.y27f{bottom:771.411787pt;}
.y7b{bottom:775.407720pt;}
.ya9{bottom:783.344640pt;}
.y2c7{bottom:783.346560pt;}
.y10e{bottom:783.350307pt;}
.y27e{bottom:783.351627pt;}
.yba{bottom:783.356573pt;}
.y170{bottom:783.356933pt;}
.y13e{bottom:783.362587pt;}
.y47{bottom:783.364520pt;}
.y249{bottom:783.364533pt;}
.y2c6{bottom:795.366400pt;}
.y27d{bottom:795.371467pt;}
.y4{bottom:799.071711pt;}
.y10d{bottom:799.369867pt;}
.y16f{bottom:799.376493pt;}
.y13d{bottom:799.382160pt;}
.y46{bottom:799.384093pt;}
.y248{bottom:799.384107pt;}
.y2c5{bottom:807.386240pt;}
.y27c{bottom:807.391307pt;}
.y10c{bottom:815.395107pt;}
.y16e{bottom:815.396067pt;}
.y13c{bottom:815.401720pt;}
.y45{bottom:815.403653pt;}
.y247{bottom:815.403667pt;}
.y7a{bottom:815.420320pt;}
.yd9{bottom:817.587240pt;}
.yd8{bottom:819.098960pt;}
.y2c4{bottom:819.406080pt;}
.y27b{bottom:819.411147pt;}
.y2c3{bottom:831.345920pt;}
.y16d{bottom:831.350307pt;}
.y13b{bottom:831.355960pt;}
.y44{bottom:831.357893pt;}
.y246{bottom:831.357907pt;}
.y79{bottom:831.374560pt;}
.y3{bottom:833.695855pt;}
.yd6{bottom:834.897467pt;}
.yd7{bottom:836.635987pt;}
.yd5{bottom:836.640533pt;}
.y2c2{bottom:843.365760pt;}
.y27a{bottom:843.370827pt;}
.y16c{bottom:847.369867pt;}
.y10b{bottom:847.375387pt;}
.y13a{bottom:847.375533pt;}
.y43{bottom:847.377467pt;}
.y245{bottom:847.377480pt;}
.y78{bottom:847.394133pt;}
.yd3{bottom:853.568280pt;}
.yd4{bottom:855.306960pt;}
.yd2{bottom:855.311267pt;}
.y2c1{bottom:855.385600pt;}
.y279{bottom:855.390667pt;}
.y138{bottom:861.202960pt;}
.y10a{bottom:863.394947pt;}
.y139{bottom:863.395107pt;}
.y42{bottom:863.397027pt;}
.y244{bottom:863.397040pt;}
.y77{bottom:863.413693pt;}
.y2c0{bottom:867.405440pt;}
.y278{bottom:867.410507pt;}
.y2{bottom:868.384000pt;}
.yd0{bottom:872.163573pt;}
.yd1{bottom:873.977707pt;}
.ycf{bottom:873.982253pt;}
.y2bf{bottom:879.345280pt;}
.y109{bottom:879.349187pt;}
.y277{bottom:879.350347pt;}
.y41{bottom:879.351267pt;}
.y243{bottom:879.351280pt;}
.y76{bottom:879.367933pt;}
.ycd{bottom:890.834387pt;}
.y2be{bottom:891.365120pt;}
.y276{bottom:891.370187pt;}
.yce{bottom:892.648680pt;}
.ycc{bottom:892.649853pt;}
.y108{bottom:895.368760pt;}
.y40{bottom:895.370840pt;}
.y242{bottom:895.370853pt;}
.y75{bottom:895.387507pt;}
.y16b{bottom:895.434867pt;}
.y2bd{bottom:903.384960pt;}
.ycb{bottom:910.185627pt;}
.y107{bottom:911.388320pt;}
.y3f{bottom:911.390413pt;}
.y241{bottom:911.390427pt;}
.y74{bottom:911.407067pt;}
.y16a{bottom:911.454427pt;}
.y2bc{bottom:915.404800pt;}
.y275{bottom:915.409867pt;}
.y1{bottom:919.029600pt;}
.y106{bottom:927.342560pt;}
.y3e{bottom:927.344640pt;}
.y240{bottom:927.344653pt;}
.y274{bottom:927.349707pt;}
.y73{bottom:927.361307pt;}
.y169{bottom:927.408667pt;}
.yca{bottom:927.722653pt;}
.y3d{bottom:989.180433pt;}
.y2fe{bottom:1002.481590pt;}
.y3c{bottom:1002.481600pt;}
.ya8{bottom:1002.481613pt;}
.y2bb{bottom:1002.481627pt;}
.y23f{bottom:1002.490733pt;}
.y1b9{bottom:1002.490760pt;}
.ydf{bottom:1002.491893pt;}
.y1d5{bottom:1002.498040pt;}
.y1e7{bottom:1002.499893pt;}
.y21f{bottom:1002.500933pt;}
.h12{height:17.942710pt;}
.hb{height:19.223590pt;}
.h11{height:20.505240pt;}
.h9{height:25.223774pt;}
.hc{height:26.916949pt;}
.h5{height:28.196676pt;}
.ha{height:28.839615pt;}
.he{height:30.762282pt;}
.h10{height:34.608000pt;}
.hf{height:35.377451pt;}
.hd{height:37.588863pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606933pt;}
.h4{height:42.299051pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x11{left:79.143333pt;}
.x1{left:80.957467pt;}
.x1e{left:83.074000pt;}
.xe{left:84.283467pt;}
.x13{left:86.252827pt;}
.x1f{left:90.179467pt;}
.x2d{left:95.625760pt;}
.x3{left:137.121200pt;}
.x4{left:146.116533pt;}
.x20{left:193.058267pt;}
.x21{left:202.582667pt;}
.x5{left:219.514933pt;}
.x6{left:224.503867pt;}
.x12{left:240.453467pt;}
.x16{left:257.083480pt;}
.x17{left:271.370000pt;}
.xf{left:304.478667pt;}
.x7{left:306.897600pt;}
.x8{left:318.689733pt;}
.x9{left:400.705467pt;}
.x10{left:406.293656pt;}
.x23{left:409.851867pt;}
.xa{left:412.497467pt;}
.x22{left:416.961360pt;}
.x2c{left:426.334307pt;}
.x25{left:440.239347pt;}
.x26{left:443.867613pt;}
.xb{left:481.511733pt;}
.xc{left:490.733733pt;}
.x29{left:510.689627pt;}
.x2a{left:514.318000pt;}
.x18{left:584.390387pt;}
.x19{left:591.873867pt;}
.xd{left:598.903867pt;}
.x27{left:607.143200pt;}
.x28{left:610.771493pt;}
.x1a{left:626.796667pt;}
.x24{left:629.291227pt;}
.x1c{left:633.599853pt;}
.x1b{left:637.606120pt;}
.x2b{left:641.536800pt;}
.x14{left:642.443853pt;}
.x1d{left:644.484787pt;}
.x15{left:651.288000pt;}
}




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