
    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_2a9abb3814a0bc818dee5cb2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6a73b145b104e08285e04591.woff')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_76ef392963ca66eee3095e4d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.985840;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_dc3a09e79a4e0c130cf8b19c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_1c7a25d3a209673d9c082fcb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056641;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_c7170496040f32bcbb047a89.woff')format("woff");}.ff6{font-family:ff6;line-height:1.042480;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_58be054e2619dd526579f30e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_56ff7cd71080ea2cf259102f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.873535;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_87a646d87fc678c894ff8cde.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_5b413539b4a0a6f0d7004ea9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.873535;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_58be054e2619dd526579f30e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c7f0af7fc3e3881d1955a127.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942000;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_527053ab4fb31339df43f536.woff')format("woff");}.ffd{font-family:ffd;line-height:1.057129;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_b2943e201ebe8548571fde4a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.848145;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_02192f90d775ed3849db62e6.woff')format("woff");}.fff{font-family:fff;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d67039bc3a1f30267dab564f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.939453;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_f975ddabdbae078f26e215d1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914551;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_58be054e2619dd526579f30e.woff')format("woff");}.ff12{font-family:ff12;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5b413539b4a0a6f0d7004ea9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.873535;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_d7800744b88cd990e2bc66f5.woff')format("woff");}.ff14{font-family:ff14;line-height:0.926270;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_fc8a9fe9738a57e385b0f0fe.woff')format("woff");}.ff15{font-family:ff15;line-height:1.042000;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_b5cbc2cf0ec39be3fd85fbfc.woff')format("woff");}.ff16{font-family:ff16;line-height:0.951000;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_d45eb0d7217db1bcaaa5de77.woff')format("woff");}.ff17{font-family:ff17;line-height:0.945000;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_2b7b9fa38f4b15cd3bc64250.woff')format("woff");}.ff18{font-family:ff18;line-height:0.881836;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_8d4e044e4230365b69c9908b.woff')format("woff");}.ff19{font-family:ff19;line-height:1.004395;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:ff1a;src:url('chunks/assets/font_78bf845988c58c48fd57228d.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.997559;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;}
