
    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_968f29c81d1a70f01407b771.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_f17229164502081db17f67b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776000;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_71fc25fe56e79f395f0ca519.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_7870b54fc23886f1e428c1be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_1446c2879ee6fae4b9799069.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.021000;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_50d68cd9389a83d7358d0274.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.985000;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_79e80be070dafc5dd63c932c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.702582;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_ae944e800c0bd30c37795cfd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;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_7edfa96f7410cf5995bc1e85.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979980;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_a37c7bd812bd6ddf76af0171.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911000;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_04b3a26b4f92998ca6fec6cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_8d93c23314b61670783ed335.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689000;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_3bf9c4214b2484c4351b10fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.108000;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_36b68f859c091d3ec3841554.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.897000;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_cadbb6cb6268cb49a5c5cde2.woff2')format("woff");}.fff{font-family:fff;line-height:0.885000;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_752d6f7ae23f76c0a4aa9e96.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.844000;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_ec79ad29dad80714d423d8c5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.633000;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_d567556c42c608e477ff71eb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.885000;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_3b997aa48174362203ea563e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.890000;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_4f81292ec942185642051df0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.470000;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_4e3fcd3039a1d13ce151bb2a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.959000;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:ff16;src:url('chunks/assets/font_bd76070e9643509864a19d54.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.844000;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:ff17;src:url('chunks/assets/font_0863168ce4095d48693b86f0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.686000;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:ff18;src:url('chunks/assets/font_dcfc7e6952a0058bad1b649e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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:ff19;src:url('chunks/assets/font_fb9601fb9ce7192cb0d488b6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.602539;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:ff1a;src:url('chunks/assets/font_52f9c9f6c6f16af6e20f638b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.906000;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:ff1b;src:url('chunks/assets/font_65444db44c1f0cc745a3cbd0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.900000;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:ff1c;src:url('chunks/assets/font_79be66aa812b2fe6330e17c1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;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:ff1d;src:url('chunks/assets/font_743209c6fdd88bacadef718f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;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:ff1e;src:url('chunks/assets/font_9b19c158bd8384520a9df341.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.890000;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:ff1f;src:url('chunks/assets/font_5eb1e16134243a89fb946029.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.459000;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:ff20;src:url('chunks/assets/font_d3326970a05b24f3a273ece6.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.470000;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:ff21;src:url('chunks/assets/font_17abbe323a040d6ec48ed8a5.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.205000;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:ff22;src:url('chunks/assets/font_1b782534820afa47dffe8fd4.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.194000;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:ff23;src:url('chunks/assets/font_6f70d23b1affd3c68b1e40a8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.957031;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:ff24;src:url('chunks/assets/font_f97661a310a2f79fb023f9f7.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.881836;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:ff25;src:url('chunks/assets/font_77aac6e1737a6ff51c4628fb.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.914062;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:ff26;src:url('chunks/assets/font_37342772c116dcf6838ead5e.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.717285;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:ff27;src:url('chunks/assets/font_d5a396f38f2c81cc7922a82e.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.943000;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:ff28;src:url('chunks/assets/font_1063eeea64667c0945c7fc49.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.301000;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:ff29;src:url('chunks/assets/font_f6c94b7ea45483c89d384d92.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.470000;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:ff2a;src:url('chunks/assets/font_07be3e373b3c7d73f992816f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.885000;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:ff2b;src:url('chunks/assets/font_2aab2ac14bdb8474e802c6b7.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.840000;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:ff2c;src:url('chunks/assets/font_10d62e8b7fe3c6e151e3a665.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.885000;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:ff2d;src:url('chunks/assets/font_5ea3947162ae6f10b97a7e7e.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.901000;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:ff2e;src:url('chunks/assets/font_d195d318028a6c6215a84ab5.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.758000;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:ff2f;src:url('chunks/assets/font_af00e6c9bd99c09d5dd2108d.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.948000;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:ff30;src:url('chunks/assets/font_9fa372e2c2c70a96df273f73.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.861816;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:ff31;src:url('chunks/assets/font_2617d221ef1fee47b21d5034.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.871094;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:ff32;src:url('chunks/assets/font_c7e4a983956fe09c1717c1e0.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.689453;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:ff33;src:url('chunks/assets/font_27f4cf0ab5061d7773af04d6.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.862305;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:ff34;src:url('chunks/assets/font_752af310488b93595f5cf665.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.844727;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:ff35;src:url('chunks/assets/font_6dea59c25fd43ceb9d6b5352.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_37ea66de6b63db6d3f905f89.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.061035;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:ff37;src:url('chunks/assets/font_4c477899424e9b3fdecc8c3a.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_b0aa74aeae52cb9c4296648c.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_544c6b0c9bc42d3d60f81e1f.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_06b692b67bbb0dad9dcfb228.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_6410508b8224d2aa3acdab4e.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_b0aa74aeae52cb9c4296648c.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_2e57f0badb7d004bc2b59d98.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.061035;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:ff3e;src:url('chunks/assets/font_04ce7cab4bb3fc8c5923aa10.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_1410a0670d3fba7ef22828a7.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_b0aa74aeae52cb9c4296648c.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_b4d4d6a73f92faaecf73f4af.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.249811,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249811,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249811,0.250000,0.000000,0,0);}
.m2{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);}
.m6{transform:matrix(0.227647,-0.103329,0.103329,0.227647,0,0);-ms-transform:matrix(0.227647,-0.103329,0.103329,0.227647,0,0);-webkit-transform:matrix(0.227647,-0.103329,0.103329,0.227647,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);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.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);}
.m4{transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);}
.vf{vertical-align:-83.000348px;}
.v9{vertical-align:-70.524930px;}
.v7{vertical-align:-67.289700px;}
.v13{vertical-align:-39.481768px;}
.v2{vertical-align:-35.357066px;}
.vd{vertical-align:-34.315686px;}
.v12{vertical-align:-22.153483px;}
.v3{vertical-align:-20.995015px;}
.v11{vertical-align:-18.646200px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:1.147682px;}
.vc{vertical-align:45.080941px;}
.v5{vertical-align:47.414444px;}
.v6{vertical-align:48.749468px;}
.v4{vertical-align:50.829296px;}
.va{vertical-align:70.524930px;}
.v1{vertical-align:73.122600px;}
.vb{vertical-align:80.599920px;}
.ve{vertical-align:83.000348px;}
.v8{vertical-align:87.316916px;}
.ls6{letter-spacing:-12.300000px;}
.ls2f{letter-spacing:-7.911562px;}
.ls5{letter-spacing:-4.920000px;}
.ls58{letter-spacing:-0.057234px;}
.ls50{letter-spacing:-0.053637px;}
.ls54{letter-spacing:-0.053419px;}
.ls59{letter-spacing:-0.045787px;}
.ls56{letter-spacing:-0.032051px;}
.ls4d{letter-spacing:-0.023320px;}
.ls52{letter-spacing:-0.023225px;}
.ls57{letter-spacing:-0.022894px;}
.ls4c{letter-spacing:-0.021455px;}
.ls51{letter-spacing:-0.021367px;}
.ls4e{letter-spacing:-0.010727px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000126px;}
.ls23{letter-spacing:0.001405px;}
.lsc{letter-spacing:0.002428px;}
.ls2a{letter-spacing:0.002954px;}
.lsb{letter-spacing:0.003643px;}
.ls2c{letter-spacing:0.003970px;}
.ls3d{letter-spacing:0.004090px;}
.ls19{letter-spacing:0.004919px;}
.ls1a{letter-spacing:0.005495px;}
.ls10{letter-spacing:0.005545px;}
.ls28{letter-spacing:0.005621px;}
.ls24{letter-spacing:0.006183px;}
.ls21{letter-spacing:0.007729px;}
.ls20{letter-spacing:0.009320px;}
.ls3c{letter-spacing:0.010100px;}
.ls4f{letter-spacing:0.010727px;}
.ls37{letter-spacing:0.016632px;}
.ls30{letter-spacing:0.016701px;}
.ls47{letter-spacing:0.021367px;}
.ls53{letter-spacing:0.032051px;}
.ls42{letter-spacing:0.032182px;}
.ls41{letter-spacing:0.042910px;}
.ls4b{letter-spacing:0.045787px;}
.ls2e{letter-spacing:0.076998px;}
.ls43{letter-spacing:0.241534px;}
.ls3e{letter-spacing:0.249437px;}
.ls33{letter-spacing:0.683890px;}
.ls49{letter-spacing:0.704778px;}
.ls55{letter-spacing:0.747862px;}
.ls38{letter-spacing:2.078948px;}
.ls46{letter-spacing:3.722379px;}
.ls3f{letter-spacing:3.737587px;}
.ls32{letter-spacing:5.726781px;}
.ls0{letter-spacing:7.572996px;}
.ls13{letter-spacing:8.397809px;}
.ls35{letter-spacing:9.139087px;}
.ls34{letter-spacing:11.441336px;}
.ls7{letter-spacing:16.666528px;}
.ls48{letter-spacing:18.810691px;}
.ls4{letter-spacing:24.434501px;}
.ls25{letter-spacing:25.645464px;}
.ls45{letter-spacing:28.952929px;}
.lse{letter-spacing:28.993612px;}
.ls26{letter-spacing:35.000460px;}
.ls27{letter-spacing:35.010938px;}
.ls2d{letter-spacing:37.816461px;}
.ls12{letter-spacing:38.628387px;}
.ls29{letter-spacing:38.881339px;}
.ls11{letter-spacing:38.990946px;}
.lsf{letter-spacing:39.783852px;}
.ls2b{letter-spacing:40.313285px;}
.ls1c{letter-spacing:42.689672px;}
.ls1b{letter-spacing:42.692800px;}
.ls22{letter-spacing:46.422184px;}
.ls2{letter-spacing:49.789183px;}
.ls16{letter-spacing:50.065280px;}
.ls1d{letter-spacing:50.624048px;}
.ls1e{letter-spacing:50.632682px;}
.ls15{letter-spacing:52.145107px;}
.lsd{letter-spacing:53.496343px;}
.lsa{letter-spacing:53.775057px;}
.ls17{letter-spacing:55.744805px;}
.ls18{letter-spacing:57.304676px;}
.ls3b{letter-spacing:63.071872px;}
.ls3{letter-spacing:63.716227px;}
.ls3a{letter-spacing:73.194242px;}
.ls36{letter-spacing:73.209571px;}
.ls1f{letter-spacing:75.503166px;}
.ls39{letter-spacing:76.168731px;}
.ls44{letter-spacing:78.033343px;}
.ls40{letter-spacing:78.352157px;}
.ls31{letter-spacing:84.625153px;}
.ls4a{letter-spacing:93.343267px;}
.ls8{letter-spacing:109.575231px;}
.ls9{letter-spacing:140.225645px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws85{word-spacing:-161.199840px;}
.ws83{word-spacing:-141.049860px;}
.wsef{word-spacing:-135.790303px;}
.ws86{word-spacing:-120.899880px;}
.wse4{word-spacing:-111.600000px;}
.ws4{word-spacing:-110.341491px;}
.wsf1{word-spacing:-107.585236px;}
.wsec{word-spacing:-107.306052px;}
.wsea{word-spacing:-107.273870px;}
.wseb{word-spacing:-107.263143px;}
.wsed{word-spacing:-107.220233px;}
.wsf0{word-spacing:-106.869426px;}
.wsf2{word-spacing:-106.837375px;}
.wsf3{word-spacing:-106.805324px;}
.ws7e{word-spacing:-92.256000px;}
.ws2{word-spacing:-86.100000px;}
.wsf7{word-spacing:-74.400000px;}
.wse7{word-spacing:-54.000000px;}
.wsc{word-spacing:-51.708000px;}
.ws1{word-spacing:-50.137359px;}
.wsa{word-spacing:-48.372000px;}
.ws9{word-spacing:-45.036000px;}
.ws7d{word-spacing:-42.000000px;}
.ws7{word-spacing:-40.032000px;}
.ws81{word-spacing:-39.211861px;}
.ws8{word-spacing:-36.696000px;}
.ws82{word-spacing:-30.809319px;}
.ws69{word-spacing:-29.363856px;}
.ws6b{word-spacing:-29.363839px;}
.wse9{word-spacing:-26.328653px;}
.wsee{word-spacing:-26.221522px;}
.wsf5{word-spacing:-25.869809px;}
.wsf4{word-spacing:-25.824022px;}
.wse6{word-spacing:-0.270000px;}
.ws7c{word-spacing:-0.269159px;}
.ws6{word-spacing:-0.240000px;}
.wsf6{word-spacing:-0.234000px;}
.wsa8{word-spacing:-0.228678px;}
.ws5{word-spacing:-0.210000px;}
.ws89{word-spacing:-0.205811px;}
.ws66{word-spacing:-0.198000px;}
.ws6f{word-spacing:-0.173246px;}
.ws0{word-spacing:-0.168000px;}
.wsa9{word-spacing:-0.160074px;}
.ws84{word-spacing:-0.141050px;}
.ws28{word-spacing:-0.140003px;}
.wsb{word-spacing:-0.132000px;}
.wsd{word-spacing:-0.126004px;}
.ws1f{word-spacing:-0.098002px;}
.ws70{word-spacing:-0.096248px;}
.wse8{word-spacing:-0.081262px;}
.ws68{word-spacing:-0.019118px;}
.ws3{word-spacing:0.000000px;}
.ws71{word-spacing:22.810709px;}
.ws77{word-spacing:23.195700px;}
.ws78{word-spacing:23.235571px;}
.ws75{word-spacing:23.236443px;}
.ws79{word-spacing:23.963875px;}
.ws7b{word-spacing:23.965681px;}
.ws43{word-spacing:25.578774px;}
.ws45{word-spacing:25.704778px;}
.ws1b{word-spacing:28.840680px;}
.ws21{word-spacing:30.380717px;}
.ws22{word-spacing:30.520720px;}
.ws26{word-spacing:30.800726px;}
.ws49{word-spacing:31.080733px;}
.ws48{word-spacing:31.220736px;}
.wse{word-spacing:31.374950px;}
.ws72{word-spacing:31.998511px;}
.ws74{word-spacing:32.050490px;}
.ws1c{word-spacing:32.060756px;}
.ws53{word-spacing:32.480766px;}
.ws14{word-spacing:32.508984px;}
.ws2b{word-spacing:33.180783px;}
.ws44{word-spacing:33.769022px;}
.ws39{word-spacing:34.160806px;}
.wse3{word-spacing:34.164706px;}
.ws3c{word-spacing:34.440812px;}
.ws63{word-spacing:34.580816px;}
.ws41{word-spacing:34.723382px;}
.ws42{word-spacing:34.777053px;}
.ws27{word-spacing:34.860822px;}
.ws5f{word-spacing:35.140829px;}
.ws58{word-spacing:35.560839px;}
.ws4c{word-spacing:35.700842px;}
.ws4b{word-spacing:35.840845px;}
.ws36{word-spacing:36.400859px;}
.ws1a{word-spacing:36.680865px;}
.ws2d{word-spacing:36.820868px;}
.ws3b{word-spacing:36.841986px;}
.ws40{word-spacing:37.520885px;}
.ws3f{word-spacing:37.598316px;}
.ws6e{word-spacing:37.632857px;}
.ws3e{word-spacing:37.660888px;}
.ws46{word-spacing:37.940895px;}
.ws55{word-spacing:38.080898px;}
.ws5c{word-spacing:38.780915px;}
.ws76{word-spacing:39.070033px;}
.ws5a{word-spacing:39.340928px;}
.ws5b{word-spacing:39.480931px;}
.ws1e{word-spacing:39.620934px;}
.ws20{word-spacing:39.641187px;}
.ws1d{word-spacing:39.642475px;}
.ws7a{word-spacing:39.793495px;}
.ws4e{word-spacing:39.900941px;}
.ws4d{word-spacing:40.040944px;}
.ws6d{word-spacing:40.135298px;}
.ws38{word-spacing:40.320951px;}
.ws5e{word-spacing:40.740961px;}
.wsf{word-spacing:40.929790px;}
.ws10{word-spacing:40.951240px;}
.ws51{word-spacing:41.020967px;}
.ws94{word-spacing:41.117234px;}
.ws93{word-spacing:41.124505px;}
.ws95{word-spacing:41.162296px;}
.ws5d{word-spacing:41.580981px;}
.ws3a{word-spacing:41.894838px;}
.ws31{word-spacing:42.140994px;}
.ws61{word-spacing:42.280997px;}
.ws91{word-spacing:42.397165px;}
.ws4a{word-spacing:42.561004px;}
.ws24{word-spacing:42.926674px;}
.ws25{word-spacing:42.981014px;}
.ws2a{word-spacing:43.961037px;}
.ws6c{word-spacing:43.983969px;}
.ws11{word-spacing:44.101335px;}
.ws17{word-spacing:44.241043px;}
.wsb9{word-spacing:44.592189px;}
.wsba{word-spacing:44.668698px;}
.ws2c{word-spacing:44.801057px;}
.ws23{word-spacing:44.941060px;}
.ws47{word-spacing:45.081063px;}
.ws12{word-spacing:45.739385px;}
.wsb5{word-spacing:45.964257px;}
.ws37{word-spacing:46.341093px;}
.wsdf{word-spacing:46.421612px;}
.ws59{word-spacing:46.481096px;}
.wsc2{word-spacing:46.650290px;}
.ws62{word-spacing:46.761103px;}
.ws52{word-spacing:47.041109px;}
.ws96{word-spacing:47.336641px;}
.wsb6{word-spacing:47.565002px;}
.ws13{word-spacing:47.629442px;}
.wsb7{word-spacing:47.793680px;}
.ws73{word-spacing:47.875088px;}
.ws65{word-spacing:48.161136px;}
.wsce{word-spacing:48.251036px;}
.ws97{word-spacing:48.571510px;}
.wsbc{word-spacing:49.165747px;}
.ws3d{word-spacing:49.421166px;}
.ws57{word-spacing:49.561169px;}
.ws16{word-spacing:49.701172px;}
.wsd7{word-spacing:49.851781px;}
.ws56{word-spacing:49.981179px;}
.wsaf{word-spacing:50.080459px;}
.ws15{word-spacing:50.261185px;}
.ws30{word-spacing:50.469871px;}
.ws2f{word-spacing:50.492631px;}
.ws2e{word-spacing:50.541192px;}
.wsda{word-spacing:50.766492px;}
.ws64{word-spacing:50.821199px;}
.ws32{word-spacing:51.101205px;}
.ws7f{word-spacing:51.247059px;}
.wsbd{word-spacing:51.681204px;}
.wsbe{word-spacing:51.909882px;}
.ws29{word-spacing:51.941225px;}
.ws60{word-spacing:52.501238px;}
.wsd4{word-spacing:53.053271px;}
.ws18{word-spacing:53.341258px;}
.ws35{word-spacing:54.601288px;}
.wsab{word-spacing:54.654017px;}
.ws92{word-spacing:55.363289px;}
.ws54{word-spacing:55.581311px;}
.ws19{word-spacing:55.721314px;}
.wscd{word-spacing:56.026084px;}
.ws50{word-spacing:56.421331px;}
.wsc8{word-spacing:56.483440px;}
.wsae{word-spacing:56.940796px;}
.wsc9{word-spacing:57.398151px;}
.wscf{word-spacing:57.855507px;}
.ws8d{word-spacing:58.244649px;}
.wsbf{word-spacing:58.312863px;}
.ws4f{word-spacing:58.941390px;}
.wsb0{word-spacing:58.998897px;}
.wse0{word-spacing:59.227575px;}
.wsb8{word-spacing:59.456252px;}
.ws8e{word-spacing:60.714387px;}
.wsa5{word-spacing:60.828320px;}
.ws9f{word-spacing:61.285676px;}
.wsa2{word-spacing:61.514353px;}
.ws34{word-spacing:61.667251px;}
.wsc7{word-spacing:61.743031px;}
.wsdb{word-spacing:61.971709px;}
.wsaa{word-spacing:62.114715px;}
.wsa6{word-spacing:62.200387px;}
.wsbb{word-spacing:62.886421px;}
.wsc6{word-spacing:63.343777px;}
.wsc3{word-spacing:63.801132px;}
.wsc0{word-spacing:64.487166px;}
.wsac{word-spacing:64.944522px;}
.ws8f{word-spacing:65.448051px;}
.wsc5{word-spacing:65.630556px;}
.wsb3{word-spacing:65.859233px;}
.ws90{word-spacing:65.859674px;}
.wse1{word-spacing:67.002623px;}
.wsde{word-spacing:67.459979px;}
.wsd9{word-spacing:68.603368px;}
.ws9c{word-spacing:69.746758px;}
.wsd0{word-spacing:70.661469px;}
.wsa1{word-spacing:71.118825px;}
.wsc1{word-spacing:71.347503px;}
.wsd1{word-spacing:72.033537px;}
.wsa0{word-spacing:72.948248px;}
.ws8c{word-spacing:74.297945px;}
.wsca{word-spacing:75.001722px;}
.wscb{word-spacing:75.006349px;}
.wsd2{word-spacing:76.149739px;}
.ws9a{word-spacing:76.378417px;}
.ws88{word-spacing:78.208363px;}
.ws9b{word-spacing:78.436518px;}
.wsd5{word-spacing:79.351229px;}
.wsb4{word-spacing:80.037263px;}
.wsc4{word-spacing:80.265941px;}
.ws33{word-spacing:82.401574px;}
.wsa3{word-spacing:82.552720px;}
.wscc{word-spacing:82.781398px;}
.wsad{word-spacing:83.010076px;}
.wsd3{word-spacing:83.238753px;}
.wsdc{word-spacing:83.696109px;}
.wsd6{word-spacing:83.924787px;}
.wsa7{word-spacing:84.466745px;}
.ws98{word-spacing:88.269667px;}
.ws8a{word-spacing:89.273595px;}
.ws8b{word-spacing:89.322183px;}
.wse2{word-spacing:92.385869px;}
.wsdd{word-spacing:93.986614px;}
.wsb2{word-spacing:96.044715px;}
.wsa4{word-spacing:98.788850px;}
.ws9e{word-spacing:99.703562px;}
.ws9d{word-spacing:101.761663px;}
.wsb1{word-spacing:103.133730px;}
.ws80{word-spacing:107.278494px;}
.wsd8{word-spacing:117.769115px;}
.ws99{word-spacing:132.633179px;}
.ws67{word-spacing:156.245198px;}
.ws6a{word-spacing:176.990011px;}
.ws87{word-spacing:283.936734px;}
.wse5{word-spacing:339.249600px;}
._10{margin-left:-9955.183200px;}
._3c{margin-left:-8429.323800px;}
._38{margin-left:-32.400000px;}
._3a{margin-left:-28.944740px;}
._37{margin-left:-26.520000px;}
._33{margin-left:-25.154568px;}
._27{margin-left:-22.845074px;}
._34{margin-left:-20.582669px;}
._32{margin-left:-18.294232px;}
._7{margin-left:-16.790400px;}
._2d{margin-left:-15.677902px;}
._8{margin-left:-14.024400px;}
._30{margin-left:-12.577284px;}
._2{margin-left:-10.710000px;}
._12{margin-left:-9.282000px;}
._c{margin-left:-7.662604px;}
._3{margin-left:-5.760000px;}
._5{margin-left:-4.080000px;}
._0{margin-left:-2.550000px;}
._1{margin-left:-1.020000px;}
._4{width:1.770000px;}
._a{width:3.348000px;}
._e{width:5.190000px;}
._15{width:6.263727px;}
._9{width:7.380000px;}
._f{width:8.640000px;}
._11{width:9.907200px;}
._31{width:12.043034px;}
._1a{width:17.190547px;}
._b{width:18.204000px;}
._23{width:24.382029px;}
._21{width:29.355554px;}
._2c{width:35.363345px;}
._14{width:38.827847px;}
._17{width:41.180875px;}
._2e{width:43.629313px;}
._16{width:46.684249px;}
._22{width:54.091217px;}
._35{width:58.777069px;}
._2f{width:62.200387px;}
._1f{width:68.204355px;}
._20{width:79.077685px;}
._36{width:130.003800px;}
._24{width:133.718400px;}
._19{width:214.960201px;}
._18{width:244.336715px;}
._1c{width:260.410565px;}
._1b{width:277.775790px;}
._1d{width:313.566719px;}
._1e{width:333.210916px;}
._28{width:353.960594px;}
._29{width:405.082100px;}
._13{width:410.054400px;}
._25{width:446.007000px;}
._2a{width:637.646117px;}
._2b{width:1013.873446px;}
._39{width:2105.547786px;}
._3b{width:2255.935477px;}
._6{width:2607.882134px;}
._26{width:4897.901645px;}
._d{width:5741.525384px;}
.fc16{color:rgb(16,89,179);}
.fc13{color:rgb(0,136,43);}
.fc11{color:rgb(95,50,124);}
.fc15{color:rgb(40,87,173);}
.fc10{color:rgb(4,51,255);}
.fcf{color:rgb(0,150,255);}
.fce{color:rgb(97,168,3);}
.fcd{color:rgb(254,71,1);}
.fc17{color:rgb(47,84,150);}
.fc0{color:rgb(112,111,110);}
.fc12{color:rgb(22,79,134);}
.fc2{color:rgb(214,214,214);}
.fc4{color:rgb(244,244,244);}
.fc1{color:rgb(255,255,255);}
.fc6{color:rgb(255,255,255);}
.fc9{color:rgb(0,0,0);}
.fc8{color:transparent;}
.fc3{color:rgb(33,39,60);}
.fc5{color:rgb(33,39,60);}
.fca{color:rgb(35,35,35);}
.fc7{color:rgb(203,86,92);}
.fc14{color:rgb(151,198,107);}
.fcb{color:rgb(219,76,88);}
.fcc{color:rgb(255,64,255);}
.fs45{font-size:77.805211px;}
.fs41{font-size:78.123093px;}
.fs3c{font-size:81.261720px;}
.fs5{font-size:84.144400px;}
.fs2a{font-size:94.032904px;}
.fs3f{font-size:94.805340px;}
.fse{font-size:96.000000px;}
.fs22{font-size:96.247717px;}
.fs1d{font-size:98.002030px;}
.fs0{font-size:102.000000px;}
.fs21{font-size:105.477143px;}
.fs1f{font-size:105.625320px;}
.fs20{font-size:105.625380px;}
.fs43{font-size:106.837375px;}
.fs40{font-size:107.273870px;}
.fs2b{font-size:110.824890px;}
.fs46{font-size:114.468181px;}
.fs44{font-size:116.127203px;}
.fs42{font-size:116.601652px;}
.fs2d{font-size:120.899880px;}
.fs1b{font-size:126.003815px;}
.fs12{font-size:132.000000px;}
.fs1e{font-size:133.003558px;}
.fs33{font-size:137.207655px;}
.fs1c{font-size:140.003302px;}
.fs29{font-size:141.049860px;}
.fs2c{font-size:141.156456px;}
.fs3e{font-size:143.409329px;}
.fs13{font-size:144.000000px;}
.fs1a{font-size:150.000000px;}
.fs2f{font-size:154.340280px;}
.fs37{font-size:156.000000px;}
.fs32{font-size:160.074067px;}
.fs2e{font-size:161.199840px;}
.fs15{font-size:162.000000px;}
.fs47{font-size:165.480650px;}
.fs1{font-size:168.000000px;}
.fs16{font-size:174.000000px;}
.fs25{font-size:180.000000px;}
.fsa{font-size:185.183640px;}
.fs30{font-size:185.208336px;}
.fs17{font-size:186.000000px;}
.fs4{font-size:186.522912px;}
.fs27{font-size:191.102820px;}
.fs3b{font-size:192.000000px;}
.fs2{font-size:198.000000px;}
.fs35{font-size:204.000000px;}
.fs28{font-size:205.811482px;}
.fs6{font-size:209.880000px;}
.fsc{font-size:210.000000px;}
.fs23{font-size:216.000000px;}
.fs11{font-size:222.000000px;}
.fs48{font-size:228.000000px;}
.fs31{font-size:228.677894px;}
.fs4a{font-size:234.000000px;}
.fs38{font-size:235.514040px;}
.fs34{font-size:239.999995px;}
.fs10{font-size:240.000000px;}
.fs24{font-size:242.242980px;}
.fs36{font-size:258.000000px;}
.fs26{font-size:269.158860px;}
.fs39{font-size:270.000000px;}
.fs19{font-size:288.000000px;}
.fs49{font-size:306.000000px;}
.fs18{font-size:324.000000px;}
.fs3d{font-size:325.046880px;}
.fs3{font-size:348.176102px;}
.fsf{font-size:372.000000px;}
.fs3a{font-size:409.500000px;}
.fs9{font-size:410.496620px;}
.fsb{font-size:450.000000px;}
.fsd{font-size:462.000000px;}
.fs7{font-size:492.000000px;}
.fs14{font-size:600.000000px;}
.fs8{font-size:766.260356px;}
.y180{bottom:-2972.265384px;}
.y14b{bottom:-2785.204728px;}
.y14a{bottom:-2716.602048px;}
.y17f{bottom:-2647.999368px;}
.y149{bottom:-2647.993630px;}
.y148{bottom:-2579.390950px;}
.y147{bottom:-2510.788271px;}
.y17e{bottom:-2442.185591px;}
.y146{bottom:-2409.975901px;}
.y17d{bottom:-2373.582912px;}
.y145{bottom:-2341.373222px;}
.y17c{bottom:-2304.980232px;}
.y144{bottom:-2272.770542px;}
.y17b{bottom:-2236.377552px;}
.y143{bottom:-2204.167863px;}
.y17a{bottom:-2167.769134px;}
.y142{bottom:-2135.559445px;}
.y179{bottom:-2099.166455px;}
.y141{bottom:-2066.956765px;}
.y178{bottom:-2030.563775px;}
.y140{bottom:-1998.354085px;}
.y177{bottom:-1961.961096px;}
.y13f{bottom:-1929.751406px;}
.y176{bottom:-1893.358416px;}
.y13e{bottom:-1861.148726px;}
.y175{bottom:-1824.755736px;}
.y13d{bottom:-1792.546047px;}
.y24c{bottom:-1789.282468px;}
.ybe{bottom:-1758.724382px;}
.y174{bottom:-1756.147318px;}
.y13c{bottom:-1723.937629px;}
.y93{bottom:-1688.723433px;}
.y173{bottom:-1687.544639px;}
.y274{bottom:-1683.839176px;}
.y13b{bottom:-1655.334949px;}
.y92{bottom:-1650.222034px;}
.y224{bottom:-1647.729363px;}
.y273{bottom:-1642.159526px;}
.y91{bottom:-1611.720634px;}
.y272{bottom:-1600.168835px;}
.y172{bottom:-1598.886220px;}
.y13a{bottom:-1586.732269px;}
.ybd{bottom:-1573.219234px;}
.y271{bottom:-1558.489185px;}
.y90{bottom:-1547.073836px;}
.ybc{bottom:-1534.717834px;}
.y171{bottom:-1530.277802px;}
.y139{bottom:-1518.129590px;}
.y270{bottom:-1516.809536px;}
.ybb{bottom:-1496.216434px;}
.y170{bottom:-1461.675122px;}
.y26f{bottom:-1459.266736px;}
.y8f{bottom:-1457.163458px;}
.yba{bottom:-1451.046939px;}
.y138{bottom:-1449.526910px;}
.y8e{bottom:-1444.976091px;}
.y26e{bottom:-1417.587087px;}
.yb9{bottom:-1412.545539px;}
.y8d{bottom:-1406.474691px;}
.y223{bottom:-1404.550853px;}
.y16f{bottom:-1393.072443px;}
.y137{bottom:-1380.924231px;}
.y26d{bottom:-1375.907437px;}
.yb8{bottom:-1374.047652px;}
.y8c{bottom:-1367.973291px;}
.y248{bottom:-1362.357464px;}
.yb7{bottom:-1335.546252px;}
.y26c{bottom:-1334.227788px;}
.y8b{bottom:-1329.471891px;}
.y16e{bottom:-1324.469763px;}
.y247{bottom:-1323.456310px;}
.y136{bottom:-1312.315813px;}
.yb6{bottom:-1297.044852px;}
.y26b{bottom:-1292.237096px;}
.y8a{bottom:-1290.974005px;}
.y246{bottom:-1284.264849px;}
.y89{bottom:-1264.326216px;}
.yb5{bottom:-1258.543452px;}
.y16d{bottom:-1255.867083px;}
.y88{bottom:-1252.472605px;}
.y26a{bottom:-1250.557447px;}
.y245{bottom:-1245.363695px;}
.y135{bottom:-1243.713133px;}
.yb4{bottom:-1220.042053px;}
.y87{bottom:-1213.971205px;}
.y269{bottom:-1208.877797px;}
.y244{bottom:-1206.462540px;}
.y16c{bottom:-1187.264404px;}
.yb3{bottom:-1181.540653px;}
.y86{bottom:-1175.469805px;}
.y134{bottom:-1175.110453px;}
.y243{bottom:-1167.561386px;}
.y268{bottom:-1167.198148px;}
.y19{bottom:-1153.141400px;}
.yb2{bottom:-1143.039253px;}
.y85{bottom:-1136.968405px;}
.y242{bottom:-1128.369925px;}
.y267{bottom:-1125.207456px;}
.y16b{bottom:-1118.655986px;}
.y133{bottom:-1106.507774px;}
.yb1{bottom:-1104.537853px;}
.y84{bottom:-1098.467005px;}
.y241{bottom:-1089.468771px;}
.y266{bottom:-1067.975699px;}
.yb0{bottom:-1066.036453px;}
.y83{bottom:-1059.965605px;}
.y240{bottom:-1050.567617px;}
.y16a{bottom:-1050.053306px;}
.yaf{bottom:-1027.535053px;}
.y265{bottom:-1026.296049px;}
.y82{bottom:-1021.464205px;}
.y23f{bottom:-1011.376156px;}
.yae{bottom:-989.037166px;}
.y264{bottom:-984.305358px;}
.y81{bottom:-982.962806px;}
.y169{bottom:-981.450627px;}
.y23e{bottom:-972.475002px;}
.y24b{bottom:-950.561210px;}
.yad{bottom:-950.535767px;}
.y80{bottom:-944.461406px;}
.y263{bottom:-942.625708px;}
.y23d{bottom:-917.897263px;}
.y168{bottom:-912.847947px;}
.yac{bottom:-912.034367px;}
.y7f{bottom:-902.288689px;}
.y262{bottom:-900.946059px;}
.y132{bottom:-897.314074px;}
.y23c{bottom:-875.222117px;}
.yab{bottom:-866.864871px;}
.y7e{bottom:-863.787289px;}
.y261{bottom:-859.266409px;}
.y131{bottom:-834.426850px;}
.yaa{bottom:-828.363471px;}
.y7d{bottom:-825.285889px;}
.y167{bottom:-824.183790px;}
.y260{bottom:-817.275718px;}
.y23b{bottom:-804.967794px;}
.ya9{bottom:-789.862072px;}
.y7c{bottom:-786.784489px;}
.y25f{bottom:-775.596068px;}
.y130{bottom:-771.545364px;}
.y23a{bottom:-766.066639px;}
.y166{bottom:-755.581110px;}
.ya8{bottom:-751.360672px;}
.y7b{bottom:-748.283089px;}
.y25e{bottom:-733.916419px;}
.y239{bottom:-726.875178px;}
.ya7{bottom:-712.859272px;}
.y7a{bottom:-709.781689px;}
.y12f{bottom:-708.658140px;}
.y238{bottom:-687.974024px;}
.y165{bottom:-686.978430px;}
.y25d{bottom:-676.373619px;}
.ya6{bottom:-674.357872px;}
.y79{bottom:-671.280289px;}
.y236{bottom:-649.072870px;}
.y12e{bottom:-645.770915px;}
.y237{bottom:-639.202428px;}
.ya5{bottom:-635.856472px;}
.y25c{bottom:-634.693970px;}
.y78{bottom:-632.778890px;}
.y164{bottom:-618.375751px;}
.y235{bottom:-609.591102px;}
.ya4{bottom:-597.358585px;}
.y77{bottom:-594.277490px;}
.y25b{bottom:-593.014320px;}
.y12d{bottom:-582.883691px;}
.y234{bottom:-570.399641px;}
.ya3{bottom:-558.857185px;}
.y76{bottom:-555.779603px;}
.y25a{bottom:-551.334671px;}
.y163{bottom:-549.773071px;}
.y233{bottom:-531.498486px;}
.yd{bottom:-523.968335px;}
.ya2{bottom:-520.355786px;}
.y12c{bottom:-519.996467px;}
.y75{bottom:-517.278203px;}
.y259{bottom:-509.343979px;}
.y232{bottom:-492.597332px;}
.ya1{bottom:-481.854386px;}
.y162{bottom:-481.170392px;}
.y74{bottom:-478.776803px;}
.y258{bottom:-467.664330px;}
.y12b{bottom:-457.109243px;}
.y231{bottom:-453.696178px;}
.ya0{bottom:-443.352986px;}
.y73{bottom:-440.275403px;}
.y257{bottom:-425.984681px;}
.y161{bottom:-412.561974px;}
.y9f{bottom:-404.851586px;}
.y72{bottom:-401.774003px;}
.y230{bottom:-399.989361px;}
.y12a{bottom:-394.222018px;}
.y256{bottom:-384.305031px;}
.ydf{bottom:-382.146750px;}
.y9e{bottom:-366.350186px;}
.y71{bottom:-363.272603px;}
.y22f{bottom:-361.088207px;}
.y160{bottom:-343.959294px;}
.y129{bottom:-331.334794px;}
.y255{bottom:-326.762232px;}
.y22e{bottom:-322.187053px;}
.y9d{bottom:-321.180691px;}
.y254{bottom:-285.082582px;}
.y22d{bottom:-282.995592px;}
.y9c{bottom:-282.679291px;}
.y15f{bottom:-275.356614px;}
.y128{bottom:-268.447570px;}
.y70{bottom:-251.102451px;}
.y9b{bottom:-244.177891px;}
.y22c{bottom:-244.094438px;}
.y253{bottom:-243.402933px;}
.y6f{bottom:-216.100221px;}
.y15e{bottom:-206.753935px;}
.y9a{bottom:-205.680004px;}
.y127{bottom:-205.560346px;}
.y22b{bottom:-205.193284px;}
.yde{bottom:-204.563444px;}
.y252{bottom:-201.412241px;}
.y6e{bottom:-181.097990px;}
.ydd{bottom:-174.676548px;}
.y22a{bottom:-166.292130px;}
.y251{bottom:-159.732592px;}
.y6d{bottom:-146.099272px;}
.ydc{bottom:-144.791858px;}
.y126{bottom:-142.678860px;}
.y15d{bottom:-138.151255px;}
.y229{bottom:-127.100668px;}
.y250{bottom:-118.052942px;}
.ydb{bottom:-114.907167px;}
.y6c{bottom:-111.097042px;}
.y16{bottom:-89.024697px;}
.y228{bottom:-88.199514px;}
.y99{bottom:-87.519809px;}
.yda{bottom:-85.022476px;}
.y125{bottom:-79.791636px;}
.y1f9{bottom:-77.365907px;}
.y24f{bottom:-76.373293px;}
.y6b{bottom:-76.094811px;}
.y18{bottom:-71.555785px;}
.y15c{bottom:-69.542837px;}
.yd9{bottom:-55.137786px;}
.y98{bottom:-52.517578px;}
.ya{bottom:-40.451207px;}
.y24e{bottom:-34.382601px;}
.y227{bottom:-33.621776px;}
.yc{bottom:-32.513621px;}
.y1f8{bottom:-23.731158px;}
.y97{bottom:-17.518860px;}
.y15b{bottom:-0.940158px;}
.y0{bottom:0.000000px;}
.y1af{bottom:0.647670px;}
.yec{bottom:0.666195px;}
.y27{bottom:0.843750px;}
.y2e{bottom:2.343750px;}
.y11f{bottom:2.728050px;}
.y3b{bottom:3.009150px;}
.y1e8{bottom:6.427650px;}
.y50{bottom:9.990150px;}
.y9{bottom:12.397181px;}
.y30{bottom:17.247300px;}
.y102{bottom:17.300175px;}
.y96{bottom:17.483370px;}
.y39{bottom:19.379250px;}
.y54{bottom:19.379400px;}
.y28b{bottom:19.389150px;}
.y57{bottom:20.100450px;}
.y182{bottom:20.159850px;}
.y43{bottom:20.292000px;}
.yb{bottom:20.334537px;}
.y52{bottom:20.666700px;}
.y2c{bottom:21.421200px;}
.y68{bottom:22.021950px;}
.y1f5{bottom:23.994046px;}
.y5{bottom:24.150000px;}
.y5b{bottom:24.288900px;}
.y49{bottom:24.431400px;}
.y1a3{bottom:24.664650px;}
.y3d{bottom:24.732000px;}
.y3f{bottom:24.732150px;}
.yc5{bottom:25.306746px;}
.y46{bottom:25.528500px;}
.y1aa{bottom:25.545450px;}
.y4e{bottom:26.066700px;}
.y29{bottom:26.167950px;}
.yf0{bottom:26.426250px;}
.y15{bottom:27.283185px;}
.y220{bottom:27.571645px;}
.ye5{bottom:29.068950px;}
.y66{bottom:29.068980px;}
.y190{bottom:29.949900px;}
.y1f{bottom:30.830700px;}
.y10d{bottom:31.274532px;}
.y1f1{bottom:31.561544px;}
.y37{bottom:32.592450px;}
.yea{bottom:33.950400px;}
.y289{bottom:34.354155px;}
.y35{bottom:35.235000px;}
.yee{bottom:35.235150px;}
.y226{bottom:36.922854px;}
.y1d1{bottom:39.639390px;}
.y1ce{bottom:39.639450px;}
.y1c4{bottom:41.070900px;}
.ye{bottom:41.691060px;}
.y192{bottom:42.282150px;}
.y1ba{bottom:43.643400px;}
.y1c0{bottom:44.462100px;}
.y17{bottom:44.751590px;}
.y1eb{bottom:44.868240px;}
.y24d{bottom:45.244192px;}
.y2b{bottom:48.421200px;}
.y1{bottom:49.705035px;}
.y95{bottom:52.485601px;}
.y1f0{bottom:55.940060px;}
.ye1{bottom:60.371805px;}
.yc4{bottom:60.831505px;}
.y48{bottom:61.931400px;}
.y45{bottom:63.028500px;}
.y8{bottom:65.494185px;}
.y21f{bottom:66.631734px;}
.y15a{bottom:67.662522px;}
.y25{bottom:67.827450px;}
.y109{bottom:68.635869px;}
.y13{bottom:72.231900px;}
.y225{bottom:75.824009px;}
.y11d{bottom:77.968950px;}
.y4{bottom:79.650000px;}
.y1ef{bottom:80.318576px;}
.y18c{bottom:82.411350px;}
.y94{bottom:87.484319px;}
.yc2{bottom:90.568950px;}
.y64{bottom:90.568965px;}
.ye3{bottom:90.568995px;}
.y7{bottom:92.962500px;}
.yc6{bottom:94.164770px;}
.yc0{bottom:94.701900px;}
.y1c3{bottom:95.070900px;}
.y10a{bottom:95.502593px;}
.y21{bottom:96.830700px;}
.y110{bottom:97.601466px;}
.y10{bottom:97.670310px;}
.y4c{bottom:101.570280px;}
.y59{bottom:101.570295px;}
.y14{bottom:103.412895px;}
.y21e{bottom:105.983316px;}
.y288{bottom:107.854155px;}
.ye9{bottom:108.284400px;}
.y1b9{bottom:109.643400px;}
.y1a1{bottom:110.235000px;}
.y278{bottom:110.235150px;}
.y1bf{bottom:110.462100px;}
.y1e9{bottom:113.718960px;}
.y65{bottom:121.871820px;}
.y4b{bottom:122.682270px;}
.y58{bottom:122.682405px;}
.y1d0{bottom:123.639390px;}
.y1cd{bottom:123.639450px;}
.y106{bottom:128.106420px;}
.y11a{bottom:128.354325px;}
.y1ea{bottom:128.868240px;}
.y1d{bottom:129.470400px;}
.ycd{bottom:130.053613px;}
.y1cf{bottom:132.267360px;}
.y3{bottom:135.150000px;}
.y159{bottom:136.265202px;}
.y63{bottom:136.878585px;}
.y108{bottom:138.110760px;}
.y21d{bottom:145.043405px;}
.y287{bottom:145.687245px;}
.y1ee{bottom:147.503205px;}
.y1c2{bottom:149.070900px;}
.ye2{bottom:152.068995px;}
.y24a{bottom:152.242695px;}
.y114{bottom:152.594287px;}
.yf1{bottom:152.680350px;}
.y38{bottom:157.610850px;}
.y279{bottom:159.897900px;}
.y56{bottom:160.168800px;}
.y23{bottom:162.830700px;}
.y222{bottom:164.367680px;}
.yf{bottom:165.170340px;}
.y2{bottom:167.299200px;}
.y1df{bottom:169.233000px;}
.y292{bottom:172.071900px;}
.y1b8{bottom:175.643400px;}
.ye8{bottom:175.784400px;}
.y100{bottom:176.012700px;}
.y1be{bottom:176.462100px;}
.y21c{bottom:184.103494px;}
.yc7{bottom:186.283833px;}
.y124{bottom:187.247775px;}
.y1c1{bottom:188.094750px;}
.y221{bottom:189.762000px;}
.y195{bottom:191.042550px;}
.y51{bottom:203.120850px;}
.y55{bottom:204.307200px;}
.y158{bottom:204.867881px;}
.y1ed{bottom:207.639450px;}
.y12{bottom:211.281900px;}
.y53{bottom:211.700100px;}
.y3a{bottom:220.779300px;}
.y291{bottom:229.071900px;}
.yce{bottom:231.075095px;}
.y101{bottom:235.702650px;}
.y21b{bottom:237.738242px;}
.y27a{bottom:250.968150px;}
.yff{bottom:253.002900px;}
.y1a2{bottom:256.708800px;}
.ye4{bottom:263.031450px;}
.y28d{bottom:269.166900px;}
.y157{bottom:273.470561px;}
.ybf{bottom:275.764500px;}
.y1d8{bottom:275.771400px;}
.y21a{bottom:277.089824px;}
.yc8{bottom:278.402975px;}
.y1f6{bottom:279.943950px;}
.y290{bottom:286.071900px;}
.y6{bottom:286.668150px;}
.y186{bottom:286.768800px;}
.y115{bottom:295.952831px;}
.yd2{bottom:304.597050px;}
.y219{bottom:316.149913px;}
.y1a0{bottom:321.115950px;}
.y18d{bottom:324.689700px;}
.ycf{bottom:332.096550px;}
.ycc{bottom:333.644100px;}
.y156{bottom:342.078979px;}
.y28f{bottom:343.071900px;}
.y28c{bottom:344.166900px;}
.y191{bottom:346.246200px;}
.yc3{bottom:351.741000px;}
.y184{bottom:351.934200px;}
.y27b{bottom:353.755350px;}
.y218{bottom:355.210002px;}
.yc1{bottom:361.900950px;}
.yc9{bottom:370.521986px;}
.y1a9{bottom:373.357050px;}
.y1cc{bottom:389.771100px;}
.y1bd{bottom:392.475450px;}
.y217{bottom:394.561584px;}
.y28e{bottom:400.071900px;}
.y1d9{bottom:401.403600px;}
.y1ec{bottom:419.713800px;}
.y155{bottom:430.737398px;}
.yd0{bottom:433.117927px;}
.y216{bottom:433.621673px;}
.y1a8{bottom:434.650200px;}
.y181{bottom:435.981000px;}
.y284{bottom:438.369300px;}
.y116{bottom:439.101564px;}
.y1b1{bottom:439.823550px;}
.y5a{bottom:462.503700px;}
.yca{bottom:462.640996px;}
.y285{bottom:466.192800px;}
.y41{bottom:467.189250px;}
.yf4{bottom:467.447700px;}
.y2a{bottom:468.346950px;}
.y215{bottom:488.422394px;}
.y10e{bottom:489.476765px;}
.y154{bottom:499.340077px;}
.y11{bottom:504.475200px;}
.y113{bottom:504.799062px;}
.y283{bottom:508.869300px;}
.y10b{bottom:509.206870px;}
.y188{bottom:519.775500px;}
.y1d5{bottom:527.716800px;}
.yd1{bottom:534.139567px;}
.y69{bottom:536.034150px;}
.y19f{bottom:548.881950px;}
.ycb{bottom:554.760270px;}
.yf3{bottom:558.174600px;}
.y214{bottom:559.255242px;}
.y28{bottom:562.835700px;}
.y187{bottom:567.775500px;}
.y153{bottom:567.942757px;}
.y120{bottom:569.239875px;}
.y117{bottom:582.460359px;}
.y11c{bottom:588.757200px;}
.y1d4{bottom:590.716800px;}
.y61{bottom:594.499650px;}
.y1ab{bottom:594.985200px;}
.yef{bottom:596.404950px;}
.y213{bottom:598.315331px;}
.y4a{bottom:601.114950px;}
.y44{bottom:602.431200px;}
.y47{bottom:604.651950px;}
.y11e{bottom:608.049750px;}
.y4d{bottom:608.544150px;}
.y42{bottom:626.049450px;}
.yfa{bottom:630.757650px;}
.y282{bottom:631.688850px;}
.yf5{bottom:632.938650px;}
.y152{bottom:636.551175px;}
.y212{bottom:637.375420px;}
.y281{bottom:639.115350px;}
.y185{bottom:641.153250px;}
.y277{bottom:646.083300px;}
.y18b{bottom:661.994400px;}
.yed{bottom:665.245650px;}
.y26{bottom:665.961900px;}
.y211{bottom:676.435508px;}
.yd3{bottom:697.375650px;}
.y1b7{bottom:700.432950px;}
.y1db{bottom:701.280000px;}
.y151{bottom:705.153855px;}
.y121{bottom:706.216875px;}
.y1cb{bottom:713.499900px;}
.y210{bottom:715.787090px;}
.y294{bottom:717.307800px;}
.y118{bottom:725.609344px;}
.y1e7{bottom:725.743950px;}
.yd6{bottom:731.560446px;}
.y20f{bottom:754.847179px;}
.y3e{bottom:762.456000px;}
.y3c{bottom:762.942000px;}
.y1da{bottom:764.280000px;}
.y4f{bottom:765.811800px;}
.y40{bottom:766.362750px;}
.y150{bottom:773.756534px;}
.yd5{bottom:774.016945px;}
.y2f{bottom:774.944250px;}
.y249{bottom:781.489500px;}
.y18a{bottom:782.955000px;}
.y2d{bottom:789.847800px;}
.y27f{bottom:793.675950px;}
.y20e{bottom:793.907268px;}
.y280{bottom:797.184750px;}
.y1ca{bottom:797.499900px;}
.yfc{bottom:807.849600px;}
.y1e{bottom:815.418150px;}
.yd4{bottom:816.266995px;}
.y19d{bottom:818.703000px;}
.y112{bottom:825.939368px;}
.y1b4{bottom:828.403200px;}
.y189{bottom:830.955000px;}
.y1b0{bottom:831.329850px;}
.y6a{bottom:831.345839px;}
.y293{bottom:834.307800px;}
.y14f{bottom:842.359214px;}
.y20d{bottom:847.833510px;}
.y1a6{bottom:859.596000px;}
.y22{bottom:867.697050px;}
.y119{bottom:868.967887px;}
.y1c6{bottom:871.992900px;}
.yd7{bottom:874.030492px;}
.y1de{bottom:874.843200px;}
.y123{bottom:875.991075px;}
.y1b3{bottom:882.403200px;}
.yfd{bottom:884.327850px;}
.y20c{bottom:886.893599px;}
.y36{bottom:892.462350px;}
.y19c{bottom:893.703000px;}
.yd8{bottom:905.429705px;}
.y183{bottom:908.703300px;}
.y14e{bottom:910.961893px;}
.y10c{bottom:922.911147px;}
.y27d{bottom:923.014500px;}
.y1e2{bottom:925.060800px;}
.y20b{bottom:925.953688px;}
.y122{bottom:928.080975px;}
.y1b2{bottom:936.403200px;}
.y1a5{bottom:944.012250px;}
.y1ae{bottom:950.469750px;}
.y1ad{bottom:951.117450px;}
.y1c5{bottom:955.992900px;}
.yfb{bottom:958.625250px;}
.yf6{bottom:960.806250px;}
.y20a{bottom:965.013776px;}
.y19b{bottom:968.703000px;}
.ye7{bottom:971.203950px;}
.y1dd{bottom:979.366500px;}
.y14d{bottom:979.570311px;}
.y34{bottom:982.665150px;}
.y27e{bottom:982.782150px;}
.y1c8{bottom:984.296400px;}
.y111{bottom:985.668512px;}
.y27c{bottom:993.514500px;}
.yeb{bottom:1004.488200px;}
.y60{bottom:1006.325100px;}
.y1b6{bottom:1012.822500px;}
.y209{bottom:1018.940018px;}
.y103{bottom:1034.456700px;}
.y1e3{bottom:1038.101700px;}
.y11b{bottom:1039.977675px;}
.y10f{bottom:1040.032906px;}
.y1dc{bottom:1042.366500px;}
.yf9{bottom:1043.351250px;}
.y19a{bottom:1043.703000px;}
.y14c{bottom:1048.172991px;}
.y24{bottom:1048.531800px;}
.y20{bottom:1048.733700px;}
.y1e6{bottom:1057.658700px;}
.y208{bottom:1058.000107px;}
.y5f{bottom:1061.825100px;}
.y1b5{bottom:1065.069750px;}
.y1c7{bottom:1068.296400px;}
.y194{bottom:1082.517450px;}
.yfe{bottom:1089.627750px;}
.y207{bottom:1097.060196px;}
.y18f{bottom:1101.962400px;}
.y286{bottom:1124.900700px;}
.y206{bottom:1136.120285px;}
.y1e1{bottom:1136.685450px;}
.y193{bottom:1141.017450px;}
.y1e5{bottom:1141.658700px;}
.y5e{bottom:1154.491650px;}
.y1d7{bottom:1158.969600px;}
.y33{bottom:1164.078750px;}
.y1bc{bottom:1173.040200px;}
.y205{bottom:1175.471867px;}
.y1c{bottom:1178.894700px;}
.y107{bottom:1204.653666px;}
.y1a7{bottom:1208.355000px;}
.y19e{bottom:1210.225650px;}
.y204{bottom:1214.531956px;}
.y28a{bottom:1215.061350px;}
.y1d6{bottom:1221.969600px;}
.yf8{bottom:1227.825150px;}
.y1f4{bottom:1229.573117px;}
.y5d{bottom:1244.491650px;}
.y1ac{bottom:1247.263500px;}
.y1b{bottom:1252.429650px;}
.y203{bottom:1253.592044px;}
.y1c9{bottom:1255.092900px;}
.y1f3{bottom:1272.595949px;}
.y1bb{bottom:1280.561700px;}
.y1a4{bottom:1281.407700px;}
.y67{bottom:1284.618450px;}
.ye0{bottom:1287.043350px;}
.y1e4{bottom:1288.663200px;}
.y1e0{bottom:1288.677600px;}
.yf2{bottom:1290.587850px;}
.y202{bottom:1292.943626px;}
.yf7{bottom:1302.825150px;}
.y199{bottom:1320.449550px;}
.y1f2{bottom:1334.559027px;}
.y197{bottom:1343.156250px;}
.y201{bottom:1347.744348px;}
.y1d3{bottom:1352.793300px;}
.y18e{bottom:1354.929450px;}
.y32{bottom:1358.737350px;}
.y105{bottom:1359.562500px;}
.y275{bottom:1407.558900px;}
.y1a{bottom:1407.656250px;}
.y62{bottom:1413.562500px;}
.y200{bottom:1418.285702px;}
.y276{bottom:1421.880000px;}
.y198{bottom:1434.496950px;}
.y5c{bottom:1445.096550px;}
.ye6{bottom:1454.546550px;}
.y1ff{bottom:1457.637284px;}
.y31{bottom:1466.737350px;}
.y104{bottom:1467.562500px;}
.y1d2{bottom:1469.793300px;}
.y196{bottom:1472.156250px;}
.y1fe{bottom:1496.697373px;}
.y1fd{bottom:1535.757462px;}
.y1fc{bottom:1574.817551px;}
.y1fb{bottom:1614.169133px;}
.y1fa{bottom:1653.229222px;}
.y1f7{bottom:1742.134648px;}
.h93{height:0.000000px;}
.h8e{height:1.629079px;}
.h1a{height:22.125000px;}
.h1e{height:23.625000px;}
.h7b{height:26.613090px;}
.h54{height:27.373455px;}
.h27{height:36.000000px;}
.h59{height:46.974960px;}
.h1f{height:48.466020px;}
.h32{height:49.125000px;}
.h88{height:55.629361px;}
.h87{height:56.303897px;}
.h25{height:62.740545px;}
.h2a{height:62.866230px;}
.h8b{height:63.188129px;}
.h35{height:63.591450px;}
.h9{height:64.033889px;}
.h50{height:66.218429px;}
.h95{height:66.781773px;}
.h34{height:67.157580px;}
.h1c{height:67.886715px;}
.h3f{height:71.568795px;}
.h1b{height:72.000000px;}
.h4f{height:72.185787px;}
.h4e{height:72.568274px;}
.h28{height:72.591390px;}
.h30{height:78.853860px;}
.h36{height:78.917355px;}
.h1{height:79.152000px;}
.h78{height:80.397060px;}
.h7a{height:82.839810px;}
.h56{height:85.282560px;}
.h1d{height:85.639905px;}
.h61{height:88.962949px;}
.h3e{height:92.610810px;}
.h72{height:95.053560px;}
.h8a{height:98.033721px;}
.h48{height:98.555637px;}
.h15{height:98.996310px;}
.h2b{height:99.000000px;}
.h26{height:99.528000px;}
.h6{height:100.437960px;}
.h5e{height:103.790107px;}
.h7c{height:103.861692px;}
.h60{height:103.868545px;}
.h23{height:103.881825px;}
.h67{height:104.179680px;}
.h92{height:106.263541px;}
.h8d{height:106.697692px;}
.h55{height:106.829154px;}
.h29{height:108.000000px;}
.h2d{height:109.005645px;}
.h90{height:109.840481px;}
.h2c{height:110.102730px;}
.h9e{height:111.000000px;}
.h42{height:112.143395px;}
.h22{height:112.710075px;}
.h40{height:113.100000px;}
.h97{height:113.853361px;}
.h64{height:114.057467px;}
.h79{height:117.624000px;}
.h4b{height:118.467461px;}
.h4c{height:118.467528px;}
.h5a{height:118.699057px;}
.h94{height:118.905637px;}
.h8f{height:119.391438px;}
.h31{height:121.500000px;}
.h71{height:122.148000px;}
.h6e{height:124.152000px;}
.h43{height:124.602939px;}
.h58{height:126.672000px;}
.h6d{height:126.779873px;}
.h3{height:130.368000px;}
.h33{height:130.500000px;}
.h3a{height:131.196000px;}
.h65{height:135.047730px;}
.h74{height:135.252090px;}
.h57{height:135.720000px;}
.h66{height:136.868960px;}
.h46{height:138.037050px;}
.h44{height:138.051103px;}
.h37{height:139.500000px;}
.h75{height:140.244000px;}
.h11{height:140.924750px;}
.h82{height:144.768000px;}
.h8{height:149.218330px;}
.h3d{height:149.292000px;}
.h5{height:153.648000px;}
.h73{height:153.816000px;}
.h3c{height:154.110750px;}
.h5f{height:156.510073px;}
.h49{height:158.243850px;}
.h13{height:158.340000px;}
.h53{height:162.864000px;}
.hb{height:162.866880px;}
.h16{height:164.996250px;}
.h24{height:167.388000px;}
.h98{height:169.439904px;}
.h62{height:169.562869px;}
.h99{height:171.912000px;}
.h45{height:172.017383px;}
.h47{height:173.352407px;}
.h70{height:173.759997px;}
.h9d{height:176.436000px;}
.h21{height:180.960000px;}
.h9c{height:183.767250px;}
.h9b{height:186.792000px;}
.h77{height:187.710150px;}
.h5c{height:190.169809px;}
.h2{height:193.800000px;}
.h76{height:194.532000px;}
.h85{height:195.480000px;}
.h68{height:197.579023px;}
.h7f{height:203.580000px;}
.h80{height:210.423900px;}
.h6a{height:211.298374px;}
.h6c{height:212.446056px;}
.h51{height:215.610750px;}
.h89{height:216.645015px;}
.h39{height:217.152000px;}
.h18{height:218.091900px;}
.he{height:221.042250px;}
.h83{height:221.440800px;}
.h38{height:227.636719px;}
.h9a{height:230.724000px;}
.h6b{height:230.908785px;}
.h17{height:230.996250px;}
.h69{height:235.250750px;}
.ha{height:236.605500px;}
.h52{height:245.511900px;}
.h7d{height:256.748400px;}
.h7e{height:257.567100px;}
.h20{height:261.360677px;}
.h4{height:267.487500px;}
.h96{height:271.060800px;}
.h91{height:275.265150px;}
.h7{height:278.540882px;}
.h9f{height:280.488000px;}
.h81{height:287.707520px;}
.h3b{height:290.274600px;}
.h84{height:294.423900px;}
.h14{height:298.137900px;}
.h2e{height:309.620250px;}
.h12{height:316.162109px;}
.h10{height:328.397296px;}
.h19{height:348.348000px;}
.hd{height:370.968000px;}
.h6f{height:395.609850px;}
.h2f{height:452.400000px;}
.h8c{height:532.869300px;}
.hf{height:613.008285px;}
.h41{height:766.447650px;}
.hc{height:882.702750px;}
.h4a{height:941.482500px;}
.h4d{height:943.867350px;}
.h5d{height:1012.857990px;}
.h63{height:1105.106250px;}
.h5b{height:1117.843800px;}
.h86{height:1425.280200px;}
.h0{height:1620.000000px;}
.w4e{width:0.000000px;}
.w4c{width:13.408660px;}
.w4b{width:13.408689px;}
.w3f{width:30.734580px;}
.w2f{width:31.612710px;}
.w1f{width:88.559640px;}
.w3{width:104.961270px;}
.w32{width:109.182600px;}
.wc{width:110.010930px;}
.w15{width:117.404340px;}
.wb{width:129.416400px;}
.w14{width:137.817495px;}
.w10{width:157.087500px;}
.we{width:158.486400px;}
.w16{width:167.501550px;}
.wf{width:168.004050px;}
.w1b{width:181.316850px;}
.wd{width:182.264400px;}
.w1a{width:186.704400px;}
.w37{width:209.232000px;}
.w1d{width:223.547850px;}
.w19{width:229.692450px;}
.w6{width:230.997150px;}
.w1c{width:235.571700px;}
.w36{width:237.249600px;}
.w1e{width:237.832800px;}
.w20{width:366.955800px;}
.w8{width:419.846250px;}
.w9{width:434.298750px;}
.w39{width:436.787850px;}
.w17{width:461.747250px;}
.w3e{width:498.944250px;}
.w22{width:531.503250px;}
.w18{width:564.985800px;}
.w21{width:570.951000px;}
.w23{width:571.814250px;}
.w13{width:588.017100px;}
.wa{width:645.521250px;}
.w3a{width:649.182750px;}
.w38{width:670.606500px;}
.w31{width:684.205350px;}
.w30{width:693.632850px;}
.w2e{width:697.739100px;}
.w24{width:715.019400px;}
.w2d{width:723.977250px;}
.w3c{width:750.709200px;}
.w41{width:755.973900px;}
.w50{width:763.761300px;}
.w29{width:768.973500px;}
.w3d{width:804.361500px;}
.w1{width:807.001350px;}
.w2a{width:810.846000px;}
.w25{width:824.894100px;}
.w27{width:836.736750px;}
.w43{width:867.718950px;}
.w42{width:873.886950px;}
.w28{width:897.633300px;}
.w26{width:914.905950px;}
.w40{width:938.747550px;}
.w2c{width:951.819000px;}
.w3b{width:999.376200px;}
.w49{width:1007.774250px;}
.w2b{width:1078.150500px;}
.w46{width:1096.218000px;}
.w7{width:1156.340700px;}
.w34{width:1348.547850px;}
.w35{width:1357.998000px;}
.w33{width:1373.890350px;}
.w4d{width:1417.467450px;}
.w4a{width:1418.831100px;}
.w4f{width:1430.874450px;}
.w5{width:1457.220900px;}
.w44{width:1506.838500px;}
.w11{width:1527.220500px;}
.w48{width:1723.564500px;}
.w51{width:1762.516200px;}
.w45{width:1765.042500px;}
.w52{width:1885.604400px;}
.w47{width:1913.613000px;}
.w12{width:2130.240000px;}
.w53{width:2164.788000px;}
.w54{width:2278.404000px;}
.w4{width:2316.754500px;}
.w2{width:2616.375000px;}
.w0{width:2880.000000px;}
.x12{left:-1064.198837px;}
.x10{left:-681.618409px;}
.x9{left:-483.554253px;}
.x7{left:-309.716050px;}
.x6d{left:-130.984650px;}
.x5e{left:-38.854569px;}
.x76{left:-1.635000px;}
.x0{left:0.000000px;}
.x87{left:1.527890px;}
.x22{left:6.817500px;}
.x24{left:8.437500px;}
.x93{left:11.103450px;}
.x3{left:13.650030px;}
.x5{left:16.087530px;}
.x74{left:17.416500px;}
.x78{left:18.855000px;}
.x4c{left:20.569500px;}
.x20{left:21.928500px;}
.x4a{left:23.473500px;}
.x1b{left:25.264500px;}
.xeb{left:29.225310px;}
.x1d{left:30.964500px;}
.x34{left:34.909950px;}
.x19{left:36.295500px;}
.xe{left:38.652825px;}
.x3e{left:40.734300px;}
.x41{left:42.076950px;}
.x2e{left:45.198300px;}
.x45{left:47.137650px;}
.x3d{left:48.694200px;}
.x40{left:56.055150px;}
.x91{left:57.963150px;}
.x43{left:59.126550px;}
.x5b{left:61.630500px;}
.xd{left:62.979030px;}
.x3b{left:65.297850px;}
.x16{left:66.344250px;}
.x29{left:68.701200px;}
.xa6{left:72.472200px;}
.x6a{left:74.374804px;}
.x48{left:77.622000px;}
.x4{left:79.312470px;}
.x2{left:82.349970px;}
.x67{left:87.371755px;}
.x1f{left:90.400500px;}
.x5a{left:97.836300px;}
.x58{left:99.488505px;}
.xec{left:103.389570px;}
.x59{left:104.537340px;}
.x36{left:116.255550px;}
.xcd{left:120.352575px;}
.x8c{left:126.662713px;}
.x52{left:129.741000px;}
.xd4{left:131.171940px;}
.x14{left:134.650305px;}
.xb4{left:137.849160px;}
.xdd{left:139.968972px;}
.x5f{left:141.250757px;}
.xea{left:148.522740px;}
.x7e{left:150.790200px;}
.x90{left:152.182350px;}
.x88{left:154.197150px;}
.x80{left:161.245200px;}
.x7f{left:169.800000px;}
.xc6{left:176.505000px;}
.xe5{left:180.574050px;}
.x2c{left:182.402550px;}
.x89{left:185.688041px;}
.x38{left:187.606200px;}
.x6b{left:192.420000px;}
.x28{left:195.319500px;}
.x2a{left:198.399450px;}
.x7b{left:201.177450px;}
.xcc{left:205.811550px;}
.xc7{left:212.820000px;}
.xdb{left:217.730340px;}
.xd1{left:219.942300px;}
.xd0{left:223.356300px;}
.xbe{left:225.367800px;}
.x39{left:228.016650px;}
.xb6{left:229.377750px;}
.x54{left:234.212250px;}
.xb0{left:247.077000px;}
.xaf{left:255.741750px;}
.xb3{left:265.078650px;}
.xbf{left:274.094250px;}
.xc3{left:276.600000px;}
.x2f{left:282.660600px;}
.x35{left:304.222200px;}
.xb1{left:309.910950px;}
.xb2{left:313.520700px;}
.x6c{left:316.327500px;}
.xe7{left:327.473100px;}
.x8b{left:332.725932px;}
.xbb{left:340.744800px;}
.xb5{left:344.951850px;}
.xa5{left:368.123100px;}
.x96{left:372.431250px;}
.x6e{left:378.550537px;}
.xab{left:382.177200px;}
.x6{left:399.433800px;}
.x53{left:405.193350px;}
.x60{left:414.828867px;}
.xf1{left:416.116500px;}
.x3a{left:428.778300px;}
.x56{left:435.239100px;}
.x92{left:436.340100px;}
.x55{left:438.585900px;}
.xcb{left:455.152500px;}
.xc9{left:458.356050px;}
.xca{left:460.817850px;}
.xb7{left:464.191500px;}
.xb9{left:471.981750px;}
.xe9{left:474.885600px;}
.x30{left:483.422400px;}
.xad{left:486.689400px;}
.xae{left:493.802700px;}
.xa4{left:499.433100px;}
.x57{left:507.729450px;}
.xa{left:513.388950px;}
.xc8{left:520.394400px;}
.xe0{left:525.333300px;}
.x8a{left:532.487524px;}
.xe6{left:540.617100px;}
.xe8{left:547.024350px;}
.x85{left:554.206800px;}
.xc5{left:557.478750px;}
.x25{left:559.587900px;}
.x7c{left:568.223400px;}
.x7a{left:576.879300px;}
.xa9{left:595.233750px;}
.x5d{left:599.561106px;}
.x72{left:603.830550px;}
.xb8{left:627.428700px;}
.x8{left:639.727021px;}
.x3c{left:647.580300px;}
.x95{left:650.243700px;}
.x68{left:660.839406px;}
.x31{left:684.184050px;}
.xc4{left:686.581050px;}
.xd9{left:706.026916px;}
.xd7{left:708.911462px;}
.x44{left:733.555200px;}
.x69{left:742.411004px;}
.xdf{left:756.454533px;}
.xa8{left:772.378350px;}
.x97{left:796.866900px;}
.xaa{left:832.236300px;}
.x94{left:839.310450px;}
.xce{left:845.227650px;}
.x13{left:846.372000px;}
.x5c{left:847.837050px;}
.x37{left:861.916800px;}
.x65{left:863.171400px;}
.x26{left:877.345500px;}
.x2b{left:884.643600px;}
.xd2{left:887.155867px;}
.x46{left:893.703600px;}
.x61{left:897.268025px;}
.xcf{left:901.739850px;}
.x9d{left:909.171600px;}
.x86{left:936.696600px;}
.x3f{left:944.340600px;}
.x62{left:949.769615px;}
.x63{left:973.663350px;}
.x32{left:976.296900px;}
.x64{left:978.575700px;}
.xe4{left:994.395600px;}
.xe1{left:1023.978000px;}
.xed{left:1035.520800px;}
.x98{left:1047.525083px;}
.xe3{left:1117.483800px;}
.x8d{left:1121.479977px;}
.x2d{left:1125.304200px;}
.x42{left:1165.600500px;}
.x15{left:1175.422650px;}
.x33{left:1188.432900px;}
.x8f{left:1221.045439px;}
.xda{left:1235.256796px;}
.x8e{left:1327.542692px;}
.x7d{left:1338.949800px;}
.x82{left:1363.784550px;}
.x11{left:1407.901224px;}
.x99{left:1432.956800px;}
.xdc{left:1449.125550px;}
.xd3{left:1461.168900px;}
.xd8{left:1462.532550px;}
.xba{left:1464.046350px;}
.xee{left:1465.306500px;}
.xc2{left:1470.171300px;}
.x50{left:1481.142600px;}
.x9a{left:1518.711584px;}
.xde{left:1603.091419px;}
.xd5{left:1605.457500px;}
.xb{left:1619.870550px;}
.x84{left:1625.247000px;}
.x51{left:1653.493500px;}
.xbc{left:1662.105000px;}
.x4b{left:1715.509500px;}
.xc0{left:1725.936000px;}
.xc1{left:1729.020000px;}
.xa2{left:1743.844500px;}
.xa1{left:1752.901500px;}
.xa0{left:1757.128500px;}
.x9e{left:1758.828000px;}
.x9f{left:1769.590500px;}
.x66{left:1785.018000px;}
.x4f{left:1788.939000px;}
.x9b{left:1799.428814px;}
.x6f{left:1801.849500px;}
.x27{left:1819.959000px;}
.x49{left:1834.633500px;}
.x47{left:1843.774500px;}
.xa3{left:1856.176500px;}
.xe2{left:1893.469500px;}
.x71{left:1924.693500px;}
.x70{left:1928.181000px;}
.x4e{left:1931.802000px;}
.xbd{left:1935.693000px;}
.xf0{left:1956.112500px;}
.xac{left:1958.394000px;}
.xc{left:2019.272550px;}
.x9c{left:2129.639821px;}
.xd6{left:2140.056000px;}
.x4d{left:2143.263000px;}
.x73{left:2153.607000px;}
.x77{left:2155.659000px;}
.x79{left:2160.373500px;}
.x1c{left:2220.682500px;}
.x18{left:2234.478000px;}
.x17{left:2236.915500px;}
.x1e{left:2244.460500px;}
.x1a{left:2291.316000px;}
.xef{left:2349.606000px;}
.x83{left:2353.030500px;}
.xa7{left:2363.904000px;}
.x75{left:2366.734500px;}
.x23{left:2415.387000px;}
.x81{left:2452.354500px;}
.x1{left:2498.215500px;}
.xf{left:2608.450500px;}
.x21{left:2642.251500px;}
@media print{
.vf{vertical-align:-73.778087pt;}
.v9{vertical-align:-62.688827pt;}
.v7{vertical-align:-59.813067pt;}
.v13{vertical-align:-35.094905pt;}
.v2{vertical-align:-31.428503pt;}
.vd{vertical-align:-30.502832pt;}
.v12{vertical-align:-19.691985pt;}
.v3{vertical-align:-18.662235pt;}
.v11{vertical-align:-16.574400pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:1.020162pt;}
.vc{vertical-align:40.071948pt;}
.v5{vertical-align:42.146173pt;}
.v6{vertical-align:43.332861pt;}
.v4{vertical-align:45.181596pt;}
.va{vertical-align:62.688827pt;}
.v1{vertical-align:64.997867pt;}
.vb{vertical-align:71.644373pt;}
.ve{vertical-align:73.778087pt;}
.v8{vertical-align:77.615036pt;}
.ls6{letter-spacing:-10.933333pt;}
.ls2f{letter-spacing:-7.032500pt;}
.ls5{letter-spacing:-4.373333pt;}
.ls58{letter-spacing:-0.050875pt;}
.ls50{letter-spacing:-0.047677pt;}
.ls54{letter-spacing:-0.047483pt;}
.ls59{letter-spacing:-0.040700pt;}
.ls56{letter-spacing:-0.028490pt;}
.ls4d{letter-spacing:-0.020729pt;}
.ls52{letter-spacing:-0.020645pt;}
.ls57{letter-spacing:-0.020350pt;}
.ls4c{letter-spacing:-0.019071pt;}
.ls51{letter-spacing:-0.018993pt;}
.ls4e{letter-spacing:-0.009535pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000112pt;}
.ls23{letter-spacing:0.001249pt;}
.lsc{letter-spacing:0.002159pt;}
.ls2a{letter-spacing:0.002626pt;}
.lsb{letter-spacing:0.003238pt;}
.ls2c{letter-spacing:0.003529pt;}
.ls3d{letter-spacing:0.003636pt;}
.ls19{letter-spacing:0.004372pt;}
.ls1a{letter-spacing:0.004884pt;}
.ls10{letter-spacing:0.004929pt;}
.ls28{letter-spacing:0.004997pt;}
.ls24{letter-spacing:0.005496pt;}
.ls21{letter-spacing:0.006870pt;}
.ls20{letter-spacing:0.008284pt;}
.ls3c{letter-spacing:0.008977pt;}
.ls4f{letter-spacing:0.009535pt;}
.ls37{letter-spacing:0.014784pt;}
.ls30{letter-spacing:0.014845pt;}
.ls47{letter-spacing:0.018993pt;}
.ls53{letter-spacing:0.028490pt;}
.ls42{letter-spacing:0.028606pt;}
.ls41{letter-spacing:0.038142pt;}
.ls4b{letter-spacing:0.040700pt;}
.ls2e{letter-spacing:0.068443pt;}
.ls43{letter-spacing:0.214697pt;}
.ls3e{letter-spacing:0.221721pt;}
.ls33{letter-spacing:0.607902pt;}
.ls49{letter-spacing:0.626469pt;}
.ls55{letter-spacing:0.664766pt;}
.ls38{letter-spacing:1.847953pt;}
.ls46{letter-spacing:3.308781pt;}
.ls3f{letter-spacing:3.322300pt;}
.ls32{letter-spacing:5.090472pt;}
.ls0{letter-spacing:6.731552pt;}
.ls13{letter-spacing:7.464719pt;}
.ls35{letter-spacing:8.123633pt;}
.ls34{letter-spacing:10.170077pt;}
.ls7{letter-spacing:14.814691pt;}
.ls48{letter-spacing:16.720614pt;}
.ls4{letter-spacing:21.719557pt;}
.ls25{letter-spacing:22.795968pt;}
.ls45{letter-spacing:25.735936pt;}
.lse{letter-spacing:25.772100pt;}
.ls26{letter-spacing:31.111520pt;}
.ls27{letter-spacing:31.120834pt;}
.ls2d{letter-spacing:33.614632pt;}
.ls12{letter-spacing:34.336344pt;}
.ls29{letter-spacing:34.561191pt;}
.ls11{letter-spacing:34.658619pt;}
.lsf{letter-spacing:35.363424pt;}
.ls2b{letter-spacing:35.834031pt;}
.ls1c{letter-spacing:37.946375pt;}
.ls1b{letter-spacing:37.949156pt;}
.ls22{letter-spacing:41.264163pt;}
.ls2{letter-spacing:44.257051pt;}
.ls16{letter-spacing:44.502471pt;}
.ls1d{letter-spacing:44.999154pt;}
.ls1e{letter-spacing:45.006828pt;}
.ls15{letter-spacing:46.351206pt;}
.lsd{letter-spacing:47.552305pt;}
.lsa{letter-spacing:47.800051pt;}
.ls17{letter-spacing:49.550938pt;}
.ls18{letter-spacing:50.937489pt;}
.ls3b{letter-spacing:56.063887pt;}
.ls3{letter-spacing:56.636646pt;}
.ls3a{letter-spacing:65.061549pt;}
.ls36{letter-spacing:65.075174pt;}
.ls1f{letter-spacing:67.113925pt;}
.ls39{letter-spacing:67.705538pt;}
.ls44{letter-spacing:69.362972pt;}
.ls40{letter-spacing:69.646361pt;}
.ls31{letter-spacing:75.222358pt;}
.ls4a{letter-spacing:82.971793pt;}
.ls8{letter-spacing:97.400205pt;}
.ls9{letter-spacing:124.645018pt;}
.ws85{word-spacing:-143.288747pt;}
.ws83{word-spacing:-125.377653pt;}
.wsef{word-spacing:-120.702492pt;}
.ws86{word-spacing:-107.466560pt;}
.wse4{word-spacing:-99.200000pt;}
.ws4{word-spacing:-98.081326pt;}
.wsf1{word-spacing:-95.631321pt;}
.wsec{word-spacing:-95.383157pt;}
.wsea{word-spacing:-95.354551pt;}
.wseb{word-spacing:-95.345016pt;}
.wsed{word-spacing:-95.306874pt;}
.wsf0{word-spacing:-94.995045pt;}
.wsf2{word-spacing:-94.966555pt;}
.wsf3{word-spacing:-94.938065pt;}
.ws7e{word-spacing:-82.005333pt;}
.ws2{word-spacing:-76.533333pt;}
.wsf7{word-spacing:-66.133333pt;}
.wse7{word-spacing:-48.000000pt;}
.wsc{word-spacing:-45.962667pt;}
.ws1{word-spacing:-44.566541pt;}
.wsa{word-spacing:-42.997333pt;}
.ws9{word-spacing:-40.032000pt;}
.ws7d{word-spacing:-37.333333pt;}
.ws7{word-spacing:-35.584000pt;}
.ws81{word-spacing:-34.854988pt;}
.ws8{word-spacing:-32.618667pt;}
.ws82{word-spacing:-27.386062pt;}
.ws69{word-spacing:-26.101205pt;}
.ws6b{word-spacing:-26.101190pt;}
.wse9{word-spacing:-23.403247pt;}
.wsee{word-spacing:-23.308020pt;}
.wsf5{word-spacing:-22.995386pt;}
.wsf4{word-spacing:-22.954686pt;}
.wse6{word-spacing:-0.240000pt;}
.ws7c{word-spacing:-0.239252pt;}
.ws6{word-spacing:-0.213333pt;}
.wsf6{word-spacing:-0.208000pt;}
.wsa8{word-spacing:-0.203269pt;}
.ws5{word-spacing:-0.186667pt;}
.ws89{word-spacing:-0.182944pt;}
.ws66{word-spacing:-0.176000pt;}
.ws6f{word-spacing:-0.153996pt;}
.ws0{word-spacing:-0.149333pt;}
.wsa9{word-spacing:-0.142288pt;}
.ws84{word-spacing:-0.125378pt;}
.ws28{word-spacing:-0.124447pt;}
.wsb{word-spacing:-0.117333pt;}
.wsd{word-spacing:-0.112003pt;}
.ws1f{word-spacing:-0.087113pt;}
.ws70{word-spacing:-0.085554pt;}
.wse8{word-spacing:-0.072233pt;}
.ws68{word-spacing:-0.016994pt;}
.ws3{word-spacing:0.000000pt;}
.ws71{word-spacing:20.276186pt;}
.ws77{word-spacing:20.618400pt;}
.ws78{word-spacing:20.653841pt;}
.ws75{word-spacing:20.654616pt;}
.ws79{word-spacing:21.301222pt;}
.ws7b{word-spacing:21.302828pt;}
.ws43{word-spacing:22.736688pt;}
.ws45{word-spacing:22.848692pt;}
.ws1b{word-spacing:25.636160pt;}
.ws21{word-spacing:27.005081pt;}
.ws22{word-spacing:27.129529pt;}
.ws26{word-spacing:27.378424pt;}
.ws49{word-spacing:27.627318pt;}
.ws48{word-spacing:27.751766pt;}
.wse{word-spacing:27.888844pt;}
.ws72{word-spacing:28.443121pt;}
.ws74{word-spacing:28.489324pt;}
.ws1c{word-spacing:28.498450pt;}
.ws53{word-spacing:28.871792pt;}
.ws14{word-spacing:28.896875pt;}
.ws2b{word-spacing:29.494029pt;}
.ws44{word-spacing:30.016909pt;}
.ws39{word-spacing:30.365161pt;}
.wse3{word-spacing:30.368628pt;}
.ws3c{word-spacing:30.614055pt;}
.ws63{word-spacing:30.738503pt;}
.ws41{word-spacing:30.865229pt;}
.ws42{word-spacing:30.912936pt;}
.ws27{word-spacing:30.987398pt;}
.ws5f{word-spacing:31.236292pt;}
.ws58{word-spacing:31.609634pt;}
.ws4c{word-spacing:31.734082pt;}
.ws4b{word-spacing:31.858529pt;}
.ws36{word-spacing:32.356319pt;}
.ws1a{word-spacing:32.605213pt;}
.ws2d{word-spacing:32.729661pt;}
.ws3b{word-spacing:32.748432pt;}
.ws40{word-spacing:33.351898pt;}
.ws3f{word-spacing:33.420726pt;}
.ws6e{word-spacing:33.451429pt;}
.ws3e{word-spacing:33.476345pt;}
.ws46{word-spacing:33.725240pt;}
.ws55{word-spacing:33.849687pt;}
.ws5c{word-spacing:34.471924pt;}
.ws76{word-spacing:34.728919pt;}
.ws5a{word-spacing:34.969714pt;}
.ws5b{word-spacing:35.094161pt;}
.ws1e{word-spacing:35.218608pt;}
.ws20{word-spacing:35.236611pt;}
.ws1d{word-spacing:35.237755pt;}
.ws7a{word-spacing:35.371995pt;}
.ws4e{word-spacing:35.467503pt;}
.ws4d{word-spacing:35.591951pt;}
.ws6d{word-spacing:35.675820pt;}
.ws38{word-spacing:35.840845pt;}
.ws5e{word-spacing:36.214187pt;}
.wsf{word-spacing:36.382035pt;}
.ws10{word-spacing:36.401102pt;}
.ws51{word-spacing:36.463082pt;}
.ws94{word-spacing:36.548652pt;}
.ws93{word-spacing:36.555116pt;}
.ws95{word-spacing:36.588708pt;}
.ws5d{word-spacing:36.960872pt;}
.ws3a{word-spacing:37.239856pt;}
.ws31{word-spacing:37.458661pt;}
.ws61{word-spacing:37.583109pt;}
.ws91{word-spacing:37.686369pt;}
.ws4a{word-spacing:37.832003pt;}
.ws24{word-spacing:38.157044pt;}
.ws25{word-spacing:38.205346pt;}
.ws2a{word-spacing:39.076477pt;}
.ws6c{word-spacing:39.096861pt;}
.ws11{word-spacing:39.201187pt;}
.ws17{word-spacing:39.325372pt;}
.wsb9{word-spacing:39.637502pt;}
.wsba{word-spacing:39.705510pt;}
.ws2c{word-spacing:39.823161pt;}
.ws23{word-spacing:39.947609pt;}
.ws47{word-spacing:40.072056pt;}
.ws12{word-spacing:40.657231pt;}
.wsb5{word-spacing:40.857117pt;}
.ws37{word-spacing:41.192083pt;}
.wsdf{word-spacing:41.263656pt;}
.ws59{word-spacing:41.316530pt;}
.wsc2{word-spacing:41.466925pt;}
.ws62{word-spacing:41.565425pt;}
.ws52{word-spacing:41.814320pt;}
.ws96{word-spacing:42.077014pt;}
.wsb6{word-spacing:42.280002pt;}
.ws13{word-spacing:42.337282pt;}
.wsb7{word-spacing:42.483271pt;}
.ws73{word-spacing:42.555634pt;}
.ws65{word-spacing:42.809899pt;}
.wsce{word-spacing:42.889809pt;}
.ws97{word-spacing:43.174675pt;}
.wsbc{word-spacing:43.702886pt;}
.ws3d{word-spacing:43.929925pt;}
.ws57{word-spacing:44.054372pt;}
.ws16{word-spacing:44.178820pt;}
.wsd7{word-spacing:44.312694pt;}
.ws56{word-spacing:44.427714pt;}
.wsaf{word-spacing:44.515963pt;}
.ws15{word-spacing:44.676609pt;}
.ws30{word-spacing:44.862107pt;}
.ws2f{word-spacing:44.882339pt;}
.ws2e{word-spacing:44.925504pt;}
.wsda{word-spacing:45.125771pt;}
.ws64{word-spacing:45.174399pt;}
.ws32{word-spacing:45.423294pt;}
.ws7f{word-spacing:45.552941pt;}
.wsbd{word-spacing:45.938848pt;}
.wsbe{word-spacing:46.142117pt;}
.ws29{word-spacing:46.169978pt;}
.ws60{word-spacing:46.667767pt;}
.wsd4{word-spacing:47.158463pt;}
.ws18{word-spacing:47.414452pt;}
.ws35{word-spacing:48.534478pt;}
.wsab{word-spacing:48.581348pt;}
.ws92{word-spacing:49.211812pt;}
.ws54{word-spacing:49.405610pt;}
.ws19{word-spacing:49.530057pt;}
.wscd{word-spacing:49.800964pt;}
.ws50{word-spacing:50.152294pt;}
.wsc8{word-spacing:50.207502pt;}
.wsae{word-spacing:50.614041pt;}
.wsc9{word-spacing:51.020579pt;}
.wscf{word-spacing:51.427117pt;}
.ws8d{word-spacing:51.773022pt;}
.wsbf{word-spacing:51.833656pt;}
.ws4f{word-spacing:52.392347pt;}
.wsb0{word-spacing:52.443464pt;}
.wse0{word-spacing:52.646733pt;}
.wsb8{word-spacing:52.850002pt;}
.ws8e{word-spacing:53.968344pt;}
.wsa5{word-spacing:54.069618pt;}
.ws9f{word-spacing:54.476156pt;}
.wsa2{word-spacing:54.679425pt;}
.ws34{word-spacing:54.815334pt;}
.wsc7{word-spacing:54.882695pt;}
.wsdb{word-spacing:55.085964pt;}
.wsaa{word-spacing:55.213080pt;}
.wsa6{word-spacing:55.289233pt;}
.wsbb{word-spacing:55.899041pt;}
.wsc6{word-spacing:56.305579pt;}
.wsc3{word-spacing:56.712118pt;}
.wsc0{word-spacing:57.321925pt;}
.wsac{word-spacing:57.728464pt;}
.ws8f{word-spacing:58.176046pt;}
.wsc5{word-spacing:58.338272pt;}
.wsb3{word-spacing:58.541541pt;}
.ws90{word-spacing:58.541933pt;}
.wse1{word-spacing:59.557887pt;}
.wsde{word-spacing:59.964426pt;}
.wsd9{word-spacing:60.980772pt;}
.ws9c{word-spacing:61.997118pt;}
.wsd0{word-spacing:62.810195pt;}
.wsa1{word-spacing:63.216733pt;}
.wsc1{word-spacing:63.420003pt;}
.wsd1{word-spacing:64.029810pt;}
.wsa0{word-spacing:64.842887pt;}
.ws8c{word-spacing:66.042618pt;}
.wsca{word-spacing:66.668197pt;}
.wscb{word-spacing:66.672310pt;}
.wsd2{word-spacing:67.688657pt;}
.ws9a{word-spacing:67.891926pt;}
.ws88{word-spacing:69.518545pt;}
.ws9b{word-spacing:69.721349pt;}
.wsd5{word-spacing:70.534426pt;}
.wsb4{word-spacing:71.144234pt;}
.wsc4{word-spacing:71.347503pt;}
.ws33{word-spacing:73.245843pt;}
.wsa3{word-spacing:73.380195pt;}
.wscc{word-spacing:73.583465pt;}
.wsad{word-spacing:73.786734pt;}
.wsd3{word-spacing:73.990003pt;}
.wsdc{word-spacing:74.396542pt;}
.wsd6{word-spacing:74.599811pt;}
.wsa7{word-spacing:75.081551pt;}
.ws98{word-spacing:78.461926pt;}
.ws8a{word-spacing:79.354307pt;}
.ws8b{word-spacing:79.397496pt;}
.wse2{word-spacing:82.120773pt;}
.wsdd{word-spacing:83.543657pt;}
.wsb2{word-spacing:85.373080pt;}
.wsa4{word-spacing:87.812311pt;}
.ws9e{word-spacing:88.625388pt;}
.ws9d{word-spacing:90.454811pt;}
.wsb1{word-spacing:91.674427pt;}
.ws80{word-spacing:95.358661pt;}
.wsd8{word-spacing:104.683658pt;}
.ws99{word-spacing:117.896159pt;}
.ws67{word-spacing:138.884621pt;}
.ws6a{word-spacing:157.324454pt;}
.ws87{word-spacing:252.388208pt;}
.wse5{word-spacing:301.555200pt;}
._10{margin-left:-8849.051733pt;}
._3c{margin-left:-7492.732267pt;}
._38{margin-left:-28.800000pt;}
._3a{margin-left:-25.728658pt;}
._37{margin-left:-23.573333pt;}
._33{margin-left:-22.359616pt;}
._27{margin-left:-20.306733pt;}
._34{margin-left:-18.295706pt;}
._32{margin-left:-16.261539pt;}
._7{margin-left:-14.924800pt;}
._2d{margin-left:-13.935913pt;}
._8{margin-left:-12.466133pt;}
._30{margin-left:-11.179808pt;}
._2{margin-left:-9.520000pt;}
._12{margin-left:-8.250667pt;}
._c{margin-left:-6.811203pt;}
._3{margin-left:-5.120000pt;}
._5{margin-left:-3.626667pt;}
._0{margin-left:-2.266667pt;}
._1{margin-left:-0.906667pt;}
._4{width:1.573333pt;}
._a{width:2.976000pt;}
._e{width:4.613333pt;}
._15{width:5.567757pt;}
._9{width:6.560000pt;}
._f{width:7.680000pt;}
._11{width:8.806400pt;}
._31{width:10.704919pt;}
._1a{width:15.280486pt;}
._b{width:16.181333pt;}
._23{width:21.672915pt;}
._21{width:26.093825pt;}
._2c{width:31.434085pt;}
._14{width:34.513642pt;}
._17{width:36.605222pt;}
._2e{width:38.781611pt;}
._16{width:41.497110pt;}
._22{width:48.081082pt;}
._35{width:52.246284pt;}
._2f{width:55.289233pt;}
._1f{width:60.626094pt;}
._20{width:70.291276pt;}
._36{width:115.558933pt;}
._24{width:118.860800pt;}
._19{width:191.075734pt;}
._18{width:217.188191pt;}
._1c{width:231.476058pt;}
._1b{width:246.911814pt;}
._1d{width:278.725972pt;}
._1e{width:296.187481pt;}
._28{width:314.631639pt;}
._29{width:360.072978pt;}
._13{width:364.492800pt;}
._25{width:396.450667pt;}
._2a{width:566.796549pt;}
._2b{width:901.220841pt;}
._39{width:1871.598032pt;}
._3b{width:2005.275980pt;}
._6{width:2318.117453pt;}
._26{width:4353.690351pt;}
._d{width:5103.578119pt;}
.fs45{font-size:69.160188pt;}
.fs41{font-size:69.442749pt;}
.fs3c{font-size:72.232640pt;}
.fs5{font-size:74.795022pt;}
.fs2a{font-size:83.584804pt;}
.fs3f{font-size:84.271413pt;}
.fse{font-size:85.333333pt;}
.fs22{font-size:85.553526pt;}
.fs1d{font-size:87.112916pt;}
.fs0{font-size:90.666667pt;}
.fs21{font-size:93.757460pt;}
.fs1f{font-size:93.889173pt;}
.fs20{font-size:93.889227pt;}
.fs43{font-size:94.966555pt;}
.fs40{font-size:95.354551pt;}
.fs2b{font-size:98.511013pt;}
.fs46{font-size:101.749494pt;}
.fs44{font-size:103.224180pt;}
.fs42{font-size:103.645913pt;}
.fs2d{font-size:107.466560pt;}
.fs1b{font-size:112.003391pt;}
.fs12{font-size:117.333333pt;}
.fs1e{font-size:118.225385pt;}
.fs33{font-size:121.962360pt;}
.fs1c{font-size:124.447380pt;}
.fs29{font-size:125.377653pt;}
.fs2c{font-size:125.472405pt;}
.fs3e{font-size:127.474959pt;}
.fs13{font-size:128.000000pt;}
.fs1a{font-size:133.333333pt;}
.fs2f{font-size:137.191360pt;}
.fs37{font-size:138.666667pt;}
.fs32{font-size:142.288059pt;}
.fs2e{font-size:143.288747pt;}
.fs15{font-size:144.000000pt;}
.fs47{font-size:147.093911pt;}
.fs1{font-size:149.333333pt;}
.fs16{font-size:154.666667pt;}
.fs25{font-size:160.000000pt;}
.fsa{font-size:164.607680pt;}
.fs30{font-size:164.629632pt;}
.fs17{font-size:165.333333pt;}
.fs4{font-size:165.798144pt;}
.fs27{font-size:169.869173pt;}
.fs3b{font-size:170.666667pt;}
.fs2{font-size:176.000000pt;}
.fs35{font-size:181.333333pt;}
.fs28{font-size:182.943539pt;}
.fs6{font-size:186.560000pt;}
.fsc{font-size:186.666667pt;}
.fs23{font-size:192.000000pt;}
.fs11{font-size:197.333333pt;}
.fs48{font-size:202.666667pt;}
.fs31{font-size:203.269239pt;}
.fs4a{font-size:208.000000pt;}
.fs38{font-size:209.345813pt;}
.fs34{font-size:213.333329pt;}
.fs10{font-size:213.333333pt;}
.fs24{font-size:215.327093pt;}
.fs36{font-size:229.333333pt;}
.fs26{font-size:239.252320pt;}
.fs39{font-size:240.000000pt;}
.fs19{font-size:256.000000pt;}
.fs49{font-size:272.000000pt;}
.fs18{font-size:288.000000pt;}
.fs3d{font-size:288.930560pt;}
.fs3{font-size:309.489869pt;}
.fsf{font-size:330.666667pt;}
.fs3a{font-size:364.000000pt;}
.fs9{font-size:364.885884pt;}
.fsb{font-size:400.000000pt;}
.fsd{font-size:410.666667pt;}
.fs7{font-size:437.333333pt;}
.fs14{font-size:533.333333pt;}
.fs8{font-size:681.120317pt;}
.y180{bottom:-2642.013675pt;}
.y14b{bottom:-2475.737536pt;}
.y14a{bottom:-2414.757376pt;}
.y17f{bottom:-2353.777216pt;}
.y149{bottom:-2353.772115pt;}
.y148{bottom:-2292.791956pt;}
.y147{bottom:-2231.811796pt;}
.y17e{bottom:-2170.831637pt;}
.y146{bottom:-2142.200801pt;}
.y17d{bottom:-2109.851477pt;}
.y145{bottom:-2081.220642pt;}
.y17c{bottom:-2048.871317pt;}
.y144{bottom:-2020.240482pt;}
.y17b{bottom:-1987.891158pt;}
.y143{bottom:-1959.260322pt;}
.y17a{bottom:-1926.905897pt;}
.y142{bottom:-1898.275062pt;}
.y179{bottom:-1865.925738pt;}
.y141{bottom:-1837.294902pt;}
.y178{bottom:-1804.945578pt;}
.y140{bottom:-1776.314743pt;}
.y177{bottom:-1743.965418pt;}
.y13f{bottom:-1715.334583pt;}
.y176{bottom:-1682.985259pt;}
.y13e{bottom:-1654.354423pt;}
.y175{bottom:-1622.005099pt;}
.y13d{bottom:-1593.374264pt;}
.y24c{bottom:-1590.473305pt;}
.ybe{bottom:-1563.310562pt;}
.y174{bottom:-1561.019839pt;}
.y13c{bottom:-1532.389003pt;}
.y93{bottom:-1501.087496pt;}
.y173{bottom:-1500.039679pt;}
.y274{bottom:-1496.745934pt;}
.y13b{bottom:-1471.408844pt;}
.y92{bottom:-1466.864030pt;}
.y224{bottom:-1464.648323pt;}
.y273{bottom:-1459.697357pt;}
.y91{bottom:-1432.640563pt;}
.y272{bottom:-1422.372297pt;}
.y172{bottom:-1421.232195pt;}
.y13a{bottom:-1410.428684pt;}
.ybd{bottom:-1398.417097pt;}
.y271{bottom:-1385.323720pt;}
.y90{bottom:-1375.176743pt;}
.ybc{bottom:-1364.193630pt;}
.y171{bottom:-1360.246935pt;}
.y139{bottom:-1349.448524pt;}
.y270{bottom:-1348.275143pt;}
.ybb{bottom:-1329.970164pt;}
.y170{bottom:-1299.266775pt;}
.y26f{bottom:-1297.125988pt;}
.y8f{bottom:-1295.256407pt;}
.yba{bottom:-1289.819501pt;}
.y138{bottom:-1288.468365pt;}
.y8e{bottom:-1284.423192pt;}
.y26e{bottom:-1260.077410pt;}
.yb9{bottom:-1255.596035pt;}
.y8d{bottom:-1250.199726pt;}
.y223{bottom:-1248.489647pt;}
.y16f{bottom:-1238.286616pt;}
.y137{bottom:-1227.488205pt;}
.y26d{bottom:-1223.028833pt;}
.yb8{bottom:-1221.375691pt;}
.y8c{bottom:-1215.976259pt;}
.y248{bottom:-1210.984412pt;}
.yb7{bottom:-1187.152224pt;}
.y26c{bottom:-1185.980256pt;}
.y8b{bottom:-1181.752792pt;}
.y16e{bottom:-1177.306456pt;}
.y247{bottom:-1176.405609pt;}
.y136{bottom:-1166.502945pt;}
.yb6{bottom:-1152.928758pt;}
.y26b{bottom:-1148.655197pt;}
.y8a{bottom:-1147.532449pt;}
.y246{bottom:-1141.568754pt;}
.y89{bottom:-1123.845525pt;}
.yb5{bottom:-1118.705291pt;}
.y16d{bottom:-1116.326296pt;}
.y88{bottom:-1113.308982pt;}
.y26a{bottom:-1111.606619pt;}
.y245{bottom:-1106.989951pt;}
.y135{bottom:-1105.522785pt;}
.yb4{bottom:-1084.481825pt;}
.y87{bottom:-1079.085516pt;}
.y269{bottom:-1074.558042pt;}
.y244{bottom:-1072.411147pt;}
.y16c{bottom:-1055.346137pt;}
.yb3{bottom:-1050.258358pt;}
.y86{bottom:-1044.862049pt;}
.y134{bottom:-1044.542625pt;}
.y243{bottom:-1037.832343pt;}
.y268{bottom:-1037.509465pt;}
.y19{bottom:-1025.014578pt;}
.yb2{bottom:-1016.034891pt;}
.y85{bottom:-1010.638582pt;}
.y242{bottom:-1002.995489pt;}
.y267{bottom:-1000.184406pt;}
.y16b{bottom:-994.360876pt;}
.y133{bottom:-983.562466pt;}
.yb1{bottom:-981.811425pt;}
.y84{bottom:-976.415116pt;}
.y241{bottom:-968.416685pt;}
.y266{bottom:-949.311732pt;}
.yb0{bottom:-947.587958pt;}
.y83{bottom:-942.191649pt;}
.y240{bottom:-933.837882pt;}
.y16a{bottom:-933.380717pt;}
.yaf{bottom:-913.364492pt;}
.y265{bottom:-912.263155pt;}
.y82{bottom:-907.968183pt;}
.y23f{bottom:-899.001027pt;}
.yae{bottom:-879.144148pt;}
.y264{bottom:-874.938096pt;}
.y81{bottom:-873.744716pt;}
.y169{bottom:-872.400557pt;}
.y23e{bottom:-864.422224pt;}
.y24b{bottom:-844.943298pt;}
.yad{bottom:-844.920681pt;}
.y80{bottom:-839.521249pt;}
.y263{bottom:-837.889519pt;}
.y23d{bottom:-815.908678pt;}
.y168{bottom:-811.420397pt;}
.yac{bottom:-810.697215pt;}
.y7f{bottom:-802.034390pt;}
.y262{bottom:-800.840941pt;}
.y132{bottom:-797.612510pt;}
.y23c{bottom:-777.975215pt;}
.yab{bottom:-770.546552pt;}
.y7e{bottom:-767.810923pt;}
.y261{bottom:-763.792364pt;}
.y131{bottom:-741.712755pt;}
.yaa{bottom:-736.323086pt;}
.y7d{bottom:-733.587457pt;}
.y167{bottom:-732.607813pt;}
.y260{bottom:-726.467305pt;}
.y23b{bottom:-715.526928pt;}
.ya9{bottom:-702.099619pt;}
.y7c{bottom:-699.363990pt;}
.y25f{bottom:-689.418727pt;}
.y130{bottom:-685.818101pt;}
.y23a{bottom:-680.948124pt;}
.y166{bottom:-671.627653pt;}
.ya8{bottom:-667.876153pt;}
.y7b{bottom:-665.140524pt;}
.y25e{bottom:-652.370150pt;}
.y239{bottom:-646.111270pt;}
.ya7{bottom:-633.652686pt;}
.y7a{bottom:-630.917057pt;}
.y12f{bottom:-629.918346pt;}
.y238{bottom:-611.532466pt;}
.y165{bottom:-610.647494pt;}
.y25d{bottom:-601.220995pt;}
.ya6{bottom:-599.429219pt;}
.y79{bottom:-596.693591pt;}
.y236{bottom:-576.953662pt;}
.y12e{bottom:-574.018591pt;}
.y237{bottom:-568.179936pt;}
.ya5{bottom:-565.205753pt;}
.y25c{bottom:-564.172418pt;}
.y78{bottom:-562.470124pt;}
.y164{bottom:-549.667334pt;}
.y235{bottom:-541.858757pt;}
.ya4{bottom:-530.985409pt;}
.y77{bottom:-528.246657pt;}
.y25b{bottom:-527.123840pt;}
.y12d{bottom:-518.118836pt;}
.y234{bottom:-507.021903pt;}
.ya3{bottom:-496.761943pt;}
.y76{bottom:-494.026314pt;}
.y25a{bottom:-490.075263pt;}
.y163{bottom:-488.687174pt;}
.y233{bottom:-472.443099pt;}
.yd{bottom:-465.749631pt;}
.ya2{bottom:-462.538476pt;}
.y12c{bottom:-462.219082pt;}
.y75{bottom:-459.802847pt;}
.y259{bottom:-452.750204pt;}
.y232{bottom:-437.864295pt;}
.ya1{bottom:-428.315009pt;}
.y162{bottom:-427.707015pt;}
.y74{bottom:-425.579381pt;}
.y258{bottom:-415.701627pt;}
.y12b{bottom:-406.319327pt;}
.y231{bottom:-403.285492pt;}
.ya0{bottom:-394.091543pt;}
.y73{bottom:-391.355914pt;}
.y257{bottom:-378.653049pt;}
.y161{bottom:-366.721754pt;}
.y9f{bottom:-359.868076pt;}
.y72{bottom:-357.132447pt;}
.y230{bottom:-355.546099pt;}
.y12a{bottom:-350.419572pt;}
.y256{bottom:-341.604472pt;}
.ydf{bottom:-339.686000pt;}
.y9e{bottom:-325.644610pt;}
.y71{bottom:-322.908981pt;}
.y22f{bottom:-320.967295pt;}
.y160{bottom:-305.741595pt;}
.y129{bottom:-294.519817pt;}
.y255{bottom:-290.455317pt;}
.y22e{bottom:-286.388492pt;}
.y9d{bottom:-285.493947pt;}
.y254{bottom:-253.406740pt;}
.y22d{bottom:-251.551637pt;}
.y9c{bottom:-251.270481pt;}
.y15f{bottom:-244.761435pt;}
.y128{bottom:-238.620062pt;}
.y70{bottom:-223.202179pt;}
.y9b{bottom:-217.047014pt;}
.y22c{bottom:-216.972833pt;}
.y253{bottom:-216.358162pt;}
.y6f{bottom:-192.089085pt;}
.y15e{bottom:-183.781275pt;}
.y9a{bottom:-182.826670pt;}
.y127{bottom:-182.720307pt;}
.y22b{bottom:-182.394030pt;}
.yde{bottom:-181.834173pt;}
.y252{bottom:-179.033103pt;}
.y6e{bottom:-160.975991pt;}
.ydd{bottom:-155.268043pt;}
.y22a{bottom:-147.815226pt;}
.y251{bottom:-141.984526pt;}
.y6d{bottom:-129.866020pt;}
.ydc{bottom:-128.703873pt;}
.y126{bottom:-126.825653pt;}
.y15d{bottom:-122.801116pt;}
.y229{bottom:-112.978372pt;}
.y250{bottom:-104.935949pt;}
.ydb{bottom:-102.139704pt;}
.y6c{bottom:-98.752926pt;}
.y16{bottom:-79.133064pt;}
.y228{bottom:-78.399568pt;}
.y99{bottom:-77.795385pt;}
.yda{bottom:-75.575535pt;}
.y125{bottom:-70.925898pt;}
.y1f9{bottom:-68.769695pt;}
.y24f{bottom:-67.887371pt;}
.y6b{bottom:-67.639832pt;}
.y18{bottom:-63.605142pt;}
.y15c{bottom:-61.815855pt;}
.yd9{bottom:-49.011365pt;}
.y98{bottom:-46.682291pt;}
.ya{bottom:-35.956629pt;}
.y24e{bottom:-30.562312pt;}
.y227{bottom:-29.886023pt;}
.yc{bottom:-28.900997pt;}
.y1f8{bottom:-21.094363pt;}
.y97{bottom:-15.572320pt;}
.y15b{bottom:-0.835696pt;}
.y0{bottom:0.000000pt;}
.y1af{bottom:0.575707pt;}
.yec{bottom:0.592173pt;}
.y27{bottom:0.750000pt;}
.y2e{bottom:2.083333pt;}
.y11f{bottom:2.424933pt;}
.y3b{bottom:2.674800pt;}
.y1e8{bottom:5.713467pt;}
.y50{bottom:8.880133pt;}
.y9{bottom:11.019717pt;}
.y30{bottom:15.330933pt;}
.y102{bottom:15.377933pt;}
.y96{bottom:15.540774pt;}
.y39{bottom:17.226000pt;}
.y54{bottom:17.226133pt;}
.y28b{bottom:17.234800pt;}
.y57{bottom:17.867067pt;}
.y182{bottom:17.919867pt;}
.y43{bottom:18.037333pt;}
.yb{bottom:18.075144pt;}
.y52{bottom:18.370400pt;}
.y2c{bottom:19.041067pt;}
.y68{bottom:19.575067pt;}
.y1f5{bottom:21.328041pt;}
.y5{bottom:21.466667pt;}
.y5b{bottom:21.590133pt;}
.y49{bottom:21.716800pt;}
.y1a3{bottom:21.924133pt;}
.y3d{bottom:21.984000pt;}
.y3f{bottom:21.984133pt;}
.yc5{bottom:22.494885pt;}
.y46{bottom:22.692000pt;}
.y1aa{bottom:22.707067pt;}
.y4e{bottom:23.170400pt;}
.y29{bottom:23.260400pt;}
.yf0{bottom:23.490000pt;}
.y15{bottom:24.251720pt;}
.y220{bottom:24.508129pt;}
.ye5{bottom:25.839067pt;}
.y66{bottom:25.839093pt;}
.y190{bottom:26.622133pt;}
.y1f{bottom:27.405067pt;}
.y10d{bottom:27.799584pt;}
.y1f1{bottom:28.054706pt;}
.y37{bottom:28.971067pt;}
.yea{bottom:30.178133pt;}
.y289{bottom:30.537027pt;}
.y35{bottom:31.320000pt;}
.yee{bottom:31.320133pt;}
.y226{bottom:32.820315pt;}
.y1d1{bottom:35.235013pt;}
.y1ce{bottom:35.235067pt;}
.y1c4{bottom:36.507467pt;}
.ye{bottom:37.058720pt;}
.y192{bottom:37.584133pt;}
.y1ba{bottom:38.794133pt;}
.y1c0{bottom:39.521867pt;}
.y17{bottom:39.779191pt;}
.y1eb{bottom:39.882880pt;}
.y24d{bottom:40.217059pt;}
.y2b{bottom:43.041067pt;}
.y1{bottom:44.182253pt;}
.y95{bottom:46.653868pt;}
.y1f0{bottom:49.724498pt;}
.ye1{bottom:53.663827pt;}
.yc4{bottom:54.072449pt;}
.y48{bottom:55.050133pt;}
.y45{bottom:56.025333pt;}
.y8{bottom:58.217053pt;}
.y21f{bottom:59.228208pt;}
.y15a{bottom:60.144464pt;}
.y25{bottom:60.291067pt;}
.y109{bottom:61.009662pt;}
.y13{bottom:64.206133pt;}
.y225{bottom:67.399119pt;}
.y11d{bottom:69.305733pt;}
.y4{bottom:70.800000pt;}
.y1ef{bottom:71.394290pt;}
.y18c{bottom:73.254533pt;}
.y94{bottom:77.763839pt;}
.yc2{bottom:80.505733pt;}
.y64{bottom:80.505747pt;}
.ye3{bottom:80.505773pt;}
.y7{bottom:82.633333pt;}
.yc6{bottom:83.702018pt;}
.yc0{bottom:84.179467pt;}
.y1c3{bottom:84.507467pt;}
.y10a{bottom:84.891194pt;}
.y21{bottom:86.071733pt;}
.y110{bottom:86.756858pt;}
.y10{bottom:86.818053pt;}
.y4c{bottom:90.284693pt;}
.y59{bottom:90.284707pt;}
.y14{bottom:91.922573pt;}
.y21e{bottom:94.207392pt;}
.y288{bottom:95.870360pt;}
.ye9{bottom:96.252800pt;}
.y1b9{bottom:97.460800pt;}
.y1a1{bottom:97.986667pt;}
.y278{bottom:97.986800pt;}
.y1bf{bottom:98.188533pt;}
.y1e9{bottom:101.083520pt;}
.y65{bottom:108.330507pt;}
.y4b{bottom:109.050907pt;}
.y58{bottom:109.051027pt;}
.y1d0{bottom:109.901680pt;}
.y1cd{bottom:109.901733pt;}
.y106{bottom:113.872373pt;}
.y11a{bottom:114.092733pt;}
.y1ea{bottom:114.549547pt;}
.y1d{bottom:115.084800pt;}
.ycd{bottom:115.603211pt;}
.y1cf{bottom:117.570987pt;}
.y3{bottom:120.133333pt;}
.y159{bottom:121.124624pt;}
.y63{bottom:121.669853pt;}
.y108{bottom:122.765120pt;}
.y21d{bottom:128.927471pt;}
.y287{bottom:129.499773pt;}
.y1ee{bottom:131.113960pt;}
.y1c2{bottom:132.507467pt;}
.ye2{bottom:135.172440pt;}
.y24a{bottom:135.326840pt;}
.y114{bottom:135.639366pt;}
.yf1{bottom:135.715867pt;}
.y38{bottom:140.098533pt;}
.y279{bottom:142.131467pt;}
.y56{bottom:142.372267pt;}
.y23{bottom:144.738400pt;}
.y222{bottom:146.104605pt;}
.yf{bottom:146.818080pt;}
.y2{bottom:148.710400pt;}
.y1df{bottom:150.429333pt;}
.y292{bottom:152.952800pt;}
.y1b8{bottom:156.127467pt;}
.ye8{bottom:156.252800pt;}
.y100{bottom:156.455733pt;}
.y1be{bottom:156.855200pt;}
.y21c{bottom:163.647550pt;}
.yc7{bottom:165.585629pt;}
.y124{bottom:166.442467pt;}
.y1c1{bottom:167.195333pt;}
.y221{bottom:168.677333pt;}
.y195{bottom:169.815600pt;}
.y51{bottom:180.551867pt;}
.y55{bottom:181.606400pt;}
.y158{bottom:182.104783pt;}
.y1ed{bottom:184.568400pt;}
.y12{bottom:187.806133pt;}
.y53{bottom:188.177867pt;}
.y3a{bottom:196.248267pt;}
.y291{bottom:203.619467pt;}
.yce{bottom:205.400084pt;}
.y101{bottom:209.513467pt;}
.y21b{bottom:211.322882pt;}
.y27a{bottom:223.082800pt;}
.yff{bottom:224.891467pt;}
.y1a2{bottom:228.185600pt;}
.ye4{bottom:233.805733pt;}
.y28d{bottom:239.259467pt;}
.y157{bottom:243.084943pt;}
.ybf{bottom:245.124000pt;}
.y1d8{bottom:245.130133pt;}
.y21a{bottom:246.302066pt;}
.yc8{bottom:247.469311pt;}
.y1f6{bottom:248.839067pt;}
.y290{bottom:254.286133pt;}
.y6{bottom:254.816133pt;}
.y186{bottom:254.905600pt;}
.y115{bottom:263.069183pt;}
.yd2{bottom:270.752933pt;}
.y219{bottom:281.022145pt;}
.y1a0{bottom:285.436400pt;}
.y18d{bottom:288.613067pt;}
.ycf{bottom:295.196934pt;}
.ycc{bottom:296.572533pt;}
.y156{bottom:304.070203pt;}
.y28f{bottom:304.952800pt;}
.y28c{bottom:305.926133pt;}
.y191{bottom:307.774400pt;}
.yc3{bottom:312.658667pt;}
.y184{bottom:312.830400pt;}
.y27b{bottom:314.449200pt;}
.y218{bottom:315.742224pt;}
.yc1{bottom:321.689733pt;}
.yc9{bottom:329.352876pt;}
.y1a9{bottom:331.872933pt;}
.y1cc{bottom:346.463200pt;}
.y1bd{bottom:348.867067pt;}
.y217{bottom:350.721408pt;}
.y28e{bottom:355.619467pt;}
.y1d9{bottom:356.803200pt;}
.y1ec{bottom:373.078933pt;}
.y155{bottom:382.877687pt;}
.yd0{bottom:384.993713pt;}
.y216{bottom:385.441487pt;}
.y1a8{bottom:386.355733pt;}
.y181{bottom:387.538667pt;}
.y284{bottom:389.661600pt;}
.y116{bottom:390.312501pt;}
.y1b1{bottom:390.954267pt;}
.y5a{bottom:411.114400pt;}
.yca{bottom:411.236441pt;}
.y285{bottom:414.393600pt;}
.y41{bottom:415.279333pt;}
.yf4{bottom:415.509067pt;}
.y2a{bottom:416.308400pt;}
.y215{bottom:434.153239pt;}
.y10e{bottom:435.090458pt;}
.y154{bottom:443.857847pt;}
.y11{bottom:448.422400pt;}
.y113{bottom:448.710277pt;}
.y283{bottom:452.328267pt;}
.y10b{bottom:452.628329pt;}
.y188{bottom:462.022667pt;}
.y1d5{bottom:469.081600pt;}
.yd1{bottom:474.790726pt;}
.y69{bottom:476.474800pt;}
.y19f{bottom:487.895067pt;}
.ycb{bottom:493.120240pt;}
.yf3{bottom:496.155200pt;}
.y214{bottom:497.115771pt;}
.y28{bottom:500.298400pt;}
.y187{bottom:504.689333pt;}
.y153{bottom:504.838006pt;}
.y120{bottom:505.991000pt;}
.y117{bottom:517.742542pt;}
.y11c{bottom:523.339733pt;}
.y1d4{bottom:525.081600pt;}
.y61{bottom:528.444133pt;}
.y1ab{bottom:528.875733pt;}
.yef{bottom:530.137733pt;}
.y213{bottom:531.835850pt;}
.y4a{bottom:534.324400pt;}
.y44{bottom:535.494400pt;}
.y47{bottom:537.468400pt;}
.y11e{bottom:540.488667pt;}
.y4d{bottom:540.928133pt;}
.y42{bottom:556.488400pt;}
.yfa{bottom:560.673467pt;}
.y282{bottom:561.501200pt;}
.yf5{bottom:562.612133pt;}
.y152{bottom:565.823267pt;}
.y212{bottom:566.555929pt;}
.y281{bottom:568.102533pt;}
.y185{bottom:569.914000pt;}
.y277{bottom:574.296267pt;}
.y18b{bottom:588.439467pt;}
.yed{bottom:591.329467pt;}
.y26{bottom:591.966133pt;}
.y211{bottom:601.276007pt;}
.yd3{bottom:619.889467pt;}
.y1b7{bottom:622.607067pt;}
.y1db{bottom:623.360000pt;}
.y151{bottom:626.803426pt;}
.y121{bottom:627.748333pt;}
.y1cb{bottom:634.222133pt;}
.y210{bottom:636.255191pt;}
.y294{bottom:637.606933pt;}
.y118{bottom:644.986083pt;}
.y1e7{bottom:645.105733pt;}
.yd6{bottom:650.275952pt;}
.y20f{bottom:670.975270pt;}
.y3e{bottom:677.738667pt;}
.y3c{bottom:678.170667pt;}
.y1da{bottom:679.360000pt;}
.y4f{bottom:680.721600pt;}
.y40{bottom:681.211333pt;}
.y150{bottom:687.783586pt;}
.yd5{bottom:688.015062pt;}
.y2f{bottom:688.839333pt;}
.y249{bottom:694.657333pt;}
.y18a{bottom:695.960000pt;}
.y2d{bottom:702.086933pt;}
.y27f{bottom:705.489733pt;}
.y20e{bottom:705.695349pt;}
.y280{bottom:708.608667pt;}
.y1ca{bottom:708.888800pt;}
.yfc{bottom:718.088533pt;}
.y1e{bottom:724.816133pt;}
.yd4{bottom:725.570662pt;}
.y19d{bottom:727.736000pt;}
.y112{bottom:734.168327pt;}
.y1b4{bottom:736.358400pt;}
.y189{bottom:738.626667pt;}
.y1b0{bottom:738.959867pt;}
.y6a{bottom:738.974079pt;}
.y293{bottom:741.606933pt;}
.y14f{bottom:748.763746pt;}
.y20d{bottom:753.629787pt;}
.y1a6{bottom:764.085333pt;}
.y22{bottom:771.286267pt;}
.y119{bottom:772.415900pt;}
.y1c6{bottom:775.104800pt;}
.yd7{bottom:776.915993pt;}
.y1de{bottom:777.638400pt;}
.y123{bottom:778.658733pt;}
.y1b3{bottom:784.358400pt;}
.yfd{bottom:786.069200pt;}
.y20c{bottom:788.349866pt;}
.y36{bottom:793.299867pt;}
.y19c{bottom:794.402667pt;}
.yd8{bottom:804.826404pt;}
.y183{bottom:807.736267pt;}
.y14e{bottom:809.743905pt;}
.y10c{bottom:820.365464pt;}
.y27d{bottom:820.457333pt;}
.y1e2{bottom:822.276267pt;}
.y20b{bottom:823.069945pt;}
.y122{bottom:824.960867pt;}
.y1b2{bottom:832.358400pt;}
.y1a5{bottom:839.122000pt;}
.y1ae{bottom:844.862000pt;}
.y1ad{bottom:845.437733pt;}
.y1c5{bottom:849.771467pt;}
.yfb{bottom:852.111333pt;}
.yf6{bottom:854.050000pt;}
.y20a{bottom:857.790023pt;}
.y19b{bottom:861.069333pt;}
.ye7{bottom:863.292400pt;}
.y1dd{bottom:870.548000pt;}
.y14d{bottom:870.729166pt;}
.y34{bottom:873.480133pt;}
.y27e{bottom:873.584133pt;}
.y1c8{bottom:874.930133pt;}
.y111{bottom:876.149788pt;}
.y27c{bottom:883.124000pt;}
.yeb{bottom:892.878400pt;}
.y60{bottom:894.511200pt;}
.y1b6{bottom:900.286667pt;}
.y209{bottom:905.724461pt;}
.y103{bottom:919.517067pt;}
.y1e3{bottom:922.757067pt;}
.y11b{bottom:924.424600pt;}
.y10f{bottom:924.473694pt;}
.y1dc{bottom:926.548000pt;}
.yf9{bottom:927.423333pt;}
.y19a{bottom:927.736000pt;}
.y14c{bottom:931.709325pt;}
.y24{bottom:932.028267pt;}
.y20{bottom:932.207733pt;}
.y1e6{bottom:940.141067pt;}
.y208{bottom:940.444540pt;}
.y5f{bottom:943.844533pt;}
.y1b5{bottom:946.728667pt;}
.y1c7{bottom:949.596800pt;}
.y194{bottom:962.237733pt;}
.yfe{bottom:968.558000pt;}
.y207{bottom:975.164619pt;}
.y18f{bottom:979.522133pt;}
.y286{bottom:999.911733pt;}
.y206{bottom:1009.884698pt;}
.y1e1{bottom:1010.387067pt;}
.y193{bottom:1014.237733pt;}
.y1e5{bottom:1014.807733pt;}
.y5e{bottom:1026.214800pt;}
.y1d7{bottom:1030.195200pt;}
.y33{bottom:1034.736667pt;}
.y1bc{bottom:1042.702400pt;}
.y205{bottom:1044.863882pt;}
.y1c{bottom:1047.906400pt;}
.y107{bottom:1070.803259pt;}
.y1a7{bottom:1074.093333pt;}
.y19e{bottom:1075.756133pt;}
.y204{bottom:1079.583961pt;}
.y28a{bottom:1080.054533pt;}
.y1d6{bottom:1086.195200pt;}
.yf8{bottom:1091.400133pt;}
.y1f4{bottom:1092.953882pt;}
.y5d{bottom:1106.214800pt;}
.y1ac{bottom:1108.678667pt;}
.y1b{bottom:1113.270800pt;}
.y203{bottom:1114.304039pt;}
.y1c9{bottom:1115.638133pt;}
.y1f3{bottom:1131.196400pt;}
.y1bb{bottom:1138.277067pt;}
.y1a4{bottom:1139.029067pt;}
.y67{bottom:1141.883067pt;}
.ye0{bottom:1144.038533pt;}
.y1e4{bottom:1145.478400pt;}
.y1e0{bottom:1145.491200pt;}
.yf2{bottom:1147.189200pt;}
.y202{bottom:1149.283223pt;}
.yf7{bottom:1158.066800pt;}
.y199{bottom:1173.732933pt;}
.y1f2{bottom:1186.274690pt;}
.y197{bottom:1193.916667pt;}
.y201{bottom:1197.994976pt;}
.y1d3{bottom:1202.482933pt;}
.y18e{bottom:1204.381733pt;}
.y32{bottom:1207.766533pt;}
.y105{bottom:1208.500000pt;}
.y275{bottom:1251.163467pt;}
.y1a{bottom:1251.250000pt;}
.y62{bottom:1256.500000pt;}
.y200{bottom:1260.698402pt;}
.y276{bottom:1263.893333pt;}
.y198{bottom:1275.108400pt;}
.y5c{bottom:1284.530267pt;}
.ye6{bottom:1292.930267pt;}
.y1ff{bottom:1295.677586pt;}
.y31{bottom:1303.766533pt;}
.y104{bottom:1304.500000pt;}
.y1d2{bottom:1306.482933pt;}
.y196{bottom:1308.583333pt;}
.y1fe{bottom:1330.397665pt;}
.y1fd{bottom:1365.117744pt;}
.y1fc{bottom:1399.837823pt;}
.y1fb{bottom:1434.817007pt;}
.y1fa{bottom:1469.537086pt;}
.y1f7{bottom:1548.564131pt;}
.h93{height:0.000000pt;}
.h8e{height:1.448071pt;}
.h1a{height:19.666667pt;}
.h1e{height:21.000000pt;}
.h7b{height:23.656080pt;}
.h54{height:24.331960pt;}
.h27{height:32.000000pt;}
.h59{height:41.755520pt;}
.h1f{height:43.080907pt;}
.h32{height:43.666667pt;}
.h88{height:49.448321pt;}
.h87{height:50.047908pt;}
.h25{height:55.769373pt;}
.h2a{height:55.881093pt;}
.h8b{height:56.167226pt;}
.h35{height:56.525733pt;}
.h9{height:56.919012pt;}
.h50{height:58.860826pt;}
.h95{height:59.361576pt;}
.h34{height:59.695627pt;}
.h1c{height:60.343747pt;}
.h3f{height:63.616707pt;}
.h1b{height:64.000000pt;}
.h4f{height:64.165144pt;}
.h4e{height:64.505133pt;}
.h28{height:64.525680pt;}
.h30{height:70.092320pt;}
.h36{height:70.148760pt;}
.h1{height:70.357333pt;}
.h78{height:71.464053pt;}
.h7a{height:73.635387pt;}
.h56{height:75.806720pt;}
.h1d{height:76.124360pt;}
.h61{height:79.078177pt;}
.h3e{height:82.320720pt;}
.h72{height:84.492053pt;}
.h8a{height:87.141085pt;}
.h48{height:87.605011pt;}
.h15{height:87.996720pt;}
.h2b{height:88.000000pt;}
.h26{height:88.469333pt;}
.h6{height:89.278187pt;}
.h5e{height:92.257873pt;}
.h7c{height:92.321504pt;}
.h60{height:92.327595pt;}
.h23{height:92.339400pt;}
.h67{height:92.604160pt;}
.h92{height:94.456481pt;}
.h8d{height:94.842393pt;}
.h55{height:94.959248pt;}
.h29{height:96.000000pt;}
.h2d{height:96.893907pt;}
.h90{height:97.635983pt;}
.h2c{height:97.869093pt;}
.h9e{height:98.666667pt;}
.h42{height:99.683018pt;}
.h22{height:100.186733pt;}
.h40{height:100.533333pt;}
.h97{height:101.202988pt;}
.h64{height:101.384415pt;}
.h79{height:104.554667pt;}
.h4b{height:105.304410pt;}
.h4c{height:105.304470pt;}
.h5a{height:105.510273pt;}
.h94{height:105.693899pt;}
.h8f{height:106.125723pt;}
.h31{height:108.000000pt;}
.h71{height:108.576000pt;}
.h6e{height:110.357333pt;}
.h43{height:110.758168pt;}
.h58{height:112.597333pt;}
.h6d{height:112.693220pt;}
.h3{height:115.882667pt;}
.h33{height:116.000000pt;}
.h3a{height:116.618667pt;}
.h65{height:120.042427pt;}
.h74{height:120.224080pt;}
.h57{height:120.640000pt;}
.h66{height:121.661298pt;}
.h46{height:122.699600pt;}
.h44{height:122.712091pt;}
.h37{height:124.000000pt;}
.h75{height:124.661333pt;}
.h11{height:125.266445pt;}
.h82{height:128.682667pt;}
.h8{height:132.638515pt;}
.h3d{height:132.704000pt;}
.h5{height:136.576000pt;}
.h73{height:136.725333pt;}
.h3c{height:136.987333pt;}
.h5f{height:139.120065pt;}
.h49{height:140.661200pt;}
.h13{height:140.746667pt;}
.h53{height:144.768000pt;}
.hb{height:144.770560pt;}
.h16{height:146.663333pt;}
.h24{height:148.789333pt;}
.h98{height:150.613248pt;}
.h62{height:150.722550pt;}
.h99{height:152.810667pt;}
.h45{height:152.904340pt;}
.h47{height:154.091029pt;}
.h70{height:154.453330pt;}
.h9d{height:156.832000pt;}
.h21{height:160.853333pt;}
.h9c{height:163.348667pt;}
.h9b{height:166.037333pt;}
.h77{height:166.853467pt;}
.h5c{height:169.039830pt;}
.h2{height:172.266667pt;}
.h76{height:172.917333pt;}
.h85{height:173.760000pt;}
.h68{height:175.625798pt;}
.h7f{height:180.960000pt;}
.h80{height:187.043467pt;}
.h6a{height:187.820777pt;}
.h6c{height:188.840939pt;}
.h51{height:191.654000pt;}
.h89{height:192.573347pt;}
.h39{height:193.024000pt;}
.h18{height:193.859467pt;}
.he{height:196.482000pt;}
.h83{height:196.836267pt;}
.h38{height:202.343750pt;}
.h9a{height:205.088000pt;}
.h6b{height:205.252254pt;}
.h17{height:205.330000pt;}
.h69{height:209.111778pt;}
.ha{height:210.316000pt;}
.h52{height:218.232800pt;}
.h7d{height:228.220800pt;}
.h7e{height:228.948533pt;}
.h20{height:232.320602pt;}
.h4{height:237.766667pt;}
.h96{height:240.942933pt;}
.h91{height:244.680133pt;}
.h7{height:247.591895pt;}
.h9f{height:249.322667pt;}
.h81{height:255.740017pt;}
.h3b{height:258.021867pt;}
.h84{height:261.710133pt;}
.h14{height:265.011467pt;}
.h2e{height:275.218000pt;}
.h12{height:281.032986pt;}
.h10{height:291.908707pt;}
.h19{height:309.642667pt;}
.hd{height:329.749333pt;}
.h6f{height:351.653200pt;}
.h2f{height:402.133333pt;}
.h8c{height:473.661600pt;}
.hf{height:544.896253pt;}
.h41{height:681.286800pt;}
.hc{height:784.624667pt;}
.h4a{height:836.873333pt;}
.h4d{height:838.993200pt;}
.h5d{height:900.318213pt;}
.h63{height:982.316667pt;}
.h5b{height:993.638933pt;}
.h86{height:1266.915733pt;}
.h0{height:1440.000000pt;}
.w4e{width:0.000000pt;}
.w4c{width:11.918809pt;}
.w4b{width:11.918835pt;}
.w3f{width:27.319627pt;}
.w2f{width:28.100187pt;}
.w1f{width:78.719680pt;}
.w3{width:93.298907pt;}
.w32{width:97.051200pt;}
.wc{width:97.787493pt;}
.w15{width:104.359413pt;}
.wb{width:115.036800pt;}
.w14{width:122.504440pt;}
.w10{width:139.633333pt;}
.we{width:140.876800pt;}
.w16{width:148.890267pt;}
.wf{width:149.336933pt;}
.w1b{width:161.170533pt;}
.wd{width:162.012800pt;}
.w1a{width:165.959467pt;}
.w37{width:185.984000pt;}
.w1d{width:198.709200pt;}
.w19{width:204.171067pt;}
.w6{width:205.330800pt;}
.w1c{width:209.397067pt;}
.w36{width:210.888533pt;}
.w1e{width:211.406933pt;}
.w20{width:326.182933pt;}
.w8{width:373.196667pt;}
.w9{width:386.043333pt;}
.w39{width:388.255867pt;}
.w17{width:410.442000pt;}
.w3e{width:443.506000pt;}
.w22{width:472.447333pt;}
.w18{width:502.209600pt;}
.w21{width:507.512000pt;}
.w23{width:508.279333pt;}
.w13{width:522.681867pt;}
.wa{width:573.796667pt;}
.w3a{width:577.051333pt;}
.w38{width:596.094667pt;}
.w31{width:608.182533pt;}
.w30{width:616.562533pt;}
.w2e{width:620.212533pt;}
.w24{width:635.572800pt;}
.w2d{width:643.535333pt;}
.w3c{width:667.297067pt;}
.w41{width:671.976800pt;}
.w50{width:678.898933pt;}
.w29{width:683.532000pt;}
.w3d{width:714.988000pt;}
.w1{width:717.334533pt;}
.w2a{width:720.752000pt;}
.w25{width:733.239200pt;}
.w27{width:743.766000pt;}
.w43{width:771.305733pt;}
.w42{width:776.788400pt;}
.w28{width:797.896267pt;}
.w26{width:813.249733pt;}
.w40{width:834.442267pt;}
.w2c{width:846.061333pt;}
.w3b{width:888.334400pt;}
.w49{width:895.799333pt;}
.w2b{width:958.356000pt;}
.w46{width:974.416000pt;}
.w7{width:1027.858400pt;}
.w34{width:1198.709200pt;}
.w35{width:1207.109333pt;}
.w33{width:1221.235867pt;}
.w4d{width:1259.971067pt;}
.w4a{width:1261.183200pt;}
.w4f{width:1271.888400pt;}
.w5{width:1295.307467pt;}
.w44{width:1339.412000pt;}
.w11{width:1357.529333pt;}
.w48{width:1532.057333pt;}
.w51{width:1566.681067pt;}
.w45{width:1568.926667pt;}
.w52{width:1676.092800pt;}
.w47{width:1700.989333pt;}
.w12{width:1893.546667pt;}
.w53{width:1924.256000pt;}
.w54{width:2025.248000pt;}
.w4{width:2059.337333pt;}
.w2{width:2325.666667pt;}
.w0{width:2560.000000pt;}
.x12{left:-945.954522pt;}
.x10{left:-605.883030pt;}
.x9{left:-429.826003pt;}
.x7{left:-275.303156pt;}
.x6d{left:-116.430800pt;}
.x5e{left:-34.537395pt;}
.x76{left:-1.453333pt;}
.x0{left:0.000000pt;}
.x87{left:1.358124pt;}
.x22{left:6.060000pt;}
.x24{left:7.500000pt;}
.x93{left:9.869733pt;}
.x3{left:12.133360pt;}
.x5{left:14.300027pt;}
.x74{left:15.481333pt;}
.x78{left:16.760000pt;}
.x4c{left:18.284000pt;}
.x20{left:19.492000pt;}
.x4a{left:20.865333pt;}
.x1b{left:22.457333pt;}
.xeb{left:25.978053pt;}
.x1d{left:27.524000pt;}
.x34{left:31.031067pt;}
.x19{left:32.262667pt;}
.xe{left:34.358067pt;}
.x3e{left:36.208267pt;}
.x41{left:37.401733pt;}
.x2e{left:40.176267pt;}
.x45{left:41.900133pt;}
.x3d{left:43.283733pt;}
.x40{left:49.826800pt;}
.x91{left:51.522800pt;}
.x43{left:52.556933pt;}
.x5b{left:54.782667pt;}
.xd{left:55.981360pt;}
.x3b{left:58.042533pt;}
.x16{left:58.972667pt;}
.x29{left:61.067733pt;}
.xa6{left:64.419733pt;}
.x6a{left:66.110937pt;}
.x48{left:68.997333pt;}
.x4{left:70.499973pt;}
.x2{left:73.199973pt;}
.x67{left:77.663782pt;}
.x1f{left:80.356000pt;}
.x5a{left:86.965600pt;}
.x58{left:88.434227pt;}
.xec{left:91.901840pt;}
.x59{left:92.922080pt;}
.x36{left:103.338267pt;}
.xcd{left:106.980067pt;}
.x8c{left:112.589078pt;}
.x52{left:115.325333pt;}
.xd4{left:116.597280pt;}
.x14{left:119.689160pt;}
.xb4{left:122.532587pt;}
.xdd{left:124.416864pt;}
.x5f{left:125.556228pt;}
.xea{left:132.020213pt;}
.x7e{left:134.035733pt;}
.x90{left:135.273200pt;}
.x88{left:137.064133pt;}
.x80{left:143.329067pt;}
.x7f{left:150.933333pt;}
.xc6{left:156.893333pt;}
.xe5{left:160.510267pt;}
.x2c{left:162.135600pt;}
.x89{left:165.056036pt;}
.x38{left:166.761067pt;}
.x6b{left:171.040000pt;}
.x28{left:173.617333pt;}
.x2a{left:176.355067pt;}
.x7b{left:178.824400pt;}
.xcc{left:182.943600pt;}
.xc7{left:189.173333pt;}
.xdb{left:193.538080pt;}
.xd1{left:195.504267pt;}
.xd0{left:198.538933pt;}
.xbe{left:200.326933pt;}
.x39{left:202.681467pt;}
.xb6{left:203.891333pt;}
.x54{left:208.188667pt;}
.xb0{left:219.624000pt;}
.xaf{left:227.326000pt;}
.xb3{left:235.625467pt;}
.xbf{left:243.639333pt;}
.xc3{left:245.866667pt;}
.x2f{left:251.253867pt;}
.x35{left:270.419733pt;}
.xb1{left:275.476400pt;}
.xb2{left:278.685067pt;}
.x6c{left:281.180000pt;}
.xe7{left:291.087200pt;}
.x8b{left:295.756384pt;}
.xbb{left:302.884267pt;}
.xb5{left:306.623867pt;}
.xa5{left:327.220533pt;}
.x96{left:331.050000pt;}
.x6e{left:336.489367pt;}
.xab{left:339.713067pt;}
.x6{left:355.052267pt;}
.x53{left:360.171867pt;}
.x60{left:368.736771pt;}
.xf1{left:369.881333pt;}
.x3a{left:381.136267pt;}
.x56{left:386.879200pt;}
.x92{left:387.857867pt;}
.x55{left:389.854133pt;}
.xcb{left:404.580000pt;}
.xc9{left:407.427600pt;}
.xca{left:409.615867pt;}
.xb7{left:412.614667pt;}
.xb9{left:419.539333pt;}
.xe9{left:422.120533pt;}
.x30{left:429.708800pt;}
.xad{left:432.612800pt;}
.xae{left:438.935733pt;}
.xa4{left:443.940533pt;}
.x57{left:451.315067pt;}
.xa{left:456.345733pt;}
.xc8{left:462.572800pt;}
.xe0{left:466.962933pt;}
.x8a{left:473.322243pt;}
.xe6{left:480.548533pt;}
.xe8{left:486.243867pt;}
.x85{left:492.628267pt;}
.xc5{left:495.536667pt;}
.x25{left:497.411467pt;}
.x7c{left:505.087467pt;}
.x7a{left:512.781600pt;}
.xa9{left:529.096667pt;}
.x5d{left:532.943205pt;}
.x72{left:536.738267pt;}
.xb8{left:557.714400pt;}
.x8{left:568.646241pt;}
.x3c{left:575.626933pt;}
.x95{left:577.994400pt;}
.x68{left:587.412805pt;}
.x31{left:608.163600pt;}
.xc4{left:610.294267pt;}
.xd9{left:627.579481pt;}
.xd7{left:630.143522pt;}
.x44{left:652.049067pt;}
.x69{left:659.920893pt;}
.xdf{left:672.404029pt;}
.xa8{left:686.558533pt;}
.x97{left:708.326133pt;}
.xaa{left:739.765600pt;}
.x94{left:746.053733pt;}
.xce{left:751.313467pt;}
.x13{left:752.330667pt;}
.x5c{left:753.632933pt;}
.x37{left:766.148267pt;}
.x65{left:767.263467pt;}
.x26{left:779.862667pt;}
.x2b{left:786.349867pt;}
.xd2{left:788.582993pt;}
.x46{left:794.403200pt;}
.x61{left:797.571578pt;}
.xcf{left:801.546533pt;}
.x9d{left:808.152533pt;}
.x86{left:832.619200pt;}
.x3f{left:839.413867pt;}
.x62{left:844.239658pt;}
.x63{left:865.478533pt;}
.x32{left:867.819467pt;}
.x64{left:869.845067pt;}
.xe4{left:883.907200pt;}
.xe1{left:910.202667pt;}
.xed{left:920.462933pt;}
.x98{left:931.133407pt;}
.xe3{left:993.318933pt;}
.x8d{left:996.871091pt;}
.x2d{left:1000.270400pt;}
.x42{left:1036.089333pt;}
.x15{left:1044.820133pt;}
.x33{left:1056.384800pt;}
.x8f{left:1085.373724pt;}
.xda{left:1098.006041pt;}
.x8e{left:1180.037948pt;}
.x7d{left:1190.177600pt;}
.x82{left:1212.252933pt;}
.x11{left:1251.467755pt;}
.x99{left:1273.739378pt;}
.xdc{left:1288.111600pt;}
.xd3{left:1298.816800pt;}
.xd8{left:1300.028933pt;}
.xba{left:1301.374533pt;}
.xee{left:1302.494667pt;}
.xc2{left:1306.818933pt;}
.x50{left:1316.571200pt;}
.x9a{left:1349.965852pt;}
.xde{left:1424.970150pt;}
.xd5{left:1427.073333pt;}
.xb{left:1439.884933pt;}
.x84{left:1444.664000pt;}
.x51{left:1469.772000pt;}
.xbc{left:1477.426667pt;}
.x4b{left:1524.897333pt;}
.xc0{left:1534.165333pt;}
.xc1{left:1536.906667pt;}
.xa2{left:1550.084000pt;}
.xa1{left:1558.134667pt;}
.xa0{left:1561.892000pt;}
.x9e{left:1563.402667pt;}
.x9f{left:1572.969333pt;}
.x66{left:1586.682667pt;}
.x4f{left:1590.168000pt;}
.x9b{left:1599.492279pt;}
.x6f{left:1601.644000pt;}
.x27{left:1617.741333pt;}
.x49{left:1630.785333pt;}
.x47{left:1638.910667pt;}
.xa3{left:1649.934667pt;}
.xe2{left:1683.084000pt;}
.x71{left:1710.838667pt;}
.x70{left:1713.938667pt;}
.x4e{left:1717.157333pt;}
.xbd{left:1720.616000pt;}
.xf0{left:1738.766667pt;}
.xac{left:1740.794667pt;}
.xc{left:1794.908933pt;}
.x9c{left:1893.013175pt;}
.xd6{left:1902.272000pt;}
.x4d{left:1905.122667pt;}
.x73{left:1914.317333pt;}
.x77{left:1916.141333pt;}
.x79{left:1920.332000pt;}
.x1c{left:1973.940000pt;}
.x18{left:1986.202667pt;}
.x17{left:1988.369333pt;}
.x1e{left:1995.076000pt;}
.x1a{left:2036.725333pt;}
.xef{left:2088.538667pt;}
.x83{left:2091.582667pt;}
.xa7{left:2101.248000pt;}
.x75{left:2103.764000pt;}
.x23{left:2147.010667pt;}
.x81{left:2179.870667pt;}
.x1{left:2220.636000pt;}
.xf{left:2318.622667pt;}
.x21{left:2348.668000pt;}
}




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