
    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_0101bc16b209a4dec512559b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9d18dc7c0614370de6da9fc8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e06edcbfeb9a633d23506486.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3543adb6f62d4f577a1aeb31.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_9e73cf55bdba3c45e43c85c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_e103a95a6a8a770cfb4352fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.866699;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_b82a6d5f42777853928b33ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_f3701f1851eb6bb868fe6ee2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_413b1ffcf1a4558f72fab288.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_e5a2326c2ea5a3ec03c0676b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c1335cddf14b90b79a21d134.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_30856e2c038037fafbfffb5a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_190d83cb61a20ccfac518f8a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c118416ca155a36c2dbeed34.woff2')format("woff");}.fff{font-family:fff;line-height:0.933594;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_95b3926b582b155bf87f2ff8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.372070;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_d29e955178f188e8f96a1af9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.040039;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_df1912e5c3803c0573fdb72d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5b186a2a88425c5fb062bf57.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_eafb2ffa76506da8fcc7b3e5.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.281250;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_d4ada14dd16271243c6905e8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0a695741b882594e453932bc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.942383;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_4c46d5cd9d9d423bc8420df1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.940430;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_abe7acefa2c73b68ecb2c359.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.973145;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_c7798ba28e9a9c7a5c5ad8e7.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.915527;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_10ae6fbb78106777e378126a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.915527;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_bd57e2ab87bbaa9edeb95b50.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.973145;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_14241651fdcadc1aa845825b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.774902;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_61ae73443842de91d773aa63.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.942383;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;}
