
    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_0249dc10e70fa59e713c25ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_dc5cb5be9e32b9e56fcdcf1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_85375e6a4618de5643a50ecd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_9d067447eb6f86004cbc4096.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_4c6ae6c4507a36dbfc124c20.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_62aedbe2261bef1188664696.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_99e4b88c6f5213e9be7eb6da.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_461ff43f621581dccad3e29d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.125488;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_f303e6f7e3e51d3c0baf13ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747559;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_8fd4bfc78c1c939237ae62fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_b4e9f0676bc8d1aefa10fc73.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3c0b4d02e73b0bf91a3f72d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_5160858310bace9342c700a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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_5f975938b87f3aeb56ec6c08.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893066;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_f5c5cbe2461ab67fe2496620.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_7231d4ee11a40c7b250c36eb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;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_4d4289b1d3f84edc835e3b7c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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;}
.m19{transform:matrix(0.160078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160078,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.183302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183302,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.185017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185017,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.187187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187187,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.190042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190042,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.227427,0.000000,-0.075801,0.238231,0,0);-ms-transform:matrix(0.227427,0.000000,-0.075801,0.238231,0,0);-webkit-transform:matrix(0.227427,0.000000,-0.075801,0.238231,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m10{transform:matrix(0.238662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238662,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.239841,0.000000,-0.079939,0.236875,0,0);-ms-transform:matrix(0.239841,0.000000,-0.079939,0.236875,0,0);-webkit-transform:matrix(0.239841,0.000000,-0.079939,0.236875,0,0);}
.mc{transform:matrix(0.243569,0.000000,-0.081181,0.236452,0,0);-ms-transform:matrix(0.243569,0.000000,-0.081181,0.236452,0,0);-webkit-transform:matrix(0.243569,0.000000,-0.081181,0.236452,0,0);}
.m20{transform:matrix(0.244390,0.000000,-0.081455,0.236358,0,0);-ms-transform:matrix(0.244390,0.000000,-0.081455,0.236358,0,0);-webkit-transform:matrix(0.244390,0.000000,-0.081455,0.236358,0,0);}
.m4{transform:matrix(0.247776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247776,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248029,0.000000,-0.082668,0.235936,0,0);-ms-transform:matrix(0.248029,0.000000,-0.082668,0.235936,0,0);-webkit-transform:matrix(0.248029,0.000000,-0.082668,0.235936,0,0);}
.me{transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252624,0.000000,-0.084199,0.235394,0,0);-ms-transform:matrix(0.252624,0.000000,-0.084199,0.235394,0,0);-webkit-transform:matrix(0.252624,0.000000,-0.084199,0.235394,0,0);}
.m1c{transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253361,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254506,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.256687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256687,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.257072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257072,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.257524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257524,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.258496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258496,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.262814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262814,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265976,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.266849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-64.119212px;}
.v4{vertical-align:-60.095174px;}
.v3{vertical-align:-58.739867px;}
.v8{vertical-align:-48.332938px;}
.vb{vertical-align:-33.120000px;}
.v6{vertical-align:-23.049713px;}
.v7{vertical-align:-16.342093px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.360000px;}
.v9{vertical-align:33.120000px;}
.va{vertical-align:42.480000px;}
.ls3d{letter-spacing:-0.990000px;}
.ls8{letter-spacing:-0.936000px;}
.ls2b{letter-spacing:-0.900000px;}
.ls42{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.672000px;}
.ls34{letter-spacing:-0.660567px;}
.ls17{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.269400px;}
.ls21{letter-spacing:-0.256554px;}
.ls4{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.186473px;}
.ls40{letter-spacing:-0.181200px;}
.ls1{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.045360px;}
.ls6{letter-spacing:0.045600px;}
.ls7{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.072000px;}
.ls46{letter-spacing:0.108000px;}
.ls2d{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.223920px;}
.ls3{letter-spacing:0.256200px;}
.ls3c{letter-spacing:0.269280px;}
.ls48{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.289440px;}
.ls30{letter-spacing:0.324000px;}
.ls20{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.396000px;}
.ls4b{letter-spacing:0.432000px;}
.ls2a{letter-spacing:0.450600px;}
.ls39{letter-spacing:0.504000px;}
.ls44{letter-spacing:0.576000px;}
.ls2c{letter-spacing:0.720000px;}
.lse{letter-spacing:0.768000px;}
.ls2f{letter-spacing:0.900000px;}
.ls41{letter-spacing:1.008000px;}
.ls3f{letter-spacing:1.440000px;}
.lsb{letter-spacing:2.160000px;}
.ls47{letter-spacing:3.744000px;}
.ls10{letter-spacing:4.440000px;}
.ls12{letter-spacing:6.480000px;}
.ls43{letter-spacing:8.640000px;}
.ls3b{letter-spacing:10.080000px;}
.ls2e{letter-spacing:14.688404px;}
.ls38{letter-spacing:20.413127px;}
.ls18{letter-spacing:53.854377px;}
.ls45{letter-spacing:54.864000px;}
.ls13{letter-spacing:56.656625px;}
.ls28{letter-spacing:66.579139px;}
.ls49{letter-spacing:72.144000px;}
.ls27{letter-spacing:78.374170px;}
.ls1e{letter-spacing:85.548143px;}
.ls25{letter-spacing:95.488866px;}
.ls29{letter-spacing:98.770043px;}
.ls31{letter-spacing:101.068012px;}
.ls19{letter-spacing:104.160222px;}
.ls32{letter-spacing:105.972965px;}
.ls1b{letter-spacing:108.447108px;}
.ls14{letter-spacing:109.606079px;}
.ls1f{letter-spacing:113.393558px;}
.ls26{letter-spacing:113.998793px;}
.ls24{letter-spacing:117.499131px;}
.ls23{letter-spacing:131.645793px;}
.ls22{letter-spacing:138.050292px;}
.ls4a{letter-spacing:176.520000px;}
.ls1a{letter-spacing:181.496405px;}
.ls1d{letter-spacing:238.262010px;}
.ls35{letter-spacing:805.015191px;}
.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;}
}
.ws2a{word-spacing:-135.783107px;}
.ws2f{word-spacing:-125.030803px;}
.ws13{word-spacing:-72.000000px;}
.ws61{word-spacing:-41.665754px;}
.wsc{word-spacing:-39.528000px;}
.ws64{word-spacing:-36.000000px;}
.ws1c{word-spacing:-22.647194px;}
.ws21{word-spacing:-21.219833px;}
.ws60{word-spacing:-19.440000px;}
.ws3a{word-spacing:-18.720000px;}
.ws44{word-spacing:-18.504000px;}
.ws65{word-spacing:-18.432000px;}
.ws63{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.784000px;}
.ws5e{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.640000px;}
.ws1{word-spacing:-17.568000px;}
.ws11{word-spacing:-17.424000px;}
.ws16{word-spacing:-17.187309px;}
.ws8{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.500000px;}
.ws4{word-spacing:-15.226440px;}
.wse{word-spacing:-12.828000px;}
.ws38{word-spacing:-12.510600px;}
.ws12{word-spacing:-12.349440px;}
.ws41{word-spacing:-12.241200px;}
.ws6{word-spacing:-12.105600px;}
.ws10{word-spacing:-12.105360px;}
.ws7{word-spacing:-12.060000px;}
.ws62{word-spacing:-11.878800px;}
.wsd{word-spacing:-11.790600px;}
.wsf{word-spacing:-11.700000px;}
.ws42{word-spacing:-11.388000px;}
.ws39{word-spacing:-11.160000px;}
.ws5f{word-spacing:-11.070000px;}
.ws26{word-spacing:-10.277126px;}
.ws45{word-spacing:-9.944558px;}
.ws3{word-spacing:0.000000px;}
.ws43{word-spacing:6.227292px;}
.ws3d{word-spacing:12.147659px;}
.ws40{word-spacing:12.701235px;}
.ws4d{word-spacing:13.778962px;}
.ws57{word-spacing:14.148306px;}
.ws58{word-spacing:15.163357px;}
.ws3b{word-spacing:16.632949px;}
.ws4e{word-spacing:17.075266px;}
.ws3f{word-spacing:17.883923px;}
.ws52{word-spacing:21.345089px;}
.ws5c{word-spacing:21.848490px;}
.ws17{word-spacing:21.999756px;}
.ws55{word-spacing:22.294639px;}
.ws4b{word-spacing:28.028514px;}
.ws48{word-spacing:32.943849px;}
.ws49{word-spacing:34.462303px;}
.ws2e{word-spacing:38.151085px;}
.ws31{word-spacing:45.098762px;}
.ws2d{word-spacing:45.766222px;}
.ws32{word-spacing:45.909657px;}
.ws37{word-spacing:48.745070px;}
.ws22{word-spacing:48.976966px;}
.ws4f{word-spacing:52.101702px;}
.ws30{word-spacing:52.879620px;}
.ws29{word-spacing:55.515278px;}
.ws23{word-spacing:59.620790px;}
.ws3c{word-spacing:60.748117px;}
.ws47{word-spacing:60.876660px;}
.ws28{word-spacing:60.983179px;}
.ws1a{word-spacing:62.333176px;}
.ws59{word-spacing:64.794234px;}
.ws36{word-spacing:65.520525px;}
.ws1f{word-spacing:68.927642px;}
.ws19{word-spacing:74.707303px;}
.ws3e{word-spacing:81.295873px;}
.ws27{word-spacing:85.754523px;}
.ws50{word-spacing:86.910405px;}
.ws34{word-spacing:91.292450px;}
.ws5a{word-spacing:91.386952px;}
.ws24{word-spacing:91.574580px;}
.ws1e{word-spacing:93.630841px;}
.ws2b{word-spacing:96.012527px;}
.ws35{word-spacing:96.355323px;}
.ws18{word-spacing:98.048621px;}
.ws46{word-spacing:102.301833px;}
.ws25{word-spacing:103.029977px;}
.ws4c{word-spacing:107.463604px;}
.ws56{word-spacing:109.805880px;}
.ws1d{word-spacing:110.731261px;}
.ws15{word-spacing:125.374468px;}
.ws5d{word-spacing:144.675820px;}
.ws53{word-spacing:148.000820px;}
.ws5b{word-spacing:154.316701px;}
.ws51{word-spacing:157.289317px;}
.ws1b{word-spacing:170.337871px;}
.ws2c{word-spacing:198.534377px;}
.ws4a{word-spacing:209.570729px;}
.ws54{word-spacing:214.045842px;}
.ws20{word-spacing:224.295622px;}
.ws33{word-spacing:369.463429px;}
._32{margin-left:-3119.760000px;}
._2e{margin-left:-3118.560000px;}
._36{margin-left:-3117.024000px;}
._37{margin-left:-3115.992000px;}
._e8{margin-left:-3105.648000px;}
._79{margin-left:-3101.250480px;}
._d5{margin-left:-3094.632000px;}
._11{margin-left:-3086.328000px;}
._c{margin-left:-3084.984000px;}
._13{margin-left:-3083.544000px;}
._20{margin-left:-3067.800000px;}
._a{margin-left:-3051.383976px;}
._5{margin-left:-3050.352000px;}
._106{margin-left:-3016.795338px;}
._121{margin-left:-3007.286677px;}
._10c{margin-left:-2997.859338px;}
._f9{margin-left:-2992.680000px;}
._e9{margin-left:-2989.656000px;}
._102{margin-left:-2988.000000px;}
._ba{margin-left:-2986.992000px;}
._109{margin-left:-2981.232000px;}
._e1{margin-left:-2976.984000px;}
._11d{margin-left:-2965.536000px;}
._29{margin-left:-2918.664000px;}
._124{margin-left:-2913.048000px;}
._33{margin-left:-2908.944000px;}
._e7{margin-left:-2902.896000px;}
._48{margin-left:-2846.141280px;}
._101{margin-left:-2844.672000px;}
._117{margin-left:-2806.128000px;}
._c9{margin-left:-2784.122640px;}
._114{margin-left:-2778.552000px;}
._26{margin-left:-2693.592000px;}
._119{margin-left:-2678.760000px;}
._f8{margin-left:-2673.504000px;}
._d{margin-left:-2671.272000px;}
._38{margin-left:-2668.320000px;}
._120{margin-left:-2655.499338px;}
._b7{margin-left:-2631.699018px;}
._de{margin-left:-2627.784000px;}
._cd{margin-left:-2593.112778px;}
._103{margin-left:-2589.264000px;}
._43{margin-left:-2586.239280px;}
._24{margin-left:-2548.656000px;}
._116{margin-left:-2521.224000px;}
._122{margin-left:-2510.568000px;}
._41{margin-left:-2509.128000px;}
._c8{margin-left:-2505.384000px;}
._d4{margin-left:-2490.048000px;}
._c4{margin-left:-2449.674720px;}
._111{margin-left:-2445.120000px;}
._40{margin-left:-2397.312000px;}
._a0{margin-left:-2343.852000px;}
._f{margin-left:-2342.736000px;}
._7a{margin-left:-2324.382240px;}
._23{margin-left:-2318.184000px;}
._35{margin-left:-2310.912000px;}
._11c{margin-left:-2307.384000px;}
._46{margin-left:-2293.704000px;}
._104{margin-left:-2287.800000px;}
._49{margin-left:-2271.024000px;}
._d9{margin-left:-2264.616000px;}
._e4{margin-left:-2234.736000px;}
._8f{margin-left:-2229.220117px;}
._42{margin-left:-2224.584000px;}
._2f{margin-left:-2206.800000px;}
._2a{margin-left:-2192.112000px;}
._16{margin-left:-2187.000000px;}
._c3{margin-left:-2182.968000px;}
._105{margin-left:-2143.512000px;}
._21{margin-left:-2122.776000px;}
._11b{margin-left:-2105.208000px;}
._b8{margin-left:-2099.988960px;}
._ff{margin-left:-2075.616000px;}
._ea{margin-left:-2073.240000px;}
._22{margin-left:-2055.888000px;}
._e2{margin-left:-2025.936000px;}
._f3{margin-left:-1995.264000px;}
._115{margin-left:-1977.264000px;}
._bf{margin-left:-1968.192000px;}
._da{margin-left:-1951.488000px;}
._118{margin-left:-1949.904000px;}
._125{margin-left:-1947.384000px;}
._bc{margin-left:-1942.056000px;}
._f7{margin-left:-1883.232000px;}
._47{margin-left:-1855.080000px;}
._fe{margin-left:-1845.576000px;}
._c1{margin-left:-1829.277360px;}
._11e{margin-left:-1821.240000px;}
._3a{margin-left:-1814.544000px;}
._f5{margin-left:-1813.176000px;}
._110{margin-left:-1803.528000px;}
._ee{margin-left:-1771.195338px;}
._fb{margin-left:-1757.376000px;}
._f1{margin-left:-1745.424000px;}
._3f{margin-left:-1735.632000px;}
._107{margin-left:-1721.232000px;}
._cf{margin-left:-1717.554960px;}
._ed{margin-left:-1713.096000px;}
._ec{margin-left:-1695.744000px;}
._f4{margin-left:-1689.696000px;}
._f6{margin-left:-1681.560000px;}
._108{margin-left:-1675.584000px;}
._be{margin-left:-1651.104000px;}
._cc{margin-left:-1635.906960px;}
._c5{margin-left:-1617.021360px;}
._c7{margin-left:-1606.536000px;}
._d6{margin-left:-1563.336000px;}
._e6{margin-left:-1517.328000px;}
._3d{margin-left:-1502.220000px;}
._b6{margin-left:-1492.092000px;}
._98{margin-left:-1444.928982px;}
._113{margin-left:-1435.536000px;}
._10b{margin-left:-1431.648000px;}
._bd{margin-left:-1416.141360px;}
._b9{margin-left:-1364.591520px;}
._9c{margin-left:-1363.229730px;}
._b5{margin-left:-1359.864000px;}
._1a{margin-left:-1347.624000px;}
._c0{margin-left:-1345.104000px;}
._1d{margin-left:-1311.408000px;}
._7b{margin-left:-1280.932560px;}
._3e{margin-left:-1189.152000px;}
._45{margin-left:-1184.616000px;}
._10d{margin-left:-1179.360000px;}
._10e{margin-left:-1153.656000px;}
._44{margin-left:-1141.266240px;}
._3b{margin-left:-1137.168000px;}
._c2{margin-left:-1097.549280px;}
._85{margin-left:-1093.110292px;}
._dc{margin-left:-1075.608000px;}
._d8{margin-left:-1043.496000px;}
._11f{margin-left:-1003.680000px;}
._27{margin-left:-997.632000px;}
._8e{margin-left:-954.214214px;}
._d2{margin-left:-949.289040px;}
._e0{margin-left:-945.648000px;}
._e5{margin-left:-933.696000px;}
._39{margin-left:-873.432000px;}
._b4{margin-left:-862.200000px;}
._123{margin-left:-849.672000px;}
._f2{margin-left:-845.712000px;}
._10{margin-left:-823.680000px;}
._ce{margin-left:-822.561120px;}
._11a{margin-left:-817.632000px;}
._d3{margin-left:-787.536000px;}
._112{margin-left:-783.648000px;}
._a1{margin-left:-777.384000px;}
._df{margin-left:-711.576000px;}
._1e{margin-left:-705.600000px;}
._ca{margin-left:-700.737120px;}
._2d{margin-left:-697.608000px;}
._73{margin-left:-627.877125px;}
._c6{margin-left:-597.528000px;}
._d7{margin-left:-587.664000px;}
._bb{margin-left:-500.544000px;}
._d0{margin-left:-491.472000px;}
._77{margin-left:-474.979579px;}
._d1{margin-left:-473.112000px;}
._92{margin-left:-470.448000px;}
._cb{margin-left:-455.472000px;}
._1f{margin-left:-427.608000px;}
._e3{margin-left:-425.664000px;}
._db{margin-left:-405.432000px;}
._91{margin-left:-391.416234px;}
._7c{margin-left:-363.456000px;}
._12{margin-left:-349.632000px;}
._6f{margin-left:-311.661439px;}
._4a{margin-left:-237.659797px;}
._57{margin-left:-236.085314px;}
._34{margin-left:-227.520000px;}
._126{margin-left:-224.490240px;}
._66{margin-left:-223.371846px;}
._4e{margin-left:-197.928170px;}
._25{margin-left:-193.680000px;}
._72{margin-left:-189.196144px;}
._6c{margin-left:-31.321289px;}
._a4{margin-left:-5.179031px;}
._8b{margin-left:-2.596662px;}
._0{margin-left:-1.512000px;}
._1{width:1.224000px;}
._2{width:2.400000px;}
._6{width:3.816000px;}
._7{width:4.896000px;}
._15{width:6.120000px;}
._3{width:8.040000px;}
._4{width:9.168000px;}
._8{width:10.848000px;}
._9{width:12.311976px;}
._b{width:14.004048px;}
._19{width:15.203856px;}
._14{width:16.992000px;}
._dd{width:18.000000px;}
._2b{width:19.008000px;}
._2c{width:20.016000px;}
._17{width:21.960000px;}
._18{width:23.040000px;}
._28{width:24.264000px;}
._1c{width:25.488000px;}
._1b{width:27.288000px;}
._e{width:28.776000px;}
._30{width:30.456000px;}
._31{width:31.764000px;}
._8a{width:32.775026px;}
._ef{width:34.560000px;}
._f0{width:36.276000px;}
._10a{width:37.344000px;}
._3c{width:39.036000px;}
._84{width:40.316967px;}
._4c{width:46.199487px;}
._fc{width:48.456000px;}
._fd{width:49.608000px;}
._9b{width:54.658522px;}
._100{width:60.528000px;}
._9a{width:61.658053px;}
._a6{width:65.313814px;}
._eb{width:67.310186px;}
._5a{width:70.005619px;}
._52{width:71.490288px;}
._8d{width:73.214591px;}
._89{width:74.309525px;}
._4f{width:76.845000px;}
._4b{width:78.099132px;}
._54{width:81.168576px;}
._53{width:82.329971px;}
._fa{width:83.606029px;}
._82{width:85.220501px;}
._6e{width:86.647035px;}
._76{width:89.858684px;}
._69{width:92.135624px;}
._68{width:93.568175px;}
._71{width:95.461846px;}
._7f{width:99.291997px;}
._6d{width:100.546821px;}
._af{width:101.665446px;}
._4d{width:102.802907px;}
._78{width:104.502830px;}
._9f{width:105.698406px;}
._70{width:106.967918px;}
._50{width:109.139450px;}
._58{width:110.230287px;}
._6b{width:111.361961px;}
._5e{width:115.071598px;}
._5d{width:116.592129px;}
._75{width:118.115699px;}
._62{width:121.466817px;}
._55{width:123.944917px;}
._ac{width:128.993233px;}
._b3{width:131.591767px;}
._90{width:133.512086px;}
._5b{width:136.970389px;}
._88{width:139.721907px;}
._83{width:143.653857px;}
._8c{width:144.677288px;}
._5f{width:146.793708px;}
._a2{width:149.466144px;}
._80{width:152.230175px;}
._7d{width:155.739220px;}
._a7{width:167.949808px;}
._56{width:171.715430px;}
._a5{width:175.138004px;}
._9e{width:176.734838px;}
._87{width:177.744297px;}
._5c{width:183.492136px;}
._86{width:184.930830px;}
._7e{width:186.637881px;}
._74{width:188.998869px;}
._67{width:201.657093px;}
._9d{width:203.794643px;}
._97{width:207.890165px;}
._10f{width:210.600000px;}
._6a{width:212.846863px;}
._61{width:215.526090px;}
._51{width:232.343436px;}
._60{width:238.948182px;}
._63{width:250.511244px;}
._aa{width:261.379546px;}
._a3{width:263.018507px;}
._ae{width:266.292648px;}
._a8{width:268.373024px;}
._b0{width:270.774153px;}
._64{width:275.142420px;}
._96{width:284.740738px;}
._a9{width:286.836169px;}
._59{width:289.739968px;}
._65{width:290.763682px;}
._b1{width:292.669606px;}
._95{width:311.758817px;}
._ab{width:314.701660px;}
._b2{width:318.179646px;}
._ad{width:336.132799px;}
._94{width:457.585201px;}
._81{width:600.211551px;}
._99{width:979.214662px;}
._93{width:1126.000011px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs27{font-size:35.988221px;}
.fs31{font-size:36.879624px;}
.fs8{font-size:37.451727px;}
.fs18{font-size:37.512915px;}
.fs35{font-size:37.533062px;}
.fsa{font-size:37.595401px;}
.fs2e{font-size:38.215104px;}
.fsf{font-size:38.528587px;}
.fs13{font-size:40.013953px;}
.fs21{font-size:40.146891px;}
.fs6{font-size:40.180001px;}
.fs24{font-size:40.181536px;}
.fs15{font-size:41.108503px;}
.fsd{font-size:41.164038px;}
.fs2b{font-size:41.607363px;}
.fs29{font-size:42.156467px;}
.fs1a{font-size:42.722333px;}
.fs1c{font-size:43.981918px;}
.fs1f{font-size:44.128039px;}
.fs3{font-size:48.240000px;}
.fs38{font-size:60.000000px;}
.fs32{font-size:61.513225px;}
.fs26{font-size:62.295688px;}
.fs36{font-size:62.603124px;}
.fs9{font-size:64.291999px;}
.fs17{font-size:64.328248px;}
.fsb{font-size:64.521921px;}
.fs33{font-size:64.921628px;}
.fs2{font-size:66.000000px;}
.fs2f{font-size:66.019738px;}
.fs10{font-size:66.105400px;}
.fs37{font-size:66.216459px;}
.fs1{font-size:66.240000px;}
.fsc{font-size:68.525376px;}
.fs12{font-size:68.595191px;}
.fs22{font-size:68.727031px;}
.fs7{font-size:68.749236px;}
.fs25{font-size:68.751862px;}
.fs2a{font-size:69.192131px;}
.fs11{font-size:70.045796px;}
.fs16{font-size:70.531890px;}
.fse{font-size:70.664786px;}
.fs0{font-size:72.000000px;}
.fs14{font-size:72.525474px;}
.fs28{font-size:72.995604px;}
.fs1b{font-size:73.135902px;}
.fs1d{font-size:75.397401px;}
.fs20{font-size:75.542315px;}
.fs4{font-size:75.893905px;}
.fs1e{font-size:79.122062px;}
.fs2c{font-size:83.056315px;}
.fs30{font-size:83.523539px;}
.fs34{font-size:85.003420px;}
.fs5{font-size:90.797725px;}
.fs23{font-size:90.801193px;}
.fs19{font-size:96.550969px;}
.fs2d{font-size:104.235386px;}
.y0{bottom:0.000000px;}
.ya3{bottom:3.766020px;}
.yba{bottom:4.149111px;}
.y93{bottom:4.182346px;}
.y8d{bottom:4.217055px;}
.y185{bottom:4.320000px;}
.y8c{bottom:4.348867px;}
.ya9{bottom:4.415278px;}
.ydc{bottom:4.450645px;}
.y99{bottom:4.499433px;}
.y17b{bottom:4.500000px;}
.yb5{bottom:4.560556px;}
.yaf{bottom:4.597086px;}
.y98{bottom:4.640072px;}
.y85{bottom:4.802099px;}
.y84{bottom:4.926052px;}
.y184{bottom:5.220000px;}
.y7c{bottom:5.244333px;}
.yc0{bottom:5.244533px;}
.yd4{bottom:5.391515px;}
.y1b9{bottom:5.400000px;}
.ye9{bottom:5.447472px;}
.yfa{bottom:5.459660px;}
.y80{bottom:5.553319px;}
.y104{bottom:5.556395px;}
.y1b4{bottom:5.940000px;}
.y89{bottom:6.103778px;}
.yf1{bottom:7.107169px;}
.y1b6{bottom:7.380000px;}
.ya4{bottom:7.886017px;}
.y7b{bottom:8.404032px;}
.ybf{bottom:8.404353px;}
.ybb{bottom:8.563824px;}
.y92{bottom:8.597059px;}
.y8e{bottom:8.598909px;}
.y86{bottom:9.077497px;}
.yaa{bottom:9.113198px;}
.ydb{bottom:9.148564px;}
.y9a{bottom:9.174701px;}
.yef{bottom:9.311593px;}
.yb6{bottom:9.413052px;}
.yd3{bottom:9.419736px;}
.yb0{bottom:9.449582px;}
.yfc{bottom:9.463260px;}
.y106{bottom:9.630932px;}
.y81{bottom:9.670474px;}
.y7d{bottom:9.674381px;}
.yc1{bottom:9.674750px;}
.ye8{bottom:9.922100px;}
.y8a{bottom:10.629036px;}
.yf2{bottom:11.351703px;}
.ya2{bottom:16.319111px;}
.yf0{bottom:18.755236px;}
.ya1{bottom:20.439507px;}
.yac{bottom:20.700000px;}
.yb2{bottom:20.925000px;}
.yfd{bottom:21.546495px;}
.y107{bottom:21.928258px;}
.y8f{bottom:23.622703px;}
.y87{bottom:23.762464px;}
.y66{bottom:24.120000px;}
.y3{bottom:24.840000px;}
.y5{bottom:25.200000px;}
.y9b{bottom:25.204504px;}
.y55{bottom:25.245000px;}
.yd9{bottom:25.380000px;}
.yd8{bottom:25.560000px;}
.y65{bottom:26.460000px;}
.ye4{bottom:26.640000px;}
.yd6{bottom:27.360000px;}
.y96{bottom:27.750000px;}
.ybd{bottom:27.900000px;}
.yad{bottom:28.440000px;}
.y82{bottom:28.980000px;}
.yb3{bottom:29.025000px;}
.yeb{bottom:29.340000px;}
.yb8{bottom:29.700000px;}
.yf9{bottom:29.737115px;}
.y9d{bottom:29.880000px;}
.y95{bottom:29.910000px;}
.yc3{bottom:30.240000px;}
.y103{bottom:30.264001px;}
.ya0{bottom:30.578025px;}
.y7f{bottom:31.320000px;}
.yf8{bottom:32.465815px;}
.y90{bottom:32.940000px;}
.y102{bottom:33.041049px;}
.y9e{bottom:33.480000px;}
.yfb{bottom:33.703670px;}
.ya6{bottom:34.200000px;}
.y105{bottom:34.300835px;}
.ya7{bottom:37.800000px;}
.y100{bottom:40.365000px;}
.y10a{bottom:40.500000px;}
.y109{bottom:41.760000px;}
.yff{bottom:41.805000px;}
.y2{bottom:66.270000px;}
.ya{bottom:66.600000px;}
.y1e{bottom:66.645000px;}
.y50{bottom:95.580000px;}
.yd7{bottom:96.120000px;}
.y88{bottom:98.100000px;}
.y142{bottom:98.640000px;}
.y14{bottom:100.620000px;}
.ye{bottom:108.030000px;}
.y9{bottom:108.045000px;}
.y110{bottom:109.980000px;}
.y1a6{bottom:114.156000px;}
.y5c{bottom:114.480000px;}
.y166{bottom:116.100000px;}
.y14e{bottom:118.440000px;}
.y83{bottom:119.040000px;}
.y8b{bottom:120.540000px;}
.y63{bottom:121.140000px;}
.y1ee{bottom:122.976000px;}
.y150{bottom:126.540000px;}
.y1d5{bottom:129.636000px;}
.y1a5{bottom:131.796000px;}
.y1d9{bottom:134.856000px;}
.y1e8{bottom:136.836000px;}
.y4f{bottom:136.980000px;}
.yd5{bottom:137.880000px;}
.y1d4{bottom:145.836000px;}
.yd{bottom:149.430000px;}
.y8{bottom:149.445000px;}
.y1d8{bottom:151.230000px;}
.y10f{bottom:152.640000px;}
.y1a4{bottom:153.930000px;}
.y7e{bottom:154.980000px;}
.y5b{bottom:155.880000px;}
.y165{bottom:157.500000px;}
.y1e7{bottom:157.530000px;}
.yd2{bottom:158.865000px;}
.y12f{bottom:159.840000px;}
.y62{bottom:162.540000px;}
.y1ed{bottom:164.370000px;}
.y2e{bottom:164.880000px;}
.y45{bottom:167.940000px;}
.y1e3{bottom:168.870000px;}
.y1df{bottom:169.410000px;}
.y1e6{bottom:173.910000px;}
.y7a{bottom:175.965000px;}
.y1a3{bottom:176.250000px;}
.y4e{bottom:178.380000px;}
.y1e2{bottom:185.070000px;}
.y1de{bottom:185.790000px;}
.y16{bottom:190.830000px;}
.y7{bottom:190.845000px;}
.y10e{bottom:195.480000px;}
.y5a{bottom:197.280000px;}
.y1a2{bottom:198.390000px;}
.y164{bottom:198.540000px;}
.y12e{bottom:201.240000px;}
.y1ec{bottom:201.270000px;}
.y11a{bottom:203.580000px;}
.y61{bottom:203.940000px;}
.y2d{bottom:206.310000px;}
.yd1{bottom:208.830000px;}
.y44{bottom:209.370000px;}
.y4d{bottom:219.810000px;}
.y1a1{bottom:220.530000px;}
.y141{bottom:222.870000px;}
.y1eb{bottom:225.210000px;}
.y79{bottom:229.170000px;}
.y15{bottom:232.230000px;}
.y1d{bottom:232.245000px;}
.y10d{bottom:236.910000px;}
.y59{bottom:238.710000px;}
.y163{bottom:240.330000px;}
.y12d{bottom:242.670000px;}
.y60{bottom:245.370000px;}
.y2c{bottom:247.710000px;}
.yd0{bottom:250.230000px;}
.y43{bottom:250.770000px;}
.y4c{bottom:261.210000px;}
.y1a0{bottom:264.990000px;}
.y1ea{bottom:266.610000px;}
.y1c{bottom:273.645000px;}
.y10c{bottom:278.310000px;}
.y58{bottom:280.110000px;}
.y162{bottom:281.730000px;}
.y12c{bottom:283.710000px;}
.y14d{bottom:284.070000px;}
.y5f{bottom:286.770000px;}
.y19f{bottom:287.130000px;}
.y2b{bottom:288.750000px;}
.y140{bottom:289.470000px;}
.ycf{bottom:291.630000px;}
.y42{bottom:292.170000px;}
.y4b{bottom:302.610000px;}
.y1e9{bottom:303.690000px;}
.y1f1{bottom:304.590000px;}
.y1ca{bottom:307.470000px;}
.y19e{bottom:309.315000px;}
.y78{bottom:311.970000px;}
.y1b{bottom:315.075000px;}
.y10b{bottom:319.710000px;}
.y176{bottom:321.510000px;}
.y161{bottom:323.130000px;}
.y12b{bottom:325.470000px;}
.y119{bottom:328.170000px;}
.y1c9{bottom:328.215000px;}
.y5e{bottom:329.430000px;}
.y2a{bottom:330.510000px;}
.y13f{bottom:330.870000px;}
.yce{bottom:333.030000px;}
.y57{bottom:333.210000px;}
.y41{bottom:333.570000px;}
.y108{bottom:335.910000px;}
.y19d{bottom:337.395000px;}
.y4a{bottom:344.010000px;}
.y1f0{bottom:345.855000px;}
.y1c8{bottom:346.035000px;}
.y13{bottom:349.770000px;}
.y77{bottom:353.370000px;}
.y101{bottom:356.640000px;}
.y19c{bottom:358.095000px;}
.y1ef{bottom:362.235000px;}
.y175{bottom:362.910000px;}
.y160{bottom:364.530000px;}
.y14c{bottom:366.510000px;}
.y12a{bottom:366.870000px;}
.y1c7{bottom:368.175000px;}
.y118{bottom:369.570000px;}
.y29{bottom:371.910000px;}
.y13e{bottom:372.270000px;}
.y5d{bottom:373.530000px;}
.ycd{bottom:374.430000px;}
.y40{bottom:374.970000px;}
.y19b{bottom:378.795000px;}
.y1d3{bottom:384.375000px;}
.y49{bottom:385.410000px;}
.y1c6{bottom:390.315000px;}
.y56{bottom:391.170000px;}
.y76{bottom:394.770000px;}
.y19a{bottom:399.495000px;}
.y1d2{bottom:400.575000px;}
.y174{bottom:404.310000px;}
.y15f{bottom:405.930000px;}
.yfe{bottom:408.090000px;}
.y129{bottom:408.270000px;}
.y75{bottom:410.970000px;}
.y1c5{bottom:412.635000px;}
.y28{bottom:413.310000px;}
.y13d{bottom:413.670000px;}
.ycc{bottom:415.830000px;}
.y12{bottom:416.370000px;}
.y199{bottom:417.855000px;}
.y48{bottom:426.810000px;}
.yf7{bottom:428.865000px;}
.y54{bottom:432.570000px;}
.y1c4{bottom:434.775000px;}
.y198{bottom:438.015000px;}
.y1f5{bottom:440.535000px;}
.y173{bottom:445.755000px;}
.y15e{bottom:447.375000px;}
.y128{bottom:449.715000px;}
.y117{bottom:452.415000px;}
.y27{bottom:454.755000px;}
.y13c{bottom:455.115000px;}
.y1c3{bottom:456.915000px;}
.ycb{bottom:457.275000px;}
.y11{bottom:457.815000px;}
.y197{bottom:460.155000px;}
.y47{bottom:461.235000px;}
.y1ce{bottom:464.835000px;}
.y127{bottom:465.915000px;}
.y10{bottom:474.015000px;}
.y1c2{bottom:479.235000px;}
.y74{bottom:480.315000px;}
.y1cd{bottom:481.035000px;}
.y1f4{bottom:481.935000px;}
.y196{bottom:482.295000px;}
.y172{bottom:487.155000px;}
.y15d{bottom:488.775000px;}
.y14b{bottom:491.115000px;}
.y116{bottom:493.815000px;}
.y26{bottom:496.155000px;}
.y73{bottom:496.515000px;}
.yca{bottom:498.675000px;}
.y3f{bottom:499.215000px;}
.y46{bottom:500.475000px;}
.y1c1{bottom:501.375000px;}
.y195{bottom:504.615000px;}
.yf6{bottom:504.795000px;}
.y53{bottom:515.415000px;}
.y1f3{bottom:523.335000px;}
.y194{bottom:526.755000px;}
.y171{bottom:528.555000px;}
.y1c0{bottom:529.455000px;}
.y15c{bottom:529.995000px;}
.y14a{bottom:532.515000px;}
.y115{bottom:535.215000px;}
.y25{bottom:537.555000px;}
.y13b{bottom:537.915000px;}
.y1f2{bottom:539.535000px;}
.yc9{bottom:539.895000px;}
.y3e{bottom:540.615000px;}
.yf5{bottom:546.195000px;}
.y178{bottom:548.175000px;}
.y126{bottom:548.715000px;}
.y193{bottom:548.895000px;}
.y1bf{bottom:550.155000px;}
.yf{bottom:556.815000px;}
.y72{bottom:565.815000px;}
.y170{bottom:569.955000px;}
.y1be{bottom:570.885000px;}
.y192{bottom:571.245000px;}
.y149{bottom:573.915000px;}
.y15b{bottom:574.095000px;}
.y114{bottom:577.875000px;}
.y24{bottom:578.955000px;}
.y13a{bottom:579.315000px;}
.yc8{bottom:581.295000px;}
.y3d{bottom:582.015000px;}
.y177{bottom:582.735000px;}
.y1bd{bottom:587.445000px;}
.yf4{bottom:587.595000px;}
.y125{bottom:590.115000px;}
.y191{bottom:593.385000px;}
.yc{bottom:598.215000px;}
.yf3{bottom:603.795000px;}
.y1bc{bottom:610.305000px;}
.y16f{bottom:611.355000px;}
.y148{bottom:615.315000px;}
.y190{bottom:615.525000px;}
.y15a{bottom:616.755000px;}
.y23{bottom:620.355000px;}
.y113{bottom:620.715000px;}
.yc7{bottom:622.695000px;}
.y3c{bottom:623.415000px;}
.y1e1{bottom:624.525000px;}
.yee{bottom:624.690000px;}
.y1dd{bottom:631.365000px;}
.y124{bottom:631.515000px;}
.y1bb{bottom:633.165000px;}
.y1d1{bottom:639.105000px;}
.y1e0{bottom:640.725000px;}
.y18f{bottom:643.605000px;}
.y1e5{bottom:647.385000px;}
.y1dc{bottom:647.565000px;}
.y71{bottom:651.315000px;}
.y16e{bottom:652.755000px;}
.y1ba{bottom:656.025000px;}
.y147{bottom:656.715000px;}
.y159{bottom:659.595000px;}
.y1d0{bottom:659.805000px;}
.y22{bottom:661.755000px;}
.y139{bottom:662.115000px;}
.y112{bottom:663.375000px;}
.y1e4{bottom:663.765000px;}
.yc6{bottom:664.095000px;}
.y18e{bottom:664.305000px;}
.y3b{bottom:664.815000px;}
.y1cf{bottom:676.185000px;}
.y1b8{bottom:678.885000px;}
.yed{bottom:680.325000px;}
.y18d{bottom:681.945000px;}
.y70{bottom:692.745000px;}
.y16d{bottom:694.185000px;}
.y123{bottom:698.145000px;}
.y158{bottom:701.025000px;}
.y1b7{bottom:701.745000px;}
.y21{bottom:703.185000px;}
.y18c{bottom:704.265000px;}
.yc5{bottom:705.525000px;}
.y111{bottom:705.885000px;}
.y3a{bottom:706.245000px;}
.yec{bottom:721.725000px;}
.y1b5{bottom:725.865000px;}
.y18b{bottom:726.405000px;}
.y6f{bottom:735.405000px;}
.y16c{bottom:735.585000px;}
.y122{bottom:739.545000px;}
.y146{bottom:740.805000px;}
.y157{bottom:742.245000px;}
.y20{bottom:744.585000px;}
.y138{bottom:744.945000px;}
.yc4{bottom:746.925000px;}
.y14f{bottom:747.285000px;}
.y39{bottom:747.645000px;}
.y18a{bottom:748.545000px;}
.y1b3{bottom:749.805000px;}
.y137{bottom:761.145000px;}
.yc2{bottom:763.125000px;}
.yb{bottom:763.845000px;}
.y189{bottom:770.865000px;}
.y1cc{bottom:776.805000px;}
.y16b{bottom:776.985000px;}
.y6e{bottom:777.165000px;}
.y1b2{bottom:778.245000px;}
.yea{bottom:779.325000px;}
.y6d{bottom:779.505000px;}
.y121{bottom:780.945000px;}
.y145{bottom:784.905000px;}
.y156{bottom:785.085000px;}
.y1f{bottom:785.985000px;}
.ybe{bottom:786.840000px;}
.y38{bottom:789.045000px;}
.y188{bottom:793.005000px;}
.y1cb{bottom:793.185000px;}
.y6c{bottom:797.145000px;}
.y1b1{bottom:798.945000px;}
.ye7{bottom:800.040000px;}
.y6{bottom:805.245000px;}
.ybc{bottom:814.425000px;}
.y187{bottom:815.190000px;}
.y1d7{bottom:816.090000px;}
.y16a{bottom:818.385000px;}
.y1b0{bottom:819.690000px;}
.y120{bottom:822.345000px;}
.y155{bottom:826.485000px;}
.y144{bottom:827.745000px;}
.ye6{bottom:829.005000px;}
.y37{bottom:830.445000px;}
.y1d6{bottom:832.470000px;}
.yb9{bottom:835.290000px;}
.y186{bottom:837.510000px;}
.y1a{bottom:845.745000px;}
.y183{bottom:859.650000px;}
.y169{bottom:859.785000px;}
.yb7{bottom:861.045000px;}
.y11f{bottom:863.745000px;}
.y6b{bottom:866.445000px;}
.y154{bottom:867.705000px;}
.y136{bottom:869.145000px;}
.y36{bottom:871.845000px;}
.ye5{bottom:873.105000px;}
.y1db{bottom:876.930000px;}
.yb4{bottom:881.715000px;}
.y1af{bottom:881.790000px;}
.y182{bottom:887.730000px;}
.y1da{bottom:893.310000px;}
.y168{bottom:900.825000px;}
.y1ae{bottom:904.110000px;}
.y11e{bottom:905.145000px;}
.y6a{bottom:907.845000px;}
.y181{bottom:908.430000px;}
.yb1{bottom:909.825000px;}
.y135{bottom:910.545000px;}
.y143{bottom:911.850000px;}
.y35{bottom:913.290000px;}
.ye3{bottom:917.250000px;}
.y180{bottom:926.070000px;}
.y1ad{bottom:926.250000px;}
.yae{bottom:930.690000px;}
.y167{bottom:942.630000px;}
.y11d{bottom:946.410000px;}
.y17f{bottom:948.210000px;}
.y1ac{bottom:948.390000px;}
.y69{bottom:949.290000px;}
.y134{bottom:951.990000px;}
.y34{bottom:954.690000px;}
.yab{bottom:958.830000px;}
.y11c{bottom:962.610000px;}
.y17e{bottom:970.530000px;}
.y1ab{bottom:970.710000px;}
.ya8{bottom:979.440000px;}
.ye2{bottom:986.550000px;}
.y68{bottom:989.610000px;}
.y67{bottom:991.950000px;}
.y17d{bottom:992.670000px;}
.y1aa{bottom:992.850000px;}
.y153{bottom:993.210000px;}
.y133{bottom:993.390000px;}
.y33{bottom:996.090000px;}
.ya5{bottom:1006.890000px;}
.y64{bottom:1009.590000px;}
.y4{bottom:1012.290000px;}
.y17c{bottom:1014.810000px;}
.y1a9{bottom:1014.990000px;}
.ye1{bottom:1026.870000px;}
.y9f{bottom:1027.515000px;}
.ye0{bottom:1029.210000px;}
.y132{bottom:1034.790000px;}
.y152{bottom:1036.050000px;}
.y17a{bottom:1037.130000px;}
.y32{bottom:1037.490000px;}
.y1a8{bottom:1043.070000px;}
.y11b{bottom:1050.990000px;}
.y179{bottom:1063.800000px;}
.ydf{bottom:1072.050000px;}
.y9c{bottom:1073.490000px;}
.y131{bottom:1076.190000px;}
.y151{bottom:1077.450000px;}
.y31{bottom:1078.890000px;}
.y97{bottom:1094.340000px;}
.y1{bottom:1095.090000px;}
.yde{bottom:1113.450000px;}
.y130{bottom:1118.850000px;}
.y52{bottom:1119.930000px;}
.y30{bottom:1120.290000px;}
.ydd{bottom:1129.650000px;}
.y94{bottom:1131.270000px;}
.yda{bottom:1150.440000px;}
.y91{bottom:1152.090000px;}
.y51{bottom:1161.360000px;}
.y2f{bottom:1161.720000px;}
.y1a7{bottom:1170.000000px;}
.y19{bottom:1199.846250px;}
.y18{bottom:1219.647000px;}
.y17{bottom:1239.447000px;}
.h86{height:20.520000px;}
.h80{height:20.700000px;}
.h82{height:20.736000px;}
.h81{height:21.960000px;}
.h83{height:22.140000px;}
.h8a{height:22.500000px;}
.h88{height:23.580000px;}
.h89{height:23.760000px;}
.h55{height:24.735000px;}
.h1a{height:25.724459px;}
.h2b{height:25.725257px;}
.h3d{height:27.375544px;}
.h50{height:27.585000px;}
.h15{height:27.975000px;}
.h49{height:28.110000px;}
.h41{height:28.131000px;}
.h23{height:28.274332px;}
.h5f{height:28.948648px;}
.h64{height:30.405000px;}
.h21{height:34.199332px;}
.h26{height:34.440000px;}
.h1d{height:34.574654px;}
.h2a{height:35.048221px;}
.h57{height:35.302898px;}
.h6c{height:36.177327px;}
.h6a{height:36.195334px;}
.h1b{height:36.738535px;}
.h39{height:36.798557px;}
.h75{height:36.818321px;}
.h73{height:36.836648px;}
.h1e{height:36.879473px;}
.h32{height:36.930000px;}
.h35{height:37.395089px;}
.h66{height:37.506034px;}
.h27{height:37.794888px;}
.h2d{height:39.251968px;}
.h4d{height:39.401978px;}
.h17{height:39.434474px;}
.h52{height:39.435980px;}
.h33{height:40.325675px;}
.h24{height:40.380152px;}
.h61{height:40.815035px;}
.h5c{height:41.353683px;}
.h4{height:41.400000px;}
.he{height:41.436000px;}
.h5a{height:41.760000px;}
.h3e{height:41.908773px;}
.h44{height:43.144372px;}
.h42{height:43.165847px;}
.h4a{height:43.309257px;}
.hf{height:44.100000px;}
.h14{height:44.136000px;}
.h7b{height:44.280000px;}
.h59{height:45.720000px;}
.hb{height:45.858398px;}
.h37{height:45.899665px;}
.h4f{height:46.620000px;}
.h31{height:46.656000px;}
.h11{height:47.321367px;}
.h84{height:47.344922px;}
.h40{height:48.060000px;}
.h5e{height:48.276000px;}
.h85{height:48.761719px;}
.h4c{height:48.780000px;}
.h19{height:48.960000px;}
.h48{height:48.996000px;}
.h63{height:49.680000px;}
.h9{height:50.229844px;}
.h7e{height:50.308594px;}
.h68{height:50.721000px;}
.h54{height:51.300000px;}
.h71{height:51.450000px;}
.h6f{height:55.956611px;}
.h22{height:56.880000px;}
.h78{height:56.948057px;}
.h36{height:57.780000px;}
.h6e{height:59.057126px;}
.h77{height:60.234992px;}
.h6d{height:60.341831px;}
.h6b{height:60.371866px;}
.h58{height:61.109393px;}
.h56{height:61.139811px;}
.h76{height:61.410975px;}
.h74{height:61.441543px;}
.h20{height:62.335339px;}
.h30{height:62.398848px;}
.h87{height:62.578125px;}
.h1c{height:63.067689px;}
.h3a{height:63.103247px;}
.h38{height:63.134658px;}
.h1f{height:63.293232px;}
.h29{height:63.718417px;}
.h67{height:64.762526px;}
.h3b{height:64.779611px;}
.h28{height:64.846557px;}
.h2f{height:65.974101px;}
.h3c{height:66.600000px;}
.h2e{height:67.288935px;}
.h2c{height:67.322429px;}
.h4e{height:67.418264px;}
.h53{height:67.442623px;}
.h18{height:67.473616px;}
.h62{height:67.874507px;}
.h60{height:67.908292px;}
.h47{height:68.586601px;}
.h10{height:69.038254px;}
.h34{height:69.188753px;}
.h25{height:69.319119px;}
.hd{height:70.628906px;}
.h5{height:70.664062px;}
.h70{height:71.496000px;}
.h5d{height:71.605551px;}
.h5b{height:71.641194px;}
.h3f{height:71.743177px;}
.h46{height:71.974805px;}
.h79{height:72.180000px;}
.h3{height:72.562500px;}
.h45{height:73.961611px;}
.h43{height:73.998426px;}
.h7d{height:74.004654px;}
.h4b{height:74.103765px;}
.h69{height:75.978688px;}
.h72{height:77.324888px;}
.h13{height:79.988906px;}
.h12{height:80.024062px;}
.h7a{height:80.464922px;}
.h8b{height:80.644922px;}
.h16{height:82.595782px;}
.h51{height:82.598937px;}
.h8{height:82.800000px;}
.h2{height:82.836000px;}
.h65{height:94.819592px;}
.h7c{height:124.236000px;}
.h7{height:165.630000px;}
.h6{height:207.030000px;}
.ha{height:248.430000px;}
.hc{height:331.275000px;}
.h7f{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:42.840000px;}
.w2e{width:46.296000px;}
.w34{width:53.460000px;}
.w2f{width:54.180000px;}
.w31{width:56.700000px;}
.w3b{width:60.660000px;}
.w30{width:61.560000px;}
.w8{width:63.216000px;}
.w33{width:65.700000px;}
.w3a{width:65.736000px;}
.w35{width:66.600000px;}
.w21{width:67.536000px;}
.w15{width:67.652002px;}
.w24{width:68.976000px;}
.w2a{width:71.460000px;}
.w3e{width:72.180000px;}
.w2b{width:75.780000px;}
.w2c{width:75.816000px;}
.wd{width:76.722216px;}
.w13{width:77.400977px;}
.w32{width:78.336000px;}
.w18{width:79.721253px;}
.w38{width:80.460000px;}
.w37{width:80.676000px;}
.w36{width:81.180000px;}
.w1c{width:84.276000px;}
.w3c{width:84.996000px;}
.wb{width:86.175188px;}
.wa{width:98.676000px;}
.w40{width:103.896000px;}
.w3f{width:104.580000px;}
.w10{width:108.668507px;}
.w2d{width:113.580000px;}
.w39{width:114.660000px;}
.we{width:120.636000px;}
.w17{width:126.521166px;}
.w3{width:132.696000px;}
.wf{width:150.674433px;}
.w1e{width:157.270100px;}
.w16{width:164.323877px;}
.w19{width:179.094019px;}
.w11{width:190.270772px;}
.w3d{width:192.090000px;}
.w14{width:195.830523px;}
.w12{width:204.829451px;}
.w26{width:246.315000px;}
.w27{width:246.450000px;}
.w1d{width:264.440861px;}
.w1a{width:334.263195px;}
.w22{width:354.599237px;}
.w25{width:357.834429px;}
.w6{width:368.895000px;}
.w5{width:370.185000px;}
.w1f{width:392.168910px;}
.w4{width:605.670000px;}
.wc{width:618.450000px;}
.w9{width:640.410000px;}
.w1b{width:654.810000px;}
.w23{width:670.110000px;}
.w20{width:671.550000px;}
.w7{width:675.870000px;}
.w2{width:739.080000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w28{width:918.000000px;}
.x0{left:0.000000px;}
.x58{left:1.923986px;}
.x46{left:3.953391px;}
.x50{left:5.097531px;}
.x16{left:7.740000px;}
.xc{left:10.620000px;}
.xf{left:11.916000px;}
.x56{left:13.146974px;}
.x49{left:14.214543px;}
.x5{left:15.696000px;}
.x8c{left:17.280000px;}
.x5f{left:19.479537px;}
.x2{left:21.456000px;}
.x7{left:22.896000px;}
.x5a{left:24.145232px;}
.x6d{left:25.200000px;}
.x3{left:26.316000px;}
.x9a{left:27.900000px;}
.x9c{left:28.980000px;}
.x17{left:32.434500px;}
.x2f{left:34.200000px;}
.xa1{left:36.180000px;}
.x77{left:38.340000px;}
.x24{left:39.960000px;}
.x1f{left:41.040000px;}
.x8e{left:42.480000px;}
.xa0{left:43.740000px;}
.x4a{left:46.173536px;}
.xe{left:49.500000px;}
.x23{left:50.940000px;}
.x43{left:53.042701px;}
.x54{left:55.571936px;}
.x44{left:58.571238px;}
.x4f{left:60.997560px;}
.x1c{left:65.736000px;}
.x5d{left:67.758561px;}
.xd{left:69.336000px;}
.x4e{left:72.717884px;}
.x5c{left:75.630000px;}
.x1{left:77.040000px;}
.x22{left:81.750000px;}
.x48{left:83.520000px;}
.x10{left:84.990000px;}
.x61{left:86.580000px;}
.x12{left:87.690000px;}
.x1d{left:88.770000px;}
.x18{left:90.750000px;}
.x19{left:91.830000px;}
.x13{left:93.810000px;}
.x1b{left:95.790000px;}
.x1e{left:97.770000px;}
.x11{left:98.850000px;}
.x92{left:99.936000px;}
.x14{left:102.810000px;}
.x1a{left:103.890000px;}
.x74{left:106.481190px;}
.x7b{left:108.592204px;}
.x90{left:111.996000px;}
.x59{left:118.098566px;}
.x5e{left:119.544432px;}
.x71{left:120.966161px;}
.x55{left:122.106870px;}
.x57{left:126.115175px;}
.x34{left:133.416000px;}
.x60{left:134.490000px;}
.x91{left:138.996000px;}
.x93{left:142.776000px;}
.x35{left:144.216000px;}
.x7e{left:148.516639px;}
.x83{left:151.015922px;}
.x7d{left:154.824589px;}
.x7c{left:156.898269px;}
.x4b{left:158.610000px;}
.x7a{left:162.097716px;}
.x8{left:167.610000px;}
.x82{left:168.624780px;}
.x68{left:170.850000px;}
.x3c{left:172.110000px;}
.x45{left:175.740000px;}
.x52{left:178.629841px;}
.x64{left:180.340768px;}
.x69{left:181.650000px;}
.x20{left:184.890000px;}
.x62{left:187.050000px;}
.x25{left:194.295000px;}
.x5b{left:203.835000px;}
.x31{left:205.995000px;}
.x15{left:210.450000px;}
.x53{left:212.835000px;}
.x94{left:214.230000px;}
.x73{left:216.465000px;}
.x9d{left:221.610000px;}
.x26{left:223.095000px;}
.x27{left:227.595000px;}
.x38{left:231.735000px;}
.x81{left:233.040000px;}
.x78{left:234.615000px;}
.x32{left:236.055000px;}
.x63{left:237.165000px;}
.x8a{left:240.735000px;}
.x9b{left:242.310000px;}
.x4c{left:244.740000px;}
.x33{left:246.855000px;}
.x28{left:247.935000px;}
.x29{left:252.435000px;}
.x8b{left:259.635000px;}
.x85{left:266.655000px;}
.x9{left:272.955000px;}
.x4d{left:276.375000px;}
.x6{left:278.355000px;}
.x97{left:279.390000px;}
.x79{left:283.194514px;}
.x6e{left:286.815000px;}
.x86{left:288.435000px;}
.x95{left:290.010000px;}
.x42{left:291.135000px;}
.x99{left:292.935000px;}
.x3f{left:297.255000px;}
.x6f{left:302.475000px;}
.xa{left:309.315000px;}
.x70{left:312.375000px;}
.x6c{left:318.855000px;}
.x2a{left:321.915000px;}
.x8d{left:323.355000px;}
.x4{left:328.215000px;}
.x87{left:330.555000px;}
.x2b{left:332.715000px;}
.xb{left:335.235000px;}
.x9e{left:353.055000px;}
.x40{left:354.855000px;}
.x98{left:357.735000px;}
.x2c{left:358.815000px;}
.x2d{left:363.315000px;}
.x41{left:364.785000px;}
.x88{left:366.405000px;}
.x39{left:371.985000px;}
.x3a{left:382.605000px;}
.x89{left:388.185000px;}
.x9f{left:413.715000px;}
.x72{left:416.445000px;}
.x3d{left:425.085000px;}
.x3e{left:435.885000px;}
.x21{left:447.225000px;}
.x67{left:459.465000px;}
.xa3{left:461.235000px;}
.x51{left:475.665000px;}
.x96{left:479.415000px;}
.x65{left:494.385000px;}
.x7f{left:512.205000px;}
.x84{left:513.825000px;}
.x6a{left:523.005000px;}
.x75{left:531.645000px;}
.x6b{left:532.905000px;}
.x8f{left:569.805000px;}
.x36{left:643.830000px;}
.x37{left:653.730000px;}
.x47{left:695.490000px;}
.x3b{left:717.450000px;}
.xa4{left:720.150000px;}
.x66{left:731.850000px;}
.xab{left:734.550000px;}
.xa5{left:745.890000px;}
.x80{left:747.150000px;}
.x76{left:748.590000px;}
.xa2{left:751.650000px;}
.x2e{left:752.910000px;}
.xa9{left:756.150000px;}
.x30{left:764.430000px;}
.xa8{left:771.990000px;}
.xaa{left:779.190000px;}
.xa6{left:785.310000px;}
.xac{left:792.150000px;}
.xa7{left:810.150000px;}
@media print{
.v5{vertical-align:-56.994855pt;}
.v4{vertical-align:-53.417932pt;}
.v3{vertical-align:-52.213215pt;}
.v8{vertical-align:-42.962612pt;}
.vb{vertical-align:-29.440000pt;}
.v6{vertical-align:-20.488633pt;}
.v7{vertical-align:-14.526305pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.320000pt;}
.v9{vertical-align:29.440000pt;}
.va{vertical-align:37.760000pt;}
.ls3d{letter-spacing:-0.880000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls2b{letter-spacing:-0.800000pt;}
.ls42{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.597333pt;}
.ls34{letter-spacing:-0.587171pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.239467pt;}
.ls21{letter-spacing:-0.228048pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.165754pt;}
.ls40{letter-spacing:-0.161067pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.040320pt;}
.ls6{letter-spacing:0.040533pt;}
.ls7{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.064000pt;}
.ls46{letter-spacing:0.096000pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.199040pt;}
.ls3{letter-spacing:0.227733pt;}
.ls3c{letter-spacing:0.239360pt;}
.ls48{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.257280pt;}
.ls30{letter-spacing:0.288000pt;}
.ls20{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.352000pt;}
.ls4b{letter-spacing:0.384000pt;}
.ls2a{letter-spacing:0.400533pt;}
.ls39{letter-spacing:0.448000pt;}
.ls44{letter-spacing:0.512000pt;}
.ls2c{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.682667pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls41{letter-spacing:0.896000pt;}
.ls3f{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.920000pt;}
.ls47{letter-spacing:3.328000pt;}
.ls10{letter-spacing:3.946667pt;}
.ls12{letter-spacing:5.760000pt;}
.ls43{letter-spacing:7.680000pt;}
.ls3b{letter-spacing:8.960000pt;}
.ls2e{letter-spacing:13.056359pt;}
.ls38{letter-spacing:18.145002pt;}
.ls18{letter-spacing:47.870557pt;}
.ls45{letter-spacing:48.768000pt;}
.ls13{letter-spacing:50.361444pt;}
.ls28{letter-spacing:59.181457pt;}
.ls49{letter-spacing:64.128000pt;}
.ls27{letter-spacing:69.665929pt;}
.ls1e{letter-spacing:76.042794pt;}
.ls25{letter-spacing:84.878992pt;}
.ls29{letter-spacing:87.795594pt;}
.ls31{letter-spacing:89.838233pt;}
.ls19{letter-spacing:92.586864pt;}
.ls32{letter-spacing:94.198191pt;}
.ls1b{letter-spacing:96.397430pt;}
.ls14{letter-spacing:97.427626pt;}
.ls1f{letter-spacing:100.794274pt;}
.ls26{letter-spacing:101.332261pt;}
.ls24{letter-spacing:104.443672pt;}
.ls23{letter-spacing:117.018482pt;}
.ls22{letter-spacing:122.711371pt;}
.ls4a{letter-spacing:156.906667pt;}
.ls1a{letter-spacing:161.330138pt;}
.ls1d{letter-spacing:211.788454pt;}
.ls35{letter-spacing:715.569059pt;}
.ws2a{word-spacing:-120.696095pt;}
.ws2f{word-spacing:-111.138491pt;}
.ws13{word-spacing:-64.000000pt;}
.ws61{word-spacing:-37.036226pt;}
.wsc{word-spacing:-35.136000pt;}
.ws64{word-spacing:-32.000000pt;}
.ws1c{word-spacing:-20.130839pt;}
.ws21{word-spacing:-18.862074pt;}
.ws60{word-spacing:-17.280000pt;}
.ws3a{word-spacing:-16.640000pt;}
.ws44{word-spacing:-16.448000pt;}
.ws65{word-spacing:-16.384000pt;}
.ws63{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws5e{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.680000pt;}
.ws1{word-spacing:-15.616000pt;}
.ws11{word-spacing:-15.488000pt;}
.ws16{word-spacing:-15.277608pt;}
.ws8{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws4{word-spacing:-13.534613pt;}
.wse{word-spacing:-11.402667pt;}
.ws38{word-spacing:-11.120533pt;}
.ws12{word-spacing:-10.977280pt;}
.ws41{word-spacing:-10.881067pt;}
.ws6{word-spacing:-10.760533pt;}
.ws10{word-spacing:-10.760320pt;}
.ws7{word-spacing:-10.720000pt;}
.ws62{word-spacing:-10.558933pt;}
.wsd{word-spacing:-10.480533pt;}
.wsf{word-spacing:-10.400000pt;}
.ws42{word-spacing:-10.122667pt;}
.ws39{word-spacing:-9.920000pt;}
.ws5f{word-spacing:-9.840000pt;}
.ws26{word-spacing:-9.135223pt;}
.ws45{word-spacing:-8.839607pt;}
.ws3{word-spacing:0.000000pt;}
.ws43{word-spacing:5.535370pt;}
.ws3d{word-spacing:10.797919pt;}
.ws40{word-spacing:11.289987pt;}
.ws4d{word-spacing:12.247967pt;}
.ws57{word-spacing:12.576272pt;}
.ws58{word-spacing:13.478540pt;}
.ws3b{word-spacing:14.784843pt;}
.ws4e{word-spacing:15.178014pt;}
.ws3f{word-spacing:15.896821pt;}
.ws52{word-spacing:18.973413pt;}
.ws5c{word-spacing:19.420880pt;}
.ws17{word-spacing:19.555338pt;}
.ws55{word-spacing:19.817457pt;}
.ws4b{word-spacing:24.914235pt;}
.ws48{word-spacing:29.283421pt;}
.ws49{word-spacing:30.633158pt;}
.ws2e{word-spacing:33.912075pt;}
.ws31{word-spacing:40.087788pt;}
.ws2d{word-spacing:40.681087pt;}
.ws32{word-spacing:40.808584pt;}
.ws37{word-spacing:43.328951pt;}
.ws22{word-spacing:43.535081pt;}
.ws4f{word-spacing:46.312624pt;}
.ws30{word-spacing:47.004107pt;}
.ws29{word-spacing:49.346914pt;}
.ws23{word-spacing:52.996258pt;}
.ws3c{word-spacing:53.998326pt;}
.ws47{word-spacing:54.112587pt;}
.ws28{word-spacing:54.207270pt;}
.ws1a{word-spacing:55.407267pt;}
.ws59{word-spacing:57.594874pt;}
.ws36{word-spacing:58.240466pt;}
.ws1f{word-spacing:61.269015pt;}
.ws19{word-spacing:66.406492pt;}
.ws3e{word-spacing:72.262998pt;}
.ws27{word-spacing:76.226242pt;}
.ws50{word-spacing:77.253693pt;}
.ws34{word-spacing:81.148844pt;}
.ws5a{word-spacing:81.232846pt;}
.ws24{word-spacing:81.399627pt;}
.ws1e{word-spacing:83.227415pt;}
.ws2b{word-spacing:85.344468pt;}
.ws35{word-spacing:85.649176pt;}
.ws18{word-spacing:87.154330pt;}
.ws46{word-spacing:90.934963pt;}
.ws25{word-spacing:91.582202pt;}
.ws4c{word-spacing:95.523204pt;}
.ws56{word-spacing:97.605227pt;}
.ws1d{word-spacing:98.427788pt;}
.ws15{word-spacing:111.443971pt;}
.ws5d{word-spacing:128.600729pt;}
.ws53{word-spacing:131.556284pt;}
.ws5b{word-spacing:137.170401pt;}
.ws51{word-spacing:139.812726pt;}
.ws1b{word-spacing:151.411441pt;}
.ws2c{word-spacing:176.475002pt;}
.ws4a{word-spacing:186.285092pt;}
.ws54{word-spacing:190.262971pt;}
.ws20{word-spacing:199.373886pt;}
.ws33{word-spacing:328.411937pt;}
._32{margin-left:-2773.120000pt;}
._2e{margin-left:-2772.053333pt;}
._36{margin-left:-2770.688000pt;}
._37{margin-left:-2769.770667pt;}
._e8{margin-left:-2760.576000pt;}
._79{margin-left:-2756.667093pt;}
._d5{margin-left:-2750.784000pt;}
._11{margin-left:-2743.402667pt;}
._c{margin-left:-2742.208000pt;}
._13{margin-left:-2740.928000pt;}
._20{margin-left:-2726.933333pt;}
._a{margin-left:-2712.341312pt;}
._5{margin-left:-2711.424000pt;}
._106{margin-left:-2681.595856pt;}
._121{margin-left:-2673.143713pt;}
._10c{margin-left:-2664.763856pt;}
._f9{margin-left:-2660.160000pt;}
._e9{margin-left:-2657.472000pt;}
._102{margin-left:-2656.000000pt;}
._ba{margin-left:-2655.104000pt;}
._109{margin-left:-2649.984000pt;}
._e1{margin-left:-2646.208000pt;}
._11d{margin-left:-2636.032000pt;}
._29{margin-left:-2594.368000pt;}
._124{margin-left:-2589.376000pt;}
._33{margin-left:-2585.728000pt;}
._e7{margin-left:-2580.352000pt;}
._48{margin-left:-2529.903360pt;}
._101{margin-left:-2528.597333pt;}
._117{margin-left:-2494.336000pt;}
._c9{margin-left:-2474.775680pt;}
._114{margin-left:-2469.824000pt;}
._26{margin-left:-2394.304000pt;}
._119{margin-left:-2381.120000pt;}
._f8{margin-left:-2376.448000pt;}
._d{margin-left:-2374.464000pt;}
._38{margin-left:-2371.840000pt;}
._120{margin-left:-2360.443856pt;}
._b7{margin-left:-2339.288016pt;}
._de{margin-left:-2335.808000pt;}
._cd{margin-left:-2304.989136pt;}
._103{margin-left:-2301.568000pt;}
._43{margin-left:-2298.879360pt;}
._24{margin-left:-2265.472000pt;}
._116{margin-left:-2241.088000pt;}
._122{margin-left:-2231.616000pt;}
._41{margin-left:-2230.336000pt;}
._c8{margin-left:-2227.008000pt;}
._d4{margin-left:-2213.376000pt;}
._c4{margin-left:-2177.488640pt;}
._111{margin-left:-2173.440000pt;}
._40{margin-left:-2130.944000pt;}
._a0{margin-left:-2083.424000pt;}
._f{margin-left:-2082.432000pt;}
._7a{margin-left:-2066.117547pt;}
._23{margin-left:-2060.608000pt;}
._35{margin-left:-2054.144000pt;}
._11c{margin-left:-2051.008000pt;}
._46{margin-left:-2038.848000pt;}
._104{margin-left:-2033.600000pt;}
._49{margin-left:-2018.688000pt;}
._d9{margin-left:-2012.992000pt;}
._e4{margin-left:-1986.432000pt;}
._8f{margin-left:-1981.528993pt;}
._42{margin-left:-1977.408000pt;}
._2f{margin-left:-1961.600000pt;}
._2a{margin-left:-1948.544000pt;}
._16{margin-left:-1944.000000pt;}
._c3{margin-left:-1940.416000pt;}
._105{margin-left:-1905.344000pt;}
._21{margin-left:-1886.912000pt;}
._11b{margin-left:-1871.296000pt;}
._b8{margin-left:-1866.656853pt;}
._ff{margin-left:-1844.992000pt;}
._ea{margin-left:-1842.880000pt;}
._22{margin-left:-1827.456000pt;}
._e2{margin-left:-1800.832000pt;}
._f3{margin-left:-1773.568000pt;}
._115{margin-left:-1757.568000pt;}
._bf{margin-left:-1749.504000pt;}
._da{margin-left:-1734.656000pt;}
._118{margin-left:-1733.248000pt;}
._125{margin-left:-1731.008000pt;}
._bc{margin-left:-1726.272000pt;}
._f7{margin-left:-1673.984000pt;}
._47{margin-left:-1648.960000pt;}
._fe{margin-left:-1640.512000pt;}
._c1{margin-left:-1626.024320pt;}
._11e{margin-left:-1618.880000pt;}
._3a{margin-left:-1612.928000pt;}
._f5{margin-left:-1611.712000pt;}
._110{margin-left:-1603.136000pt;}
._ee{margin-left:-1574.395856pt;}
._fb{margin-left:-1562.112000pt;}
._f1{margin-left:-1551.488000pt;}
._3f{margin-left:-1542.784000pt;}
._107{margin-left:-1529.984000pt;}
._cf{margin-left:-1526.715520pt;}
._ed{margin-left:-1522.752000pt;}
._ec{margin-left:-1507.328000pt;}
._f4{margin-left:-1501.952000pt;}
._f6{margin-left:-1494.720000pt;}
._108{margin-left:-1489.408000pt;}
._be{margin-left:-1467.648000pt;}
._cc{margin-left:-1454.139520pt;}
._c5{margin-left:-1437.352320pt;}
._c7{margin-left:-1428.032000pt;}
._d6{margin-left:-1389.632000pt;}
._e6{margin-left:-1348.736000pt;}
._3d{margin-left:-1335.306667pt;}
._b6{margin-left:-1326.304000pt;}
._98{margin-left:-1284.381317pt;}
._113{margin-left:-1276.032000pt;}
._10b{margin-left:-1272.576000pt;}
._bd{margin-left:-1258.792320pt;}
._b9{margin-left:-1212.970240pt;}
._9c{margin-left:-1211.759760pt;}
._b5{margin-left:-1208.768000pt;}
._1a{margin-left:-1197.888000pt;}
._c0{margin-left:-1195.648000pt;}
._1d{margin-left:-1165.696000pt;}
._7b{margin-left:-1138.606720pt;}
._3e{margin-left:-1057.024000pt;}
._45{margin-left:-1052.992000pt;}
._10d{margin-left:-1048.320000pt;}
._10e{margin-left:-1025.472000pt;}
._44{margin-left:-1014.458880pt;}
._3b{margin-left:-1010.816000pt;}
._c2{margin-left:-975.599360pt;}
._85{margin-left:-971.653593pt;}
._dc{margin-left:-956.096000pt;}
._d8{margin-left:-927.552000pt;}
._11f{margin-left:-892.160000pt;}
._27{margin-left:-886.784000pt;}
._8e{margin-left:-848.190413pt;}
._d2{margin-left:-843.812480pt;}
._e0{margin-left:-840.576000pt;}
._e5{margin-left:-829.952000pt;}
._39{margin-left:-776.384000pt;}
._b4{margin-left:-766.400000pt;}
._123{margin-left:-755.264000pt;}
._f2{margin-left:-751.744000pt;}
._10{margin-left:-732.160000pt;}
._ce{margin-left:-731.165440pt;}
._11a{margin-left:-726.784000pt;}
._d3{margin-left:-700.032000pt;}
._112{margin-left:-696.576000pt;}
._a1{margin-left:-691.008000pt;}
._df{margin-left:-632.512000pt;}
._1e{margin-left:-627.200000pt;}
._ca{margin-left:-622.877440pt;}
._2d{margin-left:-620.096000pt;}
._73{margin-left:-558.113000pt;}
._c6{margin-left:-531.136000pt;}
._d7{margin-left:-522.368000pt;}
._bb{margin-left:-444.928000pt;}
._d0{margin-left:-436.864000pt;}
._77{margin-left:-422.204071pt;}
._d1{margin-left:-420.544000pt;}
._92{margin-left:-418.176000pt;}
._cb{margin-left:-404.864000pt;}
._1f{margin-left:-380.096000pt;}
._e3{margin-left:-378.368000pt;}
._db{margin-left:-360.384000pt;}
._91{margin-left:-347.925541pt;}
._7c{margin-left:-323.072000pt;}
._12{margin-left:-310.784000pt;}
._6f{margin-left:-277.032390pt;}
._4a{margin-left:-211.253153pt;}
._57{margin-left:-209.853613pt;}
._34{margin-left:-202.240000pt;}
._126{margin-left:-199.546880pt;}
._66{margin-left:-198.552752pt;}
._4e{margin-left:-175.936151pt;}
._25{margin-left:-172.160000pt;}
._72{margin-left:-168.174350pt;}
._6c{margin-left:-27.841146pt;}
._a4{margin-left:-4.603583pt;}
._8b{margin-left:-2.308144pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.088000pt;}
._2{width:2.133333pt;}
._6{width:3.392000pt;}
._7{width:4.352000pt;}
._15{width:5.440000pt;}
._3{width:7.146667pt;}
._4{width:8.149333pt;}
._8{width:9.642667pt;}
._9{width:10.943979pt;}
._b{width:12.448043pt;}
._19{width:13.514539pt;}
._14{width:15.104000pt;}
._dd{width:16.000000pt;}
._2b{width:16.896000pt;}
._2c{width:17.792000pt;}
._17{width:19.520000pt;}
._18{width:20.480000pt;}
._28{width:21.568000pt;}
._1c{width:22.656000pt;}
._1b{width:24.256000pt;}
._e{width:25.578667pt;}
._30{width:27.072000pt;}
._31{width:28.234667pt;}
._8a{width:29.133357pt;}
._ef{width:30.720000pt;}
._f0{width:32.245333pt;}
._10a{width:33.194667pt;}
._3c{width:34.698667pt;}
._84{width:35.837304pt;}
._4c{width:41.066210pt;}
._fc{width:43.072000pt;}
._fd{width:44.096000pt;}
._9b{width:48.585353pt;}
._100{width:53.802667pt;}
._9a{width:54.807158pt;}
._a6{width:58.056724pt;}
._eb{width:59.831276pt;}
._5a{width:62.227216pt;}
._52{width:63.546923pt;}
._8d{width:65.079637pt;}
._89{width:66.052911pt;}
._4f{width:68.306667pt;}
._4b{width:69.421451pt;}
._54{width:72.149846pt;}
._53{width:73.182196pt;}
._fa{width:74.316470pt;}
._82{width:75.751557pt;}
._6e{width:77.019587pt;}
._76{width:79.874386pt;}
._69{width:81.898332pt;}
._68{width:83.171711pt;}
._71{width:84.854974pt;}
._7f{width:88.259553pt;}
._6d{width:89.374952pt;}
._af{width:90.369286pt;}
._4d{width:91.380361pt;}
._78{width:92.891405pt;}
._9f{width:93.954138pt;}
._70{width:95.082593pt;}
._50{width:97.012845pt;}
._58{width:97.982477pt;}
._6b{width:98.988410pt;}
._5e{width:102.285865pt;}
._5d{width:103.637448pt;}
._75{width:104.991733pt;}
._62{width:107.970504pt;}
._55{width:110.173260pt;}
._ac{width:114.660652pt;}
._b3{width:116.970460pt;}
._90{width:118.677410pt;}
._5b{width:121.751457pt;}
._88{width:124.197251pt;}
._83{width:127.692317pt;}
._8c{width:128.602034pt;}
._5f{width:130.483296pt;}
._a2{width:132.858795pt;}
._80{width:135.315711pt;}
._7d{width:138.434862pt;}
._a7{width:149.288718pt;}
._56{width:152.635938pt;}
._a5{width:155.678226pt;}
._9e{width:157.097634pt;}
._87{width:157.994931pt;}
._5c{width:163.104121pt;}
._86{width:164.382960pt;}
._7e{width:165.900339pt;}
._74{width:167.998995pt;}
._67{width:179.250750pt;}
._9d{width:181.150794pt;}
._97{width:184.791257pt;}
._10f{width:187.200000pt;}
._6a{width:189.197211pt;}
._61{width:191.578746pt;}
._51{width:206.527499pt;}
._60{width:212.398384pt;}
._63{width:222.676661pt;}
._aa{width:232.337374pt;}
._a3{width:233.794228pt;}
._ae{width:236.704576pt;}
._a8{width:238.553799pt;}
._b0{width:240.688136pt;}
._64{width:244.571040pt;}
._96{width:253.102878pt;}
._a9{width:254.965484pt;}
._59{width:257.546638pt;}
._65{width:258.456606pt;}
._b1{width:260.150761pt;}
._95{width:277.118948pt;}
._ab{width:279.734809pt;}
._b2{width:282.826352pt;}
._ad{width:298.784710pt;}
._94{width:406.742401pt;}
._81{width:533.521378pt;}
._99{width:870.413033pt;}
._93{width:1000.888898pt;}
.fs27{font-size:31.989530pt;}
.fs31{font-size:32.781888pt;}
.fs8{font-size:33.290424pt;}
.fs18{font-size:33.344813pt;}
.fs35{font-size:33.362722pt;}
.fsa{font-size:33.418135pt;}
.fs2e{font-size:33.968981pt;}
.fsf{font-size:34.247633pt;}
.fs13{font-size:35.567958pt;}
.fs21{font-size:35.686126pt;}
.fs6{font-size:35.715557pt;}
.fs24{font-size:35.716921pt;}
.fs15{font-size:36.540892pt;}
.fsd{font-size:36.590256pt;}
.fs2b{font-size:36.984323pt;}
.fs29{font-size:37.472415pt;}
.fs1a{font-size:37.975407pt;}
.fs1c{font-size:39.095038pt;}
.fs1f{font-size:39.224924pt;}
.fs3{font-size:42.880000pt;}
.fs38{font-size:53.333333pt;}
.fs32{font-size:54.678422pt;}
.fs26{font-size:55.373945pt;}
.fs36{font-size:55.647222pt;}
.fs9{font-size:57.148444pt;}
.fs17{font-size:57.180665pt;}
.fsb{font-size:57.352818pt;}
.fs33{font-size:57.708114pt;}
.fs2{font-size:58.666667pt;}
.fs2f{font-size:58.684211pt;}
.fs10{font-size:58.760356pt;}
.fs37{font-size:58.859075pt;}
.fs1{font-size:58.880000pt;}
.fsc{font-size:60.911445pt;}
.fs12{font-size:60.973503pt;}
.fs22{font-size:61.090694pt;}
.fs7{font-size:61.110432pt;}
.fs25{font-size:61.112766pt;}
.fs2a{font-size:61.504116pt;}
.fs11{font-size:62.262929pt;}
.fs16{font-size:62.695013pt;}
.fse{font-size:62.813143pt;}
.fs0{font-size:64.000000pt;}
.fs14{font-size:64.467088pt;}
.fs28{font-size:64.884982pt;}
.fs1b{font-size:65.009691pt;}
.fs1d{font-size:67.019912pt;}
.fs20{font-size:67.148724pt;}
.fs4{font-size:67.461249pt;}
.fs1e{font-size:70.330722pt;}
.fs2c{font-size:73.827835pt;}
.fs30{font-size:74.243146pt;}
.fs34{font-size:75.558595pt;}
.fs5{font-size:80.709089pt;}
.fs23{font-size:80.712172pt;}
.fs19{font-size:85.823083pt;}
.fs2d{font-size:92.653677pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:3.347574pt;}
.yba{bottom:3.688099pt;}
.y93{bottom:3.717640pt;}
.y8d{bottom:3.748493pt;}
.y185{bottom:3.840000pt;}
.y8c{bottom:3.865660pt;}
.ya9{bottom:3.924692pt;}
.ydc{bottom:3.956129pt;}
.y99{bottom:3.999496pt;}
.y17b{bottom:4.000000pt;}
.yb5{bottom:4.053827pt;}
.yaf{bottom:4.086299pt;}
.y98{bottom:4.124509pt;}
.y85{bottom:4.268533pt;}
.y84{bottom:4.378713pt;}
.y184{bottom:4.640000pt;}
.y7c{bottom:4.661629pt;}
.yc0{bottom:4.661807pt;}
.yd4{bottom:4.792458pt;}
.y1b9{bottom:4.800000pt;}
.ye9{bottom:4.842197pt;}
.yfa{bottom:4.853031pt;}
.y80{bottom:4.936284pt;}
.y104{bottom:4.939018pt;}
.y1b4{bottom:5.280000pt;}
.y89{bottom:5.425581pt;}
.yf1{bottom:6.317483pt;}
.y1b6{bottom:6.560000pt;}
.ya4{bottom:7.009793pt;}
.y7b{bottom:7.470251pt;}
.ybf{bottom:7.470536pt;}
.ybb{bottom:7.612288pt;}
.y92{bottom:7.641830pt;}
.y8e{bottom:7.643475pt;}
.y86{bottom:8.068886pt;}
.yaa{bottom:8.100620pt;}
.ydb{bottom:8.132057pt;}
.y9a{bottom:8.155290pt;}
.yef{bottom:8.276971pt;}
.yb6{bottom:8.367157pt;}
.yd3{bottom:8.373098pt;}
.yb0{bottom:8.399629pt;}
.yfc{bottom:8.411787pt;}
.y106{bottom:8.560828pt;}
.y81{bottom:8.595977pt;}
.y7d{bottom:8.599450pt;}
.yc1{bottom:8.599778pt;}
.ye8{bottom:8.819644pt;}
.y8a{bottom:9.448032pt;}
.yf2{bottom:10.090403pt;}
.ya2{bottom:14.505877pt;}
.yf0{bottom:16.671321pt;}
.ya1{bottom:18.168451pt;}
.yac{bottom:18.400000pt;}
.yb2{bottom:18.600000pt;}
.yfd{bottom:19.152440pt;}
.y107{bottom:19.491785pt;}
.y8f{bottom:20.997958pt;}
.y87{bottom:21.122190pt;}
.y66{bottom:21.440000pt;}
.y3{bottom:22.080000pt;}
.y5{bottom:22.400000pt;}
.y9b{bottom:22.404004pt;}
.y55{bottom:22.440000pt;}
.yd9{bottom:22.560000pt;}
.yd8{bottom:22.720000pt;}
.y65{bottom:23.520000pt;}
.ye4{bottom:23.680000pt;}
.yd6{bottom:24.320000pt;}
.y96{bottom:24.666667pt;}
.ybd{bottom:24.800000pt;}
.yad{bottom:25.280000pt;}
.y82{bottom:25.760000pt;}
.yb3{bottom:25.800000pt;}
.yeb{bottom:26.080000pt;}
.yb8{bottom:26.400000pt;}
.yf9{bottom:26.432991pt;}
.y9d{bottom:26.560000pt;}
.y95{bottom:26.586667pt;}
.yc3{bottom:26.880000pt;}
.y103{bottom:26.901334pt;}
.ya0{bottom:27.180466pt;}
.y7f{bottom:27.840000pt;}
.yf8{bottom:28.858502pt;}
.y90{bottom:29.280000pt;}
.y102{bottom:29.369821pt;}
.y9e{bottom:29.760000pt;}
.yfb{bottom:29.958817pt;}
.ya6{bottom:30.400000pt;}
.y105{bottom:30.489631pt;}
.ya7{bottom:33.600000pt;}
.y100{bottom:35.880000pt;}
.y10a{bottom:36.000000pt;}
.y109{bottom:37.120000pt;}
.yff{bottom:37.160000pt;}
.y2{bottom:58.906667pt;}
.ya{bottom:59.200000pt;}
.y1e{bottom:59.240000pt;}
.y50{bottom:84.960000pt;}
.yd7{bottom:85.440000pt;}
.y88{bottom:87.200000pt;}
.y142{bottom:87.680000pt;}
.y14{bottom:89.440000pt;}
.ye{bottom:96.026667pt;}
.y9{bottom:96.040000pt;}
.y110{bottom:97.760000pt;}
.y1a6{bottom:101.472000pt;}
.y5c{bottom:101.760000pt;}
.y166{bottom:103.200000pt;}
.y14e{bottom:105.280000pt;}
.y83{bottom:105.813333pt;}
.y8b{bottom:107.146667pt;}
.y63{bottom:107.680000pt;}
.y1ee{bottom:109.312000pt;}
.y150{bottom:112.480000pt;}
.y1d5{bottom:115.232000pt;}
.y1a5{bottom:117.152000pt;}
.y1d9{bottom:119.872000pt;}
.y1e8{bottom:121.632000pt;}
.y4f{bottom:121.760000pt;}
.yd5{bottom:122.560000pt;}
.y1d4{bottom:129.632000pt;}
.yd{bottom:132.826667pt;}
.y8{bottom:132.840000pt;}
.y1d8{bottom:134.426667pt;}
.y10f{bottom:135.680000pt;}
.y1a4{bottom:136.826667pt;}
.y7e{bottom:137.760000pt;}
.y5b{bottom:138.560000pt;}
.y165{bottom:140.000000pt;}
.y1e7{bottom:140.026667pt;}
.yd2{bottom:141.213333pt;}
.y12f{bottom:142.080000pt;}
.y62{bottom:144.480000pt;}
.y1ed{bottom:146.106667pt;}
.y2e{bottom:146.560000pt;}
.y45{bottom:149.280000pt;}
.y1e3{bottom:150.106667pt;}
.y1df{bottom:150.586667pt;}
.y1e6{bottom:154.586667pt;}
.y7a{bottom:156.413333pt;}
.y1a3{bottom:156.666667pt;}
.y4e{bottom:158.560000pt;}
.y1e2{bottom:164.506667pt;}
.y1de{bottom:165.146667pt;}
.y16{bottom:169.626667pt;}
.y7{bottom:169.640000pt;}
.y10e{bottom:173.760000pt;}
.y5a{bottom:175.360000pt;}
.y1a2{bottom:176.346667pt;}
.y164{bottom:176.480000pt;}
.y12e{bottom:178.880000pt;}
.y1ec{bottom:178.906667pt;}
.y11a{bottom:180.960000pt;}
.y61{bottom:181.280000pt;}
.y2d{bottom:183.386667pt;}
.yd1{bottom:185.626667pt;}
.y44{bottom:186.106667pt;}
.y4d{bottom:195.386667pt;}
.y1a1{bottom:196.026667pt;}
.y141{bottom:198.106667pt;}
.y1eb{bottom:200.186667pt;}
.y79{bottom:203.706667pt;}
.y15{bottom:206.426667pt;}
.y1d{bottom:206.440000pt;}
.y10d{bottom:210.586667pt;}
.y59{bottom:212.186667pt;}
.y163{bottom:213.626667pt;}
.y12d{bottom:215.706667pt;}
.y60{bottom:218.106667pt;}
.y2c{bottom:220.186667pt;}
.yd0{bottom:222.426667pt;}
.y43{bottom:222.906667pt;}
.y4c{bottom:232.186667pt;}
.y1a0{bottom:235.546667pt;}
.y1ea{bottom:236.986667pt;}
.y1c{bottom:243.240000pt;}
.y10c{bottom:247.386667pt;}
.y58{bottom:248.986667pt;}
.y162{bottom:250.426667pt;}
.y12c{bottom:252.186667pt;}
.y14d{bottom:252.506667pt;}
.y5f{bottom:254.906667pt;}
.y19f{bottom:255.226667pt;}
.y2b{bottom:256.666667pt;}
.y140{bottom:257.306667pt;}
.ycf{bottom:259.226667pt;}
.y42{bottom:259.706667pt;}
.y4b{bottom:268.986667pt;}
.y1e9{bottom:269.946667pt;}
.y1f1{bottom:270.746667pt;}
.y1ca{bottom:273.306667pt;}
.y19e{bottom:274.946667pt;}
.y78{bottom:277.306667pt;}
.y1b{bottom:280.066667pt;}
.y10b{bottom:284.186667pt;}
.y176{bottom:285.786667pt;}
.y161{bottom:287.226667pt;}
.y12b{bottom:289.306667pt;}
.y119{bottom:291.706667pt;}
.y1c9{bottom:291.746667pt;}
.y5e{bottom:292.826667pt;}
.y2a{bottom:293.786667pt;}
.y13f{bottom:294.106667pt;}
.yce{bottom:296.026667pt;}
.y57{bottom:296.186667pt;}
.y41{bottom:296.506667pt;}
.y108{bottom:298.586667pt;}
.y19d{bottom:299.906667pt;}
.y4a{bottom:305.786667pt;}
.y1f0{bottom:307.426667pt;}
.y1c8{bottom:307.586667pt;}
.y13{bottom:310.906667pt;}
.y77{bottom:314.106667pt;}
.y101{bottom:317.013333pt;}
.y19c{bottom:318.306667pt;}
.y1ef{bottom:321.986667pt;}
.y175{bottom:322.586667pt;}
.y160{bottom:324.026667pt;}
.y14c{bottom:325.786667pt;}
.y12a{bottom:326.106667pt;}
.y1c7{bottom:327.266667pt;}
.y118{bottom:328.506667pt;}
.y29{bottom:330.586667pt;}
.y13e{bottom:330.906667pt;}
.y5d{bottom:332.026667pt;}
.ycd{bottom:332.826667pt;}
.y40{bottom:333.306667pt;}
.y19b{bottom:336.706667pt;}
.y1d3{bottom:341.666667pt;}
.y49{bottom:342.586667pt;}
.y1c6{bottom:346.946667pt;}
.y56{bottom:347.706667pt;}
.y76{bottom:350.906667pt;}
.y19a{bottom:355.106667pt;}
.y1d2{bottom:356.066667pt;}
.y174{bottom:359.386667pt;}
.y15f{bottom:360.826667pt;}
.yfe{bottom:362.746667pt;}
.y129{bottom:362.906667pt;}
.y75{bottom:365.306667pt;}
.y1c5{bottom:366.786667pt;}
.y28{bottom:367.386667pt;}
.y13d{bottom:367.706667pt;}
.ycc{bottom:369.626667pt;}
.y12{bottom:370.106667pt;}
.y199{bottom:371.426667pt;}
.y48{bottom:379.386667pt;}
.yf7{bottom:381.213333pt;}
.y54{bottom:384.506667pt;}
.y1c4{bottom:386.466667pt;}
.y198{bottom:389.346667pt;}
.y1f5{bottom:391.586667pt;}
.y173{bottom:396.226667pt;}
.y15e{bottom:397.666667pt;}
.y128{bottom:399.746667pt;}
.y117{bottom:402.146667pt;}
.y27{bottom:404.226667pt;}
.y13c{bottom:404.546667pt;}
.y1c3{bottom:406.146667pt;}
.ycb{bottom:406.466667pt;}
.y11{bottom:406.946667pt;}
.y197{bottom:409.026667pt;}
.y47{bottom:409.986667pt;}
.y1ce{bottom:413.186667pt;}
.y127{bottom:414.146667pt;}
.y10{bottom:421.346667pt;}
.y1c2{bottom:425.986667pt;}
.y74{bottom:426.946667pt;}
.y1cd{bottom:427.586667pt;}
.y1f4{bottom:428.386667pt;}
.y196{bottom:428.706667pt;}
.y172{bottom:433.026667pt;}
.y15d{bottom:434.466667pt;}
.y14b{bottom:436.546667pt;}
.y116{bottom:438.946667pt;}
.y26{bottom:441.026667pt;}
.y73{bottom:441.346667pt;}
.yca{bottom:443.266667pt;}
.y3f{bottom:443.746667pt;}
.y46{bottom:444.866667pt;}
.y1c1{bottom:445.666667pt;}
.y195{bottom:448.546667pt;}
.yf6{bottom:448.706667pt;}
.y53{bottom:458.146667pt;}
.y1f3{bottom:465.186667pt;}
.y194{bottom:468.226667pt;}
.y171{bottom:469.826667pt;}
.y1c0{bottom:470.626667pt;}
.y15c{bottom:471.106667pt;}
.y14a{bottom:473.346667pt;}
.y115{bottom:475.746667pt;}
.y25{bottom:477.826667pt;}
.y13b{bottom:478.146667pt;}
.y1f2{bottom:479.586667pt;}
.yc9{bottom:479.906667pt;}
.y3e{bottom:480.546667pt;}
.yf5{bottom:485.506667pt;}
.y178{bottom:487.266667pt;}
.y126{bottom:487.746667pt;}
.y193{bottom:487.906667pt;}
.y1bf{bottom:489.026667pt;}
.yf{bottom:494.946667pt;}
.y72{bottom:502.946667pt;}
.y170{bottom:506.626667pt;}
.y1be{bottom:507.453333pt;}
.y192{bottom:507.773333pt;}
.y149{bottom:510.146667pt;}
.y15b{bottom:510.306667pt;}
.y114{bottom:513.666667pt;}
.y24{bottom:514.626667pt;}
.y13a{bottom:514.946667pt;}
.yc8{bottom:516.706667pt;}
.y3d{bottom:517.346667pt;}
.y177{bottom:517.986667pt;}
.y1bd{bottom:522.173333pt;}
.yf4{bottom:522.306667pt;}
.y125{bottom:524.546667pt;}
.y191{bottom:527.453333pt;}
.yc{bottom:531.746667pt;}
.yf3{bottom:536.706667pt;}
.y1bc{bottom:542.493333pt;}
.y16f{bottom:543.426667pt;}
.y148{bottom:546.946667pt;}
.y190{bottom:547.133333pt;}
.y15a{bottom:548.226667pt;}
.y23{bottom:551.426667pt;}
.y113{bottom:551.746667pt;}
.yc7{bottom:553.506667pt;}
.y3c{bottom:554.146667pt;}
.y1e1{bottom:555.133333pt;}
.yee{bottom:555.280000pt;}
.y1dd{bottom:561.213333pt;}
.y124{bottom:561.346667pt;}
.y1bb{bottom:562.813333pt;}
.y1d1{bottom:568.093333pt;}
.y1e0{bottom:569.533333pt;}
.y18f{bottom:572.093333pt;}
.y1e5{bottom:575.453333pt;}
.y1dc{bottom:575.613333pt;}
.y71{bottom:578.946667pt;}
.y16e{bottom:580.226667pt;}
.y1ba{bottom:583.133333pt;}
.y147{bottom:583.746667pt;}
.y159{bottom:586.306667pt;}
.y1d0{bottom:586.493333pt;}
.y22{bottom:588.226667pt;}
.y139{bottom:588.546667pt;}
.y112{bottom:589.666667pt;}
.y1e4{bottom:590.013333pt;}
.yc6{bottom:590.306667pt;}
.y18e{bottom:590.493333pt;}
.y3b{bottom:590.946667pt;}
.y1cf{bottom:601.053333pt;}
.y1b8{bottom:603.453333pt;}
.yed{bottom:604.733333pt;}
.y18d{bottom:606.173333pt;}
.y70{bottom:615.773333pt;}
.y16d{bottom:617.053333pt;}
.y123{bottom:620.573333pt;}
.y158{bottom:623.133333pt;}
.y1b7{bottom:623.773333pt;}
.y21{bottom:625.053333pt;}
.y18c{bottom:626.013333pt;}
.yc5{bottom:627.133333pt;}
.y111{bottom:627.453333pt;}
.y3a{bottom:627.773333pt;}
.yec{bottom:641.533333pt;}
.y1b5{bottom:645.213333pt;}
.y18b{bottom:645.693333pt;}
.y6f{bottom:653.693333pt;}
.y16c{bottom:653.853333pt;}
.y122{bottom:657.373333pt;}
.y146{bottom:658.493333pt;}
.y157{bottom:659.773333pt;}
.y20{bottom:661.853333pt;}
.y138{bottom:662.173333pt;}
.yc4{bottom:663.933333pt;}
.y14f{bottom:664.253333pt;}
.y39{bottom:664.573333pt;}
.y18a{bottom:665.373333pt;}
.y1b3{bottom:666.493333pt;}
.y137{bottom:676.573333pt;}
.yc2{bottom:678.333333pt;}
.yb{bottom:678.973333pt;}
.y189{bottom:685.213333pt;}
.y1cc{bottom:690.493333pt;}
.y16b{bottom:690.653333pt;}
.y6e{bottom:690.813333pt;}
.y1b2{bottom:691.773333pt;}
.yea{bottom:692.733333pt;}
.y6d{bottom:692.893333pt;}
.y121{bottom:694.173333pt;}
.y145{bottom:697.693333pt;}
.y156{bottom:697.853333pt;}
.y1f{bottom:698.653333pt;}
.ybe{bottom:699.413333pt;}
.y38{bottom:701.373333pt;}
.y188{bottom:704.893333pt;}
.y1cb{bottom:705.053333pt;}
.y6c{bottom:708.573333pt;}
.y1b1{bottom:710.173333pt;}
.ye7{bottom:711.146667pt;}
.y6{bottom:715.773333pt;}
.ybc{bottom:723.933333pt;}
.y187{bottom:724.613333pt;}
.y1d7{bottom:725.413333pt;}
.y16a{bottom:727.453333pt;}
.y1b0{bottom:728.613333pt;}
.y120{bottom:730.973333pt;}
.y155{bottom:734.653333pt;}
.y144{bottom:735.773333pt;}
.ye6{bottom:736.893333pt;}
.y37{bottom:738.173333pt;}
.y1d6{bottom:739.973333pt;}
.yb9{bottom:742.480000pt;}
.y186{bottom:744.453333pt;}
.y1a{bottom:751.773333pt;}
.y183{bottom:764.133333pt;}
.y169{bottom:764.253333pt;}
.yb7{bottom:765.373333pt;}
.y11f{bottom:767.773333pt;}
.y6b{bottom:770.173333pt;}
.y154{bottom:771.293333pt;}
.y136{bottom:772.573333pt;}
.y36{bottom:774.973333pt;}
.ye5{bottom:776.093333pt;}
.y1db{bottom:779.493333pt;}
.yb4{bottom:783.746667pt;}
.y1af{bottom:783.813333pt;}
.y182{bottom:789.093333pt;}
.y1da{bottom:794.053333pt;}
.y168{bottom:800.733333pt;}
.y1ae{bottom:803.653333pt;}
.y11e{bottom:804.573333pt;}
.y6a{bottom:806.973333pt;}
.y181{bottom:807.493333pt;}
.yb1{bottom:808.733333pt;}
.y135{bottom:809.373333pt;}
.y143{bottom:810.533333pt;}
.y35{bottom:811.813333pt;}
.ye3{bottom:815.333333pt;}
.y180{bottom:823.173333pt;}
.y1ad{bottom:823.333333pt;}
.yae{bottom:827.280000pt;}
.y167{bottom:837.893333pt;}
.y11d{bottom:841.253333pt;}
.y17f{bottom:842.853333pt;}
.y1ac{bottom:843.013333pt;}
.y69{bottom:843.813333pt;}
.y134{bottom:846.213333pt;}
.y34{bottom:848.613333pt;}
.yab{bottom:852.293333pt;}
.y11c{bottom:855.653333pt;}
.y17e{bottom:862.693333pt;}
.y1ab{bottom:862.853333pt;}
.ya8{bottom:870.613333pt;}
.ye2{bottom:876.933333pt;}
.y68{bottom:879.653333pt;}
.y67{bottom:881.733333pt;}
.y17d{bottom:882.373333pt;}
.y1aa{bottom:882.533333pt;}
.y153{bottom:882.853333pt;}
.y133{bottom:883.013333pt;}
.y33{bottom:885.413333pt;}
.ya5{bottom:895.013333pt;}
.y64{bottom:897.413333pt;}
.y4{bottom:899.813333pt;}
.y17c{bottom:902.053333pt;}
.y1a9{bottom:902.213333pt;}
.ye1{bottom:912.773333pt;}
.y9f{bottom:913.346667pt;}
.ye0{bottom:914.853333pt;}
.y132{bottom:919.813333pt;}
.y152{bottom:920.933333pt;}
.y17a{bottom:921.893333pt;}
.y32{bottom:922.213333pt;}
.y1a8{bottom:927.173333pt;}
.y11b{bottom:934.213333pt;}
.y179{bottom:945.600000pt;}
.ydf{bottom:952.933333pt;}
.y9c{bottom:954.213333pt;}
.y131{bottom:956.613333pt;}
.y151{bottom:957.733333pt;}
.y31{bottom:959.013333pt;}
.y97{bottom:972.746667pt;}
.y1{bottom:973.413333pt;}
.yde{bottom:989.733333pt;}
.y130{bottom:994.533333pt;}
.y52{bottom:995.493333pt;}
.y30{bottom:995.813333pt;}
.ydd{bottom:1004.133333pt;}
.y94{bottom:1005.573333pt;}
.yda{bottom:1022.613333pt;}
.y91{bottom:1024.080000pt;}
.y51{bottom:1032.320000pt;}
.y2f{bottom:1032.640000pt;}
.y1a7{bottom:1040.000000pt;}
.y19{bottom:1066.530000pt;}
.y18{bottom:1084.130667pt;}
.y17{bottom:1101.730667pt;}
.h86{height:18.240000pt;}
.h80{height:18.400000pt;}
.h82{height:18.432000pt;}
.h81{height:19.520000pt;}
.h83{height:19.680000pt;}
.h8a{height:20.000000pt;}
.h88{height:20.960000pt;}
.h89{height:21.120000pt;}
.h55{height:21.986667pt;}
.h1a{height:22.866185pt;}
.h2b{height:22.866895pt;}
.h3d{height:24.333817pt;}
.h50{height:24.520000pt;}
.h15{height:24.866667pt;}
.h49{height:24.986667pt;}
.h41{height:25.005333pt;}
.h23{height:25.132740pt;}
.h5f{height:25.732132pt;}
.h64{height:27.026667pt;}
.h21{height:30.399407pt;}
.h26{height:30.613333pt;}
.h1d{height:30.733025pt;}
.h2a{height:31.153975pt;}
.h57{height:31.380354pt;}
.h6c{height:32.157624pt;}
.h6a{height:32.173630pt;}
.h1b{height:32.656475pt;}
.h39{height:32.709829pt;}
.h75{height:32.727396pt;}
.h73{height:32.743687pt;}
.h1e{height:32.781754pt;}
.h32{height:32.826667pt;}
.h35{height:33.240079pt;}
.h66{height:33.338697pt;}
.h27{height:33.595456pt;}
.h2d{height:34.890639pt;}
.h4d{height:35.023981pt;}
.h17{height:35.052866pt;}
.h52{height:35.054205pt;}
.h33{height:35.845045pt;}
.h24{height:35.893469pt;}
.h61{height:36.280031pt;}
.h5c{height:36.758829pt;}
.h4{height:36.800000pt;}
.he{height:36.832000pt;}
.h5a{height:37.120000pt;}
.h3e{height:37.252243pt;}
.h44{height:38.350552pt;}
.h42{height:38.369642pt;}
.h4a{height:38.497118pt;}
.hf{height:39.200000pt;}
.h14{height:39.232000pt;}
.h7b{height:39.360000pt;}
.h59{height:40.640000pt;}
.hb{height:40.763021pt;}
.h37{height:40.799702pt;}
.h4f{height:41.440000pt;}
.h31{height:41.472000pt;}
.h11{height:42.063437pt;}
.h84{height:42.084375pt;}
.h40{height:42.720000pt;}
.h5e{height:42.912000pt;}
.h85{height:43.343750pt;}
.h4c{height:43.360000pt;}
.h19{height:43.520000pt;}
.h48{height:43.552000pt;}
.h63{height:44.160000pt;}
.h9{height:44.648750pt;}
.h7e{height:44.718750pt;}
.h68{height:45.085333pt;}
.h54{height:45.600000pt;}
.h71{height:45.733333pt;}
.h6f{height:49.739209pt;}
.h22{height:50.560000pt;}
.h78{height:50.620495pt;}
.h36{height:51.360000pt;}
.h6e{height:52.495223pt;}
.h77{height:53.542215pt;}
.h6d{height:53.637183pt;}
.h6b{height:53.663881pt;}
.h58{height:54.319461pt;}
.h56{height:54.346499pt;}
.h76{height:54.587533pt;}
.h74{height:54.614705pt;}
.h20{height:55.409190pt;}
.h30{height:55.465643pt;}
.h87{height:55.625000pt;}
.h1c{height:56.060168pt;}
.h3a{height:56.091775pt;}
.h38{height:56.119696pt;}
.h1f{height:56.260650pt;}
.h29{height:56.638593pt;}
.h67{height:57.566690pt;}
.h3b{height:57.581876pt;}
.h28{height:57.641384pt;}
.h2f{height:58.643645pt;}
.h3c{height:59.200000pt;}
.h2e{height:59.812386pt;}
.h2c{height:59.842159pt;}
.h4e{height:59.927346pt;}
.h53{height:59.948998pt;}
.h18{height:59.976547pt;}
.h62{height:60.332895pt;}
.h60{height:60.362926pt;}
.h47{height:60.965867pt;}
.h10{height:61.367337pt;}
.h34{height:61.501114pt;}
.h25{height:61.616994pt;}
.hd{height:62.781250pt;}
.h5{height:62.812500pt;}
.h70{height:63.552000pt;}
.h5d{height:63.649379pt;}
.h5b{height:63.681061pt;}
.h3f{height:63.771713pt;}
.h46{height:63.977605pt;}
.h79{height:64.160000pt;}
.h3{height:64.500000pt;}
.h45{height:65.743654pt;}
.h43{height:65.776378pt;}
.h7d{height:65.781915pt;}
.h4b{height:65.870013pt;}
.h69{height:67.536612pt;}
.h72{height:68.733234pt;}
.h13{height:71.101250pt;}
.h12{height:71.132500pt;}
.h7a{height:71.524375pt;}
.h8b{height:71.684375pt;}
.h16{height:73.418473pt;}
.h51{height:73.421277pt;}
.h8{height:73.600000pt;}
.h2{height:73.632000pt;}
.h65{height:84.284082pt;}
.h7c{height:110.432000pt;}
.h7{height:147.226667pt;}
.h6{height:184.026667pt;}
.ha{height:220.826667pt;}
.hc{height:294.466667pt;}
.h7f{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:38.080000pt;}
.w2e{width:41.152000pt;}
.w34{width:47.520000pt;}
.w2f{width:48.160000pt;}
.w31{width:50.400000pt;}
.w3b{width:53.920000pt;}
.w30{width:54.720000pt;}
.w8{width:56.192000pt;}
.w33{width:58.400000pt;}
.w3a{width:58.432000pt;}
.w35{width:59.200000pt;}
.w21{width:60.032000pt;}
.w15{width:60.135113pt;}
.w24{width:61.312000pt;}
.w2a{width:63.520000pt;}
.w3e{width:64.160000pt;}
.w2b{width:67.360000pt;}
.w2c{width:67.392000pt;}
.wd{width:68.197525pt;}
.w13{width:68.800869pt;}
.w32{width:69.632000pt;}
.w18{width:70.863336pt;}
.w38{width:71.520000pt;}
.w37{width:71.712000pt;}
.w36{width:72.160000pt;}
.w1c{width:74.912000pt;}
.w3c{width:75.552000pt;}
.wb{width:76.600167pt;}
.wa{width:87.712000pt;}
.w40{width:92.352000pt;}
.w3f{width:92.960000pt;}
.w10{width:96.594228pt;}
.w2d{width:100.960000pt;}
.w39{width:101.920000pt;}
.we{width:107.232000pt;}
.w17{width:112.463258pt;}
.w3{width:117.952000pt;}
.wf{width:133.932829pt;}
.w1e{width:139.795644pt;}
.w16{width:146.065669pt;}
.w19{width:159.194683pt;}
.w11{width:169.129575pt;}
.w3d{width:170.746667pt;}
.w14{width:174.071576pt;}
.w12{width:182.070623pt;}
.w26{width:218.946667pt;}
.w27{width:219.066667pt;}
.w1d{width:235.058543pt;}
.w1a{width:297.122840pt;}
.w22{width:315.199322pt;}
.w25{width:318.075048pt;}
.w6{width:327.906667pt;}
.w5{width:329.053333pt;}
.w1f{width:348.594587pt;}
.w4{width:538.373333pt;}
.wc{width:549.733333pt;}
.w9{width:569.253333pt;}
.w1b{width:582.053333pt;}
.w23{width:595.653333pt;}
.w20{width:596.933333pt;}
.w7{width:600.773333pt;}
.w2{width:656.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w28{width:816.000000pt;}
.x0{left:0.000000pt;}
.x58{left:1.710210pt;}
.x46{left:3.514125pt;}
.x50{left:4.531139pt;}
.x16{left:6.880000pt;}
.xc{left:9.440000pt;}
.xf{left:10.592000pt;}
.x56{left:11.686199pt;}
.x49{left:12.635150pt;}
.x5{left:13.952000pt;}
.x8c{left:15.360000pt;}
.x5f{left:17.315144pt;}
.x2{left:19.072000pt;}
.x7{left:20.352000pt;}
.x5a{left:21.462428pt;}
.x6d{left:22.400000pt;}
.x3{left:23.392000pt;}
.x9a{left:24.800000pt;}
.x9c{left:25.760000pt;}
.x17{left:28.830667pt;}
.x2f{left:30.400000pt;}
.xa1{left:32.160000pt;}
.x77{left:34.080000pt;}
.x24{left:35.520000pt;}
.x1f{left:36.480000pt;}
.x8e{left:37.760000pt;}
.xa0{left:38.880000pt;}
.x4a{left:41.043143pt;}
.xe{left:44.000000pt;}
.x23{left:45.280000pt;}
.x43{left:47.149067pt;}
.x54{left:49.397276pt;}
.x44{left:52.063322pt;}
.x4f{left:54.220053pt;}
.x1c{left:58.432000pt;}
.x5d{left:60.229832pt;}
.xd{left:61.632000pt;}
.x4e{left:64.638119pt;}
.x5c{left:67.226667pt;}
.x1{left:68.480000pt;}
.x22{left:72.666667pt;}
.x48{left:74.240000pt;}
.x10{left:75.546667pt;}
.x61{left:76.960000pt;}
.x12{left:77.946667pt;}
.x1d{left:78.906667pt;}
.x18{left:80.666667pt;}
.x19{left:81.626667pt;}
.x13{left:83.386667pt;}
.x1b{left:85.146667pt;}
.x1e{left:86.906667pt;}
.x11{left:87.866667pt;}
.x92{left:88.832000pt;}
.x14{left:91.386667pt;}
.x1a{left:92.346667pt;}
.x74{left:94.649947pt;}
.x7b{left:96.526404pt;}
.x90{left:99.552000pt;}
.x59{left:104.976503pt;}
.x5e{left:106.261717pt;}
.x71{left:107.525476pt;}
.x55{left:108.539440pt;}
.x57{left:112.102378pt;}
.x34{left:118.592000pt;}
.x60{left:119.546667pt;}
.x91{left:123.552000pt;}
.x93{left:126.912000pt;}
.x35{left:128.192000pt;}
.x7e{left:132.014790pt;}
.x83{left:134.236376pt;}
.x7d{left:137.621857pt;}
.x7c{left:139.465128pt;}
.x4b{left:140.986667pt;}
.x7a{left:144.086859pt;}
.x8{left:148.986667pt;}
.x82{left:149.888694pt;}
.x68{left:151.866667pt;}
.x3c{left:152.986667pt;}
.x45{left:156.213333pt;}
.x52{left:158.782081pt;}
.x64{left:160.302905pt;}
.x69{left:161.466667pt;}
.x20{left:164.346667pt;}
.x62{left:166.266667pt;}
.x25{left:172.706667pt;}
.x5b{left:181.186667pt;}
.x31{left:183.106667pt;}
.x15{left:187.066667pt;}
.x53{left:189.186667pt;}
.x94{left:190.426667pt;}
.x73{left:192.413333pt;}
.x9d{left:196.986667pt;}
.x26{left:198.306667pt;}
.x27{left:202.306667pt;}
.x38{left:205.986667pt;}
.x81{left:207.146667pt;}
.x78{left:208.546667pt;}
.x32{left:209.826667pt;}
.x63{left:210.813333pt;}
.x8a{left:213.986667pt;}
.x9b{left:215.386667pt;}
.x4c{left:217.546667pt;}
.x33{left:219.426667pt;}
.x28{left:220.386667pt;}
.x29{left:224.386667pt;}
.x8b{left:230.786667pt;}
.x85{left:237.026667pt;}
.x9{left:242.626667pt;}
.x4d{left:245.666667pt;}
.x6{left:247.426667pt;}
.x97{left:248.346667pt;}
.x79{left:251.728457pt;}
.x6e{left:254.946667pt;}
.x86{left:256.386667pt;}
.x95{left:257.786667pt;}
.x42{left:258.786667pt;}
.x99{left:260.386667pt;}
.x3f{left:264.226667pt;}
.x6f{left:268.866667pt;}
.xa{left:274.946667pt;}
.x70{left:277.666667pt;}
.x6c{left:283.426667pt;}
.x2a{left:286.146667pt;}
.x8d{left:287.426667pt;}
.x4{left:291.746667pt;}
.x87{left:293.826667pt;}
.x2b{left:295.746667pt;}
.xb{left:297.986667pt;}
.x9e{left:313.826667pt;}
.x40{left:315.426667pt;}
.x98{left:317.986667pt;}
.x2c{left:318.946667pt;}
.x2d{left:322.946667pt;}
.x41{left:324.253333pt;}
.x88{left:325.693333pt;}
.x39{left:330.653333pt;}
.x3a{left:340.093333pt;}
.x89{left:345.053333pt;}
.x9f{left:367.746667pt;}
.x72{left:370.173333pt;}
.x3d{left:377.853333pt;}
.x3e{left:387.453333pt;}
.x21{left:397.533333pt;}
.x67{left:408.413333pt;}
.xa3{left:409.986667pt;}
.x51{left:422.813333pt;}
.x96{left:426.146667pt;}
.x65{left:439.453333pt;}
.x7f{left:455.293333pt;}
.x84{left:456.733333pt;}
.x6a{left:464.893333pt;}
.x75{left:472.573333pt;}
.x6b{left:473.693333pt;}
.x8f{left:506.493333pt;}
.x36{left:572.293333pt;}
.x37{left:581.093333pt;}
.x47{left:618.213333pt;}
.x3b{left:637.733333pt;}
.xa4{left:640.133333pt;}
.x66{left:650.533333pt;}
.xab{left:652.933333pt;}
.xa5{left:663.013333pt;}
.x80{left:664.133333pt;}
.x76{left:665.413333pt;}
.xa2{left:668.133333pt;}
.x2e{left:669.253333pt;}
.xa9{left:672.133333pt;}
.x30{left:679.493333pt;}
.xa8{left:686.213333pt;}
.xaa{left:692.613333pt;}
.xa6{left:698.053333pt;}
.xac{left:704.133333pt;}
.xa7{left:720.133333pt;}
}




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