
    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_2fc5a430ff496fd126ffb03c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094000;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_41596bd6fd9184d87deaaa54.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_c34eba95b26fb41ce6923453.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.086000;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_5823b6ba051a7f325e9685fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.086000;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_0289dc3fe91de0488c464e37.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915000;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_c95b237c912908fec6adbefe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.743000;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_6d28690fdf784f1a5bcd29e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_8eb28d2ebea3ae7894fd1d5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.781250;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_5b643a1901d5ae8b0b737dcd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_2f4c3aaafab2ae2218da7610.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915000;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_6d28690fdf784f1a5bcd29e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_c95b237c912908fec6adbefe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.743000;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_5b643a1901d5ae8b0b737dcd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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_17b85769c275859fafddcb13.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.915000;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_4fcf7a9c2da74b6d1b5e93ff.woff2')format("woff");}.fff{font-family:fff;line-height:0.996000;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_ae8a49c3078dcfdf2d4bda64.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.094000;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_43d8df9c3186ba1a6e1bad88.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.086000;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_e6c2f5e07404faeb64a42a96.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.822000;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_b63a11a7b2d280e31ddba06b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.100098;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_18786a234a5d94a25593a52e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.094000;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_4fcf7a9c2da74b6d1b5e93ff.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.996000;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_18786a234a5d94a25593a52e.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.094000;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_4fcf7a9c2da74b6d1b5e93ff.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.996000;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_42553adb8933411eedf4db2e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.915000;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_c95b237c912908fec6adbefe.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.743000;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_6d28690fdf784f1a5bcd29e9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.100098;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_5b643a1901d5ae8b0b737dcd.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.100098;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_2f4c3aaafab2ae2218da7610.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.915000;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_079579da63297aa001afa743.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.094000;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_4fcf7a9c2da74b6d1b5e93ff.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.996000;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_7a39208e612d57badf4634dc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.818000;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_6d28690fdf784f1a5bcd29e9.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.100098;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_c95b237c912908fec6adbefe.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.743000;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_5b643a1901d5ae8b0b737dcd.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.100098;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_d633730469f8ae09bb8ecf09.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.915000;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_a0537834a4210a91f5260039.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.996000;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_4fcf7a9c2da74b6d1b5e93ff.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.996000;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_aecc1ddc8fc920fe9251a770.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.094000;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_4fcf7a9c2da74b6d1b5e93ff.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.996000;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_4d3b9c3270847462b7460d0e.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.094000;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);}
