
    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_8cf00060532b1fd0702f1d6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_6d44ceb58d615d24e40cb8e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912308;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_d964e1c1569cb82de6613f7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.730957;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_d4102e23d5184112b8a291a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.716000;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_8cf00060532b1fd0702f1d6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_6a6b4b71b2d3f19ec371b573.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_55979dabf9a505a2b4a8f4c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942871;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_554201e7672c407c36307cd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929199;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_a8ae0fd976bc0a63f6fd7df6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_f1c730e7fa415ce04a2a1c1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.943359;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_8cf00060532b1fd0702f1d6e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_f83eae42d476b43c5bc3fa81.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900879;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_5d80d0d26110b2d6407a7a60.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084473;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_80b4f3fc2f767d7c9e914436.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.781000;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_99498355bfe413dedd5b0082.woff2')format("woff");}.fff{font-family:fff;line-height:0.912308;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_34945321931a61e3eac5fa6f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.715820;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_b3c55e6188e179d2b7aef7d1.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_8cf00060532b1fd0702f1d6e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.936000;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_81b71e4af2a3bbdd78515234.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.900879;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_ee14a50fd1591f4bba1adca6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.084473;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_80b4f3fc2f767d7c9e914436.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.781000;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_99498355bfe413dedd5b0082.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.912308;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_34945321931a61e3eac5fa6f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.715820;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_b3c55e6188e179d2b7aef7d1.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_80b4f3fc2f767d7c9e914436.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.781000;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_99498355bfe413dedd5b0082.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.912308;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_34945321931a61e3eac5fa6f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.715820;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_b3c55e6188e179d2b7aef7d1.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_9b8400901fc35428fcdcde1c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.900879;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_21e78346f589256656392eea.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.084473;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_80b4f3fc2f767d7c9e914436.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.781000;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_8cf00060532b1fd0702f1d6e.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.936000;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_99498355bfe413dedd5b0082.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.912308;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_34945321931a61e3eac5fa6f.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.715820;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_b3c55e6188e179d2b7aef7d1.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_9b8400901fc35428fcdcde1c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.900879;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_21e78346f589256656392eea.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.084473;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_80b4f3fc2f767d7c9e914436.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.781000;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_8cf00060532b1fd0702f1d6e.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.936000;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_99498355bfe413dedd5b0082.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.912308;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_34945321931a61e3eac5fa6f.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.715820;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_b3c55e6188e179d2b7aef7d1.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_5d71383e3780fa5a87b6c69b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.690918;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;}
