
    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_ffb6a41b57b685b7201b4274.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d932eea7dd02b02e0c9e5066.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_9952f34df381d1a4d16cfa18.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902000;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_c77537b4429e80d1dab92c6e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6dbd8db853886541f1ee9e75.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_77795d084475bd989cd22ae9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.142000;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_e29a6ee087e6d254f40aea0b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1d136197cf95a8e17db8da35.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932000;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_54a94f6788e0bfc2c770a3dd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.918000;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_36871909fc2e99651b7815a0.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e5e7459685475d0cd2dac3df.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6d7c681776f07769444264ec.woff')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_526d45106aa7a45039bbda31.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_922fe0c8d1e8958e01903810.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9bfca7e3bb3989f19cf102d3.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fd95cc669f22ebcb1c31f308.woff')format("woff");}.ff10{font-family:ff10;line-height:1.106000;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_4b44cb8b722326c92827a4e6.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5940cf130a5d55e7dc11e88c.woff')format("woff");}.ff12{font-family:ff12;line-height:0.603000;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_7657e4f8a906a43fdbe3b4b0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.818000;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_9d2e3dec1f978706bafbe5cb.woff')format("woff");}.ff14{font-family:ff14;line-height:0.673000;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_7bc95d64d17ff3247a413384.woff')format("woff");}.ff15{font-family:ff15;line-height:0.664000;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_0de6b1b04dad95e60e64199a.woff')format("woff");}.ff16{font-family:ff16;line-height:0.923000;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_2be414eaa882ef8dd87b229f.woff')format("woff");}.ff17{font-family:ff17;line-height:0.388000;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_12f23a91abeddded6c2cbe36.woff')format("woff");}.ff18{font-family:ff18;line-height:0.431000;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_3e346fa91137a572fed927a4.woff')format("woff");}.ff19{font-family:ff19;line-height:0.688000;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;}
.m20{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);}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-68.442000px;}
.vf{vertical-align:-58.908000px;}
.ve{vertical-align:-53.022000px;}
.va{vertical-align:-49.086000px;}
.v1{vertical-align:-10.134000px;}
.v7{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.134000px;}
.v8{vertical-align:21.690000px;}
.v6{vertical-align:23.754000px;}
.v5{vertical-align:27.030000px;}
.v3{vertical-align:45.630000px;}
.vd{vertical-align:53.022000px;}
.vc{vertical-align:54.600000px;}
.vb{vertical-align:62.178000px;}
.v2{vertical-align:111.930000px;}
.ls0{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.000438px;}
.ls2b{letter-spacing:0.000468px;}
.ls1e{letter-spacing:0.000596px;}
.ls6a{letter-spacing:0.001038px;}
.ls3f{letter-spacing:0.001050px;}
.ls4c{letter-spacing:0.001586px;}
.ls2{letter-spacing:0.001593px;}
.ls82{letter-spacing:0.001603px;}
.ls27{letter-spacing:0.002105px;}
.ls2d{letter-spacing:0.002111px;}
.lsd{letter-spacing:0.002128px;}
.ls19{letter-spacing:0.002147px;}
.ls5f{letter-spacing:0.002157px;}
.ls25{letter-spacing:0.002698px;}
.ls6b{letter-spacing:0.002700px;}
.ls34{letter-spacing:0.002712px;}
.ls6e{letter-spacing:0.003791px;}
.ls1b{letter-spacing:0.004322px;}
.ls78{letter-spacing:0.005663px;}
.ls1{letter-spacing:0.007593px;}
.ls7e{letter-spacing:0.007603px;}
.ls5c{letter-spacing:0.008157px;}
.ls40{letter-spacing:0.009354px;}
.ls5e{letter-spacing:0.013406px;}
.ls3c{letter-spacing:0.015344px;}
.ls42{letter-spacing:0.018199px;}
.ls2f{letter-spacing:0.023041px;}
.ls86{letter-spacing:0.025540px;}
.ls29{letter-spacing:0.027624px;}
.ls87{letter-spacing:0.030911px;}
.ls36{letter-spacing:0.031951px;}
.ls65{letter-spacing:0.032000px;}
.ls84{letter-spacing:0.032018px;}
.ls38{letter-spacing:0.033064px;}
.ls4b{letter-spacing:0.033693px;}
.ls22{letter-spacing:0.065455px;}
.ls53{letter-spacing:0.458182px;}
.ls5b{letter-spacing:0.504851px;}
.ls67{letter-spacing:0.508322px;}
.ls57{letter-spacing:0.523637px;}
.ls73{letter-spacing:0.916364px;}
.ls4d{letter-spacing:2.290911px;}
.ls5{letter-spacing:2.356366px;}
.ls70{letter-spacing:2.986059px;}
.ls3d{letter-spacing:2.987236px;}
.ls33{letter-spacing:2.989140px;}
.lse{letter-spacing:2.989289px;}
.ls1a{letter-spacing:2.990367px;}
.ls16{letter-spacing:2.990915px;}
.ls3e{letter-spacing:2.991168px;}
.ls7b{letter-spacing:2.992059px;}
.ls85{letter-spacing:2.993236px;}
.ls2e{letter-spacing:2.995289px;}
.ls1f{letter-spacing:2.996367px;}
.ls52{letter-spacing:3.730912px;}
.ls14{letter-spacing:3.796367px;}
.ls39{letter-spacing:4.259644px;}
.ls26{letter-spacing:4.265644px;}
.ls5d{letter-spacing:4.647277px;}
.ls5a{letter-spacing:4.712731px;}
.ls4e{letter-spacing:5.105459px;}
.ls7{letter-spacing:5.367277px;}
.ls28{letter-spacing:5.743488px;}
.ls10{letter-spacing:7.134551px;}
.ls21{letter-spacing:9.032735px;}
.ls15{letter-spacing:9.098189px;}
.ls79{letter-spacing:10.865464px;}
.ls30{letter-spacing:10.930918px;}
.ls6d{letter-spacing:13.897289px;}
.ls35{letter-spacing:13.903289px;}
.ls18{letter-spacing:14.530921px;}
.ls74{letter-spacing:14.596376px;}
.ls23{letter-spacing:17.083651px;}
.ls4a{letter-spacing:18.130924px;}
.ls8{letter-spacing:18.196379px;}
.ls68{letter-spacing:18.200157px;}
.ls6c{letter-spacing:18.261833px;}
.ls88{letter-spacing:18.392743px;}
.ls12{letter-spacing:18.399053px;}
.ls56{letter-spacing:21.010927px;}
.ls55{letter-spacing:21.076381px;}
.ls2c{letter-spacing:21.164915px;}
.ls76{letter-spacing:21.166059px;}
.ls1c{letter-spacing:21.170367px;}
.ls6f{letter-spacing:21.172059px;}
.ls46{letter-spacing:21.175289px;}
.lsa{letter-spacing:21.207290px;}
.ls63{letter-spacing:21.338200px;}
.ls44{letter-spacing:21.403654px;}
.ls45{letter-spacing:21.469109px;}
.ls13{letter-spacing:21.665473px;}
.ls4{letter-spacing:21.730927px;}
.ls3{letter-spacing:21.796382px;}
.ls20{letter-spacing:21.861836px;}
.ls50{letter-spacing:21.927291px;}
.lsf{letter-spacing:21.992746px;}
.ls24{letter-spacing:22.320019px;}
.ls54{letter-spacing:22.974565px;}
.ls61{letter-spacing:23.236383px;}
.ls69{letter-spacing:23.301838px;}
.ls72{letter-spacing:23.629111px;}
.ls81{letter-spacing:24.218202px;}
.ls7f{letter-spacing:24.467236px;}
.ls80{letter-spacing:24.545475px;}
.ls2a{letter-spacing:24.691289px;}
.ls47{letter-spacing:24.697289px;}
.lsc{letter-spacing:25.461839px;}
.ls11{letter-spacing:25.527294px;}
.ls77{letter-spacing:26.224059px;}
.ls66{letter-spacing:26.443658px;}
.ls64{letter-spacing:26.967295px;}
.ls51{letter-spacing:27.032750px;}
.lsb{letter-spacing:27.098204px;}
.ls75{letter-spacing:27.229114px;}
.ls49{letter-spacing:27.445488px;}
.ls59{letter-spacing:27.883660px;}
.ls60{letter-spacing:27.949114px;}
.ls3a{letter-spacing:28.800024px;}
.ls4f{letter-spacing:29.454570px;}
.ls58{letter-spacing:29.912752px;}
.ls62{letter-spacing:30.043661px;}
.ls71{letter-spacing:30.370934px;}
.ls31{letter-spacing:30.487289px;}
.ls32{letter-spacing:30.493289px;}
.ls17{letter-spacing:30.829117px;}
.ls7d{letter-spacing:31.418208px;}
.ls48{letter-spacing:32.596391px;}
.ls7c{letter-spacing:34.494574px;}
.ls83{letter-spacing:36.392758px;}
.ls9{letter-spacing:65.061872px;}
.ls37{letter-spacing:75.992791px;}
.ls1d{letter-spacing:83.258251px;}
.ls3b{letter-spacing:141.054663px;}
.ls7a{letter-spacing:143.672847px;}
.ls6{letter-spacing:211.483813px;}
.ls43{letter-spacing:509.171333px;}
.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;}
}
.ws6d{word-spacing:-65.454600px;}
.ws76{word-spacing:-59.775600px;}
.ws44{word-spacing:-51.820407px;}
.wsb3{word-spacing:-50.923679px;}
.ws4{word-spacing:-47.333852px;}
.ws7b{word-spacing:-47.323676px;}
.ws93{word-spacing:-47.258221px;}
.wsbb{word-spacing:-43.985491px;}
.ws46{word-spacing:-42.637126px;}
.ws47{word-spacing:-40.341627px;}
.ws75{word-spacing:-38.937826px;}
.ws7{word-spacing:-37.387668px;}
.ws54{word-spacing:-36.379667px;}
.ws4a{word-spacing:-34.364992px;}
.ws20{word-spacing:-33.192028px;}
.ws1a{word-spacing:-32.544027px;}
.wsa3{word-spacing:-31.771663px;}
.ws45{word-spacing:-31.706208px;}
.ws99{word-spacing:-24.440748px;}
.wsb4{word-spacing:-23.982565px;}
.ws2e{word-spacing:-19.642925px;}
.ws1{word-spacing:-18.540986px;}
.ws0{word-spacing:-18.437693px;}
.ws61{word-spacing:-18.183288px;}
.ws78{word-spacing:-17.685833px;}
.wsc9{word-spacing:-17.489469px;}
.ws24{word-spacing:-16.965832px;}
.ws71{word-spacing:-16.573105px;}
.ws9b{word-spacing:-16.442196px;}
.ws90{word-spacing:-16.311286px;}
.ws8e{word-spacing:-16.245832px;}
.wsca{word-spacing:-15.977468px;}
.ws1c{word-spacing:-15.829597px;}
.ws51{word-spacing:-15.743520px;}
.ws60{word-spacing:-15.525831px;}
.ws5f{word-spacing:-15.460377px;}
.ws64{word-spacing:-15.394922px;}
.wsce{word-spacing:-15.264013px;}
.ws8f{word-spacing:-14.930194px;}
.ws28{word-spacing:-14.609467px;}
.ws26{word-spacing:-14.478558px;}
.wsc5{word-spacing:-14.347648px;}
.ws27{word-spacing:-14.282194px;}
.ws42{word-spacing:-14.216739px;}
.wsbf{word-spacing:-14.151285px;}
.ws98{word-spacing:-14.111859px;}
.ws25{word-spacing:-14.020375px;}
.ws97{word-spacing:-13.954921px;}
.wscf{word-spacing:-13.948375px;}
.ws55{word-spacing:-13.889466px;}
.ws56{word-spacing:-13.824012px;}
.ws22{word-spacing:-13.693102px;}
.ws6a{word-spacing:-13.562193px;}
.ws84{word-spacing:-13.514158px;}
.ws3a{word-spacing:-13.442427px;}
.ws3d{word-spacing:-13.300375px;}
.ws3e{word-spacing:-13.234920px;}
.wsc4{word-spacing:-13.032011px;}
.wscb{word-spacing:-12.907647px;}
.ws9c{word-spacing:-12.776738px;}
.ws11{word-spacing:-12.645829px;}
.ws83{word-spacing:-12.580374px;}
.ws6{word-spacing:-12.449465px;}
.wscd{word-spacing:-12.384010px;}
.wsa5{word-spacing:-12.318556px;}
.ws48{word-spacing:-12.253101px;}
.ws69{word-spacing:-12.187647px;}
.ws59{word-spacing:-12.056737px;}
.ws91{word-spacing:-11.925828px;}
.wsa7{word-spacing:-11.853828px;}
.ws49{word-spacing:-11.794919px;}
.wscc{word-spacing:-11.788373px;}
.ws58{word-spacing:-11.729464px;}
.ws2{word-spacing:-11.728051px;}
.ws3{word-spacing:-11.656320px;}
.ws12{word-spacing:-11.526555px;}
.ws50{word-spacing:-11.470938px;}
.ws33{word-spacing:-11.402191px;}
.wsa{word-spacing:-11.336737px;}
.ws5c{word-spacing:-11.271282px;}
.ws2c{word-spacing:-11.205828px;}
.ws3f{word-spacing:-11.140373px;}
.wsf{word-spacing:-11.074918px;}
.ws21{word-spacing:-11.009464px;}
.ws13{word-spacing:-10.944009px;}
.ws9{word-spacing:-10.878555px;}
.ws18{word-spacing:-10.813100px;}
.ws17{word-spacing:-10.747645px;}
.wsa0{word-spacing:-10.741100px;}
.ws2a{word-spacing:-10.682191px;}
.ws40{word-spacing:-10.616736px;}
.wsd{word-spacing:-10.551282px;}
.ws1e{word-spacing:-10.485827px;}
.ws10{word-spacing:-10.420372px;}
.ws63{word-spacing:-10.354918px;}
.ws9e{word-spacing:-10.348372px;}
.ws19{word-spacing:-10.289463px;}
.ws9d{word-spacing:-10.282918px;}
.ws68{word-spacing:-10.224009px;}
.ws80{word-spacing:-10.217463px;}
.wsc8{word-spacing:-10.152008px;}
.wsb{word-spacing:-10.093099px;}
.wsc3{word-spacing:-10.086554px;}
.ws85{word-spacing:-10.027645px;}
.ws5e{word-spacing:-9.955645px;}
.wsb0{word-spacing:-9.890190px;}
.wsaf{word-spacing:-9.824735px;}
.wsa6{word-spacing:-9.759281px;}
.ws72{word-spacing:-9.634917px;}
.wsa2{word-spacing:-9.569463px;}
.wsae{word-spacing:-9.562917px;}
.ws41{word-spacing:-9.438553px;}
.wsc{word-spacing:-9.366553px;}
.ws31{word-spacing:-9.307644px;}
.wsaa{word-spacing:-9.242190px;}
.ws15{word-spacing:-9.111280px;}
.wsad{word-spacing:-8.980371px;}
.ws29{word-spacing:-8.784007px;}
.ws14{word-spacing:-8.718553px;}
.ws38{word-spacing:-8.653098px;}
.wsba{word-spacing:-8.646553px;}
.wsc0{word-spacing:-8.587644px;}
.ws88{word-spacing:-8.522189px;}
.ws2d{word-spacing:-8.456734px;}
.ws37{word-spacing:-8.391280px;}
.ws1f{word-spacing:-8.260371px;}
.ws1d{word-spacing:-8.194916px;}
.wsbe{word-spacing:-8.188370px;}
.ws8d{word-spacing:-8.064007px;}
.ws1b{word-spacing:-7.933098px;}
.ws35{word-spacing:-7.867643px;}
.ws89{word-spacing:-7.736734px;}
.ws36{word-spacing:-7.730188px;}
.ws9a{word-spacing:-7.671279px;}
.ws2f{word-spacing:-7.599279px;}
.ws16{word-spacing:-7.278552px;}
.ws3c{word-spacing:-7.213097px;}
.ws3b{word-spacing:-7.147642px;}
.ws86{word-spacing:-7.016733px;}
.wse{word-spacing:-6.885824px;}
.wsc1{word-spacing:-6.689460px;}
.ws32{word-spacing:-6.493096px;}
.ws23{word-spacing:-6.296733px;}
.wsc2{word-spacing:-6.224732px;}
.wsa8{word-spacing:-6.100369px;}
.ws6c{word-spacing:-5.969460px;}
.ws6f{word-spacing:-5.838550px;}
.ws81{word-spacing:-5.773096px;}
.wsc6{word-spacing:-5.707641px;}
.ws87{word-spacing:-5.511277px;}
.ws65{word-spacing:-5.445823px;}
.ws67{word-spacing:-5.380368px;}
.ws92{word-spacing:-5.314914px;}
.ws5d{word-spacing:-5.308368px;}
.wsc7{word-spacing:-5.242913px;}
.ws8b{word-spacing:-5.184004px;}
.ws8c{word-spacing:-5.118550px;}
.ws30{word-spacing:-4.987641px;}
.wsa9{word-spacing:-4.791277px;}
.ws8a{word-spacing:-4.725822px;}
.ws6e{word-spacing:-4.660368px;}
.wsb5{word-spacing:-4.529458px;}
.wsb6{word-spacing:-4.464004px;}
.ws34{word-spacing:-4.267640px;}
.ws57{word-spacing:-4.202185px;}
.wsac{word-spacing:-4.130185px;}
.ws7e{word-spacing:-4.005822px;}
.ws70{word-spacing:-3.809458px;}
.ws9f{word-spacing:-3.802912px;}
.ws53{word-spacing:-3.652367px;}
.ws7a{word-spacing:-3.613094px;}
.ws5a{word-spacing:-3.521457px;}
.ws39{word-spacing:-3.416730px;}
.ws79{word-spacing:-3.325094px;}
.ws2b{word-spacing:-3.285821px;}
.wsb2{word-spacing:-3.279275px;}
.ws62{word-spacing:-3.220366px;}
.ws82{word-spacing:-3.089457px;}
.ws7d{word-spacing:-2.827639px;}
.wsb7{word-spacing:-2.173093px;}
.wsb8{word-spacing:-1.911274px;}
.wsb9{word-spacing:-1.773820px;}
.ws66{word-spacing:-0.792001px;}
.wsa4{word-spacing:-0.314182px;}
.ws6b{word-spacing:-0.117818px;}
.wsbd{word-spacing:-0.065455px;}
.ws4d{word-spacing:-0.059776px;}
.ws4c{word-spacing:-0.053798px;}
.ws52{word-spacing:-0.052364px;}
.ws43{word-spacing:-0.026370px;}
.ws94{word-spacing:-0.023549px;}
.ws8{word-spacing:0.000000px;}
.ws5b{word-spacing:0.013091px;}
.wsab{word-spacing:0.078546px;}
.ws7c{word-spacing:0.087931px;}
.ws7f{word-spacing:0.340364px;}
.ws77{word-spacing:3.547639px;}
.wsa1{word-spacing:5.053095px;}
.wsb1{word-spacing:18.144015px;}
.ws4f{word-spacing:18.345254px;}
.ws4b{word-spacing:18.399053px;}
.ws74{word-spacing:19.845499px;}
.ws4e{word-spacing:24.532070px;}
.wsbc{word-spacing:25.235348px;}
.ws95{word-spacing:33.355664px;}
.ws96{word-spacing:33.774574px;}
.ws73{word-spacing:171.516538px;}
.ws5{word-spacing:2360.617912px;}
._24{margin-left:-35.300242px;}
._1d{margin-left:-33.785395px;}
._1e{margin-left:-18.198323px;}
._2b{margin-left:-10.865464px;}
._1a{margin-left:-7.833025px;}
._2{margin-left:-5.810227px;}
._d{margin-left:-4.716300px;}
._1{margin-left:-3.202064px;}
._3{margin-left:-1.936742px;}
._4{width:1.936742px;}
._0{width:3.202064px;}
._19{width:4.631644px;}
._2c{width:16.598573px;}
._23{width:18.193077px;}
._17{width:19.856071px;}
._21{width:21.534563px;}
._1c{width:22.727978px;}
._26{width:24.006606px;}
._13{width:25.512062px;}
._1f{width:26.967295px;}
._16{width:28.064791px;}
._e{width:29.520025px;}
._f{width:32.013752px;}
._5{width:33.250937px;}
._14{width:34.325106px;}
._10{width:35.934575px;}
._12{width:37.609499px;}
._29{width:38.880032px;}
._20{width:40.877018px;}
._11{width:42.091751px;}
._15{width:43.330945px;}
._25{width:44.720724px;}
._18{width:46.800039px;}
._22{width:49.087381px;}
._1b{width:52.417471px;}
._28{width:53.672772px;}
._2a{width:75.744473px;}
._27{width:173.200200px;}
._b{width:547.369924px;}
._8{width:701.090673px;}
._7{width:1101.984866px;}
._9{width:1246.386493px;}
._6{width:1347.481744px;}
._c{width:1375.828796px;}
._a{width:1624.229003px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y10{bottom:61.467000px;}
.y17a{bottom:106.299000px;}
.y179{bottom:126.622500px;}
.y178{bottom:146.947500px;}
.ydf{bottom:156.130500px;}
.y177{bottom:167.271000px;}
.yde{bottom:176.454000px;}
.y153{bottom:181.026000px;}
.y42{bottom:192.996000px;}
.ydd{bottom:196.777500px;}
.y150{bottom:198.895500px;}
.y14f{bottom:201.349500px;}
.y151{bottom:207.288000px;}
.y5d{bottom:208.656000px;}
.y41{bottom:213.319500px;}
.y152{bottom:213.622500px;}
.y14e{bottom:217.090500px;}
.ydc{bottom:217.101000px;}
.y176{bottom:217.149000px;}
.y14d{bottom:221.673000px;}
.y5c{bottom:228.979500px;}
.y8d{bottom:230.241000px;}
.y40{bottom:233.643000px;}
.ydb{bottom:237.426000px;}
.y175{bottom:237.472500px;}
.y5b{bottom:249.303000px;}
.y8c{bottom:250.566000px;}
.y114{bottom:250.747500px;}
.yf4{bottom:251.848500px;}
.y3f{bottom:253.968000px;}
.y174{bottom:257.796000px;}
.yba{bottom:260.953500px;}
.y14c{bottom:268.833000px;}
.y5a{bottom:269.626500px;}
.y8b{bottom:270.889500px;}
.yf3{bottom:272.172000px;}
.y3e{bottom:274.291500px;}
.y173{bottom:278.119500px;}
.yb9{bottom:281.277000px;}
.y59{bottom:289.951500px;}
.yda{bottom:291.952500px;}
.yf2{bottom:292.495500px;}
.y3d{bottom:294.615000px;}
.y172{bottom:298.443000px;}
.yb8{bottom:301.600500px;}
.y12d{bottom:303.085500px;}
.y113{bottom:305.274000px;}
.yd9{bottom:312.276000px;}
.yf1{bottom:312.819000px;}
.y171{bottom:318.768000px;}
.yb7{bottom:321.924000px;}
.y12c{bottom:323.409000px;}
.y8a{bottom:325.416000px;}
.y112{bottom:325.599000px;}
.y14b{bottom:328.918500px;}
.y3c{bottom:331.209000px;}
.yd8{bottom:332.601000px;}
.yf0{bottom:333.142500px;}
.y58{bottom:337.111500px;}
.yf{bottom:337.233000px;}
.yb6{bottom:342.247500px;}
.y12b{bottom:343.732500px;}
.y111{bottom:345.922500px;}
.y3b{bottom:351.534000px;}
.yef{bottom:353.467500px;}
.y89{bottom:362.011500px;}
.y14a{bottom:365.512500px;}
.y110{bottom:366.246000px;}
.y170{bottom:368.646000px;}
.yd7{bottom:370.215000px;}
.y3a{bottom:371.857500px;}
.yb5{bottom:378.843000px;}
.y195{bottom:380.136000px;}
.ya5{bottom:380.340000px;}
.y88{bottom:382.335000px;}
.y149{bottom:385.836000px;}
.y10f{bottom:386.569500px;}
.y16f{bottom:388.969500px;}
.ye{bottom:390.097500px;}
.y39{bottom:392.181000px;}
.y57{bottom:397.195500px;}
.y12a{bottom:398.260500px;}
.yb4{bottom:399.166500px;}
.yee{bottom:400.627500px;}
.ya4{bottom:400.663500px;}
.y87{bottom:402.658500px;}
.y194{bottom:413.908500px;}
.y56{bottom:417.519000px;}
.y129{bottom:418.584000px;}
.yb3{bottom:419.490000px;}
.ya3{bottom:420.987000px;}
.y86{bottom:422.982000px;}
.y10e{bottom:423.165000px;}
.y16e{bottom:425.563500px;}
.y38{bottom:428.775000px;}
.yd6{bottom:430.299000px;}
.y193{bottom:434.232000px;}
.y148{bottom:435.880500px;}
.y55{bottom:437.842500px;}
.y128{bottom:438.907500px;}
.yb2{bottom:439.813500px;}
.ya2{bottom:441.312000px;}
.yd{bottom:442.963500px;}
.y85{bottom:443.307000px;}
.y10d{bottom:443.488500px;}
.y37{bottom:449.100000px;}
.yd5{bottom:450.622500px;}
.y146{bottom:456.204000px;}
.y127{bottom:459.231000px;}
.yed{bottom:460.711500px;}
.y16c{bottom:461.329500px;}
.ya1{bottom:461.635500px;}
.y10c{bottom:463.812000px;}
.y192{bottom:468.006000px;}
.y36{bottom:469.423500px;}
.y147{bottom:469.459500px;}
.y54{bottom:474.438000px;}
.y16d{bottom:474.583500px;}
.y145{bottom:476.527500px;}
.yb1{bottom:476.575500px;}
.y126{bottom:479.554500px;}
.yec{bottom:481.035000px;}
.yd4{bottom:481.461000px;}
.y10b{bottom:484.135500px;}
.y35{bottom:489.747000px;}
.y84{bottom:490.467000px;}
.y53{bottom:494.761500px;}
.yc{bottom:495.829500px;}
.y16b{bottom:497.094000px;}
.y125{bottom:499.879500px;}
.yd3{bottom:501.093000px;}
.yeb{bottom:501.358500px;}
.y191{bottom:501.780000px;}
.y10a{bottom:504.459000px;}
.y34{bottom:510.070500px;}
.ya0{bottom:511.680000px;}
.yb0{bottom:513.339000px;}
.y16a{bottom:517.417500px;}
.y70{bottom:521.091000px;}
.yea{bottom:521.683500px;}
.y190{bottom:522.103500px;}
.y109{bottom:524.784000px;}
.y52{bottom:525.715500px;}
.y144{bottom:526.572000px;}
.y33{bottom:530.394000px;}
.y169{bottom:537.741000px;}
.y51{bottom:538.696500px;}
.yd2{bottom:539.388000px;}
.y6f{bottom:541.414500px;}
.ye9{bottom:542.007000px;}
.y9f{bottom:545.452500px;}
.yb{bottom:548.694000px;}
.y83{bottom:550.551000px;}
.y32{bottom:550.719000px;}
.y124{bottom:554.406000px;}
.y18f{bottom:555.876000px;}
.yaf{bottom:560.499000px;}
.y108{bottom:561.378000px;}
.y6e{bottom:561.738000px;}
.y143{bottom:563.334000px;}
.y9e{bottom:565.776000px;}
.y50{bottom:572.008500px;}
.yd1{bottom:575.983500px;}
.y18e{bottom:576.199500px;}
.y82{bottom:580.588500px;}
.y107{bottom:581.701500px;}
.y142{bottom:583.657500px;}
.y168{bottom:584.902500px;}
.y31{bottom:587.313000px;}
.ye8{bottom:589.167000px;}
.y4f{bottom:592.333500px;}
.yd0{bottom:596.307000px;}
.y81{bottom:600.912000px;}
.ya{bottom:601.560000px;}
.y123{bottom:601.566000px;}
.y106{bottom:602.025000px;}
.y141{bottom:603.982500px;}
.y6b{bottom:605.641500px;}
.y30{bottom:607.636500px;}
.y18d{bottom:609.973500px;}
.y4e{bottom:612.657000px;}
.ycf{bottom:614.176500px;}
.y9d{bottom:615.820500px;}
.yce{bottom:616.630500px;}
.yae{bottom:620.583000px;}
.y80{bottom:621.235500px;}
.y105{bottom:622.350000px;}
.y6a{bottom:623.574000px;}
.y2f{bottom:627.960000px;}
.y18c{bottom:630.297000px;}
.y26{bottom:632.013000px;}
.ycd{bottom:636.954000px;}
.y140{bottom:637.755000px;}
.yad{bottom:640.906500px;}
.y69{bottom:641.506500px;}
.y104{bottom:642.673500px;}
.y167{bottom:644.829000px;}
.y2e{bottom:648.285000px;}
.ye7{bottom:649.251000px;}
.y25{bottom:652.338000px;}
.y9{bottom:654.424500px;}
.ycc{bottom:657.277500px;}
.y7f{bottom:657.997500px;}
.y13f{bottom:658.078500px;}
.y4d{bottom:659.817000px;}
.yac{bottom:661.230000px;}
.y9c{bottom:662.980500px;}
.y18b{bottom:664.071000px;}
.y2d{bottom:668.608500px;}
.ye6{bottom:669.574500px;}
.y122{bottom:677.922000px;}
.y103{bottom:679.267500px;}
.y166{bottom:681.424500px;}
.y18a{bottom:684.394500px;}
.yaa{bottom:687.717000px;}
.y24{bottom:688.932000px;}
.ye5{bottom:689.899500px;}
.y6d{bottom:691.143000px;}
.y7e{bottom:694.759500px;}
.y102{bottom:699.591000px;}
.y165{bottom:701.748000px;}
.ycb{bottom:704.437500px;}
.y8{bottom:707.290500px;}
.yab{bottom:707.347500px;}
.y121{bottom:707.959500px;}
.y13e{bottom:708.123000px;}
.y6c{bottom:709.077000px;}
.y23{bottom:709.255500px;}
.ye4{bottom:710.223000px;}
.y7d{bottom:715.084500px;}
.y189{bottom:718.168500px;}
.y4c{bottom:719.901000px;}
.y101{bottom:719.916000px;}
.ya9{bottom:722.893500px;}
.ya8{bottom:727.672500px;}
.y120{bottom:728.283000px;}
.y22{bottom:729.579000px;}
.ye3{bottom:730.546500px;}
.y188{bottom:738.492000px;}
.y4b{bottom:740.224500px;}
.y100{bottom:740.239500px;}
.y13d{bottom:744.885000px;}
.y7c{bottom:745.122000px;}
.y21{bottom:749.904000px;}
.y164{bottom:751.626000px;}
.y7{bottom:760.156500px;}
.y4a{bottom:760.548000px;}
.yff{bottom:760.563000px;}
.ya7{bottom:764.266500px;}
.y11f{bottom:764.877000px;}
.y7b{bottom:765.445500px;}
.y163{bottom:769.495500px;}
.y20{bottom:770.227500px;}
.y162{bottom:771.949500px;}
.y187{bottom:772.264500px;}
.ye2{bottom:777.706500px;}
.y49{bottom:780.873000px;}
.yfe{bottom:780.886500px;}
.y13c{bottom:781.647000px;}
.y11e{bottom:785.200500px;}
.y7a{bottom:785.769000px;}
.y2c{bottom:790.551000px;}
.y161{bottom:792.273000px;}
.y186{bottom:792.589500px;}
.ya6{bottom:801.028500px;}
.y48{bottom:801.196500px;}
.y11d{bottom:805.525500px;}
.y9b{bottom:806.080500px;}
.y1f{bottom:806.821500px;}
.y160{bottom:810.142500px;}
.y2b{bottom:810.874500px;}
.y15f{bottom:812.598000px;}
.y6{bottom:813.021000px;}
.y13b{bottom:815.421000px;}
.y79{bottom:822.363000px;}
.y185{bottom:826.362000px;}
.y9a{bottom:826.405500px;}
.y1e{bottom:827.145000px;}
.y2a{bottom:831.198000px;}
.yca{bottom:832.176000px;}
.yfd{bottom:833.682000px;}
.y13a{bottom:835.744500px;}
.y47{bottom:837.790500px;}
.y78{bottom:840.154500px;}
.y11c{bottom:842.044500px;}
.y77{bottom:842.688000px;}
.y68{bottom:844.480500px;}
.y184{bottom:846.685500px;}
.y99{bottom:846.729000px;}
.y1d{bottom:847.470000px;}
.yc8{bottom:852.501000px;}
.y11b{bottom:857.266500px;}
.y46{bottom:858.114000px;}
.y67{bottom:862.413000px;}
.y15e{bottom:862.476000px;}
.yc9{bottom:864.772500px;}
.y98{bottom:867.052500px;}
.y1c{bottom:867.793500px;}
.yc7{bottom:872.824500px;}
.y45{bottom:878.439000px;}
.y76{bottom:879.450000px;}
.y66{bottom:880.345500px;}
.y183{bottom:880.459500px;}
.y15d{bottom:882.799500px;}
.y134{bottom:884.038500px;}
.y1b{bottom:888.117000px;}
.y139{bottom:890.272500px;}
.y44{bottom:898.762500px;}
.y5{bottom:898.777500px;}
.y182{bottom:900.783000px;}
.y15c{bottom:903.123000px;}
.y133{bottom:904.362000px;}
.y1a{bottom:908.440500px;}
.y11a{bottom:909.102000px;}
.y93{bottom:911.553000px;}
.yc2{bottom:913.515000px;}
.y75{bottom:916.212000px;}
.y65{bottom:917.793000px;}
.ye1{bottom:919.086000px;}
.yfc{bottom:919.437000px;}
.y138{bottom:924.045000px;}
.y132{bottom:924.685500px;}
.y29{bottom:928.764000px;}
.y92{bottom:931.876500px;}
.y181{bottom:934.557000px;}
.ybb{bottom:934.572000px;}
.y74{bottom:936.535500px;}
.y64{bottom:938.118000px;}
.y15b{bottom:938.887500px;}
.yfb{bottom:939.762000px;}
.y131{bottom:945.010500px;}
.y19{bottom:945.036000px;}
.ybc{bottom:945.109500px;}
.y119{bottom:945.696000px;}
.y43{bottom:945.922500px;}
.y28{bottom:949.089000px;}
.y4{bottom:951.642000px;}
.y180{bottom:954.880500px;}
.y63{bottom:958.441500px;}
.yfa{bottom:960.085500px;}
.yc6{bottom:964.533000px;}
.y18{bottom:965.359500px;}
.y118{bottom:966.019500px;}
.ye0{bottom:966.246000px;}
.y27{bottom:969.412500px;}
.y73{bottom:973.129500px;}
.y15a{bottom:974.653500px;}
.y137{bottom:978.573000px;}
.y62{bottom:978.765000px;}
.y130{bottom:981.604500px;}
.ybd{bottom:984.384000px;}
.yc5{bottom:985.221000px;}
.y17{bottom:985.683000px;}
.y17f{bottom:988.653000px;}
.y72{bottom:993.454500px;}
.y136{bottom:998.896500px;}
.y96{bottom:1000.356000px;}
.y12f{bottom:1001.928000px;}
.y117{bottom:1002.781500px;}
.yc4{bottom:1005.909000px;}
.y16{bottom:1006.006500px;}
.y95{bottom:1008.508500px;}
.y17e{bottom:1008.978000px;}
.y3{bottom:1013.241000px;}
.yf9{bottom:1014.612000px;}
.y61{bottom:1015.527000px;}
.y135{bottom:1019.220000px;}
.y159{bottom:1019.868000px;}
.y12e{bottom:1022.251500px;}
.ybe{bottom:1023.658500px;}
.y158{bottom:1025.464500px;}
.yc3{bottom:1025.661000px;}
.y15{bottom:1026.330000px;}
.y157{bottom:1027.920000px;}
.y71{bottom:1030.216500px;}
.yf8{bottom:1034.935500px;}
.yf7{bottom:1034.937000px;}
.y116{bottom:1039.543500px;}
.y2{bottom:1040.140500px;}
.y17d{bottom:1042.750500px;}
.y14{bottom:1046.655000px;}
.y60{bottom:1052.289000px;}
.ybf{bottom:1062.933000px;}
.y17c{bottom:1063.074000px;}
.y156{bottom:1063.684500px;}
.y13{bottom:1066.978500px;}
.yf6{bottom:1068.709500px;}
.y5f{bottom:1072.612500px;}
.y1{bottom:1073.017500px;}
.y8f{bottom:1085.058000px;}
.y91{bottom:1086.364500px;}
.y115{bottom:1086.703500px;}
.y12{bottom:1087.302000px;}
.y5e{bottom:1092.937500px;}
.y17b{bottom:1096.848000px;}
.y155{bottom:1099.449000px;}
.yc0{bottom:1102.207500px;}
.yf5{bottom:1102.483500px;}
.y8e{bottom:1105.381500px;}
.y90{bottom:1106.688000px;}
.y94{bottom:1110.558000px;}
.y154{bottom:1119.774000px;}
.y97{bottom:1139.820000px;}
.y11{bottom:1140.097500px;}
.yc1{bottom:1141.482000px;}
.h12{height:2.618184px;}
.h18{height:8.805908px;}
.h1f{height:9.293503px;}
.h11{height:34.143908px;}
.hf{height:37.981670px;}
.h10{height:40.348800px;}
.hd{height:41.544042px;}
.hc{height:41.902696px;}
.h16{height:42.799330px;}
.he{height:43.200115px;}
.h15{height:44.831700px;}
.h1b{height:45.490947px;}
.h5{height:45.883675px;}
.h9{height:46.865494px;}
.ha{height:49.090950px;}
.h6{height:49.156405px;}
.h1d{height:49.260579px;}
.h17{height:49.473619px;}
.h8{height:50.283571px;}
.h3{height:51.287808px;}
.h1e{height:55.634184px;}
.h1c{height:55.640184px;}
.h14{height:57.897908px;}
.h7{height:58.385503px;}
.h20{height:58.912950px;}
.h4{height:60.426194px;}
.h1a{height:61.167908px;}
.h13{height:61.173908px;}
.h19{height:64.796184px;}
.h2{height:72.511265px;}
.hb{height:114.548184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd5{left:101.418000px;}
.x53{left:104.395500px;}
.xab{left:105.403500px;}
.x1{left:106.434000px;}
.xa7{left:112.803000px;}
.xbb{left:115.788000px;}
.x7a{left:117.330000px;}
.x27{left:119.094000px;}
.xba{left:120.768000px;}
.x49{left:122.245500px;}
.x85{left:126.415500px;}
.xf6{left:129.757500px;}
.xf5{left:130.848000px;}
.x86{left:132.325500px;}
.xb0{left:140.122500px;}
.x9f{left:141.349500px;}
.xe1{left:143.581500px;}
.x28{left:145.606500px;}
.x6d{left:147.208500px;}
.xb2{left:151.014000px;}
.x55{left:152.541000px;}
.x92{left:155.146500px;}
.x98{left:156.439500px;}
.xb5{left:160.042500px;}
.x29{left:162.861000px;}
.xf1{left:164.893500px;}
.x4e{left:169.276500px;}
.x56{left:170.749500px;}
.xe{left:171.850500px;}
.xb1{left:173.946000px;}
.x18{left:175.845000px;}
.x5d{left:177.912000px;}
.x96{left:182.943000px;}
.x19{left:183.981000px;}
.xb6{left:186.543000px;}
.xf{left:188.121000px;}
.xd0{left:189.420000px;}
.x95{left:192.400500px;}
.xd1{left:195.873000px;}
.x10{left:196.978500px;}
.xe9{left:199.861500px;}
.x4d{left:201.681000px;}
.xf0{left:205.780500px;}
.xa1{left:207.196500px;}
.xdc{left:209.818500px;}
.x2d{left:210.901500px;}
.x11{left:213.249000px;}
.xaf{left:215.046000px;}
.x6b{left:217.018500px;}
.x12{left:222.106500px;}
.x23{left:224.493000px;}
.x2e{left:228.610500px;}
.xea{left:231.333000px;}
.xf4{left:233.553000px;}
.x6c{left:234.711000px;}
.xc2{left:236.851500px;}
.x13{left:238.377000px;}
.xb7{left:239.757000px;}
.x24{left:242.692500px;}
.xae{left:245.131500px;}
.xd2{left:252.297000px;}
.x3{left:254.575500px;}
.x20{left:257.772000px;}
.xb8{left:260.722500px;}
.x2{left:266.335500px;}
.x59{left:267.702000px;}
.xde{left:272.848500px;}
.xad{left:274.372500px;}
.x33{left:277.122000px;}
.x66{left:281.980500px;}
.x21{left:285.918000px;}
.x34{left:288.043500px;}
.x77{left:296.154000px;}
.x35{left:301.407000px;}
.x2f{left:303.472500px;}
.xbc{left:304.513500px;}
.x6e{left:306.361500px;}
.x36{left:307.644000px;}
.x67{left:309.079500px;}
.x30{left:312.823500px;}
.xbd{left:317.064000px;}
.x2a{left:318.804000px;}
.x37{left:320.580000px;}
.xc3{left:321.681000px;}
.x64{left:324.552000px;}
.xdd{left:326.643000px;}
.x25{left:329.425500px;}
.x52{left:330.832500px;}
.xbe{left:332.908500px;}
.x4{left:336.948000px;}
.xc4{left:339.978000px;}
.x1a{left:346.735500px;}
.x68{left:348.520500px;}
.x26{left:352.840500px;}
.x1b{left:354.870000px;}
.x8a{left:357.630000px;}
.x5c{left:361.362000px;}
.x7b{left:364.011000px;}
.x78{left:366.499500px;}
.xc9{left:373.036500px;}
.xe0{left:375.963000px;}
.x5a{left:378.882000px;}
.x5{left:381.090000px;}
.x79{left:384.049500px;}
.xca{left:385.810500px;}
.x4c{left:386.937000px;}
.x80{left:391.120500px;}
.x8b{left:394.002000px;}
.x4b{left:395.529000px;}
.x5b{left:396.567000px;}
.xcb{left:398.677500px;}
.x8c{left:403.657500px;}
.x72{left:409.363500px;}
.xf2{left:412.224000px;}
.x81{left:415.033500px;}
.xc5{left:418.233000px;}
.x8d{left:420.364500px;}
.x82{left:421.384500px;}
.x4a{left:422.406000px;}
.xf3{left:424.951500px;}
.x83{left:427.293000px;}
.xc6{left:429.267000px;}
.xe2{left:430.326000px;}
.x87{left:432.445500px;}
.x84{left:433.644000px;}
.x97{left:435.637500px;}
.xec{left:436.747500px;}
.xa6{left:438.321000px;}
.x31{left:440.986500px;}
.x6{left:442.389000px;}
.x5e{left:446.197500px;}
.x7{left:449.863500px;}
.xcc{left:451.314000px;}
.x32{left:453.259500px;}
.xc7{left:455.388000px;}
.x14{left:457.261500px;}
.x5f{left:458.470500px;}
.x8{left:459.856500px;}
.x88{left:462.411000px;}
.x9{left:467.992500px;}
.x15{left:473.532000px;}
.xa{left:477.985500px;}
.xee{left:479.137500px;}
.x60{left:485.062500px;}
.xb{left:486.120000px;}
.xe3{left:489.277500px;}
.xb3{left:492.808500px;}
.xef{left:494.197500px;}
.xcd{left:495.486000px;}
.x1c{left:500.047500px;}
.xe4{left:501.112500px;}
.x61{left:502.599000px;}
.x1d{left:508.183500px;}
.xb4{left:509.605500px;}
.xc{left:511.626000px;}
.x6f{left:514.873500px;}
.x1e{left:517.311000px;}
.xd{left:519.762000px;}
.x71{left:521.781000px;}
.x3d{left:523.128000px;}
.x38{left:526.879500px;}
.x70{left:528.246000px;}
.x69{left:532.524000px;}
.x1f{left:536.577000px;}
.x3e{left:539.535000px;}
.xd6{left:542.316000px;}
.x73{left:543.792000px;}
.xa2{left:546.370500px;}
.xbf{left:548.097000px;}
.x22{left:550.309500px;}
.x6a{left:551.470500px;}
.x51{left:553.179000px;}
.x99{left:558.243000px;}
.xc0{left:559.849500px;}
.xa3{left:563.077500px;}
.x90{left:564.109500px;}
.x93{left:567.342000px;}
.x47{left:569.752500px;}
.x91{left:578.329500px;}
.x8e{left:583.071000px;}
.x48{left:588.120000px;}
.x50{left:589.438500px;}
.xc1{left:593.298000px;}
.xd7{left:604.113000px;}
.x9a{left:606.474000px;}
.x94{left:608.319000px;}
.xd8{left:612.762000px;}
.x4f{left:614.292000px;}
.x65{left:615.697500px;}
.xa0{left:619.542000px;}
.x39{left:621.525000px;}
.x40{left:624.502500px;}
.x89{left:630.423000px;}
.x41{left:632.895000px;}
.x3a{left:634.888500px;}
.x8f{left:636.124500px;}
.x42{left:639.163500px;}
.x3b{left:641.124000px;}
.x9b{left:643.122000px;}
.x43{left:644.800500px;}
.xce{left:646.092000px;}
.x3c{left:654.061500px;}
.xe5{left:656.284500px;}
.x9c{left:659.746500px;}
.x62{left:665.157000px;}
.x2b{left:669.091500px;}
.xd3{left:673.824000px;}
.xeb{left:677.746500px;}
.x63{left:679.999500px;}
.xd4{left:681.960000px;}
.x9d{left:684.673500px;}
.x2c{left:686.313000px;}
.x7c{left:688.957500px;}
.xd9{left:693.073500px;}
.xe8{left:694.807500px;}
.x7d{left:699.934500px;}
.xcf{left:703.296000px;}
.xed{left:704.311500px;}
.x7e{left:706.425000px;}
.x7f{left:712.333500px;}
.x74{left:715.378500px;}
.x57{left:719.232000px;}
.xa4{left:723.240000px;}
.x16{left:726.585000px;}
.xb9{left:730.206000px;}
.x75{left:736.146000px;}
.x58{left:737.440500px;}
.xac{left:739.693500px;}
.x17{left:742.855500px;}
.x9e{left:744.202500px;}
.xda{left:746.541000px;}
.x76{left:749.419500px;}
.xc8{left:752.061000px;}
.xa5{left:753.205500px;}
.xa8{left:754.834500px;}
.x3f{left:757.167000px;}
.xdb{left:758.686500px;}
.xdf{left:760.470000px;}
.xa9{left:762.970500px;}
.xe6{left:768.276000px;}
.x44{left:770.355000px;}
.x54{left:773.658000px;}
.x45{left:776.623500px;}
.xaa{left:780.924000px;}
.x46{left:782.260500px;}
.xe7{left:784.023000px;}
@media print{
.v9{vertical-align:-60.837333pt;}
.vf{vertical-align:-52.362667pt;}
.ve{vertical-align:-47.130667pt;}
.va{vertical-align:-43.632000pt;}
.v1{vertical-align:-9.008000pt;}
.v7{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.008000pt;}
.v8{vertical-align:19.280000pt;}
.v6{vertical-align:21.114667pt;}
.v5{vertical-align:24.026667pt;}
.v3{vertical-align:40.560000pt;}
.vd{vertical-align:47.130667pt;}
.vc{vertical-align:48.533333pt;}
.vb{vertical-align:55.269333pt;}
.v2{vertical-align:99.493333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.000389pt;}
.ls2b{letter-spacing:0.000416pt;}
.ls1e{letter-spacing:0.000530pt;}
.ls6a{letter-spacing:0.000923pt;}
.ls3f{letter-spacing:0.000933pt;}
.ls4c{letter-spacing:0.001409pt;}
.ls2{letter-spacing:0.001416pt;}
.ls82{letter-spacing:0.001425pt;}
.ls27{letter-spacing:0.001871pt;}
.ls2d{letter-spacing:0.001876pt;}
.lsd{letter-spacing:0.001891pt;}
.ls19{letter-spacing:0.001908pt;}
.ls5f{letter-spacing:0.001917pt;}
.ls25{letter-spacing:0.002399pt;}
.ls6b{letter-spacing:0.002400pt;}
.ls34{letter-spacing:0.002411pt;}
.ls6e{letter-spacing:0.003370pt;}
.ls1b{letter-spacing:0.003842pt;}
.ls78{letter-spacing:0.005034pt;}
.ls1{letter-spacing:0.006750pt;}
.ls7e{letter-spacing:0.006759pt;}
.ls5c{letter-spacing:0.007251pt;}
.ls40{letter-spacing:0.008315pt;}
.ls5e{letter-spacing:0.011916pt;}
.ls3c{letter-spacing:0.013640pt;}
.ls42{letter-spacing:0.016177pt;}
.ls2f{letter-spacing:0.020481pt;}
.ls86{letter-spacing:0.022702pt;}
.ls29{letter-spacing:0.024554pt;}
.ls87{letter-spacing:0.027477pt;}
.ls36{letter-spacing:0.028401pt;}
.ls65{letter-spacing:0.028445pt;}
.ls84{letter-spacing:0.028460pt;}
.ls38{letter-spacing:0.029390pt;}
.ls4b{letter-spacing:0.029949pt;}
.ls22{letter-spacing:0.058182pt;}
.ls53{letter-spacing:0.407273pt;}
.ls5b{letter-spacing:0.448756pt;}
.ls67{letter-spacing:0.451842pt;}
.ls57{letter-spacing:0.465455pt;}
.ls73{letter-spacing:0.814546pt;}
.ls4d{letter-spacing:2.036365pt;}
.ls5{letter-spacing:2.094547pt;}
.ls70{letter-spacing:2.654275pt;}
.ls3d{letter-spacing:2.655321pt;}
.ls33{letter-spacing:2.657014pt;}
.lse{letter-spacing:2.657146pt;}
.ls1a{letter-spacing:2.658104pt;}
.ls16{letter-spacing:2.658591pt;}
.ls3e{letter-spacing:2.658816pt;}
.ls7b{letter-spacing:2.659608pt;}
.ls85{letter-spacing:2.660654pt;}
.ls2e{letter-spacing:2.662479pt;}
.ls1f{letter-spacing:2.663437pt;}
.ls52{letter-spacing:3.316366pt;}
.ls14{letter-spacing:3.374548pt;}
.ls39{letter-spacing:3.786350pt;}
.ls26{letter-spacing:3.791684pt;}
.ls5d{letter-spacing:4.130913pt;}
.ls5a{letter-spacing:4.189094pt;}
.ls4e{letter-spacing:4.538186pt;}
.ls7{letter-spacing:4.770913pt;}
.ls28{letter-spacing:5.105323pt;}
.ls10{letter-spacing:6.341823pt;}
.ls21{letter-spacing:8.029098pt;}
.ls15{letter-spacing:8.087279pt;}
.ls79{letter-spacing:9.658190pt;}
.ls30{letter-spacing:9.716372pt;}
.ls6d{letter-spacing:12.353146pt;}
.ls35{letter-spacing:12.358479pt;}
.ls18{letter-spacing:12.916374pt;}
.ls74{letter-spacing:12.974556pt;}
.ls23{letter-spacing:15.185467pt;}
.ls4a{letter-spacing:16.116377pt;}
.ls8{letter-spacing:16.174559pt;}
.ls68{letter-spacing:16.177917pt;}
.ls6c{letter-spacing:16.232741pt;}
.ls88{letter-spacing:16.349105pt;}
.ls12{letter-spacing:16.354714pt;}
.ls56{letter-spacing:18.676379pt;}
.ls55{letter-spacing:18.734561pt;}
.ls2c{letter-spacing:18.813258pt;}
.ls76{letter-spacing:18.814275pt;}
.ls1c{letter-spacing:18.818104pt;}
.ls6f{letter-spacing:18.819608pt;}
.ls46{letter-spacing:18.822479pt;}
.lsa{letter-spacing:18.850925pt;}
.ls63{letter-spacing:18.967289pt;}
.ls44{letter-spacing:19.025470pt;}
.ls45{letter-spacing:19.083652pt;}
.ls13{letter-spacing:19.258198pt;}
.ls4{letter-spacing:19.316380pt;}
.ls3{letter-spacing:19.374562pt;}
.ls20{letter-spacing:19.432743pt;}
.ls50{letter-spacing:19.490925pt;}
.lsf{letter-spacing:19.549107pt;}
.ls24{letter-spacing:19.840017pt;}
.ls54{letter-spacing:20.421835pt;}
.ls61{letter-spacing:20.654563pt;}
.ls69{letter-spacing:20.712745pt;}
.ls72{letter-spacing:21.003654pt;}
.ls81{letter-spacing:21.527291pt;}
.ls7f{letter-spacing:21.748654pt;}
.ls80{letter-spacing:21.818200pt;}
.ls2a{letter-spacing:21.947812pt;}
.ls47{letter-spacing:21.953146pt;}
.lsc{letter-spacing:22.632746pt;}
.ls11{letter-spacing:22.690928pt;}
.ls77{letter-spacing:23.310275pt;}
.ls66{letter-spacing:23.505474pt;}
.ls64{letter-spacing:23.970929pt;}
.ls51{letter-spacing:24.029111pt;}
.lsb{letter-spacing:24.087293pt;}
.ls75{letter-spacing:24.203657pt;}
.ls49{letter-spacing:24.395989pt;}
.ls59{letter-spacing:24.785475pt;}
.ls60{letter-spacing:24.843657pt;}
.ls3a{letter-spacing:25.600021pt;}
.ls4f{letter-spacing:26.181840pt;}
.ls58{letter-spacing:26.589113pt;}
.ls62{letter-spacing:26.705477pt;}
.ls71{letter-spacing:26.996386pt;}
.ls31{letter-spacing:27.099812pt;}
.ls32{letter-spacing:27.105146pt;}
.ls17{letter-spacing:27.403659pt;}
.ls7d{letter-spacing:27.927296pt;}
.ls48{letter-spacing:28.974570pt;}
.ls7c{letter-spacing:30.661844pt;}
.ls83{letter-spacing:32.349118pt;}
.ls9{letter-spacing:57.832775pt;}
.ls37{letter-spacing:67.549147pt;}
.ls1d{letter-spacing:74.007334pt;}
.ls3b{letter-spacing:125.381923pt;}
.ls7a{letter-spacing:127.709197pt;}
.ls6{letter-spacing:187.985611pt;}
.ls43{letter-spacing:452.596741pt;}
.ws6d{word-spacing:-58.181867pt;}
.ws76{word-spacing:-53.133867pt;}
.ws44{word-spacing:-46.062584pt;}
.wsb3{word-spacing:-45.265492pt;}
.ws4{word-spacing:-42.074535pt;}
.ws7b{word-spacing:-42.065490pt;}
.ws93{word-spacing:-42.007308pt;}
.wsbb{word-spacing:-39.098214pt;}
.ws46{word-spacing:-37.899668pt;}
.ws47{word-spacing:-35.859224pt;}
.ws75{word-spacing:-34.611401pt;}
.ws7{word-spacing:-33.233482pt;}
.ws54{word-spacing:-32.337481pt;}
.ws4a{word-spacing:-30.546660pt;}
.ws20{word-spacing:-29.504025pt;}
.ws1a{word-spacing:-28.928024pt;}
.wsa3{word-spacing:-28.241478pt;}
.ws45{word-spacing:-28.183296pt;}
.ws99{word-spacing:-21.725109pt;}
.wsb4{word-spacing:-21.317836pt;}
.ws2e{word-spacing:-17.460378pt;}
.ws1{word-spacing:-16.480876pt;}
.ws0{word-spacing:-16.389061pt;}
.ws61{word-spacing:-16.162923pt;}
.ws78{word-spacing:-15.720740pt;}
.wsc9{word-spacing:-15.546195pt;}
.ws24{word-spacing:-15.080740pt;}
.ws71{word-spacing:-14.731649pt;}
.ws9b{word-spacing:-14.615285pt;}
.ws90{word-spacing:-14.498921pt;}
.ws8e{word-spacing:-14.440739pt;}
.wsca{word-spacing:-14.202194pt;}
.ws1c{word-spacing:-14.070753pt;}
.ws51{word-spacing:-13.994240pt;}
.ws60{word-spacing:-13.800739pt;}
.ws5f{word-spacing:-13.742557pt;}
.ws64{word-spacing:-13.684375pt;}
.wsce{word-spacing:-13.568011pt;}
.ws8f{word-spacing:-13.271284pt;}
.ws28{word-spacing:-12.986193pt;}
.ws26{word-spacing:-12.869829pt;}
.wsc5{word-spacing:-12.753465pt;}
.ws27{word-spacing:-12.695283pt;}
.ws42{word-spacing:-12.637101pt;}
.wsbf{word-spacing:-12.578920pt;}
.ws98{word-spacing:-12.543875pt;}
.ws25{word-spacing:-12.462556pt;}
.ws97{word-spacing:-12.404374pt;}
.wscf{word-spacing:-12.398556pt;}
.ws55{word-spacing:-12.346192pt;}
.ws56{word-spacing:-12.288010pt;}
.ws22{word-spacing:-12.171647pt;}
.ws6a{word-spacing:-12.055283pt;}
.ws84{word-spacing:-12.012585pt;}
.ws3a{word-spacing:-11.948824pt;}
.ws3d{word-spacing:-11.822555pt;}
.ws3e{word-spacing:-11.764373pt;}
.wsc4{word-spacing:-11.584010pt;}
.wscb{word-spacing:-11.473464pt;}
.ws9c{word-spacing:-11.357100pt;}
.ws11{word-spacing:-11.240737pt;}
.ws83{word-spacing:-11.182555pt;}
.ws6{word-spacing:-11.066191pt;}
.wscd{word-spacing:-11.008009pt;}
.wsa5{word-spacing:-10.949827pt;}
.ws48{word-spacing:-10.891645pt;}
.ws69{word-spacing:-10.833464pt;}
.ws59{word-spacing:-10.717100pt;}
.ws91{word-spacing:-10.600736pt;}
.wsa7{word-spacing:-10.536736pt;}
.ws49{word-spacing:-10.484372pt;}
.wscc{word-spacing:-10.478554pt;}
.ws58{word-spacing:-10.426191pt;}
.ws2{word-spacing:-10.424934pt;}
.ws3{word-spacing:-10.361173pt;}
.ws12{word-spacing:-10.245827pt;}
.ws50{word-spacing:-10.196389pt;}
.ws33{word-spacing:-10.135281pt;}
.wsa{word-spacing:-10.077099pt;}
.ws5c{word-spacing:-10.018917pt;}
.ws2c{word-spacing:-9.960736pt;}
.ws3f{word-spacing:-9.902554pt;}
.wsf{word-spacing:-9.844372pt;}
.ws21{word-spacing:-9.786190pt;}
.ws13{word-spacing:-9.728008pt;}
.ws9{word-spacing:-9.669826pt;}
.ws18{word-spacing:-9.611644pt;}
.ws17{word-spacing:-9.553463pt;}
.wsa0{word-spacing:-9.547644pt;}
.ws2a{word-spacing:-9.495281pt;}
.ws40{word-spacing:-9.437099pt;}
.wsd{word-spacing:-9.378917pt;}
.ws1e{word-spacing:-9.320735pt;}
.ws10{word-spacing:-9.262553pt;}
.ws63{word-spacing:-9.204371pt;}
.ws9e{word-spacing:-9.198553pt;}
.ws19{word-spacing:-9.146189pt;}
.ws9d{word-spacing:-9.140371pt;}
.ws68{word-spacing:-9.088008pt;}
.ws80{word-spacing:-9.082189pt;}
.wsc8{word-spacing:-9.024008pt;}
.wsb{word-spacing:-8.971644pt;}
.wsc3{word-spacing:-8.965826pt;}
.ws85{word-spacing:-8.913462pt;}
.ws5e{word-spacing:-8.849462pt;}
.wsb0{word-spacing:-8.791280pt;}
.wsaf{word-spacing:-8.733098pt;}
.wsa6{word-spacing:-8.674916pt;}
.ws72{word-spacing:-8.564371pt;}
.wsa2{word-spacing:-8.506189pt;}
.wsae{word-spacing:-8.500371pt;}
.ws41{word-spacing:-8.389825pt;}
.wsc{word-spacing:-8.325825pt;}
.ws31{word-spacing:-8.273461pt;}
.wsaa{word-spacing:-8.215280pt;}
.ws15{word-spacing:-8.098916pt;}
.wsad{word-spacing:-7.982552pt;}
.ws29{word-spacing:-7.808007pt;}
.ws14{word-spacing:-7.749825pt;}
.ws38{word-spacing:-7.691643pt;}
.wsba{word-spacing:-7.685825pt;}
.wsc0{word-spacing:-7.633461pt;}
.ws88{word-spacing:-7.575279pt;}
.ws2d{word-spacing:-7.517097pt;}
.ws37{word-spacing:-7.458915pt;}
.ws1f{word-spacing:-7.342552pt;}
.ws1d{word-spacing:-7.284370pt;}
.wsbe{word-spacing:-7.278552pt;}
.ws8d{word-spacing:-7.168006pt;}
.ws1b{word-spacing:-7.051642pt;}
.ws35{word-spacing:-6.993460pt;}
.ws89{word-spacing:-6.877097pt;}
.ws36{word-spacing:-6.871278pt;}
.ws9a{word-spacing:-6.818915pt;}
.ws2f{word-spacing:-6.754915pt;}
.ws16{word-spacing:-6.469824pt;}
.ws3c{word-spacing:-6.411642pt;}
.ws3b{word-spacing:-6.353460pt;}
.ws86{word-spacing:-6.237096pt;}
.wse{word-spacing:-6.120732pt;}
.wsc1{word-spacing:-5.946187pt;}
.ws32{word-spacing:-5.771641pt;}
.ws23{word-spacing:-5.597096pt;}
.wsc2{word-spacing:-5.533096pt;}
.wsa8{word-spacing:-5.422550pt;}
.ws6c{word-spacing:-5.306186pt;}
.ws6f{word-spacing:-5.189823pt;}
.ws81{word-spacing:-5.131641pt;}
.wsc6{word-spacing:-5.073459pt;}
.ws87{word-spacing:-4.898913pt;}
.ws65{word-spacing:-4.840731pt;}
.ws67{word-spacing:-4.782549pt;}
.ws92{word-spacing:-4.724368pt;}
.ws5d{word-spacing:-4.718549pt;}
.wsc7{word-spacing:-4.660368pt;}
.ws8b{word-spacing:-4.608004pt;}
.ws8c{word-spacing:-4.549822pt;}
.ws30{word-spacing:-4.433458pt;}
.wsa9{word-spacing:-4.258913pt;}
.ws8a{word-spacing:-4.200731pt;}
.ws6e{word-spacing:-4.142549pt;}
.wsb5{word-spacing:-4.026185pt;}
.wsb6{word-spacing:-3.968003pt;}
.ws34{word-spacing:-3.793458pt;}
.ws57{word-spacing:-3.735276pt;}
.wsac{word-spacing:-3.671276pt;}
.ws7e{word-spacing:-3.560730pt;}
.ws70{word-spacing:-3.386185pt;}
.ws9f{word-spacing:-3.380366pt;}
.ws53{word-spacing:-3.246548pt;}
.ws7a{word-spacing:-3.211639pt;}
.ws5a{word-spacing:-3.130184pt;}
.ws39{word-spacing:-3.037093pt;}
.ws79{word-spacing:-2.955639pt;}
.ws2b{word-spacing:-2.920730pt;}
.wsb2{word-spacing:-2.914912pt;}
.ws62{word-spacing:-2.862548pt;}
.ws82{word-spacing:-2.746184pt;}
.ws7d{word-spacing:-2.513457pt;}
.wsb7{word-spacing:-1.931638pt;}
.wsb8{word-spacing:-1.698911pt;}
.wsb9{word-spacing:-1.576729pt;}
.ws66{word-spacing:-0.704001pt;}
.wsa4{word-spacing:-0.279273pt;}
.ws6b{word-spacing:-0.104727pt;}
.wsbd{word-spacing:-0.058182pt;}
.ws4d{word-spacing:-0.053134pt;}
.ws4c{word-spacing:-0.047821pt;}
.ws52{word-spacing:-0.046545pt;}
.ws43{word-spacing:-0.023440pt;}
.ws94{word-spacing:-0.020932pt;}
.ws8{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.011636pt;}
.wsab{word-spacing:0.069818pt;}
.ws7c{word-spacing:0.078161pt;}
.ws7f{word-spacing:0.302546pt;}
.ws77{word-spacing:3.153457pt;}
.wsa1{word-spacing:4.491640pt;}
.wsb1{word-spacing:16.128013pt;}
.ws4f{word-spacing:16.306893pt;}
.ws4b{word-spacing:16.354714pt;}
.ws74{word-spacing:17.640444pt;}
.ws4e{word-spacing:21.806285pt;}
.wsbc{word-spacing:22.431421pt;}
.ws95{word-spacing:29.649479pt;}
.ws96{word-spacing:30.021843pt;}
.ws73{word-spacing:152.459145pt;}
.ws5{word-spacing:2098.327033pt;}
._24{margin-left:-31.377992pt;}
._1d{margin-left:-30.031462pt;}
._1e{margin-left:-16.176287pt;}
._2b{margin-left:-9.658190pt;}
._1a{margin-left:-6.962689pt;}
._2{margin-left:-5.164646pt;}
._d{margin-left:-4.192267pt;}
._1{margin-left:-2.846279pt;}
._3{margin-left:-1.721549pt;}
._4{width:1.721549pt;}
._0{width:2.846279pt;}
._19{width:4.117017pt;}
._2c{width:14.754287pt;}
._23{width:16.171624pt;}
._17{width:17.649841pt;}
._21{width:19.141834pt;}
._1c{width:20.202647pt;}
._26{width:21.339205pt;}
._13{width:22.677388pt;}
._1f{width:23.970929pt;}
._16{width:24.946481pt;}
._e{width:26.240022pt;}
._f{width:28.456668pt;}
._5{width:29.556388pt;}
._14{width:30.511205pt;}
._10{width:31.941845pt;}
._12{width:33.430666pt;}
._29{width:34.560029pt;}
._20{width:36.335127pt;}
._11{width:37.414890pt;}
._15{width:38.516396pt;}
._25{width:39.751755pt;}
._18{width:41.600035pt;}
._22{width:43.633228pt;}
._1b{width:46.593308pt;}
._28{width:47.709131pt;}
._2a{width:67.328421pt;}
._27{width:153.955733pt;}
._b{width:486.551044pt;}
._8{width:623.191709pt;}
._7{width:979.542103pt;}
._9{width:1107.899105pt;}
._6{width:1197.761550pt;}
._c{width:1222.958930pt;}
._a{width:1443.759114pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:54.637333pt;}
.y17a{bottom:94.488000pt;}
.y179{bottom:112.553333pt;}
.y178{bottom:130.620000pt;}
.ydf{bottom:138.782667pt;}
.y177{bottom:148.685333pt;}
.yde{bottom:156.848000pt;}
.y153{bottom:160.912000pt;}
.y42{bottom:171.552000pt;}
.ydd{bottom:174.913333pt;}
.y150{bottom:176.796000pt;}
.y14f{bottom:178.977333pt;}
.y151{bottom:184.256000pt;}
.y5d{bottom:185.472000pt;}
.y41{bottom:189.617333pt;}
.y152{bottom:189.886667pt;}
.y14e{bottom:192.969333pt;}
.ydc{bottom:192.978667pt;}
.y176{bottom:193.021333pt;}
.y14d{bottom:197.042667pt;}
.y5c{bottom:203.537333pt;}
.y8d{bottom:204.658667pt;}
.y40{bottom:207.682667pt;}
.ydb{bottom:211.045333pt;}
.y175{bottom:211.086667pt;}
.y5b{bottom:221.602667pt;}
.y8c{bottom:222.725333pt;}
.y114{bottom:222.886667pt;}
.yf4{bottom:223.865333pt;}
.y3f{bottom:225.749333pt;}
.y174{bottom:229.152000pt;}
.yba{bottom:231.958667pt;}
.y14c{bottom:238.962667pt;}
.y5a{bottom:239.668000pt;}
.y8b{bottom:240.790667pt;}
.yf3{bottom:241.930667pt;}
.y3e{bottom:243.814667pt;}
.y173{bottom:247.217333pt;}
.yb9{bottom:250.024000pt;}
.y59{bottom:257.734667pt;}
.yda{bottom:259.513333pt;}
.yf2{bottom:259.996000pt;}
.y3d{bottom:261.880000pt;}
.y172{bottom:265.282667pt;}
.yb8{bottom:268.089333pt;}
.y12d{bottom:269.409333pt;}
.y113{bottom:271.354667pt;}
.yd9{bottom:277.578667pt;}
.yf1{bottom:278.061333pt;}
.y171{bottom:283.349333pt;}
.yb7{bottom:286.154667pt;}
.y12c{bottom:287.474667pt;}
.y8a{bottom:289.258667pt;}
.y112{bottom:289.421333pt;}
.y14b{bottom:292.372000pt;}
.y3c{bottom:294.408000pt;}
.yd8{bottom:295.645333pt;}
.yf0{bottom:296.126667pt;}
.y58{bottom:299.654667pt;}
.yf{bottom:299.762667pt;}
.yb6{bottom:304.220000pt;}
.y12b{bottom:305.540000pt;}
.y111{bottom:307.486667pt;}
.y3b{bottom:312.474667pt;}
.yef{bottom:314.193333pt;}
.y89{bottom:321.788000pt;}
.y14a{bottom:324.900000pt;}
.y110{bottom:325.552000pt;}
.y170{bottom:327.685333pt;}
.yd7{bottom:329.080000pt;}
.y3a{bottom:330.540000pt;}
.yb5{bottom:336.749333pt;}
.y195{bottom:337.898667pt;}
.ya5{bottom:338.080000pt;}
.y88{bottom:339.853333pt;}
.y149{bottom:342.965333pt;}
.y10f{bottom:343.617333pt;}
.y16f{bottom:345.750667pt;}
.ye{bottom:346.753333pt;}
.y39{bottom:348.605333pt;}
.y57{bottom:353.062667pt;}
.y12a{bottom:354.009333pt;}
.yb4{bottom:354.814667pt;}
.yee{bottom:356.113333pt;}
.ya4{bottom:356.145333pt;}
.y87{bottom:357.918667pt;}
.y194{bottom:367.918667pt;}
.y56{bottom:371.128000pt;}
.y129{bottom:372.074667pt;}
.yb3{bottom:372.880000pt;}
.ya3{bottom:374.210667pt;}
.y86{bottom:375.984000pt;}
.y10e{bottom:376.146667pt;}
.y16e{bottom:378.278667pt;}
.y38{bottom:381.133333pt;}
.yd6{bottom:382.488000pt;}
.y193{bottom:385.984000pt;}
.y148{bottom:387.449333pt;}
.y55{bottom:389.193333pt;}
.y128{bottom:390.140000pt;}
.yb2{bottom:390.945333pt;}
.ya2{bottom:392.277333pt;}
.yd{bottom:393.745333pt;}
.y85{bottom:394.050667pt;}
.y10d{bottom:394.212000pt;}
.y37{bottom:399.200000pt;}
.yd5{bottom:400.553333pt;}
.y146{bottom:405.514667pt;}
.y127{bottom:408.205333pt;}
.yed{bottom:409.521333pt;}
.y16c{bottom:410.070667pt;}
.ya1{bottom:410.342667pt;}
.y10c{bottom:412.277333pt;}
.y192{bottom:416.005333pt;}
.y36{bottom:417.265333pt;}
.y147{bottom:417.297333pt;}
.y54{bottom:421.722667pt;}
.y16d{bottom:421.852000pt;}
.y145{bottom:423.580000pt;}
.yb1{bottom:423.622667pt;}
.y126{bottom:426.270667pt;}
.yec{bottom:427.586667pt;}
.yd4{bottom:427.965333pt;}
.y10b{bottom:430.342667pt;}
.y35{bottom:435.330667pt;}
.y84{bottom:435.970667pt;}
.y53{bottom:439.788000pt;}
.yc{bottom:440.737333pt;}
.y16b{bottom:441.861333pt;}
.y125{bottom:444.337333pt;}
.yd3{bottom:445.416000pt;}
.yeb{bottom:445.652000pt;}
.y191{bottom:446.026667pt;}
.y10a{bottom:448.408000pt;}
.y34{bottom:453.396000pt;}
.ya0{bottom:454.826667pt;}
.yb0{bottom:456.301333pt;}
.y16a{bottom:459.926667pt;}
.y70{bottom:463.192000pt;}
.yea{bottom:463.718667pt;}
.y190{bottom:464.092000pt;}
.y109{bottom:466.474667pt;}
.y52{bottom:467.302667pt;}
.y144{bottom:468.064000pt;}
.y33{bottom:471.461333pt;}
.y169{bottom:477.992000pt;}
.y51{bottom:478.841333pt;}
.yd2{bottom:479.456000pt;}
.y6f{bottom:481.257333pt;}
.ye9{bottom:481.784000pt;}
.y9f{bottom:484.846667pt;}
.yb{bottom:487.728000pt;}
.y83{bottom:489.378667pt;}
.y32{bottom:489.528000pt;}
.y124{bottom:492.805333pt;}
.y18f{bottom:494.112000pt;}
.yaf{bottom:498.221333pt;}
.y108{bottom:499.002667pt;}
.y6e{bottom:499.322667pt;}
.y143{bottom:500.741333pt;}
.y9e{bottom:502.912000pt;}
.y50{bottom:508.452000pt;}
.yd1{bottom:511.985333pt;}
.y18e{bottom:512.177333pt;}
.y82{bottom:516.078667pt;}
.y107{bottom:517.068000pt;}
.y142{bottom:518.806667pt;}
.y168{bottom:519.913333pt;}
.y31{bottom:522.056000pt;}
.ye8{bottom:523.704000pt;}
.y4f{bottom:526.518667pt;}
.yd0{bottom:530.050667pt;}
.y81{bottom:534.144000pt;}
.ya{bottom:534.720000pt;}
.y123{bottom:534.725333pt;}
.y106{bottom:535.133333pt;}
.y141{bottom:536.873333pt;}
.y6b{bottom:538.348000pt;}
.y30{bottom:540.121333pt;}
.y18d{bottom:542.198667pt;}
.y4e{bottom:544.584000pt;}
.ycf{bottom:545.934667pt;}
.y9d{bottom:547.396000pt;}
.yce{bottom:548.116000pt;}
.yae{bottom:551.629333pt;}
.y80{bottom:552.209333pt;}
.y105{bottom:553.200000pt;}
.y6a{bottom:554.288000pt;}
.y2f{bottom:558.186667pt;}
.y18c{bottom:560.264000pt;}
.y26{bottom:561.789333pt;}
.ycd{bottom:566.181333pt;}
.y140{bottom:566.893333pt;}
.yad{bottom:569.694667pt;}
.y69{bottom:570.228000pt;}
.y104{bottom:571.265333pt;}
.y167{bottom:573.181333pt;}
.y2e{bottom:576.253333pt;}
.ye7{bottom:577.112000pt;}
.y25{bottom:579.856000pt;}
.y9{bottom:581.710667pt;}
.ycc{bottom:584.246667pt;}
.y7f{bottom:584.886667pt;}
.y13f{bottom:584.958667pt;}
.y4d{bottom:586.504000pt;}
.yac{bottom:587.760000pt;}
.y9c{bottom:589.316000pt;}
.y18b{bottom:590.285333pt;}
.y2d{bottom:594.318667pt;}
.ye6{bottom:595.177333pt;}
.y122{bottom:602.597333pt;}
.y103{bottom:603.793333pt;}
.y166{bottom:605.710667pt;}
.y18a{bottom:608.350667pt;}
.yaa{bottom:611.304000pt;}
.y24{bottom:612.384000pt;}
.ye5{bottom:613.244000pt;}
.y6d{bottom:614.349333pt;}
.y7e{bottom:617.564000pt;}
.y102{bottom:621.858667pt;}
.y165{bottom:623.776000pt;}
.ycb{bottom:626.166667pt;}
.y8{bottom:628.702667pt;}
.yab{bottom:628.753333pt;}
.y121{bottom:629.297333pt;}
.y13e{bottom:629.442667pt;}
.y6c{bottom:630.290667pt;}
.y23{bottom:630.449333pt;}
.ye4{bottom:631.309333pt;}
.y7d{bottom:635.630667pt;}
.y189{bottom:638.372000pt;}
.y4c{bottom:639.912000pt;}
.y101{bottom:639.925333pt;}
.ya9{bottom:642.572000pt;}
.ya8{bottom:646.820000pt;}
.y120{bottom:647.362667pt;}
.y22{bottom:648.514667pt;}
.ye3{bottom:649.374667pt;}
.y188{bottom:656.437333pt;}
.y4b{bottom:657.977333pt;}
.y100{bottom:657.990667pt;}
.y13d{bottom:662.120000pt;}
.y7c{bottom:662.330667pt;}
.y21{bottom:666.581333pt;}
.y164{bottom:668.112000pt;}
.y7{bottom:675.694667pt;}
.y4a{bottom:676.042667pt;}
.yff{bottom:676.056000pt;}
.ya7{bottom:679.348000pt;}
.y11f{bottom:679.890667pt;}
.y7b{bottom:680.396000pt;}
.y163{bottom:683.996000pt;}
.y20{bottom:684.646667pt;}
.y162{bottom:686.177333pt;}
.y187{bottom:686.457333pt;}
.ye2{bottom:691.294667pt;}
.y49{bottom:694.109333pt;}
.yfe{bottom:694.121333pt;}
.y13c{bottom:694.797333pt;}
.y11e{bottom:697.956000pt;}
.y7a{bottom:698.461333pt;}
.y2c{bottom:702.712000pt;}
.y161{bottom:704.242667pt;}
.y186{bottom:704.524000pt;}
.ya6{bottom:712.025333pt;}
.y48{bottom:712.174667pt;}
.y11d{bottom:716.022667pt;}
.y9b{bottom:716.516000pt;}
.y1f{bottom:717.174667pt;}
.y160{bottom:720.126667pt;}
.y2b{bottom:720.777333pt;}
.y15f{bottom:722.309333pt;}
.y6{bottom:722.685333pt;}
.y13b{bottom:724.818667pt;}
.y79{bottom:730.989333pt;}
.y185{bottom:734.544000pt;}
.y9a{bottom:734.582667pt;}
.y1e{bottom:735.240000pt;}
.y2a{bottom:738.842667pt;}
.yca{bottom:739.712000pt;}
.yfd{bottom:741.050667pt;}
.y13a{bottom:742.884000pt;}
.y47{bottom:744.702667pt;}
.y78{bottom:746.804000pt;}
.y11c{bottom:748.484000pt;}
.y77{bottom:749.056000pt;}
.y68{bottom:750.649333pt;}
.y184{bottom:752.609333pt;}
.y99{bottom:752.648000pt;}
.y1d{bottom:753.306667pt;}
.yc8{bottom:757.778667pt;}
.y11b{bottom:762.014667pt;}
.y46{bottom:762.768000pt;}
.y67{bottom:766.589333pt;}
.y15e{bottom:766.645333pt;}
.yc9{bottom:768.686667pt;}
.y98{bottom:770.713333pt;}
.y1c{bottom:771.372000pt;}
.yc7{bottom:775.844000pt;}
.y45{bottom:780.834667pt;}
.y76{bottom:781.733333pt;}
.y66{bottom:782.529333pt;}
.y183{bottom:782.630667pt;}
.y15d{bottom:784.710667pt;}
.y134{bottom:785.812000pt;}
.y1b{bottom:789.437333pt;}
.y139{bottom:791.353333pt;}
.y44{bottom:798.900000pt;}
.y5{bottom:798.913333pt;}
.y182{bottom:800.696000pt;}
.y15c{bottom:802.776000pt;}
.y133{bottom:803.877333pt;}
.y1a{bottom:807.502667pt;}
.y11a{bottom:808.090667pt;}
.y93{bottom:810.269333pt;}
.yc2{bottom:812.013333pt;}
.y75{bottom:814.410667pt;}
.y65{bottom:815.816000pt;}
.ye1{bottom:816.965333pt;}
.yfc{bottom:817.277333pt;}
.y138{bottom:821.373333pt;}
.y132{bottom:821.942667pt;}
.y29{bottom:825.568000pt;}
.y92{bottom:828.334667pt;}
.y181{bottom:830.717333pt;}
.ybb{bottom:830.730667pt;}
.y74{bottom:832.476000pt;}
.y64{bottom:833.882667pt;}
.y15b{bottom:834.566667pt;}
.yfb{bottom:835.344000pt;}
.y131{bottom:840.009333pt;}
.y19{bottom:840.032000pt;}
.ybc{bottom:840.097333pt;}
.y119{bottom:840.618667pt;}
.y43{bottom:840.820000pt;}
.y28{bottom:843.634667pt;}
.y4{bottom:845.904000pt;}
.y180{bottom:848.782667pt;}
.y63{bottom:851.948000pt;}
.yfa{bottom:853.409333pt;}
.yc6{bottom:857.362667pt;}
.y18{bottom:858.097333pt;}
.y118{bottom:858.684000pt;}
.ye0{bottom:858.885333pt;}
.y27{bottom:861.700000pt;}
.y73{bottom:865.004000pt;}
.y15a{bottom:866.358667pt;}
.y137{bottom:869.842667pt;}
.y62{bottom:870.013333pt;}
.y130{bottom:872.537333pt;}
.ybd{bottom:875.008000pt;}
.yc5{bottom:875.752000pt;}
.y17{bottom:876.162667pt;}
.y17f{bottom:878.802667pt;}
.y72{bottom:883.070667pt;}
.y136{bottom:887.908000pt;}
.y96{bottom:889.205333pt;}
.y12f{bottom:890.602667pt;}
.y117{bottom:891.361333pt;}
.yc4{bottom:894.141333pt;}
.y16{bottom:894.228000pt;}
.y95{bottom:896.452000pt;}
.y17e{bottom:896.869333pt;}
.y3{bottom:900.658667pt;}
.yf9{bottom:901.877333pt;}
.y61{bottom:902.690667pt;}
.y135{bottom:905.973333pt;}
.y159{bottom:906.549333pt;}
.y12e{bottom:908.668000pt;}
.ybe{bottom:909.918667pt;}
.y158{bottom:911.524000pt;}
.yc3{bottom:911.698667pt;}
.y15{bottom:912.293333pt;}
.y157{bottom:913.706667pt;}
.y71{bottom:915.748000pt;}
.yf8{bottom:919.942667pt;}
.yf7{bottom:919.944000pt;}
.y116{bottom:924.038667pt;}
.y2{bottom:924.569333pt;}
.y17d{bottom:926.889333pt;}
.y14{bottom:930.360000pt;}
.y60{bottom:935.368000pt;}
.ybf{bottom:944.829333pt;}
.y17c{bottom:944.954667pt;}
.y156{bottom:945.497333pt;}
.y13{bottom:948.425333pt;}
.yf6{bottom:949.964000pt;}
.y5f{bottom:953.433333pt;}
.y1{bottom:953.793333pt;}
.y8f{bottom:964.496000pt;}
.y91{bottom:965.657333pt;}
.y115{bottom:965.958667pt;}
.y12{bottom:966.490667pt;}
.y5e{bottom:971.500000pt;}
.y17b{bottom:974.976000pt;}
.y155{bottom:977.288000pt;}
.yc0{bottom:979.740000pt;}
.yf5{bottom:979.985333pt;}
.y8e{bottom:982.561333pt;}
.y90{bottom:983.722667pt;}
.y94{bottom:987.162667pt;}
.y154{bottom:995.354667pt;}
.y97{bottom:1013.173333pt;}
.y11{bottom:1013.420000pt;}
.yc1{bottom:1014.650667pt;}
.h12{height:2.327275pt;}
.h18{height:7.827474pt;}
.h1f{height:8.260892pt;}
.h11{height:30.350141pt;}
.hf{height:33.761485pt;}
.h10{height:35.865600pt;}
.hd{height:36.928037pt;}
.hc{height:37.246841pt;}
.h16{height:38.043849pt;}
.he{height:38.400102pt;}
.h15{height:39.850400pt;}
.h1b{height:40.436397pt;}
.h5{height:40.785489pt;}
.h9{height:41.658217pt;}
.ha{height:43.636400pt;}
.h6{height:43.694582pt;}
.h1d{height:43.787181pt;}
.h17{height:43.976550pt;}
.h8{height:44.696508pt;}
.h3{height:45.589163pt;}
.h1e{height:49.452608pt;}
.h1c{height:49.457941pt;}
.h14{height:51.464807pt;}
.h7{height:51.898225pt;}
.h20{height:52.367067pt;}
.h4{height:53.712173pt;}
.h1a{height:54.371474pt;}
.h13{height:54.376807pt;}
.h19{height:57.596608pt;}
.h2{height:64.454458pt;}
.hb{height:101.820608pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd5{left:90.149333pt;}
.x53{left:92.796000pt;}
.xab{left:93.692000pt;}
.x1{left:94.608000pt;}
.xa7{left:100.269333pt;}
.xbb{left:102.922667pt;}
.x7a{left:104.293333pt;}
.x27{left:105.861333pt;}
.xba{left:107.349333pt;}
.x49{left:108.662667pt;}
.x85{left:112.369333pt;}
.xf6{left:115.340000pt;}
.xf5{left:116.309333pt;}
.x86{left:117.622667pt;}
.xb0{left:124.553333pt;}
.x9f{left:125.644000pt;}
.xe1{left:127.628000pt;}
.x28{left:129.428000pt;}
.x6d{left:130.852000pt;}
.xb2{left:134.234667pt;}
.x55{left:135.592000pt;}
.x92{left:137.908000pt;}
.x98{left:139.057333pt;}
.xb5{left:142.260000pt;}
.x29{left:144.765333pt;}
.xf1{left:146.572000pt;}
.x4e{left:150.468000pt;}
.x56{left:151.777333pt;}
.xe{left:152.756000pt;}
.xb1{left:154.618667pt;}
.x18{left:156.306667pt;}
.x5d{left:158.144000pt;}
.x96{left:162.616000pt;}
.x19{left:163.538667pt;}
.xb6{left:165.816000pt;}
.xf{left:167.218667pt;}
.xd0{left:168.373333pt;}
.x95{left:171.022667pt;}
.xd1{left:174.109333pt;}
.x10{left:175.092000pt;}
.xe9{left:177.654667pt;}
.x4d{left:179.272000pt;}
.xf0{left:182.916000pt;}
.xa1{left:184.174667pt;}
.xdc{left:186.505333pt;}
.x2d{left:187.468000pt;}
.x11{left:189.554667pt;}
.xaf{left:191.152000pt;}
.x6b{left:192.905333pt;}
.x12{left:197.428000pt;}
.x23{left:199.549333pt;}
.x2e{left:203.209333pt;}
.xea{left:205.629333pt;}
.xf4{left:207.602667pt;}
.x6c{left:208.632000pt;}
.xc2{left:210.534667pt;}
.x13{left:211.890667pt;}
.xb7{left:213.117333pt;}
.x24{left:215.726667pt;}
.xae{left:217.894667pt;}
.xd2{left:224.264000pt;}
.x3{left:226.289333pt;}
.x20{left:229.130667pt;}
.xb8{left:231.753333pt;}
.x2{left:236.742667pt;}
.x59{left:237.957333pt;}
.xde{left:242.532000pt;}
.xad{left:243.886667pt;}
.x33{left:246.330667pt;}
.x66{left:250.649333pt;}
.x21{left:254.149333pt;}
.x34{left:256.038667pt;}
.x77{left:263.248000pt;}
.x35{left:267.917333pt;}
.x2f{left:269.753333pt;}
.xbc{left:270.678667pt;}
.x6e{left:272.321333pt;}
.x36{left:273.461333pt;}
.x67{left:274.737333pt;}
.x30{left:278.065333pt;}
.xbd{left:281.834667pt;}
.x2a{left:283.381333pt;}
.x37{left:284.960000pt;}
.xc3{left:285.938667pt;}
.x64{left:288.490667pt;}
.xdd{left:290.349333pt;}
.x25{left:292.822667pt;}
.x52{left:294.073333pt;}
.xbe{left:295.918667pt;}
.x4{left:299.509333pt;}
.xc4{left:302.202667pt;}
.x1a{left:308.209333pt;}
.x68{left:309.796000pt;}
.x26{left:313.636000pt;}
.x1b{left:315.440000pt;}
.x8a{left:317.893333pt;}
.x5c{left:321.210667pt;}
.x7b{left:323.565333pt;}
.x78{left:325.777333pt;}
.xc9{left:331.588000pt;}
.xe0{left:334.189333pt;}
.x5a{left:336.784000pt;}
.x5{left:338.746667pt;}
.x79{left:341.377333pt;}
.xca{left:342.942667pt;}
.x4c{left:343.944000pt;}
.x80{left:347.662667pt;}
.x8b{left:350.224000pt;}
.x4b{left:351.581333pt;}
.x5b{left:352.504000pt;}
.xcb{left:354.380000pt;}
.x8c{left:358.806667pt;}
.x72{left:363.878667pt;}
.xf2{left:366.421333pt;}
.x81{left:368.918667pt;}
.xc5{left:371.762667pt;}
.x8d{left:373.657333pt;}
.x82{left:374.564000pt;}
.x4a{left:375.472000pt;}
.xf3{left:377.734667pt;}
.x83{left:379.816000pt;}
.xc6{left:381.570667pt;}
.xe2{left:382.512000pt;}
.x87{left:384.396000pt;}
.x84{left:385.461333pt;}
.x97{left:387.233333pt;}
.xec{left:388.220000pt;}
.xa6{left:389.618667pt;}
.x31{left:391.988000pt;}
.x6{left:393.234667pt;}
.x5e{left:396.620000pt;}
.x7{left:399.878667pt;}
.xcc{left:401.168000pt;}
.x32{left:402.897333pt;}
.xc7{left:404.789333pt;}
.x14{left:406.454667pt;}
.x5f{left:407.529333pt;}
.x8{left:408.761333pt;}
.x88{left:411.032000pt;}
.x9{left:415.993333pt;}
.x15{left:420.917333pt;}
.xa{left:424.876000pt;}
.xee{left:425.900000pt;}
.x60{left:431.166667pt;}
.xb{left:432.106667pt;}
.xe3{left:434.913333pt;}
.xb3{left:438.052000pt;}
.xef{left:439.286667pt;}
.xcd{left:440.432000pt;}
.x1c{left:444.486667pt;}
.xe4{left:445.433333pt;}
.x61{left:446.754667pt;}
.x1d{left:451.718667pt;}
.xb4{left:452.982667pt;}
.xc{left:454.778667pt;}
.x6f{left:457.665333pt;}
.x1e{left:459.832000pt;}
.xd{left:462.010667pt;}
.x71{left:463.805333pt;}
.x3d{left:465.002667pt;}
.x38{left:468.337333pt;}
.x70{left:469.552000pt;}
.x69{left:473.354667pt;}
.x1f{left:476.957333pt;}
.x3e{left:479.586667pt;}
.xd6{left:482.058667pt;}
.x73{left:483.370667pt;}
.xa2{left:485.662667pt;}
.xbf{left:487.197333pt;}
.x22{left:489.164000pt;}
.x6a{left:490.196000pt;}
.x51{left:491.714667pt;}
.x99{left:496.216000pt;}
.xc0{left:497.644000pt;}
.xa3{left:500.513333pt;}
.x90{left:501.430667pt;}
.x93{left:504.304000pt;}
.x47{left:506.446667pt;}
.x91{left:514.070667pt;}
.x8e{left:518.285333pt;}
.x48{left:522.773333pt;}
.x50{left:523.945333pt;}
.xc1{left:527.376000pt;}
.xd7{left:536.989333pt;}
.x9a{left:539.088000pt;}
.x94{left:540.728000pt;}
.xd8{left:544.677333pt;}
.x4f{left:546.037333pt;}
.x65{left:547.286667pt;}
.xa0{left:550.704000pt;}
.x39{left:552.466667pt;}
.x40{left:555.113333pt;}
.x89{left:560.376000pt;}
.x41{left:562.573333pt;}
.x3a{left:564.345333pt;}
.x8f{left:565.444000pt;}
.x42{left:568.145333pt;}
.x3b{left:569.888000pt;}
.x9b{left:571.664000pt;}
.x43{left:573.156000pt;}
.xce{left:574.304000pt;}
.x3c{left:581.388000pt;}
.xe5{left:583.364000pt;}
.x9c{left:586.441333pt;}
.x62{left:591.250667pt;}
.x2b{left:594.748000pt;}
.xd3{left:598.954667pt;}
.xeb{left:602.441333pt;}
.x63{left:604.444000pt;}
.xd4{left:606.186667pt;}
.x9d{left:608.598667pt;}
.x2c{left:610.056000pt;}
.x7c{left:612.406667pt;}
.xd9{left:616.065333pt;}
.xe8{left:617.606667pt;}
.x7d{left:622.164000pt;}
.xcf{left:625.152000pt;}
.xed{left:626.054667pt;}
.x7e{left:627.933333pt;}
.x7f{left:633.185333pt;}
.x74{left:635.892000pt;}
.x57{left:639.317333pt;}
.xa4{left:642.880000pt;}
.x16{left:645.853333pt;}
.xb9{left:649.072000pt;}
.x75{left:654.352000pt;}
.x58{left:655.502667pt;}
.xac{left:657.505333pt;}
.x17{left:660.316000pt;}
.x9e{left:661.513333pt;}
.xda{left:663.592000pt;}
.x76{left:666.150667pt;}
.xc8{left:668.498667pt;}
.xa5{left:669.516000pt;}
.xa8{left:670.964000pt;}
.x3f{left:673.037333pt;}
.xdb{left:674.388000pt;}
.xdf{left:675.973333pt;}
.xa9{left:678.196000pt;}
.xe6{left:682.912000pt;}
.x44{left:684.760000pt;}
.x54{left:687.696000pt;}
.x45{left:690.332000pt;}
.xaa{left:694.154667pt;}
.x46{left:695.342667pt;}
.xe7{left:696.909333pt;}
}




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