
    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_d049895567befbed76084626.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_df2f9413ce44297fb852d532.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_418701691e523594edee721a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_1de0f8f22095f9bfde30348d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8da778dc461f0811a09a35e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_47646a106060692b0f189c3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929000;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_0b79620a2b0da36b689341e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.193359;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_072e511500f27a6bf4579f72.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.200195;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_dc18615bbe538a24c6e42c83.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.206055;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_09c0f8ede8ff2fb4b8a5f16b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_1ee328dfbb240b78f8452021.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734863;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_0b79620a2b0da36b689341e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.193359;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_7f3d78a82b5d7c8e10abc1ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.200195;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_9272c45ffada54751105a526.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_09c0f8ede8ff2fb4b8a5f16b.woff2')format("woff");}.fff{font-family:fff;line-height:0.727539;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_3cb3d6021c5546502f4043cd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.734863;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_08961980ef524eab78ce7d83.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4f062be64563118a55a4d2e8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.193359;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_5b32ea8acb9ae5dd69f3d83e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.200195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a0203a1489dbb1b508632b37.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_05faa8b3dc3bc17759977e78.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_09c0f8ede8ff2fb4b8a5f16b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f279615d534475f31da39707.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_72c9af9fe8aeec5fe957744d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.726000;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;}
.m9{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);}
.m15{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);}
.m1a{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);}
.m20{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);}
.m26{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);}
.mb{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);}
.m2c{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);}
.m4{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);}
.ma{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);}
.m5{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);}
.m2a{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);}
.m1{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);}
.m16{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);}
.m1d{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);}
.md{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);}
.m3{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);}
.m8{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);}
.m14{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);}
.m11{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);}
.m12{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);}
.m27{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);}
.m29{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);}
.m28{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);}
.m1c{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);}
.m19{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);}
.m1b{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);}
.mc{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);}
.m21{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m24{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);}
.m6{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);}
.m17{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);}
.m7{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);}
.m1e{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);}
.m1f{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);}
.m13{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);}
.m25{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);}
.m22{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);}
.m2b{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);}
.m10{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);}
.m2{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;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:32.874000px;}
.ls55{letter-spacing:-1.539072px;}
.ls2b{letter-spacing:-0.480960px;}
.ls42{letter-spacing:-0.372744px;}
.ls49{letter-spacing:-0.294588px;}
.ls24{letter-spacing:-0.276552px;}
.ls48{letter-spacing:-0.270540px;}
.ls54{letter-spacing:-0.264528px;}
.ls45{letter-spacing:-0.228456px;}
.ls44{letter-spacing:-0.192384px;}
.ls51{letter-spacing:-0.174348px;}
.ls4a{letter-spacing:-0.168336px;}
.ls50{letter-spacing:-0.162324px;}
.ls52{letter-spacing:-0.150300px;}
.ls2c{letter-spacing:-0.138276px;}
.ls40{letter-spacing:-0.132264px;}
.ls1b{letter-spacing:-0.126252px;}
.ls26{letter-spacing:-0.120240px;}
.ls20{letter-spacing:-0.114228px;}
.ls47{letter-spacing:-0.108216px;}
.ls1c{letter-spacing:-0.102204px;}
.ls25{letter-spacing:-0.096192px;}
.ls2a{letter-spacing:-0.090180px;}
.ls43{letter-spacing:-0.084168px;}
.ls53{letter-spacing:-0.078156px;}
.ls3f{letter-spacing:-0.066132px;}
.ls4f{letter-spacing:-0.060120px;}
.ls23{letter-spacing:-0.054108px;}
.ls41{letter-spacing:-0.048096px;}
.ls28{letter-spacing:-0.042084px;}
.ls1d{letter-spacing:-0.036072px;}
.ls29{letter-spacing:-0.030060px;}
.ls1f{letter-spacing:-0.024048px;}
.ls1a{letter-spacing:-0.018036px;}
.ls1e{letter-spacing:-0.012024px;}
.ls21{letter-spacing:-0.010800px;}
.ls22{letter-spacing:-0.006012px;}
.ls7{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.000453px;}
.ls62{letter-spacing:0.000496px;}
.ls2{letter-spacing:0.000583px;}
.ls61{letter-spacing:0.000676px;}
.ls64{letter-spacing:0.000741px;}
.ls58{letter-spacing:0.000800px;}
.ls67{letter-spacing:0.000901px;}
.ls5d{letter-spacing:0.001036px;}
.ls65{letter-spacing:0.001123px;}
.ls5e{letter-spacing:0.001303px;}
.ls70{letter-spacing:0.001544px;}
.ls60{letter-spacing:0.001584px;}
.ls69{letter-spacing:0.001846px;}
.ls71{letter-spacing:0.002090px;}
.ls6b{letter-spacing:0.002382px;}
.ls68{letter-spacing:0.002544px;}
.ls63{letter-spacing:0.002841px;}
.ls6d{letter-spacing:0.003490px;}
.ls56{letter-spacing:0.003668px;}
.ls5f{letter-spacing:0.004028px;}
.ls6c{letter-spacing:0.004458px;}
.ls59{letter-spacing:0.004523px;}
.lsa{letter-spacing:0.004788px;}
.ls3a{letter-spacing:0.005400px;}
.ls16{letter-spacing:0.006012px;}
.ls36{letter-spacing:0.012024px;}
.ls2d{letter-spacing:0.014364px;}
.ls38{letter-spacing:0.016200px;}
.ls4d{letter-spacing:0.018036px;}
.ls34{letter-spacing:0.024048px;}
.ls10{letter-spacing:0.030060px;}
.ls15{letter-spacing:0.036072px;}
.ls11{letter-spacing:0.042084px;}
.lsc{letter-spacing:0.043092px;}
.ls39{letter-spacing:0.043200px;}
.ls37{letter-spacing:0.048096px;}
.ls2f{letter-spacing:0.052668px;}
.ls46{letter-spacing:0.054000px;}
.ls19{letter-spacing:0.054108px;}
.ls33{letter-spacing:0.060120px;}
.ls32{letter-spacing:0.066132px;}
.ls4e{letter-spacing:0.072144px;}
.ls12{letter-spacing:0.078156px;}
.ls31{letter-spacing:0.084168px;}
.lse{letter-spacing:0.090180px;}
.ls17{letter-spacing:0.096192px;}
.ls13{letter-spacing:0.102204px;}
.ls3b{letter-spacing:0.102600px;}
.ls35{letter-spacing:0.120240px;}
.ls14{letter-spacing:0.132264px;}
.ls27{letter-spacing:0.144288px;}
.lsd{letter-spacing:0.167580px;}
.lsf{letter-spacing:0.168336px;}
.ls4b{letter-spacing:0.172368px;}
.ls30{letter-spacing:0.177156px;}
.ls4c{letter-spacing:0.180360px;}
.lsb{letter-spacing:0.181944px;}
.ls2e{letter-spacing:0.191520px;}
.ls3c{letter-spacing:0.192384px;}
.ls3e{letter-spacing:0.642088px;}
.ls3d{letter-spacing:0.648088px;}
.ls1{letter-spacing:2.998354px;}
.ls57{letter-spacing:3.507900px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls6f{letter-spacing:13.250876px;}
.ls5a{letter-spacing:13.448400px;}
.ls5c{letter-spacing:13.454400px;}
.ls66{letter-spacing:13.635593px;}
.ls6e{letter-spacing:14.291576px;}
.ls9{letter-spacing:14.943900px;}
.ls3{letter-spacing:14.944200px;}
.ls8{letter-spacing:16.079636px;}
.ls18{letter-spacing:16.677392px;}
.ls5b{letter-spacing:20.320988px;}
.ls4{letter-spacing:62.761200px;}
.ls5{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;}
}
.wse{word-spacing:-104.460451px;}
.wsaa{word-spacing:-60.120000px;}
.wsac{word-spacing:-54.000000px;}
.ws6f{word-spacing:-29.887800px;}
.ws77{word-spacing:-15.174288px;}
.ws115{word-spacing:-15.108156px;}
.wsab{word-spacing:-13.554000px;}
.ws161{word-spacing:-13.449600px;}
.wsa9{word-spacing:-12.161520px;}
.ws74{word-spacing:-12.151944px;}
.ws75{word-spacing:-11.970000px;}
.ws2d{word-spacing:-11.955150px;}
.ws13{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws62{word-spacing:-3.347434px;}
.ws2f{word-spacing:-3.287658px;}
.ws12b{word-spacing:-3.228444px;}
.ws45{word-spacing:-3.168107px;}
.ws149{word-spacing:-3.048556px;}
.ws52{word-spacing:-2.988780px;}
.ws12c{word-spacing:-2.987964px;}
.ws35{word-spacing:-2.929004px;}
.ws6e{word-spacing:-2.869229px;}
.ws150{word-spacing:-2.749678px;}
.ws6b{word-spacing:-2.510575px;}
.ws147{word-spacing:-2.450800px;}
.ws10d{word-spacing:-2.391024px;}
.ws14e{word-spacing:-2.271473px;}
.ws7b{word-spacing:-2.151922px;}
.ws91{word-spacing:-2.098188px;}
.ws8f{word-spacing:-2.062116px;}
.ws135{word-spacing:-2.056104px;}
.ws6c{word-spacing:-2.032370px;}
.ws90{word-spacing:-1.953900px;}
.ws2e{word-spacing:-1.912819px;}
.ws71{word-spacing:-1.853044px;}
.ws24{word-spacing:-1.733492px;}
.ws60{word-spacing:-1.673717px;}
.ws16e{word-spacing:-1.667750px;}
.ws13b{word-spacing:-1.647288px;}
.ws16f{word-spacing:-1.613952px;}
.ws79{word-spacing:-1.494390px;}
.ws93{word-spacing:-1.430856px;}
.ws15e{word-spacing:-1.344960px;}
.ws56{word-spacing:-1.315063px;}
.ws94{word-spacing:-1.298592px;}
.ws1e{word-spacing:-1.291162px;}
.ws9b{word-spacing:-1.262520px;}
.ws3f{word-spacing:-1.255288px;}
.ws9c{word-spacing:-1.232460px;}
.ws44{word-spacing:-1.195512px;}
.ws48{word-spacing:-1.135736px;}
.wseb{word-spacing:-1.064124px;}
.wsce{word-spacing:-1.022040px;}
.ws102{word-spacing:-1.021510px;}
.ws7a{word-spacing:-1.016185px;}
.ws6d{word-spacing:-0.956410px;}
.wscf{word-spacing:-0.931860px;}
.wsd0{word-spacing:-0.919836px;}
.ws73{word-spacing:-0.896634px;}
.ws15a{word-spacing:-0.860774px;}
.ws68{word-spacing:-0.836858px;}
.ws1{word-spacing:-0.795013px;}
.ws39{word-spacing:-0.777083px;}
.ws7{word-spacing:-0.711328px;}
.ws182{word-spacing:-0.699379px;}
.ws11e{word-spacing:-0.685368px;}
.ws92{word-spacing:-0.673344px;}
.ws2a{word-spacing:-0.657532px;}
.ws88{word-spacing:-0.619236px;}
.ws89{word-spacing:-0.607212px;}
.ws181{word-spacing:-0.537984px;}
.ws0{word-spacing:-0.470459px;}
.ws173{word-spacing:-0.430387px;}
.ws6a{word-spacing:-0.418429px;}
.wsea{word-spacing:-0.396792px;}
.ws18a{word-spacing:-0.376589px;}
.ws5c{word-spacing:-0.358654px;}
.ws189{word-spacing:-0.322790px;}
.ws32{word-spacing:-0.298878px;}
.ws14f{word-spacing:-0.286827px;}
.wsca{word-spacing:-0.277704px;}
.ws80{word-spacing:-0.272916px;}
.ws132{word-spacing:-0.270540px;}
.ws15d{word-spacing:-0.268992px;}
.wsff{word-spacing:-0.264528px;}
.ws8e{word-spacing:-0.258516px;}
.ws2b{word-spacing:-0.239102px;}
.ws87{word-spacing:-0.234468px;}
.wsad{word-spacing:-0.215194px;}
.ws41{word-spacing:-0.179327px;}
.ws165{word-spacing:-0.161395px;}
.ws118{word-spacing:-0.144288px;}
.wscb{word-spacing:-0.138852px;}
.ws81{word-spacing:-0.134064px;}
.ws11d{word-spacing:-0.132264px;}
.ws28{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.107597px;}
.ws14d{word-spacing:-0.070513px;}
.ws76{word-spacing:-0.060120px;}
.ws14{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.041843px;}
.ws190{word-spacing:-0.012106px;}
.ws12{word-spacing:-0.005434px;}
.ws16c{word-spacing:-0.005194px;}
.ws176{word-spacing:-0.003418px;}
.ws10{word-spacing:-0.001957px;}
.ws18b{word-spacing:-0.001526px;}
.ws2c{word-spacing:-0.000410px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:0.001648px;}
.ws123{word-spacing:0.012024px;}
.ws11f{word-spacing:0.018036px;}
.ws124{word-spacing:0.042084px;}
.ws20{word-spacing:0.053798px;}
.ws30{word-spacing:0.059776px;}
.wse6{word-spacing:0.066132px;}
.ws128{word-spacing:0.072144px;}
.wsf{word-spacing:0.107597px;}
.ws134{word-spacing:0.108216px;}
.ws13c{word-spacing:0.114228px;}
.ws36{word-spacing:0.119551px;}
.wsec{word-spacing:0.132264px;}
.ws127{word-spacing:0.138276px;}
.wsfd{word-spacing:0.140400px;}
.ws15{word-spacing:0.143462px;}
.ws120{word-spacing:0.150300px;}
.ws157{word-spacing:0.161395px;}
.wsf0{word-spacing:0.167400px;}
.ws8c{word-spacing:0.178200px;}
.ws23{word-spacing:0.179327px;}
.ws188{word-spacing:0.188543px;}
.ws8d{word-spacing:0.189000px;}
.ws129{word-spacing:0.192384px;}
.ws1f{word-spacing:0.215194px;}
.ws3c{word-spacing:0.239102px;}
.ws133{word-spacing:0.252504px;}
.ws158{word-spacing:0.268992px;}
.ws42{word-spacing:0.298878px;}
.ws183{word-spacing:0.322790px;}
.ws12a{word-spacing:0.348696px;}
.ws13d{word-spacing:0.354708px;}
.ws5f{word-spacing:0.358654px;}
.ws1b{word-spacing:0.376589px;}
.wsfc{word-spacing:0.390780px;}
.ws67{word-spacing:0.418429px;}
.wse5{word-spacing:0.456912px;}
.wse4{word-spacing:0.474948px;}
.ws66{word-spacing:0.478205px;}
.wsd1{word-spacing:0.480960px;}
.ws109{word-spacing:0.537980px;}
.wsd2{word-spacing:0.589176px;}
.ws159{word-spacing:0.591782px;}
.ws7e{word-spacing:0.597756px;}
.ws18f{word-spacing:0.615389px;}
.ws18e{word-spacing:0.645581px;}
.wse3{word-spacing:0.649296px;}
.ws25{word-spacing:0.657532px;}
.ws54{word-spacing:0.717307px;}
.ws146{word-spacing:0.777083px;}
.ws13e{word-spacing:0.823644px;}
.wsc9{word-spacing:0.896634px;}
.ws155{word-spacing:0.914573px;}
.wsf4{word-spacing:0.925848px;}
.wsf8{word-spacing:0.955908px;}
.ws104{word-spacing:0.956410px;}
.ws103{word-spacing:1.016185px;}
.wsf9{word-spacing:1.088172px;}
.ws83{word-spacing:1.118232px;}
.ws50{word-spacing:1.135736px;}
.wsf7{word-spacing:1.148292px;}
.ws141{word-spacing:1.160316px;}
.ws137{word-spacing:1.172340px;}
.ws136{word-spacing:1.178352px;}
.ws156{word-spacing:1.183565px;}
.ws63{word-spacing:1.195512px;}
.ws140{word-spacing:1.196388px;}
.ws4e{word-spacing:1.255288px;}
.wsf6{word-spacing:1.304604px;}
.ws3e{word-spacing:1.315063px;}
.wsd{word-spacing:1.380812px;}
.ws69{word-spacing:1.434614px;}
.ws43{word-spacing:1.494390px;}
.wsa5{word-spacing:1.521036px;}
.ws72{word-spacing:1.554166px;}
.ws10c{word-spacing:1.613941px;}
.ws4c{word-spacing:1.673717px;}
.ws7f{word-spacing:1.733492px;}
.ws27{word-spacing:1.793268px;}
.wsfa{word-spacing:1.845684px;}
.wsf3{word-spacing:1.893780px;}
.ws121{word-spacing:1.899792px;}
.ws49{word-spacing:1.912819px;}
.ws122{word-spacing:1.929852px;}
.ws171{word-spacing:1.936742px;}
.wsef{word-spacing:1.944000px;}
.wsf2{word-spacing:1.947888px;}
.wsed{word-spacing:1.971000px;}
.ws113{word-spacing:1.972595px;}
.wsee{word-spacing:1.987200px;}
.ws99{word-spacing:2.001996px;}
.wsfb{word-spacing:2.026044px;}
.ws5e{word-spacing:2.151922px;}
.ws15c{word-spacing:2.151936px;}
.wsf5{word-spacing:2.158308px;}
.ws98{word-spacing:2.164320px;}
.wse2{word-spacing:2.206404px;}
.ws64{word-spacing:2.211697px;}
.ws18{word-spacing:2.259533px;}
.wse0{word-spacing:2.266524px;}
.ws40{word-spacing:2.271473px;}
.ws12f{word-spacing:2.272536px;}
.ws9f{word-spacing:2.278548px;}
.wsa1{word-spacing:2.290572px;}
.ws3d{word-spacing:2.331248px;}
.ws1c{word-spacing:2.367130px;}
.wsa0{word-spacing:2.374740px;}
.ws46{word-spacing:2.391024px;}
.ws3a{word-spacing:2.450800px;}
.ws170{word-spacing:2.474726px;}
.ws5{word-spacing:2.509098px;}
.wse1{word-spacing:2.567124px;}
.ws4f{word-spacing:2.570351px;}
.ws144{word-spacing:2.573136px;}
.ws38{word-spacing:2.630126px;}
.ws143{word-spacing:2.645280px;}
.ws5a{word-spacing:2.689902px;}
.wsa2{word-spacing:2.699388px;}
.wsa3{word-spacing:2.729448px;}
.ws152{word-spacing:2.749678px;}
.ws61{word-spacing:2.809453px;}
.ws7d{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.ws4a{word-spacing:2.929004px;}
.ws185{word-spacing:2.958912px;}
.ws96{word-spacing:2.975940px;}
.ws130{word-spacing:2.981952px;}
.ws15f{word-spacing:3.011201px;}
.ws186{word-spacing:3.012710px;}
.ws131{word-spacing:3.048084px;}
.ws177{word-spacing:3.066509px;}
.ws95{word-spacing:3.072132px;}
.wsa4{word-spacing:3.090168px;}
.ws18c{word-spacing:3.120307px;}
.ws180{word-spacing:3.217718px;}
.ws18d{word-spacing:3.218448px;}
.ws163{word-spacing:3.218736px;}
.ws21{word-spacing:3.219667px;}
.ws164{word-spacing:3.221030px;}
.ws168{word-spacing:3.221251px;}
.ws17b{word-spacing:3.221299px;}
.ws17c{word-spacing:3.223498px;}
.ws172{word-spacing:3.224227px;}
.ws15b{word-spacing:3.224822px;}
.ws17a{word-spacing:3.226051px;}
.ws29{word-spacing:3.227882px;}
.ws1a{word-spacing:3.227904px;}
.ws175{word-spacing:3.228000px;}
.ws184{word-spacing:3.230045px;}
.ws191{word-spacing:3.281702px;}
.wsdb{word-spacing:3.330648px;}
.ws174{word-spacing:3.335501px;}
.ws16d{word-spacing:3.389299px;}
.ws17{word-spacing:3.390225px;}
.ws26{word-spacing:3.407209px;}
.ws9a{word-spacing:3.426840px;}
.ws179{word-spacing:3.443098px;}
.ws10b{word-spacing:3.466985px;}
.ws17e{word-spacing:3.471421px;}
.ws17f{word-spacing:3.496896px;}
.ws31{word-spacing:3.526760px;}
.ws22{word-spacing:3.586536px;}
.wsd9{word-spacing:3.661308px;}
.ws13f{word-spacing:3.673332px;}
.wsc7{word-spacing:3.693072px;}
.ws3b{word-spacing:3.706087px;}
.ws47{word-spacing:3.765863px;}
.wsda{word-spacing:3.781548px;}
.ws78{word-spacing:3.825638px;}
.ws162{word-spacing:3.927283px;}
.ws55{word-spacing:3.945190px;}
.ws4d{word-spacing:4.004965px;}
.wsd5{word-spacing:4.034052px;}
.wsd6{word-spacing:4.058100px;}
.ws14c{word-spacing:4.064741px;}
.ws8a{word-spacing:4.070124px;}
.ws178{word-spacing:4.088678px;}
.wsd7{word-spacing:4.106196px;}
.ws70{word-spacing:4.124516px;}
.ws142{word-spacing:4.148280px;}
.ws8b{word-spacing:4.166316px;}
.ws153{word-spacing:4.184292px;}
.ws12e{word-spacing:4.202388px;}
.ws12d{word-spacing:4.226436px;}
.ws33{word-spacing:4.303843px;}
.wsd3{word-spacing:4.352688px;}
.wsd4{word-spacing:4.358700px;}
.ws37{word-spacing:4.423394px;}
.wsd8{word-spacing:4.430844px;}
.ws65{word-spacing:4.542946px;}
.ws17d{word-spacing:4.572864px;}
.wsdc{word-spacing:4.767516px;}
.ws148{word-spacing:4.782048px;}
.ws125{word-spacing:4.821624px;}
.ws126{word-spacing:4.827636px;}
.wsdd{word-spacing:4.845672px;}
.wsde{word-spacing:4.863708px;}
.ws57{word-spacing:4.961375px;}
.ws14b{word-spacing:5.021150px;}
.wsc8{word-spacing:5.080926px;}
.ws84{word-spacing:5.146272px;}
.ws86{word-spacing:5.230440px;}
.ws85{word-spacing:5.254488px;}
.ws5d{word-spacing:5.260253px;}
.ws187{word-spacing:5.326042px;}
.ws14a{word-spacing:5.379804px;}
.wsa6{word-spacing:5.392764px;}
.ws166{word-spacing:5.433638px;}
.ws167{word-spacing:5.436753px;}
.ws107{word-spacing:5.439580px;}
.ws97{word-spacing:5.452884px;}
.wsb{word-spacing:5.481407px;}
.ws116{word-spacing:5.499355px;}
.ws9e{word-spacing:5.519016px;}
.ws9d{word-spacing:5.531040px;}
.ws10a{word-spacing:5.618906px;}
.ws4b{word-spacing:5.738458px;}
.ws7c{word-spacing:5.798233px;}
.wsa8{word-spacing:5.849676px;}
.ws151{word-spacing:5.977560px;}
.wsa7{word-spacing:5.987952px;}
.ws53{word-spacing:6.515540px;}
.ws10e{word-spacing:6.575316px;}
.ws59{word-spacing:6.694867px;}
.ws34{word-spacing:6.754643px;}
.ws114{word-spacing:6.814418px;}
.ws169{word-spacing:7.190131px;}
.ws16b{word-spacing:7.208986px;}
.wse7{word-spacing:7.274520px;}
.wse8{word-spacing:7.316604px;}
.ws145{word-spacing:7.352399px;}
.wse9{word-spacing:7.418808px;}
.ws108{word-spacing:7.711052px;}
.ws138{word-spacing:8.128224px;}
.ws5b{word-spacing:8.308808px;}
.wsf1{word-spacing:8.320608px;}
.ws154{word-spacing:8.368584px;}
.ws51{word-spacing:8.428360px;}
.ws16a{word-spacing:8.661542px;}
.wsdf{word-spacing:9.138240px;}
.ws58{word-spacing:9.265218px;}
.ws9{word-spacing:9.833058px;}
.ws105{word-spacing:10.612044px;}
.ws106{word-spacing:10.640057px;}
.wscd{word-spacing:10.929816px;}
.wscc{word-spacing:10.941840px;}
.ws117{word-spacing:11.615688px;}
.ws82{word-spacing:11.620476px;}
.wsa{word-spacing:11.841512px;}
.ws139{word-spacing:15.192324px;}
.ws13a{word-spacing:15.252444px;}
.ws8{word-spacing:22.339429px;}
.wsc{word-spacing:22.720640px;}
.ws11{word-spacing:40.042186px;}
.ws11a{word-spacing:75.456612px;}
.ws119{word-spacing:75.468636px;}
.ws112{word-spacing:128.470579px;}
.ws111{word-spacing:152.572262px;}
.ws10f{word-spacing:155.369779px;}
.ws110{word-spacing:179.471462px;}
.ws11c{word-spacing:240.089220px;}
.ws11b{word-spacing:240.323688px;}
.ws101{word-spacing:321.455628px;}
.wsba{word-spacing:325.749312px;}
.wsb4{word-spacing:347.645261px;}
.wsc2{word-spacing:375.136243px;}
.wsbb{word-spacing:424.026000px;}
.wsb1{word-spacing:424.027200px;}
.wsbd{word-spacing:424.032000px;}
.wsb3{word-spacing:437.479200px;}
.wsb7{word-spacing:445.827341px;}
.wsae{word-spacing:446.477424px;}
.wsc6{word-spacing:446.479459px;}
.wsaf{word-spacing:459.276941px;}
.wsb0{word-spacing:459.927024px;}
.ws160{word-spacing:465.033370px;}
.wsbe{word-spacing:472.726541px;}
.wsc1{word-spacing:492.900941px;}
.wsc0{word-spacing:493.551024px;}
.wsb8{word-spacing:557.283802px;}
.wsb6{word-spacing:604.787789px;}
.wsbc{word-spacing:633.734928px;}
.wsbf{word-spacing:639.545155px;}
.wsb2{word-spacing:650.032243px;}
.wsc4{word-spacing:658.801382px;}
.wsc5{word-spacing:672.197184px;}
.wsb5{word-spacing:685.108800px;}
.wsc3{word-spacing:685.273795px;}
.wsb9{word-spacing:693.931738px;}
.wsfe{word-spacing:770.251428px;}
.ws100{word-spacing:825.297300px;}
._1e{margin-left:-769.356900px;}
._1f{margin-left:-482.210496px;}
._21{margin-left:-426.815928px;}
._43{margin-left:-240.119280px;}
._3c{margin-left:-191.981196px;}
._3b{margin-left:-170.380080px;}
._3a{margin-left:-149.500404px;}
._41{margin-left:-136.352160px;}
._47{margin-left:-135.114912px;}
._40{margin-left:-114.751044px;}
._46{margin-left:-113.513796px;}
._3d{margin-left:-95.500620px;}
._3f{margin-left:-93.871368px;}
._45{margin-left:-92.634120px;}
._42{margin-left:-68.314356px;}
._48{margin-left:-67.077108px;}
._1a{margin-left:-14.943900px;}
._5{margin-left:-11.943245px;}
._51{margin-left:-8.069702px;}
._15{margin-left:-7.053524px;}
._8{margin-left:-6.025421px;}
._1{margin-left:-4.351651px;}
._16{margin-left:-2.689934px;}
._0{margin-left:-1.255284px;}
._1b{width:1.053360px;}
._6{width:3.009970px;}
._4d{width:4.065084px;}
._44{width:6.663866px;}
._3e{width:8.835379px;}
._2{width:11.674141px;}
._3{width:12.971268px;}
._14{width:13.987487px;}
._a{width:15.709133px;}
._c{width:16.731302px;}
._e{width:17.932714px;}
._13{width:18.948865px;}
._11{width:20.562803px;}
._4e{width:21.818094px;}
._b{width:23.294707px;}
._4{width:25.314894px;}
._9{width:26.791567px;}
._19{width:27.795650px;}
._d{width:28.991166px;}
._1d{width:30.366001px;}
._12{width:32.338596px;}
._50{width:33.354785px;}
._18{width:34.729624px;}
._17{width:39.272569px;}
._4f{width:41.125609px;}
._49{width:60.889536px;}
._36{width:68.060628px;}
._7{width:69.339110px;}
._39{width:95.398416px;}
._38{width:97.093800px;}
._37{width:117.973476px;}
._2f{width:135.936864px;}
._32{width:138.925738px;}
._4a{width:143.704836px;}
._2e{width:150.037718px;}
._33{width:152.572262px;}
._53{width:157.952102px;}
._30{width:166.021862px;}
._31{width:179.471462px;}
._60{width:187.696613px;}
._62{width:193.459046px;}
._20{width:196.604424px;}
._63{width:221.266800px;}
._4b{width:240.480000px;}
._4c{width:269.638200px;}
._54{width:346.838285px;}
._23{width:369.702605px;}
._65{width:397.408781px;}
._6f{width:405.855130px;}
._55{width:413.010317px;}
._5f{width:419.035738px;}
._64{width:443.352614px;}
._2a{width:459.924624px;}
._5d{width:466.539725px;}
._27{width:473.388950px;}
._59{width:478.321574px;}
._2d{width:486.827059px;}
._5e{width:488.166682px;}
._56{width:493.654118px;}
._26{width:495.262066px;}
._5c{width:499.033958px;}
._6e{width:504.844186px;}
._22{width:508.287283px;}
._52{width:511.784179px;}
._68{width:514.689293px;}
._25{width:520.338125px;}
._57{width:525.664166px;}
._58{width:533.949120px;}
._66{width:540.781517px;}
._5b{width:546.860736px;}
._6b{width:549.550656px;}
._24{width:551.702592px;}
._67{width:552.832358px;}
._5a{width:555.683674px;}
._6d{width:558.696384px;}
._61{width:560.471731px;}
._69{width:564.291418px;}
._70{width:565.899350px;}
._6a{width:572.092186px;}
._6c{width:573.329549px;}
._f{width:605.490610px;}
._29{width:661.666522px;}
._2c{width:667.153958px;}
._2b{width:699.164006px;}
._28{width:707.126170px;}
._35{width:2015.345808px;}
._1c{width:2039.103864px;}
._34{width:2475.267300px;}
._10{width:2499.177300px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(88,96,46);}
.fc4{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:6.120000px;}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsd{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsc{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:134.267931px;}
.y97{bottom:-488.603550px;}
.yaf{bottom:-420.381975px;}
.yae{bottom:-400.132056px;}
.yad{bottom:-379.882137px;}
.yce{bottom:-377.644050px;}
.yac{bottom:-359.632218px;}
.y15b{bottom:-340.564050px;}
.yab{bottom:-339.382299px;}
.yaa{bottom:-319.132380px;}
.yec{bottom:-309.604050px;}
.ya9{bottom:-298.972641px;}
.yeb{bottom:-288.544050px;}
.ya8{bottom:-278.722722px;}
.ya7{bottom:-258.472803px;}
.yea{bottom:-258.214050px;}
.y179{bottom:-248.762943px;}
.ya6{bottom:-238.222884px;}
.y178{bottom:-228.513024px;}
.ye9{bottom:-221.583303px;}
.ya5{bottom:-217.972965px;}
.y177{bottom:-208.263105px;}
.ye8{bottom:-201.423564px;}
.ya4{bottom:-197.723046px;}
.y176{bottom:-188.103366px;}
.ye7{bottom:-181.173645px;}
.ya3{bottom:-177.473127px;}
.y175{bottom:-167.853447px;}
.ye6{bottom:-160.923726px;}
.ya2{bottom:-157.313388px;}
.y174{bottom:-147.603528px;}
.ye5{bottom:-140.673807px;}
.ya1{bottom:-137.063469px;}
.y173{bottom:-127.353609px;}
.ye4{bottom:-120.423888px;}
.ya0{bottom:-116.813550px;}
.y172{bottom:-107.103690px;}
.ye3{bottom:-100.173969px;}
.y171{bottom:-86.853771px;}
.ye2{bottom:-79.924050px;}
.y9f{bottom:-79.013400px;}
.y170{bottom:-62.194050px;}
.y9e{bottom:-51.382353px;}
.ye1{bottom:-42.124500px;}
.y16f{bottom:-24.304050px;}
.ye0{bottom:-23.944050px;}
.y16e{bottom:-1.172736px;}
.ydf{bottom:-0.811890px;}
.y0{bottom:0.000000px;}
.y17{bottom:17.292609px;}
.y44{bottom:31.890000px;}
.y200{bottom:104.355000px;}
.y15{bottom:104.646000px;}
.y237{bottom:116.458500px;}
.y93{bottom:118.699500px;}
.y43{bottom:118.780500px;}
.y7a{bottom:119.148000px;}
.y81{bottom:119.596500px;}
.y1ff{bottom:121.615500px;}
.y14{bottom:122.535000px;}
.y19b{bottom:125.661000px;}
.y10c{bottom:128.908500px;}
.y236{bottom:133.719000px;}
.y92{bottom:137.529000px;}
.y42{bottom:137.610000px;}
.y79{bottom:137.977500px;}
.y80{bottom:138.426000px;}
.y1fd{bottom:138.874500px;}
.y1fe{bottom:138.876000px;}
.y13{bottom:140.422500px;}
.y157{bottom:144.430500px;}
.y19a{bottom:144.490500px;}
.y10b{bottom:147.738000px;}
.y235{bottom:150.978000px;}
.yca{bottom:155.445000px;}
.y1fc{bottom:156.135000px;}
.y91{bottom:156.358500px;}
.y41{bottom:156.439500px;}
.y78{bottom:156.807000px;}
.y7f{bottom:157.255500px;}
.y12{bottom:158.310000px;}
.y156{bottom:163.260000px;}
.y199{bottom:163.320000px;}
.y10a{bottom:166.567500px;}
.y234{bottom:168.238500px;}
.y1fb{bottom:173.395500px;}
.yc9{bottom:174.274500px;}
.y90{bottom:175.188000px;}
.y40{bottom:175.269000px;}
.y77{bottom:175.636500px;}
.y7e{bottom:176.085000px;}
.y11{bottom:176.199000px;}
.y155{bottom:182.089500px;}
.y198{bottom:182.149500px;}
.y109{bottom:185.397000px;}
.y232{bottom:185.499000px;}
.y233{bottom:185.707500px;}
.y1fa{bottom:190.656000px;}
.yc8{bottom:193.104000px;}
.y8f{bottom:194.017500px;}
.y10{bottom:194.086500px;}
.y3f{bottom:194.098500px;}
.y76{bottom:194.466000px;}
.y7d{bottom:194.914500px;}
.y154{bottom:200.919000px;}
.y197{bottom:200.979000px;}
.y231{bottom:202.759500px;}
.y108{bottom:204.226500px;}
.y1f9{bottom:207.916500px;}
.y1c5{bottom:210.349500px;}
.yc7{bottom:211.933500px;}
.yf{bottom:211.974000px;}
.y8e{bottom:212.847000px;}
.y3e{bottom:212.928000px;}
.y129{bottom:213.295500px;}
.y7c{bottom:213.744000px;}
.y75{bottom:217.779000px;}
.y153{bottom:219.748500px;}
.y196{bottom:219.808500px;}
.y230{bottom:220.020000px;}
.y107{bottom:223.056000px;}
.y1f8{bottom:225.177000px;}
.y1c4{bottom:227.923500px;}
.ye{bottom:229.863000px;}
.yc6{bottom:230.763000px;}
.y8d{bottom:231.676500px;}
.y3d{bottom:231.757500px;}
.y128{bottom:232.125000px;}
.y7b{bottom:232.573500px;}
.y22f{bottom:237.280500px;}
.y195{bottom:238.638000px;}
.y106{bottom:241.885500px;}
.y1f7{bottom:242.437500px;}
.y152{bottom:243.060000px;}
.y1c3{bottom:245.497500px;}
.yc5{bottom:249.592500px;}
.y8c{bottom:250.506000px;}
.y3c{bottom:250.587000px;}
.y127{bottom:250.954500px;}
.y74{bottom:251.403000px;}
.y22e{bottom:254.541000px;}
.y194{bottom:257.466000px;}
.y1f6{bottom:259.698000px;}
.y105{bottom:260.715000px;}
.y1c2{bottom:263.071500px;}
.yc4{bottom:268.422000px;}
.y8b{bottom:269.335500px;}
.y3b{bottom:269.416500px;}
.y126{bottom:269.784000px;}
.y73{bottom:270.232500px;}
.y22d{bottom:271.801500px;}
.y193{bottom:276.295500px;}
.y151{bottom:276.684000px;}
.y1f5{bottom:276.958500px;}
.y104{bottom:279.544500px;}
.y1c1{bottom:280.645500px;}
.yc3{bottom:287.251500px;}
.y8a{bottom:288.165000px;}
.y3a{bottom:288.244500px;}
.y125{bottom:288.613500px;}
.y72{bottom:289.062000px;}
.y1f4{bottom:294.217500px;}
.y192{bottom:295.125000px;}
.y150{bottom:295.513500px;}
.yd{bottom:297.166500px;}
.y1c0{bottom:298.221000px;}
.yc2{bottom:306.081000px;}
.y22c{bottom:306.321000px;}
.y89{bottom:306.994500px;}
.y39{bottom:307.074000px;}
.y124{bottom:307.443000px;}
.y71{bottom:307.891500px;}
.y1f3{bottom:311.478000px;}
.y191{bottom:313.954500px;}
.y14f{bottom:314.343000px;}
.yc{bottom:315.054000px;}
.y1bf{bottom:315.795000px;}
.y22b{bottom:323.581500px;}
.yc1{bottom:324.910500px;}
.y103{bottom:325.006500px;}
.y88{bottom:325.824000px;}
.y38{bottom:325.903500px;}
.y123{bottom:326.272500px;}
.y70{bottom:326.719500px;}
.y1f2{bottom:328.738500px;}
.y190{bottom:332.784000px;}
.yb{bottom:332.943000px;}
.y14e{bottom:333.172500px;}
.y1be{bottom:333.369000px;}
.y22a{bottom:340.842000px;}
.y102{bottom:341.445000px;}
.yc0{bottom:343.740000px;}
.y37{bottom:344.733000px;}
.y122{bottom:345.102000px;}
.y6f{bottom:345.549000px;}
.y1f1{bottom:345.999000px;}
.y87{bottom:349.137000px;}
.y19d{bottom:349.584000px;}
.ya{bottom:350.830500px;}
.y1bd{bottom:350.943000px;}
.y18f{bottom:351.613500px;}
.y14d{bottom:352.002000px;}
.y101{bottom:357.882000px;}
.y229{bottom:358.102500px;}
.ybf{bottom:362.569500px;}
.y1f0{bottom:363.259500px;}
.y36{bottom:363.562500px;}
.y121{bottom:363.931500px;}
.y6e{bottom:364.378500px;}
.y1bc{bottom:368.517000px;}
.y16d{bottom:370.077282px;}
.y18e{bottom:370.443000px;}
.y14c{bottom:370.831500px;}
.y100{bottom:374.320500px;}
.y228{bottom:375.363000px;}
.y9{bottom:379.179000px;}
.y1ef{bottom:380.520000px;}
.ybe{bottom:381.399000px;}
.y86{bottom:382.761000px;}
.y6d{bottom:383.208000px;}
.y1bb{bottom:386.091000px;}
.y35{bottom:386.875500px;}
.y19c{bottom:387.243000px;}
.y18d{bottom:389.272500px;}
.y14b{bottom:389.661000px;}
.y16c{bottom:390.327201px;}
.yff{bottom:390.759000px;}
.y227{bottom:392.623500px;}
.yde{bottom:397.438020px;}
.y1ee{bottom:397.780500px;}
.ybd{bottom:400.228500px;}
.y85{bottom:401.589000px;}
.y6c{bottom:402.037500px;}
.y1ba{bottom:403.665000px;}
.y8{bottom:406.033500px;}
.yfe{bottom:407.197500px;}
.y18c{bottom:408.102000px;}
.y14a{bottom:408.490500px;}
.y226{bottom:409.884000px;}
.y16b{bottom:410.486940px;}
.y1ed{bottom:415.041000px;}
.ydd{bottom:417.687939px;}
.ybc{bottom:419.058000px;}
.y84{bottom:420.418500px;}
.y6b{bottom:420.867000px;}
.y1b9{bottom:421.239000px;}
.yfd{bottom:423.636000px;}
.y7{bottom:423.921000px;}
.y18b{bottom:426.931500px;}
.y225{bottom:427.144500px;}
.y149{bottom:427.320000px;}
.y16a{bottom:430.736859px;}
.y1ec{bottom:432.301500px;}
.ybb{bottom:437.887500px;}
.ydc{bottom:437.937858px;}
.y1b8{bottom:438.813000px;}
.y83{bottom:439.248000px;}
.y6a{bottom:439.696500px;}
.yfc{bottom:440.074500px;}
.y6{bottom:441.810000px;}
.y224{bottom:444.403500px;}
.y18a{bottom:445.761000px;}
.y148{bottom:446.149500px;}
.y1eb{bottom:449.560500px;}
.y169{bottom:450.986778px;}
.y1b7{bottom:456.387000px;}
.yfb{bottom:456.513000px;}
.yba{bottom:456.717000px;}
.y120{bottom:458.077500px;}
.ydb{bottom:458.187777px;}
.y69{bottom:458.526000px;}
.y5{bottom:459.697500px;}
.y34{bottom:461.218500px;}
.y223{bottom:461.664000px;}
.y82{bottom:462.561000px;}
.y189{bottom:464.590500px;}
.y147{bottom:464.979000px;}
.y1ea{bottom:466.821000px;}
.y168{bottom:471.236697px;}
.yfa{bottom:472.951500px;}
.y1b6{bottom:473.961000px;}
.yb9{bottom:475.546500px;}
.y11f{bottom:476.907000px;}
.y68{bottom:477.355500px;}
.y4{bottom:477.585000px;}
.yda{bottom:478.437696px;}
.y222{bottom:478.924500px;}
.y188{bottom:483.420000px;}
.y146{bottom:483.808500px;}
.y1e9{bottom:484.081500px;}
.y9d{bottom:488.887530px;}
.yf9{bottom:489.390000px;}
.y167{bottom:491.486616px;}
.y1b5{bottom:491.535000px;}
.yb8{bottom:494.376000px;}
.y3{bottom:495.474000px;}
.y11e{bottom:495.736500px;}
.y67{bottom:496.185000px;}
.yd9{bottom:498.597435px;}
.y33{bottom:498.609000px;}
.y1e8{bottom:501.342000px;}
.y187{bottom:502.249500px;}
.y145{bottom:502.638000px;}
.yf8{bottom:505.828500px;}
.y1b4{bottom:509.109000px;}
.y9c{bottom:509.137449px;}
.y166{bottom:511.736535px;}
.yb7{bottom:513.204000px;}
.y2{bottom:513.361500px;}
.y221{bottom:513.445500px;}
.y11d{bottom:514.566000px;}
.y66{bottom:515.014500px;}
.y1e7{bottom:518.602500px;}
.yd8{bottom:518.847354px;}
.y186{bottom:521.079000px;}
.y144{bottom:521.467500px;}
.yf7{bottom:522.267000px;}
.y1b3{bottom:526.683000px;}
.y9b{bottom:529.297188px;}
.y220{bottom:530.706000px;}
.y1{bottom:531.249000px;}
.y165{bottom:531.986454px;}
.yb6{bottom:532.033500px;}
.y11c{bottom:533.395500px;}
.y65{bottom:533.844000px;}
.y1e6{bottom:535.863000px;}
.y32{bottom:535.998000px;}
.yf6{bottom:538.704000px;}
.yd7{bottom:539.097273px;}
.y185{bottom:539.908500px;}
.y143{bottom:540.297000px;}
.y1b2{bottom:544.257000px;}
.y21f{bottom:547.966500px;}
.y9a{bottom:549.547107px;}
.yb5{bottom:550.863000px;}
.y164{bottom:552.146193px;}
.y11b{bottom:552.225000px;}
.y64{bottom:552.673500px;}
.y1e5{bottom:553.123500px;}
.yf5{bottom:555.142500px;}
.y31{bottom:555.456000px;}
.y184{bottom:558.738000px;}
.y142{bottom:559.126500px;}
.yd6{bottom:559.347192px;}
.y1b1{bottom:561.832500px;}
.y21e{bottom:565.227000px;}
.yb4{bottom:569.692500px;}
.y99{bottom:569.797026px;}
.y11a{bottom:571.054500px;}
.y63{bottom:571.503000px;}
.yf4{bottom:571.581000px;}
.y163{bottom:572.396112px;}
.y1e4{bottom:574.867500px;}
.y30{bottom:574.912500px;}
.y183{bottom:577.567500px;}
.y141{bottom:577.956000px;}
.yd5{bottom:579.597111px;}
.y21d{bottom:582.487500px;}
.yf3{bottom:588.019500px;}
.yb3{bottom:588.522000px;}
.y119{bottom:589.884000px;}
.y98{bottom:590.046945px;}
.y62{bottom:590.332500px;}
.y162{bottom:592.646031px;}
.y2f{bottom:594.369000px;}
.y182{bottom:596.397000px;}
.y140{bottom:596.785500px;}
.y1b0{bottom:597.685500px;}
.y21c{bottom:599.746500px;}
.yd4{bottom:599.847030px;}
.yf2{bottom:604.458000px;}
.yb2{bottom:607.351500px;}
.y118{bottom:608.713500px;}
.y61{bottom:609.162000px;}
.y1e3{bottom:610.549500px;}
.y161{bottom:612.895950px;}
.y2e{bottom:613.827000px;}
.y181{bottom:615.226500px;}
.y13f{bottom:615.615000px;}
.y21b{bottom:617.007000px;}
.yd3{bottom:620.096949px;}
.yf1{bottom:620.896500px;}
.yb1{bottom:626.181000px;}
.y117{bottom:627.543000px;}
.y60{bottom:627.991500px;}
.y1e2{bottom:628.123500px;}
.y2d{bottom:633.283500px;}
.y180{bottom:634.056000px;}
.y21a{bottom:634.267500px;}
.y1af{bottom:634.447500px;}
.yd2{bottom:640.256688px;}
.yf0{bottom:644.536500px;}
.y96{bottom:645.486585px;}
.y1e1{bottom:645.697500px;}
.y116{bottom:646.372500px;}
.y5f{bottom:646.821000px;}
.y219{bottom:651.528000px;}
.y160{bottom:652.675950px;}
.y2c{bottom:652.740000px;}
.y17f{bottom:652.885500px;}
.y95{bottom:655.116450px;}
.yb0{bottom:659.746500px;}
.yd1{bottom:660.506607px;}
.y1ae{bottom:660.988500px;}
.y1e0{bottom:663.273000px;}
.y13e{bottom:664.065000px;}
.y115{bottom:665.202000px;}
.y5e{bottom:665.650500px;}
.y218{bottom:668.788500px;}
.y17e{bottom:671.715000px;}
.y2b{bottom:672.198000px;}
.y15f{bottom:673.645950px;}
.yef{bottom:676.156500px;}
.y1ad{bottom:678.562500px;}
.y13d{bottom:680.503500px;}
.yd0{bottom:680.756526px;}
.y1df{bottom:680.847000px;}
.y94{bottom:682.176000px;}
.y114{bottom:684.031500px;}
.y5d{bottom:684.480000px;}
.y217{bottom:686.049000px;}
.y17d{bottom:690.544500px;}
.y2a{bottom:691.654500px;}
.y15e{bottom:694.615950px;}
.y1de{bottom:698.421000px;}
.ycf{bottom:701.006445px;}
.y113{bottom:702.861000px;}
.y5c{bottom:703.309500px;}
.y13c{bottom:704.145000px;}
.y1ac{bottom:705.102000px;}
.y17c{bottom:709.374000px;}
.y29{bottom:711.112500px;}
.yee{bottom:714.816000px;}
.y15d{bottom:715.585950px;}
.y1dd{bottom:715.995000px;}
.y216{bottom:720.570000px;}
.y112{bottom:721.690500px;}
.y5b{bottom:722.139000px;}
.y1ab{bottom:722.677500px;}
.y13b{bottom:727.785000px;}
.y17b{bottom:728.203500px;}
.y28{bottom:730.569000px;}
.y1dc{bottom:733.569000px;}
.yed{bottom:734.049000px;}
.y15c{bottom:736.556391px;}
.y215{bottom:737.829000px;}
.y1aa{bottom:740.251500px;}
.y111{bottom:740.520000px;}
.y5a{bottom:740.968500px;}
.y27{bottom:750.025500px;}
.y1db{bottom:751.143000px;}
.y13a{bottom:751.426500px;}
.y214{bottom:755.089500px;}
.ycd{bottom:756.446085px;}
.ycb{bottom:756.478500px;}
.y1a9{bottom:757.825500px;}
.y110{bottom:759.349500px;}
.y59{bottom:759.798000px;}
.y17a{bottom:761.769000px;}
.ycc{bottom:766.075950px;}
.y1da{bottom:768.717000px;}
.y26{bottom:769.483500px;}
.y213{bottom:772.350000px;}
.y139{bottom:775.066500px;}
.y1a8{bottom:775.399500px;}
.y10f{bottom:778.179000px;}
.y58{bottom:778.627500px;}
.y1d9{bottom:786.291000px;}
.y158{bottom:787.186500px;}
.y25{bottom:788.940000px;}
.y212{bottom:789.610500px;}
.y138{bottom:791.505000px;}
.y1a7{bottom:792.973500px;}
.y15a{bottom:793.526085px;}
.y10e{bottom:797.008500px;}
.y57{bottom:797.457000px;}
.y159{bottom:803.155950px;}
.y1d8{bottom:803.865000px;}
.y211{bottom:806.871000px;}
.y24{bottom:808.396500px;}
.y1a6{bottom:810.547500px;}
.y137{bottom:815.145000px;}
.y56{bottom:816.286500px;}
.y10d{bottom:820.320000px;}
.y1d7{bottom:821.439000px;}
.y210{bottom:824.131500px;}
.y23{bottom:827.854500px;}
.y1a5{bottom:828.121500px;}
.y55{bottom:835.114500px;}
.y136{bottom:838.786500px;}
.y1d6{bottom:839.013000px;}
.y20f{bottom:841.392000px;}
.y1a4{bottom:845.695500px;}
.y54{bottom:853.944000px;}
.y1d5{bottom:856.587000px;}
.y20e{bottom:858.652500px;}
.y135{bottom:862.426500px;}
.y22{bottom:866.439000px;}
.y1a3{bottom:872.236500px;}
.y53{bottom:872.773500px;}
.y1d4{bottom:874.161000px;}
.y20d{bottom:875.913000px;}
.y134{bottom:886.068000px;}
.y21{bottom:886.918500px;}
.y52{bottom:891.603000px;}
.y1d3{bottom:891.735000px;}
.y20c{bottom:893.172000px;}
.y1a2{bottom:898.777500px;}
.y133{bottom:902.506500px;}
.y20{bottom:903.058500px;}
.y1d2{bottom:909.310500px;}
.y51{bottom:910.432500px;}
.y1a1{bottom:916.351500px;}
.y1f{bottom:919.198500px;}
.y132{bottom:926.146500px;}
.y1d1{bottom:926.884500px;}
.y20b{bottom:927.693000px;}
.y50{bottom:929.262000px;}
.y1e{bottom:930.997500px;}
.y1a0{bottom:933.925500px;}
.y1d0{bottom:944.458500px;}
.y20a{bottom:944.953500px;}
.y1d{bottom:947.137500px;}
.y4f{bottom:948.091500px;}
.y131{bottom:949.788000px;}
.y1c{bottom:951.477000px;}
.y19f{bottom:951.499500px;}
.y1cf{bottom:962.032500px;}
.y209{bottom:962.214000px;}
.y4e{bottom:966.921000px;}
.y19e{bottom:969.073500px;}
.y130{bottom:973.428000px;}
.y23a{bottom:974.916000px;}
.y208{bottom:979.474500px;}
.y1ce{bottom:979.606500px;}
.y4d{bottom:985.750500px;}
.y239{bottom:992.176500px;}
.y1b{bottom:996.153000px;}
.y207{bottom:996.735000px;}
.y12f{bottom:997.069500px;}
.y1cd{bottom:997.180500px;}
.y4c{bottom:1004.580000px;}
.y238{bottom:1009.437000px;}
.y12e{bottom:1013.508000px;}
.y206{bottom:1013.995500px;}
.y1cc{bottom:1014.754500px;}
.y4b{bottom:1023.409500px;}
.y205{bottom:1031.254500px;}
.y1cb{bottom:1032.328500px;}
.y1a{bottom:1036.485000px;}
.y12d{bottom:1037.148000px;}
.y4a{bottom:1042.239000px;}
.y204{bottom:1048.515000px;}
.y1ca{bottom:1049.902500px;}
.y12c{bottom:1060.789500px;}
.y49{bottom:1061.068500px;}
.y19{bottom:1064.728500px;}
.y203{bottom:1065.775500px;}
.y1c9{bottom:1067.476500px;}
.y48{bottom:1079.898000px;}
.y202{bottom:1083.036000px;}
.y12b{bottom:1084.429500px;}
.y1c8{bottom:1085.050500px;}
.y18{bottom:1092.972000px;}
.y47{bottom:1098.727500px;}
.y201{bottom:1100.296500px;}
.y1c7{bottom:1102.624500px;}
.y46{bottom:1117.557000px;}
.y12a{bottom:1119.037500px;}
.y1c6{bottom:1120.198500px;}
.y16{bottom:1136.460000px;}
.y45{bottom:1177.662000px;}
.h9{height:32.565965px;}
.h2{height:37.993262px;}
.h3{height:38.202476px;}
.h16{height:38.734848px;}
.hc{height:43.038432px;}
.ha{height:43.421105px;}
.h6{height:43.815515px;}
.h10{height:44.279648px;}
.hf{height:44.536816px;}
.hb{height:48.848947px;}
.h1b{height:49.117939px;}
.h14{height:49.939453px;}
.h12{height:50.229492px;}
.h4{height:50.931027px;}
.hd{height:54.276245px;}
.h1a{height:54.865371px;}
.h8{height:55.352206px;}
.h11{height:55.599258px;}
.h15{height:55.922168px;}
.h7{height:77.469696px;}
.h17{height:81.722947px;}
.h18{height:81.728947px;}
.h5{height:91.033657px;}
.h19{height:345.315000px;}
.h13{height:376.023000px;}
.he{height:450.325500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:230.008102px;}
.w4{width:453.660000px;}
.w3{width:493.527000px;}
.w5{width:668.032950px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x3a{left:-206.508000px;}
.x3d{left:-193.977000px;}
.x51{left:-50.869050px;}
.x52{left:-33.769419px;}
.x3b{left:-10.937640px;}
.x0{left:0.000000px;}
.x3e{left:1.591910px;}
.x54{left:7.810950px;}
.x3c{left:20.922000px;}
.x3f{left:33.451805px;}
.x53{left:36.610950px;}
.x1{left:53.574000px;}
.x2{left:57.057445px;}
.x4a{left:62.541000px;}
.x49{left:67.125000px;}
.x5f{left:84.220500px;}
.x5e{left:85.848000px;}
.x50{left:112.228050px;}
.x56{left:144.700356px;}
.x4b{left:149.806500px;}
.x48{left:153.168000px;}
.x55{left:176.560950px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x41{left:258.556500px;}
.x4{left:269.764500px;}
.x6{left:281.479500px;}
.xd{left:291.706500px;}
.xe{left:299.178000px;}
.x27{left:302.152500px;}
.x33{left:306.064500px;}
.x28{left:317.097000px;}
.x29{left:320.829000px;}
.x34{left:324.819000px;}
.x2a{left:335.773500px;}
.x35{left:339.763500px;}
.x2b{left:345.211500px;}
.x2c{left:360.156000px;}
.x2d{left:363.966000px;}
.x2e{left:378.910500px;}
.x4c{left:380.034000px;}
.x2f{left:382.722000px;}
.x5a{left:384.126000px;}
.x4d{left:394.977000px;}
.x30{left:397.665000px;}
.x5b{left:399.069000px;}
.x4e{left:402.598500px;}
.x5c{left:406.452000px;}
.x4f{left:417.543000px;}
.x5d{left:421.395000px;}
.x40{left:451.766539px;}
.x25{left:464.596500px;}
.x26{left:479.541000px;}
.x15{left:499.803000px;}
.x16{left:514.747500px;}
.x1d{left:521.292000px;}
.x1e{left:536.236500px;}
.x1f{left:543.858000px;}
.x20{left:558.801000px;}
.x23{left:564.283500px;}
.x7{left:565.906500px;}
.x42{left:569.853000px;}
.x8{left:573.378000px;}
.x24{left:579.228000px;}
.x43{left:584.797500px;}
.x21{left:590.317500px;}
.x22{left:605.262000px;}
.x60{left:619.293000px;}
.x19{left:621.699000px;}
.x1a{left:636.643500px;}
.x1b{left:644.026500px;}
.x58{left:656.227500px;}
.x1c{left:658.969500px;}
.x59{left:671.172000px;}
.x57{left:676.872075px;}
.xf{left:693.214500px;}
.x10{left:700.686000px;}
.x31{left:702.676500px;}
.x11{left:704.347500px;}
.x12{left:711.819000px;}
.x39{left:716.220000px;}
.x32{left:717.619500px;}
.x37{left:725.544000px;}
.x17{left:736.222500px;}
.x18{left:751.167000px;}
.x38{left:764.493000px;}
.x36{left:765.927000px;}
.x61{left:767.644500px;}
.x13{left:785.275500px;}
.x44{left:798.943500px;}
.x14{left:800.220000px;}
.x45{left:813.886500px;}
.x9{left:815.431500px;}
.x46{left:817.698000px;}
.xa{left:822.903000px;}
.xb{left:826.564500px;}
.x47{left:832.642500px;}
.xc{left:834.036000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:29.221333pt;}
.ls55{letter-spacing:-1.368064pt;}
.ls2b{letter-spacing:-0.427520pt;}
.ls42{letter-spacing:-0.331328pt;}
.ls49{letter-spacing:-0.261856pt;}
.ls24{letter-spacing:-0.245824pt;}
.ls48{letter-spacing:-0.240480pt;}
.ls54{letter-spacing:-0.235136pt;}
.ls45{letter-spacing:-0.203072pt;}
.ls44{letter-spacing:-0.171008pt;}
.ls51{letter-spacing:-0.154976pt;}
.ls4a{letter-spacing:-0.149632pt;}
.ls50{letter-spacing:-0.144288pt;}
.ls52{letter-spacing:-0.133600pt;}
.ls2c{letter-spacing:-0.122912pt;}
.ls40{letter-spacing:-0.117568pt;}
.ls1b{letter-spacing:-0.112224pt;}
.ls26{letter-spacing:-0.106880pt;}
.ls20{letter-spacing:-0.101536pt;}
.ls47{letter-spacing:-0.096192pt;}
.ls1c{letter-spacing:-0.090848pt;}
.ls25{letter-spacing:-0.085504pt;}
.ls2a{letter-spacing:-0.080160pt;}
.ls43{letter-spacing:-0.074816pt;}
.ls53{letter-spacing:-0.069472pt;}
.ls3f{letter-spacing:-0.058784pt;}
.ls4f{letter-spacing:-0.053440pt;}
.ls23{letter-spacing:-0.048096pt;}
.ls41{letter-spacing:-0.042752pt;}
.ls28{letter-spacing:-0.037408pt;}
.ls1d{letter-spacing:-0.032064pt;}
.ls29{letter-spacing:-0.026720pt;}
.ls1f{letter-spacing:-0.021376pt;}
.ls1a{letter-spacing:-0.016032pt;}
.ls1e{letter-spacing:-0.010688pt;}
.ls21{letter-spacing:-0.009600pt;}
.ls22{letter-spacing:-0.005344pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.000403pt;}
.ls62{letter-spacing:0.000441pt;}
.ls2{letter-spacing:0.000518pt;}
.ls61{letter-spacing:0.000600pt;}
.ls64{letter-spacing:0.000659pt;}
.ls58{letter-spacing:0.000711pt;}
.ls67{letter-spacing:0.000801pt;}
.ls5d{letter-spacing:0.000921pt;}
.ls65{letter-spacing:0.000998pt;}
.ls5e{letter-spacing:0.001158pt;}
.ls70{letter-spacing:0.001372pt;}
.ls60{letter-spacing:0.001408pt;}
.ls69{letter-spacing:0.001641pt;}
.ls71{letter-spacing:0.001858pt;}
.ls6b{letter-spacing:0.002117pt;}
.ls68{letter-spacing:0.002262pt;}
.ls63{letter-spacing:0.002525pt;}
.ls6d{letter-spacing:0.003102pt;}
.ls56{letter-spacing:0.003261pt;}
.ls5f{letter-spacing:0.003581pt;}
.ls6c{letter-spacing:0.003963pt;}
.ls59{letter-spacing:0.004021pt;}
.lsa{letter-spacing:0.004256pt;}
.ls3a{letter-spacing:0.004800pt;}
.ls16{letter-spacing:0.005344pt;}
.ls36{letter-spacing:0.010688pt;}
.ls2d{letter-spacing:0.012768pt;}
.ls38{letter-spacing:0.014400pt;}
.ls4d{letter-spacing:0.016032pt;}
.ls34{letter-spacing:0.021376pt;}
.ls10{letter-spacing:0.026720pt;}
.ls15{letter-spacing:0.032064pt;}
.ls11{letter-spacing:0.037408pt;}
.lsc{letter-spacing:0.038304pt;}
.ls39{letter-spacing:0.038400pt;}
.ls37{letter-spacing:0.042752pt;}
.ls2f{letter-spacing:0.046816pt;}
.ls46{letter-spacing:0.048000pt;}
.ls19{letter-spacing:0.048096pt;}
.ls33{letter-spacing:0.053440pt;}
.ls32{letter-spacing:0.058784pt;}
.ls4e{letter-spacing:0.064128pt;}
.ls12{letter-spacing:0.069472pt;}
.ls31{letter-spacing:0.074816pt;}
.lse{letter-spacing:0.080160pt;}
.ls17{letter-spacing:0.085504pt;}
.ls13{letter-spacing:0.090848pt;}
.ls3b{letter-spacing:0.091200pt;}
.ls35{letter-spacing:0.106880pt;}
.ls14{letter-spacing:0.117568pt;}
.ls27{letter-spacing:0.128256pt;}
.lsd{letter-spacing:0.148960pt;}
.lsf{letter-spacing:0.149632pt;}
.ls4b{letter-spacing:0.153216pt;}
.ls30{letter-spacing:0.157472pt;}
.ls4c{letter-spacing:0.160320pt;}
.lsb{letter-spacing:0.161728pt;}
.ls2e{letter-spacing:0.170240pt;}
.ls3c{letter-spacing:0.171008pt;}
.ls3e{letter-spacing:0.570745pt;}
.ls3d{letter-spacing:0.576078pt;}
.ls1{letter-spacing:2.665203pt;}
.ls57{letter-spacing:3.118133pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls6f{letter-spacing:11.778556pt;}
.ls5a{letter-spacing:11.954133pt;}
.ls5c{letter-spacing:11.959467pt;}
.ls66{letter-spacing:12.120527pt;}
.ls6e{letter-spacing:12.703624pt;}
.ls9{letter-spacing:13.283467pt;}
.ls3{letter-spacing:13.283733pt;}
.ls8{letter-spacing:14.293010pt;}
.ls18{letter-spacing:14.824349pt;}
.ls5b{letter-spacing:18.063101pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.wse{word-spacing:-92.853734pt;}
.wsaa{word-spacing:-53.440000pt;}
.wsac{word-spacing:-48.000000pt;}
.ws6f{word-spacing:-26.566933pt;}
.ws77{word-spacing:-13.488256pt;}
.ws115{word-spacing:-13.429472pt;}
.wsab{word-spacing:-12.048000pt;}
.ws161{word-spacing:-11.955200pt;}
.wsa9{word-spacing:-10.810240pt;}
.ws74{word-spacing:-10.801728pt;}
.ws75{word-spacing:-10.640000pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws13{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws62{word-spacing:-2.975497pt;}
.ws2f{word-spacing:-2.922363pt;}
.ws12b{word-spacing:-2.869728pt;}
.ws45{word-spacing:-2.816095pt;}
.ws149{word-spacing:-2.709827pt;}
.ws52{word-spacing:-2.656693pt;}
.ws12c{word-spacing:-2.655968pt;}
.ws35{word-spacing:-2.603559pt;}
.ws6e{word-spacing:-2.550426pt;}
.ws150{word-spacing:-2.444158pt;}
.ws6b{word-spacing:-2.231622pt;}
.ws147{word-spacing:-2.178489pt;}
.ws10d{word-spacing:-2.125355pt;}
.ws14e{word-spacing:-2.019087pt;}
.ws7b{word-spacing:-1.912819pt;}
.ws91{word-spacing:-1.865056pt;}
.ws8f{word-spacing:-1.832992pt;}
.ws135{word-spacing:-1.827648pt;}
.ws6c{word-spacing:-1.806551pt;}
.ws90{word-spacing:-1.736800pt;}
.ws2e{word-spacing:-1.700284pt;}
.ws71{word-spacing:-1.647150pt;}
.ws24{word-spacing:-1.540882pt;}
.ws60{word-spacing:-1.487748pt;}
.ws16e{word-spacing:-1.482445pt;}
.ws13b{word-spacing:-1.464256pt;}
.ws16f{word-spacing:-1.434624pt;}
.ws79{word-spacing:-1.328347pt;}
.ws93{word-spacing:-1.271872pt;}
.ws15e{word-spacing:-1.195520pt;}
.ws56{word-spacing:-1.168945pt;}
.ws94{word-spacing:-1.154304pt;}
.ws1e{word-spacing:-1.147699pt;}
.ws9b{word-spacing:-1.122240pt;}
.ws3f{word-spacing:-1.115811pt;}
.ws9c{word-spacing:-1.095520pt;}
.ws44{word-spacing:-1.062677pt;}
.ws48{word-spacing:-1.009543pt;}
.wseb{word-spacing:-0.945888pt;}
.wsce{word-spacing:-0.908480pt;}
.ws102{word-spacing:-0.908009pt;}
.ws7a{word-spacing:-0.903276pt;}
.ws6d{word-spacing:-0.850142pt;}
.wscf{word-spacing:-0.828320pt;}
.wsd0{word-spacing:-0.817632pt;}
.ws73{word-spacing:-0.797008pt;}
.ws15a{word-spacing:-0.765133pt;}
.ws68{word-spacing:-0.743874pt;}
.ws1{word-spacing:-0.706678pt;}
.ws39{word-spacing:-0.690740pt;}
.ws7{word-spacing:-0.632291pt;}
.ws182{word-spacing:-0.621670pt;}
.ws11e{word-spacing:-0.609216pt;}
.ws92{word-spacing:-0.598528pt;}
.ws2a{word-spacing:-0.584473pt;}
.ws88{word-spacing:-0.550432pt;}
.ws89{word-spacing:-0.539744pt;}
.ws181{word-spacing:-0.478208pt;}
.ws0{word-spacing:-0.418186pt;}
.ws173{word-spacing:-0.382566pt;}
.ws6a{word-spacing:-0.371937pt;}
.wsea{word-spacing:-0.352704pt;}
.ws18a{word-spacing:-0.334746pt;}
.ws5c{word-spacing:-0.318803pt;}
.ws189{word-spacing:-0.286925pt;}
.ws32{word-spacing:-0.265669pt;}
.ws14f{word-spacing:-0.254957pt;}
.wsca{word-spacing:-0.246848pt;}
.ws80{word-spacing:-0.242592pt;}
.ws132{word-spacing:-0.240480pt;}
.ws15d{word-spacing:-0.239104pt;}
.wsff{word-spacing:-0.235136pt;}
.ws8e{word-spacing:-0.229792pt;}
.ws2b{word-spacing:-0.212535pt;}
.ws87{word-spacing:-0.208416pt;}
.wsad{word-spacing:-0.191283pt;}
.ws41{word-spacing:-0.159402pt;}
.ws165{word-spacing:-0.143462pt;}
.ws118{word-spacing:-0.128256pt;}
.wscb{word-spacing:-0.123424pt;}
.ws81{word-spacing:-0.119168pt;}
.ws11d{word-spacing:-0.117568pt;}
.ws28{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.095642pt;}
.ws14d{word-spacing:-0.062678pt;}
.ws76{word-spacing:-0.053440pt;}
.ws14{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.037194pt;}
.ws190{word-spacing:-0.010761pt;}
.ws12{word-spacing:-0.004830pt;}
.ws16c{word-spacing:-0.004617pt;}
.ws176{word-spacing:-0.003038pt;}
.ws10{word-spacing:-0.001740pt;}
.ws18b{word-spacing:-0.001357pt;}
.ws2c{word-spacing:-0.000364pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:0.001465pt;}
.ws123{word-spacing:0.010688pt;}
.ws11f{word-spacing:0.016032pt;}
.ws124{word-spacing:0.037408pt;}
.ws20{word-spacing:0.047821pt;}
.ws30{word-spacing:0.053134pt;}
.wse6{word-spacing:0.058784pt;}
.ws128{word-spacing:0.064128pt;}
.wsf{word-spacing:0.095642pt;}
.ws134{word-spacing:0.096192pt;}
.ws13c{word-spacing:0.101536pt;}
.ws36{word-spacing:0.106268pt;}
.wsec{word-spacing:0.117568pt;}
.ws127{word-spacing:0.122912pt;}
.wsfd{word-spacing:0.124800pt;}
.ws15{word-spacing:0.127522pt;}
.ws120{word-spacing:0.133600pt;}
.ws157{word-spacing:0.143462pt;}
.wsf0{word-spacing:0.148800pt;}
.ws8c{word-spacing:0.158400pt;}
.ws23{word-spacing:0.159402pt;}
.ws188{word-spacing:0.167594pt;}
.ws8d{word-spacing:0.168000pt;}
.ws129{word-spacing:0.171008pt;}
.ws1f{word-spacing:0.191283pt;}
.ws3c{word-spacing:0.212535pt;}
.ws133{word-spacing:0.224448pt;}
.ws158{word-spacing:0.239104pt;}
.ws42{word-spacing:0.265669pt;}
.ws183{word-spacing:0.286925pt;}
.ws12a{word-spacing:0.309952pt;}
.ws13d{word-spacing:0.315296pt;}
.ws5f{word-spacing:0.318803pt;}
.ws1b{word-spacing:0.334746pt;}
.wsfc{word-spacing:0.347360pt;}
.ws67{word-spacing:0.371937pt;}
.wse5{word-spacing:0.406144pt;}
.wse4{word-spacing:0.422176pt;}
.ws66{word-spacing:0.425071pt;}
.wsd1{word-spacing:0.427520pt;}
.ws109{word-spacing:0.478205pt;}
.wsd2{word-spacing:0.523712pt;}
.ws159{word-spacing:0.526029pt;}
.ws7e{word-spacing:0.531339pt;}
.ws18f{word-spacing:0.547013pt;}
.ws18e{word-spacing:0.573850pt;}
.wse3{word-spacing:0.577152pt;}
.ws25{word-spacing:0.584473pt;}
.ws54{word-spacing:0.637606pt;}
.ws146{word-spacing:0.690740pt;}
.ws13e{word-spacing:0.732128pt;}
.wsc9{word-spacing:0.797008pt;}
.ws155{word-spacing:0.812954pt;}
.wsf4{word-spacing:0.822976pt;}
.wsf8{word-spacing:0.849696pt;}
.ws104{word-spacing:0.850142pt;}
.ws103{word-spacing:0.903276pt;}
.wsf9{word-spacing:0.967264pt;}
.ws83{word-spacing:0.993984pt;}
.ws50{word-spacing:1.009543pt;}
.wsf7{word-spacing:1.020704pt;}
.ws141{word-spacing:1.031392pt;}
.ws137{word-spacing:1.042080pt;}
.ws136{word-spacing:1.047424pt;}
.ws156{word-spacing:1.052058pt;}
.ws63{word-spacing:1.062677pt;}
.ws140{word-spacing:1.063456pt;}
.ws4e{word-spacing:1.115811pt;}
.wsf6{word-spacing:1.159648pt;}
.ws3e{word-spacing:1.168945pt;}
.wsd{word-spacing:1.227389pt;}
.ws69{word-spacing:1.275213pt;}
.ws43{word-spacing:1.328347pt;}
.wsa5{word-spacing:1.352032pt;}
.ws72{word-spacing:1.381481pt;}
.ws10c{word-spacing:1.434614pt;}
.ws4c{word-spacing:1.487748pt;}
.ws7f{word-spacing:1.540882pt;}
.ws27{word-spacing:1.594016pt;}
.wsfa{word-spacing:1.640608pt;}
.wsf3{word-spacing:1.683360pt;}
.ws121{word-spacing:1.688704pt;}
.ws49{word-spacing:1.700284pt;}
.ws122{word-spacing:1.715424pt;}
.ws171{word-spacing:1.721549pt;}
.wsef{word-spacing:1.728000pt;}
.wsf2{word-spacing:1.731456pt;}
.wsed{word-spacing:1.752000pt;}
.ws113{word-spacing:1.753418pt;}
.wsee{word-spacing:1.766400pt;}
.ws99{word-spacing:1.779552pt;}
.wsfb{word-spacing:1.800928pt;}
.ws5e{word-spacing:1.912819pt;}
.ws15c{word-spacing:1.912832pt;}
.wsf5{word-spacing:1.918496pt;}
.ws98{word-spacing:1.923840pt;}
.wse2{word-spacing:1.961248pt;}
.ws64{word-spacing:1.965953pt;}
.ws18{word-spacing:2.008474pt;}
.wse0{word-spacing:2.014688pt;}
.ws40{word-spacing:2.019087pt;}
.ws12f{word-spacing:2.020032pt;}
.ws9f{word-spacing:2.025376pt;}
.wsa1{word-spacing:2.036064pt;}
.ws3d{word-spacing:2.072221pt;}
.ws1c{word-spacing:2.104115pt;}
.wsa0{word-spacing:2.110880pt;}
.ws46{word-spacing:2.125355pt;}
.ws3a{word-spacing:2.178489pt;}
.ws170{word-spacing:2.199757pt;}
.ws5{word-spacing:2.230309pt;}
.wse1{word-spacing:2.281888pt;}
.ws4f{word-spacing:2.284756pt;}
.ws144{word-spacing:2.287232pt;}
.ws38{word-spacing:2.337890pt;}
.ws143{word-spacing:2.351360pt;}
.ws5a{word-spacing:2.391024pt;}
.wsa2{word-spacing:2.399456pt;}
.wsa3{word-spacing:2.426176pt;}
.ws152{word-spacing:2.444158pt;}
.ws61{word-spacing:2.497292pt;}
.ws7d{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.ws4a{word-spacing:2.603559pt;}
.ws185{word-spacing:2.630144pt;}
.ws96{word-spacing:2.645280pt;}
.ws130{word-spacing:2.650624pt;}
.ws15f{word-spacing:2.676623pt;}
.ws186{word-spacing:2.677965pt;}
.ws131{word-spacing:2.709408pt;}
.ws177{word-spacing:2.725786pt;}
.ws95{word-spacing:2.730784pt;}
.wsa4{word-spacing:2.746816pt;}
.ws18c{word-spacing:2.773606pt;}
.ws180{word-spacing:2.860194pt;}
.ws18d{word-spacing:2.860843pt;}
.ws163{word-spacing:2.861099pt;}
.ws21{word-spacing:2.861926pt;}
.ws164{word-spacing:2.863138pt;}
.ws168{word-spacing:2.863334pt;}
.ws17b{word-spacing:2.863377pt;}
.ws17c{word-spacing:2.865331pt;}
.ws172{word-spacing:2.865980pt;}
.ws15b{word-spacing:2.866509pt;}
.ws17a{word-spacing:2.867601pt;}
.ws29{word-spacing:2.869229pt;}
.ws1a{word-spacing:2.869248pt;}
.ws175{word-spacing:2.869333pt;}
.ws184{word-spacing:2.871151pt;}
.ws191{word-spacing:2.917069pt;}
.wsdb{word-spacing:2.960576pt;}
.ws174{word-spacing:2.964890pt;}
.ws16d{word-spacing:3.012710pt;}
.ws17{word-spacing:3.013533pt;}
.ws26{word-spacing:3.028630pt;}
.ws9a{word-spacing:3.046080pt;}
.ws179{word-spacing:3.060531pt;}
.ws10b{word-spacing:3.081764pt;}
.ws17e{word-spacing:3.085707pt;}
.ws17f{word-spacing:3.108352pt;}
.ws31{word-spacing:3.134898pt;}
.ws22{word-spacing:3.188032pt;}
.wsd9{word-spacing:3.254496pt;}
.ws13f{word-spacing:3.265184pt;}
.wsc7{word-spacing:3.282731pt;}
.ws3b{word-spacing:3.294300pt;}
.ws47{word-spacing:3.347434pt;}
.wsda{word-spacing:3.361376pt;}
.ws78{word-spacing:3.400567pt;}
.ws162{word-spacing:3.490918pt;}
.ws55{word-spacing:3.506835pt;}
.ws4d{word-spacing:3.559969pt;}
.wsd5{word-spacing:3.585824pt;}
.wsd6{word-spacing:3.607200pt;}
.ws14c{word-spacing:3.613103pt;}
.ws8a{word-spacing:3.617888pt;}
.ws178{word-spacing:3.634381pt;}
.wsd7{word-spacing:3.649952pt;}
.ws70{word-spacing:3.666237pt;}
.ws142{word-spacing:3.687360pt;}
.ws8b{word-spacing:3.703392pt;}
.ws153{word-spacing:3.719371pt;}
.ws12e{word-spacing:3.735456pt;}
.ws12d{word-spacing:3.756832pt;}
.ws33{word-spacing:3.825638pt;}
.wsd3{word-spacing:3.869056pt;}
.wsd4{word-spacing:3.874400pt;}
.ws37{word-spacing:3.931906pt;}
.wsd8{word-spacing:3.938528pt;}
.ws65{word-spacing:4.038174pt;}
.ws17d{word-spacing:4.064768pt;}
.wsdc{word-spacing:4.237792pt;}
.ws148{word-spacing:4.250709pt;}
.ws125{word-spacing:4.285888pt;}
.ws126{word-spacing:4.291232pt;}
.wsdd{word-spacing:4.307264pt;}
.wsde{word-spacing:4.323296pt;}
.ws57{word-spacing:4.410111pt;}
.ws14b{word-spacing:4.463245pt;}
.wsc8{word-spacing:4.516379pt;}
.ws84{word-spacing:4.574464pt;}
.ws86{word-spacing:4.649280pt;}
.ws85{word-spacing:4.670656pt;}
.ws5d{word-spacing:4.675780pt;}
.ws187{word-spacing:4.734259pt;}
.ws14a{word-spacing:4.782048pt;}
.wsa6{word-spacing:4.793568pt;}
.ws166{word-spacing:4.829901pt;}
.ws167{word-spacing:4.832669pt;}
.ws107{word-spacing:4.835182pt;}
.ws97{word-spacing:4.847008pt;}
.wsb{word-spacing:4.872362pt;}
.ws116{word-spacing:4.888316pt;}
.ws9e{word-spacing:4.905792pt;}
.ws9d{word-spacing:4.916480pt;}
.ws10a{word-spacing:4.994583pt;}
.ws4b{word-spacing:5.100851pt;}
.ws7c{word-spacing:5.153985pt;}
.wsa8{word-spacing:5.199712pt;}
.ws151{word-spacing:5.313387pt;}
.wsa7{word-spacing:5.322624pt;}
.ws53{word-spacing:5.791591pt;}
.ws10e{word-spacing:5.844725pt;}
.ws59{word-spacing:5.950993pt;}
.ws34{word-spacing:6.004127pt;}
.ws114{word-spacing:6.057261pt;}
.ws169{word-spacing:6.391228pt;}
.ws16b{word-spacing:6.407987pt;}
.wse7{word-spacing:6.466240pt;}
.wse8{word-spacing:6.503648pt;}
.ws145{word-spacing:6.535466pt;}
.wse9{word-spacing:6.594496pt;}
.ws108{word-spacing:6.854269pt;}
.ws138{word-spacing:7.225088pt;}
.ws5b{word-spacing:7.385607pt;}
.wsf1{word-spacing:7.396096pt;}
.ws154{word-spacing:7.438741pt;}
.ws51{word-spacing:7.491875pt;}
.ws16a{word-spacing:7.699149pt;}
.wsdf{word-spacing:8.122880pt;}
.ws58{word-spacing:8.235749pt;}
.ws9{word-spacing:8.740496pt;}
.ws105{word-spacing:9.432928pt;}
.ws106{word-spacing:9.457828pt;}
.wscd{word-spacing:9.715392pt;}
.wscc{word-spacing:9.726080pt;}
.ws117{word-spacing:10.325056pt;}
.ws82{word-spacing:10.329312pt;}
.wsa{word-spacing:10.525789pt;}
.ws139{word-spacing:13.504288pt;}
.ws13a{word-spacing:13.557728pt;}
.ws8{word-spacing:19.857270pt;}
.wsc{word-spacing:20.196125pt;}
.ws11{word-spacing:35.593054pt;}
.ws11a{word-spacing:67.072544pt;}
.ws119{word-spacing:67.083232pt;}
.ws112{word-spacing:114.196070pt;}
.ws111{word-spacing:135.619789pt;}
.ws10f{word-spacing:138.106470pt;}
.ws110{word-spacing:159.530189pt;}
.ws11c{word-spacing:213.412640pt;}
.ws11b{word-spacing:213.621056pt;}
.ws101{word-spacing:285.738336pt;}
.wsba{word-spacing:289.554944pt;}
.wsb4{word-spacing:309.018010pt;}
.wsc2{word-spacing:333.454438pt;}
.wsbb{word-spacing:376.912000pt;}
.wsb1{word-spacing:376.913067pt;}
.wsbd{word-spacing:376.917333pt;}
.wsb3{word-spacing:388.870400pt;}
.wsb7{word-spacing:396.290970pt;}
.wsae{word-spacing:396.868821pt;}
.wsc6{word-spacing:396.870630pt;}
.wsaf{word-spacing:408.246170pt;}
.wsb0{word-spacing:408.824021pt;}
.ws160{word-spacing:413.362995pt;}
.wsbe{word-spacing:420.201370pt;}
.wsc1{word-spacing:438.134170pt;}
.wsc0{word-spacing:438.712021pt;}
.wsb8{word-spacing:495.363379pt;}
.wsb6{word-spacing:537.589146pt;}
.wsbc{word-spacing:563.319936pt;}
.wsbf{word-spacing:568.484582pt;}
.wsb2{word-spacing:577.806438pt;}
.wsc4{word-spacing:585.601229pt;}
.wsc5{word-spacing:597.508608pt;}
.wsb5{word-spacing:608.985600pt;}
.wsc3{word-spacing:609.132262pt;}
.wsb9{word-spacing:616.828211pt;}
.wsfe{word-spacing:684.667936pt;}
.ws100{word-spacing:733.597600pt;}
._1e{margin-left:-683.872800pt;}
._1f{margin-left:-428.631552pt;}
._21{margin-left:-379.391936pt;}
._43{margin-left:-213.439360pt;}
._3c{margin-left:-170.649952pt;}
._3b{margin-left:-151.448960pt;}
._3a{margin-left:-132.889248pt;}
._41{margin-left:-121.201920pt;}
._47{margin-left:-120.102144pt;}
._40{margin-left:-102.000928pt;}
._46{margin-left:-100.901152pt;}
._3d{margin-left:-84.889440pt;}
._3f{margin-left:-83.441216pt;}
._45{margin-left:-82.341440pt;}
._42{margin-left:-60.723872pt;}
._48{margin-left:-59.624096pt;}
._1a{margin-left:-13.283467pt;}
._5{margin-left:-10.616218pt;}
._51{margin-left:-7.173069pt;}
._15{margin-left:-6.269799pt;}
._8{margin-left:-5.355930pt;}
._1{margin-left:-3.868134pt;}
._16{margin-left:-2.391053pt;}
._0{margin-left:-1.115808pt;}
._1b{width:0.936320pt;}
._6{width:2.675529pt;}
._4d{width:3.613408pt;}
._44{width:5.923437pt;}
._3e{width:7.853670pt;}
._2{width:10.377014pt;}
._3{width:11.530016pt;}
._14{width:12.433322pt;}
._a{width:13.963674pt;}
._c{width:14.872269pt;}
._e{width:15.940190pt;}
._13{width:16.843436pt;}
._11{width:18.278047pt;}
._4e{width:19.393861pt;}
._b{width:20.706406pt;}
._4{width:22.502128pt;}
._9{width:23.814726pt;}
._19{width:24.707245pt;}
._d{width:25.769925pt;}
._1d{width:26.992001pt;}
._12{width:28.745419pt;}
._50{width:29.648698pt;}
._18{width:30.870777pt;}
._17{width:34.908950pt;}
._4f{width:36.556097pt;}
._49{width:54.124032pt;}
._36{width:60.498336pt;}
._7{width:61.634765pt;}
._39{width:84.798592pt;}
._38{width:86.305600pt;}
._37{width:104.865312pt;}
._2f{width:120.832768pt;}
._32{width:123.489545pt;}
._4a{width:127.737632pt;}
._2e{width:133.366861pt;}
._33{width:135.619789pt;}
._53{width:140.401869pt;}
._30{width:147.574989pt;}
._31{width:159.530189pt;}
._60{width:166.841434pt;}
._62{width:171.963597pt;}
._20{width:174.759488pt;}
._63{width:196.681600pt;}
._4b{width:213.760000pt;}
._4c{width:239.678400pt;}
._54{width:308.300698pt;}
._23{width:328.624538pt;}
._65{width:353.252250pt;}
._6f{width:360.760115pt;}
._55{width:367.120282pt;}
._5f{width:372.476211pt;}
._64{width:394.091213pt;}
._2a{width:408.821888pt;}
._5d{width:414.701978pt;}
._27{width:420.790178pt;}
._59{width:425.174733pt;}
._2d{width:432.735164pt;}
._5e{width:433.925939pt;}
._56{width:438.803661pt;}
._26{width:440.232947pt;}
._5c{width:443.585741pt;}
._6e{width:448.750387pt;}
._22{width:451.810918pt;}
._52{width:454.919270pt;}
._68{width:457.501594pt;}
._25{width:462.522778pt;}
._57{width:467.257037pt;}
._58{width:474.621440pt;}
._66{width:480.694682pt;}
._5b{width:486.098432pt;}
._6b{width:488.489472pt;}
._24{width:490.402304pt;}
._67{width:491.406541pt;}
._5a{width:493.941043pt;}
._6d{width:496.619008pt;}
._61{width:498.197094pt;}
._69{width:501.592371pt;}
._70{width:503.021645pt;}
._6a{width:508.526387pt;}
._6c{width:509.626266pt;}
._f{width:538.213875pt;}
._29{width:588.148019pt;}
._2c{width:593.025741pt;}
._2b{width:621.479117pt;}
._28{width:628.556595pt;}
._35{width:1791.418496pt;}
._1c{width:1812.536768pt;}
._34{width:2200.237600pt;}
._10{width:2221.490933pt;}
.fsb{font-size:5.440000pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsd{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsc{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:119.349272pt;}
.y97{bottom:-434.314267pt;}
.yaf{bottom:-373.672867pt;}
.yae{bottom:-355.672939pt;}
.yad{bottom:-337.673011pt;}
.yce{bottom:-335.683600pt;}
.yac{bottom:-319.673083pt;}
.y15b{bottom:-302.723600pt;}
.yab{bottom:-301.673155pt;}
.yaa{bottom:-283.673227pt;}
.yec{bottom:-275.203600pt;}
.ya9{bottom:-265.753459pt;}
.yeb{bottom:-256.483600pt;}
.ya8{bottom:-247.753531pt;}
.ya7{bottom:-229.753603pt;}
.yea{bottom:-229.523600pt;}
.y179{bottom:-221.122616pt;}
.ya6{bottom:-211.753675pt;}
.y178{bottom:-203.122688pt;}
.ye9{bottom:-196.962936pt;}
.ya5{bottom:-193.753747pt;}
.y177{bottom:-185.122760pt;}
.ye8{bottom:-179.043168pt;}
.ya4{bottom:-175.753819pt;}
.y176{bottom:-167.202992pt;}
.ye7{bottom:-161.043240pt;}
.ya3{bottom:-157.753891pt;}
.y175{bottom:-149.203064pt;}
.ye6{bottom:-143.043312pt;}
.ya2{bottom:-139.834123pt;}
.y174{bottom:-131.203136pt;}
.ye5{bottom:-125.043384pt;}
.ya1{bottom:-121.834195pt;}
.y173{bottom:-113.203208pt;}
.ye4{bottom:-107.043456pt;}
.ya0{bottom:-103.834267pt;}
.y172{bottom:-95.203280pt;}
.ye3{bottom:-89.043528pt;}
.y171{bottom:-77.203352pt;}
.ye2{bottom:-71.043600pt;}
.y9f{bottom:-70.234133pt;}
.y170{bottom:-55.283600pt;}
.y9e{bottom:-45.673203pt;}
.ye1{bottom:-37.444000pt;}
.y16f{bottom:-21.603600pt;}
.ye0{bottom:-21.283600pt;}
.y16e{bottom:-1.042432pt;}
.ydf{bottom:-0.721680pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:15.371208pt;}
.y44{bottom:28.346667pt;}
.y200{bottom:92.760000pt;}
.y15{bottom:93.018667pt;}
.y237{bottom:103.518667pt;}
.y93{bottom:105.510667pt;}
.y43{bottom:105.582667pt;}
.y7a{bottom:105.909333pt;}
.y81{bottom:106.308000pt;}
.y1ff{bottom:108.102667pt;}
.y14{bottom:108.920000pt;}
.y19b{bottom:111.698667pt;}
.y10c{bottom:114.585333pt;}
.y236{bottom:118.861333pt;}
.y92{bottom:122.248000pt;}
.y42{bottom:122.320000pt;}
.y79{bottom:122.646667pt;}
.y80{bottom:123.045333pt;}
.y1fd{bottom:123.444000pt;}
.y1fe{bottom:123.445333pt;}
.y13{bottom:124.820000pt;}
.y157{bottom:128.382667pt;}
.y19a{bottom:128.436000pt;}
.y10b{bottom:131.322667pt;}
.y235{bottom:134.202667pt;}
.yca{bottom:138.173333pt;}
.y1fc{bottom:138.786667pt;}
.y91{bottom:138.985333pt;}
.y41{bottom:139.057333pt;}
.y78{bottom:139.384000pt;}
.y7f{bottom:139.782667pt;}
.y12{bottom:140.720000pt;}
.y156{bottom:145.120000pt;}
.y199{bottom:145.173333pt;}
.y10a{bottom:148.060000pt;}
.y234{bottom:149.545333pt;}
.y1fb{bottom:154.129333pt;}
.yc9{bottom:154.910667pt;}
.y90{bottom:155.722667pt;}
.y40{bottom:155.794667pt;}
.y77{bottom:156.121333pt;}
.y7e{bottom:156.520000pt;}
.y11{bottom:156.621333pt;}
.y155{bottom:161.857333pt;}
.y198{bottom:161.910667pt;}
.y109{bottom:164.797333pt;}
.y232{bottom:164.888000pt;}
.y233{bottom:165.073333pt;}
.y1fa{bottom:169.472000pt;}
.yc8{bottom:171.648000pt;}
.y8f{bottom:172.460000pt;}
.y10{bottom:172.521333pt;}
.y3f{bottom:172.532000pt;}
.y76{bottom:172.858667pt;}
.y7d{bottom:173.257333pt;}
.y154{bottom:178.594667pt;}
.y197{bottom:178.648000pt;}
.y231{bottom:180.230667pt;}
.y108{bottom:181.534667pt;}
.y1f9{bottom:184.814667pt;}
.y1c5{bottom:186.977333pt;}
.yc7{bottom:188.385333pt;}
.yf{bottom:188.421333pt;}
.y8e{bottom:189.197333pt;}
.y3e{bottom:189.269333pt;}
.y129{bottom:189.596000pt;}
.y7c{bottom:189.994667pt;}
.y75{bottom:193.581333pt;}
.y153{bottom:195.332000pt;}
.y196{bottom:195.385333pt;}
.y230{bottom:195.573333pt;}
.y107{bottom:198.272000pt;}
.y1f8{bottom:200.157333pt;}
.y1c4{bottom:202.598667pt;}
.ye{bottom:204.322667pt;}
.yc6{bottom:205.122667pt;}
.y8d{bottom:205.934667pt;}
.y3d{bottom:206.006667pt;}
.y128{bottom:206.333333pt;}
.y7b{bottom:206.732000pt;}
.y22f{bottom:210.916000pt;}
.y195{bottom:212.122667pt;}
.y106{bottom:215.009333pt;}
.y1f7{bottom:215.500000pt;}
.y152{bottom:216.053333pt;}
.y1c3{bottom:218.220000pt;}
.yc5{bottom:221.860000pt;}
.y8c{bottom:222.672000pt;}
.y3c{bottom:222.744000pt;}
.y127{bottom:223.070667pt;}
.y74{bottom:223.469333pt;}
.y22e{bottom:226.258667pt;}
.y194{bottom:228.858667pt;}
.y1f6{bottom:230.842667pt;}
.y105{bottom:231.746667pt;}
.y1c2{bottom:233.841333pt;}
.yc4{bottom:238.597333pt;}
.y8b{bottom:239.409333pt;}
.y3b{bottom:239.481333pt;}
.y126{bottom:239.808000pt;}
.y73{bottom:240.206667pt;}
.y22d{bottom:241.601333pt;}
.y193{bottom:245.596000pt;}
.y151{bottom:245.941333pt;}
.y1f5{bottom:246.185333pt;}
.y104{bottom:248.484000pt;}
.y1c1{bottom:249.462667pt;}
.yc3{bottom:255.334667pt;}
.y8a{bottom:256.146667pt;}
.y3a{bottom:256.217333pt;}
.y125{bottom:256.545333pt;}
.y72{bottom:256.944000pt;}
.y1f4{bottom:261.526667pt;}
.y192{bottom:262.333333pt;}
.y150{bottom:262.678667pt;}
.yd{bottom:264.148000pt;}
.y1c0{bottom:265.085333pt;}
.yc2{bottom:272.072000pt;}
.y22c{bottom:272.285333pt;}
.y89{bottom:272.884000pt;}
.y39{bottom:272.954667pt;}
.y124{bottom:273.282667pt;}
.y71{bottom:273.681333pt;}
.y1f3{bottom:276.869333pt;}
.y191{bottom:279.070667pt;}
.y14f{bottom:279.416000pt;}
.yc{bottom:280.048000pt;}
.y1bf{bottom:280.706667pt;}
.y22b{bottom:287.628000pt;}
.yc1{bottom:288.809333pt;}
.y103{bottom:288.894667pt;}
.y88{bottom:289.621333pt;}
.y38{bottom:289.692000pt;}
.y123{bottom:290.020000pt;}
.y70{bottom:290.417333pt;}
.y1f2{bottom:292.212000pt;}
.y190{bottom:295.808000pt;}
.yb{bottom:295.949333pt;}
.y14e{bottom:296.153333pt;}
.y1be{bottom:296.328000pt;}
.y22a{bottom:302.970667pt;}
.y102{bottom:303.506667pt;}
.yc0{bottom:305.546667pt;}
.y37{bottom:306.429333pt;}
.y122{bottom:306.757333pt;}
.y6f{bottom:307.154667pt;}
.y1f1{bottom:307.554667pt;}
.y87{bottom:310.344000pt;}
.y19d{bottom:310.741333pt;}
.ya{bottom:311.849333pt;}
.y1bd{bottom:311.949333pt;}
.y18f{bottom:312.545333pt;}
.y14d{bottom:312.890667pt;}
.y101{bottom:318.117333pt;}
.y229{bottom:318.313333pt;}
.ybf{bottom:322.284000pt;}
.y1f0{bottom:322.897333pt;}
.y36{bottom:323.166667pt;}
.y121{bottom:323.494667pt;}
.y6e{bottom:323.892000pt;}
.y1bc{bottom:327.570667pt;}
.y16d{bottom:328.957584pt;}
.y18e{bottom:329.282667pt;}
.y14c{bottom:329.628000pt;}
.y100{bottom:332.729333pt;}
.y228{bottom:333.656000pt;}
.y9{bottom:337.048000pt;}
.y1ef{bottom:338.240000pt;}
.ybe{bottom:339.021333pt;}
.y86{bottom:340.232000pt;}
.y6d{bottom:340.629333pt;}
.y1bb{bottom:343.192000pt;}
.y35{bottom:343.889333pt;}
.y19c{bottom:344.216000pt;}
.y18d{bottom:346.020000pt;}
.y14b{bottom:346.365333pt;}
.y16c{bottom:346.957512pt;}
.yff{bottom:347.341333pt;}
.y227{bottom:348.998667pt;}
.yde{bottom:353.278240pt;}
.y1ee{bottom:353.582667pt;}
.ybd{bottom:355.758667pt;}
.y85{bottom:356.968000pt;}
.y6c{bottom:357.366667pt;}
.y1ba{bottom:358.813333pt;}
.y8{bottom:360.918667pt;}
.yfe{bottom:361.953333pt;}
.y18c{bottom:362.757333pt;}
.y14a{bottom:363.102667pt;}
.y226{bottom:364.341333pt;}
.y16b{bottom:364.877280pt;}
.y1ed{bottom:368.925333pt;}
.ydd{bottom:371.278168pt;}
.ybc{bottom:372.496000pt;}
.y84{bottom:373.705333pt;}
.y6b{bottom:374.104000pt;}
.y1b9{bottom:374.434667pt;}
.yfd{bottom:376.565333pt;}
.y7{bottom:376.818667pt;}
.y18b{bottom:379.494667pt;}
.y225{bottom:379.684000pt;}
.y149{bottom:379.840000pt;}
.y16a{bottom:382.877208pt;}
.y1ec{bottom:384.268000pt;}
.ybb{bottom:389.233333pt;}
.ydc{bottom:389.278096pt;}
.y1b8{bottom:390.056000pt;}
.y83{bottom:390.442667pt;}
.y6a{bottom:390.841333pt;}
.yfc{bottom:391.177333pt;}
.y6{bottom:392.720000pt;}
.y224{bottom:395.025333pt;}
.y18a{bottom:396.232000pt;}
.y148{bottom:396.577333pt;}
.y1eb{bottom:399.609333pt;}
.y169{bottom:400.877136pt;}
.y1b7{bottom:405.677333pt;}
.yfb{bottom:405.789333pt;}
.yba{bottom:405.970667pt;}
.y120{bottom:407.180000pt;}
.ydb{bottom:407.278024pt;}
.y69{bottom:407.578667pt;}
.y5{bottom:408.620000pt;}
.y34{bottom:409.972000pt;}
.y223{bottom:410.368000pt;}
.y82{bottom:411.165333pt;}
.y189{bottom:412.969333pt;}
.y147{bottom:413.314667pt;}
.y1ea{bottom:414.952000pt;}
.y168{bottom:418.877064pt;}
.yfa{bottom:420.401333pt;}
.y1b6{bottom:421.298667pt;}
.yb9{bottom:422.708000pt;}
.y11f{bottom:423.917333pt;}
.y68{bottom:424.316000pt;}
.y4{bottom:424.520000pt;}
.yda{bottom:425.277952pt;}
.y222{bottom:425.710667pt;}
.y188{bottom:429.706667pt;}
.y146{bottom:430.052000pt;}
.y1e9{bottom:430.294667pt;}
.y9d{bottom:434.566693pt;}
.yf9{bottom:435.013333pt;}
.y167{bottom:436.876992pt;}
.y1b5{bottom:436.920000pt;}
.yb8{bottom:439.445333pt;}
.y3{bottom:440.421333pt;}
.y11e{bottom:440.654667pt;}
.y67{bottom:441.053333pt;}
.yd9{bottom:443.197720pt;}
.y33{bottom:443.208000pt;}
.y1e8{bottom:445.637333pt;}
.y187{bottom:446.444000pt;}
.y145{bottom:446.789333pt;}
.yf8{bottom:449.625333pt;}
.y1b4{bottom:452.541333pt;}
.y9c{bottom:452.566621pt;}
.y166{bottom:454.876920pt;}
.yb7{bottom:456.181333pt;}
.y2{bottom:456.321333pt;}
.y221{bottom:456.396000pt;}
.y11d{bottom:457.392000pt;}
.y66{bottom:457.790667pt;}
.y1e7{bottom:460.980000pt;}
.yd8{bottom:461.197648pt;}
.y186{bottom:463.181333pt;}
.y144{bottom:463.526667pt;}
.yf7{bottom:464.237333pt;}
.y1b3{bottom:468.162667pt;}
.y9b{bottom:470.486389pt;}
.y220{bottom:471.738667pt;}
.y1{bottom:472.221333pt;}
.y165{bottom:472.876848pt;}
.yb6{bottom:472.918667pt;}
.y11c{bottom:474.129333pt;}
.y65{bottom:474.528000pt;}
.y1e6{bottom:476.322667pt;}
.y32{bottom:476.442667pt;}
.yf6{bottom:478.848000pt;}
.yd7{bottom:479.197576pt;}
.y185{bottom:479.918667pt;}
.y143{bottom:480.264000pt;}
.y1b2{bottom:483.784000pt;}
.y21f{bottom:487.081333pt;}
.y9a{bottom:488.486317pt;}
.yb5{bottom:489.656000pt;}
.y164{bottom:490.796616pt;}
.y11b{bottom:490.866667pt;}
.y64{bottom:491.265333pt;}
.y1e5{bottom:491.665333pt;}
.yf5{bottom:493.460000pt;}
.y31{bottom:493.738667pt;}
.y184{bottom:496.656000pt;}
.y142{bottom:497.001333pt;}
.yd6{bottom:497.197504pt;}
.y1b1{bottom:499.406667pt;}
.y21e{bottom:502.424000pt;}
.yb4{bottom:506.393333pt;}
.y99{bottom:506.486245pt;}
.y11a{bottom:507.604000pt;}
.y63{bottom:508.002667pt;}
.yf4{bottom:508.072000pt;}
.y163{bottom:508.796544pt;}
.y1e4{bottom:510.993333pt;}
.y30{bottom:511.033333pt;}
.y183{bottom:513.393333pt;}
.y141{bottom:513.738667pt;}
.yd5{bottom:515.197432pt;}
.y21d{bottom:517.766667pt;}
.yf3{bottom:522.684000pt;}
.yb3{bottom:523.130667pt;}
.y119{bottom:524.341333pt;}
.y98{bottom:524.486173pt;}
.y62{bottom:524.740000pt;}
.y162{bottom:526.796472pt;}
.y2f{bottom:528.328000pt;}
.y182{bottom:530.130667pt;}
.y140{bottom:530.476000pt;}
.y1b0{bottom:531.276000pt;}
.y21c{bottom:533.108000pt;}
.yd4{bottom:533.197360pt;}
.yf2{bottom:537.296000pt;}
.yb2{bottom:539.868000pt;}
.y118{bottom:541.078667pt;}
.y61{bottom:541.477333pt;}
.y1e3{bottom:542.710667pt;}
.y161{bottom:544.796400pt;}
.y2e{bottom:545.624000pt;}
.y181{bottom:546.868000pt;}
.y13f{bottom:547.213333pt;}
.y21b{bottom:548.450667pt;}
.yd3{bottom:551.197288pt;}
.yf1{bottom:551.908000pt;}
.yb1{bottom:556.605333pt;}
.y117{bottom:557.816000pt;}
.y60{bottom:558.214667pt;}
.y1e2{bottom:558.332000pt;}
.y2d{bottom:562.918667pt;}
.y180{bottom:563.605333pt;}
.y21a{bottom:563.793333pt;}
.y1af{bottom:563.953333pt;}
.yd2{bottom:569.117056pt;}
.yf0{bottom:572.921333pt;}
.y96{bottom:573.765853pt;}
.y1e1{bottom:573.953333pt;}
.y116{bottom:574.553333pt;}
.y5f{bottom:574.952000pt;}
.y219{bottom:579.136000pt;}
.y160{bottom:580.156400pt;}
.y2c{bottom:580.213333pt;}
.y17f{bottom:580.342667pt;}
.y95{bottom:582.325733pt;}
.yb0{bottom:586.441333pt;}
.yd1{bottom:587.116984pt;}
.y1ae{bottom:587.545333pt;}
.y1e0{bottom:589.576000pt;}
.y13e{bottom:590.280000pt;}
.y115{bottom:591.290667pt;}
.y5e{bottom:591.689333pt;}
.y218{bottom:594.478667pt;}
.y17e{bottom:597.080000pt;}
.y2b{bottom:597.509333pt;}
.y15f{bottom:598.796400pt;}
.yef{bottom:601.028000pt;}
.y1ad{bottom:603.166667pt;}
.y13d{bottom:604.892000pt;}
.yd0{bottom:605.116912pt;}
.y1df{bottom:605.197333pt;}
.y94{bottom:606.378667pt;}
.y114{bottom:608.028000pt;}
.y5d{bottom:608.426667pt;}
.y217{bottom:609.821333pt;}
.y17d{bottom:613.817333pt;}
.y2a{bottom:614.804000pt;}
.y15e{bottom:617.436400pt;}
.y1de{bottom:620.818667pt;}
.ycf{bottom:623.116840pt;}
.y113{bottom:624.765333pt;}
.y5c{bottom:625.164000pt;}
.y13c{bottom:625.906667pt;}
.y1ac{bottom:626.757333pt;}
.y17c{bottom:630.554667pt;}
.y29{bottom:632.100000pt;}
.yee{bottom:635.392000pt;}
.y15d{bottom:636.076400pt;}
.y1dd{bottom:636.440000pt;}
.y216{bottom:640.506667pt;}
.y112{bottom:641.502667pt;}
.y5b{bottom:641.901333pt;}
.y1ab{bottom:642.380000pt;}
.y13b{bottom:646.920000pt;}
.y17b{bottom:647.292000pt;}
.y28{bottom:649.394667pt;}
.y1dc{bottom:652.061333pt;}
.yed{bottom:652.488000pt;}
.y15c{bottom:654.716792pt;}
.y215{bottom:655.848000pt;}
.y1aa{bottom:658.001333pt;}
.y111{bottom:658.240000pt;}
.y5a{bottom:658.638667pt;}
.y27{bottom:666.689333pt;}
.y1db{bottom:667.682667pt;}
.y13a{bottom:667.934667pt;}
.y214{bottom:671.190667pt;}
.ycd{bottom:672.396520pt;}
.ycb{bottom:672.425333pt;}
.y1a9{bottom:673.622667pt;}
.y110{bottom:674.977333pt;}
.y59{bottom:675.376000pt;}
.y17a{bottom:677.128000pt;}
.ycc{bottom:680.956400pt;}
.y1da{bottom:683.304000pt;}
.y26{bottom:683.985333pt;}
.y213{bottom:686.533333pt;}
.y139{bottom:688.948000pt;}
.y1a8{bottom:689.244000pt;}
.y10f{bottom:691.714667pt;}
.y58{bottom:692.113333pt;}
.y1d9{bottom:698.925333pt;}
.y158{bottom:699.721333pt;}
.y25{bottom:701.280000pt;}
.y212{bottom:701.876000pt;}
.y138{bottom:703.560000pt;}
.y1a7{bottom:704.865333pt;}
.y15a{bottom:705.356520pt;}
.y10e{bottom:708.452000pt;}
.y57{bottom:708.850667pt;}
.y159{bottom:713.916400pt;}
.y1d8{bottom:714.546667pt;}
.y211{bottom:717.218667pt;}
.y24{bottom:718.574667pt;}
.y1a6{bottom:720.486667pt;}
.y137{bottom:724.573333pt;}
.y56{bottom:725.588000pt;}
.y10d{bottom:729.173333pt;}
.y1d7{bottom:730.168000pt;}
.y210{bottom:732.561333pt;}
.y23{bottom:735.870667pt;}
.y1a5{bottom:736.108000pt;}
.y55{bottom:742.324000pt;}
.y136{bottom:745.588000pt;}
.y1d6{bottom:745.789333pt;}
.y20f{bottom:747.904000pt;}
.y1a4{bottom:751.729333pt;}
.y54{bottom:759.061333pt;}
.y1d5{bottom:761.410667pt;}
.y20e{bottom:763.246667pt;}
.y135{bottom:766.601333pt;}
.y22{bottom:770.168000pt;}
.y1a3{bottom:775.321333pt;}
.y53{bottom:775.798667pt;}
.y1d4{bottom:777.032000pt;}
.y20d{bottom:778.589333pt;}
.y134{bottom:787.616000pt;}
.y21{bottom:788.372000pt;}
.y52{bottom:792.536000pt;}
.y1d3{bottom:792.653333pt;}
.y20c{bottom:793.930667pt;}
.y1a2{bottom:798.913333pt;}
.y133{bottom:802.228000pt;}
.y20{bottom:802.718667pt;}
.y1d2{bottom:808.276000pt;}
.y51{bottom:809.273333pt;}
.y1a1{bottom:814.534667pt;}
.y1f{bottom:817.065333pt;}
.y132{bottom:823.241333pt;}
.y1d1{bottom:823.897333pt;}
.y20b{bottom:824.616000pt;}
.y50{bottom:826.010667pt;}
.y1e{bottom:827.553333pt;}
.y1a0{bottom:830.156000pt;}
.y1d0{bottom:839.518667pt;}
.y20a{bottom:839.958667pt;}
.y1d{bottom:841.900000pt;}
.y4f{bottom:842.748000pt;}
.y131{bottom:844.256000pt;}
.y1c{bottom:845.757333pt;}
.y19f{bottom:845.777333pt;}
.y1cf{bottom:855.140000pt;}
.y209{bottom:855.301333pt;}
.y4e{bottom:859.485333pt;}
.y19e{bottom:861.398667pt;}
.y130{bottom:865.269333pt;}
.y23a{bottom:866.592000pt;}
.y208{bottom:870.644000pt;}
.y1ce{bottom:870.761333pt;}
.y4d{bottom:876.222667pt;}
.y239{bottom:881.934667pt;}
.y1b{bottom:885.469333pt;}
.y207{bottom:885.986667pt;}
.y12f{bottom:886.284000pt;}
.y1cd{bottom:886.382667pt;}
.y4c{bottom:892.960000pt;}
.y238{bottom:897.277333pt;}
.y12e{bottom:900.896000pt;}
.y206{bottom:901.329333pt;}
.y1cc{bottom:902.004000pt;}
.y4b{bottom:909.697333pt;}
.y205{bottom:916.670667pt;}
.y1cb{bottom:917.625333pt;}
.y1a{bottom:921.320000pt;}
.y12d{bottom:921.909333pt;}
.y4a{bottom:926.434667pt;}
.y204{bottom:932.013333pt;}
.y1ca{bottom:933.246667pt;}
.y12c{bottom:942.924000pt;}
.y49{bottom:943.172000pt;}
.y19{bottom:946.425333pt;}
.y203{bottom:947.356000pt;}
.y1c9{bottom:948.868000pt;}
.y48{bottom:959.909333pt;}
.y202{bottom:962.698667pt;}
.y12b{bottom:963.937333pt;}
.y1c8{bottom:964.489333pt;}
.y18{bottom:971.530667pt;}
.y47{bottom:976.646667pt;}
.y201{bottom:978.041333pt;}
.y1c7{bottom:980.110667pt;}
.y46{bottom:993.384000pt;}
.y12a{bottom:994.700000pt;}
.y1c6{bottom:995.732000pt;}
.y16{bottom:1010.186667pt;}
.y45{bottom:1046.810667pt;}
.h9{height:28.947524pt;}
.h2{height:33.771789pt;}
.h3{height:33.957757pt;}
.h16{height:34.430976pt;}
.hc{height:38.256384pt;}
.ha{height:38.596538pt;}
.h6{height:38.947124pt;}
.h10{height:39.359687pt;}
.hf{height:39.588281pt;}
.hb{height:43.421286pt;}
.h1b{height:43.660390pt;}
.h14{height:44.390625pt;}
.h12{height:44.648438pt;}
.h4{height:45.272024pt;}
.hd{height:48.245551pt;}
.h1a{height:48.769219pt;}
.h8{height:49.201961pt;}
.h11{height:49.421563pt;}
.h15{height:49.708594pt;}
.h7{height:68.861952pt;}
.h17{height:72.642620pt;}
.h18{height:72.647953pt;}
.h5{height:80.918807pt;}
.h19{height:306.946667pt;}
.h13{height:334.242667pt;}
.he{height:400.289333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:204.451647pt;}
.w4{width:403.253333pt;}
.w3{width:438.690667pt;}
.w5{width:593.807067pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3a{left:-183.562667pt;}
.x3d{left:-172.424000pt;}
.x51{left:-45.216933pt;}
.x52{left:-30.017261pt;}
.x3b{left:-9.722347pt;}
.x0{left:0.000000pt;}
.x3e{left:1.415031pt;}
.x54{left:6.943067pt;}
.x3c{left:18.597333pt;}
.x3f{left:29.734938pt;}
.x53{left:32.543067pt;}
.x1{left:47.621333pt;}
.x2{left:50.717729pt;}
.x4a{left:55.592000pt;}
.x49{left:59.666667pt;}
.x5f{left:74.862667pt;}
.x5e{left:76.309333pt;}
.x50{left:99.758267pt;}
.x56{left:128.622539pt;}
.x4b{left:133.161333pt;}
.x48{left:136.149333pt;}
.x55{left:156.943067pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x41{left:229.828000pt;}
.x4{left:239.790667pt;}
.x6{left:250.204000pt;}
.xd{left:259.294667pt;}
.xe{left:265.936000pt;}
.x27{left:268.580000pt;}
.x33{left:272.057333pt;}
.x28{left:281.864000pt;}
.x29{left:285.181333pt;}
.x34{left:288.728000pt;}
.x2a{left:298.465333pt;}
.x35{left:302.012000pt;}
.x2b{left:306.854667pt;}
.x2c{left:320.138667pt;}
.x2d{left:323.525333pt;}
.x2e{left:336.809333pt;}
.x4c{left:337.808000pt;}
.x2f{left:340.197333pt;}
.x5a{left:341.445333pt;}
.x4d{left:351.090667pt;}
.x30{left:353.480000pt;}
.x5b{left:354.728000pt;}
.x4e{left:357.865333pt;}
.x5c{left:361.290667pt;}
.x4f{left:371.149333pt;}
.x5d{left:374.573333pt;}
.x40{left:401.570257pt;}
.x25{left:412.974667pt;}
.x26{left:426.258667pt;}
.x15{left:444.269333pt;}
.x16{left:457.553333pt;}
.x1d{left:463.370667pt;}
.x1e{left:476.654667pt;}
.x1f{left:483.429333pt;}
.x20{left:496.712000pt;}
.x23{left:501.585333pt;}
.x7{left:503.028000pt;}
.x42{left:506.536000pt;}
.x8{left:509.669333pt;}
.x24{left:514.869333pt;}
.x43{left:519.820000pt;}
.x21{left:524.726667pt;}
.x22{left:538.010667pt;}
.x60{left:550.482667pt;}
.x19{left:552.621333pt;}
.x1a{left:565.905333pt;}
.x1b{left:572.468000pt;}
.x58{left:583.313333pt;}
.x1c{left:585.750667pt;}
.x59{left:596.597333pt;}
.x57{left:601.664067pt;}
.xf{left:616.190667pt;}
.x10{left:622.832000pt;}
.x31{left:624.601333pt;}
.x11{left:626.086667pt;}
.x12{left:632.728000pt;}
.x39{left:636.640000pt;}
.x32{left:637.884000pt;}
.x37{left:644.928000pt;}
.x17{left:654.420000pt;}
.x18{left:667.704000pt;}
.x38{left:679.549333pt;}
.x36{left:680.824000pt;}
.x61{left:682.350667pt;}
.x13{left:698.022667pt;}
.x44{left:710.172000pt;}
.x14{left:711.306667pt;}
.x45{left:723.454667pt;}
.x9{left:724.828000pt;}
.x46{left:726.842667pt;}
.xa{left:731.469333pt;}
.xb{left:734.724000pt;}
.x47{left:740.126667pt;}
.xc{left:741.365333pt;}
}




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