.m38{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);}
.m5{transform:matrix(0.068311,0.000102,-0.000372,0.250000,0,0);-ms-transform:matrix(0.068311,0.000102,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.068311,0.000102,-0.000372,0.250000,0,0);}
.m9{transform:matrix(0.079290,0.000118,-0.000372,0.250000,0,0);-ms-transform:matrix(0.079290,0.000118,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.079290,0.000118,-0.000372,0.250000,0,0);}
.m7{transform:matrix(0.132905,0.000198,-0.000372,0.250000,0,0);-ms-transform:matrix(0.132905,0.000198,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.132905,0.000198,-0.000372,0.250000,0,0);}
.m34{transform:matrix(0.155056,0.000115,-0.000185,0.250000,0,0);-ms-transform:matrix(0.155056,0.000115,-0.000185,0.250000,0,0);-webkit-transform:matrix(0.155056,0.000115,-0.000185,0.250000,0,0);}
.m2b{transform:matrix(0.158579,-0.000353,0.000556,0.249999,0,0);-ms-transform:matrix(0.158579,-0.000353,0.000556,0.249999,0,0);-webkit-transform:matrix(0.158579,-0.000353,0.000556,0.249999,0,0);}
.m14{transform:matrix(0.163695,0.000009,-0.000014,0.250000,0,0);-ms-transform:matrix(0.163695,0.000009,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.163695,0.000009,-0.000014,0.250000,0,0);}
.m1d{transform:matrix(0.164580,0.000009,-0.000014,0.250000,0,0);-ms-transform:matrix(0.164580,0.000009,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.164580,0.000009,-0.000014,0.250000,0,0);}
.m28{transform:matrix(0.166072,0.001151,-0.001732,0.249994,0,0);-ms-transform:matrix(0.166072,0.001151,-0.001732,0.249994,0,0);-webkit-transform:matrix(0.166072,0.001151,-0.001732,0.249994,0,0);}
.m10{transform:matrix(0.169152,0.000140,-0.000207,0.250000,0,0);-ms-transform:matrix(0.169152,0.000140,-0.000207,0.250000,0,0);-webkit-transform:matrix(0.169152,0.000140,-0.000207,0.250000,0,0);}
.m25{transform:matrix(0.172340,0.001128,-0.001635,0.249995,0,0);-ms-transform:matrix(0.172340,0.001128,-0.001635,0.249995,0,0);-webkit-transform:matrix(0.172340,0.001128,-0.001635,0.249995,0,0);}
.m6{transform:matrix(0.174330,0.000259,-0.000372,0.250000,0,0);-ms-transform:matrix(0.174330,0.000259,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.174330,0.000259,-0.000372,0.250000,0,0);}
.m1{transform:matrix(0.179102,0.000266,-0.000372,0.250000,0,0);-ms-transform:matrix(0.179102,0.000266,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.179102,0.000266,-0.000372,0.250000,0,0);}
.m18{transform:matrix(0.180065,0.000010,-0.000014,0.250000,0,0);-ms-transform:matrix(0.180065,0.000010,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.180065,0.000010,-0.000014,0.250000,0,0);}
.me{transform:matrix(0.190296,0.000158,-0.000207,0.250000,0,0);-ms-transform:matrix(0.190296,0.000158,-0.000207,0.250000,0,0);-webkit-transform:matrix(0.190296,0.000158,-0.000207,0.250000,0,0);}
.m3{transform:matrix(0.195175,0.000290,-0.000372,0.250000,0,0);-ms-transform:matrix(0.195175,0.000290,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000290,-0.000372,0.250000,0,0);}
.m16{transform:matrix(0.196434,0.000011,-0.000014,0.250000,0,0);-ms-transform:matrix(0.196434,0.000011,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.196434,0.000011,-0.000014,0.250000,0,0);}
.mc{transform:matrix(0.211440,0.000175,-0.000207,0.250000,0,0);-ms-transform:matrix(0.211440,0.000175,-0.000207,0.250000,0,0);-webkit-transform:matrix(0.211440,0.000175,-0.000207,0.250000,0,0);}
.ma{transform:matrix(0.214082,0.000318,-0.000372,0.250000,0,0);-ms-transform:matrix(0.214082,0.000318,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.214082,0.000318,-0.000372,0.250000,0,0);}
.m2e{transform:matrix(0.227480,-0.000349,0.000384,0.250000,0,0);-ms-transform:matrix(0.227480,-0.000349,0.000384,0.250000,0,0);-webkit-transform:matrix(0.227480,-0.000349,0.000384,0.250000,0,0);}
.m1e{transform:matrix(0.238193,0.000013,-0.000014,0.250000,0,0);-ms-transform:matrix(0.238193,0.000013,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.238193,0.000013,-0.000014,0.250000,0,0);}
.m1b{transform:matrix(0.238802,0.000013,-0.000014,0.250000,0,0);-ms-transform:matrix(0.238802,0.000013,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.238802,0.000013,-0.000014,0.250000,0,0);}
.m2c{transform:matrix(0.242400,-0.000539,0.000556,0.249999,0,0);-ms-transform:matrix(0.242400,-0.000539,0.000556,0.249999,0,0);-webkit-transform:matrix(0.242400,-0.000539,0.000556,0.249999,0,0);}
.m1c{transform:matrix(0.246265,0.000014,-0.000014,0.250000,0,0);-ms-transform:matrix(0.246265,0.000014,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.246265,0.000014,-0.000014,0.250000,0,0);}
.m35{transform:matrix(0.247686,0.000184,-0.000185,0.250000,0,0);-ms-transform:matrix(0.247686,0.000184,-0.000185,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000184,-0.000185,0.250000,0,0);}
.m36{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);}
.m1f{transform:matrix(0.260071,-0.000231,0.000222,0.250000,0,0);-ms-transform:matrix(0.260071,-0.000231,0.000222,0.250000,0,0);-webkit-transform:matrix(0.260071,-0.000231,0.000222,0.250000,0,0);}
.m12{transform:matrix(0.261129,0.001604,-0.001535,0.249995,0,0);-ms-transform:matrix(0.261129,0.001604,-0.001535,0.249995,0,0);-webkit-transform:matrix(0.261129,0.001604,-0.001535,0.249995,0,0);}
.m33{transform:matrix(0.267183,0.000198,-0.000185,0.250000,0,0);-ms-transform:matrix(0.267183,0.000198,-0.000185,0.250000,0,0);-webkit-transform:matrix(0.267183,0.000198,-0.000185,0.250000,0,0);}
.m19{transform:matrix(0.275554,0.000015,-0.000014,0.250000,0,0);-ms-transform:matrix(0.275554,0.000015,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.275554,0.000015,-0.000014,0.250000,0,0);}
.m20{transform:matrix(0.279100,-0.000248,0.000222,0.250000,0,0);-ms-transform:matrix(0.279100,-0.000248,0.000222,0.250000,0,0);-webkit-transform:matrix(0.279100,-0.000248,0.000222,0.250000,0,0);}
.m31{transform:matrix(0.279975,-0.000202,0.000180,0.250000,0,0);-ms-transform:matrix(0.279975,-0.000202,0.000180,0.250000,0,0);-webkit-transform:matrix(0.279975,-0.000202,0.000180,0.250000,0,0);}
.m0{transform:matrix(0.285443,0.000424,-0.000372,0.250000,0,0);-ms-transform:matrix(0.285443,0.000424,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.285443,0.000424,-0.000372,0.250000,0,0);}
.mf{transform:matrix(0.285443,0.000236,-0.000207,0.250000,0,0);-ms-transform:matrix(0.285443,0.000236,-0.000207,0.250000,0,0);-webkit-transform:matrix(0.285443,0.000236,-0.000207,0.250000,0,0);}
.m13{transform:matrix(0.289974,0.000016,-0.000014,0.250000,0,0);-ms-transform:matrix(0.289974,0.000016,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.289974,0.000016,-0.000014,0.250000,0,0);}
.m8{transform:matrix(0.292762,0.000435,-0.000372,0.250000,0,0);-ms-transform:matrix(0.292762,0.000435,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.292762,0.000435,-0.000372,0.250000,0,0);}
.md{transform:matrix(0.293372,0.000243,-0.000207,0.250000,0,0);-ms-transform:matrix(0.293372,0.000243,-0.000207,0.250000,0,0);-webkit-transform:matrix(0.293372,0.000243,-0.000207,0.250000,0,0);}
.m15{transform:matrix(0.294651,0.000016,-0.000014,0.250000,0,0);-ms-transform:matrix(0.294651,0.000016,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.294651,0.000016,-0.000014,0.250000,0,0);}
.m26{transform:matrix(0.301813,0.001975,-0.001635,0.249995,0,0);-ms-transform:matrix(0.301813,0.001975,-0.001635,0.249995,0,0);-webkit-transform:matrix(0.301813,0.001975,-0.001635,0.249995,0,0);}
.m17{transform:matrix(0.302836,0.000017,-0.000014,0.250000,0,0);-ms-transform:matrix(0.302836,0.000017,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.302836,0.000017,-0.000014,0.250000,0,0);}
.m24{transform:matrix(0.305604,0.002000,-0.001635,0.249995,0,0);-ms-transform:matrix(0.305604,0.002000,-0.001635,0.249995,0,0);-webkit-transform:matrix(0.305604,0.002000,-0.001635,0.249995,0,0);}
.m27{transform:matrix(0.306972,0.002127,-0.001732,0.249994,0,0);-ms-transform:matrix(0.306972,0.002127,-0.001732,0.249994,0,0);-webkit-transform:matrix(0.306972,0.002127,-0.001732,0.249994,0,0);}
.m11{transform:matrix(0.310111,0.000257,-0.000207,0.250000,0,0);-ms-transform:matrix(0.310111,0.000257,-0.000207,0.250000,0,0);-webkit-transform:matrix(0.310111,0.000257,-0.000207,0.250000,0,0);}
.m2a{transform:matrix(0.310597,-0.000691,0.000556,0.249999,0,0);-ms-transform:matrix(0.310597,-0.000691,0.000556,0.249999,0,0);-webkit-transform:matrix(0.310597,-0.000691,0.000556,0.249999,0,0);}
.m23{transform:matrix(0.310672,0.003074,-0.002473,0.249988,0,0);-ms-transform:matrix(0.310672,0.003074,-0.002473,0.249988,0,0);-webkit-transform:matrix(0.310672,0.003074,-0.002473,0.249988,0,0);}
.m2{transform:matrix(0.312433,0.000465,-0.000372,0.250000,0,0);-ms-transform:matrix(0.312433,0.000465,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.312433,0.000465,-0.000372,0.250000,0,0);}
.m37{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.327939,0.002272,-0.001732,0.249994,0,0);-ms-transform:matrix(0.327939,0.002272,-0.001732,0.249994,0,0);-webkit-transform:matrix(0.327939,0.002272,-0.001732,0.249994,0,0);}
.m21{transform:matrix(0.329846,-0.000294,0.000222,0.250000,0,0);-ms-transform:matrix(0.329846,-0.000294,0.000222,0.250000,0,0);-webkit-transform:matrix(0.329846,-0.000294,0.000222,0.250000,0,0);}
.m30{transform:matrix(0.336845,-0.000243,0.000180,0.250000,0,0);-ms-transform:matrix(0.336845,-0.000243,0.000180,0.250000,0,0);-webkit-transform:matrix(0.336845,-0.000243,0.000180,0.250000,0,0);}
.m4{transform:matrix(0.343508,0.000511,-0.000372,0.250000,0,0);-ms-transform:matrix(0.343508,0.000511,-0.000372,0.250000,0,0);-webkit-transform:matrix(0.343508,0.000511,-0.000372,0.250000,0,0);}
.m2f{transform:matrix(0.352468,-0.000541,0.000384,0.250000,0,0);-ms-transform:matrix(0.352468,-0.000541,0.000384,0.250000,0,0);-webkit-transform:matrix(0.352468,-0.000541,0.000384,0.250000,0,0);}
.m32{transform:matrix(0.380591,-0.000275,0.000180,0.250000,0,0);-ms-transform:matrix(0.380591,-0.000275,0.000180,0.250000,0,0);-webkit-transform:matrix(0.380591,-0.000275,0.000180,0.250000,0,0);}
.m2d{transform:matrix(0.384773,-0.000591,0.000384,0.250000,0,0);-ms-transform:matrix(0.384773,-0.000591,0.000384,0.250000,0,0);-webkit-transform:matrix(0.384773,-0.000591,0.000384,0.250000,0,0);}
.m22{transform:matrix(0.408949,0.003202,-0.001957,0.249992,0,0);-ms-transform:matrix(0.408949,0.003202,-0.001957,0.249992,0,0);-webkit-transform:matrix(0.408949,0.003202,-0.001957,0.249992,0,0);}
.mb{transform:matrix(0.434961,0.000360,-0.000207,0.250000,0,0);-ms-transform:matrix(0.434961,0.000360,-0.000207,0.250000,0,0);-webkit-transform:matrix(0.434961,0.000360,-0.000207,0.250000,0,0);}
.m1a{transform:matrix(0.451071,0.000025,-0.000014,0.250000,0,0);-ms-transform:matrix(0.451071,0.000025,-0.000014,0.250000,0,0);-webkit-transform:matrix(0.451071,0.000025,-0.000014,0.250000,0,0);}
.v2{vertical-align:-6.000000px;}
.v1{vertical-align:-4.020600px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-6.612000px;}
.ls1a{letter-spacing:-5.016000px;}
.ls4a{letter-spacing:-4.680000px;}
.ls27{letter-spacing:-4.212000px;}
.ls4f{letter-spacing:-4.200000px;}
.ls45{letter-spacing:-3.960000px;}
.ls66{letter-spacing:-3.780000px;}
.ls2f{letter-spacing:-3.420000px;}
.ls26{letter-spacing:-3.300000px;}
.ls4d{letter-spacing:-3.132000px;}
.ls3f{letter-spacing:-3.060000px;}
.ls46{letter-spacing:-2.940000px;}
.ls44{letter-spacing:-2.880000px;}
.ls47{letter-spacing:-2.820000px;}
.ls8a{letter-spacing:-2.688000px;}
.ls76{letter-spacing:-2.646000px;}
.ls50{letter-spacing:-2.640000px;}
.ls33{letter-spacing:-2.520000px;}
.ls3c{letter-spacing:-2.484000px;}
.ls2e{letter-spacing:-2.280000px;}
.ls22{letter-spacing:-2.217600px;}
.ls40{letter-spacing:-2.160000px;}
.ls5b{letter-spacing:-2.052000px;}
.ls2b{letter-spacing:-1.920000px;}
.ls25{letter-spacing:-1.848000px;}
.ls1c{letter-spacing:-1.716000px;}
.ls39{letter-spacing:-1.620000px;}
.lsa{letter-spacing:-1.566000px;}
.ls1f{letter-spacing:-1.500000px;}
.ls3d{letter-spacing:-1.380000px;}
.ls16{letter-spacing:-1.260000px;}
.ls21{letter-spacing:-1.200000px;}
.ls28{letter-spacing:-1.080000px;}
.ls60{letter-spacing:-1.020000px;}
.ls81{letter-spacing:-0.969000px;}
.ls7{letter-spacing:-0.960000px;}
.ls6c{letter-spacing:-0.900000px;}
.ls3{letter-spacing:-0.840000px;}
.ls41{letter-spacing:-0.780000px;}
.ls70{letter-spacing:-0.720000px;}
.ls8c{letter-spacing:-0.714000px;}
.ls49{letter-spacing:-0.660000px;}
.ls58{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.510000px;}
.lsc{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.420000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.306000px;}
.ls2a{letter-spacing:-0.300000px;}
.ls88{letter-spacing:-0.294000px;}
.ls19{letter-spacing:-0.240000px;}
.ls5a{letter-spacing:-0.216000px;}
.ls8d{letter-spacing:-0.210000px;}
.ls82{letter-spacing:-0.204000px;}
.ls20{letter-spacing:-0.180000px;}
.ls8e{letter-spacing:-0.168000px;}
.ls6{letter-spacing:-0.120000px;}
.ls87{letter-spacing:-0.102000px;}
.ls89{letter-spacing:-0.084000px;}
.ls2d{letter-spacing:-0.060000px;}
.ls79{letter-spacing:-0.051000px;}
.ls3b{letter-spacing:-0.046200px;}
.ls0{letter-spacing:0.000000px;}
.ls8f{letter-spacing:0.042000px;}
.ls7a{letter-spacing:0.051000px;}
.ls11{letter-spacing:0.060000px;}
.ls29{letter-spacing:0.061800px;}
.ls7f{letter-spacing:0.102000px;}
.ls10{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.123600px;}
.ls78{letter-spacing:0.153000px;}
.lsf{letter-spacing:0.180000px;}
.ls48{letter-spacing:0.185400px;}
.ls24{letter-spacing:0.231000px;}
.ls30{letter-spacing:0.240000px;}
.ls93{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.300000px;}
.ls85{letter-spacing:0.306000px;}
.ls90{letter-spacing:0.336000px;}
.ls83{letter-spacing:0.357000px;}
.ls37{letter-spacing:0.360000px;}
.ls94{letter-spacing:0.378000px;}
.ls32{letter-spacing:0.420000px;}
.ls84{letter-spacing:0.459000px;}
.ls92{letter-spacing:0.462000px;}
.ls38{letter-spacing:0.480000px;}
.ls7e{letter-spacing:0.510000px;}
.ls3a{letter-spacing:0.540000px;}
.ls80{letter-spacing:0.561000px;}
.lsd{letter-spacing:0.600000px;}
.ls77{letter-spacing:0.612000px;}
.ls3e{letter-spacing:0.660000px;}
.ls86{letter-spacing:0.714000px;}
.ls18{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.739200px;}
.ls13{letter-spacing:0.780000px;}
.ls8b{letter-spacing:0.798000px;}
.ls43{letter-spacing:0.840000px;}
.ls97{letter-spacing:0.867000px;}
.ls35{letter-spacing:0.900000px;}
.ls34{letter-spacing:0.960000px;}
.ls91{letter-spacing:0.966000px;}
.ls59{letter-spacing:0.970200px;}
.ls55{letter-spacing:1.020000px;}
.ls2{letter-spacing:1.080000px;}
.ls7b{letter-spacing:1.122000px;}
.lse{letter-spacing:1.140000px;}
.ls2c{letter-spacing:1.200000px;}
.ls7d{letter-spacing:1.224000px;}
.ls1{letter-spacing:1.260000px;}
.ls31{letter-spacing:1.320000px;}
.ls96{letter-spacing:1.326000px;}
.lsb{letter-spacing:1.380000px;}
.ls75{letter-spacing:1.432200px;}
.ls15{letter-spacing:1.440000px;}
.ls74{letter-spacing:1.500000px;}
.ls17{letter-spacing:1.620000px;}
.ls56{letter-spacing:1.680000px;}
.ls95{letter-spacing:1.683000px;}
.ls42{letter-spacing:1.740000px;}
.ls63{letter-spacing:1.800000px;}
.ls57{letter-spacing:1.860000px;}
.ls53{letter-spacing:1.920000px;}
.ls4e{letter-spacing:2.100000px;}
.ls51{letter-spacing:2.220000px;}
.ls7c{letter-spacing:2.397000px;}
.ls36{letter-spacing:2.400000px;}
.ls52{letter-spacing:2.580000px;}
.ls61{letter-spacing:2.640000px;}
.ls69{letter-spacing:3.000000px;}
.ls5e{letter-spacing:3.120000px;}
.ls6e{letter-spacing:3.180000px;}
.ls73{letter-spacing:3.300000px;}
.ls54{letter-spacing:3.480000px;}
.ls64{letter-spacing:3.540000px;}
.ls68{letter-spacing:4.080000px;}
.ls72{letter-spacing:4.140000px;}
.ls6f{letter-spacing:4.200000px;}
.ls5f{letter-spacing:4.620000px;}
.ls65{letter-spacing:4.800000px;}
.ls5c{letter-spacing:4.860000px;}
.ls5d{letter-spacing:4.920000px;}
.ls71{letter-spacing:5.520000px;}
.ls6a{letter-spacing:5.760000px;}
.ls62{letter-spacing:5.940000px;}
.ls6b{letter-spacing:6.360000px;}
.ls67{letter-spacing:7.980000px;}
.ls6d{letter-spacing:10.860000px;}
.ls8{letter-spacing:23.270400px;}
.ls4c{letter-spacing:23.460000px;}
.ls4b{letter-spacing:47.460000px;}
.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;}
}
.ws8d{word-spacing:-60.480000px;}
.ws6a{word-spacing:-60.060000px;}
.wsd{word-spacing:-60.000000px;}
.ws4{word-spacing:-23.500800px;}
.ws8c{word-spacing:-14.880000px;}
.wsa{word-spacing:-14.460000px;}
.wsf{word-spacing:-13.800000px;}
.wse{word-spacing:-13.500000px;}
.wsb2{word-spacing:-13.056000px;}
.wsb1{word-spacing:-12.903000px;}
.ws6b{word-spacing:-12.240000px;}
.ws3{word-spacing:-10.620000px;}
.ws1{word-spacing:-10.560000px;}
.wsb0{word-spacing:-10.206000px;}
.ws2{word-spacing:-10.020000px;}
.ws7b{word-spacing:-5.340000px;}
.wsc0{word-spacing:-3.774000px;}
.ws14{word-spacing:-3.720000px;}
.ws4d{word-spacing:-3.180000px;}
.ws42{word-spacing:-3.120000px;}
.ws1a{word-spacing:-3.000000px;}
.ws58{word-spacing:-2.940000px;}
.wsdf{word-spacing:-2.907000px;}
.ws7e{word-spacing:-2.760000px;}
.wsc4{word-spacing:-2.703000px;}
.wse0{word-spacing:-2.652000px;}
.ws86{word-spacing:-2.640000px;}
.wsb5{word-spacing:-2.550000px;}
.wsbb{word-spacing:-2.499000px;}
.ws87{word-spacing:-2.460000px;}
.ws57{word-spacing:-2.400000px;}
.wsbc{word-spacing:-2.397000px;}
.ws3d{word-spacing:-2.280000px;}
.ws46{word-spacing:-2.220000px;}
.ws60{word-spacing:-2.160000px;}
.wsf2{word-spacing:-2.142000px;}
.ws67{word-spacing:-2.100000px;}
.wsd8{word-spacing:-2.040000px;}
.ws7f{word-spacing:-1.986600px;}
.ws12{word-spacing:-1.980000px;}
.wsd5{word-spacing:-1.974000px;}
.wsba{word-spacing:-1.938000px;}
.wscc{word-spacing:-1.932000px;}
.ws4c{word-spacing:-1.860000px;}
.wsc8{word-spacing:-1.806000px;}
.ws5d{word-spacing:-1.680000px;}
.ws1e{word-spacing:-1.620000px;}
.wsf4{word-spacing:-1.581000px;}
.ws3c{word-spacing:-1.560000px;}
.ws3f{word-spacing:-1.500000px;}
.wsc{word-spacing:-1.440000px;}
.wsac{word-spacing:-1.432200px;}
.ws13{word-spacing:-1.380000px;}
.ws5{word-spacing:-1.260000px;}
.wsed{word-spacing:-1.224000px;}
.ws16{word-spacing:-1.140000px;}
.wsd1{word-spacing:-1.134000px;}
.ws6{word-spacing:-1.080000px;}
.ws63{word-spacing:-1.020000px;}
.ws80{word-spacing:-0.970200px;}
.wsda{word-spacing:-0.969000px;}
.wscf{word-spacing:-0.966000px;}
.ws47{word-spacing:-0.960000px;}
.ws1b{word-spacing:-0.900000px;}
.wsb6{word-spacing:-0.867000px;}
.ws3e{word-spacing:-0.780000px;}
.wsd6{word-spacing:-0.756000px;}
.ws2f{word-spacing:-0.739200px;}
.wsd0{word-spacing:-0.672000px;}
.wsec{word-spacing:-0.612000px;}
.ws50{word-spacing:-0.600000px;}
.wse1{word-spacing:-0.510000px;}
.wsf1{word-spacing:-0.459000px;}
.ws5c{word-spacing:-0.420000px;}
.wsb9{word-spacing:-0.408000px;}
.wsce{word-spacing:-0.336000px;}
.ws29{word-spacing:-0.300000px;}
.wsd7{word-spacing:-0.252000px;}
.ws71{word-spacing:-0.240000px;}
.ws30{word-spacing:-0.231000px;}
.ws62{word-spacing:-0.185400px;}
.wsf5{word-spacing:-0.153000px;}
.ws1c{word-spacing:-0.123600px;}
.ws24{word-spacing:-0.120000px;}
.wsee{word-spacing:-0.102000px;}
.ws38{word-spacing:-0.061800px;}
.ws2a{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws52{word-spacing:0.046200px;}
.wse6{word-spacing:0.051000px;}
.ws25{word-spacing:0.120000px;}
.ws2c{word-spacing:0.180000px;}
.wsde{word-spacing:0.204000px;}
.ws81{word-spacing:0.216000px;}
.ws6f{word-spacing:0.300000px;}
.ws8{word-spacing:0.306000px;}
.ws2b{word-spacing:0.360000px;}
.wsc6{word-spacing:0.378000px;}
.ws39{word-spacing:0.420000px;}
.wsd2{word-spacing:0.504000px;}
.ws9{word-spacing:0.510000px;}
.ws2d{word-spacing:0.540000px;}
.wse5{word-spacing:0.561000px;}
.ws1f{word-spacing:0.600000px;}
.wsd3{word-spacing:0.630000px;}
.ws5a{word-spacing:0.660000px;}
.wscb{word-spacing:0.714000px;}
.wsa4{word-spacing:0.720000px;}
.ws7{word-spacing:0.840000px;}
.ws37{word-spacing:0.960000px;}
.wsbf{word-spacing:0.969000px;}
.wsc7{word-spacing:1.134000px;}
.ws20{word-spacing:1.140000px;}
.ws54{word-spacing:1.260000px;}
.ws21{word-spacing:1.320000px;}
.wsc1{word-spacing:1.377000px;}
.ws51{word-spacing:1.380000px;}
.wsd4{word-spacing:1.428000px;}
.ws7c{word-spacing:1.440000px;}
.wsf3{word-spacing:1.479000px;}
.ws23{word-spacing:1.500000px;}
.ws4f{word-spacing:1.620000px;}
.ws45{word-spacing:1.680000px;}
.ws28{word-spacing:1.716000px;}
.ws31{word-spacing:1.848000px;}
.ws3a{word-spacing:1.920000px;}
.wsb4{word-spacing:1.938000px;}
.wsef{word-spacing:1.989000px;}
.ws59{word-spacing:2.160000px;}
.ws2e{word-spacing:2.217600px;}
.ws93{word-spacing:2.220000px;}
.ws40{word-spacing:2.280000px;}
.ws44{word-spacing:2.520000px;}
.wsaf{word-spacing:2.592000px;}
.wsc5{word-spacing:2.604000px;}
.ws4e{word-spacing:2.640000px;}
.wscd{word-spacing:2.646000px;}
.wsc3{word-spacing:2.652000px;}
.wsc9{word-spacing:2.688000px;}
.wsad{word-spacing:2.772000px;}
.wsc2{word-spacing:2.805000px;}
.ws61{word-spacing:2.820000px;}
.wsca{word-spacing:2.856000px;}
.ws55{word-spacing:2.880000px;}
.ws1d{word-spacing:2.940000px;}
.ws88{word-spacing:3.000000px;}
.ws56{word-spacing:3.060000px;}
.ws69{word-spacing:3.078000px;}
.ws85{word-spacing:3.120000px;}
.wsb3{word-spacing:3.162000px;}
.wsbe{word-spacing:3.213000px;}
.ws84{word-spacing:3.240000px;}
.ws32{word-spacing:3.300000px;}
.wsb8{word-spacing:3.417000px;}
.ws41{word-spacing:3.420000px;}
.ws18{word-spacing:3.480000px;}
.wsb7{word-spacing:3.519000px;}
.ws11{word-spacing:3.660000px;}
.ws19{word-spacing:3.720000px;}
.ws15{word-spacing:3.780000px;}
.ws64{word-spacing:3.840000px;}
.wsbd{word-spacing:3.876000px;}
.ws66{word-spacing:3.900000px;}
.ws5f{word-spacing:3.960000px;}
.ws73{word-spacing:4.080000px;}
.ws48{word-spacing:4.200000px;}
.ws36{word-spacing:4.212000px;}
.ws49{word-spacing:4.260000px;}
.wse2{word-spacing:4.284000px;}
.ws9e{word-spacing:4.380000px;}
.ws17{word-spacing:4.440000px;}
.ws7d{word-spacing:4.500000px;}
.wse8{word-spacing:4.539000px;}
.ws77{word-spacing:4.560000px;}
.ws3b{word-spacing:4.620000px;}
.ws65{word-spacing:4.680000px;}
.ws5e{word-spacing:4.740000px;}
.ws4b{word-spacing:4.800000px;}
.ws74{word-spacing:4.980000px;}
.ws26{word-spacing:5.016000px;}
.ws43{word-spacing:5.040000px;}
.wsdb{word-spacing:5.253000px;}
.ws9b{word-spacing:5.280000px;}
.wsa5{word-spacing:5.340000px;}
.wsf0{word-spacing:5.457000px;}
.wsa1{word-spacing:5.460000px;}
.wseb{word-spacing:5.610000px;}
.wsdc{word-spacing:5.712000px;}
.wsd9{word-spacing:5.814000px;}
.ws78{word-spacing:5.880000px;}
.ws35{word-spacing:6.000000px;}
.ws22{word-spacing:6.180000px;}
.ws8a{word-spacing:6.240000px;}
.ws82{word-spacing:6.420000px;}
.wsea{word-spacing:6.477000px;}
.wsab{word-spacing:6.540000px;}
.ws27{word-spacing:6.612000px;}
.ws5b{word-spacing:6.660000px;}
.ws10{word-spacing:6.840000px;}
.ws98{word-spacing:6.960000px;}
.ws6d{word-spacing:7.020000px;}
.ws7a{word-spacing:7.080000px;}
.ws91{word-spacing:7.140000px;}
.ws72{word-spacing:7.200000px;}
.ws83{word-spacing:7.620000px;}
.ws6c{word-spacing:7.920000px;}
.wsa9{word-spacing:7.980000px;}
.ws6e{word-spacing:8.220000px;}
.wse4{word-spacing:8.619000px;}
.ws4a{word-spacing:8.940000px;}
.ws79{word-spacing:9.060000px;}
.ws96{word-spacing:9.540000px;}
.ws70{word-spacing:9.780000px;}
.wse7{word-spacing:10.506000px;}
.ws8e{word-spacing:11.700000px;}
.wsa2{word-spacing:11.820000px;}
.ws75{word-spacing:12.840000px;}
.wse3{word-spacing:12.903000px;}
.ws76{word-spacing:12.960000px;}
.ws95{word-spacing:13.020000px;}
.ws9a{word-spacing:13.500000px;}
.ws9c{word-spacing:14.160000px;}
.wsaa{word-spacing:14.220000px;}
.wsa7{word-spacing:15.120000px;}
.wsa8{word-spacing:15.240000px;}
.ws90{word-spacing:15.780000px;}
.wsdd{word-spacing:16.932000px;}
.wsa3{word-spacing:17.220000px;}
.ws8f{word-spacing:17.880000px;}
.ws9d{word-spacing:18.000000px;}
.ws97{word-spacing:19.440000px;}
.ws92{word-spacing:19.860000px;}
.ws94{word-spacing:21.600000px;}
.wsa6{word-spacing:22.800000px;}
.ws89{word-spacing:23.460000px;}
.wse9{word-spacing:23.613000px;}
.ws9f{word-spacing:27.600000px;}
.ws99{word-spacing:27.720000px;}
.wsa0{word-spacing:36.000000px;}
.wsb{word-spacing:329.581800px;}
.ws8b{word-spacing:330.799800px;}
.ws53{word-spacing:331.836600px;}
.wsae{word-spacing:345.357600px;}
.ws68{word-spacing:345.595200px;}
.ws34{word-spacing:346.159200px;}
.ws33{word-spacing:1194.601800px;}
._d{margin-left:-2851.392000px;}
._17{margin-left:-32.544000px;}
._1c{margin-left:-19.908000px;}
._11{margin-left:-18.696000px;}
._19{margin-left:-16.056000px;}
._5{margin-left:-15.000000px;}
._1e{margin-left:-12.843600px;}
._1f{margin-left:-10.728000px;}
._1a{margin-left:-9.114000px;}
._1b{margin-left:-7.140000px;}
._8{margin-left:-5.700000px;}
._a{margin-left:-4.686000px;}
._2{margin-left:-3.468000px;}
._c{margin-left:-2.448000px;}
._0{margin-left:-1.428000px;}
._1{width:1.224000px;}
._3{width:2.550000px;}
._e{width:3.576000px;}
._18{width:4.674000px;}
._15{width:5.688000px;}
._f{width:6.912000px;}
._16{width:9.264000px;}
._10{width:10.368000px;}
._1d{width:17.740800px;}
._12{width:42.840000px;}
._13{width:45.960000px;}
._14{width:47.460000px;}
._b{width:49.776000px;}
._7{width:51.336000px;}
._9{width:52.620000px;}
._4{width:81.000000px;}
._6{width:111.000000px;}
.fca{color:rgb(59,81,163);}
.fc9{color:rgb(156,65,152);}
.fc7{color:rgb(199,199,200);}
.fc6{color:rgb(230,87,42);}
.fcb{color:rgb(95,187,70);}
.fc8{color:rgb(239,64,82);}
.fc5{color:rgb(128,130,133);}
.fcc{color:rgb(249,237,19);}
.fc4{color:rgb(0,151,214);}
.fc3{color:rgb(159,53,21);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:transparent;}
.fs27{font-size:42.000000px;}
.fs24{font-size:46.200000px;}
.fs26{font-size:51.000000px;}
.fs20{font-size:54.000000px;}
.fsf{font-size:56.731622px;}
.fs5{font-size:59.568200px;}
.fs1d{font-size:60.000000px;}
.fs21{font-size:61.800000px;}
.fs6{font-size:68.077943px;}
.fs4{font-size:73.751105px;}
.fs7{font-size:76.587686px;}
.fsb{font-size:76.587689px;}
.fs9{font-size:79.424270px;}
.fs19{font-size:82.260848px;}
.fs17{font-size:82.260857px;}
.fsa{font-size:87.934013px;}
.fs0{font-size:90.770591px;}
.fs18{font-size:90.770601px;}
.fs1a{font-size:93.607177px;}
.fsc{font-size:96.443762px;}
.fse{font-size:99.280337px;}
.fs1c{font-size:102.000000px;}
.fs1b{font-size:102.116914px;}
.fsd{font-size:104.953499px;}
.fs25{font-size:108.000000px;}
.fs3{font-size:119.136393px;}
.fs23{font-size:132.000000px;}
.fs16{font-size:138.992466px;}
.fs1{font-size:144.665629px;}
.fs12{font-size:144.665639px;}
.fs2{font-size:147.502210px;}
.fs13{font-size:150.338801px;}
.fs14{font-size:153.175371px;}
.fs15{font-size:156.011952px;}
.fs10{font-size:224.089916px;}
.fs22{font-size:228.000000px;}
.fs1f{font-size:230.400000px;}
.fs11{font-size:277.984949px;}
.fs1e{font-size:288.000000px;}
.fs8{font-size:309.187359px;}
.y0{bottom:0.000000px;}
.y58{bottom:38.970450px;}
.y57{bottom:40.005150px;}
.y85{bottom:80.806800px;}
.yf5{bottom:83.595750px;}
.yfb{bottom:84.660750px;}
.yd6{bottom:90.254550px;}
.yb8{bottom:92.796450px;}
.y84{bottom:94.609050px;}
.y131{bottom:95.634750px;}
.y76{bottom:96.381750px;}
.yf4{bottom:103.095750px;}
.yd5{bottom:104.056800px;}
.yfa{bottom:104.160750px;}
.y17b{bottom:104.938800px;}
.y173{bottom:106.158750px;}
.y83{bottom:108.411300px;}
.yb7{bottom:112.296450px;}
.y130{bottom:115.134750px;}
.y75{bottom:115.881750px;}
.y1bc{bottom:115.986900px;}
.y1eb{bottom:117.804750px;}
.yd4{bottom:117.859050px;}
.y17a{bottom:118.741050px;}
.y37{bottom:121.562793px;}
.y36{bottom:121.568654px;}
.y35{bottom:121.642857px;}
.yf9{bottom:123.660750px;}
.y13a{bottom:124.209900px;}
.y172{bottom:125.658750px;}
.y1bb{bottom:127.988400px;}
.yd3{bottom:131.661300px;}
.yb6{bottom:131.796450px;}
.y179{bottom:132.543300px;}
.y1ea{bottom:134.303250px;}
.y12f{bottom:134.634750px;}
.y74{bottom:135.381750px;}
.yf3{bottom:137.610750px;}
.y1ba{bottom:139.989900px;}
.y139{bottom:141.246150px;}
.yf8{bottom:143.160750px;}
.y171{bottom:145.158750px;}
.y1e9{bottom:150.801750px;}
.yb5{bottom:151.296450px;}
.y1b9{bottom:151.991400px;}
.y12e{bottom:154.134750px;}
.y73{bottom:154.881750px;}
.yf2{bottom:157.110750px;}
.y138{bottom:158.282400px;}
.y32{bottom:160.511112px;}
.y33{bottom:160.551109px;}
.y34{bottom:160.559429px;}
.y170{bottom:164.658750px;}
.y1e8{bottom:167.300250px;}
.y1b8{bottom:168.308400px;}
.yb4{bottom:170.796450px;}
.y12d{bottom:173.634750px;}
.y72{bottom:174.381750px;}
.y137{bottom:175.318650px;}
.yf1{bottom:176.610750px;}
.yf7{bottom:177.675750px;}
.y1b7{bottom:180.309900px;}
.y1e7{bottom:183.798750px;}
.y16f{bottom:184.158750px;}
.yb3{bottom:190.296450px;}
.y1b6{bottom:192.311400px;}
.y54{bottom:192.328950px;}
.y136{bottom:192.354900px;}
.y12c{bottom:193.134750px;}
.y2f{bottom:193.621101px;}
.y30{bottom:193.773560px;}
.y31{bottom:193.787910px;}
.yf0{bottom:196.110750px;}
.yf6{bottom:197.175750px;}
.y1e6{bottom:200.297250px;}
.y71{bottom:200.631750px;}
.y16e{bottom:203.658750px;}
.y1b5{bottom:208.628400px;}
.y135{bottom:209.391150px;}
.yb2{bottom:209.796450px;}
.y53{bottom:211.228950px;}
.y12b{bottom:212.634750px;}
.yef{bottom:215.610750px;}
.y1e5{bottom:216.795750px;}
.y70{bottom:220.131750px;}
.y1b4{bottom:220.629900px;}
.y16d{bottom:223.158750px;}
.y2c{bottom:226.011406px;}
.y2d{bottom:226.125023px;}
.y2e{bottom:226.141044px;}
.y134{bottom:226.427400px;}
.yb1{bottom:229.296450px;}
.y52{bottom:230.128950px;}
.y12a{bottom:232.134750px;}
.y1b3{bottom:232.631400px;}
.y1e4{bottom:233.294250px;}
.yee{bottom:235.110750px;}
.y6f{bottom:239.631750px;}
.y16c{bottom:242.658750px;}
.y133{bottom:244.549350px;}
.y1b2{bottom:244.632900px;}
.y101{bottom:246.344550px;}
.yb0{bottom:248.796450px;}
.y1e3{bottom:249.792750px;}
.y129{bottom:251.634750px;}
.yed{bottom:254.610750px;}
.y1b1{bottom:256.634400px;}
.y132{bottom:258.351600px;}
.y6e{bottom:259.131750px;}
.y100{bottom:260.146800px;}
.y16b{bottom:262.158750px;}
.y51{bottom:262.528950px;}
.y1e2{bottom:266.291250px;}
.yaf{bottom:268.296450px;}
.y1b0{bottom:268.635900px;}
.y128{bottom:271.134750px;}
.yff{bottom:273.949050px;}
.yec{bottom:274.110750px;}
.y6d{bottom:278.631750px;}
.y50{bottom:281.428950px;}
.y16a{bottom:281.658750px;}
.y1e1{bottom:282.789750px;}
.y1af{bottom:284.952900px;}
.y149{bottom:287.161950px;}
.yfe{bottom:287.751300px;}
.yae{bottom:287.796450px;}
.y127{bottom:290.634750px;}
.yeb{bottom:293.610750px;}
.y1ae{bottom:296.954400px;}
.y1e0{bottom:299.288250px;}
.y169{bottom:301.158750px;}
.yad{bottom:307.296450px;}
.y1ad{bottom:308.955900px;}
.y126{bottom:310.134750px;}
.y6c{bottom:313.146750px;}
.y4f{bottom:313.828950px;}
.y168{bottom:320.658750px;}
.y1ac{bottom:325.272900px;}
.yac{bottom:326.796450px;}
.yea{bottom:328.116750px;}
.y6b{bottom:332.646750px;}
.y4e{bottom:332.728950px;}
.y125{bottom:336.384750px;}
.y1ab{bottom:337.274400px;}
.y1df{bottom:339.042750px;}
.y167{bottom:340.158750px;}
.yab{bottom:346.296450px;}
.ye9{bottom:347.616750px;}
.y4d{bottom:351.628950px;}
.y6a{bottom:352.146750px;}
.y1aa{bottom:353.591400px;}
.y1de{bottom:354.036750px;}
.y124{bottom:355.884750px;}
.y166{bottom:359.658750px;}
.y1a9{bottom:365.592900px;}
.yaa{bottom:365.796450px;}
.ye8{bottom:367.116750px;}
.y1dd{bottom:369.030750px;}
.y69{bottom:371.646750px;}
.y123{bottom:375.384750px;}
.y1a8{bottom:377.594400px;}
.y165{bottom:379.158750px;}
.y4c{bottom:382.408800px;}
.y1dc{bottom:384.024750px;}
.ye7{bottom:386.616750px;}
.y62{bottom:391.143750px;}
.y68{bottom:391.146750px;}
.y1a7{bottom:393.911400px;}
.y122{bottom:394.884750px;}
.y164{bottom:398.658750px;}
.y1db{bottom:399.018750px;}
.ya9{bottom:400.311450px;}
.y1a6{bottom:405.912900px;}
.ye6{bottom:406.116750px;}
.y61{bottom:410.643750px;}
.y67{bottom:410.646750px;}
.y1da{bottom:414.012750px;}
.y121{bottom:414.384750px;}
.y1a5{bottom:417.914400px;}
.ya8{bottom:419.811450px;}
.y163{bottom:424.908750px;}
.ye5{bottom:425.616750px;}
.y1d9{bottom:429.006750px;}
.y66{bottom:430.146750px;}
.y120{bottom:433.884750px;}
.y1a4{bottom:434.231400px;}
.ya7{bottom:439.311450px;}
.y162{bottom:444.408750px;}
.ye4{bottom:445.116750px;}
.y60{bottom:445.158750px;}
.y1a3{bottom:446.232900px;}
.y1d8{bottom:449.406750px;}
.y65{bottom:449.646750px;}
.y2b{bottom:452.884920px;}
.y2a{bottom:452.974875px;}
.y11f{bottom:453.384750px;}
.y29{bottom:453.463485px;}
.y1a2{bottom:458.234400px;}
.y4b{bottom:458.608950px;}
.ya6{bottom:458.811450px;}
.y161{bottom:463.908750px;}
.y1d7{bottom:464.400750px;}
.ye3{bottom:464.616750px;}
.y5f{bottom:464.658750px;}
.y64{bottom:469.146750px;}
.y11e{bottom:472.884750px;}
.y1a1{bottom:474.551400px;}
.y4a{bottom:477.508950px;}
.ya5{bottom:478.311450px;}
.y1d6{bottom:479.394750px;}
.y160{bottom:483.408750px;}
.ye2{bottom:484.116750px;}
.y5e{bottom:484.158750px;}
.y1a0{bottom:486.552900px;}
.y63{bottom:488.646750px;}
.y11d{bottom:492.384750px;}
.y1d5{bottom:494.388750px;}
.y49{bottom:496.408950px;}
.ya4{bottom:497.811450px;}
.y19f{bottom:498.554400px;}
.y15f{bottom:502.908750px;}
.ye1{bottom:503.616750px;}
.y5d{bottom:503.658750px;}
.y28{bottom:505.630050px;}
.y27{bottom:505.714875px;}
.y26{bottom:506.727270px;}
.y11c{bottom:511.884750px;}
.y1d4{bottom:514.788750px;}
.y19e{bottom:514.871400px;}
.ya3{bottom:517.311450px;}
.y15e{bottom:522.408750px;}
.ye0{bottom:523.116750px;}
.y5c{bottom:523.158750px;}
.y19d{bottom:526.872900px;}
.y48{bottom:528.808950px;}
.y1d3{bottom:529.782750px;}
.y11b{bottom:531.384750px;}
.ya2{bottom:536.811450px;}
.y19c{bottom:538.874400px;}
.y15d{bottom:541.908750px;}
.ydf{bottom:542.616750px;}
.y5b{bottom:542.658750px;}
.y1d2{bottom:544.776750px;}
.y47{bottom:547.708950px;}
.y11a{bottom:550.884750px;}
.y19b{bottom:555.191400px;}
.ya1{bottom:556.311450px;}
.y1d1{bottom:559.770750px;}
.y15c{bottom:561.408750px;}
.y5a{bottom:562.158750px;}
.y19a{bottom:567.192900px;}
.y119{bottom:570.384750px;}
.y178{bottom:574.752300px;}
.y1d0{bottom:574.764750px;}
.ya0{bottom:575.811450px;}
.yd2{bottom:577.131750px;}
.y46{bottom:578.488800px;}
.y15b{bottom:580.908750px;}
.y59{bottom:581.658750px;}
.y199{bottom:583.509900px;}
.y177{bottom:588.554550px;}
.y118{bottom:589.884750px;}
.y1cf{bottom:595.164750px;}
.y9f{bottom:595.311450px;}
.yd1{bottom:596.631750px;}
.y15a{bottom:600.408750px;}
.y176{bottom:602.356800px;}
.y25{bottom:606.059925px;}
.y1ce{bottom:610.158750px;}
.y9e{bottom:614.811450px;}
.yd0{bottom:616.131750px;}
.y117{bottom:616.134750px;}
.y175{bottom:616.159050px;}
.y159{bottom:619.908750px;}
.y198{bottom:623.752650px;}
.y1cd{bottom:625.152750px;}
.y174{bottom:629.961300px;}
.ycf{bottom:635.631750px;}
.y116{bottom:635.634750px;}
.y158{bottom:639.408750px;}
.y1cc{bottom:640.146750px;}
.y197{bottom:640.251150px;}
.y9d{bottom:649.326450px;}
.y45{bottom:654.688800px;}
.yce{bottom:655.131750px;}
.y115{bottom:655.134750px;}
.y1cb{bottom:655.140750px;}
.y196{bottom:656.749650px;}
.y157{bottom:658.908750px;}
.yfd{bottom:665.269050px;}
.y9c{bottom:668.826450px;}
.y1ca{bottom:670.134750px;}
.y195{bottom:673.248150px;}
.y44{bottom:673.588800px;}
.y82{bottom:674.139750px;}
.ycd{bottom:674.631750px;}
.y114{bottom:674.634750px;}
.y156{bottom:678.408750px;}
.yfc{bottom:679.071300px;}
.y1c9{bottom:685.128750px;}
.y9b{bottom:688.326450px;}
.y194{bottom:689.746650px;}
.y81{bottom:692.139750px;}
.y43{bottom:692.488800px;}
.ycc{bottom:694.131750px;}
.y113{bottom:694.134750px;}
.y155{bottom:697.908750px;}
.y1c8{bottom:705.528750px;}
.y24{bottom:706.107975px;}
.y193{bottom:706.245150px;}
.y9a{bottom:707.826450px;}
.y80{bottom:710.139750px;}
.ycb{bottom:713.631750px;}
.y112{bottom:713.634750px;}
.y154{bottom:717.408750px;}
.y1c7{bottom:720.522750px;}
.y192{bottom:722.743650px;}
.y42{bottom:724.888800px;}
.y99{bottom:727.326450px;}
.yca{bottom:733.131750px;}
.y111{bottom:733.134750px;}
.y1c6{bottom:735.516750px;}
.y153{bottom:736.908750px;}
.y191{bottom:739.242150px;}
.y41{bottom:743.788800px;}
.y148{bottom:746.589750px;}
.y98{bottom:746.826450px;}
.y1c5{bottom:750.510750px;}
.yc9{bottom:752.631750px;}
.y110{bottom:752.634750px;}
.y190{bottom:755.740650px;}
.y152{bottom:756.408750px;}
.y7f{bottom:758.379750px;}
.y40{bottom:762.688800px;}
.y1c4{bottom:765.504750px;}
.y97{bottom:766.326450px;}
.y147{bottom:767.589750px;}
.yde{bottom:772.131750px;}
.y18f{bottom:772.239150px;}
.y151{bottom:775.908750px;}
.y7e{bottom:776.379750px;}
.y1c3{bottom:780.498750px;}
.y96{bottom:785.826450px;}
.y10f{bottom:787.143750px;}
.yc8{bottom:787.146750px;}
.y18e{bottom:788.737650px;}
.y146{bottom:790.989750px;}
.ydd{bottom:791.631750px;}
.y7d{bottom:794.379750px;}
.y3f{bottom:795.088800px;}
.y150{bottom:795.408750px;}
.y1c2{bottom:795.492750px;}
.y18d{bottom:805.236150px;}
.y95{bottom:805.326450px;}
.y10e{bottom:806.643750px;}
.yc7{bottom:806.646750px;}
.y1c1{bottom:810.486750px;}
.y145{bottom:810.489750px;}
.y3e{bottom:813.988800px;}
.y14f{bottom:814.908750px;}
.y18c{bottom:821.734650px;}
.y1c0{bottom:825.480750px;}
.y10d{bottom:826.143750px;}
.yc6{bottom:826.146750px;}
.y144{bottom:831.489750px;}
.y3d{bottom:832.888800px;}
.y14e{bottom:834.408750px;}
.y18b{bottom:838.233150px;}
.y94{bottom:839.841450px;}
.y1bf{bottom:840.474750px;}
.y7c{bottom:842.619750px;}
.y10c{bottom:845.643750px;}
.yc5{bottom:845.646750px;}
.y3c{bottom:851.788800px;}
.y18a{bottom:854.731650px;}
.y143{bottom:854.889750px;}
.y93{bottom:859.341450px;}
.y7b{bottom:860.619750px;}
.y14d{bottom:860.658750px;}
.y10b{bottom:865.143750px;}
.yc4{bottom:865.146750px;}
.y189{bottom:871.230150px;}
.y142{bottom:874.389750px;}
.y7a{bottom:878.619750px;}
.y92{bottom:878.841450px;}
.y14c{bottom:880.158750px;}
.y3b{bottom:884.188800px;}
.y10a{bottom:884.643750px;}
.yc3{bottom:884.646750px;}
.y188{bottom:887.728650px;}
.y141{bottom:895.389750px;}
.y91{bottom:898.341450px;}
.y14b{bottom:899.658750px;}
.y3a{bottom:903.088800px;}
.y109{bottom:904.143750px;}
.yc2{bottom:904.146750px;}
.y87{bottom:910.871850px;}
.y187{bottom:915.026400px;}
.y90{bottom:917.841450px;}
.y140{bottom:918.789750px;}
.y14a{bottom:919.158750px;}
.y39{bottom:921.988800px;}
.y1be{bottom:923.643750px;}
.yc1{bottom:923.646750px;}
.y186{bottom:931.524900px;}
.y79{bottom:933.339750px;}
.y8f{bottom:937.341450px;}
.y108{bottom:938.658750px;}
.y13f{bottom:939.789750px;}
.y1bd{bottom:943.143750px;}
.yc0{bottom:943.146750px;}
.y185{bottom:948.023400px;}
.y38{bottom:952.768950px;}
.y8e{bottom:956.841450px;}
.y107{bottom:958.158750px;}
.ydc{bottom:962.646750px;}
.ybf{bottom:962.648850px;}
.y184{bottom:964.521900px;}
.y21{bottom:968.106990px;}
.y22{bottom:968.133270px;}
.y23{bottom:968.140320px;}
.y13e{bottom:968.589750px;}
.y8d{bottom:976.341450px;}
.y106{bottom:977.658750px;}
.y183{bottom:981.020400px;}
.y86{bottom:981.623850px;}
.ybe{bottom:982.146750px;}
.y13d{bottom:988.089750px;}
.y8c{bottom:995.841450px;}
.y105{bottom:997.158750px;}
.y182{bottom:997.518900px;}
.y20{bottom:999.036720px;}
.y1f{bottom:999.037170px;}
.y1e{bottom:999.042480px;}
.y1d{bottom:999.043125px;}
.y1c{bottom:999.044040px;}
.y1b{bottom:999.044490px;}
.y1a{bottom:999.048525px;}
.y19{bottom:999.048975px;}
.y18{bottom:999.053370px;}
.y17{bottom:999.053835px;}
.y16{bottom:999.056025px;}
.y15{bottom:999.056400px;}
.y14{bottom:999.057675px;}
.ydb{bottom:1001.646750px;}
.y78{bottom:1006.737750px;}
.y13c{bottom:1007.589750px;}
.y181{bottom:1014.017400px;}
.ybd{bottom:1016.646450px;}
.y104{bottom:1016.658750px;}
.yda{bottom:1021.146750px;}
.y8b{bottom:1022.091450px;}
.y13{bottom:1030.009830px;}
.y180{bottom:1030.515900px;}
.y55{bottom:1033.099050px;}
.ybc{bottom:1036.146450px;}
.y103{bottom:1036.158750px;}
.yd9{bottom:1040.646750px;}
.y8a{bottom:1041.591450px;}
.y13b{bottom:1042.209750px;}
.y17f{bottom:1047.014400px;}
.ybb{bottom:1055.646450px;}
.y102{bottom:1055.658750px;}
.y17e{bottom:1063.512900px;}
.y77{bottom:1065.219750px;}
.yba{bottom:1075.146450px;}
.yd8{bottom:1075.158750px;}
.y56{bottom:1075.500000px;}
.y89{bottom:1076.103450px;}
.y17d{bottom:1080.011400px;}
.yb9{bottom:1094.646450px;}
.yd7{bottom:1094.658750px;}
.y88{bottom:1095.603450px;}
.y17c{bottom:1096.509900px;}
.y12{bottom:1098.277950px;}
.y11{bottom:1098.283350px;}
.y10{bottom:1098.299475px;}
.yf{bottom:1098.304785px;}
.ye{bottom:1098.370965px;}
.yd{bottom:1098.376920px;}
.yc{bottom:1098.387630px;}
.yb{bottom:1104.246090px;}
.ya{bottom:1104.251400px;}
.y9{bottom:1104.283545px;}
.y8{bottom:1104.295260px;}
.y7{bottom:1104.403380px;}
.y6{bottom:1104.410895px;}
.y5{bottom:1104.599220px;}
.y4{bottom:1104.620640px;}
.y3{bottom:1104.788640px;}
.y2{bottom:1104.807855px;}
.y1{bottom:1104.865725px;}
.h2e{height:30.351562px;}
.h30{height:30.556641px;}
.h2f{height:32.750977px;}
.h27{height:33.679980px;}
.h33{height:36.855469px;}
.h31{height:37.029785px;}
.h32{height:37.104492px;}
.h2d{height:39.769043px;}
.h2c{height:42.304688px;}
.h1e{height:43.359375px;}
.h2b{height:43.860000px;}
.h20{height:44.100000px;}
.h24{height:44.557800px;}
.h1f{height:46.787109px;}
.h29{height:47.190337px;}
.h23{height:51.329138px;}
.h10{height:56.731622px;}
.h6{height:59.568200px;}
.h7{height:68.077943px;}
.h5{height:73.751105px;}
.h1d{height:76.194000px;}
.h8{height:76.587686px;}
.hc{height:76.587689px;}
.ha{height:79.424270px;}
.h1a{height:82.260848px;}
.h18{height:82.260857px;}
.h2a{height:83.916000px;}
.hb{height:87.934013px;}
.h1{height:90.770591px;}
.h19{height:90.770601px;}
.h1b{height:93.607177px;}
.hd{height:96.443762px;}
.h28{height:97.020000px;}
.h26{height:97.812000px;}
.hf{height:99.280337px;}
.h1c{height:102.116914px;}
.he{height:104.953499px;}
.h4{height:119.136393px;}
.h17{height:138.992466px;}
.h2{height:144.665629px;}
.h13{height:144.665639px;}
.h3{height:147.502210px;}
.h14{height:150.338801px;}
.h15{height:153.175371px;}
.h16{height:156.011952px;}
.h25{height:167.580000px;}
.h22{height:196.650000px;}
.h11{height:224.089916px;}
.h21{height:245.812500px;}
.h12{height:277.984949px;}
.h9{height:309.187359px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4d{left:51.728550px;}
.x4c{left:54.000000px;}
.x4f{left:81.000000px;}
.x4e{left:86.213550px;}
.x37{left:87.617550px;}
.x22{left:112.909870px;}
.x23{left:114.096565px;}
.x38{left:135.000000px;}
.x32{left:148.500000px;}
.x43{left:162.190200px;}
.x24{left:167.813484px;}
.x36{left:170.688000px;}
.x27{left:175.701314px;}
.x33{left:180.000000px;}
.x44{left:234.010200px;}
.x3c{left:236.412750px;}
.x3d{left:242.679300px;}
.x28{left:246.230346px;}
.x3b{left:255.051750px;}
.x29{left:259.214580px;}
.x42{left:265.345200px;}
.x41{left:266.605200px;}
.x34{left:272.825400px;}
.x45{left:296.575200px;}
.x57{left:310.500000px;}
.x25{left:322.546395px;}
.x50{left:325.728000px;}
.x26{left:335.510175px;}
.x40{left:344.425200px;}
.x31{left:345.900900px;}
.x52{left:349.920000px;}
.x54{left:356.400000px;}
.x55{left:374.400000px;}
.x1{left:399.034155px;}
.x14{left:402.680610px;}
.x13{left:404.359215px;}
.x15{left:425.711520px;}
.x16{left:432.908745px;}
.x3f{left:434.380200px;}
.x3e{left:435.475200px;}
.x2{left:437.893530px;}
.x3{left:450.848415px;}
.x17{left:471.773535px;}
.x18{left:480.410160px;}
.x39{left:513.000000px;}
.x53{left:515.140800px;}
.x56{left:516.308400px;}
.x48{left:526.675200px;}
.x3a{left:540.000000px;}
.x4b{left:545.230200px;}
.x19{left:560.298975px;}
.x4{left:563.844000px;}
.x51{left:565.500000px;}
.x1a{left:568.215825px;}
.x5{left:578.238285px;}
.x47{left:599.335200px;}
.x46{left:604.150200px;}
.x49{left:610.495200px;}
.x4a{left:634.810200px;}
.x2a{left:638.796105px;}
.x1b{left:640.907505px;}
.x1c{left:648.824610px;}
.x1d{left:666.097590px;}
.x1e{left:677.613105px;}
.x2b{left:689.900670px;}
.x2f{left:694.183050px;}
.x2c{left:697.097805px;}
.x6{left:704.908545px;}
.x7{left:709.947600px;}
.x35{left:712.435500px;}
.xc{left:714.305790px;}
.xd{left:727.260780px;}
.xe{left:734.458005px;}
.x2d{left:740.261805px;}
.x30{left:747.407865px;}
.x2e{left:749.618130px;}
.x1f{left:772.615815px;}
.x20{left:781.252440px;}
.x8{left:782.638920px;}
.x9{left:790.561245px;}
.xa{left:812.147370px;}
.xf{left:814.346565px;}
.xb{left:815.745945px;}
.x10{left:820.824090px;}
.x21{left:828.768225px;}
.x11{left:840.254700px;}
.x12{left:846.732150px;}
@media print{
.v2{vertical-align:-5.333333pt;}
.v1{vertical-align:-3.573867pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-5.877333pt;}
.ls1a{letter-spacing:-4.458667pt;}
.ls4a{letter-spacing:-4.160000pt;}
.ls27{letter-spacing:-3.744000pt;}
.ls4f{letter-spacing:-3.733333pt;}
.ls45{letter-spacing:-3.520000pt;}
.ls66{letter-spacing:-3.360000pt;}
.ls2f{letter-spacing:-3.040000pt;}
.ls26{letter-spacing:-2.933333pt;}
.ls4d{letter-spacing:-2.784000pt;}
.ls3f{letter-spacing:-2.720000pt;}
.ls46{letter-spacing:-2.613333pt;}
.ls44{letter-spacing:-2.560000pt;}
.ls47{letter-spacing:-2.506667pt;}
.ls8a{letter-spacing:-2.389333pt;}
.ls76{letter-spacing:-2.352000pt;}
.ls50{letter-spacing:-2.346667pt;}
.ls33{letter-spacing:-2.240000pt;}
.ls3c{letter-spacing:-2.208000pt;}
.ls2e{letter-spacing:-2.026667pt;}
.ls22{letter-spacing:-1.971200pt;}
.ls40{letter-spacing:-1.920000pt;}
.ls5b{letter-spacing:-1.824000pt;}
.ls2b{letter-spacing:-1.706667pt;}
.ls25{letter-spacing:-1.642667pt;}
.ls1c{letter-spacing:-1.525333pt;}
.ls39{letter-spacing:-1.440000pt;}
.lsa{letter-spacing:-1.392000pt;}
.ls1f{letter-spacing:-1.333333pt;}
.ls3d{letter-spacing:-1.226667pt;}
.ls16{letter-spacing:-1.120000pt;}
.ls21{letter-spacing:-1.066667pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls60{letter-spacing:-0.906667pt;}
.ls81{letter-spacing:-0.861333pt;}
.ls7{letter-spacing:-0.853333pt;}
.ls6c{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:-0.746667pt;}
.ls41{letter-spacing:-0.693333pt;}
.ls70{letter-spacing:-0.640000pt;}
.ls8c{letter-spacing:-0.634667pt;}
.ls49{letter-spacing:-0.586667pt;}
.ls58{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.453333pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.272000pt;}
.ls2a{letter-spacing:-0.266667pt;}
.ls88{letter-spacing:-0.261333pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls5a{letter-spacing:-0.192000pt;}
.ls8d{letter-spacing:-0.186667pt;}
.ls82{letter-spacing:-0.181333pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls8e{letter-spacing:-0.149333pt;}
.ls6{letter-spacing:-0.106667pt;}
.ls87{letter-spacing:-0.090667pt;}
.ls89{letter-spacing:-0.074667pt;}
.ls2d{letter-spacing:-0.053333pt;}
.ls79{letter-spacing:-0.045333pt;}
.ls3b{letter-spacing:-0.041067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8f{letter-spacing:0.037333pt;}
.ls7a{letter-spacing:0.045333pt;}
.ls11{letter-spacing:0.053333pt;}
.ls29{letter-spacing:0.054933pt;}
.ls7f{letter-spacing:0.090667pt;}
.ls10{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.109867pt;}
.ls78{letter-spacing:0.136000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls48{letter-spacing:0.164800pt;}
.ls24{letter-spacing:0.205333pt;}
.ls30{letter-spacing:0.213333pt;}
.ls93{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.266667pt;}
.ls85{letter-spacing:0.272000pt;}
.ls90{letter-spacing:0.298667pt;}
.ls83{letter-spacing:0.317333pt;}
.ls37{letter-spacing:0.320000pt;}
.ls94{letter-spacing:0.336000pt;}
.ls32{letter-spacing:0.373333pt;}
.ls84{letter-spacing:0.408000pt;}
.ls92{letter-spacing:0.410667pt;}
.ls38{letter-spacing:0.426667pt;}
.ls7e{letter-spacing:0.453333pt;}
.ls3a{letter-spacing:0.480000pt;}
.ls80{letter-spacing:0.498667pt;}
.lsd{letter-spacing:0.533333pt;}
.ls77{letter-spacing:0.544000pt;}
.ls3e{letter-spacing:0.586667pt;}
.ls86{letter-spacing:0.634667pt;}
.ls18{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.657067pt;}
.ls13{letter-spacing:0.693333pt;}
.ls8b{letter-spacing:0.709333pt;}
.ls43{letter-spacing:0.746667pt;}
.ls97{letter-spacing:0.770667pt;}
.ls35{letter-spacing:0.800000pt;}
.ls34{letter-spacing:0.853333pt;}
.ls91{letter-spacing:0.858667pt;}
.ls59{letter-spacing:0.862400pt;}
.ls55{letter-spacing:0.906667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls7b{letter-spacing:0.997333pt;}
.lse{letter-spacing:1.013333pt;}
.ls2c{letter-spacing:1.066667pt;}
.ls7d{letter-spacing:1.088000pt;}
.ls1{letter-spacing:1.120000pt;}
.ls31{letter-spacing:1.173333pt;}
.ls96{letter-spacing:1.178667pt;}
.lsb{letter-spacing:1.226667pt;}
.ls75{letter-spacing:1.273067pt;}
.ls15{letter-spacing:1.280000pt;}
.ls74{letter-spacing:1.333333pt;}
.ls17{letter-spacing:1.440000pt;}
.ls56{letter-spacing:1.493333pt;}
.ls95{letter-spacing:1.496000pt;}
.ls42{letter-spacing:1.546667pt;}
.ls63{letter-spacing:1.600000pt;}
.ls57{letter-spacing:1.653333pt;}
.ls53{letter-spacing:1.706667pt;}
.ls4e{letter-spacing:1.866667pt;}
.ls51{letter-spacing:1.973333pt;}
.ls7c{letter-spacing:2.130667pt;}
.ls36{letter-spacing:2.133333pt;}
.ls52{letter-spacing:2.293333pt;}
.ls61{letter-spacing:2.346667pt;}
.ls69{letter-spacing:2.666667pt;}
.ls5e{letter-spacing:2.773333pt;}
.ls6e{letter-spacing:2.826667pt;}
.ls73{letter-spacing:2.933333pt;}
.ls54{letter-spacing:3.093333pt;}
.ls64{letter-spacing:3.146667pt;}
.ls68{letter-spacing:3.626667pt;}
.ls72{letter-spacing:3.680000pt;}
.ls6f{letter-spacing:3.733333pt;}
.ls5f{letter-spacing:4.106667pt;}
.ls65{letter-spacing:4.266667pt;}
.ls5c{letter-spacing:4.320000pt;}
.ls5d{letter-spacing:4.373333pt;}
.ls71{letter-spacing:4.906667pt;}
.ls6a{letter-spacing:5.120000pt;}
.ls62{letter-spacing:5.280000pt;}
.ls6b{letter-spacing:5.653333pt;}
.ls67{letter-spacing:7.093333pt;}
.ls6d{letter-spacing:9.653333pt;}
.ls8{letter-spacing:20.684800pt;}
.ls4c{letter-spacing:20.853333pt;}
.ls4b{letter-spacing:42.186667pt;}
.ws8d{word-spacing:-53.760000pt;}
.ws6a{word-spacing:-53.386667pt;}
.wsd{word-spacing:-53.333333pt;}
.ws4{word-spacing:-20.889600pt;}
.ws8c{word-spacing:-13.226667pt;}
.wsa{word-spacing:-12.853333pt;}
.wsf{word-spacing:-12.266667pt;}
.wse{word-spacing:-12.000000pt;}
.wsb2{word-spacing:-11.605333pt;}
.wsb1{word-spacing:-11.469333pt;}
.ws6b{word-spacing:-10.880000pt;}
.ws3{word-spacing:-9.440000pt;}
.ws1{word-spacing:-9.386667pt;}
.wsb0{word-spacing:-9.072000pt;}
.ws2{word-spacing:-8.906667pt;}
.ws7b{word-spacing:-4.746667pt;}
.wsc0{word-spacing:-3.354667pt;}
.ws14{word-spacing:-3.306667pt;}
.ws4d{word-spacing:-2.826667pt;}
.ws42{word-spacing:-2.773333pt;}
.ws1a{word-spacing:-2.666667pt;}
.ws58{word-spacing:-2.613333pt;}
.wsdf{word-spacing:-2.584000pt;}
.ws7e{word-spacing:-2.453333pt;}
.wsc4{word-spacing:-2.402667pt;}
.wse0{word-spacing:-2.357333pt;}
.ws86{word-spacing:-2.346667pt;}
.wsb5{word-spacing:-2.266667pt;}
.wsbb{word-spacing:-2.221333pt;}
.ws87{word-spacing:-2.186667pt;}
.ws57{word-spacing:-2.133333pt;}
.wsbc{word-spacing:-2.130667pt;}
.ws3d{word-spacing:-2.026667pt;}
.ws46{word-spacing:-1.973333pt;}
.ws60{word-spacing:-1.920000pt;}
.wsf2{word-spacing:-1.904000pt;}
.ws67{word-spacing:-1.866667pt;}
.wsd8{word-spacing:-1.813333pt;}
.ws7f{word-spacing:-1.765867pt;}
.ws12{word-spacing:-1.760000pt;}
.wsd5{word-spacing:-1.754667pt;}
.wsba{word-spacing:-1.722667pt;}
.wscc{word-spacing:-1.717333pt;}
.ws4c{word-spacing:-1.653333pt;}
.wsc8{word-spacing:-1.605333pt;}
.ws5d{word-spacing:-1.493333pt;}
.ws1e{word-spacing:-1.440000pt;}
.wsf4{word-spacing:-1.405333pt;}
.ws3c{word-spacing:-1.386667pt;}
.ws3f{word-spacing:-1.333333pt;}
.wsc{word-spacing:-1.280000pt;}
.wsac{word-spacing:-1.273067pt;}
.ws13{word-spacing:-1.226667pt;}
.ws5{word-spacing:-1.120000pt;}
.wsed{word-spacing:-1.088000pt;}
.ws16{word-spacing:-1.013333pt;}
.wsd1{word-spacing:-1.008000pt;}
.ws6{word-spacing:-0.960000pt;}
.ws63{word-spacing:-0.906667pt;}
.ws80{word-spacing:-0.862400pt;}
.wsda{word-spacing:-0.861333pt;}
.wscf{word-spacing:-0.858667pt;}
.ws47{word-spacing:-0.853333pt;}
.ws1b{word-spacing:-0.800000pt;}
.wsb6{word-spacing:-0.770667pt;}
.ws3e{word-spacing:-0.693333pt;}
.wsd6{word-spacing:-0.672000pt;}
.ws2f{word-spacing:-0.657067pt;}
.wsd0{word-spacing:-0.597333pt;}
.wsec{word-spacing:-0.544000pt;}
.ws50{word-spacing:-0.533333pt;}
.wse1{word-spacing:-0.453333pt;}
.wsf1{word-spacing:-0.408000pt;}
.ws5c{word-spacing:-0.373333pt;}
.wsb9{word-spacing:-0.362667pt;}
.wsce{word-spacing:-0.298667pt;}
.ws29{word-spacing:-0.266667pt;}
.wsd7{word-spacing:-0.224000pt;}
.ws71{word-spacing:-0.213333pt;}
.ws30{word-spacing:-0.205333pt;}
.ws62{word-spacing:-0.164800pt;}
.wsf5{word-spacing:-0.136000pt;}
.ws1c{word-spacing:-0.109867pt;}
.ws24{word-spacing:-0.106667pt;}
.wsee{word-spacing:-0.090667pt;}
.ws38{word-spacing:-0.054933pt;}
.ws2a{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws52{word-spacing:0.041067pt;}
.wse6{word-spacing:0.045333pt;}
.ws25{word-spacing:0.106667pt;}
.ws2c{word-spacing:0.160000pt;}
.wsde{word-spacing:0.181333pt;}
.ws81{word-spacing:0.192000pt;}
.ws6f{word-spacing:0.266667pt;}
.ws8{word-spacing:0.272000pt;}
.ws2b{word-spacing:0.320000pt;}
.wsc6{word-spacing:0.336000pt;}
.ws39{word-spacing:0.373333pt;}
.wsd2{word-spacing:0.448000pt;}
.ws9{word-spacing:0.453333pt;}
.ws2d{word-spacing:0.480000pt;}
.wse5{word-spacing:0.498667pt;}
.ws1f{word-spacing:0.533333pt;}
.wsd3{word-spacing:0.560000pt;}
.ws5a{word-spacing:0.586667pt;}
.wscb{word-spacing:0.634667pt;}
.wsa4{word-spacing:0.640000pt;}
.ws7{word-spacing:0.746667pt;}
.ws37{word-spacing:0.853333pt;}
.wsbf{word-spacing:0.861333pt;}
.wsc7{word-spacing:1.008000pt;}
.ws20{word-spacing:1.013333pt;}
.ws54{word-spacing:1.120000pt;}
.ws21{word-spacing:1.173333pt;}
.wsc1{word-spacing:1.224000pt;}
.ws51{word-spacing:1.226667pt;}
.wsd4{word-spacing:1.269333pt;}
.ws7c{word-spacing:1.280000pt;}
.wsf3{word-spacing:1.314667pt;}
.ws23{word-spacing:1.333333pt;}
.ws4f{word-spacing:1.440000pt;}
.ws45{word-spacing:1.493333pt;}
.ws28{word-spacing:1.525333pt;}
.ws31{word-spacing:1.642667pt;}
.ws3a{word-spacing:1.706667pt;}
.wsb4{word-spacing:1.722667pt;}
.wsef{word-spacing:1.768000pt;}
.ws59{word-spacing:1.920000pt;}
.ws2e{word-spacing:1.971200pt;}
.ws93{word-spacing:1.973333pt;}
.ws40{word-spacing:2.026667pt;}
.ws44{word-spacing:2.240000pt;}
.wsaf{word-spacing:2.304000pt;}
.wsc5{word-spacing:2.314667pt;}
.ws4e{word-spacing:2.346667pt;}
.wscd{word-spacing:2.352000pt;}
.wsc3{word-spacing:2.357333pt;}
.wsc9{word-spacing:2.389333pt;}
.wsad{word-spacing:2.464000pt;}
.wsc2{word-spacing:2.493333pt;}
.ws61{word-spacing:2.506667pt;}
.wsca{word-spacing:2.538667pt;}
.ws55{word-spacing:2.560000pt;}
.ws1d{word-spacing:2.613333pt;}
.ws88{word-spacing:2.666667pt;}
.ws56{word-spacing:2.720000pt;}
.ws69{word-spacing:2.736000pt;}
.ws85{word-spacing:2.773333pt;}
.wsb3{word-spacing:2.810667pt;}
.wsbe{word-spacing:2.856000pt;}
.ws84{word-spacing:2.880000pt;}
.ws32{word-spacing:2.933333pt;}
.wsb8{word-spacing:3.037333pt;}
.ws41{word-spacing:3.040000pt;}
.ws18{word-spacing:3.093333pt;}
.wsb7{word-spacing:3.128000pt;}
.ws11{word-spacing:3.253333pt;}
.ws19{word-spacing:3.306667pt;}
.ws15{word-spacing:3.360000pt;}
.ws64{word-spacing:3.413333pt;}
.wsbd{word-spacing:3.445333pt;}
.ws66{word-spacing:3.466667pt;}
.ws5f{word-spacing:3.520000pt;}
.ws73{word-spacing:3.626667pt;}
.ws48{word-spacing:3.733333pt;}
.ws36{word-spacing:3.744000pt;}
.ws49{word-spacing:3.786667pt;}
.wse2{word-spacing:3.808000pt;}
.ws9e{word-spacing:3.893333pt;}
.ws17{word-spacing:3.946667pt;}
.ws7d{word-spacing:4.000000pt;}
.wse8{word-spacing:4.034667pt;}
.ws77{word-spacing:4.053333pt;}
.ws3b{word-spacing:4.106667pt;}
.ws65{word-spacing:4.160000pt;}
.ws5e{word-spacing:4.213333pt;}
.ws4b{word-spacing:4.266667pt;}
.ws74{word-spacing:4.426667pt;}
.ws26{word-spacing:4.458667pt;}
.ws43{word-spacing:4.480000pt;}
.wsdb{word-spacing:4.669333pt;}
.ws9b{word-spacing:4.693333pt;}
.wsa5{word-spacing:4.746667pt;}
.wsf0{word-spacing:4.850667pt;}
.wsa1{word-spacing:4.853333pt;}
.wseb{word-spacing:4.986667pt;}
.wsdc{word-spacing:5.077333pt;}
.wsd9{word-spacing:5.168000pt;}
.ws78{word-spacing:5.226667pt;}
.ws35{word-spacing:5.333333pt;}
.ws22{word-spacing:5.493333pt;}
.ws8a{word-spacing:5.546667pt;}
.ws82{word-spacing:5.706667pt;}
.wsea{word-spacing:5.757333pt;}
.wsab{word-spacing:5.813333pt;}
.ws27{word-spacing:5.877333pt;}
.ws5b{word-spacing:5.920000pt;}
.ws10{word-spacing:6.080000pt;}
.ws98{word-spacing:6.186667pt;}
.ws6d{word-spacing:6.240000pt;}
.ws7a{word-spacing:6.293333pt;}
.ws91{word-spacing:6.346667pt;}
.ws72{word-spacing:6.400000pt;}
.ws83{word-spacing:6.773333pt;}
.ws6c{word-spacing:7.040000pt;}
.wsa9{word-spacing:7.093333pt;}
.ws6e{word-spacing:7.306667pt;}
.wse4{word-spacing:7.661333pt;}
.ws4a{word-spacing:7.946667pt;}
.ws79{word-spacing:8.053333pt;}
.ws96{word-spacing:8.480000pt;}
.ws70{word-spacing:8.693333pt;}
.wse7{word-spacing:9.338667pt;}
.ws8e{word-spacing:10.400000pt;}
.wsa2{word-spacing:10.506667pt;}
.ws75{word-spacing:11.413333pt;}
.wse3{word-spacing:11.469333pt;}
.ws76{word-spacing:11.520000pt;}
.ws95{word-spacing:11.573333pt;}
.ws9a{word-spacing:12.000000pt;}
.ws9c{word-spacing:12.586667pt;}
.wsaa{word-spacing:12.640000pt;}
.wsa7{word-spacing:13.440000pt;}
.wsa8{word-spacing:13.546667pt;}
.ws90{word-spacing:14.026667pt;}
.wsdd{word-spacing:15.050667pt;}
.wsa3{word-spacing:15.306667pt;}
.ws8f{word-spacing:15.893333pt;}
.ws9d{word-spacing:16.000000pt;}
.ws97{word-spacing:17.280000pt;}
.ws92{word-spacing:17.653333pt;}
.ws94{word-spacing:19.200000pt;}
.wsa6{word-spacing:20.266667pt;}
.ws89{word-spacing:20.853333pt;}
.wse9{word-spacing:20.989333pt;}
.ws9f{word-spacing:24.533333pt;}
.ws99{word-spacing:24.640000pt;}
.wsa0{word-spacing:32.000000pt;}
.wsb{word-spacing:292.961600pt;}
.ws8b{word-spacing:294.044267pt;}
.ws53{word-spacing:294.965867pt;}
.wsae{word-spacing:306.984533pt;}
.ws68{word-spacing:307.195733pt;}
.ws34{word-spacing:307.697067pt;}
.ws33{word-spacing:1061.868267pt;}
._d{margin-left:-2534.570667pt;}
._17{margin-left:-28.928000pt;}
._1c{margin-left:-17.696000pt;}
._11{margin-left:-16.618667pt;}
._19{margin-left:-14.272000pt;}
._5{margin-left:-13.333333pt;}
._1e{margin-left:-11.416533pt;}
._1f{margin-left:-9.536000pt;}
._1a{margin-left:-8.101333pt;}
._1b{margin-left:-6.346667pt;}
._8{margin-left:-5.066667pt;}
._a{margin-left:-4.165333pt;}
._2{margin-left:-3.082667pt;}
._c{margin-left:-2.176000pt;}
._0{margin-left:-1.269333pt;}
._1{width:1.088000pt;}
._3{width:2.266667pt;}
._e{width:3.178667pt;}
._18{width:4.154667pt;}
._15{width:5.056000pt;}
._f{width:6.144000pt;}
._16{width:8.234667pt;}
._10{width:9.216000pt;}
._1d{width:15.769600pt;}
._12{width:38.080000pt;}
._13{width:40.853333pt;}
._14{width:42.186667pt;}
._b{width:44.245333pt;}
._7{width:45.632000pt;}
._9{width:46.773333pt;}
._4{width:72.000000pt;}
._6{width:98.666667pt;}
.fs27{font-size:37.333333pt;}
.fs24{font-size:41.066667pt;}
.fs26{font-size:45.333333pt;}
.fs20{font-size:48.000000pt;}
.fsf{font-size:50.428108pt;}
.fs5{font-size:52.949511pt;}
.fs1d{font-size:53.333333pt;}
.fs21{font-size:54.933333pt;}
.fs6{font-size:60.513727pt;}
.fs4{font-size:65.556538pt;}
.fs7{font-size:68.077943pt;}
.fsb{font-size:68.077946pt;}
.fs9{font-size:70.599351pt;}
.fs19{font-size:73.120754pt;}
.fs17{font-size:73.120762pt;}
.fsa{font-size:78.163567pt;}
.fs0{font-size:80.684969pt;}
.fs18{font-size:80.684979pt;}
.fs1a{font-size:83.206380pt;}
.fsc{font-size:85.727789pt;}
.fse{font-size:88.249189pt;}
.fs1c{font-size:90.666667pt;}
.fs1b{font-size:90.770590pt;}
.fsd{font-size:93.291999pt;}
.fs25{font-size:96.000000pt;}
.fs3{font-size:105.899016pt;}
.fs23{font-size:117.333333pt;}
.fs16{font-size:123.548859pt;}
.fs1{font-size:128.591670pt;}
.fs12{font-size:128.591679pt;}
.fs2{font-size:131.113075pt;}
.fs13{font-size:133.634490pt;}
.fs14{font-size:136.155885pt;}
.fs15{font-size:138.677291pt;}
.fs10{font-size:199.191036pt;}
.fs22{font-size:202.666667pt;}
.fs1f{font-size:204.800000pt;}
.fs11{font-size:247.097732pt;}
.fs1e{font-size:256.000000pt;}
.fs8{font-size:274.833208pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:34.640400pt;}
.y57{bottom:35.560133pt;}
.y85{bottom:71.828267pt;}
.yf5{bottom:74.307333pt;}
.yfb{bottom:75.254000pt;}
.yd6{bottom:80.226267pt;}
.yb8{bottom:82.485733pt;}
.y84{bottom:84.096933pt;}
.y131{bottom:85.008667pt;}
.y76{bottom:85.672667pt;}
.yf4{bottom:91.640667pt;}
.yd5{bottom:92.494933pt;}
.yfa{bottom:92.587333pt;}
.y17b{bottom:93.278933pt;}
.y173{bottom:94.363333pt;}
.y83{bottom:96.365600pt;}
.yb7{bottom:99.819067pt;}
.y130{bottom:102.342000pt;}
.y75{bottom:103.006000pt;}
.y1bc{bottom:103.099467pt;}
.y1eb{bottom:104.715333pt;}
.yd4{bottom:104.763600pt;}
.y17a{bottom:105.547600pt;}
.y37{bottom:108.055816pt;}
.y36{bottom:108.061025pt;}
.y35{bottom:108.126984pt;}
.yf9{bottom:109.920667pt;}
.y13a{bottom:110.408800pt;}
.y172{bottom:111.696667pt;}
.y1bb{bottom:113.767467pt;}
.yd3{bottom:117.032267pt;}
.yb6{bottom:117.152400pt;}
.y179{bottom:117.816267pt;}
.y1ea{bottom:119.380667pt;}
.y12f{bottom:119.675333pt;}
.y74{bottom:120.339333pt;}
.yf3{bottom:122.320667pt;}
.y1ba{bottom:124.435467pt;}
.y139{bottom:125.552133pt;}
.yf8{bottom:127.254000pt;}
.y171{bottom:129.030000pt;}
.y1e9{bottom:134.046000pt;}
.yb5{bottom:134.485733pt;}
.y1b9{bottom:135.103467pt;}
.y12e{bottom:137.008667pt;}
.y73{bottom:137.672667pt;}
.yf2{bottom:139.654000pt;}
.y138{bottom:140.695467pt;}
.y32{bottom:142.676544pt;}
.y33{bottom:142.712097pt;}
.y34{bottom:142.719492pt;}
.y170{bottom:146.363333pt;}
.y1e8{bottom:148.711333pt;}
.y1b8{bottom:149.607467pt;}
.yb4{bottom:151.819067pt;}
.y12d{bottom:154.342000pt;}
.y72{bottom:155.006000pt;}
.y137{bottom:155.838800pt;}
.yf1{bottom:156.987333pt;}
.yf7{bottom:157.934000pt;}
.y1b7{bottom:160.275467pt;}
.y1e7{bottom:163.376667pt;}
.y16f{bottom:163.696667pt;}
.yb3{bottom:169.152400pt;}
.y1b6{bottom:170.943467pt;}
.y54{bottom:170.959067pt;}
.y136{bottom:170.982133pt;}
.y12c{bottom:171.675333pt;}
.y2f{bottom:172.107645pt;}
.y30{bottom:172.243164pt;}
.y31{bottom:172.255920pt;}
.yf0{bottom:174.320667pt;}
.yf6{bottom:175.267333pt;}
.y1e6{bottom:178.042000pt;}
.y71{bottom:178.339333pt;}
.y16e{bottom:181.030000pt;}
.y1b5{bottom:185.447467pt;}
.y135{bottom:186.125467pt;}
.yb2{bottom:186.485733pt;}
.y53{bottom:187.759067pt;}
.y12b{bottom:189.008667pt;}
.yef{bottom:191.654000pt;}
.y1e5{bottom:192.707333pt;}
.y70{bottom:195.672667pt;}
.y1b4{bottom:196.115467pt;}
.y16d{bottom:198.363333pt;}
.y2c{bottom:200.899028pt;}
.y2d{bottom:201.000020pt;}
.y2e{bottom:201.014261pt;}
.y134{bottom:201.268800pt;}
.yb1{bottom:203.819067pt;}
.y52{bottom:204.559067pt;}
.y12a{bottom:206.342000pt;}
.y1b3{bottom:206.783467pt;}
.y1e4{bottom:207.372667pt;}
.yee{bottom:208.987333pt;}
.y6f{bottom:213.006000pt;}
.y16c{bottom:215.696667pt;}
.y133{bottom:217.377200pt;}
.y1b2{bottom:217.451467pt;}
.y101{bottom:218.972933pt;}
.yb0{bottom:221.152400pt;}
.y1e3{bottom:222.038000pt;}
.y129{bottom:223.675333pt;}
.yed{bottom:226.320667pt;}
.y1b1{bottom:228.119467pt;}
.y132{bottom:229.645867pt;}
.y6e{bottom:230.339333pt;}
.y100{bottom:231.241600pt;}
.y16b{bottom:233.030000pt;}
.y51{bottom:233.359067pt;}
.y1e2{bottom:236.703333pt;}
.yaf{bottom:238.485733pt;}
.y1b0{bottom:238.787467pt;}
.y128{bottom:241.008667pt;}
.yff{bottom:243.510267pt;}
.yec{bottom:243.654000pt;}
.y6d{bottom:247.672667pt;}
.y50{bottom:250.159067pt;}
.y16a{bottom:250.363333pt;}
.y1e1{bottom:251.368667pt;}
.y1af{bottom:253.291467pt;}
.y149{bottom:255.255067pt;}
.yfe{bottom:255.778933pt;}
.yae{bottom:255.819067pt;}
.y127{bottom:258.342000pt;}
.yeb{bottom:260.987333pt;}
.y1ae{bottom:263.959467pt;}
.y1e0{bottom:266.034000pt;}
.y169{bottom:267.696667pt;}
.yad{bottom:273.152400pt;}
.y1ad{bottom:274.627467pt;}
.y126{bottom:275.675333pt;}
.y6c{bottom:278.352667pt;}
.y4f{bottom:278.959067pt;}
.y168{bottom:285.030000pt;}
.y1ac{bottom:289.131467pt;}
.yac{bottom:290.485733pt;}
.yea{bottom:291.659333pt;}
.y6b{bottom:295.686000pt;}
.y4e{bottom:295.759067pt;}
.y125{bottom:299.008667pt;}
.y1ab{bottom:299.799467pt;}
.y1df{bottom:301.371333pt;}
.y167{bottom:302.363333pt;}
.yab{bottom:307.819067pt;}
.ye9{bottom:308.992667pt;}
.y4d{bottom:312.559067pt;}
.y6a{bottom:313.019333pt;}
.y1aa{bottom:314.303467pt;}
.y1de{bottom:314.699333pt;}
.y124{bottom:316.342000pt;}
.y166{bottom:319.696667pt;}
.y1a9{bottom:324.971467pt;}
.yaa{bottom:325.152400pt;}
.ye8{bottom:326.326000pt;}
.y1dd{bottom:328.027333pt;}
.y69{bottom:330.352667pt;}
.y123{bottom:333.675333pt;}
.y1a8{bottom:335.639467pt;}
.y165{bottom:337.030000pt;}
.y4c{bottom:339.918933pt;}
.y1dc{bottom:341.355333pt;}
.ye7{bottom:343.659333pt;}
.y62{bottom:347.683333pt;}
.y68{bottom:347.686000pt;}
.y1a7{bottom:350.143467pt;}
.y122{bottom:351.008667pt;}
.y164{bottom:354.363333pt;}
.y1db{bottom:354.683333pt;}
.ya9{bottom:355.832400pt;}
.y1a6{bottom:360.811467pt;}
.ye6{bottom:360.992667pt;}
.y61{bottom:365.016667pt;}
.y67{bottom:365.019333pt;}
.y1da{bottom:368.011333pt;}
.y121{bottom:368.342000pt;}
.y1a5{bottom:371.479467pt;}
.ya8{bottom:373.165733pt;}
.y163{bottom:377.696667pt;}
.ye5{bottom:378.326000pt;}
.y1d9{bottom:381.339333pt;}
.y66{bottom:382.352667pt;}
.y120{bottom:385.675333pt;}
.y1a4{bottom:385.983467pt;}
.ya7{bottom:390.499067pt;}
.y162{bottom:395.030000pt;}
.ye4{bottom:395.659333pt;}
.y60{bottom:395.696667pt;}
.y1a3{bottom:396.651467pt;}
.y1d8{bottom:399.472667pt;}
.y65{bottom:399.686000pt;}
.y2b{bottom:402.564373pt;}
.y2a{bottom:402.644333pt;}
.y11f{bottom:403.008667pt;}
.y29{bottom:403.078653pt;}
.y1a2{bottom:407.319467pt;}
.y4b{bottom:407.652400pt;}
.ya6{bottom:407.832400pt;}
.y161{bottom:412.363333pt;}
.y1d7{bottom:412.800667pt;}
.ye3{bottom:412.992667pt;}
.y5f{bottom:413.030000pt;}
.y64{bottom:417.019333pt;}
.y11e{bottom:420.342000pt;}
.y1a1{bottom:421.823467pt;}
.y4a{bottom:424.452400pt;}
.ya5{bottom:425.165733pt;}
.y1d6{bottom:426.128667pt;}
.y160{bottom:429.696667pt;}
.ye2{bottom:430.326000pt;}
.y5e{bottom:430.363333pt;}
.y1a0{bottom:432.491467pt;}
.y63{bottom:434.352667pt;}
.y11d{bottom:437.675333pt;}
.y1d5{bottom:439.456667pt;}
.y49{bottom:441.252400pt;}
.ya4{bottom:442.499067pt;}
.y19f{bottom:443.159467pt;}
.y15f{bottom:447.030000pt;}
.ye1{bottom:447.659333pt;}
.y5d{bottom:447.696667pt;}
.y28{bottom:449.448933pt;}
.y27{bottom:449.524333pt;}
.y26{bottom:450.424240pt;}
.y11c{bottom:455.008667pt;}
.y1d4{bottom:457.590000pt;}
.y19e{bottom:457.663467pt;}
.ya3{bottom:459.832400pt;}
.y15e{bottom:464.363333pt;}
.ye0{bottom:464.992667pt;}
.y5c{bottom:465.030000pt;}
.y19d{bottom:468.331467pt;}
.y48{bottom:470.052400pt;}
.y1d3{bottom:470.918000pt;}
.y11b{bottom:472.342000pt;}
.ya2{bottom:477.165733pt;}
.y19c{bottom:478.999467pt;}
.y15d{bottom:481.696667pt;}
.ydf{bottom:482.326000pt;}
.y5b{bottom:482.363333pt;}
.y1d2{bottom:484.246000pt;}
.y47{bottom:486.852400pt;}
.y11a{bottom:489.675333pt;}
.y19b{bottom:493.503467pt;}
.ya1{bottom:494.499067pt;}
.y1d1{bottom:497.574000pt;}
.y15c{bottom:499.030000pt;}
.y5a{bottom:499.696667pt;}
.y19a{bottom:504.171467pt;}
.y119{bottom:507.008667pt;}
.y178{bottom:510.890933pt;}
.y1d0{bottom:510.902000pt;}
.ya0{bottom:511.832400pt;}
.yd2{bottom:513.006000pt;}
.y46{bottom:514.212267pt;}
.y15b{bottom:516.363333pt;}
.y59{bottom:517.030000pt;}
.y199{bottom:518.675467pt;}
.y177{bottom:523.159600pt;}
.y118{bottom:524.342000pt;}
.y1cf{bottom:529.035333pt;}
.y9f{bottom:529.165733pt;}
.yd1{bottom:530.339333pt;}
.y15a{bottom:533.696667pt;}
.y176{bottom:535.428267pt;}
.y25{bottom:538.719933pt;}
.y1ce{bottom:542.363333pt;}
.y9e{bottom:546.499067pt;}
.yd0{bottom:547.672667pt;}
.y117{bottom:547.675333pt;}
.y175{bottom:547.696933pt;}
.y159{bottom:551.030000pt;}
.y198{bottom:554.446800pt;}
.y1cd{bottom:555.691333pt;}
.y174{bottom:559.965600pt;}
.ycf{bottom:565.006000pt;}
.y116{bottom:565.008667pt;}
.y158{bottom:568.363333pt;}
.y1cc{bottom:569.019333pt;}
.y197{bottom:569.112133pt;}
.y9d{bottom:577.179067pt;}
.y45{bottom:581.945600pt;}
.yce{bottom:582.339333pt;}
.y115{bottom:582.342000pt;}
.y1cb{bottom:582.347333pt;}
.y196{bottom:583.777467pt;}
.y157{bottom:585.696667pt;}
.yfd{bottom:591.350267pt;}
.y9c{bottom:594.512400pt;}
.y1ca{bottom:595.675333pt;}
.y195{bottom:598.442800pt;}
.y44{bottom:598.745600pt;}
.y82{bottom:599.235333pt;}
.ycd{bottom:599.672667pt;}
.y114{bottom:599.675333pt;}
.y156{bottom:603.030000pt;}
.yfc{bottom:603.618933pt;}
.y1c9{bottom:609.003333pt;}
.y9b{bottom:611.845733pt;}
.y194{bottom:613.108133pt;}
.y81{bottom:615.235333pt;}
.y43{bottom:615.545600pt;}
.ycc{bottom:617.006000pt;}
.y113{bottom:617.008667pt;}
.y155{bottom:620.363333pt;}
.y1c8{bottom:627.136667pt;}
.y24{bottom:627.651533pt;}
.y193{bottom:627.773467pt;}
.y9a{bottom:629.179067pt;}
.y80{bottom:631.235333pt;}
.ycb{bottom:634.339333pt;}
.y112{bottom:634.342000pt;}
.y154{bottom:637.696667pt;}
.y1c7{bottom:640.464667pt;}
.y192{bottom:642.438800pt;}
.y42{bottom:644.345600pt;}
.y99{bottom:646.512400pt;}
.yca{bottom:651.672667pt;}
.y111{bottom:651.675333pt;}
.y1c6{bottom:653.792667pt;}
.y153{bottom:655.030000pt;}
.y191{bottom:657.104133pt;}
.y41{bottom:661.145600pt;}
.y148{bottom:663.635333pt;}
.y98{bottom:663.845733pt;}
.y1c5{bottom:667.120667pt;}
.yc9{bottom:669.006000pt;}
.y110{bottom:669.008667pt;}
.y190{bottom:671.769467pt;}
.y152{bottom:672.363333pt;}
.y7f{bottom:674.115333pt;}
.y40{bottom:677.945600pt;}
.y1c4{bottom:680.448667pt;}
.y97{bottom:681.179067pt;}
.y147{bottom:682.302000pt;}
.yde{bottom:686.339333pt;}
.y18f{bottom:686.434800pt;}
.y151{bottom:689.696667pt;}
.y7e{bottom:690.115333pt;}
.y1c3{bottom:693.776667pt;}
.y96{bottom:698.512400pt;}
.y10f{bottom:699.683333pt;}
.yc8{bottom:699.686000pt;}
.y18e{bottom:701.100133pt;}
.y146{bottom:703.102000pt;}
.ydd{bottom:703.672667pt;}
.y7d{bottom:706.115333pt;}
.y3f{bottom:706.745600pt;}
.y150{bottom:707.030000pt;}
.y1c2{bottom:707.104667pt;}
.y18d{bottom:715.765467pt;}
.y95{bottom:715.845733pt;}
.y10e{bottom:717.016667pt;}
.yc7{bottom:717.019333pt;}
.y1c1{bottom:720.432667pt;}
.y145{bottom:720.435333pt;}
.y3e{bottom:723.545600pt;}
.y14f{bottom:724.363333pt;}
.y18c{bottom:730.430800pt;}
.y1c0{bottom:733.760667pt;}
.y10d{bottom:734.350000pt;}
.yc6{bottom:734.352667pt;}
.y144{bottom:739.102000pt;}
.y3d{bottom:740.345600pt;}
.y14e{bottom:741.696667pt;}
.y18b{bottom:745.096133pt;}
.y94{bottom:746.525733pt;}
.y1bf{bottom:747.088667pt;}
.y7c{bottom:748.995333pt;}
.y10c{bottom:751.683333pt;}
.yc5{bottom:751.686000pt;}
.y3c{bottom:757.145600pt;}
.y18a{bottom:759.761467pt;}
.y143{bottom:759.902000pt;}
.y93{bottom:763.859067pt;}
.y7b{bottom:764.995333pt;}
.y14d{bottom:765.030000pt;}
.y10b{bottom:769.016667pt;}
.yc4{bottom:769.019333pt;}
.y189{bottom:774.426800pt;}
.y142{bottom:777.235333pt;}
.y7a{bottom:780.995333pt;}
.y92{bottom:781.192400pt;}
.y14c{bottom:782.363333pt;}
.y3b{bottom:785.945600pt;}
.y10a{bottom:786.350000pt;}
.yc3{bottom:786.352667pt;}
.y188{bottom:789.092133pt;}
.y141{bottom:795.902000pt;}
.y91{bottom:798.525733pt;}
.y14b{bottom:799.696667pt;}
.y3a{bottom:802.745600pt;}
.y109{bottom:803.683333pt;}
.yc2{bottom:803.686000pt;}
.y87{bottom:809.663867pt;}
.y187{bottom:813.356800pt;}
.y90{bottom:815.859067pt;}
.y140{bottom:816.702000pt;}
.y14a{bottom:817.030000pt;}
.y39{bottom:819.545600pt;}
.y1be{bottom:821.016667pt;}
.yc1{bottom:821.019333pt;}
.y186{bottom:828.022133pt;}
.y79{bottom:829.635333pt;}
.y8f{bottom:833.192400pt;}
.y108{bottom:834.363333pt;}
.y13f{bottom:835.368667pt;}
.y1bd{bottom:838.350000pt;}
.yc0{bottom:838.352667pt;}
.y185{bottom:842.687467pt;}
.y38{bottom:846.905733pt;}
.y8e{bottom:850.525733pt;}
.y107{bottom:851.696667pt;}
.ydc{bottom:855.686000pt;}
.ybf{bottom:855.687867pt;}
.y184{bottom:857.352800pt;}
.y21{bottom:860.539547pt;}
.y22{bottom:860.562907pt;}
.y23{bottom:860.569173pt;}
.y13e{bottom:860.968667pt;}
.y8d{bottom:867.859067pt;}
.y106{bottom:869.030000pt;}
.y183{bottom:872.018133pt;}
.y86{bottom:872.554533pt;}
.ybe{bottom:873.019333pt;}
.y13d{bottom:878.302000pt;}
.y8c{bottom:885.192400pt;}
.y105{bottom:886.363333pt;}
.y182{bottom:886.683467pt;}
.y20{bottom:888.032640pt;}
.y1f{bottom:888.033040pt;}
.y1e{bottom:888.037760pt;}
.y1d{bottom:888.038333pt;}
.y1c{bottom:888.039147pt;}
.y1b{bottom:888.039547pt;}
.y1a{bottom:888.043133pt;}
.y19{bottom:888.043533pt;}
.y18{bottom:888.047440pt;}
.y17{bottom:888.047853pt;}
.y16{bottom:888.049800pt;}
.y15{bottom:888.050133pt;}
.y14{bottom:888.051267pt;}
.ydb{bottom:890.352667pt;}
.y78{bottom:894.878000pt;}
.y13c{bottom:895.635333pt;}
.y181{bottom:901.348800pt;}
.ybd{bottom:903.685733pt;}
.y104{bottom:903.696667pt;}
.yda{bottom:907.686000pt;}
.y8b{bottom:908.525733pt;}
.y13{bottom:915.564293pt;}
.y180{bottom:916.014133pt;}
.y55{bottom:918.310267pt;}
.ybc{bottom:921.019067pt;}
.y103{bottom:921.030000pt;}
.yd9{bottom:925.019333pt;}
.y8a{bottom:925.859067pt;}
.y13b{bottom:926.408667pt;}
.y17f{bottom:930.679467pt;}
.ybb{bottom:938.352400pt;}
.y102{bottom:938.363333pt;}
.y17e{bottom:945.344800pt;}
.y77{bottom:946.862000pt;}
.yba{bottom:955.685733pt;}
.yd8{bottom:955.696667pt;}
.y56{bottom:956.000000pt;}
.y89{bottom:956.536400pt;}
.y17d{bottom:960.010133pt;}
.yb9{bottom:973.019067pt;}
.yd7{bottom:973.030000pt;}
.y88{bottom:973.869733pt;}
.y17c{bottom:974.675467pt;}
.y12{bottom:976.247067pt;}
.y11{bottom:976.251867pt;}
.y10{bottom:976.266200pt;}
.yf{bottom:976.270920pt;}
.ye{bottom:976.329747pt;}
.yd{bottom:976.335040pt;}
.yc{bottom:976.344560pt;}
.yb{bottom:981.552080pt;}
.ya{bottom:981.556800pt;}
.y9{bottom:981.585373pt;}
.y8{bottom:981.595787pt;}
.y7{bottom:981.691893pt;}
.y6{bottom:981.698573pt;}
.y5{bottom:981.865973pt;}
.y4{bottom:981.885013pt;}
.y3{bottom:982.034347pt;}
.y2{bottom:982.051427pt;}
.y1{bottom:982.102867pt;}
.h2e{height:26.979167pt;}
.h30{height:27.161458pt;}
.h2f{height:29.111979pt;}
.h27{height:29.937760pt;}
.h33{height:32.760417pt;}
.h31{height:32.915365pt;}
.h32{height:32.981771pt;}
.h2d{height:35.350260pt;}
.h2c{height:37.604167pt;}
.h1e{height:38.541667pt;}
.h2b{height:38.986667pt;}
.h20{height:39.200000pt;}
.h24{height:39.606933pt;}
.h1f{height:41.588542pt;}
.h29{height:41.946967pt;}
.h23{height:45.625900pt;}
.h10{height:50.428108pt;}
.h6{height:52.949511pt;}
.h7{height:60.513727pt;}
.h5{height:65.556538pt;}
.h1d{height:67.728000pt;}
.h8{height:68.077943pt;}
.hc{height:68.077946pt;}
.ha{height:70.599351pt;}
.h1a{height:73.120754pt;}
.h18{height:73.120762pt;}
.h2a{height:74.592000pt;}
.hb{height:78.163567pt;}
.h1{height:80.684969pt;}
.h19{height:80.684979pt;}
.h1b{height:83.206380pt;}
.hd{height:85.727789pt;}
.h28{height:86.240000pt;}
.h26{height:86.944000pt;}
.hf{height:88.249189pt;}
.h1c{height:90.770590pt;}
.he{height:93.291999pt;}
.h4{height:105.899016pt;}
.h17{height:123.548859pt;}
.h2{height:128.591670pt;}
.h13{height:128.591679pt;}
.h3{height:131.113075pt;}
.h14{height:133.634490pt;}
.h15{height:136.155885pt;}
.h16{height:138.677291pt;}
.h25{height:148.960000pt;}
.h22{height:174.800000pt;}
.h11{height:199.191036pt;}
.h21{height:218.500000pt;}
.h12{height:247.097732pt;}
.h9{height:274.833208pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:45.980933pt;}
.x4c{left:48.000000pt;}
.x4f{left:72.000000pt;}
.x4e{left:76.634267pt;}
.x37{left:77.882267pt;}
.x22{left:100.364329pt;}
.x23{left:101.419169pt;}
.x38{left:120.000000pt;}
.x32{left:132.000000pt;}
.x43{left:144.169067pt;}
.x24{left:149.167541pt;}
.x36{left:151.722667pt;}
.x27{left:156.178945pt;}
.x33{left:160.000000pt;}
.x44{left:208.009067pt;}
.x3c{left:210.144667pt;}
.x3d{left:215.714933pt;}
.x28{left:218.871419pt;}
.x3b{left:226.712667pt;}
.x29{left:230.412960pt;}
.x42{left:235.862400pt;}
.x41{left:236.982400pt;}
.x34{left:242.511467pt;}
.x45{left:263.622400pt;}
.x57{left:276.000000pt;}
.x25{left:286.707907pt;}
.x50{left:289.536000pt;}
.x26{left:298.231267pt;}
.x40{left:306.155733pt;}
.x31{left:307.467467pt;}
.x52{left:311.040000pt;}
.x54{left:316.800000pt;}
.x55{left:332.800000pt;}
.x1{left:354.697027pt;}
.x14{left:357.938320pt;}
.x13{left:359.430413pt;}
.x15{left:378.410240pt;}
.x16{left:384.807773pt;}
.x3f{left:386.115733pt;}
.x3e{left:387.089067pt;}
.x2{left:389.238693pt;}
.x3{left:400.754147pt;}
.x17{left:419.354253pt;}
.x18{left:427.031253pt;}
.x39{left:456.000000pt;}
.x53{left:457.902933pt;}
.x56{left:458.940800pt;}
.x48{left:468.155733pt;}
.x3a{left:480.000000pt;}
.x4b{left:484.649067pt;}
.x19{left:498.043533pt;}
.x4{left:501.194667pt;}
.x51{left:502.666667pt;}
.x1a{left:505.080733pt;}
.x5{left:513.989587pt;}
.x47{left:532.742400pt;}
.x46{left:537.022400pt;}
.x49{left:542.662400pt;}
.x4a{left:564.275733pt;}
.x2a{left:567.818760pt;}
.x1b{left:569.695560pt;}
.x1c{left:576.732987pt;}
.x1d{left:592.086747pt;}
.x1e{left:602.322760pt;}
.x2b{left:613.245040pt;}
.x2f{left:617.051600pt;}
.x2c{left:619.642493pt;}
.x6{left:626.585373pt;}
.x7{left:631.064533pt;}
.x35{left:633.276000pt;}
.xc{left:634.938480pt;}
.xd{left:646.454027pt;}
.xe{left:652.851560pt;}
.x2d{left:658.010493pt;}
.x30{left:664.362547pt;}
.x2e{left:666.327227pt;}
.x1f{left:686.769613pt;}
.x20{left:694.446613pt;}
.x8{left:695.679040pt;}
.x9{left:702.721107pt;}
.xa{left:721.908773pt;}
.xf{left:723.863613pt;}
.xb{left:725.107507pt;}
.x10{left:729.621413pt;}
.x21{left:736.682867pt;}
.x11{left:746.893067pt;}
.x12{left:752.650800pt;}
}




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