
    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_39bc0598f52d74e23530adaf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_6d5f5c757db4840b83183184.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2d46112fff901623195aa3e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a765d1b950afc5b0bda1b269.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.579000;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_63f076c05ad2fdd03bbeba14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.652000;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_eda983e0268c33170f69d5a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_84503e4397225290d0524938.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_e9c8116ad03bae125cc802ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752000;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_55c5915fe81012ce2ad362b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.732000;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_15689e83c6840415ec234d29.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959000;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_e9c8116ad03bae125cc802ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752000;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_55c5915fe81012ce2ad362b4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.732000;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_0f5770f159eee750ce9b744a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921000;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_df9898799b26eeb199e430d9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.580000;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_54685aef28b75ff5f7919f51.woff2')format("woff");}.fff{font-family:fff;line-height:0.959000;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_3168ad1177f77aae1b06e9b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752000;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_55c5915fe81012ce2ad362b4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.732000;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_da94c64ccbd8bf8e5d8f5dc8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3168ad1177f77aae1b06e9b5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.752000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_fd0ce8c89b43a05934201d77.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.526000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_291bb686173a405a54e7aa09.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_f647f000f74c2a0fe67f586b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_120ab6d93e305035c53b8f9b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_6a52d1636d5cbd90c8658ea4.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.316000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_40094b35b3c928f78d15c686.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.522000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_f625cb5e89d9bce3818f1367.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.890000;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:ff1b;src:url('chunks/assets/font_cbec4efce3b781b4fdb4994b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.911000;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:ff1c;src:url('chunks/assets/font_002d770d26afe299b790ed7a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.923000;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:ff1d;src:url('chunks/assets/font_e7147dd6b6bb323655a66dc2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.959000;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:ff1e;src:url('chunks/assets/font_63599105412c462499a03d02.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.752000;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:ff1f;src:url('chunks/assets/font_2740b8137d3d8d572157f443.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.526000;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:ff20;src:url('chunks/assets/font_1d5a0572e2bba97eb7f2c7b0.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.959000;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:ff21;src:url('chunks/assets/font_4c704c6c7541850d45d1fc07.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.929000;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:ff22;src:url('chunks/assets/font_55c5915fe81012ce2ad362b4.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.732000;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:ff23;src:url('chunks/assets/font_1724eb1ea55ec56db4378e18.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.959000;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:ff24;src:url('chunks/assets/font_4c704c6c7541850d45d1fc07.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.929000;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:ff25;src:url('chunks/assets/font_55c5915fe81012ce2ad362b4.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.732000;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:ff26;src:url('chunks/assets/font_09e25ee5ff7b745c3c034810.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.575000;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:ff28;src:url('chunks/assets/font_09e25ee5ff7b745c3c034810.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.575000;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:ff2a;src:url('chunks/assets/font_09e25ee5ff7b745c3c034810.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.575000;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:ff2c;src:url('chunks/assets/font_09e25ee5ff7b745c3c034810.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.575000;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:ff2e;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.575000;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:ff2f;src:url('chunks/assets/font_09e25ee5ff7b745c3c034810.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.575000;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:ff31;src:url('chunks/assets/font_09e25ee5ff7b745c3c034810.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_5c16d8a937c143dcfe9c2879.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.694000;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:ff33;src:url('chunks/assets/font_df04e3d0b619d3732afe29d3.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.959000;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:ff34;src:url('chunks/assets/font_ee6f99bc08ff3e130f2b0401.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.511000;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:ff35;src:url('chunks/assets/font_3b8bedc47599120058be89de.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.959000;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:ff36;src:url('chunks/assets/font_ee6f99bc08ff3e130f2b0401.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.511000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-25.542000px;}
.vb{vertical-align:-23.216684px;}
.v2{vertical-align:-15.054000px;}
.v7{vertical-align:-10.224000px;}
.v5{vertical-align:-8.970000px;}
.v4{vertical-align:-7.476000px;}
.vd{vertical-align:-5.725988px;}
.vc{vertical-align:-2.296156px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.150000px;}
.va{vertical-align:5.471087px;}
.v3{vertical-align:15.054000px;}
.v1{vertical-align:23.754000px;}
.v6{vertical-align:28.398000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000421px;}
.ls19{letter-spacing:0.000519px;}
.lsf{letter-spacing:0.000607px;}
.ls10{letter-spacing:0.002612px;}
.ls8{letter-spacing:0.002700px;}
.ls1e{letter-spacing:0.002706px;}
.ls7{letter-spacing:0.002712px;}
.ls1d{letter-spacing:0.003372px;}
.lsd{letter-spacing:0.003427px;}
.ls12{letter-spacing:0.003792px;}
.lsc{letter-spacing:0.004361px;}
.ls9{letter-spacing:0.004546px;}
.lsb{letter-spacing:0.005418px;}
.lse{letter-spacing:0.006421px;}
.ls11{letter-spacing:0.012820px;}
.ls13{letter-spacing:0.014552px;}
.ls2e{letter-spacing:0.022678px;}
.ls14{letter-spacing:0.636519px;}
.ls1{letter-spacing:2.984612px;}
.ls0{letter-spacing:2.990612px;}
.ls2d{letter-spacing:7.199837px;}
.ls2a{letter-spacing:7.200942px;}
.ls28{letter-spacing:7.202246px;}
.ls29{letter-spacing:7.203352px;}
.ls27{letter-spacing:7.228638px;}
.ls2b{letter-spacing:7.231019px;}
.ls2c{letter-spacing:7.232125px;}
.ls1a{letter-spacing:7.376770px;}
.ls1c{letter-spacing:7.382770px;}
.ls16{letter-spacing:18.179400px;}
.ls6{letter-spacing:18.179412px;}
.ls1f{letter-spacing:18.185412px;}
.ls23{letter-spacing:20.695704px;}
.ls5{letter-spacing:20.725608px;}
.ls1b{letter-spacing:21.818712px;}
.ls24{letter-spacing:22.311517px;}
.ls15{letter-spacing:24.544896px;}
.ls18{letter-spacing:25.893478px;}
.ls17{letter-spacing:27.813258px;}
.ls26{letter-spacing:31.189218px;}
.ls4{letter-spacing:32.727606px;}
.ls3{letter-spacing:32.729137px;}
.ls20{letter-spacing:109.778916px;}
.ls21{letter-spacing:110.997863px;}
.ls25{letter-spacing:114.456270px;}
.ls22{letter-spacing:204.473195px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc1{text-shadow:-0.015em 0 rgb(248,118,109),0 0.015em rgb(248,118,109),0.015em 0 rgb(248,118,109),0 -0.015em  rgb(248,118,109);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(248,118,109);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws64{word-spacing:-121.548839px;}
.ws54{word-spacing:-118.090432px;}
.ws50{word-spacing:-116.871485px;}
.ws2e{word-spacing:-65.454600px;}
.ws6{word-spacing:-19.823579px;}
.ws7{word-spacing:-15.637104px;}
.ws39{word-spacing:-14.280391px;}
.ws1f{word-spacing:-9.091930px;}
.ws69{word-spacing:-8.668696px;}
.ws20{word-spacing:-7.576557px;}
.ws4c{word-spacing:-7.092570px;}
.ws14{word-spacing:-5.370960px;}
.ws15{word-spacing:-4.603680px;}
.ws5b{word-spacing:-4.263422px;}
.ws4{word-spacing:-2.743718px;}
.ws82{word-spacing:-1.468983px;}
.ws7f{word-spacing:-1.468844px;}
.ws72{word-spacing:-1.468771px;}
.ws81{word-spacing:-1.467875px;}
.ws7c{word-spacing:-1.467737px;}
.ws74{word-spacing:-1.467689px;}
.ws76{word-spacing:-1.467551px;}
.ws7e{word-spacing:-1.460871px;}
.ws77{word-spacing:-1.459764px;}
.ws7b{word-spacing:-1.459738px;}
.ws79{word-spacing:-1.459729px;}
.ws7d{word-spacing:-1.459703px;}
.ws80{word-spacing:-1.459640px;}
.ws71{word-spacing:-1.452248px;}
.ws6c{word-spacing:-1.451114px;}
.ws6d{word-spacing:-1.440192px;}
.ws7a{word-spacing:-1.440165px;}
.ws78{word-spacing:-1.440140px;}
.ws6a{word-spacing:-1.440114px;}
.ws6f{word-spacing:-1.440027px;}
.ws6e{word-spacing:-1.431983px;}
.ws70{word-spacing:-1.431957px;}
.ws73{word-spacing:-1.431922px;}
.ws75{word-spacing:-1.430850px;}
.ws6b{word-spacing:-1.430815px;}
.ws1c{word-spacing:-0.065455px;}
.ws46{word-spacing:-0.059776px;}
.ws1e{word-spacing:-0.035866px;}
.ws21{word-spacing:-0.029888px;}
.ws5{word-spacing:0.000000px;}
.ws5c{word-spacing:2.371872px;}
.ws2{word-spacing:3.604493px;}
.ws27{word-spacing:3.640358px;}
.ws48{word-spacing:3.802912px;}
.ws68{word-spacing:4.105882px;}
.ws2f{word-spacing:4.130185px;}
.ws2c{word-spacing:4.392004px;}
.ws3f{word-spacing:4.522913px;}
.ws3a{word-spacing:4.788026px;}
.ws31{word-spacing:4.850186px;}
.ws4a{word-spacing:4.915640px;}
.wsd{word-spacing:5.046550px;}
.ws47{word-spacing:5.373823px;}
.ws4b{word-spacing:5.504732px;}
.ws2d{word-spacing:5.570186px;}
.ws8{word-spacing:5.624884px;}
.ws3d{word-spacing:5.635641px;}
.ws49{word-spacing:5.684660px;}
.ws36{word-spacing:5.701096px;}
.ws30{word-spacing:5.832005px;}
.ws11{word-spacing:5.897459px;}
.ws3e{word-spacing:5.962914px;}
.ws32{word-spacing:6.028369px;}
.ws1{word-spacing:6.159278px;}
.wsc{word-spacing:6.224732px;}
.ws38{word-spacing:7.226188px;}
.ws37{word-spacing:7.291642px;}
.ws3{word-spacing:7.843880px;}
.ws0{word-spacing:8.237588px;}
.ws10{word-spacing:8.323665px;}
.ws62{word-spacing:10.961195px;}
.ws3b{word-spacing:17.090196px;}
.ws3c{word-spacing:17.113220px;}
.ws65{word-spacing:17.679576px;}
.ws45{word-spacing:19.859084px;}
.wsa{word-spacing:21.730927px;}
.ws9{word-spacing:28.994471px;}
.wsb{word-spacing:28.996388px;}
.ws5f{word-spacing:32.873890px;}
.ws43{word-spacing:34.834126px;}
.ws42{word-spacing:35.358084px;}
.ws18{word-spacing:37.497139px;}
.ws1a{word-spacing:37.621670px;}
.ws19{word-spacing:43.861644px;}
.ws4d{word-spacing:46.081859px;}
.ws53{word-spacing:46.620463px;}
.ws57{word-spacing:47.017329px;}
.ws1b{word-spacing:47.449534px;}
.ws13{word-spacing:50.168686px;}
.ws17{word-spacing:50.679065px;}
.ws63{word-spacing:52.885283px;}
.ws5d{word-spacing:53.508930px;}
.ws60{word-spacing:55.578305px;}
.ws44{word-spacing:57.082154px;}
.ws66{word-spacing:60.567482px;}
.ws83{word-spacing:62.603405px;}
.wse{word-spacing:62.639270px;}
.ws40{word-spacing:64.852416px;}
.ws51{word-spacing:65.018055px;}
.ws4f{word-spacing:66.237002px;}
.ws55{word-spacing:66.322045px;}
.ws59{word-spacing:66.548826px;}
.ws41{word-spacing:74.313216px;}
.wsf{word-spacing:98.720064px;}
.ws52{word-spacing:102.487913px;}
.ws56{word-spacing:102.714694px;}
.ws5a{word-spacing:102.743041px;}
.ws5e{word-spacing:103.735207px;}
.ws4e{word-spacing:103.820250px;}
.ws58{word-spacing:103.990336px;}
.ws61{word-spacing:104.132074px;}
.ws67{word-spacing:108.752733px;}
.ws12{word-spacing:126.491407px;}
.ws16{word-spacing:135.033386px;}
.ws23{word-spacing:185.227891px;}
.ws24{word-spacing:186.751639px;}
.ws2b{word-spacing:195.967639px;}
.ws2a{word-spacing:195.973639px;}
.ws26{word-spacing:212.155639px;}
.ws25{word-spacing:212.161639px;}
.ws29{word-spacing:313.877798px;}
.ws28{word-spacing:315.379639px;}
.ws22{word-spacing:478.991522px;}
.ws35{word-spacing:483.854246px;}
.ws33{word-spacing:509.885103px;}
.ws1d{word-spacing:523.121103px;}
.ws34{word-spacing:571.751462px;}
._72{margin-left:-114.456270px;}
._68{margin-left:-110.997863px;}
._64{margin-left:-109.778916px;}
._63{margin-left:-56.286995px;}
._62{margin-left:-48.933627px;}
._61{margin-left:-43.094022px;}
._5f{margin-left:-42.073508px;}
._66{margin-left:-41.052994px;}
._5e{margin-left:-35.003616px;}
._65{margin-left:-33.983103px;}
._7{margin-left:-31.934674px;}
._60{margin-left:-28.908882px;}
._5d{margin-left:-27.888369px;}
._70{margin-left:-26.855800px;}
._5c{margin-left:-20.790130px;}
._3{margin-left:-19.044634px;}
._5b{margin-left:-13.703230px;}
._6a{margin-left:-12.130817px;}
._6c{margin-left:-10.968565px;}
._6b{margin-left:-9.211014px;}
._6e{margin-left:-8.126647px;}
._59{margin-left:-7.058330px;}
._c{margin-left:-5.653904px;}
._5{margin-left:-3.788311px;}
._0{margin-left:-2.324084px;}
._2{margin-left:-1.275919px;}
._6{width:1.040102px;}
._8{width:2.324084px;}
._53{width:5.723204px;}
._74{width:7.203692px;}
._4{width:16.955470px;}
._6f{width:18.342853px;}
._58{width:21.515532px;}
._b{width:22.844548px;}
._8d{width:24.372771px;}
._9{width:27.232895px;}
._a{width:29.127297px;}
._8c{width:32.766742px;}
._1{width:37.443582px;}
._55{width:48.847363px;}
._25{width:51.308676px;}
._54{width:58.039654px;}
._23{width:60.516036px;}
._67{width:61.620696px;}
._16{width:70.891048px;}
._1b{width:71.967016px;}
._10{width:74.118952px;}
._69{width:75.393277px;}
._71{width:76.839005px;}
._7b{width:78.248876px;}
._7c{width:80.231347px;}
._73{width:81.828182px;}
._85{width:84.391757px;}
._e{width:86.113306px;}
._13{width:87.476198px;}
._51{width:88.872480px;}
._6d{width:92.117942px;}
._f{width:97.590298px;}
._76{width:99.308061px;}
._4f{width:104.908896px;}
._1a{width:106.520832px;}
._14{width:108.206515px;}
._83{width:112.445943px;}
._78{width:119.037926px;}
._79{width:124.274304px;}
._86{width:130.550784px;}
._15{width:131.590886px;}
._7e{width:134.384527px;}
._89{width:135.417644px;}
._57{width:138.153953px;}
._1f{width:140.315861px;}
._77{width:142.343280px;}
._80{width:143.749325px;}
._18{width:145.127461px;}
._7d{width:147.084826px;}
._21{width:148.179046px;}
._1e{width:149.522724px;}
._87{width:153.095003px;}
._24{width:154.154225px;}
._56{width:157.179074px;}
._1d{width:158.730581px;}
._7a{width:160.462694px;}
._88{width:162.084973px;}
._22{width:163.375164px;}
._82{width:165.483878px;}
._20{width:167.272560px;}
._42{width:171.475630px;}
._7f{width:173.381597px;}
._1c{width:174.557875px;}
._d{width:178.216166px;}
._84{width:183.022157px;}
._8b{width:188.024592px;}
._8a{width:192.125103px;}
._19{width:193.838325px;}
._81{width:206.801050px;}
._3c{width:211.017947px;}
._17{width:212.683008px;}
._2f{width:220.156496px;}
._27{width:230.257152px;}
._2c{width:233.426768px;}
._75{width:241.190780px;}
._41{width:245.786957px;}
._12{width:249.932123px;}
._52{width:251.313696px;}
._3d{width:256.811139px;}
._30{width:259.615835px;}
._40{width:263.130664px;}
._50{width:267.302304px;}
._29{width:270.045545px;}
._3e{width:271.164559px;}
._2d{width:276.365071px;}
._4e{width:283.315104px;}
._2a{width:284.398965px;}
._11{width:287.426918px;}
._31{width:289.363661px;}
._4a{width:305.287987px;}
._2e{width:306.850831px;}
._37{width:308.336563px;}
._4c{width:310.596096px;}
._3f{width:312.058980px;}
._4b{width:319.075621px;}
._2b{width:325.300980px;}
._43{width:336.419328px;}
._38{width:339.630184px;}
._49{width:342.216112px;}
._33{width:345.234123px;}
._46{width:352.953370px;}
._44{width:355.781775px;}
._45{width:377.593037px;}
._3a{width:390.254479px;}
._32{width:403.344538px;}
._47{width:408.893411px;}
._48{width:414.951549px;}
._39{width:432.180480px;}
._35{width:447.387494px;}
._34{width:472.027162px;}
._36{width:487.133956px;}
._3b{width:536.979763px;}
._26{width:580.413005px;}
._28{width:589.364162px;}
._5a{width:848.428621px;}
._4d{width:886.322228px;}
.fc7{color:transparent;}
.fc4{color:rgb(248,118,109);}
.fc6{color:rgb(77,77,77);}
.fc5{color:rgb(51,51,51);}
.fc3{color:rgb(77,77,77);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,178);}
.fsc{font-size:15.336052px;}
.fs6{font-size:16.560000px;}
.fs7{font-size:19.320000px;}
.fsd{font-size:22.678080px;}
.fsa{font-size:25.512840px;}
.fs8{font-size:28.800000px;}
.fs3{font-size:29.887800px;}
.fsb{font-size:31.182360px;}
.fs9{font-size:33.600000px;}
.fs4{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y263{bottom:0.956731px;}
.y262{bottom:0.963818px;}
.y261{bottom:0.970905px;}
.y260{bottom:0.977992px;}
.y25f{bottom:0.985079px;}
.y25e{bottom:0.992166px;}
.y27a{bottom:0.999253px;}
.y279{bottom:1.006340px;}
.y2b8{bottom:1.013427px;}
.y25d{bottom:1.020514px;}
.y2a1{bottom:1.041774px;}
.y2a0{bottom:1.048861px;}
.y29f{bottom:1.063035px;}
.y29e{bottom:1.077209px;}
.y278{bottom:1.084296px;}
.y29d{bottom:1.112643px;}
.y277{bottom:1.133904px;}
.y276{bottom:1.162252px;}
.y25c{bottom:1.197686px;}
.y275{bottom:1.204773px;}
.y2b7{bottom:1.247294px;}
.y25b{bottom:1.318163px;}
.y274{bottom:1.325250px;}
.y25a{bottom:1.396119px;}
.y29b{bottom:1.410293px;}
.y285{bottom:1.431554px;}
.y29c{bottom:1.438641px;}
.y259{bottom:1.552031px;}
.y258{bottom:1.573292px;}
.y2b6{bottom:1.587466px;}
.y257{bottom:1.693769px;}
.y256{bottom:1.842594px;}
.y29a{bottom:2.048114px;}
.y299{bottom:2.069375px;}
.y297{bottom:2.274895px;}
.y255{bottom:2.289069px;}
.y298{bottom:2.296156px;}
.y2b5{bottom:2.473328px;}
.y2c3{bottom:2.848934px;}
.y296{bottom:3.422973px;}
.y287{bottom:3.444233px;}
.y6a{bottom:3.943384px;}
.y2b4{bottom:4.145837px;}
.y211{bottom:4.393878px;}
.y1e3{bottom:4.443000px;}
.y273{bottom:4.705702px;}
.y2b3{bottom:4.989178px;}
.y2f3{bottom:5.067134px;}
.y288{bottom:5.130916px;}
.yd{bottom:5.230500px;}
.y2c2{bottom:5.400218px;}
.y21d{bottom:5.435652px;}
.y66{bottom:6.458400px;}
.y272{bottom:6.612078px;}
.y2b1{bottom:7.547549px;}
.y2b2{bottom:7.604244px;}
.y212{bottom:8.142848px;}
.y69{bottom:8.490519px;}
.y295{bottom:8.858625px;}
.y182{bottom:11.232000px;}
.y2ae{bottom:11.402822px;}
.y2ad{bottom:11.487865px;}
.y14f{bottom:11.616000px;}
.y2af{bottom:13.769847px;}
.y2b0{bottom:13.805281px;}
.y21a{bottom:14.138365px;}
.y185{bottom:14.766120px;}
.y21b{bottom:14.847055px;}
.y63{bottom:16.394365px;}
.y18a{bottom:18.161007px;}
.y294{bottom:18.199159px;}
.y2f2{bottom:18.248767px;}
.y21c{bottom:18.744850px;}
.y6b{bottom:22.959888px;}
.y64{bottom:23.342872px;}
.y254{bottom:23.996243px;}
.yc8{bottom:24.766500px;}
.y21e{bottom:25.016757px;}
.y70{bottom:25.378373px;}
.y222{bottom:25.675839px;}
.y28a{bottom:26.086879px;}
.y61{bottom:27.367500px;}
.y6e{bottom:28.069373px;}
.y17f{bottom:28.511940px;}
.y1b9{bottom:28.579500px;}
.y13b{bottom:28.834500px;}
.yb1{bottom:28.980000px;}
.y253{bottom:29.091724px;}
.y325{bottom:29.340900px;}
.y120{bottom:29.356500px;}
.y14e{bottom:29.548500px;}
.yf7{bottom:30.730500px;}
.y2c9{bottom:30.850500px;}
.y187{bottom:30.892500px;}
.y2ed{bottom:31.239126px;}
.y207{bottom:31.416228px;}
.y214{bottom:32.380046px;}
.y28b{bottom:32.394220px;}
.yc{bottom:33.178500px;}
.y320{bottom:34.243830px;}
.y1d7{bottom:34.693500px;}
.y31a{bottom:34.945646px;}
.y1a9{bottom:35.595000px;}
.y28f{bottom:35.873888px;}
.yb0{bottom:36.078000px;}
.y11f{bottom:36.454500px;}
.y290{bottom:36.880228px;}
.y2c6{bottom:36.979444px;}
.y215{bottom:39.644119px;}
.y21f{bottom:39.913421px;}
.y1c8{bottom:40.072500px;}
.y234{bottom:40.281940px;}
.y230{bottom:40.359895px;}
.y242{bottom:40.395330px;}
.y15d{bottom:40.792500px;}
.y2f9{bottom:41.507902px;}
.y2f5{bottom:42.450531px;}
.y174{bottom:43.306500px;}
.y2c4{bottom:44.321473px;}
.y28c{bottom:44.434863px;}
.yc7{bottom:45.090000px;}
.y2fc{bottom:45.795477px;}
.yaf{bottom:46.549500px;}
.y2c7{bottom:46.723932px;}
.y216{bottom:46.901104px;}
.y321{bottom:46.901175px;}
.y11e{bottom:46.926000px;}
.y1e2{bottom:46.959000px;}
.y1e4{bottom:46.989000px;}
.y291{bottom:47.134972px;}
.y2ee{bottom:47.283726px;}
.y31b{bottom:47.680734px;}
.y60{bottom:47.691000px;}
.y31f{bottom:48.182061px;}
.y231{bottom:48.339745px;}
.y2f4{bottom:48.616134px;}
.y1b8{bottom:48.903000px;}
.y13a{bottom:49.159500px;}
.y14d{bottom:49.723500px;}
.y180{bottom:50.304360px;}
.y220{bottom:50.529597px;}
.y235{bottom:50.926463px;}
.y243{bottom:50.997332px;}
.y186{bottom:51.216000px;}
.y2f8{bottom:51.428995px;}
.yf6{bottom:52.923000px;}
.yae{bottom:53.647500px;}
.y11d{bottom:54.025500px;}
.y35{bottom:54.043500px;}
.y217{bottom:54.165177px;}
.y2c1{bottom:56.248725px;}
.y232{bottom:56.319594px;}
.y286{bottom:56.454245px;}
.y28d{bottom:56.468419px;}
.y20f{bottom:56.588897px;}
.y4b{bottom:56.755500px;}
.y1d6{bottom:56.884500px;}
.y292{bottom:57.389716px;}
.y1a8{bottom:57.786000px;}
.y322{bottom:59.565395px;}
.y2fa{bottom:60.132346px;}
.y1c7{bottom:60.397500px;}
.y31c{bottom:60.423051px;}
.y2f6{bottom:60.762939px;}
.y15c{bottom:61.116000px;}
.y221{bottom:61.152860px;}
.y218{bottom:61.422162px;}
.y236{bottom:61.570987px;}
.y244{bottom:61.599335px;}
.y2ef{bottom:63.328609px;}
.y173{bottom:63.630000px;}
.yad{bottom:64.119000px;}
.y18d{bottom:64.170000px;}
.y233{bottom:64.299444px;}
.y26{bottom:64.461000px;}
.y11c{bottom:64.495500px;}
.y14c{bottom:65.413500px;}
.yc6{bottom:65.415000px;}
.y2c8{bottom:66.212907px;}
.y1e1{bottom:67.282500px;}
.y293{bottom:67.651547px;}
.y2c5{bottom:68.175978px;}
.y28e{bottom:68.509062px;}
.y219{bottom:68.686235px;}
.y139{bottom:69.483000px;}
.y5f{bottom:69.883500px;}
.y1b7{bottom:71.094000px;}
.y11b{bottom:71.595000px;}
.y323{bottom:72.222740px;}
.yac{bottom:72.463500px;}
.y67{bottom:72.750150px;}
.y31d{bottom:73.158140px;}
.y34{bottom:74.367000px;}
.yf5{bottom:75.861000px;}
.ye5{bottom:76.656000px;}
.y2fb{bottom:78.749562px;}
.y4a{bottom:78.948000px;}
.y2f7{bottom:79.068472px;}
.y2f0{bottom:79.373209px;}
.y1d5{bottom:79.824000px;}
.y289{bottom:79.865129px;}
.y73{bottom:80.310000px;}
.y20d{bottom:80.422141px;}
.y1c6{bottom:80.721000px;}
.y1a7{bottom:80.725500px;}
.y15b{bottom:81.441000px;}
.y11a{bottom:82.066500px;}
.yab{bottom:82.935000px;}
.y14b{bottom:83.347500px;}
.y213{bottom:83.476595px;}
.y198{bottom:83.829000px;}
.y18c{bottom:84.493500px;}
.y25{bottom:84.786000px;}
.y324{bottom:84.886959px;}
.y1e0{bottom:85.738500px;}
.y172{bottom:85.821000px;}
.y31e{bottom:85.893228px;}
.y12b{bottom:86.160000px;}
.yc5{bottom:87.606000px;}
.yd9{bottom:88.849500px;}
.y208{bottom:88.968943px;}
.y119{bottom:89.164500px;}
.y17e{bottom:89.472000px;}
.y138{bottom:89.806500px;}
.yaa{bottom:90.033000px;}
.y210{bottom:90.067412px;}
.y5e{bottom:90.496500px;}
.y1b6{bottom:92.746500px;}
.y19{bottom:92.796000px;}
.y20e{bottom:93.320299px;}
.y2f1{bottom:95.417809px;}
.yf4{bottom:96.184500px;}
.y33{bottom:96.558000px;}
.ye4{bottom:96.979500px;}
.yb{bottom:97.095000px;}
.y1a6{bottom:98.658000px;}
.y118{bottom:99.636000px;}
.y7d{bottom:99.771000px;}
.y1d4{bottom:100.147500px;}
.ya9{bottom:100.504500px;}
.y72{bottom:100.633500px;}
.y1c5{bottom:101.044500px;}
.y14a{bottom:101.280000px;}
.y15a{bottom:101.764500px;}
.y49{bottom:101.886000px;}
.y209{bottom:102.760050px;}
.y6c{bottom:104.698500px;}
.y18b{bottom:104.818500px;}
.y24{bottom:105.109500px;}
.y197{bottom:106.020000px;}
.yc4{bottom:106.062000px;}
.y12a{bottom:106.483500px;}
.y117{bottom:106.734000px;}
.y2de{bottom:107.118494px;}
.ya8{bottom:107.602500px;}
.y171{bottom:108.760500px;}
.y5d{bottom:110.820000px;}
.y3e{bottom:110.913000px;}
.yd8{bottom:111.042000px;}
.y335{bottom:111.099000px;}
.y137{bottom:111.999000px;}
.y17d{bottom:112.417500px;}
.y1b5{bottom:113.070000px;}
.y166{bottom:114.655500px;}
.y18{bottom:114.987000px;}
.y86{bottom:116.292000px;}
.yf3{bottom:116.509500px;}
.y20a{bottom:116.558244px;}
.y1a5{bottom:116.590500px;}
.y116{bottom:117.205500px;}
.ye3{bottom:117.303000px;}
.ya7{bottom:118.074000px;}
.y32{bottom:119.497500px;}
.y2dd{bottom:120.300128px;}
.y1d3{bottom:120.471000px;}
.y71{bottom:120.957000px;}
.ya{bottom:121.182000px;}
.y1c4{bottom:121.368000px;}
.y149{bottom:121.453500px;}
.y334{bottom:121.560000px;}
.y7c{bottom:121.963500px;}
.y159{bottom:122.088000px;}
.y33d{bottom:123.106500px;}
.y48{bottom:124.078500px;}
.y23{bottom:125.433000px;}
.y115{bottom:125.548500px;}
.yc3{bottom:126.385500px;}
.ya6{bottom:126.417000px;}
.y183{bottom:126.522000px;}
.y1df{bottom:128.253000px;}
.y129{bottom:128.676000px;}
.y196{bottom:128.959500px;}
.y2e5{bottom:129.619401px;}
.y2e0{bottom:130.335178px;}
.y20b{bottom:130.349352px;}
.y170{bottom:130.951500px;}
.y333{bottom:132.021000px;}
.y30b{bottom:132.028947px;}
.y5c{bottom:133.012500px;}
.y2d9{bottom:133.035287px;}
.y136{bottom:133.090500px;}
.y3d{bottom:133.104000px;}
.y184{bottom:133.535880px;}
.yd7{bottom:133.981500px;}
.y1a4{bottom:134.523000px;}
.y165{bottom:134.979000px;}
.y314{bottom:135.154270px;}
.y1b4{bottom:135.261000px;}
.y17c{bottom:135.355500px;}
.y206{bottom:135.483120px;}
.y114{bottom:136.020000px;}
.y85{bottom:136.615500px;}
.ya5{bottom:136.888500px;}
.y65{bottom:137.120250px;}
.y31{bottom:137.430000px;}
.y9{bottom:137.743500px;}
.y17{bottom:137.926500px;}
.y310{bottom:138.081160px;}
.yf2{bottom:138.700500px;}
.y148{bottom:139.014000px;}
.ye2{bottom:139.495500px;}
.y2e6{bottom:140.370157px;}
.y158{bottom:142.411500px;}
.y332{bottom:142.482000px;}
.y1d2{bottom:142.663500px;}
.y62{bottom:142.954500px;}
.y188{bottom:143.074500px;}
.y113{bottom:143.119500px;}
.y33c{bottom:143.430000px;}
.y1c3{bottom:143.560500px;}
.ya4{bottom:143.988000px;}
.y20c{bottom:144.147546px;}
.y7b{bottom:144.903000px;}
.yc2{bottom:146.709000px;}
.y195{bottom:146.892000px;}
.y47{bottom:147.016500px;}
.y30c{bottom:147.464286px;}
.y22{bottom:147.624000px;}
.y315{bottom:147.627214px;}
.y2df{bottom:150.880810px;}
.y2e1{bottom:151.085408px;}
.y2e7{bottom:151.128142px;}
.y2ec{bottom:151.208224px;}
.yce{bottom:152.875500px;}
.y331{bottom:152.941500px;}
.y128{bottom:153.483000px;}
.y112{bottom:153.591000px;}
.y5b{bottom:153.625500px;}
.y2e4{bottom:153.806991px;}
.y16f{bottom:153.891000px;}
.y2da{bottom:153.991179px;}
.yd6{bottom:154.305000px;}
.ya3{bottom:154.459500px;}
.y1a3{bottom:154.698000px;}
.y147{bottom:155.077500px;}
.y135{bottom:155.281500px;}
.y1b3{bottom:156.913500px;}
.y84{bottom:156.940500px;}
.y164{bottom:157.171500px;}
.y311{bottom:157.463831px;}
.y17b{bottom:157.548000px;}
.y30{bottom:157.605000px;}
.y3c{bottom:157.911000px;}
.y8{bottom:158.067000px;}
.y16{bottom:158.250000px;}
.y1fa{bottom:158.512692px;}
.y6d{bottom:159.214500px;}
.y316{bottom:160.107103px;}
.y111{bottom:160.689000px;}
.ya2{bottom:161.557500px;}
.yf1{bottom:161.640000px;}
.y2e8{bottom:161.878899px;}
.ye1{bottom:162.433500px;}
.y157{bottom:162.735000px;}
.y30d{bottom:162.899625px;}
.y330{bottom:163.402500px;}
.y7a{bottom:165.226500px;}
.y1d1{bottom:165.603000px;}
.y1c2{bottom:166.498500px;}
.yc1{bottom:167.032500px;}
.y194{bottom:167.067000px;}
.y1f9{bottom:167.215406px;}
.y33b{bottom:168.237000px;}
.y68{bottom:168.291231px;}
.y189{bottom:168.411231px;}
.y1de{bottom:168.901500px;}
.y46{bottom:169.209000px;}
.y1a2{bottom:170.389500px;}
.y21{bottom:170.563500px;}
.y110{bottom:171.160500px;}
.y1fb{bottom:171.736848px;}
.y2e2{bottom:171.835923px;}
.ya1{bottom:172.029000px;}
.y317{bottom:172.580047px;}
.y2e9{bottom:172.629655px;}
.ycd{bottom:173.199000px;}
.y2f{bottom:173.296500px;}
.y32f{bottom:173.863500px;}
.y5a{bottom:173.949000px;}
.yd5{bottom:174.628500px;}
.y2db{bottom:174.947355px;}
.y146{bottom:175.252500px;}
.y1f5{bottom:175.294472px;}
.y8a{bottom:175.990500px;}
.y16e{bottom:176.083500px;}
.y127{bottom:176.421000px;}
.y312{bottom:176.846503px;}
.y1b2{bottom:177.237000px;}
.y134{bottom:178.242000px;}
.y30e{bottom:178.334681px;}
.y7{bottom:178.390500px;}
.ya0{bottom:179.127000px;}
.y83{bottom:179.131500px;}
.y10f{bottom:179.503500px;}
.y163{bottom:180.111000px;}
.y15{bottom:180.441000px;}
.y17a{bottom:180.486000px;}
.y3b{bottom:180.850500px;}
.yf0{bottom:181.963500px;}
.ye0{bottom:182.758500px;}
.y2ea{bottom:183.387640px;}
.y32e{bottom:184.324500px;}
.y6f{bottom:184.551231px;}
.y318{bottom:185.060220px;}
.y27b{bottom:185.272827px;}
.y202{bottom:185.421652px;}
.y22c{bottom:185.442912px;}
.y1d0{bottom:185.926500px;}
.y1dd{bottom:187.357500px;}
.y24d{bottom:187.405984px;}
.y1fc{bottom:187.413071px;}
.y79{bottom:187.417500px;}
.y23e{bottom:187.427244px;}
.y229{bottom:187.568982px;}
.y2bb{bottom:188.135934px;}
.y1ff{bottom:188.164282px;}
.y282{bottom:188.440671px;}
.y33a{bottom:188.560500px;}
.y1c1{bottom:188.691000px;}
.y27f{bottom:188.717060px;}
.y2be{bottom:189.050144px;}
.yc0{bottom:189.225000px;}
.y9f{bottom:189.598500px;}
.y10e{bottom:189.975000px;}
.y1a1{bottom:190.563000px;}
.y20{bottom:190.887000px;}
.y145{bottom:190.944000px;}
.ye8{bottom:190.962000px;}
.y1f6{bottom:191.339213px;}
.y2b9{bottom:191.842383px;}
.y156{bottom:192.025500px;}
.y45{bottom:192.148500px;}
.y24b{bottom:192.543986px;}
.y2e3{bottom:192.586437px;}
.y227{bottom:192.593594px;}
.y2e{bottom:193.470000px;}
.y30f{bottom:193.770020px;}
.y2eb{bottom:194.138397px;}
.y59{bottom:194.272500px;}
.y32d{bottom:194.785500px;}
.y27c{bottom:195.244095px;}
.ycc{bottom:195.390000px;}
.y241{bottom:195.548832px;}
.y203{bottom:195.555919px;}
.y22d{bottom:195.584266px;}
.y51{bottom:195.682500px;}
.y2dc{bottom:195.903248px;}
.y313{bottom:196.229174px;}
.y9e{bottom:196.696500px;}
.y126{bottom:196.746000px;}
.yd4{bottom:196.819500px;}
.y10d{bottom:197.073000px;}
.y319{bottom:197.533164px;}
.y1b1{bottom:197.560500px;}
.y89{bottom:198.183000px;}
.y6{bottom:198.714000px;}
.y16d{bottom:199.021500px;}
.y133{bottom:199.333500px;}
.y24e{bottom:199.517496px;}
.y1fd{bottom:199.531670px;}
.y23f{bottom:199.560017px;}
.y22a{bottom:199.836406px;}
.y193{bottom:200.691000px;}
.y2bc{bottom:200.984484px;}
.y283{bottom:201.586871px;}
.y82{bottom:202.071000px;}
.y280{bottom:202.139649px;}
.y162{bottom:202.302000px;}
.y179{bottom:202.678500px;}
.y2bf{bottom:202.805817px;}
.y3a{bottom:203.041500px;}
.y14{bottom:203.380500px;}
.yef{bottom:204.154500px;}
.ydf{bottom:204.949500px;}
.y27d{bottom:205.222450px;}
.y32c{bottom:205.246500px;}
.y250{bottom:205.668925px;}
.y204{bottom:205.683099px;}
.y201{bottom:205.697273px;}
.y22e{bottom:205.732707px;}
.y50{bottom:206.143500px;}
.y1a0{bottom:206.254500px;}
.y9d{bottom:207.168000px;}
.y1f7{bottom:207.383955px;}
.y10c{bottom:207.544500px;}
.ybf{bottom:207.681000px;}
.y1cf{bottom:208.117500px;}
.y2ba{bottom:208.390295px;}
.y144{bottom:208.876500px;}
.y2d{bottom:209.161500px;}
.y2ce{bottom:209.169853px;}
.y24c{bottom:209.793501px;}
.y228{bottom:209.885630px;}
.y23d{bottom:209.892717px;}
.y78{bottom:210.357000px;}
.y1c0{bottom:211.629000px;}
.y24f{bottom:211.629008px;}
.y1fe{bottom:211.650269px;}
.y240{bottom:211.692790px;}
.y22b{bottom:212.110917px;}
.y155{bottom:212.349000px;}
.y44{bottom:212.472000px;}
.y1f{bottom:213.079500px;}
.y339{bottom:213.367500px;}
.y2bd{bottom:213.825947px;}
.y9c{bottom:214.266000px;}
.y284{bottom:214.733070px;}
.y27e{bottom:215.193719px;}
.y281{bottom:215.562237px;}
.y32b{bottom:215.707500px;}
.ye7{bottom:215.769000px;}
.y251{bottom:215.796105px;}
.y205{bottom:215.810279px;}
.y22f{bottom:215.874061px;}
.y10b{bottom:215.889000px;}
.y58{bottom:216.465000px;}
.y2c0{bottom:216.561490px;}
.y4f{bottom:216.603000px;}
.y1b0{bottom:217.884000px;}
.y200{bottom:217.943436px;}
.ycb{bottom:218.329500px;}
.y125{bottom:218.937000px;}
.y5{bottom:219.037500px;}
.yb7{bottom:219.232500px;}
.yd3{bottom:219.759000px;}
.y192{bottom:220.864500px;}
.y16c{bottom:221.214000px;}
.y132{bottom:221.526000px;}
.y271{bottom:222.283472px;}
.y2cd{bottom:222.351488px;}
.y81{bottom:222.394500px;}
.y88{bottom:222.990000px;}
.y1f8{bottom:223.428696px;}
.y19f{bottom:224.187000px;}
.y9b{bottom:224.737500px;}
.y161{bottom:225.241500px;}
.y13{bottom:225.573000px;}
.y178{bottom:225.618000px;}
.y39{bottom:225.981000px;}
.y32a{bottom:226.167000px;}
.y10a{bottom:226.360500px;}
.y4e{bottom:227.064000px;}
.yb6{bottom:227.575500px;}
.yde{bottom:227.889000px;}
.ybe{bottom:228.004500px;}
.yee{bottom:228.961500px;}
.y143{bottom:229.050000px;}
.y2c{bottom:229.336500px;}
.y1dc{bottom:229.872000px;}
.y1ce{bottom:231.057000px;}
.y9a{bottom:231.837000px;}
.y1bf{bottom:231.954000px;}
.y77{bottom:232.549500px;}
.y109{bottom:233.458500px;}
.y338{bottom:233.692500px;}
.y306{bottom:234.526782px;}
.y43{bottom:234.663000px;}
.y1ea{bottom:235.051212px;}
.y1e{bottom:236.017500px;}
.y191{bottom:236.556000px;}
.y329{bottom:236.628000px;}
.y57{bottom:237.078000px;}
.y154{bottom:237.156000px;}
.y301{bottom:237.971015px;}
.yb5{bottom:238.047000px;}
.y4d{bottom:238.123500px;}
.y181{bottom:238.470000px;}
.y167{bottom:239.892000px;}
.y1af{bottom:240.076500px;}
.yd2{bottom:240.082500px;}
.yca{bottom:240.522000px;}
.ye6{bottom:240.576000px;}
.y2fd{bottom:240.614429px;}
.y2ca{bottom:240.770341px;}
.y124{bottom:241.876500px;}
.y19e{bottom:242.121000px;}
.y99{bottom:242.307000px;}
.y131{bottom:242.617500px;}
.y1e9{bottom:243.753926px;}
.y108{bottom:243.930000px;}
.y16b{bottom:244.152000px;}
.y80{bottom:244.585500px;}
.y142{bottom:244.741500px;}
.yb4{bottom:245.145000px;}
.y160{bottom:245.565000px;}
.y38{bottom:246.304500px;}
.y328{bottom:247.089000px;}
.y2d0{bottom:247.623373px;}
.y87{bottom:247.797000px;}
.y177{bottom:247.809000px;}
.y2b{bottom:248.016000px;}
.y1eb{bottom:248.275368px;}
.y1db{bottom:248.328000px;}
.y2d5{bottom:248.402932px;}
.y4c{bottom:248.583000px;}
.y2d4{bottom:248.823894px;}
.y98{bottom:249.406500px;}
.y307{bottom:249.940789px;}
.ydd{bottom:250.080000px;}
.ybd{bottom:250.197000px;}
.y12{bottom:250.753500px;}
.y302{bottom:250.947271px;}
.y107{bottom:251.028000px;}
.y1e5{bottom:251.832992px;}
.yed{bottom:251.901000px;}
.y1cd{bottom:253.248000px;}
.y1be{bottom:254.145000px;}
.y190{bottom:254.488500px;}
.y2d8{bottom:255.316912px;}
.y76{bottom:255.487500px;}
.yb3{bottom:255.616500px;}
.y1d{bottom:256.342500px;}
.y56{bottom:257.401500px;}
.y327{bottom:258.148500px;}
.y337{bottom:258.499500px;}
.y42{bottom:259.470000px;}
.y2fe{bottom:259.727727px;}
.y97{bottom:259.878000px;}
.y26c{bottom:261.201873px;}
.y264{bottom:261.230221px;}
.y106{bottom:261.499500px;}
.y1ae{bottom:261.727500px;}
.y2cb{bottom:261.790228px;}
.y153{bottom:261.963000px;}
.y2cf{bottom:262.250735px;}
.yd1{bottom:262.275000px;}
.y19d{bottom:262.294500px;}
.y141{bottom:262.674000px;}
.y130{bottom:262.941000px;}
.y2a9{bottom:262.952338px;}
.y2a2{bottom:263.001946px;}
.y1ec{bottom:263.257074px;}
.y223{bottom:263.299596px;}
.y245{bottom:263.434247px;}
.y237{bottom:263.483855px;}
.y303{bottom:263.916298px;}
.yb2{bottom:263.961000px;}
.y2d1{bottom:264.050594px;}
.y123{bottom:264.067500px;}
.y1f0{bottom:264.702802px;}
.y269{bottom:265.298102px;}
.yc9{bottom:265.329000px;}
.y308{bottom:265.361742px;}
.y2a6{bottom:265.567404px;}
.y15f{bottom:265.888500px;}
.y2a{bottom:265.948500px;}
.y16a{bottom:266.344500px;}
.y1e6{bottom:266.417832px;}
.y7f{bottom:267.525000px;}
.y2d6{bottom:267.537562px;}
.y249{bottom:267.941515px;}
.y23b{bottom:267.955689px;}
.y1f3{bottom:267.962776px;}
.y96{bottom:268.221000px;}
.y37{bottom:268.497000px;}
.y105{bottom:268.597500px;}
.y326{bottom:268.608000px;}
.y1da{bottom:268.651500px;}
.y11{bottom:268.686000px;}
.ybc{bottom:270.520500px;}
.y26d{bottom:270.570755px;}
.y265{bottom:270.620363px;}
.y176{bottom:270.748500px;}
.ydc{bottom:273.019500px;}
.y2aa{bottom:274.071684px;}
.yec{bottom:274.093500px;}
.y2a3{bottom:274.170900px;}
.y18f{bottom:274.663500px;}
.y1ed{bottom:274.674070px;}
.y224{bottom:274.766200px;}
.y246{bottom:275.035502px;}
.y238{bottom:275.127632px;}
.y75{bottom:275.811000px;}
.y1cc{bottom:276.187500px;}
.y304{bottom:276.885325px;}
.y1bd{bottom:277.084500px;}
.y55{bottom:277.726500px;}
.y1c{bottom:278.533500px;}
.y95{bottom:278.692500px;}
.y26a{bottom:278.763212px;}
.y4{bottom:278.775000px;}
.y2ff{bottom:278.834151px;}
.y104{bottom:279.069000px;}
.y2a7{bottom:279.301816px;}
.y26e{bottom:279.939637px;}
.y266{bottom:280.017593px;}
.y2d2{bottom:280.478100px;}
.y309{bottom:280.775749px;}
.y19c{bottom:280.974000px;}
.y1e7{bottom:281.002672px;}
.y1ad{bottom:282.052500px;}
.y1f2{bottom:282.235793px;}
.y2cc{bottom:282.810115px;}
.y140{bottom:282.849000px;}
.y12f{bottom:283.264500px;}
.y336{bottom:283.306500px;}
.y24a{bottom:284.050039px;}
.y23c{bottom:284.071300px;}
.y1f4{bottom:284.092560px;}
.y41{bottom:284.277000px;}
.y2ab{bottom:285.191030px;}
.yd0{bottom:285.214500px;}
.y2a4{bottom:285.339855px;}
.y29{bottom:285.748500px;}
.y94{bottom:285.790500px;}
.y1ee{bottom:286.098153px;}
.y225{bottom:286.232804px;}
.y247{bottom:286.636757px;}
.y2d7{bottom:286.664963px;}
.y152{bottom:286.770000px;}
.y239{bottom:286.778495px;}
.y122{bottom:287.007000px;}
.y10{bottom:287.365500px;}
.y103{bottom:287.413500px;}
.y15e{bottom:288.081000px;}
.ybb{bottom:288.976500px;}
.y169{bottom:289.284000px;}
.y26f{bottom:289.308519px;}
.y267{bottom:289.414822px;}
.y7e{bottom:289.717500px;}
.y305{bottom:289.861580px;}
.y1d9{bottom:290.844000px;}
.y26b{bottom:292.228321px;}
.y175{bottom:292.939500px;}
.y2a8{bottom:293.029141px;}
.y36{bottom:293.304000px;}
.ydb{bottom:293.343000px;}
.y1f1{bottom:294.481956px;}
.y1e8{bottom:295.587512px;}
.y30a{bottom:296.189757px;}
.y93{bottom:296.262000px;}
.y2ac{bottom:296.310376px;}
.y2a5{bottom:296.508809px;}
.y2d3{bottom:296.898376px;}
.yeb{bottom:297.031500px;}
.y1bc{bottom:297.408000px;}
.y1ef{bottom:297.522236px;}
.y226{bottom:297.699408px;}
.y102{bottom:297.885000px;}
.y300{bottom:297.947450px;}
.y74{bottom:298.003500px;}
.y248{bottom:298.238013px;}
.y1cb{bottom:298.380000px;}
.y23a{bottom:298.422272px;}
.y13f{bottom:298.540500px;}
.y270{bottom:298.677400px;}
.y268{bottom:298.804965px;}
.y252{bottom:298.821992px;}
.y54{bottom:299.917500px;}
.y19b{bottom:300.775500px;}
.y1b{bottom:301.473000px;}
.y92{bottom:303.361500px;}
.y1ac{bottom:304.243500px;}
.y101{bottom:304.983000px;}
.y12e{bottom:305.457000px;}
.y3{bottom:305.673000px;}
.y28{bottom:306.297000px;}
.yf{bottom:307.167000px;}
.y40{bottom:307.216500px;}
.ycf{bottom:307.405500px;}
.y121{bottom:309.199500px;}
.yba{bottom:309.300000px;}
.y168{bottom:311.475000px;}
.y151{bottom:311.577000px;}
.y18e{bottom:313.144500px;}
.y91{bottom:313.831500px;}
.y100{bottom:315.454500px;}
.yda{bottom:315.535500px;}
.y13e{bottom:316.473000px;}
.y1bb{bottom:317.731500px;}
.yea{bottom:319.224000px;}
.y90{bottom:320.931000px;}
.y1ca{bottom:321.318000px;}
.y19a{bottom:321.324000px;}
.y53{bottom:322.399500px;}
.yff{bottom:322.552500px;}
.y1a{bottom:323.664000px;}
.y1ab{bottom:325.894500px;}
.y12d{bottom:326.548500px;}
.y27{bottom:328.489500px;}
.y3f{bottom:329.407500px;}
.y1d8{bottom:329.623500px;}
.y8f{bottom:331.402500px;}
.yb9{bottom:331.491000px;}
.y150{bottom:331.900500px;}
.y2{bottom:332.572500px;}
.yfe{bottom:333.024000px;}
.y13d{bottom:336.648000px;}
.y8e{bottom:339.745500px;}
.y1ba{bottom:339.924000px;}
.yfd{bottom:341.367000px;}
.y1c9{bottom:343.510500px;}
.y199{bottom:343.515000px;}
.ye9{bottom:344.031000px;}
.y1aa{bottom:348.087000px;}
.y12c{bottom:348.739500px;}
.y52{bottom:349.704000px;}
.y8d{bottom:350.217000px;}
.yb8{bottom:351.816000px;}
.yfc{bottom:351.838500px;}
.y13c{bottom:354.207000px;}
.y8c{bottom:358.560000px;}
.yfb{bottom:358.938000px;}
.y1{bottom:359.472000px;}
.yfa{bottom:369.409500px;}
.ye{bottom:376.603500px;}
.y8b{bottom:377.476500px;}
.yf9{bottom:377.752500px;}
.yf8{bottom:396.667500px;}
.hf{height:12.270960px;}
.h10{height:14.084280px;}
.h1f{height:16.363567px;}
.h24{height:18.905014px;}
.h17{height:21.340800px;}
.h21{height:21.834654px;}
.h5{height:22.415850px;}
.h25{height:23.106129px;}
.h18{height:24.494400px;}
.h1c{height:26.609095px;}
.h8{height:26.899200px;}
.h23{height:31.586228px;}
.h1d{height:32.522227px;}
.ha{height:35.861700px;}
.hd{height:35.867700px;}
.h6{height:37.469850px;}
.h22{height:39.778770px;}
.h1a{height:41.484266px;}
.h9{height:41.614950px;}
.hb{height:41.620950px;}
.hc{height:44.831700px;}
.h15{height:45.425492px;}
.h14{height:46.145493px;}
.h7{height:49.090950px;}
.h20{height:50.437467px;}
.h13{height:55.291200px;}
.h12{height:55.297200px;}
.h4{height:59.613450px;}
.h3{height:59.619450px;}
.h1e{height:60.699298px;}
.h2{height:64.557900px;}
.h11{height:103.334400px;}
.he{height:149.040000px;}
.h19{height:179.712000px;}
.h16{height:259.200000px;}
.h1b{height:306.154080px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w9{width:108.330353px;}
.wa{width:113.645528px;}
.w7{width:119.144963px;}
.w8{width:122.695500px;}
.w3{width:192.758400px;}
.w2{width:223.560000px;}
.w5{width:335.232000px;}
.w4{width:388.800000px;}
.w6{width:459.231120px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x6b{left:-1.431554px;}
.x0{left:0.000000px;}
.x6c{left:1.055948px;}
.x6d{left:2.232374px;}
.x71{left:3.345017px;}
.x1c{left:4.471269px;}
.x6e{left:5.747476px;}
.x49{left:7.776120px;}
.x78{left:8.908233px;}
.x4d{left:11.034303px;}
.xd{left:12.756000px;}
.x1a{left:14.407269px;}
.x79{left:15.747092px;}
.x7a{left:17.218375px;}
.x82{left:18.418711px;}
.x86{left:20.183562px;}
.x46{left:25.056120px;}
.x19{left:26.355965px;}
.x4b{left:28.347600px;}
.x58{left:30.976840px;}
.x20{left:42.519000px;}
.x7b{left:43.966986px;}
.x18{left:45.843000px;}
.x74{left:48.077530px;}
.x17{left:51.486000px;}
.x2{left:56.347500px;}
.xe{left:57.766500px;}
.xa{left:60.252000px;}
.x8a{left:63.814500px;}
.xb{left:65.428500px;}
.x72{left:68.020066px;}
.x56{left:69.791791px;}
.x4c{left:72.180076px;}
.xf{left:75.247500px;}
.x15{left:76.471500px;}
.x45{left:77.730000px;}
.x75{left:80.904050px;}
.x73{left:83.382065px;}
.x3{left:85.722000px;}
.x43{left:87.286500px;}
.x1{left:89.005500px;}
.x10{left:91.786500px;}
.x5a{left:94.659723px;}
.x12{left:96.925500px;}
.x21{left:98.766600px;}
.x5b{left:103.270307px;}
.x1e{left:105.758508px;}
.x11{left:107.974500px;}
.x1b{left:109.634100px;}
.x16{left:111.682500px;}
.x4a{left:113.153880px;}
.x14{left:118.323000px;}
.x5c{left:120.491474px;}
.x76{left:121.937201px;}
.x3b{left:124.978500px;}
.x5d{left:129.094970px;}
.x77{left:130.143832px;}
.x44{left:135.741000px;}
.x5e{left:137.705554px;}
.x5f{left:146.316137px;}
.x7f{left:162.559312px;}
.x50{left:164.111343px;}
.x87{left:165.635027px;}
.x4e{left:167.215406px;}
.x7c{left:168.257180px;}
.x88{left:169.263520px;}
.x7d{left:170.461206px;}
.x47{left:171.768000px;}
.x84{left:173.572355px;}
.x23{left:180.139500px;}
.x2a{left:184.108500px;}
.x37{left:188.079000px;}
.x48{left:191.235900px;}
.x60{left:196.080349px;}
.x6{left:197.167500px;}
.x89{left:199.545999px;}
.x7e{left:200.849741px;}
.x9{left:204.613500px;}
.x61{left:213.294429px;}
.x8{left:216.739500px;}
.x57{left:219.119861px;}
.x62{left:221.905013px;}
.x7{left:222.963000px;}
.x5{left:225.258000px;}
.x4f{left:227.028841px;}
.x63{left:230.515596px;}
.x4{left:232.860000px;}
.x64{left:239.126180px;}
.x65{left:247.736763px;}
.x3c{left:250.321500px;}
.x66{left:256.347347px;}
.x3f{left:258.261000px;}
.x67{left:264.957930px;}
.x41{left:266.356500px;}
.x25{left:270.406500px;}
.x68{left:273.568514px;}
.x1d{left:274.854000px;}
.x13{left:278.437500px;}
.x69{left:282.172010px;}
.x30{left:286.596000px;}
.x24{left:288.645000px;}
.x6a{left:290.782594px;}
.x2b{left:293.011500px;}
.x1f{left:295.222731px;}
.x38{left:299.043000px;}
.x81{left:315.636352px;}
.x54{left:317.188383px;}
.x51{left:320.292445px;}
.x83{left:323.240497px;}
.x85{left:324.856409px;}
.x8b{left:330.996000px;}
.x52{left:338.314432px;}
.x3e{left:340.588500px;}
.x6f{left:341.652362px;}
.x40{left:348.528000px;}
.x59{left:349.908601px;}
.x80{left:352.793096px;}
.x42{left:356.622000px;}
.x3d{left:358.828500px;}
.x27{left:360.672000px;}
.x2d{left:364.642500px;}
.x35{left:368.611500px;}
.x53{left:370.276351px;}
.x70{left:372.048076px;}
.x31{left:376.861500px;}
.x26{left:378.912000px;}
.x2c{left:383.278500px;}
.x33{left:384.801000px;}
.x39{left:389.310000px;}
.x55{left:444.823452px;}
.x29{left:450.939000px;}
.x2f{left:454.908000px;}
.x36{left:458.878500px;}
.x32{left:467.128500px;}
.x28{left:469.177500px;}
.x2e{left:473.544000px;}
.x34{left:475.068000px;}
.x22{left:507.732000px;}
.xc{left:512.494500px;}
.x3a{left:513.745500px;}
@media print{
.v8{vertical-align:-22.704000pt;}
.vb{vertical-align:-20.637053pt;}
.v2{vertical-align:-13.381333pt;}
.v7{vertical-align:-9.088000pt;}
.v5{vertical-align:-7.973333pt;}
.v4{vertical-align:-6.645333pt;}
.vd{vertical-align:-5.089767pt;}
.vc{vertical-align:-2.041027pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.800000pt;}
.va{vertical-align:4.863188pt;}
.v3{vertical-align:13.381333pt;}
.v1{vertical-align:21.114667pt;}
.v6{vertical-align:25.242667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000374pt;}
.ls19{letter-spacing:0.000462pt;}
.lsf{letter-spacing:0.000539pt;}
.ls10{letter-spacing:0.002322pt;}
.ls8{letter-spacing:0.002400pt;}
.ls1e{letter-spacing:0.002405pt;}
.ls7{letter-spacing:0.002411pt;}
.ls1d{letter-spacing:0.002997pt;}
.lsd{letter-spacing:0.003046pt;}
.ls12{letter-spacing:0.003371pt;}
.lsc{letter-spacing:0.003876pt;}
.ls9{letter-spacing:0.004041pt;}
.lsb{letter-spacing:0.004816pt;}
.lse{letter-spacing:0.005708pt;}
.ls11{letter-spacing:0.011395pt;}
.ls13{letter-spacing:0.012935pt;}
.ls2e{letter-spacing:0.020158pt;}
.ls14{letter-spacing:0.565795pt;}
.ls1{letter-spacing:2.652988pt;}
.ls0{letter-spacing:2.658322pt;}
.ls2d{letter-spacing:6.399855pt;}
.ls2a{letter-spacing:6.400838pt;}
.ls28{letter-spacing:6.401997pt;}
.ls29{letter-spacing:6.402980pt;}
.ls27{letter-spacing:6.425456pt;}
.ls2b{letter-spacing:6.427573pt;}
.ls2c{letter-spacing:6.428555pt;}
.ls1a{letter-spacing:6.557129pt;}
.ls1c{letter-spacing:6.562462pt;}
.ls16{letter-spacing:16.159467pt;}
.ls6{letter-spacing:16.159477pt;}
.ls1f{letter-spacing:16.164811pt;}
.ls23{letter-spacing:18.396181pt;}
.ls5{letter-spacing:18.422763pt;}
.ls1b{letter-spacing:19.394411pt;}
.ls24{letter-spacing:19.832460pt;}
.ls15{letter-spacing:21.817685pt;}
.ls18{letter-spacing:23.016425pt;}
.ls17{letter-spacing:24.722896pt;}
.ls26{letter-spacing:27.723749pt;}
.ls4{letter-spacing:29.091205pt;}
.ls3{letter-spacing:29.092567pt;}
.ls20{letter-spacing:97.581258pt;}
.ls21{letter-spacing:98.664767pt;}
.ls25{letter-spacing:101.738906pt;}
.ls22{letter-spacing:181.753951pt;}
.ws64{word-spacing:-108.043413pt;}
.ws54{word-spacing:-104.969273pt;}
.ws50{word-spacing:-103.885765pt;}
.ws2e{word-spacing:-58.181867pt;}
.ws6{word-spacing:-17.620959pt;}
.ws7{word-spacing:-13.899648pt;}
.ws39{word-spacing:-12.693681pt;}
.ws1f{word-spacing:-8.081715pt;}
.ws69{word-spacing:-7.705508pt;}
.ws20{word-spacing:-6.734718pt;}
.ws4c{word-spacing:-6.304506pt;}
.ws14{word-spacing:-4.774187pt;}
.ws15{word-spacing:-4.092160pt;}
.ws5b{word-spacing:-3.789709pt;}
.ws4{word-spacing:-2.438861pt;}
.ws82{word-spacing:-1.305762pt;}
.ws7f{word-spacing:-1.305639pt;}
.ws72{word-spacing:-1.305574pt;}
.ws81{word-spacing:-1.304778pt;}
.ws7c{word-spacing:-1.304655pt;}
.ws74{word-spacing:-1.304613pt;}
.ws76{word-spacing:-1.304490pt;}
.ws7e{word-spacing:-1.298552pt;}
.ws77{word-spacing:-1.297568pt;}
.ws7b{word-spacing:-1.297544pt;}
.ws79{word-spacing:-1.297537pt;}
.ws7d{word-spacing:-1.297514pt;}
.ws80{word-spacing:-1.297458pt;}
.ws71{word-spacing:-1.290887pt;}
.ws6c{word-spacing:-1.289879pt;}
.ws6d{word-spacing:-1.280171pt;}
.ws7a{word-spacing:-1.280147pt;}
.ws78{word-spacing:-1.280125pt;}
.ws6a{word-spacing:-1.280101pt;}
.ws6f{word-spacing:-1.280024pt;}
.ws6e{word-spacing:-1.272874pt;}
.ws70{word-spacing:-1.272851pt;}
.ws73{word-spacing:-1.272820pt;}
.ws75{word-spacing:-1.271866pt;}
.ws6b{word-spacing:-1.271836pt;}
.ws1c{word-spacing:-0.058182pt;}
.ws46{word-spacing:-0.053134pt;}
.ws1e{word-spacing:-0.031881pt;}
.ws21{word-spacing:-0.026567pt;}
.ws5{word-spacing:0.000000pt;}
.ws5c{word-spacing:2.108331pt;}
.ws2{word-spacing:3.203994pt;}
.ws27{word-spacing:3.235874pt;}
.ws48{word-spacing:3.380366pt;}
.ws68{word-spacing:3.649673pt;}
.ws2f{word-spacing:3.671276pt;}
.ws2c{word-spacing:3.904003pt;}
.ws3f{word-spacing:4.020367pt;}
.ws3a{word-spacing:4.256023pt;}
.ws31{word-spacing:4.311276pt;}
.ws4a{word-spacing:4.369458pt;}
.wsd{word-spacing:4.485822pt;}
.ws47{word-spacing:4.776731pt;}
.ws4b{word-spacing:4.893095pt;}
.ws2d{word-spacing:4.951277pt;}
.ws8{word-spacing:4.999897pt;}
.ws3d{word-spacing:5.009459pt;}
.ws49{word-spacing:5.053031pt;}
.ws36{word-spacing:5.067641pt;}
.ws30{word-spacing:5.184004pt;}
.ws11{word-spacing:5.242186pt;}
.ws3e{word-spacing:5.300368pt;}
.ws32{word-spacing:5.358550pt;}
.ws1{word-spacing:5.474914pt;}
.wsc{word-spacing:5.533096pt;}
.ws38{word-spacing:6.423278pt;}
.ws37{word-spacing:6.481460pt;}
.ws3{word-spacing:6.972337pt;}
.ws0{word-spacing:7.322300pt;}
.ws10{word-spacing:7.398814pt;}
.ws62{word-spacing:9.743284pt;}
.ws3b{word-spacing:15.191285pt;}
.ws3c{word-spacing:15.211751pt;}
.ws65{word-spacing:15.715179pt;}
.ws45{word-spacing:17.652519pt;}
.wsa{word-spacing:19.316380pt;}
.ws9{word-spacing:25.772863pt;}
.wsb{word-spacing:25.774567pt;}
.ws5f{word-spacing:29.221235pt;}
.ws43{word-spacing:30.963667pt;}
.ws42{word-spacing:31.429408pt;}
.ws18{word-spacing:33.330790pt;}
.ws1a{word-spacing:33.441485pt;}
.ws19{word-spacing:38.988128pt;}
.ws4d{word-spacing:40.961652pt;}
.ws53{word-spacing:41.440412pt;}
.ws57{word-spacing:41.793182pt;}
.ws1b{word-spacing:42.177363pt;}
.ws13{word-spacing:44.594387pt;}
.ws17{word-spacing:45.048058pt;}
.ws63{word-spacing:47.009140pt;}
.ws5d{word-spacing:47.563493pt;}
.ws60{word-spacing:49.402937pt;}
.ws44{word-spacing:50.739693pt;}
.ws66{word-spacing:53.837762pt;}
.ws83{word-spacing:55.647471pt;}
.wse{word-spacing:55.679351pt;}
.ws40{word-spacing:57.646592pt;}
.ws51{word-spacing:57.793827pt;}
.ws4f{word-spacing:58.877335pt;}
.ws55{word-spacing:58.952929pt;}
.ws59{word-spacing:59.154512pt;}
.ws41{word-spacing:66.056192pt;}
.wsf{word-spacing:87.751168pt;}
.ws52{word-spacing:91.100367pt;}
.ws56{word-spacing:91.301950pt;}
.ws5a{word-spacing:91.327148pt;}
.ws5e{word-spacing:92.209073pt;}
.ws4e{word-spacing:92.284667pt;}
.ws58{word-spacing:92.435854pt;}
.ws61{word-spacing:92.561843pt;}
.ws67{word-spacing:96.669096pt;}
.ws12{word-spacing:112.436806pt;}
.ws16{word-spacing:120.029677pt;}
.ws23{word-spacing:164.647014pt;}
.ws24{word-spacing:166.001457pt;}
.ws2b{word-spacing:174.193457pt;}
.ws2a{word-spacing:174.198791pt;}
.ws26{word-spacing:188.582791pt;}
.ws25{word-spacing:188.588124pt;}
.ws29{word-spacing:279.002487pt;}
.ws28{word-spacing:280.337457pt;}
.ws22{word-spacing:425.770242pt;}
.ws35{word-spacing:430.092663pt;}
.ws33{word-spacing:453.231203pt;}
.ws1d{word-spacing:464.996536pt;}
.ws34{word-spacing:508.223522pt;}
._72{margin-left:-101.738906pt;}
._68{margin-left:-98.664767pt;}
._64{margin-left:-97.581258pt;}
._63{margin-left:-50.032884pt;}
._62{margin-left:-43.496557pt;}
._61{margin-left:-38.305797pt;}
._5f{margin-left:-37.398674pt;}
._66{margin-left:-36.491551pt;}
._5e{margin-left:-31.114326pt;}
._65{margin-left:-30.207203pt;}
._7{margin-left:-28.386377pt;}
._60{margin-left:-25.696784pt;}
._5d{margin-left:-24.789661pt;}
._70{margin-left:-23.871823pt;}
._5c{margin-left:-18.480115pt;}
._3{margin-left:-16.928563pt;}
._5b{margin-left:-12.180649pt;}
._6a{margin-left:-10.782948pt;}
._6c{margin-left:-9.749836pt;}
._6b{margin-left:-8.187568pt;}
._6e{margin-left:-7.223686pt;}
._59{margin-left:-6.274071pt;}
._c{margin-left:-5.025692pt;}
._5{margin-left:-3.367387pt;}
._0{margin-left:-2.065853pt;}
._2{margin-left:-1.134150pt;}
._6{width:0.924535pt;}
._8{width:2.065853pt;}
._53{width:5.087293pt;}
._74{width:6.403282pt;}
._4{width:15.071529pt;}
._6f{width:16.304758pt;}
._58{width:19.124917pt;}
._b{width:20.306265pt;}
._8d{width:21.664685pt;}
._9{width:24.207018pt;}
._a{width:25.890931pt;}
._8c{width:29.125993pt;}
._1{width:33.283184pt;}
._55{width:43.419878pt;}
._25{width:45.607712pt;}
._54{width:51.590803pt;}
._23{width:53.792032pt;}
._67{width:54.773952pt;}
._16{width:63.014265pt;}
._1b{width:63.970681pt;}
._10{width:65.883513pt;}
._69{width:67.016246pt;}
._71{width:68.301337pt;}
._7b{width:69.554556pt;}
._7c{width:71.316753pt;}
._73{width:72.736162pt;}
._85{width:75.014895pt;}
._e{width:76.545161pt;}
._13{width:77.756621pt;}
._51{width:78.997760pt;}
._6d{width:81.882615pt;}
._f{width:86.746931pt;}
._76{width:88.273832pt;}
._4f{width:93.252352pt;}
._1a{width:94.685184pt;}
._14{width:96.183569pt;}
._83{width:99.951949pt;}
._78{width:105.811490pt;}
._79{width:110.466048pt;}
._86{width:116.045141pt;}
._15{width:116.969677pt;}
._7e{width:119.452913pt;}
._89{width:120.371239pt;}
._57{width:122.803514pt;}
._1f{width:124.725210pt;}
._77{width:126.527360pt;}
._80{width:127.777178pt;}
._18{width:129.002187pt;}
._7d{width:130.742067pt;}
._21{width:131.714707pt;}
._1e{width:132.909088pt;}
._87{width:136.084447pt;}
._24{width:137.025978pt;}
._56{width:139.714733pt;}
._1d{width:141.093850pt;}
._7a{width:142.633506pt;}
._88{width:144.075532pt;}
._22{width:145.222368pt;}
._82{width:147.096781pt;}
._20{width:148.686720pt;}
._42{width:152.422782pt;}
._7f{width:154.116975pt;}
._1c{width:155.162556pt;}
._d{width:158.414370pt;}
._84{width:162.686362pt;}
._8b{width:167.132971pt;}
._8a{width:170.777869pt;}
._19{width:172.300733pt;}
._81{width:183.823155pt;}
._3c{width:187.571509pt;}
._17{width:189.051563pt;}
._2f{width:195.694663pt;}
._27{width:204.673024pt;}
._2c{width:207.490460pt;}
._75{width:214.391805pt;}
._41{width:218.477295pt;}
._12{width:222.161887pt;}
._52{width:223.389952pt;}
._3d{width:228.276568pt;}
._30{width:230.769631pt;}
._40{width:233.893924pt;}
._50{width:237.602048pt;}
._29{width:240.040485pt;}
._3e{width:241.035163pt;}
._2d{width:245.657841pt;}
._4e{width:251.835648pt;}
._2a{width:252.799080pt;}
._11{width:255.490594pt;}
._31{width:257.212143pt;}
._4a{width:271.367100pt;}
._2e{width:272.756294pt;}
._37{width:274.076945pt;}
._4c{width:276.085419pt;}
._3f{width:277.385760pt;}
._4b{width:283.622774pt;}
._2b{width:289.156427pt;}
._43{width:299.039403pt;}
._38{width:301.893497pt;}
._49{width:304.192100pt;}
._33{width:306.874776pt;}
._46{width:313.736329pt;}
._44{width:316.250467pt;}
._45{width:335.638255pt;}
._3a{width:346.892870pt;}
._32{width:358.528478pt;}
._47{width:363.460809pt;}
._48{width:368.845821pt;}
._39{width:384.160427pt;}
._35{width:397.677773pt;}
._34{width:419.579699pt;}
._36{width:433.007961pt;}
._3b{width:477.315345pt;}
._26{width:515.922671pt;}
._28{width:523.879255pt;}
._5a{width:754.158774pt;}
._4d{width:787.841980pt;}
.fsc{font-size:13.632046pt;}
.fs6{font-size:14.720000pt;}
.fs7{font-size:17.173333pt;}
.fsd{font-size:20.158293pt;}
.fsa{font-size:22.678080pt;}
.fs8{font-size:25.600000pt;}
.fs3{font-size:26.566933pt;}
.fsb{font-size:27.717653pt;}
.fs9{font-size:29.866667pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y263{bottom:0.850428pt;}
.y262{bottom:0.856727pt;}
.y261{bottom:0.863027pt;}
.y260{bottom:0.869326pt;}
.y25f{bottom:0.875626pt;}
.y25e{bottom:0.881925pt;}
.y27a{bottom:0.888225pt;}
.y279{bottom:0.894524pt;}
.y2b8{bottom:0.900824pt;}
.y25d{bottom:0.907123pt;}
.y2a1{bottom:0.926022pt;}
.y2a0{bottom:0.932321pt;}
.y29f{bottom:0.944920pt;}
.y29e{bottom:0.957519pt;}
.y278{bottom:0.963818pt;}
.y29d{bottom:0.989016pt;}
.y277{bottom:1.007915pt;}
.y276{bottom:1.033113pt;}
.y25c{bottom:1.064610pt;}
.y275{bottom:1.070909pt;}
.y2b7{bottom:1.108706pt;}
.y25b{bottom:1.171701pt;}
.y274{bottom:1.178000pt;}
.y25a{bottom:1.240995pt;}
.y29b{bottom:1.253594pt;}
.y285{bottom:1.272492pt;}
.y29c{bottom:1.278792pt;}
.y259{bottom:1.379583pt;}
.y258{bottom:1.398482pt;}
.y2b6{bottom:1.411081pt;}
.y257{bottom:1.505573pt;}
.y256{bottom:1.637861pt;}
.y29a{bottom:1.820546pt;}
.y299{bottom:1.839444pt;}
.y297{bottom:2.022129pt;}
.y255{bottom:2.034728pt;}
.y298{bottom:2.041027pt;}
.y2b5{bottom:2.198514pt;}
.y2c3{bottom:2.532386pt;}
.y296{bottom:3.042642pt;}
.y287{bottom:3.061541pt;}
.y6a{bottom:3.505231pt;}
.y2b4{bottom:3.685188pt;}
.y211{bottom:3.905669pt;}
.y1e3{bottom:3.949333pt;}
.y273{bottom:4.182846pt;}
.y2b3{bottom:4.434825pt;}
.y2f3{bottom:4.504119pt;}
.y288{bottom:4.560814pt;}
.yd{bottom:4.649333pt;}
.y2c2{bottom:4.800194pt;}
.y21d{bottom:4.831691pt;}
.y66{bottom:5.740800pt;}
.y272{bottom:5.877402pt;}
.y2b1{bottom:6.708932pt;}
.y2b2{bottom:6.759328pt;}
.y212{bottom:7.238087pt;}
.y69{bottom:7.547128pt;}
.y295{bottom:7.874333pt;}
.y182{bottom:9.984000pt;}
.y2ae{bottom:10.135842pt;}
.y2ad{bottom:10.211435pt;}
.y14f{bottom:10.325333pt;}
.y2af{bottom:12.239864pt;}
.y2b0{bottom:12.271361pt;}
.y21a{bottom:12.567436pt;}
.y185{bottom:13.125440pt;}
.y21b{bottom:13.197383pt;}
.y63{bottom:14.572769pt;}
.y18a{bottom:16.143117pt;}
.y294{bottom:16.177030pt;}
.y2f2{bottom:16.221127pt;}
.y21c{bottom:16.662089pt;}
.y6b{bottom:20.408789pt;}
.y64{bottom:20.749220pt;}
.y254{bottom:21.329994pt;}
.yc8{bottom:22.014667pt;}
.y21e{bottom:22.237117pt;}
.y70{bottom:22.558553pt;}
.y222{bottom:22.822968pt;}
.y28a{bottom:23.188337pt;}
.y61{bottom:24.326667pt;}
.y6e{bottom:24.950553pt;}
.y17f{bottom:25.343947pt;}
.y1b9{bottom:25.404000pt;}
.y13b{bottom:25.630667pt;}
.yb1{bottom:25.760000pt;}
.y253{bottom:25.859311pt;}
.y325{bottom:26.080800pt;}
.y120{bottom:26.094667pt;}
.y14e{bottom:26.265333pt;}
.yf7{bottom:27.316000pt;}
.y2c9{bottom:27.422667pt;}
.y187{bottom:27.460000pt;}
.y2ed{bottom:27.768112pt;}
.y207{bottom:27.925536pt;}
.y214{bottom:28.782263pt;}
.y28b{bottom:28.794862pt;}
.yc{bottom:29.492000pt;}
.y320{bottom:30.438960pt;}
.y1d7{bottom:30.838667pt;}
.y31a{bottom:31.062796pt;}
.y1a9{bottom:31.640000pt;}
.y28f{bottom:31.887900pt;}
.yb0{bottom:32.069333pt;}
.y11f{bottom:32.404000pt;}
.y290{bottom:32.782425pt;}
.y2c6{bottom:32.870617pt;}
.y215{bottom:35.239217pt;}
.y21f{bottom:35.478596pt;}
.y1c8{bottom:35.620000pt;}
.y234{bottom:35.806169pt;}
.y230{bottom:35.875463pt;}
.y242{bottom:35.906960pt;}
.y15d{bottom:36.260000pt;}
.y2f9{bottom:36.895913pt;}
.y2f5{bottom:37.733805pt;}
.y174{bottom:38.494667pt;}
.y2c4{bottom:39.396865pt;}
.y28c{bottom:39.497656pt;}
.yc7{bottom:40.080000pt;}
.y2fc{bottom:40.707091pt;}
.yaf{bottom:41.377333pt;}
.y2c7{bottom:41.532384pt;}
.y216{bottom:41.689870pt;}
.y321{bottom:41.689933pt;}
.y11e{bottom:41.712000pt;}
.y1e2{bottom:41.741333pt;}
.y1e4{bottom:41.768000pt;}
.y291{bottom:41.897753pt;}
.y2ee{bottom:42.029979pt;}
.y31b{bottom:42.382875pt;}
.y60{bottom:42.392000pt;}
.y31f{bottom:42.828499pt;}
.y231{bottom:42.968662pt;}
.y2f4{bottom:43.214341pt;}
.y1b8{bottom:43.469333pt;}
.y13a{bottom:43.697333pt;}
.y14d{bottom:44.198667pt;}
.y180{bottom:44.714987pt;}
.y220{bottom:44.915197pt;}
.y235{bottom:45.267967pt;}
.y243{bottom:45.330962pt;}
.y186{bottom:45.525333pt;}
.y2f8{bottom:45.714663pt;}
.yf6{bottom:47.042667pt;}
.yae{bottom:47.686667pt;}
.y11d{bottom:48.022667pt;}
.y35{bottom:48.038667pt;}
.y217{bottom:48.146824pt;}
.y2c1{bottom:49.998867pt;}
.y232{bottom:50.061862pt;}
.y286{bottom:50.181551pt;}
.y28d{bottom:50.194150pt;}
.y20f{bottom:50.301241pt;}
.y4b{bottom:50.449333pt;}
.y1d6{bottom:50.564000pt;}
.y292{bottom:51.013081pt;}
.y1a8{bottom:51.365333pt;}
.y322{bottom:52.947017pt;}
.y2fa{bottom:53.450975pt;}
.y1c7{bottom:53.686667pt;}
.y31c{bottom:53.709379pt;}
.y2f6{bottom:54.011501pt;}
.y15c{bottom:54.325333pt;}
.y221{bottom:54.358098pt;}
.y218{bottom:54.597478pt;}
.y236{bottom:54.729766pt;}
.y244{bottom:54.754964pt;}
.y2ef{bottom:56.292097pt;}
.y173{bottom:56.560000pt;}
.yad{bottom:56.994667pt;}
.y18d{bottom:57.040000pt;}
.y233{bottom:57.155061pt;}
.y26{bottom:57.298667pt;}
.y11c{bottom:57.329333pt;}
.y14c{bottom:58.145333pt;}
.yc6{bottom:58.146667pt;}
.y2c8{bottom:58.855917pt;}
.y1e1{bottom:59.806667pt;}
.y293{bottom:60.134709pt;}
.y2c5{bottom:60.600869pt;}
.y28e{bottom:60.896944pt;}
.y219{bottom:61.054431pt;}
.y139{bottom:61.762667pt;}
.y5f{bottom:62.118667pt;}
.y1b7{bottom:63.194667pt;}
.y11b{bottom:63.640000pt;}
.y323{bottom:64.197991pt;}
.yac{bottom:64.412000pt;}
.y67{bottom:64.666800pt;}
.y31d{bottom:65.029457pt;}
.y34{bottom:66.104000pt;}
.yf5{bottom:67.432000pt;}
.ye5{bottom:68.138667pt;}
.y2fb{bottom:69.999611pt;}
.y4a{bottom:70.176000pt;}
.y2f7{bottom:70.283087pt;}
.y2f0{bottom:70.553964pt;}
.y1d5{bottom:70.954667pt;}
.y289{bottom:70.991226pt;}
.y73{bottom:71.386667pt;}
.y20d{bottom:71.486348pt;}
.y1c6{bottom:71.752000pt;}
.y1a7{bottom:71.756000pt;}
.y15b{bottom:72.392000pt;}
.y11a{bottom:72.948000pt;}
.yab{bottom:73.720000pt;}
.y14b{bottom:74.086667pt;}
.y213{bottom:74.201418pt;}
.y198{bottom:74.514667pt;}
.y18c{bottom:75.105333pt;}
.y25{bottom:75.365333pt;}
.y324{bottom:75.455075pt;}
.y1e0{bottom:76.212000pt;}
.y172{bottom:76.285333pt;}
.y31e{bottom:76.349536pt;}
.y12b{bottom:76.586667pt;}
.yc5{bottom:77.872000pt;}
.yd9{bottom:78.977333pt;}
.y208{bottom:79.083505pt;}
.y119{bottom:79.257333pt;}
.y17e{bottom:79.530667pt;}
.y138{bottom:79.828000pt;}
.yaa{bottom:80.029333pt;}
.y210{bottom:80.059922pt;}
.y5e{bottom:80.441333pt;}
.y1b6{bottom:82.441333pt;}
.y19{bottom:82.485333pt;}
.y20e{bottom:82.951377pt;}
.y2f1{bottom:84.815830pt;}
.yf4{bottom:85.497333pt;}
.y33{bottom:85.829333pt;}
.ye4{bottom:86.204000pt;}
.yb{bottom:86.306667pt;}
.y1a6{bottom:87.696000pt;}
.y118{bottom:88.565333pt;}
.y7d{bottom:88.685333pt;}
.y1d4{bottom:89.020000pt;}
.ya9{bottom:89.337333pt;}
.y72{bottom:89.452000pt;}
.y1c5{bottom:89.817333pt;}
.y14a{bottom:90.026667pt;}
.y15a{bottom:90.457333pt;}
.y49{bottom:90.565333pt;}
.y209{bottom:91.342267pt;}
.y6c{bottom:93.065333pt;}
.y18b{bottom:93.172000pt;}
.y24{bottom:93.430667pt;}
.y197{bottom:94.240000pt;}
.yc4{bottom:94.277333pt;}
.y12a{bottom:94.652000pt;}
.y117{bottom:94.874667pt;}
.y2de{bottom:95.216439pt;}
.ya8{bottom:95.646667pt;}
.y171{bottom:96.676000pt;}
.y5d{bottom:98.506667pt;}
.y3e{bottom:98.589333pt;}
.yd8{bottom:98.704000pt;}
.y335{bottom:98.754667pt;}
.y137{bottom:99.554667pt;}
.y17d{bottom:99.926667pt;}
.y1b5{bottom:100.506667pt;}
.y166{bottom:101.916000pt;}
.y18{bottom:102.210667pt;}
.y86{bottom:103.370667pt;}
.yf3{bottom:103.564000pt;}
.y20a{bottom:103.607328pt;}
.y1a5{bottom:103.636000pt;}
.y116{bottom:104.182667pt;}
.ye3{bottom:104.269333pt;}
.ya7{bottom:104.954667pt;}
.y32{bottom:106.220000pt;}
.y2dd{bottom:106.933447pt;}
.y1d3{bottom:107.085333pt;}
.y71{bottom:107.517333pt;}
.ya{bottom:107.717333pt;}
.y1c4{bottom:107.882667pt;}
.y149{bottom:107.958667pt;}
.y334{bottom:108.053333pt;}
.y7c{bottom:108.412000pt;}
.y159{bottom:108.522667pt;}
.y33d{bottom:109.428000pt;}
.y48{bottom:110.292000pt;}
.y23{bottom:111.496000pt;}
.y115{bottom:111.598667pt;}
.yc3{bottom:112.342667pt;}
.ya6{bottom:112.370667pt;}
.y183{bottom:112.464000pt;}
.y1df{bottom:114.002667pt;}
.y129{bottom:114.378667pt;}
.y196{bottom:114.630667pt;}
.y2e5{bottom:115.217245pt;}
.y2e0{bottom:115.853491pt;}
.y20b{bottom:115.866090pt;}
.y170{bottom:116.401333pt;}
.y333{bottom:117.352000pt;}
.y30b{bottom:117.359064pt;}
.y5c{bottom:118.233333pt;}
.y2d9{bottom:118.253588pt;}
.y136{bottom:118.302667pt;}
.y3d{bottom:118.314667pt;}
.y184{bottom:118.698560pt;}
.yd7{bottom:119.094667pt;}
.y1a4{bottom:119.576000pt;}
.y165{bottom:119.981333pt;}
.y314{bottom:120.137129pt;}
.y1b4{bottom:120.232000pt;}
.y17c{bottom:120.316000pt;}
.y206{bottom:120.429440pt;}
.y114{bottom:120.906667pt;}
.y85{bottom:121.436000pt;}
.ya5{bottom:121.678667pt;}
.y65{bottom:121.884667pt;}
.y31{bottom:122.160000pt;}
.y9{bottom:122.438667pt;}
.y17{bottom:122.601333pt;}
.y310{bottom:122.738809pt;}
.yf2{bottom:123.289333pt;}
.y148{bottom:123.568000pt;}
.ye2{bottom:123.996000pt;}
.y2e6{bottom:124.773473pt;}
.y158{bottom:126.588000pt;}
.y332{bottom:126.650667pt;}
.y1d2{bottom:126.812000pt;}
.y62{bottom:127.070667pt;}
.y188{bottom:127.177333pt;}
.y113{bottom:127.217333pt;}
.y33c{bottom:127.493333pt;}
.y1c3{bottom:127.609333pt;}
.ya4{bottom:127.989333pt;}
.y20c{bottom:128.131152pt;}
.y7b{bottom:128.802667pt;}
.yc2{bottom:130.408000pt;}
.y195{bottom:130.570667pt;}
.y47{bottom:130.681333pt;}
.y30c{bottom:131.079365pt;}
.y22{bottom:131.221333pt;}
.y315{bottom:131.224190pt;}
.y2df{bottom:134.116275pt;}
.y2e1{bottom:134.298141pt;}
.y2e7{bottom:134.336127pt;}
.y2ec{bottom:134.407311pt;}
.yce{bottom:135.889333pt;}
.y331{bottom:135.948000pt;}
.y128{bottom:136.429333pt;}
.y112{bottom:136.525333pt;}
.y5b{bottom:136.556000pt;}
.y2e4{bottom:136.717325pt;}
.y16f{bottom:136.792000pt;}
.y2da{bottom:136.881048pt;}
.yd6{bottom:137.160000pt;}
.ya3{bottom:137.297333pt;}
.y1a3{bottom:137.509333pt;}
.y147{bottom:137.846667pt;}
.y135{bottom:138.028000pt;}
.y1b3{bottom:139.478667pt;}
.y84{bottom:139.502667pt;}
.y164{bottom:139.708000pt;}
.y311{bottom:139.967850pt;}
.y17b{bottom:140.042667pt;}
.y30{bottom:140.093333pt;}
.y3c{bottom:140.365333pt;}
.y8{bottom:140.504000pt;}
.y16{bottom:140.666667pt;}
.y1fa{bottom:140.900171pt;}
.y6d{bottom:141.524000pt;}
.y316{bottom:142.317425pt;}
.y111{bottom:142.834667pt;}
.ya2{bottom:143.606667pt;}
.yf1{bottom:143.680000pt;}
.y2e8{bottom:143.892355pt;}
.ye1{bottom:144.385333pt;}
.y157{bottom:144.653333pt;}
.y30d{bottom:144.799667pt;}
.y330{bottom:145.246667pt;}
.y7a{bottom:146.868000pt;}
.y1d1{bottom:147.202667pt;}
.y1c2{bottom:147.998667pt;}
.yc1{bottom:148.473333pt;}
.y194{bottom:148.504000pt;}
.y1f9{bottom:148.635916pt;}
.y33b{bottom:149.544000pt;}
.y68{bottom:149.592205pt;}
.y189{bottom:149.698872pt;}
.y1de{bottom:150.134667pt;}
.y46{bottom:150.408000pt;}
.y1a2{bottom:151.457333pt;}
.y21{bottom:151.612000pt;}
.y110{bottom:152.142667pt;}
.y1fb{bottom:152.654976pt;}
.y2e2{bottom:152.743042pt;}
.ya1{bottom:152.914667pt;}
.y317{bottom:153.404486pt;}
.y2e9{bottom:153.448583pt;}
.ycd{bottom:153.954667pt;}
.y2f{bottom:154.041333pt;}
.y32f{bottom:154.545333pt;}
.y5a{bottom:154.621333pt;}
.yd5{bottom:155.225333pt;}
.y2db{bottom:155.508760pt;}
.y146{bottom:155.780000pt;}
.y1f5{bottom:155.817308pt;}
.y8a{bottom:156.436000pt;}
.y16e{bottom:156.518667pt;}
.y127{bottom:156.818667pt;}
.y312{bottom:157.196891pt;}
.y1b2{bottom:157.544000pt;}
.y134{bottom:158.437333pt;}
.y30e{bottom:158.519716pt;}
.y7{bottom:158.569333pt;}
.ya0{bottom:159.224000pt;}
.y83{bottom:159.228000pt;}
.y10f{bottom:159.558667pt;}
.y163{bottom:160.098667pt;}
.y15{bottom:160.392000pt;}
.y17a{bottom:160.432000pt;}
.y3b{bottom:160.756000pt;}
.yf0{bottom:161.745333pt;}
.ye0{bottom:162.452000pt;}
.y2ea{bottom:163.011236pt;}
.y32e{bottom:163.844000pt;}
.y6f{bottom:164.045539pt;}
.y318{bottom:164.497973pt;}
.y27b{bottom:164.686957pt;}
.y202{bottom:164.819246pt;}
.y22c{bottom:164.838144pt;}
.y1d0{bottom:165.268000pt;}
.y1dd{bottom:166.540000pt;}
.y24d{bottom:166.583097pt;}
.y1fc{bottom:166.589396pt;}
.y79{bottom:166.593333pt;}
.y23e{bottom:166.601995pt;}
.y229{bottom:166.727984pt;}
.y2bb{bottom:167.231942pt;}
.y1ff{bottom:167.257139pt;}
.y282{bottom:167.502819pt;}
.y33a{bottom:167.609333pt;}
.y1c1{bottom:167.725333pt;}
.y27f{bottom:167.748498pt;}
.y2be{bottom:168.044573pt;}
.yc0{bottom:168.200000pt;}
.y9f{bottom:168.532000pt;}
.y10e{bottom:168.866667pt;}
.y1a1{bottom:169.389333pt;}
.y20{bottom:169.677333pt;}
.y145{bottom:169.728000pt;}
.ye8{bottom:169.744000pt;}
.y1f6{bottom:170.079301pt;}
.y2b9{bottom:170.526563pt;}
.y156{bottom:170.689333pt;}
.y45{bottom:170.798667pt;}
.y24b{bottom:171.150210pt;}
.y2e3{bottom:171.187944pt;}
.y227{bottom:171.194306pt;}
.y2e{bottom:171.973333pt;}
.y30f{bottom:172.240018pt;}
.y2eb{bottom:172.567464pt;}
.y59{bottom:172.686667pt;}
.y32d{bottom:173.142667pt;}
.y27c{bottom:173.550307pt;}
.ycc{bottom:173.680000pt;}
.y241{bottom:173.821184pt;}
.y203{bottom:173.827483pt;}
.y22d{bottom:173.852681pt;}
.y51{bottom:173.940000pt;}
.y2dc{bottom:174.136220pt;}
.y313{bottom:174.425933pt;}
.y9e{bottom:174.841333pt;}
.y126{bottom:174.885333pt;}
.yd4{bottom:174.950667pt;}
.y10d{bottom:175.176000pt;}
.y319{bottom:175.585034pt;}
.y1b1{bottom:175.609333pt;}
.y89{bottom:176.162667pt;}
.y6{bottom:176.634667pt;}
.y16d{bottom:176.908000pt;}
.y133{bottom:177.185333pt;}
.y24e{bottom:177.348885pt;}
.y1fd{bottom:177.361484pt;}
.y23f{bottom:177.386682pt;}
.y22a{bottom:177.632361pt;}
.y193{bottom:178.392000pt;}
.y2bc{bottom:178.652875pt;}
.y283{bottom:179.188329pt;}
.y82{bottom:179.618667pt;}
.y280{bottom:179.679688pt;}
.y162{bottom:179.824000pt;}
.y179{bottom:180.158667pt;}
.y2bf{bottom:180.271838pt;}
.y3a{bottom:180.481333pt;}
.y14{bottom:180.782667pt;}
.yef{bottom:181.470667pt;}
.ydf{bottom:182.177333pt;}
.y27d{bottom:182.419956pt;}
.y32c{bottom:182.441333pt;}
.y250{bottom:182.816822pt;}
.y204{bottom:182.829421pt;}
.y201{bottom:182.842020pt;}
.y22e{bottom:182.873517pt;}
.y50{bottom:183.238667pt;}
.y1a0{bottom:183.337333pt;}
.y9d{bottom:184.149333pt;}
.y1f7{bottom:184.341293pt;}
.y10c{bottom:184.484000pt;}
.ybf{bottom:184.605333pt;}
.y1cf{bottom:184.993333pt;}
.y2ba{bottom:185.235817pt;}
.y144{bottom:185.668000pt;}
.y2d{bottom:185.921333pt;}
.y2ce{bottom:185.928759pt;}
.y24c{bottom:186.483112pt;}
.y228{bottom:186.565005pt;}
.y23d{bottom:186.571304pt;}
.y78{bottom:186.984000pt;}
.y1c0{bottom:188.114667pt;}
.y24f{bottom:188.114674pt;}
.y1fe{bottom:188.133572pt;}
.y240{bottom:188.171369pt;}
.y22b{bottom:188.543037pt;}
.y155{bottom:188.754667pt;}
.y44{bottom:188.864000pt;}
.y1f{bottom:189.404000pt;}
.y339{bottom:189.660000pt;}
.y2bd{bottom:190.067508pt;}
.y9c{bottom:190.458667pt;}
.y284{bottom:190.873840pt;}
.y27e{bottom:191.283305pt;}
.y281{bottom:191.610878pt;}
.y32b{bottom:191.740000pt;}
.ye7{bottom:191.794667pt;}
.y251{bottom:191.818760pt;}
.y205{bottom:191.831359pt;}
.y22f{bottom:191.888054pt;}
.y10b{bottom:191.901333pt;}
.y58{bottom:192.413333pt;}
.y2c0{bottom:192.499102pt;}
.y4f{bottom:192.536000pt;}
.y1b0{bottom:193.674667pt;}
.y200{bottom:193.727498pt;}
.ycb{bottom:194.070667pt;}
.y125{bottom:194.610667pt;}
.y5{bottom:194.700000pt;}
.yb7{bottom:194.873333pt;}
.yd3{bottom:195.341333pt;}
.y192{bottom:196.324000pt;}
.y16c{bottom:196.634667pt;}
.y132{bottom:196.912000pt;}
.y271{bottom:197.585308pt;}
.y2cd{bottom:197.645767pt;}
.y81{bottom:197.684000pt;}
.y88{bottom:198.213333pt;}
.y1f8{bottom:198.603286pt;}
.y19f{bottom:199.277333pt;}
.y9b{bottom:199.766667pt;}
.y161{bottom:200.214667pt;}
.y13{bottom:200.509333pt;}
.y178{bottom:200.549333pt;}
.y39{bottom:200.872000pt;}
.y32a{bottom:201.037333pt;}
.y10a{bottom:201.209333pt;}
.y4e{bottom:201.834667pt;}
.yb6{bottom:202.289333pt;}
.yde{bottom:202.568000pt;}
.ybe{bottom:202.670667pt;}
.yee{bottom:203.521333pt;}
.y143{bottom:203.600000pt;}
.y2c{bottom:203.854667pt;}
.y1dc{bottom:204.330667pt;}
.y1ce{bottom:205.384000pt;}
.y9a{bottom:206.077333pt;}
.y1bf{bottom:206.181333pt;}
.y77{bottom:206.710667pt;}
.y109{bottom:207.518667pt;}
.y338{bottom:207.726667pt;}
.y306{bottom:208.468250pt;}
.y43{bottom:208.589333pt;}
.y1ea{bottom:208.934411pt;}
.y1e{bottom:209.793333pt;}
.y191{bottom:210.272000pt;}
.y329{bottom:210.336000pt;}
.y57{bottom:210.736000pt;}
.y154{bottom:210.805333pt;}
.y301{bottom:211.529791pt;}
.yb5{bottom:211.597333pt;}
.y4d{bottom:211.665333pt;}
.y181{bottom:211.973333pt;}
.y167{bottom:213.237333pt;}
.y1af{bottom:213.401333pt;}
.yd2{bottom:213.406667pt;}
.yca{bottom:213.797333pt;}
.ye6{bottom:213.845333pt;}
.y2fd{bottom:213.879492pt;}
.y2ca{bottom:214.018081pt;}
.y124{bottom:215.001333pt;}
.y19e{bottom:215.218667pt;}
.y99{bottom:215.384000pt;}
.y131{bottom:215.660000pt;}
.y1e9{bottom:216.670156pt;}
.y108{bottom:216.826667pt;}
.y16b{bottom:217.024000pt;}
.y80{bottom:217.409333pt;}
.y142{bottom:217.548000pt;}
.yb4{bottom:217.906667pt;}
.y160{bottom:218.280000pt;}
.y38{bottom:218.937333pt;}
.y328{bottom:219.634667pt;}
.y2d0{bottom:220.109665pt;}
.y87{bottom:220.264000pt;}
.y177{bottom:220.274667pt;}
.y2b{bottom:220.458667pt;}
.y1eb{bottom:220.689216pt;}
.y1db{bottom:220.736000pt;}
.y2d5{bottom:220.802606pt;}
.y4c{bottom:220.962667pt;}
.y2d4{bottom:221.176794pt;}
.y98{bottom:221.694667pt;}
.y307{bottom:222.169590pt;}
.ydd{bottom:222.293333pt;}
.ybd{bottom:222.397333pt;}
.y12{bottom:222.892000pt;}
.y302{bottom:223.064241pt;}
.y107{bottom:223.136000pt;}
.y1e5{bottom:223.851548pt;}
.yed{bottom:223.912000pt;}
.y1cd{bottom:225.109333pt;}
.y1be{bottom:225.906667pt;}
.y190{bottom:226.212000pt;}
.y2d8{bottom:226.948366pt;}
.y76{bottom:227.100000pt;}
.yb3{bottom:227.214667pt;}
.y1d{bottom:227.860000pt;}
.y56{bottom:228.801333pt;}
.y327{bottom:229.465333pt;}
.y337{bottom:229.777333pt;}
.y42{bottom:230.640000pt;}
.y2fe{bottom:230.869091pt;}
.y97{bottom:231.002667pt;}
.y26c{bottom:232.179443pt;}
.y264{bottom:232.204641pt;}
.y106{bottom:232.444000pt;}
.y1ae{bottom:232.646667pt;}
.y2cb{bottom:232.702425pt;}
.y153{bottom:232.856000pt;}
.y2cf{bottom:233.111764pt;}
.yd1{bottom:233.133333pt;}
.y19d{bottom:233.150667pt;}
.y141{bottom:233.488000pt;}
.y130{bottom:233.725333pt;}
.y2a9{bottom:233.735411pt;}
.y2a2{bottom:233.779507pt;}
.y1ec{bottom:234.006288pt;}
.y223{bottom:234.044085pt;}
.y245{bottom:234.163775pt;}
.y237{bottom:234.207871pt;}
.y303{bottom:234.592265pt;}
.yb2{bottom:234.632000pt;}
.y2d1{bottom:234.711640pt;}
.y123{bottom:234.726667pt;}
.y1f0{bottom:235.291379pt;}
.y269{bottom:235.820535pt;}
.yc9{bottom:235.848000pt;}
.y308{bottom:235.877104pt;}
.y2a6{bottom:236.059914pt;}
.y15f{bottom:236.345333pt;}
.y2a{bottom:236.398667pt;}
.y16a{bottom:236.750667pt;}
.y1e6{bottom:236.815850pt;}
.y7f{bottom:237.800000pt;}
.y2d6{bottom:237.811166pt;}
.y249{bottom:238.170236pt;}
.y23b{bottom:238.182835pt;}
.y1f3{bottom:238.189134pt;}
.y96{bottom:238.418667pt;}
.y37{bottom:238.664000pt;}
.y105{bottom:238.753333pt;}
.y326{bottom:238.762667pt;}
.y1da{bottom:238.801333pt;}
.y11{bottom:238.832000pt;}
.ybc{bottom:240.462667pt;}
.y26d{bottom:240.507338pt;}
.y265{bottom:240.551434pt;}
.y176{bottom:240.665333pt;}
.ydc{bottom:242.684000pt;}
.y2aa{bottom:243.619274pt;}
.yec{bottom:243.638667pt;}
.y2a3{bottom:243.707467pt;}
.y18f{bottom:244.145333pt;}
.y1ed{bottom:244.154729pt;}
.y224{bottom:244.236622pt;}
.y246{bottom:244.476002pt;}
.y238{bottom:244.557895pt;}
.y75{bottom:245.165333pt;}
.y1cc{bottom:245.500000pt;}
.y304{bottom:246.120289pt;}
.y1bd{bottom:246.297333pt;}
.y55{bottom:246.868000pt;}
.y1c{bottom:247.585333pt;}
.y95{bottom:247.726667pt;}
.y26a{bottom:247.789521pt;}
.y4{bottom:247.800000pt;}
.y2ff{bottom:247.852579pt;}
.y104{bottom:248.061333pt;}
.y2a7{bottom:248.268281pt;}
.y26e{bottom:248.835233pt;}
.y266{bottom:248.904527pt;}
.y2d2{bottom:249.313866pt;}
.y309{bottom:249.578444pt;}
.y19c{bottom:249.754667pt;}
.y1e7{bottom:249.780153pt;}
.y1ad{bottom:250.713333pt;}
.y1f2{bottom:250.876260pt;}
.y2cc{bottom:251.386769pt;}
.y140{bottom:251.421333pt;}
.y12f{bottom:251.790667pt;}
.y336{bottom:251.828000pt;}
.y24a{bottom:252.488923pt;}
.y23c{bottom:252.507822pt;}
.y1f4{bottom:252.526720pt;}
.y41{bottom:252.690667pt;}
.y2ab{bottom:253.503138pt;}
.yd0{bottom:253.524000pt;}
.y2a4{bottom:253.635426pt;}
.y29{bottom:253.998667pt;}
.y94{bottom:254.036000pt;}
.y1ee{bottom:254.309469pt;}
.y225{bottom:254.429159pt;}
.y247{bottom:254.788229pt;}
.y2d7{bottom:254.813301pt;}
.y152{bottom:254.906667pt;}
.y239{bottom:254.914218pt;}
.y122{bottom:255.117333pt;}
.y10{bottom:255.436000pt;}
.y103{bottom:255.478667pt;}
.y15e{bottom:256.072000pt;}
.ybb{bottom:256.868000pt;}
.y169{bottom:257.141333pt;}
.y26f{bottom:257.163128pt;}
.y267{bottom:257.257620pt;}
.y7e{bottom:257.526667pt;}
.y305{bottom:257.654738pt;}
.y1d9{bottom:258.528000pt;}
.y26b{bottom:259.758508pt;}
.y175{bottom:260.390667pt;}
.y2a8{bottom:260.470348pt;}
.y36{bottom:260.714667pt;}
.ydb{bottom:260.749333pt;}
.y1f1{bottom:261.761738pt;}
.y1e8{bottom:262.744455pt;}
.y30a{bottom:263.279784pt;}
.y93{bottom:263.344000pt;}
.y2ac{bottom:263.387001pt;}
.y2a5{bottom:263.563386pt;}
.y2d3{bottom:263.909668pt;}
.yeb{bottom:264.028000pt;}
.y1bc{bottom:264.362667pt;}
.y1ef{bottom:264.464210pt;}
.y226{bottom:264.621696pt;}
.y102{bottom:264.786667pt;}
.y300{bottom:264.842178pt;}
.y74{bottom:264.892000pt;}
.y248{bottom:265.100456pt;}
.y1cb{bottom:265.226667pt;}
.y23a{bottom:265.264242pt;}
.y13f{bottom:265.369333pt;}
.y270{bottom:265.491023pt;}
.y268{bottom:265.604413pt;}
.y252{bottom:265.619548pt;}
.y54{bottom:266.593333pt;}
.y19b{bottom:267.356000pt;}
.y1b{bottom:267.976000pt;}
.y92{bottom:269.654667pt;}
.y1ac{bottom:270.438667pt;}
.y101{bottom:271.096000pt;}
.y12e{bottom:271.517333pt;}
.y3{bottom:271.709333pt;}
.y28{bottom:272.264000pt;}
.yf{bottom:273.037333pt;}
.y40{bottom:273.081333pt;}
.ycf{bottom:273.249333pt;}
.y121{bottom:274.844000pt;}
.yba{bottom:274.933333pt;}
.y168{bottom:276.866667pt;}
.y151{bottom:276.957333pt;}
.y18e{bottom:278.350667pt;}
.y91{bottom:278.961333pt;}
.y100{bottom:280.404000pt;}
.yda{bottom:280.476000pt;}
.y13e{bottom:281.309333pt;}
.y1bb{bottom:282.428000pt;}
.yea{bottom:283.754667pt;}
.y90{bottom:285.272000pt;}
.y1ca{bottom:285.616000pt;}
.y19a{bottom:285.621333pt;}
.y53{bottom:286.577333pt;}
.yff{bottom:286.713333pt;}
.y1a{bottom:287.701333pt;}
.y1ab{bottom:289.684000pt;}
.y12d{bottom:290.265333pt;}
.y27{bottom:291.990667pt;}
.y3f{bottom:292.806667pt;}
.y1d8{bottom:292.998667pt;}
.y8f{bottom:294.580000pt;}
.yb9{bottom:294.658667pt;}
.y150{bottom:295.022667pt;}
.y2{bottom:295.620000pt;}
.yfe{bottom:296.021333pt;}
.y13d{bottom:299.242667pt;}
.y8e{bottom:301.996000pt;}
.y1ba{bottom:302.154667pt;}
.yfd{bottom:303.437333pt;}
.y1c9{bottom:305.342667pt;}
.y199{bottom:305.346667pt;}
.ye9{bottom:305.805333pt;}
.y1aa{bottom:309.410667pt;}
.y12c{bottom:309.990667pt;}
.y52{bottom:310.848000pt;}
.y8d{bottom:311.304000pt;}
.yb8{bottom:312.725333pt;}
.yfc{bottom:312.745333pt;}
.y13c{bottom:314.850667pt;}
.y8c{bottom:318.720000pt;}
.yfb{bottom:319.056000pt;}
.y1{bottom:319.530667pt;}
.yfa{bottom:328.364000pt;}
.ye{bottom:334.758667pt;}
.y8b{bottom:335.534667pt;}
.yf9{bottom:335.780000pt;}
.yf8{bottom:352.593333pt;}
.hf{height:10.907520pt;}
.h10{height:12.519360pt;}
.h1f{height:14.545393pt;}
.h24{height:16.804457pt;}
.h17{height:18.969600pt;}
.h21{height:19.408581pt;}
.h5{height:19.925200pt;}
.h25{height:20.538781pt;}
.h18{height:21.772800pt;}
.h1c{height:23.652529pt;}
.h8{height:23.910400pt;}
.h23{height:28.076647pt;}
.h1d{height:28.908646pt;}
.ha{height:31.877067pt;}
.hd{height:31.882400pt;}
.h6{height:33.306533pt;}
.h22{height:35.358906pt;}
.h1a{height:36.874903pt;}
.h9{height:36.991067pt;}
.hb{height:36.996400pt;}
.hc{height:39.850400pt;}
.h15{height:40.378215pt;}
.h14{height:41.018216pt;}
.h7{height:43.636400pt;}
.h20{height:44.833304pt;}
.h13{height:49.147733pt;}
.h12{height:49.153067pt;}
.h4{height:52.989733pt;}
.h3{height:52.995067pt;}
.h1e{height:53.954932pt;}
.h2{height:57.384800pt;}
.h11{height:91.852800pt;}
.he{height:132.480000pt;}
.h19{height:159.744000pt;}
.h16{height:230.400000pt;}
.h1b{height:272.136960pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w9{width:96.293647pt;}
.wa{width:101.018247pt;}
.w7{width:105.906634pt;}
.w8{width:109.062666pt;}
.w3{width:171.340800pt;}
.w2{width:198.720000pt;}
.w5{width:297.984000pt;}
.w4{width:345.600000pt;}
.w6{width:408.205440pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x6b{left:-1.272492pt;}
.x0{left:0.000000pt;}
.x6c{left:0.938621pt;}
.x6d{left:1.984332pt;}
.x71{left:2.973348pt;}
.x1c{left:3.974461pt;}
.x6e{left:5.108867pt;}
.x49{left:6.912107pt;}
.x78{left:7.918430pt;}
.x4d{left:9.808270pt;}
.xd{left:11.338667pt;}
.x1a{left:12.806461pt;}
.x79{left:13.997415pt;}
.x7a{left:15.305222pt;}
.x82{left:16.372188pt;}
.x86{left:17.940944pt;}
.x46{left:22.272107pt;}
.x19{left:23.427524pt;}
.x4b{left:25.197867pt;}
.x58{left:27.534969pt;}
.x20{left:37.794667pt;}
.x7b{left:39.081765pt;}
.x18{left:40.749333pt;}
.x74{left:42.735582pt;}
.x17{left:45.765333pt;}
.x2{left:50.086667pt;}
.xe{left:51.348000pt;}
.xa{left:53.557333pt;}
.x8a{left:56.724000pt;}
.xb{left:58.158667pt;}
.x72{left:60.462281pt;}
.x56{left:62.037148pt;}
.x4c{left:64.160068pt;}
.xf{left:66.886667pt;}
.x15{left:67.974667pt;}
.x45{left:69.093333pt;}
.x75{left:71.914711pt;}
.x73{left:74.117391pt;}
.x3{left:76.197333pt;}
.x43{left:77.588000pt;}
.x1{left:79.116000pt;}
.x10{left:81.588000pt;}
.x5a{left:84.141976pt;}
.x12{left:86.156000pt;}
.x21{left:87.792533pt;}
.x5b{left:91.795828pt;}
.x1e{left:94.007563pt;}
.x11{left:95.977333pt;}
.x1b{left:97.452533pt;}
.x16{left:99.273333pt;}
.x4a{left:100.581227pt;}
.x14{left:105.176000pt;}
.x5c{left:107.103532pt;}
.x76{left:108.388623pt;}
.x3b{left:111.092000pt;}
.x5d{left:114.751085pt;}
.x77{left:115.683406pt;}
.x44{left:120.658667pt;}
.x5e{left:122.404937pt;}
.x5f{left:130.058789pt;}
.x7f{left:144.497166pt;}
.x50{left:145.876750pt;}
.x87{left:147.231135pt;}
.x4e{left:148.635916pt;}
.x7c{left:149.561938pt;}
.x88{left:150.456462pt;}
.x7d{left:151.521072pt;}
.x47{left:152.682667pt;}
.x84{left:154.286538pt;}
.x23{left:160.124000pt;}
.x2a{left:163.652000pt;}
.x37{left:167.181333pt;}
.x48{left:169.987467pt;}
.x60{left:174.293644pt;}
.x6{left:175.260000pt;}
.x89{left:177.374222pt;}
.x7e{left:178.533103pt;}
.x9{left:181.878667pt;}
.x61{left:189.595048pt;}
.x8{left:192.657333pt;}
.x57{left:194.773210pt;}
.x62{left:197.248900pt;}
.x7{left:198.189333pt;}
.x5{left:200.229333pt;}
.x4f{left:201.803415pt;}
.x63{left:204.902752pt;}
.x4{left:206.986667pt;}
.x64{left:212.556604pt;}
.x65{left:220.210456pt;}
.x3c{left:222.508000pt;}
.x66{left:227.864308pt;}
.x3f{left:229.565333pt;}
.x67{left:235.518160pt;}
.x41{left:236.761333pt;}
.x25{left:240.361333pt;}
.x68{left:243.172012pt;}
.x1d{left:244.314667pt;}
.x13{left:247.500000pt;}
.x69{left:250.819565pt;}
.x30{left:254.752000pt;}
.x24{left:256.573333pt;}
.x6a{left:258.473417pt;}
.x2b{left:260.454667pt;}
.x1f{left:262.420205pt;}
.x38{left:265.816000pt;}
.x81{left:280.565646pt;}
.x54{left:281.945230pt;}
.x51{left:284.704396pt;}
.x83{left:287.324886pt;}
.x85{left:288.761253pt;}
.x8b{left:294.218667pt;}
.x52{left:300.723940pt;}
.x3e{left:302.745333pt;}
.x6f{left:303.690989pt;}
.x40{left:309.802667pt;}
.x59{left:311.029867pt;}
.x80{left:313.593864pt;}
.x42{left:316.997333pt;}
.x3d{left:318.958667pt;}
.x27{left:320.597333pt;}
.x2d{left:324.126667pt;}
.x35{left:327.654667pt;}
.x53{left:329.134534pt;}
.x70{left:330.709401pt;}
.x31{left:334.988000pt;}
.x26{left:336.810667pt;}
.x2c{left:340.692000pt;}
.x33{left:342.045333pt;}
.x39{left:346.053333pt;}
.x55{left:395.398624pt;}
.x29{left:400.834667pt;}
.x2f{left:404.362667pt;}
.x36{left:407.892000pt;}
.x32{left:415.225333pt;}
.x28{left:417.046667pt;}
.x2e{left:420.928000pt;}
.x34{left:422.282667pt;}
.x22{left:451.317333pt;}
.xc{left:455.550667pt;}
.x3a{left:456.662667pt;}
}




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