
    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_bc71bcf0d1bd72d1494c4288.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a97fccd893ded4a7082effd5.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_c3f141a2e8669c94c717e068.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_c2b473a966afef0fab4c38f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_0de917ac2916f2fa0d485afe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_29f81c0800366ebe22c930cd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0afc2f9cc7a640e709e7cff5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a88ae7eea8f54d398d9039ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.706543;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_39c29f0f2a7f3089f354eefa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c9eea1641e5ff5ff91e98fce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_ca6496ba948d322733a9ab7b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_41454b9198e92915d8a29f3e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a7189fceed87b7013b2d4399.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_67d6d8e88a3a2461b82b9c2e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.731445;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_45edc87dc3284b30b7b2637b.woff2')format("woff");}.fff{font-family:fff;line-height:0.895508;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_a1c8894ae368b9ff53e43321.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895508;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_36591292ed75f8367eef1331.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f0f5615ce66d4d8ef18ab953.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.692871;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;}
.m6{transform:matrix(-0.000289,-0.165545,0.250000,-0.000436,0,0);-ms-transform:matrix(-0.000289,-0.165545,0.250000,-0.000436,0,0);-webkit-transform:matrix(-0.000289,-0.165545,0.250000,-0.000436,0,0);}
.m3{transform:matrix(-0.000289,-0.165322,0.250000,-0.000435,0,0);-ms-transform:matrix(-0.000289,-0.165322,0.250000,-0.000435,0,0);-webkit-transform:matrix(-0.000289,-0.165322,0.250000,-0.000435,0,0);}
.m25{transform:matrix(-0.000286,-0.163978,0.250000,-0.000436,0,0);-ms-transform:matrix(-0.000286,-0.163978,0.250000,-0.000436,0,0);-webkit-transform:matrix(-0.000286,-0.163978,0.250000,-0.000436,0,0);}
.m22{transform:matrix(-0.000286,-0.163170,0.250000,-0.000434,0,0);-ms-transform:matrix(-0.000286,-0.163170,0.250000,-0.000434,0,0);-webkit-transform:matrix(-0.000286,-0.163170,0.250000,-0.000434,0,0);}
.m28{transform:matrix(-0.000286,-0.161835,0.250000,-0.000431,0,0);-ms-transform:matrix(-0.000286,-0.161835,0.250000,-0.000431,0,0);-webkit-transform:matrix(-0.000286,-0.161835,0.250000,-0.000431,0,0);}
.m1b{transform:matrix(-0.000286,-0.163531,0.250000,-0.000435,0,0);-ms-transform:matrix(-0.000286,-0.163531,0.250000,-0.000435,0,0);-webkit-transform:matrix(-0.000286,-0.163531,0.250000,-0.000435,0,0);}
.m18{transform:matrix(-0.000286,-0.163555,0.250000,-0.000435,0,0);-ms-transform:matrix(-0.000286,-0.163555,0.250000,-0.000435,0,0);-webkit-transform:matrix(-0.000286,-0.163555,0.250000,-0.000435,0,0);}
.m14{transform:matrix(0.000000,-0.249385,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249385,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249385,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.249666,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249666,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249666,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.251158,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251158,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251158,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);}
.m30{transform:matrix(0.000000,-0.249728,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249728,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249728,0.250000,0.000000,0,0);}
.m2b{transform:matrix(0.000000,-0.249714,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249714,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249714,0.250000,0.000000,0,0);}
.m1f{transform:matrix(0.000000,-0.250282,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250282,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250282,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249420,0.250000,0.000000,0,0);}
.m2d{transform:matrix(0.000000,-0.251220,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251220,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251220,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.251959,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251959,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251959,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,0.249385,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249385,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249385,-0.250000,0.000000,0,0);}
.m24{transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161765,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.162183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162183,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.162207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162207,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.162565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162565,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.163448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163448,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.163668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163668,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.163907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163907,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.163977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163977,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.164401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164401,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.164789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164789,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165915,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.166139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166139,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.166148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166148,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249718,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);}
.m2f{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.268190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268190,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.268256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268256,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-27.360000px;}
.va{vertical-align:-20.880000px;}
.v6{vertical-align:-10.800000px;}
.v5{vertical-align:-9.360000px;}
.vc{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.600000px;}
.ve{vertical-align:5.734152px;}
.v11{vertical-align:7.989367px;}
.vd{vertical-align:9.360000px;}
.v10{vertical-align:13.015753px;}
.vf{vertical-align:14.025101px;}
.vb{vertical-align:18.000000px;}
.v9{vertical-align:20.880000px;}
.v7{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.v8{vertical-align:36.720000px;}
.ls1b{letter-spacing:-1.800000px;}
.ls10{letter-spacing:-1.386000px;}
.lse{letter-spacing:-1.080000px;}
.ls5d{letter-spacing:-0.972000px;}
.ls1d{letter-spacing:-0.912000px;}
.ls6a{letter-spacing:-0.828000px;}
.ls60{letter-spacing:-0.761112px;}
.ls1c{letter-spacing:-0.666000px;}
.ls69{letter-spacing:-0.612000px;}
.ls6c{letter-spacing:-0.540000px;}
.ls6e{letter-spacing:-0.531600px;}
.ls6b{letter-spacing:-0.463200px;}
.ls26{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.352800px;}
.ls3a{letter-spacing:-0.332400px;}
.ls5f{letter-spacing:-0.282628px;}
.ls7d{letter-spacing:-0.280915px;}
.ls6d{letter-spacing:-0.274200px;}
.ls76{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.220800px;}
.ls7e{letter-spacing:-0.219220px;}
.ls67{letter-spacing:-0.216000px;}
.ls79{letter-spacing:-0.210800px;}
.ls47{letter-spacing:-0.201619px;}
.ls5e{letter-spacing:-0.196034px;}
.ls4c{letter-spacing:-0.191941px;}
.ls27{letter-spacing:-0.181200px;}
.ls77{letter-spacing:-0.160191px;}
.ls48{letter-spacing:-0.157340px;}
.ls3d{letter-spacing:-0.149525px;}
.ls41{letter-spacing:-0.149219px;}
.ls16{letter-spacing:-0.144000px;}
.ls4f{letter-spacing:-0.124668px;}
.ls3b{letter-spacing:-0.113627px;}
.ls42{letter-spacing:-0.113394px;}
.ls5c{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.100800px;}
.ls29{letter-spacing:-0.089400px;}
.ls78{letter-spacing:-0.059810px;}
.ls13{letter-spacing:-0.054720px;}
.ls7f{letter-spacing:-0.043454px;}
.ls3c{letter-spacing:-0.042425px;}
.ls49{letter-spacing:-0.031188px;}
.lsc{letter-spacing:-0.027360px;}
.lsb{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.015583px;}
.ls44{letter-spacing:0.017805px;}
.ls3e{letter-spacing:0.017842px;}
.ls7a{letter-spacing:0.025124px;}
.ls15{letter-spacing:0.027360px;}
.ls4b{letter-spacing:0.031188px;}
.ls0{letter-spacing:0.034560px;}
.ls46{letter-spacing:0.035528px;}
.ls40{letter-spacing:0.035601px;}
.ls81{letter-spacing:0.043454px;}
.ls50{letter-spacing:0.046635px;}
.ls4a{letter-spacing:0.046781px;}
.ls7c{letter-spacing:0.050190px;}
.ls70{letter-spacing:0.053280px;}
.ls43{letter-spacing:0.053292px;}
.ls11{letter-spacing:0.054720px;}
.ls80{letter-spacing:0.065180px;}
.ls4d{letter-spacing:0.077917px;}
.ls1e{letter-spacing:0.089280px;}
.ls2d{letter-spacing:0.092160px;}
.ls68{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.108720px;}
.ls65{letter-spacing:0.153360px;}
.ls45{letter-spacing:0.178054px;}
.ls3f{letter-spacing:0.178420px;}
.ls2{letter-spacing:0.180000px;}
.ls6f{letter-spacing:0.188400px;}
.lsf{letter-spacing:0.193800px;}
.lsd{letter-spacing:0.220800px;}
.ls9{letter-spacing:0.221040px;}
.ls32{letter-spacing:0.237329px;}
.ls30{letter-spacing:0.237816px;}
.ls7b{letter-spacing:0.251240px;}
.ls63{letter-spacing:0.257040px;}
.ls33{letter-spacing:0.259356px;}
.ls2f{letter-spacing:0.259889px;}
.ls20{letter-spacing:0.319680px;}
.ls56{letter-spacing:0.320136px;}
.ls21{letter-spacing:0.324000px;}
.ls72{letter-spacing:0.335272px;}
.ls1{letter-spacing:0.360000px;}
.ls71{letter-spacing:0.366390px;}
.ls1a{letter-spacing:0.452880px;}
.ls36{letter-spacing:0.467814px;}
.ls2e{letter-spacing:0.470880px;}
.ls12{letter-spacing:0.499200px;}
.ls2c{letter-spacing:0.504000px;}
.ls34{letter-spacing:0.532924px;}
.ls31{letter-spacing:0.534018px;}
.ls8{letter-spacing:0.576000px;}
.ls75{letter-spacing:0.651803px;}
.lsa{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.750000px;}
.ls73{letter-spacing:0.752857px;}
.ls24{letter-spacing:0.855735px;}
.ls25{letter-spacing:0.856694px;}
.ls7{letter-spacing:0.869040px;}
.ls66{letter-spacing:0.900000px;}
.ls53{letter-spacing:0.921681px;}
.ls54{letter-spacing:0.924198px;}
.ls55{letter-spacing:0.955728px;}
.ls6{letter-spacing:1.049040px;}
.ls17{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.483267px;}
.ls23{letter-spacing:1.486926px;}
.ls5a{letter-spacing:1.567186px;}
.ls57{letter-spacing:1.576282px;}
.ls59{letter-spacing:1.582091px;}
.ls58{letter-spacing:1.584080px;}
.ls5b{letter-spacing:1.587936px;}
.ls51{letter-spacing:1.615665px;}
.ls52{letter-spacing:1.619839px;}
.ls64{letter-spacing:2.340000px;}
.ls19{letter-spacing:2.545920px;}
.ls61{letter-spacing:2.901600px;}
.ls2b{letter-spacing:3.060000px;}
.ls3{letter-spacing:3.621600px;}
.ls4{letter-spacing:5.940000px;}
.ls5{letter-spacing:8.100000px;}
.ls62{letter-spacing:8.820000px;}
.ls38{letter-spacing:11.859003px;}
.ls39{letter-spacing:11.910947px;}
.ls37{letter-spacing:98.649687px;}
.ls35{letter-spacing:123.136352px;}
.ls74{letter-spacing:171.565289px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws53{word-spacing:-65.267158px;}
.ws15{word-spacing:-56.880000px;}
.ws2b{word-spacing:-53.292415px;}
.ws34{word-spacing:-46.843740px;}
.ws39{word-spacing:-46.697493px;}
.ws20{word-spacing:-41.760000px;}
.ws4b{word-spacing:-18.842984px;}
.ws46{word-spacing:-18.000000px;}
.ws4c{word-spacing:-17.064761px;}
.ws10{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws54{word-spacing:-14.774190px;}
.wsd{word-spacing:-14.719200px;}
.ws45{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.440800px;}
.ws9{word-spacing:-14.413800px;}
.wsb{word-spacing:-14.274720px;}
.wse{word-spacing:-14.247360px;}
.ws4{word-spacing:-14.220000px;}
.ws5{word-spacing:-14.192640px;}
.ws16{word-spacing:-14.165280px;}
.ws4e{word-spacing:-14.087951px;}
.ws1f{word-spacing:-13.867200px;}
.ws41{word-spacing:-13.608000px;}
.ws13{word-spacing:-13.554000px;}
.ws3b{word-spacing:-13.500000px;}
.ws3a{word-spacing:-13.392000px;}
.ws26{word-spacing:-13.381477px;}
.ws2c{word-spacing:-13.354082px;}
.ws14{word-spacing:-13.308000px;}
.ws49{word-spacing:-13.211554px;}
.ws8{word-spacing:-13.140000px;}
.ws48{word-spacing:-13.111173px;}
.ws4a{word-spacing:-13.083251px;}
.ws42{word-spacing:-12.888000px;}
.wsa{word-spacing:-12.834000px;}
.ws43{word-spacing:-12.780000px;}
.ws44{word-spacing:-12.505800px;}
.ws12{word-spacing:-12.420000px;}
.ws27{word-spacing:-12.104407px;}
.ws2d{word-spacing:-12.079614px;}
.ws18{word-spacing:-12.060000px;}
.ws1a{word-spacing:-11.878800px;}
.ws19{word-spacing:-11.700000px;}
.ws37{word-spacing:-11.687585px;}
.ws50{word-spacing:-10.993942px;}
.ws1b{word-spacing:-10.980000px;}
.ws52{word-spacing:-10.863375px;}
.ws35{word-spacing:-10.603776px;}
.ws1c{word-spacing:-10.440000px;}
.ws1e{word-spacing:-10.350600px;}
.ws1d{word-spacing:-10.339200px;}
.ws2f{word-spacing:-10.111246px;}
.ws40{word-spacing:-10.099356px;}
.ws3d{word-spacing:-9.831129px;}
.ws3e{word-spacing:-9.816729px;}
.ws1{word-spacing:-9.720000px;}
.ws24{word-spacing:-9.371244px;}
.ws23{word-spacing:-9.300042px;}
.ws2a{word-spacing:-9.280992px;}
.ws25{word-spacing:-9.280236px;}
.ws29{word-spacing:-9.261227px;}
.ws7{word-spacing:-9.000000px;}
.wsf{word-spacing:-8.856000px;}
.ws31{word-spacing:-7.890605px;}
.ws33{word-spacing:-7.796894px;}
.ws38{word-spacing:-7.791723px;}
.ws17{word-spacing:-7.560000px;}
.ws21{word-spacing:-6.840000px;}
.ws3f{word-spacing:-6.737573px;}
.ws0{word-spacing:-0.041760px;}
.ws2{word-spacing:-0.036000px;}
.ws11{word-spacing:0.000000px;}
.ws36{word-spacing:70.347142px;}
.ws30{word-spacing:84.402334px;}
.ws2e{word-spacing:102.876115px;}
.ws4f{word-spacing:117.597368px;}
.ws32{word-spacing:134.273295px;}
.ws4d{word-spacing:143.336798px;}
.ws51{word-spacing:187.082337px;}
.ws28{word-spacing:221.502044px;}
.ws3c{word-spacing:228.144284px;}
.ws22{word-spacing:320.879809px;}
.ws47{word-spacing:452.375480px;}
._35{margin-left:-6.893760px;}
._39{margin-left:-5.846435px;}
._20{margin-left:-3.943639px;}
._0{margin-left:-1.857120px;}
._1{width:1.401120px;}
._2{width:3.385680px;}
._4{width:5.037360px;}
._3{width:6.447360px;}
._5{width:7.556880px;}
._a{width:8.832720px;}
._6{width:10.519920px;}
._e{width:11.642880px;}
._9{width:12.854880px;}
._34{width:14.670000px;}
._8{width:15.812640px;}
._7{width:17.462160px;}
._10{width:18.827280px;}
._f{width:20.135520px;}
._11{width:23.043360px;}
._b{width:24.060240px;}
._14{width:25.212960px;}
._15{width:27.586800px;}
._16{width:28.838160px;}
._1e{width:30.240000px;}
._1f{width:31.854000px;}
._19{width:33.864480px;}
._18{width:34.981200px;}
._17{width:45.219600px;}
._1c{width:51.996473px;}
._13{width:56.006880px;}
._12{width:57.107520px;}
._c{width:59.932560px;}
._d{width:61.017360px;}
._22{width:80.826076px;}
._33{width:93.463155px;}
._32{width:94.785999px;}
._23{width:98.800560px;}
._24{width:100.129680px;}
._2c{width:105.412335px;}
._26{width:107.369905px;}
._25{width:109.155314px;}
._21{width:113.868513px;}
._37{width:120.984000px;}
._36{width:122.394000px;}
._2f{width:152.369225px;}
._2e{width:153.677474px;}
._2a{width:157.894711px;}
._1d{width:159.059758px;}
._1b{width:165.982094px;}
._28{width:201.255610px;}
._27{width:202.947328px;}
._31{width:210.852012px;}
._30{width:212.385829px;}
._2b{width:213.678639px;}
._2d{width:214.786886px;}
._29{width:298.648248px;}
._1a{width:372.757671px;}
._38{width:467.135760px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:8.917503px;}
.fs32{font-size:9.358124px;}
.fs43{font-size:15.883203px;}
.fs3d{font-size:15.975392px;}
.fs40{font-size:16.034270px;}
.fsd{font-size:16.081291px;}
.fsf{font-size:16.145952px;}
.fs11{font-size:16.164030px;}
.fs2f{font-size:16.374534px;}
.fs31{font-size:17.068159px;}
.fs33{font-size:17.114770px;}
.fsb{font-size:27.360000px;}
.fs21{font-size:28.383471px;}
.fs42{font-size:29.021959px;}
.fsc{font-size:29.083660px;}
.fse{font-size:29.155415px;}
.fs3c{font-size:29.190407px;}
.fs41{font-size:29.297977px;}
.fs3f{font-size:29.297990px;}
.fs3e{font-size:29.334822px;}
.fs44{font-size:29.406225px;}
.fs38{font-size:29.812271px;}
.fs2e{font-size:29.919724px;}
.fs30{font-size:29.997013px;}
.fs9{font-size:30.240000px;}
.fs2c{font-size:31.166892px;}
.fs23{font-size:31.187577px;}
.fs24{font-size:31.249952px;}
.fs3a{font-size:33.469078px;}
.fs18{font-size:34.096126px;}
.fs12{font-size:34.103799px;}
.fs22{font-size:34.550599px;}
.fs28{font-size:34.625410px;}
.fs34{font-size:35.363774px;}
.fs6{font-size:36.000000px;}
.fs1e{font-size:36.371389px;}
.fs5{font-size:38.880000px;}
.fs4e{font-size:39.546555px;}
.fs1a{font-size:41.568083px;}
.fs19{font-size:41.639140px;}
.fs13{font-size:41.653402px;}
.fs14{font-size:41.724604px;}
.fs4{font-size:41.760000px;}
.fs29{font-size:42.148778px;}
.fs35{font-size:42.712914px;}
.fs36{font-size:43.047574px;}
.fs50{font-size:43.453501px;}
.fs51{font-size:43.540408px;}
.fs1f{font-size:44.070076px;}
.fs20{font-size:44.274122px;}
.fs37{font-size:44.687417px;}
.fs2a{font-size:46.635313px;}
.fs2d{font-size:46.697493px;}
.fs2b{font-size:46.750338px;}
.fs26{font-size:46.781365px;}
.fs25{font-size:46.843740px;}
.fs27{font-size:46.844009px;}
.fs46{font-size:48.079443px;}
.fs4f{font-size:48.139184px;}
.fs3{font-size:48.240000px;}
.fs3b{font-size:50.208871px;}
.fs39{font-size:50.265597px;}
.fs4b{font-size:50.676082px;}
.fs45{font-size:51.120000px;}
.fs1b{font-size:53.292415px;}
.fs16{font-size:53.401798px;}
.fs1c{font-size:53.416328px;}
.fs15{font-size:53.525906px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs47{font-size:58.722853px;}
.fs48{font-size:58.823234px;}
.fs1{font-size:59.760000px;}
.fs4c{font-size:61.387372px;}
.fs4d{font-size:61.686921px;}
.fs8{font-size:63.360000px;}
.fs53{font-size:65.180251px;}
.fs54{font-size:65.251321px;}
.fs52{font-size:65.267158px;}
.fs1d{font-size:71.127609px;}
.fs17{font-size:71.202397px;}
.fs2{font-size:72.000000px;}
.fs4a{font-size:75.285709px;}
.fs49{font-size:75.371937px;}
.fs0{font-size:102.240000px;}
.y2a9{bottom:-152.100413px;}
.y2aa{bottom:-138.999960px;}
.y193{bottom:-109.165963px;}
.y194{bottom:-99.763466px;}
.y2ab{bottom:-94.709313px;}
.y195{bottom:-67.975050px;}
.y2ac{bottom:-50.562783px;}
.y196{bottom:-36.290070px;}
.y20f{bottom:-19.417402px;}
.y1e4{bottom:-18.928707px;}
.y128{bottom:-18.561933px;}
.y206{bottom:-17.753613px;}
.y218{bottom:-16.753142px;}
.y131{bottom:-8.716478px;}
.y1ed{bottom:-7.962045px;}
.y2ad{bottom:-6.272947px;}
.y197{bottom:-4.502237px;}
.y0{bottom:0.000000px;}
.y210{bottom:1.378510px;}
.y1a7{bottom:1.567310px;}
.y186{bottom:1.783744px;}
.y1e5{bottom:2.308245px;}
.y29d{bottom:2.317340px;}
.y2bd{bottom:2.639802px;}
.y207{bottom:2.965989px;}
.y129{bottom:3.045848px;}
.y132{bottom:3.285983px;}
.y219{bottom:3.846948px;}
.y176{bottom:3.982591px;}
.y1ee{bottom:4.167196px;}
.y1b0{bottom:5.486839px;}
.y1ff{bottom:6.174673px;}
.y143{bottom:6.825000px;}
.yf6{bottom:6.840000px;}
.yf8{bottom:6.885000px;}
.y147{bottom:7.005000px;}
.yfa{bottom:7.020000px;}
.y145{bottom:7.185000px;}
.ycf{bottom:7.380000px;}
.y19d{bottom:7.863337px;}
.yd1{bottom:7.920000px;}
.yd2{bottom:8.820000px;}
.y134{bottom:9.683363px;}
.y1f0{bottom:10.624368px;}
.y2b3{bottom:10.955949px;}
.y212{bottom:12.455327px;}
.yfe{bottom:12.960000px;}
.y1e7{bottom:13.620395px;}
.y209{bottom:14.002078px;}
.y12b{bottom:14.546138px;}
.y21b{bottom:14.819299px;}
.y133{bottom:15.295854px;}
.y16b{bottom:16.199301px;}
.y1ef{bottom:16.296750px;}
.y1a9{bottom:17.237417px;}
.y214{bottom:17.261579px;}
.y189{bottom:17.311102px;}
.y19c{bottom:18.394160px;}
.y59{bottom:18.540000px;}
.yfd{bottom:19.080000px;}
.y292{bottom:19.543141px;}
.y179{bottom:19.921796px;}
.y1f4{bottom:20.859367px;}
.y1f2{bottom:21.409545px;}
.y211{bottom:22.174423px;}
.y142{bottom:23.385000px;}
.yf7{bottom:23.445000px;}
.y1e6{bottom:23.545197px;}
.yf5{bottom:23.625000px;}
.y208{bottom:23.685486px;}
.y21d{bottom:24.380834px;}
.y21a{bottom:24.446827px;}
.y29f{bottom:24.579351px;}
.y12a{bottom:24.640354px;}
.y2b2{bottom:25.628494px;}
.y198{bottom:27.285304px;}
.y1aa{bottom:28.707657px;}
.y19b{bottom:28.919884px;}
.y18a{bottom:29.359727px;}
.y20b{bottom:36.631919px;}
.y2ae{bottom:38.016482px;}
.y2b1{bottom:40.293935px;}
.y1f5{bottom:40.342951px;}
.y2a0{bottom:41.366642px;}
.y136{bottom:42.780609px;}
.y16c{bottom:45.796492px;}
.y1e9{bottom:45.842934px;}
.y19a{bottom:49.972790px;}
.y17a{bottom:50.617432px;}
.y12d{bottom:55.373816px;}
.y199{bottom:59.069349px;}
.y293{bottom:61.265837px;}
.y202{bottom:61.925232px;}
.y2b0{bottom:69.626848px;}
.y18b{bottom:70.094308px;}
.y16d{bottom:70.236715px;}
.y1f6{bottom:71.416125px;}
.y37{bottom:71.820000px;}
.y55{bottom:72.000000px;}
.y57{bottom:73.080000px;}
.y17b{bottom:75.009074px;}
.y1fe{bottom:78.596552px;}
.y1ab{bottom:81.951681px;}
.y2af{bottom:82.301039px;}
.y36{bottom:88.200000px;}
.y54{bottom:88.380000px;}
.y58{bottom:89.460000px;}
.y16e{bottom:91.702754px;}
.y294{bottom:95.721597px;}
.y17c{bottom:97.532521px;}
.y2a1{bottom:98.121939px;}
.y1f7{bottom:102.487485px;}
.y135{bottom:103.333858px;}
.y35{bottom:104.580000px;}
.y53{bottom:104.760000px;}
.y1a5{bottom:104.894218px;}
.y1f1{bottom:105.226485px;}
.y56{bottom:108.000000px;}
.y18c{bottom:110.696343px;}
.y16f{bottom:115.399802px;}
.y175{bottom:117.765805px;}
.y1a6{bottom:118.642747px;}
.y17d{bottom:120.078173px;}
.y200{bottom:120.246960px;}
.y52{bottom:121.320000px;}
.y295{bottom:125.988543px;}
.y185{bottom:126.436258px;}
.y1d4{bottom:127.260000px;}
.yee{bottom:133.380000px;}
.y1f8{bottom:133.560660px;}
.yc3{bottom:133.920000px;}
.y1b1{bottom:134.432767px;}
.y33{bottom:134.640000px;}
.y190{bottom:135.056810px;}
.y1ac{bottom:135.192149px;}
.y1fc{bottom:135.343116px;}
.y1e0{bottom:135.360000px;}
.y130{bottom:136.949522px;}
.y34{bottom:137.340000px;}
.y51{bottom:137.700000px;}
.y170{bottom:138.659251px;}
.y1ec{bottom:139.190479px;}
.y124{bottom:139.860000px;}
.y251{bottom:141.840000px;}
.y17e{bottom:143.289980px;}
.y12f{bottom:143.369725px;}
.y1d3{bottom:143.640000px;}
.y1eb{bottom:145.669735px;}
.y169{bottom:146.520000px;}
.y2bb{bottom:146.601250px;}
.yed{bottom:149.760000px;}
.yc2{bottom:150.300000px;}
.y14c{bottom:151.020000px;}
.y90{bottom:151.200000px;}
.y18d{bottom:151.429058px;}
.y32{bottom:151.560000px;}
.y1df{bottom:151.740000px;}
.y50{bottom:154.080000px;}
.y2a2{bottom:154.692561px;}
.y250{bottom:155.340000px;}
.y123{bottom:156.240000px;}
.y296{bottom:159.386120px;}
.y1d2{bottom:160.020000px;}
.y171{bottom:162.512054px;}
.y29c{bottom:162.721702px;}
.y168{bottom:162.900000px;}
.y1f9{bottom:164.759079px;}
.y2bc{bottom:165.766057px;}
.yec{bottom:166.140000px;}
.yc1{bottom:166.680000px;}
.y17f{bottom:167.093926px;}
.y14b{bottom:167.400000px;}
.y8f{bottom:167.760000px;}
.y31{bottom:167.940000px;}
.y24f{bottom:168.840000px;}
.y1a2{bottom:172.382839px;}
.y122{bottom:172.620000px;}
.y1de{bottom:172.980000px;}
.y213{bottom:174.656996px;}
.y21c{bottom:175.492789px;}
.y20a{bottom:175.603363px;}
.y1d1{bottom:176.400000px;}
.y1e8{bottom:179.260890px;}
.y167{bottom:179.280000px;}
.y1a1{bottom:181.875557px;}
.y24e{bottom:182.340000px;}
.yeb{bottom:182.520000px;}
.yc0{bottom:183.060000px;}
.y12c{bottom:183.083432px;}
.y14a{bottom:183.780000px;}
.y4f{bottom:183.960000px;}
.y30{bottom:184.320000px;}
.y8e{bottom:185.220000px;}
.y1ad{bottom:188.557024px;}
.y201{bottom:188.629245px;}
.y2a6{bottom:188.633889px;}
.y121{bottom:189.000000px;}
.y172{bottom:189.146201px;}
.y18e{bottom:192.163640px;}
.y297{bottom:192.187685px;}
.y1a0{bottom:192.589789px;}
.y1d0{bottom:192.780000px;}
.y180{bottom:193.673517px;}
.y1fa{bottom:195.832254px;}
.y166{bottom:195.840000px;}
.yea{bottom:198.900000px;}
.ybf{bottom:199.440000px;}
.y149{bottom:200.160000px;}
.y4e{bottom:200.340000px;}
.y2f{bottom:200.700000px;}
.y8d{bottom:202.500000px;}
.y19f{bottom:202.979151px;}
.y1dd{bottom:204.300000px;}
.y290{bottom:205.380000px;}
.y120{bottom:205.560000px;}
.y1cf{bottom:209.160000px;}
.y24d{bottom:209.340000px;}
.y173{bottom:211.322781px;}
.y2a3{bottom:211.445256px;}
.y1b3{bottom:211.536484px;}
.y165{bottom:212.220000px;}
.y19e{bottom:213.271051px;}
.ye9{bottom:215.310000px;}
.y181{bottom:215.804673px;}
.y4d{bottom:216.750000px;}
.y2e{bottom:217.110000px;}
.y8c{bottom:218.910000px;}
.ybe{bottom:220.170000px;}
.y148{bottom:221.070000px;}
.y28f{bottom:221.250000px;}
.y1b2{bottom:222.340332px;}
.y24c{bottom:222.870000px;}
.y11f{bottom:223.050000px;}
.y1a3{bottom:223.497977px;}
.y1dc{bottom:225.210000px;}
.y1ce{bottom:225.570000px;}
.y298{bottom:225.815301px;}
.y1b4{bottom:226.246039px;}
.y1fb{bottom:226.903614px;}
.y164{bottom:228.630000px;}
.ye8{bottom:231.690000px;}
.y20e{bottom:232.888429px;}
.y18f{bottom:232.892620px;}
.y4c{bottom:233.130000px;}
.y217{bottom:233.175596px;}
.y205{bottom:233.626280px;}
.y2c{bottom:233.670000px;}
.y146{bottom:234.765000px;}
.y8b{bottom:235.290000px;}
.y174{bottom:235.405508px;}
.y2d{bottom:236.370000px;}
.y28e{bottom:237.630000px;}
.y1a4{bottom:238.045678px;}
.y1e3{bottom:238.728056px;}
.y182{bottom:239.838072px;}
.y11e{bottom:240.510000px;}
.y2b8{bottom:240.632818px;}
.y1db{bottom:241.410000px;}
.y1ae{bottom:241.795716px;}
.y1cd{bottom:241.950000px;}
.y127{bottom:243.595627px;}
.y20d{bottom:244.006017px;}
.y216{bottom:244.188440px;}
.y204{bottom:244.703044px;}
.y163{bottom:245.010000px;}
.y177{bottom:247.621176px;}
.y4b{bottom:249.510000px;}
.y24b{bottom:249.870000px;}
.y1e2{bottom:250.081571px;}
.y2b{bottom:250.590000px;}
.y144{bottom:251.325000px;}
.y8a{bottom:251.670000px;}
.ye7{bottom:252.390000px;}
.y2b7{bottom:253.868030px;}
.y28d{bottom:254.010000px;}
.y126{bottom:255.134149px;}
.y1af{bottom:255.514151px;}
.y1da{bottom:257.070000px;}
.y11d{bottom:257.790000px;}
.y187{bottom:261.155041px;}
.y162{bottom:261.390000px;}
.y1cc{bottom:262.650000px;}
.y299{bottom:263.353592px;}
.y24a{bottom:263.370000px;}
.y1fd{bottom:264.219013px;}
.y184{bottom:264.855902px;}
.y4a{bottom:265.890000px;}
.y2a{bottom:266.970000px;}
.y191{bottom:267.604752px;}
.ye6{bottom:267.870000px;}
.y89{bottom:268.050000px;}
.y2a4{bottom:268.200553px;}
.y141{bottom:268.785000px;}
.y2b6{bottom:268.796118px;}
.y28c{bottom:270.390000px;}
.y183{bottom:271.517453px;}
.y1d9{bottom:273.450000px;}
.y11c{bottom:274.350000px;}
.y249{bottom:276.870000px;}
.y161{bottom:277.770000px;}
.y1cb{bottom:278.310000px;}
.ybd{bottom:281.910000px;}
.y49{bottom:282.270000px;}
.y2b5{bottom:283.262513px;}
.y29{bottom:283.350000px;}
.y88{bottom:284.430000px;}
.ye5{bottom:284.790000px;}
.y125{bottom:284.850000px;}
.y28b{bottom:287.850000px;}
.y215{bottom:290.279998px;}
.y1d8{bottom:290.370000px;}
.y11b{bottom:291.630000px;}
.y160{bottom:294.150000px;}
.y29a{bottom:294.628530px;}
.y1ca{bottom:295.050000px;}
.y1f3{bottom:295.140000px;}
.y2b4{bottom:297.602168px;}
.ybc{bottom:298.290000px;}
.y48{bottom:298.650000px;}
.y28{bottom:299.730000px;}
.y87{bottom:300.810000px;}
.y248{bottom:303.870000px;}
.y28a{bottom:306.930000px;}
.y11a{bottom:308.010000px;}
.y140{bottom:310.350000px;}
.y15f{bottom:310.530000px;}
.y2b9{bottom:311.851295px;}
.ybb{bottom:314.670000px;}
.y47{bottom:315.030000px;}
.y27{bottom:316.110000px;}
.y86{bottom:317.190000px;}
.y247{bottom:322.770000px;}
.y119{bottom:324.390000px;}
.y2a5{bottom:324.948047px;}
.y13f{bottom:326.730000px;}
.y15e{bottom:326.910000px;}
.y29b{bottom:328.580294px;}
.yba{bottom:331.050000px;}
.y46{bottom:331.410000px;}
.y2ba{bottom:332.129594px;}
.y26{bottom:332.490000px;}
.y85{bottom:333.570000px;}
.y289{bottom:338.250000px;}
.y118{bottom:340.770000px;}
.y13e{bottom:343.110000px;}
.y15d{bottom:343.290000px;}
.yb9{bottom:347.430000px;}
.y45{bottom:347.790000px;}
.y84{bottom:349.950000px;}
.y246{bottom:354.090000px;}
.y15c{bottom:359.670000px;}
.y117{bottom:361.830000px;}
.y25{bottom:362.370000px;}
.yb8{bottom:363.810000px;}
.y13d{bottom:363.990000px;}
.y44{bottom:364.170000px;}
.y288{bottom:365.610000px;}
.y29e{bottom:365.742416px;}
.y83{bottom:366.330000px;}
.y245{bottom:369.570000px;}
.y2a7{bottom:373.312298px;}
.y116{bottom:378.210000px;}
.y12e{bottom:378.713965px;}
.y24{bottom:378.750000px;}
.yb7{bottom:380.190000px;}
.y15b{bottom:380.370000px;}
.y43{bottom:380.550000px;}
.y13c{bottom:384.150000px;}
.y244{bottom:385.050000px;}
.y286{bottom:394.050000px;}
.y115{bottom:394.590000px;}
.y23{bottom:395.130000px;}
.y15a{bottom:395.850000px;}
.y82{bottom:396.030000px;}
.yb6{bottom:396.570000px;}
.y42{bottom:396.930000px;}
.y13b{bottom:399.630000px;}
.y243{bottom:400.530000px;}
.y285{bottom:407.550000px;}
.y114{bottom:410.970000px;}
.y159{bottom:411.510000px;}
.y22{bottom:411.690000px;}
.yb5{bottom:412.950000px;}
.y41{bottom:413.310000px;}
.y13a{bottom:415.110000px;}
.y242{bottom:416.190000px;}
.y284{bottom:421.050000px;}
.y81{bottom:426.090000px;}
.y113{bottom:427.350000px;}
.y21{bottom:428.070000px;}
.y158{bottom:428.250000px;}
.y1a8{bottom:428.325000px;}
.yb4{bottom:429.330000px;}
.y139{bottom:430.590000px;}
.y241{bottom:431.715000px;}
.y283{bottom:434.595000px;}
.y80{bottom:442.515000px;}
.y40{bottom:443.235000px;}
.y112{bottom:443.775000px;}
.y20{bottom:444.495000px;}
.yb3{bottom:445.755000px;}
.y240{bottom:447.195000px;}
.y178{bottom:447.539996px;}
.y138{bottom:447.555000px;}
.y282{bottom:448.095000px;}
.y7f{bottom:458.895000px;}
.y3f{bottom:459.615000px;}
.y111{bottom:460.155000px;}
.y1f{bottom:460.875000px;}
.y281{bottom:461.595000px;}
.y23f{bottom:462.675000px;}
.y280{bottom:475.095000px;}
.y7e{bottom:475.275000px;}
.yb2{bottom:475.455000px;}
.y3e{bottom:475.995000px;}
.y110{bottom:476.535000px;}
.y1e{bottom:477.255000px;}
.y27f{bottom:488.595000px;}
.y7d{bottom:491.655000px;}
.y3d{bottom:492.375000px;}
.y1d{bottom:493.635000px;}
.y10f{bottom:497.415000px;}
.y27e{bottom:502.095000px;}
.yb1{bottom:505.515000px;}
.y7c{bottom:508.035000px;}
.y3c{bottom:508.755000px;}
.y1c{bottom:510.015000px;}
.y10e{bottom:513.795000px;}
.y27d{bottom:515.595000px;}
.y23e{bottom:517.215000px;}
.yb0{bottom:521.895000px;}
.y7b{bottom:524.415000px;}
.y3b{bottom:525.135000px;}
.y20c{bottom:526.064996px;}
.y1d7{bottom:526.215000px;}
.y1b{bottom:526.395000px;}
.y27c{bottom:529.095000px;}
.y10d{bottom:530.175000px;}
.y23d{bottom:532.695000px;}
.ye4{bottom:534.855000px;}
.yaf{bottom:538.275000px;}
.y7a{bottom:540.795000px;}
.y3a{bottom:541.515000px;}
.y27b{bottom:542.595000px;}
.y1a{bottom:542.775000px;}
.y10c{bottom:546.555000px;}
.y23c{bottom:548.175000px;}
.ye3{bottom:551.235000px;}
.yae{bottom:554.655000px;}
.y27a{bottom:556.095000px;}
.y79{bottom:557.175000px;}
.y39{bottom:557.895000px;}
.y1c9{bottom:562.215000px;}
.y10b{bottom:562.935000px;}
.ye2{bottom:567.615000px;}
.y23b{bottom:568.155000px;}
.y279{bottom:569.595000px;}
.yad{bottom:571.215000px;}
.y19{bottom:572.835000px;}
.y78{bottom:573.555000px;}
.y38{bottom:574.275000px;}
.y1c8{bottom:578.595000px;}
.y10a{bottom:579.315000px;}
.y278{bottom:583.095000px;}
.ye1{bottom:583.995000px;}
.yac{bottom:588.495000px;}
.y77{bottom:589.935000px;}
.y2a8{bottom:593.140019px;}
.y23a{bottom:593.535000px;}
.y1c7{bottom:594.975000px;}
.y109{bottom:595.695000px;}
.y277{bottom:596.595000px;}
.ye0{bottom:600.375000px;}
.y76{bottom:606.315000px;}
.y276{bottom:610.095000px;}
.y1c6{bottom:611.355000px;}
.y108{bottom:612.075000px;}
.y239{bottom:613.515000px;}
.ydf{bottom:616.755000px;}
.yab{bottom:618.375000px;}
.y75{bottom:622.875000px;}
.y275{bottom:623.595000px;}
.y1c5{bottom:627.915000px;}
.y107{bottom:628.455000px;}
.yde{bottom:633.135000px;}
.yaa{bottom:634.755000px;}
.y18{bottom:636.555000px;}
.y274{bottom:637.095000px;}
.y238{bottom:639.435000px;}
.y106{bottom:645.015000px;}
.y1c4{bottom:648.795000px;}
.ydd{bottom:649.545000px;}
.y273{bottom:650.625000px;}
.ya9{bottom:651.165000px;}
.y74{bottom:652.605000px;}
.y17{bottom:652.965000px;}
.y105{bottom:662.325000px;}
.y272{bottom:664.125000px;}
.y1c3{bottom:665.205000px;}
.ydc{bottom:665.925000px;}
.ya8{bottom:667.545000px;}
.y16{bottom:669.345000px;}
.y237{bottom:673.125000px;}
.y271{bottom:677.625000px;}
.y104{bottom:678.705000px;}
.y1c2{bottom:681.585000px;}
.ydb{bottom:682.305000px;}
.y73{bottom:682.845000px;}
.ya7{bottom:683.925000px;}
.y15{bottom:685.725000px;}
.y157{bottom:686.985000px;}
.y270{bottom:691.125000px;}
.y236{bottom:692.925000px;}
.y103{bottom:695.085000px;}
.y1c1{bottom:697.965000px;}
.yda{bottom:698.685000px;}
.ya6{bottom:700.305000px;}
.y14{bottom:702.105000px;}
.y156{bottom:702.645000px;}
.y26f{bottom:704.625000px;}
.y235{bottom:708.405000px;}
.y102{bottom:711.465000px;}
.y72{bottom:714.165000px;}
.y1c0{bottom:714.345000px;}
.yd9{bottom:715.065000px;}
.ya5{bottom:716.865000px;}
.y26e{bottom:718.125000px;}
.y12{bottom:718.665000px;}
.y188{bottom:719.399992px;}
.y155{bottom:719.565000px;}
.y13{bottom:721.365000px;}
.y234{bottom:723.885000px;}
.y101{bottom:727.845000px;}
.y291{bottom:728.734468px;}
.y71{bottom:730.545000px;}
.y1bf{bottom:730.725000px;}
.y16a{bottom:731.354992px;}
.y137{bottom:731.445000px;}
.yd7{bottom:731.625000px;}
.ya4{bottom:734.145000px;}
.yd8{bottom:734.325000px;}
.y11{bottom:735.585000px;}
.y233{bottom:739.365000px;}
.y100{bottom:744.225000px;}
.y26d{bottom:745.125000px;}
.y70{bottom:746.925000px;}
.y1be{bottom:747.105000px;}
.yd6{bottom:748.545000px;}
.ya3{bottom:750.525000px;}
.y10{bottom:751.965000px;}
.y232{bottom:755.025000px;}
.y26c{bottom:758.625000px;}
.y203{bottom:761.864992px;}
.y1d6{bottom:761.865000px;}
.y6f{bottom:763.305000px;}
.y1bd{bottom:763.485000px;}
.yd5{bottom:764.925000px;}
.ya2{bottom:766.905000px;}
.yf{bottom:768.345000px;}
.y231{bottom:770.505000px;}
.y26b{bottom:772.125000px;}
.yd4{bottom:778.605000px;}
.y6e{bottom:779.685000px;}
.y1bc{bottom:779.865000px;}
.ya1{bottom:783.285000px;}
.ye{bottom:784.725000px;}
.y26a{bottom:785.625000px;}
.yff{bottom:785.985000px;}
.y6d{bottom:796.065000px;}
.y1bb{bottom:796.245000px;}
.yfc{bottom:798.945000px;}
.y269{bottom:799.125000px;}
.yd3{bottom:799.485000px;}
.ya0{bottom:799.845000px;}
.yd{bottom:801.105000px;}
.y230{bottom:801.645000px;}
.y6c{bottom:812.445000px;}
.y1ba{bottom:812.625000px;}
.y9f{bottom:816.225000px;}
.yc{bottom:817.485000px;}
.y22f{bottom:818.025000px;}
.yd0{bottom:820.365000px;}
.y268{bottom:826.125000px;}
.yfb{bottom:827.565000px;}
.y6b{bottom:828.825000px;}
.y1b9{bottom:829.005000px;}
.y9e{bottom:832.785000px;}
.y22e{bottom:834.225000px;}
.y267{bottom:839.625000px;}
.yce{bottom:842.145000px;}
.yb{bottom:843.585000px;}
.yf9{bottom:844.125000px;}
.y6a{bottom:845.205000px;}
.y1b8{bottom:849.705000px;}
.y9d{bottom:850.245000px;}
.y266{bottom:853.125000px;}
.y22d{bottom:854.745000px;}
.yf4{bottom:861.405000px;}
.y69{bottom:861.585000px;}
.ya{bottom:864.465000px;}
.y1b7{bottom:865.185000px;}
.y265{bottom:866.625000px;}
.y9c{bottom:867.570000px;}
.ycd{bottom:869.010000px;}
.y68{bottom:878.190000px;}
.y264{bottom:880.170000px;}
.y1b6{bottom:880.890000px;}
.y192{bottom:882.277115px;}
.y9b{bottom:883.950000px;}
.ycc{bottom:885.390000px;}
.y9{bottom:885.750000px;}
.y22c{bottom:886.110000px;}
.y263{bottom:893.670000px;}
.y67{bottom:894.570000px;}
.y1e1{bottom:897.599992px;}
.y1b5{bottom:897.630000px;}
.ycb{bottom:901.770000px;}
.y22b{bottom:902.310000px;}
.y262{bottom:907.170000px;}
.y8{bottom:907.530000px;}
.y66{bottom:910.950000px;}
.y9a{bottom:913.650000px;}
.y22a{bottom:917.790000px;}
.yf3{bottom:919.770000px;}
.y261{bottom:920.670000px;}
.yca{bottom:922.830000px;}
.y65{bottom:927.330000px;}
.y7{bottom:928.950000px;}
.y99{bottom:930.030000px;}
.y229{bottom:933.450000px;}
.y260{bottom:934.170000px;}
.yf2{bottom:936.150000px;}
.yc9{bottom:939.210000px;}
.y64{bottom:943.710000px;}
.y25f{bottom:947.670000px;}
.y228{bottom:948.930000px;}
.yf1{bottom:952.530000px;}
.yc8{bottom:955.590000px;}
.y6{bottom:957.030000px;}
.y63{bottom:960.090000px;}
.y25e{bottom:961.170000px;}
.y227{bottom:964.410000px;}
.yf0{bottom:968.910000px;}
.yc7{bottom:971.970000px;}
.y25d{bottom:974.670000px;}
.y62{bottom:976.470000px;}
.y226{bottom:979.890000px;}
.yef{bottom:985.290000px;}
.y154{bottom:985.470000px;}
.y1ea{bottom:986.048874px;}
.y25c{bottom:988.170000px;}
.yc6{bottom:988.350000px;}
.y5{bottom:989.250000px;}
.y98{bottom:992.850000px;}
.y225{bottom:995.550000px;}
.y25b{bottom:1001.670000px;}
.y1d5{bottom:1001.850000px;}
.yc5{bottom:1004.730000px;}
.y153{bottom:1005.630000px;}
.y61{bottom:1006.350000px;}
.y97{bottom:1009.230000px;}
.y224{bottom:1011.030000px;}
.y4{bottom:1014.090000px;}
.y25a{bottom:1015.170000px;}
.y152{bottom:1022.010000px;}
.y60{bottom:1022.730000px;}
.yc4{bottom:1025.430000px;}
.y96{bottom:1025.610000px;}
.y223{bottom:1026.510000px;}
.y259{bottom:1028.670000px;}
.y151{bottom:1038.390000px;}
.y5f{bottom:1039.110000px;}
.y95{bottom:1041.990000px;}
.y258{bottom:1042.170000px;}
.y3{bottom:1048.290000px;}
.y150{bottom:1054.770000px;}
.y5e{bottom:1055.490000px;}
.y257{bottom:1055.670000px;}
.y222{bottom:1057.650000px;}
.y94{bottom:1058.370000px;}
.y256{bottom:1069.170000px;}
.y14f{bottom:1071.150000px;}
.y5d{bottom:1071.870000px;}
.y221{bottom:1073.130000px;}
.y93{bottom:1074.750000px;}
.y2{bottom:1081.230000px;}
.y255{bottom:1082.670000px;}
.y14d{bottom:1087.740000px;}
.y5c{bottom:1088.280000px;}
.y220{bottom:1088.640000px;}
.y14e{bottom:1090.440000px;}
.y92{bottom:1091.160000px;}
.y254{bottom:1096.200000px;}
.y21e{bottom:1104.480000px;}
.y5b{bottom:1104.660000px;}
.y21f{bottom:1106.640000px;}
.y253{bottom:1109.700000px;}
.y1{bottom:1110.600000px;}
.y287{bottom:1111.140000px;}
.y91{bottom:1120.860000px;}
.y5a{bottom:1121.040000px;}
.y252{bottom:1123.200000px;}
.h26{height:9.300677px;}
.h56{height:9.760231px;}
.h1a{height:16.545000px;}
.h1e{height:16.560000px;}
.h6a{height:16.565685px;}
.h62{height:16.661834px;}
.h66{height:16.723242px;}
.h29{height:16.725000px;}
.h22{height:16.772284px;}
.h25{height:16.839724px;}
.h27{height:16.858578px;}
.h52{height:17.078127px;}
.h55{height:17.801556px;}
.h57{height:17.850171px;}
.h12{height:18.180000px;}
.h40{height:20.400620px;}
.h15{height:20.880000px;}
.h34{height:24.506590px;}
.h2d{height:24.512105px;}
.h42{height:24.833243px;}
.h4a{height:24.887013px;}
.h59{height:25.417713px;}
.h3c{height:26.141936px;}
.h7e{height:28.424086px;}
.h1f{height:28.620000px;}
.h69{height:30.268997px;}
.h4b{height:30.294435px;}
.h21{height:30.333349px;}
.h23{height:30.408187px;}
.h61{height:30.444682px;}
.h67{height:30.556874px;}
.h65{height:30.556888px;}
.h41{height:30.567395px;}
.h63{height:30.595303px;}
.h43{height:30.608901px;}
.h6b{height:30.669773px;}
.h44{height:30.670119px;}
.h5a{height:30.699907px;}
.h5b{height:30.940444px;}
.h51{height:31.205337px;}
.h53{height:31.285947px;}
.h3d{height:31.675367px;}
.h3e{height:31.822025px;}
.h5f{height:32.075441px;}
.h10{height:32.218500px;}
.h28{height:33.105000px;}
.h1d{height:33.142500px;}
.h4f{height:33.473589px;}
.h4e{height:33.518220px;}
.h46{height:33.578421px;}
.h45{height:33.623192px;}
.h5c{height:34.414209px;}
.h74{height:34.557099px;}
.h80{height:34.600038px;}
.h5e{height:36.308271px;}
.h7a{height:36.423434px;}
.h72{height:36.571289px;}
.h71{height:37.494141px;}
.h4{height:38.158594px;}
.h37{height:38.251880px;}
.h5d{height:38.959349px;}
.h36{height:40.796801px;}
.h35{height:40.866539px;}
.h2e{height:40.880536px;}
.h2f{height:40.950417px;}
.h19{height:40.985156px;}
.he{height:41.493516px;}
.h5{height:41.758594px;}
.h1b{height:42.086250px;}
.h7f{height:42.589405px;}
.h81{height:42.647235px;}
.h82{height:42.732529px;}
.h7b{height:44.122174px;}
.h7c{height:44.337475px;}
.h2a{height:44.852344px;}
.hc{height:45.024609px;}
.h1c{height:45.573750px;}
.h4c{height:45.770009px;}
.h4d{height:45.882901px;}
.h48{height:45.913351px;}
.h47{height:45.974833px;}
.h9{height:46.524375px;}
.h84{height:46.784653px;}
.h83{height:46.847033px;}
.h13{height:47.344922px;}
.h6d{height:48.410156px;}
.h6c{height:48.684375px;}
.h18{height:49.702500px;}
.hf{height:49.992188px;}
.h6f{height:50.171484px;}
.h14{height:50.558906px;}
.h2b{height:50.992031px;}
.h3a{height:51.053509px;}
.h32{height:51.107189px;}
.h70{height:51.519375px;}
.hd{height:51.892031px;}
.h39{height:52.303591px;}
.h31{height:52.410944px;}
.h38{height:52.425205px;}
.h30{height:52.532750px;}
.h17{height:52.998047px;}
.h16{height:54.421875px;}
.h7{height:55.824609px;}
.h8{height:57.324375px;}
.h75{height:57.633269px;}
.h76{height:57.731787px;}
.h2{height:58.651172px;}
.h6e{height:59.324063px;}
.h6{height:60.226875px;}
.hb{height:62.692031px;}
.h11{height:63.641250px;}
.h86{height:63.970852px;}
.h85{height:64.040603px;}
.ha{height:66.082500px;}
.h78{height:73.888806px;}
.h77{height:73.973435px;}
.h3{height:80.464922px;}
.h3f{height:81.083773px;}
.h1{height:106.633125px;}
.h7d{height:112.973630px;}
.h24{height:136.247034px;}
.h54{height:137.744078px;}
.h68{height:231.275009px;}
.h64{height:231.305532px;}
.h60{height:232.049195px;}
.h50{height:236.400008px;}
.h20{height:242.177870px;}
.h49{height:250.995000px;}
.h3b{height:258.304614px;}
.h58{height:259.260000px;}
.h2c{height:267.060914px;}
.h33{height:283.800004px;}
.h79{height:360.347214px;}
.h73{height:374.485532px;}
.h0{height:1188.000000px;}
.w1{width:7.545000px;}
.w11{width:31.305000px;}
.w5{width:37.620000px;}
.w4{width:39.981000px;}
.wd{width:41.565000px;}
.w10{width:41.745000px;}
.wf{width:42.105000px;}
.w8{width:42.465000px;}
.w6{width:42.480000px;}
.wc{width:42.645000px;}
.we{width:44.841000px;}
.w16{width:53.085000px;}
.w15{width:53.269500px;}
.w1e{width:55.275957px;}
.w3{width:62.805000px;}
.w17{width:63.741000px;}
.w18{width:63.900000px;}
.w19{width:64.980000px;}
.w14{width:71.854500px;}
.wb{width:73.245000px;}
.w28{width:76.996593px;}
.w7{width:82.656000px;}
.w9{width:84.045000px;}
.wa{width:86.961000px;}
.w2{width:144.214500px;}
.w13{width:205.557530px;}
.w21{width:208.806622px;}
.w1b{width:314.072429px;}
.w1a{width:335.101911px;}
.w1c{width:335.773553px;}
.w25{width:348.678184px;}
.w22{width:349.505750px;}
.w20{width:350.551742px;}
.w1d{width:352.553224px;}
.w24{width:353.134634px;}
.w23{width:353.157178px;}
.w12{width:359.687109px;}
.w1f{width:366.165537px;}
.w26{width:471.702709px;}
.w27{width:490.342897px;}
.w0{width:918.000000px;}
.x62{left:-38.117232px;}
.x40{left:-27.364408px;}
.x16{left:-1.815000px;}
.x0{left:0.000000px;}
.x14{left:1.425000px;}
.xe{left:3.045000px;}
.x28{left:4.085512px;}
.x4f{left:6.585754px;}
.x13{left:8.098500px;}
.x10{left:9.180000px;}
.x15{left:10.620000px;}
.x12{left:11.880000px;}
.x21{left:13.140000px;}
.x1e{left:14.385000px;}
.xc{left:16.365000px;}
.x22{left:17.625000px;}
.x56{left:18.871087px;}
.x35{left:20.113917px;}
.x1c{left:21.225000px;}
.x51{left:22.832113px;}
.x29{left:24.862041px;}
.x2f{left:27.525000px;}
.x5a{left:29.244411px;}
.x37{left:32.954116px;}
.x63{left:35.495517px;}
.x45{left:37.396177px;}
.x3c{left:40.350884px;}
.x1a{left:45.390000px;}
.x5e{left:54.246465px;}
.x26{left:63.605040px;}
.xa{left:72.034500px;}
.x9{left:73.981500px;}
.x3b{left:76.815647px;}
.x53{left:77.925902px;}
.x3{left:82.080000px;}
.x41{left:85.021878px;}
.x1{left:86.940000px;}
.x54{left:91.998006px;}
.x34{left:94.312499px;}
.x38{left:103.751124px;}
.x64{left:116.473607px;}
.x65{left:117.996138px;}
.x2c{left:145.846500px;}
.x6{left:167.430000px;}
.x47{left:179.943355px;}
.x44{left:183.849729px;}
.x3a{left:192.580700px;}
.x3e{left:193.797101px;}
.x52{left:197.058986px;}
.x2d{left:199.125000px;}
.x49{left:202.539349px;}
.x5d{left:213.824998px;}
.x50{left:214.858101px;}
.xb{left:218.205000px;}
.x27{left:227.082801px;}
.x5c{left:236.521328px;}
.x2e{left:252.225000px;}
.x68{left:254.135770px;}
.x42{left:264.525519px;}
.x60{left:267.989239px;}
.xd{left:281.025000px;}
.x43{left:286.171357px;}
.x61{left:291.154157px;}
.x5{left:297.030000px;}
.x39{left:300.644899px;}
.x36{left:302.049664px;}
.x57{left:303.375000px;}
.x30{left:315.975000px;}
.xf{left:321.015000px;}
.x46{left:334.915215px;}
.x48{left:355.036355px;}
.x11{left:358.635000px;}
.x3d{left:364.943083px;}
.x66{left:366.513044px;}
.x31{left:379.875000px;}
.x17{left:393.015000px;}
.x67{left:396.664592px;}
.x2{left:401.475000px;}
.x2b{left:417.855000px;}
.x5b{left:426.228307px;}
.x2a{left:429.375000px;}
.x4a{left:432.615000px;}
.x4b{left:433.875000px;}
.x18{left:441.795000px;}
.x19{left:468.255000px;}
.x7{left:476.355000px;}
.x55{left:478.499996px;}
.x32{left:481.935000px;}
.x58{left:497.595000px;}
.x5f{left:506.386878px;}
.x3f{left:533.171973px;}
.x1b{left:550.920000px;}
.x4{left:581.325000px;}
.x1d{left:593.400000px;}
.x23{left:635.880000px;}
.x1f{left:677.460000px;}
.x59{left:704.265000px;}
.x24{left:722.310000px;}
.x20{left:764.430000px;}
.x25{left:806.190000px;}
.x4e{left:825.090000px;}
.x8{left:828.510000px;}
.x4d{left:829.590000px;}
.x4c{left:831.750000px;}
.x33{left:842.550000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.va{vertical-align:-18.560000pt;}
.v6{vertical-align:-9.600000pt;}
.v5{vertical-align:-8.320000pt;}
.vc{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.200000pt;}
.ve{vertical-align:5.097024pt;}
.v11{vertical-align:7.101660pt;}
.vd{vertical-align:8.320000pt;}
.v10{vertical-align:11.569558pt;}
.vf{vertical-align:12.466757pt;}
.vb{vertical-align:16.000000pt;}
.v9{vertical-align:18.560000pt;}
.v7{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.v8{vertical-align:32.640000pt;}
.ls1b{letter-spacing:-1.600000pt;}
.ls10{letter-spacing:-1.232000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls5d{letter-spacing:-0.864000pt;}
.ls1d{letter-spacing:-0.810667pt;}
.ls6a{letter-spacing:-0.736000pt;}
.ls60{letter-spacing:-0.676544pt;}
.ls1c{letter-spacing:-0.592000pt;}
.ls69{letter-spacing:-0.544000pt;}
.ls6c{letter-spacing:-0.480000pt;}
.ls6e{letter-spacing:-0.472533pt;}
.ls6b{letter-spacing:-0.411733pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.313600pt;}
.ls3a{letter-spacing:-0.295467pt;}
.ls5f{letter-spacing:-0.251225pt;}
.ls7d{letter-spacing:-0.249702pt;}
.ls6d{letter-spacing:-0.243733pt;}
.ls76{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.196267pt;}
.ls7e{letter-spacing:-0.194863pt;}
.ls67{letter-spacing:-0.192000pt;}
.ls79{letter-spacing:-0.187378pt;}
.ls47{letter-spacing:-0.179217pt;}
.ls5e{letter-spacing:-0.174252pt;}
.ls4c{letter-spacing:-0.170614pt;}
.ls27{letter-spacing:-0.161067pt;}
.ls77{letter-spacing:-0.142392pt;}
.ls48{letter-spacing:-0.139857pt;}
.ls3d{letter-spacing:-0.132911pt;}
.ls41{letter-spacing:-0.132639pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls4f{letter-spacing:-0.110816pt;}
.ls3b{letter-spacing:-0.101002pt;}
.ls42{letter-spacing:-0.100795pt;}
.ls5c{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.089600pt;}
.ls29{letter-spacing:-0.079467pt;}
.ls78{letter-spacing:-0.053165pt;}
.ls13{letter-spacing:-0.048640pt;}
.ls7f{letter-spacing:-0.038625pt;}
.ls3c{letter-spacing:-0.037711pt;}
.ls49{letter-spacing:-0.027722pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.013852pt;}
.ls44{letter-spacing:0.015827pt;}
.ls3e{letter-spacing:0.015860pt;}
.ls7a{letter-spacing:0.022332pt;}
.ls15{letter-spacing:0.024320pt;}
.ls4b{letter-spacing:0.027722pt;}
.ls0{letter-spacing:0.030720pt;}
.ls46{letter-spacing:0.031581pt;}
.ls40{letter-spacing:0.031646pt;}
.ls81{letter-spacing:0.038625pt;}
.ls50{letter-spacing:0.041454pt;}
.ls4a{letter-spacing:0.041583pt;}
.ls7c{letter-spacing:0.044614pt;}
.ls70{letter-spacing:0.047360pt;}
.ls43{letter-spacing:0.047371pt;}
.ls11{letter-spacing:0.048640pt;}
.ls80{letter-spacing:0.057938pt;}
.ls4d{letter-spacing:0.069260pt;}
.ls1e{letter-spacing:0.079360pt;}
.ls2d{letter-spacing:0.081920pt;}
.ls68{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.096640pt;}
.ls65{letter-spacing:0.136320pt;}
.ls45{letter-spacing:0.158271pt;}
.ls3f{letter-spacing:0.158595pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6f{letter-spacing:0.167467pt;}
.lsf{letter-spacing:0.172267pt;}
.lsd{letter-spacing:0.196267pt;}
.ls9{letter-spacing:0.196480pt;}
.ls32{letter-spacing:0.210959pt;}
.ls30{letter-spacing:0.211392pt;}
.ls7b{letter-spacing:0.223324pt;}
.ls63{letter-spacing:0.228480pt;}
.ls33{letter-spacing:0.230539pt;}
.ls2f{letter-spacing:0.231012pt;}
.ls20{letter-spacing:0.284160pt;}
.ls56{letter-spacing:0.284565pt;}
.ls21{letter-spacing:0.288000pt;}
.ls72{letter-spacing:0.298020pt;}
.ls1{letter-spacing:0.320000pt;}
.ls71{letter-spacing:0.325680pt;}
.ls1a{letter-spacing:0.402560pt;}
.ls36{letter-spacing:0.415834pt;}
.ls2e{letter-spacing:0.418560pt;}
.ls12{letter-spacing:0.443733pt;}
.ls2c{letter-spacing:0.448000pt;}
.ls34{letter-spacing:0.473710pt;}
.ls31{letter-spacing:0.474683pt;}
.ls8{letter-spacing:0.512000pt;}
.ls75{letter-spacing:0.579380pt;}
.lsa{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.666667pt;}
.ls73{letter-spacing:0.669206pt;}
.ls24{letter-spacing:0.760654pt;}
.ls25{letter-spacing:0.761505pt;}
.ls7{letter-spacing:0.772480pt;}
.ls66{letter-spacing:0.800000pt;}
.ls53{letter-spacing:0.819272pt;}
.ls54{letter-spacing:0.821509pt;}
.ls55{letter-spacing:0.849536pt;}
.ls6{letter-spacing:0.932480pt;}
.ls17{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.318459pt;}
.ls23{letter-spacing:1.321712pt;}
.ls5a{letter-spacing:1.393054pt;}
.ls57{letter-spacing:1.401140pt;}
.ls59{letter-spacing:1.406303pt;}
.ls58{letter-spacing:1.408071pt;}
.ls5b{letter-spacing:1.411499pt;}
.ls51{letter-spacing:1.436147pt;}
.ls52{letter-spacing:1.439857pt;}
.ls64{letter-spacing:2.080000pt;}
.ls19{letter-spacing:2.263040pt;}
.ls61{letter-spacing:2.579200pt;}
.ls2b{letter-spacing:2.720000pt;}
.ls3{letter-spacing:3.219200pt;}
.ls4{letter-spacing:5.280000pt;}
.ls5{letter-spacing:7.200000pt;}
.ls62{letter-spacing:7.840000pt;}
.ls38{letter-spacing:10.541336pt;}
.ls39{letter-spacing:10.587509pt;}
.ls37{letter-spacing:87.688611pt;}
.ls35{letter-spacing:109.454535pt;}
.ls74{letter-spacing:152.502479pt;}
.ws53{word-spacing:-58.015252pt;}
.ws15{word-spacing:-50.560000pt;}
.ws2b{word-spacing:-47.371035pt;}
.ws34{word-spacing:-41.638880pt;}
.ws39{word-spacing:-41.508883pt;}
.ws20{word-spacing:-37.120000pt;}
.ws4b{word-spacing:-16.749319pt;}
.ws46{word-spacing:-16.000000pt;}
.ws4c{word-spacing:-15.168676pt;}
.ws10{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws54{word-spacing:-13.132614pt;}
.wsd{word-spacing:-13.083733pt;}
.ws45{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.836267pt;}
.ws9{word-spacing:-12.812267pt;}
.wsb{word-spacing:-12.688640pt;}
.wse{word-spacing:-12.664320pt;}
.ws4{word-spacing:-12.640000pt;}
.ws5{word-spacing:-12.615680pt;}
.ws16{word-spacing:-12.591360pt;}
.ws4e{word-spacing:-12.522623pt;}
.ws1f{word-spacing:-12.326400pt;}
.ws41{word-spacing:-12.096000pt;}
.ws13{word-spacing:-12.048000pt;}
.ws3b{word-spacing:-12.000000pt;}
.ws3a{word-spacing:-11.904000pt;}
.ws26{word-spacing:-11.894646pt;}
.ws2c{word-spacing:-11.870295pt;}
.ws14{word-spacing:-11.829333pt;}
.ws49{word-spacing:-11.743604pt;}
.ws8{word-spacing:-11.680000pt;}
.ws48{word-spacing:-11.654376pt;}
.ws4a{word-spacing:-11.629556pt;}
.ws42{word-spacing:-11.456000pt;}
.wsa{word-spacing:-11.408000pt;}
.ws43{word-spacing:-11.360000pt;}
.ws44{word-spacing:-11.116267pt;}
.ws12{word-spacing:-11.040000pt;}
.ws27{word-spacing:-10.759473pt;}
.ws2d{word-spacing:-10.737435pt;}
.ws18{word-spacing:-10.720000pt;}
.ws1a{word-spacing:-10.558933pt;}
.ws19{word-spacing:-10.400000pt;}
.ws37{word-spacing:-10.388964pt;}
.ws50{word-spacing:-9.772393pt;}
.ws1b{word-spacing:-9.760000pt;}
.ws52{word-spacing:-9.656334pt;}
.ws35{word-spacing:-9.425579pt;}
.ws1c{word-spacing:-9.280000pt;}
.ws1e{word-spacing:-9.200533pt;}
.ws1d{word-spacing:-9.190400pt;}
.ws2f{word-spacing:-8.987774pt;}
.ws40{word-spacing:-8.977206pt;}
.ws3d{word-spacing:-8.738782pt;}
.ws3e{word-spacing:-8.725981pt;}
.ws1{word-spacing:-8.640000pt;}
.ws24{word-spacing:-8.329995pt;}
.ws23{word-spacing:-8.266704pt;}
.ws2a{word-spacing:-8.249771pt;}
.ws25{word-spacing:-8.249098pt;}
.ws29{word-spacing:-8.232202pt;}
.ws7{word-spacing:-8.000000pt;}
.wsf{word-spacing:-7.872000pt;}
.ws31{word-spacing:-7.013871pt;}
.ws33{word-spacing:-6.930573pt;}
.ws38{word-spacing:-6.925976pt;}
.ws17{word-spacing:-6.720000pt;}
.ws21{word-spacing:-6.080000pt;}
.ws3f{word-spacing:-5.988954pt;}
.ws0{word-spacing:-0.037120pt;}
.ws2{word-spacing:-0.032000pt;}
.ws11{word-spacing:0.000000pt;}
.ws36{word-spacing:62.530792pt;}
.ws30{word-spacing:75.024297pt;}
.ws2e{word-spacing:91.445436pt;}
.ws4f{word-spacing:104.530994pt;}
.ws32{word-spacing:119.354040pt;}
.ws4d{word-spacing:127.410487pt;}
.ws51{word-spacing:166.295411pt;}
.ws28{word-spacing:196.890706pt;}
.ws3c{word-spacing:202.794919pt;}
.ws22{word-spacing:285.226497pt;}
.ws47{word-spacing:402.111538pt;}
._35{margin-left:-6.127787pt;}
._39{margin-left:-5.196831pt;}
._20{margin-left:-3.505457pt;}
._0{margin-left:-1.650773pt;}
._1{width:1.245440pt;}
._2{width:3.009493pt;}
._4{width:4.477653pt;}
._3{width:5.730987pt;}
._5{width:6.717227pt;}
._a{width:7.851307pt;}
._6{width:9.351040pt;}
._e{width:10.349227pt;}
._9{width:11.426560pt;}
._34{width:13.040000pt;}
._8{width:14.055680pt;}
._7{width:15.521920pt;}
._10{width:16.735360pt;}
._f{width:17.898240pt;}
._11{width:20.482987pt;}
._b{width:21.386880pt;}
._14{width:22.411520pt;}
._15{width:24.521600pt;}
._16{width:25.633920pt;}
._1e{width:26.880000pt;}
._1f{width:28.314667pt;}
._19{width:30.101760pt;}
._18{width:31.094400pt;}
._17{width:40.195200pt;}
._1c{width:46.219087pt;}
._13{width:49.783893pt;}
._12{width:50.762240pt;}
._c{width:53.273387pt;}
._d{width:54.237653pt;}
._22{width:71.845401pt;}
._33{width:83.078360pt;}
._32{width:84.254222pt;}
._23{width:87.822720pt;}
._24{width:89.004160pt;}
._2c{width:93.699853pt;}
._26{width:95.439916pt;}
._25{width:97.026946pt;}
._21{width:101.216456pt;}
._37{width:107.541333pt;}
._36{width:108.794667pt;}
._2f{width:135.439311pt;}
._2e{width:136.602199pt;}
._2a{width:140.350854pt;}
._1d{width:141.386451pt;}
._1b{width:147.539639pt;}
._28{width:178.893875pt;}
._27{width:180.397625pt;}
._31{width:187.424010pt;}
._30{width:188.787403pt;}
._2b{width:189.936568pt;}
._2d{width:190.921676pt;}
._29{width:265.465110pt;}
._1a{width:331.340152pt;}
._38{width:415.231786pt;}
.fs10{font-size:7.926669pt;}
.fs32{font-size:8.318332pt;}
.fs43{font-size:14.118403pt;}
.fs3d{font-size:14.200348pt;}
.fs40{font-size:14.252684pt;}
.fsd{font-size:14.294481pt;}
.fsf{font-size:14.351958pt;}
.fs11{font-size:14.368026pt;}
.fs2f{font-size:14.555141pt;}
.fs31{font-size:15.171697pt;}
.fs33{font-size:15.213129pt;}
.fsb{font-size:24.320000pt;}
.fs21{font-size:25.229752pt;}
.fs42{font-size:25.797297pt;}
.fsc{font-size:25.852142pt;}
.fse{font-size:25.915924pt;}
.fs3c{font-size:25.947029pt;}
.fs41{font-size:26.042646pt;}
.fs3f{font-size:26.042657pt;}
.fs3e{font-size:26.075398pt;}
.fs44{font-size:26.138866pt;}
.fs38{font-size:26.499797pt;}
.fs2e{font-size:26.595310pt;}
.fs30{font-size:26.664012pt;}
.fs9{font-size:26.880000pt;}
.fs2c{font-size:27.703904pt;}
.fs23{font-size:27.722290pt;}
.fs24{font-size:27.777735pt;}
.fs3a{font-size:29.750292pt;}
.fs18{font-size:30.307667pt;}
.fs12{font-size:30.314488pt;}
.fs22{font-size:30.711643pt;}
.fs28{font-size:30.778142pt;}
.fs34{font-size:31.434466pt;}
.fs6{font-size:32.000000pt;}
.fs1e{font-size:32.330123pt;}
.fs5{font-size:34.560000pt;}
.fs4e{font-size:35.152493pt;}
.fs1a{font-size:36.949408pt;}
.fs19{font-size:37.012569pt;}
.fs13{font-size:37.025246pt;}
.fs14{font-size:37.088537pt;}
.fs4{font-size:37.120000pt;}
.fs29{font-size:37.465581pt;}
.fs35{font-size:37.967035pt;}
.fs36{font-size:38.264510pt;}
.fs50{font-size:38.625334pt;}
.fs51{font-size:38.702585pt;}
.fs1f{font-size:39.173401pt;}
.fs20{font-size:39.354775pt;}
.fs37{font-size:39.722149pt;}
.fs2a{font-size:41.453612pt;}
.fs2d{font-size:41.508883pt;}
.fs2b{font-size:41.555856pt;}
.fs26{font-size:41.583436pt;}
.fs25{font-size:41.638880pt;}
.fs27{font-size:41.639119pt;}
.fs46{font-size:42.737282pt;}
.fs4f{font-size:42.790385pt;}
.fs3{font-size:42.880000pt;}
.fs3b{font-size:44.630108pt;}
.fs39{font-size:44.680531pt;}
.fs4b{font-size:45.045406pt;}
.fs45{font-size:45.440000pt;}
.fs1b{font-size:47.371035pt;}
.fs16{font-size:47.468264pt;}
.fs1c{font-size:47.481180pt;}
.fs15{font-size:47.578583pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs47{font-size:52.198091pt;}
.fs48{font-size:52.287319pt;}
.fs1{font-size:53.120000pt;}
.fs4c{font-size:54.566553pt;}
.fs4d{font-size:54.832819pt;}
.fs8{font-size:56.320000pt;}
.fs53{font-size:57.938001pt;}
.fs54{font-size:58.001174pt;}
.fs52{font-size:58.015252pt;}
.fs1d{font-size:63.224542pt;}
.fs17{font-size:63.291019pt;}
.fs2{font-size:64.000000pt;}
.fs4a{font-size:66.920630pt;}
.fs49{font-size:66.997278pt;}
.fs0{font-size:90.880000pt;}
.y2a9{bottom:-135.200367pt;}
.y2aa{bottom:-123.555520pt;}
.y193{bottom:-97.036411pt;}
.y194{bottom:-88.678636pt;}
.y2ab{bottom:-84.186056pt;}
.y195{bottom:-60.422267pt;}
.y2ac{bottom:-44.944696pt;}
.y196{bottom:-32.257840pt;}
.y20f{bottom:-17.259913pt;}
.y1e4{bottom:-16.825517pt;}
.y128{bottom:-16.499496pt;}
.y206{bottom:-15.780990pt;}
.y218{bottom:-14.891682pt;}
.y131{bottom:-7.747980pt;}
.y1ed{bottom:-7.077374pt;}
.y2ad{bottom:-5.575953pt;}
.y197{bottom:-4.001989pt;}
.y0{bottom:0.000000pt;}
.y210{bottom:1.225342pt;}
.y1a7{bottom:1.393164pt;}
.y186{bottom:1.585550pt;}
.y1e5{bottom:2.051773pt;}
.y29d{bottom:2.059858pt;}
.y2bd{bottom:2.346491pt;}
.y207{bottom:2.636435pt;}
.y129{bottom:2.707420pt;}
.y132{bottom:2.920874pt;}
.y219{bottom:3.419509pt;}
.y176{bottom:3.540081pt;}
.y1ee{bottom:3.704175pt;}
.y1b0{bottom:4.877190pt;}
.y1ff{bottom:5.488598pt;}
.y143{bottom:6.066667pt;}
.yf6{bottom:6.080000pt;}
.yf8{bottom:6.120000pt;}
.y147{bottom:6.226667pt;}
.yfa{bottom:6.240000pt;}
.y145{bottom:6.386667pt;}
.ycf{bottom:6.560000pt;}
.y19d{bottom:6.989633pt;}
.yd1{bottom:7.040000pt;}
.yd2{bottom:7.840000pt;}
.y134{bottom:8.607434pt;}
.y1f0{bottom:9.443882pt;}
.y2b3{bottom:9.738621pt;}
.y212{bottom:11.071402pt;}
.yfe{bottom:11.520000pt;}
.y1e7{bottom:12.107018pt;}
.y209{bottom:12.446292pt;}
.y12b{bottom:12.929901pt;}
.y21b{bottom:13.172710pt;}
.y133{bottom:13.596315pt;}
.y16b{bottom:14.399379pt;}
.y1ef{bottom:14.486000pt;}
.y1a9{bottom:15.322149pt;}
.y214{bottom:15.343625pt;}
.y189{bottom:15.387646pt;}
.y19c{bottom:16.350364pt;}
.y59{bottom:16.480000pt;}
.yfd{bottom:16.960000pt;}
.y292{bottom:17.371680pt;}
.y179{bottom:17.708263pt;}
.y1f4{bottom:18.541660pt;}
.y1f2{bottom:19.030707pt;}
.y211{bottom:19.710598pt;}
.y142{bottom:20.786667pt;}
.yf7{bottom:20.840000pt;}
.y1e6{bottom:20.929064pt;}
.yf5{bottom:21.000000pt;}
.y208{bottom:21.053765pt;}
.y21d{bottom:21.671852pt;}
.y21a{bottom:21.730513pt;}
.y29f{bottom:21.848312pt;}
.y12a{bottom:21.902537pt;}
.y2b2{bottom:22.780884pt;}
.y198{bottom:24.253604pt;}
.y1aa{bottom:25.517918pt;}
.y19b{bottom:25.706564pt;}
.y18a{bottom:26.097535pt;}
.y20b{bottom:32.561706pt;}
.y2ae{bottom:33.792428pt;}
.y2b1{bottom:35.816832pt;}
.y1f5{bottom:35.860401pt;}
.y2a0{bottom:36.770349pt;}
.y136{bottom:38.027208pt;}
.y16c{bottom:40.707993pt;}
.y1e9{bottom:40.749275pt;}
.y19a{bottom:44.420257pt;}
.y17a{bottom:44.993273pt;}
.y12d{bottom:49.221169pt;}
.y199{bottom:52.506088pt;}
.y293{bottom:54.458522pt;}
.y202{bottom:55.044651pt;}
.y2b0{bottom:61.890531pt;}
.y18b{bottom:62.306052pt;}
.y16d{bottom:62.432636pt;}
.y1f6{bottom:63.481000pt;}
.y37{bottom:63.840000pt;}
.y55{bottom:64.000000pt;}
.y57{bottom:64.960000pt;}
.y17b{bottom:66.674733pt;}
.y1fe{bottom:69.863602pt;}
.y1ab{bottom:72.845938pt;}
.y2af{bottom:73.156479pt;}
.y36{bottom:78.400000pt;}
.y54{bottom:78.560000pt;}
.y58{bottom:79.520000pt;}
.y16e{bottom:81.513559pt;}
.y294{bottom:85.085864pt;}
.y17c{bottom:86.695574pt;}
.y2a1{bottom:87.219502pt;}
.y1f7{bottom:91.099987pt;}
.y135{bottom:91.852318pt;}
.y35{bottom:92.960000pt;}
.y53{bottom:93.120000pt;}
.y1a5{bottom:93.239305pt;}
.y1f1{bottom:93.534654pt;}
.y56{bottom:96.000000pt;}
.y18c{bottom:98.396750pt;}
.y16f{bottom:102.577602pt;}
.y175{bottom:104.680716pt;}
.y1a6{bottom:105.460220pt;}
.y17d{bottom:106.736154pt;}
.y200{bottom:106.886187pt;}
.y52{bottom:107.840000pt;}
.y295{bottom:111.989816pt;}
.y185{bottom:112.387785pt;}
.y1d4{bottom:113.120000pt;}
.yee{bottom:118.560000pt;}
.y1f8{bottom:118.720587pt;}
.yc3{bottom:119.040000pt;}
.y1b1{bottom:119.495793pt;}
.y33{bottom:119.680000pt;}
.y190{bottom:120.050498pt;}
.y1ac{bottom:120.170799pt;}
.y1fc{bottom:120.304992pt;}
.y1e0{bottom:120.320000pt;}
.y130{bottom:121.732908pt;}
.y34{bottom:122.080000pt;}
.y51{bottom:122.400000pt;}
.y170{bottom:123.252668pt;}
.y1ec{bottom:123.724870pt;}
.y124{bottom:124.320000pt;}
.y251{bottom:126.080000pt;}
.y17e{bottom:127.368871pt;}
.y12f{bottom:127.439756pt;}
.y1d3{bottom:127.680000pt;}
.y1eb{bottom:129.484209pt;}
.y169{bottom:130.240000pt;}
.y2bb{bottom:130.312222pt;}
.yed{bottom:133.120000pt;}
.yc2{bottom:133.600000pt;}
.y14c{bottom:134.240000pt;}
.y90{bottom:134.400000pt;}
.y18d{bottom:134.603607pt;}
.y32{bottom:134.720000pt;}
.y1df{bottom:134.880000pt;}
.y50{bottom:136.960000pt;}
.y2a2{bottom:137.504498pt;}
.y250{bottom:138.080000pt;}
.y123{bottom:138.880000pt;}
.y296{bottom:141.676551pt;}
.y1d2{bottom:142.240000pt;}
.y171{bottom:144.455159pt;}
.y29c{bottom:144.641513pt;}
.y168{bottom:144.800000pt;}
.y1f9{bottom:146.452515pt;}
.y2bc{bottom:147.347607pt;}
.yec{bottom:147.680000pt;}
.yc1{bottom:148.160000pt;}
.y17f{bottom:148.527934pt;}
.y14b{bottom:148.800000pt;}
.y8f{bottom:149.120000pt;}
.y31{bottom:149.280000pt;}
.y24f{bottom:150.080000pt;}
.y1a2{bottom:153.229190pt;}
.y122{bottom:153.440000pt;}
.y1de{bottom:153.760000pt;}
.y213{bottom:155.250663pt;}
.y21c{bottom:155.993590pt;}
.y20a{bottom:156.091878pt;}
.y1d1{bottom:156.800000pt;}
.y1e8{bottom:159.343013pt;}
.y167{bottom:159.360000pt;}
.y1a1{bottom:161.667162pt;}
.y24e{bottom:162.080000pt;}
.yeb{bottom:162.240000pt;}
.yc0{bottom:162.720000pt;}
.y12c{bottom:162.740829pt;}
.y14a{bottom:163.360000pt;}
.y4f{bottom:163.520000pt;}
.y30{bottom:163.840000pt;}
.y8e{bottom:164.640000pt;}
.y1ad{bottom:167.606244pt;}
.y201{bottom:167.670440pt;}
.y2a6{bottom:167.674568pt;}
.y121{bottom:168.000000pt;}
.y172{bottom:168.129956pt;}
.y18e{bottom:170.812124pt;}
.y297{bottom:170.833498pt;}
.y1a0{bottom:171.190924pt;}
.y1d0{bottom:171.360000pt;}
.y180{bottom:172.154238pt;}
.y1fa{bottom:174.073114pt;}
.y166{bottom:174.080000pt;}
.yea{bottom:176.800000pt;}
.ybf{bottom:177.280000pt;}
.y149{bottom:177.920000pt;}
.y4e{bottom:178.080000pt;}
.y2f{bottom:178.400000pt;}
.y8d{bottom:180.000000pt;}
.y19f{bottom:180.425912pt;}
.y1dd{bottom:181.600000pt;}
.y290{bottom:182.560000pt;}
.y120{bottom:182.720000pt;}
.y1cf{bottom:185.920000pt;}
.y24d{bottom:186.080000pt;}
.y173{bottom:187.842472pt;}
.y2a3{bottom:187.951339pt;}
.y1b3{bottom:188.032431pt;}
.y165{bottom:188.640000pt;}
.y19e{bottom:189.574268pt;}
.ye9{bottom:191.386667pt;}
.y181{bottom:191.826376pt;}
.y4d{bottom:192.666667pt;}
.y2e{bottom:192.986667pt;}
.y8c{bottom:194.586667pt;}
.ybe{bottom:195.706667pt;}
.y148{bottom:196.506667pt;}
.y28f{bottom:196.666667pt;}
.y1b2{bottom:197.635851pt;}
.y24c{bottom:198.106667pt;}
.y11f{bottom:198.266667pt;}
.y1a3{bottom:198.664869pt;}
.y1dc{bottom:200.186667pt;}
.y1ce{bottom:200.506667pt;}
.y298{bottom:200.724712pt;}
.y1b4{bottom:201.107591pt;}
.y1fb{bottom:201.692101pt;}
.y164{bottom:203.226667pt;}
.ye8{bottom:205.946667pt;}
.y20e{bottom:207.011937pt;}
.y18f{bottom:207.015663pt;}
.y4c{bottom:207.226667pt;}
.y217{bottom:207.267196pt;}
.y205{bottom:207.667804pt;}
.y2c{bottom:207.706667pt;}
.y146{bottom:208.680000pt;}
.y8b{bottom:209.146667pt;}
.y174{bottom:209.249340pt;}
.y2d{bottom:210.106667pt;}
.y28e{bottom:211.226667pt;}
.y1a4{bottom:211.596159pt;}
.y1e3{bottom:212.202716pt;}
.y182{bottom:213.189397pt;}
.y11e{bottom:213.786667pt;}
.y2b8{bottom:213.895838pt;}
.y1db{bottom:214.586667pt;}
.y1ae{bottom:214.929525pt;}
.y1cd{bottom:215.066667pt;}
.y127{bottom:216.529446pt;}
.y20d{bottom:216.894237pt;}
.y216{bottom:217.056391pt;}
.y204{bottom:217.513817pt;}
.y163{bottom:217.786667pt;}
.y177{bottom:220.107712pt;}
.y4b{bottom:221.786667pt;}
.y24b{bottom:222.106667pt;}
.y1e2{bottom:222.294730pt;}
.y2b{bottom:222.746667pt;}
.y144{bottom:223.400000pt;}
.y8a{bottom:223.706667pt;}
.ye7{bottom:224.346667pt;}
.y2b7{bottom:225.660471pt;}
.y28d{bottom:225.786667pt;}
.y126{bottom:226.785910pt;}
.y1af{bottom:227.123690pt;}
.y1da{bottom:228.506667pt;}
.y11d{bottom:229.146667pt;}
.y187{bottom:232.137814pt;}
.y162{bottom:232.346667pt;}
.y1cc{bottom:233.466667pt;}
.y299{bottom:234.092082pt;}
.y24a{bottom:234.106667pt;}
.y1fd{bottom:234.861345pt;}
.y184{bottom:235.427469pt;}
.y4a{bottom:236.346667pt;}
.y2a{bottom:237.306667pt;}
.y191{bottom:237.870891pt;}
.ye6{bottom:238.106667pt;}
.y89{bottom:238.266667pt;}
.y2a4{bottom:238.400492pt;}
.y141{bottom:238.920000pt;}
.y2b6{bottom:238.929883pt;}
.y28c{bottom:240.346667pt;}
.y183{bottom:241.348847pt;}
.y1d9{bottom:243.066667pt;}
.y11c{bottom:243.866667pt;}
.y249{bottom:246.106667pt;}
.y161{bottom:246.906667pt;}
.y1cb{bottom:247.386667pt;}
.ybd{bottom:250.586667pt;}
.y49{bottom:250.906667pt;}
.y2b5{bottom:251.788900pt;}
.y29{bottom:251.866667pt;}
.y88{bottom:252.826667pt;}
.ye5{bottom:253.146667pt;}
.y125{bottom:253.200000pt;}
.y28b{bottom:255.866667pt;}
.y215{bottom:258.026665pt;}
.y1d8{bottom:258.106667pt;}
.y11b{bottom:259.226667pt;}
.y160{bottom:261.466667pt;}
.y29a{bottom:261.892027pt;}
.y1ca{bottom:262.266667pt;}
.y1f3{bottom:262.346667pt;}
.y2b4{bottom:264.535260pt;}
.ybc{bottom:265.146667pt;}
.y48{bottom:265.466667pt;}
.y28{bottom:266.426667pt;}
.y87{bottom:267.386667pt;}
.y248{bottom:270.106667pt;}
.y28a{bottom:272.826667pt;}
.y11a{bottom:273.786667pt;}
.y140{bottom:275.866667pt;}
.y15f{bottom:276.026667pt;}
.y2b9{bottom:277.201151pt;}
.ybb{bottom:279.706667pt;}
.y47{bottom:280.026667pt;}
.y27{bottom:280.986667pt;}
.y86{bottom:281.946667pt;}
.y247{bottom:286.906667pt;}
.y119{bottom:288.346667pt;}
.y2a5{bottom:288.842709pt;}
.y13f{bottom:290.426667pt;}
.y15e{bottom:290.586667pt;}
.y29b{bottom:292.071372pt;}
.yba{bottom:294.266667pt;}
.y46{bottom:294.586667pt;}
.y2ba{bottom:295.226305pt;}
.y26{bottom:295.546667pt;}
.y85{bottom:296.506667pt;}
.y289{bottom:300.666667pt;}
.y118{bottom:302.906667pt;}
.y13e{bottom:304.986667pt;}
.y15d{bottom:305.146667pt;}
.yb9{bottom:308.826667pt;}
.y45{bottom:309.146667pt;}
.y84{bottom:311.066667pt;}
.y246{bottom:314.746667pt;}
.y15c{bottom:319.706667pt;}
.y117{bottom:321.626667pt;}
.y25{bottom:322.106667pt;}
.yb8{bottom:323.386667pt;}
.y13d{bottom:323.546667pt;}
.y44{bottom:323.706667pt;}
.y288{bottom:324.986667pt;}
.y29e{bottom:325.104370pt;}
.y83{bottom:325.626667pt;}
.y245{bottom:328.506667pt;}
.y2a7{bottom:331.833154pt;}
.y116{bottom:336.186667pt;}
.y12e{bottom:336.634636pt;}
.y24{bottom:336.666667pt;}
.yb7{bottom:337.946667pt;}
.y15b{bottom:338.106667pt;}
.y43{bottom:338.266667pt;}
.y13c{bottom:341.466667pt;}
.y244{bottom:342.266667pt;}
.y286{bottom:350.266667pt;}
.y115{bottom:350.746667pt;}
.y23{bottom:351.226667pt;}
.y15a{bottom:351.866667pt;}
.y82{bottom:352.026667pt;}
.yb6{bottom:352.506667pt;}
.y42{bottom:352.826667pt;}
.y13b{bottom:355.226667pt;}
.y243{bottom:356.026667pt;}
.y285{bottom:362.266667pt;}
.y114{bottom:365.306667pt;}
.y159{bottom:365.786667pt;}
.y22{bottom:365.946667pt;}
.yb5{bottom:367.066667pt;}
.y41{bottom:367.386667pt;}
.y13a{bottom:368.986667pt;}
.y242{bottom:369.946667pt;}
.y284{bottom:374.266667pt;}
.y81{bottom:378.746667pt;}
.y113{bottom:379.866667pt;}
.y21{bottom:380.506667pt;}
.y158{bottom:380.666667pt;}
.y1a8{bottom:380.733333pt;}
.yb4{bottom:381.626667pt;}
.y139{bottom:382.746667pt;}
.y241{bottom:383.746667pt;}
.y283{bottom:386.306667pt;}
.y80{bottom:393.346667pt;}
.y40{bottom:393.986667pt;}
.y112{bottom:394.466667pt;}
.y20{bottom:395.106667pt;}
.yb3{bottom:396.226667pt;}
.y240{bottom:397.506667pt;}
.y178{bottom:397.813330pt;}
.y138{bottom:397.826667pt;}
.y282{bottom:398.306667pt;}
.y7f{bottom:407.906667pt;}
.y3f{bottom:408.546667pt;}
.y111{bottom:409.026667pt;}
.y1f{bottom:409.666667pt;}
.y281{bottom:410.306667pt;}
.y23f{bottom:411.266667pt;}
.y280{bottom:422.306667pt;}
.y7e{bottom:422.466667pt;}
.yb2{bottom:422.626667pt;}
.y3e{bottom:423.106667pt;}
.y110{bottom:423.586667pt;}
.y1e{bottom:424.226667pt;}
.y27f{bottom:434.306667pt;}
.y7d{bottom:437.026667pt;}
.y3d{bottom:437.666667pt;}
.y1d{bottom:438.786667pt;}
.y10f{bottom:442.146667pt;}
.y27e{bottom:446.306667pt;}
.yb1{bottom:449.346667pt;}
.y7c{bottom:451.586667pt;}
.y3c{bottom:452.226667pt;}
.y1c{bottom:453.346667pt;}
.y10e{bottom:456.706667pt;}
.y27d{bottom:458.306667pt;}
.y23e{bottom:459.746667pt;}
.yb0{bottom:463.906667pt;}
.y7b{bottom:466.146667pt;}
.y3b{bottom:466.786667pt;}
.y20c{bottom:467.613330pt;}
.y1d7{bottom:467.746667pt;}
.y1b{bottom:467.906667pt;}
.y27c{bottom:470.306667pt;}
.y10d{bottom:471.266667pt;}
.y23d{bottom:473.506667pt;}
.ye4{bottom:475.426667pt;}
.yaf{bottom:478.466667pt;}
.y7a{bottom:480.706667pt;}
.y3a{bottom:481.346667pt;}
.y27b{bottom:482.306667pt;}
.y1a{bottom:482.466667pt;}
.y10c{bottom:485.826667pt;}
.y23c{bottom:487.266667pt;}
.ye3{bottom:489.986667pt;}
.yae{bottom:493.026667pt;}
.y27a{bottom:494.306667pt;}
.y79{bottom:495.266667pt;}
.y39{bottom:495.906667pt;}
.y1c9{bottom:499.746667pt;}
.y10b{bottom:500.386667pt;}
.ye2{bottom:504.546667pt;}
.y23b{bottom:505.026667pt;}
.y279{bottom:506.306667pt;}
.yad{bottom:507.746667pt;}
.y19{bottom:509.186667pt;}
.y78{bottom:509.826667pt;}
.y38{bottom:510.466667pt;}
.y1c8{bottom:514.306667pt;}
.y10a{bottom:514.946667pt;}
.y278{bottom:518.306667pt;}
.ye1{bottom:519.106667pt;}
.yac{bottom:523.106667pt;}
.y77{bottom:524.386667pt;}
.y2a8{bottom:527.235572pt;}
.y23a{bottom:527.586667pt;}
.y1c7{bottom:528.866667pt;}
.y109{bottom:529.506667pt;}
.y277{bottom:530.306667pt;}
.ye0{bottom:533.666667pt;}
.y76{bottom:538.946667pt;}
.y276{bottom:542.306667pt;}
.y1c6{bottom:543.426667pt;}
.y108{bottom:544.066667pt;}
.y239{bottom:545.346667pt;}
.ydf{bottom:548.226667pt;}
.yab{bottom:549.666667pt;}
.y75{bottom:553.666667pt;}
.y275{bottom:554.306667pt;}
.y1c5{bottom:558.146667pt;}
.y107{bottom:558.626667pt;}
.yde{bottom:562.786667pt;}
.yaa{bottom:564.226667pt;}
.y18{bottom:565.826667pt;}
.y274{bottom:566.306667pt;}
.y238{bottom:568.386667pt;}
.y106{bottom:573.346667pt;}
.y1c4{bottom:576.706667pt;}
.ydd{bottom:577.373333pt;}
.y273{bottom:578.333333pt;}
.ya9{bottom:578.813333pt;}
.y74{bottom:580.093333pt;}
.y17{bottom:580.413333pt;}
.y105{bottom:588.733333pt;}
.y272{bottom:590.333333pt;}
.y1c3{bottom:591.293333pt;}
.ydc{bottom:591.933333pt;}
.ya8{bottom:593.373333pt;}
.y16{bottom:594.973333pt;}
.y237{bottom:598.333333pt;}
.y271{bottom:602.333333pt;}
.y104{bottom:603.293333pt;}
.y1c2{bottom:605.853333pt;}
.ydb{bottom:606.493333pt;}
.y73{bottom:606.973333pt;}
.ya7{bottom:607.933333pt;}
.y15{bottom:609.533333pt;}
.y157{bottom:610.653333pt;}
.y270{bottom:614.333333pt;}
.y236{bottom:615.933333pt;}
.y103{bottom:617.853333pt;}
.y1c1{bottom:620.413333pt;}
.yda{bottom:621.053333pt;}
.ya6{bottom:622.493333pt;}
.y14{bottom:624.093333pt;}
.y156{bottom:624.573333pt;}
.y26f{bottom:626.333333pt;}
.y235{bottom:629.693333pt;}
.y102{bottom:632.413333pt;}
.y72{bottom:634.813333pt;}
.y1c0{bottom:634.973333pt;}
.yd9{bottom:635.613333pt;}
.ya5{bottom:637.213333pt;}
.y26e{bottom:638.333333pt;}
.y12{bottom:638.813333pt;}
.y188{bottom:639.466659pt;}
.y155{bottom:639.613333pt;}
.y13{bottom:641.213333pt;}
.y234{bottom:643.453333pt;}
.y101{bottom:646.973333pt;}
.y291{bottom:647.763971pt;}
.y71{bottom:649.373333pt;}
.y1bf{bottom:649.533333pt;}
.y16a{bottom:650.093326pt;}
.y137{bottom:650.173333pt;}
.yd7{bottom:650.333333pt;}
.ya4{bottom:652.573333pt;}
.yd8{bottom:652.733333pt;}
.y11{bottom:653.853333pt;}
.y233{bottom:657.213333pt;}
.y100{bottom:661.533333pt;}
.y26d{bottom:662.333333pt;}
.y70{bottom:663.933333pt;}
.y1be{bottom:664.093333pt;}
.yd6{bottom:665.373333pt;}
.ya3{bottom:667.133333pt;}
.y10{bottom:668.413333pt;}
.y232{bottom:671.133333pt;}
.y26c{bottom:674.333333pt;}
.y203{bottom:677.213326pt;}
.y1d6{bottom:677.213333pt;}
.y6f{bottom:678.493333pt;}
.y1bd{bottom:678.653333pt;}
.yd5{bottom:679.933333pt;}
.ya2{bottom:681.693333pt;}
.yf{bottom:682.973333pt;}
.y231{bottom:684.893333pt;}
.y26b{bottom:686.333333pt;}
.yd4{bottom:692.093333pt;}
.y6e{bottom:693.053333pt;}
.y1bc{bottom:693.213333pt;}
.ya1{bottom:696.253333pt;}
.ye{bottom:697.533333pt;}
.y26a{bottom:698.333333pt;}
.yff{bottom:698.653333pt;}
.y6d{bottom:707.613333pt;}
.y1bb{bottom:707.773333pt;}
.yfc{bottom:710.173333pt;}
.y269{bottom:710.333333pt;}
.yd3{bottom:710.653333pt;}
.ya0{bottom:710.973333pt;}
.yd{bottom:712.093333pt;}
.y230{bottom:712.573333pt;}
.y6c{bottom:722.173333pt;}
.y1ba{bottom:722.333333pt;}
.y9f{bottom:725.533333pt;}
.yc{bottom:726.653333pt;}
.y22f{bottom:727.133333pt;}
.yd0{bottom:729.213333pt;}
.y268{bottom:734.333333pt;}
.yfb{bottom:735.613333pt;}
.y6b{bottom:736.733333pt;}
.y1b9{bottom:736.893333pt;}
.y9e{bottom:740.253333pt;}
.y22e{bottom:741.533333pt;}
.y267{bottom:746.333333pt;}
.yce{bottom:748.573333pt;}
.yb{bottom:749.853333pt;}
.yf9{bottom:750.333333pt;}
.y6a{bottom:751.293333pt;}
.y1b8{bottom:755.293333pt;}
.y9d{bottom:755.773333pt;}
.y266{bottom:758.333333pt;}
.y22d{bottom:759.773333pt;}
.yf4{bottom:765.693333pt;}
.y69{bottom:765.853333pt;}
.ya{bottom:768.413333pt;}
.y1b7{bottom:769.053333pt;}
.y265{bottom:770.333333pt;}
.y9c{bottom:771.173333pt;}
.ycd{bottom:772.453333pt;}
.y68{bottom:780.613333pt;}
.y264{bottom:782.373333pt;}
.y1b6{bottom:783.013333pt;}
.y192{bottom:784.246324pt;}
.y9b{bottom:785.733333pt;}
.ycc{bottom:787.013333pt;}
.y9{bottom:787.333333pt;}
.y22c{bottom:787.653333pt;}
.y263{bottom:794.373333pt;}
.y67{bottom:795.173333pt;}
.y1e1{bottom:797.866659pt;}
.y1b5{bottom:797.893333pt;}
.ycb{bottom:801.573333pt;}
.y22b{bottom:802.053333pt;}
.y262{bottom:806.373333pt;}
.y8{bottom:806.693333pt;}
.y66{bottom:809.733333pt;}
.y9a{bottom:812.133333pt;}
.y22a{bottom:815.813333pt;}
.yf3{bottom:817.573333pt;}
.y261{bottom:818.373333pt;}
.yca{bottom:820.293333pt;}
.y65{bottom:824.293333pt;}
.y7{bottom:825.733333pt;}
.y99{bottom:826.693333pt;}
.y229{bottom:829.733333pt;}
.y260{bottom:830.373333pt;}
.yf2{bottom:832.133333pt;}
.yc9{bottom:834.853333pt;}
.y64{bottom:838.853333pt;}
.y25f{bottom:842.373333pt;}
.y228{bottom:843.493333pt;}
.yf1{bottom:846.693333pt;}
.yc8{bottom:849.413333pt;}
.y6{bottom:850.693333pt;}
.y63{bottom:853.413333pt;}
.y25e{bottom:854.373333pt;}
.y227{bottom:857.253333pt;}
.yf0{bottom:861.253333pt;}
.yc7{bottom:863.973333pt;}
.y25d{bottom:866.373333pt;}
.y62{bottom:867.973333pt;}
.y226{bottom:871.013333pt;}
.yef{bottom:875.813333pt;}
.y154{bottom:875.973333pt;}
.y1ea{bottom:876.487888pt;}
.y25c{bottom:878.373333pt;}
.yc6{bottom:878.533333pt;}
.y5{bottom:879.333333pt;}
.y98{bottom:882.533333pt;}
.y225{bottom:884.933333pt;}
.y25b{bottom:890.373333pt;}
.y1d5{bottom:890.533333pt;}
.yc5{bottom:893.093333pt;}
.y153{bottom:893.893333pt;}
.y61{bottom:894.533333pt;}
.y97{bottom:897.093333pt;}
.y224{bottom:898.693333pt;}
.y4{bottom:901.413333pt;}
.y25a{bottom:902.373333pt;}
.y152{bottom:908.453333pt;}
.y60{bottom:909.093333pt;}
.yc4{bottom:911.493333pt;}
.y96{bottom:911.653333pt;}
.y223{bottom:912.453333pt;}
.y259{bottom:914.373333pt;}
.y151{bottom:923.013333pt;}
.y5f{bottom:923.653333pt;}
.y95{bottom:926.213333pt;}
.y258{bottom:926.373333pt;}
.y3{bottom:931.813333pt;}
.y150{bottom:937.573333pt;}
.y5e{bottom:938.213333pt;}
.y257{bottom:938.373333pt;}
.y222{bottom:940.133333pt;}
.y94{bottom:940.773333pt;}
.y256{bottom:950.373333pt;}
.y14f{bottom:952.133333pt;}
.y5d{bottom:952.773333pt;}
.y221{bottom:953.893333pt;}
.y93{bottom:955.333333pt;}
.y2{bottom:961.093333pt;}
.y255{bottom:962.373333pt;}
.y14d{bottom:966.880000pt;}
.y5c{bottom:967.360000pt;}
.y220{bottom:967.680000pt;}
.y14e{bottom:969.280000pt;}
.y92{bottom:969.920000pt;}
.y254{bottom:974.400000pt;}
.y21e{bottom:981.760000pt;}
.y5b{bottom:981.920000pt;}
.y21f{bottom:983.680000pt;}
.y253{bottom:986.400000pt;}
.y1{bottom:987.200000pt;}
.y287{bottom:987.680000pt;}
.y91{bottom:996.320000pt;}
.y5a{bottom:996.480000pt;}
.y252{bottom:998.400000pt;}
.h26{height:8.267268pt;}
.h56{height:8.675761pt;}
.h1a{height:14.706667pt;}
.h1e{height:14.720000pt;}
.h6a{height:14.725053pt;}
.h62{height:14.810519pt;}
.h66{height:14.865104pt;}
.h29{height:14.866667pt;}
.h22{height:14.908697pt;}
.h25{height:14.968643pt;}
.h27{height:14.985403pt;}
.h52{height:15.180557pt;}
.h55{height:15.823605pt;}
.h57{height:15.866818pt;}
.h12{height:16.160000pt;}
.h40{height:18.133884pt;}
.h15{height:18.560000pt;}
.h34{height:21.783636pt;}
.h2d{height:21.788538pt;}
.h42{height:22.073994pt;}
.h4a{height:22.121790pt;}
.h59{height:22.593522pt;}
.h3c{height:23.237276pt;}
.h7e{height:25.265854pt;}
.h1f{height:25.440000pt;}
.h69{height:26.905775pt;}
.h4b{height:26.928386pt;}
.h21{height:26.962977pt;}
.h23{height:27.029499pt;}
.h61{height:27.061940pt;}
.h67{height:27.161666pt;}
.h65{height:27.161678pt;}
.h41{height:27.171018pt;}
.h63{height:27.195825pt;}
.h43{height:27.207912pt;}
.h6b{height:27.262021pt;}
.h44{height:27.262328pt;}
.h5a{height:27.288806pt;}
.h5b{height:27.502617pt;}
.h51{height:27.738077pt;}
.h53{height:27.809731pt;}
.h3d{height:28.155882pt;}
.h3e{height:28.286244pt;}
.h5f{height:28.511503pt;}
.h10{height:28.638667pt;}
.h28{height:29.426667pt;}
.h1d{height:29.460000pt;}
.h4f{height:29.754301pt;}
.h4e{height:29.793974pt;}
.h46{height:29.847485pt;}
.h45{height:29.887282pt;}
.h5c{height:30.590408pt;}
.h74{height:30.717422pt;}
.h80{height:30.755590pt;}
.h5e{height:32.274018pt;}
.h7a{height:32.376385pt;}
.h72{height:32.507812pt;}
.h71{height:33.328125pt;}
.h4{height:33.918750pt;}
.h37{height:34.001671pt;}
.h5d{height:34.630533pt;}
.h36{height:36.263823pt;}
.h35{height:36.325812pt;}
.h2e{height:36.338254pt;}
.h2f{height:36.400371pt;}
.h19{height:36.431250pt;}
.he{height:36.883125pt;}
.h5{height:37.118750pt;}
.h1b{height:37.410000pt;}
.h7f{height:37.857249pt;}
.h81{height:37.908653pt;}
.h82{height:37.984471pt;}
.h7b{height:39.219710pt;}
.h7c{height:39.411089pt;}
.h2a{height:39.868750pt;}
.hc{height:40.021875pt;}
.h1c{height:40.510000pt;}
.h4c{height:40.684453pt;}
.h4d{height:40.784800pt;}
.h48{height:40.811868pt;}
.h47{height:40.866519pt;}
.h9{height:41.355000pt;}
.h84{height:41.586358pt;}
.h83{height:41.641807pt;}
.h13{height:42.084375pt;}
.h6d{height:43.031250pt;}
.h6c{height:43.275000pt;}
.h18{height:44.180000pt;}
.hf{height:44.437500pt;}
.h6f{height:44.596875pt;}
.h14{height:44.941250pt;}
.h2b{height:45.326250pt;}
.h3a{height:45.380897pt;}
.h32{height:45.428612pt;}
.h70{height:45.795000pt;}
.hd{height:46.126250pt;}
.h39{height:46.492081pt;}
.h31{height:46.587506pt;}
.h38{height:46.600182pt;}
.h30{height:46.695778pt;}
.h17{height:47.109375pt;}
.h16{height:48.375000pt;}
.h7{height:49.621875pt;}
.h8{height:50.955000pt;}
.h75{height:51.229572pt;}
.h76{height:51.317144pt;}
.h2{height:52.134375pt;}
.h6e{height:52.732500pt;}
.h6{height:53.535000pt;}
.hb{height:55.726250pt;}
.h11{height:56.570000pt;}
.h86{height:56.862980pt;}
.h85{height:56.924980pt;}
.ha{height:58.740000pt;}
.h78{height:65.678939pt;}
.h77{height:65.754164pt;}
.h3{height:71.524375pt;}
.h3f{height:72.074465pt;}
.h1{height:94.785000pt;}
.h7d{height:100.421005pt;}
.h24{height:121.108475pt;}
.h54{height:122.439180pt;}
.h68{height:205.577786pt;}
.h64{height:205.604917pt;}
.h60{height:206.265951pt;}
.h50{height:210.133341pt;}
.h20{height:215.269218pt;}
.h49{height:223.106667pt;}
.h3b{height:229.604102pt;}
.h58{height:230.453333pt;}
.h2c{height:237.387479pt;}
.h33{height:252.266670pt;}
.h79{height:320.308635pt;}
.h73{height:332.876029pt;}
.h0{height:1056.000000pt;}
.w1{width:6.706667pt;}
.w11{width:27.826667pt;}
.w5{width:33.440000pt;}
.w4{width:35.538667pt;}
.wd{width:36.946667pt;}
.w10{width:37.106667pt;}
.wf{width:37.426667pt;}
.w8{width:37.746667pt;}
.w6{width:37.760000pt;}
.wc{width:37.906667pt;}
.we{width:39.858667pt;}
.w16{width:47.186667pt;}
.w15{width:47.350667pt;}
.w1e{width:49.134184pt;}
.w3{width:55.826667pt;}
.w17{width:56.658667pt;}
.w18{width:56.800000pt;}
.w19{width:57.760000pt;}
.w14{width:63.870667pt;}
.wb{width:65.106667pt;}
.w28{width:68.441416pt;}
.w7{width:73.472000pt;}
.w9{width:74.706667pt;}
.wa{width:77.298667pt;}
.w2{width:128.190667pt;}
.w13{width:182.717805pt;}
.w21{width:185.605886pt;}
.w1b{width:279.175492pt;}
.w1a{width:297.868366pt;}
.w1c{width:298.465381pt;}
.w25{width:309.936164pt;}
.w22{width:310.671778pt;}
.w20{width:311.601549pt;}
.w1d{width:313.380643pt;}
.w24{width:313.897452pt;}
.w23{width:313.917491pt;}
.w12{width:319.721875pt;}
.w1f{width:325.480477pt;}
.w26{width:419.291297pt;}
.w27{width:435.860353pt;}
.w0{width:816.000000pt;}
.x62{left:-33.881984pt;}
.x40{left:-24.323918pt;}
.x16{left:-1.613333pt;}
.x0{left:0.000000pt;}
.x14{left:1.266667pt;}
.xe{left:2.706667pt;}
.x28{left:3.631566pt;}
.x4f{left:5.854004pt;}
.x13{left:7.198667pt;}
.x10{left:8.160000pt;}
.x15{left:9.440000pt;}
.x12{left:10.560000pt;}
.x21{left:11.680000pt;}
.x1e{left:12.786667pt;}
.xc{left:14.546667pt;}
.x22{left:15.666667pt;}
.x56{left:16.774299pt;}
.x35{left:17.879037pt;}
.x1c{left:18.866667pt;}
.x51{left:20.295212pt;}
.x29{left:22.099592pt;}
.x2f{left:24.466667pt;}
.x5a{left:25.995032pt;}
.x37{left:29.292548pt;}
.x63{left:31.551570pt;}
.x45{left:33.241046pt;}
.x3c{left:35.867453pt;}
.x1a{left:40.346667pt;}
.x5e{left:48.219080pt;}
.x26{left:56.537814pt;}
.xa{left:64.030667pt;}
.x9{left:65.761333pt;}
.x3b{left:68.280575pt;}
.x53{left:69.267468pt;}
.x3{left:72.960000pt;}
.x41{left:75.575003pt;}
.x1{left:77.280000pt;}
.x54{left:81.776006pt;}
.x34{left:83.833332pt;}
.x38{left:92.223222pt;}
.x64{left:103.532096pt;}
.x65{left:104.885456pt;}
.x2c{left:129.641333pt;}
.x6{left:148.826667pt;}
.x47{left:159.949649pt;}
.x44{left:163.421981pt;}
.x3a{left:171.182844pt;}
.x3e{left:172.264090pt;}
.x52{left:175.163543pt;}
.x2d{left:177.000000pt;}
.x49{left:180.034977pt;}
.x5d{left:190.066665pt;}
.x50{left:190.984978pt;}
.xb{left:193.960000pt;}
.x27{left:201.851378pt;}
.x5c{left:210.241180pt;}
.x2e{left:224.200000pt;}
.x68{left:225.898462pt;}
.x42{left:235.133795pt;}
.x60{left:238.212657pt;}
.xd{left:249.800000pt;}
.x43{left:254.374540pt;}
.x61{left:258.803695pt;}
.x5{left:264.026667pt;}
.x39{left:267.239910pt;}
.x36{left:268.488590pt;}
.x57{left:269.666667pt;}
.x30{left:280.866667pt;}
.xf{left:285.346667pt;}
.x46{left:297.702413pt;}
.x48{left:315.587871pt;}
.x11{left:318.786667pt;}
.x3d{left:324.393851pt;}
.x66{left:325.789372pt;}
.x31{left:337.666667pt;}
.x17{left:349.346667pt;}
.x67{left:352.590749pt;}
.x2{left:356.866667pt;}
.x2b{left:371.426667pt;}
.x5b{left:378.869606pt;}
.x2a{left:381.666667pt;}
.x4a{left:384.546667pt;}
.x4b{left:385.666667pt;}
.x18{left:392.706667pt;}
.x19{left:416.226667pt;}
.x7{left:423.426667pt;}
.x55{left:425.333330pt;}
.x32{left:428.386667pt;}
.x58{left:442.306667pt;}
.x5f{left:450.121670pt;}
.x3f{left:473.930643pt;}
.x1b{left:489.706667pt;}
.x4{left:516.733333pt;}
.x1d{left:527.466667pt;}
.x23{left:565.226667pt;}
.x1f{left:602.186667pt;}
.x59{left:626.013333pt;}
.x24{left:642.053333pt;}
.x20{left:679.493333pt;}
.x25{left:716.613333pt;}
.x4e{left:733.413333pt;}
.x8{left:736.453333pt;}
.x4d{left:737.413333pt;}
.x4c{left:739.333333pt;}
.x33{left:748.933333pt;}
}




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