
    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_11a7afce3f9d260a0a510250.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693000;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_6ec2d7370be8bc4a2171b382.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;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_daa48f445ae670a495030986.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_1cc6372c36cedfb57e1e78bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_c77bcb39aaf33872076247bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ec9a3231fe90ceb1c666e656.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;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_d9abd80de34e7de1610fe7af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_cc34d8f6c475cc43b8671b1e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;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_b45173abfbe2acdbab98464c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003418;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_684afded5e4b4b82599577a8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;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_47e199d61247fad258a8f4ba.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909180;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_2b878cd08dfeb90b7b402f92.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_b45173abfbe2acdbab98464c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003418;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_75a3efc6042378f2b88501f4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;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_ba888879206d5903bdc30d92.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_158fc8c0046165a02bf0f480.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.522000;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.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);}
.m6{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);}
.m26{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);}
.m2a{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);}
.md{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);}
.ma{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);}
.m8{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);}
.mb{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);}
.m14{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);}
.m1f{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);}
.m11{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);}
.m27{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);}
.m1d{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m1b{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);}
.m1c{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);}
.m2c{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);}
.m16{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);}
.m7{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);}
.m10{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);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.me{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);}
.m12{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);}
.m1a{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);}
.m9{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);}
.m2{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);}
.m4{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);}
.m1e{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m18{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);}
.m13{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);}
.m15{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);}
.m28{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);}
.m19{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);}
.m23{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);}
.m17{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);}
.m24{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);}
.m25{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);}
.m29{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);}
.mf{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls32{letter-spacing:-0.234468px;}
.ls2d{letter-spacing:-0.187574px;}
.ls38{letter-spacing:-0.171943px;}
.ls44{letter-spacing:-0.156312px;}
.ls2e{letter-spacing:-0.148496px;}
.ls37{letter-spacing:-0.140681px;}
.ls2a{letter-spacing:-0.125050px;}
.ls45{letter-spacing:-0.117234px;}
.ls28{letter-spacing:-0.112039px;}
.ls2f{letter-spacing:-0.109418px;}
.ls30{letter-spacing:-0.101603px;}
.ls31{letter-spacing:-0.093787px;}
.ls26{letter-spacing:-0.080917px;}
.ls42{letter-spacing:-0.078156px;}
.ls33{letter-spacing:-0.070340px;}
.ls35{letter-spacing:-0.054709px;}
.ls2c{letter-spacing:-0.046894px;}
.ls43{letter-spacing:-0.039078px;}
.ls29{letter-spacing:-0.031262px;}
.ls34{letter-spacing:-0.028080px;}
.ls39{letter-spacing:-0.023447px;}
.ls2b{letter-spacing:-0.015631px;}
.ls36{letter-spacing:-0.007816px;}
.lsd{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.001036px;}
.ls46{letter-spacing:0.001155px;}
.ls4f{letter-spacing:0.001319px;}
.ls9{letter-spacing:0.001952px;}
.ls7{letter-spacing:0.002197px;}
.ls4d{letter-spacing:0.002544px;}
.ls0{letter-spacing:0.002725px;}
.lsa{letter-spacing:0.003488px;}
.ls2{letter-spacing:0.004200px;}
.ls3b{letter-spacing:0.007020px;}
.ls3c{letter-spacing:0.007816px;}
.ls20{letter-spacing:0.014040px;}
.ls13{letter-spacing:0.015631px;}
.ls3a{letter-spacing:0.021060px;}
.ls40{letter-spacing:0.023447px;}
.ls1b{letter-spacing:0.028080px;}
.ls24{letter-spacing:0.031262px;}
.ls14{letter-spacing:0.039078px;}
.ls18{letter-spacing:0.042120px;}
.ls3e{letter-spacing:0.046894px;}
.ls15{letter-spacing:0.054709px;}
.lsf{letter-spacing:0.056020px;}
.ls21{letter-spacing:0.056160px;}
.ls11{letter-spacing:0.062525px;}
.ls1c{letter-spacing:0.063180px;}
.ls1a{letter-spacing:0.070200px;}
.ls12{letter-spacing:0.070340px;}
.ls1e{letter-spacing:0.077220px;}
.ls17{letter-spacing:0.078156px;}
.ls1f{letter-spacing:0.084240px;}
.ls25{letter-spacing:0.085972px;}
.ls22{letter-spacing:0.091260px;}
.ls3d{letter-spacing:0.093787px;}
.ls23{letter-spacing:0.101603px;}
.ls1d{letter-spacing:0.105300px;}
.ls41{letter-spacing:0.109418px;}
.ls3f{letter-spacing:0.132865px;}
.ls16{letter-spacing:0.218837px;}
.ls10{letter-spacing:0.236527px;}
.ls19{letter-spacing:0.238680px;}
.ls27{letter-spacing:0.248976px;}
.lse{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls6{letter-spacing:10.455300px;}
.lsc{letter-spacing:11.954850px;}
.ls53{letter-spacing:12.803461px;}
.ls56{letter-spacing:13.409259px;}
.ls47{letter-spacing:13.448400px;}
.ls49{letter-spacing:13.454400px;}
.ls55{letter-spacing:13.484002px;}
.ls54{letter-spacing:13.508231px;}
.ls51{letter-spacing:13.650908px;}
.ls4a{letter-spacing:13.654482px;}
.ls50{letter-spacing:15.526871px;}
.ls4b{letter-spacing:15.715106px;}
.ls4e{letter-spacing:16.362165px;}
.ls4c{letter-spacing:17.597459px;}
.ls48{letter-spacing:20.038635px;}
.ls3{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lsb{letter-spacing:64.321654px;}
.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;}
}
.ws4b{word-spacing:-17.592120px;}
.ws4a{word-spacing:-15.809976px;}
.wsa5{word-spacing:-14.943900px;}
.ws5{word-spacing:-14.355754px;}
.wsf8{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsa{word-spacing:-10.460700px;}
.ws83{word-spacing:-4.658098px;}
.ws82{word-spacing:-4.634651px;}
.ws84{word-spacing:-4.548679px;}
.ws71{word-spacing:-3.993772px;}
.ws73{word-spacing:-3.548282px;}
.ws72{word-spacing:-3.384155px;}
.ws37{word-spacing:-3.347434px;}
.ws3a{word-spacing:-3.168107px;}
.ws66{word-spacing:-3.165318px;}
.ws67{word-spacing:-3.040268px;}
.ws98{word-spacing:-2.630126px;}
.wsa0{word-spacing:-2.450800px;}
.wsd1{word-spacing:-2.274340px;}
.ws61{word-spacing:-2.258708px;}
.wsc1{word-spacing:-2.196184px;}
.ws52{word-spacing:-2.151922px;}
.wsc0{word-spacing:-2.063318px;}
.ws90{word-spacing:-2.032370px;}
.ws4c{word-spacing:-1.990541px;}
.ws7{word-spacing:-1.908367px;}
.wseb{word-spacing:-1.853044px;}
.wsc6{word-spacing:-1.781957px;}
.ws4d{word-spacing:-1.775347px;}
.wsc5{word-spacing:-1.766326px;}
.wsb0{word-spacing:-1.758510px;}
.wsd9{word-spacing:-1.733492px;}
.ws53{word-spacing:-1.673717px;}
.ws8e{word-spacing:-1.641276px;}
.ws9a{word-spacing:-1.613941px;}
.wse4{word-spacing:-1.434614px;}
.ws46{word-spacing:-1.374839px;}
.ws9f{word-spacing:-1.344960px;}
.ws6{word-spacing:-1.322630px;}
.ws8b{word-spacing:-1.313021px;}
.wsb6{word-spacing:-1.266127px;}
.ws24{word-spacing:-1.255288px;}
.wsf2{word-spacing:-1.135736px;}
.ws142{word-spacing:-1.022170px;}
.wse5{word-spacing:-1.016185px;}
.ws1e{word-spacing:-0.968371px;}
.ws39{word-spacing:-0.956410px;}
.ws13b{word-spacing:-0.806976px;}
.ws21{word-spacing:-0.717307px;}
.ws63{word-spacing:-0.664326px;}
.ws13c{word-spacing:-0.645581px;}
.ws62{word-spacing:-0.625248px;}
.ws8f{word-spacing:-0.537980px;}
.ws131{word-spacing:-0.484186px;}
.ws143{word-spacing:-0.430387px;}
.ws8d{word-spacing:-0.429858px;}
.ws69{word-spacing:-0.382964px;}
.wsd4{word-spacing:-0.381799px;}
.ws51{word-spacing:-0.358654px;}
.wsb1{word-spacing:-0.351702px;}
.ws57{word-spacing:-0.348566px;}
.ws110{word-spacing:-0.322790px;}
.ws29{word-spacing:-0.298878px;}
.ws10d{word-spacing:-0.268992px;}
.ws2d{word-spacing:-0.239102px;}
.wsc3{word-spacing:-0.226652px;}
.wsfc{word-spacing:-0.215194px;}
.wsa2{word-spacing:-0.186649px;}
.ws32{word-spacing:-0.179327px;}
.ws56{word-spacing:-0.168059px;}
.ws1b{word-spacing:-0.161395px;}
.ws27{word-spacing:-0.119551px;}
.wsfb{word-spacing:-0.107597px;}
.ws2c{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.ws18{word-spacing:-0.047821px;}
.wsb{word-spacing:-0.041843px;}
.ws55{word-spacing:-0.031122px;}
.wsb9{word-spacing:-0.007816px;}
.ws4{word-spacing:-0.003250px;}
.ws1{word-spacing:-0.002333px;}
.ws3{word-spacing:-0.001741px;}
.ws0{word-spacing:0.000000px;}
.wsc2{word-spacing:0.039078px;}
.ws74{word-spacing:0.046894px;}
.ws9e{word-spacing:0.053798px;}
.ws3b{word-spacing:0.059776px;}
.ws60{word-spacing:0.062525px;}
.ws11d{word-spacing:0.107597px;}
.ws43{word-spacing:0.119551px;}
.ws68{word-spacing:0.125050px;}
.ws7b{word-spacing:0.133380px;}
.ws8c{word-spacing:0.148496px;}
.ws7d{word-spacing:0.154440px;}
.ws9d{word-spacing:0.161395px;}
.ws7c{word-spacing:0.161460px;}
.ws77{word-spacing:0.168480px;}
.ws7a{word-spacing:0.175500px;}
.ws28{word-spacing:0.179327px;}
.ws7f{word-spacing:0.182520px;}
.ws76{word-spacing:0.189540px;}
.ws75{word-spacing:0.196560px;}
.wsd{word-spacing:0.209214px;}
.ws78{word-spacing:0.210600px;}
.ws100{word-spacing:0.215194px;}
.wsa6{word-spacing:0.217620px;}
.ws7e{word-spacing:0.224640px;}
.wsa8{word-spacing:0.231660px;}
.wsa7{word-spacing:0.238680px;}
.ws17{word-spacing:0.239103px;}
.ws79{word-spacing:0.266760px;}
.ws1d{word-spacing:0.268992px;}
.wsf{word-spacing:0.292900px;}
.ws3e{word-spacing:0.298878px;}
.wsff{word-spacing:0.322790px;}
.wsde{word-spacing:0.358654px;}
.ws125{word-spacing:0.376589px;}
.ws95{word-spacing:0.418429px;}
.wsf9{word-spacing:0.430387px;}
.wse3{word-spacing:0.478205px;}
.ws121{word-spacing:0.484186px;}
.wsab{word-spacing:0.523645px;}
.ws42{word-spacing:0.537980px;}
.wsed{word-spacing:0.597756px;}
.wsd8{word-spacing:0.657532px;}
.ws4f{word-spacing:0.699379px;}
.ws2a{word-spacing:0.717307px;}
.ws94{word-spacing:0.777083px;}
.ws139{word-spacing:0.914573px;}
.wsaa{word-spacing:1.000397px;}
.ws47{word-spacing:1.016185px;}
.ws40{word-spacing:1.075961px;}
.wsfa{word-spacing:1.075968px;}
.wsec{word-spacing:1.135736px;}
.wsda{word-spacing:1.195512px;}
.ws1a{word-spacing:1.237363px;}
.ws3c{word-spacing:1.255288px;}
.ws2b{word-spacing:1.315063px;}
.ws12e{word-spacing:1.344960px;}
.ws107{word-spacing:1.398758px;}
.wse9{word-spacing:1.434614px;}
.wsc8{word-spacing:1.516226px;}
.wsa9{word-spacing:1.531858px;}
.ws85{word-spacing:1.539673px;}
.ws9b{word-spacing:1.554166px;}
.ws81{word-spacing:1.586567px;}
.wsc7{word-spacing:1.602198px;}
.ws129{word-spacing:1.613952px;}
.ws80{word-spacing:1.625645px;}
.ws86{word-spacing:1.672538px;}
.wsf0{word-spacing:1.673717px;}
.ws1c{word-spacing:1.775347px;}
.wsa1{word-spacing:1.793268px;}
.ws38{word-spacing:1.853044px;}
.ws87{word-spacing:1.938269px;}
.wse{word-spacing:2.008454px;}
.ws130{word-spacing:2.044339px;}
.ws12b{word-spacing:2.098138px;}
.ws91{word-spacing:2.151922px;}
.ws11c{word-spacing:2.259533px;}
.ws33{word-spacing:2.331248px;}
.wsfd{word-spacing:2.420928px;}
.wsac{word-spacing:2.422836px;}
.wsb7{word-spacing:2.454098px;}
.wsb8{word-spacing:2.469730px;}
.ws31{word-spacing:2.510575px;}
.wsf7{word-spacing:2.797517px;}
.ws3d{word-spacing:2.809453px;}
.ws25{word-spacing:2.869229px;}
.ws123{word-spacing:2.905114px;}
.wsba{word-spacing:2.907403px;}
.ws26{word-spacing:2.929004px;}
.wsaf{word-spacing:2.954297px;}
.wsbb{word-spacing:3.009006px;}
.wscd{word-spacing:3.048084px;}
.wsee{word-spacing:3.048556px;}
.ws89{word-spacing:3.071531px;}
.ws88{word-spacing:3.102793px;}
.ws101{word-spacing:3.221309px;}
.ws127{word-spacing:3.222902px;}
.ws12f{word-spacing:3.226013px;}
.wse0{word-spacing:3.227882px;}
.ws138{word-spacing:3.228480px;}
.ws12c{word-spacing:3.230246px;}
.ws11e{word-spacing:3.281702px;}
.wsdb{word-spacing:3.287658px;}
.wsbf{word-spacing:3.305999px;}
.wsbd{word-spacing:3.384155px;}
.wsdf{word-spacing:3.407209px;}
.ws23{word-spacing:3.466985px;}
.ws4e{word-spacing:3.496896px;}
.ws34{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws36{word-spacing:3.646312px;}
.wsf1{word-spacing:3.706087px;}
.ws135{word-spacing:3.712090px;}
.wse8{word-spacing:3.765863px;}
.wse1{word-spacing:3.825638px;}
.wsc9{word-spacing:3.829644px;}
.wsad{word-spacing:3.837460px;}
.ws9c{word-spacing:3.885414px;}
.wsbc{word-spacing:3.907800px;}
.ws118{word-spacing:3.927283px;}
.wsae{word-spacing:3.939062px;}
.wscc{word-spacing:3.962509px;}
.wse7{word-spacing:4.064741px;}
.wsd3{word-spacing:4.124516px;}
.ws120{word-spacing:4.142477px;}
.wsdc{word-spacing:4.184292px;}
.wsf3{word-spacing:4.244068px;}
.ws137{word-spacing:4.250074px;}
.ws6e{word-spacing:4.275133px;}
.ws22{word-spacing:4.483170px;}
.wse2{word-spacing:4.542946px;}
.wsdd{word-spacing:4.722272px;}
.ws5d{word-spacing:4.736254px;}
.ws70{word-spacing:4.767516px;}
.wsf4{word-spacing:4.782048px;}
.wsc4{word-spacing:4.783147px;}
.ws96{word-spacing:4.961375px;}
.ws54{word-spacing:5.080926px;}
.ws104{word-spacing:5.218445px;}
.ws5c{word-spacing:5.259899px;}
.ws5e{word-spacing:5.291161px;}
.ws5f{word-spacing:5.322424px;}
.ws35{word-spacing:5.379804px;}
.ws5b{word-spacing:5.400580px;}
.ws50{word-spacing:5.541235px;}
.wsef{word-spacing:5.559131px;}
.ws140{word-spacing:5.595034px;}
.ws112{word-spacing:5.648832px;}
.ws113{word-spacing:5.702630px;}
.ws64{word-spacing:5.760097px;}
.ws65{word-spacing:5.775728px;}
.ws92{word-spacing:5.977560px;}
.ws15{word-spacing:6.067206px;}
.ws16{word-spacing:6.150892px;}
.ws6d{word-spacing:6.174324px;}
.ws6c{word-spacing:6.315005px;}
.wsd7{word-spacing:6.336214px;}
.wse6{word-spacing:6.395989px;}
.ws105{word-spacing:6.563405px;}
.wscf{word-spacing:6.572920px;}
.ws99{word-spacing:6.635092px;}
.ws97{word-spacing:6.694867px;}
.wsce{word-spacing:6.705785px;}
.ws93{word-spacing:6.754643px;}
.ws6b{word-spacing:6.799572px;}
.ws41{word-spacing:6.814418px;}
.wsf6{word-spacing:6.832397px;}
.wsca{word-spacing:7.073118px;}
.wscb{word-spacing:7.182536px;}
.wsf5{word-spacing:7.262784px;}
.ws6a{word-spacing:7.268508px;}
.ws136{word-spacing:7.424179px;}
.wsbe{word-spacing:7.526423px;}
.ws13e{word-spacing:7.639373px;}
.ws49{word-spacing:7.830604px;}
.ws48{word-spacing:7.890379px;}
.ws8a{word-spacing:8.003174px;}
.ws3f{word-spacing:8.129482px;}
.wsb2{word-spacing:8.472110px;}
.ws5a{word-spacing:8.479926px;}
.ws59{word-spacing:8.581529px;}
.ws13{word-spacing:8.661460px;}
.ws116{word-spacing:8.715341px;}
.ws12d{word-spacing:8.822938px;}
.ws6f{word-spacing:8.948862px;}
.wsc{word-spacing:10.460700px;}
.wsb5{word-spacing:11.316989px;}
.ws58{word-spacing:12.231414px;}
.ws115{word-spacing:12.696422px;}
.ws9{word-spacing:12.929425px;}
.ws144{word-spacing:12.965414px;}
.ws111{word-spacing:13.073011px;}
.ws132{word-spacing:13.234406px;}
.ws134{word-spacing:13.342003px;}
.ws124{word-spacing:13.388342px;}
.ws13f{word-spacing:13.388870px;}
.ws117{word-spacing:13.391952px;}
.ws126{word-spacing:13.392336px;}
.ws11a{word-spacing:13.393181px;}
.ws146{word-spacing:13.393603px;}
.ws102{word-spacing:13.394995px;}
.ws10c{word-spacing:13.395802px;}
.ws106{word-spacing:13.503398px;}
.ws145{word-spacing:13.557197px;}
.wsd5{word-spacing:14.522192px;}
.wsb3{word-spacing:14.544832px;}
.wsa4{word-spacing:14.672096px;}
.wsa3{word-spacing:14.699382px;}
.wsb4{word-spacing:14.740222px;}
.ws2e{word-spacing:14.776565px;}
.ws108{word-spacing:14.794560px;}
.ws30{word-spacing:14.884124px;}
.ws44{word-spacing:14.894866px;}
.ws45{word-spacing:14.952926px;}
.wsd0{word-spacing:15.045030px;}
.wsd2{word-spacing:15.159066px;}
.wsea{word-spacing:15.294360px;}
.ws8{word-spacing:15.483541px;}
.ws10{word-spacing:16.142252px;}
.ws11{word-spacing:16.151321px;}
.ws10e{word-spacing:16.354714px;}
.ws13d{word-spacing:16.569907px;}
.ws122{word-spacing:16.617034px;}
.ws133{word-spacing:16.617955px;}
.ws114{word-spacing:16.619165px;}
.ws10b{word-spacing:16.619232px;}
.ws10a{word-spacing:16.620518px;}
.ws103{word-spacing:16.622342px;}
.ws13a{word-spacing:16.622832px;}
.wsfe{word-spacing:16.623706px;}
.ws10f{word-spacing:16.624186px;}
.ws128{word-spacing:16.625318px;}
.ws11f{word-spacing:16.677504px;}
.ws119{word-spacing:16.785101px;}
.ws109{word-spacing:16.946496px;}
.ws12{word-spacing:17.699504px;}
.ws20{word-spacing:18.470660px;}
.wsd6{word-spacing:20.288477px;}
.ws12a{word-spacing:21.949747px;}
.ws11b{word-spacing:22.380134px;}
.ws141{word-spacing:23.940288px;}
.ws14{word-spacing:27.448877px;}
._0{margin-left:-35.544868px;}
._23{margin-left:-8.077374px;}
._1b{margin-left:-6.986178px;}
._1{margin-left:-5.917824px;}
._a{margin-left:-4.698349px;}
._4{margin-left:-3.001912px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._2{width:3.000686px;}
._7{width:10.460700px;}
._12{width:11.955150px;}
._8{width:12.971268px;}
._13{width:14.821397px;}
._c{width:16.673063px;}
._1e{width:17.813129px;}
._e{width:18.829314px;}
._b{width:19.959206px;}
._10{width:21.220338px;}
._11{width:23.379827px;}
._16{width:24.635114px;}
._18{width:26.540366px;}
._f{width:27.735878px;}
._21{width:28.782144px;}
._d{width:29.828024px;}
._1c{width:31.441966px;}
._9{width:32.637384px;}
._1a{width:33.785395px;}
._1f{width:36.798106px;}
._1d{width:38.017282px;}
._17{width:41.970038px;}
._3{width:54.384821px;}
._20{width:61.868160px;}
._14{width:859.240541px;}
._22{width:2378.779511px;}
._15{width:2402.689511px;}
._19{width:2629.929688px;}
.fc6{color:rgb(8,117,183);}
.fc5{color:rgb(12,11,11);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(53,30,58);}
.fc7{color:transparent;}
.fc2{color:rgb(90,40,100);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(72,62,33);}
.fs9{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs5{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fsa{font-size:47.820600px;}
.fs0{font-size:52.914960px;}
.fsb{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fs1{font-size:56.694600px;}
.fs3{font-size:59.775600px;}
.fsc{font-size:62.244000px;}
.fs2{font-size:68.033520px;}
.fse{font-size:70.200000px;}
.fsd{font-size:78.156000px;}
.fs4{font-size:107.596800px;}
.yf7{bottom:-1058.003115px;}
.y11d{bottom:-966.609244px;}
.y11c{bottom:-941.571969px;}
.y11b{bottom:-916.651928px;}
.y11a{bottom:-891.614654px;}
.y119{bottom:-866.577379px;}
.y118{bottom:-841.657339px;}
.y117{bottom:-816.620064px;}
.y116{bottom:-791.700023px;}
.y115{bottom:-766.662749px;}
.y114{bottom:-741.625474px;}
.y113{bottom:-716.705434px;}
.y112{bottom:-685.818182px;}
.y111{bottom:-637.496282px;}
.y110{bottom:-612.459007px;}
.y10f{bottom:-587.421732px;}
.y10e{bottom:-562.501692px;}
.y10d{bottom:-537.464417px;}
.y97{bottom:-525.721365px;}
.y10c{bottom:-512.427142px;}
.y10b{bottom:-487.505148px;}
.y10a{bottom:-462.467873px;}
.y109{bottom:-437.545879px;}
.ybd{bottom:-426.264860px;}
.y108{bottom:-412.508604px;}
.ybc{bottom:-401.344819px;}
.y107{bottom:-387.471330px;}
.ybb{bottom:-376.307545px;}
.y106{bottom:-362.551289px;}
.yba{bottom:-351.270270px;}
.y105{bottom:-337.514015px;}
.yb9{bottom:-326.350229px;}
.y104{bottom:-312.593974px;}
.yb8{bottom:-301.312955px;}
.y103{bottom:-287.556699px;}
.yb7{bottom:-276.392914px;}
.y102{bottom:-262.519425px;}
.yb6{bottom:-251.355640px;}
.y101{bottom:-237.599384px;}
.yb5{bottom:-226.318365px;}
.y100{bottom:-212.562110px;}
.yff{bottom:-187.640115px;}
.yb4{bottom:-178.582365px;}
.yb3{bottom:-156.118365px;}
.yfe{bottom:-139.788285px;}
.yb2{bottom:-133.654365px;}
.yfd{bottom:-117.324285px;}
.yb1{bottom:-111.072780px;}
.yfc{bottom:-94.860285px;}
.yb0{bottom:-88.608780px;}
.yfb{bottom:-72.396285px;}
.yaf{bottom:-66.144780px;}
.yfa{bottom:-49.814700px;}
.yae{bottom:-43.680780px;}
.yf9{bottom:-27.233115px;}
.yad{bottom:-20.983365px;}
.y0{bottom:0.000000px;}
.yf8{bottom:2.016944px;}
.yb{bottom:3.425340px;}
.yac{bottom:8.160317px;}
.y4{bottom:9.473101px;}
.ya{bottom:14.151273px;}
.y3{bottom:28.937869px;}
.y4d{bottom:31.890000px;}
.y2{bottom:32.769195px;}
.yce{bottom:88.993500px;}
.y13f{bottom:90.979500px;}
.y1b1{bottom:99.073500px;}
.y22{bottom:102.823500px;}
.y83{bottom:104.436000px;}
.y146{bottom:105.799500px;}
.y163{bottom:106.246500px;}
.ycd{bottom:107.823000px;}
.y13e{bottom:109.809000px;}
.y1b0{bottom:116.334000px;}
.y21{bottom:120.711000px;}
.y82{bottom:123.265500px;}
.y145{bottom:124.627500px;}
.y162{bottom:125.076000px;}
.ycc{bottom:126.652500px;}
.y4c{bottom:126.984000px;}
.y13d{bottom:128.638500px;}
.y1af{bottom:133.594500px;}
.y1e8{bottom:138.078000px;}
.y20{bottom:138.600000px;}
.y81{bottom:142.095000px;}
.y144{bottom:143.457000px;}
.y161{bottom:143.905500px;}
.ycb{bottom:145.482000px;}
.y4b{bottom:145.813500px;}
.y13c{bottom:147.468000px;}
.y1ae{bottom:150.855000px;}
.y1e7{bottom:155.338500px;}
.y1f{bottom:156.487500px;}
.y80{bottom:160.924500px;}
.y143{bottom:162.286500px;}
.y160{bottom:162.735000px;}
.yca{bottom:164.311500px;}
.y4a{bottom:164.643000px;}
.y13b{bottom:166.297500px;}
.y1ad{bottom:168.115500px;}
.y1e6{bottom:172.599000px;}
.y1e{bottom:174.375000px;}
.y142{bottom:181.116000px;}
.y15f{bottom:181.564500px;}
.yc9{bottom:183.141000px;}
.y49{bottom:183.472500px;}
.y7f{bottom:184.236000px;}
.y13a{bottom:185.127000px;}
.y1ac{bottom:185.376000px;}
.y1e5{bottom:189.858000px;}
.y1d{bottom:192.264000px;}
.y177{bottom:194.566500px;}
.yf3{bottom:199.945500px;}
.y15e{bottom:200.394000px;}
.yc8{bottom:201.970500px;}
.y48{bottom:202.302000px;}
.y1ab{bottom:202.636500px;}
.y139{bottom:203.956500px;}
.y1e4{bottom:207.118500px;}
.y1c{bottom:210.151500px;}
.y7e{bottom:217.860000px;}
.yf2{bottom:218.775000px;}
.y15d{bottom:219.223500px;}
.y1aa{bottom:219.895500px;}
.yc7{bottom:220.800000px;}
.y176{bottom:221.107500px;}
.y47{bottom:221.131500px;}
.y138{bottom:222.786000px;}
.y1e3{bottom:224.379000px;}
.y1b{bottom:228.039000px;}
.y7d{bottom:236.689500px;}
.y1a9{bottom:237.156000px;}
.y15c{bottom:238.053000px;}
.yc6{bottom:239.629500px;}
.y46{bottom:239.961000px;}
.y1e2{bottom:241.639500px;}
.yf1{bottom:242.088000px;}
.y137{bottom:246.097500px;}
.y175{bottom:247.647000px;}
.y1a8{bottom:254.416500px;}
.y7c{bottom:255.519000px;}
.y15b{bottom:256.882500px;}
.yc5{bottom:258.459000px;}
.y45{bottom:258.790500px;}
.y1e1{bottom:258.900000px;}
.y1a7{bottom:271.677000px;}
.y174{bottom:274.188000px;}
.y7b{bottom:274.348500px;}
.yf0{bottom:275.712000px;}
.y1e0{bottom:276.160500px;}
.y44{bottom:277.620000px;}
.y136{bottom:279.721500px;}
.y1a6{bottom:288.937500px;}
.yc4{bottom:290.533500px;}
.y7a{bottom:293.178000px;}
.y1df{bottom:293.421000px;}
.yef{bottom:294.541500px;}
.y43{bottom:296.449500px;}
.y135{bottom:298.551000px;}
.y173{bottom:300.729000px;}
.y1a5{bottom:306.198000px;}
.y1a{bottom:307.299000px;}
.yc3{bottom:309.766500px;}
.y1de{bottom:310.681500px;}
.y79{bottom:312.007500px;}
.yee{bottom:313.371000px;}
.y42{bottom:315.279000px;}
.y134{bottom:317.380500px;}
.y172{bottom:318.303000px;}
.y1a4{bottom:323.458500px;}
.y19{bottom:325.186500px;}
.y1dd{bottom:327.940500px;}
.yc2{bottom:328.998000px;}
.y78{bottom:330.837000px;}
.yed{bottom:332.200500px;}
.y41{bottom:334.108500px;}
.y171{bottom:335.877000px;}
.y133{bottom:336.210000px;}
.y1a3{bottom:340.719000px;}
.y18{bottom:343.074000px;}
.y1dc{bottom:345.201000px;}
.yc1{bottom:348.231000px;}
.y77{bottom:349.666500px;}
.yec{bottom:351.030000px;}
.y40{bottom:352.938000px;}
.y170{bottom:353.451000px;}
.y132{bottom:355.039500px;}
.y1a2{bottom:357.978000px;}
.y17{bottom:360.963000px;}
.y1db{bottom:362.461500px;}
.yc0{bottom:367.464000px;}
.y76{bottom:368.496000px;}
.yeb{bottom:369.859500px;}
.y16f{bottom:371.025000px;}
.y3f{bottom:371.767500px;}
.yab{bottom:373.434106px;}
.y131{bottom:373.869000px;}
.y1a1{bottom:375.238500px;}
.y1da{bottom:379.722000px;}
.ybf{bottom:386.697000px;}
.y75{bottom:387.325500px;}
.y16e{bottom:388.599000px;}
.yea{bottom:388.689000px;}
.y3e{bottom:390.597000px;}
.y1a0{bottom:392.499000px;}
.y130{bottom:392.698500px;}
.y1d9{bottom:396.982500px;}
.yaa{bottom:398.471381px;}
.y16{bottom:399.024000px;}
.ybe{bottom:405.930000px;}
.y74{bottom:406.155000px;}
.y16d{bottom:406.173000px;}
.ye9{bottom:407.518500px;}
.y3d{bottom:409.426500px;}
.y19f{bottom:409.759500px;}
.y12f{bottom:411.528000px;}
.y1d8{bottom:414.243000px;}
.yf6{bottom:416.197646px;}
.y15{bottom:416.913000px;}
.ya9{bottom:423.391422px;}
.y16c{bottom:423.747000px;}
.y73{bottom:424.984500px;}
.ye8{bottom:426.348000px;}
.y19e{bottom:427.020000px;}
.y3c{bottom:428.256000px;}
.y94{bottom:428.359500px;}
.yf5{bottom:428.949885px;}
.y12e{bottom:430.357500px;}
.y1d7{bottom:431.503500px;}
.y14{bottom:434.800500px;}
.y72{bottom:443.814000px;}
.y19d{bottom:444.280500px;}
.ye7{bottom:445.177500px;}
.y3b{bottom:447.085500px;}
.ya8{bottom:448.428696px;}
.y1d6{bottom:448.764000px;}
.y12d{bottom:449.187000px;}
.y16b{bottom:450.288000px;}
.y13{bottom:452.688000px;}
.y19c{bottom:461.541000px;}
.y71{bottom:462.643500px;}
.ye6{bottom:464.007000px;}
.y3a{bottom:465.915000px;}
.y1d5{bottom:466.024500px;}
.y16a{bottom:467.862000px;}
.y12c{bottom:468.016500px;}
.ya7{bottom:473.465971px;}
.y19b{bottom:478.801500px;}
.y70{bottom:481.473000px;}
.ye5{bottom:482.836500px;}
.y1d4{bottom:483.283500px;}
.y39{bottom:484.744500px;}
.y169{bottom:485.436000px;}
.y12b{bottom:486.846000px;}
.y12{bottom:488.509500px;}
.y19a{bottom:496.062000px;}
.ya6{bottom:498.386012px;}
.y6f{bottom:500.302500px;}
.y1d3{bottom:500.544000px;}
.ye4{bottom:501.666000px;}
.y38{bottom:503.574000px;}
.y12a{bottom:505.675500px;}
.y11{bottom:506.397000px;}
.y199{bottom:513.321000px;}
.y1d2{bottom:517.804500px;}
.y6e{bottom:519.132000px;}
.ye3{bottom:520.495500px;}
.y168{bottom:520.942500px;}
.ya5{bottom:523.423286px;}
.y10{bottom:524.286000px;}
.y129{bottom:524.505000px;}
.y37{bottom:526.885500px;}
.y198{bottom:530.581500px;}
.y1d1{bottom:535.065000px;}
.y6d{bottom:537.961500px;}
.ye2{bottom:539.323500px;}
.y167{bottom:539.772000px;}
.yf{bottom:542.173500px;}
.y128{bottom:543.334500px;}
.y36{bottom:547.060500px;}
.y197{bottom:547.842000px;}
.ya4{bottom:548.345281px;}
.y1d0{bottom:552.325500px;}
.y6c{bottom:556.791000px;}
.ye1{bottom:558.153000px;}
.y166{bottom:558.601500px;}
.ye{bottom:560.061000px;}
.y127{bottom:562.164000px;}
.y196{bottom:565.102500px;}
.y1cf{bottom:569.586000px;}
.y6b{bottom:575.620500px;}
.ye0{bottom:576.982500px;}
.y165{bottom:577.431000px;}
.yd{bottom:577.950000px;}
.ya3{bottom:579.232532px;}
.y126{bottom:580.993500px;}
.y15a{bottom:581.466000px;}
.y195{bottom:582.363000px;}
.y1ce{bottom:586.846500px;}
.y6a{bottom:594.450000px;}
.ydf{bottom:595.812000px;}
.yc{bottom:595.837500px;}
.y164{bottom:596.260500px;}
.y194{bottom:599.623500px;}
.y125{bottom:599.823000px;}
.y1cd{bottom:604.107000px;}
.y69{bottom:613.279500px;}
.yde{bottom:614.641500px;}
.y159{bottom:615.090000px;}
.y193{bottom:616.884000px;}
.y9{bottom:618.208464px;}
.y124{bottom:618.652500px;}
.y1cc{bottom:621.366000px;}
.y35{bottom:622.210500px;}
.ya2{bottom:627.669713px;}
.y68{bottom:632.109000px;}
.ydd{bottom:633.471000px;}
.y158{bottom:633.919500px;}
.y192{bottom:634.144500px;}
.y1cb{bottom:638.626500px;}
.y67{bottom:650.938500px;}
.y191{bottom:651.403500px;}
.y123{bottom:652.218000px;}
.ydc{bottom:652.300500px;}
.ya1{bottom:652.589753px;}
.y157{bottom:652.749000px;}
.y1ca{bottom:655.887000px;}
.y34{bottom:659.601000px;}
.y190{bottom:668.664000px;}
.y66{bottom:669.768000px;}
.ydb{bottom:671.130000px;}
.y122{bottom:671.451000px;}
.y156{bottom:671.578500px;}
.y1c9{bottom:673.147500px;}
.ya0{bottom:677.627028px;}
.y33{bottom:679.057500px;}
.y18f{bottom:685.924500px;}
.y65{bottom:688.596000px;}
.yda{bottom:689.959500px;}
.y155{bottom:690.408000px;}
.y121{bottom:690.684000px;}
.y32{bottom:698.514000px;}
.y9f{bottom:702.664303px;}
.y18e{bottom:703.185000px;}
.y64{bottom:707.425500px;}
.y1c8{bottom:707.668500px;}
.yd9{bottom:708.789000px;}
.y154{bottom:709.237500px;}
.y120{bottom:709.915500px;}
.y31{bottom:717.972000px;}
.y18d{bottom:720.445500px;}
.y1c7{bottom:724.929000px;}
.y63{bottom:726.255000px;}
.y9e{bottom:727.586297px;}
.yd8{bottom:727.618500px;}
.y153{bottom:728.067000px;}
.y11f{bottom:729.148500px;}
.y30{bottom:737.428500px;}
.y18c{bottom:737.706000px;}
.y1c6{bottom:742.189500px;}
.y62{bottom:745.084500px;}
.yd7{bottom:746.448000px;}
.y152{bottom:746.896500px;}
.y11e{bottom:748.381500px;}
.y9d{bottom:752.623572px;}
.y18b{bottom:754.966500px;}
.y2f{bottom:756.885000px;}
.y1c5{bottom:759.450000px;}
.y61{bottom:763.914000px;}
.yd6{bottom:765.277500px;}
.y151{bottom:765.726000px;}
.yf4{bottom:770.811000px;}
.y18a{bottom:772.227000px;}
.y2e{bottom:776.343000px;}
.y1c4{bottom:776.709000px;}
.y9c{bottom:777.545566px;}
.y60{bottom:782.743500px;}
.yd5{bottom:784.107000px;}
.y150{bottom:784.555500px;}
.y189{bottom:789.487500px;}
.y1c3{bottom:793.969500px;}
.y5f{bottom:801.573000px;}
.y9b{bottom:802.582841px;}
.y93{bottom:802.936500px;}
.y14f{bottom:803.385000px;}
.y188{bottom:806.746500px;}
.y1c2{bottom:811.230000px;}
.y2d{bottom:814.927500px;}
.y5e{bottom:820.402500px;}
.y92{bottom:821.766000px;}
.y14e{bottom:822.214500px;}
.y187{bottom:824.007000px;}
.y9a{bottom:827.620115px;}
.y1c1{bottom:828.490500px;}
.y2c{bottom:831.067500px;}
.y5d{bottom:839.232000px;}
.y91{bottom:840.595500px;}
.y14d{bottom:841.044000px;}
.y186{bottom:841.267500px;}
.y1c0{bottom:845.751000px;}
.y2b{bottom:847.207500px;}
.y99{bottom:852.540156px;}
.y5c{bottom:858.061500px;}
.y185{bottom:858.528000px;}
.y90{bottom:859.425000px;}
.y14c{bottom:859.873500px;}
.y1bf{bottom:863.011500px;}
.y2a{bottom:867.687000px;}
.y184{bottom:875.788500px;}
.y5b{bottom:876.891000px;}
.y98{bottom:877.577431px;}
.y8f{bottom:878.254500px;}
.y14b{bottom:878.703000px;}
.y29{bottom:879.486000px;}
.y1be{bottom:880.272000px;}
.y183{bottom:893.049000px;}
.y5a{bottom:895.720500px;}
.y8e{bottom:897.084000px;}
.y14a{bottom:897.532500px;}
.y28{bottom:899.965500px;}
.y182{bottom:910.309500px;}
.y27{bottom:911.766000px;}
.y59{bottom:914.550000px;}
.y1bc{bottom:914.791500px;}
.y1bd{bottom:914.793000px;}
.y8d{bottom:915.913500px;}
.y149{bottom:916.362000px;}
.y181{bottom:927.570000px;}
.y1bb{bottom:932.052000px;}
.y26{bottom:932.244000px;}
.y58{bottom:933.379500px;}
.y8c{bottom:934.743000px;}
.y148{bottom:935.191500px;}
.y141{bottom:939.226500px;}
.y25{bottom:944.044500px;}
.y180{bottom:944.829000px;}
.y96{bottom:948.479396px;}
.y1ba{bottom:949.312500px;}
.y57{bottom:952.209000px;}
.yd4{bottom:953.572500px;}
.y147{bottom:954.021000px;}
.y8b{bottom:958.054500px;}
.y24{bottom:960.184500px;}
.y95{bottom:961.231635px;}
.y17f{bottom:962.089500px;}
.y23{bottom:964.524000px;}
.y1b9{bottom:966.573000px;}
.y56{bottom:971.038500px;}
.yd3{bottom:972.402000px;}
.y140{bottom:972.849000px;}
.y17e{bottom:979.350000px;}
.y1b8{bottom:983.833500px;}
.y55{bottom:989.868000px;}
.yd2{bottom:991.231500px;}
.y8a{bottom:991.678500px;}
.y17d{bottom:996.610500px;}
.y1b7{bottom:1001.094000px;}
.y8{bottom:1004.716500px;}
.y54{bottom:1008.697500px;}
.yd1{bottom:1010.061000px;}
.y89{bottom:1010.508000px;}
.y17c{bottom:1013.871000px;}
.y1b6{bottom:1018.354500px;}
.y7{bottom:1023.546000px;}
.y53{bottom:1027.527000px;}
.yd0{bottom:1028.890500px;}
.y88{bottom:1029.337500px;}
.y17b{bottom:1031.131500px;}
.y1b5{bottom:1035.615000px;}
.y52{bottom:1046.356500px;}
.y87{bottom:1048.167000px;}
.y17a{bottom:1048.392000px;}
.ycf{bottom:1052.202000px;}
.y1b4{bottom:1052.875500px;}
.y51{bottom:1065.186000px;}
.y179{bottom:1065.652500px;}
.y86{bottom:1066.996500px;}
.y6{bottom:1069.443000px;}
.y1b3{bottom:1070.134500px;}
.y178{bottom:1082.913000px;}
.y50{bottom:1084.015500px;}
.y85{bottom:1085.826000px;}
.y1b2{bottom:1087.395000px;}
.y5{bottom:1097.688000px;}
.y84{bottom:1104.655500px;}
.y4f{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4e{bottom:1173.397500px;}
.h9{height:25.508090px;}
.he{height:26.110157px;}
.h20{height:28.645638px;}
.hc{height:30.461558px;}
.hd{height:30.670772px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.hf{height:34.813397px;}
.h14{height:35.052500px;}
.h3{height:35.876343px;}
.h10{height:38.734848px;}
.h11{height:39.165235px;}
.h4{height:39.402747px;}
.h1f{height:39.434227px;}
.h1e{height:41.723369px;}
.h12{height:43.038432px;}
.h13{height:43.516637px;}
.h6{height:43.815515px;}
.h17{height:45.436904px;}
.h16{height:45.649652px;}
.h5{height:46.126727px;}
.h2{height:50.931027px;}
.h1b{height:51.244629px;}
.h1a{height:51.484570px;}
.h8{height:54.411312px;}
.h1d{height:56.250949px;}
.h18{height:57.052354px;}
.h19{height:60.639592px;}
.h7{height:77.469696px;}
.h1c{height:348.788700px;}
.h15{height:352.427400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w4{width:477.670050px;}
.w5{width:506.069850px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x5f{left:-255.286200px;}
.x3d{left:-249.461550px;}
.x61{left:-1.045200px;}
.x0{left:0.000000px;}
.x3f{left:4.778034px;}
.x4{left:29.274117px;}
.x62{left:40.372800px;}
.x3e{left:46.195896px;}
.x1{left:54.000000px;}
.x3{left:60.027581px;}
.x97{left:86.272500px;}
.xa0{left:177.502500px;}
.x2{left:181.274369px;}
.xa2{left:188.112000px;}
.xa1{left:206.389500px;}
.x9c{left:211.014000px;}
.x9b{left:214.036500px;}
.x23{left:248.655000px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x6{left:271.071000px;}
.xa{left:282.786000px;}
.x86{left:296.919000px;}
.x69{left:300.744000px;}
.x41{left:307.455000px;}
.x8{left:309.469500px;}
.x87{left:311.863500px;}
.x2b{left:314.683500px;}
.x75{left:317.694000px;}
.x9{left:320.238000px;}
.x38{left:322.638000px;}
.x2c{left:329.628000px;}
.x76{left:332.637000px;}
.x88{left:334.197000px;}
.x2d{left:337.062000px;}
.x39{left:341.377500px;}
.x8f{left:348.174000px;}
.x2e{left:352.006500px;}
.x8e{left:354.754500px;}
.x3a{left:356.322000px;}
.x90{left:363.117000px;}
.x4b{left:366.850500px;}
.x56{left:370.503000px;}
.x4c{left:374.389500px;}
.x6d{left:376.107000px;}
.x57{left:385.447500px;}
.x13{left:387.132000px;}
.x4d{left:389.334000px;}
.x6e{left:391.051500px;}
.x14{left:394.603500px;}
.x96{left:397.446000px;}
.x6f{left:398.673000px;}
.x72{left:401.067000px;}
.x67{left:403.881000px;}
.x6a{left:413.673000px;}
.x73{left:416.011500px;}
.x68{left:418.824000px;}
.x6b{left:428.616000px;}
.xf{left:441.055500px;}
.x15{left:444.186000px;}
.x10{left:448.527000px;}
.x11{left:452.338500px;}
.x89{left:455.467500px;}
.x1a{left:458.616000px;}
.x12{left:459.810000px;}
.x1b{left:466.087500px;}
.x5d{left:467.190000px;}
.x40{left:469.851062px;}
.x94{left:478.515000px;}
.x5a{left:492.519000px;}
.x43{left:499.309500px;}
.x60{left:504.977479px;}
.x5b{left:507.463500px;}
.x3b{left:508.576500px;}
.x3c{left:523.519500px;}
.x70{left:525.148500px;}
.xd{left:535.425000px;}
.x71{left:540.093000px;}
.xe{left:542.898000px;}
.x44{left:549.205500px;}
.x58{left:557.710500px;}
.x8c{left:560.148000px;}
.x54{left:564.039000px;}
.x45{left:565.389000px;}
.x5c{left:568.726500px;}
.x59{left:572.655000px;}
.x8d{left:575.091000px;}
.x32{left:578.529000px;}
.x2f{left:580.258500px;}
.x55{left:582.663000px;}
.x46{left:583.993500px;}
.x16{left:587.170500px;}
.x5e{left:588.319500px;}
.x33{left:593.472000px;}
.x17{left:594.643500px;}
.x4e{left:596.874000px;}
.x18{left:598.453500px;}
.x34{left:600.847500px;}
.x30{left:602.824500px;}
.x19{left:605.925000px;}
.x4f{left:611.817000px;}
.x77{left:613.722000px;}
.x35{left:615.792000px;}
.x31{left:617.769000px;}
.x20{left:621.105000px;}
.x21{left:624.796500px;}
.x78{left:628.665000px;}
.x85{left:631.075500px;}
.x50{left:635.049000px;}
.x74{left:638.211000px;}
.x22{left:639.741000px;}
.x63{left:648.360000px;}
.x51{left:649.992000px;}
.x52{left:653.653500px;}
.x7b{left:658.791000px;}
.x9d{left:660.681000px;}
.x28{left:661.939500px;}
.x64{left:663.304500px;}
.x1c{left:666.804000px;}
.x53{left:668.598000px;}
.x29{left:676.882500px;}
.x2a{left:680.694000px;}
.x1d{left:681.748500px;}
.x1e{left:685.525500px;}
.xb{left:688.429500px;}
.xc{left:695.901000px;}
.x1f{left:700.470000px;}
.x42{left:702.988500px;}
.xa3{left:704.451000px;}
.x7c{left:709.629000px;}
.xa6{left:716.227500px;}
.x9e{left:720.282000px;}
.x80{left:723.246000px;}
.x7d{left:724.573500px;}
.x9f{left:727.027500px;}
.x7e{left:728.385000px;}
.xa4{left:731.350500px;}
.x79{left:734.161500px;}
.x81{left:738.190500px;}
.x82{left:741.907500px;}
.x7f{left:743.328000px;}
.x65{left:746.184000px;}
.x7a{left:749.104500px;}
.xa5{left:750.592500px;}
.x9a{left:752.166000px;}
.x83{left:756.852000px;}
.x47{left:758.772000px;}
.x66{left:761.128500px;}
.x8a{left:771.762000px;}
.x48{left:773.716500px;}
.x84{left:775.513500px;}
.x91{left:777.174000px;}
.x6c{left:778.956000px;}
.x49{left:781.038000px;}
.x95{left:788.032500px;}
.x8b{left:790.516500px;}
.x92{left:792.118500px;}
.x36{left:794.385000px;}
.x4a{left:795.982500px;}
.x93{left:799.441500px;}
.x24{left:806.527500px;}
.x37{left:809.329500px;}
.x98{left:810.360000px;}
.x25{left:813.999000px;}
.x26{left:817.776000px;}
.x27{left:832.720500px;}
.x99{left:837.259500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls32{letter-spacing:-0.208416pt;}
.ls2d{letter-spacing:-0.166733pt;}
.ls38{letter-spacing:-0.152838pt;}
.ls44{letter-spacing:-0.138944pt;}
.ls2e{letter-spacing:-0.131997pt;}
.ls37{letter-spacing:-0.125050pt;}
.ls2a{letter-spacing:-0.111155pt;}
.ls45{letter-spacing:-0.104208pt;}
.ls28{letter-spacing:-0.099590pt;}
.ls2f{letter-spacing:-0.097261pt;}
.ls30{letter-spacing:-0.090314pt;}
.ls31{letter-spacing:-0.083366pt;}
.ls26{letter-spacing:-0.071926pt;}
.ls42{letter-spacing:-0.069472pt;}
.ls33{letter-spacing:-0.062525pt;}
.ls35{letter-spacing:-0.048630pt;}
.ls2c{letter-spacing:-0.041683pt;}
.ls43{letter-spacing:-0.034736pt;}
.ls29{letter-spacing:-0.027789pt;}
.ls34{letter-spacing:-0.024960pt;}
.ls39{letter-spacing:-0.020842pt;}
.ls2b{letter-spacing:-0.013894pt;}
.ls36{letter-spacing:-0.006947pt;}
.lsd{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.000921pt;}
.ls46{letter-spacing:0.001026pt;}
.ls4f{letter-spacing:0.001173pt;}
.ls9{letter-spacing:0.001735pt;}
.ls7{letter-spacing:0.001953pt;}
.ls4d{letter-spacing:0.002262pt;}
.ls0{letter-spacing:0.002422pt;}
.lsa{letter-spacing:0.003100pt;}
.ls2{letter-spacing:0.003733pt;}
.ls3b{letter-spacing:0.006240pt;}
.ls3c{letter-spacing:0.006947pt;}
.ls20{letter-spacing:0.012480pt;}
.ls13{letter-spacing:0.013894pt;}
.ls3a{letter-spacing:0.018720pt;}
.ls40{letter-spacing:0.020842pt;}
.ls1b{letter-spacing:0.024960pt;}
.ls24{letter-spacing:0.027789pt;}
.ls14{letter-spacing:0.034736pt;}
.ls18{letter-spacing:0.037440pt;}
.ls3e{letter-spacing:0.041683pt;}
.ls15{letter-spacing:0.048630pt;}
.lsf{letter-spacing:0.049795pt;}
.ls21{letter-spacing:0.049920pt;}
.ls11{letter-spacing:0.055578pt;}
.ls1c{letter-spacing:0.056160pt;}
.ls1a{letter-spacing:0.062400pt;}
.ls12{letter-spacing:0.062525pt;}
.ls1e{letter-spacing:0.068640pt;}
.ls17{letter-spacing:0.069472pt;}
.ls1f{letter-spacing:0.074880pt;}
.ls25{letter-spacing:0.076419pt;}
.ls22{letter-spacing:0.081120pt;}
.ls3d{letter-spacing:0.083366pt;}
.ls23{letter-spacing:0.090314pt;}
.ls1d{letter-spacing:0.093600pt;}
.ls41{letter-spacing:0.097261pt;}
.ls3f{letter-spacing:0.118102pt;}
.ls16{letter-spacing:0.194522pt;}
.ls10{letter-spacing:0.210246pt;}
.ls19{letter-spacing:0.212160pt;}
.ls27{letter-spacing:0.221312pt;}
.lse{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls6{letter-spacing:9.293600pt;}
.lsc{letter-spacing:10.626533pt;}
.ls53{letter-spacing:11.380854pt;}
.ls56{letter-spacing:11.919341pt;}
.ls47{letter-spacing:11.954133pt;}
.ls49{letter-spacing:11.959467pt;}
.ls55{letter-spacing:11.985779pt;}
.ls54{letter-spacing:12.007317pt;}
.ls51{letter-spacing:12.134140pt;}
.ls4a{letter-spacing:12.137317pt;}
.ls50{letter-spacing:13.801663pt;}
.ls4b{letter-spacing:13.968983pt;}
.ls4e{letter-spacing:14.544146pt;}
.ls4c{letter-spacing:15.642186pt;}
.ls48{letter-spacing:17.812120pt;}
.ls3{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lsb{letter-spacing:57.174803pt;}
.ws4b{word-spacing:-15.637440pt;}
.ws4a{word-spacing:-14.053312pt;}
.wsa5{word-spacing:-13.283467pt;}
.ws5{word-spacing:-12.760670pt;}
.wsf8{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsa{word-spacing:-9.298400pt;}
.ws83{word-spacing:-4.140531pt;}
.ws82{word-spacing:-4.119690pt;}
.ws84{word-spacing:-4.043270pt;}
.ws71{word-spacing:-3.550019pt;}
.ws73{word-spacing:-3.154029pt;}
.ws72{word-spacing:-3.008138pt;}
.ws37{word-spacing:-2.975497pt;}
.ws3a{word-spacing:-2.816095pt;}
.ws66{word-spacing:-2.813616pt;}
.ws67{word-spacing:-2.702461pt;}
.ws98{word-spacing:-2.337890pt;}
.wsa0{word-spacing:-2.178489pt;}
.wsd1{word-spacing:-2.021635pt;}
.ws61{word-spacing:-2.007741pt;}
.wsc1{word-spacing:-1.952163pt;}
.ws52{word-spacing:-1.912819pt;}
.wsc0{word-spacing:-1.834061pt;}
.ws90{word-spacing:-1.806551pt;}
.ws4c{word-spacing:-1.769370pt;}
.ws7{word-spacing:-1.696326pt;}
.wseb{word-spacing:-1.647150pt;}
.wsc6{word-spacing:-1.583962pt;}
.ws4d{word-spacing:-1.578086pt;}
.wsc5{word-spacing:-1.570067pt;}
.wsb0{word-spacing:-1.563120pt;}
.wsd9{word-spacing:-1.540882pt;}
.ws53{word-spacing:-1.487748pt;}
.ws8e{word-spacing:-1.458912pt;}
.ws9a{word-spacing:-1.434614pt;}
.wse4{word-spacing:-1.275213pt;}
.ws46{word-spacing:-1.222079pt;}
.ws9f{word-spacing:-1.195520pt;}
.ws6{word-spacing:-1.175671pt;}
.ws8b{word-spacing:-1.167130pt;}
.wsb6{word-spacing:-1.125446pt;}
.ws24{word-spacing:-1.115811pt;}
.wsf2{word-spacing:-1.009543pt;}
.ws142{word-spacing:-0.908595pt;}
.wse5{word-spacing:-0.903276pt;}
.ws1e{word-spacing:-0.860774pt;}
.ws39{word-spacing:-0.850142pt;}
.ws13b{word-spacing:-0.717312pt;}
.ws21{word-spacing:-0.637606pt;}
.ws63{word-spacing:-0.590512pt;}
.ws13c{word-spacing:-0.573850pt;}
.ws62{word-spacing:-0.555776pt;}
.ws8f{word-spacing:-0.478205pt;}
.ws131{word-spacing:-0.430387pt;}
.ws143{word-spacing:-0.382566pt;}
.ws8d{word-spacing:-0.382096pt;}
.ws69{word-spacing:-0.340413pt;}
.wsd4{word-spacing:-0.339376pt;}
.ws51{word-spacing:-0.318803pt;}
.wsb1{word-spacing:-0.312624pt;}
.ws57{word-spacing:-0.309837pt;}
.ws110{word-spacing:-0.286925pt;}
.ws29{word-spacing:-0.265669pt;}
.ws10d{word-spacing:-0.239104pt;}
.ws2d{word-spacing:-0.212535pt;}
.wsc3{word-spacing:-0.201469pt;}
.wsfc{word-spacing:-0.191283pt;}
.wsa2{word-spacing:-0.165910pt;}
.ws32{word-spacing:-0.159402pt;}
.ws56{word-spacing:-0.149386pt;}
.ws1b{word-spacing:-0.143462pt;}
.ws27{word-spacing:-0.106268pt;}
.wsfb{word-spacing:-0.095642pt;}
.ws2c{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.ws18{word-spacing:-0.042507pt;}
.wsb{word-spacing:-0.037194pt;}
.ws55{word-spacing:-0.027664pt;}
.wsb9{word-spacing:-0.006947pt;}
.ws4{word-spacing:-0.002889pt;}
.ws1{word-spacing:-0.002074pt;}
.ws3{word-spacing:-0.001548pt;}
.ws0{word-spacing:0.000000pt;}
.wsc2{word-spacing:0.034736pt;}
.ws74{word-spacing:0.041683pt;}
.ws9e{word-spacing:0.047821pt;}
.ws3b{word-spacing:0.053134pt;}
.ws60{word-spacing:0.055578pt;}
.ws11d{word-spacing:0.095642pt;}
.ws43{word-spacing:0.106268pt;}
.ws68{word-spacing:0.111155pt;}
.ws7b{word-spacing:0.118560pt;}
.ws8c{word-spacing:0.131997pt;}
.ws7d{word-spacing:0.137280pt;}
.ws9d{word-spacing:0.143462pt;}
.ws7c{word-spacing:0.143520pt;}
.ws77{word-spacing:0.149760pt;}
.ws7a{word-spacing:0.156000pt;}
.ws28{word-spacing:0.159402pt;}
.ws7f{word-spacing:0.162240pt;}
.ws76{word-spacing:0.168480pt;}
.ws75{word-spacing:0.174720pt;}
.wsd{word-spacing:0.185968pt;}
.ws78{word-spacing:0.187200pt;}
.ws100{word-spacing:0.191283pt;}
.wsa6{word-spacing:0.193440pt;}
.ws7e{word-spacing:0.199680pt;}
.wsa8{word-spacing:0.205920pt;}
.wsa7{word-spacing:0.212160pt;}
.ws17{word-spacing:0.212536pt;}
.ws79{word-spacing:0.237120pt;}
.ws1d{word-spacing:0.239104pt;}
.wsf{word-spacing:0.260355pt;}
.ws3e{word-spacing:0.265669pt;}
.wsff{word-spacing:0.286925pt;}
.wsde{word-spacing:0.318803pt;}
.ws125{word-spacing:0.334746pt;}
.ws95{word-spacing:0.371937pt;}
.wsf9{word-spacing:0.382566pt;}
.wse3{word-spacing:0.425071pt;}
.ws121{word-spacing:0.430387pt;}
.wsab{word-spacing:0.465462pt;}
.ws42{word-spacing:0.478205pt;}
.wsed{word-spacing:0.531339pt;}
.wsd8{word-spacing:0.584473pt;}
.ws4f{word-spacing:0.621670pt;}
.ws2a{word-spacing:0.637606pt;}
.ws94{word-spacing:0.690740pt;}
.ws139{word-spacing:0.812954pt;}
.wsaa{word-spacing:0.889242pt;}
.ws47{word-spacing:0.903276pt;}
.ws40{word-spacing:0.956410pt;}
.wsfa{word-spacing:0.956416pt;}
.wsec{word-spacing:1.009543pt;}
.wsda{word-spacing:1.062677pt;}
.ws1a{word-spacing:1.099878pt;}
.ws3c{word-spacing:1.115811pt;}
.ws2b{word-spacing:1.168945pt;}
.ws12e{word-spacing:1.195520pt;}
.ws107{word-spacing:1.243341pt;}
.wse9{word-spacing:1.275213pt;}
.wsc8{word-spacing:1.347757pt;}
.wsa9{word-spacing:1.361651pt;}
.ws85{word-spacing:1.368598pt;}
.ws9b{word-spacing:1.381481pt;}
.ws81{word-spacing:1.410282pt;}
.wsc7{word-spacing:1.424176pt;}
.ws129{word-spacing:1.434624pt;}
.ws80{word-spacing:1.445018pt;}
.ws86{word-spacing:1.486701pt;}
.wsf0{word-spacing:1.487748pt;}
.ws1c{word-spacing:1.578086pt;}
.wsa1{word-spacing:1.594016pt;}
.ws38{word-spacing:1.647150pt;}
.ws87{word-spacing:1.722906pt;}
.wse{word-spacing:1.785293pt;}
.ws130{word-spacing:1.817190pt;}
.ws12b{word-spacing:1.865011pt;}
.ws91{word-spacing:1.912819pt;}
.ws11c{word-spacing:2.008474pt;}
.ws33{word-spacing:2.072221pt;}
.wsfd{word-spacing:2.151936pt;}
.wsac{word-spacing:2.153632pt;}
.wsb7{word-spacing:2.181421pt;}
.wsb8{word-spacing:2.195315pt;}
.ws31{word-spacing:2.231622pt;}
.wsf7{word-spacing:2.486682pt;}
.ws3d{word-spacing:2.497292pt;}
.ws25{word-spacing:2.550426pt;}
.ws123{word-spacing:2.582323pt;}
.wsba{word-spacing:2.584358pt;}
.ws26{word-spacing:2.603559pt;}
.wsaf{word-spacing:2.626042pt;}
.wsbb{word-spacing:2.674672pt;}
.wscd{word-spacing:2.709408pt;}
.wsee{word-spacing:2.709827pt;}
.ws89{word-spacing:2.730250pt;}
.ws88{word-spacing:2.758038pt;}
.ws101{word-spacing:2.863386pt;}
.ws127{word-spacing:2.864802pt;}
.ws12f{word-spacing:2.867567pt;}
.wse0{word-spacing:2.869229pt;}
.ws138{word-spacing:2.869760pt;}
.ws12c{word-spacing:2.871330pt;}
.ws11e{word-spacing:2.917069pt;}
.wsdb{word-spacing:2.922363pt;}
.wsbf{word-spacing:2.938666pt;}
.wsbd{word-spacing:3.008138pt;}
.wsdf{word-spacing:3.028630pt;}
.ws23{word-spacing:3.081764pt;}
.ws4e{word-spacing:3.108352pt;}
.ws34{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws36{word-spacing:3.241166pt;}
.wsf1{word-spacing:3.294300pt;}
.ws135{word-spacing:3.299635pt;}
.wse8{word-spacing:3.347434pt;}
.wse1{word-spacing:3.400567pt;}
.wsc9{word-spacing:3.404128pt;}
.wsad{word-spacing:3.411075pt;}
.ws9c{word-spacing:3.453701pt;}
.wsbc{word-spacing:3.473600pt;}
.ws118{word-spacing:3.490918pt;}
.wsae{word-spacing:3.501389pt;}
.wscc{word-spacing:3.522230pt;}
.wse7{word-spacing:3.613103pt;}
.wsd3{word-spacing:3.666237pt;}
.ws120{word-spacing:3.682202pt;}
.wsdc{word-spacing:3.719371pt;}
.wsf3{word-spacing:3.772505pt;}
.ws137{word-spacing:3.777843pt;}
.ws6e{word-spacing:3.800118pt;}
.ws22{word-spacing:3.985040pt;}
.wse2{word-spacing:4.038174pt;}
.wsdd{word-spacing:4.197575pt;}
.ws5d{word-spacing:4.210003pt;}
.ws70{word-spacing:4.237792pt;}
.wsf4{word-spacing:4.250709pt;}
.wsc4{word-spacing:4.251686pt;}
.ws96{word-spacing:4.410111pt;}
.ws54{word-spacing:4.516379pt;}
.ws104{word-spacing:4.638618pt;}
.ws5c{word-spacing:4.675466pt;}
.ws5e{word-spacing:4.703254pt;}
.ws5f{word-spacing:4.731043pt;}
.ws35{word-spacing:4.782048pt;}
.ws5b{word-spacing:4.800515pt;}
.ws50{word-spacing:4.925542pt;}
.wsef{word-spacing:4.941450pt;}
.ws140{word-spacing:4.973363pt;}
.ws112{word-spacing:5.021184pt;}
.ws113{word-spacing:5.069005pt;}
.ws64{word-spacing:5.120086pt;}
.ws65{word-spacing:5.133981pt;}
.ws92{word-spacing:5.313387pt;}
.ws15{word-spacing:5.393072pt;}
.ws16{word-spacing:5.467459pt;}
.ws6d{word-spacing:5.488288pt;}
.ws6c{word-spacing:5.613338pt;}
.wsd7{word-spacing:5.632190pt;}
.wse6{word-spacing:5.685324pt;}
.ws105{word-spacing:5.834138pt;}
.wscf{word-spacing:5.842595pt;}
.ws99{word-spacing:5.897859pt;}
.ws97{word-spacing:5.950993pt;}
.wsce{word-spacing:5.960698pt;}
.ws93{word-spacing:6.004127pt;}
.ws6b{word-spacing:6.044064pt;}
.ws41{word-spacing:6.057261pt;}
.wsf6{word-spacing:6.073242pt;}
.wsca{word-spacing:6.287216pt;}
.wscb{word-spacing:6.384477pt;}
.wsf5{word-spacing:6.455808pt;}
.ws6a{word-spacing:6.460896pt;}
.ws136{word-spacing:6.599270pt;}
.wsbe{word-spacing:6.690154pt;}
.ws13e{word-spacing:6.790554pt;}
.ws49{word-spacing:6.960537pt;}
.ws48{word-spacing:7.013670pt;}
.ws8a{word-spacing:7.113933pt;}
.ws3f{word-spacing:7.226206pt;}
.wsb2{word-spacing:7.530765pt;}
.ws5a{word-spacing:7.537712pt;}
.ws59{word-spacing:7.628026pt;}
.ws13{word-spacing:7.699075pt;}
.ws116{word-spacing:7.746970pt;}
.ws12d{word-spacing:7.842611pt;}
.ws6f{word-spacing:7.954544pt;}
.wsc{word-spacing:9.298400pt;}
.wsb5{word-spacing:10.059546pt;}
.ws58{word-spacing:10.872368pt;}
.ws115{word-spacing:11.285709pt;}
.ws9{word-spacing:11.492822pt;}
.ws144{word-spacing:11.524813pt;}
.ws111{word-spacing:11.620454pt;}
.ws132{word-spacing:11.763917pt;}
.ws134{word-spacing:11.859558pt;}
.ws124{word-spacing:11.900749pt;}
.ws13f{word-spacing:11.901218pt;}
.ws117{word-spacing:11.903957pt;}
.ws126{word-spacing:11.904299pt;}
.ws11a{word-spacing:11.905050pt;}
.ws146{word-spacing:11.905425pt;}
.ws102{word-spacing:11.906662pt;}
.ws10c{word-spacing:11.907379pt;}
.ws106{word-spacing:12.003021pt;}
.ws145{word-spacing:12.050842pt;}
.wsd5{word-spacing:12.908616pt;}
.wsb3{word-spacing:12.928739pt;}
.wsa4{word-spacing:13.041863pt;}
.wsa3{word-spacing:13.066117pt;}
.wsb4{word-spacing:13.102419pt;}
.ws2e{word-spacing:13.134725pt;}
.ws108{word-spacing:13.150720pt;}
.ws30{word-spacing:13.230333pt;}
.ws44{word-spacing:13.239881pt;}
.ws45{word-spacing:13.291490pt;}
.wsd0{word-spacing:13.373360pt;}
.wsd2{word-spacing:13.474725pt;}
.wsea{word-spacing:13.594986pt;}
.ws8{word-spacing:13.763148pt;}
.ws10{word-spacing:14.348669pt;}
.ws11{word-spacing:14.356730pt;}
.ws10e{word-spacing:14.537523pt;}
.ws13d{word-spacing:14.728806pt;}
.ws122{word-spacing:14.770697pt;}
.ws133{word-spacing:14.771516pt;}
.ws114{word-spacing:14.772591pt;}
.ws10b{word-spacing:14.772651pt;}
.ws10a{word-spacing:14.773794pt;}
.ws103{word-spacing:14.775415pt;}
.ws13a{word-spacing:14.775851pt;}
.wsfe{word-spacing:14.776627pt;}
.ws10f{word-spacing:14.777054pt;}
.ws128{word-spacing:14.778061pt;}
.ws11f{word-spacing:14.824448pt;}
.ws119{word-spacing:14.920090pt;}
.ws109{word-spacing:15.063552pt;}
.ws12{word-spacing:15.732893pt;}
.ws20{word-spacing:16.418365pt;}
.wsd6{word-spacing:18.034202pt;}
.ws12a{word-spacing:19.510886pt;}
.ws11b{word-spacing:19.893453pt;}
.ws141{word-spacing:21.280256pt;}
.ws14{word-spacing:24.399002pt;}
._0{margin-left:-31.595439pt;}
._23{margin-left:-7.179888pt;}
._1b{margin-left:-6.209936pt;}
._1{margin-left:-5.260288pt;}
._a{margin-left:-4.176310pt;}
._4{margin-left:-2.668366pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._2{width:2.667277pt;}
._7{width:9.298400pt;}
._12{width:10.626800pt;}
._8{width:11.530016pt;}
._13{width:13.174575pt;}
._c{width:14.820500pt;}
._1e{width:15.833892pt;}
._e{width:16.737168pt;}
._b{width:17.741517pt;}
._10{width:18.862523pt;}
._11{width:20.782068pt;}
._16{width:21.897879pt;}
._18{width:23.591437pt;}
._f{width:24.654114pt;}
._21{width:25.584128pt;}
._d{width:26.513799pt;}
._1c{width:27.948414pt;}
._9{width:29.011008pt;}
._1a{width:30.031462pt;}
._1f{width:32.709427pt;}
._1d{width:33.793139pt;}
._17{width:37.306701pt;}
._3{width:48.342063pt;}
._20{width:54.993920pt;}
._14{width:763.769370pt;}
._22{width:2114.470676pt;}
._15{width:2135.724010pt;}
._19{width:2337.715278pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs5{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fsa{font-size:42.507200pt;}
.fs0{font-size:47.035520pt;}
.fsb{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fs1{font-size:50.395200pt;}
.fs3{font-size:53.133867pt;}
.fsc{font-size:55.328000pt;}
.fs2{font-size:60.474240pt;}
.fse{font-size:62.400000pt;}
.fsd{font-size:69.472000pt;}
.fs4{font-size:95.641600pt;}
.yf7{bottom:-940.447213pt;}
.y11d{bottom:-859.208217pt;}
.y11c{bottom:-836.952861pt;}
.y11b{bottom:-814.801714pt;}
.y11a{bottom:-792.546359pt;}
.y119{bottom:-770.291004pt;}
.y118{bottom:-748.139857pt;}
.y117{bottom:-725.884501pt;}
.y116{bottom:-703.733354pt;}
.y115{bottom:-681.477999pt;}
.y114{bottom:-659.222644pt;}
.y113{bottom:-637.071497pt;}
.y112{bottom:-609.616162pt;}
.y111{bottom:-566.663361pt;}
.y110{bottom:-544.408006pt;}
.y10f{bottom:-522.152651pt;}
.y10e{bottom:-500.001504pt;}
.y10d{bottom:-477.746149pt;}
.y97{bottom:-467.307880pt;}
.y10c{bottom:-455.490793pt;}
.y10b{bottom:-433.337909pt;}
.y10a{bottom:-411.082554pt;}
.y109{bottom:-388.929670pt;}
.ybd{bottom:-378.902098pt;}
.y108{bottom:-366.674315pt;}
.ybc{bottom:-356.750950pt;}
.y107{bottom:-344.418960pt;}
.ybb{bottom:-334.495595pt;}
.y106{bottom:-322.267813pt;}
.yba{bottom:-312.240240pt;}
.y105{bottom:-300.012457pt;}
.yb9{bottom:-290.089093pt;}
.y104{bottom:-277.861310pt;}
.yb8{bottom:-267.833738pt;}
.y103{bottom:-255.605955pt;}
.yb7{bottom:-245.682590pt;}
.y102{bottom:-233.350600pt;}
.yb6{bottom:-223.427235pt;}
.y101{bottom:-211.199453pt;}
.yb5{bottom:-201.171880pt;}
.y100{bottom:-188.944097pt;}
.yff{bottom:-166.791213pt;}
.yb4{bottom:-158.739880pt;}
.yb3{bottom:-138.771880pt;}
.yfe{bottom:-124.256253pt;}
.yb2{bottom:-118.803880pt;}
.yfd{bottom:-104.288253pt;}
.yb1{bottom:-98.731360pt;}
.yfc{bottom:-84.320253pt;}
.yb0{bottom:-78.763360pt;}
.yfb{bottom:-64.352253pt;}
.yaf{bottom:-58.795360pt;}
.yfa{bottom:-44.279733pt;}
.yae{bottom:-38.827360pt;}
.yf9{bottom:-24.207213pt;}
.yad{bottom:-18.651880pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:1.792839pt;}
.yb{bottom:3.044747pt;}
.yac{bottom:7.253615pt;}
.y4{bottom:8.420534pt;}
.ya{bottom:12.578910pt;}
.y3{bottom:25.722550pt;}
.y4d{bottom:28.346667pt;}
.y2{bottom:29.128174pt;}
.yce{bottom:79.105333pt;}
.y13f{bottom:80.870667pt;}
.y1b1{bottom:88.065333pt;}
.y22{bottom:91.398667pt;}
.y83{bottom:92.832000pt;}
.y146{bottom:94.044000pt;}
.y163{bottom:94.441333pt;}
.ycd{bottom:95.842667pt;}
.y13e{bottom:97.608000pt;}
.y1b0{bottom:103.408000pt;}
.y21{bottom:107.298667pt;}
.y82{bottom:109.569333pt;}
.y145{bottom:110.780000pt;}
.y162{bottom:111.178667pt;}
.ycc{bottom:112.580000pt;}
.y4c{bottom:112.874667pt;}
.y13d{bottom:114.345333pt;}
.y1af{bottom:118.750667pt;}
.y1e8{bottom:122.736000pt;}
.y20{bottom:123.200000pt;}
.y81{bottom:126.306667pt;}
.y144{bottom:127.517333pt;}
.y161{bottom:127.916000pt;}
.ycb{bottom:129.317333pt;}
.y4b{bottom:129.612000pt;}
.y13c{bottom:131.082667pt;}
.y1ae{bottom:134.093333pt;}
.y1e7{bottom:138.078667pt;}
.y1f{bottom:139.100000pt;}
.y80{bottom:143.044000pt;}
.y143{bottom:144.254667pt;}
.y160{bottom:144.653333pt;}
.yca{bottom:146.054667pt;}
.y4a{bottom:146.349333pt;}
.y13b{bottom:147.820000pt;}
.y1ad{bottom:149.436000pt;}
.y1e6{bottom:153.421333pt;}
.y1e{bottom:155.000000pt;}
.y142{bottom:160.992000pt;}
.y15f{bottom:161.390667pt;}
.yc9{bottom:162.792000pt;}
.y49{bottom:163.086667pt;}
.y7f{bottom:163.765333pt;}
.y13a{bottom:164.557333pt;}
.y1ac{bottom:164.778667pt;}
.y1e5{bottom:168.762667pt;}
.y1d{bottom:170.901333pt;}
.y177{bottom:172.948000pt;}
.yf3{bottom:177.729333pt;}
.y15e{bottom:178.128000pt;}
.yc8{bottom:179.529333pt;}
.y48{bottom:179.824000pt;}
.y1ab{bottom:180.121333pt;}
.y139{bottom:181.294667pt;}
.y1e4{bottom:184.105333pt;}
.y1c{bottom:186.801333pt;}
.y7e{bottom:193.653333pt;}
.yf2{bottom:194.466667pt;}
.y15d{bottom:194.865333pt;}
.y1aa{bottom:195.462667pt;}
.yc7{bottom:196.266667pt;}
.y176{bottom:196.540000pt;}
.y47{bottom:196.561333pt;}
.y138{bottom:198.032000pt;}
.y1e3{bottom:199.448000pt;}
.y1b{bottom:202.701333pt;}
.y7d{bottom:210.390667pt;}
.y1a9{bottom:210.805333pt;}
.y15c{bottom:211.602667pt;}
.yc6{bottom:213.004000pt;}
.y46{bottom:213.298667pt;}
.y1e2{bottom:214.790667pt;}
.yf1{bottom:215.189333pt;}
.y137{bottom:218.753333pt;}
.y175{bottom:220.130667pt;}
.y1a8{bottom:226.148000pt;}
.y7c{bottom:227.128000pt;}
.y15b{bottom:228.340000pt;}
.yc5{bottom:229.741333pt;}
.y45{bottom:230.036000pt;}
.y1e1{bottom:230.133333pt;}
.y1a7{bottom:241.490667pt;}
.y174{bottom:243.722667pt;}
.y7b{bottom:243.865333pt;}
.yf0{bottom:245.077333pt;}
.y1e0{bottom:245.476000pt;}
.y44{bottom:246.773333pt;}
.y136{bottom:248.641333pt;}
.y1a6{bottom:256.833333pt;}
.yc4{bottom:258.252000pt;}
.y7a{bottom:260.602667pt;}
.y1df{bottom:260.818667pt;}
.yef{bottom:261.814667pt;}
.y43{bottom:263.510667pt;}
.y135{bottom:265.378667pt;}
.y173{bottom:267.314667pt;}
.y1a5{bottom:272.176000pt;}
.y1a{bottom:273.154667pt;}
.yc3{bottom:275.348000pt;}
.y1de{bottom:276.161333pt;}
.y79{bottom:277.340000pt;}
.yee{bottom:278.552000pt;}
.y42{bottom:280.248000pt;}
.y134{bottom:282.116000pt;}
.y172{bottom:282.936000pt;}
.y1a4{bottom:287.518667pt;}
.y19{bottom:289.054667pt;}
.y1dd{bottom:291.502667pt;}
.yc2{bottom:292.442667pt;}
.y78{bottom:294.077333pt;}
.yed{bottom:295.289333pt;}
.y41{bottom:296.985333pt;}
.y171{bottom:298.557333pt;}
.y133{bottom:298.853333pt;}
.y1a3{bottom:302.861333pt;}
.y18{bottom:304.954667pt;}
.y1dc{bottom:306.845333pt;}
.yc1{bottom:309.538667pt;}
.y77{bottom:310.814667pt;}
.yec{bottom:312.026667pt;}
.y40{bottom:313.722667pt;}
.y170{bottom:314.178667pt;}
.y132{bottom:315.590667pt;}
.y1a2{bottom:318.202667pt;}
.y17{bottom:320.856000pt;}
.y1db{bottom:322.188000pt;}
.yc0{bottom:326.634667pt;}
.y76{bottom:327.552000pt;}
.yeb{bottom:328.764000pt;}
.y16f{bottom:329.800000pt;}
.y3f{bottom:330.460000pt;}
.yab{bottom:331.941428pt;}
.y131{bottom:332.328000pt;}
.y1a1{bottom:333.545333pt;}
.y1da{bottom:337.530667pt;}
.ybf{bottom:343.730667pt;}
.y75{bottom:344.289333pt;}
.y16e{bottom:345.421333pt;}
.yea{bottom:345.501333pt;}
.y3e{bottom:347.197333pt;}
.y1a0{bottom:348.888000pt;}
.y130{bottom:349.065333pt;}
.y1d9{bottom:352.873333pt;}
.yaa{bottom:354.196783pt;}
.y16{bottom:354.688000pt;}
.ybe{bottom:360.826667pt;}
.y74{bottom:361.026667pt;}
.y16d{bottom:361.042667pt;}
.ye9{bottom:362.238667pt;}
.y3d{bottom:363.934667pt;}
.y19f{bottom:364.230667pt;}
.y12f{bottom:365.802667pt;}
.y1d8{bottom:368.216000pt;}
.yf6{bottom:369.953463pt;}
.y15{bottom:370.589333pt;}
.ya9{bottom:376.347930pt;}
.y16c{bottom:376.664000pt;}
.y73{bottom:377.764000pt;}
.ye8{bottom:378.976000pt;}
.y19e{bottom:379.573333pt;}
.y3c{bottom:380.672000pt;}
.y94{bottom:380.764000pt;}
.yf5{bottom:381.288787pt;}
.y12e{bottom:382.540000pt;}
.y1d7{bottom:383.558667pt;}
.y14{bottom:386.489333pt;}
.y72{bottom:394.501333pt;}
.y19d{bottom:394.916000pt;}
.ye7{bottom:395.713333pt;}
.y3b{bottom:397.409333pt;}
.ya8{bottom:398.603286pt;}
.y1d6{bottom:398.901333pt;}
.y12d{bottom:399.277333pt;}
.y16b{bottom:400.256000pt;}
.y13{bottom:402.389333pt;}
.y19c{bottom:410.258667pt;}
.y71{bottom:411.238667pt;}
.ye6{bottom:412.450667pt;}
.y3a{bottom:414.146667pt;}
.y1d5{bottom:414.244000pt;}
.y16a{bottom:415.877333pt;}
.y12c{bottom:416.014667pt;}
.ya7{bottom:420.858641pt;}
.y19b{bottom:425.601333pt;}
.y70{bottom:427.976000pt;}
.ye5{bottom:429.188000pt;}
.y1d4{bottom:429.585333pt;}
.y39{bottom:430.884000pt;}
.y169{bottom:431.498667pt;}
.y12b{bottom:432.752000pt;}
.y12{bottom:434.230667pt;}
.y19a{bottom:440.944000pt;}
.ya6{bottom:443.009788pt;}
.y6f{bottom:444.713333pt;}
.y1d3{bottom:444.928000pt;}
.ye4{bottom:445.925333pt;}
.y38{bottom:447.621333pt;}
.y12a{bottom:449.489333pt;}
.y11{bottom:450.130667pt;}
.y199{bottom:456.285333pt;}
.y1d2{bottom:460.270667pt;}
.y6e{bottom:461.450667pt;}
.ye3{bottom:462.662667pt;}
.y168{bottom:463.060000pt;}
.ya5{bottom:465.265143pt;}
.y10{bottom:466.032000pt;}
.y129{bottom:466.226667pt;}
.y37{bottom:468.342667pt;}
.y198{bottom:471.628000pt;}
.y1d1{bottom:475.613333pt;}
.y6d{bottom:478.188000pt;}
.ye2{bottom:479.398667pt;}
.y167{bottom:479.797333pt;}
.yf{bottom:481.932000pt;}
.y128{bottom:482.964000pt;}
.y36{bottom:486.276000pt;}
.y197{bottom:486.970667pt;}
.ya4{bottom:487.418027pt;}
.y1d0{bottom:490.956000pt;}
.y6c{bottom:494.925333pt;}
.ye1{bottom:496.136000pt;}
.y166{bottom:496.534667pt;}
.ye{bottom:497.832000pt;}
.y127{bottom:499.701333pt;}
.y196{bottom:502.313333pt;}
.y1cf{bottom:506.298667pt;}
.y6b{bottom:511.662667pt;}
.ye0{bottom:512.873333pt;}
.y165{bottom:513.272000pt;}
.yd{bottom:513.733333pt;}
.ya3{bottom:514.873362pt;}
.y126{bottom:516.438667pt;}
.y15a{bottom:516.858667pt;}
.y195{bottom:517.656000pt;}
.y1ce{bottom:521.641333pt;}
.y6a{bottom:528.400000pt;}
.ydf{bottom:529.610667pt;}
.yc{bottom:529.633333pt;}
.y164{bottom:530.009333pt;}
.y194{bottom:532.998667pt;}
.y125{bottom:533.176000pt;}
.y1cd{bottom:536.984000pt;}
.y69{bottom:545.137333pt;}
.yde{bottom:546.348000pt;}
.y159{bottom:546.746667pt;}
.y193{bottom:548.341333pt;}
.y9{bottom:549.518634pt;}
.y124{bottom:549.913333pt;}
.y1cc{bottom:552.325333pt;}
.y35{bottom:553.076000pt;}
.ya2{bottom:557.928634pt;}
.y68{bottom:561.874667pt;}
.ydd{bottom:563.085333pt;}
.y158{bottom:563.484000pt;}
.y192{bottom:563.684000pt;}
.y1cb{bottom:567.668000pt;}
.y67{bottom:578.612000pt;}
.y191{bottom:579.025333pt;}
.y123{bottom:579.749333pt;}
.ydc{bottom:579.822667pt;}
.ya1{bottom:580.079781pt;}
.y157{bottom:580.221333pt;}
.y1ca{bottom:583.010667pt;}
.y34{bottom:586.312000pt;}
.y190{bottom:594.368000pt;}
.y66{bottom:595.349333pt;}
.ydb{bottom:596.560000pt;}
.y122{bottom:596.845333pt;}
.y156{bottom:596.958667pt;}
.y1c9{bottom:598.353333pt;}
.ya0{bottom:602.335136pt;}
.y33{bottom:603.606667pt;}
.y18f{bottom:609.710667pt;}
.y65{bottom:612.085333pt;}
.yda{bottom:613.297333pt;}
.y155{bottom:613.696000pt;}
.y121{bottom:613.941333pt;}
.y32{bottom:620.901333pt;}
.y9f{bottom:624.590491pt;}
.y18e{bottom:625.053333pt;}
.y64{bottom:628.822667pt;}
.y1c8{bottom:629.038667pt;}
.yd9{bottom:630.034667pt;}
.y154{bottom:630.433333pt;}
.y120{bottom:631.036000pt;}
.y31{bottom:638.197333pt;}
.y18d{bottom:640.396000pt;}
.y1c7{bottom:644.381333pt;}
.y63{bottom:645.560000pt;}
.y9e{bottom:646.743375pt;}
.yd8{bottom:646.772000pt;}
.y153{bottom:647.170667pt;}
.y11f{bottom:648.132000pt;}
.y30{bottom:655.492000pt;}
.y18c{bottom:655.738667pt;}
.y1c6{bottom:659.724000pt;}
.y62{bottom:662.297333pt;}
.yd7{bottom:663.509333pt;}
.y152{bottom:663.908000pt;}
.y11e{bottom:665.228000pt;}
.y9d{bottom:668.998730pt;}
.y18b{bottom:671.081333pt;}
.y2f{bottom:672.786667pt;}
.y1c5{bottom:675.066667pt;}
.y61{bottom:679.034667pt;}
.yd6{bottom:680.246667pt;}
.y151{bottom:680.645333pt;}
.yf4{bottom:685.165333pt;}
.y18a{bottom:686.424000pt;}
.y2e{bottom:690.082667pt;}
.y1c4{bottom:690.408000pt;}
.y9c{bottom:691.151614pt;}
.y60{bottom:695.772000pt;}
.yd5{bottom:696.984000pt;}
.y150{bottom:697.382667pt;}
.y189{bottom:701.766667pt;}
.y1c3{bottom:705.750667pt;}
.y5f{bottom:712.509333pt;}
.y9b{bottom:713.406970pt;}
.y93{bottom:713.721333pt;}
.y14f{bottom:714.120000pt;}
.y188{bottom:717.108000pt;}
.y1c2{bottom:721.093333pt;}
.y2d{bottom:724.380000pt;}
.y5e{bottom:729.246667pt;}
.y92{bottom:730.458667pt;}
.y14e{bottom:730.857333pt;}
.y187{bottom:732.450667pt;}
.y9a{bottom:735.662325pt;}
.y1c1{bottom:736.436000pt;}
.y2c{bottom:738.726667pt;}
.y5d{bottom:745.984000pt;}
.y91{bottom:747.196000pt;}
.y14d{bottom:747.594667pt;}
.y186{bottom:747.793333pt;}
.y1c0{bottom:751.778667pt;}
.y2b{bottom:753.073333pt;}
.y99{bottom:757.813472pt;}
.y5c{bottom:762.721333pt;}
.y185{bottom:763.136000pt;}
.y90{bottom:763.933333pt;}
.y14c{bottom:764.332000pt;}
.y1bf{bottom:767.121333pt;}
.y2a{bottom:771.277333pt;}
.y184{bottom:778.478667pt;}
.y5b{bottom:779.458667pt;}
.y98{bottom:780.068827pt;}
.y8f{bottom:780.670667pt;}
.y14b{bottom:781.069333pt;}
.y29{bottom:781.765333pt;}
.y1be{bottom:782.464000pt;}
.y183{bottom:793.821333pt;}
.y5a{bottom:796.196000pt;}
.y8e{bottom:797.408000pt;}
.y14a{bottom:797.806667pt;}
.y28{bottom:799.969333pt;}
.y182{bottom:809.164000pt;}
.y27{bottom:810.458667pt;}
.y59{bottom:812.933333pt;}
.y1bc{bottom:813.148000pt;}
.y1bd{bottom:813.149333pt;}
.y8d{bottom:814.145333pt;}
.y149{bottom:814.544000pt;}
.y181{bottom:824.506667pt;}
.y1bb{bottom:828.490667pt;}
.y26{bottom:828.661333pt;}
.y58{bottom:829.670667pt;}
.y8c{bottom:830.882667pt;}
.y148{bottom:831.281333pt;}
.y141{bottom:834.868000pt;}
.y25{bottom:839.150667pt;}
.y180{bottom:839.848000pt;}
.y96{bottom:843.092796pt;}
.y1ba{bottom:843.833333pt;}
.y57{bottom:846.408000pt;}
.yd4{bottom:847.620000pt;}
.y147{bottom:848.018667pt;}
.y8b{bottom:851.604000pt;}
.y24{bottom:853.497333pt;}
.y95{bottom:854.428120pt;}
.y17f{bottom:855.190667pt;}
.y23{bottom:857.354667pt;}
.y1b9{bottom:859.176000pt;}
.y56{bottom:863.145333pt;}
.yd3{bottom:864.357333pt;}
.y140{bottom:864.754667pt;}
.y17e{bottom:870.533333pt;}
.y1b8{bottom:874.518667pt;}
.y55{bottom:879.882667pt;}
.yd2{bottom:881.094667pt;}
.y8a{bottom:881.492000pt;}
.y17d{bottom:885.876000pt;}
.y1b7{bottom:889.861333pt;}
.y8{bottom:893.081333pt;}
.y54{bottom:896.620000pt;}
.yd1{bottom:897.832000pt;}
.y89{bottom:898.229333pt;}
.y17c{bottom:901.218667pt;}
.y1b6{bottom:905.204000pt;}
.y7{bottom:909.818667pt;}
.y53{bottom:913.357333pt;}
.yd0{bottom:914.569333pt;}
.y88{bottom:914.966667pt;}
.y17b{bottom:916.561333pt;}
.y1b5{bottom:920.546667pt;}
.y52{bottom:930.094667pt;}
.y87{bottom:931.704000pt;}
.y17a{bottom:931.904000pt;}
.ycf{bottom:935.290667pt;}
.y1b4{bottom:935.889333pt;}
.y51{bottom:946.832000pt;}
.y179{bottom:947.246667pt;}
.y86{bottom:948.441333pt;}
.y6{bottom:950.616000pt;}
.y1b3{bottom:951.230667pt;}
.y178{bottom:962.589333pt;}
.y50{bottom:963.569333pt;}
.y85{bottom:965.178667pt;}
.y1b2{bottom:966.573333pt;}
.y5{bottom:975.722667pt;}
.y84{bottom:981.916000pt;}
.y4f{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4e{bottom:1043.020000pt;}
.h9{height:22.673858pt;}
.he{height:23.209028pt;}
.h20{height:25.462789pt;}
.hc{height:27.076941pt;}
.hd{height:27.262909pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.hf{height:30.945242pt;}
.h14{height:31.157778pt;}
.h3{height:31.890083pt;}
.h10{height:34.430976pt;}
.h11{height:34.813542pt;}
.h4{height:35.024664pt;}
.h1f{height:35.052646pt;}
.h1e{height:37.087439pt;}
.h12{height:38.256384pt;}
.h13{height:38.681455pt;}
.h6{height:38.947124pt;}
.h17{height:40.388359pt;}
.h16{height:40.577469pt;}
.h5{height:41.001535pt;}
.h2{height:45.272024pt;}
.h1b{height:45.550781pt;}
.h1a{height:45.764063pt;}
.h8{height:48.365611pt;}
.h1d{height:50.000844pt;}
.h18{height:50.713203pt;}
.h19{height:53.901859pt;}
.h7{height:68.861952pt;}
.h1c{height:310.034400pt;}
.h15{height:313.268800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w4{width:424.595600pt;}
.w5{width:449.839867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x5f{left:-226.921067pt;}
.x3d{left:-221.743600pt;}
.x61{left:-0.929067pt;}
.x0{left:0.000000pt;}
.x3f{left:4.247141pt;}
.x4{left:26.021437pt;}
.x62{left:35.886933pt;}
.x3e{left:41.063019pt;}
.x1{left:48.000000pt;}
.x3{left:53.357850pt;}
.x97{left:76.686667pt;}
.xa0{left:157.780000pt;}
.x2{left:161.132773pt;}
.xa2{left:167.210667pt;}
.xa1{left:183.457333pt;}
.x9c{left:187.568000pt;}
.x9b{left:190.254667pt;}
.x23{left:221.026667pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x6{left:240.952000pt;}
.xa{left:251.365333pt;}
.x86{left:263.928000pt;}
.x69{left:267.328000pt;}
.x41{left:273.293333pt;}
.x8{left:275.084000pt;}
.x87{left:277.212000pt;}
.x2b{left:279.718667pt;}
.x75{left:282.394667pt;}
.x9{left:284.656000pt;}
.x38{left:286.789333pt;}
.x2c{left:293.002667pt;}
.x76{left:295.677333pt;}
.x88{left:297.064000pt;}
.x2d{left:299.610667pt;}
.x39{left:303.446667pt;}
.x8f{left:309.488000pt;}
.x2e{left:312.894667pt;}
.x8e{left:315.337333pt;}
.x3a{left:316.730667pt;}
.x90{left:322.770667pt;}
.x4b{left:326.089333pt;}
.x56{left:329.336000pt;}
.x4c{left:332.790667pt;}
.x6d{left:334.317333pt;}
.x57{left:342.620000pt;}
.x13{left:344.117333pt;}
.x4d{left:346.074667pt;}
.x6e{left:347.601333pt;}
.x14{left:350.758667pt;}
.x96{left:353.285333pt;}
.x6f{left:354.376000pt;}
.x72{left:356.504000pt;}
.x67{left:359.005333pt;}
.x6a{left:367.709333pt;}
.x73{left:369.788000pt;}
.x68{left:372.288000pt;}
.x6b{left:380.992000pt;}
.xf{left:392.049333pt;}
.x15{left:394.832000pt;}
.x10{left:398.690667pt;}
.x11{left:402.078667pt;}
.x89{left:404.860000pt;}
.x1a{left:407.658667pt;}
.x12{left:408.720000pt;}
.x1b{left:414.300000pt;}
.x5d{left:415.280000pt;}
.x40{left:417.645388pt;}
.x94{left:425.346667pt;}
.x5a{left:437.794667pt;}
.x43{left:443.830667pt;}
.x60{left:448.868870pt;}
.x5b{left:451.078667pt;}
.x3b{left:452.068000pt;}
.x3c{left:465.350667pt;}
.x70{left:466.798667pt;}
.xd{left:475.933333pt;}
.x71{left:480.082667pt;}
.xe{left:482.576000pt;}
.x44{left:488.182667pt;}
.x58{left:495.742667pt;}
.x8c{left:497.909333pt;}
.x54{left:501.368000pt;}
.x45{left:502.568000pt;}
.x5c{left:505.534667pt;}
.x59{left:509.026667pt;}
.x8d{left:511.192000pt;}
.x32{left:514.248000pt;}
.x2f{left:515.785333pt;}
.x55{left:517.922667pt;}
.x46{left:519.105333pt;}
.x16{left:521.929333pt;}
.x5e{left:522.950667pt;}
.x33{left:527.530667pt;}
.x17{left:528.572000pt;}
.x4e{left:530.554667pt;}
.x18{left:531.958667pt;}
.x34{left:534.086667pt;}
.x30{left:535.844000pt;}
.x19{left:538.600000pt;}
.x4f{left:543.837333pt;}
.x77{left:545.530667pt;}
.x35{left:547.370667pt;}
.x31{left:549.128000pt;}
.x20{left:552.093333pt;}
.x21{left:555.374667pt;}
.x78{left:558.813333pt;}
.x85{left:560.956000pt;}
.x50{left:564.488000pt;}
.x74{left:567.298667pt;}
.x22{left:568.658667pt;}
.x63{left:576.320000pt;}
.x51{left:577.770667pt;}
.x52{left:581.025333pt;}
.x7b{left:585.592000pt;}
.x9d{left:587.272000pt;}
.x28{left:588.390667pt;}
.x64{left:589.604000pt;}
.x1c{left:592.714667pt;}
.x53{left:594.309333pt;}
.x29{left:601.673333pt;}
.x2a{left:605.061333pt;}
.x1d{left:605.998667pt;}
.x1e{left:609.356000pt;}
.xb{left:611.937333pt;}
.xc{left:618.578667pt;}
.x1f{left:622.640000pt;}
.x42{left:624.878667pt;}
.xa3{left:626.178667pt;}
.x7c{left:630.781333pt;}
.xa6{left:636.646667pt;}
.x9e{left:640.250667pt;}
.x80{left:642.885333pt;}
.x7d{left:644.065333pt;}
.x9f{left:646.246667pt;}
.x7e{left:647.453333pt;}
.xa4{left:650.089333pt;}
.x79{left:652.588000pt;}
.x81{left:656.169333pt;}
.x82{left:659.473333pt;}
.x7f{left:660.736000pt;}
.x65{left:663.274667pt;}
.x7a{left:665.870667pt;}
.xa5{left:667.193333pt;}
.x9a{left:668.592000pt;}
.x83{left:672.757333pt;}
.x47{left:674.464000pt;}
.x66{left:676.558667pt;}
.x8a{left:686.010667pt;}
.x48{left:687.748000pt;}
.x84{left:689.345333pt;}
.x91{left:690.821333pt;}
.x6c{left:692.405333pt;}
.x49{left:694.256000pt;}
.x95{left:700.473333pt;}
.x8b{left:702.681333pt;}
.x92{left:704.105333pt;}
.x36{left:706.120000pt;}
.x4a{left:707.540000pt;}
.x93{left:710.614667pt;}
.x24{left:716.913333pt;}
.x37{left:719.404000pt;}
.x98{left:720.320000pt;}
.x25{left:723.554667pt;}
.x26{left:726.912000pt;}
.x27{left:740.196000pt;}
.x99{left:744.230667pt;}
}




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