.m1{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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v2{vertical-align:6.046800px;}
.v3{vertical-align:32.400600px;}
.lsd{letter-spacing:-1.650000px;}
.lsc{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001800px;}
.ls7{letter-spacing:0.003000px;}
.lsa{letter-spacing:0.003600px;}
.ls6{letter-spacing:8.640000px;}
.ls4{letter-spacing:10.200000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.lsb{letter-spacing:14.400000px;}
.ls2{letter-spacing:19.585200px;}
.ls9{letter-spacing:28.800000px;}
.ls5{letter-spacing:36.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-420.000000px;}
.ws22{word-spacing:-98.766600px;}
.wsf{word-spacing:-92.160000px;}
.wsd{word-spacing:-75.600000px;}
.ws93{word-spacing:-72.479400px;}
.ws23{word-spacing:-36.180000px;}
.ws9d{word-spacing:-30.240000px;}
.ws6{word-spacing:-25.812000px;}
.wsdc{word-spacing:-20.016000px;}
.ws94{word-spacing:-16.680000px;}
.ws95{word-spacing:-15.012000px;}
.wse{word-spacing:-14.520000px;}
.ws70{word-spacing:-14.388000px;}
.ws30{word-spacing:-14.322000px;}
.ws10{word-spacing:-14.124000px;}
.ws50{word-spacing:-14.058000px;}
.ws17{word-spacing:-13.926000px;}
.ws5c{word-spacing:-13.794000px;}
.ws26{word-spacing:-13.728000px;}
.ws82{word-spacing:-13.344000px;}
.ws24{word-spacing:-13.332000px;}
.ws5f{word-spacing:-13.200000px;}
.ws87{word-spacing:-13.002000px;}
.ws7{word-spacing:-12.960000px;}
.ws69{word-spacing:-12.936000px;}
.ws86{word-spacing:-12.870000px;}
.ws7b{word-spacing:-12.738000px;}
.ws5e{word-spacing:-12.672000px;}
.ws6a{word-spacing:-12.606000px;}
.ws4b{word-spacing:-12.540000px;}
.ws5d{word-spacing:-12.474000px;}
.ws18{word-spacing:-12.408000px;}
.ws4a{word-spacing:-12.342000px;}
.ws7e{word-spacing:-12.276000px;}
.ws46{word-spacing:-12.210000px;}
.ws1f{word-spacing:-12.144000px;}
.ws89{word-spacing:-12.078000px;}
.ws1d{word-spacing:-12.012000px;}
.ws90{word-spacing:-11.946000px;}
.ws63{word-spacing:-11.814000px;}
.ws78{word-spacing:-11.616000px;}
.ws85{word-spacing:-11.550000px;}
.ws7f{word-spacing:-11.484000px;}
.ws48{word-spacing:-11.418000px;}
.ws74{word-spacing:-11.352000px;}
.ws60{word-spacing:-11.286000px;}
.ws71{word-spacing:-11.220000px;}
.ws19{word-spacing:-11.154000px;}
.ws4f{word-spacing:-11.088000px;}
.ws72{word-spacing:-11.022000px;}
.ws5a{word-spacing:-10.956000px;}
.ws51{word-spacing:-10.890000px;}
.ws2d{word-spacing:-10.758000px;}
.ws73{word-spacing:-10.692000px;}
.ws14{word-spacing:-10.626000px;}
.ws56{word-spacing:-10.560000px;}
.ws91{word-spacing:-10.494000px;}
.ws29{word-spacing:-10.428000px;}
.ws8c{word-spacing:-10.362000px;}
.ws84{word-spacing:-10.032000px;}
.ws33{word-spacing:-9.966000px;}
.ws7d{word-spacing:-9.900000px;}
.ws79{word-spacing:-9.834000px;}
.ws11{word-spacing:-9.768000px;}
.ws62{word-spacing:-9.702000px;}
.ws4c{word-spacing:-9.636000px;}
.ws68{word-spacing:-9.570000px;}
.ws83{word-spacing:-9.504000px;}
.ws81{word-spacing:-9.438000px;}
.ws6d{word-spacing:-9.372000px;}
.ws32{word-spacing:-9.306000px;}
.ws1a{word-spacing:-9.240000px;}
.ws15{word-spacing:-9.174000px;}
.ws8a{word-spacing:-9.108000px;}
.ws8b{word-spacing:-9.042000px;}
.ws40{word-spacing:-8.976000px;}
.ws57{word-spacing:-8.844000px;}
.ws37{word-spacing:-8.778000px;}
.ws39{word-spacing:-8.712000px;}
.ws35{word-spacing:-8.646000px;}
.ws8f{word-spacing:-8.580000px;}
.ws25{word-spacing:-8.514000px;}
.ws52{word-spacing:-8.316000px;}
.ws8e{word-spacing:-8.250000px;}
.ws2a{word-spacing:-8.184000px;}
.ws80{word-spacing:-8.052000px;}
.ws1e{word-spacing:-7.986000px;}
.ws55{word-spacing:-7.920000px;}
.ws3f{word-spacing:-7.854000px;}
.ws2b{word-spacing:-7.722000px;}
.ws45{word-spacing:-7.656000px;}
.ws2f{word-spacing:-7.590000px;}
.ws38{word-spacing:-7.524000px;}
.ws77{word-spacing:-7.392000px;}
.ws27{word-spacing:-7.326000px;}
.ws2c{word-spacing:-7.260000px;}
.ws6f{word-spacing:-7.128000px;}
.ws44{word-spacing:-6.336000px;}
.ws16{word-spacing:-6.138000px;}
.ws41{word-spacing:-6.072000px;}
.ws61{word-spacing:-6.006000px;}
.ws34{word-spacing:-5.940000px;}
.ws20{word-spacing:-5.676000px;}
.ws2e{word-spacing:-5.610000px;}
.ws53{word-spacing:-5.544000px;}
.ws31{word-spacing:-5.478000px;}
.ws76{word-spacing:-5.412000px;}
.ws54{word-spacing:-5.346000px;}
.wsac{word-spacing:-5.280000px;}
.ws5b{word-spacing:-5.082000px;}
.ws3b{word-spacing:-5.016000px;}
.ws67{word-spacing:-4.950000px;}
.ws28{word-spacing:-4.884000px;}
.ws1c{word-spacing:-4.818000px;}
.ws13{word-spacing:-4.752000px;}
.ws42{word-spacing:-4.488000px;}
.ws47{word-spacing:-4.422000px;}
.ws6b{word-spacing:-4.224000px;}
.ws59{word-spacing:-4.092000px;}
.ws6c{word-spacing:-3.960000px;}
.ws96{word-spacing:-3.780000px;}
.ws64{word-spacing:-3.762000px;}
.ws8d{word-spacing:-3.696000px;}
.ws7a{word-spacing:-3.630000px;}
.ws88{word-spacing:-3.234000px;}
.wsc1{word-spacing:-3.120000px;}
.ws3d{word-spacing:-3.102000px;}
.ws9a{word-spacing:-3.024000px;}
.ws1b{word-spacing:-2.970000px;}
.ws49{word-spacing:-2.904000px;}
.ws75{word-spacing:-2.838000px;}
.ws7c{word-spacing:-2.706000px;}
.ws58{word-spacing:-2.640000px;}
.ws4e{word-spacing:-2.574000px;}
.ws65{word-spacing:-2.508000px;}
.ws3e{word-spacing:-2.442000px;}
.ws4d{word-spacing:-2.310000px;}
.ws3c{word-spacing:-2.244000px;}
.ws3{word-spacing:-2.220000px;}
.ws66{word-spacing:-2.178000px;}
.ws9b{word-spacing:-2.160000px;}
.ws4{word-spacing:-1.998000px;}
.ws36{word-spacing:-1.980000px;}
.wsce{word-spacing:-1.920000px;}
.ws3a{word-spacing:-1.914000px;}
.ws9{word-spacing:-1.887000px;}
.wsc2{word-spacing:-1.860000px;}
.ws6e{word-spacing:-1.848000px;}
.ws12{word-spacing:-1.776000px;}
.wsa7{word-spacing:-1.560000px;}
.ws5{word-spacing:-0.972000px;}
.wsd3{word-spacing:-0.960000px;}
.wsa{word-spacing:-0.918000px;}
.ws43{word-spacing:-0.864000px;}
.wscf{word-spacing:-0.780000px;}
.wsaa{word-spacing:-0.660000px;}
.wsa9{word-spacing:-0.600000px;}
.wscd{word-spacing:-0.300000px;}
.wsc9{word-spacing:-0.120000px;}
.ws2{word-spacing:0.000000px;}
.wsbb{word-spacing:0.360000px;}
.wsaf{word-spacing:0.540000px;}
.wsa4{word-spacing:0.600000px;}
.wsd8{word-spacing:0.780000px;}
.wsbe{word-spacing:1.200000px;}
.wsc4{word-spacing:1.320000px;}
.ws97{word-spacing:1.350000px;}
.wsad{word-spacing:1.440000px;}
.wsd6{word-spacing:1.500000px;}
.wsdd{word-spacing:1.650000px;}
.wsd2{word-spacing:1.680000px;}
.ws9e{word-spacing:2.100000px;}
.wsd5{word-spacing:2.340000px;}
.wsc0{word-spacing:2.400000px;}
.wsa2{word-spacing:2.580000px;}
.wsd7{word-spacing:2.820000px;}
.wsbf{word-spacing:2.940000px;}
.ws9f{word-spacing:3.120000px;}
.wsa1{word-spacing:3.180000px;}
.ws98{word-spacing:3.456000px;}
.wsa8{word-spacing:4.200000px;}
.wscc{word-spacing:4.440000px;}
.wsa3{word-spacing:4.560000px;}
.wsca{word-spacing:4.800000px;}
.wsd1{word-spacing:4.920000px;}
.wsbd{word-spacing:4.980000px;}
.wsc6{word-spacing:5.100000px;}
.wsab{word-spacing:5.640000px;}
.wsd4{word-spacing:5.760000px;}
.wsc7{word-spacing:6.060000px;}
.ws99{word-spacing:7.236000px;}
.wsc8{word-spacing:7.320000px;}
.wsdb{word-spacing:7.344000px;}
.wsa6{word-spacing:7.380000px;}
.wsbc{word-spacing:8.280000px;}
.wsc5{word-spacing:9.120000px;}
.wsa5{word-spacing:9.240000px;}
.wscb{word-spacing:10.260000px;}
.wsda{word-spacing:10.368000px;}
.wsd9{word-spacing:10.380000px;}
.wsd0{word-spacing:10.440000px;}
.wsc3{word-spacing:11.520000px;}
.wsa0{word-spacing:14.040000px;}
.wsae{word-spacing:18.300000px;}
.ws8{word-spacing:20.574000px;}
.wsb{word-spacing:41.597400px;}
.wsc{word-spacing:41.633400px;}
.ws9c{word-spacing:66.634800px;}
.ws21{word-spacing:81.017400px;}
.wsb0{word-spacing:100.535400px;}
.ws0{word-spacing:101.888400px;}
.ws92{word-spacing:107.243400px;}
.wsb7{word-spacing:339.510000px;}
.wsb9{word-spacing:347.007000px;}
.wsb3{word-spacing:349.203600px;}
.wsb1{word-spacing:369.705600px;}
.wsb6{word-spacing:376.488000px;}
.wsb8{word-spacing:384.003000px;}
.wsba{word-spacing:384.713400px;}
.wsb2{word-spacing:386.191200px;}
.wsb5{word-spacing:392.224200px;}
.wsb4{word-spacing:429.235800px;}
._10{margin-left:-2067.096000px;}
._36{margin-left:-1881.693600px;}
._2d{margin-left:-1721.301600px;}
._2b{margin-left:-1718.806800px;}
._3f{margin-left:-1698.882600px;}
._34{margin-left:-1597.708200px;}
._38{margin-left:-1537.439400px;}
._25{margin-left:-1473.690000px;}
._2f{margin-left:-1406.215800px;}
._27{margin-left:-1348.122600px;}
._8{margin-left:-1344.388800px;}
._43{margin-left:-1325.889000px;}
._30{margin-left:-1314.353400px;}
._17{margin-left:-1272.573000px;}
._e{margin-left:-1238.490600px;}
._32{margin-left:-1212.406200px;}
._29{margin-left:-1194.318600px;}
._12{margin-left:-1134.312600px;}
._c{margin-left:-1121.347800px;}
._2a{margin-left:-1086.210000px;}
._3b{margin-left:-1072.250400px;}
._1c{margin-left:-1068.670800px;}
._14{margin-left:-1065.258000px;}
._9{margin-left:-1053.270000px;}
._1e{margin-left:-1029.294000px;}
._a{margin-left:-998.220000px;}
._15{margin-left:-951.156000px;}
._35{margin-left:-937.422000px;}
._23{margin-left:-927.258600px;}
._11{margin-left:-924.264000px;}
._21{margin-left:-915.300000px;}
._18{margin-left:-897.210000px;}
._42{margin-left:-891.096000px;}
._3e{margin-left:-882.966000px;}
._20{margin-left:-878.310000px;}
._13{margin-left:-861.192000px;}
._3c{margin-left:-858.276000px;}
._1a{margin-left:-853.032000px;}
._31{margin-left:-840.294000px;}
._1b{margin-left:-838.440000px;}
._d{margin-left:-813.078000px;}
._16{margin-left:-796.932000px;}
._22{margin-left:-786.240000px;}
._1d{margin-left:-782.130000px;}
._1f{margin-left:-775.422000px;}
._33{margin-left:-767.210400px;}
._40{margin-left:-762.156000px;}
._24{margin-left:-724.446000px;}
._3a{margin-left:-705.240000px;}
._2c{margin-left:-696.222000px;}
._7{margin-left:-693.252000px;}
._1{margin-left:-622.440000px;}
._3d{margin-left:-609.336000px;}
._6{margin-left:-571.860000px;}
._41{margin-left:-563.239800px;}
._0{margin-left:-508.577400px;}
._19{margin-left:-480.864000px;}
._2e{margin-left:-441.126000px;}
._f{margin-left:-399.114000px;}
._28{margin-left:-389.048400px;}
._39{margin-left:-378.162000px;}
._37{margin-left:-366.120000px;}
._26{margin-left:-264.060000px;}
._49{margin-left:-13.186800px;}
._44{margin-left:-10.800000px;}
._4a{margin-left:-9.589800px;}
._4c{margin-left:-8.052000px;}
._b{margin-left:-6.993000px;}
._45{margin-left:-5.940600px;}
._4{margin-left:-4.017600px;}
._3{margin-left:-2.220000px;}
._5{margin-left:-1.043400px;}
._4e{width:1.016400px;}
._2{width:2.196000px;}
._4d{width:3.608400px;}
._4b{width:4.844400px;}
._59{width:6.170400px;}
._4f{width:7.296600px;}
._48{width:8.532000px;}
._47{width:10.492200px;}
._51{width:12.331800px;}
._52{width:13.793400px;}
._58{width:15.214200px;}
._55{width:16.594200px;}
._56{width:17.975400px;}
._57{width:19.142400px;}
._46{width:20.593200px;}
._53{width:21.632400px;}
._54{width:25.293600px;}
._5e{width:28.983000px;}
._5f{width:33.000600px;}
._5d{width:59.007000px;}
._50{width:220.797600px;}
._5b{width:421.730400px;}
._5c{width:436.746600px;}
._5a{width:802.209000px;}
.fcc{color:rgb(105,198,71);}
.fcb{color:rgb(246,131,19);}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(210,32,39);}
.fca{color:rgb(5,99,193);}
.fc9{color:rgb(90,198,243);}
.fc5{color:rgb(61,123,199);}
.fc4{color:transparent;}
.fc3{color:rgb(217,182,26);}
.fc2{color:rgb(213,185,16);}
.fc6{color:rgb(48,169,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:126.000000px;}
.fsc{font-size:144.000000px;}
.fs9{font-size:180.000000px;}
.fsb{font-size:288.000000px;}
.fs3{font-size:300.000000px;}
.fs1{font-size:300.112800px;}
.fs4{font-size:420.000000px;}
.fs2{font-size:420.157800px;}
.y0{bottom:0.000000px;}
.y2{bottom:72.509250px;}
.y4{bottom:72.957000px;}
.y6{bottom:83.368950px;}
.y7{bottom:83.904450px;}
.y1{bottom:84.471900px;}
.ya3{bottom:85.007400px;}
.y36{bottom:120.265350px;}
.y5e{bottom:127.559100px;}
.y62{bottom:127.597200px;}
.y277{bottom:128.119050px;}
.y29d{bottom:128.614950px;}
.y143{bottom:128.869650px;}
.y229{bottom:129.767700px;}
.y183{bottom:130.017750px;}
.y1a1{bottom:131.165700px;}
.y253{bottom:132.716550px;}
.y6d{bottom:134.881650px;}
.y35{bottom:139.817400px;}
.y1fd{bottom:142.999200px;}
.y142{bottom:143.269650px;}
.y61{bottom:143.797200px;}
.y182{bottom:144.417600px;}
.y29c{bottom:144.815100px;}
.y1a0{bottom:145.565700px;}
.y276{bottom:146.119050px;}
.y5d{bottom:147.111000px;}
.y167{bottom:148.669650px;}
.y10b{bottom:149.817750px;}
.y252{bottom:150.716550px;}
.y6c{bottom:152.881650px;}
.y1c5{bottom:152.972700px;}
.y34{bottom:159.069300px;}
.y60{bottom:159.997200px;}
.y1fc{bottom:160.999200px;}
.y29b{bottom:161.015100px;}
.y141{bottom:163.069650px;}
.y275{bottom:164.119050px;}
.y10a{bottom:164.217750px;}
.y19f{bottom:165.365700px;}
.yd5{bottom:165.734100px;}
.y18c{bottom:167.321550px;}
.y5c{bottom:167.562900px;}
.y251{bottom:168.716550px;}
.y174{bottom:169.617600px;}
.y6b{bottom:170.881650px;}
.y1c4{bottom:170.972700px;}
.y5f{bottom:176.197200px;}
.y29a{bottom:177.215100px;}
.y33{bottom:178.321350px;}
.y1fb{bottom:178.999200px;}
.yd4{bottom:180.134250px;}
.y18b{bottom:181.721700px;}
.y274{bottom:182.119050px;}
.y109{bottom:184.017750px;}
.y250{bottom:186.716550px;}
.y140{bottom:187.121550px;}
.y5b{bottom:188.014950px;}
.y17f{bottom:188.269650px;}
.y6a{bottom:188.881650px;}
.y19e{bottom:189.417600px;}
.y299{bottom:193.415100px;}
.y1fa{bottom:196.999200px;}
.y1c3{bottom:197.476650px;}
.y32{bottom:197.573250px;}
.y273{bottom:200.119050px;}
.y13f{bottom:201.521550px;}
.y17e{bottom:202.669650px;}
.y19d{bottom:203.817750px;}
.yd3{bottom:204.186150px;}
.y24f{bottom:204.716550px;}
.y69{bottom:206.881650px;}
.y108{bottom:208.069650px;}
.y5a{bottom:208.467000px;}
.y298{bottom:209.614950px;}
.ya2{bottom:210.292950px;}
.y1f9{bottom:214.999200px;}
.y1c2{bottom:215.476650px;}
.y31{bottom:216.825150px;}
.y272{bottom:218.119050px;}
.yd2{bottom:218.586150px;}
.y13e{bottom:221.321550px;}
.y107{bottom:222.469650px;}
.y24e{bottom:222.716550px;}
.y68{bottom:224.881650px;}
.y166{bottom:225.573600px;}
.y297{bottom:225.815100px;}
.y17d{bottom:226.721700px;}
.y19c{bottom:227.869650px;}
.y59{bottom:228.918900px;}
.ya1{bottom:230.745000px;}
.y1f8{bottom:232.999200px;}
.y1c1{bottom:233.476650px;}
.y30{bottom:236.077200px;}
.y271{bottom:236.119050px;}
.y165{bottom:239.973600px;}
.y24d{bottom:240.716550px;}
.y17c{bottom:241.121550px;}
.y296{bottom:242.015100px;}
.y106{bottom:242.269650px;}
.yd1{bottom:242.638050px;}
.y67{bottom:242.881650px;}
.y13d{bottom:245.373600px;}
.y173{bottom:246.521550px;}
.y58{bottom:249.370950px;}
.y1f7{bottom:250.999200px;}
.ya0{bottom:251.196900px;}
.y1c0{bottom:251.476650px;}
.y29f{bottom:253.855950px;}
.y270{bottom:254.119050px;}
.y2f{bottom:255.329250px;}
.yd0{bottom:257.038200px;}
.y295{bottom:258.215100px;}
.y24c{bottom:258.716550px;}
.y13c{bottom:259.773600px;}
.y66{bottom:260.881650px;}
.y172{bottom:260.921700px;}
.y1a4{bottom:265.173600px;}
.y105{bottom:266.321550px;}
.y1f6{bottom:268.999200px;}
.y1bf{bottom:269.476650px;}
.y57{bottom:269.822850px;}
.y9f{bottom:271.648950px;}
.y29e{bottom:271.855950px;}
.y26f{bottom:272.119050px;}
.y294{bottom:274.415100px;}
.y2e{bottom:274.581150px;}
.y24b{bottom:276.716550px;}
.y13b{bottom:279.573600px;}
.y104{bottom:280.721700px;}
.ycf{bottom:281.090100px;}
.y164{bottom:283.825500px;}
.y171{bottom:284.973600px;}
.y1f5{bottom:286.999200px;}
.y65{bottom:287.385450px;}
.y1be{bottom:287.476650px;}
.y26e{bottom:290.119050px;}
.y56{bottom:290.274750px;}
.y293{bottom:290.614950px;}
.y9e{bottom:292.100850px;}
.y2d{bottom:293.833050px;}
.y24a{bottom:294.716550px;}
.yce{bottom:295.490100px;}
.y163{bottom:298.225500px;}
.y170{bottom:299.373600px;}
.y103{bottom:300.521550px;}
.y13a{bottom:303.625650px;}
.y128{bottom:304.773600px;}
.y1f4{bottom:304.999200px;}
.y64{bottom:305.385450px;}
.y1bd{bottom:305.476650px;}
.y2b5{bottom:305.730000px;}
.y292{bottom:306.815100px;}
.y26d{bottom:308.119050px;}
.y55{bottom:310.726800px;}
.y9d{bottom:312.552900px;}
.y249{bottom:312.716550px;}
.y2c{bottom:313.085100px;}
.ycd{bottom:315.290100px;}
.y139{bottom:318.025500px;}
.y127{bottom:319.173600px;}
.y1f3{bottom:322.999200px;}
.y291{bottom:323.015100px;}
.y16f{bottom:323.425500px;}
.y1bc{bottom:323.476650px;}
.y102{bottom:324.573600px;}
.y2b4{bottom:325.530000px;}
.y26c{bottom:326.119050px;}
.y248{bottom:330.716550px;}
.y54{bottom:331.178700px;}
.y63{bottom:331.889400px;}
.y2b{bottom:332.337000px;}
.y9c{bottom:333.004800px;}
.y138{bottom:337.825500px;}
.y101{bottom:338.973600px;}
.y290{bottom:339.215100px;}
.ycc{bottom:339.342150px;}
.y1f2{bottom:340.999200px;}
.y1bb{bottom:341.476650px;}
.y162{bottom:342.077550px;}
.y17b{bottom:343.225500px;}
.y26b{bottom:344.119050px;}
.y2b3{bottom:345.330000px;}
.y247{bottom:348.716550px;}
.y2a{bottom:351.589050px;}
.y53{bottom:351.630750px;}
.y9b{bottom:353.456850px;}
.ycb{bottom:353.742000px;}
.y28f{bottom:355.415100px;}
.y161{bottom:356.477550px;}
.y17a{bottom:357.625650px;}
.y19b{bottom:358.773600px;}
.y1f1{bottom:358.999200px;}
.y1ba{bottom:359.476650px;}
.y137{bottom:361.877550px;}
.y26a{bottom:362.119050px;}
.y100{bottom:363.025500px;}
.y2b2{bottom:365.130000px;}
.y246{bottom:366.716550px;}
.y228{bottom:368.015100px;}
.y29{bottom:370.840950px;}
.y28e{bottom:371.614950px;}
.y52{bottom:372.082650px;}
.yca{bottom:373.542000px;}
.y9a{bottom:373.908750px;}
.y136{bottom:376.277550px;}
.y1f0{bottom:376.999200px;}
.yff{bottom:377.425500px;}
.y269{bottom:380.119050px;}
.y1b9{bottom:381.305100px;}
.y1a3{bottom:381.677550px;}
.y19a{bottom:382.825500px;}
.y245{bottom:384.716550px;}
.y2b1{bottom:384.930000px;}
.y227{bottom:386.015100px;}
.y28d{bottom:387.815100px;}
.y28{bottom:390.093000px;}
.y51{bottom:392.534700px;}
.y99{bottom:394.360800px;}
.y1ef{bottom:394.999200px;}
.y135{bottom:396.077550px;}
.yfe{bottom:397.225500px;}
.yc9{bottom:397.594050px;}
.y268{bottom:398.119050px;}
.y1b8{bottom:399.305100px;}
.y160{bottom:400.329450px;}
.y179{bottom:401.477550px;}
.y244{bottom:402.716400px;}
.y226{bottom:404.015100px;}
.y27{bottom:409.344900px;}
.yc8{bottom:411.994050px;}
.y50{bottom:412.986600px;}
.y1ee{bottom:412.999200px;}
.y15f{bottom:414.729450px;}
.y98{bottom:414.812700px;}
.y178{bottom:415.877550px;}
.y267{bottom:416.119050px;}
.y199{bottom:417.025500px;}
.y134{bottom:420.129450px;}
.y243{bottom:420.716400px;}
.yfd{bottom:421.277550px;}
.y225{bottom:422.015100px;}
.y1b7{bottom:425.809050px;}
.y26{bottom:428.596950px;}
.y1ed{bottom:430.999200px;}
.yc7{bottom:431.794050px;}
.y2aa{bottom:432.045300px;}
.y4f{bottom:433.438500px;}
.y266{bottom:434.119050px;}
.y133{bottom:434.529450px;}
.y97{bottom:435.264750px;}
.yfc{bottom:435.677550px;}
.y242{bottom:438.716400px;}
.y1a2{bottom:439.929450px;}
.y224{bottom:440.015100px;}
.y198{bottom:441.077550px;}
.y1b6{bottom:443.809050px;}
.y25{bottom:447.848850px;}
.y1ec{bottom:448.999200px;}
.y2a9{bottom:451.845300px;}
.y265{bottom:452.119050px;}
.y4e{bottom:453.890550px;}
.y132{bottom:454.329450px;}
.yfb{bottom:455.477550px;}
.y96{bottom:455.716650px;}
.yc6{bottom:455.845950px;}
.y241{bottom:456.716400px;}
.y223{bottom:458.015100px;}
.y15e{bottom:458.581500px;}
.y126{bottom:459.729450px;}
.y1b5{bottom:461.809050px;}
.y1eb{bottom:466.999200px;}
.y24{bottom:467.100750px;}
.y264{bottom:470.119050px;}
.yc5{bottom:470.245950px;}
.y2a8{bottom:471.645300px;}
.y15d{bottom:472.981500px;}
.y125{bottom:474.129450px;}
.y4d{bottom:474.342450px;}
.y240{bottom:474.716400px;}
.y197{bottom:475.277550px;}
.y222{bottom:476.015100px;}
.y95{bottom:476.168550px;}
.y131{bottom:478.381500px;}
.yfa{bottom:479.529450px;}
.y1b4{bottom:479.809050px;}
.y1ea{bottom:484.999200px;}
.y23{bottom:486.352800px;}
.y263{bottom:488.119050px;}
.yc4{bottom:490.045950px;}
.y23f{bottom:492.716400px;}
.y130{bottom:492.781500px;}
.yf9{bottom:493.929450px;}
.y221{bottom:494.015100px;}
.y4c{bottom:494.794500px;}
.y94{bottom:496.620600px;}
.y1b3{bottom:497.809050px;}
.y177{bottom:498.181500px;}
.y196{bottom:499.329450px;}
.y1e9{bottom:502.999200px;}
.y22{bottom:505.604700px;}
.y262{bottom:506.119050px;}
.y23e{bottom:510.716400px;}
.y220{bottom:512.015100px;}
.y12f{bottom:512.581500px;}
.yf8{bottom:513.729450px;}
.yc3{bottom:514.098000px;}
.y4b{bottom:515.246550px;}
.y1b2{bottom:515.809050px;}
.y15c{bottom:516.833400px;}
.y93{bottom:517.072500px;}
.y124{bottom:517.981500px;}
.y2b0{bottom:518.760750px;}
.y1e8{bottom:520.999200px;}
.y261{bottom:524.119050px;}
.y21{bottom:524.856750px;}
.yc2{bottom:528.498000px;}
.y23d{bottom:528.716400px;}
.y21f{bottom:530.015100px;}
.y15b{bottom:531.233400px;}
.y123{bottom:532.381500px;}
.y195{bottom:533.529450px;}
.y1b1{bottom:533.809050px;}
.y4a{bottom:535.698450px;}
.y12e{bottom:536.633400px;}
.y92{bottom:537.524550px;}
.yf7{bottom:537.781500px;}
.y2af{bottom:538.560750px;}
.y1e7{bottom:538.999200px;}
.y260{bottom:542.119050px;}
.y20{bottom:544.108650px;}
.y23c{bottom:546.716400px;}
.y21e{bottom:548.015100px;}
.yc1{bottom:548.298000px;}
.y12d{bottom:551.033400px;}
.y1b0{bottom:551.809050px;}
.yf6{bottom:552.181500px;}
.y15a{bottom:555.285450px;}
.y49{bottom:556.150350px;}
.y122{bottom:556.433400px;}
.y1e6{bottom:556.999200px;}
.y194{bottom:557.581500px;}
.y2ae{bottom:558.360600px;}
.y25f{bottom:560.119050px;}
.y1f{bottom:563.360700px;}
.y23b{bottom:564.716400px;}
.y21d{bottom:566.015100px;}
.y159{bottom:569.685450px;}
.y1af{bottom:569.809050px;}
.y121{bottom:570.833400px;}
.yf5{bottom:571.981500px;}
.yc0{bottom:572.349900px;}
.y1e5{bottom:574.999200px;}
.y16e{bottom:575.085450px;}
.y48{bottom:576.602400px;}
.y25e{bottom:578.119050px;}
.y2ad{bottom:578.160750px;}
.y1e{bottom:582.612600px;}
.y23a{bottom:582.716400px;}
.y21c{bottom:584.015100px;}
.ybf{bottom:586.749900px;}
.y91{bottom:589.315800px;}
.y158{bottom:589.485450px;}
.y176{bottom:590.633400px;}
.y120{bottom:594.885450px;}
.yf4{bottom:596.033400px;}
.y25d{bottom:596.119050px;}
.y47{bottom:597.054300px;}
.y2ac{bottom:597.960600px;}
.y1e4{bottom:601.503000px;}
.y1d{bottom:601.864500px;}
.y21b{bottom:602.015100px;}
.y90{bottom:604.615650px;}
.y239{bottom:609.220350px;}
.y11f{bottom:609.285450px;}
.yf3{bottom:610.433400px;}
.ybe{bottom:610.801950px;}
.y157{bottom:613.537350px;}
.y25c{bottom:614.119050px;}
.y175{bottom:614.685450px;}
.y46{bottom:617.506350px;}
.y2ab{bottom:617.760750px;}
.y8f{bottom:619.915800px;}
.y21a{bottom:620.015100px;}
.y1c{bottom:621.116550px;}
.ybd{bottom:625.201950px;}
.y156{bottom:627.937350px;}
.y11e{bottom:629.085450px;}
.y25b{bottom:632.119050px;}
.y16d{bottom:633.337350px;}
.yf2{bottom:634.485450px;}
.y8e{bottom:635.215800px;}
.y45{bottom:637.958250px;}
.y219{bottom:638.015100px;}
.y1b{bottom:640.368600px;}
.y1e3{bottom:641.103000px;}
.y1ae{bottom:647.437350px;}
.y155{bottom:647.737350px;}
.y238{bottom:648.820350px;}
.yf1{bottom:648.885450px;}
.ybc{bottom:649.253850px;}
.y25a{bottom:650.119050px;}
.y8d{bottom:650.515800px;}
.y11d{bottom:653.137350px;}
.y218{bottom:656.015100px;}
.y44{bottom:658.410300px;}
.y1e2{bottom:659.103000px;}
.y1a{bottom:659.620500px;}
.ybb{bottom:663.653850px;}
.y8c{bottom:665.815800px;}
.y1c8{bottom:666.099300px;}
.y237{bottom:666.820350px;}
.y1ad{bottom:667.237350px;}
.y11c{bottom:667.537350px;}
.y259{bottom:668.119050px;}
.yf0{bottom:668.685450px;}
.y154{bottom:671.789400px;}
.y217{bottom:674.015100px;}
.y1e1{bottom:677.103000px;}
.y2a7{bottom:677.952450px;}
.y43{bottom:678.862200px;}
.y19{bottom:678.872550px;}
.y8b{bottom:681.115650px;}
.yba{bottom:683.453850px;}
.y236{bottom:684.820350px;}
.y1c7{bottom:685.899150px;}
.y258{bottom:686.119050px;}
.y153{bottom:686.189400px;}
.y1ac{bottom:687.037350px;}
.y11b{bottom:687.337350px;}
.y16c{bottom:691.589250px;}
.y216{bottom:692.015100px;}
.yef{bottom:692.737350px;}
.y1e0{bottom:695.103000px;}
.y8a{bottom:696.415800px;}
.y2a6{bottom:697.752450px;}
.y18{bottom:698.124450px;}
.y42{bottom:699.314100px;}
.y257{bottom:704.119050px;}
.y1c6{bottom:705.699300px;}
.y152{bottom:705.989250px;}
.y1ab{bottom:706.837350px;}
.yee{bottom:707.137350px;}
.yb9{bottom:707.505900px;}
.y215{bottom:710.015100px;}
.y12c{bottom:711.389400px;}
.y89{bottom:711.715800px;}
.y1df{bottom:713.103000px;}
.y17{bottom:717.376350px;}
.y2a5{bottom:717.552450px;}
.y41{bottom:719.766150px;}
.y235{bottom:721.570350px;}
.yb8{bottom:721.905900px;}
.y256{bottom:722.119050px;}
.y12b{bottom:725.789400px;}
.yed{bottom:726.937350px;}
.y88{bottom:727.015800px;}
.y28c{bottom:728.015100px;}
.y234{bottom:729.670350px;}
.y151{bottom:730.041300px;}
.y1de{bottom:731.103000px;}
.y11a{bottom:731.189400px;}
.y214{bottom:736.519050px;}
.y16{bottom:736.628400px;}
.y2a4{bottom:737.352450px;}
.y255{bottom:740.119050px;}
.y40{bottom:740.218200px;}
.yb7{bottom:741.705900px;}
.y87{bottom:742.315800px;}
.y150{bottom:744.441300px;}
.y119{bottom:745.589250px;}
.y28b{bottom:746.015100px;}
.y1dd{bottom:749.103000px;}
.y16b{bottom:749.841300px;}
.yec{bottom:750.989250px;}
.y3{bottom:754.869900px;}
.y5{bottom:755.061000px;}
.y15{bottom:755.880300px;}
.y86{bottom:757.615650px;}
.y254{bottom:758.119050px;}
.y233{bottom:759.598800px;}
.y3f{bottom:760.670100px;}
.y28a{bottom:764.015100px;}
.y14f{bottom:764.241300px;}
.yeb{bottom:765.389400px;}
.yb6{bottom:765.757800px;}
.y2a0{bottom:766.563300px;}
.y1dc{bottom:767.103000px;}
.y232{bottom:767.698800px;}
.y118{bottom:769.641300px;}
.y85{bottom:772.915800px;}
.y14{bottom:775.132350px;}
.y213{bottom:776.119050px;}
.yb5{bottom:780.157800px;}
.y3e{bottom:781.122000px;}
.y289{bottom:782.015100px;}
.y117{bottom:784.041300px;}
.y1db{bottom:785.103000px;}
.y1a7{bottom:785.189250px;}
.y84{bottom:788.215800px;}
.y14e{bottom:788.293200px;}
.yea{bottom:789.441300px;}
.y212{bottom:794.119050px;}
.y13{bottom:794.384250px;}
.y231{bottom:797.627100px;}
.yb4{bottom:799.957800px;}
.y288{bottom:800.015100px;}
.y3d{bottom:801.574050px;}
.y14d{bottom:802.693200px;}
.y1da{bottom:803.103000px;}
.y83{bottom:803.515800px;}
.ye9{bottom:803.841300px;}
.y2a3{bottom:805.427700px;}
.y12a{bottom:808.093350px;}
.y1a6{bottom:809.241300px;}
.y211{bottom:812.119050px;}
.y12{bottom:813.636300px;}
.y287{bottom:818.015100px;}
.y82{bottom:818.815650px;}
.y230{bottom:819.455550px;}
.y1d9{bottom:821.103000px;}
.y3c{bottom:822.025950px;}
.y129{bottom:822.493350px;}
.y193{bottom:823.641300px;}
.yb3{bottom:824.009700px;}
.y22f{bottom:827.555550px;}
.ye8{bottom:827.893200px;}
.y210{bottom:830.119050px;}
.y11{bottom:832.888200px;}
.y81{bottom:834.115650px;}
.y2a2{bottom:835.531800px;}
.y286{bottom:836.015100px;}
.yb2{bottom:838.409850px;}
.ye7{bottom:842.293200px;}
.y3b{bottom:842.478000px;}
.y14c{bottom:846.545250px;}
.y1d8{bottom:847.607100px;}
.y192{bottom:847.693200px;}
.y20f{bottom:848.119050px;}
.y80{bottom:849.415800px;}
.y10{bottom:852.140100px;}
.y285{bottom:854.015100px;}
.y22e{bottom:857.483850px;}
.y14b{bottom:860.945250px;}
.ye6{bottom:862.093350px;}
.yb1{bottom:862.461750px;}
.y3a{bottom:862.929900px;}
.y22d{bottom:865.583850px;}
.y2a1{bottom:865.635750px;}
.y20e{bottom:866.119050px;}
.y116{bottom:866.345250px;}
.yf{bottom:871.392150px;}
.y284{bottom:872.015100px;}
.yb0{bottom:876.861750px;}
.y115{bottom:880.745250px;}
.ye5{bottom:881.893200px;}
.y39{bottom:883.381950px;}
.y20d{bottom:884.119050px;}
.y18a{bottom:884.997300px;}
.y1a5{bottom:886.145250px;}
.y1d7{bottom:887.206950px;}
.y283{bottom:890.015100px;}
.y22c{bottom:895.512300px;}
.y7f{bottom:895.657050px;}
.yaf{bottom:896.661750px;}
.y189{bottom:899.397150px;}
.y114{bottom:900.545250px;}
.y20c{bottom:902.119050px;}
.y22b{bottom:903.612150px;}
.y38{bottom:903.833850px;}
.yd{bottom:903.943050px;}
.y14a{bottom:904.797150px;}
.y1d6{bottom:905.206950px;}
.ye4{bottom:905.945250px;}
.y282{bottom:908.015100px;}
.y7e{bottom:910.957050px;}
.y149{bottom:919.197300px;}
.y20b{bottom:920.119050px;}
.ye3{bottom:920.345250px;}
.yae{bottom:920.713650px;}
.yc{bottom:921.943050px;}
.y1d5{bottom:923.206950px;}
.y188{bottom:923.449200px;}
.y37{bottom:924.285900px;}
.y113{bottom:924.597150px;}
.y281{bottom:926.015100px;}
.y7d{bottom:926.257200px;}
.y22a{bottom:933.540600px;}
.yad{bottom:935.113800px;}
.y187{bottom:937.849200px;}
.y20a{bottom:938.119050px;}
.y112{bottom:938.997300px;}
.y7c{bottom:941.557200px;}
.y280{bottom:944.015100px;}
.ye2{bottom:944.397150px;}
.yb{bottom:948.446850px;}
.y1d4{bottom:949.710900px;}
.yac{bottom:954.913800px;}
.y209{bottom:956.119050px;}
.y7b{bottom:956.857200px;}
.y186{bottom:957.649200px;}
.ye1{bottom:958.797150px;}
.y27f{bottom:962.015100px;}
.y111{bottom:963.049200px;}
.ya{bottom:966.446850px;}
.y1d3{bottom:967.710900px;}
.y7a{bottom:972.157050px;}
.y208{bottom:974.119050px;}
.y110{bottom:977.449200px;}
.y191{bottom:978.597150px;}
.yab{bottom:978.965850px;}
.y27e{bottom:980.015100px;}
.y185{bottom:981.701100px;}
.ye0{bottom:982.849200px;}
.y1d2{bottom:985.710900px;}
.y79{bottom:987.457050px;}
.y207{bottom:992.119050px;}
.y9{bottom:992.950800px;}
.yaa{bottom:993.365700px;}
.y184{bottom:996.101100px;}
.ydf{bottom:997.249200px;}
.y27d{bottom:998.015100px;}
.ye{bottom:1000.564800px;}
.y181{bottom:1001.501100px;}
.y190{bottom:1002.649200px;}
.y78{bottom:1002.757050px;}
.y1d1{bottom:1003.710900px;}
.y206{bottom:1010.119050px;}
.y8{bottom:1010.950800px;}
.ya9{bottom:1013.165700px;}
.y180{bottom:1015.901250px;}
.y27c{bottom:1016.015100px;}
.yde{bottom:1017.049200px;}
.y77{bottom:1018.057050px;}
.y10f{bottom:1021.301100px;}
.y148{bottom:1021.301250px;}
.y1d0{bottom:1021.710900px;}
.y205{bottom:1028.119050px;}
.y76{bottom:1033.357050px;}
.y27b{bottom:1034.015100px;}
.y10e{bottom:1035.701100px;}
.y147{bottom:1035.701250px;}
.ya8{bottom:1037.217750px;}
.y1cf{bottom:1039.710900px;}
.ydd{bottom:1041.101100px;}
.y204{bottom:1046.119050px;}
.y75{bottom:1048.657050px;}
.y1aa{bottom:1050.637500px;}
.ya7{bottom:1051.617750px;}
.y27a{bottom:1052.015100px;}
.ydc{bottom:1055.501100px;}
.y16a{bottom:1055.501250px;}
.y1ce{bottom:1057.710900px;}
.y10d{bottom:1059.753150px;}
.y74{bottom:1063.957050px;}
.y203{bottom:1064.119050px;}
.y279{bottom:1070.015100px;}
.ya6{bottom:1071.417750px;}
.y10c{bottom:1074.153150px;}
.y18f{bottom:1075.301100px;}
.y1cd{bottom:1075.710900px;}
.y73{bottom:1079.257050px;}
.ydb{bottom:1079.553150px;}
.y202{bottom:1082.119050px;}
.y1cc{bottom:1093.710900px;}
.y1a9{bottom:1093.837500px;}
.yda{bottom:1093.953150px;}
.y72{bottom:1094.557050px;}
.y278{bottom:1096.518900px;}
.y18e{bottom:1099.353150px;}
.y201{bottom:1100.119050px;}
.yd6{bottom:1109.035500px;}
.y71{bottom:1109.857050px;}
.y1cb{bottom:1111.710900px;}
.y169{bottom:1113.753150px;}
.yd9{bottom:1118.005050px;}
.y146{bottom:1118.005200px;}
.y200{bottom:1118.119050px;}
.y70{bottom:1125.157050px;}
.y1ca{bottom:1129.710900px;}
.yd8{bottom:1132.405050px;}
.y145{bottom:1132.405200px;}
.y1ff{bottom:1136.119050px;}
.y1a8{bottom:1137.037500px;}
.y18d{bottom:1137.805050px;}
.y168{bottom:1137.805200px;}
.y6f{bottom:1140.457050px;}
.y1c9{bottom:1147.710900px;}
.yd7{bottom:1152.205050px;}
.y144{bottom:1152.205200px;}
.y1fe{bottom:1154.119050px;}
.y6e{bottom:1155.757050px;}
.ya4{bottom:1201.511100px;}
.ya5{bottom:1203.022800px;}
.h17{height:34.945312px;}
.h19{height:35.156250px;}
.hf{height:37.179199px;}
.h13{height:37.378418px;}
.h8{height:39.312000px;}
.hc{height:39.313477px;}
.hd{height:39.366211px;}
.h7{height:39.474000px;}
.he{height:39.550781px;}
.h10{height:39.577148px;}
.h2{height:41.454000px;}
.h9{height:43.681641px;}
.h1f{height:43.740234px;}
.ha{height:43.945312px;}
.h21{height:43.974609px;}
.h16{height:46.825195px;}
.h1e{height:48.049805px;}
.h11{height:48.114258px;}
.h12{height:48.372070px;}
.h20{height:51.082031px;}
.hb{height:51.750000px;}
.h22{height:51.972656px;}
.h27{height:52.488281px;}
.h15{height:52.560000px;}
.h18{height:57.169922px;}
.h24{height:71.766211px;}
.h25{height:71.977148px;}
.h23{height:71.977748px;}
.h26{height:85.148438px;}
.h1c{height:102.164062px;}
.h1d{height:124.734375px;}
.h14{height:155.917969px;}
.h1b{height:155.918569px;}
.h1a{height:204.328125px;}
.h5{height:215.625000px;}
.h3{height:215.706075px;}
.h6{height:297.360000px;}
.h4{height:297.471722px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.643400px;}
.x8{left:68.031450px;}
.x1b{left:72.776850px;}
.x23{left:74.031450px;}
.x18{left:79.530450px;}
.x25{left:84.779400px;}
.x6{left:96.944850px;}
.x1f{left:99.504600px;}
.x9{left:104.598450px;}
.x14{left:106.299150px;}
.x5{left:108.374100px;}
.x19{left:110.551200px;}
.x2c{left:117.879900px;}
.x30{left:123.708900px;}
.x2f{left:124.732050px;}
.x24{left:127.559100px;}
.x2b{left:133.513800px;}
.x2d{left:135.354750px;}
.x1d{left:140.314950px;}
.x4{left:142.368300px;}
.x32{left:197.802150px;}
.x1c{left:208.346400px;}
.x1a{left:215.016000px;}
.x37{left:227.937750px;}
.x31{left:231.714300px;}
.x38{left:242.157600px;}
.x36{left:248.409600px;}
.x39{left:256.192350px;}
.x17{left:280.629900px;}
.x27{left:286.271400px;}
.x2e{left:329.282100px;}
.x33{left:345.007050px;}
.x26{left:349.346400px;}
.x28{left:368.097600px;}
.x2a{left:386.449200px;}
.x34{left:389.464350px;}
.x35{left:399.251700px;}
.x29{left:461.720700px;}
.x1{left:511.976100px;}
.x21{left:534.176250px;}
.x7{left:567.081150px;}
.xe{left:581.778450px;}
.x22{left:584.537550px;}
.xa{left:596.738100px;}
.xd{left:605.154750px;}
.x10{left:611.128800px;}
.xf{left:612.957600px;}
.x13{left:615.692850px;}
.xb{left:617.239800px;}
.x12{left:624.861300px;}
.xc{left:634.041900px;}
.x11{left:652.837950px;}
.x20{left:658.648500px;}
.x2{left:705.924150px;}
.x1e{left:772.793700px;}
.x16{left:776.033700px;}
.x15{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:5.374933pt;}
.v3{vertical-align:28.800533pt;}
.lsd{letter-spacing:-1.466667pt;}
.lsc{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001600pt;}
.ls7{letter-spacing:0.002667pt;}
.lsa{letter-spacing:0.003200pt;}
.ls6{letter-spacing:7.680000pt;}
.ls4{letter-spacing:9.066667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.lsb{letter-spacing:12.800000pt;}
.ls2{letter-spacing:17.409067pt;}
.ls9{letter-spacing:25.600000pt;}
.ls5{letter-spacing:32.000000pt;}
.ws1{word-spacing:-373.333333pt;}
.ws22{word-spacing:-87.792533pt;}
.wsf{word-spacing:-81.920000pt;}
.wsd{word-spacing:-67.200000pt;}
.ws93{word-spacing:-64.426133pt;}
.ws23{word-spacing:-32.160000pt;}
.ws9d{word-spacing:-26.880000pt;}
.ws6{word-spacing:-22.944000pt;}
.wsdc{word-spacing:-17.792000pt;}
.ws94{word-spacing:-14.826667pt;}
.ws95{word-spacing:-13.344000pt;}
.wse{word-spacing:-12.906667pt;}
.ws70{word-spacing:-12.789333pt;}
.ws30{word-spacing:-12.730667pt;}
.ws10{word-spacing:-12.554667pt;}
.ws50{word-spacing:-12.496000pt;}
.ws17{word-spacing:-12.378667pt;}
.ws5c{word-spacing:-12.261333pt;}
.ws26{word-spacing:-12.202667pt;}
.ws82{word-spacing:-11.861333pt;}
.ws24{word-spacing:-11.850667pt;}
.ws5f{word-spacing:-11.733333pt;}
.ws87{word-spacing:-11.557333pt;}
.ws7{word-spacing:-11.520000pt;}
.ws69{word-spacing:-11.498667pt;}
.ws86{word-spacing:-11.440000pt;}
.ws7b{word-spacing:-11.322667pt;}
.ws5e{word-spacing:-11.264000pt;}
.ws6a{word-spacing:-11.205333pt;}
.ws4b{word-spacing:-11.146667pt;}
.ws5d{word-spacing:-11.088000pt;}
.ws18{word-spacing:-11.029333pt;}
.ws4a{word-spacing:-10.970667pt;}
.ws7e{word-spacing:-10.912000pt;}
.ws46{word-spacing:-10.853333pt;}
.ws1f{word-spacing:-10.794667pt;}
.ws89{word-spacing:-10.736000pt;}
.ws1d{word-spacing:-10.677333pt;}
.ws90{word-spacing:-10.618667pt;}
.ws63{word-spacing:-10.501333pt;}
.ws78{word-spacing:-10.325333pt;}
.ws85{word-spacing:-10.266667pt;}
.ws7f{word-spacing:-10.208000pt;}
.ws48{word-spacing:-10.149333pt;}
.ws74{word-spacing:-10.090667pt;}
.ws60{word-spacing:-10.032000pt;}
.ws71{word-spacing:-9.973333pt;}
.ws19{word-spacing:-9.914667pt;}
.ws4f{word-spacing:-9.856000pt;}
.ws72{word-spacing:-9.797333pt;}
.ws5a{word-spacing:-9.738667pt;}
.ws51{word-spacing:-9.680000pt;}
.ws2d{word-spacing:-9.562667pt;}
.ws73{word-spacing:-9.504000pt;}
.ws14{word-spacing:-9.445333pt;}
.ws56{word-spacing:-9.386667pt;}
.ws91{word-spacing:-9.328000pt;}
.ws29{word-spacing:-9.269333pt;}
.ws8c{word-spacing:-9.210667pt;}
.ws84{word-spacing:-8.917333pt;}
.ws33{word-spacing:-8.858667pt;}
.ws7d{word-spacing:-8.800000pt;}
.ws79{word-spacing:-8.741333pt;}
.ws11{word-spacing:-8.682667pt;}
.ws62{word-spacing:-8.624000pt;}
.ws4c{word-spacing:-8.565333pt;}
.ws68{word-spacing:-8.506667pt;}
.ws83{word-spacing:-8.448000pt;}
.ws81{word-spacing:-8.389333pt;}
.ws6d{word-spacing:-8.330667pt;}
.ws32{word-spacing:-8.272000pt;}
.ws1a{word-spacing:-8.213333pt;}
.ws15{word-spacing:-8.154667pt;}
.ws8a{word-spacing:-8.096000pt;}
.ws8b{word-spacing:-8.037333pt;}
.ws40{word-spacing:-7.978667pt;}
.ws57{word-spacing:-7.861333pt;}
.ws37{word-spacing:-7.802667pt;}
.ws39{word-spacing:-7.744000pt;}
.ws35{word-spacing:-7.685333pt;}
.ws8f{word-spacing:-7.626667pt;}
.ws25{word-spacing:-7.568000pt;}
.ws52{word-spacing:-7.392000pt;}
.ws8e{word-spacing:-7.333333pt;}
.ws2a{word-spacing:-7.274667pt;}
.ws80{word-spacing:-7.157333pt;}
.ws1e{word-spacing:-7.098667pt;}
.ws55{word-spacing:-7.040000pt;}
.ws3f{word-spacing:-6.981333pt;}
.ws2b{word-spacing:-6.864000pt;}
.ws45{word-spacing:-6.805333pt;}
.ws2f{word-spacing:-6.746667pt;}
.ws38{word-spacing:-6.688000pt;}
.ws77{word-spacing:-6.570667pt;}
.ws27{word-spacing:-6.512000pt;}
.ws2c{word-spacing:-6.453333pt;}
.ws6f{word-spacing:-6.336000pt;}
.ws44{word-spacing:-5.632000pt;}
.ws16{word-spacing:-5.456000pt;}
.ws41{word-spacing:-5.397333pt;}
.ws61{word-spacing:-5.338667pt;}
.ws34{word-spacing:-5.280000pt;}
.ws20{word-spacing:-5.045333pt;}
.ws2e{word-spacing:-4.986667pt;}
.ws53{word-spacing:-4.928000pt;}
.ws31{word-spacing:-4.869333pt;}
.ws76{word-spacing:-4.810667pt;}
.ws54{word-spacing:-4.752000pt;}
.wsac{word-spacing:-4.693333pt;}
.ws5b{word-spacing:-4.517333pt;}
.ws3b{word-spacing:-4.458667pt;}
.ws67{word-spacing:-4.400000pt;}
.ws28{word-spacing:-4.341333pt;}
.ws1c{word-spacing:-4.282667pt;}
.ws13{word-spacing:-4.224000pt;}
.ws42{word-spacing:-3.989333pt;}
.ws47{word-spacing:-3.930667pt;}
.ws6b{word-spacing:-3.754667pt;}
.ws59{word-spacing:-3.637333pt;}
.ws6c{word-spacing:-3.520000pt;}
.ws96{word-spacing:-3.360000pt;}
.ws64{word-spacing:-3.344000pt;}
.ws8d{word-spacing:-3.285333pt;}
.ws7a{word-spacing:-3.226667pt;}
.ws88{word-spacing:-2.874667pt;}
.wsc1{word-spacing:-2.773333pt;}
.ws3d{word-spacing:-2.757333pt;}
.ws9a{word-spacing:-2.688000pt;}
.ws1b{word-spacing:-2.640000pt;}
.ws49{word-spacing:-2.581333pt;}
.ws75{word-spacing:-2.522667pt;}
.ws7c{word-spacing:-2.405333pt;}
.ws58{word-spacing:-2.346667pt;}
.ws4e{word-spacing:-2.288000pt;}
.ws65{word-spacing:-2.229333pt;}
.ws3e{word-spacing:-2.170667pt;}
.ws4d{word-spacing:-2.053333pt;}
.ws3c{word-spacing:-1.994667pt;}
.ws3{word-spacing:-1.973333pt;}
.ws66{word-spacing:-1.936000pt;}
.ws9b{word-spacing:-1.920000pt;}
.ws4{word-spacing:-1.776000pt;}
.ws36{word-spacing:-1.760000pt;}
.wsce{word-spacing:-1.706667pt;}
.ws3a{word-spacing:-1.701333pt;}
.ws9{word-spacing:-1.677333pt;}
.wsc2{word-spacing:-1.653333pt;}
.ws6e{word-spacing:-1.642667pt;}
.ws12{word-spacing:-1.578667pt;}
.wsa7{word-spacing:-1.386667pt;}
.ws5{word-spacing:-0.864000pt;}
.wsd3{word-spacing:-0.853333pt;}
.wsa{word-spacing:-0.816000pt;}
.ws43{word-spacing:-0.768000pt;}
.wscf{word-spacing:-0.693333pt;}
.wsaa{word-spacing:-0.586667pt;}
.wsa9{word-spacing:-0.533333pt;}
.wscd{word-spacing:-0.266667pt;}
.wsc9{word-spacing:-0.106667pt;}
.ws2{word-spacing:0.000000pt;}
.wsbb{word-spacing:0.320000pt;}
.wsaf{word-spacing:0.480000pt;}
.wsa4{word-spacing:0.533333pt;}
.wsd8{word-spacing:0.693333pt;}
.wsbe{word-spacing:1.066667pt;}
.wsc4{word-spacing:1.173333pt;}
.ws97{word-spacing:1.200000pt;}
.wsad{word-spacing:1.280000pt;}
.wsd6{word-spacing:1.333333pt;}
.wsdd{word-spacing:1.466667pt;}
.wsd2{word-spacing:1.493333pt;}
.ws9e{word-spacing:1.866667pt;}
.wsd5{word-spacing:2.080000pt;}
.wsc0{word-spacing:2.133333pt;}
.wsa2{word-spacing:2.293333pt;}
.wsd7{word-spacing:2.506667pt;}
.wsbf{word-spacing:2.613333pt;}
.ws9f{word-spacing:2.773333pt;}
.wsa1{word-spacing:2.826667pt;}
.ws98{word-spacing:3.072000pt;}
.wsa8{word-spacing:3.733333pt;}
.wscc{word-spacing:3.946667pt;}
.wsa3{word-spacing:4.053333pt;}
.wsca{word-spacing:4.266667pt;}
.wsd1{word-spacing:4.373333pt;}
.wsbd{word-spacing:4.426667pt;}
.wsc6{word-spacing:4.533333pt;}
.wsab{word-spacing:5.013333pt;}
.wsd4{word-spacing:5.120000pt;}
.wsc7{word-spacing:5.386667pt;}
.ws99{word-spacing:6.432000pt;}
.wsc8{word-spacing:6.506667pt;}
.wsdb{word-spacing:6.528000pt;}
.wsa6{word-spacing:6.560000pt;}
.wsbc{word-spacing:7.360000pt;}
.wsc5{word-spacing:8.106667pt;}
.wsa5{word-spacing:8.213333pt;}
.wscb{word-spacing:9.120000pt;}
.wsda{word-spacing:9.216000pt;}
.wsd9{word-spacing:9.226667pt;}
.wsd0{word-spacing:9.280000pt;}
.wsc3{word-spacing:10.240000pt;}
.wsa0{word-spacing:12.480000pt;}
.wsae{word-spacing:16.266667pt;}
.ws8{word-spacing:18.288000pt;}
.wsb{word-spacing:36.975467pt;}
.wsc{word-spacing:37.007467pt;}
.ws9c{word-spacing:59.230933pt;}
.ws21{word-spacing:72.015467pt;}
.wsb0{word-spacing:89.364800pt;}
.ws0{word-spacing:90.567467pt;}
.ws92{word-spacing:95.327467pt;}
.wsb7{word-spacing:301.786667pt;}
.wsb9{word-spacing:308.450667pt;}
.wsb3{word-spacing:310.403200pt;}
.wsb1{word-spacing:328.627200pt;}
.wsb6{word-spacing:334.656000pt;}
.wsb8{word-spacing:341.336000pt;}
.wsba{word-spacing:341.967467pt;}
.wsb2{word-spacing:343.281067pt;}
.wsb5{word-spacing:348.643733pt;}
.wsb4{word-spacing:381.542933pt;}
._10{margin-left:-1837.418667pt;}
._36{margin-left:-1672.616533pt;}
._2d{margin-left:-1530.045867pt;}
._2b{margin-left:-1527.828267pt;}
._3f{margin-left:-1510.117867pt;}
._34{margin-left:-1420.185067pt;}
._38{margin-left:-1366.612800pt;}
._25{margin-left:-1309.946667pt;}
._2f{margin-left:-1249.969600pt;}
._27{margin-left:-1198.331200pt;}
._8{margin-left:-1195.012267pt;}
._43{margin-left:-1178.568000pt;}
._30{margin-left:-1168.314133pt;}
._17{margin-left:-1131.176000pt;}
._e{margin-left:-1100.880533pt;}
._32{margin-left:-1077.694400pt;}
._29{margin-left:-1061.616533pt;}
._12{margin-left:-1008.277867pt;}
._c{margin-left:-996.753600pt;}
._2a{margin-left:-965.520000pt;}
._3b{margin-left:-953.111467pt;}
._1c{margin-left:-949.929600pt;}
._14{margin-left:-946.896000pt;}
._9{margin-left:-936.240000pt;}
._1e{margin-left:-914.928000pt;}
._a{margin-left:-887.306667pt;}
._15{margin-left:-845.472000pt;}
._35{margin-left:-833.264000pt;}
._23{margin-left:-824.229867pt;}
._11{margin-left:-821.568000pt;}
._21{margin-left:-813.600000pt;}
._18{margin-left:-797.520000pt;}
._42{margin-left:-792.085333pt;}
._3e{margin-left:-784.858667pt;}
._20{margin-left:-780.720000pt;}
._13{margin-left:-765.504000pt;}
._3c{margin-left:-762.912000pt;}
._1a{margin-left:-758.250667pt;}
._31{margin-left:-746.928000pt;}
._1b{margin-left:-745.280000pt;}
._d{margin-left:-722.736000pt;}
._16{margin-left:-708.384000pt;}
._22{margin-left:-698.880000pt;}
._1d{margin-left:-695.226667pt;}
._1f{margin-left:-689.264000pt;}
._33{margin-left:-681.964800pt;}
._40{margin-left:-677.472000pt;}
._24{margin-left:-643.952000pt;}
._3a{margin-left:-626.880000pt;}
._2c{margin-left:-618.864000pt;}
._7{margin-left:-616.224000pt;}
._1{margin-left:-553.280000pt;}
._3d{margin-left:-541.632000pt;}
._6{margin-left:-508.320000pt;}
._41{margin-left:-500.657600pt;}
._0{margin-left:-452.068800pt;}
._19{margin-left:-427.434667pt;}
._2e{margin-left:-392.112000pt;}
._f{margin-left:-354.768000pt;}
._28{margin-left:-345.820800pt;}
._39{margin-left:-336.144000pt;}
._37{margin-left:-325.440000pt;}
._26{margin-left:-234.720000pt;}
._49{margin-left:-11.721600pt;}
._44{margin-left:-9.600000pt;}
._4a{margin-left:-8.524267pt;}
._4c{margin-left:-7.157333pt;}
._b{margin-left:-6.216000pt;}
._45{margin-left:-5.280533pt;}
._4{margin-left:-3.571200pt;}
._3{margin-left:-1.973333pt;}
._5{margin-left:-0.927467pt;}
._4e{width:0.903467pt;}
._2{width:1.952000pt;}
._4d{width:3.207467pt;}
._4b{width:4.306133pt;}
._59{width:5.484800pt;}
._4f{width:6.485867pt;}
._48{width:7.584000pt;}
._47{width:9.326400pt;}
._51{width:10.961600pt;}
._52{width:12.260800pt;}
._58{width:13.523733pt;}
._55{width:14.750400pt;}
._56{width:15.978133pt;}
._57{width:17.015467pt;}
._46{width:18.305067pt;}
._53{width:19.228800pt;}
._54{width:22.483200pt;}
._5e{width:25.762667pt;}
._5f{width:29.333867pt;}
._5d{width:52.450667pt;}
._50{width:196.264533pt;}
._5b{width:374.871467pt;}
._5c{width:388.219200pt;}
._5a{width:713.074667pt;}
.fsa{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:112.000000pt;}
.fsc{font-size:128.000000pt;}
.fs9{font-size:160.000000pt;}
.fsb{font-size:256.000000pt;}
.fs3{font-size:266.666667pt;}
.fs1{font-size:266.766933pt;}
.fs4{font-size:373.333333pt;}
.fs2{font-size:373.473600pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:64.452667pt;}
.y4{bottom:64.850667pt;}
.y6{bottom:74.105733pt;}
.y7{bottom:74.581733pt;}
.y1{bottom:75.086133pt;}
.ya3{bottom:75.562133pt;}
.y36{bottom:106.902533pt;}
.y5e{bottom:113.385867pt;}
.y62{bottom:113.419733pt;}
.y277{bottom:113.883600pt;}
.y29d{bottom:114.324400pt;}
.y143{bottom:114.550800pt;}
.y229{bottom:115.349067pt;}
.y183{bottom:115.571333pt;}
.y1a1{bottom:116.591733pt;}
.y253{bottom:117.970267pt;}
.y6d{bottom:119.894800pt;}
.y35{bottom:124.282133pt;}
.y1fd{bottom:127.110400pt;}
.y142{bottom:127.350800pt;}
.y61{bottom:127.819733pt;}
.y182{bottom:128.371200pt;}
.y29c{bottom:128.724533pt;}
.y1a0{bottom:129.391733pt;}
.y276{bottom:129.883600pt;}
.y5d{bottom:130.765333pt;}
.y167{bottom:132.150800pt;}
.y10b{bottom:133.171333pt;}
.y252{bottom:133.970267pt;}
.y6c{bottom:135.894800pt;}
.y1c5{bottom:135.975733pt;}
.y34{bottom:141.394933pt;}
.y60{bottom:142.219733pt;}
.y1fc{bottom:143.110400pt;}
.y29b{bottom:143.124533pt;}
.y141{bottom:144.950800pt;}
.y275{bottom:145.883600pt;}
.y10a{bottom:145.971333pt;}
.y19f{bottom:146.991733pt;}
.yd5{bottom:147.319200pt;}
.y18c{bottom:148.730267pt;}
.y5c{bottom:148.944800pt;}
.y251{bottom:149.970267pt;}
.y174{bottom:150.771200pt;}
.y6b{bottom:151.894800pt;}
.y1c4{bottom:151.975733pt;}
.y5f{bottom:156.619733pt;}
.y29a{bottom:157.524533pt;}
.y33{bottom:158.507867pt;}
.y1fb{bottom:159.110400pt;}
.yd4{bottom:160.119333pt;}
.y18b{bottom:161.530400pt;}
.y274{bottom:161.883600pt;}
.y109{bottom:163.571333pt;}
.y250{bottom:165.970267pt;}
.y140{bottom:166.330267pt;}
.y5b{bottom:167.124400pt;}
.y17f{bottom:167.350800pt;}
.y6a{bottom:167.894800pt;}
.y19e{bottom:168.371200pt;}
.y299{bottom:171.924533pt;}
.y1fa{bottom:175.110400pt;}
.y1c3{bottom:175.534800pt;}
.y32{bottom:175.620667pt;}
.y273{bottom:177.883600pt;}
.y13f{bottom:179.130267pt;}
.y17e{bottom:180.150800pt;}
.y19d{bottom:181.171333pt;}
.yd3{bottom:181.498800pt;}
.y24f{bottom:181.970267pt;}
.y69{bottom:183.894800pt;}
.y108{bottom:184.950800pt;}
.y5a{bottom:185.304000pt;}
.y298{bottom:186.324400pt;}
.ya2{bottom:186.927067pt;}
.y1f9{bottom:191.110400pt;}
.y1c2{bottom:191.534800pt;}
.y31{bottom:192.733467pt;}
.y272{bottom:193.883600pt;}
.yd2{bottom:194.298800pt;}
.y13e{bottom:196.730267pt;}
.y107{bottom:197.750800pt;}
.y24e{bottom:197.970267pt;}
.y68{bottom:199.894800pt;}
.y166{bottom:200.509867pt;}
.y297{bottom:200.724533pt;}
.y17d{bottom:201.530400pt;}
.y19c{bottom:202.550800pt;}
.y59{bottom:203.483467pt;}
.ya1{bottom:205.106667pt;}
.y1f8{bottom:207.110400pt;}
.y1c1{bottom:207.534800pt;}
.y30{bottom:209.846400pt;}
.y271{bottom:209.883600pt;}
.y165{bottom:213.309867pt;}
.y24d{bottom:213.970267pt;}
.y17c{bottom:214.330267pt;}
.y296{bottom:215.124533pt;}
.y106{bottom:215.350800pt;}
.yd1{bottom:215.678267pt;}
.y67{bottom:215.894800pt;}
.y13d{bottom:218.109867pt;}
.y173{bottom:219.130267pt;}
.y58{bottom:221.663067pt;}
.y1f7{bottom:223.110400pt;}
.ya0{bottom:223.286133pt;}
.y1c0{bottom:223.534800pt;}
.y29f{bottom:225.649733pt;}
.y270{bottom:225.883600pt;}
.y2f{bottom:226.959333pt;}
.yd0{bottom:228.478400pt;}
.y295{bottom:229.524533pt;}
.y24c{bottom:229.970267pt;}
.y13c{bottom:230.909867pt;}
.y66{bottom:231.894800pt;}
.y172{bottom:231.930400pt;}
.y1a4{bottom:235.709867pt;}
.y105{bottom:236.730267pt;}
.y1f6{bottom:239.110400pt;}
.y1bf{bottom:239.534800pt;}
.y57{bottom:239.842533pt;}
.y9f{bottom:241.465733pt;}
.y29e{bottom:241.649733pt;}
.y26f{bottom:241.883600pt;}
.y294{bottom:243.924533pt;}
.y2e{bottom:244.072133pt;}
.y24b{bottom:245.970267pt;}
.y13b{bottom:248.509867pt;}
.y104{bottom:249.530400pt;}
.ycf{bottom:249.857867pt;}
.y164{bottom:252.289333pt;}
.y171{bottom:253.309867pt;}
.y1f5{bottom:255.110400pt;}
.y65{bottom:255.453733pt;}
.y1be{bottom:255.534800pt;}
.y26e{bottom:257.883600pt;}
.y56{bottom:258.022000pt;}
.y293{bottom:258.324400pt;}
.y9e{bottom:259.645200pt;}
.y2d{bottom:261.184933pt;}
.y24a{bottom:261.970267pt;}
.yce{bottom:262.657867pt;}
.y163{bottom:265.089333pt;}
.y170{bottom:266.109867pt;}
.y103{bottom:267.130267pt;}
.y13a{bottom:269.889467pt;}
.y128{bottom:270.909867pt;}
.y1f4{bottom:271.110400pt;}
.y64{bottom:271.453733pt;}
.y1bd{bottom:271.534800pt;}
.y2b5{bottom:271.760000pt;}
.y292{bottom:272.724533pt;}
.y26d{bottom:273.883600pt;}
.y55{bottom:276.201600pt;}
.y9d{bottom:277.824800pt;}
.y249{bottom:277.970267pt;}
.y2c{bottom:278.297867pt;}
.ycd{bottom:280.257867pt;}
.y139{bottom:282.689333pt;}
.y127{bottom:283.709867pt;}
.y1f3{bottom:287.110400pt;}
.y291{bottom:287.124533pt;}
.y16f{bottom:287.489333pt;}
.y1bc{bottom:287.534800pt;}
.y102{bottom:288.509867pt;}
.y2b4{bottom:289.360000pt;}
.y26c{bottom:289.883600pt;}
.y248{bottom:293.970267pt;}
.y54{bottom:294.381067pt;}
.y63{bottom:295.012800pt;}
.y2b{bottom:295.410667pt;}
.y9c{bottom:296.004267pt;}
.y138{bottom:300.289333pt;}
.y101{bottom:301.309867pt;}
.y290{bottom:301.524533pt;}
.ycc{bottom:301.637467pt;}
.y1f2{bottom:303.110400pt;}
.y1bb{bottom:303.534800pt;}
.y162{bottom:304.068933pt;}
.y17b{bottom:305.089333pt;}
.y26b{bottom:305.883600pt;}
.y2b3{bottom:306.960000pt;}
.y247{bottom:309.970267pt;}
.y2a{bottom:312.523600pt;}
.y53{bottom:312.560667pt;}
.y9b{bottom:314.183867pt;}
.ycb{bottom:314.437333pt;}
.y28f{bottom:315.924533pt;}
.y161{bottom:316.868933pt;}
.y17a{bottom:317.889467pt;}
.y19b{bottom:318.909867pt;}
.y1f1{bottom:319.110400pt;}
.y1ba{bottom:319.534800pt;}
.y137{bottom:321.668933pt;}
.y26a{bottom:321.883600pt;}
.y100{bottom:322.689333pt;}
.y2b2{bottom:324.560000pt;}
.y246{bottom:325.970267pt;}
.y228{bottom:327.124533pt;}
.y29{bottom:329.636400pt;}
.y28e{bottom:330.324400pt;}
.y52{bottom:330.740133pt;}
.yca{bottom:332.037333pt;}
.y9a{bottom:332.363333pt;}
.y136{bottom:334.468933pt;}
.y1f0{bottom:335.110400pt;}
.yff{bottom:335.489333pt;}
.y269{bottom:337.883600pt;}
.y1b9{bottom:338.937867pt;}
.y1a3{bottom:339.268933pt;}
.y19a{bottom:340.289333pt;}
.y245{bottom:341.970267pt;}
.y2b1{bottom:342.160000pt;}
.y227{bottom:343.124533pt;}
.y28d{bottom:344.724533pt;}
.y28{bottom:346.749333pt;}
.y51{bottom:348.919733pt;}
.y99{bottom:350.542933pt;}
.y1ef{bottom:351.110400pt;}
.y135{bottom:352.068933pt;}
.yfe{bottom:353.089333pt;}
.yc9{bottom:353.416933pt;}
.y268{bottom:353.883600pt;}
.y1b8{bottom:354.937867pt;}
.y160{bottom:355.848400pt;}
.y179{bottom:356.868933pt;}
.y244{bottom:357.970133pt;}
.y226{bottom:359.124533pt;}
.y27{bottom:363.862133pt;}
.yc8{bottom:366.216933pt;}
.y50{bottom:367.099200pt;}
.y1ee{bottom:367.110400pt;}
.y15f{bottom:368.648400pt;}
.y98{bottom:368.722400pt;}
.y178{bottom:369.668933pt;}
.y267{bottom:369.883600pt;}
.y199{bottom:370.689333pt;}
.y134{bottom:373.448400pt;}
.y243{bottom:373.970133pt;}
.yfd{bottom:374.468933pt;}
.y225{bottom:375.124533pt;}
.y1b7{bottom:378.496933pt;}
.y26{bottom:380.975067pt;}
.y1ed{bottom:383.110400pt;}
.yc7{bottom:383.816933pt;}
.y2aa{bottom:384.040267pt;}
.y4f{bottom:385.278667pt;}
.y266{bottom:385.883600pt;}
.y133{bottom:386.248400pt;}
.y97{bottom:386.902000pt;}
.yfc{bottom:387.268933pt;}
.y242{bottom:389.970133pt;}
.y1a2{bottom:391.048400pt;}
.y224{bottom:391.124533pt;}
.y198{bottom:392.068933pt;}
.y1b6{bottom:394.496933pt;}
.y25{bottom:398.087867pt;}
.y1ec{bottom:399.110400pt;}
.y2a9{bottom:401.640267pt;}
.y265{bottom:401.883600pt;}
.y4e{bottom:403.458267pt;}
.y132{bottom:403.848400pt;}
.yfb{bottom:404.868933pt;}
.y96{bottom:405.081467pt;}
.yc6{bottom:405.196400pt;}
.y241{bottom:405.970133pt;}
.y223{bottom:407.124533pt;}
.y15e{bottom:407.628000pt;}
.y126{bottom:408.648400pt;}
.y1b5{bottom:410.496933pt;}
.y1eb{bottom:415.110400pt;}
.y24{bottom:415.200667pt;}
.y264{bottom:417.883600pt;}
.yc5{bottom:417.996400pt;}
.y2a8{bottom:419.240267pt;}
.y15d{bottom:420.428000pt;}
.y125{bottom:421.448400pt;}
.y4d{bottom:421.637733pt;}
.y240{bottom:421.970133pt;}
.y197{bottom:422.468933pt;}
.y222{bottom:423.124533pt;}
.y95{bottom:423.260933pt;}
.y131{bottom:425.228000pt;}
.yfa{bottom:426.248400pt;}
.y1b4{bottom:426.496933pt;}
.y1ea{bottom:431.110400pt;}
.y23{bottom:432.313600pt;}
.y263{bottom:433.883600pt;}
.yc4{bottom:435.596400pt;}
.y23f{bottom:437.970133pt;}
.y130{bottom:438.028000pt;}
.yf9{bottom:439.048400pt;}
.y221{bottom:439.124533pt;}
.y4c{bottom:439.817333pt;}
.y94{bottom:441.440533pt;}
.y1b3{bottom:442.496933pt;}
.y177{bottom:442.828000pt;}
.y196{bottom:443.848400pt;}
.y1e9{bottom:447.110400pt;}
.y22{bottom:449.426400pt;}
.y262{bottom:449.883600pt;}
.y23e{bottom:453.970133pt;}
.y220{bottom:455.124533pt;}
.y12f{bottom:455.628000pt;}
.yf8{bottom:456.648400pt;}
.yc3{bottom:456.976000pt;}
.y4b{bottom:457.996933pt;}
.y1b2{bottom:458.496933pt;}
.y15c{bottom:459.407467pt;}
.y93{bottom:459.620000pt;}
.y124{bottom:460.428000pt;}
.y2b0{bottom:461.120667pt;}
.y1e8{bottom:463.110400pt;}
.y261{bottom:465.883600pt;}
.y21{bottom:466.539333pt;}
.yc2{bottom:469.776000pt;}
.y23d{bottom:469.970133pt;}
.y21f{bottom:471.124533pt;}
.y15b{bottom:472.207467pt;}
.y123{bottom:473.228000pt;}
.y195{bottom:474.248400pt;}
.y1b1{bottom:474.496933pt;}
.y4a{bottom:476.176400pt;}
.y12e{bottom:477.007467pt;}
.y92{bottom:477.799600pt;}
.yf7{bottom:478.028000pt;}
.y2af{bottom:478.720667pt;}
.y1e7{bottom:479.110400pt;}
.y260{bottom:481.883600pt;}
.y20{bottom:483.652133pt;}
.y23c{bottom:485.970133pt;}
.y21e{bottom:487.124533pt;}
.yc1{bottom:487.376000pt;}
.y12d{bottom:489.807467pt;}
.y1b0{bottom:490.496933pt;}
.yf6{bottom:490.828000pt;}
.y15a{bottom:493.587067pt;}
.y49{bottom:494.355867pt;}
.y122{bottom:494.607467pt;}
.y1e6{bottom:495.110400pt;}
.y194{bottom:495.628000pt;}
.y2ae{bottom:496.320533pt;}
.y25f{bottom:497.883600pt;}
.y1f{bottom:500.765067pt;}
.y23b{bottom:501.970133pt;}
.y21d{bottom:503.124533pt;}
.y159{bottom:506.387067pt;}
.y1af{bottom:506.496933pt;}
.y121{bottom:507.407467pt;}
.yf5{bottom:508.428000pt;}
.yc0{bottom:508.755467pt;}
.y1e5{bottom:511.110400pt;}
.y16e{bottom:511.187067pt;}
.y48{bottom:512.535467pt;}
.y25e{bottom:513.883600pt;}
.y2ad{bottom:513.920667pt;}
.y1e{bottom:517.877867pt;}
.y23a{bottom:517.970133pt;}
.y21c{bottom:519.124533pt;}
.ybf{bottom:521.555467pt;}
.y91{bottom:523.836267pt;}
.y158{bottom:523.987067pt;}
.y176{bottom:525.007467pt;}
.y120{bottom:528.787067pt;}
.yf4{bottom:529.807467pt;}
.y25d{bottom:529.883600pt;}
.y47{bottom:530.714933pt;}
.y2ac{bottom:531.520533pt;}
.y1e4{bottom:534.669333pt;}
.y1d{bottom:534.990667pt;}
.y21b{bottom:535.124533pt;}
.y90{bottom:537.436133pt;}
.y239{bottom:541.529200pt;}
.y11f{bottom:541.587067pt;}
.yf3{bottom:542.607467pt;}
.ybe{bottom:542.935067pt;}
.y157{bottom:545.366533pt;}
.y25c{bottom:545.883600pt;}
.y175{bottom:546.387067pt;}
.y46{bottom:548.894533pt;}
.y2ab{bottom:549.120667pt;}
.y8f{bottom:551.036267pt;}
.y21a{bottom:551.124533pt;}
.y1c{bottom:552.103600pt;}
.ybd{bottom:555.735067pt;}
.y156{bottom:558.166533pt;}
.y11e{bottom:559.187067pt;}
.y25b{bottom:561.883600pt;}
.y16d{bottom:562.966533pt;}
.yf2{bottom:563.987067pt;}
.y8e{bottom:564.636267pt;}
.y45{bottom:567.074000pt;}
.y219{bottom:567.124533pt;}
.y1b{bottom:569.216533pt;}
.y1e3{bottom:569.869333pt;}
.y1ae{bottom:575.499867pt;}
.y155{bottom:575.766533pt;}
.y238{bottom:576.729200pt;}
.yf1{bottom:576.787067pt;}
.ybc{bottom:577.114533pt;}
.y25a{bottom:577.883600pt;}
.y8d{bottom:578.236267pt;}
.y11d{bottom:580.566533pt;}
.y218{bottom:583.124533pt;}
.y44{bottom:585.253600pt;}
.y1e2{bottom:585.869333pt;}
.y1a{bottom:586.329333pt;}
.ybb{bottom:589.914533pt;}
.y8c{bottom:591.836267pt;}
.y1c8{bottom:592.088267pt;}
.y237{bottom:592.729200pt;}
.y1ad{bottom:593.099867pt;}
.y11c{bottom:593.366533pt;}
.y259{bottom:593.883600pt;}
.yf0{bottom:594.387067pt;}
.y154{bottom:597.146133pt;}
.y217{bottom:599.124533pt;}
.y1e1{bottom:601.869333pt;}
.y2a7{bottom:602.624400pt;}
.y43{bottom:603.433067pt;}
.y19{bottom:603.442267pt;}
.y8b{bottom:605.436133pt;}
.yba{bottom:607.514533pt;}
.y236{bottom:608.729200pt;}
.y1c7{bottom:609.688133pt;}
.y258{bottom:609.883600pt;}
.y153{bottom:609.946133pt;}
.y1ac{bottom:610.699867pt;}
.y11b{bottom:610.966533pt;}
.y16c{bottom:614.746000pt;}
.y216{bottom:615.124533pt;}
.yef{bottom:615.766533pt;}
.y1e0{bottom:617.869333pt;}
.y8a{bottom:619.036267pt;}
.y2a6{bottom:620.224400pt;}
.y18{bottom:620.555067pt;}
.y42{bottom:621.612533pt;}
.y257{bottom:625.883600pt;}
.y1c6{bottom:627.288267pt;}
.y152{bottom:627.546000pt;}
.y1ab{bottom:628.299867pt;}
.yee{bottom:628.566533pt;}
.yb9{bottom:628.894133pt;}
.y215{bottom:631.124533pt;}
.y12c{bottom:632.346133pt;}
.y89{bottom:632.636267pt;}
.y1df{bottom:633.869333pt;}
.y17{bottom:637.667867pt;}
.y2a5{bottom:637.824400pt;}
.y41{bottom:639.792133pt;}
.y235{bottom:641.395867pt;}
.yb8{bottom:641.694133pt;}
.y256{bottom:641.883600pt;}
.y12b{bottom:645.146133pt;}
.yed{bottom:646.166533pt;}
.y88{bottom:646.236267pt;}
.y28c{bottom:647.124533pt;}
.y234{bottom:648.595867pt;}
.y151{bottom:648.925600pt;}
.y1de{bottom:649.869333pt;}
.y11a{bottom:649.946133pt;}
.y214{bottom:654.683600pt;}
.y16{bottom:654.780800pt;}
.y2a4{bottom:655.424400pt;}
.y255{bottom:657.883600pt;}
.y40{bottom:657.971733pt;}
.yb7{bottom:659.294133pt;}
.y87{bottom:659.836267pt;}
.y150{bottom:661.725600pt;}
.y119{bottom:662.746000pt;}
.y28b{bottom:663.124533pt;}
.y1dd{bottom:665.869333pt;}
.y16b{bottom:666.525600pt;}
.yec{bottom:667.546000pt;}
.y3{bottom:670.995467pt;}
.y5{bottom:671.165333pt;}
.y15{bottom:671.893600pt;}
.y86{bottom:673.436133pt;}
.y254{bottom:673.883600pt;}
.y233{bottom:675.198933pt;}
.y3f{bottom:676.151200pt;}
.y28a{bottom:679.124533pt;}
.y14f{bottom:679.325600pt;}
.yeb{bottom:680.346133pt;}
.yb6{bottom:680.673600pt;}
.y2a0{bottom:681.389600pt;}
.y1dc{bottom:681.869333pt;}
.y232{bottom:682.398933pt;}
.y118{bottom:684.125600pt;}
.y85{bottom:687.036267pt;}
.y14{bottom:689.006533pt;}
.y213{bottom:689.883600pt;}
.yb5{bottom:693.473600pt;}
.y3e{bottom:694.330667pt;}
.y289{bottom:695.124533pt;}
.y117{bottom:696.925600pt;}
.y1db{bottom:697.869333pt;}
.y1a7{bottom:697.946000pt;}
.y84{bottom:700.636267pt;}
.y14e{bottom:700.705067pt;}
.yea{bottom:701.725600pt;}
.y212{bottom:705.883600pt;}
.y13{bottom:706.119333pt;}
.y231{bottom:709.001867pt;}
.yb4{bottom:711.073600pt;}
.y288{bottom:711.124533pt;}
.y3d{bottom:712.510267pt;}
.y14d{bottom:713.505067pt;}
.y1da{bottom:713.869333pt;}
.y83{bottom:714.236267pt;}
.ye9{bottom:714.525600pt;}
.y2a3{bottom:715.935733pt;}
.y12a{bottom:718.305200pt;}
.y1a6{bottom:719.325600pt;}
.y211{bottom:721.883600pt;}
.y12{bottom:723.232267pt;}
.y287{bottom:727.124533pt;}
.y82{bottom:727.836133pt;}
.y230{bottom:728.404933pt;}
.y1d9{bottom:729.869333pt;}
.y3c{bottom:730.689733pt;}
.y129{bottom:731.105200pt;}
.y193{bottom:732.125600pt;}
.yb3{bottom:732.453067pt;}
.y22f{bottom:735.604933pt;}
.ye8{bottom:735.905067pt;}
.y210{bottom:737.883600pt;}
.y11{bottom:740.345067pt;}
.y81{bottom:741.436133pt;}
.y2a2{bottom:742.694933pt;}
.y286{bottom:743.124533pt;}
.yb2{bottom:745.253200pt;}
.ye7{bottom:748.705067pt;}
.y3b{bottom:748.869333pt;}
.y14c{bottom:752.484667pt;}
.y1d8{bottom:753.428533pt;}
.y192{bottom:753.505067pt;}
.y20f{bottom:753.883600pt;}
.y80{bottom:755.036267pt;}
.y10{bottom:757.457867pt;}
.y285{bottom:759.124533pt;}
.y22e{bottom:762.207867pt;}
.y14b{bottom:765.284667pt;}
.ye6{bottom:766.305200pt;}
.yb1{bottom:766.632667pt;}
.y3a{bottom:767.048800pt;}
.y22d{bottom:769.407867pt;}
.y2a1{bottom:769.454000pt;}
.y20e{bottom:769.883600pt;}
.y116{bottom:770.084667pt;}
.yf{bottom:774.570800pt;}
.y284{bottom:775.124533pt;}
.yb0{bottom:779.432667pt;}
.y115{bottom:782.884667pt;}
.ye5{bottom:783.905067pt;}
.y39{bottom:785.228400pt;}
.y20d{bottom:785.883600pt;}
.y18a{bottom:786.664267pt;}
.y1a5{bottom:787.684667pt;}
.y1d7{bottom:788.628400pt;}
.y283{bottom:791.124533pt;}
.y22c{bottom:796.010933pt;}
.y7f{bottom:796.139600pt;}
.yaf{bottom:797.032667pt;}
.y189{bottom:799.464133pt;}
.y114{bottom:800.484667pt;}
.y20c{bottom:801.883600pt;}
.y22b{bottom:803.210800pt;}
.y38{bottom:803.407867pt;}
.yd{bottom:803.504933pt;}
.y14a{bottom:804.264133pt;}
.y1d6{bottom:804.628400pt;}
.ye4{bottom:805.284667pt;}
.y282{bottom:807.124533pt;}
.y7e{bottom:809.739600pt;}
.y149{bottom:817.064267pt;}
.y20b{bottom:817.883600pt;}
.ye3{bottom:818.084667pt;}
.yae{bottom:818.412133pt;}
.yc{bottom:819.504933pt;}
.y1d5{bottom:820.628400pt;}
.y188{bottom:820.843733pt;}
.y37{bottom:821.587467pt;}
.y113{bottom:821.864133pt;}
.y281{bottom:823.124533pt;}
.y7d{bottom:823.339733pt;}
.y22a{bottom:829.813867pt;}
.yad{bottom:831.212267pt;}
.y187{bottom:833.643733pt;}
.y20a{bottom:833.883600pt;}
.y112{bottom:834.664267pt;}
.y7c{bottom:836.939733pt;}
.y280{bottom:839.124533pt;}
.ye2{bottom:839.464133pt;}
.yb{bottom:843.063867pt;}
.y1d4{bottom:844.187467pt;}
.yac{bottom:848.812267pt;}
.y209{bottom:849.883600pt;}
.y7b{bottom:850.539733pt;}
.y186{bottom:851.243733pt;}
.ye1{bottom:852.264133pt;}
.y27f{bottom:855.124533pt;}
.y111{bottom:856.043733pt;}
.ya{bottom:859.063867pt;}
.y1d3{bottom:860.187467pt;}
.y7a{bottom:864.139600pt;}
.y208{bottom:865.883600pt;}
.y110{bottom:868.843733pt;}
.y191{bottom:869.864133pt;}
.yab{bottom:870.191867pt;}
.y27e{bottom:871.124533pt;}
.y185{bottom:872.623200pt;}
.ye0{bottom:873.643733pt;}
.y1d2{bottom:876.187467pt;}
.y79{bottom:877.739600pt;}
.y207{bottom:881.883600pt;}
.y9{bottom:882.622933pt;}
.yaa{bottom:882.991733pt;}
.y184{bottom:885.423200pt;}
.ydf{bottom:886.443733pt;}
.y27d{bottom:887.124533pt;}
.ye{bottom:889.390933pt;}
.y181{bottom:890.223200pt;}
.y190{bottom:891.243733pt;}
.y78{bottom:891.339600pt;}
.y1d1{bottom:892.187467pt;}
.y206{bottom:897.883600pt;}
.y8{bottom:898.622933pt;}
.ya9{bottom:900.591733pt;}
.y180{bottom:903.023333pt;}
.y27c{bottom:903.124533pt;}
.yde{bottom:904.043733pt;}
.y77{bottom:904.939600pt;}
.y10f{bottom:907.823200pt;}
.y148{bottom:907.823333pt;}
.y1d0{bottom:908.187467pt;}
.y205{bottom:913.883600pt;}
.y76{bottom:918.539600pt;}
.y27b{bottom:919.124533pt;}
.y10e{bottom:920.623200pt;}
.y147{bottom:920.623333pt;}
.ya8{bottom:921.971333pt;}
.y1cf{bottom:924.187467pt;}
.ydd{bottom:925.423200pt;}
.y204{bottom:929.883600pt;}
.y75{bottom:932.139600pt;}
.y1aa{bottom:933.900000pt;}
.ya7{bottom:934.771333pt;}
.y27a{bottom:935.124533pt;}
.ydc{bottom:938.223200pt;}
.y16a{bottom:938.223333pt;}
.y1ce{bottom:940.187467pt;}
.y10d{bottom:942.002800pt;}
.y74{bottom:945.739600pt;}
.y203{bottom:945.883600pt;}
.y279{bottom:951.124533pt;}
.ya6{bottom:952.371333pt;}
.y10c{bottom:954.802800pt;}
.y18f{bottom:955.823200pt;}
.y1cd{bottom:956.187467pt;}
.y73{bottom:959.339600pt;}
.ydb{bottom:959.602800pt;}
.y202{bottom:961.883600pt;}
.y1cc{bottom:972.187467pt;}
.y1a9{bottom:972.300000pt;}
.yda{bottom:972.402800pt;}
.y72{bottom:972.939600pt;}
.y278{bottom:974.683467pt;}
.y18e{bottom:977.202800pt;}
.y201{bottom:977.883600pt;}
.yd6{bottom:985.809333pt;}
.y71{bottom:986.539600pt;}
.y1cb{bottom:988.187467pt;}
.y169{bottom:990.002800pt;}
.yd9{bottom:993.782267pt;}
.y146{bottom:993.782400pt;}
.y200{bottom:993.883600pt;}
.y70{bottom:1000.139600pt;}
.y1ca{bottom:1004.187467pt;}
.yd8{bottom:1006.582267pt;}
.y145{bottom:1006.582400pt;}
.y1ff{bottom:1009.883600pt;}
.y1a8{bottom:1010.700000pt;}
.y18d{bottom:1011.382267pt;}
.y168{bottom:1011.382400pt;}
.y6f{bottom:1013.739600pt;}
.y1c9{bottom:1020.187467pt;}
.yd7{bottom:1024.182267pt;}
.y144{bottom:1024.182400pt;}
.y1fe{bottom:1025.883600pt;}
.y6e{bottom:1027.339600pt;}
.ya4{bottom:1068.009867pt;}
.ya5{bottom:1069.353600pt;}
.h17{height:31.062500pt;}
.h19{height:31.250000pt;}
.hf{height:33.048177pt;}
.h13{height:33.225260pt;}
.h8{height:34.944000pt;}
.hc{height:34.945312pt;}
.hd{height:34.992188pt;}
.h7{height:35.088000pt;}
.he{height:35.156250pt;}
.h10{height:35.179688pt;}
.h2{height:36.848000pt;}
.h9{height:38.828125pt;}
.h1f{height:38.880208pt;}
.ha{height:39.062500pt;}
.h21{height:39.088542pt;}
.h16{height:41.622396pt;}
.h1e{height:42.710938pt;}
.h11{height:42.768229pt;}
.h12{height:42.997396pt;}
.h20{height:45.406250pt;}
.hb{height:46.000000pt;}
.h22{height:46.197917pt;}
.h27{height:46.656250pt;}
.h15{height:46.720000pt;}
.h18{height:50.817708pt;}
.h24{height:63.792187pt;}
.h25{height:63.979688pt;}
.h23{height:63.980221pt;}
.h26{height:75.687500pt;}
.h1c{height:90.812500pt;}
.h1d{height:110.875000pt;}
.h14{height:138.593750pt;}
.h1b{height:138.594283pt;}
.h1a{height:181.625000pt;}
.h5{height:191.666667pt;}
.h3{height:191.738733pt;}
.h6{height:264.320000pt;}
.h4{height:264.419309pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.794133pt;}
.x8{left:60.472400pt;}
.x1b{left:64.690533pt;}
.x23{left:65.805733pt;}
.x18{left:70.693733pt;}
.x25{left:75.359467pt;}
.x6{left:86.173200pt;}
.x1f{left:88.448533pt;}
.x9{left:92.976400pt;}
.x14{left:94.488133pt;}
.x5{left:96.332533pt;}
.x19{left:98.267733pt;}
.x2c{left:104.782133pt;}
.x30{left:109.963467pt;}
.x2f{left:110.872933pt;}
.x24{left:113.385867pt;}
.x2b{left:118.678933pt;}
.x2d{left:120.315333pt;}
.x1d{left:124.724400pt;}
.x4{left:126.549600pt;}
.x32{left:175.824133pt;}
.x1c{left:185.196800pt;}
.x1a{left:191.125333pt;}
.x37{left:202.611333pt;}
.x31{left:205.968267pt;}
.x38{left:215.251200pt;}
.x36{left:220.808533pt;}
.x39{left:227.726533pt;}
.x17{left:249.448800pt;}
.x27{left:254.463467pt;}
.x2e{left:292.695200pt;}
.x33{left:306.672933pt;}
.x26{left:310.530133pt;}
.x28{left:327.197867pt;}
.x2a{left:343.510400pt;}
.x34{left:346.190533pt;}
.x35{left:354.890400pt;}
.x29{left:410.418400pt;}
.x1{left:455.089867pt;}
.x21{left:474.823333pt;}
.x7{left:504.072133pt;}
.xe{left:517.136400pt;}
.x22{left:519.588933pt;}
.xa{left:530.433867pt;}
.xd{left:537.915333pt;}
.x10{left:543.225600pt;}
.xf{left:544.851200pt;}
.x13{left:547.282533pt;}
.xb{left:548.657600pt;}
.x12{left:555.432267pt;}
.xc{left:563.592800pt;}
.x11{left:580.300400pt;}
.x20{left:585.465333pt;}
.x2{left:627.488133pt;}
.x1e{left:686.927733pt;}
.x16{left:689.807733pt;}
.x15{left:760.123600pt;}
}




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