.m3{transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.250200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.637000px;}
.v8{vertical-align:16.686000px;}
.v9{vertical-align:18.549270px;}
.v6{vertical-align:19.980000px;}
.v7{vertical-align:21.333061px;}
.v4{vertical-align:23.375160px;}
.v3{vertical-align:25.946428px;}
.va{vertical-align:31.761602px;}
.v5{vertical-align:49.322146px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000060px;}
.ls9{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.lsa{letter-spacing:0.066744px;}
.lse{letter-spacing:0.071442px;}
.lsc{letter-spacing:0.075498px;}
.ls2{letter-spacing:0.093500px;}
.lsd{letter-spacing:0.641733px;}
.ls8{letter-spacing:0.771034px;}
.ls5{letter-spacing:1.128884px;}
.ls7{letter-spacing:1.381021px;}
.ls6{letter-spacing:1.597349px;}
.lsb{letter-spacing:1.877526px;}
.ls4{letter-spacing:2.467238px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsef{word-spacing:-9.720000px;}
.ws127{word-spacing:-8.748000px;}
.ws0{word-spacing:-8.064000px;}
.ws1{word-spacing:-7.920000px;}
.ws4c{word-spacing:-6.545045px;}
.ws8c{word-spacing:-6.455131px;}
.ws8a{word-spacing:-6.431746px;}
.ws67{word-spacing:-5.876640px;}
.ws109{word-spacing:-5.284843px;}
.ws8e{word-spacing:-5.213327px;}
.ws94{word-spacing:-4.740000px;}
.wsb9{word-spacing:-4.672080px;}
.wsd9{word-spacing:-3.360000px;}
.wsd2{word-spacing:-3.060000px;}
.wsdb{word-spacing:-2.880000px;}
.wsf4{word-spacing:-2.820000px;}
.wsb1{word-spacing:-2.640000px;}
.wsad{word-spacing:-2.520000px;}
.ws77{word-spacing:-2.460000px;}
.wsf6{word-spacing:-2.280000px;}
.ws11c{word-spacing:-2.160000px;}
.ws1c{word-spacing:-1.920000px;}
.ws75{word-spacing:-1.800000px;}
.ws9c{word-spacing:-1.740000px;}
.wsaa{word-spacing:-1.722000px;}
.ws3b{word-spacing:-1.680000px;}
.ws76{word-spacing:-1.620000px;}
.ws74{word-spacing:-1.560000px;}
.wsa2{word-spacing:-1.500000px;}
.ws7e{word-spacing:-1.470000px;}
.wsd6{word-spacing:-1.440000px;}
.ws8{word-spacing:-1.404000px;}
.ws3{word-spacing:-1.350000px;}
.wsdc{word-spacing:-1.320000px;}
.ws70{word-spacing:-1.260000px;}
.wsd3{word-spacing:-1.200000px;}
.ws5c{word-spacing:-1.140000px;}
.ws73{word-spacing:-1.080000px;}
.ws52{word-spacing:-1.020000px;}
.wsa1{word-spacing:-0.960000px;}
.ws41{word-spacing:-0.900000px;}
.wsf0{word-spacing:-0.840000px;}
.wsd8{word-spacing:-0.780000px;}
.ws9{word-spacing:-0.756000px;}
.ws9a{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.660000px;}
.ws100{word-spacing:-0.588000px;}
.wsf{word-spacing:-0.540000px;}
.ws126{word-spacing:-0.480000px;}
.ws125{word-spacing:-0.420000px;}
.ws7d{word-spacing:-0.378000px;}
.wsa5{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.300000px;}
.ws115{word-spacing:-0.240000px;}
.ws39{word-spacing:-0.180000px;}
.wsa9{word-spacing:-0.168000px;}
.ws9e{word-spacing:-0.120000px;}
.ws79{word-spacing:-0.060000px;}
.ws11{word-spacing:-0.048000px;}
.ws68{word-spacing:-0.042000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.054000px;}
.wsb8{word-spacing:0.084000px;}
.ws5e{word-spacing:0.120000px;}
.ws65{word-spacing:0.180000px;}
.ws96{word-spacing:0.240000px;}
.wsb2{word-spacing:0.300000px;}
.ws6e{word-spacing:0.360000px;}
.ws23{word-spacing:0.420000px;}
.ws7a{word-spacing:0.540000px;}
.ws5b{word-spacing:0.600000px;}
.ws64{word-spacing:0.612000px;}
.ws46{word-spacing:0.660000px;}
.ws58{word-spacing:0.720000px;}
.ws6{word-spacing:0.756000px;}
.wse2{word-spacing:0.780000px;}
.ws18{word-spacing:0.840000px;}
.wsb3{word-spacing:0.960000px;}
.ws71{word-spacing:1.020000px;}
.ws4e{word-spacing:1.080000px;}
.ws55{word-spacing:1.200000px;}
.wsea{word-spacing:1.260000px;}
.wsc3{word-spacing:1.320000px;}
.wsf1{word-spacing:1.380000px;}
.wseb{word-spacing:1.440000px;}
.ws5{word-spacing:1.458000px;}
.ws19{word-spacing:1.500000px;}
.ws124{word-spacing:1.560000px;}
.wsa{word-spacing:1.566000px;}
.ws2e{word-spacing:1.620000px;}
.wse3{word-spacing:1.680000px;}
.ws61{word-spacing:1.728000px;}
.ws102{word-spacing:1.740000px;}
.ws69{word-spacing:1.800000px;}
.wsfe{word-spacing:1.890000px;}
.ws9b{word-spacing:1.920000px;}
.ws40{word-spacing:1.980000px;}
.ws27{word-spacing:2.040000px;}
.ws1a{word-spacing:2.100000px;}
.ws6a{word-spacing:2.160000px;}
.wsd5{word-spacing:2.220000px;}
.ws128{word-spacing:2.280000px;}
.ws12{word-spacing:2.340000px;}
.wsc4{word-spacing:2.460000px;}
.ws89{word-spacing:2.478000px;}
.ws28{word-spacing:2.520000px;}
.wsab{word-spacing:2.640000px;}
.wsc{word-spacing:2.646000px;}
.wsf7{word-spacing:2.700000px;}
.ws4{word-spacing:2.808000px;}
.ws34{word-spacing:2.820000px;}
.ws113{word-spacing:2.880000px;}
.ws22{word-spacing:2.940000px;}
.ws47{word-spacing:3.000000px;}
.ws16{word-spacing:3.060000px;}
.wsff{word-spacing:3.066000px;}
.ws112{word-spacing:3.120000px;}
.wsfc{word-spacing:3.180000px;}
.ws98{word-spacing:3.240000px;}
.ws1b{word-spacing:3.300000px;}
.ws6c{word-spacing:3.360000px;}
.wsac{word-spacing:3.420000px;}
.ws63{word-spacing:3.456000px;}
.ws26{word-spacing:3.480000px;}
.ws62{word-spacing:3.492000px;}
.ws7b{word-spacing:3.540000px;}
.ws21{word-spacing:3.600000px;}
.wscb{word-spacing:3.720000px;}
.wsd7{word-spacing:3.780000px;}
.ws57{word-spacing:3.840000px;}
.ws6d{word-spacing:3.900000px;}
.wsda{word-spacing:3.960000px;}
.ws88{word-spacing:3.990000px;}
.ws17{word-spacing:4.020000px;}
.ws2d{word-spacing:4.080000px;}
.ws24{word-spacing:4.140000px;}
.ws111{word-spacing:4.200000px;}
.ws35{word-spacing:4.260000px;}
.ws3c{word-spacing:4.440000px;}
.ws99{word-spacing:4.560000px;}
.wsd{word-spacing:4.590000px;}
.wsa7{word-spacing:4.620000px;}
.wsc6{word-spacing:4.680000px;}
.ws78{word-spacing:4.740000px;}
.wsf5{word-spacing:4.800000px;}
.wsa4{word-spacing:4.860000px;}
.ws7c{word-spacing:4.920000px;}
.ws15{word-spacing:4.980000px;}
.wsd0{word-spacing:5.100000px;}
.wse{word-spacing:5.238000px;}
.ws33{word-spacing:5.280000px;}
.wsee{word-spacing:5.400000px;}
.ws1f{word-spacing:5.460000px;}
.ws9f{word-spacing:5.580000px;}
.wsc5{word-spacing:5.640000px;}
.wsed{word-spacing:5.700000px;}
.ws2b{word-spacing:5.760000px;}
.wsce{word-spacing:5.820000px;}
.ws29{word-spacing:5.880000px;}
.wsb{word-spacing:5.886000px;}
.ws3e{word-spacing:6.000000px;}
.ws121{word-spacing:6.060000px;}
.ws10e{word-spacing:6.120000px;}
.ws10d{word-spacing:6.180000px;}
.wsb7{word-spacing:6.258000px;}
.ws25{word-spacing:6.300000px;}
.ws3d{word-spacing:6.360000px;}
.ws54{word-spacing:6.420000px;}
.ws110{word-spacing:6.480000px;}
.ws103{word-spacing:6.540000px;}
.ws14{word-spacing:6.600000px;}
.ws3f{word-spacing:6.720000px;}
.ws60{word-spacing:6.780000px;}
.wsde{word-spacing:6.960000px;}
.ws117{word-spacing:7.014000px;}
.wsb0{word-spacing:7.020000px;}
.ws36{word-spacing:7.140000px;}
.ws10f{word-spacing:7.200000px;}
.wse7{word-spacing:7.260000px;}
.wsfd{word-spacing:7.266000px;}
.ws80{word-spacing:7.308000px;}
.ws5d{word-spacing:7.320000px;}
.wsfb{word-spacing:7.440000px;}
.ws93{word-spacing:7.500000px;}
.wsec{word-spacing:7.560000px;}
.ws44{word-spacing:7.620000px;}
.ws119{word-spacing:7.740000px;}
.wsae{word-spacing:7.800000px;}
.ws11e{word-spacing:7.920000px;}
.wsfa{word-spacing:7.980000px;}
.wsa3{word-spacing:8.040000px;}
.ws101{word-spacing:8.100000px;}
.wsc8{word-spacing:8.160000px;}
.ws56{word-spacing:8.280000px;}
.ws2f{word-spacing:8.460000px;}
.ws2c{word-spacing:8.520000px;}
.ws85{word-spacing:8.568000px;}
.wse9{word-spacing:8.640000px;}
.ws53{word-spacing:8.760000px;}
.ws83{word-spacing:8.778000px;}
.ws9d{word-spacing:8.940000px;}
.ws3a{word-spacing:9.000000px;}
.ws122{word-spacing:9.060000px;}
.ws114{word-spacing:9.120000px;}
.wsc7{word-spacing:9.240000px;}
.ws11b{word-spacing:9.300000px;}
.ws43{word-spacing:9.360000px;}
.wsa8{word-spacing:9.408000px;}
.ws20{word-spacing:9.420000px;}
.wsdd{word-spacing:9.480000px;}
.ws6b{word-spacing:9.540000px;}
.wsa6{word-spacing:9.600000px;}
.ws31{word-spacing:9.660000px;}
.wscd{word-spacing:9.720000px;}
.ws5a{word-spacing:9.780000px;}
.wse6{word-spacing:9.840000px;}
.ws11d{word-spacing:10.080000px;}
.ws1d{word-spacing:10.140000px;}
.ws116{word-spacing:10.380000px;}
.ws1e{word-spacing:10.440000px;}
.ws123{word-spacing:10.680000px;}
.wse0{word-spacing:10.800000px;}
.ws51{word-spacing:10.860000px;}
.ws11a{word-spacing:10.920000px;}
.ws30{word-spacing:11.040000px;}
.wsd1{word-spacing:11.100000px;}
.wsb4{word-spacing:11.256000px;}
.ws5f{word-spacing:11.340000px;}
.ws32{word-spacing:11.700000px;}
.wscf{word-spacing:11.760000px;}
.wsaf{word-spacing:11.820000px;}
.ws11f{word-spacing:11.880000px;}
.wse8{word-spacing:12.000000px;}
.wsdf{word-spacing:12.480000px;}
.wsf8{word-spacing:12.540000px;}
.ws4d{word-spacing:12.660000px;}
.wsca{word-spacing:12.780000px;}
.wsa0{word-spacing:13.200000px;}
.wse5{word-spacing:13.620000px;}
.ws59{word-spacing:13.680000px;}
.ws95{word-spacing:13.920000px;}
.ws37{word-spacing:13.980000px;}
.ws45{word-spacing:14.100000px;}
.wsf9{word-spacing:14.760000px;}
.wsf2{word-spacing:15.300000px;}
.ws7f{word-spacing:15.372000px;}
.ws97{word-spacing:15.660000px;}
.wsc2{word-spacing:15.960000px;}
.wse1{word-spacing:16.080000px;}
.wscc{word-spacing:16.200000px;}
.ws72{word-spacing:16.380000px;}
.ws87{word-spacing:16.884000px;}
.wsb5{word-spacing:17.136000px;}
.ws6f{word-spacing:17.640000px;}
.wsb6{word-spacing:19.068000px;}
.ws82{word-spacing:19.194000px;}
.ws4f{word-spacing:19.200000px;}
.ws118{word-spacing:19.440000px;}
.wsc9{word-spacing:20.220000px;}
.wse4{word-spacing:23.400000px;}
.ws81{word-spacing:24.486000px;}
.ws10{word-spacing:25.578000px;}
.ws120{word-spacing:25.740000px;}
.ws86{word-spacing:27.930000px;}
.ws42{word-spacing:28.680000px;}
.wsf3{word-spacing:28.920000px;}
.ws50{word-spacing:29.340000px;}
.ws84{word-spacing:57.960000px;}
.ws2a{word-spacing:68.440200px;}
.ws4b{word-spacing:68.956722px;}
.ws66{word-spacing:69.608400px;}
.wsd4{word-spacing:77.845200px;}
.ws4a{word-spacing:114.257489px;}
.ws49{word-spacing:122.064772px;}
.ws104{word-spacing:138.387834px;}
.wsbb{word-spacing:140.963328px;}
.wsbf{word-spacing:144.567504px;}
.wsbe{word-spacing:144.667620px;}
.ws108{word-spacing:146.768112px;}
.ws106{word-spacing:146.919108px;}
.wsba{word-spacing:152.076204px;}
.wsbc{word-spacing:152.109576px;}
.wsc1{word-spacing:155.813868px;}
.ws48{word-spacing:155.818417px;}
.ws107{word-spacing:159.300780px;}
.wsbd{word-spacing:159.518160px;}
.ws105{word-spacing:161.603469px;}
.ws10b{word-spacing:162.673434px;}
.ws10a{word-spacing:162.816318px;}
.wsc0{word-spacing:166.926744px;}
.ws90{word-spacing:170.440604px;}
.ws10c{word-spacing:170.710659px;}
.ws8f{word-spacing:177.572947px;}
.ws8d{word-spacing:181.934799px;}
.ws92{word-spacing:184.673306px;}
.ws91{word-spacing:188.223486px;}
.ws8b{word-spacing:199.269261px;}
._39{margin-left:-3.534000px;}
._29{margin-left:-2.496000px;}
._1{margin-left:-1.356000px;}
._0{width:1.587600px;}
._28{width:2.595600px;}
._5{width:3.600000px;}
._6{width:5.286000px;}
._3{width:6.870000px;}
._4{width:8.424000px;}
._9{width:10.854000px;}
._7{width:12.828000px;}
._38{width:14.490000px;}
._50{width:17.694000px;}
._a{width:19.428000px;}
._51{width:20.586000px;}
._16{width:26.199436px;}
._2b{width:27.554850px;}
._3a{width:32.586000px;}
._4f{width:37.992790px;}
._3c{width:47.538997px;}
._2a{width:50.470290px;}
._3b{width:54.422613px;}
._45{width:57.550523px;}
._46{width:70.057627px;}
._4e{width:73.931738px;}
._1c{width:75.681853px;}
._3e{width:103.108411px;}
._44{width:109.250413px;}
._f{width:112.293980px;}
._12{width:113.667986px;}
._3f{width:115.184299px;}
._15{width:118.102922px;}
._13{width:121.135079px;}
._c{width:122.672525px;}
._37{width:126.060300px;}
._14{width:128.300224px;}
._35{width:130.473302px;}
._36{width:131.766912px;}
._d{width:135.154828px;}
._3d{width:137.263971px;}
._43{width:138.501081px;}
._4d{width:139.524828px;}
._30{width:140.547087px;}
._2e{width:141.864372px;}
._2d{width:143.232624px;}
._26{width:145.617813px;}
._33{width:148.660802px;}
._25{width:149.710977px;}
._42{width:150.907584px;}
._31{width:152.176320px;}
._e{width:156.192418px;}
._32{width:159.951996px;}
._27{width:161.657939px;}
._2f{width:163.255824px;}
._34{width:166.210155px;}
._40{width:167.756556px;}
._2c{width:170.664408px;}
._18{width:172.490657px;}
._1e{width:175.110210px;}
._41{width:177.118308px;}
._1f{width:181.890733px;}
._22{width:183.054832px;}
._23{width:186.144552px;}
._20{width:188.991092px;}
._17{width:190.351431px;}
._19{width:191.605255px;}
._1d{width:193.468796px;}
._1b{width:194.986514px;}
._24{width:196.283353px;}
._4a{width:198.317124px;}
._1a{width:199.482052px;}
._21{width:200.569156px;}
._49{width:206.247186px;}
._47{width:207.325283px;}
._48{width:208.539198px;}
._4b{width:215.255345px;}
._4c{width:216.469260px;}
._11{width:224.184346px;}
._10{width:272.693917px;}
._b{width:283.072461px;}
._8{width:914.220000px;}
._2{width:1337.568600px;}
.fca{color:rgb(4,6,6);}
.fc8{color:rgb(101,151,45);}
.fc7{color:rgb(53,145,165);}
.fc5{color:rgb(64,172,173);}
.fc4{color:rgb(254,255,253);}
.fc3{color:rgb(103,104,102);}
.fc1{color:rgb(224,63,93);}
.fc9{color:rgb(80,80,80);}
.fc6{color:rgb(46,46,46);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:27.810000px;}
.fs14{font-size:29.767200px;}
.fs12{font-size:31.457400px;}
.fsd{font-size:31.983600px;}
.fs10{font-size:32.252400px;}
.fsf{font-size:33.372000px;}
.fsa{font-size:34.980000px;}
.fs13{font-size:35.721000px;}
.fs6{font-size:36.000000px;}
.fs11{font-size:37.749000px;}
.fsb{font-size:38.284200px;}
.fsc{font-size:38.423400px;}
.fs9{font-size:38.958600px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:44.152800px;}
.fs7{font-size:46.750200px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y12d{bottom:1.780050px;}
.y165{bottom:1.857450px;}
.y1ac{bottom:1.858350px;}
.y1db{bottom:2.238150px;}
.y112{bottom:2.250411px;}
.y113{bottom:2.253600px;}
.y122{bottom:2.265900px;}
.y170{bottom:2.323050px;}
.y1b7{bottom:2.325600px;}
.y205{bottom:2.623500px;}
.y1d9{bottom:2.684250px;}
.y1d5{bottom:2.688000px;}
.y1c7{bottom:2.781600px;}
.y180{bottom:2.782050px;}
.y11c{bottom:3.371100px;}
.y116{bottom:3.376050px;}
.y118{bottom:3.377400px;}
.y11a{bottom:3.378600px;}
.y124{bottom:3.391800px;}
.y111{bottom:14.635350px;}
.y168{bottom:20.850900px;}
.y1af{bottom:20.851800px;}
.y21{bottom:25.267500px;}
.y10f{bottom:27.034800px;}
.y120{bottom:27.119850px;}
.y43{bottom:27.364200px;}
.y22{bottom:28.176750px;}
.y1fa{bottom:65.246400px;}
.y1d3{bottom:66.562500px;}
.y9d{bottom:68.128200px;}
.y279{bottom:68.128350px;}
.y235{bottom:68.532600px;}
.ydf{bottom:69.120300px;}
.y1f{bottom:70.691250px;}
.yee{bottom:71.298750px;}
.y6e{bottom:72.616500px;}
.y25d{bottom:74.364450px;}
.y18{bottom:74.475450px;}
.y199{bottom:75.120300px;}
.y1d2{bottom:79.162500px;}
.y1a5{bottom:80.128200px;}
.y42{bottom:81.096750px;}
.y234{bottom:81.132600px;}
.y159{bottom:82.963950px;}
.y1f9{bottom:83.246400px;}
.yed{bottom:83.898750px;}
.y10b{bottom:84.027000px;}
.y9c{bottom:86.128200px;}
.y278{bottom:86.128350px;}
.yde{bottom:87.120300px;}
.y6d{bottom:90.616500px;}
.y1d1{bottom:91.762500px;}
.y153{bottom:92.128200px;}
.y25c{bottom:92.364450px;}
.y198{bottom:93.120300px;}
.y158{bottom:95.563950px;}
.yec{bottom:96.498750px;}
.y10a{bottom:96.627000px;}
.y1a4{bottom:98.128200px;}
.y41{bottom:99.096750px;}
.yfa{bottom:104.128200px;}
.y277{bottom:104.128350px;}
.ydd{bottom:105.120300px;}
.y17{bottom:107.775450px;}
.y157{bottom:108.163950px;}
.y6c{bottom:108.616500px;}
.yeb{bottom:109.098750px;}
.y109{bottom:109.227000px;}
.y152{bottom:110.128200px;}
.y25b{bottom:110.364450px;}
.y197{bottom:111.120300px;}
.y1d0{bottom:112.635600px;}
.y1f8{bottom:113.246400px;}
.y9b{bottom:116.128200px;}
.y40{bottom:117.096750px;}
.y156{bottom:120.763950px;}
.yea{bottom:121.698750px;}
.y108{bottom:121.827000px;}
.y276{bottom:122.128350px;}
.ydc{bottom:123.120300px;}
.y16{bottom:123.975450px;}
.y1cf{bottom:125.235600px;}
.y6b{bottom:126.616500px;}
.y151{bottom:128.128200px;}
.y25a{bottom:128.364450px;}
.y196{bottom:129.120300px;}
.y155{bottom:133.363950px;}
.y9a{bottom:134.128200px;}
.ye9{bottom:134.298750px;}
.y107{bottom:134.427000px;}
.y15{bottom:140.175450px;}
.y1cb{bottom:141.120300px;}
.y1f7{bottom:143.246400px;}
.y1ce{bottom:145.755450px;}
.y154{bottom:145.963950px;}
.y150{bottom:146.128200px;}
.y259{bottom:146.364450px;}
.ye8{bottom:146.898750px;}
.y106{bottom:147.027000px;}
.y3f{bottom:147.096750px;}
.y99{bottom:152.128200px;}
.y275{bottom:152.128350px;}
.ydb{bottom:153.120300px;}
.y14{bottom:156.375600px;}
.y6a{bottom:156.616500px;}
.y1cd{bottom:158.355450px;}
.y195{bottom:159.120300px;}
.ye7{bottom:159.498750px;}
.y1f6{bottom:161.246400px;}
.y258{bottom:164.364450px;}
.y3e{bottom:165.096750px;}
.y98{bottom:170.128200px;}
.y274{bottom:170.128350px;}
.y1cc{bottom:170.955450px;}
.yda{bottom:171.120300px;}
.ye6{bottom:172.098750px;}
.y69{bottom:174.616500px;}
.y14f{bottom:176.128200px;}
.y194{bottom:177.120300px;}
.y1f5{bottom:179.246400px;}
.y3d{bottom:183.096750px;}
.ye5{bottom:184.698750px;}
.y97{bottom:188.128200px;}
.y273{bottom:188.128350px;}
.y13{bottom:188.775450px;}
.yd9{bottom:189.120300px;}
.y68{bottom:192.616500px;}
.y14e{bottom:194.128200px;}
.y257{bottom:194.364450px;}
.y193{bottom:195.120300px;}
.y1f4{bottom:197.246400px;}
.ye4{bottom:197.298750px;}
.y1a3{bottom:200.128200px;}
.y3c{bottom:201.096750px;}
.y12{bottom:204.975450px;}
.y96{bottom:206.128200px;}
.y1ca{bottom:207.120300px;}
.ye3{bottom:209.898750px;}
.y67{bottom:210.616500px;}
.y14d{bottom:212.128200px;}
.y256{bottom:212.364450px;}
.y192{bottom:213.120300px;}
.y1a2{bottom:218.128200px;}
.y272{bottom:218.128350px;}
.y3b{bottom:219.096750px;}
.yd8{bottom:219.120300px;}
.y17f{bottom:219.402000px;}
.y11{bottom:221.175450px;}
.ye2{bottom:222.498750px;}
.y95{bottom:224.128200px;}
.y1c9{bottom:225.120300px;}
.y1f3{bottom:227.246400px;}
.y66{bottom:228.616500px;}
.y14c{bottom:230.128200px;}
.y255{bottom:230.364450px;}
.y191{bottom:231.120300px;}
.y17e{bottom:233.327367px;}
.ye1{bottom:235.098750px;}
.yf9{bottom:236.128200px;}
.y271{bottom:236.128350px;}
.y3a{bottom:237.096750px;}
.yd7{bottom:237.120300px;}
.y10{bottom:237.375600px;}
.y202{bottom:242.128200px;}
.y1c8{bottom:243.120300px;}
.y17d{bottom:244.456929px;}
.y1f2{bottom:245.246400px;}
.y14b{bottom:248.128200px;}
.y254{bottom:248.364450px;}
.yf{bottom:253.575600px;}
.y94{bottom:254.128200px;}
.y270{bottom:254.128350px;}
.y39{bottom:255.096750px;}
.yd6{bottom:255.120300px;}
.y17c{bottom:255.561462px;}
.ye0{bottom:256.171950px;}
.y201{bottom:260.128200px;}
.y190{bottom:261.120300px;}
.y1f1{bottom:263.246400px;}
.y65{bottom:263.624400px;}
.y253{bottom:266.364450px;}
.y17b{bottom:266.691024px;}
.ye{bottom:269.775600px;}
.y93{bottom:272.128200px;}
.y26f{bottom:272.128350px;}
.y38{bottom:273.096750px;}
.yd5{bottom:273.120300px;}
.y17a{bottom:277.812243px;}
.y14a{bottom:278.128200px;}
.y18f{bottom:279.120300px;}
.y1f0{bottom:281.246400px;}
.y252{bottom:284.364450px;}
.y179{bottom:288.933462px;}
.y92{bottom:290.128200px;}
.y293{bottom:291.082500px;}
.y37{bottom:291.096750px;}
.yd4{bottom:291.120300px;}
.y149{bottom:296.128200px;}
.y18e{bottom:297.120300px;}
.y1ef{bottom:299.246400px;}
.y178{bottom:300.063024px;}
.y64{bottom:302.128350px;}
.yd{bottom:302.175600px;}
.y251{bottom:302.364450px;}
.y292{bottom:305.651250px;}
.y91{bottom:308.128200px;}
.y177{bottom:311.184243px;}
.y101{bottom:312.781350px;}
.y148{bottom:314.128200px;}
.y18d{bottom:315.120300px;}
.y1ee{bottom:317.246400px;}
.y63{bottom:320.128350px;}
.y291{bottom:320.220000px;}
.y36{bottom:321.096750px;}
.yd3{bottom:321.120300px;}
.y176{bottom:322.305462px;}
.yf8{bottom:326.128200px;}
.y13d{bottom:328.311842px;}
.y147{bottom:332.128200px;}
.y250{bottom:332.364450px;}
.y18c{bottom:333.120300px;}
.y175{bottom:333.426681px;}
.y290{bottom:334.788750px;}
.yc{bottom:337.590000px;}
.y90{bottom:338.128200px;}
.y62{bottom:338.128350px;}
.y13c{bottom:338.978372px;}
.y35{bottom:339.096750px;}
.yd2{bottom:339.120300px;}
.yf7{bottom:344.128200px;}
.y174{bottom:344.547900px;}
.y1ed{bottom:347.246400px;}
.y28f{bottom:349.357500px;}
.y13b{bottom:349.636907px;}
.y18b{bottom:351.120300px;}
.y173{bottom:355.677462px;}
.y8f{bottom:356.128200px;}
.y61{bottom:356.128350px;}
.y34{bottom:357.096750px;}
.yd1{bottom:357.120300px;}
.y227{bottom:358.432870px;}
.y13a{bottom:360.295442px;}
.y1c6{bottom:361.843500px;}
.yf6{bottom:362.128200px;}
.y24f{bottom:362.364450px;}
.y28e{bottom:363.926250px;}
.y1ec{bottom:365.246400px;}
.y172{bottom:366.798681px;}
.y18a{bottom:369.120300px;}
.y226{bottom:370.372614px;}
.yb{bottom:370.890000px;}
.y139{bottom:370.945981px;}
.y8e{bottom:374.128200px;}
.y60{bottom:374.128350px;}
.y33{bottom:375.096750px;}
.yd0{bottom:375.120300px;}
.y1c5{bottom:375.768417px;}
.y171{bottom:377.919900px;}
.y28d{bottom:378.495000px;}
.yf5{bottom:380.128200px;}
.y24e{bottom:380.364450px;}
.y138{bottom:381.604515px;}
.y225{bottom:382.276637px;}
.y1eb{bottom:383.246400px;}
.y16f{bottom:386.727000px;}
.y1c4{bottom:386.897979px;}
.ya{bottom:387.090000px;}
.y189{bottom:387.120300px;}
.y16e{bottom:389.050050px;}
.y8d{bottom:392.128200px;}
.y5f{bottom:392.128350px;}
.y137{bottom:392.271046px;}
.y28c{bottom:393.063750px;}
.y32{bottom:393.096750px;}
.ycf{bottom:393.120300px;}
.y224{bottom:394.180660px;}
.y164{bottom:397.851000px;}
.y1c3{bottom:398.002512px;}
.yf4{bottom:398.128200px;}
.y24d{bottom:398.364450px;}
.y16a{bottom:401.086380px;}
.y1ea{bottom:401.246400px;}
.y136{bottom:402.929581px;}
.y9{bottom:403.290000px;}
.y16d{bottom:404.326245px;}
.y167{bottom:404.331630px;}
.y16c{bottom:404.333197px;}
.y188{bottom:405.120300px;}
.y223{bottom:406.093614px;}
.y28b{bottom:407.632500px;}
.y162{bottom:408.508050px;}
.y1c2{bottom:409.132074px;}
.y169{bottom:409.902150px;}
.y8c{bottom:410.128200px;}
.y5e{bottom:410.128350px;}
.y166{bottom:413.147400px;}
.y16b{bottom:413.148967px;}
.y135{bottom:413.588115px;}
.yf3{bottom:416.128200px;}
.y24c{bottom:416.364450px;}
.y163{bottom:417.316867px;}
.y222{bottom:417.979777px;}
.y1e9{bottom:419.246400px;}
.y8{bottom:419.490000px;}
.y1c1{bottom:420.253293px;}
.y26e{bottom:422.128350px;}
.y28a{bottom:422.201250px;}
.y31{bottom:423.096750px;}
.yce{bottom:423.120300px;}
.y134{bottom:424.246650px;}
.y8b{bottom:428.128200px;}
.y5d{bottom:428.128350px;}
.y221{bottom:429.892730px;}
.y1c0{bottom:431.374512px;}
.y160{bottom:433.626000px;}
.yf2{bottom:434.128200px;}
.y24b{bottom:434.364450px;}
.y133{bottom:434.905185px;}
.y187{bottom:435.120300px;}
.y289{bottom:436.770150px;}
.y1e8{bottom:437.246400px;}
.y26d{bottom:440.128350px;}
.y30{bottom:441.096750px;}
.ycd{bottom:441.120300px;}
.y220{bottom:441.796753px;}
.y1bf{bottom:442.504074px;}
.y132{bottom:445.571715px;}
.y8a{bottom:446.128200px;}
.y5c{bottom:446.128350px;}
.y15e{bottom:450.427050px;}
.y288{bottom:451.338750px;}
.y7{bottom:451.890000px;}
.yf1{bottom:452.128200px;}
.y24a{bottom:452.364450px;}
.y186{bottom:453.120300px;}
.y1be{bottom:453.625293px;}
.y21f{bottom:453.700777px;}
.y131{bottom:456.230250px;}
.y26c{bottom:458.128350px;}
.y2f{bottom:459.096750px;}
.ycc{bottom:459.120300px;}
.y89{bottom:464.128200px;}
.y1bd{bottom:464.746512px;}
.y161{bottom:465.237900px;}
.y21e{bottom:465.613730px;}
.y287{bottom:465.907500px;}
.y130{bottom:466.888785px;}
.y1e7{bottom:467.246400px;}
.y6{bottom:468.090000px;}
.yf0{bottom:470.128200px;}
.y249{bottom:470.364450px;}
.y185{bottom:471.120300px;}
.y1bc{bottom:475.867731px;}
.y5b{bottom:476.128350px;}
.y2e{bottom:477.096750px;}
.ycb{bottom:477.120300px;}
.y21d{bottom:477.517753px;}
.y12f{bottom:477.555315px;}
.y286{bottom:480.476250px;}
.y88{bottom:482.128200px;}
.y5{bottom:484.290000px;}
.y1e6{bottom:485.246400px;}
.ybb{bottom:486.180300px;}
.y1bb{bottom:486.988950px;}
.yef{bottom:488.128200px;}
.y12e{bottom:488.213850px;}
.y248{bottom:488.364450px;}
.y184{bottom:489.120300px;}
.y21c{bottom:489.421777px;}
.y5a{bottom:494.128350px;}
.y285{bottom:495.045000px;}
.y2d{bottom:495.096750px;}
.yca{bottom:495.120300px;}
.y12c{bottom:496.648500px;}
.yba{bottom:496.980300px;}
.y1ba{bottom:498.118512px;}
.y87{bottom:500.128200px;}
.y4{bottom:500.490000px;}
.y21b{bottom:501.325800px;}
.y1e5{bottom:503.246400px;}
.y128{bottom:503.754740px;}
.y183{bottom:507.120300px;}
.yb9{bottom:507.780300px;}
.y127{bottom:508.643550px;}
.y12b{bottom:508.646390px;}
.y1b9{bottom:509.239731px;}
.y284{bottom:509.613900px;}
.y59{bottom:512.128350px;}
.y2c{bottom:513.096750px;}
.y21a{bottom:513.229823px;}
.y129{bottom:513.973500px;}
.y3{bottom:516.690000px;}
.y86{bottom:518.128200px;}
.y247{bottom:518.364450px;}
.yb8{bottom:518.580300px;}
.y12a{bottom:518.865150px;}
.y1b8{bottom:520.360950px;}
.y283{bottom:524.182500px;}
.yc9{bottom:525.120300px;}
.y219{bottom:525.142777px;}
.y1b6{bottom:529.165500px;}
.yb7{bottom:529.380300px;}
.y58{bottom:530.128350px;}
.y2b{bottom:531.096750px;}
.y1b5{bottom:531.491100px;}
.y2{bottom:532.890000px;}
.y1e4{bottom:533.246400px;}
.y85{bottom:536.128200px;}
.y246{bottom:536.364450px;}
.yfe{bottom:536.373450px;}
.y218{bottom:537.046800px;}
.y282{bottom:538.751250px;}
.yb6{bottom:540.180300px;}
.y1ab{bottom:540.291000px;}
.yc8{bottom:543.120300px;}
.y1b1{bottom:543.527280px;}
.y1b4{bottom:546.767145px;}
.y1ae{bottom:546.772680px;}
.y1b3{bottom:546.774097px;}
.y146{bottom:548.128200px;}
.y57{bottom:548.128350px;}
.y2a{bottom:549.096750px;}
.y22c{bottom:549.432956px;}
.y229{bottom:549.440398px;}
.yfd{bottom:550.773450px;}
.y22b{bottom:550.928758px;}
.y1a9{bottom:550.949100px;}
.yb5{bottom:550.980300px;}
.y1e3{bottom:551.246400px;}
.y1b0{bottom:552.343050px;}
.y281{bottom:553.320000px;}
.y84{bottom:554.128200px;}
.y245{bottom:554.364450px;}
.y22a{bottom:555.401279px;}
.y1ad{bottom:555.588450px;}
.y1b2{bottom:555.589867px;}
.y70{bottom:556.737750px;}
.y22d{bottom:558.869158px;}
.y228{bottom:558.876600px;}
.y1aa{bottom:559.757917px;}
.y26b{bottom:560.128350px;}
.yc7{bottom:561.120300px;}
.y1{bottom:565.290000px;}
.y104{bottom:565.584300px;}
.y1a1{bottom:566.128200px;}
.y56{bottom:566.128350px;}
.y29{bottom:567.096750px;}
.yb4{bottom:567.393000px;}
.y280{bottom:567.888750px;}
.y1e2{bottom:569.246400px;}
.y83{bottom:572.128200px;}
.y244{bottom:572.364450px;}
.y6f{bottom:575.664750px;}
.y1a7{bottom:576.066900px;}
.y145{bottom:578.128200px;}
.yb3{bottom:578.193000px;}
.yc6{bottom:579.120300px;}
.y27f{bottom:582.457650px;}
.y231{bottom:583.507950px;}
.y1a0{bottom:584.128200px;}
.y55{bottom:584.128350px;}
.y28{bottom:585.096750px;}
.y82{bottom:590.128200px;}
.y26a{bottom:590.128350px;}
.y243{bottom:590.364450px;}
.y71{bottom:590.475600px;}
.yad{bottom:592.618200px;}
.y1a6{bottom:592.867950px;}
.y144{bottom:596.128200px;}
.y27e{bottom:597.026250px;}
.yc5{bottom:597.120300px;}
.y22f{bottom:599.245950px;}
.y1e1{bottom:599.246400px;}
.y15d{bottom:602.128200px;}
.y54{bottom:602.128350px;}
.y100{bottom:603.057300px;}
.y1a{bottom:606.381600px;}
.y1a8{bottom:607.678800px;}
.y81{bottom:608.128200px;}
.y269{bottom:608.128350px;}
.yac{bottom:608.239067px;}
.y242{bottom:608.364450px;}
.y27d{bottom:611.595000px;}
.y233{bottom:614.056800px;}
.y143{bottom:614.128200px;}
.y27{bottom:615.096750px;}
.yc4{bottom:615.120300px;}
.y1e0{bottom:617.246400px;}
.y126{bottom:619.495640px;}
.y15c{bottom:620.128200px;}
.y53{bottom:620.128350px;}
.yab{bottom:623.818571px;}
.y80{bottom:626.128200px;}
.y268{bottom:626.128350px;}
.y27c{bottom:626.163750px;}
.y241{bottom:626.364450px;}
.y1c{bottom:628.647750px;}
.y142{bottom:632.128200px;}
.y125{bottom:633.059100px;}
.y26{bottom:633.096750px;}
.y15b{bottom:638.128200px;}
.y52{bottom:638.128350px;}
.yaa{bottom:639.398075px;}
.y27b{bottom:640.732500px;}
.y1b{bottom:641.247750px;}
.y123{bottom:643.227000px;}
.y7f{bottom:644.128200px;}
.y267{bottom:644.128350px;}
.y240{bottom:644.364450px;}
.y214{bottom:646.212379px;}
.yc3{bottom:650.128200px;}
.y25{bottom:651.096750px;}
.y294{bottom:654.699000px;}
.ya9{bottom:654.989267px;}
.y27a{bottom:655.301400px;}
.y15a{bottom:656.128200px;}
.y51{bottom:656.128350px;}
.y11f{bottom:656.788500px;}
.y1fe{bottom:656.907600px;}
.y213{bottom:658.801670px;}
.y182{bottom:662.128200px;}
.y266{bottom:662.128350px;}
.y23f{bottom:662.364450px;}
.y19{bottom:663.641700px;}
.y11e{bottom:665.254418px;}
.y141{bottom:668.128200px;}
.y24{bottom:669.096750px;}
.ya8{bottom:670.545396px;}
.y212{bottom:671.381525px;}
.y121{bottom:671.481450px;}
.y7e{bottom:674.128200px;}
.y50{bottom:674.128350px;}
.y1fd{bottom:674.423850px;}
.y11d{bottom:677.703600px;}
.yc2{bottom:680.128200px;}
.y265{bottom:680.128350px;}
.y23e{bottom:680.364450px;}
.y211{bottom:683.961379px;}
.y140{bottom:686.128200px;}
.ya7{bottom:686.136588px;}
.y1fc{bottom:688.823850px;}
.y7d{bottom:692.128200px;}
.y1de{bottom:692.983950px;}
.y210{bottom:696.550670px;}
.yc1{bottom:698.128200px;}
.y23d{bottom:698.364450px;}
.y23{bottom:699.096750px;}
.ya6{bottom:701.716092px;}
.y1fb{bottom:703.223850px;}
.y200{bottom:704.128200px;}
.y4f{bottom:704.128350px;}
.yfc{bottom:705.176700px;}
.y1dc{bottom:708.721950px;}
.y20f{bottom:709.111650px;}
.y7c{bottom:710.128200px;}
.y264{bottom:710.128350px;}
.yc0{bottom:716.128200px;}
.y23c{bottom:716.364450px;}
.ya5{bottom:717.295596px;}
.yfb{bottom:719.576700px;}
.y1ff{bottom:720.762450px;}
.y20e{bottom:721.700941px;}
.y19f{bottom:722.128200px;}
.y4e{bottom:722.128350px;}
.y1df{bottom:723.532800px;}
.y1e{bottom:725.645850px;}
.y7b{bottom:728.128200px;}
.y263{bottom:728.128350px;}
.ya4{bottom:732.886788px;}
.ybf{bottom:734.128200px;}
.y20d{bottom:734.280796px;}
.y23b{bottom:734.364450px;}
.y103{bottom:734.387400px;}
.y19e{bottom:740.128200px;}
.y4d{bottom:740.128350px;}
.y7a{bottom:746.128200px;}
.y262{bottom:746.128350px;}
.y20c{bottom:746.860650px;}
.ya3{bottom:748.466292px;}
.ybe{bottom:752.128200px;}
.y23a{bottom:752.364450px;}
.y19d{bottom:758.128200px;}
.y4c{bottom:758.128350px;}
.y20b{bottom:759.449942px;}
.y1d{bottom:763.445850px;}
.ya2{bottom:764.045796px;}
.y79{bottom:764.128200px;}
.y261{bottom:764.128350px;}
.y102{bottom:764.605950px;}
.y13f{bottom:770.128200px;}
.y239{bottom:770.364450px;}
.y20a{bottom:772.029796px;}
.y19c{bottom:776.128200px;}
.y4b{bottom:776.128350px;}
.ya1{bottom:779.625300px;}
.y11b{bottom:779.941500px;}
.y78{bottom:782.128200px;}
.y260{bottom:782.128350px;}
.y209{bottom:784.609650px;}
.y238{bottom:788.364450px;}
.y119{bottom:793.453500px;}
.y19b{bottom:794.128200px;}
.y4a{bottom:794.128350px;}
.ya0{bottom:795.204804px;}
.y208{bottom:797.189504px;}
.y77{bottom:800.128200px;}
.y25f{bottom:800.128350px;}
.y237{bottom:806.364450px;}
.y117{bottom:806.965500px;}
.y207{bottom:809.769358px;}
.y9f{bottom:810.795996px;}
.y19a{bottom:812.128200px;}
.y49{bottom:812.128350px;}
.y1d8{bottom:812.220000px;}
.y76{bottom:818.128200px;}
.y25e{bottom:818.128350px;}
.y115{bottom:820.477500px;}
.y206{bottom:822.358650px;}
.y1d7{bottom:825.654475px;}
.y9e{bottom:826.375500px;}
.y181{bottom:830.128200px;}
.y48{bottom:830.128350px;}
.y204{bottom:832.317000px;}
.y203{bottom:834.940500px;}
.ybd{bottom:836.128200px;}
.y1d6{bottom:836.410650px;}
.y114{bottom:837.373050px;}
.y236{bottom:841.372350px;}
.yb0{bottom:844.535920px;}
.yaf{bottom:844.545520px;}
.y1d4{bottom:844.921500px;}
.y10e{bottom:847.501500px;}
.y75{bottom:848.128200px;}
.y47{bottom:848.128350px;}
.y216{bottom:849.614019px;}
.yae{bottom:850.399050px;}
.y13e{bottom:854.128200px;}
.y217{bottom:854.332629px;}
.y1da{bottom:855.672000px;}
.y10d{bottom:855.951711px;}
.y215{bottom:859.578150px;}
.y110{bottom:862.136850px;}
.y74{bottom:866.128200px;}
.y46{bottom:866.128350px;}
.y10c{bottom:868.336650px;}
.y15f{bottom:874.129950px;}
.y1dd{bottom:875.192850px;}
.y230{bottom:875.405700px;}
.yb2{bottom:876.531000px;}
.y73{bottom:884.128200px;}
.y45{bottom:884.128350px;}
.yff{bottom:890.860050px;}
.yb1{bottom:890.931000px;}
.y22e{bottom:891.143700px;}
.y72{bottom:902.128200px;}
.y44{bottom:902.128350px;}
.y105{bottom:905.670900px;}
.ybc{bottom:905.741700px;}
.y232{bottom:905.954250px;}
.y20{bottom:965.135850px;}
.h2f{height:10.302000px;}
.h2a{height:10.659000px;}
.h2e{height:10.660500px;}
.h33{height:12.058500px;}
.h1e{height:12.948000px;}
.h1d{height:12.949500px;}
.h21{height:12.996000px;}
.h24{height:23.507946px;}
.h26{height:25.418340px;}
.h30{height:26.221201px;}
.h27{height:26.883000px;}
.h29{height:27.131436px;}
.h3a{height:27.207221px;}
.h35{height:28.752064px;}
.h38{height:29.041173px;}
.h10{height:29.268000px;}
.h25{height:30.207000px;}
.h2c{height:30.502008px;}
.h32{height:30.689937px;}
.h11{height:30.870000px;}
.h1c{height:31.125055px;}
.h22{height:31.238224px;}
.h17{height:32.616000px;}
.h39{height:32.648994px;}
.h2d{height:33.978000px;}
.h8{height:34.146000px;}
.h34{height:34.502586px;}
.h1a{height:34.991759px;}
.h1f{height:35.118988px;}
.h16{height:35.608160px;}
.h1b{height:36.594000px;}
.h20{height:36.726000px;}
.h19{height:37.795898px;}
.h12{height:38.007913px;}
.hd{height:39.945112px;}
.h13{height:40.355659px;}
.hb{height:43.195312px;}
.ha{height:43.488000px;}
.h6{height:43.872000px;}
.h3{height:43.902000px;}
.h23{height:44.841007px;}
.hc{height:46.875000px;}
.h3b{height:47.032176px;}
.h37{height:47.626504px;}
.h2{height:48.780000px;}
.h4{height:48.924000px;}
.h7{height:49.356000px;}
.h36{height:49.734149px;}
.h5{height:51.642000px;}
.h18{height:51.951720px;}
.h3d{height:52.098000px;}
.h31{height:53.752500px;}
.hf{height:54.360000px;}
.he{height:54.840000px;}
.h3c{height:58.968823px;}
.h28{height:60.653610px;}
.h14{height:61.554588px;}
.h15{height:84.930307px;}
.h9{height:115.164000px;}
.h2b{height:205.332000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w8{width:47.865000px;}
.w7{width:57.897000px;}
.w3{width:58.138500px;}
.w2{width:58.140000px;}
.w5{width:58.351500px;}
.wb{width:92.967000px;}
.w4{width:293.521500px;}
.w6{width:294.588000px;}
.wc{width:328.003500px;}
.wa{width:334.138500px;}
.w9{width:338.305500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x5b{left:1.346850px;}
.x35{left:6.212700px;}
.x4e{left:7.441500px;}
.x37{left:11.856600px;}
.xd{left:13.181100px;}
.x53{left:14.871150px;}
.x32{left:16.934400px;}
.x38{left:20.440500px;}
.x3a{left:22.089000px;}
.x2d{left:23.385750px;}
.x5e{left:25.598400px;}
.x2e{left:26.646000px;}
.x23{left:28.062900px;}
.x1f{left:32.771850px;}
.x4a{left:34.350450px;}
.x3c{left:38.679900px;}
.x41{left:41.407066px;}
.x3b{left:42.535500px;}
.x1c{left:44.439450px;}
.x40{left:47.643981px;}
.x1b{left:48.985650px;}
.x21{left:53.709750px;}
.x1a{left:56.111116px;}
.x19{left:58.759350px;}
.x59{left:60.622350px;}
.xc{left:66.470700px;}
.x2b{left:68.140650px;}
.x45{left:71.044200px;}
.x48{left:76.026900px;}
.xa{left:77.171100px;}
.x12{left:85.464600px;}
.x3d{left:86.771709px;}
.x46{left:88.431900px;}
.x7f{left:93.392250px;}
.x67{left:98.963550px;}
.x2f{left:102.300470px;}
.x55{left:105.063900px;}
.x2{left:106.299150px;}
.x66{left:114.062550px;}
.x56{left:120.558150px;}
.x4c{left:121.713374px;}
.x4b{left:125.428650px;}
.x13{left:127.564350px;}
.x8{left:133.936950px;}
.x30{left:142.373157px;}
.x3e{left:146.898300px;}
.x31{left:148.581737px;}
.x1d{left:165.523590px;}
.x4d{left:167.247000px;}
.xb{left:168.377850px;}
.xe{left:170.078700px;}
.x4f{left:181.197224px;}
.x7e{left:183.819450px;}
.x2a{left:196.114950px;}
.x33{left:197.683800px;}
.x3f{left:203.910774px;}
.x39{left:210.237045px;}
.xf{left:212.603700px;}
.x29{left:215.674350px;}
.x50{left:217.436853px;}
.x51{left:225.341400px;}
.x9{left:251.384550px;}
.x47{left:253.142100px;}
.x34{left:255.256500px;}
.x22{left:257.635950px;}
.x20{left:266.068800px;}
.x36{left:268.242000px;}
.x28{left:275.564100px;}
.x2c{left:276.591450px;}
.x52{left:313.629753px;}
.x1e{left:317.864645px;}
.x6{left:321.942900px;}
.x5{left:323.223600px;}
.x49{left:326.801850px;}
.x24{left:328.678050px;}
.x26{left:335.905500px;}
.x4{left:345.839850px;}
.x7{left:373.371300px;}
.x7c{left:376.299300px;}
.x27{left:378.430500px;}
.x17{left:380.976300px;}
.x43{left:383.527650px;}
.x1{left:393.213300px;}
.x3{left:395.703300px;}
.x10{left:413.253600px;}
.x7d{left:418.818900px;}
.x18{left:423.501300px;}
.x44{left:426.047250px;}
.x60{left:455.712000px;}
.x58{left:458.464500px;}
.x5a{left:459.811350px;}
.x69{left:460.825500px;}
.x6d{left:474.494915px;}
.x71{left:476.598719px;}
.x57{left:478.033500px;}
.x70{left:482.579556px;}
.x6a{left:483.947191px;}
.x68{left:486.057150px;}
.x61{left:491.398200px;}
.x79{left:504.131850px;}
.x14{left:506.558100px;}
.x5c{left:512.358000px;}
.x77{left:540.004800px;}
.x73{left:568.137321px;}
.x6e{left:578.576461px;}
.x7a{left:580.395750px;}
.x78{left:582.688050px;}
.x5d{left:605.773500px;}
.x15{left:612.191700px;}
.x25{left:619.694850px;}
.x42{left:627.419250px;}
.x74{left:634.295338px;}
.x6f{left:635.874939px;}
.x63{left:686.597400px;}
.x75{left:689.007951px;}
.x76{left:691.992411px;}
.x5f{left:699.187500px;}
.x11{left:724.005900px;}
.x54{left:726.349650px;}
.x62{left:734.845350px;}
.x6b{left:737.853450px;}
.x6c{left:742.576415px;}
.x72{left:744.213000px;}
.x7b{left:750.138450px;}
.x16{left:751.360800px;}
.x65{left:753.220950px;}
.x64{left:755.363100px;}
@media print{
.v1{vertical-align:-2.889067pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.344000pt;}
.v8{vertical-align:14.832000pt;}
.v9{vertical-align:16.488240pt;}
.v6{vertical-align:17.760000pt;}
.v7{vertical-align:18.962721pt;}
.v4{vertical-align:20.777920pt;}
.v3{vertical-align:23.063491pt;}
.va{vertical-align:28.232535pt;}
.v5{vertical-align:43.841908pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000053pt;}
.ls9{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.lsa{letter-spacing:0.059328pt;}
.lse{letter-spacing:0.063504pt;}
.lsc{letter-spacing:0.067109pt;}
.ls2{letter-spacing:0.083111pt;}
.lsd{letter-spacing:0.570429pt;}
.ls8{letter-spacing:0.685364pt;}
.ls5{letter-spacing:1.003452pt;}
.ls7{letter-spacing:1.227574pt;}
.ls6{letter-spacing:1.419866pt;}
.lsb{letter-spacing:1.668912pt;}
.ls4{letter-spacing:2.193100pt;}
.wsef{word-spacing:-8.640000pt;}
.ws127{word-spacing:-7.776000pt;}
.ws0{word-spacing:-7.168000pt;}
.ws1{word-spacing:-7.040000pt;}
.ws4c{word-spacing:-5.817818pt;}
.ws8c{word-spacing:-5.737894pt;}
.ws8a{word-spacing:-5.717107pt;}
.ws67{word-spacing:-5.223680pt;}
.ws109{word-spacing:-4.697638pt;}
.ws8e{word-spacing:-4.634068pt;}
.ws94{word-spacing:-4.213333pt;}
.wsb9{word-spacing:-4.152960pt;}
.wsd9{word-spacing:-2.986667pt;}
.wsd2{word-spacing:-2.720000pt;}
.wsdb{word-spacing:-2.560000pt;}
.wsf4{word-spacing:-2.506667pt;}
.wsb1{word-spacing:-2.346667pt;}
.wsad{word-spacing:-2.240000pt;}
.ws77{word-spacing:-2.186667pt;}
.wsf6{word-spacing:-2.026667pt;}
.ws11c{word-spacing:-1.920000pt;}
.ws1c{word-spacing:-1.706667pt;}
.ws75{word-spacing:-1.600000pt;}
.ws9c{word-spacing:-1.546667pt;}
.wsaa{word-spacing:-1.530667pt;}
.ws3b{word-spacing:-1.493333pt;}
.ws76{word-spacing:-1.440000pt;}
.ws74{word-spacing:-1.386667pt;}
.wsa2{word-spacing:-1.333333pt;}
.ws7e{word-spacing:-1.306667pt;}
.wsd6{word-spacing:-1.280000pt;}
.ws8{word-spacing:-1.248000pt;}
.ws3{word-spacing:-1.200000pt;}
.wsdc{word-spacing:-1.173333pt;}
.ws70{word-spacing:-1.120000pt;}
.wsd3{word-spacing:-1.066667pt;}
.ws5c{word-spacing:-1.013333pt;}
.ws73{word-spacing:-0.960000pt;}
.ws52{word-spacing:-0.906667pt;}
.wsa1{word-spacing:-0.853333pt;}
.ws41{word-spacing:-0.800000pt;}
.wsf0{word-spacing:-0.746667pt;}
.wsd8{word-spacing:-0.693333pt;}
.ws9{word-spacing:-0.672000pt;}
.ws9a{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.586667pt;}
.ws100{word-spacing:-0.522667pt;}
.wsf{word-spacing:-0.480000pt;}
.ws126{word-spacing:-0.426667pt;}
.ws125{word-spacing:-0.373333pt;}
.ws7d{word-spacing:-0.336000pt;}
.wsa5{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.266667pt;}
.ws115{word-spacing:-0.213333pt;}
.ws39{word-spacing:-0.160000pt;}
.wsa9{word-spacing:-0.149333pt;}
.ws9e{word-spacing:-0.106667pt;}
.ws79{word-spacing:-0.053333pt;}
.ws11{word-spacing:-0.042667pt;}
.ws68{word-spacing:-0.037333pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.048000pt;}
.wsb8{word-spacing:0.074667pt;}
.ws5e{word-spacing:0.106667pt;}
.ws65{word-spacing:0.160000pt;}
.ws96{word-spacing:0.213333pt;}
.wsb2{word-spacing:0.266667pt;}
.ws6e{word-spacing:0.320000pt;}
.ws23{word-spacing:0.373333pt;}
.ws7a{word-spacing:0.480000pt;}
.ws5b{word-spacing:0.533333pt;}
.ws64{word-spacing:0.544000pt;}
.ws46{word-spacing:0.586667pt;}
.ws58{word-spacing:0.640000pt;}
.ws6{word-spacing:0.672000pt;}
.wse2{word-spacing:0.693333pt;}
.ws18{word-spacing:0.746667pt;}
.wsb3{word-spacing:0.853333pt;}
.ws71{word-spacing:0.906667pt;}
.ws4e{word-spacing:0.960000pt;}
.ws55{word-spacing:1.066667pt;}
.wsea{word-spacing:1.120000pt;}
.wsc3{word-spacing:1.173333pt;}
.wsf1{word-spacing:1.226667pt;}
.wseb{word-spacing:1.280000pt;}
.ws5{word-spacing:1.296000pt;}
.ws19{word-spacing:1.333333pt;}
.ws124{word-spacing:1.386667pt;}
.wsa{word-spacing:1.392000pt;}
.ws2e{word-spacing:1.440000pt;}
.wse3{word-spacing:1.493333pt;}
.ws61{word-spacing:1.536000pt;}
.ws102{word-spacing:1.546667pt;}
.ws69{word-spacing:1.600000pt;}
.wsfe{word-spacing:1.680000pt;}
.ws9b{word-spacing:1.706667pt;}
.ws40{word-spacing:1.760000pt;}
.ws27{word-spacing:1.813333pt;}
.ws1a{word-spacing:1.866667pt;}
.ws6a{word-spacing:1.920000pt;}
.wsd5{word-spacing:1.973333pt;}
.ws128{word-spacing:2.026667pt;}
.ws12{word-spacing:2.080000pt;}
.wsc4{word-spacing:2.186667pt;}
.ws89{word-spacing:2.202667pt;}
.ws28{word-spacing:2.240000pt;}
.wsab{word-spacing:2.346667pt;}
.wsc{word-spacing:2.352000pt;}
.wsf7{word-spacing:2.400000pt;}
.ws4{word-spacing:2.496000pt;}
.ws34{word-spacing:2.506667pt;}
.ws113{word-spacing:2.560000pt;}
.ws22{word-spacing:2.613333pt;}
.ws47{word-spacing:2.666667pt;}
.ws16{word-spacing:2.720000pt;}
.wsff{word-spacing:2.725333pt;}
.ws112{word-spacing:2.773333pt;}
.wsfc{word-spacing:2.826667pt;}
.ws98{word-spacing:2.880000pt;}
.ws1b{word-spacing:2.933333pt;}
.ws6c{word-spacing:2.986667pt;}
.wsac{word-spacing:3.040000pt;}
.ws63{word-spacing:3.072000pt;}
.ws26{word-spacing:3.093333pt;}
.ws62{word-spacing:3.104000pt;}
.ws7b{word-spacing:3.146667pt;}
.ws21{word-spacing:3.200000pt;}
.wscb{word-spacing:3.306667pt;}
.wsd7{word-spacing:3.360000pt;}
.ws57{word-spacing:3.413333pt;}
.ws6d{word-spacing:3.466667pt;}
.wsda{word-spacing:3.520000pt;}
.ws88{word-spacing:3.546667pt;}
.ws17{word-spacing:3.573333pt;}
.ws2d{word-spacing:3.626667pt;}
.ws24{word-spacing:3.680000pt;}
.ws111{word-spacing:3.733333pt;}
.ws35{word-spacing:3.786667pt;}
.ws3c{word-spacing:3.946667pt;}
.ws99{word-spacing:4.053333pt;}
.wsd{word-spacing:4.080000pt;}
.wsa7{word-spacing:4.106667pt;}
.wsc6{word-spacing:4.160000pt;}
.ws78{word-spacing:4.213333pt;}
.wsf5{word-spacing:4.266667pt;}
.wsa4{word-spacing:4.320000pt;}
.ws7c{word-spacing:4.373333pt;}
.ws15{word-spacing:4.426667pt;}
.wsd0{word-spacing:4.533333pt;}
.wse{word-spacing:4.656000pt;}
.ws33{word-spacing:4.693333pt;}
.wsee{word-spacing:4.800000pt;}
.ws1f{word-spacing:4.853333pt;}
.ws9f{word-spacing:4.960000pt;}
.wsc5{word-spacing:5.013333pt;}
.wsed{word-spacing:5.066667pt;}
.ws2b{word-spacing:5.120000pt;}
.wsce{word-spacing:5.173333pt;}
.ws29{word-spacing:5.226667pt;}
.wsb{word-spacing:5.232000pt;}
.ws3e{word-spacing:5.333333pt;}
.ws121{word-spacing:5.386667pt;}
.ws10e{word-spacing:5.440000pt;}
.ws10d{word-spacing:5.493333pt;}
.wsb7{word-spacing:5.562667pt;}
.ws25{word-spacing:5.600000pt;}
.ws3d{word-spacing:5.653333pt;}
.ws54{word-spacing:5.706667pt;}
.ws110{word-spacing:5.760000pt;}
.ws103{word-spacing:5.813333pt;}
.ws14{word-spacing:5.866667pt;}
.ws3f{word-spacing:5.973333pt;}
.ws60{word-spacing:6.026667pt;}
.wsde{word-spacing:6.186667pt;}
.ws117{word-spacing:6.234667pt;}
.wsb0{word-spacing:6.240000pt;}
.ws36{word-spacing:6.346667pt;}
.ws10f{word-spacing:6.400000pt;}
.wse7{word-spacing:6.453333pt;}
.wsfd{word-spacing:6.458667pt;}
.ws80{word-spacing:6.496000pt;}
.ws5d{word-spacing:6.506667pt;}
.wsfb{word-spacing:6.613333pt;}
.ws93{word-spacing:6.666667pt;}
.wsec{word-spacing:6.720000pt;}
.ws44{word-spacing:6.773333pt;}
.ws119{word-spacing:6.880000pt;}
.wsae{word-spacing:6.933333pt;}
.ws11e{word-spacing:7.040000pt;}
.wsfa{word-spacing:7.093333pt;}
.wsa3{word-spacing:7.146667pt;}
.ws101{word-spacing:7.200000pt;}
.wsc8{word-spacing:7.253333pt;}
.ws56{word-spacing:7.360000pt;}
.ws2f{word-spacing:7.520000pt;}
.ws2c{word-spacing:7.573333pt;}
.ws85{word-spacing:7.616000pt;}
.wse9{word-spacing:7.680000pt;}
.ws53{word-spacing:7.786667pt;}
.ws83{word-spacing:7.802667pt;}
.ws9d{word-spacing:7.946667pt;}
.ws3a{word-spacing:8.000000pt;}
.ws122{word-spacing:8.053333pt;}
.ws114{word-spacing:8.106667pt;}
.wsc7{word-spacing:8.213333pt;}
.ws11b{word-spacing:8.266667pt;}
.ws43{word-spacing:8.320000pt;}
.wsa8{word-spacing:8.362667pt;}
.ws20{word-spacing:8.373333pt;}
.wsdd{word-spacing:8.426667pt;}
.ws6b{word-spacing:8.480000pt;}
.wsa6{word-spacing:8.533333pt;}
.ws31{word-spacing:8.586667pt;}
.wscd{word-spacing:8.640000pt;}
.ws5a{word-spacing:8.693333pt;}
.wse6{word-spacing:8.746667pt;}
.ws11d{word-spacing:8.960000pt;}
.ws1d{word-spacing:9.013333pt;}
.ws116{word-spacing:9.226667pt;}
.ws1e{word-spacing:9.280000pt;}
.ws123{word-spacing:9.493333pt;}
.wse0{word-spacing:9.600000pt;}
.ws51{word-spacing:9.653333pt;}
.ws11a{word-spacing:9.706667pt;}
.ws30{word-spacing:9.813333pt;}
.wsd1{word-spacing:9.866667pt;}
.wsb4{word-spacing:10.005333pt;}
.ws5f{word-spacing:10.080000pt;}
.ws32{word-spacing:10.400000pt;}
.wscf{word-spacing:10.453333pt;}
.wsaf{word-spacing:10.506667pt;}
.ws11f{word-spacing:10.560000pt;}
.wse8{word-spacing:10.666667pt;}
.wsdf{word-spacing:11.093333pt;}
.wsf8{word-spacing:11.146667pt;}
.ws4d{word-spacing:11.253333pt;}
.wsca{word-spacing:11.360000pt;}
.wsa0{word-spacing:11.733333pt;}
.wse5{word-spacing:12.106667pt;}
.ws59{word-spacing:12.160000pt;}
.ws95{word-spacing:12.373333pt;}
.ws37{word-spacing:12.426667pt;}
.ws45{word-spacing:12.533333pt;}
.wsf9{word-spacing:13.120000pt;}
.wsf2{word-spacing:13.600000pt;}
.ws7f{word-spacing:13.664000pt;}
.ws97{word-spacing:13.920000pt;}
.wsc2{word-spacing:14.186667pt;}
.wse1{word-spacing:14.293333pt;}
.wscc{word-spacing:14.400000pt;}
.ws72{word-spacing:14.560000pt;}
.ws87{word-spacing:15.008000pt;}
.wsb5{word-spacing:15.232000pt;}
.ws6f{word-spacing:15.680000pt;}
.wsb6{word-spacing:16.949333pt;}
.ws82{word-spacing:17.061333pt;}
.ws4f{word-spacing:17.066667pt;}
.ws118{word-spacing:17.280000pt;}
.wsc9{word-spacing:17.973333pt;}
.wse4{word-spacing:20.800000pt;}
.ws81{word-spacing:21.765333pt;}
.ws10{word-spacing:22.736000pt;}
.ws120{word-spacing:22.880000pt;}
.ws86{word-spacing:24.826667pt;}
.ws42{word-spacing:25.493333pt;}
.wsf3{word-spacing:25.706667pt;}
.ws50{word-spacing:26.080000pt;}
.ws84{word-spacing:51.520000pt;}
.ws2a{word-spacing:60.835733pt;}
.ws4b{word-spacing:61.294864pt;}
.ws66{word-spacing:61.874133pt;}
.wsd4{word-spacing:69.195733pt;}
.ws4a{word-spacing:101.562212pt;}
.ws49{word-spacing:108.502020pt;}
.ws104{word-spacing:123.011408pt;}
.wsbb{word-spacing:125.300736pt;}
.wsbf{word-spacing:128.504448pt;}
.wsbe{word-spacing:128.593440pt;}
.ws108{word-spacing:130.460544pt;}
.ws106{word-spacing:130.594763pt;}
.wsba{word-spacing:135.178848pt;}
.wsbc{word-spacing:135.208512pt;}
.wsc1{word-spacing:138.501216pt;}
.ws48{word-spacing:138.505259pt;}
.ws107{word-spacing:141.600693pt;}
.wsbd{word-spacing:141.793920pt;}
.ws105{word-spacing:143.647528pt;}
.ws10b{word-spacing:144.598608pt;}
.ws10a{word-spacing:144.725616pt;}
.wsc0{word-spacing:148.379328pt;}
.ws90{word-spacing:151.502759pt;}
.ws10c{word-spacing:151.742808pt;}
.ws8f{word-spacing:157.842620pt;}
.ws8d{word-spacing:161.719821pt;}
.ws92{word-spacing:164.154050pt;}
.ws91{word-spacing:167.309765pt;}
.ws8b{word-spacing:177.128232pt;}
._39{margin-left:-3.141333pt;}
._29{margin-left:-2.218667pt;}
._1{margin-left:-1.205333pt;}
._0{width:1.411200pt;}
._28{width:2.307200pt;}
._5{width:3.200000pt;}
._6{width:4.698667pt;}
._3{width:6.106667pt;}
._4{width:7.488000pt;}
._9{width:9.648000pt;}
._7{width:11.402667pt;}
._38{width:12.880000pt;}
._50{width:15.728000pt;}
._a{width:17.269333pt;}
._51{width:18.298667pt;}
._16{width:23.288388pt;}
._2b{width:24.493200pt;}
._3a{width:28.965333pt;}
._4f{width:33.771369pt;}
._3c{width:42.256886pt;}
._2a{width:44.862480pt;}
._3b{width:48.375656pt;}
._45{width:51.156020pt;}
._46{width:62.273446pt;}
._4e{width:65.717101pt;}
._1c{width:67.272758pt;}
._3e{width:91.651921pt;}
._44{width:97.111478pt;}
._f{width:99.816871pt;}
._12{width:101.038210pt;}
._3f{width:102.386044pt;}
._15{width:104.980375pt;}
._13{width:107.675626pt;}
._c{width:109.042244pt;}
._37{width:112.053600pt;}
._14{width:114.044644pt;}
._35{width:115.976269pt;}
._36{width:117.126144pt;}
._d{width:120.137625pt;}
._3d{width:122.012419pt;}
._43{width:123.112072pt;}
._4d{width:124.022069pt;}
._30{width:124.930744pt;}
._2e{width:126.101664pt;}
._2d{width:127.317888pt;}
._26{width:129.438056pt;}
._33{width:132.142935pt;}
._25{width:133.076424pt;}
._42{width:134.140075pt;}
._31{width:135.267840pt;}
._e{width:138.837705pt;}
._32{width:142.179552pt;}
._27{width:143.695946pt;}
._2f{width:145.116288pt;}
._34{width:147.742360pt;}
._40{width:149.116939pt;}
._2c{width:151.701696pt;}
._18{width:153.325029pt;}
._1e{width:155.653520pt;}
._41{width:157.438496pt;}
._1f{width:161.680652pt;}
._22{width:162.715406pt;}
._23{width:165.461824pt;}
._20{width:167.992082pt;}
._17{width:169.201272pt;}
._19{width:170.315782pt;}
._1d{width:171.972263pt;}
._1b{width:173.321346pt;}
._24{width:174.474092pt;}
._4a{width:176.281888pt;}
._1a{width:177.317380pt;}
._21{width:178.283694pt;}
._49{width:183.330832pt;}
._47{width:184.289140pt;}
._48{width:185.368176pt;}
._4b{width:191.338084pt;}
._4c{width:192.417120pt;}
._11{width:199.274974pt;}
._10{width:242.394593pt;}
._b{width:251.619965pt;}
._8{width:812.640000pt;}
._2{width:1188.949867pt;}
.fse{font-size:24.720000pt;}
.fs14{font-size:26.459733pt;}
.fs12{font-size:27.962133pt;}
.fsd{font-size:28.429867pt;}
.fs10{font-size:28.668800pt;}
.fsf{font-size:29.664000pt;}
.fsa{font-size:31.093333pt;}
.fs13{font-size:31.752000pt;}
.fs6{font-size:32.000000pt;}
.fs11{font-size:33.554667pt;}
.fsb{font-size:34.030400pt;}
.fsc{font-size:34.154133pt;}
.fs9{font-size:34.629867pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:39.246933pt;}
.fs7{font-size:41.555733pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:1.582267pt;}
.y165{bottom:1.651067pt;}
.y1ac{bottom:1.651867pt;}
.y1db{bottom:1.989467pt;}
.y112{bottom:2.000366pt;}
.y113{bottom:2.003200pt;}
.y122{bottom:2.014133pt;}
.y170{bottom:2.064933pt;}
.y1b7{bottom:2.067200pt;}
.y205{bottom:2.332000pt;}
.y1d9{bottom:2.386000pt;}
.y1d5{bottom:2.389333pt;}
.y1c7{bottom:2.472533pt;}
.y180{bottom:2.472933pt;}
.y11c{bottom:2.996533pt;}
.y116{bottom:3.000933pt;}
.y118{bottom:3.002133pt;}
.y11a{bottom:3.003200pt;}
.y124{bottom:3.014933pt;}
.y111{bottom:13.009200pt;}
.y168{bottom:18.534133pt;}
.y1af{bottom:18.534933pt;}
.y21{bottom:22.460000pt;}
.y10f{bottom:24.030933pt;}
.y120{bottom:24.106533pt;}
.y43{bottom:24.323733pt;}
.y22{bottom:25.046000pt;}
.y1fa{bottom:57.996800pt;}
.y1d3{bottom:59.166667pt;}
.y9d{bottom:60.558400pt;}
.y279{bottom:60.558533pt;}
.y235{bottom:60.917867pt;}
.ydf{bottom:61.440267pt;}
.y1f{bottom:62.836667pt;}
.yee{bottom:63.376667pt;}
.y6e{bottom:64.548000pt;}
.y25d{bottom:66.101733pt;}
.y18{bottom:66.200400pt;}
.y199{bottom:66.773600pt;}
.y1d2{bottom:70.366667pt;}
.y1a5{bottom:71.225067pt;}
.y42{bottom:72.086000pt;}
.y234{bottom:72.117867pt;}
.y159{bottom:73.745733pt;}
.y1f9{bottom:73.996800pt;}
.yed{bottom:74.576667pt;}
.y10b{bottom:74.690667pt;}
.y9c{bottom:76.558400pt;}
.y278{bottom:76.558533pt;}
.yde{bottom:77.440267pt;}
.y6d{bottom:80.548000pt;}
.y1d1{bottom:81.566667pt;}
.y153{bottom:81.891733pt;}
.y25c{bottom:82.101733pt;}
.y198{bottom:82.773600pt;}
.y158{bottom:84.945733pt;}
.yec{bottom:85.776667pt;}
.y10a{bottom:85.890667pt;}
.y1a4{bottom:87.225067pt;}
.y41{bottom:88.086000pt;}
.yfa{bottom:92.558400pt;}
.y277{bottom:92.558533pt;}
.ydd{bottom:93.440267pt;}
.y17{bottom:95.800400pt;}
.y157{bottom:96.145733pt;}
.y6c{bottom:96.548000pt;}
.yeb{bottom:96.976667pt;}
.y109{bottom:97.090667pt;}
.y152{bottom:97.891733pt;}
.y25b{bottom:98.101733pt;}
.y197{bottom:98.773600pt;}
.y1d0{bottom:100.120533pt;}
.y1f8{bottom:100.663467pt;}
.y9b{bottom:103.225067pt;}
.y40{bottom:104.086000pt;}
.y156{bottom:107.345733pt;}
.yea{bottom:108.176667pt;}
.y108{bottom:108.290667pt;}
.y276{bottom:108.558533pt;}
.ydc{bottom:109.440267pt;}
.y16{bottom:110.200400pt;}
.y1cf{bottom:111.320533pt;}
.y6b{bottom:112.548000pt;}
.y151{bottom:113.891733pt;}
.y25a{bottom:114.101733pt;}
.y196{bottom:114.773600pt;}
.y155{bottom:118.545733pt;}
.y9a{bottom:119.225067pt;}
.ye9{bottom:119.376667pt;}
.y107{bottom:119.490667pt;}
.y15{bottom:124.600400pt;}
.y1cb{bottom:125.440267pt;}
.y1f7{bottom:127.330133pt;}
.y1ce{bottom:129.560400pt;}
.y154{bottom:129.745733pt;}
.y150{bottom:129.891733pt;}
.y259{bottom:130.101733pt;}
.ye8{bottom:130.576667pt;}
.y106{bottom:130.690667pt;}
.y3f{bottom:130.752667pt;}
.y99{bottom:135.225067pt;}
.y275{bottom:135.225200pt;}
.ydb{bottom:136.106933pt;}
.y14{bottom:139.000533pt;}
.y6a{bottom:139.214667pt;}
.y1cd{bottom:140.760400pt;}
.y195{bottom:141.440267pt;}
.ye7{bottom:141.776667pt;}
.y1f6{bottom:143.330133pt;}
.y258{bottom:146.101733pt;}
.y3e{bottom:146.752667pt;}
.y98{bottom:151.225067pt;}
.y274{bottom:151.225200pt;}
.y1cc{bottom:151.960400pt;}
.yda{bottom:152.106933pt;}
.ye6{bottom:152.976667pt;}
.y69{bottom:155.214667pt;}
.y14f{bottom:156.558400pt;}
.y194{bottom:157.440267pt;}
.y1f5{bottom:159.330133pt;}
.y3d{bottom:162.752667pt;}
.ye5{bottom:164.176667pt;}
.y97{bottom:167.225067pt;}
.y273{bottom:167.225200pt;}
.y13{bottom:167.800400pt;}
.yd9{bottom:168.106933pt;}
.y68{bottom:171.214667pt;}
.y14e{bottom:172.558400pt;}
.y257{bottom:172.768400pt;}
.y193{bottom:173.440267pt;}
.y1f4{bottom:175.330133pt;}
.ye4{bottom:175.376667pt;}
.y1a3{bottom:177.891733pt;}
.y3c{bottom:178.752667pt;}
.y12{bottom:182.200400pt;}
.y96{bottom:183.225067pt;}
.y1ca{bottom:184.106933pt;}
.ye3{bottom:186.576667pt;}
.y67{bottom:187.214667pt;}
.y14d{bottom:188.558400pt;}
.y256{bottom:188.768400pt;}
.y192{bottom:189.440267pt;}
.y1a2{bottom:193.891733pt;}
.y272{bottom:193.891867pt;}
.y3b{bottom:194.752667pt;}
.yd8{bottom:194.773600pt;}
.y17f{bottom:195.024000pt;}
.y11{bottom:196.600400pt;}
.ye2{bottom:197.776667pt;}
.y95{bottom:199.225067pt;}
.y1c9{bottom:200.106933pt;}
.y1f3{bottom:201.996800pt;}
.y66{bottom:203.214667pt;}
.y14c{bottom:204.558400pt;}
.y255{bottom:204.768400pt;}
.y191{bottom:205.440267pt;}
.y17e{bottom:207.402104pt;}
.ye1{bottom:208.976667pt;}
.yf9{bottom:209.891733pt;}
.y271{bottom:209.891867pt;}
.y3a{bottom:210.752667pt;}
.yd7{bottom:210.773600pt;}
.y10{bottom:211.000533pt;}
.y202{bottom:215.225067pt;}
.y1c8{bottom:216.106933pt;}
.y17d{bottom:217.295048pt;}
.y1f2{bottom:217.996800pt;}
.y14b{bottom:220.558400pt;}
.y254{bottom:220.768400pt;}
.yf{bottom:225.400533pt;}
.y94{bottom:225.891733pt;}
.y270{bottom:225.891867pt;}
.y39{bottom:226.752667pt;}
.yd6{bottom:226.773600pt;}
.y17c{bottom:227.165744pt;}
.ye0{bottom:227.708400pt;}
.y201{bottom:231.225067pt;}
.y190{bottom:232.106933pt;}
.y1f1{bottom:233.996800pt;}
.y65{bottom:234.332800pt;}
.y253{bottom:236.768400pt;}
.y17b{bottom:237.058688pt;}
.ye{bottom:239.800533pt;}
.y93{bottom:241.891733pt;}
.y26f{bottom:241.891867pt;}
.y38{bottom:242.752667pt;}
.yd5{bottom:242.773600pt;}
.y17a{bottom:246.944216pt;}
.y14a{bottom:247.225067pt;}
.y18f{bottom:248.106933pt;}
.y1f0{bottom:249.996800pt;}
.y252{bottom:252.768400pt;}
.y179{bottom:256.829744pt;}
.y92{bottom:257.891733pt;}
.y293{bottom:258.740000pt;}
.y37{bottom:258.752667pt;}
.yd4{bottom:258.773600pt;}
.y149{bottom:263.225067pt;}
.y18e{bottom:264.106933pt;}
.y1ef{bottom:265.996800pt;}
.y178{bottom:266.722688pt;}
.y64{bottom:268.558533pt;}
.yd{bottom:268.600533pt;}
.y251{bottom:268.768400pt;}
.y292{bottom:271.690000pt;}
.y91{bottom:273.891733pt;}
.y177{bottom:276.608216pt;}
.y101{bottom:278.027867pt;}
.y148{bottom:279.225067pt;}
.y18d{bottom:280.106933pt;}
.y1ee{bottom:281.996800pt;}
.y63{bottom:284.558533pt;}
.y291{bottom:284.640000pt;}
.y36{bottom:285.419333pt;}
.yd3{bottom:285.440267pt;}
.y176{bottom:286.493744pt;}
.yf8{bottom:289.891733pt;}
.y13d{bottom:291.832748pt;}
.y147{bottom:295.225067pt;}
.y250{bottom:295.435067pt;}
.y18c{bottom:296.106933pt;}
.y175{bottom:296.379272pt;}
.y290{bottom:297.590000pt;}
.yc{bottom:300.080000pt;}
.y90{bottom:300.558400pt;}
.y62{bottom:300.558533pt;}
.y13c{bottom:301.314109pt;}
.y35{bottom:301.419333pt;}
.yd2{bottom:301.440267pt;}
.yf7{bottom:305.891733pt;}
.y174{bottom:306.264800pt;}
.y1ed{bottom:308.663467pt;}
.y28f{bottom:310.540000pt;}
.y13b{bottom:310.788362pt;}
.y18b{bottom:312.106933pt;}
.y173{bottom:316.157744pt;}
.y8f{bottom:316.558400pt;}
.y61{bottom:316.558533pt;}
.y34{bottom:317.419333pt;}
.yd1{bottom:317.440267pt;}
.y227{bottom:318.606995pt;}
.y13a{bottom:320.262615pt;}
.y1c6{bottom:321.638667pt;}
.yf6{bottom:321.891733pt;}
.y24f{bottom:322.101733pt;}
.y28e{bottom:323.490000pt;}
.y1ec{bottom:324.663467pt;}
.y172{bottom:326.043272pt;}
.y18a{bottom:328.106933pt;}
.y226{bottom:329.220101pt;}
.yb{bottom:329.680000pt;}
.y139{bottom:329.729761pt;}
.y8e{bottom:332.558400pt;}
.y60{bottom:332.558533pt;}
.y33{bottom:333.419333pt;}
.yd0{bottom:333.440267pt;}
.y1c5{bottom:334.016371pt;}
.y171{bottom:335.928800pt;}
.y28d{bottom:336.440000pt;}
.yf5{bottom:337.891733pt;}
.y24e{bottom:338.101733pt;}
.y138{bottom:339.204014pt;}
.y225{bottom:339.801455pt;}
.y1eb{bottom:340.663467pt;}
.y16f{bottom:343.757333pt;}
.y1c4{bottom:343.909315pt;}
.ya{bottom:344.080000pt;}
.y189{bottom:344.106933pt;}
.y16e{bottom:345.822267pt;}
.y8d{bottom:348.558400pt;}
.y5f{bottom:348.558533pt;}
.y137{bottom:348.685374pt;}
.y28c{bottom:349.390000pt;}
.y32{bottom:349.419333pt;}
.ycf{bottom:349.440267pt;}
.y224{bottom:350.382809pt;}
.y164{bottom:353.645333pt;}
.y1c3{bottom:353.780011pt;}
.yf4{bottom:353.891733pt;}
.y24d{bottom:354.101733pt;}
.y16a{bottom:356.521227pt;}
.y1ea{bottom:356.663467pt;}
.y136{bottom:358.159627pt;}
.y9{bottom:358.480000pt;}
.y16d{bottom:359.401107pt;}
.y167{bottom:359.405893pt;}
.y16c{bottom:359.407287pt;}
.y188{bottom:360.106933pt;}
.y223{bottom:360.972101pt;}
.y28b{bottom:362.340000pt;}
.y162{bottom:363.118267pt;}
.y1c2{bottom:363.672955pt;}
.y169{bottom:364.357467pt;}
.y8c{bottom:364.558400pt;}
.y5e{bottom:364.558533pt;}
.y166{bottom:367.242133pt;}
.y16b{bottom:367.243527pt;}
.y135{bottom:367.633880pt;}
.yf3{bottom:369.891733pt;}
.y24c{bottom:370.101733pt;}
.y163{bottom:370.948327pt;}
.y222{bottom:371.537579pt;}
.y1e9{bottom:372.663467pt;}
.y8{bottom:372.880000pt;}
.y1c1{bottom:373.558483pt;}
.y26e{bottom:375.225200pt;}
.y28a{bottom:375.290000pt;}
.y31{bottom:376.086000pt;}
.yce{bottom:376.106933pt;}
.y134{bottom:377.108133pt;}
.y8b{bottom:380.558400pt;}
.y5d{bottom:380.558533pt;}
.y221{bottom:382.126871pt;}
.y1c0{bottom:383.444011pt;}
.y160{bottom:385.445333pt;}
.yf2{bottom:385.891733pt;}
.y24b{bottom:386.101733pt;}
.y133{bottom:386.582386pt;}
.y187{bottom:386.773600pt;}
.y289{bottom:388.240133pt;}
.y1e8{bottom:388.663467pt;}
.y26d{bottom:391.225200pt;}
.y30{bottom:392.086000pt;}
.ycd{bottom:392.106933pt;}
.y220{bottom:392.708225pt;}
.y1bf{bottom:393.336955pt;}
.y132{bottom:396.063747pt;}
.y8a{bottom:396.558400pt;}
.y5c{bottom:396.558533pt;}
.y15e{bottom:400.379600pt;}
.y288{bottom:401.190000pt;}
.y7{bottom:401.680000pt;}
.yf1{bottom:401.891733pt;}
.y24a{bottom:402.101733pt;}
.y186{bottom:402.773600pt;}
.y1be{bottom:403.222483pt;}
.y21f{bottom:403.289579pt;}
.y131{bottom:405.538000pt;}
.y26c{bottom:407.225200pt;}
.y2f{bottom:408.086000pt;}
.ycc{bottom:408.106933pt;}
.y89{bottom:412.558400pt;}
.y1bd{bottom:413.108011pt;}
.y161{bottom:413.544800pt;}
.y21e{bottom:413.878871pt;}
.y287{bottom:414.140000pt;}
.y130{bottom:415.012253pt;}
.y1e7{bottom:415.330133pt;}
.y6{bottom:416.080000pt;}
.yf0{bottom:417.891733pt;}
.y249{bottom:418.101733pt;}
.y185{bottom:418.773600pt;}
.y1bc{bottom:422.993539pt;}
.y5b{bottom:423.225200pt;}
.y2e{bottom:424.086000pt;}
.ycb{bottom:424.106933pt;}
.y21d{bottom:424.460225pt;}
.y12f{bottom:424.493614pt;}
.y286{bottom:427.090000pt;}
.y88{bottom:428.558400pt;}
.y5{bottom:430.480000pt;}
.y1e6{bottom:431.330133pt;}
.ybb{bottom:432.160267pt;}
.y1bb{bottom:432.879067pt;}
.yef{bottom:433.891733pt;}
.y12e{bottom:433.967867pt;}
.y248{bottom:434.101733pt;}
.y184{bottom:434.773600pt;}
.y21c{bottom:435.041579pt;}
.y5a{bottom:439.225200pt;}
.y285{bottom:440.040000pt;}
.y2d{bottom:440.086000pt;}
.yca{bottom:440.106933pt;}
.y12c{bottom:441.465333pt;}
.yba{bottom:441.760267pt;}
.y1ba{bottom:442.772011pt;}
.y87{bottom:444.558400pt;}
.y4{bottom:444.880000pt;}
.y21b{bottom:445.622933pt;}
.y1e5{bottom:447.330133pt;}
.y128{bottom:447.781991pt;}
.y183{bottom:450.773600pt;}
.yb9{bottom:451.360267pt;}
.y127{bottom:452.127600pt;}
.y12b{bottom:452.130124pt;}
.y1b9{bottom:452.657539pt;}
.y284{bottom:452.990133pt;}
.y59{bottom:455.225200pt;}
.y2c{bottom:456.086000pt;}
.y21a{bottom:456.204287pt;}
.y129{bottom:456.865333pt;}
.y3{bottom:459.280000pt;}
.y86{bottom:460.558400pt;}
.y247{bottom:460.768400pt;}
.yb8{bottom:460.960267pt;}
.y12a{bottom:461.213467pt;}
.y1b8{bottom:462.543067pt;}
.y283{bottom:465.940000pt;}
.yc9{bottom:466.773600pt;}
.y219{bottom:466.793579pt;}
.y1b6{bottom:470.369333pt;}
.yb7{bottom:470.560267pt;}
.y58{bottom:471.225200pt;}
.y2b{bottom:472.086000pt;}
.y1b5{bottom:472.436533pt;}
.y2{bottom:473.680000pt;}
.y1e4{bottom:473.996800pt;}
.y85{bottom:476.558400pt;}
.y246{bottom:476.768400pt;}
.yfe{bottom:476.776400pt;}
.y218{bottom:477.374933pt;}
.y282{bottom:478.890000pt;}
.yb6{bottom:480.160267pt;}
.y1ab{bottom:480.258667pt;}
.yc8{bottom:482.773600pt;}
.y1b1{bottom:483.135360pt;}
.y1b4{bottom:486.015240pt;}
.y1ae{bottom:486.020160pt;}
.y1b3{bottom:486.021420pt;}
.y146{bottom:487.225067pt;}
.y57{bottom:487.225200pt;}
.y2a{bottom:488.086000pt;}
.y22c{bottom:488.384850pt;}
.y229{bottom:488.391465pt;}
.yfd{bottom:489.576400pt;}
.y22b{bottom:489.714451pt;}
.y1a9{bottom:489.732533pt;}
.yb5{bottom:489.760267pt;}
.y1e3{bottom:489.996800pt;}
.y1b0{bottom:490.971600pt;}
.y281{bottom:491.840000pt;}
.y84{bottom:492.558400pt;}
.y245{bottom:492.768400pt;}
.y22a{bottom:493.690026pt;}
.y1ad{bottom:493.856400pt;}
.y1b2{bottom:493.857660pt;}
.y70{bottom:494.878000pt;}
.y22d{bottom:496.772585pt;}
.y228{bottom:496.779200pt;}
.y1aa{bottom:497.562593pt;}
.y26b{bottom:497.891867pt;}
.yc7{bottom:498.773600pt;}
.y1{bottom:502.480000pt;}
.y104{bottom:502.741600pt;}
.y1a1{bottom:503.225067pt;}
.y56{bottom:503.225200pt;}
.y29{bottom:504.086000pt;}
.yb4{bottom:504.349333pt;}
.y280{bottom:504.790000pt;}
.y1e2{bottom:505.996800pt;}
.y83{bottom:508.558400pt;}
.y244{bottom:508.768400pt;}
.y6f{bottom:511.702000pt;}
.y1a7{bottom:512.059467pt;}
.y145{bottom:513.891733pt;}
.yb3{bottom:513.949333pt;}
.yc6{bottom:514.773600pt;}
.y27f{bottom:517.740133pt;}
.y231{bottom:518.673733pt;}
.y1a0{bottom:519.225067pt;}
.y55{bottom:519.225200pt;}
.y28{bottom:520.086000pt;}
.y82{bottom:524.558400pt;}
.y26a{bottom:524.558533pt;}
.y243{bottom:524.768400pt;}
.y71{bottom:524.867200pt;}
.yad{bottom:526.771733pt;}
.y1a6{bottom:526.993733pt;}
.y144{bottom:529.891733pt;}
.y27e{bottom:530.690000pt;}
.yc5{bottom:530.773600pt;}
.y22f{bottom:532.663067pt;}
.y1e1{bottom:532.663467pt;}
.y15d{bottom:535.225067pt;}
.y54{bottom:535.225200pt;}
.y100{bottom:536.050933pt;}
.y1a{bottom:539.005867pt;}
.y1a8{bottom:540.158933pt;}
.y81{bottom:540.558400pt;}
.y269{bottom:540.558533pt;}
.yac{bottom:540.656948pt;}
.y242{bottom:540.768400pt;}
.y27d{bottom:543.640000pt;}
.y233{bottom:545.828267pt;}
.y143{bottom:545.891733pt;}
.y27{bottom:546.752667pt;}
.yc4{bottom:546.773600pt;}
.y1e0{bottom:548.663467pt;}
.y126{bottom:550.662791pt;}
.y15c{bottom:551.225067pt;}
.y53{bottom:551.225200pt;}
.yab{bottom:554.505396pt;}
.y80{bottom:556.558400pt;}
.y268{bottom:556.558533pt;}
.y27c{bottom:556.590000pt;}
.y241{bottom:556.768400pt;}
.y1c{bottom:558.798000pt;}
.y142{bottom:561.891733pt;}
.y125{bottom:562.719200pt;}
.y26{bottom:562.752667pt;}
.y15b{bottom:567.225067pt;}
.y52{bottom:567.225200pt;}
.yaa{bottom:568.353845pt;}
.y27b{bottom:569.540000pt;}
.y1b{bottom:569.998000pt;}
.y123{bottom:571.757333pt;}
.y7f{bottom:572.558400pt;}
.y267{bottom:572.558533pt;}
.y240{bottom:572.768400pt;}
.y214{bottom:574.411003pt;}
.yc3{bottom:577.891733pt;}
.y25{bottom:578.752667pt;}
.y294{bottom:581.954667pt;}
.ya9{bottom:582.212682pt;}
.y27a{bottom:582.490133pt;}
.y15a{bottom:583.225067pt;}
.y51{bottom:583.225200pt;}
.y11f{bottom:583.812000pt;}
.y1fe{bottom:583.917867pt;}
.y213{bottom:585.601485pt;}
.y182{bottom:588.558400pt;}
.y266{bottom:588.558533pt;}
.y23f{bottom:588.768400pt;}
.y19{bottom:589.903733pt;}
.y11e{bottom:591.337261pt;}
.y141{bottom:593.891733pt;}
.y24{bottom:594.752667pt;}
.ya8{bottom:596.040352pt;}
.y212{bottom:596.783577pt;}
.y121{bottom:596.872400pt;}
.y7e{bottom:599.225067pt;}
.y50{bottom:599.225200pt;}
.y1fd{bottom:599.487867pt;}
.y11d{bottom:602.403200pt;}
.yc2{bottom:604.558400pt;}
.y265{bottom:604.558533pt;}
.y23e{bottom:604.768400pt;}
.y211{bottom:607.965670pt;}
.y140{bottom:609.891733pt;}
.ya7{bottom:609.899189pt;}
.y1fc{bottom:612.287867pt;}
.y7d{bottom:615.225067pt;}
.y1de{bottom:615.985733pt;}
.y210{bottom:619.156151pt;}
.yc1{bottom:620.558400pt;}
.y23d{bottom:620.768400pt;}
.y23{bottom:621.419333pt;}
.ya6{bottom:623.747637pt;}
.y1fb{bottom:625.087867pt;}
.y200{bottom:625.891733pt;}
.y4f{bottom:625.891867pt;}
.yfc{bottom:626.823733pt;}
.y1dc{bottom:629.975067pt;}
.y20f{bottom:630.321467pt;}
.y7c{bottom:631.225067pt;}
.y264{bottom:631.225200pt;}
.yc0{bottom:636.558400pt;}
.y23c{bottom:636.768400pt;}
.ya5{bottom:637.596085pt;}
.yfb{bottom:639.623733pt;}
.y1ff{bottom:640.677733pt;}
.y20e{bottom:641.511948pt;}
.y19f{bottom:641.891733pt;}
.y4e{bottom:641.891867pt;}
.y1df{bottom:643.140267pt;}
.y1e{bottom:645.018533pt;}
.y7b{bottom:647.225067pt;}
.y263{bottom:647.225200pt;}
.ya4{bottom:651.454922pt;}
.ybf{bottom:652.558400pt;}
.y20d{bottom:652.694041pt;}
.y23b{bottom:652.768400pt;}
.y103{bottom:652.788800pt;}
.y19e{bottom:657.891733pt;}
.y4d{bottom:657.891867pt;}
.y7a{bottom:663.225067pt;}
.y262{bottom:663.225200pt;}
.y20c{bottom:663.876133pt;}
.ya3{bottom:665.303370pt;}
.ybe{bottom:668.558400pt;}
.y23a{bottom:668.768400pt;}
.y19d{bottom:673.891733pt;}
.y4c{bottom:673.891867pt;}
.y20b{bottom:675.066615pt;}
.y1d{bottom:678.618533pt;}
.ya2{bottom:679.151819pt;}
.y79{bottom:679.225067pt;}
.y261{bottom:679.225200pt;}
.y102{bottom:679.649733pt;}
.y13f{bottom:684.558400pt;}
.y239{bottom:684.768400pt;}
.y20a{bottom:686.248707pt;}
.y19c{bottom:689.891733pt;}
.y4b{bottom:689.891867pt;}
.ya1{bottom:693.000267pt;}
.y11b{bottom:693.281333pt;}
.y78{bottom:695.225067pt;}
.y260{bottom:695.225200pt;}
.y209{bottom:697.430800pt;}
.y238{bottom:700.768400pt;}
.y119{bottom:705.292000pt;}
.y19b{bottom:705.891733pt;}
.y4a{bottom:705.891867pt;}
.ya0{bottom:706.848715pt;}
.y208{bottom:708.612893pt;}
.y77{bottom:711.225067pt;}
.y25f{bottom:711.225200pt;}
.y237{bottom:716.768400pt;}
.y117{bottom:717.302667pt;}
.y207{bottom:719.794985pt;}
.y9f{bottom:720.707552pt;}
.y19a{bottom:721.891733pt;}
.y49{bottom:721.891867pt;}
.y1d8{bottom:721.973333pt;}
.y76{bottom:727.225067pt;}
.y25e{bottom:727.225200pt;}
.y115{bottom:729.313333pt;}
.y206{bottom:730.985467pt;}
.y1d7{bottom:733.915089pt;}
.y9e{bottom:734.556000pt;}
.y181{bottom:737.891733pt;}
.y48{bottom:737.891867pt;}
.y204{bottom:739.837333pt;}
.y203{bottom:742.169333pt;}
.ybd{bottom:743.225067pt;}
.y1d6{bottom:743.476133pt;}
.y114{bottom:744.331600pt;}
.y236{bottom:747.886533pt;}
.yb0{bottom:750.698596pt;}
.yaf{bottom:750.707129pt;}
.y1d4{bottom:751.041333pt;}
.y10e{bottom:753.334667pt;}
.y75{bottom:753.891733pt;}
.y47{bottom:753.891867pt;}
.y216{bottom:755.212461pt;}
.yae{bottom:755.910267pt;}
.y13e{bottom:759.225067pt;}
.y217{bottom:759.406781pt;}
.y1da{bottom:760.597333pt;}
.y10d{bottom:760.845966pt;}
.y215{bottom:764.069467pt;}
.y110{bottom:766.343867pt;}
.y74{bottom:769.891733pt;}
.y46{bottom:769.891867pt;}
.y10c{bottom:771.854800pt;}
.y15f{bottom:777.004400pt;}
.y1dd{bottom:777.949200pt;}
.y230{bottom:778.138400pt;}
.yb2{bottom:779.138667pt;}
.y73{bottom:785.891733pt;}
.y45{bottom:785.891867pt;}
.yff{bottom:791.875600pt;}
.yb1{bottom:791.938667pt;}
.y22e{bottom:792.127733pt;}
.y72{bottom:801.891733pt;}
.y44{bottom:801.891867pt;}
.y105{bottom:805.040800pt;}
.ybc{bottom:805.103733pt;}
.y232{bottom:805.292667pt;}
.y20{bottom:857.898533pt;}
.h2f{height:9.157333pt;}
.h2a{height:9.474667pt;}
.h2e{height:9.476000pt;}
.h33{height:10.718667pt;}
.h1e{height:11.509333pt;}
.h1d{height:11.510667pt;}
.h21{height:11.552000pt;}
.h24{height:20.895952pt;}
.h26{height:22.594080pt;}
.h30{height:23.307734pt;}
.h27{height:23.896000pt;}
.h29{height:24.116832pt;}
.h3a{height:24.184196pt;}
.h35{height:25.557390pt;}
.h38{height:25.814376pt;}
.h10{height:26.016000pt;}
.h25{height:26.850667pt;}
.h2c{height:27.112896pt;}
.h32{height:27.279944pt;}
.h11{height:27.440000pt;}
.h1c{height:27.666715pt;}
.h22{height:27.767310pt;}
.h17{height:28.992000pt;}
.h39{height:29.021328pt;}
.h2d{height:30.202667pt;}
.h8{height:30.352000pt;}
.h34{height:30.668965pt;}
.h1a{height:31.103786pt;}
.h1f{height:31.216878pt;}
.h16{height:31.651698pt;}
.h1b{height:32.528000pt;}
.h20{height:32.645333pt;}
.h19{height:33.596354pt;}
.h12{height:33.784811pt;}
.hd{height:35.506767pt;}
.h13{height:35.871697pt;}
.hb{height:38.395833pt;}
.ha{height:38.656000pt;}
.h6{height:38.997333pt;}
.h3{height:39.024000pt;}
.h23{height:39.858673pt;}
.hc{height:41.666667pt;}
.h3b{height:41.806379pt;}
.h37{height:42.334670pt;}
.h2{height:43.360000pt;}
.h4{height:43.488000pt;}
.h7{height:43.872000pt;}
.h36{height:44.208133pt;}
.h5{height:45.904000pt;}
.h18{height:46.179307pt;}
.h3d{height:46.309333pt;}
.h31{height:47.780000pt;}
.hf{height:48.320000pt;}
.he{height:48.746667pt;}
.h3c{height:52.416732pt;}
.h28{height:53.914320pt;}
.h14{height:54.715189pt;}
.h15{height:75.493606pt;}
.h9{height:102.368000pt;}
.h2b{height:182.517333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w8{width:42.546667pt;}
.w7{width:51.464000pt;}
.w3{width:51.678667pt;}
.w2{width:51.680000pt;}
.w5{width:51.868000pt;}
.wb{width:82.637333pt;}
.w4{width:260.908000pt;}
.w6{width:261.856000pt;}
.wc{width:291.558667pt;}
.wa{width:297.012000pt;}
.w9{width:300.716000pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x5b{left:1.197200pt;}
.x35{left:5.522400pt;}
.x4e{left:6.614667pt;}
.x37{left:10.539200pt;}
.xd{left:11.716533pt;}
.x53{left:13.218800pt;}
.x32{left:15.052800pt;}
.x38{left:18.169333pt;}
.x3a{left:19.634667pt;}
.x2d{left:20.787333pt;}
.x5e{left:22.754133pt;}
.x2e{left:23.685333pt;}
.x23{left:24.944800pt;}
.x1f{left:29.130533pt;}
.x4a{left:30.533733pt;}
.x3c{left:34.382133pt;}
.x41{left:36.806281pt;}
.x3b{left:37.809333pt;}
.x1c{left:39.501733pt;}
.x40{left:42.350205pt;}
.x1b{left:43.542800pt;}
.x21{left:47.742000pt;}
.x1a{left:49.876547pt;}
.x19{left:52.230533pt;}
.x59{left:53.886533pt;}
.xc{left:59.085067pt;}
.x2b{left:60.569467pt;}
.x45{left:63.150400pt;}
.x48{left:67.579467pt;}
.xa{left:68.596533pt;}
.x12{left:75.968533pt;}
.x3d{left:77.130408pt;}
.x46{left:78.606133pt;}
.x7f{left:83.015333pt;}
.x67{left:87.967600pt;}
.x2f{left:90.933751pt;}
.x55{left:93.390133pt;}
.x2{left:94.488133pt;}
.x66{left:101.388933pt;}
.x56{left:107.162800pt;}
.x4c{left:108.189665pt;}
.x4b{left:111.492133pt;}
.x13{left:113.390533pt;}
.x8{left:119.055067pt;}
.x30{left:126.553917pt;}
.x3e{left:130.576267pt;}
.x31{left:132.072655pt;}
.x1d{left:147.132080pt;}
.x4d{left:148.664000pt;}
.xb{left:149.669200pt;}
.xe{left:151.181067pt;}
.x4f{left:161.064199pt;}
.x7e{left:163.395067pt;}
.x2a{left:174.324400pt;}
.x33{left:175.718933pt;}
.x3f{left:181.254021pt;}
.x39{left:186.877373pt;}
.xf{left:188.981067pt;}
.x29{left:191.710533pt;}
.x50{left:193.277203pt;}
.x51{left:200.303467pt;}
.x9{left:223.452933pt;}
.x47{left:225.015200pt;}
.x34{left:226.894667pt;}
.x22{left:229.009733pt;}
.x20{left:236.505600pt;}
.x36{left:238.437333pt;}
.x28{left:244.945867pt;}
.x2c{left:245.859067pt;}
.x52{left:278.782003pt;}
.x1e{left:282.546351pt;}
.x6{left:286.171467pt;}
.x5{left:287.309867pt;}
.x49{left:290.490533pt;}
.x24{left:292.158267pt;}
.x26{left:298.582667pt;}
.x4{left:307.413200pt;}
.x7{left:331.885600pt;}
.x7c{left:334.488267pt;}
.x27{left:336.382667pt;}
.x17{left:338.645600pt;}
.x43{left:340.913467pt;}
.x1{left:349.522933pt;}
.x3{left:351.736267pt;}
.x10{left:367.336533pt;}
.x7d{left:372.283467pt;}
.x18{left:376.445600pt;}
.x44{left:378.708667pt;}
.x60{left:405.077333pt;}
.x58{left:407.524000pt;}
.x5a{left:408.721200pt;}
.x69{left:409.622667pt;}
.x6d{left:421.773258pt;}
.x71{left:423.643305pt;}
.x57{left:424.918667pt;}
.x70{left:428.959606pt;}
.x6a{left:430.175281pt;}
.x68{left:432.050800pt;}
.x61{left:436.798400pt;}
.x79{left:448.117200pt;}
.x14{left:450.273867pt;}
.x5c{left:455.429333pt;}
.x77{left:480.004267pt;}
.x73{left:505.010952pt;}
.x6e{left:514.290187pt;}
.x7a{left:515.907333pt;}
.x78{left:517.944933pt;}
.x5d{left:538.465333pt;}
.x15{left:544.170400pt;}
.x25{left:550.839867pt;}
.x42{left:557.706000pt;}
.x74{left:563.818078pt;}
.x6f{left:565.222168pt;}
.x63{left:610.308800pt;}
.x75{left:612.451512pt;}
.x76{left:615.104365pt;}
.x5f{left:621.500000pt;}
.x11{left:643.560800pt;}
.x54{left:645.644133pt;}
.x62{left:653.195867pt;}
.x6b{left:655.869733pt;}
.x6c{left:660.067925pt;}
.x72{left:661.522667pt;}
.x7b{left:666.789733pt;}
.x16{left:667.876267pt;}
.x65{left:669.529733pt;}
.x64{left:671.433867pt;}
}




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