
    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_26167803f30abffb3af2fd91.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3e1db54a254412d6744f50bc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_23571f1e8db44857f0063422.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6c56d0f5a711edda01e30ec3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8d24b5316b6c0fb3e2ccddc4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.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:ff6;src:url('chunks/assets/font_534e917c4444dab1e28b5905.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_74bbde12b92e890b2c0f1b35.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893000;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_d4bed6e5fd7c0736f9b3417a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.860000;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_e93fed5b6a62138918679694.woff')format("woff");}.ff9{font-family:ff9;line-height:0.703450;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_19252fbe8f25f3084da4f65f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.906000;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_3bcded336e213796f6d85835.woff')format("woff");}.ffb{font-family:ffb;line-height:0.786000;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_e1bf275bb06a7a3326cc290c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.497000;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_a93b361d5c0e117317e065df.woff')format("woff");}.ffd{font-family:ffd;line-height:0.685000;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_1b85b2ce5ff6d6c2e3522bb6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d3ad66342675d6b773e3526f.woff')format("woff");}.fff{font-family:fff;line-height:0.535000;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_1ca43326cd95ef9d3888632c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.876000;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_0248793f74ea354a7842e71c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.820000;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_614d6673c16aa602a4c9199b.woff')format("woff");}.ff12{font-family:ff12;line-height:2.399000;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_95ae36901c182431492304aa.woff')format("woff");}.ff13{font-family:ff13;line-height:0.854000;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_bc027a47e910ec537754fd91.woff')format("woff");}.ff14{font-family:ff14;line-height:1.198242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_000aaf27cdc8c86b0cac8a67.woff')format("woff");}.ff15{font-family:ff15;line-height:1.198242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_ce701b7c88b361574b1f2da2.woff')format("woff");}.ff16{font-family:ff16;line-height:0.756348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_011bd3ea2cabd402137d0b47.woff')format("woff");}.ff17{font-family:ff17;line-height:1.198242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a5db45598b6da49f769d63e9.woff')format("woff");}.ff18{font-family:ff18;line-height:1.198242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_9f16adc27f0f9110ed3f2f92.woff')format("woff");}.ff19{font-family:ff19;line-height:1.198242;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;}
.m2a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m2{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);}
.mb{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m29{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);}
.m1e{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);}
.m7{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);}
.m8{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);}
.m18{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);}
.me{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);}
.m16{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);}
.m20{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);}
.md{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m5{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);}
.m19{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);}
.m27{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);}
.m1f{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);}
.m10{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);}
.m22{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);}
.m28{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);}
.m6{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);}
.m12{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);}
.m25{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);}
.m1a{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);}
.mf{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);}
.m13{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);}
.m24{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);}
.m9{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);}
.m26{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);}
.m11{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);}
.m17{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);}
.m1d{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);}
.m1b{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);}
.ve{vertical-align:-66.354000px;}
.va{vertical-align:-19.044000px;}
.v3{vertical-align:-8.964000px;}
.vb{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.604000px;}
.vc{vertical-align:10.578000px;}
.v9{vertical-align:15.108000px;}
.v5{vertical-align:17.568000px;}
.v1{vertical-align:21.690000px;}
.v2{vertical-align:22.854000px;}
.v13{vertical-align:24.113937px;}
.v4{vertical-align:25.572000px;}
.v11{vertical-align:40.440000px;}
.v7{vertical-align:45.594000px;}
.v8{vertical-align:47.886000px;}
.vf{vertical-align:81.132000px;}
.v10{vertical-align:84.282000px;}
.vd{vertical-align:85.398000px;}
.v12{vertical-align:125.286000px;}
.lsc{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000062px;}
.ls19{letter-spacing:0.000564px;}
.ls27{letter-spacing:0.000993px;}
.ls2c{letter-spacing:0.001084px;}
.ls6{letter-spacing:0.001559px;}
.ls6e{letter-spacing:0.001604px;}
.ls67{letter-spacing:0.001634px;}
.ls1b{letter-spacing:0.001866px;}
.ls6a{letter-spacing:0.002338px;}
.ls18{letter-spacing:0.002525px;}
.ls70{letter-spacing:0.002881px;}
.ls2d{letter-spacing:0.003269px;}
.ls1{letter-spacing:0.004200px;}
.ls30{letter-spacing:0.005374px;}
.ls72{letter-spacing:0.834017px;}
.ls60{letter-spacing:1.133675px;}
.ls2{letter-spacing:1.212538px;}
.ls6d{letter-spacing:1.470915px;}
.ls45{letter-spacing:2.144222px;}
.ls43{letter-spacing:2.150222px;}
.ls5d{letter-spacing:2.454017px;}
.ls5c{letter-spacing:2.964877px;}
.ls34{letter-spacing:2.984525px;}
.ls5f{letter-spacing:2.986766px;}
.ls61{letter-spacing:2.987108px;}
.ls5b{letter-spacing:2.987675px;}
.ls1c{letter-spacing:2.987864px;}
.ls71{letter-spacing:2.988017px;}
.ls5a{letter-spacing:2.988780px;}
.ls3d{letter-spacing:3.199876px;}
.ls51{letter-spacing:3.562200px;}
.ls52{letter-spacing:3.564538px;}
.ls2e{letter-spacing:4.275175px;}
.ls3c{letter-spacing:4.484450px;}
.ls40{letter-spacing:4.685915px;}
.ls1d{letter-spacing:4.691915px;}
.ls3f{letter-spacing:5.350438px;}
.ls23{letter-spacing:5.946993px;}
.ls1f{letter-spacing:6.433866px;}
.ls2a{letter-spacing:6.516305px;}
.ls66{letter-spacing:6.963674px;}
.ls64{letter-spacing:8.400538px;}
.ls4e{letter-spacing:9.072538px;}
.ls6b{letter-spacing:9.106671px;}
.ls6f{letter-spacing:9.108945px;}
.ls6c{letter-spacing:9.113060px;}
.ls54{letter-spacing:9.956338px;}
.ls2b{letter-spacing:9.962338px;}
.ls35{letter-spacing:9.963962px;}
.ls3{letter-spacing:10.098538px;}
.ls46{letter-spacing:10.160525px;}
.ls50{letter-spacing:11.118538px;}
.ls4f{letter-spacing:11.122200px;}
.ls10{letter-spacing:12.851754px;}
.ls55{letter-spacing:12.870538px;}
.ls31{letter-spacing:12.953374px;}
.ls5e{letter-spacing:13.278538px;}
.ls32{letter-spacing:13.279084px;}
.ls25{letter-spacing:13.280338px;}
.ls28{letter-spacing:13.282200px;}
.ls26{letter-spacing:13.284538px;}
.ls65{letter-spacing:13.302538px;}
.ls74{letter-spacing:13.308538px;}
.ls4{letter-spacing:13.748388px;}
.ls33{letter-spacing:13.794538px;}
.ls62{letter-spacing:14.166817px;}
.ls12{letter-spacing:14.764573px;}
.ls41{letter-spacing:14.884124px;}
.ls5{letter-spacing:14.943900px;}
.ls8{letter-spacing:15.003676px;}
.lsb{letter-spacing:15.063451px;}
.ls42{letter-spacing:15.123227px;}
.ls14{letter-spacing:15.183002px;}
.ls9{letter-spacing:15.242778px;}
.ls56{letter-spacing:15.366538px;}
.ls44{letter-spacing:15.393181px;}
.ls24{letter-spacing:16.272648px;}
.ls73{letter-spacing:16.302538px;}
.lsa{letter-spacing:16.498066px;}
.ls21{letter-spacing:16.599269px;}
.ls1a{letter-spacing:16.602538px;}
.ls2f{letter-spacing:16.604727px;}
.ls4d{letter-spacing:16.796944px;}
.ls59{letter-spacing:17.095822px;}
.ls4c{letter-spacing:17.145269px;}
.ls7{letter-spacing:17.149559px;}
.ls4a{letter-spacing:17.559175px;}
.ls58{letter-spacing:17.753353px;}
.lsd{letter-spacing:18.052231px;}
.ls38{letter-spacing:18.291334px;}
.ls37{letter-spacing:18.530436px;}
.lsf{letter-spacing:18.829314px;}
.ls68{letter-spacing:18.873223px;}
.ls69{letter-spacing:18.876538px;}
.ls49{letter-spacing:19.221175px;}
.ls29{letter-spacing:19.230538px;}
.ls11{letter-spacing:19.666172px;}
.lse{letter-spacing:19.785724px;}
.ls57{letter-spacing:19.867559px;}
.ls47{letter-spacing:19.929181px;}
.ls3e{letter-spacing:20.883175px;}
.ls53{letter-spacing:21.160562px;}
.ls13{letter-spacing:21.399665px;}
.ls22{letter-spacing:22.236523px;}
.ls3b{letter-spacing:22.805607px;}
.ls16{letter-spacing:23.093607px;}
.ls3a{letter-spacing:27.491915px;}
.ls15{letter-spacing:27.785915px;}
.ls39{letter-spacing:28.991166px;}
.ls63{letter-spacing:30.761139px;}
.ls4b{letter-spacing:33.911864px;}
.ls20{letter-spacing:33.917864px;}
.ls0{letter-spacing:39.852600px;}
.ls36{letter-spacing:114.254338px;}
.ls48{letter-spacing:304.082338px;}
.ls1e{letter-spacing:447.170338px;}
.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;}
}
.ws62{word-spacing:-59.775600px;}
.ws61{word-spacing:-47.324343px;}
.wse{word-spacing:-38.937826px;}
.ws5c{word-spacing:-31.633157px;}
.ws5d{word-spacing:-28.955301px;}
.wsca{word-spacing:-26.710959px;}
.ws60{word-spacing:-21.939033px;}
.wse5{word-spacing:-17.932800px;}
.wsd{word-spacing:-16.605662px;}
.ws59{word-spacing:-15.367771px;}
.ws31{word-spacing:-14.943900px;}
.wsac{word-spacing:-14.920027px;}
.ws4f{word-spacing:-13.531962px;}
.ws20{word-spacing:-13.449600px;}
.ws58{word-spacing:-12.043771px;}
.ws97{word-spacing:-11.955150px;}
.wsb3{word-spacing:-11.607358px;}
.wsc8{word-spacing:-11.391318px;}
.ws53{word-spacing:-10.460700px;}
.wsd9{word-spacing:-7.899692px;}
.ws82{word-spacing:-7.534862px;}
.ws5e{word-spacing:-7.471950px;}
.ws79{word-spacing:-6.682912px;}
.ws18{word-spacing:-6.502862px;}
.ws1{word-spacing:-4.981693px;}
.ws2{word-spacing:-4.979038px;}
.ws89{word-spacing:-3.729062px;}
.wsa5{word-spacing:-3.316862px;}
.wsb2{word-spacing:-3.298862px;}
.wse2{word-spacing:-3.297062px;}
.wsdd{word-spacing:-3.287658px;}
.ws17{word-spacing:-3.048556px;}
.ws94{word-spacing:-2.988780px;}
.ws103{word-spacing:-2.749678px;}
.wsde{word-spacing:-2.570351px;}
.ws8e{word-spacing:-2.450800px;}
.ws38{word-spacing:-2.391024px;}
.ws109{word-spacing:-2.331248px;}
.wsc7{word-spacing:-2.282331px;}
.wscb{word-spacing:-2.278215px;}
.ws3d{word-spacing:-2.092146px;}
.ws86{word-spacing:-2.032370px;}
.wse3{word-spacing:-1.912819px;}
.wsd2{word-spacing:-1.793268px;}
.ws3f{word-spacing:-1.673717px;}
.wsa6{word-spacing:-1.660862px;}
.ws9f{word-spacing:-1.659062px;}
.ws3e{word-spacing:-1.613941px;}
.wsa3{word-spacing:-1.554166px;}
.ws39{word-spacing:-1.315063px;}
.ws8b{word-spacing:-1.227062px;}
.ws1b{word-spacing:-1.195512px;}
.ws4b{word-spacing:-1.075961px;}
.ws69{word-spacing:-1.016185px;}
.ws113{word-spacing:-0.956410px;}
.ws6f{word-spacing:-0.896634px;}
.ws83{word-spacing:-0.836858px;}
.wsaf{word-spacing:-0.777083px;}
.wsa1{word-spacing:-0.717307px;}
.ws4c{word-spacing:-0.657532px;}
.ws19{word-spacing:-0.597756px;}
.wsd0{word-spacing:-0.537980px;}
.ws1a{word-spacing:-0.418429px;}
.ws2d{word-spacing:-0.358654px;}
.wsdc{word-spacing:-0.304862px;}
.ws12{word-spacing:-0.298878px;}
.wsf1{word-spacing:-0.277916px;}
.ws8{word-spacing:-0.239102px;}
.ws2a{word-spacing:-0.215194px;}
.ws2c{word-spacing:-0.179327px;}
.ws75{word-spacing:-0.161395px;}
.ws30{word-spacing:-0.119551px;}
.ws25{word-spacing:-0.107597px;}
.wsb{word-spacing:-0.059776px;}
.ws85{word-spacing:-0.053798px;}
.ws4e{word-spacing:-0.041843px;}
.ws5f{word-spacing:-0.029888px;}
.ws7c{word-spacing:-0.002692px;}
.ws0{word-spacing:0.000000px;}
.ws7d{word-spacing:0.011955px;}
.ws96{word-spacing:0.013616px;}
.wsbd{word-spacing:0.019616px;}
.ws34{word-spacing:0.053798px;}
.wsa{word-spacing:0.059776px;}
.ws9c{word-spacing:0.107597px;}
.ws1c{word-spacing:0.119551px;}
.ws29{word-spacing:0.161395px;}
.wsc{word-spacing:0.179327px;}
.ws100{word-spacing:0.192689px;}
.ws35{word-spacing:0.215194px;}
.ws5{word-spacing:0.239102px;}
.wsd3{word-spacing:0.268992px;}
.ws16{word-spacing:0.298878px;}
.ws42{word-spacing:0.358654px;}
.ws93{word-spacing:0.418429px;}
.wsbc{word-spacing:0.478205px;}
.ws70{word-spacing:0.537980px;}
.ws8f{word-spacing:0.597756px;}
.ws77{word-spacing:0.657532px;}
.wsd1{word-spacing:0.836858px;}
.ws49{word-spacing:0.896634px;}
.wsa2{word-spacing:0.956410px;}
.wse4{word-spacing:1.016185px;}
.ws71{word-spacing:1.075961px;}
.wsf{word-spacing:1.135736px;}
.wsd4{word-spacing:1.195512px;}
.wsa9{word-spacing:1.237363px;}
.wse0{word-spacing:1.315063px;}
.ws52{word-spacing:1.374839px;}
.ws32{word-spacing:1.494390px;}
.ws48{word-spacing:1.554166px;}
.wsa4{word-spacing:1.613941px;}
.ws78{word-spacing:1.662558px;}
.ws9e{word-spacing:1.733492px;}
.ws47{word-spacing:1.793268px;}
.ws80{word-spacing:1.853044px;}
.ws7f{word-spacing:1.912819px;}
.ws43{word-spacing:1.972595px;}
.ws92{word-spacing:2.151922px;}
.ws7{word-spacing:2.211697px;}
.wsc2{word-spacing:2.270938px;}
.ws36{word-spacing:2.331248px;}
.ws8a{word-spacing:2.450800px;}
.wsad{word-spacing:2.510575px;}
.ws9{word-spacing:2.570351px;}
.ws72{word-spacing:2.630126px;}
.ws1d{word-spacing:2.689902px;}
.wscf{word-spacing:2.749678px;}
.ws90{word-spacing:2.809453px;}
.ws2b{word-spacing:2.869229px;}
.ws6c{word-spacing:2.988780px;}
.ws2e{word-spacing:3.048556px;}
.ws11{word-spacing:3.108331px;}
.ws4a{word-spacing:3.168107px;}
.ws76{word-spacing:3.174106px;}
.ws14{word-spacing:3.227882px;}
.ws6a{word-spacing:3.347434px;}
.ws10b{word-spacing:3.407209px;}
.ws44{word-spacing:3.526760px;}
.ws64{word-spacing:3.586536px;}
.ws91{word-spacing:3.646312px;}
.ws63{word-spacing:3.706087px;}
.ws3c{word-spacing:3.825638px;}
.ws3b{word-spacing:3.885414px;}
.ws6{word-spacing:3.945190px;}
.ws98{word-spacing:4.004965px;}
.wsfc{word-spacing:4.064741px;}
.ws84{word-spacing:4.088678px;}
.ws67{word-spacing:4.124516px;}
.ws104{word-spacing:4.184292px;}
.ws9d{word-spacing:4.244068px;}
.ws41{word-spacing:4.303843px;}
.wsed{word-spacing:4.423394px;}
.ws7e{word-spacing:4.483170px;}
.ws81{word-spacing:4.542946px;}
.ws40{word-spacing:4.722272px;}
.ws3a{word-spacing:4.782048px;}
.ws37{word-spacing:4.841824px;}
.ws6e{word-spacing:4.901599px;}
.ws73{word-spacing:4.961375px;}
.wsbb{word-spacing:5.080926px;}
.ws66{word-spacing:5.200477px;}
.wsd7{word-spacing:5.260253px;}
.ws74{word-spacing:5.320028px;}
.wsae{word-spacing:5.379804px;}
.ws15{word-spacing:5.499355px;}
.ws99{word-spacing:5.618906px;}
.ws2f{word-spacing:5.678682px;}
.wsee{word-spacing:5.738458px;}
.ws4d{word-spacing:5.798233px;}
.wsb0{word-spacing:5.869964px;}
.ws95{word-spacing:5.921196px;}
.wsab{word-spacing:5.929754px;}
.wsd5{word-spacing:5.936522px;}
.wsaa{word-spacing:5.951131px;}
.wsce{word-spacing:5.953009px;}
.ws28{word-spacing:5.971622px;}
.wsf9{word-spacing:5.977560px;}
.ws111{word-spacing:6.023635px;}
.ws6b{word-spacing:6.156887px;}
.ws87{word-spacing:6.216662px;}
.ws88{word-spacing:6.276438px;}
.wsb1{word-spacing:6.336214px;}
.ws46{word-spacing:6.395989px;}
.ws45{word-spacing:6.455765px;}
.wsd6{word-spacing:6.515540px;}
.wsf4{word-spacing:6.635092px;}
.ws4{word-spacing:6.694867px;}
.ws10d{word-spacing:6.754643px;}
.wsbf{word-spacing:6.874194px;}
.ws56{word-spacing:6.933970px;}
.wsec{word-spacing:6.993745px;}
.wsc3{word-spacing:7.113296px;}
.ws22{word-spacing:7.204161px;}
.ws57{word-spacing:7.232848px;}
.ws68{word-spacing:7.292623px;}
.ws9a{word-spacing:7.412174px;}
.ws50{word-spacing:7.475939px;}
.ws10e{word-spacing:7.651277px;}
.ws7b{word-spacing:7.711052px;}
.ws3{word-spacing:7.890379px;}
.ws105{word-spacing:7.950155px;}
.ws106{word-spacing:8.009930px;}
.wsdb{word-spacing:8.177357px;}
.wsff{word-spacing:8.249033px;}
.ws10{word-spacing:8.488135px;}
.wsc0{word-spacing:8.667462px;}
.wsdf{word-spacing:8.727238px;}
.wse8{word-spacing:8.787013px;}
.ws51{word-spacing:9.131939px;}
.wsf8{word-spacing:9.265218px;}
.ws102{word-spacing:9.504320px;}
.ws8c{word-spacing:9.522317px;}
.wsbe{word-spacing:9.564096px;}
.wsf0{word-spacing:9.922750px;}
.wsfd{word-spacing:10.436893px;}
.ws5b{word-spacing:11.118262px;}
.wse9{word-spacing:11.297588px;}
.wse6{word-spacing:12.014896px;}
.ws13{word-spacing:12.134447px;}
.wse1{word-spacing:12.612652px;}
.wsf7{word-spacing:12.672427px;}
.ws24{word-spacing:13.234406px;}
.ws26{word-spacing:13.394179px;}
.ws33{word-spacing:13.395802px;}
.ws23{word-spacing:13.557197px;}
.ws116{word-spacing:13.569061px;}
.wsfa{word-spacing:13.695498px;}
.ws1f{word-spacing:13.826189px;}
.ws114{word-spacing:13.927715px;}
.wsc1{word-spacing:13.939670px;}
.wsc4{word-spacing:13.999446px;}
.ws6d{word-spacing:14.047266px;}
.ws117{word-spacing:14.465695px;}
.ws112{word-spacing:14.525471px;}
.wsf2{word-spacing:14.585246px;}
.ws107{word-spacing:14.645022px;}
.ws65{word-spacing:14.884124px;}
.ws10c{word-spacing:14.943900px;}
.wsf3{word-spacing:15.063451px;}
.ws108{word-spacing:15.123227px;}
.ws101{word-spacing:15.183002px;}
.wsef{word-spacing:15.242778px;}
.wsfe{word-spacing:15.900310px;}
.wsf6{word-spacing:16.498066px;}
.wsea{word-spacing:16.677392px;}
.ws21{word-spacing:16.731302px;}
.wse7{word-spacing:16.737168px;}
.ws55{word-spacing:16.796944px;}
.ws110{word-spacing:17.036046px;}
.ws27{word-spacing:17.092211px;}
.ws115{word-spacing:18.171782px;}
.wseb{word-spacing:18.889090px;}
.ws8d{word-spacing:19.815208px;}
.ws1e{word-spacing:20.228198px;}
.wsf5{word-spacing:21.519216px;}
.ws10a{word-spacing:22.356074px;}
.ws10f{word-spacing:22.535401px;}
.wsa0{word-spacing:26.121937px;}
.wsfb{word-spacing:28.572737px;}
.wsa7{word-spacing:37.085718px;}
.wsc9{word-spacing:39.453301px;}
.wscc{word-spacing:39.457416px;}
.wsda{word-spacing:88.191966px;}
.wsd8{word-spacing:91.660457px;}
.wsc5{word-spacing:91.844268px;}
.ws9b{word-spacing:93.077974px;}
.wsc6{word-spacing:103.815489px;}
.wscd{word-spacing:114.065415px;}
.wsb7{word-spacing:141.361904px;}
.ws5a{word-spacing:152.249596px;}
.wsb9{word-spacing:180.803910px;}
.wsba{word-spacing:197.059447px;}
.wsa8{word-spacing:211.061402px;}
.wsb6{word-spacing:221.464923px;}
.wsb4{word-spacing:226.110616px;}
.wsb8{word-spacing:242.359431px;}
.wsb5{word-spacing:266.727872px;}
.ws54{word-spacing:394.425589px;}
.ws7a{word-spacing:455.471596px;}
._19{margin-left:-36.458888px;}
._1a{margin-left:-30.397800px;}
._11{margin-left:-7.890379px;}
._10{margin-left:-6.515540px;}
._2{margin-left:-5.355874px;}
._4{margin-left:-3.825638px;}
._1b{margin-left:-2.809453px;}
._0{margin-left:-1.721544px;}
._a{width:1.212600px;}
._17{width:2.360181px;}
._1e{width:3.409291px;}
._23{width:8.406600px;}
._3{width:9.961686px;}
._d{width:12.564859px;}
._16{width:13.867939px;}
._1{width:14.943900px;}
._e{width:16.505098px;}
._13{width:17.562078px;}
._7{width:18.769538px;}
._6{width:20.467152px;}
._8{width:22.356074px;}
._12{width:23.551586px;}
._15{width:25.045976px;}
._f{width:26.887072px;}
._9{width:28.214083px;}
._1d{width:29.642914px;}
._5{width:30.844210px;}
._20{width:31.979946px;}
._14{width:33.474336px;}
._1c{width:34.562245px;}
._31{width:36.176220px;}
._b{width:39.009792px;}
._32{width:40.647408px;}
._18{width:41.747266px;}
._c{width:44.138986px;}
._30{width:45.345750px;}
._2f{width:46.672795px;}
._29{width:47.760704px;}
._24{width:52.541721px;}
._33{width:65.812936px;}
._22{width:103.202439px;}
._2e{width:106.892895px;}
._2d{width:110.615475px;}
._1f{width:112.090677px;}
._25{width:114.120698px;}
._2b{width:131.166834px;}
._2c{width:142.919077px;}
._21{width:156.369000px;}
._26{width:159.368470px;}
._27{width:255.126429px;}
._28{width:265.567811px;}
._2a{width:420.495949px;}
.fc1{color:rgb(0,20,115);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:19.933920px;}
.fs18{font-size:24.508800px;}
.fs15{font-size:24.841800px;}
.fs11{font-size:24.917400px;}
.fs16{font-size:29.410560px;}
.fs13{font-size:29.810160px;}
.fs6{font-size:29.887800px;}
.fs8{font-size:29.900880px;}
.fs17{font-size:32.678400px;}
.fs14{font-size:33.122400px;}
.fs9{font-size:33.223200px;}
.fse{font-size:34.073280px;}
.fs4{font-size:35.865600px;}
.fsd{font-size:36.912720px;}
.fsb{font-size:39.752160px;}
.fs12{font-size:41.005464px;}
.fs10{font-size:41.783144px;}
.fs2{font-size:41.842800px;}
.fsc{font-size:45.431040px;}
.fs7{font-size:47.820600px;}
.fsf{font-size:51.109920px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1ed{bottom:2.285956px;}
.y1ca{bottom:2.317015px;}
.y12f{bottom:2.324067px;}
.y154{bottom:3.384701px;}
.y1ec{bottom:11.661849px;}
.y1c9{bottom:11.820298px;}
.y12e{bottom:11.856270px;}
.y153{bottom:16.916407px;}
.y1d3{bottom:17.706573px;}
.y187{bottom:18.201182px;}
.y130{bottom:22.229025px;}
.y18e{bottom:23.619937px;}
.y155{bottom:25.933848px;}
.y139{bottom:25.964450px;}
.y1d2{bottom:27.262323px;}
.y194{bottom:27.345289px;}
.y1cb{bottom:29.845435px;}
.y138{bottom:33.283936px;}
.y1f7{bottom:33.397149px;}
.y1ee{bottom:35.256547px;}
.y1d4{bottom:36.269111px;}
.y1d1{bottom:36.377452px;}
.y193{bottom:36.488158px;}
.y15d{bottom:37.004372px;}
.y188{bottom:38.963258px;}
.y137{bottom:40.603422px;}
.y13a{bottom:41.121751px;}
.y18f{bottom:44.074529px;}
.y136{bottom:47.922909px;}
.y131{bottom:48.770420px;}
.y1f8{bottom:51.139672px;}
.y1cc{bottom:54.632059px;}
.y1ef{bottom:54.721719px;}
.y1d5{bottom:54.831649px;}
.y156{bottom:58.034403px;}
.y1fc{bottom:59.214054px;}
.y189{bottom:59.725334px;}
.y13b{bottom:60.014477px;}
.y1d9{bottom:60.018593px;}
.y13f{bottom:60.201245px;}
.y1f3{bottom:60.248019px;}
.y1cf{bottom:61.066606px;}
.y134{bottom:61.252447px;}
.y190{bottom:64.529121px;}
.y18d{bottom:65.048458px;}
.y1f9{bottom:68.882195px;}
.y1d6{bottom:73.394187px;}
.y1f0{bottom:74.186890px;}
.y18c{bottom:74.191327px;}
.y132{bottom:75.311814px;}
.y47{bottom:78.049500px;}
.y13c{bottom:78.907203px;}
.y1cd{bottom:79.418683px;}
.y18a{bottom:80.487410px;}
.y191{bottom:84.983712px;}
.y1fa{bottom:86.624717px;}
.y157{bottom:90.134958px;}
.y1d7{bottom:91.956725px;}
.y1f1{bottom:93.652061px;}
.y13d{bottom:97.799930px;}
.y1f6{bottom:101.066687px;}
.y18b{bottom:101.249486px;}
.y133{bottom:101.853209px;}
.y1ce{bottom:104.205307px;}
.y1fb{bottom:104.367240px;}
.y15c{bottom:104.716107px;}
.y192{bottom:105.438304px;}
.y1f5{bottom:110.059629px;}
.y1d8{bottom:110.519263px;}
.y1f2{bottom:113.117233px;}
.y2c{bottom:115.408500px;}
.y13e{bottom:116.692656px;}
.y11a{bottom:118.569000px;}
.y70{bottom:120.589500px;}
.y158{bottom:122.235513px;}
.y1f4{bottom:122.677832px;}
.y1d0{bottom:124.344650px;}
.y135{bottom:124.723063px;}
.y2b{bottom:130.353000px;}
.y89{bottom:133.341000px;}
.y227{bottom:133.416000px;}
.y119{bottom:136.501500px;}
.y1dc{bottom:137.449381px;}
.y6f{bottom:138.522000px;}
.y1b9{bottom:139.316900px;}
.y106{bottom:139.539000px;}
.y11d{bottom:139.740877px;}
.y46{bottom:142.308000px;}
.y2a{bottom:145.297500px;}
.y1db{bottom:146.825273px;}
.y1b8{bottom:148.820182px;}
.y11c{bottom:149.273080px;}
.ybc{bottom:151.011000px;}
.yec{bottom:151.275000px;}
.y253{bottom:151.348500px;}
.y159{bottom:154.336068px;}
.y118{bottom:154.434000px;}
.y105{bottom:154.482000px;}
.y6e{bottom:156.454500px;}
.y104{bottom:160.195500px;}
.y29{bottom:160.240500px;}
.y226{bottom:160.933500px;}
.y129{bottom:161.880800px;}
.y11e{bottom:162.249396px;}
.y20b{bottom:162.402000px;}
.y17a{bottom:162.872763px;}
.y88{bottom:167.052000px;}
.y1dd{bottom:167.267379px;}
.y162{bottom:167.406967px;}
.y1c3{bottom:168.434870px;}
.y182{bottom:168.984194px;}
.yeb{bottom:169.207500px;}
.y1e7{bottom:170.691693px;}
.y1ba{bottom:171.285446px;}
.y117{bottom:172.366500px;}
.ybb{bottom:173.809500px;}
.y6d{bottom:174.387000px;}
.y45{bottom:178.173000px;}
.y161{bottom:178.534022px;}
.y225{bottom:178.867500px;}
.y17b{bottom:180.940666px;}
.y103{bottom:182.412000px;}
.y1de{bottom:183.971204px;}
.y12a{bottom:184.456202px;}
.y11f{bottom:184.732649px;}
.y15a{bottom:186.436623px;}
.yea{bottom:187.140000px;}
.y1c4{bottom:189.227255px;}
.y160{bottom:189.661078px;}
.y28{bottom:190.128000px;}
.y183{bottom:190.159611px;}
.y116{bottom:190.299000px;}
.yba{bottom:191.743500px;}
.y1bb{bottom:191.858974px;}
.y6c{bottom:192.319500px;}
.y1eb{bottom:194.326419px;}
.y44{bottom:196.107000px;}
.y224{bottom:196.800000px;}
.y1c8{bottom:196.966723px;}
.y12d{bottom:197.566144px;}
.y1e8{bottom:197.910336px;}
.y252{bottom:198.561000px;}
.y1e3{bottom:198.628224px;}
.y17c{bottom:199.008569px;}
.y102{bottom:200.346000px;}
.y1df{bottom:200.675028px;}
.y87{bottom:200.763000px;}
.y15f{bottom:200.788133px;}
.y1bf{bottom:201.326977px;}
.y123{bottom:201.939666px;}
.y27{bottom:205.072500px;}
.y20a{bottom:205.248000px;}
.y12b{bottom:207.031604px;}
.y120{bottom:207.215902px;}
.y115{bottom:208.233000px;}
.yb9{bottom:209.676000px;}
.y1c5{bottom:210.019641px;}
.y6b{bottom:210.252000px;}
.y184{bottom:211.335028px;}
.y1bc{bottom:212.432502px;}
.y43{bottom:214.039500px;}
.y223{bottom:214.732500px;}
.y251{bottom:216.495000px;}
.y17d{bottom:217.076472px;}
.y1e0{bottom:217.378853px;}
.y101{bottom:218.278500px;}
.y15b{bottom:218.537178px;}
.y86{bottom:218.695500px;}
.y15e{bottom:219.386885px;}
.y26{bottom:220.017000px;}
.ye9{bottom:223.005000px;}
.y209{bottom:223.182000px;}
.y1e9{bottom:225.128978px;}
.y25{bottom:225.730500px;}
.y114{bottom:226.165500px;}
.yb8{bottom:227.608500px;}
.y6a{bottom:228.186000px;}
.y128{bottom:229.415021px;}
.y12c{bottom:229.607006px;}
.y121{bottom:229.699155px;}
.y163{bottom:230.471134px;}
.y1c6{bottom:230.812026px;}
.y42{bottom:231.972000px;}
.y185{bottom:232.510445px;}
.y1bd{bottom:233.006030px;}
.y1e1{bottom:234.082678px;}
.y250{bottom:234.427500px;}
.y17e{bottom:235.144375px;}
.y100{bottom:236.211000px;}
.y1e6{bottom:236.230111px;}
.y85{bottom:236.628000px;}
.y127{bottom:236.734507px;}
.y1c2{bottom:239.439759px;}
.y181{bottom:240.168436px;}
.ye8{bottom:240.937500px;}
.y208{bottom:241.114500px;}
.y222{bottom:241.632000px;}
.y126{bottom:244.053993px;}
.y113{bottom:244.098000px;}
.y1e5{bottom:245.223054px;}
.yb7{bottom:245.541000px;}
.y69{bottom:246.118500px;}
.y27b{bottom:247.558500px;}
.y24{bottom:247.947000px;}
.y1c1{bottom:248.554889px;}
.y180{bottom:249.311305px;}
.y41{bottom:249.904500px;}
.y1e2{bottom:250.786503px;}
.y125{bottom:251.373480px;}
.y1c7{bottom:251.604412px;}
.y122{bottom:252.182408px;}
.y1ea{bottom:252.347621px;}
.y24f{bottom:252.360000px;}
.y17f{bottom:253.212278px;}
.y1be{bottom:253.579558px;}
.y186{bottom:253.685862px;}
.yff{bottom:254.143500px;}
.y84{bottom:254.562000px;}
.y1e4{bottom:257.841256px;}
.ye7{bottom:258.871500px;}
.y207{bottom:259.047000px;}
.y1c0{bottom:261.344534px;}
.y112{bottom:262.030500px;}
.y124{bottom:262.139873px;}
.yb6{bottom:263.473500px;}
.y68{bottom:264.051000px;}
.y27a{bottom:265.491000px;}
.y23{bottom:265.879500px;}
.y40{bottom:267.837000px;}
.y24e{bottom:270.292500px;}
.yfe{bottom:272.076000px;}
.y83{bottom:272.494500px;}
.ye6{bottom:276.804000px;}
.y206{bottom:276.979500px;}
.y111{bottom:279.963000px;}
.yb5{bottom:281.406000px;}
.y67{bottom:281.983500px;}
.y279{bottom:283.423500px;}
.y22{bottom:283.812000px;}
.y221{bottom:284.479500px;}
.y3f{bottom:285.769500px;}
.y24d{bottom:288.225000px;}
.yfd{bottom:290.008500px;}
.y82{bottom:290.427000px;}
.ye5{bottom:294.736500px;}
.y205{bottom:294.912000px;}
.y110{bottom:297.895500px;}
.yb4{bottom:299.340000px;}
.y66{bottom:299.916000px;}
.y278{bottom:301.356000px;}
.y21{bottom:301.746000px;}
.y220{bottom:302.412000px;}
.y3e{bottom:303.703500px;}
.yfc{bottom:307.942500px;}
.ye4{bottom:312.669000px;}
.y204{bottom:312.844500px;}
.yb3{bottom:317.272500px;}
.y24c{bottom:317.580000px;}
.y65{bottom:317.848500px;}
.y277{bottom:319.290000px;}
.y20{bottom:319.678500px;}
.y21f{bottom:320.344500px;}
.y3d{bottom:321.636000px;}
.y1a8{bottom:322.714500px;}
.yfb{bottom:325.875000px;}
.y81{bottom:328.711500px;}
.ye3{bottom:330.601500px;}
.y203{bottom:330.778500px;}
.y80{bottom:333.103500px;}
.yb2{bottom:335.205000px;}
.y24b{bottom:335.512500px;}
.y1f{bottom:337.611000px;}
.y21e{bottom:338.277000px;}
.y3c{bottom:339.568500px;}
.yfa{bottom:343.807500px;}
.y64{bottom:344.748000px;}
.ye2{bottom:348.534000px;}
.y202{bottom:348.711000px;}
.y276{bottom:349.177500px;}
.y179{bottom:351.227144px;}
.yb1{bottom:353.137500px;}
.y24a{bottom:353.445000px;}
.y10f{bottom:353.853000px;}
.y1e{bottom:355.543500px;}
.y21d{bottom:356.209500px;}
.y3b{bottom:357.501000px;}
.yf9{bottom:361.740000px;}
.y63{bottom:362.680500px;}
.y1a7{bottom:366.129600px;}
.ye1{bottom:366.468000px;}
.y7f{bottom:366.814500px;}
.y275{bottom:367.110000px;}
.y178{bottom:369.402891px;}
.yb0{bottom:371.070000px;}
.y249{bottom:371.377500px;}
.y1d{bottom:373.476000px;}
.y21c{bottom:374.142000px;}
.y3a{bottom:375.433500px;}
.yf8{bottom:379.672500px;}
.y7e{bottom:380.355000px;}
.y62{bottom:380.613000px;}
.y1a6{bottom:383.967055px;}
.ye0{bottom:384.400500px;}
.y7d{bottom:384.747000px;}
.y274{bottom:385.042500px;}
.y177{bottom:387.578639px;}
.yaf{bottom:389.002500px;}
.y10e{bottom:391.552500px;}
.y21b{bottom:392.076000px;}
.y39{bottom:393.366000px;}
.y201{bottom:394.369500px;}
.yf7{bottom:397.605000px;}
.y61{bottom:398.547000px;}
.y248{bottom:400.732500px;}
.y1a5{bottom:401.804510px;}
.ydf{bottom:402.333000px;}
.y1c{bottom:402.535500px;}
.y272{bottom:402.975000px;}
.y273{bottom:403.050000px;}
.y1b6{bottom:403.413000px;}
.y176{bottom:405.754386px;}
.yae{bottom:406.936500px;}
.y10d{bottom:409.485000px;}
.y200{bottom:410.808000px;}
.y38{bottom:411.300000px;}
.yf6{bottom:415.539000px;}
.y60{bottom:416.479500px;}
.y247{bottom:418.665000px;}
.y1a4{bottom:419.641965px;}
.yde{bottom:420.265500px;}
.y271{bottom:420.909000px;}
.y21a{bottom:421.135500px;}
.y175{bottom:423.930133px;}
.yad{bottom:424.869000px;}
.y1ff{bottom:427.246500px;}
.y10c{bottom:427.419000px;}
.y7c{bottom:427.425000px;}
.y37{bottom:429.232500px;}
.yf5{bottom:433.471500px;}
.y5f{bottom:434.412000px;}
.y246{bottom:436.597500px;}
.y1a3{bottom:437.479420px;}
.y151{bottom:438.198000px;}
.y1b5{bottom:438.951000px;}
.y174{bottom:442.105881px;}
.yac{bottom:442.801500px;}
.y10b{bottom:445.351500px;}
.y36{bottom:447.165000px;}
.ydd{bottom:448.243500px;}
.y270{bottom:450.796500px;}
.yf4{bottom:451.404000px;}
.y5e{bottom:452.344500px;}
.y245{bottom:454.530000px;}
.y1a2{bottom:455.316875px;}
.y150{bottom:456.130500px;}
.y1b4{bottom:456.885000px;}
.yab{bottom:460.734000px;}
.y7b{bottom:461.134500px;}
.y10a{bottom:463.284000px;}
.y219{bottom:463.983000px;}
.y35{bottom:465.097500px;}
.y1a1{bottom:466.593521px;}
.y26f{bottom:468.729000px;}
.y5d{bottom:470.277000px;}
.y1b{bottom:471.048000px;}
.y244{bottom:472.464000px;}
.y14f{bottom:474.064500px;}
.y1b3{bottom:474.817500px;}
.y173{bottom:475.948500px;}
.ydc{bottom:477.304500px;}
.yaa{bottom:478.666500px;}
.y7a{bottom:479.068500px;}
.yf3{bottom:479.382000px;}
.y109{bottom:481.216500px;}
.y218{bottom:481.915500px;}
.y34{bottom:483.030000px;}
.y26e{bottom:486.661500px;}
.y5c{bottom:488.209500px;}
.y1a{bottom:488.980500px;}
.y243{bottom:490.396500px;}
.y14e{bottom:491.997000px;}
.y1b2{bottom:492.750000px;}
.ya9{bottom:496.599000px;}
.y79{bottom:497.001000px;}
.y107{bottom:499.149000px;}
.y108{bottom:499.224000px;}
.y217{bottom:499.848000px;}
.y33{bottom:500.962500px;}
.y26d{bottom:504.594000px;}
.y5b{bottom:506.143500px;}
.y1a0{bottom:506.317500px;}
.y19{bottom:506.913000px;}
.y242{bottom:508.329000px;}
.y14d{bottom:509.929500px;}
.y1b1{bottom:510.682500px;}
.y172{bottom:514.354500px;}
.ya8{bottom:514.533000px;}
.y78{bottom:514.933500px;}
.ydb{bottom:515.760000px;}
.yf2{bottom:517.081500px;}
.y216{bottom:517.780500px;}
.y32{bottom:518.896500px;}
.yda{bottom:520.150500px;}
.y5a{bottom:524.076000px;}
.y18{bottom:524.845500px;}
.y241{bottom:526.261500px;}
.y14c{bottom:527.862000px;}
.y1b0{bottom:528.615000px;}
.y171{bottom:532.288500px;}
.ya7{bottom:532.465500px;}
.y77{bottom:532.866000px;}
.y26c{bottom:534.483000px;}
.yf1{bottom:535.015500px;}
.y215{bottom:535.713000px;}
.y31{bottom:536.829000px;}
.yd8{bottom:538.084500px;}
.yd9{bottom:541.861500px;}
.y59{bottom:542.008500px;}
.y17{bottom:542.778000px;}
.y1af{bottom:546.547500px;}
.y170{bottom:550.221000px;}
.ya6{bottom:550.398000px;}
.y26b{bottom:552.415500px;}
.yf0{bottom:552.948000px;}
.y19f{bottom:552.975000px;}
.y214{bottom:553.645500px;}
.y14b{bottom:554.761500px;}
.y240{bottom:555.616500px;}
.yd6{bottom:556.017000px;}
.y76{bottom:559.765500px;}
.yd7{bottom:559.794000px;}
.y58{bottom:559.941000px;}
.y16{bottom:560.712000px;}
.y1ae{bottom:564.481500px;}
.y16f{bottom:568.153500px;}
.ya5{bottom:568.330500px;}
.y30{bottom:568.737000px;}
.y26a{bottom:570.348000px;}
.y19e{bottom:570.907500px;}
.y213{bottom:571.579500px;}
.y14a{bottom:572.694000px;}
.y23f{bottom:573.549000px;}
.yd5{bottom:573.949500px;}
.y75{bottom:577.698000px;}
.y57{bottom:577.873500px;}
.y15{bottom:578.644500px;}
.y1ad{bottom:582.414000px;}
.y2f{bottom:585.175500px;}
.y16e{bottom:586.086000px;}
.ya4{bottom:586.263000px;}
.y269{bottom:588.280500px;}
.y19d{bottom:588.840000px;}
.y212{bottom:589.512000px;}
.y149{bottom:590.626500px;}
.y23e{bottom:591.481500px;}
.yd4{bottom:591.882000px;}
.y74{bottom:595.630500px;}
.y56{bottom:595.806000px;}
.y14{bottom:596.577000px;}
.yef{bottom:600.691500px;}
.y2e{bottom:601.614000px;}
.y16d{bottom:604.018500px;}
.y268{bottom:606.213000px;}
.y19c{bottom:606.772500px;}
.y211{bottom:607.444500px;}
.y148{bottom:608.559000px;}
.yd3{bottom:609.814500px;}
.y73{bottom:613.563000px;}
.y55{bottom:613.740000px;}
.ya3{bottom:614.242500px;}
.y13{bottom:614.509500px;}
.yee{bottom:617.130000px;}
.y2d{bottom:618.052500px;}
.y23d{bottom:620.836500px;}
.y16c{bottom:621.951000px;}
.y19b{bottom:624.705000px;}
.y210{bottom:625.377000px;}
.y147{bottom:626.493000px;}
.yd2{bottom:627.747000px;}
.y72{bottom:631.497000px;}
.y54{bottom:631.672500px;}
.y12{bottom:632.442000px;}
.yed{bottom:633.568500px;}
.y267{bottom:636.102000px;}
.y23c{bottom:638.769000px;}
.y1ac{bottom:639.136500px;}
.y16b{bottom:639.885000px;}
.y19a{bottom:642.637500px;}
.y20f{bottom:643.309500px;}
.y146{bottom:644.425500px;}
.yd1{bottom:645.681000px;}
.y53{bottom:649.605000px;}
.y11{bottom:650.374500px;}
.ya2{bottom:651.942000px;}
.y266{bottom:654.034500px;}
.y1ab{bottom:655.575000px;}
.y23b{bottom:656.701500px;}
.y16a{bottom:657.817500px;}
.y71{bottom:660.556500px;}
.y199{bottom:660.571500px;}
.y20e{bottom:661.242000px;}
.y145{bottom:662.358000px;}
.yd0{bottom:663.613500px;}
.y52{bottom:667.537500px;}
.y10{bottom:668.308500px;}
.ya1{bottom:669.874500px;}
.y265{bottom:671.967000px;}
.y1aa{bottom:672.013500px;}
.y23a{bottom:674.634000px;}
.y169{bottom:675.750000px;}
.y198{bottom:678.504000px;}
.y20d{bottom:679.176000px;}
.y144{bottom:680.290500px;}
.ycf{bottom:681.546000px;}
.y51{bottom:685.470000px;}
.yf{bottom:686.241000px;}
.ya0{bottom:687.807000px;}
.y1a9{bottom:688.452000px;}
.y264{bottom:689.899500px;}
.y168{bottom:693.682500px;}
.y197{bottom:696.436500px;}
.y20c{bottom:697.108500px;}
.y143{bottom:698.223000px;}
.ycd{bottom:699.478500px;}
.yce{bottom:703.255500px;}
.y50{bottom:703.404000px;}
.y239{bottom:703.989000px;}
.ye{bottom:704.173500px;}
.y9f{bottom:705.739500px;}
.y196{bottom:714.369000px;}
.y142{bottom:716.155500px;}
.y263{bottom:719.787000px;}
.y4f{bottom:721.336500px;}
.y167{bottom:721.660500px;}
.y238{bottom:721.921500px;}
.yd{bottom:722.106000px;}
.ycc{bottom:727.456500px;}
.y9e{bottom:734.799000px;}
.y262{bottom:737.721000px;}
.y4e{bottom:739.269000px;}
.y166{bottom:739.594500px;}
.y237{bottom:739.854000px;}
.yc{bottom:740.038500px;}
.y195{bottom:742.347000px;}
.y1fe{bottom:744.852000px;}
.y261{bottom:755.653500px;}
.y4d{bottom:757.201500px;}
.yb{bottom:757.971000px;}
.y1fd{bottom:761.290500px;}
.ycb{bottom:768.981000px;}
.y236{bottom:769.209000px;}
.yca{bottom:772.759500px;}
.y260{bottom:773.586000px;}
.y141{bottom:775.024500px;}
.ya{bottom:775.905000px;}
.y9d{bottom:777.646500px;}
.y235{bottom:787.141500px;}
.y1da{bottom:791.383500px;}
.y140{bottom:791.463000px;}
.y9{bottom:793.837500px;}
.y4c{bottom:794.145000px;}
.y9c{bottom:795.579000px;}
.yc9{bottom:801.540000px;}
.y165{bottom:802.875000px;}
.y25f{bottom:803.473500px;}
.y234{bottom:805.074000px;}
.y1b7{bottom:807.822000px;}
.y4a{bottom:810.583500px;}
.y8{bottom:811.770000px;}
.y9b{bottom:813.513000px;}
.y4b{bottom:813.982500px;}
.y11b{bottom:818.362500px;}
.y164{bottom:819.313500px;}
.yc8{bottom:819.472500px;}
.y25e{bottom:821.406000px;}
.y233{bottom:823.006500px;}
.y49{bottom:827.020500px;}
.y7{bottom:829.702500px;}
.y99{bottom:831.445500px;}
.y9a{bottom:835.222500px;}
.y25d{bottom:839.338500px;}
.y232{bottom:840.939000px;}
.y152{bottom:846.213000px;}
.y6{bottom:847.635000px;}
.y98{bottom:849.378000px;}
.yc7{bottom:849.750000px;}
.y231{bottom:858.873000px;}
.yc6{bottom:860.001000px;}
.y5{bottom:865.567500px;}
.y97{bottom:867.310500px;}
.y25c{bottom:869.227500px;}
.y4{bottom:883.501500px;}
.y96{bottom:885.243000px;}
.y25b{bottom:887.160000px;}
.y230{bottom:888.226500px;}
.yc5{bottom:901.024500px;}
.y95{bottom:903.175500px;}
.y25a{bottom:905.092500px;}
.y22f{bottom:906.159000px;}
.y3{bottom:910.146000px;}
.yc4{bottom:918.957000px;}
.y94{bottom:921.109500px;}
.y22e{bottom:924.093000px;}
.y259{bottom:934.980000px;}
.yc3{bottom:936.889500px;}
.y93{bottom:939.042000px;}
.y22d{bottom:942.025500px;}
.y258{bottom:952.914000px;}
.yc2{bottom:954.822000px;}
.y22c{bottom:959.958000px;}
.y2{bottom:962.025000px;}
.y91{bottom:963.873000px;}
.y92{bottom:964.939500px;}
.y90{bottom:968.634000px;}
.y257{bottom:970.846500px;}
.yc1{bottom:972.756000px;}
.y256{bottom:988.779000px;}
.y22b{bottom:989.313000px;}
.yc0{bottom:990.688500px;}
.y8f{bottom:998.742000px;}
.y255{bottom:1006.711500px;}
.y22a{bottom:1007.245500px;}
.ybf{bottom:1008.621000px;}
.y8e{bottom:1016.674500px;}
.y229{bottom:1025.178000px;}
.ybe{bottom:1026.553500px;}
.y8d{bottom:1034.607000px;}
.y254{bottom:1036.599000px;}
.y1{bottom:1036.615500px;}
.ybd{bottom:1044.486000px;}
.y8b{bottom:1052.539500px;}
.y228{bottom:1054.531500px;}
.y8c{bottom:1056.316500px;}
.y8a{bottom:1072.465500px;}
.y48{bottom:1106.836500px;}
.h20{height:18.863250px;}
.h35{height:23.192409px;}
.h31{height:23.507524px;}
.h2a{height:23.579063px;}
.h6{height:24.675533px;}
.h26{height:25.288762px;}
.h33{height:27.830891px;}
.h2f{height:28.209028px;}
.h1e{height:28.294876px;}
.h2c{height:28.457792px;}
.h28{height:28.997502px;}
.h2d{height:30.754098px;}
.h34{height:30.923213px;}
.h29{height:31.337358px;}
.h30{height:31.343365px;}
.he{height:31.382100px;}
.h1f{height:31.438751px;}
.h24{height:34.930103px;}
.hb{height:36.744307px;}
.h8{height:36.905702px;}
.h7{height:37.013299px;}
.ha{height:37.336090px;}
.h22{height:37.617034px;}
.h37{height:39.930101px;}
.h36{height:41.006062px;}
.h4{height:41.125613px;}
.h15{height:41.484266px;}
.h23{height:42.990896px;}
.h5{height:44.831700px;}
.h9{height:47.725000px;}
.h27{height:48.364758px;}
.h3{height:49.781453px;}
.h16{height:50.268632px;}
.h2{height:50.477846px;}
.h1c{height:50.483846px;}
.hc{height:53.072100px;}
.h17{height:53.078100px;}
.h2b{height:55.355071px;}
.h13{height:56.060100px;}
.hd{height:56.954100px;}
.h1{height:59.737577px;}
.h11{height:59.939700px;}
.h1b{height:59.945700px;}
.hf{height:62.399700px;}
.h25{height:70.203859px;}
.h1a{height:77.507700px;}
.h14{height:83.523024px;}
.h18{height:86.673024px;}
.h12{height:87.789024px;}
.h10{height:92.717700px;}
.h19{height:127.677024px;}
.h21{height:241.198449px;}
.h32{height:264.639640px;}
.h2e{height:268.235287px;}
.h1d{height:269.051596px;}
.h0{height:1188.000000px;}
.w4{width:349.912393px;}
.w3{width:349.924700px;}
.w1{width:350.994283px;}
.w2{width:350.999516px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x85{left:6.911723px;}
.x8c{left:9.293152px;}
.x84{left:10.298932px;}
.x8b{left:12.680361px;}
.x9d{left:14.853377px;}
.xca{left:18.491124px;}
.x9c{left:20.720813px;}
.xc9{left:21.822789px;}
.x9b{left:46.473059px;}
.x9e{left:56.033986px;}
.x83{left:59.900426px;}
.xc1{left:61.805479px;}
.xc7{left:65.101010px;}
.xa1{left:71.231371px;}
.xa0{left:72.490264px;}
.x8d{left:74.970876px;}
.xc5{left:76.518049px;}
.x86{left:78.241285px;}
.xc2{left:79.778535px;}
.xa3{left:80.784952px;}
.xf{left:83.160000px;}
.xc8{left:86.183919px;}
.xa2{left:88.689491px;}
.x87{left:92.625243px;}
.xd9{left:97.851000px;}
.x49{left:102.139500px;}
.x10{left:106.024500px;}
.x7c{left:107.370000px;}
.xbe{left:108.373219px;}
.x7{left:110.149500px;}
.x1{left:111.339000px;}
.x4{left:113.049000px;}
.xc3{left:114.310319px;}
.xb5{left:124.510690px;}
.x8{left:128.670000px;}
.xb{left:133.045500px;}
.x16{left:134.335500px;}
.x8e{left:139.336543px;}
.x90{left:147.894000px;}
.x3e{left:149.857500px;}
.xbd{left:156.159283px;}
.x91{left:159.516000px;}
.x70{left:161.283000px;}
.x3f{left:163.752000px;}
.xce{left:166.717500px;}
.x39{left:167.845500px;}
.x3a{left:173.241000px;}
.x4d{left:174.415500px;}
.xb7{left:180.509692px;}
.xb6{left:183.896901px;}
.x74{left:186.247500px;}
.x8f{left:187.641000px;}
.x3c{left:188.773500px;}
.x11{left:191.011500px;}
.xc{left:193.029000px;}
.x1b{left:196.084500px;}
.x3d{left:200.043000px;}
.xda{left:206.314500px;}
.x2{left:207.441000px;}
.x1c{left:209.806500px;}
.x40{left:213.348000px;}
.x4e{left:215.205000px;}
.x3{left:225.297000px;}
.x76{left:226.689000px;}
.xcc{left:230.967102px;}
.x4f{left:234.417000px;}
.x88{left:235.873334px;}
.x15{left:237.459000px;}
.xcb{left:239.358578px;}
.x71{left:241.660500px;}
.xb8{left:248.616000px;}
.x89{left:249.840670px;}
.x4a{left:250.872000px;}
.x7a{left:253.068000px;}
.xbf{left:254.292000px;}
.x75{left:256.368000px;}
.x4b{left:258.004500px;}
.x9{left:260.899500px;}
.xba{left:265.477500px;}
.x72{left:266.832000px;}
.x77{left:270.327000px;}
.x4c{left:273.865500px;}
.x92{left:278.362500px;}
.x7b{left:280.092000px;}
.xa{left:283.756500px;}
.x73{left:285.520500px;}
.xc4{left:288.563125px;}
.x7d{left:291.706500px;}
.x5{left:293.229000px;}
.x3b{left:296.865000px;}
.x45{left:298.702500px;}
.x9f{left:299.993191px;}
.x95{left:302.530500px;}
.x47{left:307.731000px;}
.xbb{left:311.754000px;}
.x8a{left:315.309452px;}
.xcf{left:318.354000px;}
.x9a{left:320.607000px;}
.xd{left:322.663500px;}
.x43{left:326.356500px;}
.x96{left:333.661500px;}
.x6{left:335.992500px;}
.x44{left:339.349500px;}
.x41{left:344.218500px;}
.xbc{left:345.967500px;}
.xe{left:352.152000px;}
.x7e{left:359.715000px;}
.xd0{left:361.032000px;}
.x42{left:368.772000px;}
.x48{left:379.305000px;}
.x78{left:383.311500px;}
.x98{left:384.379500px;}
.x97{left:386.263500px;}
.x79{left:394.935000px;}
.x99{left:396.001500px;}
.x93{left:400.423500px;}
.x46{left:402.436500px;}
.x94{left:412.150500px;}
.xb9{left:415.210500px;}
.x14{left:443.925000px;}
.xc6{left:454.771500px;}
.x12{left:460.407000px;}
.x80{left:461.533500px;}
.xac{left:470.457049px;}
.x27{left:475.473000px;}
.xad{left:478.197076px;}
.x28{left:482.788500px;}
.xa6{left:485.728500px;}
.xae{left:486.898578px;}
.x2e{left:488.722500px;}
.xaf{left:492.257461px;}
.xb0{left:496.320399px;}
.x33{left:498.898500px;}
.x2c{left:500.587500px;}
.x6c{left:502.492500px;}
.x5f{left:503.494500px;}
.x29{left:504.601500px;}
.xdd{left:508.645500px;}
.xdc{left:509.893500px;}
.x6e{left:513.037500px;}
.x34{left:515.974500px;}
.x2f{left:520.377000px;}
.x17{left:521.821500px;}
.x32{left:525.381000px;}
.xb2{left:527.578500px;}
.x60{left:531.478500px;}
.x2d{left:534.237000px;}
.x18{left:535.534500px;}
.xab{left:536.815500px;}
.xd5{left:537.847500px;}
.x69{left:539.590500px;}
.x6b{left:550.482000px;}
.x6f{left:551.938500px;}
.x56{left:553.605000px;}
.x6d{left:558.136500px;}
.x62{left:559.798500px;}
.x6a{left:574.455000px;}
.xd4{left:575.455500px;}
.x63{left:583.263000px;}
.x2a{left:585.927000px;}
.x5a{left:587.346000px;}
.x26{left:589.377000px;}
.x13{left:591.912000px;}
.x2b{left:593.242500px;}
.x81{left:596.598000px;}
.x5c{left:601.186500px;}
.x5b{left:604.332000px;}
.x82{left:608.220000px;}
.x52{left:618.003000px;}
.xcd{left:625.402500px;}
.xb1{left:629.149500px;}
.x64{left:637.075500px;}
.x5d{left:641.902500px;}
.x24{left:643.402500px;}
.x1e{left:645.382500px;}
.x1d{left:648.259500px;}
.xa7{left:650.022000px;}
.x57{left:654.618000px;}
.x5e{left:658.042500px;}
.x1f{left:659.104500px;}
.x50{left:661.012500px;}
.xd3{left:663.169500px;}
.xa4{left:668.560500px;}
.x51{left:670.855500px;}
.x65{left:674.761500px;}
.x53{left:676.896000px;}
.xaa{left:682.417500px;}
.xd7{left:687.895500px;}
.xd6{left:689.143500px;}
.xc0{left:697.405500px;}
.x30{left:698.482500px;}
.x66{left:708.942000px;}
.xd8{left:711.111000px;}
.xa5{left:716.674500px;}
.x7f{left:718.722000px;}
.x22{left:720.031500px;}
.xb3{left:724.153500px;}
.x23{left:727.503000px;}
.x31{left:730.296000px;}
.x35{left:735.576000px;}
.x37{left:739.621500px;}
.xdb{left:742.222500px;}
.x36{left:745.381500px;}
.xb4{left:750.307500px;}
.x58{left:754.227000px;}
.xd1{left:755.298000px;}
.xa8{left:757.536000px;}
.x54{left:762.420000px;}
.x67{left:764.604000px;}
.x25{left:766.911000px;}
.x59{left:769.246500px;}
.x20{left:774.670500px;}
.x55{left:778.200000px;}
.xa9{left:780.037500px;}
.xd2{left:781.864500px;}
.x19{left:785.224500px;}
.x38{left:786.466500px;}
.x21{left:790.036500px;}
.x68{left:791.313000px;}
.x1a{left:801.046500px;}
.x61{left:802.173000px;}
@media print{
.ve{vertical-align:-58.981333pt;}
.va{vertical-align:-16.928000pt;}
.v3{vertical-align:-7.968000pt;}
.vb{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.648000pt;}
.vc{vertical-align:9.402667pt;}
.v9{vertical-align:13.429333pt;}
.v5{vertical-align:15.616000pt;}
.v1{vertical-align:19.280000pt;}
.v2{vertical-align:20.314667pt;}
.v13{vertical-align:21.434611pt;}
.v4{vertical-align:22.730667pt;}
.v11{vertical-align:35.946667pt;}
.v7{vertical-align:40.528000pt;}
.v8{vertical-align:42.565333pt;}
.vf{vertical-align:72.117333pt;}
.v10{vertical-align:74.917333pt;}
.vd{vertical-align:75.909333pt;}
.v12{vertical-align:111.365333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000055pt;}
.ls19{letter-spacing:0.000501pt;}
.ls27{letter-spacing:0.000882pt;}
.ls2c{letter-spacing:0.000964pt;}
.ls6{letter-spacing:0.001386pt;}
.ls6e{letter-spacing:0.001426pt;}
.ls67{letter-spacing:0.001453pt;}
.ls1b{letter-spacing:0.001659pt;}
.ls6a{letter-spacing:0.002079pt;}
.ls18{letter-spacing:0.002245pt;}
.ls70{letter-spacing:0.002561pt;}
.ls2d{letter-spacing:0.002906pt;}
.ls1{letter-spacing:0.003733pt;}
.ls30{letter-spacing:0.004777pt;}
.ls72{letter-spacing:0.741348pt;}
.ls60{letter-spacing:1.007711pt;}
.ls2{letter-spacing:1.077812pt;}
.ls6d{letter-spacing:1.307480pt;}
.ls45{letter-spacing:1.905975pt;}
.ls43{letter-spacing:1.911309pt;}
.ls5d{letter-spacing:2.181348pt;}
.ls5c{letter-spacing:2.635446pt;}
.ls34{letter-spacing:2.652911pt;}
.ls5f{letter-spacing:2.654903pt;}
.ls61{letter-spacing:2.655207pt;}
.ls5b{letter-spacing:2.655711pt;}
.ls1c{letter-spacing:2.655879pt;}
.ls71{letter-spacing:2.656015pt;}
.ls5a{letter-spacing:2.656693pt;}
.ls3d{letter-spacing:2.844335pt;}
.ls51{letter-spacing:3.166400pt;}
.ls52{letter-spacing:3.168479pt;}
.ls2e{letter-spacing:3.800156pt;}
.ls3c{letter-spacing:3.986178pt;}
.ls40{letter-spacing:4.165258pt;}
.ls1d{letter-spacing:4.170591pt;}
.ls3f{letter-spacing:4.755945pt;}
.ls23{letter-spacing:5.286216pt;}
.ls1f{letter-spacing:5.718992pt;}
.ls2a{letter-spacing:5.792271pt;}
.ls66{letter-spacing:6.189933pt;}
.ls64{letter-spacing:7.467145pt;}
.ls4e{letter-spacing:8.064479pt;}
.ls6b{letter-spacing:8.094818pt;}
.ls6f{letter-spacing:8.096840pt;}
.ls6c{letter-spacing:8.100498pt;}
.ls54{letter-spacing:8.850079pt;}
.ls2b{letter-spacing:8.855412pt;}
.ls35{letter-spacing:8.856855pt;}
.ls3{letter-spacing:8.976479pt;}
.ls46{letter-spacing:9.031578pt;}
.ls50{letter-spacing:9.883145pt;}
.ls4f{letter-spacing:9.886400pt;}
.ls10{letter-spacing:11.423781pt;}
.ls55{letter-spacing:11.440479pt;}
.ls31{letter-spacing:11.514110pt;}
.ls5e{letter-spacing:11.803145pt;}
.ls32{letter-spacing:11.803630pt;}
.ls25{letter-spacing:11.804745pt;}
.ls28{letter-spacing:11.806400pt;}
.ls26{letter-spacing:11.808479pt;}
.ls65{letter-spacing:11.824479pt;}
.ls74{letter-spacing:11.829812pt;}
.ls4{letter-spacing:12.220789pt;}
.ls33{letter-spacing:12.261812pt;}
.ls62{letter-spacing:12.592726pt;}
.ls12{letter-spacing:13.124065pt;}
.ls41{letter-spacing:13.230333pt;}
.ls5{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.336601pt;}
.lsb{letter-spacing:13.389734pt;}
.ls42{letter-spacing:13.442868pt;}
.ls14{letter-spacing:13.496002pt;}
.ls9{letter-spacing:13.549136pt;}
.ls56{letter-spacing:13.659145pt;}
.ls44{letter-spacing:13.682827pt;}
.ls24{letter-spacing:14.464576pt;}
.ls73{letter-spacing:14.491145pt;}
.lsa{letter-spacing:14.664947pt;}
.ls21{letter-spacing:14.754906pt;}
.ls1a{letter-spacing:14.757812pt;}
.ls2f{letter-spacing:14.759757pt;}
.ls4d{letter-spacing:14.930617pt;}
.ls59{letter-spacing:15.196286pt;}
.ls4c{letter-spacing:15.240239pt;}
.ls7{letter-spacing:15.244052pt;}
.ls4a{letter-spacing:15.608156pt;}
.ls58{letter-spacing:15.780758pt;}
.lsd{letter-spacing:16.046428pt;}
.ls38{letter-spacing:16.258963pt;}
.ls37{letter-spacing:16.471499pt;}
.lsf{letter-spacing:16.737168pt;}
.ls68{letter-spacing:16.776199pt;}
.ls69{letter-spacing:16.779145pt;}
.ls49{letter-spacing:17.085489pt;}
.ls29{letter-spacing:17.093812pt;}
.ls11{letter-spacing:17.481042pt;}
.lse{letter-spacing:17.587310pt;}
.ls57{letter-spacing:17.660052pt;}
.ls47{letter-spacing:17.714827pt;}
.ls3e{letter-spacing:18.562823pt;}
.ls53{letter-spacing:18.809389pt;}
.ls13{letter-spacing:19.021924pt;}
.ls22{letter-spacing:19.765798pt;}
.ls3b{letter-spacing:20.271651pt;}
.ls16{letter-spacing:20.527651pt;}
.ls3a{letter-spacing:24.437258pt;}
.ls15{letter-spacing:24.698591pt;}
.ls39{letter-spacing:25.769925pt;}
.ls63{letter-spacing:27.343235pt;}
.ls4b{letter-spacing:30.143879pt;}
.ls20{letter-spacing:30.149213pt;}
.ls0{letter-spacing:35.424533pt;}
.ls36{letter-spacing:101.559412pt;}
.ls48{letter-spacing:270.295412pt;}
.ls1e{letter-spacing:397.484745pt;}
.ws62{word-spacing:-53.133867pt;}
.ws61{word-spacing:-42.066082pt;}
.wse{word-spacing:-34.611401pt;}
.ws5c{word-spacing:-28.118362pt;}
.ws5d{word-spacing:-25.738045pt;}
.wsca{word-spacing:-23.743075pt;}
.ws60{word-spacing:-19.501363pt;}
.wse5{word-spacing:-15.940267pt;}
.wsd{word-spacing:-14.760588pt;}
.ws59{word-spacing:-13.660241pt;}
.ws31{word-spacing:-13.283467pt;}
.wsac{word-spacing:-13.262246pt;}
.ws4f{word-spacing:-12.028410pt;}
.ws20{word-spacing:-11.955200pt;}
.ws58{word-spacing:-10.705575pt;}
.ws97{word-spacing:-10.626800pt;}
.wsb3{word-spacing:-10.317651pt;}
.wsc8{word-spacing:-10.125616pt;}
.ws53{word-spacing:-9.298400pt;}
.wsd9{word-spacing:-7.021949pt;}
.ws82{word-spacing:-6.697655pt;}
.ws5e{word-spacing:-6.641733pt;}
.ws79{word-spacing:-5.940366pt;}
.ws18{word-spacing:-5.780321pt;}
.ws1{word-spacing:-4.428172pt;}
.ws2{word-spacing:-4.425811pt;}
.ws89{word-spacing:-3.314721pt;}
.wsa5{word-spacing:-2.948321pt;}
.wsb2{word-spacing:-2.932321pt;}
.wse2{word-spacing:-2.930721pt;}
.wsdd{word-spacing:-2.922363pt;}
.ws17{word-spacing:-2.709827pt;}
.ws94{word-spacing:-2.656693pt;}
.ws103{word-spacing:-2.444158pt;}
.wsde{word-spacing:-2.284756pt;}
.ws8e{word-spacing:-2.178489pt;}
.ws38{word-spacing:-2.125355pt;}
.ws109{word-spacing:-2.072221pt;}
.wsc7{word-spacing:-2.028739pt;}
.wscb{word-spacing:-2.025080pt;}
.ws3d{word-spacing:-1.859685pt;}
.ws86{word-spacing:-1.806551pt;}
.wse3{word-spacing:-1.700284pt;}
.wsd2{word-spacing:-1.594016pt;}
.ws3f{word-spacing:-1.487748pt;}
.wsa6{word-spacing:-1.476321pt;}
.ws9f{word-spacing:-1.474721pt;}
.ws3e{word-spacing:-1.434614pt;}
.wsa3{word-spacing:-1.381481pt;}
.ws39{word-spacing:-1.168945pt;}
.ws8b{word-spacing:-1.090721pt;}
.ws1b{word-spacing:-1.062677pt;}
.ws4b{word-spacing:-0.956410pt;}
.ws69{word-spacing:-0.903276pt;}
.ws113{word-spacing:-0.850142pt;}
.ws6f{word-spacing:-0.797008pt;}
.ws83{word-spacing:-0.743874pt;}
.wsaf{word-spacing:-0.690740pt;}
.wsa1{word-spacing:-0.637606pt;}
.ws4c{word-spacing:-0.584473pt;}
.ws19{word-spacing:-0.531339pt;}
.wsd0{word-spacing:-0.478205pt;}
.ws1a{word-spacing:-0.371937pt;}
.ws2d{word-spacing:-0.318803pt;}
.wsdc{word-spacing:-0.270988pt;}
.ws12{word-spacing:-0.265669pt;}
.wsf1{word-spacing:-0.247037pt;}
.ws8{word-spacing:-0.212535pt;}
.ws2a{word-spacing:-0.191283pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws75{word-spacing:-0.143462pt;}
.ws30{word-spacing:-0.106268pt;}
.ws25{word-spacing:-0.095642pt;}
.wsb{word-spacing:-0.053134pt;}
.ws85{word-spacing:-0.047821pt;}
.ws4e{word-spacing:-0.037194pt;}
.ws5f{word-spacing:-0.026567pt;}
.ws7c{word-spacing:-0.002393pt;}
.ws0{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.010627pt;}
.ws96{word-spacing:0.012103pt;}
.wsbd{word-spacing:0.017436pt;}
.ws34{word-spacing:0.047821pt;}
.wsa{word-spacing:0.053134pt;}
.ws9c{word-spacing:0.095642pt;}
.ws1c{word-spacing:0.106268pt;}
.ws29{word-spacing:0.143462pt;}
.wsc{word-spacing:0.159402pt;}
.ws100{word-spacing:0.171279pt;}
.ws35{word-spacing:0.191283pt;}
.ws5{word-spacing:0.212535pt;}
.wsd3{word-spacing:0.239104pt;}
.ws16{word-spacing:0.265669pt;}
.ws42{word-spacing:0.318803pt;}
.ws93{word-spacing:0.371937pt;}
.wsbc{word-spacing:0.425071pt;}
.ws70{word-spacing:0.478205pt;}
.ws8f{word-spacing:0.531339pt;}
.ws77{word-spacing:0.584473pt;}
.wsd1{word-spacing:0.743874pt;}
.ws49{word-spacing:0.797008pt;}
.wsa2{word-spacing:0.850142pt;}
.wse4{word-spacing:0.903276pt;}
.ws71{word-spacing:0.956410pt;}
.wsf{word-spacing:1.009543pt;}
.wsd4{word-spacing:1.062677pt;}
.wsa9{word-spacing:1.099878pt;}
.wse0{word-spacing:1.168945pt;}
.ws52{word-spacing:1.222079pt;}
.ws32{word-spacing:1.328347pt;}
.ws48{word-spacing:1.381481pt;}
.wsa4{word-spacing:1.434614pt;}
.ws78{word-spacing:1.477829pt;}
.ws9e{word-spacing:1.540882pt;}
.ws47{word-spacing:1.594016pt;}
.ws80{word-spacing:1.647150pt;}
.ws7f{word-spacing:1.700284pt;}
.ws43{word-spacing:1.753418pt;}
.ws92{word-spacing:1.912819pt;}
.ws7{word-spacing:1.965953pt;}
.wsc2{word-spacing:2.018612pt;}
.ws36{word-spacing:2.072221pt;}
.ws8a{word-spacing:2.178489pt;}
.wsad{word-spacing:2.231622pt;}
.ws9{word-spacing:2.284756pt;}
.ws72{word-spacing:2.337890pt;}
.ws1d{word-spacing:2.391024pt;}
.wscf{word-spacing:2.444158pt;}
.ws90{word-spacing:2.497292pt;}
.ws2b{word-spacing:2.550426pt;}
.ws6c{word-spacing:2.656693pt;}
.ws2e{word-spacing:2.709827pt;}
.ws11{word-spacing:2.762961pt;}
.ws4a{word-spacing:2.816095pt;}
.ws76{word-spacing:2.821427pt;}
.ws14{word-spacing:2.869229pt;}
.ws6a{word-spacing:2.975497pt;}
.ws10b{word-spacing:3.028630pt;}
.ws44{word-spacing:3.134898pt;}
.ws64{word-spacing:3.188032pt;}
.ws91{word-spacing:3.241166pt;}
.ws63{word-spacing:3.294300pt;}
.ws3c{word-spacing:3.400567pt;}
.ws3b{word-spacing:3.453701pt;}
.ws6{word-spacing:3.506835pt;}
.ws98{word-spacing:3.559969pt;}
.wsfc{word-spacing:3.613103pt;}
.ws84{word-spacing:3.634381pt;}
.ws67{word-spacing:3.666237pt;}
.ws104{word-spacing:3.719371pt;}
.ws9d{word-spacing:3.772505pt;}
.ws41{word-spacing:3.825638pt;}
.wsed{word-spacing:3.931906pt;}
.ws7e{word-spacing:3.985040pt;}
.ws81{word-spacing:4.038174pt;}
.ws40{word-spacing:4.197575pt;}
.ws3a{word-spacing:4.250709pt;}
.ws37{word-spacing:4.303843pt;}
.ws6e{word-spacing:4.356977pt;}
.ws73{word-spacing:4.410111pt;}
.wsbb{word-spacing:4.516379pt;}
.ws66{word-spacing:4.622646pt;}
.wsd7{word-spacing:4.675780pt;}
.ws74{word-spacing:4.728914pt;}
.wsae{word-spacing:4.782048pt;}
.ws15{word-spacing:4.888316pt;}
.ws99{word-spacing:4.994583pt;}
.ws2f{word-spacing:5.047717pt;}
.wsee{word-spacing:5.100851pt;}
.ws4d{word-spacing:5.153985pt;}
.wsb0{word-spacing:5.217746pt;}
.ws95{word-spacing:5.263285pt;}
.wsab{word-spacing:5.270893pt;}
.wsd5{word-spacing:5.276908pt;}
.wsaa{word-spacing:5.289894pt;}
.wsce{word-spacing:5.291564pt;}
.ws28{word-spacing:5.308109pt;}
.wsf9{word-spacing:5.313387pt;}
.ws111{word-spacing:5.354342pt;}
.ws6b{word-spacing:5.472788pt;}
.ws87{word-spacing:5.525922pt;}
.ws88{word-spacing:5.579056pt;}
.wsb1{word-spacing:5.632190pt;}
.ws46{word-spacing:5.685324pt;}
.ws45{word-spacing:5.738458pt;}
.wsd6{word-spacing:5.791591pt;}
.wsf4{word-spacing:5.897859pt;}
.ws4{word-spacing:5.950993pt;}
.ws10d{word-spacing:6.004127pt;}
.wsbf{word-spacing:6.110395pt;}
.ws56{word-spacing:6.163529pt;}
.wsec{word-spacing:6.216662pt;}
.wsc3{word-spacing:6.322930pt;}
.ws22{word-spacing:6.403698pt;}
.ws57{word-spacing:6.429198pt;}
.ws68{word-spacing:6.482332pt;}
.ws9a{word-spacing:6.588599pt;}
.ws50{word-spacing:6.645279pt;}
.ws10e{word-spacing:6.801135pt;}
.ws7b{word-spacing:6.854269pt;}
.ws3{word-spacing:7.013670pt;}
.ws105{word-spacing:7.066804pt;}
.ws106{word-spacing:7.119938pt;}
.wsdb{word-spacing:7.268762pt;}
.wsff{word-spacing:7.332474pt;}
.ws10{word-spacing:7.545009pt;}
.wsc0{word-spacing:7.704411pt;}
.wsdf{word-spacing:7.757545pt;}
.wse8{word-spacing:7.810678pt;}
.ws51{word-spacing:8.117279pt;}
.wsf8{word-spacing:8.235749pt;}
.ws102{word-spacing:8.448285pt;}
.ws8c{word-spacing:8.464282pt;}
.wsbe{word-spacing:8.501419pt;}
.wsf0{word-spacing:8.820222pt;}
.wsfd{word-spacing:9.277238pt;}
.ws5b{word-spacing:9.882899pt;}
.wse9{word-spacing:10.042301pt;}
.wse6{word-spacing:10.679907pt;}
.ws13{word-spacing:10.786175pt;}
.wse1{word-spacing:11.211246pt;}
.wsf7{word-spacing:11.264380pt;}
.ws24{word-spacing:11.763917pt;}
.ws26{word-spacing:11.905937pt;}
.ws33{word-spacing:11.907379pt;}
.ws23{word-spacing:12.050842pt;}
.ws116{word-spacing:12.061388pt;}
.wsfa{word-spacing:12.173776pt;}
.ws1f{word-spacing:12.289946pt;}
.ws114{word-spacing:12.380191pt;}
.wsc1{word-spacing:12.390818pt;}
.wsc4{word-spacing:12.443952pt;}
.ws6d{word-spacing:12.486459pt;}
.ws117{word-spacing:12.858396pt;}
.ws112{word-spacing:12.911530pt;}
.wsf2{word-spacing:12.964663pt;}
.ws107{word-spacing:13.017797pt;}
.ws65{word-spacing:13.230333pt;}
.ws10c{word-spacing:13.283467pt;}
.wsf3{word-spacing:13.389734pt;}
.ws108{word-spacing:13.442868pt;}
.ws101{word-spacing:13.496002pt;}
.wsef{word-spacing:13.549136pt;}
.wsfe{word-spacing:14.133609pt;}
.wsf6{word-spacing:14.664947pt;}
.wsea{word-spacing:14.824349pt;}
.ws21{word-spacing:14.872269pt;}
.wse7{word-spacing:14.877483pt;}
.ws55{word-spacing:14.930617pt;}
.ws110{word-spacing:15.143152pt;}
.ws27{word-spacing:15.193076pt;}
.ws115{word-spacing:16.152695pt;}
.wseb{word-spacing:16.790302pt;}
.ws8d{word-spacing:17.613519pt;}
.ws1e{word-spacing:17.980621pt;}
.wsf5{word-spacing:19.128192pt;}
.ws10a{word-spacing:19.872066pt;}
.ws10f{word-spacing:20.031468pt;}
.wsa0{word-spacing:23.219500pt;}
.wsfb{word-spacing:25.397988pt;}
.wsa7{word-spacing:32.965083pt;}
.wsc9{word-spacing:35.069600pt;}
.wscc{word-spacing:35.073259pt;}
.wsda{word-spacing:78.392858pt;}
.wsd8{word-spacing:81.475962pt;}
.wsc5{word-spacing:81.639349pt;}
.ws9b{word-spacing:82.735977pt;}
.wsc6{word-spacing:92.280435pt;}
.wscd{word-spacing:101.391480pt;}
.wsb7{word-spacing:125.655026pt;}
.ws5a{word-spacing:135.332975pt;}
.wsb9{word-spacing:160.714587pt;}
.wsba{word-spacing:175.163953pt;}
.wsa8{word-spacing:187.610135pt;}
.wsb6{word-spacing:196.857709pt;}
.wsb4{word-spacing:200.987215pt;}
.wsb8{word-spacing:215.430605pt;}
.wsb5{word-spacing:237.091442pt;}
.ws54{word-spacing:350.600524pt;}
.ws7a{word-spacing:404.863641pt;}
._19{margin-left:-32.407900pt;}
._1a{margin-left:-27.020267pt;}
._11{margin-left:-7.013670pt;}
._10{margin-left:-5.791591pt;}
._2{margin-left:-4.760777pt;}
._4{margin-left:-3.400567pt;}
._1b{margin-left:-2.497292pt;}
._0{margin-left:-1.530261pt;}
._a{width:1.077867pt;}
._17{width:2.097939pt;}
._1e{width:3.030481pt;}
._23{width:7.472533pt;}
._3{width:8.854832pt;}
._d{width:11.168764pt;}
._16{width:12.327057pt;}
._1{width:13.283467pt;}
._e{width:14.671199pt;}
._13{width:15.610736pt;}
._7{width:16.684034pt;}
._6{width:18.193024pt;}
._8{width:19.872066pt;}
._12{width:20.934743pt;}
._15{width:22.263090pt;}
._f{width:23.899619pt;}
._9{width:25.079185pt;}
._1d{width:26.349257pt;}
._5{width:27.417075pt;}
._20{width:28.426619pt;}
._14{width:29.754965pt;}
._1c{width:30.721996pt;}
._31{width:32.156640pt;}
._b{width:34.675371pt;}
._32{width:36.131029pt;}
._18{width:37.108681pt;}
._c{width:39.234654pt;}
._30{width:40.307333pt;}
._2f{width:41.486929pt;}
._29{width:42.453959pt;}
._24{width:46.703752pt;}
._33{width:58.500387pt;}
._22{width:91.735501pt;}
._2e{width:95.015907pt;}
._2d{width:98.324867pt;}
._1f{width:99.636157pt;}
._25{width:101.440620pt;}
._2b{width:116.592741pt;}
._2c{width:127.039180pt;}
._21{width:138.994667pt;}
._26{width:141.660863pt;}
._27{width:226.779048pt;}
._28{width:236.060277pt;}
._2a{width:373.774177pt;}
.fsa{font-size:17.719040pt;}
.fs18{font-size:21.785600pt;}
.fs15{font-size:22.081600pt;}
.fs11{font-size:22.148800pt;}
.fs16{font-size:26.142720pt;}
.fs13{font-size:26.497920pt;}
.fs6{font-size:26.566933pt;}
.fs8{font-size:26.578560pt;}
.fs17{font-size:29.047467pt;}
.fs14{font-size:29.442133pt;}
.fs9{font-size:29.531733pt;}
.fse{font-size:30.287360pt;}
.fs4{font-size:31.880533pt;}
.fsd{font-size:32.811307pt;}
.fsb{font-size:35.335253pt;}
.fs12{font-size:36.449301pt;}
.fs10{font-size:37.140573pt;}
.fs2{font-size:37.193600pt;}
.fsc{font-size:40.383147pt;}
.fs7{font-size:42.507200pt;}
.fsf{font-size:45.431040pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1ed{bottom:2.031961pt;}
.y1ca{bottom:2.059569pt;}
.y12f{bottom:2.065837pt;}
.y154{bottom:3.008623pt;}
.y1ec{bottom:10.366088pt;}
.y1c9{bottom:10.506931pt;}
.y12e{bottom:10.538907pt;}
.y153{bottom:15.036807pt;}
.y1d3{bottom:15.739176pt;}
.y187{bottom:16.178829pt;}
.y130{bottom:19.759133pt;}
.y18e{bottom:20.995500pt;}
.y155{bottom:23.052309pt;}
.y139{bottom:23.079511pt;}
.y1d2{bottom:24.233176pt;}
.y194{bottom:24.306924pt;}
.y1cb{bottom:26.529276pt;}
.y138{bottom:29.585721pt;}
.y1f7{bottom:29.686355pt;}
.y1ee{bottom:31.339153pt;}
.y1d4{bottom:32.239209pt;}
.y1d1{bottom:32.335513pt;}
.y193{bottom:32.433918pt;}
.y15d{bottom:32.892775pt;}
.y188{bottom:34.634007pt;}
.y137{bottom:36.091931pt;}
.y13a{bottom:36.552668pt;}
.y18f{bottom:39.177359pt;}
.y136{bottom:42.598141pt;}
.y131{bottom:43.351484pt;}
.y1f8{bottom:45.457486pt;}
.y1cc{bottom:48.561830pt;}
.y1ef{bottom:48.641528pt;}
.y1d5{bottom:48.739243pt;}
.y156{bottom:51.586136pt;}
.y1fc{bottom:52.634715pt;}
.y189{bottom:53.089186pt;}
.y13b{bottom:53.346202pt;}
.y1d9{bottom:53.349860pt;}
.y13f{bottom:53.512217pt;}
.y1f3{bottom:53.553795pt;}
.y1cf{bottom:54.281428pt;}
.y134{bottom:54.446620pt;}
.y190{bottom:57.359218pt;}
.y18d{bottom:57.820851pt;}
.y1f9{bottom:61.228617pt;}
.y1d6{bottom:65.239277pt;}
.y1f0{bottom:65.943902pt;}
.y18c{bottom:65.947846pt;}
.y132{bottom:66.943835pt;}
.y47{bottom:69.377333pt;}
.y13c{bottom:70.139736pt;}
.y1cd{bottom:70.594385pt;}
.y18a{bottom:71.544365pt;}
.y191{bottom:75.541077pt;}
.y1fa{bottom:76.999749pt;}
.y157{bottom:80.119962pt;}
.y1d7{bottom:81.739311pt;}
.y1f1{bottom:83.246277pt;}
.y13d{bottom:86.933271pt;}
.y1f6{bottom:89.837055pt;}
.y18b{bottom:89.999543pt;}
.y133{bottom:90.536186pt;}
.y1ce{bottom:92.626939pt;}
.y1fb{bottom:92.770880pt;}
.y15c{bottom:93.080984pt;}
.y192{bottom:93.722937pt;}
.y1f5{bottom:97.830781pt;}
.y1d8{bottom:98.239345pt;}
.y1f2{bottom:100.548651pt;}
.y2c{bottom:102.585333pt;}
.y13e{bottom:103.726805pt;}
.y11a{bottom:105.394667pt;}
.y70{bottom:107.190667pt;}
.y158{bottom:108.653789pt;}
.y1f4{bottom:109.046961pt;}
.y1d0{bottom:110.528578pt;}
.y135{bottom:110.864945pt;}
.y2b{bottom:115.869333pt;}
.y89{bottom:118.525333pt;}
.y227{bottom:118.592000pt;}
.y119{bottom:121.334667pt;}
.y1dc{bottom:122.177227pt;}
.y6f{bottom:123.130667pt;}
.y1b9{bottom:123.837244pt;}
.y106{bottom:124.034667pt;}
.y11d{bottom:124.214113pt;}
.y46{bottom:126.496000pt;}
.y2a{bottom:129.153333pt;}
.y1db{bottom:130.511354pt;}
.y1b8{bottom:132.284606pt;}
.y11c{bottom:132.687182pt;}
.ybc{bottom:134.232000pt;}
.yec{bottom:134.466667pt;}
.y253{bottom:134.532000pt;}
.y159{bottom:137.187616pt;}
.y118{bottom:137.274667pt;}
.y105{bottom:137.317333pt;}
.y6e{bottom:139.070667pt;}
.y104{bottom:142.396000pt;}
.y29{bottom:142.436000pt;}
.y226{bottom:143.052000pt;}
.y129{bottom:143.894044pt;}
.y11e{bottom:144.221685pt;}
.y20b{bottom:144.357333pt;}
.y17a{bottom:144.775789pt;}
.y88{bottom:148.490667pt;}
.y1dd{bottom:148.682114pt;}
.y162{bottom:148.806193pt;}
.y1c3{bottom:149.719884pt;}
.y182{bottom:150.208173pt;}
.yeb{bottom:150.406667pt;}
.y1e7{bottom:151.725949pt;}
.y1ba{bottom:152.253730pt;}
.y117{bottom:153.214667pt;}
.ybb{bottom:154.497333pt;}
.y6d{bottom:155.010667pt;}
.y45{bottom:158.376000pt;}
.y161{bottom:158.696909pt;}
.y225{bottom:158.993333pt;}
.y17b{bottom:160.836147pt;}
.y103{bottom:162.144000pt;}
.y1de{bottom:163.529959pt;}
.y12a{bottom:163.961068pt;}
.y11f{bottom:164.206799pt;}
.y15a{bottom:165.721442pt;}
.yea{bottom:166.346667pt;}
.y1c4{bottom:168.202005pt;}
.y160{bottom:168.587625pt;}
.y28{bottom:169.002667pt;}
.y183{bottom:169.030766pt;}
.y116{bottom:169.154667pt;}
.yba{bottom:170.438667pt;}
.y1bb{bottom:170.541310pt;}
.y6c{bottom:170.950667pt;}
.y1eb{bottom:172.734594pt;}
.y44{bottom:174.317333pt;}
.y224{bottom:174.933333pt;}
.y1c8{bottom:175.081532pt;}
.y12d{bottom:175.614350pt;}
.y1e8{bottom:175.920298pt;}
.y252{bottom:176.498667pt;}
.y1e3{bottom:176.558421pt;}
.y17c{bottom:176.896506pt;}
.y102{bottom:178.085333pt;}
.y1df{bottom:178.377803pt;}
.y87{bottom:178.456000pt;}
.y15f{bottom:178.478341pt;}
.y1bf{bottom:178.957313pt;}
.y123{bottom:179.501926pt;}
.y27{bottom:182.286667pt;}
.y20a{bottom:182.442667pt;}
.y12b{bottom:184.028092pt;}
.y120{bottom:184.191913pt;}
.y115{bottom:185.096000pt;}
.yb9{bottom:186.378667pt;}
.y1c5{bottom:186.684125pt;}
.y6b{bottom:186.890667pt;}
.y184{bottom:187.853358pt;}
.y1bc{bottom:188.828891pt;}
.y43{bottom:190.257333pt;}
.y223{bottom:190.873333pt;}
.y251{bottom:192.440000pt;}
.y17d{bottom:192.956864pt;}
.y1e0{bottom:193.225647pt;}
.y101{bottom:194.025333pt;}
.y15b{bottom:194.255269pt;}
.y86{bottom:194.396000pt;}
.y15e{bottom:195.010564pt;}
.y26{bottom:195.570667pt;}
.ye9{bottom:198.226667pt;}
.y209{bottom:198.384000pt;}
.y1e9{bottom:200.114647pt;}
.y25{bottom:200.649333pt;}
.y114{bottom:201.036000pt;}
.yb8{bottom:202.318667pt;}
.y6a{bottom:202.832000pt;}
.y128{bottom:203.924463pt;}
.y12c{bottom:204.095116pt;}
.y121{bottom:204.177027pt;}
.y163{bottom:204.863230pt;}
.y1c6{bottom:205.166246pt;}
.y42{bottom:206.197333pt;}
.y185{bottom:206.675951pt;}
.y1bd{bottom:207.116471pt;}
.y1e1{bottom:208.073491pt;}
.y250{bottom:208.380000pt;}
.y17e{bottom:209.017222pt;}
.y100{bottom:209.965333pt;}
.y1e6{bottom:209.982321pt;}
.y85{bottom:210.336000pt;}
.y127{bottom:210.430673pt;}
.y1c2{bottom:212.835342pt;}
.y181{bottom:213.483055pt;}
.ye8{bottom:214.166667pt;}
.y208{bottom:214.324000pt;}
.y222{bottom:214.784000pt;}
.y126{bottom:216.936883pt;}
.y113{bottom:216.976000pt;}
.y1e5{bottom:217.976048pt;}
.yb7{bottom:218.258667pt;}
.y69{bottom:218.772000pt;}
.y27b{bottom:220.052000pt;}
.y24{bottom:220.397333pt;}
.y1c1{bottom:220.937679pt;}
.y180{bottom:221.610049pt;}
.y41{bottom:222.137333pt;}
.y1e2{bottom:222.921336pt;}
.y125{bottom:223.443093pt;}
.y1c7{bottom:223.648366pt;}
.y122{bottom:224.162140pt;}
.y1ea{bottom:224.308996pt;}
.y24f{bottom:224.320000pt;}
.y17f{bottom:225.077581pt;}
.y1be{bottom:225.404052pt;}
.y186{bottom:225.498544pt;}
.yff{bottom:225.905333pt;}
.y84{bottom:226.277333pt;}
.y1e4{bottom:229.192228pt;}
.ye7{bottom:230.108000pt;}
.y207{bottom:230.264000pt;}
.y1c0{bottom:232.306253pt;}
.y112{bottom:232.916000pt;}
.y124{bottom:233.013220pt;}
.yb6{bottom:234.198667pt;}
.y68{bottom:234.712000pt;}
.y27a{bottom:235.992000pt;}
.y23{bottom:236.337333pt;}
.y40{bottom:238.077333pt;}
.y24e{bottom:240.260000pt;}
.yfe{bottom:241.845333pt;}
.y83{bottom:242.217333pt;}
.ye6{bottom:246.048000pt;}
.y206{bottom:246.204000pt;}
.y111{bottom:248.856000pt;}
.yb5{bottom:250.138667pt;}
.y67{bottom:250.652000pt;}
.y279{bottom:251.932000pt;}
.y22{bottom:252.277333pt;}
.y221{bottom:252.870667pt;}
.y3f{bottom:254.017333pt;}
.y24d{bottom:256.200000pt;}
.yfd{bottom:257.785333pt;}
.y82{bottom:258.157333pt;}
.ye5{bottom:261.988000pt;}
.y205{bottom:262.144000pt;}
.y110{bottom:264.796000pt;}
.yb4{bottom:266.080000pt;}
.y66{bottom:266.592000pt;}
.y278{bottom:267.872000pt;}
.y21{bottom:268.218667pt;}
.y220{bottom:268.810667pt;}
.y3e{bottom:269.958667pt;}
.yfc{bottom:273.726667pt;}
.ye4{bottom:277.928000pt;}
.y204{bottom:278.084000pt;}
.yb3{bottom:282.020000pt;}
.y24c{bottom:282.293333pt;}
.y65{bottom:282.532000pt;}
.y277{bottom:283.813333pt;}
.y20{bottom:284.158667pt;}
.y21f{bottom:284.750667pt;}
.y3d{bottom:285.898667pt;}
.y1a8{bottom:286.857333pt;}
.yfb{bottom:289.666667pt;}
.y81{bottom:292.188000pt;}
.ye3{bottom:293.868000pt;}
.y203{bottom:294.025333pt;}
.y80{bottom:296.092000pt;}
.yb2{bottom:297.960000pt;}
.y24b{bottom:298.233333pt;}
.y1f{bottom:300.098667pt;}
.y21e{bottom:300.690667pt;}
.y3c{bottom:301.838667pt;}
.yfa{bottom:305.606667pt;}
.y64{bottom:306.442667pt;}
.ye2{bottom:309.808000pt;}
.y202{bottom:309.965333pt;}
.y276{bottom:310.380000pt;}
.y179{bottom:312.201905pt;}
.yb1{bottom:313.900000pt;}
.y24a{bottom:314.173333pt;}
.y10f{bottom:314.536000pt;}
.y1e{bottom:316.038667pt;}
.y21d{bottom:316.630667pt;}
.y3b{bottom:317.778667pt;}
.yf9{bottom:321.546667pt;}
.y63{bottom:322.382667pt;}
.y1a7{bottom:325.448533pt;}
.ye1{bottom:325.749333pt;}
.y7f{bottom:326.057333pt;}
.y275{bottom:326.320000pt;}
.y178{bottom:328.358125pt;}
.yb0{bottom:329.840000pt;}
.y249{bottom:330.113333pt;}
.y1d{bottom:331.978667pt;}
.y21c{bottom:332.570667pt;}
.y3a{bottom:333.718667pt;}
.yf8{bottom:337.486667pt;}
.y7e{bottom:338.093333pt;}
.y62{bottom:338.322667pt;}
.y1a6{bottom:341.304049pt;}
.ye0{bottom:341.689333pt;}
.y7d{bottom:341.997333pt;}
.y274{bottom:342.260000pt;}
.y177{bottom:344.514345pt;}
.yaf{bottom:345.780000pt;}
.y10e{bottom:348.046667pt;}
.y21b{bottom:348.512000pt;}
.y39{bottom:349.658667pt;}
.y201{bottom:350.550667pt;}
.yf7{bottom:353.426667pt;}
.y61{bottom:354.264000pt;}
.y248{bottom:356.206667pt;}
.y1a5{bottom:357.159564pt;}
.ydf{bottom:357.629333pt;}
.y1c{bottom:357.809333pt;}
.y272{bottom:358.200000pt;}
.y273{bottom:358.266667pt;}
.y1b6{bottom:358.589333pt;}
.y176{bottom:360.670565pt;}
.yae{bottom:361.721333pt;}
.y10d{bottom:363.986667pt;}
.y200{bottom:365.162667pt;}
.y38{bottom:365.600000pt;}
.yf6{bottom:369.368000pt;}
.y60{bottom:370.204000pt;}
.y247{bottom:372.146667pt;}
.y1a4{bottom:373.015080pt;}
.yde{bottom:373.569333pt;}
.y271{bottom:374.141333pt;}
.y21a{bottom:374.342667pt;}
.y175{bottom:376.826785pt;}
.yad{bottom:377.661333pt;}
.y1ff{bottom:379.774667pt;}
.y10c{bottom:379.928000pt;}
.y7c{bottom:379.933333pt;}
.y37{bottom:381.540000pt;}
.yf5{bottom:385.308000pt;}
.y5f{bottom:386.144000pt;}
.y246{bottom:388.086667pt;}
.y1a3{bottom:388.870595pt;}
.y151{bottom:389.509333pt;}
.y1b5{bottom:390.178667pt;}
.y174{bottom:392.983005pt;}
.yac{bottom:393.601333pt;}
.y10b{bottom:395.868000pt;}
.y36{bottom:397.480000pt;}
.ydd{bottom:398.438667pt;}
.y270{bottom:400.708000pt;}
.yf4{bottom:401.248000pt;}
.y5e{bottom:402.084000pt;}
.y245{bottom:404.026667pt;}
.y1a2{bottom:404.726111pt;}
.y150{bottom:405.449333pt;}
.y1b4{bottom:406.120000pt;}
.yab{bottom:409.541333pt;}
.y7b{bottom:409.897333pt;}
.y10a{bottom:411.808000pt;}
.y219{bottom:412.429333pt;}
.y35{bottom:413.420000pt;}
.y1a1{bottom:414.749797pt;}
.y26f{bottom:416.648000pt;}
.y5d{bottom:418.024000pt;}
.y1b{bottom:418.709333pt;}
.y244{bottom:419.968000pt;}
.y14f{bottom:421.390667pt;}
.y1b3{bottom:422.060000pt;}
.y173{bottom:423.065333pt;}
.ydc{bottom:424.270667pt;}
.yaa{bottom:425.481333pt;}
.y7a{bottom:425.838667pt;}
.yf3{bottom:426.117333pt;}
.y109{bottom:427.748000pt;}
.y218{bottom:428.369333pt;}
.y34{bottom:429.360000pt;}
.y26e{bottom:432.588000pt;}
.y5c{bottom:433.964000pt;}
.y1a{bottom:434.649333pt;}
.y243{bottom:435.908000pt;}
.y14e{bottom:437.330667pt;}
.y1b2{bottom:438.000000pt;}
.ya9{bottom:441.421333pt;}
.y79{bottom:441.778667pt;}
.y107{bottom:443.688000pt;}
.y108{bottom:443.754667pt;}
.y217{bottom:444.309333pt;}
.y33{bottom:445.300000pt;}
.y26d{bottom:448.528000pt;}
.y5b{bottom:449.905333pt;}
.y1a0{bottom:450.060000pt;}
.y19{bottom:450.589333pt;}
.y242{bottom:451.848000pt;}
.y14d{bottom:453.270667pt;}
.y1b1{bottom:453.940000pt;}
.y172{bottom:457.204000pt;}
.ya8{bottom:457.362667pt;}
.y78{bottom:457.718667pt;}
.ydb{bottom:458.453333pt;}
.yf2{bottom:459.628000pt;}
.y216{bottom:460.249333pt;}
.y32{bottom:461.241333pt;}
.yda{bottom:462.356000pt;}
.y5a{bottom:465.845333pt;}
.y18{bottom:466.529333pt;}
.y241{bottom:467.788000pt;}
.y14c{bottom:469.210667pt;}
.y1b0{bottom:469.880000pt;}
.y171{bottom:473.145333pt;}
.ya7{bottom:473.302667pt;}
.y77{bottom:473.658667pt;}
.y26c{bottom:475.096000pt;}
.yf1{bottom:475.569333pt;}
.y215{bottom:476.189333pt;}
.y31{bottom:477.181333pt;}
.yd8{bottom:478.297333pt;}
.yd9{bottom:481.654667pt;}
.y59{bottom:481.785333pt;}
.y17{bottom:482.469333pt;}
.y1af{bottom:485.820000pt;}
.y170{bottom:489.085333pt;}
.ya6{bottom:489.242667pt;}
.y26b{bottom:491.036000pt;}
.yf0{bottom:491.509333pt;}
.y19f{bottom:491.533333pt;}
.y214{bottom:492.129333pt;}
.y14b{bottom:493.121333pt;}
.y240{bottom:493.881333pt;}
.yd6{bottom:494.237333pt;}
.y76{bottom:497.569333pt;}
.yd7{bottom:497.594667pt;}
.y58{bottom:497.725333pt;}
.y16{bottom:498.410667pt;}
.y1ae{bottom:501.761333pt;}
.y16f{bottom:505.025333pt;}
.ya5{bottom:505.182667pt;}
.y30{bottom:505.544000pt;}
.y26a{bottom:506.976000pt;}
.y19e{bottom:507.473333pt;}
.y213{bottom:508.070667pt;}
.y14a{bottom:509.061333pt;}
.y23f{bottom:509.821333pt;}
.yd5{bottom:510.177333pt;}
.y75{bottom:513.509333pt;}
.y57{bottom:513.665333pt;}
.y15{bottom:514.350667pt;}
.y1ad{bottom:517.701333pt;}
.y2f{bottom:520.156000pt;}
.y16e{bottom:520.965333pt;}
.ya4{bottom:521.122667pt;}
.y269{bottom:522.916000pt;}
.y19d{bottom:523.413333pt;}
.y212{bottom:524.010667pt;}
.y149{bottom:525.001333pt;}
.y23e{bottom:525.761333pt;}
.yd4{bottom:526.117333pt;}
.y74{bottom:529.449333pt;}
.y56{bottom:529.605333pt;}
.y14{bottom:530.290667pt;}
.yef{bottom:533.948000pt;}
.y2e{bottom:534.768000pt;}
.y16d{bottom:536.905333pt;}
.y268{bottom:538.856000pt;}
.y19c{bottom:539.353333pt;}
.y211{bottom:539.950667pt;}
.y148{bottom:540.941333pt;}
.yd3{bottom:542.057333pt;}
.y73{bottom:545.389333pt;}
.y55{bottom:545.546667pt;}
.ya3{bottom:545.993333pt;}
.y13{bottom:546.230667pt;}
.yee{bottom:548.560000pt;}
.y2d{bottom:549.380000pt;}
.y23d{bottom:551.854667pt;}
.y16c{bottom:552.845333pt;}
.y19b{bottom:555.293333pt;}
.y210{bottom:555.890667pt;}
.y147{bottom:556.882667pt;}
.yd2{bottom:557.997333pt;}
.y72{bottom:561.330667pt;}
.y54{bottom:561.486667pt;}
.y12{bottom:562.170667pt;}
.yed{bottom:563.172000pt;}
.y267{bottom:565.424000pt;}
.y23c{bottom:567.794667pt;}
.y1ac{bottom:568.121333pt;}
.y16b{bottom:568.786667pt;}
.y19a{bottom:571.233333pt;}
.y20f{bottom:571.830667pt;}
.y146{bottom:572.822667pt;}
.yd1{bottom:573.938667pt;}
.y53{bottom:577.426667pt;}
.y11{bottom:578.110667pt;}
.ya2{bottom:579.504000pt;}
.y266{bottom:581.364000pt;}
.y1ab{bottom:582.733333pt;}
.y23b{bottom:583.734667pt;}
.y16a{bottom:584.726667pt;}
.y71{bottom:587.161333pt;}
.y199{bottom:587.174667pt;}
.y20e{bottom:587.770667pt;}
.y145{bottom:588.762667pt;}
.yd0{bottom:589.878667pt;}
.y52{bottom:593.366667pt;}
.y10{bottom:594.052000pt;}
.ya1{bottom:595.444000pt;}
.y265{bottom:597.304000pt;}
.y1aa{bottom:597.345333pt;}
.y23a{bottom:599.674667pt;}
.y169{bottom:600.666667pt;}
.y198{bottom:603.114667pt;}
.y20d{bottom:603.712000pt;}
.y144{bottom:604.702667pt;}
.ycf{bottom:605.818667pt;}
.y51{bottom:609.306667pt;}
.yf{bottom:609.992000pt;}
.ya0{bottom:611.384000pt;}
.y1a9{bottom:611.957333pt;}
.y264{bottom:613.244000pt;}
.y168{bottom:616.606667pt;}
.y197{bottom:619.054667pt;}
.y20c{bottom:619.652000pt;}
.y143{bottom:620.642667pt;}
.ycd{bottom:621.758667pt;}
.yce{bottom:625.116000pt;}
.y50{bottom:625.248000pt;}
.y239{bottom:625.768000pt;}
.ye{bottom:625.932000pt;}
.y9f{bottom:627.324000pt;}
.y196{bottom:634.994667pt;}
.y142{bottom:636.582667pt;}
.y263{bottom:639.810667pt;}
.y4f{bottom:641.188000pt;}
.y167{bottom:641.476000pt;}
.y238{bottom:641.708000pt;}
.yd{bottom:641.872000pt;}
.ycc{bottom:646.628000pt;}
.y9e{bottom:653.154667pt;}
.y262{bottom:655.752000pt;}
.y4e{bottom:657.128000pt;}
.y166{bottom:657.417333pt;}
.y237{bottom:657.648000pt;}
.yc{bottom:657.812000pt;}
.y195{bottom:659.864000pt;}
.y1fe{bottom:662.090667pt;}
.y261{bottom:671.692000pt;}
.y4d{bottom:673.068000pt;}
.yb{bottom:673.752000pt;}
.y1fd{bottom:676.702667pt;}
.ycb{bottom:683.538667pt;}
.y236{bottom:683.741333pt;}
.yca{bottom:686.897333pt;}
.y260{bottom:687.632000pt;}
.y141{bottom:688.910667pt;}
.ya{bottom:689.693333pt;}
.y9d{bottom:691.241333pt;}
.y235{bottom:699.681333pt;}
.y1da{bottom:703.452000pt;}
.y140{bottom:703.522667pt;}
.y9{bottom:705.633333pt;}
.y4c{bottom:705.906667pt;}
.y9c{bottom:707.181333pt;}
.yc9{bottom:712.480000pt;}
.y165{bottom:713.666667pt;}
.y25f{bottom:714.198667pt;}
.y234{bottom:715.621333pt;}
.y1b7{bottom:718.064000pt;}
.y4a{bottom:720.518667pt;}
.y8{bottom:721.573333pt;}
.y9b{bottom:723.122667pt;}
.y4b{bottom:723.540000pt;}
.y11b{bottom:727.433333pt;}
.y164{bottom:728.278667pt;}
.yc8{bottom:728.420000pt;}
.y25e{bottom:730.138667pt;}
.y233{bottom:731.561333pt;}
.y49{bottom:735.129333pt;}
.y7{bottom:737.513333pt;}
.y99{bottom:739.062667pt;}
.y9a{bottom:742.420000pt;}
.y25d{bottom:746.078667pt;}
.y232{bottom:747.501333pt;}
.y152{bottom:752.189333pt;}
.y6{bottom:753.453333pt;}
.y98{bottom:755.002667pt;}
.yc7{bottom:755.333333pt;}
.y231{bottom:763.442667pt;}
.yc6{bottom:764.445333pt;}
.y5{bottom:769.393333pt;}
.y97{bottom:770.942667pt;}
.y25c{bottom:772.646667pt;}
.y4{bottom:785.334667pt;}
.y96{bottom:786.882667pt;}
.y25b{bottom:788.586667pt;}
.y230{bottom:789.534667pt;}
.yc5{bottom:800.910667pt;}
.y95{bottom:802.822667pt;}
.y25a{bottom:804.526667pt;}
.y22f{bottom:805.474667pt;}
.y3{bottom:809.018667pt;}
.yc4{bottom:816.850667pt;}
.y94{bottom:818.764000pt;}
.y22e{bottom:821.416000pt;}
.y259{bottom:831.093333pt;}
.yc3{bottom:832.790667pt;}
.y93{bottom:834.704000pt;}
.y22d{bottom:837.356000pt;}
.y258{bottom:847.034667pt;}
.yc2{bottom:848.730667pt;}
.y22c{bottom:853.296000pt;}
.y2{bottom:855.133333pt;}
.y91{bottom:856.776000pt;}
.y92{bottom:857.724000pt;}
.y90{bottom:861.008000pt;}
.y257{bottom:862.974667pt;}
.yc1{bottom:864.672000pt;}
.y256{bottom:878.914667pt;}
.y22b{bottom:879.389333pt;}
.yc0{bottom:880.612000pt;}
.y8f{bottom:887.770667pt;}
.y255{bottom:894.854667pt;}
.y22a{bottom:895.329333pt;}
.ybf{bottom:896.552000pt;}
.y8e{bottom:903.710667pt;}
.y229{bottom:911.269333pt;}
.ybe{bottom:912.492000pt;}
.y8d{bottom:919.650667pt;}
.y254{bottom:921.421333pt;}
.y1{bottom:921.436000pt;}
.ybd{bottom:928.432000pt;}
.y8b{bottom:935.590667pt;}
.y228{bottom:937.361333pt;}
.y8c{bottom:938.948000pt;}
.y8a{bottom:953.302667pt;}
.y48{bottom:983.854667pt;}
.h20{height:16.767334pt;}
.h35{height:20.615475pt;}
.h31{height:20.895577pt;}
.h2a{height:20.959167pt;}
.h6{height:21.933807pt;}
.h26{height:22.478900pt;}
.h33{height:24.738570pt;}
.h2f{height:25.074692pt;}
.h1e{height:25.151001pt;}
.h2c{height:25.295815pt;}
.h28{height:25.775558pt;}
.h2d{height:27.336976pt;}
.h34{height:27.487300pt;}
.h29{height:27.855430pt;}
.h30{height:27.860769pt;}
.he{height:27.895200pt;}
.h1f{height:27.945556pt;}
.h24{height:31.048981pt;}
.hb{height:32.661606pt;}
.h8{height:32.805069pt;}
.h7{height:32.900710pt;}
.ha{height:33.187635pt;}
.h22{height:33.437364pt;}
.h37{height:35.493423pt;}
.h36{height:36.449833pt;}
.h4{height:36.556100pt;}
.h15{height:36.874903pt;}
.h23{height:38.214130pt;}
.h5{height:39.850400pt;}
.h9{height:42.422223pt;}
.h27{height:42.990896pt;}
.h3{height:44.250180pt;}
.h16{height:44.683229pt;}
.h2{height:44.869197pt;}
.h1c{height:44.874530pt;}
.hc{height:47.175200pt;}
.h17{height:47.180533pt;}
.h2b{height:49.204508pt;}
.h13{height:49.831200pt;}
.hd{height:50.625867pt;}
.h1{height:53.100068pt;}
.h11{height:53.279733pt;}
.h1b{height:53.285067pt;}
.hf{height:55.466400pt;}
.h25{height:62.403430pt;}
.h1a{height:68.895733pt;}
.h14{height:74.242688pt;}
.h18{height:77.042688pt;}
.h12{height:78.034688pt;}
.h10{height:82.415733pt;}
.h19{height:113.490688pt;}
.h21{height:214.398621pt;}
.h32{height:235.235235pt;}
.h2e{height:238.431366pt;}
.h1d{height:239.156974pt;}
.h0{height:1056.000000pt;}
.w4{width:311.033238pt;}
.w3{width:311.044178pt;}
.w1{width:311.994918pt;}
.w2{width:311.999570pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x85{left:6.143754pt;}
.x8c{left:8.260580pt;}
.x84{left:9.154607pt;}
.x8b{left:11.271432pt;}
.x9d{left:13.203002pt;}
.xca{left:16.436554pt;}
.x9c{left:18.418501pt;}
.xc9{left:19.398034pt;}
.x9b{left:41.309386pt;}
.x9e{left:49.807988pt;}
.x83{left:53.244823pt;}
.xc1{left:54.938204pt;}
.xc7{left:57.867564pt;}
.xa1{left:63.316774pt;}
.xa0{left:64.435790pt;}
.x8d{left:66.640779pt;}
.xc5{left:68.016043pt;}
.x86{left:69.547809pt;}
.xc2{left:70.914253pt;}
.xa3{left:71.808846pt;}
.xf{left:73.920000pt;}
.xc8{left:76.607928pt;}
.xa2{left:78.835103pt;}
.x87{left:82.333550pt;}
.xd9{left:86.978667pt;}
.x49{left:90.790667pt;}
.x10{left:94.244000pt;}
.x7c{left:95.440000pt;}
.xbe{left:96.331751pt;}
.x7{left:97.910667pt;}
.x1{left:98.968000pt;}
.x4{left:100.488000pt;}
.xc3{left:101.609172pt;}
.xb5{left:110.676169pt;}
.x8{left:114.373333pt;}
.xb{left:118.262667pt;}
.x16{left:119.409333pt;}
.x8e{left:123.854705pt;}
.x90{left:131.461333pt;}
.x3e{left:133.206667pt;}
.xbd{left:138.808251pt;}
.x91{left:141.792000pt;}
.x70{left:143.362667pt;}
.x3f{left:145.557333pt;}
.xce{left:148.193333pt;}
.x39{left:149.196000pt;}
.x3a{left:153.992000pt;}
.x4d{left:155.036000pt;}
.xb7{left:160.453059pt;}
.xb6{left:163.463912pt;}
.x74{left:165.553333pt;}
.x8f{left:166.792000pt;}
.x3c{left:167.798667pt;}
.x11{left:169.788000pt;}
.xc{left:171.581333pt;}
.x1b{left:174.297333pt;}
.x3d{left:177.816000pt;}
.xda{left:183.390667pt;}
.x2{left:184.392000pt;}
.x1c{left:186.494667pt;}
.x40{left:189.642667pt;}
.x4e{left:191.293333pt;}
.x3{left:200.264000pt;}
.x76{left:201.501333pt;}
.xcc{left:205.304090pt;}
.x4f{left:208.370667pt;}
.x88{left:209.665185pt;}
.x15{left:211.074667pt;}
.xcb{left:212.763180pt;}
.x71{left:214.809333pt;}
.xb8{left:220.992000pt;}
.x89{left:222.080596pt;}
.x4a{left:222.997333pt;}
.x7a{left:224.949333pt;}
.xbf{left:226.037333pt;}
.x75{left:227.882667pt;}
.x4b{left:229.337333pt;}
.x9{left:231.910667pt;}
.xba{left:235.980000pt;}
.x72{left:237.184000pt;}
.x77{left:240.290667pt;}
.x4c{left:243.436000pt;}
.x92{left:247.433333pt;}
.x7b{left:248.970667pt;}
.xa{left:252.228000pt;}
.x73{left:253.796000pt;}
.xc4{left:256.500556pt;}
.x7d{left:259.294667pt;}
.x5{left:260.648000pt;}
.x3b{left:263.880000pt;}
.x45{left:265.513333pt;}
.x9f{left:266.660615pt;}
.x95{left:268.916000pt;}
.x47{left:273.538667pt;}
.xbb{left:277.114667pt;}
.x8a{left:280.275068pt;}
.xcf{left:282.981333pt;}
.x9a{left:284.984000pt;}
.xd{left:286.812000pt;}
.x43{left:290.094667pt;}
.x96{left:296.588000pt;}
.x6{left:298.660000pt;}
.x44{left:301.644000pt;}
.x41{left:305.972000pt;}
.xbc{left:307.526667pt;}
.xe{left:313.024000pt;}
.x7e{left:319.746667pt;}
.xd0{left:320.917333pt;}
.x42{left:327.797333pt;}
.x48{left:337.160000pt;}
.x78{left:340.721333pt;}
.x98{left:341.670667pt;}
.x97{left:343.345333pt;}
.x79{left:351.053333pt;}
.x99{left:352.001333pt;}
.x93{left:355.932000pt;}
.x46{left:357.721333pt;}
.x94{left:366.356000pt;}
.xb9{left:369.076000pt;}
.x14{left:394.600000pt;}
.xc6{left:404.241333pt;}
.x12{left:409.250667pt;}
.x80{left:410.252000pt;}
.xac{left:418.184044pt;}
.x27{left:422.642667pt;}
.xad{left:425.064068pt;}
.x28{left:429.145333pt;}
.xa6{left:431.758667pt;}
.xae{left:432.798736pt;}
.x2e{left:434.420000pt;}
.xaf{left:437.562188pt;}
.xb0{left:441.173688pt;}
.x33{left:443.465333pt;}
.x2c{left:444.966667pt;}
.x6c{left:446.660000pt;}
.x5f{left:447.550667pt;}
.x29{left:448.534667pt;}
.xdd{left:452.129333pt;}
.xdc{left:453.238667pt;}
.x6e{left:456.033333pt;}
.x34{left:458.644000pt;}
.x2f{left:462.557333pt;}
.x17{left:463.841333pt;}
.x32{left:467.005333pt;}
.xb2{left:468.958667pt;}
.x60{left:472.425333pt;}
.x2d{left:474.877333pt;}
.x18{left:476.030667pt;}
.xab{left:477.169333pt;}
.xd5{left:478.086667pt;}
.x69{left:479.636000pt;}
.x6b{left:489.317333pt;}
.x6f{left:490.612000pt;}
.x56{left:492.093333pt;}
.x6d{left:496.121333pt;}
.x62{left:497.598667pt;}
.x6a{left:510.626667pt;}
.xd4{left:511.516000pt;}
.x63{left:518.456000pt;}
.x2a{left:520.824000pt;}
.x5a{left:522.085333pt;}
.x26{left:523.890667pt;}
.x13{left:526.144000pt;}
.x2b{left:527.326667pt;}
.x81{left:530.309333pt;}
.x5c{left:534.388000pt;}
.x5b{left:537.184000pt;}
.x82{left:540.640000pt;}
.x52{left:549.336000pt;}
.xcd{left:555.913333pt;}
.xb1{left:559.244000pt;}
.x64{left:566.289333pt;}
.x5d{left:570.580000pt;}
.x24{left:571.913333pt;}
.x1e{left:573.673333pt;}
.x1d{left:576.230667pt;}
.xa7{left:577.797333pt;}
.x57{left:581.882667pt;}
.x5e{left:584.926667pt;}
.x1f{left:585.870667pt;}
.x50{left:587.566667pt;}
.xd3{left:589.484000pt;}
.xa4{left:594.276000pt;}
.x51{left:596.316000pt;}
.x65{left:599.788000pt;}
.x53{left:601.685333pt;}
.xaa{left:606.593333pt;}
.xd7{left:611.462667pt;}
.xd6{left:612.572000pt;}
.xc0{left:619.916000pt;}
.x30{left:620.873333pt;}
.x66{left:630.170667pt;}
.xd8{left:632.098667pt;}
.xa5{left:637.044000pt;}
.x7f{left:638.864000pt;}
.x22{left:640.028000pt;}
.xb3{left:643.692000pt;}
.x23{left:646.669333pt;}
.x31{left:649.152000pt;}
.x35{left:653.845333pt;}
.x37{left:657.441333pt;}
.xdb{left:659.753333pt;}
.x36{left:662.561333pt;}
.xb4{left:666.940000pt;}
.x58{left:670.424000pt;}
.xd1{left:671.376000pt;}
.xa8{left:673.365333pt;}
.x54{left:677.706667pt;}
.x67{left:679.648000pt;}
.x25{left:681.698667pt;}
.x59{left:683.774667pt;}
.x20{left:688.596000pt;}
.x55{left:691.733333pt;}
.xa9{left:693.366667pt;}
.xd2{left:694.990667pt;}
.x19{left:697.977333pt;}
.x38{left:699.081333pt;}
.x21{left:702.254667pt;}
.x68{left:703.389333pt;}
.x1a{left:712.041333pt;}
.x61{left:713.042667pt;}
}




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