
    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_a3ae0ae1e7af8763376bd7df.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6ec009ba43da5ca271b19399.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_32e58327cfb0cb43afee1c61.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_383d20b879f0943099f371fd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1037d83cca36c744467b708c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_45c20f1081f718b502e580d5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.752441;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_3d1b058e1d330818c8a76674.woff')format("woff");}.ff7{font-family:ff7;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_39ebe36463305b926614f8c3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d435fca95d2e3aa589a4348d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_46c16739ec390f41e6c819c9.woff')format("woff");}.ffa{font-family:ffa;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_36e3fc3e6be6f9dfe1586bd5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_8cd7e8795a2d9a36a4947895.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8474c204900ec6b44a06b934.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_57708504b5193f8da9860c12.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_638dbcabce45d6080b4dd7dc.woff')format("woff");}.fff{font-family:fff;line-height:0.745117;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_d74859fccd7d9a2452d75005.woff')format("woff");}.ff10{font-family:ff10;line-height:0.983887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_93860c99a0bd60aa89c4262f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fffc40cd34fe1426e76e49fa.woff')format("woff");}.ff12{font-family:ff12;line-height:0.932617;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:ff13;src:url('chunks/assets/font_b16a6ac08a20907da668e666.woff')format("woff");}.ff13{font-family:ff13;line-height:0.962402;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:ff14;src:url('chunks/assets/font_1a57f35d66396bbc6aa29b5a.woff')format("woff");}.ff14{font-family:ff14;line-height:0.983887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_223b1cdbbb85b7a6aa760225.woff')format("woff");}.ff15{font-family:ff15;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.227243,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.227243,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.227243,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249411,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249411,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249411,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.249768,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249768,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249768,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.200836,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.200836,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.200836,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249582,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249582,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249582,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249412,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249412,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249412,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.249586,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249586,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249586,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249584,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249584,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249584,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.166797,-0.180685,0.198779,0.151614,0,0);-ms-transform:matrix(0.166797,-0.180685,0.198779,0.151614,0,0);-webkit-transform:matrix(0.166797,-0.180685,0.198779,0.151614,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);}
