
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;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_aa36d58dd0e2d9acd9b41e02.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_7e3d41c47371963791bb75ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_f0d8725aa878ce46fe7f757f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747000;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_a94038c9f47c2c17aa8bf4c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e0fac214278becf788aec779.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e7b46c349078443053fc60af.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_07d953de5fb71abb222bf89c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.698000;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_b43a716c4fc1aeeb0715a457.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.357000;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_b6ec25e979787ff08d6e1220.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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_711f7175ec8f843d4caec41d.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_aca2e95a158ce7ce896ac2a1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003906;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_c1f0dcf502401bc80a7f8556.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_123cf09a3bcee6391f01f747.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_91ec730903a19318bd31c216.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_67e370ce7132722cafa82d14.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.869000;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;}
.m8{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);}
.m1f{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);}
.m13{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m15{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);}
.me{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);}
.m5{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);}
.mc{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);}
.m14{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);}
.m2c{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);}
.m2b{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);}
.m1a{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);}
.m29{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);}
.m9{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);}
.m3{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);}
.mb{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);}
.m6{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);}
.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);}
.m24{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m1c{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);}
.m7{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m25{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);}
.m11{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);}
.m27{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);}
.m4{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);}
.m2{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);}
.m10{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);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.ma{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);}
.m16{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);}
.m1e{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);}
.md{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);}
.m1{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:-19.530000px;}
.vb{vertical-align:-17.358000px;}
.v5{vertical-align:-13.607460px;}
.v9{vertical-align:-1.614000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:13.607460px;}
.va{vertical-align:17.910000px;}
.v8{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:26.627940px;}
.vc{vertical-align:29.586600px;}
.v4{vertical-align:32.722380px;}
.v7{vertical-align:37.488000px;}
.ls4c{letter-spacing:-0.868985px;}
.ls48{letter-spacing:-0.598503px;}
.ls4e{letter-spacing:-0.446156px;}
.ls49{letter-spacing:-0.190433px;}
.ls3a{letter-spacing:-0.146513px;}
.ls3b{letter-spacing:-0.091984px;}
.ls39{letter-spacing:-0.081875px;}
.ls38{letter-spacing:-0.034474px;}
.ls40{letter-spacing:-0.034020px;}
.ls3c{letter-spacing:-0.024300px;}
.ls3d{letter-spacing:-0.016232px;}
.ls41{letter-spacing:-0.014580px;}
.ls3e{letter-spacing:-0.004860px;}
.lsd{letter-spacing:0.000000px;}
.ls92{letter-spacing:0.000059px;}
.ls9{letter-spacing:0.000154px;}
.ls64{letter-spacing:0.000309px;}
.ls8b{letter-spacing:0.000447px;}
.ls82{letter-spacing:0.000644px;}
.ls62{letter-spacing:0.000649px;}
.ls88{letter-spacing:0.000699px;}
.ls79{letter-spacing:0.000808px;}
.ls5b{letter-spacing:0.000846px;}
.ls16{letter-spacing:0.000906px;}
.lsf{letter-spacing:0.001673px;}
.ls13{letter-spacing:0.001875px;}
.ls12{letter-spacing:0.002084px;}
.ls5c{letter-spacing:0.002155px;}
.ls5a{letter-spacing:0.002688px;}
.ls8a{letter-spacing:0.002693px;}
.ls0{letter-spacing:0.002725px;}
.ls81{letter-spacing:0.002818px;}
.ls72{letter-spacing:0.002822px;}
.ls74{letter-spacing:0.002832px;}
.ls7{letter-spacing:0.002870px;}
.ls65{letter-spacing:0.002872px;}
.ls60{letter-spacing:0.002940px;}
.ls11{letter-spacing:0.003291px;}
.lsc{letter-spacing:0.003488px;}
.lsa{letter-spacing:0.003494px;}
.ls10{letter-spacing:0.003562px;}
.ls66{letter-spacing:0.003752px;}
.ls63{letter-spacing:0.003851px;}
.ls5d{letter-spacing:0.004435px;}
.ls7b{letter-spacing:0.004800px;}
.ls61{letter-spacing:0.005415px;}
.ls26{letter-spacing:0.009720px;}
.ls20{letter-spacing:0.010822px;}
.ls43{letter-spacing:0.014580px;}
.ls3f{letter-spacing:0.019440px;}
.ls28{letter-spacing:0.029160px;}
.ls44{letter-spacing:0.032789px;}
.ls27{letter-spacing:0.034020px;}
.ls22{letter-spacing:0.038880px;}
.ls25{letter-spacing:0.043740px;}
.ls42{letter-spacing:0.053654px;}
.ls1e{letter-spacing:0.059519px;}
.ls21{letter-spacing:0.063180px;}
.ls1f{letter-spacing:0.064930px;}
.ls24{letter-spacing:0.068040px;}
.ls23{letter-spacing:0.111780px;}
.ls1d{letter-spacing:0.155131px;}
.ls1c{letter-spacing:0.163750px;}
.ls4d{letter-spacing:0.207142px;}
.ls2b{letter-spacing:0.286556px;}
.ls2a{letter-spacing:0.290183px;}
.ls2d{letter-spacing:0.294717px;}
.ls80{letter-spacing:0.524565px;}
.ls7f{letter-spacing:0.530447px;}
.ls8f{letter-spacing:0.535835px;}
.ls6c{letter-spacing:0.537726px;}
.ls69{letter-spacing:0.537859px;}
.ls86{letter-spacing:0.539637px;}
.ls67{letter-spacing:0.541677px;}
.ls8e{letter-spacing:0.541841px;}
.ls6b{letter-spacing:0.543763px;}
.ls8d{letter-spacing:0.545573px;}
.ls87{letter-spacing:0.545703px;}
.ls71{letter-spacing:0.545746px;}
.ls70{letter-spacing:0.547627px;}
.ls68{letter-spacing:0.547738px;}
.ls8c{letter-spacing:0.551696px;}
.ls29{letter-spacing:0.558602px;}
.ls2c{letter-spacing:0.675582px;}
.ls4b{letter-spacing:0.698253px;}
.ls45{letter-spacing:0.711855px;}
.ls4a{letter-spacing:0.811606px;}
.ls46{letter-spacing:0.856947px;}
.ls47{letter-spacing:0.947629px;}
.lse{letter-spacing:1.275394px;}
.ls8{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.989200px;}
.ls18{letter-spacing:10.756270px;}
.ls15{letter-spacing:10.761070px;}
.ls94{letter-spacing:11.560604px;}
.ls34{letter-spacing:11.951700px;}
.ls1a{letter-spacing:11.952019px;}
.lsb{letter-spacing:11.954850px;}
.ls19{letter-spacing:11.957700px;}
.ls35{letter-spacing:11.958019px;}
.ls54{letter-spacing:12.100804px;}
.ls56{letter-spacing:12.106204px;}
.ls77{letter-spacing:12.540196px;}
.ls14{letter-spacing:12.951076px;}
.ls17{letter-spacing:12.955876px;}
.ls89{letter-spacing:13.281434px;}
.ls75{letter-spacing:13.359545px;}
.ls7d{letter-spacing:13.424147px;}
.ls90{letter-spacing:13.445295px;}
.ls6e{letter-spacing:13.448400px;}
.ls6a{letter-spacing:13.449600px;}
.ls6f{letter-spacing:13.454400px;}
.ls85{letter-spacing:13.457493px;}
.ls76{letter-spacing:13.483053px;}
.ls7a{letter-spacing:13.489916px;}
.ls73{letter-spacing:13.503398px;}
.ls83{letter-spacing:13.541318px;}
.ls91{letter-spacing:13.672600px;}
.ls93{letter-spacing:13.826871px;}
.ls6d{letter-spacing:13.989859px;}
.ls55{letter-spacing:14.569960px;}
.ls53{letter-spacing:14.575360px;}
.ls52{letter-spacing:14.640751px;}
.ls4f{letter-spacing:14.789886px;}
.ls37{letter-spacing:14.939674px;}
.ls36{letter-spacing:14.942323px;}
.ls3{letter-spacing:14.944200px;}
.ls1{letter-spacing:14.945108px;}
.ls33{letter-spacing:14.947200px;}
.ls1b{letter-spacing:15.123227px;}
.ls5f{letter-spacing:15.392477px;}
.ls5e{letter-spacing:15.397344px;}
.ls50{letter-spacing:16.019861px;}
.ls30{letter-spacing:16.434600px;}
.ls31{letter-spacing:16.436932px;}
.ls2f{letter-spacing:16.437797px;}
.ls51{letter-spacing:16.442932px;}
.ls32{letter-spacing:16.443797px;}
.ls78{letter-spacing:16.726871px;}
.ls7c{letter-spacing:17.091576px;}
.ls4{letter-spacing:17.935200px;}
.ls7e{letter-spacing:19.426871px;}
.ls84{letter-spacing:20.362165px;}
.ls5{letter-spacing:70.236600px;}
.ls6{letter-spacing:72.353510px;}
.ls57{letter-spacing:166.302081px;}
.ls2e{letter-spacing:166.566372px;}
.ls59{letter-spacing:185.747481px;}
.ls58{letter-spacing:185.748500px;}
.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;}
}
.ws53{word-spacing:-179.171198px;}
.ws11{word-spacing:-17.394700px;}
.ws92{word-spacing:-15.655334px;}
.ws1{word-spacing:-14.943900px;}
.ws4d{word-spacing:-13.552455px;}
.ws4c{word-spacing:-13.461773px;}
.ws6{word-spacing:-13.449600px;}
.ws52{word-spacing:-13.416431px;}
.ws4b{word-spacing:-13.316681px;}
.ws4f{word-spacing:-13.280408px;}
.ws51{word-spacing:-12.899543px;}
.ws50{word-spacing:-12.414393px;}
.wsa5{word-spacing:-12.104640px;}
.ws4e{word-spacing:-12.006323px;}
.ws1c{word-spacing:-11.955150px;}
.ws4{word-spacing:-11.357400px;}
.ws47{word-spacing:-10.936750px;}
.ws31{word-spacing:-10.894176px;}
.ws3d{word-spacing:-10.759680px;}
.ws48{word-spacing:-10.642463px;}
.ws49{word-spacing:-10.374044px;}
.ws4a{word-spacing:-10.370416px;}
.wsc0{word-spacing:-5.110848px;}
.wsc1{word-spacing:-4.949453px;}
.ws3c{word-spacing:-4.004965px;}
.ws10b{word-spacing:-3.765888px;}
.ws108{word-spacing:-3.120307px;}
.ws26{word-spacing:-3.108331px;}
.wsf3{word-spacing:-2.689920px;}
.wsf2{word-spacing:-2.636122px;}
.wsb8{word-spacing:-2.510575px;}
.wsab{word-spacing:-2.450800px;}
.ws11e{word-spacing:-2.420928px;}
.wsd6{word-spacing:-2.367130px;}
.wsaf{word-spacing:-2.211697px;}
.ws100{word-spacing:-2.098138px;}
.ws45{word-spacing:-2.032370px;}
.wsbf{word-spacing:-1.972595px;}
.ws9{word-spacing:-1.908367px;}
.ws120{word-spacing:-1.882944px;}
.wse4{word-spacing:-1.667750px;}
.wsb6{word-spacing:-1.554166px;}
.wsdc{word-spacing:-1.398758px;}
.wsb0{word-spacing:-1.374839px;}
.ws8{word-spacing:-1.322630px;}
.wsb3{word-spacing:-1.255288px;}
.wse1{word-spacing:-1.237363px;}
.wsb4{word-spacing:-1.195512px;}
.wsb5{word-spacing:-1.135736px;}
.wsbc{word-spacing:-1.016185px;}
.ws20{word-spacing:-0.956410px;}
.wse3{word-spacing:-0.914573px;}
.ws1f{word-spacing:-0.896634px;}
.ws2d{word-spacing:-0.777083px;}
.ws46{word-spacing:-0.597756px;}
.ws71{word-spacing:-0.568134px;}
.ws10e{word-spacing:-0.537984px;}
.ws103{word-spacing:-0.484186px;}
.ws70{word-spacing:-0.476150px;}
.ws10d{word-spacing:-0.430387px;}
.ws18{word-spacing:-0.418429px;}
.ws25{word-spacing:-0.358654px;}
.wsd4{word-spacing:-0.322790px;}
.wsa0{word-spacing:-0.298878px;}
.wsd2{word-spacing:-0.268992px;}
.ws14{word-spacing:-0.239102px;}
.ws6f{word-spacing:-0.237006px;}
.ws7b{word-spacing:-0.228420px;}
.wsc3{word-spacing:-0.215194px;}
.ws7a{word-spacing:-0.199260px;}
.wsb{word-spacing:-0.179327px;}
.wsa1{word-spacing:-0.161395px;}
.wsd{word-spacing:-0.119551px;}
.wsda{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.059776px;}
.ws6a{word-spacing:-0.053798px;}
.ws6d{word-spacing:-0.047401px;}
.ws33{word-spacing:-0.043577px;}
.ws3e{word-spacing:-0.043039px;}
.ws5d{word-spacing:-0.025853px;}
.ws69{word-spacing:-0.023914px;}
.ws6b{word-spacing:-0.021715px;}
.ws63{word-spacing:-0.021514px;}
.ws98{word-spacing:-0.021398px;}
.ws9a{word-spacing:-0.020544px;}
.ws9c{word-spacing:-0.019469px;}
.ws66{word-spacing:-0.019114px;}
.ws95{word-spacing:-0.018998px;}
.ws97{word-spacing:-0.018144px;}
.ws64{word-spacing:-0.017914px;}
.ws96{word-spacing:-0.016944px;}
.ws67{word-spacing:-0.016714px;}
.ws99{word-spacing:-0.014544px;}
.ws7{word-spacing:-0.013910px;}
.ws9b{word-spacing:-0.012144px;}
.ws11a{word-spacing:-0.008438px;}
.wse9{word-spacing:-0.008352px;}
.wsdb{word-spacing:-0.008083px;}
.ws5c{word-spacing:-0.007949px;}
.ws119{word-spacing:-0.006240px;}
.wsd1{word-spacing:-0.005146px;}
.ws9e{word-spacing:-0.004800px;}
.ws121{word-spacing:-0.004742px;}
.ws5{word-spacing:-0.002700px;}
.wsd5{word-spacing:-0.002304px;}
.ws3{word-spacing:-0.002066px;}
.ws113{word-spacing:-0.002045px;}
.wse6{word-spacing:-0.001997px;}
.ws0{word-spacing:0.000000px;}
.wsa3{word-spacing:0.000458px;}
.ws58{word-spacing:0.000931px;}
.ws5f{word-spacing:0.001200px;}
.ws68{word-spacing:0.001219px;}
.ws6c{word-spacing:0.001650px;}
.ws65{word-spacing:0.002419px;}
.ws62{word-spacing:0.004819px;}
.ws5b{word-spacing:0.015984px;}
.ws75{word-spacing:0.016232px;}
.ws72{word-spacing:0.021643px;}
.wscc{word-spacing:0.053798px;}
.wsc{word-spacing:0.059776px;}
.ws6e{word-spacing:0.064638px;}
.ws76{word-spacing:0.070340px;}
.ws79{word-spacing:0.097200px;}
.ws77{word-spacing:0.097394px;}
.wsc8{word-spacing:0.107597px;}
.ws13{word-spacing:0.119551px;}
.ws83{word-spacing:0.126360px;}
.ws30{word-spacing:0.130730px;}
.ws73{word-spacing:0.160380px;}
.wsce{word-spacing:0.161395px;}
.ws78{word-spacing:0.165240px;}
.ws32{word-spacing:0.174307px;}
.ws22{word-spacing:0.179327px;}
.ws74{word-spacing:0.184680px;}
.wsd7{word-spacing:0.215194px;}
.wsf{word-spacing:0.239102px;}
.wsc5{word-spacing:0.268992px;}
.ws12{word-spacing:0.298878px;}
.wsca{word-spacing:0.322790px;}
.ws3a{word-spacing:0.358654px;}
.wscb{word-spacing:0.376589px;}
.ws24{word-spacing:0.418429px;}
.wsbb{word-spacing:0.454682px;}
.wsc7{word-spacing:0.484186px;}
.ws15{word-spacing:0.537980px;}
.ws106{word-spacing:0.591782px;}
.ws21{word-spacing:0.597756px;}
.wsf7{word-spacing:0.645581px;}
.wsc6{word-spacing:0.753178px;}
.ws10f{word-spacing:0.806976px;}
.ws37{word-spacing:0.836858px;}
.ws3b{word-spacing:0.896634px;}
.ws2e{word-spacing:0.956410px;}
.ws91{word-spacing:1.016185px;}
.ws8e{word-spacing:1.075961px;}
.wsb1{word-spacing:1.135736px;}
.wsc9{word-spacing:1.183565px;}
.wsb7{word-spacing:1.195512px;}
.ws11c{word-spacing:1.237363px;}
.ws10{word-spacing:1.255288px;}
.ws23{word-spacing:1.315063px;}
.wsb9{word-spacing:1.434614px;}
.wsb2{word-spacing:1.613941px;}
.ws11b{word-spacing:1.613952px;}
.ws115{word-spacing:1.721549px;}
.ws2a{word-spacing:1.733492px;}
.ws1e{word-spacing:1.793268px;}
.ws10c{word-spacing:1.829146px;}
.ws90{word-spacing:1.912819px;}
.wsac{word-spacing:1.972595px;}
.ws8f{word-spacing:2.570351px;}
.wse7{word-spacing:2.582323px;}
.ws19{word-spacing:2.630126px;}
.wscf{word-spacing:2.636122px;}
.wsbe{word-spacing:2.689902px;}
.wsf0{word-spacing:2.851315px;}
.ws2c{word-spacing:2.869229px;}
.ws36{word-spacing:2.929004px;}
.wse{word-spacing:3.048556px;}
.ws114{word-spacing:3.066509px;}
.wsea{word-spacing:3.120307px;}
.wsef{word-spacing:3.174106px;}
.ws118{word-spacing:3.227904px;}
.ws10a{word-spacing:3.281702px;}
.ws38{word-spacing:3.347434px;}
.wsad{word-spacing:3.466985px;}
.ws39{word-spacing:3.526760px;}
.wsf1{word-spacing:3.658291px;}
.wsba{word-spacing:4.423394px;}
.ws107{word-spacing:4.626662px;}
.wsf4{word-spacing:4.734259px;}
.ws1b{word-spacing:4.782060px;}
.ws2b{word-spacing:4.841824px;}
.ws11f{word-spacing:4.841856px;}
.wse2{word-spacing:5.272243px;}
.wsd8{word-spacing:5.371411px;}
.wsd0{word-spacing:5.375126px;}
.wsf6{word-spacing:5.375923px;}
.wsd3{word-spacing:5.376998px;}
.wsf9{word-spacing:5.377133px;}
.wscd{word-spacing:5.377402px;}
.wsdd{word-spacing:5.377411px;}
.ws11d{word-spacing:5.377430px;}
.wsee{word-spacing:5.378112px;}
.wsff{word-spacing:5.378554px;}
.ws104{word-spacing:5.379072px;}
.wsec{word-spacing:5.379168px;}
.ws110{word-spacing:5.379398px;}
.wse0{word-spacing:5.379840px;}
.wse5{word-spacing:5.380454px;}
.wseb{word-spacing:5.382000px;}
.ws109{word-spacing:5.382758px;}
.ws101{word-spacing:5.487437px;}
.ws112{word-spacing:5.541235px;}
.ws28{word-spacing:5.559131px;}
.wsed{word-spacing:5.595034px;}
.ws27{word-spacing:5.678682px;}
.wsa{word-spacing:5.738458px;}
.ws29{word-spacing:5.798233px;}
.ws16{word-spacing:5.971475px;}
.ws17{word-spacing:5.977560px;}
.wsbd{word-spacing:6.216662px;}
.ws1a{word-spacing:6.336214px;}
.ws117{word-spacing:6.563405px;}
.wsd9{word-spacing:6.724800px;}
.ws102{word-spacing:6.939994px;}
.wsae{word-spacing:7.232848px;}
.wsc4{word-spacing:7.477978px;}
.wsdf{word-spacing:7.639373px;}
.wsf8{word-spacing:7.794781px;}
.ws35{word-spacing:8.607686px;}
.ws105{word-spacing:9.360922px;}
.ws111{word-spacing:10.329293px;}
.ws116{word-spacing:10.974874px;}
.wsc2{word-spacing:11.620454px;}
.wsf5{word-spacing:12.481229px;}
.wsfa{word-spacing:13.395802px;}
.wsfc{word-spacing:13.449600px;}
.wse8{word-spacing:13.503398px;}
.wsde{word-spacing:13.826189px;}
.wsfd{word-spacing:18.721843px;}
.wsfb{word-spacing:46.105229px;}
.wsfe{word-spacing:67.785984px;}
.ws9d{word-spacing:91.528666px;}
.ws42{word-spacing:137.250478px;}
.ws7d{word-spacing:138.184380px;}
.ws43{word-spacing:140.865731px;}
.ws87{word-spacing:141.411420px;}
.ws9f{word-spacing:142.654666px;}
.ws41{word-spacing:148.010158px;}
.ws84{word-spacing:152.103420px;}
.ws80{word-spacing:152.749800px;}
.ws8a{word-spacing:153.401040px;}
.ws44{word-spacing:155.154586px;}
.ws82{word-spacing:164.078460px;}
.wsa4{word-spacing:165.065040px;}
.ws7c{word-spacing:175.134960px;}
.ws86{word-spacing:202.005900px;}
.wsa7{word-spacing:209.709060px;}
.ws7f{word-spacing:214.316280px;}
.wsa8{word-spacing:225.134683px;}
.wsa6{word-spacing:225.279395px;}
.wsa9{word-spacing:226.490723px;}
.ws56{word-spacing:230.312832px;}
.ws94{word-spacing:241.608614px;}
.wsa2{word-spacing:257.767540px;}
.ws60{word-spacing:266.218666px;}
.wsaa{word-spacing:266.796625px;}
.ws5e{word-spacing:274.083600px;}
.ws59{word-spacing:276.416179px;}
.ws3f{word-spacing:276.652892px;}
.ws85{word-spacing:280.062360px;}
.ws81{word-spacing:281.685600px;}
.ws88{word-spacing:282.331980px;}
.ws7e{word-spacing:288.484740px;}
.ws40{word-spacing:292.792412px;}
.ws89{word-spacing:294.637500px;}
.ws8c{word-spacing:294.642360px;}
.ws93{word-spacing:299.172902px;}
.ws8b{word-spacing:305.008740px;}
.ws57{word-spacing:306.919872px;}
.ws8d{word-spacing:306.952740px;}
.ws61{word-spacing:336.831782px;}
.ws5a{word-spacing:350.281382px;}
.ws34{word-spacing:405.394038px;}
.ws2f{word-spacing:411.974160px;}
.ws1d{word-spacing:430.815785px;}
.ws54{word-spacing:563.712306px;}
.ws55{word-spacing:626.995133px;}
._2c{margin-left:-304.834837px;}
._2e{margin-left:-166.890318px;}
._27{margin-left:-163.947240px;}
._2d{margin-left:-97.507742px;}
._6{margin-left:-7.756687px;}
._4{margin-left:-6.649358px;}
._d{margin-left:-5.499355px;}
._2{margin-left:-4.423394px;}
._5{margin-left:-2.958912px;}
._1{margin-left:-1.063024px;}
._9{width:1.091170px;}
._3{width:2.993713px;}
._0{width:10.165172px;}
._10{width:11.955150px;}
._12{width:13.821510px;}
._a{width:15.768671px;}
._7{width:17.861069px;}
._8{width:19.797811px;}
._b{width:20.801909px;}
._49{width:21.820968px;}
._f{width:22.953830px;}
._c{width:24.183244px;}
._52{width:25.202661px;}
._13{width:26.556236px;}
._4f{width:27.862507px;}
._e{width:29.158405px;}
._47{width:31.920170px;}
._4b{width:33.355008px;}
._4c{width:35.184154px;}
._51{width:36.265712px;}
._4d{width:43.109948px;}
._24{width:58.942080px;}
._4e{width:61.868160px;}
._50{width:75.425357px;}
._4a{width:88.767360px;}
._41{width:107.274010px;}
._18{width:112.950817px;}
._16{width:118.682444px;}
._3f{width:120.723610px;}
._45{width:122.896613px;}
._42{width:124.758490px;}
._2a{width:126.092700px;}
._28{width:127.711080px;}
._43{width:142.296768px;}
._29{width:163.947240px;}
._46{width:170.321823px;}
._26{width:189.865620px;}
._17{width:195.142048px;}
._2b{width:202.176000px;}
._40{width:208.522598px;}
._44{width:212.880010px;}
._3e{width:221.972198px;}
._25{width:229.562100px;}
._30{width:272.596493px;}
._1a{width:273.923161px;}
._38{width:276.362381px;}
._32{width:281.957414px;}
._39{width:283.140979px;}
._31{width:288.628416px;}
._3b{width:289.811981px;}
._3a{width:296.590579px;}
._36{width:298.372205px;}
._34{width:300.705110px;}
._33{width:307.296461px;}
._3c{width:310.040179px;}
._20{width:314.311772px;}
._22{width:325.071452px;}
._35{width:331.613338px;}
._1b{width:368.353879px;}
._1c{width:389.930803px;}
._1f{width:395.310643px;}
._1e{width:400.690483px;}
._21{width:406.113362px;}
._1d{width:411.493202px;}
._19{width:415.591026px;}
._37{width:429.903014px;}
._2f{width:430.966038px;}
._15{width:558.479038px;}
._14{width:568.675987px;}
._3d{width:651.444826px;}
._23{width:1447.359283px;}
._48{width:1515.546193px;}
._11{width:1539.456493px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc6{color:rgb(26,71,111);}
.fc0{color:rgb(14,15,14);}
.fsf{font-size:29.808000px;}
.fs14{font-size:35.865600px;}
.fs10{font-size:36.272880px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fsb{font-size:43.038720px;}
.fsc{font-size:43.092000px;}
.fsa{font-size:43.576704px;}
.fs11{font-size:45.341100px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fs15{font-size:48.418560px;}
.fse{font-size:48.600000px;}
.fs12{font-size:50.522400px;}
.fs6{font-size:53.798400px;}
.fsd{font-size:54.108000px;}
.fs13{font-size:54.409320px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fs3{font-size:107.596800px;}
.yfb{bottom:-503.894790px;}
.yfc{bottom:-500.493195px;}
.yf9{bottom:-487.452600px;}
.yfa{bottom:-484.050195px;}
.yf7{bottom:-471.089790px;}
.yf8{bottom:-467.688195px;}
.yf5{bottom:-454.647600px;}
.yf6{bottom:-451.245195px;}
.yf3{bottom:-438.285465px;}
.yf4{bottom:-434.883195px;}
.ye8{bottom:-421.922790px;}
.yf2{bottom:-418.521195px;}
.yf0{bottom:-405.480600px;}
.yf1{bottom:-402.078195px;}
.yee{bottom:-389.118600px;}
.yef{bottom:-385.716195px;}
.yec{bottom:-372.755790px;}
.yed{bottom:-369.354060px;}
.yea{bottom:-356.312790px;}
.yeb{bottom:-352.911195px;}
.ye9{bottom:-339.950385px;}
.ye6{bottom:-323.588790px;}
.ye7{bottom:-320.187195px;}
.ye4{bottom:-307.146600px;}
.ye5{bottom:-303.744195px;}
.ye2{bottom:-290.784195px;}
.ye3{bottom:-287.382195px;}
.ye1{bottom:-274.341600px;}
.ydb{bottom:-274.340655px;}
.ydf{bottom:-257.979600px;}
.ye0{bottom:-254.577195px;}
.ydd{bottom:-241.615845px;}
.yde{bottom:-238.215195px;}
.ydc{bottom:-225.173250px;}
.yd9{bottom:-208.812060px;}
.yda{bottom:-205.410195px;}
.yd8{bottom:-200.631060px;}
.yd7{bottom:-175.358655px;}
.yd6{bottom:-158.916060px;}
.yd4{bottom:-158.592195px;}
.yd5{bottom:-141.906600px;}
.yd3{bottom:-116.067195px;}
.yd2{bottom:-81.884928px;}
.yd1{bottom:-55.641195px;}
.yd0{bottom:-21.621195px;}
.y0{bottom:0.000000px;}
.ycf{bottom:0.329441px;}
.y17{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.y16{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y139{bottom:21.713805px;}
.y2{bottom:37.114269px;}
.y137{bottom:40.343805px;}
.y136{bottom:58.406805px;}
.y119{bottom:59.459805px;}
.y32{bottom:63.780000px;}
.y135{bottom:68.774805px;}
.y118{bottom:69.827805px;}
.y134{bottom:79.142805px;}
.y117{bottom:80.195805px;}
.y133{bottom:89.510805px;}
.y116{bottom:90.563805px;}
.y132{bottom:99.878805px;}
.y115{bottom:100.931805px;}
.y31{bottom:108.612000px;}
.y268{bottom:108.957000px;}
.y131{bottom:110.570805px;}
.y114{bottom:111.299805px;}
.y130{bottom:120.938805px;}
.y113{bottom:121.667805px;}
.y1bf{bottom:124.069500px;}
.y267{bottom:128.325000px;}
.y30{bottom:128.875500px;}
.y12f{bottom:131.306805px;}
.y112{bottom:132.035805px;}
.y206{bottom:136.870500px;}
.y234{bottom:139.891500px;}
.y12e{bottom:141.674805px;}
.y111{bottom:142.403805px;}
.y1be{bottom:144.333000px;}
.y156{bottom:146.754000px;}
.y266{bottom:147.691500px;}
.y1e8{bottom:148.168500px;}
.y2f{bottom:149.139000px;}
.y12d{bottom:152.042805px;}
.y110{bottom:152.771805px;}
.y205{bottom:157.134000px;}
.y233{bottom:159.258000px;}
.y62{bottom:160.392000px;}
.yca{bottom:161.599500px;}
.y12c{bottom:162.410805px;}
.y185{bottom:162.507300px;}
.y10f{bottom:163.139805px;}
.y155{bottom:164.472000px;}
.y1bd{bottom:164.596500px;}
.y265{bottom:167.059500px;}
.y97{bottom:167.425500px;}
.y1e7{bottom:168.432000px;}
.y2e{bottom:169.404000px;}
.y184{bottom:169.903950px;}
.y12b{bottom:172.778805px;}
.y10e{bottom:173.507805px;}
.y186{bottom:177.301950px;}
.y204{bottom:177.399000px;}
.y232{bottom:178.626000px;}
.y61{bottom:180.657000px;}
.y154{bottom:181.267500px;}
.yc9{bottom:181.863000px;}
.y12a{bottom:183.146805px;}
.y10d{bottom:183.875805px;}
.y1bc{bottom:184.861500px;}
.y264{bottom:186.427500px;}
.y96{bottom:187.689000px;}
.y1e6{bottom:188.697000px;}
.y2d{bottom:189.667500px;}
.y182{bottom:192.096600px;}
.y129{bottom:193.514805px;}
.y10c{bottom:194.243805px;}
.y203{bottom:197.662500px;}
.y231{bottom:197.992500px;}
.y153{bottom:198.063000px;}
.y181{bottom:199.493250px;}
.y60{bottom:200.920500px;}
.yc8{bottom:202.126500px;}
.y128{bottom:203.882805px;}
.y10b{bottom:204.935805px;}
.y1bb{bottom:205.125000px;}
.y263{bottom:205.794000px;}
.y183{bottom:206.889900px;}
.y95{bottom:207.954000px;}
.y1e5{bottom:208.960500px;}
.y2c{bottom:209.932500px;}
.y127{bottom:214.250805px;}
.y152{bottom:214.858500px;}
.y10a{bottom:215.303805px;}
.y230{bottom:217.360500px;}
.y202{bottom:217.927500px;}
.y5f{bottom:221.184000px;}
.y17f{bottom:221.684550px;}
.yc7{bottom:222.391500px;}
.y126{bottom:224.618805px;}
.y262{bottom:225.162000px;}
.y1ba{bottom:225.390000px;}
.y109{bottom:225.671805px;}
.y94{bottom:228.217500px;}
.y17e{bottom:229.082550px;}
.y1e4{bottom:229.224000px;}
.y2b{bottom:230.196000px;}
.y151{bottom:231.654000px;}
.y125{bottom:234.986805px;}
.y108{bottom:236.039805px;}
.y180{bottom:236.479200px;}
.y22f{bottom:236.728500px;}
.y201{bottom:238.191000px;}
.y5e{bottom:241.449000px;}
.yc6{bottom:242.655000px;}
.y261{bottom:244.528500px;}
.y124{bottom:245.273940px;}
.y1b9{bottom:245.653500px;}
.y107{bottom:246.326805px;}
.y150{bottom:248.449500px;}
.y93{bottom:248.481000px;}
.y1e3{bottom:249.489000px;}
.y2a{bottom:250.459500px;}
.y17d{bottom:251.273850px;}
.y123{bottom:255.641805px;}
.y22e{bottom:256.095000px;}
.y106{bottom:256.694805px;}
.y200{bottom:258.454500px;}
.y149{bottom:259.579500px;}
.y5d{bottom:261.712500px;}
.yc5{bottom:262.920000px;}
.y260{bottom:263.896500px;}
.y14f{bottom:265.245000px;}
.y1b8{bottom:265.917000px;}
.y122{bottom:266.009805px;}
.y17c{bottom:266.068500px;}
.y105{bottom:267.062805px;}
.y92{bottom:268.746000px;}
.y1e2{bottom:269.752500px;}
.y29{bottom:270.724500px;}
.y22d{bottom:275.463000px;}
.y121{bottom:276.701805px;}
.y104{bottom:277.430805px;}
.y1ff{bottom:278.719500px;}
.y17a{bottom:280.863150px;}
.y5c{bottom:281.977500px;}
.y14e{bottom:282.042000px;}
.yc4{bottom:283.183500px;}
.y25f{bottom:283.264500px;}
.y1b7{bottom:286.182000px;}
.y120{bottom:287.069805px;}
.y103{bottom:287.798940px;}
.y179{bottom:288.261150px;}
.y91{bottom:289.009500px;}
.y1e1{bottom:290.017500px;}
.y28{bottom:290.988000px;}
.y22c{bottom:294.829500px;}
.y17b{bottom:295.657800px;}
.y11f{bottom:297.437805px;}
.y102{bottom:298.166805px;}
.y14d{bottom:298.837500px;}
.y1fe{bottom:298.983000px;}
.y5b{bottom:302.241000px;}
.y25e{bottom:302.631000px;}
.yc3{bottom:303.447000px;}
.y1b6{bottom:306.445500px;}
.y11e{bottom:307.805805px;}
.y101{bottom:308.534805px;}
.y90{bottom:309.274500px;}
.y1e0{bottom:310.281000px;}
.y22b{bottom:314.197500px;}
.y14c{bottom:315.633000px;}
.y178{bottom:317.256450px;}
.y177{bottom:317.963850px;}
.y11d{bottom:318.173805px;}
.y100{bottom:318.902805px;}
.y1fd{bottom:319.248000px;}
.y27{bottom:320.218500px;}
.y25d{bottom:321.999000px;}
.y5a{bottom:322.504500px;}
.yc2{bottom:323.712000px;}
.y1b5{bottom:326.710500px;}
.y11c{bottom:328.541805px;}
.yff{bottom:329.270805px;}
.y8f{bottom:329.538000px;}
.y174{bottom:330.396000px;}
.y1df{bottom:330.544500px;}
.y14b{bottom:332.428500px;}
.y176{bottom:332.758500px;}
.y22a{bottom:333.565500px;}
.y171{bottom:337.494300px;}
.y173{bottom:338.532450px;}
.y11b{bottom:338.909805px;}
.y1fc{bottom:339.511500px;}
.yfe{bottom:339.638805px;}
.y25c{bottom:341.367000px;}
.y59{bottom:342.769500px;}
.yc1{bottom:343.975500px;}
.y1b4{bottom:346.974000px;}
.y175{bottom:347.553150px;}
.y14a{bottom:349.224000px;}
.y11a{bottom:349.277805px;}
.y8e{bottom:349.801500px;}
.yfd{bottom:350.006805px;}
.y1de{bottom:350.809500px;}
.y229{bottom:352.932000px;}
.y172{bottom:353.327100px;}
.y1fb{bottom:359.775000px;}
.y25b{bottom:360.733500px;}
.y58{bottom:363.033000px;}
.y138{bottom:363.452805px;}
.yc0{bottom:364.240500px;}
.y1b3{bottom:367.237500px;}
.y8d{bottom:370.066500px;}
.y1dd{bottom:371.073000px;}
.y228{bottom:372.300000px;}
.y148{bottom:373.221000px;}
.y1fa{bottom:380.040000px;}
.y25a{bottom:380.101500px;}
.y170{bottom:383.257500px;}
.y57{bottom:383.298000px;}
.ybf{bottom:384.504000px;}
.y26b{bottom:387.291000px;}
.y1b2{bottom:387.502500px;}
.y147{bottom:390.063000px;}
.y8c{bottom:390.330000px;}
.y1dc{bottom:391.338000px;}
.y227{bottom:391.666500px;}
.y26{bottom:396.634500px;}
.y259{bottom:399.468000px;}
.y1f9{bottom:400.303500px;}
.y16f{bottom:402.490500px;}
.y56{bottom:403.561500px;}
.ybe{bottom:404.767500px;}
.y26a{bottom:406.657500px;}
.y146{bottom:407.310000px;}
.y1b1{bottom:407.766000px;}
.y8b{bottom:410.595000px;}
.y226{bottom:411.034500px;}
.y1db{bottom:411.601500px;}
.yce{bottom:418.532878px;}
.y258{bottom:418.836000px;}
.y55{bottom:423.825000px;}
.y145{bottom:424.509000px;}
.y141{bottom:424.591500px;}
.y269{bottom:426.025500px;}
.y1b0{bottom:428.031000px;}
.y1f8{bottom:429.534000px;}
.y225{bottom:430.402500px;}
.y1da{bottom:431.865000px;}
.y25{bottom:434.832000px;}
.ycd{bottom:436.757805px;}
.y257{bottom:438.204000px;}
.y16e{bottom:439.602000px;}
.y8a{bottom:439.824000px;}
.y144{bottom:441.304500px;}
.y54{bottom:444.090000px;}
.ybd{bottom:446.341500px;}
.y1af{bottom:448.294500px;}
.y224{bottom:449.769000px;}
.y1d9{bottom:452.130000px;}
.y24{bottom:455.095500px;}
.y256{bottom:457.570500px;}
.y143{bottom:458.100000px;}
.y16d{bottom:459.867000px;}
.y53{bottom:464.353500px;}
.ybc{bottom:466.590000px;}
.y223{bottom:469.137000px;}
.ycc{bottom:470.372805px;}
.y89{bottom:474.643500px;}
.y142{bottom:474.895500px;}
.y23{bottom:475.359000px;}
.y255{bottom:476.938500px;}
.y1ae{bottom:477.525000px;}
.ybb{bottom:480.026400px;}
.y16c{bottom:480.130500px;}
.y1d8{bottom:481.360500px;}
.y52{bottom:484.618500px;}
.y222{bottom:488.503500px;}
.yba{bottom:493.462800px;}
.y88{bottom:494.908500px;}
.y22{bottom:495.624000px;}
.y254{bottom:496.305000px;}
.y140{bottom:498.894000px;}
.y16b{bottom:500.394000px;}
.y51{bottom:504.882000px;}
.y13f{bottom:506.481000px;}
.yb9{bottom:506.899200px;}
.y221{bottom:507.871500px;}
.y1ad{bottom:512.344500px;}
.y87{bottom:515.172000px;}
.y253{bottom:515.673000px;}
.y21{bottom:515.887500px;}
.y1d7{bottom:516.180000px;}
.yb8{bottom:520.335600px;}
.y16a{bottom:520.659000px;}
.y1f7{bottom:525.145500px;}
.y220{bottom:527.239500px;}
.y1ac{bottom:532.608000px;}
.yb7{bottom:533.772000px;}
.y50{bottom:534.112500px;}
.y252{bottom:535.041000px;}
.y86{bottom:535.437000px;}
.y20{bottom:536.152500px;}
.y1d6{bottom:536.443500px;}
.y13e{bottom:539.329500px;}
.yb0{bottom:542.674800px;}
.y1f6{bottom:545.410500px;}
.y21f{bottom:546.606000px;}
.yb6{bottom:547.208400px;}
.y169{bottom:549.889500px;}
.y1ab{bottom:552.873000px;}
.y251{bottom:554.407500px;}
.y13d{bottom:555.768000px;}
.y1f{bottom:556.416000px;}
.y1d5{bottom:556.708500px;}
.yb5{bottom:560.644800px;}
.y1f5{bottom:565.674000px;}
.y21e{bottom:565.974000px;}
.y4f{bottom:568.932000px;}
.y13c{bottom:570.394500px;}
.y1aa{bottom:573.136500px;}
.y250{bottom:573.775500px;}
.yb4{bottom:574.081200px;}
.y1e{bottom:576.679500px;}
.y1d4{bottom:576.972000px;}
.y85{bottom:580.679850px;}
.y21d{bottom:585.340500px;}
.y1f4{bottom:585.939000px;}
.yb3{bottom:587.517600px;}
.y4e{bottom:589.195500px;}
.y24f{bottom:593.142000px;}
.y1a9{bottom:593.401500px;}
.y84{bottom:593.995035px;}
.y1d{bottom:596.944500px;}
.y1d3{bottom:597.235500px;}
.y81{bottom:600.652020px;}
.yb2{bottom:600.954000px;}
.y21c{bottom:604.708500px;}
.y1f3{bottom:606.202500px;}
.y83{bottom:607.310220px;}
.y4d{bottom:609.460500px;}
.y168{bottom:610.305000px;}
.y13b{bottom:611.385000px;}
.y24e{bottom:612.510000px;}
.y1a8{bottom:613.665000px;}
.yb1{bottom:614.390400px;}
.y1c{bottom:617.208000px;}
.y1d2{bottom:617.500500px;}
.y82{bottom:620.625405px;}
.y21b{bottom:624.076500px;}
.y1f2{bottom:626.466000px;}
.y167{bottom:628.071000px;}
.y4c{bottom:629.724000px;}
.y24d{bottom:631.878000px;}
.yaf{bottom:633.589200px;}
.y1a7{bottom:633.928500px;}
.y1b{bottom:637.473000px;}
.y1d1{bottom:637.764000px;}
.y80{bottom:639.773805px;}
.y13a{bottom:641.079000px;}
.y21a{bottom:643.443000px;}
.y166{bottom:645.270000px;}
.y1f1{bottom:646.731000px;}
.yae{bottom:647.025600px;}
.y4b{bottom:649.987500px;}
.y24c{bottom:651.244500px;}
.y7e{bottom:653.088990px;}
.y1a6{bottom:654.193500px;}
.y1a{bottom:657.736500px;}
.y1d0{bottom:658.029000px;}
.yad{bottom:660.462000px;}
.y165{bottom:662.065500px;}
.y219{bottom:662.811000px;}
.ycb{bottom:663.508500px;}
.y7f{bottom:666.404175px;}
.y1f0{bottom:666.994500px;}
.y4a{bottom:670.252500px;}
.y24b{bottom:670.612500px;}
.yac{bottom:673.898400px;}
.ya8{bottom:673.964400px;}
.y1a5{bottom:674.457000px;}
.y19{bottom:678.000000px;}
.y1cf{bottom:678.292500px;}
.y164{bottom:678.861000px;}
.y218{bottom:682.177500px;}
.y7d{bottom:685.552575px;}
.y1ef{bottom:687.258000px;}
.yab{bottom:687.334800px;}
.y24a{bottom:689.979000px;}
.y49{bottom:690.516000px;}
.y1a4{bottom:694.722000px;}
.y163{bottom:695.656500px;}
.y18{bottom:698.265000px;}
.y1ce{bottom:698.556000px;}
.y7b{bottom:698.867760px;}
.yaa{bottom:700.771200px;}
.y217{bottom:701.545500px;}
.y1ee{bottom:707.523000px;}
.y249{bottom:709.347000px;}
.y48{bottom:710.781000px;}
.y7c{bottom:712.182945px;}
.y162{bottom:712.452000px;}
.ya9{bottom:714.207600px;}
.y1a3{bottom:714.985500px;}
.y1cd{bottom:718.821000px;}
.y216{bottom:720.913500px;}
.y1ed{bottom:727.786500px;}
.y248{bottom:728.715000px;}
.y161{bottom:729.247500px;}
.y47{bottom:731.044500px;}
.y7a{bottom:731.332560px;}
.ya7{bottom:733.406400px;}
.y1a2{bottom:735.249000px;}
.y15{bottom:735.638964px;}
.y1cc{bottom:739.084500px;}
.ya5{bottom:739.476000px;}
.y14{bottom:743.584500px;}
.y78{bottom:744.647745px;}
.y160{bottom:746.043000px;}
.ya6{bottom:746.842800px;}
.y1ec{bottom:748.051500px;}
.y247{bottom:748.081500px;}
.y215{bottom:749.247000px;}
.y46{bottom:751.308000px;}
.y79{bottom:757.962930px;}
.y15f{bottom:762.838500px;}
.y1a1{bottom:764.479500px;}
.ya2{bottom:765.754800px;}
.y246{bottom:767.449500px;}
.y1cb{bottom:768.315000px;}
.y45{bottom:771.573000px;}
.ya4{bottom:772.330800px;}
.y13{bottom:775.410000px;}
.y77{bottom:777.111330px;}
.ya0{bottom:778.905600px;}
.y15e{bottom:779.634000px;}
.ya3{bottom:785.481600px;}
.y245{bottom:786.816000px;}
.y1eb{bottom:788.578500px;}
.y214{bottom:788.698500px;}
.y75{bottom:790.426515px;}
.y44{bottom:791.836500px;}
.ya1{bottom:792.056400px;}
.y12{bottom:793.567500px;}
.y15d{bottom:796.429500px;}
.y1a0{bottom:799.299000px;}
.y1ca{bottom:803.134500px;}
.y76{bottom:803.741700px;}
.y213{bottom:803.896500px;}
.y244{bottom:806.184000px;}
.y1ea{bottom:808.843500px;}
.y43{bottom:812.101500px;}
.y15c{bottom:813.225000px;}
.y11{bottom:816.607500px;}
.y212{bottom:819.094500px;}
.y19f{bottom:819.564000px;}
.y9f{bottom:820.300500px;}
.y74{bottom:822.890100px;}
.y1c9{bottom:823.398000px;}
.y243{bottom:825.552000px;}
.y42{bottom:832.365000px;}
.y211{bottom:834.292500px;}
.y10{bottom:834.763500px;}
.y73{bottom:836.205285px;}
.y15b{bottom:837.222000px;}
.y1e9{bottom:838.074000px;}
.y19e{bottom:839.827500px;}
.y70{bottom:842.863485px;}
.y1c8{bottom:843.663000px;}
.y242{bottom:844.918500px;}
.yf{bottom:848.038500px;}
.y72{bottom:849.520470px;}
.y41{bottom:852.628500px;}
.y9e{bottom:857.412000px;}
.y210{bottom:858.457500px;}
.y19d{bottom:860.092500px;}
.y15a{bottom:861.220500px;}
.y71{bottom:862.835655px;}
.y1c7{bottom:863.926500px;}
.y241{bottom:864.286500px;}
.y158{bottom:869.328000px;}
.ye{bottom:871.078500px;}
.y40{bottom:872.893500px;}
.y9d{bottom:877.675500px;}
.y19c{bottom:880.356000px;}
.y6f{bottom:881.984055px;}
.y20f{bottom:882.622500px;}
.y240{bottom:883.653000px;}
.y1c6{bottom:884.191500px;}
.y159{bottom:885.219000px;}
.y6d{bottom:888.642255px;}
.yd{bottom:889.234500px;}
.y3f{bottom:893.157000px;}
.y6e{bottom:895.299240px;}
.y20e{bottom:897.820500px;}
.y9c{bottom:897.940500px;}
.yc{bottom:902.509500px;}
.y23f{bottom:903.021000px;}
.y1c5{bottom:904.455000px;}
.y3e{bottom:913.422000px;}
.y6b{bottom:914.448855px;}
.y157{bottom:916.837500px;}
.y6c{bottom:921.105840px;}
.y20d{bottom:921.984000px;}
.y23e{bottom:922.389000px;}
.y1c4{bottom:924.718500px;}
.yb{bottom:925.549500px;}
.y19a{bottom:926.381100px;}
.y9b{bottom:927.169500px;}
.y69{bottom:927.764040px;}
.y3d{bottom:933.685500px;}
.y199{bottom:933.779100px;}
.y20c{bottom:937.182000px;}
.y6a{bottom:941.079225px;}
.y19b{bottom:941.175750px;}
.y23d{bottom:941.755500px;}
.y1c3{bottom:944.983500px;}
.ya{bottom:947.508000px;}
.y3c{bottom:953.949000px;}
.y197{bottom:955.970400px;}
.y68{bottom:960.516795px;}
.y23c{bottom:961.123500px;}
.y20b{bottom:961.347000px;}
.y9a{bottom:961.989000px;}
.y196{bottom:963.368400px;}
.y1c2{bottom:965.247000px;}
.y9{bottom:967.771500px;}
.y198{bottom:970.765050px;}
.y3b{bottom:974.214000px;}
.y20a{bottom:976.545000px;}
.y23b{bottom:980.490000px;}
.y99{bottom:982.254000px;}
.y1c1{bottom:985.512000px;}
.y194{bottom:985.559700px;}
.y67{bottom:988.927500px;}
.y209{bottom:991.743000px;}
.y193{bottom:992.957700px;}
.y3a{bottom:994.477500px;}
.y23a{bottom:999.858000px;}
.y195{bottom:1000.354350px;}
.y1c0{bottom:1005.775500px;}
.y208{bottom:1006.941000px;}
.y8{bottom:1010.451000px;}
.y98{bottom:1011.484500px;}
.y39{bottom:1014.742500px;}
.y191{bottom:1015.149000px;}
.y239{bottom:1019.226000px;}
.y207{bottom:1022.139000px;}
.y190{bottom:1022.547000px;}
.y66{bottom:1026.039000px;}
.y192{bottom:1029.943650px;}
.y38{bottom:1035.006000px;}
.y238{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.y65{bottom:1046.304000px;}
.y18f{bottom:1051.542300px;}
.y18e{bottom:1052.249700px;}
.y37{bottom:1055.269500px;}
.y237{bottom:1057.960500px;}
.y18b{bottom:1064.681850px;}
.y64{bottom:1066.567500px;}
.y18d{bottom:1067.044350px;}
.y6{bottom:1071.244500px;}
.y188{bottom:1071.780150px;}
.y18a{bottom:1072.818300px;}
.y36{bottom:1075.534500px;}
.y236{bottom:1077.327000px;}
.y18c{bottom:1081.839000px;}
.y63{bottom:1086.832500px;}
.y189{bottom:1087.612950px;}
.y35{bottom:1095.798000px;}
.y235{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y34{bottom:1116.063000px;}
.y187{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.h21{height:21.868511px;}
.h20{height:21.869051px;}
.h1f{height:21.869591px;}
.hb{height:25.508090px;}
.h2c{height:26.110157px;}
.h22{height:26.407648px;}
.h9{height:30.461558px;}
.h16{height:31.116995px;}
.h17{height:31.332188px;}
.h12{height:31.505957px;}
.h19{height:31.603605px;}
.h13{height:31.723841px;}
.h23{height:33.009561px;}
.hd{height:33.112997px;}
.hc{height:34.199443px;}
.h2e{height:35.006619px;}
.h10{height:35.100320px;}
.h31{height:35.248712px;}
.h1e{height:35.477051px;}
.h2d{height:35.638419px;}
.h1b{height:35.643164px;}
.h34{height:36.104462px;}
.h24{height:36.781689px;}
.h36{height:37.927872px;}
.h35{height:38.412058px;}
.h27{height:38.896243px;}
.h1c{height:38.942965px;}
.ha{height:39.165235px;}
.h3{height:39.402747px;}
.h33{height:39.488026px;}
.h1a{height:39.497783px;}
.h25{height:39.611473px;}
.h4{height:41.001535px;}
.h11{height:42.679778px;}
.he{height:43.217759px;}
.hf{height:43.516637px;}
.h5{height:43.875290px;}
.h2a{height:48.377558px;}
.h2b{height:49.985558px;}
.h29{height:49.991558px;}
.h2{height:50.931027px;}
.h8{height:54.541601px;}
.h7{height:54.547601px;}
.h14{height:58.351781px;}
.h15{height:58.356641px;}
.h2f{height:61.639419px;}
.h30{height:64.835312px;}
.h32{height:64.840712px;}
.h1d{height:68.199431px;}
.h28{height:75.999235px;}
.h26{height:76.384243px;}
.h6{height:77.792486px;}
.h18{height:399.678300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w4{width:545.359905px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x69{left:-24.824745px;}
.x0{left:0.000000px;}
.x6b{left:3.849790px;}
.x7{left:29.274117px;}
.x93{left:35.196255px;}
.x94{left:38.436255px;}
.x8c{left:41.676255px;}
.x8f{left:51.720255px;}
.x8d{left:56.904255px;}
.x2{left:59.014071px;}
.x90{left:60.144255px;}
.x92{left:62.412255px;}
.x8e{left:65.652255px;}
.x91{left:69.864255px;}
.x75{left:75.209850px;}
.x77{left:76.587255px;}
.x72{left:78.369255px;}
.x6c{left:86.631255px;}
.x6d{left:92.869065px;}
.x6a{left:95.946255px;}
.x95{left:105.180255px;}
.xc1{left:113.547000px;}
.x1{left:114.802500px;}
.x73{left:120.489255px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x76{left:124.377255px;}
.x48{left:125.600445px;}
.x7f{left:128.832255px;}
.x7e{left:131.424255px;}
.x7d{left:133.368255px;}
.x7c{left:134.664255px;}
.x7b{left:136.608255px;}
.xa8{left:138.019650px;}
.x65{left:139.360500px;}
.x44{left:141.205905px;}
.x4{left:145.794000px;}
.xdb{left:147.075000px;}
.x55{left:149.918100px;}
.x4f{left:151.789770px;}
.xb3{left:154.681350px;}
.x4d{left:156.201435px;}
.xe6{left:161.634000px;}
.x4b{left:163.376010px;}
.x49{left:166.877640px;}
.x43{left:168.446205px;}
.x3b{left:171.018000px;}
.x68{left:173.779095px;}
.x3c{left:175.306500px;}
.xb4{left:176.923950px;}
.x42{left:177.958500px;}
.x96{left:179.943255px;}
.x63{left:182.031300px;}
.x66{left:184.722900px;}
.x67{left:186.503700px;}
.xf7{left:190.354500px;}
.x8{left:192.019500px;}
.x6f{left:195.333660px;}
.xa1{left:198.055500px;}
.xd0{left:199.822500px;}
.xe7{left:202.626000px;}
.x80{left:209.103255px;}
.x6e{left:210.804255px;}
.x97{left:212.019255px;}
.x74{left:214.530255px;}
.x81{left:215.583255px;}
.x7a{left:217.527255px;}
.x9c{left:220.069500px;}
.xee{left:221.791500px;}
.xb8{left:225.838500px;}
.x54{left:230.049000px;}
.x57{left:232.275300px;}
.x56{left:235.486500px;}
.xec{left:236.764500px;}
.xd9{left:238.171500px;}
.x99{left:239.281500px;}
.xd1{left:240.418500px;}
.x104{left:241.791000px;}
.x64{left:243.249300px;}
.xb9{left:244.443000px;}
.x58{left:247.257300px;}
.x98{left:249.033000px;}
.xb{left:251.011500px;}
.x39{left:254.056500px;}
.xba{left:255.498000px;}
.xda{left:257.034000px;}
.xc{left:258.483000px;}
.x30{left:260.518500px;}
.xd{left:265.806000px;}
.x45{left:266.912235px;}
.x3a{left:269.001000px;}
.x82{left:270.663255px;}
.xe{left:273.277500px;}
.x31{left:275.461500px;}
.xf8{left:278.766000px;}
.x83{left:281.679255px;}
.x9f{left:285.493500px;}
.xf9{left:286.876500px;}
.x32{left:289.533000px;}
.xa0{left:294.166500px;}
.x33{left:296.893500px;}
.x59{left:302.862900px;}
.x9d{left:307.990500px;}
.x34{left:311.838000px;}
.xf2{left:313.000500px;}
.x9e{left:314.520000px;}
.xef{left:316.450500px;}
.xf0{left:320.310000px;}
.x5a{left:325.646100px;}
.xc2{left:327.783000px;}
.x70{left:336.355065px;}
.x87{left:339.999255px;}
.x8b{left:342.267255px;}
.x5b{left:344.663700px;}
.xa7{left:345.741450px;}
.x86{left:346.803255px;}
.x88{left:349.395255px;}
.x71{left:352.150065px;}
.x84{left:353.607255px;}
.xa2{left:355.859700px;}
.x85{left:357.819255px;}
.xbd{left:359.509500px;}
.xc3{left:361.480500px;}
.x89{left:363.003255px;}
.x9{left:364.296000px;}
.x8a{left:365.595255px;}
.x78{left:368.268255px;}
.x50{left:370.138500px;}
.xa{left:371.767500px;}
.x79{left:374.343255px;}
.xd2{left:375.892500px;}
.xc4{left:380.236500px;}
.xc5{left:384.046500px;}
.x51{left:385.083000px;}
.xd8{left:387.109500px;}
.xa9{left:388.836150px;}
.xd3{left:390.835500px;}
.x52{left:392.412000px;}
.x105{left:395.271000px;}
.x3e{left:397.216500px;}
.xc6{left:398.991000px;}
.xdf{left:400.279500px;}
.x35{left:401.353500px;}
.x106{left:402.615000px;}
.xb2{left:405.214500px;}
.x3f{left:406.227000px;}
.x53{left:407.356500px;}
.xce{left:409.027500px;}
.x36{left:416.298000px;}
.x9a{left:418.828500px;}
.xc7{left:421.555500px;}
.x5d{left:422.939700px;}
.xcf{left:423.970500px;}
.x2c{left:425.592000px;}
.x5c{left:427.798500px;}
.xe0{left:431.832000px;}
.x2d{left:433.063500px;}
.xa3{left:435.399000px;}
.x2e{left:436.747500px;}
.xe1{left:438.274500px;}
.xf4{left:440.386500px;}
.xaa{left:442.505400px;}
.xb1{left:445.532100px;}
.xfb{left:447.262500px;}
.xb0{left:448.557450px;}
.x2f{left:451.690500px;}
.x17{left:454.684500px;}
.xbc{left:457.896000px;}
.xc8{left:460.897500px;}
.xc9{left:464.610000px;}
.xf3{left:467.610000px;}
.x18{left:469.629000px;}
.xf{left:471.096000px;}
.x19{left:477.190500px;}
.x10{left:478.567500px;}
.xbe{left:483.364500px;}
.xe2{left:490.836000px;}
.x1a{left:492.135000px;}
.xe3{left:498.180000px;}
.xab{left:499.201350px;}
.x37{left:500.530500px;}
.xca{left:501.925500px;}
.xfa{left:503.713500px;}
.x38{left:508.002000px;}
.x46{left:509.810175px;}
.x13{left:512.128500px;}
.x40{left:515.325000px;}
.xcb{left:516.870000px;}
.xcc{left:520.582500px;}
.x4c{left:521.613900px;}
.x14{left:527.073000px;}
.xf5{left:528.157500px;}
.x41{left:530.268000px;}
.xf6{left:532.018500px;}
.x15{left:534.396000px;}
.xcd{left:535.527000px;}
.xbf{left:537.247500px;}
.xfe{left:538.960500px;}
.x60{left:541.946100px;}
.x5e{left:543.264900px;}
.x4e{left:545.221350px;}
.x16{left:549.339000px;}
.xad{left:553.789950px;}
.x4a{left:557.025075px;}
.xa4{left:558.432600px;}
.x5f{left:566.672100px;}
.xac{left:567.989250px;}
.xc0{left:572.385000px;}
.x9b{left:584.655000px;}
.xfc{left:600.189000px;}
.xfd{left:606.915000px;}
.xea{left:608.058000px;}
.x102{left:609.361500px;}
.x107{left:610.894500px;}
.x24{left:614.271000px;}
.x101{left:620.533500px;}
.x25{left:621.744000px;}
.x26{left:625.554000px;}
.xeb{left:633.958500px;}
.xe4{left:635.196000px;}
.x103{left:636.261000px;}
.x108{left:637.794000px;}
.x27{left:640.498500px;}
.xe5{left:641.922000px;}
.xf1{left:646.602000px;}
.x28{left:648.120000px;}
.x61{left:656.144100px;}
.xbb{left:657.693000px;}
.x29{left:663.063000px;}
.xaf{left:666.988800px;}
.xa6{left:671.933850px;}
.xed{left:675.823500px;}
.x62{left:677.512500px;}
.x47{left:679.834845px;}
.xae{left:681.490500px;}
.x1b{left:683.311500px;}
.xa5{left:686.798700px;}
.xff{left:691.734000px;}
.xb5{left:695.842500px;}
.x1c{left:698.254500px;}
.xb6{left:699.559500px;}
.x6{left:701.339982px;}
.xdd{left:705.123000px;}
.xb7{left:714.504000px;}
.x1d{left:716.965500px;}
.xd4{left:719.499000px;}
.x1e{left:720.730500px;}
.x3d{left:723.748500px;}
.xde{left:728.049000px;}
.xdc{left:729.817500px;}
.xd5{left:734.443500px;}
.x1f{left:735.675000px;}
.xd6{left:738.228000px;}
.x20{left:739.440000px;}
.x2a{left:745.923000px;}
.xe8{left:749.533500px;}
.xd7{left:753.171000px;}
.x21{left:754.384500px;}
.x100{left:755.944500px;}
.x2b{left:757.113000px;}
.x22{left:758.151000px;}
.x11{left:764.376000px;}
.x12{left:771.847500px;}
.x23{left:773.094000px;}
.xe9{left:776.433000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.vb{vertical-align:-15.429333pt;}
.v5{vertical-align:-12.095520pt;}
.v9{vertical-align:-1.434667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.095520pt;}
.va{vertical-align:15.920000pt;}
.v8{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:23.669280pt;}
.vc{vertical-align:26.299200pt;}
.v4{vertical-align:29.086560pt;}
.v7{vertical-align:33.322667pt;}
.ls4c{letter-spacing:-0.772431pt;}
.ls48{letter-spacing:-0.532002pt;}
.ls4e{letter-spacing:-0.396583pt;}
.ls49{letter-spacing:-0.169273pt;}
.ls3a{letter-spacing:-0.130234pt;}
.ls3b{letter-spacing:-0.081763pt;}
.ls39{letter-spacing:-0.072778pt;}
.ls38{letter-spacing:-0.030643pt;}
.ls40{letter-spacing:-0.030240pt;}
.ls3c{letter-spacing:-0.021600pt;}
.ls3d{letter-spacing:-0.014429pt;}
.ls41{letter-spacing:-0.012960pt;}
.ls3e{letter-spacing:-0.004320pt;}
.lsd{letter-spacing:0.000000pt;}
.ls92{letter-spacing:0.000052pt;}
.ls9{letter-spacing:0.000137pt;}
.ls64{letter-spacing:0.000274pt;}
.ls8b{letter-spacing:0.000397pt;}
.ls82{letter-spacing:0.000572pt;}
.ls62{letter-spacing:0.000577pt;}
.ls88{letter-spacing:0.000621pt;}
.ls79{letter-spacing:0.000718pt;}
.ls5b{letter-spacing:0.000752pt;}
.ls16{letter-spacing:0.000806pt;}
.lsf{letter-spacing:0.001487pt;}
.ls13{letter-spacing:0.001667pt;}
.ls12{letter-spacing:0.001852pt;}
.ls5c{letter-spacing:0.001916pt;}
.ls5a{letter-spacing:0.002389pt;}
.ls8a{letter-spacing:0.002394pt;}
.ls0{letter-spacing:0.002422pt;}
.ls81{letter-spacing:0.002505pt;}
.ls72{letter-spacing:0.002508pt;}
.ls74{letter-spacing:0.002517pt;}
.ls7{letter-spacing:0.002551pt;}
.ls65{letter-spacing:0.002553pt;}
.ls60{letter-spacing:0.002613pt;}
.ls11{letter-spacing:0.002925pt;}
.lsc{letter-spacing:0.003100pt;}
.lsa{letter-spacing:0.003106pt;}
.ls10{letter-spacing:0.003166pt;}
.ls66{letter-spacing:0.003335pt;}
.ls63{letter-spacing:0.003423pt;}
.ls5d{letter-spacing:0.003942pt;}
.ls7b{letter-spacing:0.004267pt;}
.ls61{letter-spacing:0.004813pt;}
.ls26{letter-spacing:0.008640pt;}
.ls20{letter-spacing:0.009619pt;}
.ls43{letter-spacing:0.012960pt;}
.ls3f{letter-spacing:0.017280pt;}
.ls28{letter-spacing:0.025920pt;}
.ls44{letter-spacing:0.029146pt;}
.ls27{letter-spacing:0.030240pt;}
.ls22{letter-spacing:0.034560pt;}
.ls25{letter-spacing:0.038880pt;}
.ls42{letter-spacing:0.047693pt;}
.ls1e{letter-spacing:0.052906pt;}
.ls21{letter-spacing:0.056160pt;}
.ls1f{letter-spacing:0.057715pt;}
.ls24{letter-spacing:0.060480pt;}
.ls23{letter-spacing:0.099360pt;}
.ls1d{letter-spacing:0.137894pt;}
.ls1c{letter-spacing:0.145555pt;}
.ls4d{letter-spacing:0.184126pt;}
.ls2b{letter-spacing:0.254716pt;}
.ls2a{letter-spacing:0.257940pt;}
.ls2d{letter-spacing:0.261971pt;}
.ls80{letter-spacing:0.466280pt;}
.ls7f{letter-spacing:0.471509pt;}
.ls8f{letter-spacing:0.476298pt;}
.ls6c{letter-spacing:0.477979pt;}
.ls69{letter-spacing:0.478097pt;}
.ls86{letter-spacing:0.479677pt;}
.ls67{letter-spacing:0.481491pt;}
.ls8e{letter-spacing:0.481637pt;}
.ls6b{letter-spacing:0.483345pt;}
.ls8d{letter-spacing:0.484954pt;}
.ls87{letter-spacing:0.485070pt;}
.ls71{letter-spacing:0.485108pt;}
.ls70{letter-spacing:0.486779pt;}
.ls68{letter-spacing:0.486878pt;}
.ls8c{letter-spacing:0.490396pt;}
.ls29{letter-spacing:0.496535pt;}
.ls2c{letter-spacing:0.600518pt;}
.ls4b{letter-spacing:0.620669pt;}
.ls45{letter-spacing:0.632760pt;}
.ls4a{letter-spacing:0.721427pt;}
.ls46{letter-spacing:0.761730pt;}
.ls47{letter-spacing:0.842337pt;}
.lse{letter-spacing:1.133683pt;}
.ls8{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.657067pt;}
.ls18{letter-spacing:9.561129pt;}
.ls15{letter-spacing:9.565396pt;}
.ls94{letter-spacing:10.276093pt;}
.ls34{letter-spacing:10.623733pt;}
.ls1a{letter-spacing:10.624017pt;}
.lsb{letter-spacing:10.626533pt;}
.ls19{letter-spacing:10.629067pt;}
.ls35{letter-spacing:10.629350pt;}
.ls54{letter-spacing:10.756270pt;}
.ls56{letter-spacing:10.761070pt;}
.ls77{letter-spacing:11.146841pt;}
.ls14{letter-spacing:11.512067pt;}
.ls17{letter-spacing:11.516334pt;}
.ls89{letter-spacing:11.805720pt;}
.ls75{letter-spacing:11.875151pt;}
.ls7d{letter-spacing:11.932576pt;}
.ls90{letter-spacing:11.951373pt;}
.ls6e{letter-spacing:11.954133pt;}
.ls6a{letter-spacing:11.955200pt;}
.ls6f{letter-spacing:11.959467pt;}
.ls85{letter-spacing:11.962216pt;}
.ls76{letter-spacing:11.984936pt;}
.ls7a{letter-spacing:11.991037pt;}
.ls73{letter-spacing:12.003021pt;}
.ls83{letter-spacing:12.036727pt;}
.ls91{letter-spacing:12.153422pt;}
.ls93{letter-spacing:12.290552pt;}
.ls6d{letter-spacing:12.435430pt;}
.ls55{letter-spacing:12.951076pt;}
.ls53{letter-spacing:12.955876pt;}
.ls52{letter-spacing:13.014001pt;}
.ls4f{letter-spacing:13.146565pt;}
.ls37{letter-spacing:13.279710pt;}
.ls36{letter-spacing:13.282065pt;}
.ls3{letter-spacing:13.283733pt;}
.ls1{letter-spacing:13.284541pt;}
.ls33{letter-spacing:13.286400pt;}
.ls1b{letter-spacing:13.442868pt;}
.ls5f{letter-spacing:13.682201pt;}
.ls5e{letter-spacing:13.686528pt;}
.ls50{letter-spacing:14.239876pt;}
.ls30{letter-spacing:14.608533pt;}
.ls31{letter-spacing:14.610606pt;}
.ls2f{letter-spacing:14.611375pt;}
.ls51{letter-spacing:14.615939pt;}
.ls32{letter-spacing:14.616708pt;}
.ls78{letter-spacing:14.868329pt;}
.ls7c{letter-spacing:15.192512pt;}
.ls4{letter-spacing:15.942400pt;}
.ls7e{letter-spacing:17.268329pt;}
.ls84{letter-spacing:18.099702pt;}
.ls5{letter-spacing:62.432533pt;}
.ls6{letter-spacing:64.314231pt;}
.ls57{letter-spacing:147.824072pt;}
.ls2e{letter-spacing:148.058998pt;}
.ls59{letter-spacing:165.108872pt;}
.ls58{letter-spacing:165.109778pt;}
.ws53{word-spacing:-159.263287pt;}
.ws11{word-spacing:-15.461955pt;}
.ws92{word-spacing:-13.915853pt;}
.ws1{word-spacing:-13.283467pt;}
.ws4d{word-spacing:-12.046626pt;}
.ws4c{word-spacing:-11.966020pt;}
.ws6{word-spacing:-11.955200pt;}
.ws52{word-spacing:-11.925717pt;}
.ws4b{word-spacing:-11.837050pt;}
.ws4f{word-spacing:-11.804807pt;}
.ws51{word-spacing:-11.466260pt;}
.ws50{word-spacing:-11.035016pt;}
.wsa5{word-spacing:-10.759680pt;}
.ws4e{word-spacing:-10.672287pt;}
.ws1c{word-spacing:-10.626800pt;}
.ws4{word-spacing:-10.095467pt;}
.ws47{word-spacing:-9.721555pt;}
.ws31{word-spacing:-9.683712pt;}
.ws3d{word-spacing:-9.564160pt;}
.ws48{word-spacing:-9.459967pt;}
.ws49{word-spacing:-9.221372pt;}
.ws4a{word-spacing:-9.218148pt;}
.wsc0{word-spacing:-4.542976pt;}
.wsc1{word-spacing:-4.399514pt;}
.ws3c{word-spacing:-3.559969pt;}
.ws10b{word-spacing:-3.347456pt;}
.ws108{word-spacing:-2.773606pt;}
.ws26{word-spacing:-2.762961pt;}
.wsf3{word-spacing:-2.391040pt;}
.wsf2{word-spacing:-2.343219pt;}
.wsb8{word-spacing:-2.231622pt;}
.wsab{word-spacing:-2.178489pt;}
.ws11e{word-spacing:-2.151936pt;}
.wsd6{word-spacing:-2.104115pt;}
.wsaf{word-spacing:-1.965953pt;}
.ws100{word-spacing:-1.865011pt;}
.ws45{word-spacing:-1.806551pt;}
.wsbf{word-spacing:-1.753418pt;}
.ws9{word-spacing:-1.696326pt;}
.ws120{word-spacing:-1.673728pt;}
.wse4{word-spacing:-1.482445pt;}
.wsb6{word-spacing:-1.381481pt;}
.wsdc{word-spacing:-1.243341pt;}
.wsb0{word-spacing:-1.222079pt;}
.ws8{word-spacing:-1.175671pt;}
.wsb3{word-spacing:-1.115811pt;}
.wse1{word-spacing:-1.099878pt;}
.wsb4{word-spacing:-1.062677pt;}
.wsb5{word-spacing:-1.009543pt;}
.wsbc{word-spacing:-0.903276pt;}
.ws20{word-spacing:-0.850142pt;}
.wse3{word-spacing:-0.812954pt;}
.ws1f{word-spacing:-0.797008pt;}
.ws2d{word-spacing:-0.690740pt;}
.ws46{word-spacing:-0.531339pt;}
.ws71{word-spacing:-0.505008pt;}
.ws10e{word-spacing:-0.478208pt;}
.ws103{word-spacing:-0.430387pt;}
.ws70{word-spacing:-0.423245pt;}
.ws10d{word-spacing:-0.382566pt;}
.ws18{word-spacing:-0.371937pt;}
.ws25{word-spacing:-0.318803pt;}
.wsd4{word-spacing:-0.286925pt;}
.wsa0{word-spacing:-0.265669pt;}
.wsd2{word-spacing:-0.239104pt;}
.ws14{word-spacing:-0.212535pt;}
.ws6f{word-spacing:-0.210672pt;}
.ws7b{word-spacing:-0.203040pt;}
.wsc3{word-spacing:-0.191283pt;}
.ws7a{word-spacing:-0.177120pt;}
.wsb{word-spacing:-0.159402pt;}
.wsa1{word-spacing:-0.143462pt;}
.wsd{word-spacing:-0.106268pt;}
.wsda{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.053134pt;}
.ws6a{word-spacing:-0.047821pt;}
.ws6d{word-spacing:-0.042134pt;}
.ws33{word-spacing:-0.038735pt;}
.ws3e{word-spacing:-0.038257pt;}
.ws5d{word-spacing:-0.022980pt;}
.ws69{word-spacing:-0.021257pt;}
.ws6b{word-spacing:-0.019302pt;}
.ws63{word-spacing:-0.019123pt;}
.ws98{word-spacing:-0.019021pt;}
.ws9a{word-spacing:-0.018261pt;}
.ws9c{word-spacing:-0.017306pt;}
.ws66{word-spacing:-0.016990pt;}
.ws95{word-spacing:-0.016887pt;}
.ws97{word-spacing:-0.016128pt;}
.ws64{word-spacing:-0.015923pt;}
.ws96{word-spacing:-0.015061pt;}
.ws67{word-spacing:-0.014857pt;}
.ws99{word-spacing:-0.012928pt;}
.ws7{word-spacing:-0.012365pt;}
.ws9b{word-spacing:-0.010795pt;}
.ws11a{word-spacing:-0.007501pt;}
.wse9{word-spacing:-0.007424pt;}
.wsdb{word-spacing:-0.007185pt;}
.ws5c{word-spacing:-0.007066pt;}
.ws119{word-spacing:-0.005547pt;}
.wsd1{word-spacing:-0.004574pt;}
.ws9e{word-spacing:-0.004267pt;}
.ws121{word-spacing:-0.004215pt;}
.ws5{word-spacing:-0.002400pt;}
.wsd5{word-spacing:-0.002048pt;}
.ws3{word-spacing:-0.001837pt;}
.ws113{word-spacing:-0.001818pt;}
.wse6{word-spacing:-0.001775pt;}
.ws0{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.000407pt;}
.ws58{word-spacing:0.000828pt;}
.ws5f{word-spacing:0.001067pt;}
.ws68{word-spacing:0.001084pt;}
.ws6c{word-spacing:0.001467pt;}
.ws65{word-spacing:0.002150pt;}
.ws62{word-spacing:0.004284pt;}
.ws5b{word-spacing:0.014208pt;}
.ws75{word-spacing:0.014429pt;}
.ws72{word-spacing:0.019238pt;}
.wscc{word-spacing:0.047821pt;}
.wsc{word-spacing:0.053134pt;}
.ws6e{word-spacing:0.057456pt;}
.ws76{word-spacing:0.062525pt;}
.ws79{word-spacing:0.086400pt;}
.ws77{word-spacing:0.086573pt;}
.wsc8{word-spacing:0.095642pt;}
.ws13{word-spacing:0.106268pt;}
.ws83{word-spacing:0.112320pt;}
.ws30{word-spacing:0.116205pt;}
.ws73{word-spacing:0.142560pt;}
.wsce{word-spacing:0.143462pt;}
.ws78{word-spacing:0.146880pt;}
.ws32{word-spacing:0.154939pt;}
.ws22{word-spacing:0.159402pt;}
.ws74{word-spacing:0.164160pt;}
.wsd7{word-spacing:0.191283pt;}
.wsf{word-spacing:0.212535pt;}
.wsc5{word-spacing:0.239104pt;}
.ws12{word-spacing:0.265669pt;}
.wsca{word-spacing:0.286925pt;}
.ws3a{word-spacing:0.318803pt;}
.wscb{word-spacing:0.334746pt;}
.ws24{word-spacing:0.371937pt;}
.wsbb{word-spacing:0.404162pt;}
.wsc7{word-spacing:0.430387pt;}
.ws15{word-spacing:0.478205pt;}
.ws106{word-spacing:0.526029pt;}
.ws21{word-spacing:0.531339pt;}
.wsf7{word-spacing:0.573850pt;}
.wsc6{word-spacing:0.669491pt;}
.ws10f{word-spacing:0.717312pt;}
.ws37{word-spacing:0.743874pt;}
.ws3b{word-spacing:0.797008pt;}
.ws2e{word-spacing:0.850142pt;}
.ws91{word-spacing:0.903276pt;}
.ws8e{word-spacing:0.956410pt;}
.wsb1{word-spacing:1.009543pt;}
.wsc9{word-spacing:1.052058pt;}
.wsb7{word-spacing:1.062677pt;}
.ws11c{word-spacing:1.099878pt;}
.ws10{word-spacing:1.115811pt;}
.ws23{word-spacing:1.168945pt;}
.wsb9{word-spacing:1.275213pt;}
.wsb2{word-spacing:1.434614pt;}
.ws11b{word-spacing:1.434624pt;}
.ws115{word-spacing:1.530266pt;}
.ws2a{word-spacing:1.540882pt;}
.ws1e{word-spacing:1.594016pt;}
.ws10c{word-spacing:1.625907pt;}
.ws90{word-spacing:1.700284pt;}
.wsac{word-spacing:1.753418pt;}
.ws8f{word-spacing:2.284756pt;}
.wse7{word-spacing:2.295398pt;}
.ws19{word-spacing:2.337890pt;}
.wscf{word-spacing:2.343219pt;}
.wsbe{word-spacing:2.391024pt;}
.wsf0{word-spacing:2.534502pt;}
.ws2c{word-spacing:2.550426pt;}
.ws36{word-spacing:2.603559pt;}
.wse{word-spacing:2.709827pt;}
.ws114{word-spacing:2.725786pt;}
.wsea{word-spacing:2.773606pt;}
.wsef{word-spacing:2.821427pt;}
.ws118{word-spacing:2.869248pt;}
.ws10a{word-spacing:2.917069pt;}
.ws38{word-spacing:2.975497pt;}
.wsad{word-spacing:3.081764pt;}
.ws39{word-spacing:3.134898pt;}
.wsf1{word-spacing:3.251814pt;}
.wsba{word-spacing:3.931906pt;}
.ws107{word-spacing:4.112589pt;}
.wsf4{word-spacing:4.208230pt;}
.ws1b{word-spacing:4.250720pt;}
.ws2b{word-spacing:4.303843pt;}
.ws11f{word-spacing:4.303872pt;}
.wse2{word-spacing:4.686438pt;}
.wsd8{word-spacing:4.774588pt;}
.wsd0{word-spacing:4.777890pt;}
.wsf6{word-spacing:4.778598pt;}
.wsd3{word-spacing:4.779554pt;}
.wsf9{word-spacing:4.779674pt;}
.wscd{word-spacing:4.779913pt;}
.wsdd{word-spacing:4.779921pt;}
.ws11d{word-spacing:4.779938pt;}
.wsee{word-spacing:4.780544pt;}
.wsff{word-spacing:4.780937pt;}
.ws104{word-spacing:4.781397pt;}
.wsec{word-spacing:4.781483pt;}
.ws110{word-spacing:4.781687pt;}
.wse0{word-spacing:4.782080pt;}
.wse5{word-spacing:4.782626pt;}
.wseb{word-spacing:4.784000pt;}
.ws109{word-spacing:4.784674pt;}
.ws101{word-spacing:4.877722pt;}
.ws112{word-spacing:4.925542pt;}
.ws28{word-spacing:4.941450pt;}
.wsed{word-spacing:4.973363pt;}
.ws27{word-spacing:5.047717pt;}
.wsa{word-spacing:5.100851pt;}
.ws29{word-spacing:5.153985pt;}
.ws16{word-spacing:5.307978pt;}
.ws17{word-spacing:5.313387pt;}
.wsbd{word-spacing:5.525922pt;}
.ws1a{word-spacing:5.632190pt;}
.ws117{word-spacing:5.834138pt;}
.wsd9{word-spacing:5.977600pt;}
.ws102{word-spacing:6.168883pt;}
.wsae{word-spacing:6.429198pt;}
.wsc4{word-spacing:6.647091pt;}
.wsdf{word-spacing:6.790554pt;}
.wsf8{word-spacing:6.928694pt;}
.ws35{word-spacing:7.651277pt;}
.ws105{word-spacing:8.320819pt;}
.ws111{word-spacing:9.181594pt;}
.ws116{word-spacing:9.755443pt;}
.wsc2{word-spacing:10.329293pt;}
.wsf5{word-spacing:11.094426pt;}
.wsfa{word-spacing:11.907379pt;}
.wsfc{word-spacing:11.955200pt;}
.wse8{word-spacing:12.003021pt;}
.wsde{word-spacing:12.289946pt;}
.wsfd{word-spacing:16.641638pt;}
.wsfb{word-spacing:40.982426pt;}
.wsfe{word-spacing:60.254208pt;}
.ws9d{word-spacing:81.358814pt;}
.ws42{word-spacing:122.000425pt;}
.ws7d{word-spacing:122.830560pt;}
.ws43{word-spacing:125.213983pt;}
.ws87{word-spacing:125.699040pt;}
.ws9f{word-spacing:126.804147pt;}
.ws41{word-spacing:131.564585pt;}
.ws84{word-spacing:135.203040pt;}
.ws80{word-spacing:135.777600pt;}
.ws8a{word-spacing:136.356480pt;}
.ws44{word-spacing:137.915187pt;}
.ws82{word-spacing:145.847520pt;}
.wsa4{word-spacing:146.724480pt;}
.ws7c{word-spacing:155.675520pt;}
.ws86{word-spacing:179.560800pt;}
.wsa7{word-spacing:186.408054pt;}
.ws7f{word-spacing:190.503360pt;}
.wsa8{word-spacing:200.119718pt;}
.wsa6{word-spacing:200.248351pt;}
.wsa9{word-spacing:201.325087pt;}
.ws56{word-spacing:204.722517pt;}
.ws94{word-spacing:214.763213pt;}
.wsa2{word-spacing:229.126702pt;}
.ws60{word-spacing:236.638814pt;}
.wsaa{word-spacing:237.152556pt;}
.ws5e{word-spacing:243.629867pt;}
.ws59{word-spacing:245.703270pt;}
.ws3f{word-spacing:245.913682pt;}
.ws85{word-spacing:248.944320pt;}
.ws81{word-spacing:250.387200pt;}
.ws88{word-spacing:250.961760pt;}
.ws7e{word-spacing:256.430880pt;}
.ws40{word-spacing:260.259922pt;}
.ws89{word-spacing:261.900000pt;}
.ws8c{word-spacing:261.904320pt;}
.ws93{word-spacing:265.931469pt;}
.ws8b{word-spacing:271.118880pt;}
.ws57{word-spacing:272.817664pt;}
.ws8d{word-spacing:272.846880pt;}
.ws61{word-spacing:299.406029pt;}
.ws5a{word-spacing:311.361229pt;}
.ws34{word-spacing:360.350256pt;}
.ws2f{word-spacing:366.199253pt;}
.ws1d{word-spacing:382.947365pt;}
.ws54{word-spacing:501.077605pt;}
.ws55{word-spacing:557.329007pt;}
._2c{margin-left:-270.964300pt;}
._2e{margin-left:-148.346950pt;}
._27{margin-left:-145.730880pt;}
._2d{margin-left:-86.673548pt;}
._6{margin-left:-6.894833pt;}
._4{margin-left:-5.910541pt;}
._d{margin-left:-4.888316pt;}
._2{margin-left:-3.931906pt;}
._5{margin-left:-2.630144pt;}
._1{margin-left:-0.944910pt;}
._9{width:0.969929pt;}
._3{width:2.661078pt;}
._0{width:9.035708pt;}
._10{width:10.626800pt;}
._12{width:12.285786pt;}
._a{width:14.016596pt;}
._7{width:15.876506pt;}
._8{width:17.598054pt;}
._b{width:18.490586pt;}
._49{width:19.396416pt;}
._f{width:20.403405pt;}
._c{width:21.496217pt;}
._52{width:22.402366pt;}
._13{width:23.605543pt;}
._4f{width:24.766673pt;}
._e{width:25.918582pt;}
._47{width:28.373485pt;}
._4b{width:29.648896pt;}
._4c{width:31.274803pt;}
._51{width:32.236188pt;}
._4d{width:38.319953pt;}
._24{width:52.392960pt;}
._4e{width:54.993920pt;}
._50{width:67.044762pt;}
._4a{width:78.904320pt;}
._41{width:95.354675pt;}
._18{width:100.400726pt;}
._16{width:105.495506pt;}
._3f{width:107.309875pt;}
._45{width:109.241434pt;}
._42{width:110.896435pt;}
._2a{width:112.082400pt;}
._28{width:113.520960pt;}
._43{width:126.486016pt;}
._29{width:145.730880pt;}
._46{width:151.397176pt;}
._26{width:168.769440pt;}
._17{width:173.459598pt;}
._2b{width:179.712000pt;}
._40{width:185.353421pt;}
._44{width:189.226675pt;}
._3e{width:197.308621pt;}
._25{width:204.055200pt;}
._30{width:242.307994pt;}
._1a{width:243.487255pt;}
._38{width:245.655450pt;}
._32{width:250.628813pt;}
._39{width:251.680870pt;}
._31{width:256.558592pt;}
._3b{width:257.610650pt;}
._3a{width:263.636070pt;}
._36{width:265.219738pt;}
._34{width:267.293431pt;}
._33{width:273.152410pt;}
._3c{width:275.591270pt;}
._20{width:279.388242pt;}
._22{width:288.952402pt;}
._35{width:294.767411pt;}
._1b{width:327.425670pt;}
._1c{width:346.605158pt;}
._1f{width:351.387238pt;}
._1e{width:356.169318pt;}
._21{width:360.989655pt;}
._1d{width:365.771735pt;}
._19{width:369.414245pt;}
._37{width:382.136013pt;}
._2f{width:383.080923pt;}
._15{width:496.425812pt;}
._14{width:505.489766pt;}
._3d{width:579.062067pt;}
._23{width:1286.541585pt;}
._48{width:1347.152171pt;}
._11{width:1368.405771pt;}
.fsf{font-size:26.496000pt;}
.fs14{font-size:31.880533pt;}
.fs10{font-size:32.242560pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fsb{font-size:38.256640pt;}
.fsc{font-size:38.304000pt;}
.fsa{font-size:38.734848pt;}
.fs11{font-size:40.303200pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fs15{font-size:43.038720pt;}
.fse{font-size:43.200000pt;}
.fs12{font-size:44.908800pt;}
.fs6{font-size:47.820800pt;}
.fsd{font-size:48.096000pt;}
.fs13{font-size:48.363840pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fs3{font-size:95.641600pt;}
.yfb{bottom:-447.906480pt;}
.yfc{bottom:-444.882840pt;}
.yf9{bottom:-433.291200pt;}
.yfa{bottom:-430.266840pt;}
.yf7{bottom:-418.746480pt;}
.yf8{bottom:-415.722840pt;}
.yf5{bottom:-404.131200pt;}
.yf6{bottom:-401.106840pt;}
.yf3{bottom:-389.587080pt;}
.yf4{bottom:-386.562840pt;}
.ye8{bottom:-375.042480pt;}
.yf2{bottom:-372.018840pt;}
.yf0{bottom:-360.427200pt;}
.yf1{bottom:-357.402840pt;}
.yee{bottom:-345.883200pt;}
.yef{bottom:-342.858840pt;}
.yec{bottom:-331.338480pt;}
.yed{bottom:-328.314720pt;}
.yea{bottom:-316.722480pt;}
.yeb{bottom:-313.698840pt;}
.ye9{bottom:-302.178120pt;}
.ye6{bottom:-287.634480pt;}
.ye7{bottom:-284.610840pt;}
.ye4{bottom:-273.019200pt;}
.ye5{bottom:-269.994840pt;}
.ye2{bottom:-258.474840pt;}
.ye3{bottom:-255.450840pt;}
.ye1{bottom:-243.859200pt;}
.ydb{bottom:-243.858360pt;}
.ydf{bottom:-229.315200pt;}
.ye0{bottom:-226.290840pt;}
.ydd{bottom:-214.769640pt;}
.yde{bottom:-211.746840pt;}
.ydc{bottom:-200.154000pt;}
.yd9{bottom:-185.610720pt;}
.yda{bottom:-182.586840pt;}
.yd8{bottom:-178.338720pt;}
.yd7{bottom:-155.874360pt;}
.yd6{bottom:-141.258720pt;}
.yd4{bottom:-140.970840pt;}
.yd5{bottom:-126.139200pt;}
.yd3{bottom:-103.170840pt;}
.yd2{bottom:-72.786602pt;}
.yd1{bottom:-49.458840pt;}
.yd0{bottom:-19.218840pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:0.292836pt;}
.y17{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.y16{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y139{bottom:19.301160pt;}
.y2{bottom:32.990462pt;}
.y137{bottom:35.861160pt;}
.y136{bottom:51.917160pt;}
.y119{bottom:52.853160pt;}
.y32{bottom:56.693333pt;}
.y135{bottom:61.133160pt;}
.y118{bottom:62.069160pt;}
.y134{bottom:70.349160pt;}
.y117{bottom:71.285160pt;}
.y133{bottom:79.565160pt;}
.y116{bottom:80.501160pt;}
.y132{bottom:88.781160pt;}
.y115{bottom:89.717160pt;}
.y31{bottom:96.544000pt;}
.y268{bottom:96.850667pt;}
.y131{bottom:98.285160pt;}
.y114{bottom:98.933160pt;}
.y130{bottom:107.501160pt;}
.y113{bottom:108.149160pt;}
.y1bf{bottom:110.284000pt;}
.y267{bottom:114.066667pt;}
.y30{bottom:114.556000pt;}
.y12f{bottom:116.717160pt;}
.y112{bottom:117.365160pt;}
.y206{bottom:121.662667pt;}
.y234{bottom:124.348000pt;}
.y12e{bottom:125.933160pt;}
.y111{bottom:126.581160pt;}
.y1be{bottom:128.296000pt;}
.y156{bottom:130.448000pt;}
.y266{bottom:131.281333pt;}
.y1e8{bottom:131.705333pt;}
.y2f{bottom:132.568000pt;}
.y12d{bottom:135.149160pt;}
.y110{bottom:135.797160pt;}
.y205{bottom:139.674667pt;}
.y233{bottom:141.562667pt;}
.y62{bottom:142.570667pt;}
.yca{bottom:143.644000pt;}
.y12c{bottom:144.365160pt;}
.y185{bottom:144.450933pt;}
.y10f{bottom:145.013160pt;}
.y155{bottom:146.197333pt;}
.y1bd{bottom:146.308000pt;}
.y265{bottom:148.497333pt;}
.y97{bottom:148.822667pt;}
.y1e7{bottom:149.717333pt;}
.y2e{bottom:150.581333pt;}
.y184{bottom:151.025733pt;}
.y12b{bottom:153.581160pt;}
.y10e{bottom:154.229160pt;}
.y186{bottom:157.601733pt;}
.y204{bottom:157.688000pt;}
.y232{bottom:158.778667pt;}
.y61{bottom:160.584000pt;}
.y154{bottom:161.126667pt;}
.yc9{bottom:161.656000pt;}
.y12a{bottom:162.797160pt;}
.y10d{bottom:163.445160pt;}
.y1bc{bottom:164.321333pt;}
.y264{bottom:165.713333pt;}
.y96{bottom:166.834667pt;}
.y1e6{bottom:167.730667pt;}
.y2d{bottom:168.593333pt;}
.y182{bottom:170.752533pt;}
.y129{bottom:172.013160pt;}
.y10c{bottom:172.661160pt;}
.y203{bottom:175.700000pt;}
.y231{bottom:175.993333pt;}
.y153{bottom:176.056000pt;}
.y181{bottom:177.327333pt;}
.y60{bottom:178.596000pt;}
.yc8{bottom:179.668000pt;}
.y128{bottom:181.229160pt;}
.y10b{bottom:182.165160pt;}
.y1bb{bottom:182.333333pt;}
.y263{bottom:182.928000pt;}
.y183{bottom:183.902133pt;}
.y95{bottom:184.848000pt;}
.y1e5{bottom:185.742667pt;}
.y2c{bottom:186.606667pt;}
.y127{bottom:190.445160pt;}
.y152{bottom:190.985333pt;}
.y10a{bottom:191.381160pt;}
.y230{bottom:193.209333pt;}
.y202{bottom:193.713333pt;}
.y5f{bottom:196.608000pt;}
.y17f{bottom:197.052933pt;}
.yc7{bottom:197.681333pt;}
.y126{bottom:199.661160pt;}
.y262{bottom:200.144000pt;}
.y1ba{bottom:200.346667pt;}
.y109{bottom:200.597160pt;}
.y94{bottom:202.860000pt;}
.y17e{bottom:203.628933pt;}
.y1e4{bottom:203.754667pt;}
.y2b{bottom:204.618667pt;}
.y151{bottom:205.914667pt;}
.y125{bottom:208.877160pt;}
.y108{bottom:209.813160pt;}
.y180{bottom:210.203733pt;}
.y22f{bottom:210.425333pt;}
.y201{bottom:211.725333pt;}
.y5e{bottom:214.621333pt;}
.yc6{bottom:215.693333pt;}
.y261{bottom:217.358667pt;}
.y124{bottom:218.021280pt;}
.y1b9{bottom:218.358667pt;}
.y107{bottom:218.957160pt;}
.y150{bottom:220.844000pt;}
.y93{bottom:220.872000pt;}
.y1e3{bottom:221.768000pt;}
.y2a{bottom:222.630667pt;}
.y17d{bottom:223.354533pt;}
.y123{bottom:227.237160pt;}
.y22e{bottom:227.640000pt;}
.y106{bottom:228.173160pt;}
.y200{bottom:229.737333pt;}
.y149{bottom:230.737333pt;}
.y5d{bottom:232.633333pt;}
.yc5{bottom:233.706667pt;}
.y260{bottom:234.574667pt;}
.y14f{bottom:235.773333pt;}
.y1b8{bottom:236.370667pt;}
.y122{bottom:236.453160pt;}
.y17c{bottom:236.505333pt;}
.y105{bottom:237.389160pt;}
.y92{bottom:238.885333pt;}
.y1e2{bottom:239.780000pt;}
.y29{bottom:240.644000pt;}
.y22d{bottom:244.856000pt;}
.y121{bottom:245.957160pt;}
.y104{bottom:246.605160pt;}
.y1ff{bottom:247.750667pt;}
.y17a{bottom:249.656133pt;}
.y5c{bottom:250.646667pt;}
.y14e{bottom:250.704000pt;}
.yc4{bottom:251.718667pt;}
.y25f{bottom:251.790667pt;}
.y1b7{bottom:254.384000pt;}
.y120{bottom:255.173160pt;}
.y103{bottom:255.821280pt;}
.y179{bottom:256.232133pt;}
.y91{bottom:256.897333pt;}
.y1e1{bottom:257.793333pt;}
.y28{bottom:258.656000pt;}
.y22c{bottom:262.070667pt;}
.y17b{bottom:262.806933pt;}
.y11f{bottom:264.389160pt;}
.y102{bottom:265.037160pt;}
.y14d{bottom:265.633333pt;}
.y1fe{bottom:265.762667pt;}
.y5b{bottom:268.658667pt;}
.y25e{bottom:269.005333pt;}
.yc3{bottom:269.730667pt;}
.y1b6{bottom:272.396000pt;}
.y11e{bottom:273.605160pt;}
.y101{bottom:274.253160pt;}
.y90{bottom:274.910667pt;}
.y1e0{bottom:275.805333pt;}
.y22b{bottom:279.286667pt;}
.y14c{bottom:280.562667pt;}
.y178{bottom:282.005733pt;}
.y177{bottom:282.634533pt;}
.y11d{bottom:282.821160pt;}
.y100{bottom:283.469160pt;}
.y1fd{bottom:283.776000pt;}
.y27{bottom:284.638667pt;}
.y25d{bottom:286.221333pt;}
.y5a{bottom:286.670667pt;}
.yc2{bottom:287.744000pt;}
.y1b5{bottom:290.409333pt;}
.y11c{bottom:292.037160pt;}
.yff{bottom:292.685160pt;}
.y8f{bottom:292.922667pt;}
.y174{bottom:293.685333pt;}
.y1df{bottom:293.817333pt;}
.y14b{bottom:295.492000pt;}
.y176{bottom:295.785333pt;}
.y22a{bottom:296.502667pt;}
.y171{bottom:299.994933pt;}
.y173{bottom:300.917733pt;}
.y11b{bottom:301.253160pt;}
.y1fc{bottom:301.788000pt;}
.yfe{bottom:301.901160pt;}
.y25c{bottom:303.437333pt;}
.y59{bottom:304.684000pt;}
.yc1{bottom:305.756000pt;}
.y1b4{bottom:308.421333pt;}
.y175{bottom:308.936133pt;}
.y14a{bottom:310.421333pt;}
.y11a{bottom:310.469160pt;}
.y8e{bottom:310.934667pt;}
.yfd{bottom:311.117160pt;}
.y1de{bottom:311.830667pt;}
.y229{bottom:313.717333pt;}
.y172{bottom:314.068533pt;}
.y1fb{bottom:319.800000pt;}
.y25b{bottom:320.652000pt;}
.y58{bottom:322.696000pt;}
.y138{bottom:323.069160pt;}
.yc0{bottom:323.769333pt;}
.y1b3{bottom:326.433333pt;}
.y8d{bottom:328.948000pt;}
.y1dd{bottom:329.842667pt;}
.y228{bottom:330.933333pt;}
.y148{bottom:331.752000pt;}
.y1fa{bottom:337.813333pt;}
.y25a{bottom:337.868000pt;}
.y170{bottom:340.673333pt;}
.y57{bottom:340.709333pt;}
.ybf{bottom:341.781333pt;}
.y26b{bottom:344.258667pt;}
.y1b2{bottom:344.446667pt;}
.y147{bottom:346.722667pt;}
.y8c{bottom:346.960000pt;}
.y1dc{bottom:347.856000pt;}
.y227{bottom:348.148000pt;}
.y26{bottom:352.564000pt;}
.y259{bottom:355.082667pt;}
.y1f9{bottom:355.825333pt;}
.y16f{bottom:357.769333pt;}
.y56{bottom:358.721333pt;}
.ybe{bottom:359.793333pt;}
.y26a{bottom:361.473333pt;}
.y146{bottom:362.053333pt;}
.y1b1{bottom:362.458667pt;}
.y8b{bottom:364.973333pt;}
.y226{bottom:365.364000pt;}
.y1db{bottom:365.868000pt;}
.yce{bottom:372.029225pt;}
.y258{bottom:372.298667pt;}
.y55{bottom:376.733333pt;}
.y145{bottom:377.341333pt;}
.y141{bottom:377.414667pt;}
.y269{bottom:378.689333pt;}
.y1b0{bottom:380.472000pt;}
.y1f8{bottom:381.808000pt;}
.y225{bottom:382.580000pt;}
.y1da{bottom:383.880000pt;}
.y25{bottom:386.517333pt;}
.ycd{bottom:388.229160pt;}
.y257{bottom:389.514667pt;}
.y16e{bottom:390.757333pt;}
.y8a{bottom:390.954667pt;}
.y144{bottom:392.270667pt;}
.y54{bottom:394.746667pt;}
.ybd{bottom:396.748000pt;}
.y1af{bottom:398.484000pt;}
.y224{bottom:399.794667pt;}
.y1d9{bottom:401.893333pt;}
.y24{bottom:404.529333pt;}
.y256{bottom:406.729333pt;}
.y143{bottom:407.200000pt;}
.y16d{bottom:408.770667pt;}
.y53{bottom:412.758667pt;}
.ybc{bottom:414.746667pt;}
.y223{bottom:417.010667pt;}
.ycc{bottom:418.109160pt;}
.y89{bottom:421.905333pt;}
.y142{bottom:422.129333pt;}
.y23{bottom:422.541333pt;}
.y255{bottom:423.945333pt;}
.y1ae{bottom:424.466667pt;}
.ybb{bottom:426.690133pt;}
.y16c{bottom:426.782667pt;}
.y1d8{bottom:427.876000pt;}
.y52{bottom:430.772000pt;}
.y222{bottom:434.225333pt;}
.yba{bottom:438.633600pt;}
.y88{bottom:439.918667pt;}
.y22{bottom:440.554667pt;}
.y254{bottom:441.160000pt;}
.y140{bottom:443.461333pt;}
.y16b{bottom:444.794667pt;}
.y51{bottom:448.784000pt;}
.y13f{bottom:450.205333pt;}
.yb9{bottom:450.577067pt;}
.y221{bottom:451.441333pt;}
.y1ad{bottom:455.417333pt;}
.y87{bottom:457.930667pt;}
.y253{bottom:458.376000pt;}
.y21{bottom:458.566667pt;}
.y1d7{bottom:458.826667pt;}
.yb8{bottom:462.520533pt;}
.y16a{bottom:462.808000pt;}
.y1f7{bottom:466.796000pt;}
.y220{bottom:468.657333pt;}
.y1ac{bottom:473.429333pt;}
.yb7{bottom:474.464000pt;}
.y50{bottom:474.766667pt;}
.y252{bottom:475.592000pt;}
.y86{bottom:475.944000pt;}
.y20{bottom:476.580000pt;}
.y1d6{bottom:476.838667pt;}
.y13e{bottom:479.404000pt;}
.yb0{bottom:482.377600pt;}
.y1f6{bottom:484.809333pt;}
.y21f{bottom:485.872000pt;}
.yb6{bottom:486.407467pt;}
.y169{bottom:488.790667pt;}
.y1ab{bottom:491.442667pt;}
.y251{bottom:492.806667pt;}
.y13d{bottom:494.016000pt;}
.y1f{bottom:494.592000pt;}
.y1d5{bottom:494.852000pt;}
.yb5{bottom:498.350933pt;}
.y1f5{bottom:502.821333pt;}
.y21e{bottom:503.088000pt;}
.y4f{bottom:505.717333pt;}
.y13c{bottom:507.017333pt;}
.y1aa{bottom:509.454667pt;}
.y250{bottom:510.022667pt;}
.yb4{bottom:510.294400pt;}
.y1e{bottom:512.604000pt;}
.y1d4{bottom:512.864000pt;}
.y85{bottom:516.159867pt;}
.y21d{bottom:520.302667pt;}
.y1f4{bottom:520.834667pt;}
.yb3{bottom:522.237867pt;}
.y4e{bottom:523.729333pt;}
.y24f{bottom:527.237333pt;}
.y1a9{bottom:527.468000pt;}
.y84{bottom:527.995587pt;}
.y1d{bottom:530.617333pt;}
.y1d3{bottom:530.876000pt;}
.y81{bottom:533.912907pt;}
.yb2{bottom:534.181333pt;}
.y21c{bottom:537.518667pt;}
.y1f3{bottom:538.846667pt;}
.y83{bottom:539.831307pt;}
.y4d{bottom:541.742667pt;}
.y168{bottom:542.493333pt;}
.y13b{bottom:543.453333pt;}
.y24e{bottom:544.453333pt;}
.y1a8{bottom:545.480000pt;}
.yb1{bottom:546.124800pt;}
.y1c{bottom:548.629333pt;}
.y1d2{bottom:548.889333pt;}
.y82{bottom:551.667027pt;}
.y21b{bottom:554.734667pt;}
.y1f2{bottom:556.858667pt;}
.y167{bottom:558.285333pt;}
.y4c{bottom:559.754667pt;}
.y24d{bottom:561.669333pt;}
.yaf{bottom:563.190400pt;}
.y1a7{bottom:563.492000pt;}
.y1b{bottom:566.642667pt;}
.y1d1{bottom:566.901333pt;}
.y80{bottom:568.687827pt;}
.y13a{bottom:569.848000pt;}
.y21a{bottom:571.949333pt;}
.y166{bottom:573.573333pt;}
.y1f1{bottom:574.872000pt;}
.yae{bottom:575.133867pt;}
.y4b{bottom:577.766667pt;}
.y24c{bottom:578.884000pt;}
.y7e{bottom:580.523547pt;}
.y1a6{bottom:581.505333pt;}
.y1a{bottom:584.654667pt;}
.y1d0{bottom:584.914667pt;}
.yad{bottom:587.077333pt;}
.y165{bottom:588.502667pt;}
.y219{bottom:589.165333pt;}
.ycb{bottom:589.785333pt;}
.y7f{bottom:592.359267pt;}
.y1f0{bottom:592.884000pt;}
.y4a{bottom:595.780000pt;}
.y24b{bottom:596.100000pt;}
.yac{bottom:599.020800pt;}
.ya8{bottom:599.079467pt;}
.y1a5{bottom:599.517333pt;}
.y19{bottom:602.666667pt;}
.y1cf{bottom:602.926667pt;}
.y164{bottom:603.432000pt;}
.y218{bottom:606.380000pt;}
.y7d{bottom:609.380067pt;}
.y1ef{bottom:610.896000pt;}
.yab{bottom:610.964267pt;}
.y24a{bottom:613.314667pt;}
.y49{bottom:613.792000pt;}
.y1a4{bottom:617.530667pt;}
.y163{bottom:618.361333pt;}
.y18{bottom:620.680000pt;}
.y1ce{bottom:620.938667pt;}
.y7b{bottom:621.215787pt;}
.yaa{bottom:622.907733pt;}
.y217{bottom:623.596000pt;}
.y1ee{bottom:628.909333pt;}
.y249{bottom:630.530667pt;}
.y48{bottom:631.805333pt;}
.y7c{bottom:633.051507pt;}
.y162{bottom:633.290667pt;}
.ya9{bottom:634.851200pt;}
.y1a3{bottom:635.542667pt;}
.y1cd{bottom:638.952000pt;}
.y216{bottom:640.812000pt;}
.y1ed{bottom:646.921333pt;}
.y248{bottom:647.746667pt;}
.y161{bottom:648.220000pt;}
.y47{bottom:649.817333pt;}
.y7a{bottom:650.073387pt;}
.ya7{bottom:651.916800pt;}
.y1a2{bottom:653.554667pt;}
.y15{bottom:653.901301pt;}
.y1cc{bottom:656.964000pt;}
.ya5{bottom:657.312000pt;}
.y14{bottom:660.964000pt;}
.y78{bottom:661.909107pt;}
.y160{bottom:663.149333pt;}
.ya6{bottom:663.860267pt;}
.y1ec{bottom:664.934667pt;}
.y247{bottom:664.961333pt;}
.y215{bottom:665.997333pt;}
.y46{bottom:667.829333pt;}
.y79{bottom:673.744827pt;}
.y15f{bottom:678.078667pt;}
.y1a1{bottom:679.537333pt;}
.ya2{bottom:680.670933pt;}
.y246{bottom:682.177333pt;}
.y1cb{bottom:682.946667pt;}
.y45{bottom:685.842667pt;}
.ya4{bottom:686.516267pt;}
.y13{bottom:689.253333pt;}
.y77{bottom:690.765627pt;}
.ya0{bottom:692.360533pt;}
.y15e{bottom:693.008000pt;}
.ya3{bottom:698.205867pt;}
.y245{bottom:699.392000pt;}
.y1eb{bottom:700.958667pt;}
.y214{bottom:701.065333pt;}
.y75{bottom:702.601347pt;}
.y44{bottom:703.854667pt;}
.ya1{bottom:704.050133pt;}
.y12{bottom:705.393333pt;}
.y15d{bottom:707.937333pt;}
.y1a0{bottom:710.488000pt;}
.y1ca{bottom:713.897333pt;}
.y76{bottom:714.437067pt;}
.y213{bottom:714.574667pt;}
.y244{bottom:716.608000pt;}
.y1ea{bottom:718.972000pt;}
.y43{bottom:721.868000pt;}
.y15c{bottom:722.866667pt;}
.y11{bottom:725.873333pt;}
.y212{bottom:728.084000pt;}
.y19f{bottom:728.501333pt;}
.y9f{bottom:729.156000pt;}
.y74{bottom:731.457867pt;}
.y1c9{bottom:731.909333pt;}
.y243{bottom:733.824000pt;}
.y42{bottom:739.880000pt;}
.y211{bottom:741.593333pt;}
.y10{bottom:742.012000pt;}
.y73{bottom:743.293587pt;}
.y15b{bottom:744.197333pt;}
.y1e9{bottom:744.954667pt;}
.y19e{bottom:746.513333pt;}
.y70{bottom:749.211987pt;}
.y1c8{bottom:749.922667pt;}
.y242{bottom:751.038667pt;}
.yf{bottom:753.812000pt;}
.y72{bottom:755.129307pt;}
.y41{bottom:757.892000pt;}
.y9e{bottom:762.144000pt;}
.y210{bottom:763.073333pt;}
.y19d{bottom:764.526667pt;}
.y15a{bottom:765.529333pt;}
.y71{bottom:766.965027pt;}
.y1c7{bottom:767.934667pt;}
.y241{bottom:768.254667pt;}
.y158{bottom:772.736000pt;}
.ye{bottom:774.292000pt;}
.y40{bottom:775.905333pt;}
.y9d{bottom:780.156000pt;}
.y19c{bottom:782.538667pt;}
.y6f{bottom:783.985827pt;}
.y20f{bottom:784.553333pt;}
.y240{bottom:785.469333pt;}
.y1c6{bottom:785.948000pt;}
.y159{bottom:786.861333pt;}
.y6d{bottom:789.904227pt;}
.yd{bottom:790.430667pt;}
.y3f{bottom:793.917333pt;}
.y6e{bottom:795.821547pt;}
.y20e{bottom:798.062667pt;}
.y9c{bottom:798.169333pt;}
.yc{bottom:802.230667pt;}
.y23f{bottom:802.685333pt;}
.y1c5{bottom:803.960000pt;}
.y3e{bottom:811.930667pt;}
.y6b{bottom:812.843427pt;}
.y157{bottom:814.966667pt;}
.y6c{bottom:818.760747pt;}
.y20d{bottom:819.541333pt;}
.y23e{bottom:819.901333pt;}
.y1c4{bottom:821.972000pt;}
.yb{bottom:822.710667pt;}
.y19a{bottom:823.449867pt;}
.y9b{bottom:824.150667pt;}
.y69{bottom:824.679147pt;}
.y3d{bottom:829.942667pt;}
.y199{bottom:830.025867pt;}
.y20c{bottom:833.050667pt;}
.y6a{bottom:836.514867pt;}
.y19b{bottom:836.600667pt;}
.y23d{bottom:837.116000pt;}
.y1c3{bottom:839.985333pt;}
.ya{bottom:842.229333pt;}
.y3c{bottom:847.954667pt;}
.y197{bottom:849.751467pt;}
.y68{bottom:853.792707pt;}
.y23c{bottom:854.332000pt;}
.y20b{bottom:854.530667pt;}
.y9a{bottom:855.101333pt;}
.y196{bottom:856.327467pt;}
.y1c2{bottom:857.997333pt;}
.y9{bottom:860.241333pt;}
.y198{bottom:862.902267pt;}
.y3b{bottom:865.968000pt;}
.y20a{bottom:868.040000pt;}
.y23b{bottom:871.546667pt;}
.y99{bottom:873.114667pt;}
.y1c1{bottom:876.010667pt;}
.y194{bottom:876.053067pt;}
.y67{bottom:879.046667pt;}
.y209{bottom:881.549333pt;}
.y193{bottom:882.629067pt;}
.y3a{bottom:883.980000pt;}
.y23a{bottom:888.762667pt;}
.y195{bottom:889.203867pt;}
.y1c0{bottom:894.022667pt;}
.y208{bottom:895.058667pt;}
.y8{bottom:898.178667pt;}
.y98{bottom:899.097333pt;}
.y39{bottom:901.993333pt;}
.y191{bottom:902.354667pt;}
.y239{bottom:905.978667pt;}
.y207{bottom:908.568000pt;}
.y190{bottom:908.930667pt;}
.y66{bottom:912.034667pt;}
.y192{bottom:915.505467pt;}
.y38{bottom:920.005333pt;}
.y238{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.y65{bottom:930.048000pt;}
.y18f{bottom:934.704267pt;}
.y18e{bottom:935.333067pt;}
.y37{bottom:938.017333pt;}
.y237{bottom:940.409333pt;}
.y18b{bottom:946.383867pt;}
.y64{bottom:948.060000pt;}
.y18d{bottom:948.483867pt;}
.y6{bottom:952.217333pt;}
.y188{bottom:952.693467pt;}
.y18a{bottom:953.616267pt;}
.y36{bottom:956.030667pt;}
.y236{bottom:957.624000pt;}
.y18c{bottom:961.634667pt;}
.y63{bottom:966.073333pt;}
.y189{bottom:966.767067pt;}
.y35{bottom:974.042667pt;}
.y235{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y34{bottom:992.056000pt;}
.y187{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.h21{height:19.438676pt;}
.h20{height:19.439156pt;}
.h1f{height:19.439636pt;}
.hb{height:22.673858pt;}
.h2c{height:23.209028pt;}
.h22{height:23.473465pt;}
.h9{height:27.076941pt;}
.h16{height:27.659551pt;}
.h17{height:27.850834pt;}
.h12{height:28.005295pt;}
.h19{height:28.092094pt;}
.h13{height:28.198969pt;}
.h23{height:29.341832pt;}
.hd{height:29.433775pt;}
.hc{height:30.399505pt;}
.h2e{height:31.116995pt;}
.h10{height:31.200285pt;}
.h31{height:31.332188pt;}
.h1e{height:31.535156pt;}
.h2d{height:31.678595pt;}
.h1b{height:31.682812pt;}
.h34{height:32.092855pt;}
.h24{height:32.694834pt;}
.h36{height:33.713664pt;}
.h35{height:34.144051pt;}
.h27{height:34.574438pt;}
.h1c{height:34.615969pt;}
.ha{height:34.813542pt;}
.h3{height:35.024664pt;}
.h33{height:35.100467pt;}
.h1a{height:35.109141pt;}
.h25{height:35.210198pt;}
.h4{height:36.445809pt;}
.h11{height:37.937581pt;}
.he{height:38.415786pt;}
.hf{height:38.681455pt;}
.h5{height:39.000258pt;}
.h2a{height:43.002274pt;}
.h2b{height:44.431607pt;}
.h29{height:44.436941pt;}
.h2{height:45.272024pt;}
.h8{height:48.481423pt;}
.h7{height:48.486756pt;}
.h14{height:51.868249pt;}
.h15{height:51.872569pt;}
.h2f{height:54.790595pt;}
.h30{height:57.631388pt;}
.h32{height:57.636188pt;}
.h1d{height:60.621716pt;}
.h28{height:67.554876pt;}
.h26{height:67.897105pt;}
.h6{height:69.148877pt;}
.h18{height:355.269600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w4{width:484.764360pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x69{left:-22.066440pt;}
.x0{left:0.000000pt;}
.x6b{left:3.422035pt;}
.x7{left:26.021437pt;}
.x93{left:31.285560pt;}
.x94{left:34.165560pt;}
.x8c{left:37.045560pt;}
.x8f{left:45.973560pt;}
.x8d{left:50.581560pt;}
.x2{left:52.456952pt;}
.x90{left:53.461560pt;}
.x92{left:55.477560pt;}
.x8e{left:58.357560pt;}
.x91{left:62.101560pt;}
.x75{left:66.853200pt;}
.x77{left:68.077560pt;}
.x72{left:69.661560pt;}
.x6c{left:77.005560pt;}
.x6d{left:82.550280pt;}
.x6a{left:85.285560pt;}
.x95{left:93.493560pt;}
.xc1{left:100.930667pt;}
.x1{left:102.046667pt;}
.x73{left:107.101560pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x76{left:110.557560pt;}
.x48{left:111.644840pt;}
.x7f{left:114.517560pt;}
.x7e{left:116.821560pt;}
.x7d{left:118.549560pt;}
.x7c{left:119.701560pt;}
.x7b{left:121.429560pt;}
.xa8{left:122.684133pt;}
.x65{left:123.876000pt;}
.x44{left:125.516360pt;}
.x4{left:129.594667pt;}
.xdb{left:130.733333pt;}
.x55{left:133.260533pt;}
.x4f{left:134.924240pt;}
.xb3{left:137.494533pt;}
.x4d{left:138.845720pt;}
.xe6{left:143.674667pt;}
.x4b{left:145.223120pt;}
.x49{left:148.335680pt;}
.x43{left:149.729960pt;}
.x3b{left:152.016000pt;}
.x68{left:154.470307pt;}
.x3c{left:155.828000pt;}
.xb4{left:157.265733pt;}
.x42{left:158.185333pt;}
.x96{left:159.949560pt;}
.x63{left:161.805600pt;}
.x66{left:164.198133pt;}
.x67{left:165.781067pt;}
.xf7{left:169.204000pt;}
.x8{left:170.684000pt;}
.x6f{left:173.629920pt;}
.xa1{left:176.049333pt;}
.xd0{left:177.620000pt;}
.xe7{left:180.112000pt;}
.x80{left:185.869560pt;}
.x6e{left:187.381560pt;}
.x97{left:188.461560pt;}
.x74{left:190.693560pt;}
.x81{left:191.629560pt;}
.x7a{left:193.357560pt;}
.x9c{left:195.617333pt;}
.xee{left:197.148000pt;}
.xb8{left:200.745333pt;}
.x54{left:204.488000pt;}
.x57{left:206.466933pt;}
.x56{left:209.321333pt;}
.xec{left:210.457333pt;}
.xd9{left:211.708000pt;}
.x99{left:212.694667pt;}
.xd1{left:213.705333pt;}
.x104{left:214.925333pt;}
.x64{left:216.221600pt;}
.xb9{left:217.282667pt;}
.x58{left:219.784267pt;}
.x98{left:221.362667pt;}
.xb{left:223.121333pt;}
.x39{left:225.828000pt;}
.xba{left:227.109333pt;}
.xda{left:228.474667pt;}
.xc{left:229.762667pt;}
.x30{left:231.572000pt;}
.xd{left:236.272000pt;}
.x45{left:237.255320pt;}
.x3a{left:239.112000pt;}
.x82{left:240.589560pt;}
.xe{left:242.913333pt;}
.x31{left:244.854667pt;}
.xf8{left:247.792000pt;}
.x83{left:250.381560pt;}
.x9f{left:253.772000pt;}
.xf9{left:255.001333pt;}
.x32{left:257.362667pt;}
.xa0{left:261.481333pt;}
.x33{left:263.905333pt;}
.x59{left:269.211467pt;}
.x9d{left:273.769333pt;}
.x34{left:277.189333pt;}
.xf2{left:278.222667pt;}
.x9e{left:279.573333pt;}
.xef{left:281.289333pt;}
.xf0{left:284.720000pt;}
.x5a{left:289.463200pt;}
.xc2{left:291.362667pt;}
.x70{left:298.982280pt;}
.x87{left:302.221560pt;}
.x8b{left:304.237560pt;}
.x5b{left:306.367733pt;}
.xa7{left:307.325733pt;}
.x86{left:308.269560pt;}
.x88{left:310.573560pt;}
.x71{left:313.022280pt;}
.x84{left:314.317560pt;}
.xa2{left:316.319733pt;}
.x85{left:318.061560pt;}
.xbd{left:319.564000pt;}
.xc3{left:321.316000pt;}
.x89{left:322.669560pt;}
.x9{left:323.818667pt;}
.x8a{left:324.973560pt;}
.x78{left:327.349560pt;}
.x50{left:329.012000pt;}
.xa{left:330.460000pt;}
.x79{left:332.749560pt;}
.xd2{left:334.126667pt;}
.xc4{left:337.988000pt;}
.xc5{left:341.374667pt;}
.x51{left:342.296000pt;}
.xd8{left:344.097333pt;}
.xa9{left:345.632133pt;}
.xd3{left:347.409333pt;}
.x52{left:348.810667pt;}
.x105{left:351.352000pt;}
.x3e{left:353.081333pt;}
.xc6{left:354.658667pt;}
.xdf{left:355.804000pt;}
.x35{left:356.758667pt;}
.x106{left:357.880000pt;}
.xb2{left:360.190667pt;}
.x3f{left:361.090667pt;}
.x53{left:362.094667pt;}
.xce{left:363.580000pt;}
.x36{left:370.042667pt;}
.x9a{left:372.292000pt;}
.xc7{left:374.716000pt;}
.x5d{left:375.946400pt;}
.xcf{left:376.862667pt;}
.x2c{left:378.304000pt;}
.x5c{left:380.265333pt;}
.xe0{left:383.850667pt;}
.x2d{left:384.945333pt;}
.xa3{left:387.021333pt;}
.x2e{left:388.220000pt;}
.xe1{left:389.577333pt;}
.xf4{left:391.454667pt;}
.xaa{left:393.338133pt;}
.xb1{left:396.028533pt;}
.xfb{left:397.566667pt;}
.xb0{left:398.717733pt;}
.x2f{left:401.502667pt;}
.x17{left:404.164000pt;}
.xbc{left:407.018667pt;}
.xc8{left:409.686667pt;}
.xc9{left:412.986667pt;}
.xf3{left:415.653333pt;}
.x18{left:417.448000pt;}
.xf{left:418.752000pt;}
.x19{left:424.169333pt;}
.x10{left:425.393333pt;}
.xbe{left:429.657333pt;}
.xe2{left:436.298667pt;}
.x1a{left:437.453333pt;}
.xe3{left:442.826667pt;}
.xab{left:443.734533pt;}
.x37{left:444.916000pt;}
.xca{left:446.156000pt;}
.xfa{left:447.745333pt;}
.x38{left:451.557333pt;}
.x46{left:453.164600pt;}
.x13{left:455.225333pt;}
.x40{left:458.066667pt;}
.xcb{left:459.440000pt;}
.xcc{left:462.740000pt;}
.x4c{left:463.656800pt;}
.x14{left:468.509333pt;}
.xf5{left:469.473333pt;}
.x41{left:471.349333pt;}
.xf6{left:472.905333pt;}
.x15{left:475.018667pt;}
.xcd{left:476.024000pt;}
.xbf{left:477.553333pt;}
.xfe{left:479.076000pt;}
.x60{left:481.729867pt;}
.x5e{left:482.902133pt;}
.x4e{left:484.641200pt;}
.x16{left:488.301333pt;}
.xad{left:492.257733pt;}
.x4a{left:495.133400pt;}
.xa4{left:496.384533pt;}
.x5f{left:503.708533pt;}
.xac{left:504.879333pt;}
.xc0{left:508.786667pt;}
.x9b{left:519.693333pt;}
.xfc{left:533.501333pt;}
.xfd{left:539.480000pt;}
.xea{left:540.496000pt;}
.x102{left:541.654667pt;}
.x107{left:543.017333pt;}
.x24{left:546.018667pt;}
.x101{left:551.585333pt;}
.x25{left:552.661333pt;}
.x26{left:556.048000pt;}
.xeb{left:563.518667pt;}
.xe4{left:564.618667pt;}
.x103{left:565.565333pt;}
.x108{left:566.928000pt;}
.x27{left:569.332000pt;}
.xe5{left:570.597333pt;}
.xf1{left:574.757333pt;}
.x28{left:576.106667pt;}
.x61{left:583.239200pt;}
.xbb{left:584.616000pt;}
.x29{left:589.389333pt;}
.xaf{left:592.878933pt;}
.xa6{left:597.274533pt;}
.xed{left:600.732000pt;}
.x62{left:602.233333pt;}
.x47{left:604.297640pt;}
.xae{left:605.769333pt;}
.x1b{left:607.388000pt;}
.xa5{left:610.487733pt;}
.xff{left:614.874667pt;}
.xb5{left:618.526667pt;}
.x1c{left:620.670667pt;}
.xb6{left:621.830667pt;}
.x6{left:623.413317pt;}
.xdd{left:626.776000pt;}
.xb7{left:635.114667pt;}
.x1d{left:637.302667pt;}
.xd4{left:639.554667pt;}
.x1e{left:640.649333pt;}
.x3d{left:643.332000pt;}
.xde{left:647.154667pt;}
.xdc{left:648.726667pt;}
.xd5{left:652.838667pt;}
.x1f{left:653.933333pt;}
.xd6{left:656.202667pt;}
.x20{left:657.280000pt;}
.x2a{left:663.042667pt;}
.xe8{left:666.252000pt;}
.xd7{left:669.485333pt;}
.x21{left:670.564000pt;}
.x100{left:671.950667pt;}
.x2b{left:672.989333pt;}
.x22{left:673.912000pt;}
.x11{left:679.445333pt;}
.x12{left:686.086667pt;}
.x23{left:687.194667pt;}
.xe9{left:690.162667pt;}
}




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