.m17{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.md{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.266675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266675,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.273800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273800,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.291675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291675,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294125,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.297625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297625,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.306825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306825,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.309525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309525,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.316675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316675,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.321425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321425,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329550,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338225,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.339275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339275,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.340900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340900,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.352275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352275,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.357150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357150,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.366675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366675,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.383325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383325,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.395825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395825,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.397725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397725,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.403850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403850,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.464275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464275,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.547625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547625,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-76.440000px;}
.vd{vertical-align:-69.132000px;}
.v2{vertical-align:-64.800000px;}
.vf{vertical-align:-63.360000px;}
.v1{vertical-align:-60.480000px;}
.ve{vertical-align:-59.040000px;}
.v8{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v6{vertical-align:18.720000px;}
.v9{vertical-align:21.600000px;}
.va{vertical-align:24.660000px;}
.v5{vertical-align:27.372000px;}
.v7{vertical-align:40.332000px;}
.vb{vertical-align:47.520000px;}
.ls60{letter-spacing:-1.866000px;}
.ls56{letter-spacing:-1.536000px;}
.lsa{letter-spacing:-1.440000px;}
.ls36{letter-spacing:-1.422000px;}
.ls58{letter-spacing:-1.134000px;}
.lsd{letter-spacing:-1.128000px;}
.ls2b{letter-spacing:-0.972000px;}
.ls54{letter-spacing:-0.954000px;}
.ls5a{letter-spacing:-0.942000px;}
.lsf{letter-spacing:-0.936000px;}
.ls55{letter-spacing:-0.828000px;}
.ls34{letter-spacing:-0.786000px;}
.ls4e{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.642000px;}
.ls48{letter-spacing:-0.558600px;}
.ls12{letter-spacing:-0.486600px;}
.ls62{letter-spacing:-0.485400px;}
.ls2d{letter-spacing:-0.466800px;}
.ls39{letter-spacing:-0.423600px;}
.ls5f{letter-spacing:-0.409800px;}
.ls38{letter-spacing:-0.363000px;}
.ls64{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.253200px;}
.ls13{letter-spacing:-0.249600px;}
.ls5b{letter-spacing:-0.234600px;}
.lse{letter-spacing:-0.233400px;}
.ls33{letter-spacing:-0.158400px;}
.ls4f{letter-spacing:-0.020160px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.ls49{letter-spacing:0.028800px;}
.ls2{letter-spacing:0.031745px;}
.ls24{letter-spacing:0.042105px;}
.ls28{letter-spacing:0.059886px;}
.ls3{letter-spacing:0.062743px;}
.ls22{letter-spacing:0.102585px;}
.ls0{letter-spacing:0.128422px;}
.ls7{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.212490px;}
.ls16{letter-spacing:0.237600px;}
.ls15{letter-spacing:0.250560px;}
.ls30{letter-spacing:0.250800px;}
.ls5c{letter-spacing:0.291489px;}
.ls27{letter-spacing:0.291725px;}
.ls4b{letter-spacing:0.340800px;}
.ls11{letter-spacing:0.360000px;}
.ls53{letter-spacing:0.385800px;}
.ls4c{letter-spacing:0.391800px;}
.ls46{letter-spacing:0.394560px;}
.ls42{letter-spacing:0.411207px;}
.ls57{letter-spacing:0.440400px;}
.ls10{letter-spacing:0.466800px;}
.ls25{letter-spacing:0.471375px;}
.ls2e{letter-spacing:0.486600px;}
.ls6{letter-spacing:0.498240px;}
.ls2f{letter-spacing:0.507000px;}
.ls50{letter-spacing:0.573000px;}
.ls40{letter-spacing:0.577689px;}
.ls26{letter-spacing:0.599040px;}
.lsb{letter-spacing:0.630000px;}
.ls4d{letter-spacing:0.684000px;}
.ls43{letter-spacing:0.692511px;}
.ls3d{letter-spacing:0.702000px;}
.lsc{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.767443px;}
.ls52{letter-spacing:0.900000px;}
.ls61{letter-spacing:0.936000px;}
.ls2c{letter-spacing:0.972000px;}
.ls17{letter-spacing:1.080000px;}
.ls63{letter-spacing:1.206000px;}
.ls51{letter-spacing:1.314000px;}
.ls31{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.511008px;}
.ls5d{letter-spacing:1.540393px;}
.ls2a{letter-spacing:1.680207px;}
.ls4a{letter-spacing:1.908000px;}
.ls32{letter-spacing:1.944000px;}
.ls3c{letter-spacing:2.171859px;}
.ls23{letter-spacing:2.717501px;}
.ls1e{letter-spacing:3.191040px;}
.ls41{letter-spacing:5.104436px;}
.ls59{letter-spacing:6.120000px;}
.ls3f{letter-spacing:6.480000px;}
.ls1a{letter-spacing:7.451051px;}
.ls1f{letter-spacing:9.271893px;}
.ls5e{letter-spacing:11.160000px;}
.ls45{letter-spacing:14.040000px;}
.ls19{letter-spacing:16.680000px;}
.ls44{letter-spacing:18.360000px;}
.ls9{letter-spacing:22.320000px;}
.ls3b{letter-spacing:50.040000px;}
.ls1d{letter-spacing:55.440000px;}
.ls3e{letter-spacing:62.640000px;}
.ls18{letter-spacing:110.520000px;}
.ls1c{letter-spacing:231.042240px;}
.ls1b{letter-spacing:255.791520px;}
.ls1{letter-spacing:269.106372px;}
.ls3a{letter-spacing:280.091520px;}
.ls21{letter-spacing:294.491520px;}
.ls47{letter-spacing:693.660000px;}
.ls14{letter-spacing:709.500000px;}
.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;}
}
.ws2b{word-spacing:-61.053000px;}
.ws27{word-spacing:-60.871800px;}
.ws1e{word-spacing:-60.480000px;}
.ws25{word-spacing:-59.921400px;}
.ws1d{word-spacing:-38.880000px;}
.ws2{word-spacing:-32.462730px;}
.ws2d{word-spacing:-20.011680px;}
.ws4{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.064000px;}
.ws26{word-spacing:-17.028000px;}
.ws1a{word-spacing:-16.560000px;}
.ws31{word-spacing:-16.092000px;}
.ws14{word-spacing:-15.627000px;}
.ws13{word-spacing:-15.606600px;}
.wsc{word-spacing:-15.586800px;}
.ws9{word-spacing:-15.140160px;}
.wsa{word-spacing:-15.120000px;}
.ws2a{word-spacing:-15.099840px;}
.ws1{word-spacing:-15.011994px;}
.ws2c{word-spacing:-14.982480px;}
.ws0{word-spacing:-14.939994px;}
.wse{word-spacing:-14.870400px;}
.ws12{word-spacing:-14.653200px;}
.wsd{word-spacing:-14.633400px;}
.wsf{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.310000px;}
.wsb{word-spacing:-14.184000px;}
.ws2e{word-spacing:-14.166000px;}
.ws11{word-spacing:-14.148000px;}
.ws2f{word-spacing:-14.108880px;}
.ws20{word-spacing:-14.057520px;}
.ws21{word-spacing:-13.698000px;}
.ws22{word-spacing:-13.685760px;}
.ws7{word-spacing:-13.680000px;}
.ws19{word-spacing:-13.668480px;}
.ws23{word-spacing:-13.415280px;}
.ws24{word-spacing:-13.244880px;}
.ws35{word-spacing:-13.086000px;}
.ws1f{word-spacing:-12.899760px;}
.ws33{word-spacing:-12.816000px;}
.ws18{word-spacing:-12.600000px;}
.ws8{word-spacing:-12.552000px;}
.ws5{word-spacing:-12.240000px;}
.ws17{word-spacing:-12.130800px;}
.ws15{word-spacing:-11.880000px;}
.ws32{word-spacing:-11.802480px;}
.ws30{word-spacing:-11.645400px;}
.ws34{word-spacing:-11.394600px;}
.ws29{word-spacing:-11.160000px;}
.ws28{word-spacing:-10.458000px;}
.ws16{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.437760px;}
.ws1c{word-spacing:-8.786880px;}
.ws3{word-spacing:0.000000px;}
._26{margin-left:-8.013666px;}
._2b{margin-left:-6.740546px;}
._24{margin-left:-5.567464px;}
._4{margin-left:-4.498862px;}
._17{margin-left:-3.391404px;}
._5{margin-left:-2.373730px;}
._1{margin-left:-1.135318px;}
._0{width:1.152755px;}
._6{width:2.764873px;}
._15{width:4.762217px;}
._11{width:6.093627px;}
._7{width:7.196853px;}
._b{width:8.281409px;}
._10{width:9.469222px;}
._d{width:10.539191px;}
._c{width:12.520964px;}
._23{width:13.547520px;}
._13{width:14.747732px;}
._e{width:16.246340px;}
._12{width:17.326175px;}
._9{width:18.598369px;}
._a{width:19.691931px;}
._1a{width:21.411418px;}
._1d{width:22.424133px;}
._8{width:23.931956px;}
._1f{width:24.967089px;}
._1e{width:26.072277px;}
._f{width:27.640056px;}
._25{width:28.755899px;}
._16{width:29.857916px;}
._19{width:32.558594px;}
._18{width:33.887132px;}
._21{width:35.331695px;}
._1c{width:37.141699px;}
._1b{width:38.400259px;}
._22{width:43.781615px;}
._28{width:44.946332px;}
._29{width:45.958857px;}
._14{width:55.944079px;}
._2a{width:278.587474px;}
._3{width:458.829061px;}
._27{width:569.799564px;}
._2{width:1340.352616px;}
._20{width:1563.720000px;}
.fce{color:rgb(128,0,0);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc8{color:rgb(51,51,51);}
.fca{color:rgb(0,176,80);}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(0,112,192);}
.fc5{color:rgb(83,129,53);}
.fc0{color:rgb(0,0,0);}
.fc7{color:rgb(44,62,80);}
.fcd{color:transparent;}
.fc6{color:rgb(0,32,96);}
.fc9{color:rgb(0,0,255);}
.fcc{color:rgb(0,101,204);}
.fcb{color:rgb(79,129,189);}
.fs12{font-size:8.640000px;}
.fs11{font-size:36.000000px;}
.fsf{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs10{font-size:44.640000px;}
.fse{font-size:47.520000px;}
.fs2{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs8{font-size:54.720000px;}
.fsd{font-size:57.600000px;}
.fs0{font-size:59.759976px;}
.fsa{font-size:60.000000px;}
.fs6{font-size:60.480000px;}
.fsb{font-size:66.000000px;}
.fs1{font-size:66.239974px;}
.fsc{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:107.999957px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:1.800000px;}
.y9c{bottom:1.833000px;}
.y9f{bottom:2.355000px;}
.y9b{bottom:2.826000px;}
.y99{bottom:3.240000px;}
.y9d{bottom:3.564000px;}
.y13{bottom:3.599732px;}
.yec{bottom:3.600000px;}
.yf5{bottom:3.630000px;}
.y12d{bottom:3.960000px;}
.y130{bottom:4.005000px;}
.ya0{bottom:7.884000px;}
.y98{bottom:21.210000px;}
.ya6{bottom:28.836000px;}
.y9e{bottom:31.035000px;}
.y10f{bottom:31.356000px;}
.y116{bottom:31.716000px;}
.y10e{bottom:32.796000px;}
.y115{bottom:33.156000px;}
.y97{bottom:39.180000px;}
.y114{bottom:54.396000px;}
.y6{bottom:57.599977px;}
.y10d{bottom:63.396000px;}
.y1af{bottom:66.636000px;}
.y113{bottom:71.676000px;}
.y188{bottom:75.276000px;}
.y5{bottom:76.679969px;}
.y1ae{bottom:80.316000px;}
.y10c{bottom:81.396000px;}
.y112{bottom:90.036000px;}
.y165{bottom:90.396000px;}
.y187{bottom:93.276000px;}
.y1ad{bottom:93.636000px;}
.y95{bottom:96.516000px;}
.y10b{bottom:99.396000px;}
.y1ac{bottom:107.316000px;}
.y164{bottom:108.396000px;}
.y186{bottom:110.916000px;}
.y94{bottom:114.516000px;}
.y111{bottom:114.876000px;}
.y110{bottom:116.316000px;}
.y10a{bottom:117.396000px;}
.y1ab{bottom:120.996000px;}
.y185{bottom:129.312000px;}
.y93{bottom:132.192000px;}
.y1aa{bottom:134.352000px;}
.ya4{bottom:138.312000px;}
.y109{bottom:140.472000px;}
.y117{bottom:140.832000px;}
.y107{bottom:143.352000px;}
.y106{bottom:144.792000px;}
.y1a9{bottom:148.032000px;}
.y184{bottom:149.832000px;}
.y92{bottom:150.195000px;}
.y108{bottom:150.915000px;}
.y37{bottom:151.019940px;}
.y163{bottom:151.275000px;}
.y1a8{bottom:161.355000px;}
.y36{bottom:165.059934px;}
.y183{bottom:167.835000px;}
.y91{bottom:168.195000px;}
.yd3{bottom:172.875000px;}
.y162{bottom:173.235000px;}
.y1a7{bottom:174.675000px;}
.y35{bottom:178.739929px;}
.y90{bottom:186.195000px;}
.y1a6{bottom:188.355000px;}
.y161{bottom:189.435000px;}
.y182{bottom:190.515000px;}
.yd2{bottom:190.875000px;}
.y105{bottom:193.035000px;}
.y160{bottom:195.915000px;}
.y6e{bottom:201.315000px;}
.y1a5{bottom:201.675000px;}
.y8f{bottom:203.835000px;}
.y1f{bottom:206.279917px;}
.yd1{bottom:208.515000px;}
.y42{bottom:208.979916px;}
.y104{bottom:211.035000px;}
.y15f{bottom:213.915000px;}
.y181{bottom:218.595000px;}
.y6d{bottom:219.315000px;}
.y8e{bottom:221.835000px;}
.y1a4{bottom:222.462000px;}
.y41{bottom:224.459910px;}
.yd0{bottom:226.515000px;}
.y103{bottom:229.035000px;}
.y15e{bottom:231.555000px;}
.y180{bottom:236.595000px;}
.y6c{bottom:237.315000px;}
.y8d{bottom:239.835000px;}
.y40{bottom:239.939904px;}
.ycf{bottom:244.515000px;}
.y102{bottom:247.035000px;}
.y15d{bottom:249.555000px;}
.y17f{bottom:254.265000px;}
.y6b{bottom:255.345000px;}
.y3f{bottom:255.599898px;}
.y8c{bottom:257.505000px;}
.yce{bottom:262.185000px;}
.y101{bottom:264.705000px;}
.y15c{bottom:267.585000px;}
.y3e{bottom:271.799891px;}
.y17e{bottom:272.265000px;}
.y6a{bottom:272.985000px;}
.y1a3{bottom:273.345000px;}
.y8b{bottom:275.505000px;}
.ycd{bottom:280.185000px;}
.y15b{bottom:285.585000px;}
.y100{bottom:288.465000px;}
.y17d{bottom:290.265000px;}
.y69{bottom:290.985000px;}
.y8a{bottom:293.505000px;}
.ycc{bottom:302.865000px;}
.y15a{bottom:303.225000px;}
.y34{bottom:307.619877px;}
.y17c{bottom:307.905000px;}
.y68{bottom:308.985000px;}
.y89{bottom:317.265000px;}
.y159{bottom:319.785000px;}
.y158{bottom:321.225000px;}
.y119{bottom:325.904991px;}
.y17b{bottom:325.905000px;}
.y67{bottom:326.625000px;}
.y1a2{bottom:326.985000px;}
.yff{bottom:332.745000px;}
.y33{bottom:332.999867px;}
.y88{bottom:334.905000px;}
.y1e{bottom:336.599865px;}
.y157{bottom:339.225000px;}
.y17a{bottom:343.905000px;}
.y66{bottom:344.625000px;}
.y32{bottom:349.559860px;}
.yfe{bottom:351.465000px;}
.y87{bottom:352.905000px;}
.y156{bottom:355.785000px;}
.y118{bottom:356.504991px;}
.y155{bottom:357.225000px;}
.y65{bottom:362.625000px;}
.y179{bottom:364.785000px;}
.y31{bottom:366.119854px;}
.yfd{bottom:370.185000px;}
.y86{bottom:370.905000px;}
.yfc{bottom:371.625000px;}
.y154{bottom:375.225000px;}
.ycb{bottom:379.950000px;}
.y64{bottom:380.670000px;}
.y30{bottom:382.499847px;}
.y85{bottom:388.590000px;}
.yfb{bottom:390.030000px;}
.y153{bottom:392.910000px;}
.yca{bottom:397.950000px;}
.y1a1{bottom:398.310000px;}
.y2f{bottom:399.059840px;}
.y178{bottom:403.350000px;}
.ya3{bottom:405.150000px;}
.y84{bottom:406.590000px;}
.yfa{bottom:407.670000px;}
.y152{bottom:409.470000px;}
.y151{bottom:410.910000px;}
.y2e{bottom:415.619834px;}
.yc9{bottom:415.950000px;}
.y1a0{bottom:416.670000px;}
.y177{bottom:417.750000px;}
.y83{bottom:424.590000px;}
.yf9{bottom:424.950000px;}
.y150{bottom:427.470000px;}
.y176{bottom:428.190000px;}
.y14f{bottom:428.910000px;}
.y2d{bottom:432.179827px;}
.y1d{bottom:432.719827px;}
.yc8{bottom:433.590000px;}
.y175{bottom:436.830000px;}
.y19f{bottom:437.910000px;}
.y63{bottom:442.230000px;}
.yf8{bottom:442.590000px;}
.y14e{bottom:446.910000px;}
.y2c{bottom:448.739821px;}
.y174{bottom:450.870000px;}
.yc7{bottom:451.590000px;}
.y82{bottom:451.950000px;}
.y62{bottom:456.990000px;}
.y19e{bottom:461.310000px;}
.y173{bottom:464.910000px;}
.y14d{bottom:465.270000px;}
.y2b{bottom:465.299814px;}
.y1c{bottom:467.459813px;}
.y81{bottom:469.230000px;}
.yc6{bottom:469.590000px;}
.y61{bottom:472.110000px;}
.yf7{bottom:476.070000px;}
.y172{bottom:478.950000px;}
.y2a{bottom:481.679807px;}
.y1b{bottom:482.759807px;}
.y60{bottom:486.870000px;}
.yc5{bottom:487.230000px;}
.yf6{bottom:491.190000px;}
.y80{bottom:491.550000px;}
.y171{bottom:495.510000px;}
.y1a{bottom:497.879801px;}
.y29{bottom:498.239801px;}
.yf4{bottom:500.190000px;}
.y5f{bottom:501.660000px;}
.y14c{bottom:504.180000px;}
.yc4{bottom:505.260000px;}
.y170{bottom:508.860000px;}
.y19d{bottom:509.220000px;}
.y7f{bottom:509.580000px;}
.y19{bottom:512.099795px;}
.yf3{bottom:514.260000px;}
.y28{bottom:514.799794px;}
.y5e{bottom:516.780000px;}
.yc3{bottom:523.260000px;}
.y14b{bottom:525.060000px;}
.y7e{bottom:527.220000px;}
.yf2{bottom:528.300000px;}
.y27{bottom:531.359787px;}
.y5d{bottom:531.540000px;}
.y16f{bottom:537.300000px;}
.yf1{bottom:542.340000px;}
.y14a{bottom:543.060000px;}
.y7d{bottom:545.220000px;}
.y18{bottom:545.579782px;}
.yc2{bottom:545.940000px;}
.y5c{bottom:546.300000px;}
.y26{bottom:547.919781px;}
.yf0{bottom:556.380000px;}
.y16e{bottom:559.260000px;}
.y149{bottom:560.700000px;}
.y5b{bottom:561.420000px;}
.y19c{bottom:562.860000px;}
.y7c{bottom:563.220000px;}
.y25{bottom:564.479774px;}
.yef{bottom:570.420000px;}
.yc1{bottom:573.660000px;}
.y5a{bottom:576.180000px;}
.y16d{bottom:576.900000px;}
.y148{bottom:578.700000px;}
.y17{bottom:579.059768px;}
.y24{bottom:580.859768px;}
.y19b{bottom:580.860000px;}
.y7b{bottom:581.220000px;}
.yee{bottom:584.460000px;}
.y59{bottom:590.940000px;}
.yc0{bottom:591.300000px;}
.y16{bottom:594.539762px;}
.y16c{bottom:594.900000px;}
.y23{bottom:597.419761px;}
.yed{bottom:598.500000px;}
.y7a{bottom:598.860000px;}
.y147{bottom:604.620000px;}
.y58{bottom:606.060000px;}
.ybf{bottom:609.300000px;}
.yeb{bottom:612.540000px;}
.y16b{bottom:612.900000px;}
.y22{bottom:613.979754px;}
.y79{bottom:616.860000px;}
.y57{bottom:620.820000px;}
.ybe{bottom:627.330000px;}
.yea{bottom:629.130000px;}
.y21{bottom:630.539748px;}
.y16a{bottom:630.570000px;}
.y146{bottom:632.730000px;}
.y19a{bottom:634.890000px;}
.y56{bottom:635.610000px;}
.y20{bottom:637.379745px;}
.y15{bottom:640.259744px;}
.y78{bottom:640.650000px;}
.ye9{bottom:642.090000px;}
.ybd{bottom:645.330000px;}
.y169{bottom:648.570000px;}
.y55{bottom:650.730000px;}
.y145{bottom:653.250000px;}
.y199{bottom:658.290000px;}
.y77{bottom:659.370000px;}
.ybc{bottom:662.970000px;}
.y54{bottom:665.490000px;}
.y12{bottom:666.540000px;}
.y168{bottom:666.570000px;}
.y11{bottom:670.139732px;}
.ye8{bottom:670.890000px;}
.y144{bottom:671.250000px;}
.y14{bottom:671.579731px;}
.y76{bottom:678.450000px;}
.y53{bottom:680.250000px;}
.ybb{bottom:680.970000px;}
.y1b1{bottom:682.770000px;}
.y167{bottom:684.570000px;}
.y143{bottom:688.530000px;}
.y10{bottom:689.579724px;}
.ye7{bottom:693.930000px;}
.y52{bottom:695.370000px;}
.y75{bottom:696.450000px;}
.y166{bottom:702.210000px;}
.yba{bottom:703.650000px;}
.y142{bottom:706.530000px;}
.yf{bottom:706.859717px;}
.y51{bottom:710.130000px;}
.ye6{bottom:711.570000px;}
.y74{bottom:714.450000px;}
.y1b0{bottom:715.530000px;}
.y50{bottom:724.890000px;}
.ye{bottom:725.219710px;}
.y141{bottom:725.250000px;}
.ye5{bottom:729.570000px;}
.yb9{bottom:731.370000px;}
.y73{bottom:732.090000px;}
.y140{bottom:732.810000px;}
.y198{bottom:733.530000px;}
.y4f{bottom:739.650000px;}
.yd{bottom:743.759702px;}
.y13d{bottom:744.330000px;}
.ye4{bottom:747.570000px;}
.y13f{bottom:748.290000px;}
.yb8{bottom:749.370000px;}
.y72{bottom:750.090000px;}
.y197{bottom:751.530000px;}
.y4e{bottom:754.815000px;}
.y13e{bottom:758.055000px;}
.yc{bottom:762.119695px;}
.ye3{bottom:765.615000px;}
.yb7{bottom:767.055000px;}
.y71{bottom:768.135000px;}
.y4d{bottom:769.575000px;}
.y13c{bottom:779.295000px;}
.yb{bottom:780.839688px;}
.y4c{bottom:784.335000px;}
.yb6{bottom:785.055000px;}
.y70{bottom:786.135000px;}
.ye2{bottom:786.495000px;}
.y196{bottom:787.215000px;}
.y13b{bottom:797.295000px;}
.y129{bottom:800.175000px;}
.yb5{bottom:803.055000px;}
.ye1{bottom:804.495000px;}
.y195{bottom:805.215000px;}
.y4b{bottom:809.175000px;}
.y6f{bottom:813.495000px;}
.y13a{bottom:814.935000px;}
.y128{bottom:816.015000px;}
.y127{bottom:817.455000px;}
.yb4{bottom:820.695000px;}
.ye0{bottom:822.495000px;}
.y194{bottom:823.215000px;}
.ya{bottom:826.919669px;}
.y139{bottom:832.935000px;}
.y126{bottom:835.455000px;}
.y4a{bottom:837.975000px;}
.yb3{bottom:838.695000px;}
.ydf{bottom:840.135000px;}
.y193{bottom:840.495000px;}
.y138{bottom:850.935000px;}
.y125{bottom:853.095000px;}
.yb2{bottom:856.695000px;}
.y9{bottom:857.879657px;}
.y192{bottom:858.135000px;}
.y49{bottom:859.575000px;}
.yde{bottom:863.535000px;}
.y137{bottom:868.935000px;}
.yb1{bottom:874.695000px;}
.y48{bottom:876.855000px;}
.y124{bottom:879.405000px;}
.y191{bottom:886.245000px;}
.y8{bottom:888.839644px;}
.y136{bottom:889.485000px;}
.ydd{bottom:893.445000px;}
.y47{bottom:895.245000px;}
.y123{bottom:895.965000px;}
.yb0{bottom:897.405000px;}
.y18f{bottom:902.445000px;}
.y18e{bottom:903.885000px;}
.y135{bottom:907.485000px;}
.ydc{bottom:911.085000px;}
.y122{bottom:911.805000px;}
.y46{bottom:913.605000px;}
.y190{bottom:918.285000px;}
.y189{bottom:919.725000px;}
.yaf{bottom:925.125000px;}
.y38{bottom:928.799628px;}
.ydb{bottom:929.445000px;}
.y121{bottom:930.165000px;}
.y3c{bottom:930.419628px;}
.ya2{bottom:932.325000px;}
.y18d{bottom:935.565000px;}
.yae{bottom:942.765000px;}
.y134{bottom:946.365000px;}
.y120{bottom:948.165000px;}
.ya1{bottom:951.045000px;}
.yda{bottom:953.565000px;}
.y3b{bottom:953.819618px;}
.y133{bottom:964.005000px;}
.yad{bottom:965.805000px;}
.y11f{bottom:967.245000px;}
.y132{bottom:973.005000px;}
.y18c{bottom:976.965000px;}
.y3a{bottom:978.119609px;}
.y11e{bottom:985.245000px;}
.yd9{bottom:986.325000px;}
.y131{bottom:986.685000px;}
.yac{bottom:996.765000px;}
.y45{bottom:998.970001px;}
.y12f{bottom:1000.725000px;}
.y11d{bottom:1003.245000px;}
.y39{bottom:1003.859598px;}
.y3d{bottom:1004.219598px;}
.y18b{bottom:1006.890000px;}
.yd8{bottom:1010.850000px;}
.y12e{bottom:1014.810000px;}
.yab{bottom:1021.650000px;}
.y18a{bottom:1024.890000px;}
.y11c{bottom:1028.850000px;}
.yd7{bottom:1029.930000px;}
.y44{bottom:1040.370001px;}
.y12c{bottom:1042.890000px;}
.yaa{bottom:1046.130000px;}
.yd6{bottom:1047.210000px;}
.y4{bottom:1054.259578px;}
.y12b{bottom:1060.530000px;}
.ya9{bottom:1064.130000px;}
.yd5{bottom:1064.850000px;}
.y11b{bottom:1081.770000px;}
.y43{bottom:1081.770001px;}
.ya8{bottom:1082.130000px;}
.yd4{bottom:1082.490000px;}
.y7{bottom:1083.239567px;}
.y3{bottom:1085.399566px;}
.y12a{bottom:1086.090000px;}
.y11a{bottom:1099.410000px;}
.ya7{bottom:1099.770000px;}
.y2{bottom:1102.679559px;}
.y96{bottom:1112.490000px;}
.y1{bottom:1119.959552px;}
.y9a{bottom:1123.722000px;}
.h3c{height:8.479688px;}
.h21{height:10.440000px;}
.h25{height:12.960000px;}
.h28{height:13.320000px;}
.h29{height:13.356000px;}
.h37{height:15.120000px;}
.h1d{height:17.565000px;}
.h7{height:18.720000px;}
.h1b{height:19.767000px;}
.h19{height:21.078000px;}
.h2f{height:29.539688px;}
.h2c{height:29.691563px;}
.h27{height:31.672266px;}
.h3d{height:31.727812px;}
.h22{height:31.890937px;}
.h33{height:32.045625px;}
.h3{height:33.494752px;}
.h14{height:34.419375px;}
.h2a{height:35.332031px;}
.h4{height:36.597642px;}
.ha{height:36.624009px;}
.h8{height:37.494126px;}
.h11{height:39.276562px;}
.h9{height:39.339828px;}
.hb{height:40.501390px;}
.h1{height:41.493499px;}
.h15{height:41.658047px;}
.h3b{height:42.086250px;}
.h38{height:43.410938px;}
.h24{height:43.811719px;}
.h6{height:44.893107px;}
.h36{height:45.950625px;}
.h2{height:45.992794px;}
.h2b{height:46.186875px;}
.h40{height:46.615078px;}
.h32{height:46.629844px;}
.h23{height:46.638281px;}
.h26{height:47.891250px;}
.h2d{height:48.667500px;}
.h3f{height:48.843072px;}
.h34{height:51.710625px;}
.h35{height:53.645625px;}
.h10{height:53.704687px;}
.h17{height:53.910000px;}
.h39{height:54.199687px;}
.h20{height:55.147500px;}
.h1e{height:58.857422px;}
.h18{height:58.886719px;}
.h30{height:59.262938px;}
.hd{height:59.328281px;}
.he{height:59.357813px;}
.h12{height:60.332344px;}
.h13{height:60.952500px;}
.h16{height:62.163910px;}
.h1c{height:64.775391px;}
.h1f{height:65.010937px;}
.h2e{height:65.117812px;}
.h1a{height:70.628906px;}
.h3e{height:70.664062px;}
.hf{height:72.562500px;}
.h5{height:73.195283px;}
.h3a{height:106.877812px;}
.h31{height:118.409813px;}
.hc{height:141.328125px;}
.h0{height:1188.000000px;}
.w7{width:4.320000px;}
.w14{width:9.360000px;}
.w1{width:14.940000px;}
.w6{width:24.480000px;}
.wd{width:45.756000px;}
.w12{width:50.400000px;}
.wb{width:51.516000px;}
.wa{width:58.680000px;}
.w13{width:62.676000px;}
.w11{width:64.080000px;}
.w10{width:65.556000px;}
.w8{width:96.156000px;}
.wf{width:125.676000px;}
.wc{width:132.156000px;}
.w9{width:150.915000px;}
.we{width:225.435000px;}
.w4{width:367.372500px;}
.w3{width:853.200000px;}
.w5{width:907.200000px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x37{left:3.960000px;}
.x47{left:9.000000px;}
.x30{left:10.800000px;}
.xa2{left:14.760000px;}
.x82{left:16.560000px;}
.xa5{left:20.520000px;}
.x35{left:21.600000px;}
.x83{left:23.040000px;}
.x84{left:26.640000px;}
.xcc{left:28.440000px;}
.xa4{left:34.560000px;}
.x9f{left:39.600000px;}
.x85{left:45.000000px;}
.xa3{left:46.080000px;}
.xc7{left:47.160000px;}
.x24{left:54.035986px;}
.x1{left:62.999975px;}
.x2e{left:64.800000px;}
.xa6{left:66.600000px;}
.xc0{left:70.955986px;}
.x13{left:72.179971px;}
.x25{left:73.475986px;}
.xac{left:75.635986px;}
.x12{left:78.119969px;}
.xdb{left:79.235986px;}
.xc{left:81.179968px;}
.xc1{left:82.835986px;}
.xa1{left:84.270000px;}
.x2f{left:86.400000px;}
.xf{left:88.019965px;}
.x15{left:93.239963px;}
.x3c{left:94.715986px;}
.x10{left:96.119962px;}
.x11{left:97.739966px;}
.x38{left:100.475986px;}
.xda{left:103.355986px;}
.x3d{left:108.035986px;}
.x39{left:109.835986px;}
.xbb{left:111.275986px;}
.xad{left:112.355986px;}
.xb0{left:113.795986px;}
.xb5{left:115.595986px;}
.xd4{left:118.115986px;}
.x97{left:119.195986px;}
.x21{left:122.436001px;}
.xb6{left:125.315986px;}
.x98{left:127.475986px;}
.xd5{left:129.275986px;}
.x14{left:132.839947px;}
.x5{left:134.639946px;}
.xb1{left:138.995986px;}
.x99{left:141.875986px;}
.xae{left:144.071986px;}
.xb2{left:145.151986px;}
.x20{left:147.406501px;}
.xaf{left:149.471986px;}
.xb3{left:152.354986px;}
.xd6{left:154.154986px;}
.x5a{left:156.674986px;}
.x9a{left:158.834986px;}
.x88{left:160.634986px;}
.x9b{left:163.874986px;}
.x51{left:166.034986px;}
.xb7{left:169.274986px;}
.x89{left:171.074986px;}
.x86{left:175.035002px;}
.xaa{left:177.915000px;}
.x1a{left:181.439927px;}
.xbd{left:182.954986px;}
.x87{left:184.035002px;}
.x6{left:189.719923px;}
.x52{left:190.874986px;}
.xab{left:192.315000px;}
.x53{left:194.474986px;}
.xd7{left:195.554986px;}
.x3a{left:197.355000px;}
.x5b{left:198.434986px;}
.x33{left:203.475000px;}
.x54{left:204.914986px;}
.xcd{left:208.514986px;}
.x3b{left:211.035000px;}
.x34{left:212.115000px;}
.x8a{left:215.354986px;}
.x16{left:219.239912px;}
.x94{left:220.394986px;}
.x95{left:223.274986px;}
.xce{left:225.434986px;}
.x55{left:228.314986px;}
.x9c{left:232.274986px;}
.x8b{left:234.434986px;}
.x9d{left:239.834986px;}
.xbe{left:241.664986px;}
.xd{left:243.360000px;}
.xbc{left:244.544986px;}
.xd3{left:247.064986px;}
.x5c{left:248.864986px;}
.xbf{left:250.304986px;}
.x56{left:252.104986px;}
.xb4{left:254.984986px;}
.x2{left:257.579897px;}
.x8{left:258.659897px;}
.x8c{left:260.744986px;}
.x8d{left:263.264986px;}
.x19{left:264.419075px;}
.xe{left:266.399893px;}
.x1f{left:267.659893px;}
.x32{left:269.385000px;}
.x57{left:270.464986px;}
.xa7{left:272.624986px;}
.x18{left:274.859902px;}
.x5d{left:276.944986px;}
.x8e{left:279.104986px;}
.x23{left:281.624986px;}
.xa{left:283.132398px;}
.x22{left:286.542001px;}
.x17{left:289.619884px;}
.x8f{left:290.984986px;}
.xa8{left:296.024986px;}
.x5e{left:297.464986px;}
.xcf{left:302.864986px;}
.xb8{left:303.944986px;}
.x90{left:305.744986px;}
.x9{left:309.772376px;}
.xb9{left:312.944986px;}
.xd0{left:314.024986px;}
.x96{left:315.464986px;}
.xd8{left:319.064986px;}
.x5f{left:323.024986px;}
.x91{left:324.824986px;}
.xd9{left:325.904986px;}
.x3{left:330.119868px;}
.xba{left:332.744986px;}
.x58{left:337.829986px;}
.xc2{left:341.789986px;}
.xc3{left:346.469986px;}
.x1c{left:348.479861px;}
.x92{left:353.669986px;}
.x60{left:355.829986px;}
.x93{left:359.069986px;}
.x59{left:373.829986px;}
.x1b{left:378.359849px;}
.x7{left:394.559904px;}
.xc4{left:399.029986px;}
.xc5{left:402.989986px;}
.xb{left:408.779532px;}
.xd1{left:432.869986px;}
.xd2{left:450.899986px;}
.x2b{left:453.419986px;}
.x3e{left:465.299986px;}
.x26{left:468.179986px;}
.x3f{left:472.859986px;}
.x27{left:480.779986px;}
.x29{left:483.299986px;}
.x28{left:488.699986px;}
.x2c{left:495.539986px;}
.x2a{left:498.059986px;}
.x46{left:500.940000px;}
.x2d{left:504.539986px;}
.x61{left:515.699986px;}
.x62{left:533.009986px;}
.x63{left:536.609986px;}
.xa9{left:555.330000px;}
.x64{left:556.409986px;}
.xc6{left:563.609986px;}
.x65{left:569.729986px;}
.x45{left:572.249986px;}
.x78{left:578.369986px;}
.x66{left:583.409986px;}
.x36{left:590.610000px;}
.x42{left:591.690000px;}
.xc8{left:595.290000px;}
.x79{left:596.369986px;}
.x48{left:597.810000px;}
.x67{left:601.769986px;}
.x40{left:605.009986px;}
.x41{left:609.329986px;}
.x43{left:611.130000px;}
.x68{left:615.449986px;}
.x44{left:617.250000px;}
.x1d{left:618.299753px;}
.x69{left:630.614986px;}
.x9e{left:632.414986px;}
.x6a{left:634.574986px;}
.x7a{left:640.694986px;}
.x6b{left:641.774986px;}
.x7b{left:645.014986px;}
.xa0{left:648.255000px;}
.x6c{left:653.294986px;}
.xc9{left:661.575000px;}
.x6d{left:666.974986px;}
.x6e{left:675.974986px;}
.x7c{left:679.574986px;}
.x6f{left:683.174986px;}
.x4a{left:699.734986px;}
.x7d{left:701.174986px;}
.x70{left:704.414986px;}
.x71{left:711.614986px;}
.x4b{left:713.414986px;}
.x4c{left:716.654986px;}
.x4d{left:723.494986px;}
.x7e{left:724.934986px;}
.xca{left:726.405000px;}
.x1e{left:731.339648px;}
.x7f{left:733.604986px;}
.x72{left:736.844986px;}
.x49{left:749.445000px;}
.x4{left:764.639694px;}
.x31{left:769.050000px;}
.xcb{left:777.525000px;}
.x73{left:781.844986px;}
.x74{left:789.044986px;}
.x75{left:792.644986px;}
.x4e{left:812.084986px;}
.x4f{left:825.809986px;}
.x80{left:827.609986px;}
.x50{left:829.049986px;}
.x77{left:836.249986px;}
.x76{left:845.609986px;}
.x81{left:847.409986px;}
@media print{
.vc{vertical-align:-67.946667pt;}
.vd{vertical-align:-61.450667pt;}
.v2{vertical-align:-57.600000pt;}
.vf{vertical-align:-56.320000pt;}
.v1{vertical-align:-53.760000pt;}
.ve{vertical-align:-52.480000pt;}
.v8{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v6{vertical-align:16.640000pt;}
.v9{vertical-align:19.200000pt;}
.va{vertical-align:21.920000pt;}
.v5{vertical-align:24.330667pt;}
.v7{vertical-align:35.850667pt;}
.vb{vertical-align:42.240000pt;}
.ls60{letter-spacing:-1.658667pt;}
.ls56{letter-spacing:-1.365333pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls36{letter-spacing:-1.264000pt;}
.ls58{letter-spacing:-1.008000pt;}
.lsd{letter-spacing:-1.002667pt;}
.ls2b{letter-spacing:-0.864000pt;}
.ls54{letter-spacing:-0.848000pt;}
.ls5a{letter-spacing:-0.837333pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls55{letter-spacing:-0.736000pt;}
.ls34{letter-spacing:-0.698667pt;}
.ls4e{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.570667pt;}
.ls48{letter-spacing:-0.496533pt;}
.ls12{letter-spacing:-0.432533pt;}
.ls62{letter-spacing:-0.431467pt;}
.ls2d{letter-spacing:-0.414933pt;}
.ls39{letter-spacing:-0.376533pt;}
.ls5f{letter-spacing:-0.364267pt;}
.ls38{letter-spacing:-0.322667pt;}
.ls64{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.225067pt;}
.ls13{letter-spacing:-0.221867pt;}
.ls5b{letter-spacing:-0.208533pt;}
.lse{letter-spacing:-0.207467pt;}
.ls33{letter-spacing:-0.140800pt;}
.ls4f{letter-spacing:-0.017920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.ls49{letter-spacing:0.025600pt;}
.ls2{letter-spacing:0.028218pt;}
.ls24{letter-spacing:0.037427pt;}
.ls28{letter-spacing:0.053232pt;}
.ls3{letter-spacing:0.055772pt;}
.ls22{letter-spacing:0.091187pt;}
.ls0{letter-spacing:0.114153pt;}
.ls7{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.188880pt;}
.ls16{letter-spacing:0.211200pt;}
.ls15{letter-spacing:0.222720pt;}
.ls30{letter-spacing:0.222933pt;}
.ls5c{letter-spacing:0.259101pt;}
.ls27{letter-spacing:0.259311pt;}
.ls4b{letter-spacing:0.302933pt;}
.ls11{letter-spacing:0.320000pt;}
.ls53{letter-spacing:0.342933pt;}
.ls4c{letter-spacing:0.348267pt;}
.ls46{letter-spacing:0.350720pt;}
.ls42{letter-spacing:0.365517pt;}
.ls57{letter-spacing:0.391467pt;}
.ls10{letter-spacing:0.414933pt;}
.ls25{letter-spacing:0.419000pt;}
.ls2e{letter-spacing:0.432533pt;}
.ls6{letter-spacing:0.442880pt;}
.ls2f{letter-spacing:0.450667pt;}
.ls50{letter-spacing:0.509333pt;}
.ls40{letter-spacing:0.513501pt;}
.ls26{letter-spacing:0.532480pt;}
.lsb{letter-spacing:0.560000pt;}
.ls4d{letter-spacing:0.608000pt;}
.ls43{letter-spacing:0.615566pt;}
.ls3d{letter-spacing:0.624000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.682171pt;}
.ls52{letter-spacing:0.800000pt;}
.ls61{letter-spacing:0.832000pt;}
.ls2c{letter-spacing:0.864000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls63{letter-spacing:1.072000pt;}
.ls51{letter-spacing:1.168000pt;}
.ls31{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.343118pt;}
.ls5d{letter-spacing:1.369238pt;}
.ls2a{letter-spacing:1.493518pt;}
.ls4a{letter-spacing:1.696000pt;}
.ls32{letter-spacing:1.728000pt;}
.ls3c{letter-spacing:1.930542pt;}
.ls23{letter-spacing:2.415556pt;}
.ls1e{letter-spacing:2.836480pt;}
.ls41{letter-spacing:4.537277pt;}
.ls59{letter-spacing:5.440000pt;}
.ls3f{letter-spacing:5.760000pt;}
.ls1a{letter-spacing:6.623156pt;}
.ls1f{letter-spacing:8.241683pt;}
.ls5e{letter-spacing:9.920000pt;}
.ls45{letter-spacing:12.480000pt;}
.ls19{letter-spacing:14.826667pt;}
.ls44{letter-spacing:16.320000pt;}
.ls9{letter-spacing:19.840000pt;}
.ls3b{letter-spacing:44.480000pt;}
.ls1d{letter-spacing:49.280000pt;}
.ls3e{letter-spacing:55.680000pt;}
.ls18{letter-spacing:98.240000pt;}
.ls1c{letter-spacing:205.370880pt;}
.ls1b{letter-spacing:227.370240pt;}
.ls1{letter-spacing:239.205664pt;}
.ls3a{letter-spacing:248.970240pt;}
.ls21{letter-spacing:261.770240pt;}
.ls47{letter-spacing:616.586667pt;}
.ls14{letter-spacing:630.666667pt;}
.ws2b{word-spacing:-54.269333pt;}
.ws27{word-spacing:-54.108267pt;}
.ws1e{word-spacing:-53.760000pt;}
.ws25{word-spacing:-53.263467pt;}
.ws1d{word-spacing:-34.560000pt;}
.ws2{word-spacing:-28.855760pt;}
.ws2d{word-spacing:-17.788160pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.168000pt;}
.ws26{word-spacing:-15.136000pt;}
.ws1a{word-spacing:-14.720000pt;}
.ws31{word-spacing:-14.304000pt;}
.ws14{word-spacing:-13.890667pt;}
.ws13{word-spacing:-13.872533pt;}
.wsc{word-spacing:-13.854933pt;}
.ws9{word-spacing:-13.457920pt;}
.wsa{word-spacing:-13.440000pt;}
.ws2a{word-spacing:-13.422080pt;}
.ws1{word-spacing:-13.343995pt;}
.ws2c{word-spacing:-13.317760pt;}
.ws0{word-spacing:-13.279995pt;}
.wse{word-spacing:-13.218133pt;}
.ws12{word-spacing:-13.025067pt;}
.wsd{word-spacing:-13.007467pt;}
.wsf{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.720000pt;}
.wsb{word-spacing:-12.608000pt;}
.ws2e{word-spacing:-12.592000pt;}
.ws11{word-spacing:-12.576000pt;}
.ws2f{word-spacing:-12.541227pt;}
.ws20{word-spacing:-12.495573pt;}
.ws21{word-spacing:-12.176000pt;}
.ws22{word-spacing:-12.165120pt;}
.ws7{word-spacing:-12.160000pt;}
.ws19{word-spacing:-12.149760pt;}
.ws23{word-spacing:-11.924693pt;}
.ws24{word-spacing:-11.773227pt;}
.ws35{word-spacing:-11.632000pt;}
.ws1f{word-spacing:-11.466453pt;}
.ws33{word-spacing:-11.392000pt;}
.ws18{word-spacing:-11.200000pt;}
.ws8{word-spacing:-11.157333pt;}
.ws5{word-spacing:-10.880000pt;}
.ws17{word-spacing:-10.782933pt;}
.ws15{word-spacing:-10.560000pt;}
.ws32{word-spacing:-10.491093pt;}
.ws30{word-spacing:-10.351467pt;}
.ws34{word-spacing:-10.128533pt;}
.ws29{word-spacing:-9.920000pt;}
.ws28{word-spacing:-9.296000pt;}
.ws16{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.389120pt;}
.ws1c{word-spacing:-7.810560pt;}
.ws3{word-spacing:0.000000pt;}
._26{margin-left:-7.123259pt;}
._2b{margin-left:-5.991596pt;}
._24{margin-left:-4.948857pt;}
._4{margin-left:-3.998988pt;}
._17{margin-left:-3.014581pt;}
._5{margin-left:-2.109982pt;}
._1{margin-left:-1.009172pt;}
._0{width:1.024671pt;}
._6{width:2.457665pt;}
._15{width:4.233082pt;}
._11{width:5.416558pt;}
._7{width:6.397203pt;}
._b{width:7.361252pt;}
._10{width:8.417086pt;}
._d{width:9.368170pt;}
._c{width:11.129746pt;}
._23{width:12.042240pt;}
._13{width:13.109095pt;}
._e{width:14.441191pt;}
._12{width:15.401045pt;}
._9{width:16.531883pt;}
._a{width:17.503938pt;}
._1a{width:19.032372pt;}
._1d{width:19.932563pt;}
._8{width:21.272850pt;}
._1f{width:22.192968pt;}
._1e{width:23.175357pt;}
._f{width:24.568938pt;}
._25{width:25.560799pt;}
._16{width:26.540370pt;}
._19{width:28.940973pt;}
._18{width:30.121895pt;}
._21{width:31.405951pt;}
._1c{width:33.014844pt;}
._1b{width:34.133564pt;}
._22{width:38.916991pt;}
._28{width:39.952295pt;}
._29{width:40.852317pt;}
._14{width:49.728070pt;}
._2a{width:247.633310pt;}
._3{width:407.848054pt;}
._27{width:506.488501pt;}
._2{width:1191.424547pt;}
._20{width:1389.973333pt;}
.fs12{font-size:7.680000pt;}
.fs11{font-size:32.000000pt;}
.fsf{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs10{font-size:39.680000pt;}
.fse{font-size:42.240000pt;}
.fs2{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs8{font-size:48.640000pt;}
.fsd{font-size:51.200000pt;}
.fs0{font-size:53.119979pt;}
.fsa{font-size:53.333333pt;}
.fs6{font-size:53.760000pt;}
.fsb{font-size:58.666667pt;}
.fs1{font-size:58.879976pt;}
.fsc{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:95.999962pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:1.600000pt;}
.y9c{bottom:1.629333pt;}
.y9f{bottom:2.093333pt;}
.y9b{bottom:2.512000pt;}
.y99{bottom:2.880000pt;}
.y9d{bottom:3.168000pt;}
.y13{bottom:3.199762pt;}
.yec{bottom:3.200000pt;}
.yf5{bottom:3.226667pt;}
.y12d{bottom:3.520000pt;}
.y130{bottom:3.560000pt;}
.ya0{bottom:7.008000pt;}
.y98{bottom:18.853333pt;}
.ya6{bottom:25.632000pt;}
.y9e{bottom:27.586667pt;}
.y10f{bottom:27.872000pt;}
.y116{bottom:28.192000pt;}
.y10e{bottom:29.152000pt;}
.y115{bottom:29.472000pt;}
.y97{bottom:34.826667pt;}
.y114{bottom:48.352000pt;}
.y6{bottom:51.199980pt;}
.y10d{bottom:56.352000pt;}
.y1af{bottom:59.232000pt;}
.y113{bottom:63.712000pt;}
.y188{bottom:66.912000pt;}
.y5{bottom:68.159973pt;}
.y1ae{bottom:71.392000pt;}
.y10c{bottom:72.352000pt;}
.y112{bottom:80.032000pt;}
.y165{bottom:80.352000pt;}
.y187{bottom:82.912000pt;}
.y1ad{bottom:83.232000pt;}
.y95{bottom:85.792000pt;}
.y10b{bottom:88.352000pt;}
.y1ac{bottom:95.392000pt;}
.y164{bottom:96.352000pt;}
.y186{bottom:98.592000pt;}
.y94{bottom:101.792000pt;}
.y111{bottom:102.112000pt;}
.y110{bottom:103.392000pt;}
.y10a{bottom:104.352000pt;}
.y1ab{bottom:107.552000pt;}
.y185{bottom:114.944000pt;}
.y93{bottom:117.504000pt;}
.y1aa{bottom:119.424000pt;}
.ya4{bottom:122.944000pt;}
.y109{bottom:124.864000pt;}
.y117{bottom:125.184000pt;}
.y107{bottom:127.424000pt;}
.y106{bottom:128.704000pt;}
.y1a9{bottom:131.584000pt;}
.y184{bottom:133.184000pt;}
.y92{bottom:133.506667pt;}
.y108{bottom:134.146667pt;}
.y37{bottom:134.239946pt;}
.y163{bottom:134.466667pt;}
.y1a8{bottom:143.426667pt;}
.y36{bottom:146.719941pt;}
.y183{bottom:149.186667pt;}
.y91{bottom:149.506667pt;}
.yd3{bottom:153.666667pt;}
.y162{bottom:153.986667pt;}
.y1a7{bottom:155.266667pt;}
.y35{bottom:158.879936pt;}
.y90{bottom:165.506667pt;}
.y1a6{bottom:167.426667pt;}
.y161{bottom:168.386667pt;}
.y182{bottom:169.346667pt;}
.yd2{bottom:169.666667pt;}
.y105{bottom:171.586667pt;}
.y160{bottom:174.146667pt;}
.y6e{bottom:178.946667pt;}
.y1a5{bottom:179.266667pt;}
.y8f{bottom:181.186667pt;}
.y1f{bottom:183.359927pt;}
.yd1{bottom:185.346667pt;}
.y42{bottom:185.759926pt;}
.y104{bottom:187.586667pt;}
.y15f{bottom:190.146667pt;}
.y181{bottom:194.306667pt;}
.y6d{bottom:194.946667pt;}
.y8e{bottom:197.186667pt;}
.y1a4{bottom:197.744000pt;}
.y41{bottom:199.519920pt;}
.yd0{bottom:201.346667pt;}
.y103{bottom:203.586667pt;}
.y15e{bottom:205.826667pt;}
.y180{bottom:210.306667pt;}
.y6c{bottom:210.946667pt;}
.y8d{bottom:213.186667pt;}
.y40{bottom:213.279915pt;}
.ycf{bottom:217.346667pt;}
.y102{bottom:219.586667pt;}
.y15d{bottom:221.826667pt;}
.y17f{bottom:226.013333pt;}
.y6b{bottom:226.973333pt;}
.y3f{bottom:227.199909pt;}
.y8c{bottom:228.893333pt;}
.yce{bottom:233.053333pt;}
.y101{bottom:235.293333pt;}
.y15c{bottom:237.853333pt;}
.y3e{bottom:241.599903pt;}
.y17e{bottom:242.013333pt;}
.y6a{bottom:242.653333pt;}
.y1a3{bottom:242.973333pt;}
.y8b{bottom:244.893333pt;}
.ycd{bottom:249.053333pt;}
.y15b{bottom:253.853333pt;}
.y100{bottom:256.413333pt;}
.y17d{bottom:258.013333pt;}
.y69{bottom:258.653333pt;}
.y8a{bottom:260.893333pt;}
.ycc{bottom:269.213333pt;}
.y15a{bottom:269.533333pt;}
.y34{bottom:273.439891pt;}
.y17c{bottom:273.693333pt;}
.y68{bottom:274.653333pt;}
.y89{bottom:282.013333pt;}
.y159{bottom:284.253333pt;}
.y158{bottom:285.533333pt;}
.y119{bottom:289.693325pt;}
.y17b{bottom:289.693333pt;}
.y67{bottom:290.333333pt;}
.y1a2{bottom:290.653333pt;}
.yff{bottom:295.773333pt;}
.y33{bottom:295.999882pt;}
.y88{bottom:297.693333pt;}
.y1e{bottom:299.199880pt;}
.y157{bottom:301.533333pt;}
.y17a{bottom:305.693333pt;}
.y66{bottom:306.333333pt;}
.y32{bottom:310.719876pt;}
.yfe{bottom:312.413333pt;}
.y87{bottom:313.693333pt;}
.y156{bottom:316.253333pt;}
.y118{bottom:316.893325pt;}
.y155{bottom:317.533333pt;}
.y65{bottom:322.333333pt;}
.y179{bottom:324.253333pt;}
.y31{bottom:325.439870pt;}
.yfd{bottom:329.053333pt;}
.y86{bottom:329.693333pt;}
.yfc{bottom:330.333333pt;}
.y154{bottom:333.533333pt;}
.ycb{bottom:337.733333pt;}
.y64{bottom:338.373333pt;}
.y30{bottom:339.999864pt;}
.y85{bottom:345.413333pt;}
.yfb{bottom:346.693333pt;}
.y153{bottom:349.253333pt;}
.yca{bottom:353.733333pt;}
.y1a1{bottom:354.053333pt;}
.y2f{bottom:354.719858pt;}
.y178{bottom:358.533333pt;}
.ya3{bottom:360.133333pt;}
.y84{bottom:361.413333pt;}
.yfa{bottom:362.373333pt;}
.y152{bottom:363.973333pt;}
.y151{bottom:365.253333pt;}
.y2e{bottom:369.439852pt;}
.yc9{bottom:369.733333pt;}
.y1a0{bottom:370.373333pt;}
.y177{bottom:371.333333pt;}
.y83{bottom:377.413333pt;}
.yf9{bottom:377.733333pt;}
.y150{bottom:379.973333pt;}
.y176{bottom:380.613333pt;}
.y14f{bottom:381.253333pt;}
.y2d{bottom:384.159846pt;}
.y1d{bottom:384.639846pt;}
.yc8{bottom:385.413333pt;}
.y175{bottom:388.293333pt;}
.y19f{bottom:389.253333pt;}
.y63{bottom:393.093333pt;}
.yf8{bottom:393.413333pt;}
.y14e{bottom:397.253333pt;}
.y2c{bottom:398.879840pt;}
.y174{bottom:400.773333pt;}
.yc7{bottom:401.413333pt;}
.y82{bottom:401.733333pt;}
.y62{bottom:406.213333pt;}
.y19e{bottom:410.053333pt;}
.y173{bottom:413.253333pt;}
.y14d{bottom:413.573333pt;}
.y2b{bottom:413.599835pt;}
.y1c{bottom:415.519834pt;}
.y81{bottom:417.093333pt;}
.yc6{bottom:417.413333pt;}
.y61{bottom:419.653333pt;}
.yf7{bottom:423.173333pt;}
.y172{bottom:425.733333pt;}
.y2a{bottom:428.159829pt;}
.y1b{bottom:429.119828pt;}
.y60{bottom:432.773333pt;}
.yc5{bottom:433.093333pt;}
.yf6{bottom:436.613333pt;}
.y80{bottom:436.933333pt;}
.y171{bottom:440.453333pt;}
.y1a{bottom:442.559823pt;}
.y29{bottom:442.879823pt;}
.yf4{bottom:444.613333pt;}
.y5f{bottom:445.920000pt;}
.y14c{bottom:448.160000pt;}
.yc4{bottom:449.120000pt;}
.y170{bottom:452.320000pt;}
.y19d{bottom:452.640000pt;}
.y7f{bottom:452.960000pt;}
.y19{bottom:455.199818pt;}
.yf3{bottom:457.120000pt;}
.y28{bottom:457.599817pt;}
.y5e{bottom:459.360000pt;}
.yc3{bottom:465.120000pt;}
.y14b{bottom:466.720000pt;}
.y7e{bottom:468.640000pt;}
.yf2{bottom:469.600000pt;}
.y27{bottom:472.319811pt;}
.y5d{bottom:472.480000pt;}
.y16f{bottom:477.600000pt;}
.yf1{bottom:482.080000pt;}
.y14a{bottom:482.720000pt;}
.y7d{bottom:484.640000pt;}
.y18{bottom:484.959806pt;}
.yc2{bottom:485.280000pt;}
.y5c{bottom:485.600000pt;}
.y26{bottom:487.039805pt;}
.yf0{bottom:494.560000pt;}
.y16e{bottom:497.120000pt;}
.y149{bottom:498.400000pt;}
.y5b{bottom:499.040000pt;}
.y19c{bottom:500.320000pt;}
.y7c{bottom:500.640000pt;}
.y25{bottom:501.759799pt;}
.yef{bottom:507.040000pt;}
.yc1{bottom:509.920000pt;}
.y5a{bottom:512.160000pt;}
.y16d{bottom:512.800000pt;}
.y148{bottom:514.400000pt;}
.y17{bottom:514.719794pt;}
.y24{bottom:516.319793pt;}
.y19b{bottom:516.320000pt;}
.y7b{bottom:516.640000pt;}
.yee{bottom:519.520000pt;}
.y59{bottom:525.280000pt;}
.yc0{bottom:525.600000pt;}
.y16{bottom:528.479789pt;}
.y16c{bottom:528.800000pt;}
.y23{bottom:531.039788pt;}
.yed{bottom:532.000000pt;}
.y7a{bottom:532.320000pt;}
.y147{bottom:537.440000pt;}
.y58{bottom:538.720000pt;}
.ybf{bottom:541.600000pt;}
.yeb{bottom:544.480000pt;}
.y16b{bottom:544.800000pt;}
.y22{bottom:545.759782pt;}
.y79{bottom:548.320000pt;}
.y57{bottom:551.840000pt;}
.ybe{bottom:557.626667pt;}
.yea{bottom:559.226667pt;}
.y21{bottom:560.479776pt;}
.y16a{bottom:560.506667pt;}
.y146{bottom:562.426667pt;}
.y19a{bottom:564.346667pt;}
.y56{bottom:564.986667pt;}
.y20{bottom:566.559773pt;}
.y15{bottom:569.119772pt;}
.y78{bottom:569.466667pt;}
.ye9{bottom:570.746667pt;}
.ybd{bottom:573.626667pt;}
.y169{bottom:576.506667pt;}
.y55{bottom:578.426667pt;}
.y145{bottom:580.666667pt;}
.y199{bottom:585.146667pt;}
.y77{bottom:586.106667pt;}
.ybc{bottom:589.306667pt;}
.y54{bottom:591.546667pt;}
.y12{bottom:592.480000pt;}
.y168{bottom:592.506667pt;}
.y11{bottom:595.679762pt;}
.ye8{bottom:596.346667pt;}
.y144{bottom:596.666667pt;}
.y14{bottom:596.959761pt;}
.y76{bottom:603.066667pt;}
.y53{bottom:604.666667pt;}
.ybb{bottom:605.306667pt;}
.y1b1{bottom:606.906667pt;}
.y167{bottom:608.506667pt;}
.y143{bottom:612.026667pt;}
.y10{bottom:612.959755pt;}
.ye7{bottom:616.826667pt;}
.y52{bottom:618.106667pt;}
.y75{bottom:619.066667pt;}
.y166{bottom:624.186667pt;}
.yba{bottom:625.466667pt;}
.y142{bottom:628.026667pt;}
.yf{bottom:628.319749pt;}
.y51{bottom:631.226667pt;}
.ye6{bottom:632.506667pt;}
.y74{bottom:635.066667pt;}
.y1b0{bottom:636.026667pt;}
.y50{bottom:644.346667pt;}
.ye{bottom:644.639742pt;}
.y141{bottom:644.666667pt;}
.ye5{bottom:648.506667pt;}
.yb9{bottom:650.106667pt;}
.y73{bottom:650.746667pt;}
.y140{bottom:651.386667pt;}
.y198{bottom:652.026667pt;}
.y4f{bottom:657.466667pt;}
.yd{bottom:661.119736pt;}
.y13d{bottom:661.626667pt;}
.ye4{bottom:664.506667pt;}
.y13f{bottom:665.146667pt;}
.yb8{bottom:666.106667pt;}
.y72{bottom:666.746667pt;}
.y197{bottom:668.026667pt;}
.y4e{bottom:670.946667pt;}
.y13e{bottom:673.826667pt;}
.yc{bottom:677.439729pt;}
.ye3{bottom:680.546667pt;}
.yb7{bottom:681.826667pt;}
.y71{bottom:682.786667pt;}
.y4d{bottom:684.066667pt;}
.y13c{bottom:692.706667pt;}
.yb{bottom:694.079722pt;}
.y4c{bottom:697.186667pt;}
.yb6{bottom:697.826667pt;}
.y70{bottom:698.786667pt;}
.ye2{bottom:699.106667pt;}
.y196{bottom:699.746667pt;}
.y13b{bottom:708.706667pt;}
.y129{bottom:711.266667pt;}
.yb5{bottom:713.826667pt;}
.ye1{bottom:715.106667pt;}
.y195{bottom:715.746667pt;}
.y4b{bottom:719.266667pt;}
.y6f{bottom:723.106667pt;}
.y13a{bottom:724.386667pt;}
.y128{bottom:725.346667pt;}
.y127{bottom:726.626667pt;}
.yb4{bottom:729.506667pt;}
.ye0{bottom:731.106667pt;}
.y194{bottom:731.746667pt;}
.ya{bottom:735.039706pt;}
.y139{bottom:740.386667pt;}
.y126{bottom:742.626667pt;}
.y4a{bottom:744.866667pt;}
.yb3{bottom:745.506667pt;}
.ydf{bottom:746.786667pt;}
.y193{bottom:747.106667pt;}
.y138{bottom:756.386667pt;}
.y125{bottom:758.306667pt;}
.yb2{bottom:761.506667pt;}
.y9{bottom:762.559695pt;}
.y192{bottom:762.786667pt;}
.y49{bottom:764.066667pt;}
.yde{bottom:767.586667pt;}
.y137{bottom:772.386667pt;}
.yb1{bottom:777.506667pt;}
.y48{bottom:779.426667pt;}
.y124{bottom:781.693333pt;}
.y191{bottom:787.773333pt;}
.y8{bottom:790.079684pt;}
.y136{bottom:790.653333pt;}
.ydd{bottom:794.173333pt;}
.y47{bottom:795.773333pt;}
.y123{bottom:796.413333pt;}
.yb0{bottom:797.693333pt;}
.y18f{bottom:802.173333pt;}
.y18e{bottom:803.453333pt;}
.y135{bottom:806.653333pt;}
.ydc{bottom:809.853333pt;}
.y122{bottom:810.493333pt;}
.y46{bottom:812.093333pt;}
.y190{bottom:816.253333pt;}
.y189{bottom:817.533333pt;}
.yaf{bottom:822.333333pt;}
.y38{bottom:825.599670pt;}
.ydb{bottom:826.173333pt;}
.y121{bottom:826.813333pt;}
.y3c{bottom:827.039669pt;}
.ya2{bottom:828.733333pt;}
.y18d{bottom:831.613333pt;}
.yae{bottom:838.013333pt;}
.y134{bottom:841.213333pt;}
.y120{bottom:842.813333pt;}
.ya1{bottom:845.373333pt;}
.yda{bottom:847.613333pt;}
.y3b{bottom:847.839661pt;}
.y133{bottom:856.893333pt;}
.yad{bottom:858.493333pt;}
.y11f{bottom:859.773333pt;}
.y132{bottom:864.893333pt;}
.y18c{bottom:868.413333pt;}
.y3a{bottom:869.439652pt;}
.y11e{bottom:875.773333pt;}
.yd9{bottom:876.733333pt;}
.y131{bottom:877.053333pt;}
.yac{bottom:886.013333pt;}
.y45{bottom:887.973335pt;}
.y12f{bottom:889.533333pt;}
.y11d{bottom:891.773333pt;}
.y39{bottom:892.319643pt;}
.y3d{bottom:892.639643pt;}
.y18b{bottom:895.013333pt;}
.yd8{bottom:898.533333pt;}
.y12e{bottom:902.053333pt;}
.yab{bottom:908.133333pt;}
.y18a{bottom:911.013333pt;}
.y11c{bottom:914.533333pt;}
.yd7{bottom:915.493333pt;}
.y44{bottom:924.773335pt;}
.y12c{bottom:927.013333pt;}
.yaa{bottom:929.893333pt;}
.yd6{bottom:930.853333pt;}
.y4{bottom:937.119625pt;}
.y12b{bottom:942.693333pt;}
.ya9{bottom:945.893333pt;}
.yd5{bottom:946.533333pt;}
.y11b{bottom:961.573333pt;}
.y43{bottom:961.573335pt;}
.ya8{bottom:961.893333pt;}
.yd4{bottom:962.213333pt;}
.y7{bottom:962.879615pt;}
.y3{bottom:964.799614pt;}
.y12a{bottom:965.413333pt;}
.y11a{bottom:977.253333pt;}
.ya7{bottom:977.573333pt;}
.y2{bottom:980.159608pt;}
.y96{bottom:988.880000pt;}
.y1{bottom:995.519602pt;}
.y9a{bottom:998.864000pt;}
.h3c{height:7.537500pt;}
.h21{height:9.280000pt;}
.h25{height:11.520000pt;}
.h28{height:11.840000pt;}
.h29{height:11.872000pt;}
.h37{height:13.440000pt;}
.h1d{height:15.613333pt;}
.h7{height:16.640000pt;}
.h1b{height:17.570667pt;}
.h19{height:18.736000pt;}
.h2f{height:26.257500pt;}
.h2c{height:26.392500pt;}
.h27{height:28.153125pt;}
.h3d{height:28.202500pt;}
.h22{height:28.347500pt;}
.h33{height:28.485000pt;}
.h3{height:29.773113pt;}
.h14{height:30.595000pt;}
.h2a{height:31.406250pt;}
.h4{height:32.531237pt;}
.ha{height:32.554674pt;}
.h8{height:33.328112pt;}
.h11{height:34.912500pt;}
.h9{height:34.968736pt;}
.hb{height:36.001236pt;}
.h1{height:36.883110pt;}
.h15{height:37.029375pt;}
.h3b{height:37.410000pt;}
.h38{height:38.587500pt;}
.h24{height:38.943750pt;}
.h6{height:39.904984pt;}
.h36{height:40.845000pt;}
.h2{height:40.882484pt;}
.h2b{height:41.055000pt;}
.h40{height:41.435625pt;}
.h32{height:41.448750pt;}
.h23{height:41.456250pt;}
.h26{height:42.570000pt;}
.h2d{height:43.260000pt;}
.h3f{height:43.416064pt;}
.h34{height:45.965000pt;}
.h35{height:47.685000pt;}
.h10{height:47.737500pt;}
.h17{height:47.920000pt;}
.h39{height:48.177500pt;}
.h20{height:49.020000pt;}
.h1e{height:52.317708pt;}
.h18{height:52.343750pt;}
.h30{height:52.678167pt;}
.hd{height:52.736250pt;}
.he{height:52.762500pt;}
.h12{height:53.628750pt;}
.h13{height:54.180000pt;}
.h16{height:55.256809pt;}
.h1c{height:57.578125pt;}
.h1f{height:57.787500pt;}
.h2e{height:57.882500pt;}
.h1a{height:62.781250pt;}
.h3e{height:62.812500pt;}
.hf{height:64.500000pt;}
.h5{height:65.062474pt;}
.h3a{height:95.002500pt;}
.h31{height:105.253167pt;}
.hc{height:125.625000pt;}
.h0{height:1056.000000pt;}
.w7{width:3.840000pt;}
.w14{width:8.320000pt;}
.w1{width:13.280000pt;}
.w6{width:21.760000pt;}
.wd{width:40.672000pt;}
.w12{width:44.800000pt;}
.wb{width:45.792000pt;}
.wa{width:52.160000pt;}
.w13{width:55.712000pt;}
.w11{width:56.960000pt;}
.w10{width:58.272000pt;}
.w8{width:85.472000pt;}
.wf{width:111.712000pt;}
.wc{width:117.472000pt;}
.w9{width:134.146667pt;}
.we{width:200.386667pt;}
.w4{width:326.553333pt;}
.w3{width:758.400000pt;}
.w5{width:806.400000pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x37{left:3.520000pt;}
.x47{left:8.000000pt;}
.x30{left:9.600000pt;}
.xa2{left:13.120000pt;}
.x82{left:14.720000pt;}
.xa5{left:18.240000pt;}
.x35{left:19.200000pt;}
.x83{left:20.480000pt;}
.x84{left:23.680000pt;}
.xcc{left:25.280000pt;}
.xa4{left:30.720000pt;}
.x9f{left:35.200000pt;}
.x85{left:40.000000pt;}
.xa3{left:40.960000pt;}
.xc7{left:41.920000pt;}
.x24{left:48.031988pt;}
.x1{left:55.999978pt;}
.x2e{left:57.600000pt;}
.xa6{left:59.200000pt;}
.xc0{left:63.071988pt;}
.x13{left:64.159974pt;}
.x25{left:65.311988pt;}
.xac{left:67.231988pt;}
.x12{left:69.439972pt;}
.xdb{left:70.431988pt;}
.xc{left:72.159971pt;}
.xc1{left:73.631988pt;}
.xa1{left:74.906667pt;}
.x2f{left:76.800000pt;}
.xf{left:78.239969pt;}
.x15{left:82.879967pt;}
.x3c{left:84.191988pt;}
.x10{left:85.439966pt;}
.x11{left:86.879970pt;}
.x38{left:89.311988pt;}
.xda{left:91.871988pt;}
.x3d{left:96.031988pt;}
.x39{left:97.631988pt;}
.xbb{left:98.911988pt;}
.xad{left:99.871988pt;}
.xb0{left:101.151988pt;}
.xb5{left:102.751988pt;}
.xd4{left:104.991988pt;}
.x97{left:105.951988pt;}
.x21{left:108.832001pt;}
.xb6{left:111.391988pt;}
.x98{left:113.311988pt;}
.xd5{left:114.911988pt;}
.x14{left:118.079953pt;}
.x5{left:119.679952pt;}
.xb1{left:123.551988pt;}
.x99{left:126.111988pt;}
.xae{left:128.063988pt;}
.xb2{left:129.023988pt;}
.x20{left:131.028001pt;}
.xaf{left:132.863988pt;}
.xb3{left:135.426655pt;}
.xd6{left:137.026655pt;}
.x5a{left:139.266655pt;}
.x9a{left:141.186655pt;}
.x88{left:142.786655pt;}
.x9b{left:145.666655pt;}
.x51{left:147.586655pt;}
.xb7{left:150.466655pt;}
.x89{left:152.066655pt;}
.x86{left:155.586668pt;}
.xaa{left:158.146667pt;}
.x1a{left:161.279935pt;}
.xbd{left:162.626655pt;}
.x87{left:163.586668pt;}
.x6{left:168.639931pt;}
.x52{left:169.666655pt;}
.xab{left:170.946667pt;}
.x53{left:172.866655pt;}
.xd7{left:173.826655pt;}
.x3a{left:175.426667pt;}
.x5b{left:176.386655pt;}
.x33{left:180.866667pt;}
.x54{left:182.146655pt;}
.xcd{left:185.346655pt;}
.x3b{left:187.586667pt;}
.x34{left:188.546667pt;}
.x8a{left:191.426655pt;}
.x16{left:194.879922pt;}
.x94{left:195.906655pt;}
.x95{left:198.466655pt;}
.xce{left:200.386655pt;}
.x55{left:202.946655pt;}
.x9c{left:206.466655pt;}
.x8b{left:208.386655pt;}
.x9d{left:213.186655pt;}
.xbe{left:214.813321pt;}
.xd{left:216.320000pt;}
.xbc{left:217.373321pt;}
.xd3{left:219.613321pt;}
.x5c{left:221.213321pt;}
.xbf{left:222.493321pt;}
.x56{left:224.093321pt;}
.xb4{left:226.653321pt;}
.x2{left:228.959908pt;}
.x8{left:229.919908pt;}
.x8c{left:231.773321pt;}
.x8d{left:234.013321pt;}
.x19{left:235.039178pt;}
.xe{left:236.799905pt;}
.x1f{left:237.919905pt;}
.x32{left:239.453333pt;}
.x57{left:240.413321pt;}
.xa7{left:242.333321pt;}
.x18{left:244.319913pt;}
.x5d{left:246.173321pt;}
.x8e{left:248.093321pt;}
.x23{left:250.333321pt;}
.xa{left:251.673243pt;}
.x22{left:254.704001pt;}
.x17{left:257.439897pt;}
.x8f{left:258.653321pt;}
.xa8{left:263.133321pt;}
.x5e{left:264.413321pt;}
.xcf{left:269.213321pt;}
.xb8{left:270.173321pt;}
.x90{left:271.773321pt;}
.x9{left:275.353223pt;}
.xb9{left:278.173321pt;}
.xd0{left:279.133321pt;}
.x96{left:280.413321pt;}
.xd8{left:283.613321pt;}
.x5f{left:287.133321pt;}
.x91{left:288.733321pt;}
.xd9{left:289.693321pt;}
.x3{left:293.439883pt;}
.xba{left:295.773321pt;}
.x58{left:300.293321pt;}
.xc2{left:303.813321pt;}
.xc3{left:307.973321pt;}
.x1c{left:309.759876pt;}
.x92{left:314.373321pt;}
.x60{left:316.293321pt;}
.x93{left:319.173321pt;}
.x59{left:332.293321pt;}
.x1b{left:336.319865pt;}
.x7{left:350.719915pt;}
.xc4{left:354.693321pt;}
.xc5{left:358.213321pt;}
.xb{left:363.359584pt;}
.xd1{left:384.773321pt;}
.xd2{left:400.799988pt;}
.x2b{left:403.039988pt;}
.x3e{left:413.599988pt;}
.x26{left:416.159988pt;}
.x3f{left:420.319988pt;}
.x27{left:427.359988pt;}
.x29{left:429.599988pt;}
.x28{left:434.399988pt;}
.x2c{left:440.479988pt;}
.x2a{left:442.719988pt;}
.x46{left:445.280000pt;}
.x2d{left:448.479988pt;}
.x61{left:458.399988pt;}
.x62{left:473.786655pt;}
.x63{left:476.986655pt;}
.xa9{left:493.626667pt;}
.x64{left:494.586655pt;}
.xc6{left:500.986655pt;}
.x65{left:506.426655pt;}
.x45{left:508.666655pt;}
.x78{left:514.106655pt;}
.x66{left:518.586655pt;}
.x36{left:524.986667pt;}
.x42{left:525.946667pt;}
.xc8{left:529.146667pt;}
.x79{left:530.106655pt;}
.x48{left:531.386667pt;}
.x67{left:534.906655pt;}
.x40{left:537.786655pt;}
.x41{left:541.626655pt;}
.x43{left:543.226667pt;}
.x68{left:547.066655pt;}
.x44{left:548.666667pt;}
.x1d{left:549.599780pt;}
.x69{left:560.546655pt;}
.x9e{left:562.146655pt;}
.x6a{left:564.066655pt;}
.x7a{left:569.506655pt;}
.x6b{left:570.466655pt;}
.x7b{left:573.346655pt;}
.xa0{left:576.226667pt;}
.x6c{left:580.706655pt;}
.xc9{left:588.066667pt;}
.x6d{left:592.866655pt;}
.x6e{left:600.866655pt;}
.x7c{left:604.066655pt;}
.x6f{left:607.266655pt;}
.x4a{left:621.986655pt;}
.x7d{left:623.266655pt;}
.x70{left:626.146655pt;}
.x71{left:632.546655pt;}
.x4b{left:634.146655pt;}
.x4c{left:637.026655pt;}
.x4d{left:643.106655pt;}
.x7e{left:644.386655pt;}
.xca{left:645.693333pt;}
.x1e{left:650.079687pt;}
.x7f{left:652.093321pt;}
.x72{left:654.973321pt;}
.x49{left:666.173333pt;}
.x4{left:679.679728pt;}
.x31{left:683.600000pt;}
.xcb{left:691.133333pt;}
.x73{left:694.973321pt;}
.x74{left:701.373321pt;}
.x75{left:704.573321pt;}
.x4e{left:721.853321pt;}
.x4f{left:734.053321pt;}
.x80{left:735.653321pt;}
.x50{left:736.933321pt;}
.x77{left:743.333321pt;}
.x76{left:751.653321pt;}
.x81{left:753.253321pt;}
}




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