.m7{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.275036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275036,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.311199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311199,0.000000,0.000000,0.250000,0,0);}
.v17{vertical-align:-91.920000px;}
.v16{vertical-align:-44.774309px;}
.v4{vertical-align:-38.880000px;}
.v8{vertical-align:-32.520000px;}
.v5{vertical-align:-27.960000px;}
.v9{vertical-align:-26.640000px;}
.v1a{vertical-align:-25.200000px;}
.vf{vertical-align:-23.040000px;}
.v2{vertical-align:-21.600000px;}
.v18{vertical-align:-20.160000px;}
.v1b{vertical-align:-18.720000px;}
.v3{vertical-align:-17.280000px;}
.v1c{vertical-align:-15.120000px;}
.v7{vertical-align:-12.960000px;}
.v11{vertical-align:-7.200000px;}
.vb{vertical-align:-4.560000px;}
.va{vertical-align:-1.860000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:6.000000px;}
.vc{vertical-align:13.680000px;}
.v1e{vertical-align:17.020878px;}
.v1d{vertical-align:18.120000px;}
.v1f{vertical-align:24.060000px;}
.v12{vertical-align:25.200000px;}
.v19{vertical-align:26.640000px;}
.v1{vertical-align:29.700000px;}
.v10{vertical-align:32.400000px;}
.v14{vertical-align:37.560000px;}
.vd{vertical-align:42.960000px;}
.ve{vertical-align:47.400000px;}
.v6{vertical-align:58.020000px;}
.v15{vertical-align:72.432000px;}
.ls4b{letter-spacing:-2.916000px;}
.ls71{letter-spacing:-1.512000px;}
.ls7d{letter-spacing:-1.422000px;}
.ls9c{letter-spacing:-0.972000px;}
.ls99{letter-spacing:-0.900000px;}
.ls12{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.756000px;}
.ls68{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.504000px;}
.ls9b{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.327000px;}
.ls1b{letter-spacing:-0.326400px;}
.ls20{letter-spacing:-0.324600px;}
.ls10{letter-spacing:-0.324000px;}
.ls8f{letter-spacing:-0.312000px;}
.ls5c{letter-spacing:-0.310200px;}
.ls34{letter-spacing:-0.306000px;}
.ls1d{letter-spacing:-0.303000px;}
.ls21{letter-spacing:-0.256800px;}
.ls4{letter-spacing:-0.229800px;}
.ls2d{letter-spacing:-0.216000px;}
.ls45{letter-spacing:-0.186000px;}
.ls1f{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.179400px;}
.ls2f{letter-spacing:-0.177613px;}
.ls62{letter-spacing:-0.162600px;}
.ls3d{letter-spacing:-0.161400px;}
.ls4e{letter-spacing:-0.146241px;}
.ls7c{letter-spacing:-0.144000px;}
.ls4f{letter-spacing:-0.132742px;}
.ls8d{letter-spacing:-0.131400px;}
.ls5d{letter-spacing:-0.122899px;}
.ls93{letter-spacing:-0.116218px;}
.ls91{letter-spacing:-0.112460px;}
.ls41{letter-spacing:-0.111600px;}
.ls11{letter-spacing:-0.109200px;}
.ls44{letter-spacing:-0.106800px;}
.ls8e{letter-spacing:-0.097800px;}
.ls50{letter-spacing:-0.094637px;}
.ls8a{letter-spacing:-0.093758px;}
.ls94{letter-spacing:-0.089680px;}
.ls40{letter-spacing:-0.088800px;}
.ls8c{letter-spacing:-0.084000px;}
.ls88{letter-spacing:-0.079209px;}
.ls28{letter-spacing:-0.075000px;}
.ls35{letter-spacing:-0.072000px;}
.ls8b{letter-spacing:-0.058320px;}
.lsb{letter-spacing:-0.056460px;}
.ls2e{letter-spacing:-0.051462px;}
.ls4c{letter-spacing:-0.037440px;}
.lsc{letter-spacing:-0.036000px;}
.ls61{letter-spacing:-0.025200px;}
.lse{letter-spacing:-0.022740px;}
.ls3{letter-spacing:0.000000px;}
.ls89{letter-spacing:0.003519px;}
.ls30{letter-spacing:0.011140px;}
.lsf{letter-spacing:0.015120px;}
.ls5b{letter-spacing:0.018365px;}
.ls2a{letter-spacing:0.022320px;}
.ls90{letter-spacing:0.025200px;}
.ls31{letter-spacing:0.036000px;}
.ls60{letter-spacing:0.036730px;}
.ls9{letter-spacing:0.038880px;}
.ls17{letter-spacing:0.040080px;}
.ls81{letter-spacing:0.044058px;}
.ls7f{letter-spacing:0.052141px;}
.ls54{letter-spacing:0.057646px;}
.ls29{letter-spacing:0.064800px;}
.ls92{letter-spacing:0.065085px;}
.ls95{letter-spacing:0.067260px;}
.ls25{letter-spacing:0.067800px;}
.ls53{letter-spacing:0.072000px;}
.ls78{letter-spacing:0.080230px;}
.ls5e{letter-spacing:0.083362px;}
.ls79{letter-spacing:0.089037px;}
.ls5a{letter-spacing:0.092656px;}
.ls80{letter-spacing:0.094162px;}
.ls7e{letter-spacing:0.094744px;}
.ls2{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.108000px;}
.ls3c{letter-spacing:0.109200px;}
.ls51{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.123000px;}
.ls5f{letter-spacing:0.133995px;}
.ls32{letter-spacing:0.142800px;}
.ls13{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.148800px;}
.ls82{letter-spacing:0.172800px;}
.ls58{letter-spacing:0.173400px;}
.ls83{letter-spacing:0.174240px;}
.ls36{letter-spacing:0.179280px;}
.ls7a{letter-spacing:0.180000px;}
.ls3f{letter-spacing:0.201000px;}
.lsa{letter-spacing:0.209400px;}
.ls22{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.217800px;}
.ls3e{letter-spacing:0.237600px;}
.ls52{letter-spacing:0.249600px;}
.ls69{letter-spacing:0.252000px;}
.ls55{letter-spacing:0.256200px;}
.ls4a{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.306600px;}
.ls76{letter-spacing:0.324000px;}
.ls7b{letter-spacing:0.352200px;}
.ls4d{letter-spacing:0.360000px;}
.ls6e{letter-spacing:0.388800px;}
.ls42{letter-spacing:0.401760px;}
.ls15{letter-spacing:0.405840px;}
.ls75{letter-spacing:0.417600px;}
.ls87{letter-spacing:0.432000px;}
.ls74{letter-spacing:0.456600px;}
.ls6d{letter-spacing:0.463392px;}
.ls6c{letter-spacing:0.468000px;}
.ls73{letter-spacing:0.490200px;}
.ls16{letter-spacing:0.490800px;}
.ls67{letter-spacing:0.504000px;}
.ls6b{letter-spacing:0.519120px;}
.ls72{letter-spacing:0.528600px;}
.ls96{letter-spacing:0.576000px;}
.ls6a{letter-spacing:0.653760px;}
.ls39{letter-spacing:0.678240px;}
.ls65{letter-spacing:0.702000px;}
.ls5{letter-spacing:0.720000px;}
.ls97{letter-spacing:0.756000px;}
.ls57{letter-spacing:0.792000px;}
.ls33{letter-spacing:0.828000px;}
.ls66{letter-spacing:0.864000px;}
.ls84{letter-spacing:0.894240px;}
.ls64{letter-spacing:0.936000px;}
.ls86{letter-spacing:0.972000px;}
.ls6f{letter-spacing:1.014000px;}
.ls9a{letter-spacing:1.020000px;}
.ls63{letter-spacing:1.046880px;}
.ls70{letter-spacing:19.930320px;}
.ls37{letter-spacing:22.878432px;}
.ls98{letter-spacing:46.152000px;}
.ls24{letter-spacing:48.117024px;}
.ls23{letter-spacing:48.168000px;}
.ls56{letter-spacing:48.348000px;}
.ls77{letter-spacing:52.449984px;}
.ls38{letter-spacing:52.500960px;}
.ls2c{letter-spacing:52.542000px;}
.ls6{letter-spacing:60.033600px;}
.ls7{letter-spacing:60.084000px;}
.ls2b{letter-spacing:94.302000px;}
.ls49{letter-spacing:95.412000px;}
.ls19{letter-spacing:97.560000px;}
.ls1a{letter-spacing:97.629600px;}
.ls18{letter-spacing:97.680000px;}
.ls85{letter-spacing:172.775140px;}
.ls8{letter-spacing:191.559456px;}
.ls59{letter-spacing:236.525818px;}
.ls46{letter-spacing:312.569040px;}
.ls47{letter-spacing:331.854000px;}
.ls48{letter-spacing:336.126480px;}
.ls43{letter-spacing:574.993440px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc2{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc1{text-shadow:-0.015em 0 rgb(31,98,171),0 0.015em rgb(31,98,171),0.015em 0 rgb(31,98,171),0 -0.015em  rgb(31,98,171);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(31,98,171);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2e{word-spacing:-108.144000px;}
.ws54{word-spacing:-73.849339px;}
.ws45{word-spacing:-72.000000px;}
.ws70{word-spacing:-62.809735px;}
.ws51{word-spacing:-60.399626px;}
.ws64{word-spacing:-57.311647px;}
.ws28{word-spacing:-57.013234px;}
.ws7c{word-spacing:-50.527301px;}
.ws77{word-spacing:-48.893647px;}
.ws73{word-spacing:-43.446240px;}
.ws3{word-spacing:-33.733320px;}
.ws2{word-spacing:-33.426720px;}
.ws20{word-spacing:-32.644344px;}
.ws83{word-spacing:-32.576544px;}
.ws87{word-spacing:-32.544000px;}
.ws6b{word-spacing:-27.206784px;}
.ws1c{word-spacing:-27.174240px;}
.ws6c{word-spacing:-25.752240px;}
.ws80{word-spacing:-25.380000px;}
.ws7f{word-spacing:-24.984000px;}
.ws5d{word-spacing:-24.660000px;}
.ws23{word-spacing:-24.516000px;}
.ws25{word-spacing:-24.505344px;}
.ws10{word-spacing:-24.440544px;}
.wsc{word-spacing:-24.408000px;}
.wsb{word-spacing:-24.372000px;}
.ws24{word-spacing:-24.365544px;}
.wsf{word-spacing:-24.331344px;}
.ws1e{word-spacing:-24.228000px;}
.ws6d{word-spacing:-24.183744px;}
.ws85{word-spacing:-23.976000px;}
.ws22{word-spacing:-23.904000px;}
.ws81{word-spacing:-23.868000px;}
.wsd{word-spacing:-23.652000px;}
.ws11{word-spacing:-23.612544px;}
.ws82{word-spacing:-23.508000px;}
.ws86{word-spacing:-23.436000px;}
.ws3c{word-spacing:-21.948360px;}
.ws38{word-spacing:-21.911904px;}
.ws4c{word-spacing:-21.891360px;}
.ws4f{word-spacing:-21.847704px;}
.ws3b{word-spacing:-21.842760px;}
.ws35{word-spacing:-21.783504px;}
.wse{word-spacing:-21.674304px;}
.ws6{word-spacing:-21.641760px;}
.ws5b{word-spacing:-19.740240px;}
.ws2b{word-spacing:-19.070784px;}
.wsa{word-spacing:-19.038240px;}
.ws40{word-spacing:-18.852240px;}
.ws3f{word-spacing:-16.613280px;}
.ws21{word-spacing:-16.488000px;}
.ws2c{word-spacing:-16.447344px;}
.ws9{word-spacing:-16.304544px;}
.ws8{word-spacing:-16.272000px;}
.ws57{word-spacing:-16.141944px;}
.ws33{word-spacing:-16.056000px;}
.ws4d{word-spacing:-15.226440px;}
.ws67{word-spacing:-14.970240px;}
.ws56{word-spacing:-14.587188px;}
.ws34{word-spacing:-14.514624px;}
.ws3d{word-spacing:-14.482080px;}
.ws6a{word-spacing:-14.319360px;}
.ws7b{word-spacing:-14.070107px;}
.ws7d{word-spacing:-14.046590px;}
.ws78{word-spacing:-13.592434px;}
.ws15{word-spacing:-13.505760px;}
.ws71{word-spacing:-13.483992px;}
.ws72{word-spacing:-13.390234px;}
.ws42{word-spacing:-12.692160px;}
.ws6f{word-spacing:-12.406576px;}
.ws2a{word-spacing:-12.204000px;}
.ws7a{word-spacing:-11.451093px;}
.ws65{word-spacing:-11.317667px;}
.ws7e{word-spacing:-9.543108px;}
.ws69{word-spacing:-9.437760px;}
.ws74{word-spacing:-9.144864px;}
.ws75{word-spacing:-9.112320px;}
.ws46{word-spacing:-8.372350px;}
.ws1{word-spacing:-3.294000px;}
.ws0{word-spacing:-2.177280px;}
.ws1d{word-spacing:-2.088000px;}
.ws14{word-spacing:-1.062528px;}
.ws84{word-spacing:-1.044000px;}
.ws5{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.583920px;}
.ws4a{word-spacing:-0.222480px;}
.ws49{word-spacing:-0.120240px;}
.ws61{word-spacing:-0.048960px;}
.ws47{word-spacing:-0.048384px;}
.ws29{word-spacing:-0.045792px;}
.ws4{word-spacing:0.000000px;}
.ws18{word-spacing:0.069120px;}
.ws13{word-spacing:0.268776px;}
.ws5a{word-spacing:0.372240px;}
.ws16{word-spacing:0.606240px;}
.ws5f{word-spacing:0.631800px;}
.ws3a{word-spacing:0.841536px;}
.ws12{word-spacing:0.858240px;}
.ws17{word-spacing:0.976320px;}
.ws37{word-spacing:1.261440px;}
.ws62{word-spacing:3.573120px;}
.ws5e{word-spacing:5.670720px;}
.ws60{word-spacing:5.673600px;}
.ws31{word-spacing:26.030736px;}
.ws7{word-spacing:39.186000px;}
.ws58{word-spacing:44.946000px;}
.ws27{word-spacing:65.002814px;}
.ws63{word-spacing:67.983937px;}
.ws2f{word-spacing:69.456000px;}
.ws48{word-spacing:74.534436px;}
.ws26{word-spacing:74.628141px;}
.ws36{word-spacing:103.464456px;}
.ws44{word-spacing:111.652080px;}
.ws39{word-spacing:112.644456px;}
.ws79{word-spacing:121.020894px;}
.ws6e{word-spacing:124.950289px;}
.ws19{word-spacing:133.822800px;}
.ws1a{word-spacing:135.982800px;}
.ws32{word-spacing:139.356000px;}
.ws1b{word-spacing:140.302800px;}
.ws66{word-spacing:149.108165px;}
.ws76{word-spacing:155.893538px;}
.ws52{word-spacing:157.217278px;}
.ws53{word-spacing:169.368987px;}
.ws41{word-spacing:176.780160px;}
.ws3e{word-spacing:180.140160px;}
.ws50{word-spacing:212.764253px;}
.ws43{word-spacing:242.011920px;}
.ws4e{word-spacing:268.668000px;}
.ws55{word-spacing:443.101424px;}
.ws4b{word-spacing:497.924400px;}
.ws2d{word-spacing:533.410560px;}
.ws59{word-spacing:586.294440px;}
.ws30{word-spacing:608.916000px;}
.ws5c{word-spacing:713.772000px;}
.ws68{word-spacing:973.812000px;}
._15{margin-left:-1566.610056px;}
._d{margin-left:-212.988000px;}
._8{margin-left:-87.898320px;}
._1c{margin-left:-30.888000px;}
._1a{margin-left:-18.734976px;}
._1b{margin-left:-14.898528px;}
._18{margin-left:-9.936000px;}
._9{margin-left:-8.638200px;}
._16{margin-left:-7.020000px;}
._3{margin-left:-5.891760px;}
._a{margin-left:-4.109472px;}
._4{margin-left:-3.103920px;}
._0{margin-left:-2.053800px;}
._5{margin-left:-1.042200px;}
._2{width:1.211904px;}
._7{width:2.859960px;}
._12{width:4.689432px;}
._1{width:17.530320px;}
._14{width:26.674128px;}
._13{width:30.545304px;}
._b{width:33.648216px;}
._17{width:85.752000px;}
._c{width:94.972841px;}
._11{width:140.012160px;}
._6{width:191.592000px;}
._f{width:213.298944px;}
._e{width:251.638944px;}
._10{width:494.062920px;}
._19{width:625.244712px;}
.fc25{color:rgb(160,0,200);}
.fc24{color:rgb(240,0,130);}
.fc22{color:rgb(128,0,128);}
.fc21{color:rgb(76,141,154);}
.fcc{color:rgb(112,48,160);}
.fc5{color:rgb(0,32,96);}
.fca{color:rgb(49,133,156);}
.fc20{color:rgb(146,208,80);}
.fc8{color:rgb(192,0,0);}
.fc6{color:rgb(31,73,125);}
.fc2{color:transparent;}
.fc13{color:rgb(89,89,89);}
.fc17{color:rgb(155,187,89);}
.fc7{color:rgb(255,0,0);}
.fc19{color:rgb(250,60,60);}
.fcb{color:rgb(79,129,189);}
.fcd{color:rgb(192,80,77);}
.fc23{color:rgb(0,128,128);}
.fc1e{color:rgb(255,51,204);}
.fc3{color:rgb(219,238,244);}
.fc9{color:rgb(0,0,0);}
.fc14{color:rgb(249,191,37);}
.fc1{color:rgb(255,255,255);}
.fc1f{color:rgb(0,122,55);}
.fc0{color:rgb(31,98,171);}
.fc16{color:rgb(255,192,0);}
.fce{color:rgb(0,112,192);}
.fc1d{color:rgb(30,60,255);}
.fc1a{color:rgb(203,5,5);}
.fc10{color:rgb(39,99,42);}
.fcf{color:rgb(64,64,64);}
.fc12{color:rgb(148,138,84);}
.fc11{color:rgb(0,0,153);}
.fc1c{color:rgb(128,128,0);}
.fc4{color:rgb(96,74,123);}
.fc15{color:rgb(0,176,80);}
.fc18{color:rgb(0,128,0);}
.fc1b{color:rgb(255,255,0);}
.fs44{font-size:28.013529px;}
.fs1f{font-size:28.413992px;}
.fs1d{font-size:30.116368px;}
.fs20{font-size:32.015492px;}
.fs47{font-size:34.327726px;}
.fs1e{font-size:35.221697px;}
.fs17{font-size:36.000000px;}
.fs15{font-size:36.576910px;}
.fs37{font-size:39.417575px;}
.fs40{font-size:39.859192px;}
.fs3f{font-size:40.320000px;}
.fs3e{font-size:40.464000px;}
.fs32{font-size:40.711032px;}
.fs43{font-size:41.190983px;}
.fs38{font-size:41.760000px;}
.fs24{font-size:43.559051px;}
.fs3a{font-size:44.627970px;}
.fs2d{font-size:45.057030px;}
.fs14{font-size:45.792297px;}
.fs34{font-size:46.486007px;}
.fs2f{font-size:48.011409px;}
.fs22{font-size:48.112679px;}
.fs25{font-size:48.204060px;}
.fs11{font-size:48.240000px;}
.fs3d{font-size:48.503567px;}
.fs41{font-size:48.893647px;}
.fs42{font-size:48.974825px;}
.fs45{font-size:50.527301px;}
.fs46{font-size:50.611896px;}
.fs2e{font-size:52.471898px;}
.fs27{font-size:53.432114px;}
.fs26{font-size:53.521625px;}
.fs13{font-size:54.000000px;}
.fs12{font-size:54.144000px;}
.fs36{font-size:55.490761px;}
.fs35{font-size:55.621862px;}
.fs1c{font-size:56.160000px;}
.fs16{font-size:57.002095px;}
.fs31{font-size:57.311647px;}
.fs30{font-size:57.446778px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs28{font-size:60.399626px;}
.fs29{font-size:61.880063px;}
.fs3c{font-size:62.809735px;}
.fs3b{font-size:62.868015px;}
.fs33{font-size:63.360000px;}
.fs1a{font-size:64.080000px;}
.fs1b{font-size:64.224000px;}
.fs23{font-size:66.240000px;}
.fs2a{font-size:66.441597px;}
.fsa{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs2c{font-size:73.849339px;}
.fs2b{font-size:73.972321px;}
.fs21{font-size:82.638173px;}
.fs0{font-size:84.240000px;}
.fs18{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fse{font-size:108.000000px;}
.fs5{font-size:108.144000px;}
.fs1{font-size:120.240000px;}
.fs19{font-size:120.384000px;}
.fs6{font-size:144.000000px;}
.fs10{font-size:144.144000px;}
.fsd{font-size:192.240000px;}
.fsc{font-size:192.384000px;}
.fs39{font-size:239.760000px;}
.fs3{font-size:264.240000px;}
.fs4{font-size:264.384000px;}
.fs2{font-size:288.144000px;}
.fs49{font-size:396.000000px;}
.fs48{font-size:480.384000px;}
.y0{bottom:0.000000px;}
.y110{bottom:0.615000px;}
.y115{bottom:0.645000px;}
.y1e3{bottom:0.825000px;}
.y1c5{bottom:0.900000px;}
.y10e{bottom:0.975000px;}
.y1c3{bottom:1.080000px;}
.y1d2{bottom:1.155000px;}
.y260{bottom:1.875000px;}
.y25e{bottom:2.085000px;}
.y7b{bottom:3.988360px;}
.y113{bottom:5.505000px;}
.y196{bottom:6.417337px;}
.y1ab{bottom:7.605347px;}
.yea{bottom:7.897292px;}
.y150{bottom:8.265049px;}
.yef{bottom:8.276719px;}
.y16{bottom:8.460000px;}
.yd2{bottom:8.535000px;}
.y1{bottom:8.676000px;}
.yd3{bottom:8.895000px;}
.yd0{bottom:9.435000px;}
.ye9{bottom:9.749783px;}
.y1fe{bottom:10.655444px;}
.yec{bottom:11.223282px;}
.ye{bottom:11.916000px;}
.ye8{bottom:11.960036px;}
.y1ed{bottom:12.195445px;}
.y1db{bottom:13.459540px;}
.yeb{bottom:14.321528px;}
.yee{bottom:15.827310px;}
.y24d{bottom:16.048728px;}
.y12a{bottom:16.048745px;}
.yed{bottom:16.434046px;}
.ye5{bottom:17.322487px;}
.ye7{bottom:17.961504px;}
.yf0{bottom:18.253810px;}
.y1f8{bottom:18.659990px;}
.y16c{bottom:18.864000px;}
.y208{bottom:19.283466px;}
.ye6{bottom:19.435006px;}
.y7c{bottom:21.475807px;}
.y144{bottom:21.991212px;}
.y13{bottom:22.500000px;}
.y9f{bottom:23.040000px;}
.y117{bottom:25.740000px;}
.y134{bottom:26.208000px;}
.y136{bottom:26.892000px;}
.y1a3{bottom:28.439372px;}
.y18e{bottom:29.372605px;}
.y1a2{bottom:30.438167px;}
.y149{bottom:31.814170px;}
.y137{bottom:31.828923px;}
.y24c{bottom:32.268691px;}
.y129{bottom:32.268706px;}
.yf2{bottom:36.692046px;}
.y1d4{bottom:37.469867px;}
.y14a{bottom:37.850043px;}
.y232{bottom:38.664000px;}
.y1ee{bottom:38.788827px;}
.y234{bottom:40.068000px;}
.y1ff{bottom:40.084855px;}
.y138{bottom:42.534488px;}
.y235{bottom:47.952000px;}
.y7e{bottom:49.840960px;}
.y116{bottom:50.940000px;}
.y124{bottom:54.252000px;}
.y1a4{bottom:56.129776px;}
.y139{bottom:56.254198px;}
.y219{bottom:56.844000px;}
.y182{bottom:58.428000px;}
.y18f{bottom:59.466383px;}
.y1be{bottom:62.244000px;}
.y15{bottom:63.972000px;}
.y233{bottom:65.268000px;}
.yf3{bottom:65.617695px;}
.yfe{bottom:66.276000px;}
.y38{bottom:66.816000px;}
.y3a{bottom:66.888000px;}
.y1ef{bottom:68.082731px;}
.y7f{bottom:68.318414px;}
.y14{bottom:69.336000px;}
.y24a{bottom:69.444000px;}
.y222{bottom:69.450000px;}
.y23c{bottom:69.552000px;}
.y1ba{bottom:69.840000px;}
.y231{bottom:70.524000px;}
.y1d5{bottom:71.363164px;}
.y200{bottom:71.730191px;}
.ya2{bottom:71.856000px;}
.y14b{bottom:73.136599px;}
.y1b3{bottom:73.188000px;}
.y72{bottom:73.872000px;}
.yb{bottom:74.196000px;}
.y9a{bottom:80.388000px;}
.y1bd{bottom:81.144000px;}
.y251{bottom:83.520000px;}
.y140{bottom:84.420611px;}
.y97{bottom:85.428000px;}
.y7d{bottom:86.335897px;}
.y80{bottom:86.757157px;}
.yd6{bottom:87.330000px;}
.yd9{bottom:87.375000px;}
.ydc{bottom:87.405000px;}
.y181{bottom:87.588000px;}
.y1a5{bottom:87.677117px;}
.y123{bottom:89.532000px;}
.y71{bottom:90.072000px;}
.yf1{bottom:91.412818px;}
.y218{bottom:92.124000px;}
.y163{bottom:92.304000px;}
.ya0{bottom:92.628000px;}
.y47{bottom:92.730000px;}
.y41{bottom:92.775000px;}
.y39{bottom:92.808000px;}
.yf4{bottom:94.508409px;}
.y190{bottom:95.033968px;}
.y1b9{bottom:96.372000px;}
.y15f{bottom:96.948045px;}
.y186{bottom:97.560000px;}
.y249{bottom:98.244000px;}
.y13f{bottom:99.302783px;}
.yfd{bottom:101.016000px;}
.y2c{bottom:101.268000px;}
.y1f0{bottom:101.629316px;}
.y230{bottom:103.284000px;}
.y23b{bottom:104.652000px;}
.y1bc{bottom:104.724000px;}
.y81{bottom:105.230056px;}
.y13a{bottom:106.270295px;}
.y6e{bottom:107.748000px;}
.y201{bottom:108.319361px;}
.y106{bottom:108.504000px;}
.ya{bottom:110.196000px;}
.y15e{bottom:110.777571px;}
.y250{bottom:110.916000px;}
.y1d6{bottom:114.229129px;}
.ya1{bottom:115.668000px;}
.y89{bottom:117.867901px;}
.y1a6{bottom:119.224457px;}
.y98{bottom:120.312000px;}
.y185{bottom:121.536000px;}
.y180{bottom:122.688000px;}
.y1b8{bottom:122.904000px;}
.yf5{bottom:123.434501px;}
.y82{bottom:123.668799px;}
.y9d{bottom:123.732000px;}
.y30{bottom:124.092000px;}
.y2f{bottom:124.236000px;}
.y15d{bottom:124.608286px;}
.y122{bottom:124.632000px;}
.y1c{bottom:125.280000px;}
.y19{bottom:125.640000px;}
.y248{bottom:127.044000px;}
.y217{bottom:127.260000px;}
.y20f{bottom:127.608546px;}
.yfc{bottom:129.121541px;}
.y191{bottom:130.547721px;}
.y88{bottom:131.729692px;}
.y1aa{bottom:133.844688px;}
.y237{bottom:134.172000px;}
.y1f1{bottom:135.173687px;}
.y105{bottom:137.664000px;}
.y15c{bottom:138.437812px;}
.y4f{bottom:138.456000px;}
.y22f{bottom:138.564000px;}
.yfb{bottom:138.717875px;}
.y252{bottom:139.608000px;}
.y23a{bottom:139.968000px;}
.y19c{bottom:140.393639px;}
.y83{bottom:142.147392px;}
.y10{bottom:142.272000px;}
.y195{bottom:143.161151px;}
.y20e{bottom:144.635144px;}
.y184{bottom:145.476000px;}
.y202{bottom:145.596000px;}
.y87{bottom:145.602868px;}
.ya4{bottom:145.944000px;}
.y26b{bottom:146.124000px;}
.y9b{bottom:147.924000px;}
.yfa{bottom:148.305364px;}
.y1b7{bottom:149.472000px;}
.y1b{bottom:150.480000px;}
.y14c{bottom:150.629225px;}
.y1a7{bottom:150.769655px;}
.y18{bottom:150.840000px;}
.y17f{bottom:151.890000px;}
.y15b{bottom:152.268527px;}
.yf6{bottom:152.325214px;}
.y19b{bottom:152.896457px;}
.y99{bottom:154.080000px;}
.y1bb{bottom:155.805000px;}
.y111{bottom:156.270000px;}
.y13b{bottom:156.361390px;}
.ycb{bottom:156.750000px;}
.y1d7{bottom:157.094088px;}
.y1da{bottom:157.336567px;}
.ye4{bottom:157.590000px;}
.yf9{bottom:157.892854px;}
.y148{bottom:157.958112px;}
.y236{bottom:159.375000px;}
.y9e{bottom:159.450000px;}
.y86{bottom:159.464658px;}
.y33{bottom:160.095000px;}
.y1e1{bottom:160.128065px;}
.y84{bottom:160.580443px;}
.y4e{bottom:161.490000px;}
.y253{bottom:162.000000px;}
.y216{bottom:162.360000px;}
.y207{bottom:163.511389px;}
.y19a{bottom:165.397800px;}
.y15a{bottom:166.098053px;}
.y59{bottom:166.110000px;}
.y192{bottom:166.116781px;}
.y104{bottom:166.830000px;}
.yf8{bottom:167.480343px;}
.y1f2{bottom:168.721379px;}
.y1af{bottom:171.443034px;}
.y121{bottom:171.825000px;}
.y1f7{bottom:173.569567px;}
.y22e{bottom:173.700000px;}
.y35{bottom:173.955000px;}
.y11{bottom:174.705000px;}
.y32{bottom:175.065000px;}
.y1a{bottom:175.680000px;}
.y183{bottom:175.710000px;}
.y1b6{bottom:176.010000px;}
.y17{bottom:176.040000px;}
.y147{bottom:176.322830px;}
.y1e0{bottom:176.497309px;}
.y143{bottom:177.411504px;}
.y199{bottom:177.900617px;}
.y26a{bottom:178.560000px;}
.y85{bottom:179.019186px;}
.y12{bottom:179.310000px;}
.y159{bottom:179.928767px;}
.yf7{bottom:181.215928px;}
.yca{bottom:181.950000px;}
.y9{bottom:182.235000px;}
.y1a8{bottom:182.316996px;}
.y203{bottom:182.940127px;}
.y1ae{bottom:183.548616px;}
.y14f{bottom:184.490302px;}
.y10f{bottom:185.040000px;}
.y164{bottom:185.730000px;}
.y31{bottom:186.450000px;}
.y17e{bottom:186.990000px;}
.y114{bottom:188.100000px;}
.y34{bottom:188.925000px;}
.y112{bottom:189.900000px;}
.y198{bottom:190.401223px;}
.y22a{bottom:190.440000px;}
.y10d{bottom:191.340000px;}
.y1df{bottom:191.352085px;}
.y20c{bottom:192.342790px;}
.y158{bottom:193.758294px;}
.y2d{bottom:194.010000px;}
.y146{bottom:194.763756px;}
.y215{bottom:197.640000px;}
.y58{bottom:198.510000px;}
.y1d8{bottom:199.962076px;}
.y1fc{bottom:200.937479px;}
.y193{bottom:201.630534px;}
.y24f{bottom:201.675000px;}
.y103{bottom:201.930000px;}
.y1f3{bottom:202.265750px;}
.y1b5{bottom:202.530000px;}
.y197{bottom:202.902565px;}
.y13c{bottom:206.376277px;}
.y120{bottom:206.925000px;}
.y157{bottom:207.589008px;}
.y131{bottom:207.690000px;}
.y1de{bottom:207.724360px;}
.y22d{bottom:208.800000px;}
.y92{bottom:208.875000px;}
.y1ad{bottom:208.936425px;}
.y20b{bottom:209.367100px;}
.y36{bottom:209.955000px;}
.y1f6{bottom:210.038348px;}
.y269{bottom:210.960000px;}
.yf{bottom:212.370000px;}
.y9c{bottom:213.150000px;}
.y1a9{bottom:213.862908px;}
.y145{bottom:214.944141px;}
.yc{bottom:215.430000px;}
.y1fb{bottom:215.952473px;}
.y8{bottom:218.235000px;}
.y19e{bottom:218.281290px;}
.y247{bottom:218.490000px;}
.y204{bottom:220.281967px;}
.y1ac{bottom:221.039866px;}
.y156{bottom:221.418535px;}
.y2e{bottom:223.095000px;}
.y20a{bottom:226.393698px;}
.y165{bottom:227.490000px;}
.y127{bottom:228.060000px;}
.y14d{bottom:228.189562px;}
.y24e{bottom:229.035000px;}
.y19d{bottom:230.781896px;}
.y22b{bottom:232.125000px;}
.y1b4{bottom:232.230000px;}
.y135{bottom:234.720000px;}
.y155{bottom:235.249249px;}
.y1f4{bottom:235.812335px;}
.y194{bottom:237.199594px;}
.y102{bottom:237.210000px;}
.y1dd{bottom:237.432896px;}
.y57{bottom:239.910000px;}
.y96{bottom:241.305000px;}
.y11f{bottom:242.205000px;}
.y1d9{bottom:242.828043px;}
.y209{bottom:243.416864px;}
.y22c{bottom:244.080000px;}
.y1fa{bottom:245.976927px;}
.y6d{bottom:247.860000px;}
.y154{bottom:249.078775px;}
.y1b0{bottom:251.745000px;}
.y1dc{bottom:253.802143px;}
.y142{bottom:254.580337px;}
.y1fd{bottom:254.942754px;}
.y13d{bottom:256.394794px;}
.y17d{bottom:257.370000px;}
.y205{bottom:257.558606px;}
.y241{bottom:259.350000px;}
.y1f9{bottom:260.988600px;}
.y169{bottom:262.365000px;}
.y153{bottom:262.909490px;}
.y126{bottom:263.160000px;}
.y4d{bottom:263.730000px;}
.y1f5{bottom:269.360027px;}
.y141{bottom:269.462509px;}
.y1c0{bottom:270.330000px;}
.y56{bottom:272.340000px;}
.y268{bottom:275.760000px;}
.y95{bottom:276.405000px;}
.y152{bottom:276.739016px;}
.y6c{bottom:277.050000px;}
.yb9{bottom:277.170000px;}
.yc3{bottom:278.310000px;}
.y168{bottom:283.965000px;}
.y212{bottom:284.325000px;}
.y1d0{bottom:285.405000px;}
.y4c{bottom:286.770000px;}
.y1bf{bottom:289.230000px;}
.y20d{bottom:289.409840px;}
.y18d{bottom:289.501606px;}
.y7{bottom:290.235000px;}
.y151{bottom:290.569730px;}
.y223{bottom:291.780000px;}
.y17c{bottom:292.470000px;}
.y244{bottom:294.450000px;}
.y206{bottom:294.902734px;}
.y125{bottom:298.440000px;}
.y101{bottom:301.500000px;}
.y167{bottom:305.565000px;}
.y224{bottom:305.640000px;}
.y14e{bottom:305.682188px;}
.y13e{bottom:306.483469px;}
.y18c{bottom:308.235000px;}
.y211{bottom:309.090000px;}
.y161{bottom:309.459709px;}
.ya3{bottom:310.575000px;}
.y162{bottom:311.400000px;}
.y94{bottom:311.505000px;}
.y255{bottom:313.020000px;}
.y1cf{bottom:314.565000px;}
.ya5{bottom:315.000000px;}
.y221{bottom:319.680000px;}
.yb7{bottom:319.935000px;}
.y1b2{bottom:321.195000px;}
.y243{bottom:323.610000px;}
.yc2{bottom:324.615000px;}
.y160{bottom:325.571190px;}
.y166{bottom:327.210000px;}
.y17b{bottom:327.780000px;}
.y100{bottom:336.600000px;}
.y210{bottom:339.870000px;}
.y26{bottom:339.915000px;}
.y18b{bottom:340.305000px;}
.y267{bottom:340.590000px;}
.y93{bottom:341.025000px;}
.y1ce{bottom:343.725000px;}
.y37{bottom:347.010000px;}
.y254{bottom:348.300000px;}
.y1b1{bottom:349.995000px;}
.y10c{bottom:352.770000px;}
.y1d3{bottom:355.147228px;}
.y242{bottom:358.890000px;}
.y22{bottom:363.210000px;}
.y6{bottom:365.250000px;}
.yb6{bottom:366.630000px;}
.y19f{bottom:367.665000px;}
.y108{bottom:371.775000px;}
.yff{bottom:371.880000px;}
.y25{bottom:372.345000px;}
.y18a{bottom:372.705000px;}
.y1cd{bottom:372.930000px;}
.yc1{bottom:374.730000px;}
.yac{bottom:375.840000px;}
.y10b{bottom:377.970000px;}
.y73{bottom:380.625000px;}
.yb0{bottom:384.480000px;}
.ydb{bottom:389.160000px;}
.y1ec{bottom:394.560000px;}
.y256{bottom:398.130000px;}
.y5e{bottom:401.250000px;}
.y49{bottom:402.840000px;}
.y246{bottom:403.845000px;}
.y77{bottom:404.850000px;}
.y266{bottom:405.390000px;}
.y16b{bottom:406.620000px;}
.yab{bottom:407.700000px;}
.y1cc{bottom:408.030000px;}
.y189{bottom:408.165000px;}
.yaf{bottom:410.400000px;}
.y133{bottom:411.450000px;}
.y1eb{bottom:412.560000px;}
.y109{bottom:412.995000px;}
.y75{bottom:414.690000px;}
.y10a{bottom:418.860000px;}
.y173{bottom:421.815000px;}
.yb5{bottom:421.995000px;}
.y227{bottom:422.925000px;}
.yc0{bottom:425.010000px;}
.y76{bottom:425.265000px;}
.y3d{bottom:427.425000px;}
.ye3{bottom:428.325000px;}
.y78{bottom:428.835000px;}
.y245{bottom:429.045000px;}
.y1ea{bottom:430.590000px;}
.yd8{bottom:432.540000px;}
.y24{bottom:432.645000px;}
.y5d{bottom:433.650000px;}
.y175{bottom:433.770000px;}
.y130{bottom:434.595000px;}
.y265{bottom:437.790000px;}
.yaa{bottom:439.560000px;}
.y24b{bottom:440.460000px;}
.y132{bottom:440.970000px;}
.y16a{bottom:441.540000px;}
.y79{bottom:441.690000px;}
.y46{bottom:442.440000px;}
.y172{bottom:443.235000px;}
.y188{bottom:443.265000px;}
.yba{bottom:443.670000px;}
.y5{bottom:444.450000px;}
.y70{bottom:445.170000px;}
.y229{bottom:447.765000px;}
.y226{bottom:448.125000px;}
.y1a1{bottom:448.170000px;}
.yc9{bottom:456.840000px;}
.ye2{bottom:457.485000px;}
.y74{bottom:460.875000px;}
.y107{bottom:460.905000px;}
.y23{bottom:462.345000px;}
.y240{bottom:466.350000px;}
.y5c{bottom:466.770000px;}
.yb4{bottom:468.150000px;}
.yae{bottom:468.360000px;}
.y7a{bottom:470.760000px;}
.y6f{bottom:472.170000px;}
.ybf{bottom:472.245000px;}
.ya9{bottom:472.320000px;}
.y228{bottom:472.965000px;}
.y225{bottom:473.325000px;}
.yd5{bottom:475.920000px;}
.yda{bottom:476.565000px;}
.y1cb{bottom:478.230000px;}
.y187{bottom:478.545000px;}
.yde{bottom:479.190000px;}
.y44{bottom:482.040000px;}
.y12d{bottom:482.760000px;}
.y61{bottom:485.790000px;}
.y62{bottom:490.680000px;}
.ye1{bottom:492.585000px;}
.y4a{bottom:495.570000px;}
.ybc{bottom:497.370000px;}
.yad{bottom:501.150000px;}
.y23f{bottom:501.450000px;}
.y171{bottom:501.480000px;}
.y264{bottom:502.635000px;}
.y60{bottom:508.470000px;}
.y16e{bottom:510.450000px;}
.y220{bottom:512.670000px;}
.y67{bottom:513.075000px;}
.y21{bottom:513.105000px;}
.y1ca{bottom:513.330000px;}
.yb3{bottom:514.260000px;}
.y1a0{bottom:515.010000px;}
.ybb{bottom:515.370000px;}
.y1c1{bottom:518.910000px;}
.yd7{bottom:519.915000px;}
.ye0{bottom:521.745000px;}
.ybe{bottom:523.515000px;}
.y4{bottom:525.135000px;}
.y118{bottom:525.165000px;}
.y5b{bottom:525.810000px;}
.y52{bottom:526.170000px;}
.y174{bottom:526.710000px;}
.y12f{bottom:533.520000px;}
.y40{bottom:534.240000px;}
.y263{bottom:535.035000px;}
.y48{bottom:535.170000px;}
.y23e{bottom:536.580000px;}
.ya8{bottom:538.590000px;}
.y20{bottom:541.950000px;}
.y16f{bottom:544.530000px;}
.y11e{bottom:544.830000px;}
.y25f{bottom:545.400000px;}
.y25c{bottom:547.305000px;}
.y1c9{bottom:548.820000px;}
.y170{bottom:549.690000px;}
.yc4{bottom:551.625000px;}
.y8b{bottom:551.850000px;}
.ydf{bottom:556.845000px;}
.y5a{bottom:558.210000px;}
.y6b{bottom:558.255000px;}
.y1e{bottom:558.435000px;}
.y51{bottom:558.570000px;}
.y3c{bottom:558.825000px;}
.yb2{bottom:560.085000px;}
.y8a{bottom:561.780000px;}
.yd4{bottom:563.250000px;}
.y21d{bottom:564.090000px;}
.y4b{bottom:565.995000px;}
.y8e{bottom:568.005000px;}
.ybd{bottom:569.625000px;}
.ya7{bottom:570.630000px;}
.y1f{bottom:571.650000px;}
.y23d{bottom:571.860000px;}
.y11d{bottom:573.990000px;}
.y1e2{bottom:574.380000px;}
.y45{bottom:574.815000px;}
.y25b{bottom:576.465000px;}
.y3b{bottom:581.865000px;}
.y17a{bottom:582.735000px;}
.y2a{bottom:583.380000px;}
.y16d{bottom:585.030000px;}
.y21f{bottom:587.310000px;}
.y6a{bottom:587.445000px;}
.y8c{bottom:591.150000px;}
.y50{bottom:591.690000px;}
.ycf{bottom:593.100000px;}
.y21c{bottom:593.250000px;}
.y8d{bottom:598.890000px;}
.yb8{bottom:599.475000px;}
.y262{bottom:599.835000px;}
.yce{bottom:600.990000px;}
.ya6{bottom:603.390000px;}
.y66{bottom:604.830000px;}
.y11c{bottom:609.090000px;}
.y25a{bottom:611.565000px;}
.yd1{bottom:611.715000px;}
.y29{bottom:612.180000px;}
.y43{bottom:613.695000px;}
.y69{bottom:616.605000px;}
.y179{bottom:617.655000px;}
.y1c8{bottom:619.020000px;}
.y21e{bottom:622.440000px;}
.ycd{bottom:626.190000px;}
.yc7{bottom:627.270000px;}
.y1c4{bottom:627.300000px;}
.y1c2{bottom:628.380000px;}
.y214{bottom:631.230000px;}
.y261{bottom:632.265000px;}
.y65{bottom:633.990000px;}
.y42{bottom:639.615000px;}
.y239{bottom:640.365000px;}
.ydd{bottom:640.410000px;}
.y259{bottom:640.770000px;}
.y1e9{bottom:641.520000px;}
.y11b{bottom:644.190000px;}
.y55{bottom:647.715000px;}
.y12c{bottom:649.230000px;}
.ycc{bottom:651.390000px;}
.y90{bottom:651.420000px;}
.y68{bottom:651.885000px;}
.y178{bottom:653.115000px;}
.y1c7{bottom:654.300000px;}
.y1d{bottom:656.460000px;}
.y21b{bottom:657.540000px;}
.y28{bottom:657.690000px;}
.y25d{bottom:657.720000px;}
.y1e8{bottom:659.520000px;}
.yb1{bottom:661.965000px;}
.y213{bottom:662.010000px;}
.yc6{bottom:662.370000px;}
.y64{bottom:669.090000px;}
.y12b{bottom:674.430000px;}
.y238{bottom:675.645000px;}
.y258{bottom:676.050000px;}
.y1e7{bottom:677.520000px;}
.y11a{bottom:678.600000px;}
.y54{bottom:680.115000px;}
.y3f{bottom:680.580000px;}
.y3{bottom:681.015000px;}
.y177{bottom:682.305000px;}
.y27{bottom:690.090000px;}
.y21a{bottom:692.820000px;}
.y1d1{bottom:693.360000px;}
.y8f{bottom:694.830000px;}
.y1e6{bottom:695.520000px;}
.y63{bottom:704.415000px;}
.y257{bottom:705.210000px;}
.y119{bottom:705.420000px;}
.yc5{bottom:705.750000px;}
.y1c6{bottom:707.580000px;}
.y3e{bottom:709.380000px;}
.y53{bottom:713.235000px;}
.y1e5{bottom:713.520000px;}
.y12e{bottom:714.450000px;}
.y5f{bottom:715.710000px;}
.y2{bottom:717.015000px;}
.yc8{bottom:717.630000px;}
.y176{bottom:721.110000px;}
.y91{bottom:727.170000px;}
.y1e4{bottom:731.520000px;}
.y128{bottom:732.990000px;}
.yd{bottom:765.435000px;}
.y2b{bottom:770.940000px;}
.h41{height:13.140000px;}
.h40{height:20.340000px;}
.h3d{height:20.769408px;}
.h3b{height:22.013771px;}
.h3e{height:23.401949px;}
.h43{height:24.840000px;}
.h3c{height:25.745547px;}
.h27{height:26.736150px;}
.h72{height:32.040000px;}
.h29{height:33.338044px;}
.h26{height:33.472201px;}
.h66{height:35.337240px;}
.h77{height:35.733142px;}
.h48{height:36.084509px;}
.h60{height:36.496804px;}
.h7b{height:36.927073px;}
.h4b{height:39.050009px;}
.h6c{height:39.780000px;}
.h6e{height:40.008278px;}
.h6a{height:40.320000px;}
.h55{height:40.392923px;}
.h63{height:41.673979px;}
.h28{height:41.873002px;}
.h7c{height:42.134570px;}
.h7d{height:42.148296px;}
.h5d{height:43.041478px;}
.h4c{height:43.214186px;}
.h71{height:43.482690px;}
.h78{height:43.832390px;}
.h79{height:43.905166px;}
.h32{height:44.936719px;}
.h7f{height:45.296936px;}
.h7e{height:45.372774px;}
.h33{height:45.637031px;}
.h68{height:46.155937px;}
.h56{height:47.040237px;}
.h4e{height:47.901055px;}
.h4d{height:47.981301px;}
.h65{height:49.746601px;}
.h64{height:49.864130px;}
.h20{height:50.013281px;}
.h5f{height:51.378996px;}
.h5e{height:51.500139px;}
.h21{height:53.573906px;}
.h2a{height:53.709961px;}
.h4f{height:54.147321px;}
.h5a{height:54.984375px;}
.h23{height:55.291992px;}
.h22{height:55.439437px;}
.h51{height:55.474509px;}
.h70{height:56.307946px;}
.h6f{height:56.360193px;}
.ha{height:59.439023px;}
.h1b{height:59.582250px;}
.h5b{height:61.055508px;}
.h74{height:61.189805px;}
.h75{height:61.337250px;}
.h47{height:61.978629px;}
.h61{height:63.019687px;}
.h39{height:63.344531px;}
.h46{height:63.741556px;}
.h69{height:64.875938px;}
.h67{height:65.884219px;}
.h54{height:66.204778px;}
.h53{height:66.315030px;}
.h85{height:66.420000px;}
.h49{height:67.824844px;}
.h38{height:69.344531px;}
.h2c{height:70.312031px;}
.h34{height:70.432031px;}
.he{height:71.613281px;}
.h11{height:71.756508px;}
.hd{height:73.722656px;}
.h10{height:73.870102px;}
.h58{height:75.519844px;}
.h45{height:77.150391px;}
.h83{height:80.100000px;}
.h36{height:80.280000px;}
.h12{height:83.787539px;}
.h57{height:83.930766px;}
.h1{height:86.255508px;}
.h2b{height:86.402953px;}
.hb{height:89.282250px;}
.h2{height:90.414844px;}
.h42{height:90.825820px;}
.h9{height:91.177734px;}
.h59{height:91.299023px;}
.h17{height:91.314844px;}
.h1c{height:95.245664px;}
.h30{height:95.388891px;}
.h3f{height:96.999023px;}
.h1a{height:98.051133px;}
.h52{height:98.051799px;}
.h2f{height:98.198578px;}
.h16{height:102.832031px;}
.h18{height:102.969141px;}
.h1f{height:107.419922px;}
.h7{height:107.563148px;}
.h6{height:107.793281px;}
.h31{height:110.583984px;}
.h24{height:113.459438px;}
.h1e{height:114.486328px;}
.h2d{height:114.623437px;}
.h2e{height:119.013281px;}
.h80{height:134.643984px;}
.h82{height:137.109375px;}
.hf{height:145.980000px;}
.h8{height:147.445312px;}
.h19{height:147.592758px;}
.hc{height:151.380000px;}
.h44{height:156.362766px;}
.h37{height:191.160000px;}
.h15{height:191.207461px;}
.h14{height:191.350688px;}
.h4{height:194.954414px;}
.h5{height:195.060656px;}
.h73{height:196.839492px;}
.h3a{height:200.846401px;}
.h1d{height:201.780000px;}
.h25{height:204.329054px;}
.h3{height:216.670781px;}
.h6b{height:245.496445px;}
.h62{height:263.673934px;}
.h5c{height:272.326208px;}
.h6d{height:298.488738px;}
.h76{height:326.998955px;}
.h7a{height:337.936558px;}
.h50{height:350.942406px;}
.h35{height:352.980000px;}
.h4a{height:357.364077px;}
.h86{height:405.474609px;}
.h13{height:422.460000px;}
.h84{height:491.877563px;}
.h81{height:529.380000px;}
.h0{height:810.000000px;}
.w16{width:9.180000px;}
.w14{width:9.360000px;}
.w1c{width:31.140000px;}
.w1d{width:32.400000px;}
.w7{width:40.140000px;}
.w4{width:46.080000px;}
.w13{width:47.340000px;}
.w12{width:48.420000px;}
.w10{width:56.700000px;}
.w2{width:61.380000px;}
.wf{width:67.140000px;}
.we{width:67.500000px;}
.wb{width:76.860000px;}
.w8{width:79.920000px;}
.wd{width:141.840000px;}
.w15{width:144.540000px;}
.wa{width:159.120000px;}
.wc{width:176.580000px;}
.w5{width:178.560000px;}
.w17{width:185.828486px;}
.w22{width:277.380000px;}
.w6{width:277.560000px;}
.w9{width:312.817064px;}
.w1b{width:345.292847px;}
.w1a{width:356.621677px;}
.w11{width:364.243611px;}
.w1e{width:390.326190px;}
.w20{width:405.390000px;}
.w1f{width:427.947679px;}
.w19{width:459.269062px;}
.w18{width:467.678143px;}
.w3{width:495.360000px;}
.w21{width:608.760000px;}
.w23{width:798.840000px;}
.w24{width:1137.780000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x141{left:-6.015000px;}
.x10e{left:-2.445000px;}
.x0{left:0.000000px;}
.x12{left:1.230000px;}
.x10{left:3.270000px;}
.x8f{left:8.430000px;}
.x9a{left:9.825000px;}
.x1b{left:10.980000px;}
.x3a{left:13.650000px;}
.x65{left:16.544320px;}
.xae{left:19.925669px;}
.xf3{left:21.124931px;}
.x118{left:22.140131px;}
.x10c{left:23.605824px;}
.x67{left:25.789777px;}
.xfc{left:27.753666px;}
.x10b{left:29.796770px;}
.x66{left:32.063304px;}
.xf2{left:33.876769px;}
.xdc{left:35.845087px;}
.x114{left:41.183798px;}
.x64{left:43.446727px;}
.xa4{left:45.506605px;}
.x10a{left:48.365538px;}
.xb{left:50.795979px;}
.xdb{left:52.268983px;}
.xf1{left:53.782836px;}
.x113{left:54.957565px;}
.xd2{left:56.933648px;}
.xd1{left:62.966569px;}
.xc4{left:68.443598px;}
.x117{left:70.615156px;}
.xa5{left:72.373876px;}
.xc5{left:77.891531px;}
.xf6{left:79.342631px;}
.xfb{left:82.136020px;}
.xf7{left:86.715659px;}
.x93{left:95.475000px;}
.xfe{left:98.778863px;}
.x68{left:101.858229px;}
.xd0{left:103.394967px;}
.xf5{left:110.722531px;}
.xa6{left:115.294181px;}
.xaf{left:127.461843px;}
.xd3{left:129.209457px;}
.xa7{left:138.199280px;}
.xfd{left:153.641465px;}
.x3{left:159.329979px;}
.x1e{left:160.814979px;}
.x63{left:163.062554px;}
.xf4{left:164.727114px;}
.xd5{left:169.273147px;}
.xe{left:171.254979px;}
.x4f{left:174.779979px;}
.x119{left:176.847153px;}
.x6d{left:181.619979px;}
.x58{left:183.749979px;}
.x13b{left:186.764979px;}
.xb7{left:191.129979px;}
.xa8{left:192.153727px;}
.x39{left:194.040000px;}
.x50{left:196.379979px;}
.x85{left:197.969979px;}
.x11f{left:200.084979px;}
.x51{left:201.389979px;}
.xa2{left:203.219979px;}
.x115{left:204.926620px;}
.x107{left:206.099979px;}
.xde{left:208.499906px;}
.xdd{left:212.140967px;}
.xa9{left:214.226887px;}
.xec{left:221.009979px;}
.x33{left:223.409979px;}
.xea{left:224.819979px;}
.xed{left:227.339979px;}
.xeb{left:229.499979px;}
.x3b{left:234.000000px;}
.xd4{left:235.438430px;}
.xc{left:238.034979px;}
.xd{left:240.299979px;}
.xaa{left:243.913994px;}
.x5a{left:246.959979px;}
.x3e{left:253.049979px;}
.x3f{left:254.489979px;}
.x142{left:256.964979px;}
.x10d{left:260.096051px;}
.x59{left:261.719979px;}
.xab{left:268.254311px;}
.x11a{left:273.451138px;}
.xb4{left:276.044979px;}
.xb6{left:277.949979px;}
.xb5{left:278.969979px;}
.x31{left:283.424979px;}
.xac{left:286.221291px;}
.xd6{left:292.152803px;}
.x116{left:295.079651px;}
.xd8{left:296.805602px;}
.xe7{left:301.034979px;}
.xd9{left:306.042121px;}
.xd7{left:308.877406px;}
.x4e{left:311.939979px;}
.xad{left:320.360003px;}
.x11d{left:324.464979px;}
.x3d{left:328.679979px;}
.xca{left:332.819979px;}
.x2{left:334.649979px;}
.x3c{left:342.359979px;}
.xe9{left:349.709979px;}
.xe5{left:374.504979px;}
.xe6{left:377.309979px;}
.x2b{left:385.124979px;}
.x140{left:396.540000px;}
.x2f{left:402.629979px;}
.x30{left:405.929979px;}
.x2e{left:409.649979px;}
.x1c{left:410.654979px;}
.x29{left:413.819979px;}
.x5{left:418.169979px;}
.xda{left:421.545005px;}
.x28{left:424.004979px;}
.x32{left:431.024979px;}
.x2d{left:432.539979px;}
.x40{left:433.799979px;}
.x2a{left:443.084979px;}
.x12b{left:449.069979px;}
.x2c{left:456.404979px;}
.x12c{left:459.794979px;}
.xe8{left:470.879979px;}
.x27{left:476.024979px;}
.x36{left:479.669979px;}
.x136{left:489.674979px;}
.x6b{left:498.029979px;}
.x121{left:499.140000px;}
.x12d{left:503.969979px;}
.x12e{left:505.589979px;}
.x6c{left:509.189979px;}
.xcb{left:512.129979px;}
.x1{left:513.539979px;}
.xa{left:521.609979px;}
.x34{left:523.289979px;}
.x124{left:524.339979px;}
.x12f{left:527.189979px;}
.xcc{left:533.774979px;}
.x41{left:535.394979px;}
.x6e{left:548.099979px;}
.x42{left:552.134979px;}
.x35{left:557.489979px;}
.xdf{left:559.949979px;}
.x24{left:564.839979px;}
.x70{left:574.274979px;}
.x6f{left:577.259979px;}
.x125{left:587.549979px;}
.xb9{left:589.140000px;}
.xbc{left:592.889979px;}
.x26{left:595.229979px;}
.x6{left:596.594979px;}
.xee{left:598.034979px;}
.x103{left:609.119979px;}
.x104{left:611.459979px;}
.x60{left:613.649979px;}
.x102{left:618.479979px;}
.x72{left:625.469979px;}
.x5f{left:630.389979px;}
.x61{left:633.029979px;}
.xba{left:643.320000px;}
.x75{left:645.480000px;}
.x112{left:648.450002px;}
.x62{left:650.189979px;}
.x4d{left:652.649979px;}
.x13d{left:659.054979px;}
.x12a{left:660.164979px;}
.x5e{left:661.859979px;}
.x38{left:672.509979px;}
.x37{left:677.549979px;}
.xe0{left:681.734979px;}
.xb2{left:686.774979px;}
.x5d{left:688.109979px;}
.x101{left:689.369979px;}
.xbb{left:690.660000px;}
.x137{left:697.671514px;}
.x13c{left:699.734979px;}
.x120{left:703.724979px;}
.xa1{left:706.889979px;}
.xb3{left:708.374979px;}
.x5b{left:711.569979px;}
.x1d{left:713.984979px;}
.xe1{left:718.709979px;}
.xe2{left:725.219979px;}
.x5c{left:727.349979px;}
.x8{left:729.254979px;}
.x76{left:735.509979px;}
.x13e{left:737.024979px;}
.x88{left:740.414979px;}
.x86{left:742.829979px;}
.x87{left:744.989979px;}
.x44{left:746.534979px;}
.xef{left:749.549979px;}
.x46{left:754.274979px;}
.x57{left:758.339979px;}
.x8d{left:760.214979px;}
.x47{left:765.974979px;}
.x45{left:770.294979px;}
.x7a{left:780.404979px;}
.x73{left:782.069979px;}
.x25{left:785.699979px;}
.x127{left:788.729979px;}
.xbd{left:793.800000px;}
.x71{left:799.124979px;}
.x43{left:811.409979px;}
.x74{left:812.624979px;}
.x11e{left:818.069979px;}
.x122{left:831.240000px;}
.xcf{left:832.740000px;}
.x110{left:838.649979px;}
.x10f{left:840.269979px;}
.x69{left:841.289979px;}
.x89{left:843.299979px;}
.x8c{left:846.824979px;}
.x8a{left:851.144979px;}
.x8b{left:854.714979px;}
.x111{left:863.309979px;}
.x11c{left:867.419979px;}
.x13f{left:870.404979px;}
.xa0{left:872.129979px;}
.x123{left:877.140000px;}
.x4c{left:878.219979px;}
.xf{left:883.440000px;}
.x126{left:884.669979px;}
.x4{left:890.744979px;}
.x4b{left:892.619979px;}
.xf8{left:906.989979px;}
.x16{left:908.669979px;}
.x7{left:911.444979px;}
.xf9{left:919.049979px;}
.x130{left:933.734979px;}
.xbe{left:938.520000px;}
.x6a{left:939.929979px;}
.x11{left:944.640000px;}
.xc1{left:953.894979px;}
.x1f{left:967.064979px;}
.x17{left:971.894979px;}
.x131{left:976.964979px;}
.xbf{left:980.639979px;}
.x8e{left:984.960000px;}
.xf0{left:988.664979px;}
.x83{left:990.464979px;}
.x15{left:996.194979px;}
.x109{left:997.320000px;}
.x105{left:1001.489979px;}
.xc2{left:1010.624979px;}
.x97{left:1018.439979px;}
.xc0{left:1023.839979px;}
.x7e{left:1025.564979px;}
.x22{left:1034.609979px;}
.x23{left:1039.319979px;}
.xc8{left:1042.124979px;}
.x20{left:1045.079979px;}
.x100{left:1053.179979px;}
.x21{left:1054.259979px;}
.xe3{left:1057.859979px;}
.xe4{left:1059.299979px;}
.x4a{left:1063.334979px;}
.xa3{left:1071.480000px;}
.x79{left:1077.629979px;}
.x133{left:1078.634979px;}
.x90{left:1079.639979px;}
.x132{left:1084.394979px;}
.x128{left:1086.734979px;}
.x9{left:1088.069979px;}
.xfa{left:1090.230000px;}
.x92{left:1092.989979px;}
.x91{left:1105.049979px;}
.x7f{left:1117.589979px;}
.x82{left:1121.114979px;}
.x53{left:1123.484979px;}
.x80{left:1125.434979px;}
.x81{left:1129.034979px;}
.x138{left:1130.219979px;}
.xb0{left:1131.629979px;}
.x134{left:1133.714979px;}
.xc3{left:1136.631514px;}
.x7b{left:1139.039979px;}
.x1a{left:1144.800000px;}
.x48{left:1150.949979px;}
.x139{left:1152.179979px;}
.x7c{left:1160.639979px;}
.x108{left:1162.620000px;}
.x52{left:1164.884979px;}
.xc9{left:1170.719979px;}
.x19{left:1173.059979px;}
.x129{left:1174.214979px;}
.x13a{left:1177.049979px;}
.x84{left:1178.639979px;}
.x135{left:1181.054979px;}
.x7d{left:1182.239979px;}
.x99{left:1183.320000px;}
.x49{left:1184.789979px;}
.xb1{left:1186.349979px;}
.x54{left:1194.404979px;}
.x11b{left:1206.179979px;}
.x13{left:1215.540000px;}
.x55{left:1221.764979px;}
.x56{left:1232.924979px;}
.x95{left:1241.640000px;}
.x9c{left:1250.280000px;}
.xcd{left:1256.249979px;}
.x14{left:1261.440000px;}
.x9b{left:1265.399979px;}
.x18{left:1268.999979px;}
.x9d{left:1270.829979px;}
.xff{left:1275.839979px;}
.x94{left:1285.889979px;}
.x96{left:1298.160000px;}
.x9e{left:1306.800000px;}
.xce{left:1325.339979px;}
.x9f{left:1327.289979px;}
.x106{left:1345.140000px;}
.xb8{left:1347.479979px;}
.xc7{left:1350.179979px;}
.x98{left:1352.700000px;}
.x77{left:1360.109979px;}
.xc6{left:1367.819979px;}
.x78{left:1369.049979px;}
@media print{
.v17{vertical-align:-81.706667pt;}
.v16{vertical-align:-39.799386pt;}
.v4{vertical-align:-34.560000pt;}
.v8{vertical-align:-28.906667pt;}
.v5{vertical-align:-24.853333pt;}
.v9{vertical-align:-23.680000pt;}
.v1a{vertical-align:-22.400000pt;}
.vf{vertical-align:-20.480000pt;}
.v2{vertical-align:-19.200000pt;}
.v18{vertical-align:-17.920000pt;}
.v1b{vertical-align:-16.640000pt;}
.v3{vertical-align:-15.360000pt;}
.v1c{vertical-align:-13.440000pt;}
.v7{vertical-align:-11.520000pt;}
.v11{vertical-align:-6.400000pt;}
.vb{vertical-align:-4.053333pt;}
.va{vertical-align:-1.653333pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:5.333333pt;}
.vc{vertical-align:12.160000pt;}
.v1e{vertical-align:15.129670pt;}
.v1d{vertical-align:16.106667pt;}
.v1f{vertical-align:21.386667pt;}
.v12{vertical-align:22.400000pt;}
.v19{vertical-align:23.680000pt;}
.v1{vertical-align:26.400000pt;}
.v10{vertical-align:28.800000pt;}
.v14{vertical-align:33.386667pt;}
.vd{vertical-align:38.186667pt;}
.ve{vertical-align:42.133333pt;}
.v6{vertical-align:51.573333pt;}
.v15{vertical-align:64.384000pt;}
.ls4b{letter-spacing:-2.592000pt;}
.ls71{letter-spacing:-1.344000pt;}
.ls7d{letter-spacing:-1.264000pt;}
.ls9c{letter-spacing:-0.864000pt;}
.ls99{letter-spacing:-0.800000pt;}
.ls12{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.672000pt;}
.ls68{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.448000pt;}
.ls9b{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.290667pt;}
.ls1b{letter-spacing:-0.290133pt;}
.ls20{letter-spacing:-0.288533pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls8f{letter-spacing:-0.277333pt;}
.ls5c{letter-spacing:-0.275733pt;}
.ls34{letter-spacing:-0.272000pt;}
.ls1d{letter-spacing:-0.269333pt;}
.ls21{letter-spacing:-0.228267pt;}
.ls4{letter-spacing:-0.204267pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls45{letter-spacing:-0.165333pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.159467pt;}
.ls2f{letter-spacing:-0.157878pt;}
.ls62{letter-spacing:-0.144533pt;}
.ls3d{letter-spacing:-0.143467pt;}
.ls4e{letter-spacing:-0.129992pt;}
.ls7c{letter-spacing:-0.128000pt;}
.ls4f{letter-spacing:-0.117993pt;}
.ls8d{letter-spacing:-0.116800pt;}
.ls5d{letter-spacing:-0.109244pt;}
.ls93{letter-spacing:-0.103305pt;}
.ls91{letter-spacing:-0.099965pt;}
.ls41{letter-spacing:-0.099200pt;}
.ls11{letter-spacing:-0.097067pt;}
.ls44{letter-spacing:-0.094933pt;}
.ls8e{letter-spacing:-0.086933pt;}
.ls50{letter-spacing:-0.084121pt;}
.ls8a{letter-spacing:-0.083340pt;}
.ls94{letter-spacing:-0.079715pt;}
.ls40{letter-spacing:-0.078933pt;}
.ls8c{letter-spacing:-0.074667pt;}
.ls88{letter-spacing:-0.070408pt;}
.ls28{letter-spacing:-0.066667pt;}
.ls35{letter-spacing:-0.064000pt;}
.ls8b{letter-spacing:-0.051840pt;}
.lsb{letter-spacing:-0.050187pt;}
.ls2e{letter-spacing:-0.045744pt;}
.ls4c{letter-spacing:-0.033280pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls61{letter-spacing:-0.022400pt;}
.lse{letter-spacing:-0.020213pt;}
.ls3{letter-spacing:0.000000pt;}
.ls89{letter-spacing:0.003128pt;}
.ls30{letter-spacing:0.009902pt;}
.lsf{letter-spacing:0.013440pt;}
.ls5b{letter-spacing:0.016324pt;}
.ls2a{letter-spacing:0.019840pt;}
.ls90{letter-spacing:0.022400pt;}
.ls31{letter-spacing:0.032000pt;}
.ls60{letter-spacing:0.032649pt;}
.ls9{letter-spacing:0.034560pt;}
.ls17{letter-spacing:0.035627pt;}
.ls81{letter-spacing:0.039163pt;}
.ls7f{letter-spacing:0.046347pt;}
.ls54{letter-spacing:0.051241pt;}
.ls29{letter-spacing:0.057600pt;}
.ls92{letter-spacing:0.057854pt;}
.ls95{letter-spacing:0.059787pt;}
.ls25{letter-spacing:0.060267pt;}
.ls53{letter-spacing:0.064000pt;}
.ls78{letter-spacing:0.071316pt;}
.ls5e{letter-spacing:0.074100pt;}
.ls79{letter-spacing:0.079144pt;}
.ls5a{letter-spacing:0.082361pt;}
.ls80{letter-spacing:0.083700pt;}
.ls7e{letter-spacing:0.084217pt;}
.ls2{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.096000pt;}
.ls3c{letter-spacing:0.097067pt;}
.ls51{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.109333pt;}
.ls5f{letter-spacing:0.119107pt;}
.ls32{letter-spacing:0.126933pt;}
.ls13{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.132267pt;}
.ls82{letter-spacing:0.153600pt;}
.ls58{letter-spacing:0.154133pt;}
.ls83{letter-spacing:0.154880pt;}
.ls36{letter-spacing:0.159360pt;}
.ls7a{letter-spacing:0.160000pt;}
.ls3f{letter-spacing:0.178667pt;}
.lsa{letter-spacing:0.186133pt;}
.ls22{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.193600pt;}
.ls3e{letter-spacing:0.211200pt;}
.ls52{letter-spacing:0.221867pt;}
.ls69{letter-spacing:0.224000pt;}
.ls55{letter-spacing:0.227733pt;}
.ls4a{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.272533pt;}
.ls76{letter-spacing:0.288000pt;}
.ls7b{letter-spacing:0.313067pt;}
.ls4d{letter-spacing:0.320000pt;}
.ls6e{letter-spacing:0.345600pt;}
.ls42{letter-spacing:0.357120pt;}
.ls15{letter-spacing:0.360747pt;}
.ls75{letter-spacing:0.371200pt;}
.ls87{letter-spacing:0.384000pt;}
.ls74{letter-spacing:0.405867pt;}
.ls6d{letter-spacing:0.411904pt;}
.ls6c{letter-spacing:0.416000pt;}
.ls73{letter-spacing:0.435733pt;}
.ls16{letter-spacing:0.436267pt;}
.ls67{letter-spacing:0.448000pt;}
.ls6b{letter-spacing:0.461440pt;}
.ls72{letter-spacing:0.469867pt;}
.ls96{letter-spacing:0.512000pt;}
.ls6a{letter-spacing:0.581120pt;}
.ls39{letter-spacing:0.602880pt;}
.ls65{letter-spacing:0.624000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls97{letter-spacing:0.672000pt;}
.ls57{letter-spacing:0.704000pt;}
.ls33{letter-spacing:0.736000pt;}
.ls66{letter-spacing:0.768000pt;}
.ls84{letter-spacing:0.794880pt;}
.ls64{letter-spacing:0.832000pt;}
.ls86{letter-spacing:0.864000pt;}
.ls6f{letter-spacing:0.901333pt;}
.ls9a{letter-spacing:0.906667pt;}
.ls63{letter-spacing:0.930560pt;}
.ls70{letter-spacing:17.715840pt;}
.ls37{letter-spacing:20.336384pt;}
.ls98{letter-spacing:41.024000pt;}
.ls24{letter-spacing:42.770688pt;}
.ls23{letter-spacing:42.816000pt;}
.ls56{letter-spacing:42.976000pt;}
.ls77{letter-spacing:46.622208pt;}
.ls38{letter-spacing:46.667520pt;}
.ls2c{letter-spacing:46.704000pt;}
.ls6{letter-spacing:53.363200pt;}
.ls7{letter-spacing:53.408000pt;}
.ls2b{letter-spacing:83.824000pt;}
.ls49{letter-spacing:84.810667pt;}
.ls19{letter-spacing:86.720000pt;}
.ls1a{letter-spacing:86.781867pt;}
.ls18{letter-spacing:86.826667pt;}
.ls85{letter-spacing:153.577902pt;}
.ls8{letter-spacing:170.275072pt;}
.ls59{letter-spacing:210.245172pt;}
.ls46{letter-spacing:277.839147pt;}
.ls47{letter-spacing:294.981333pt;}
.ls48{letter-spacing:298.779093pt;}
.ls43{letter-spacing:511.105280pt;}
.ws2e{word-spacing:-96.128000pt;}
.ws54{word-spacing:-65.643856pt;}
.ws45{word-spacing:-64.000000pt;}
.ws70{word-spacing:-55.830876pt;}
.ws51{word-spacing:-53.688557pt;}
.ws64{word-spacing:-50.943686pt;}
.ws28{word-spacing:-50.678430pt;}
.ws7c{word-spacing:-44.913157pt;}
.ws77{word-spacing:-43.461019pt;}
.ws73{word-spacing:-38.618880pt;}
.ws3{word-spacing:-29.985173pt;}
.ws2{word-spacing:-29.712640pt;}
.ws20{word-spacing:-29.017195pt;}
.ws83{word-spacing:-28.956928pt;}
.ws87{word-spacing:-28.928000pt;}
.ws6b{word-spacing:-24.183808pt;}
.ws1c{word-spacing:-24.154880pt;}
.ws6c{word-spacing:-22.890880pt;}
.ws80{word-spacing:-22.560000pt;}
.ws7f{word-spacing:-22.208000pt;}
.ws5d{word-spacing:-21.920000pt;}
.ws23{word-spacing:-21.792000pt;}
.ws25{word-spacing:-21.782528pt;}
.ws10{word-spacing:-21.724928pt;}
.wsc{word-spacing:-21.696000pt;}
.wsb{word-spacing:-21.664000pt;}
.ws24{word-spacing:-21.658261pt;}
.wsf{word-spacing:-21.627861pt;}
.ws1e{word-spacing:-21.536000pt;}
.ws6d{word-spacing:-21.496661pt;}
.ws85{word-spacing:-21.312000pt;}
.ws22{word-spacing:-21.248000pt;}
.ws81{word-spacing:-21.216000pt;}
.wsd{word-spacing:-21.024000pt;}
.ws11{word-spacing:-20.988928pt;}
.ws82{word-spacing:-20.896000pt;}
.ws86{word-spacing:-20.832000pt;}
.ws3c{word-spacing:-19.509653pt;}
.ws38{word-spacing:-19.477248pt;}
.ws4c{word-spacing:-19.458987pt;}
.ws4f{word-spacing:-19.420181pt;}
.ws3b{word-spacing:-19.415787pt;}
.ws35{word-spacing:-19.363115pt;}
.wse{word-spacing:-19.266048pt;}
.ws6{word-spacing:-19.237120pt;}
.ws5b{word-spacing:-17.546880pt;}
.ws2b{word-spacing:-16.951808pt;}
.wsa{word-spacing:-16.922880pt;}
.ws40{word-spacing:-16.757547pt;}
.ws3f{word-spacing:-14.767360pt;}
.ws21{word-spacing:-14.656000pt;}
.ws2c{word-spacing:-14.619861pt;}
.ws9{word-spacing:-14.492928pt;}
.ws8{word-spacing:-14.464000pt;}
.ws57{word-spacing:-14.348395pt;}
.ws33{word-spacing:-14.272000pt;}
.ws4d{word-spacing:-13.534613pt;}
.ws67{word-spacing:-13.306880pt;}
.ws56{word-spacing:-12.966389pt;}
.ws34{word-spacing:-12.901888pt;}
.ws3d{word-spacing:-12.872960pt;}
.ws6a{word-spacing:-12.728320pt;}
.ws7b{word-spacing:-12.506762pt;}
.ws7d{word-spacing:-12.485858pt;}
.ws78{word-spacing:-12.082163pt;}
.ws15{word-spacing:-12.005120pt;}
.ws71{word-spacing:-11.985770pt;}
.ws72{word-spacing:-11.902430pt;}
.ws42{word-spacing:-11.281920pt;}
.ws6f{word-spacing:-11.028067pt;}
.ws2a{word-spacing:-10.848000pt;}
.ws7a{word-spacing:-10.178750pt;}
.ws65{word-spacing:-10.060148pt;}
.ws7e{word-spacing:-8.482763pt;}
.ws69{word-spacing:-8.389120pt;}
.ws74{word-spacing:-8.128768pt;}
.ws75{word-spacing:-8.099840pt;}
.ws46{word-spacing:-7.442089pt;}
.ws1{word-spacing:-2.928000pt;}
.ws0{word-spacing:-1.935360pt;}
.ws1d{word-spacing:-1.856000pt;}
.ws14{word-spacing:-0.944469pt;}
.ws84{word-spacing:-0.928000pt;}
.ws5{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.519040pt;}
.ws4a{word-spacing:-0.197760pt;}
.ws49{word-spacing:-0.106880pt;}
.ws61{word-spacing:-0.043520pt;}
.ws47{word-spacing:-0.043008pt;}
.ws29{word-spacing:-0.040704pt;}
.ws4{word-spacing:0.000000pt;}
.ws18{word-spacing:0.061440pt;}
.ws13{word-spacing:0.238912pt;}
.ws5a{word-spacing:0.330880pt;}
.ws16{word-spacing:0.538880pt;}
.ws5f{word-spacing:0.561600pt;}
.ws3a{word-spacing:0.748032pt;}
.ws12{word-spacing:0.762880pt;}
.ws17{word-spacing:0.867840pt;}
.ws37{word-spacing:1.121280pt;}
.ws62{word-spacing:3.176107pt;}
.ws5e{word-spacing:5.040640pt;}
.ws60{word-spacing:5.043200pt;}
.ws31{word-spacing:23.138432pt;}
.ws7{word-spacing:34.832000pt;}
.ws58{word-spacing:39.952000pt;}
.ws27{word-spacing:57.780279pt;}
.ws63{word-spacing:60.430166pt;}
.ws2f{word-spacing:61.738667pt;}
.ws48{word-spacing:66.252832pt;}
.ws26{word-spacing:66.336125pt;}
.ws36{word-spacing:91.968405pt;}
.ws44{word-spacing:99.246293pt;}
.ws39{word-spacing:100.128405pt;}
.ws79{word-spacing:107.574128pt;}
.ws6e{word-spacing:111.066924pt;}
.ws19{word-spacing:118.953600pt;}
.ws1a{word-spacing:120.873600pt;}
.ws32{word-spacing:123.872000pt;}
.ws1b{word-spacing:124.713600pt;}
.ws66{word-spacing:132.540591pt;}
.ws76{word-spacing:138.572034pt;}
.ws52{word-spacing:139.748692pt;}
.ws53{word-spacing:150.550210pt;}
.ws41{word-spacing:157.137920pt;}
.ws3e{word-spacing:160.124587pt;}
.ws50{word-spacing:189.123780pt;}
.ws43{word-spacing:215.121707pt;}
.ws4e{word-spacing:238.816000pt;}
.ws55{word-spacing:393.867933pt;}
.ws4b{word-spacing:442.599467pt;}
.ws2d{word-spacing:474.142720pt;}
.ws59{word-spacing:521.150613pt;}
.ws30{word-spacing:541.258667pt;}
.ws5c{word-spacing:634.464000pt;}
.ws68{word-spacing:865.610667pt;}
._15{margin-left:-1392.542272pt;}
._d{margin-left:-189.322667pt;}
._8{margin-left:-78.131840pt;}
._1c{margin-left:-27.456000pt;}
._1a{margin-left:-16.653312pt;}
._1b{margin-left:-13.243136pt;}
._18{margin-left:-8.832000pt;}
._9{margin-left:-7.678400pt;}
._16{margin-left:-6.240000pt;}
._3{margin-left:-5.237120pt;}
._a{margin-left:-3.652864pt;}
._4{margin-left:-2.759040pt;}
._0{margin-left:-1.825600pt;}
._5{margin-left:-0.926400pt;}
._2{width:1.077248pt;}
._7{width:2.542187pt;}
._12{width:4.168384pt;}
._1{width:15.582507pt;}
._14{width:23.710336pt;}
._13{width:27.151381pt;}
._b{width:29.909525pt;}
._17{width:76.224000pt;}
._c{width:84.420303pt;}
._11{width:124.455253pt;}
._6{width:170.304000pt;}
._f{width:189.599061pt;}
._e{width:223.679061pt;}
._10{width:439.167040pt;}
._19{width:555.773077pt;}
.fs44{font-size:24.900915pt;}
.fs1f{font-size:25.256882pt;}
.fs1d{font-size:26.770104pt;}
.fs20{font-size:28.458215pt;}
.fs47{font-size:30.513534pt;}
.fs1e{font-size:31.308176pt;}
.fs17{font-size:32.000000pt;}
.fs15{font-size:32.512809pt;}
.fs37{font-size:35.037845pt;}
.fs40{font-size:35.430393pt;}
.fs3f{font-size:35.840000pt;}
.fs3e{font-size:35.968000pt;}
.fs32{font-size:36.187584pt;}
.fs43{font-size:36.614208pt;}
.fs38{font-size:37.120000pt;}
.fs24{font-size:38.719157pt;}
.fs3a{font-size:39.669306pt;}
.fs2d{font-size:40.050693pt;}
.fs14{font-size:40.704264pt;}
.fs34{font-size:41.320895pt;}
.fs2f{font-size:42.676808pt;}
.fs22{font-size:42.766826pt;}
.fs25{font-size:42.848053pt;}
.fs11{font-size:42.880000pt;}
.fs3d{font-size:43.114282pt;}
.fs41{font-size:43.461019pt;}
.fs42{font-size:43.533178pt;}
.fs45{font-size:44.913157pt;}
.fs46{font-size:44.988352pt;}
.fs2e{font-size:46.641687pt;}
.fs27{font-size:47.495212pt;}
.fs26{font-size:47.574778pt;}
.fs13{font-size:48.000000pt;}
.fs12{font-size:48.128000pt;}
.fs36{font-size:49.325121pt;}
.fs35{font-size:49.441655pt;}
.fs1c{font-size:49.920000pt;}
.fs16{font-size:50.668529pt;}
.fs31{font-size:50.943686pt;}
.fs30{font-size:51.063803pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs28{font-size:53.688557pt;}
.fs29{font-size:55.004500pt;}
.fs3c{font-size:55.830876pt;}
.fs3b{font-size:55.882680pt;}
.fs33{font-size:56.320000pt;}
.fs1a{font-size:56.960000pt;}
.fs1b{font-size:57.088000pt;}
.fs23{font-size:58.880000pt;}
.fs2a{font-size:59.059197pt;}
.fsa{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs2c{font-size:65.643856pt;}
.fs2b{font-size:65.753174pt;}
.fs21{font-size:73.456153pt;}
.fs0{font-size:74.880000pt;}
.fs18{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fse{font-size:96.000000pt;}
.fs5{font-size:96.128000pt;}
.fs1{font-size:106.880000pt;}
.fs19{font-size:107.008000pt;}
.fs6{font-size:128.000000pt;}
.fs10{font-size:128.128000pt;}
.fsd{font-size:170.880000pt;}
.fsc{font-size:171.008000pt;}
.fs39{font-size:213.120000pt;}
.fs3{font-size:234.880000pt;}
.fs4{font-size:235.008000pt;}
.fs2{font-size:256.128000pt;}
.fs49{font-size:352.000000pt;}
.fs48{font-size:427.008000pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:0.546667pt;}
.y115{bottom:0.573333pt;}
.y1e3{bottom:0.733333pt;}
.y1c5{bottom:0.800000pt;}
.y10e{bottom:0.866667pt;}
.y1c3{bottom:0.960000pt;}
.y1d2{bottom:1.026667pt;}
.y260{bottom:1.666667pt;}
.y25e{bottom:1.853333pt;}
.y7b{bottom:3.545209pt;}
.y113{bottom:4.893333pt;}
.y196{bottom:5.704300pt;}
.y1ab{bottom:6.760309pt;}
.yea{bottom:7.019815pt;}
.y150{bottom:7.346710pt;}
.yef{bottom:7.357084pt;}
.y16{bottom:7.520000pt;}
.yd2{bottom:7.586667pt;}
.y1{bottom:7.712000pt;}
.yd3{bottom:7.906667pt;}
.yd0{bottom:8.386667pt;}
.ye9{bottom:8.666474pt;}
.y1fe{bottom:9.471506pt;}
.yec{bottom:9.976251pt;}
.ye{bottom:10.592000pt;}
.ye8{bottom:10.631143pt;}
.y1ed{bottom:10.840395pt;}
.y1db{bottom:11.964036pt;}
.yeb{bottom:12.730247pt;}
.yee{bottom:14.068720pt;}
.y24d{bottom:14.265536pt;}
.y12a{bottom:14.265551pt;}
.yed{bottom:14.608041pt;}
.ye5{bottom:15.397766pt;}
.ye7{bottom:15.965781pt;}
.yf0{bottom:16.225609pt;}
.y1f8{bottom:16.586658pt;}
.y16c{bottom:16.768000pt;}
.y208{bottom:17.140858pt;}
.ye6{bottom:17.275561pt;}
.y7c{bottom:19.089607pt;}
.y144{bottom:19.547744pt;}
.y13{bottom:20.000000pt;}
.y9f{bottom:20.480000pt;}
.y117{bottom:22.880000pt;}
.y134{bottom:23.296000pt;}
.y136{bottom:23.904000pt;}
.y1a3{bottom:25.279442pt;}
.y18e{bottom:26.108982pt;}
.y1a2{bottom:27.056148pt;}
.y149{bottom:28.279263pt;}
.y137{bottom:28.292376pt;}
.y24c{bottom:28.683281pt;}
.y129{bottom:28.683294pt;}
.yf2{bottom:32.615152pt;}
.y1d4{bottom:33.306548pt;}
.y14a{bottom:33.644483pt;}
.y232{bottom:34.368000pt;}
.y1ee{bottom:34.478957pt;}
.y234{bottom:35.616000pt;}
.y1ff{bottom:35.630982pt;}
.y138{bottom:37.808434pt;}
.y235{bottom:42.624000pt;}
.y7e{bottom:44.303076pt;}
.y116{bottom:45.280000pt;}
.y124{bottom:48.224000pt;}
.y1a4{bottom:49.893134pt;}
.y139{bottom:50.003732pt;}
.y219{bottom:50.528000pt;}
.y182{bottom:51.936000pt;}
.y18f{bottom:52.859007pt;}
.y1be{bottom:55.328000pt;}
.y15{bottom:56.864000pt;}
.y233{bottom:58.016000pt;}
.yf3{bottom:58.326840pt;}
.yfe{bottom:58.912000pt;}
.y38{bottom:59.392000pt;}
.y3a{bottom:59.456000pt;}
.y1ef{bottom:60.517983pt;}
.y7f{bottom:60.727479pt;}
.y14{bottom:61.632000pt;}
.y24a{bottom:61.728000pt;}
.y222{bottom:61.733333pt;}
.y23c{bottom:61.824000pt;}
.y1ba{bottom:62.080000pt;}
.y231{bottom:62.688000pt;}
.y1d5{bottom:63.433924pt;}
.y200{bottom:63.760170pt;}
.ya2{bottom:63.872000pt;}
.y14b{bottom:65.010310pt;}
.y1b3{bottom:65.056000pt;}
.y72{bottom:65.664000pt;}
.yb{bottom:65.952000pt;}
.y9a{bottom:71.456000pt;}
.y1bd{bottom:72.128000pt;}
.y251{bottom:74.240000pt;}
.y140{bottom:75.040543pt;}
.y97{bottom:75.936000pt;}
.y7d{bottom:76.743020pt;}
.y80{bottom:77.117473pt;}
.yd6{bottom:77.626667pt;}
.yd9{bottom:77.666667pt;}
.ydc{bottom:77.693333pt;}
.y181{bottom:77.856000pt;}
.y1a5{bottom:77.935215pt;}
.y123{bottom:79.584000pt;}
.y71{bottom:80.064000pt;}
.yf1{bottom:81.255838pt;}
.y218{bottom:81.888000pt;}
.y163{bottom:82.048000pt;}
.ya0{bottom:82.336000pt;}
.y47{bottom:82.426667pt;}
.y41{bottom:82.466667pt;}
.y39{bottom:82.496000pt;}
.yf4{bottom:84.007475pt;}
.y190{bottom:84.474638pt;}
.y1b9{bottom:85.664000pt;}
.y15f{bottom:86.176040pt;}
.y186{bottom:86.720000pt;}
.y249{bottom:87.328000pt;}
.y13f{bottom:88.269140pt;}
.yfd{bottom:89.792000pt;}
.y2c{bottom:90.016000pt;}
.y1f0{bottom:90.337170pt;}
.y230{bottom:91.808000pt;}
.y23b{bottom:93.024000pt;}
.y1bc{bottom:93.088000pt;}
.y81{bottom:93.537828pt;}
.y13a{bottom:94.462485pt;}
.y6e{bottom:95.776000pt;}
.y201{bottom:96.283876pt;}
.y106{bottom:96.448000pt;}
.ya{bottom:97.952000pt;}
.y15e{bottom:98.468952pt;}
.y250{bottom:98.592000pt;}
.y1d6{bottom:101.537003pt;}
.ya1{bottom:102.816000pt;}
.y89{bottom:104.771468pt;}
.y1a6{bottom:105.977295pt;}
.y98{bottom:106.944000pt;}
.y185{bottom:108.032000pt;}
.y180{bottom:109.056000pt;}
.y1b8{bottom:109.248000pt;}
.yf5{bottom:109.719556pt;}
.y82{bottom:109.927822pt;}
.y9d{bottom:109.984000pt;}
.y30{bottom:110.304000pt;}
.y2f{bottom:110.432000pt;}
.y15d{bottom:110.762921pt;}
.y122{bottom:110.784000pt;}
.y1c{bottom:111.360000pt;}
.y19{bottom:111.680000pt;}
.y248{bottom:112.928000pt;}
.y217{bottom:113.120000pt;}
.y20f{bottom:113.429819pt;}
.yfc{bottom:114.774704pt;}
.y191{bottom:116.042419pt;}
.y88{bottom:117.093059pt;}
.y1aa{bottom:118.973056pt;}
.y237{bottom:119.264000pt;}
.y1f1{bottom:120.154389pt;}
.y105{bottom:122.368000pt;}
.y15c{bottom:123.055833pt;}
.y4f{bottom:123.072000pt;}
.y22f{bottom:123.168000pt;}
.yfb{bottom:123.304778pt;}
.y252{bottom:124.096000pt;}
.y23a{bottom:124.416000pt;}
.y19c{bottom:124.794346pt;}
.y83{bottom:126.353238pt;}
.y10{bottom:126.464000pt;}
.y195{bottom:127.254357pt;}
.y20e{bottom:128.564572pt;}
.y184{bottom:129.312000pt;}
.y202{bottom:129.418666pt;}
.y87{bottom:129.424771pt;}
.ya4{bottom:129.728000pt;}
.y26b{bottom:129.888000pt;}
.y9b{bottom:131.488000pt;}
.yfa{bottom:131.826991pt;}
.y1b7{bottom:132.864000pt;}
.y1b{bottom:133.760000pt;}
.y14c{bottom:133.892645pt;}
.y1a7{bottom:134.017471pt;}
.y18{bottom:134.080000pt;}
.y17f{bottom:135.013333pt;}
.y15b{bottom:135.349801pt;}
.yf6{bottom:135.400190pt;}
.y19b{bottom:135.907962pt;}
.y99{bottom:136.960000pt;}
.y1bb{bottom:138.493333pt;}
.y111{bottom:138.906667pt;}
.y13b{bottom:138.987902pt;}
.ycb{bottom:139.333333pt;}
.y1d7{bottom:139.639189pt;}
.y1da{bottom:139.854726pt;}
.ye4{bottom:140.080000pt;}
.yf9{bottom:140.349203pt;}
.y148{bottom:140.407210pt;}
.y236{bottom:141.666667pt;}
.y9e{bottom:141.733333pt;}
.y86{bottom:141.746363pt;}
.y33{bottom:142.306667pt;}
.y1e1{bottom:142.336058pt;}
.y84{bottom:142.738171pt;}
.y4e{bottom:143.546667pt;}
.y253{bottom:144.000000pt;}
.y216{bottom:144.320000pt;}
.y207{bottom:145.343457pt;}
.y19a{bottom:147.020266pt;}
.y15a{bottom:147.642714pt;}
.y59{bottom:147.653333pt;}
.y192{bottom:147.659361pt;}
.y104{bottom:148.293333pt;}
.yf8{bottom:148.871416pt;}
.y1f2{bottom:149.974559pt;}
.y1af{bottom:152.393808pt;}
.y121{bottom:152.733333pt;}
.y1f7{bottom:154.284060pt;}
.y22e{bottom:154.400000pt;}
.y35{bottom:154.626667pt;}
.y11{bottom:155.293333pt;}
.y32{bottom:155.613333pt;}
.y1a{bottom:156.160000pt;}
.y183{bottom:156.186667pt;}
.y1b6{bottom:156.453333pt;}
.y17{bottom:156.480000pt;}
.y147{bottom:156.731405pt;}
.y1e0{bottom:156.886497pt;}
.y143{bottom:157.699115pt;}
.y199{bottom:158.133882pt;}
.y26a{bottom:158.720000pt;}
.y85{bottom:159.128165pt;}
.y12{bottom:159.386667pt;}
.y159{bottom:159.936682pt;}
.yf7{bottom:161.080825pt;}
.yca{bottom:161.733333pt;}
.y9{bottom:161.986667pt;}
.y1a8{bottom:162.059552pt;}
.y203{bottom:162.613447pt;}
.y1ae{bottom:163.154326pt;}
.y14f{bottom:163.991379pt;}
.y10f{bottom:164.480000pt;}
.y164{bottom:165.093333pt;}
.y31{bottom:165.733333pt;}
.y17e{bottom:166.213333pt;}
.y114{bottom:167.200000pt;}
.y34{bottom:167.933333pt;}
.y112{bottom:168.800000pt;}
.y198{bottom:169.245531pt;}
.y22a{bottom:169.280000pt;}
.y10d{bottom:170.080000pt;}
.y1df{bottom:170.090742pt;}
.y20c{bottom:170.971369pt;}
.y158{bottom:172.229594pt;}
.y2d{bottom:172.453333pt;}
.y146{bottom:173.123339pt;}
.y215{bottom:175.680000pt;}
.y58{bottom:176.453333pt;}
.y1d8{bottom:177.744068pt;}
.y1fc{bottom:178.611093pt;}
.y193{bottom:179.227141pt;}
.y24f{bottom:179.266667pt;}
.y103{bottom:179.493333pt;}
.y1f3{bottom:179.791778pt;}
.y1b5{bottom:180.026667pt;}
.y197{bottom:180.357836pt;}
.y13c{bottom:183.445580pt;}
.y120{bottom:183.933333pt;}
.y157{bottom:184.523563pt;}
.y131{bottom:184.613333pt;}
.y1de{bottom:184.643875pt;}
.y22d{bottom:185.600000pt;}
.y92{bottom:185.666667pt;}
.y1ad{bottom:185.721267pt;}
.y20b{bottom:186.104089pt;}
.y36{bottom:186.626667pt;}
.y1f6{bottom:186.700754pt;}
.y269{bottom:187.520000pt;}
.yf{bottom:188.773333pt;}
.y9c{bottom:189.466667pt;}
.y1a9{bottom:190.100363pt;}
.y145{bottom:191.061458pt;}
.yc{bottom:191.493333pt;}
.y1fb{bottom:191.957754pt;}
.y8{bottom:193.986667pt;}
.y19e{bottom:194.027814pt;}
.y247{bottom:194.213333pt;}
.y204{bottom:195.806193pt;}
.y1ac{bottom:196.479881pt;}
.y156{bottom:196.816475pt;}
.y2e{bottom:198.306667pt;}
.y20a{bottom:201.238843pt;}
.y165{bottom:202.213333pt;}
.y127{bottom:202.720000pt;}
.y14d{bottom:202.835166pt;}
.y24e{bottom:203.586667pt;}
.y19d{bottom:205.139463pt;}
.y22b{bottom:206.333333pt;}
.y1b4{bottom:206.426667pt;}
.y135{bottom:208.640000pt;}
.y155{bottom:209.110443pt;}
.y1f4{bottom:209.610964pt;}
.y194{bottom:210.844083pt;}
.y102{bottom:210.853333pt;}
.y1dd{bottom:211.051463pt;}
.y57{bottom:213.253333pt;}
.y96{bottom:214.493333pt;}
.y11f{bottom:215.293333pt;}
.y1d9{bottom:215.847149pt;}
.y209{bottom:216.370546pt;}
.y22c{bottom:216.960000pt;}
.y1fa{bottom:218.646157pt;}
.y6d{bottom:220.320000pt;}
.y154{bottom:221.403356pt;}
.y1b0{bottom:223.773333pt;}
.y1dc{bottom:225.601904pt;}
.y142{bottom:226.293633pt;}
.y1fd{bottom:226.615782pt;}
.y13d{bottom:227.906483pt;}
.y17d{bottom:228.773333pt;}
.y205{bottom:228.940983pt;}
.y241{bottom:230.533333pt;}
.y1f9{bottom:231.989867pt;}
.y169{bottom:233.213333pt;}
.y153{bottom:233.697324pt;}
.y126{bottom:233.920000pt;}
.y4d{bottom:234.426667pt;}
.y1f5{bottom:239.431135pt;}
.y141{bottom:239.522230pt;}
.y1c0{bottom:240.293333pt;}
.y56{bottom:242.080000pt;}
.y268{bottom:245.120000pt;}
.y95{bottom:245.693333pt;}
.y152{bottom:245.990236pt;}
.y6c{bottom:246.266667pt;}
.yb9{bottom:246.373333pt;}
.yc3{bottom:247.386667pt;}
.y168{bottom:252.413333pt;}
.y212{bottom:252.733333pt;}
.y1d0{bottom:253.693333pt;}
.y4c{bottom:254.906667pt;}
.y1bf{bottom:257.093333pt;}
.y20d{bottom:257.253191pt;}
.y18d{bottom:257.334761pt;}
.y7{bottom:257.986667pt;}
.y151{bottom:258.284205pt;}
.y223{bottom:259.360000pt;}
.y17c{bottom:259.973333pt;}
.y244{bottom:261.733333pt;}
.y206{bottom:262.135764pt;}
.y125{bottom:265.280000pt;}
.y101{bottom:268.000000pt;}
.y167{bottom:271.613333pt;}
.y224{bottom:271.680000pt;}
.y14e{bottom:271.717501pt;}
.y13e{bottom:272.429750pt;}
.y18c{bottom:273.986667pt;}
.y211{bottom:274.746667pt;}
.y161{bottom:275.075297pt;}
.ya3{bottom:276.066667pt;}
.y162{bottom:276.800000pt;}
.y94{bottom:276.893333pt;}
.y255{bottom:278.240000pt;}
.y1cf{bottom:279.613333pt;}
.ya5{bottom:280.000000pt;}
.y221{bottom:284.160000pt;}
.yb7{bottom:284.386667pt;}
.y1b2{bottom:285.506667pt;}
.y243{bottom:287.653333pt;}
.yc2{bottom:288.546667pt;}
.y160{bottom:289.396614pt;}
.y166{bottom:290.853333pt;}
.y17b{bottom:291.360000pt;}
.y100{bottom:299.200000pt;}
.y210{bottom:302.106667pt;}
.y26{bottom:302.146667pt;}
.y18b{bottom:302.493333pt;}
.y267{bottom:302.746667pt;}
.y93{bottom:303.133333pt;}
.y1ce{bottom:305.533333pt;}
.y37{bottom:308.453333pt;}
.y254{bottom:309.600000pt;}
.y1b1{bottom:311.106667pt;}
.y10c{bottom:313.573333pt;}
.y1d3{bottom:315.686425pt;}
.y242{bottom:319.013333pt;}
.y22{bottom:322.853333pt;}
.y6{bottom:324.666667pt;}
.yb6{bottom:325.893333pt;}
.y19f{bottom:326.813333pt;}
.y108{bottom:330.466667pt;}
.yff{bottom:330.560000pt;}
.y25{bottom:330.973333pt;}
.y18a{bottom:331.293333pt;}
.y1cd{bottom:331.493333pt;}
.yc1{bottom:333.093333pt;}
.yac{bottom:334.080000pt;}
.y10b{bottom:335.973333pt;}
.y73{bottom:338.333333pt;}
.yb0{bottom:341.760000pt;}
.ydb{bottom:345.920000pt;}
.y1ec{bottom:350.720000pt;}
.y256{bottom:353.893333pt;}
.y5e{bottom:356.666667pt;}
.y49{bottom:358.080000pt;}
.y246{bottom:358.973333pt;}
.y77{bottom:359.866667pt;}
.y266{bottom:360.346667pt;}
.y16b{bottom:361.440000pt;}
.yab{bottom:362.400000pt;}
.y1cc{bottom:362.693333pt;}
.y189{bottom:362.813333pt;}
.yaf{bottom:364.800000pt;}
.y133{bottom:365.733333pt;}
.y1eb{bottom:366.720000pt;}
.y109{bottom:367.106667pt;}
.y75{bottom:368.613333pt;}
.y10a{bottom:372.320000pt;}
.y173{bottom:374.946667pt;}
.yb5{bottom:375.106667pt;}
.y227{bottom:375.933333pt;}
.yc0{bottom:377.786667pt;}
.y76{bottom:378.013333pt;}
.y3d{bottom:379.933333pt;}
.ye3{bottom:380.733333pt;}
.y78{bottom:381.186667pt;}
.y245{bottom:381.373333pt;}
.y1ea{bottom:382.746667pt;}
.yd8{bottom:384.480000pt;}
.y24{bottom:384.573333pt;}
.y5d{bottom:385.466667pt;}
.y175{bottom:385.573333pt;}
.y130{bottom:386.306667pt;}
.y265{bottom:389.146667pt;}
.yaa{bottom:390.720000pt;}
.y24b{bottom:391.520000pt;}
.y132{bottom:391.973333pt;}
.y16a{bottom:392.480000pt;}
.y79{bottom:392.613333pt;}
.y46{bottom:393.280000pt;}
.y172{bottom:393.986667pt;}
.y188{bottom:394.013333pt;}
.yba{bottom:394.373333pt;}
.y5{bottom:395.066667pt;}
.y70{bottom:395.706667pt;}
.y229{bottom:398.013333pt;}
.y226{bottom:398.333333pt;}
.y1a1{bottom:398.373333pt;}
.yc9{bottom:406.080000pt;}
.ye2{bottom:406.653333pt;}
.y74{bottom:409.666667pt;}
.y107{bottom:409.693333pt;}
.y23{bottom:410.973333pt;}
.y240{bottom:414.533333pt;}
.y5c{bottom:414.906667pt;}
.yb4{bottom:416.133333pt;}
.yae{bottom:416.320000pt;}
.y7a{bottom:418.453333pt;}
.y6f{bottom:419.706667pt;}
.ybf{bottom:419.773333pt;}
.ya9{bottom:419.840000pt;}
.y228{bottom:420.413333pt;}
.y225{bottom:420.733333pt;}
.yd5{bottom:423.040000pt;}
.yda{bottom:423.613333pt;}
.y1cb{bottom:425.093333pt;}
.y187{bottom:425.373333pt;}
.yde{bottom:425.946667pt;}
.y44{bottom:428.480000pt;}
.y12d{bottom:429.120000pt;}
.y61{bottom:431.813333pt;}
.y62{bottom:436.160000pt;}
.ye1{bottom:437.853333pt;}
.y4a{bottom:440.506667pt;}
.ybc{bottom:442.106667pt;}
.yad{bottom:445.466667pt;}
.y23f{bottom:445.733333pt;}
.y171{bottom:445.760000pt;}
.y264{bottom:446.786667pt;}
.y60{bottom:451.973333pt;}
.y16e{bottom:453.733333pt;}
.y220{bottom:455.706667pt;}
.y67{bottom:456.066667pt;}
.y21{bottom:456.093333pt;}
.y1ca{bottom:456.293333pt;}
.yb3{bottom:457.120000pt;}
.y1a0{bottom:457.786667pt;}
.ybb{bottom:458.106667pt;}
.y1c1{bottom:461.253333pt;}
.yd7{bottom:462.146667pt;}
.ye0{bottom:463.773333pt;}
.ybe{bottom:465.346667pt;}
.y4{bottom:466.786667pt;}
.y118{bottom:466.813333pt;}
.y5b{bottom:467.386667pt;}
.y52{bottom:467.706667pt;}
.y174{bottom:468.186667pt;}
.y12f{bottom:474.240000pt;}
.y40{bottom:474.880000pt;}
.y263{bottom:475.586667pt;}
.y48{bottom:475.706667pt;}
.y23e{bottom:476.960000pt;}
.ya8{bottom:478.746667pt;}
.y20{bottom:481.733333pt;}
.y16f{bottom:484.026667pt;}
.y11e{bottom:484.293333pt;}
.y25f{bottom:484.800000pt;}
.y25c{bottom:486.493333pt;}
.y1c9{bottom:487.840000pt;}
.y170{bottom:488.613333pt;}
.yc4{bottom:490.333333pt;}
.y8b{bottom:490.533333pt;}
.ydf{bottom:494.973333pt;}
.y5a{bottom:496.186667pt;}
.y6b{bottom:496.226667pt;}
.y1e{bottom:496.386667pt;}
.y51{bottom:496.506667pt;}
.y3c{bottom:496.733333pt;}
.yb2{bottom:497.853333pt;}
.y8a{bottom:499.360000pt;}
.yd4{bottom:500.666667pt;}
.y21d{bottom:501.413333pt;}
.y4b{bottom:503.106667pt;}
.y8e{bottom:504.893333pt;}
.ybd{bottom:506.333333pt;}
.ya7{bottom:507.226667pt;}
.y1f{bottom:508.133333pt;}
.y23d{bottom:508.320000pt;}
.y11d{bottom:510.213333pt;}
.y1e2{bottom:510.560000pt;}
.y45{bottom:510.946667pt;}
.y25b{bottom:512.413333pt;}
.y3b{bottom:517.213333pt;}
.y17a{bottom:517.986667pt;}
.y2a{bottom:518.560000pt;}
.y16d{bottom:520.026667pt;}
.y21f{bottom:522.053333pt;}
.y6a{bottom:522.173333pt;}
.y8c{bottom:525.466667pt;}
.y50{bottom:525.946667pt;}
.ycf{bottom:527.200000pt;}
.y21c{bottom:527.333333pt;}
.y8d{bottom:532.346667pt;}
.yb8{bottom:532.866667pt;}
.y262{bottom:533.186667pt;}
.yce{bottom:534.213333pt;}
.ya6{bottom:536.346667pt;}
.y66{bottom:537.626667pt;}
.y11c{bottom:541.413333pt;}
.y25a{bottom:543.613333pt;}
.yd1{bottom:543.746667pt;}
.y29{bottom:544.160000pt;}
.y43{bottom:545.506667pt;}
.y69{bottom:548.093333pt;}
.y179{bottom:549.026667pt;}
.y1c8{bottom:550.240000pt;}
.y21e{bottom:553.280000pt;}
.ycd{bottom:556.613333pt;}
.yc7{bottom:557.573333pt;}
.y1c4{bottom:557.600000pt;}
.y1c2{bottom:558.560000pt;}
.y214{bottom:561.093333pt;}
.y261{bottom:562.013333pt;}
.y65{bottom:563.546667pt;}
.y42{bottom:568.546667pt;}
.y239{bottom:569.213333pt;}
.ydd{bottom:569.253333pt;}
.y259{bottom:569.573333pt;}
.y1e9{bottom:570.240000pt;}
.y11b{bottom:572.613333pt;}
.y55{bottom:575.746667pt;}
.y12c{bottom:577.093333pt;}
.ycc{bottom:579.013333pt;}
.y90{bottom:579.040000pt;}
.y68{bottom:579.453333pt;}
.y178{bottom:580.546667pt;}
.y1c7{bottom:581.600000pt;}
.y1d{bottom:583.520000pt;}
.y21b{bottom:584.480000pt;}
.y28{bottom:584.613333pt;}
.y25d{bottom:584.640000pt;}
.y1e8{bottom:586.240000pt;}
.yb1{bottom:588.413333pt;}
.y213{bottom:588.453333pt;}
.yc6{bottom:588.773333pt;}
.y64{bottom:594.746667pt;}
.y12b{bottom:599.493333pt;}
.y238{bottom:600.573333pt;}
.y258{bottom:600.933333pt;}
.y1e7{bottom:602.240000pt;}
.y11a{bottom:603.200000pt;}
.y54{bottom:604.546667pt;}
.y3f{bottom:604.960000pt;}
.y3{bottom:605.346667pt;}
.y177{bottom:606.493333pt;}
.y27{bottom:613.413333pt;}
.y21a{bottom:615.840000pt;}
.y1d1{bottom:616.320000pt;}
.y8f{bottom:617.626667pt;}
.y1e6{bottom:618.240000pt;}
.y63{bottom:626.146667pt;}
.y257{bottom:626.853333pt;}
.y119{bottom:627.040000pt;}
.yc5{bottom:627.333333pt;}
.y1c6{bottom:628.960000pt;}
.y3e{bottom:630.560000pt;}
.y53{bottom:633.986667pt;}
.y1e5{bottom:634.240000pt;}
.y12e{bottom:635.066667pt;}
.y5f{bottom:636.186667pt;}
.y2{bottom:637.346667pt;}
.yc8{bottom:637.893333pt;}
.y176{bottom:640.986667pt;}
.y91{bottom:646.373333pt;}
.y1e4{bottom:650.240000pt;}
.y128{bottom:651.546667pt;}
.yd{bottom:680.386667pt;}
.y2b{bottom:685.280000pt;}
.h41{height:11.680000pt;}
.h40{height:18.080000pt;}
.h3d{height:18.461696pt;}
.h3b{height:19.567796pt;}
.h3e{height:20.801732pt;}
.h43{height:22.080000pt;}
.h3c{height:22.884931pt;}
.h27{height:23.765466pt;}
.h72{height:28.480000pt;}
.h29{height:29.633817pt;}
.h26{height:29.753068pt;}
.h66{height:31.410880pt;}
.h77{height:31.762793pt;}
.h48{height:32.075119pt;}
.h60{height:32.441604pt;}
.h7b{height:32.824065pt;}
.h4b{height:34.711119pt;}
.h6c{height:35.360000pt;}
.h6e{height:35.562913pt;}
.h6a{height:35.840000pt;}
.h55{height:35.904820pt;}
.h63{height:37.043537pt;}
.h28{height:37.220446pt;}
.h7c{height:37.452951pt;}
.h7d{height:37.465152pt;}
.h5d{height:38.259092pt;}
.h4c{height:38.412610pt;}
.h71{height:38.651280pt;}
.h78{height:38.962125pt;}
.h79{height:39.026814pt;}
.h32{height:39.943750pt;}
.h7f{height:40.263943pt;}
.h7e{height:40.331355pt;}
.h33{height:40.566250pt;}
.h68{height:41.027500pt;}
.h56{height:41.813544pt;}
.h4e{height:42.578716pt;}
.h4d{height:42.650045pt;}
.h65{height:44.219200pt;}
.h64{height:44.323671pt;}
.h20{height:44.456250pt;}
.h5f{height:45.670219pt;}
.h5e{height:45.777901pt;}
.h21{height:47.621250pt;}
.h2a{height:47.742188pt;}
.h4f{height:48.130952pt;}
.h5a{height:48.875000pt;}
.h23{height:49.148438pt;}
.h22{height:49.279500pt;}
.h51{height:49.310675pt;}
.h70{height:50.051508pt;}
.h6f{height:50.097949pt;}
.ha{height:52.834688pt;}
.h1b{height:52.962000pt;}
.h5b{height:54.271563pt;}
.h74{height:54.390938pt;}
.h75{height:54.522000pt;}
.h47{height:55.092115pt;}
.h61{height:56.017500pt;}
.h39{height:56.306250pt;}
.h46{height:56.659161pt;}
.h69{height:57.667500pt;}
.h67{height:58.563750pt;}
.h54{height:58.848692pt;}
.h53{height:58.946693pt;}
.h85{height:59.040000pt;}
.h49{height:60.288750pt;}
.h38{height:61.639583pt;}
.h2c{height:62.499583pt;}
.h34{height:62.606250pt;}
.he{height:63.656250pt;}
.h11{height:63.783562pt;}
.hd{height:65.531250pt;}
.h10{height:65.662312pt;}
.h58{height:67.128750pt;}
.h45{height:68.578125pt;}
.h83{height:71.200000pt;}
.h36{height:71.360000pt;}
.h12{height:74.477812pt;}
.h57{height:74.605125pt;}
.h1{height:76.671562pt;}
.h2b{height:76.802625pt;}
.hb{height:79.362000pt;}
.h2{height:80.368750pt;}
.h42{height:80.734062pt;}
.h9{height:81.046875pt;}
.h59{height:81.154688pt;}
.h17{height:81.168750pt;}
.h1c{height:84.662813pt;}
.h30{height:84.790125pt;}
.h3f{height:86.221354pt;}
.h1a{height:87.156562pt;}
.h52{height:87.157154pt;}
.h2f{height:87.287625pt;}
.h16{height:91.406250pt;}
.h18{height:91.528125pt;}
.h1f{height:95.484375pt;}
.h7{height:95.611688pt;}
.h6{height:95.816250pt;}
.h31{height:98.296875pt;}
.h24{height:100.852833pt;}
.h1e{height:101.765625pt;}
.h2d{height:101.887500pt;}
.h2e{height:105.789583pt;}
.h80{height:119.683542pt;}
.h82{height:121.875000pt;}
.hf{height:129.760000pt;}
.h8{height:131.062500pt;}
.h19{height:131.193562pt;}
.hc{height:134.560000pt;}
.h44{height:138.989125pt;}
.h37{height:169.920000pt;}
.h15{height:169.962187pt;}
.h14{height:170.089500pt;}
.h4{height:173.292812pt;}
.h5{height:173.387250pt;}
.h73{height:174.968437pt;}
.h3a{height:178.530134pt;}
.h1d{height:179.360000pt;}
.h25{height:181.625826pt;}
.h3{height:192.596250pt;}
.h6b{height:218.219062pt;}
.h62{height:234.376831pt;}
.h5c{height:242.067740pt;}
.h6d{height:265.323323pt;}
.h76{height:290.665738pt;}
.h7a{height:300.388051pt;}
.h50{height:311.948806pt;}
.h35{height:313.760000pt;}
.h4a{height:317.656957pt;}
.h86{height:360.421875pt;}
.h13{height:375.520000pt;}
.h84{height:437.224500pt;}
.h81{height:470.560000pt;}
.h0{height:720.000000pt;}
.w16{width:8.160000pt;}
.w14{width:8.320000pt;}
.w1c{width:27.680000pt;}
.w1d{width:28.800000pt;}
.w7{width:35.680000pt;}
.w4{width:40.960000pt;}
.w13{width:42.080000pt;}
.w12{width:43.040000pt;}
.w10{width:50.400000pt;}
.w2{width:54.560000pt;}
.wf{width:59.680000pt;}
.we{width:60.000000pt;}
.wb{width:68.320000pt;}
.w8{width:71.040000pt;}
.wd{width:126.080000pt;}
.w15{width:128.480000pt;}
.wa{width:141.440000pt;}
.wc{width:156.960000pt;}
.w5{width:158.720000pt;}
.w17{width:165.180877pt;}
.w22{width:246.560000pt;}
.w6{width:246.720000pt;}
.w9{width:278.059613pt;}
.w1b{width:306.926975pt;}
.w1a{width:316.997046pt;}
.w11{width:323.772098pt;}
.w1e{width:346.956613pt;}
.w20{width:360.346667pt;}
.w1f{width:380.397937pt;}
.w19{width:408.239166pt;}
.w18{width:415.713905pt;}
.w3{width:440.320000pt;}
.w21{width:541.120000pt;}
.w23{width:710.080000pt;}
.w24{width:1011.360000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x141{left:-5.346667pt;}
.x10e{left:-2.173333pt;}
.x0{left:0.000000pt;}
.x12{left:1.093333pt;}
.x10{left:2.906667pt;}
.x8f{left:7.493333pt;}
.x9a{left:8.733333pt;}
.x1b{left:9.760000pt;}
.x3a{left:12.133333pt;}
.x65{left:14.706063pt;}
.xae{left:17.711706pt;}
.xf3{left:18.777717pt;}
.x118{left:19.680117pt;}
.x10c{left:20.982955pt;}
.x67{left:22.924246pt;}
.xfc{left:24.669925pt;}
.x10b{left:26.486018pt;}
.x66{left:28.500715pt;}
.xf2{left:30.112683pt;}
.xdc{left:31.862300pt;}
.x114{left:36.607821pt;}
.x64{left:38.619313pt;}
.xa4{left:40.450316pt;}
.x10a{left:42.991590pt;}
.xb{left:45.151981pt;}
.xdb{left:46.461318pt;}
.xf1{left:47.806965pt;}
.x113{left:48.851169pt;}
.xd2{left:50.607687pt;}
.xd1{left:55.970284pt;}
.xc4{left:60.838754pt;}
.x117{left:62.769028pt;}
.xa5{left:64.332334pt;}
.xc5{left:69.236916pt;}
.xf6{left:70.526783pt;}
.xfb{left:73.009795pt;}
.xf7{left:77.080586pt;}
.x93{left:84.866667pt;}
.xfe{left:87.803434pt;}
.x68{left:90.540648pt;}
.xd0{left:91.906637pt;}
.xf5{left:98.420027pt;}
.xa6{left:102.483716pt;}
.xaf{left:113.299416pt;}
.xd3{left:114.852851pt;}
.xa7{left:122.843805pt;}
.xfd{left:136.570191pt;}
.x3{left:141.626648pt;}
.x1e{left:142.946648pt;}
.x63{left:144.944493pt;}
.xf4{left:146.424102pt;}
.xd5{left:150.465020pt;}
.xe{left:152.226648pt;}
.x4f{left:155.359981pt;}
.x119{left:157.197470pt;}
.x6d{left:161.439981pt;}
.x58{left:163.333314pt;}
.x13b{left:166.013314pt;}
.xb7{left:169.893314pt;}
.xa8{left:170.803313pt;}
.x39{left:172.480000pt;}
.x50{left:174.559981pt;}
.x85{left:175.973314pt;}
.x11f{left:177.853314pt;}
.x51{left:179.013314pt;}
.xa2{left:180.639981pt;}
.x115{left:182.156996pt;}
.x107{left:183.199981pt;}
.xde{left:185.333250pt;}
.xdd{left:188.569749pt;}
.xa9{left:190.423899pt;}
.xec{left:196.453314pt;}
.x33{left:198.586648pt;}
.xea{left:199.839981pt;}
.xed{left:202.079981pt;}
.xeb{left:203.999981pt;}
.x3b{left:208.000000pt;}
.xd4{left:209.278605pt;}
.xc{left:211.586648pt;}
.xd{left:213.599981pt;}
.xaa{left:216.812439pt;}
.x5a{left:219.519981pt;}
.x3e{left:224.933314pt;}
.x3f{left:226.213314pt;}
.x142{left:228.413314pt;}
.x10d{left:231.196490pt;}
.x59{left:232.639981pt;}
.xab{left:238.448276pt;}
.x11a{left:243.067678pt;}
.xb4{left:245.373314pt;}
.xb6{left:247.066648pt;}
.xb5{left:247.973314pt;}
.x31{left:251.933314pt;}
.xac{left:254.418925pt;}
.xd6{left:259.691380pt;}
.x116{left:262.293023pt;}
.xd8{left:263.827201pt;}
.xe7{left:267.586648pt;}
.xd9{left:272.037441pt;}
.xd7{left:274.557695pt;}
.x4e{left:277.279981pt;}
.xad{left:284.764447pt;}
.x11d{left:288.413314pt;}
.x3d{left:292.159981pt;}
.xca{left:295.839981pt;}
.x2{left:297.466648pt;}
.x3c{left:304.319981pt;}
.xe9{left:310.853314pt;}
.xe5{left:332.893314pt;}
.xe6{left:335.386648pt;}
.x2b{left:342.333314pt;}
.x140{left:352.480000pt;}
.x2f{left:357.893314pt;}
.x30{left:360.826648pt;}
.x2e{left:364.133314pt;}
.x1c{left:365.026648pt;}
.x29{left:367.839981pt;}
.x5{left:371.706648pt;}
.xda{left:374.706672pt;}
.x28{left:376.893314pt;}
.x32{left:383.133314pt;}
.x2d{left:384.479981pt;}
.x40{left:385.599981pt;}
.x2a{left:393.853314pt;}
.x12b{left:399.173314pt;}
.x2c{left:405.693314pt;}
.x12c{left:408.706648pt;}
.xe8{left:418.559981pt;}
.x27{left:423.133314pt;}
.x36{left:426.373314pt;}
.x136{left:435.266648pt;}
.x6b{left:442.693314pt;}
.x121{left:443.680000pt;}
.x12d{left:447.973314pt;}
.x12e{left:449.413314pt;}
.x6c{left:452.613314pt;}
.xcb{left:455.226648pt;}
.x1{left:456.479981pt;}
.xa{left:463.653314pt;}
.x34{left:465.146648pt;}
.x124{left:466.079981pt;}
.x12f{left:468.613314pt;}
.xcc{left:474.466648pt;}
.x41{left:475.906648pt;}
.x6e{left:487.199981pt;}
.x42{left:490.786648pt;}
.x35{left:495.546648pt;}
.xdf{left:497.733314pt;}
.x24{left:502.079981pt;}
.x70{left:510.466648pt;}
.x6f{left:513.119981pt;}
.x125{left:522.266648pt;}
.xb9{left:523.680000pt;}
.xbc{left:527.013314pt;}
.x26{left:529.093314pt;}
.x6{left:530.306648pt;}
.xee{left:531.586648pt;}
.x103{left:541.439981pt;}
.x104{left:543.519981pt;}
.x60{left:545.466648pt;}
.x102{left:549.759981pt;}
.x72{left:555.973314pt;}
.x5f{left:560.346648pt;}
.x61{left:562.693314pt;}
.xba{left:571.840000pt;}
.x75{left:573.760000pt;}
.x112{left:576.400002pt;}
.x62{left:577.946648pt;}
.x4d{left:580.133314pt;}
.x13d{left:585.826648pt;}
.x12a{left:586.813314pt;}
.x5e{left:588.319981pt;}
.x38{left:597.786648pt;}
.x37{left:602.266648pt;}
.xe0{left:605.986648pt;}
.xb2{left:610.466648pt;}
.x5d{left:611.653314pt;}
.x101{left:612.773314pt;}
.xbb{left:613.920000pt;}
.x137{left:620.152457pt;}
.x13c{left:621.986648pt;}
.x120{left:625.533314pt;}
.xa1{left:628.346648pt;}
.xb3{left:629.666648pt;}
.x5b{left:632.506648pt;}
.x1d{left:634.653314pt;}
.xe1{left:638.853314pt;}
.xe2{left:644.639981pt;}
.x5c{left:646.533314pt;}
.x8{left:648.226648pt;}
.x76{left:653.786648pt;}
.x13e{left:655.133314pt;}
.x88{left:658.146648pt;}
.x86{left:660.293314pt;}
.x87{left:662.213314pt;}
.x44{left:663.586648pt;}
.xef{left:666.266648pt;}
.x46{left:670.466648pt;}
.x57{left:674.079981pt;}
.x8d{left:675.746648pt;}
.x47{left:680.866648pt;}
.x45{left:684.706648pt;}
.x7a{left:693.693314pt;}
.x73{left:695.173314pt;}
.x25{left:698.399981pt;}
.x127{left:701.093314pt;}
.xbd{left:705.600000pt;}
.x71{left:710.333314pt;}
.x43{left:721.253314pt;}
.x74{left:722.333314pt;}
.x11e{left:727.173314pt;}
.x122{left:738.880000pt;}
.xcf{left:740.213333pt;}
.x110{left:745.466648pt;}
.x10f{left:746.906648pt;}
.x69{left:747.813314pt;}
.x89{left:749.599981pt;}
.x8c{left:752.733314pt;}
.x8a{left:756.573314pt;}
.x8b{left:759.746648pt;}
.x111{left:767.386648pt;}
.x11c{left:771.039981pt;}
.x13f{left:773.693314pt;}
.xa0{left:775.226648pt;}
.x123{left:779.680000pt;}
.x4c{left:780.639981pt;}
.xf{left:785.280000pt;}
.x126{left:786.373314pt;}
.x4{left:791.773314pt;}
.x4b{left:793.439981pt;}
.xf8{left:806.213314pt;}
.x16{left:807.706648pt;}
.x7{left:810.173314pt;}
.xf9{left:816.933314pt;}
.x130{left:829.986648pt;}
.xbe{left:834.240000pt;}
.x6a{left:835.493314pt;}
.x11{left:839.680000pt;}
.xc1{left:847.906648pt;}
.x1f{left:859.613314pt;}
.x17{left:863.906648pt;}
.x131{left:868.413314pt;}
.xbf{left:871.679981pt;}
.x8e{left:875.520000pt;}
.xf0{left:878.813314pt;}
.x83{left:880.413314pt;}
.x15{left:885.506648pt;}
.x109{left:886.506667pt;}
.x105{left:890.213314pt;}
.xc2{left:898.333314pt;}
.x97{left:905.279981pt;}
.xc0{left:910.079981pt;}
.x7e{left:911.613314pt;}
.x22{left:919.653314pt;}
.x23{left:923.839981pt;}
.xc8{left:926.333314pt;}
.x20{left:928.959981pt;}
.x100{left:936.159981pt;}
.x21{left:937.119981pt;}
.xe3{left:940.319981pt;}
.xe4{left:941.599981pt;}
.x4a{left:945.186648pt;}
.xa3{left:952.426667pt;}
.x79{left:957.893314pt;}
.x133{left:958.786648pt;}
.x90{left:959.679981pt;}
.x132{left:963.906648pt;}
.x128{left:965.986648pt;}
.x9{left:967.173314pt;}
.xfa{left:969.093333pt;}
.x92{left:971.546648pt;}
.x91{left:982.266648pt;}
.x7f{left:993.413314pt;}
.x82{left:996.546648pt;}
.x53{left:998.653314pt;}
.x80{left:1000.386648pt;}
.x81{left:1003.586648pt;}
.x138{left:1004.639981pt;}
.xb0{left:1005.893314pt;}
.x134{left:1007.746648pt;}
.xc3{left:1010.339123pt;}
.x7b{left:1012.479981pt;}
.x1a{left:1017.600000pt;}
.x48{left:1023.066648pt;}
.x139{left:1024.159981pt;}
.x7c{left:1031.679981pt;}
.x108{left:1033.440000pt;}
.x52{left:1035.453314pt;}
.xc9{left:1040.639981pt;}
.x19{left:1042.719981pt;}
.x129{left:1043.746648pt;}
.x13a{left:1046.266648pt;}
.x84{left:1047.679981pt;}
.x135{left:1049.826648pt;}
.x7d{left:1050.879981pt;}
.x99{left:1051.840000pt;}
.x49{left:1053.146648pt;}
.xb1{left:1054.533314pt;}
.x54{left:1061.693314pt;}
.x11b{left:1072.159981pt;}
.x13{left:1080.480000pt;}
.x55{left:1086.013314pt;}
.x56{left:1095.933314pt;}
.x95{left:1103.680000pt;}
.x9c{left:1111.360000pt;}
.xcd{left:1116.666648pt;}
.x14{left:1121.280000pt;}
.x9b{left:1124.799981pt;}
.x18{left:1127.999981pt;}
.x9d{left:1129.626648pt;}
.xff{left:1134.079981pt;}
.x94{left:1143.013314pt;}
.x96{left:1153.920000pt;}
.x9e{left:1161.600000pt;}
.xce{left:1178.079981pt;}
.x9f{left:1179.813314pt;}
.x106{left:1195.680000pt;}
.xb8{left:1197.759981pt;}
.xc7{left:1200.159981pt;}
.x98{left:1202.400000pt;}
.x77{left:1208.986648pt;}
.xc6{left:1215.839981pt;}
.x78{left:1216.933314pt;}
}




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