
    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_9451afe6722300f46c08440e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.734375;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_b718188d0d58fae9244d191b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ca51426d37688dc88069490d.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_79f208ba2d3d80ed2590e122.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4a78c5406965c102e8d50fc0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e603d4cde1bfeaa87dfdd75e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6a2bcccbe3f7c9f3d7177a3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_8073e9c637347666f341452e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_b7d1c84b6419c12becac1829.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ecc99cd783831757fe665c9e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_17357505e51f9d84e4ba1286.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_543beb0a46cdcb75d4adb33c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.120117;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_90cd2099966b5cb1f61f2539.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_92756c0ef26d481ad2340944.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_561d927f59e2624f0b20f31f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.364746;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_3794043e127b8e43bb9e1654.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b766528a83ebdc6320e91428.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.364746;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_ed9e0d78b6f674ac1249e9bc.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_ab13cb0832ba56eb82f3d853.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_83426021cba956ad7206556d.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m33{transform:matrix(0.229018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229018,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.229023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229023,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.233690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233690,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.238518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238518,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2b{transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257522,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257530,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.258667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258667,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.259447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259447,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.261357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261357,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.261807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261807,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.261810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261810,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.261922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261922,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.261927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261927,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262613,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.263215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263215,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.263217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263217,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.263503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263503,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.263710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263710,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.263992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263992,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.264008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264008,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.268813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268813,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.271222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271222,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.274515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274515,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.274518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274518,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.275115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275115,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.275122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275122,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.275350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275350,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.276593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276593,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.278147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278147,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.278150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278150,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278780,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279847,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.281013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281013,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.281158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281158,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.281732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281732,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.281735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281735,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.281738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281738,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.283205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283205,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283243,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.283645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283645,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.283647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283647,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285305,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285790,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.287093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287093,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.287108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287108,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.287563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287563,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.287573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287573,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.287680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287680,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.287693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287693,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.289407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289407,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.289428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289428,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.289982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289982,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.289997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289997,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.290130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290130,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.290138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290138,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.290150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290150,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293422,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296600,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.297013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297013,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.300322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300322,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.302560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302560,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.306875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306875,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309640,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.313400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313400,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.313902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313902,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.314038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314038,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.315920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315920,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.316555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316555,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316710,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.000000px;}
.v1{vertical-align:33.120000px;}
.v5{vertical-align:39.600000px;}
.v7{vertical-align:54.720000px;}
.v3{vertical-align:80.640000px;}
.ls5{letter-spacing:-5.280000px;}
.ls4{letter-spacing:-5.274000px;}
.ls3{letter-spacing:-4.356000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001062px;}
.ls0{letter-spacing:0.002353px;}
.ls28{letter-spacing:0.019552px;}
.ls26{letter-spacing:0.019612px;}
.ls15{letter-spacing:0.021193px;}
.ls8{letter-spacing:0.021238px;}
.lsc{letter-spacing:0.021253px;}
.lse{letter-spacing:0.155901px;}
.ls1b{letter-spacing:0.165973px;}
.ls1a{letter-spacing:0.166033px;}
.ls1f{letter-spacing:0.166040px;}
.ls19{letter-spacing:0.166127px;}
.ls1c{letter-spacing:0.166215px;}
.ls14{letter-spacing:0.244538px;}
.ls25{letter-spacing:0.311803px;}
.ls7{letter-spacing:0.451127px;}
.ls20{letter-spacing:0.607029px;}
.ls18{letter-spacing:0.754074px;}
.ls22{letter-spacing:2.312654px;}
.ls24{letter-spacing:2.892326px;}
.ls12{letter-spacing:4.377183px;}
.ls16{letter-spacing:4.977057px;}
.lsd{letter-spacing:10.232935px;}
.lsa{letter-spacing:15.676921px;}
.lsb{letter-spacing:15.676978px;}
.ls11{letter-spacing:15.775528px;}
.ls17{letter-spacing:19.982910px;}
.ls9{letter-spacing:20.235614px;}
.ls23{letter-spacing:20.292680px;}
.ls13{letter-spacing:25.191528px;}
.ls21{letter-spacing:32.349741px;}
.lsf{letter-spacing:34.015819px;}
.ls27{letter-spacing:51.305960px;}
.ls29{letter-spacing:51.306020px;}
.ls10{letter-spacing:60.871126px;}
.ls6{letter-spacing:74.946000px;}
.ls1e{letter-spacing:176.673943px;}
.ls1d{letter-spacing:176.674464px;}
.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;}
}
.ws14{word-spacing:-55.944000px;}
.ws1d{word-spacing:-53.719294px;}
.ws1a{word-spacing:-52.875900px;}
.ws16{word-spacing:-52.436311px;}
.ws1f{word-spacing:-49.896900px;}
.ws26{word-spacing:-36.022127px;}
.ws2{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.625300px;}
.ws1c{word-spacing:-17.625293px;}
.ws1e{word-spacing:-17.284200px;}
.ws15{word-spacing:-16.931400px;}
.ws21{word-spacing:-16.908150px;}
.ws17{word-spacing:-16.871400px;}
.ws24{word-spacing:-16.858050px;}
.ws19{word-spacing:-16.218300px;}
.ws20{word-spacing:-16.054344px;}
.ws2b{word-spacing:-15.611400px;}
.ws27{word-spacing:-15.605100px;}
.ws22{word-spacing:-15.339450px;}
.ws0{word-spacing:-15.000000px;}
.ws23{word-spacing:-14.858454px;}
.ws1{word-spacing:-12.060000px;}
.ws29{word-spacing:-11.240100px;}
.ws18{word-spacing:-10.799280px;}
.ws25{word-spacing:-10.690376px;}
.ws2a{word-spacing:-10.395000px;}
.ws28{word-spacing:-10.390860px;}
.wsb{word-spacing:-4.308000px;}
.wsf{word-spacing:-1.416000px;}
.ws11{word-spacing:-0.696000px;}
.ws10{word-spacing:-0.312000px;}
.ws6{word-spacing:-0.270000px;}
.ws4{word-spacing:-0.204000px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:0.090000px;}
.wsd{word-spacing:0.156000px;}
.ws7{word-spacing:0.240000px;}
.ws5{word-spacing:0.312000px;}
.wsc{word-spacing:0.372000px;}
.ws12{word-spacing:0.534000px;}
.ws9{word-spacing:12.972000px;}
.ws8{word-spacing:16.572000px;}
.wsa{word-spacing:17.292000px;}
.ws13{word-spacing:17.448000px;}
._4a{margin-left:-13.913489px;}
._43{margin-left:-9.478944px;}
._5{margin-left:-8.289951px;}
._42{margin-left:-7.258861px;}
._f{margin-left:-6.035025px;}
._3{margin-left:-4.814326px;}
._6{margin-left:-3.070998px;}
._4{margin-left:-1.503660px;}
._2{width:1.426665px;}
._0{width:2.567160px;}
._9{width:3.672288px;}
._a{width:5.030424px;}
._b{width:6.196824px;}
._d{width:7.224984px;}
._11{width:8.939410px;}
._e{width:10.284048px;}
._c{width:11.427840px;}
._7{width:12.703536px;}
._8{width:13.934376px;}
._1b{width:14.993625px;}
._1{width:16.007928px;}
._10{width:19.058184px;}
._12{width:20.767408px;}
._18{width:22.247918px;}
._15{width:23.692504px;}
._17{width:24.908674px;}
._16{width:26.887095px;}
._14{width:28.000848px;}
._13{width:29.441712px;}
._19{width:30.684445px;}
._1a{width:31.786537px;}
._35{width:32.789910px;}
._4d{width:33.891751px;}
._41{width:35.056341px;}
._4e{width:36.230583px;}
._40{width:37.245870px;}
._3f{width:38.256972px;}
._33{width:39.644465px;}
._32{width:40.819727px;}
._4c{width:41.972091px;}
._4b{width:43.154837px;}
._46{width:44.355305px;}
._28{width:45.711488px;}
._29{width:46.807827px;}
._44{width:48.473942px;}
._45{width:49.583200px;}
._2d{width:65.794931px;}
._34{width:67.415281px;}
._2f{width:68.442186px;}
._48{width:87.684475px;}
._47{width:88.860061px;}
._2a{width:91.701662px;}
._5e{width:96.709118px;}
._52{width:103.924646px;}
._53{width:105.192833px;}
._54{width:106.583646px;}
._5d{width:112.775328px;}
._49{width:116.239753px;}
._5b{width:118.178718px;}
._30{width:140.486116px;}
._2e{width:141.550695px;}
._56{width:150.623948px;}
._59{width:154.157459px;}
._58{width:162.655856px;}
._57{width:163.750340px;}
._2b{width:176.674464px;}
._2c{width:177.949667px;}
._55{width:184.934549px;}
._31{width:199.742220px;}
._27{width:207.493200px;}
._5a{width:217.110228px;}
._5f{width:229.170980px;}
._5c{width:285.466308px;}
._50{width:310.379358px;}
._51{width:311.897590px;}
._1f{width:396.556951px;}
._61{width:413.898384px;}
._20{width:436.180711px;}
._4f{width:441.083887px;}
._22{width:454.485282px;}
._1d{width:467.064188px;}
._23{width:479.188694px;}
._24{width:480.533760px;}
._21{width:490.528092px;}
._26{width:535.172802px;}
._36{width:560.611118px;}
._37{width:651.476596px;}
._25{width:806.889600px;}
._39{width:820.651172px;}
._63{width:829.762247px;}
._60{width:852.442251px;}
._66{width:905.226644px;}
._65{width:913.282724px;}
._68{width:932.125079px;}
._64{width:964.147168px;}
._3e{width:1013.411224px;}
._67{width:1041.708868px;}
._62{width:1072.485988px;}
._69{width:1116.722068px;}
._3c{width:1173.401287px;}
._3d{width:1181.387985px;}
._3b{width:1189.379985px;}
._3a{width:1261.379985px;}
._38{width:1269.371985px;}
._1e{width:1329.917972px;}
._1c{width:1464.636015px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs1f{font-size:38.880000px;}
.fs6{font-size:40.505760px;}
.fsa{font-size:40.854224px;}
.fs30{font-size:41.563440px;}
.fs36{font-size:41.580000px;}
.fs4{font-size:42.761503px;}
.fsf{font-size:43.197120px;}
.fs2c{font-size:44.901342px;}
.fs26{font-size:44.901360px;}
.fs33{font-size:44.960382px;}
.fs32{font-size:44.960400px;}
.fs24{font-size:45.033840px;}
.fs1b{font-size:46.035342px;}
.fs1d{font-size:46.035360px;}
.fs15{font-size:46.943280px;}
.fs2{font-size:48.240000px;}
.fs20{font-size:54.000000px;}
.fs18{font-size:59.433816px;}
.fs1e{font-size:59.760000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:61.357775px;}
.fs9{font-size:61.357800px;}
.fs2d{font-size:62.420400px;}
.fs34{font-size:62.445575px;}
.fs35{font-size:62.445600px;}
.fsb{font-size:63.101400px;}
.fs3{font-size:64.217374px;}
.fs39{font-size:64.220400px;}
.fse{font-size:64.873200px;}
.fs3b{font-size:66.240000px;}
.fs10{font-size:66.718200px;}
.fs2a{font-size:67.432173px;}
.fs25{font-size:67.432200px;}
.fsc{font-size:67.485600px;}
.fs31{font-size:67.522200px;}
.fs21{font-size:67.632573px;}
.fs22{font-size:67.632600px;}
.fs5{font-size:67.725600px;}
.fs19{font-size:69.136800px;}
.fs27{font-size:69.350400px;}
.fsd{font-size:69.404400px;}
.fs14{font-size:70.501172px;}
.fs12{font-size:70.501200px;}
.fs1a{font-size:71.103000px;}
.fs3a{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.fs13{font-size:72.506400px;}
.fs37{font-size:78.131400px;}
.fs1c{font-size:81.258600px;}
.fs2b{font-size:84.372600px;}
.fs23{font-size:84.619200px;}
.fs11{font-size:85.010400px;}
.fs2f{font-size:87.421200px;}
.fs2e{font-size:91.116564px;}
.fs38{font-size:91.153164px;}
.fs29{font-size:94.441200px;}
.fs28{font-size:98.434761px;}
.fs16{font-size:102.912600px;}
.fs7{font-size:147.782941px;}
.fs17{font-size:176.588329px;}
.y0{bottom:0.000000px;}
.ya9{bottom:2.158936px;}
.y179{bottom:2.158990px;}
.y198{bottom:2.159093px;}
.y85{bottom:2.159197px;}
.y8d{bottom:2.159227px;}
.y92{bottom:2.159243px;}
.y97{bottom:2.159259px;}
.y9c{bottom:2.159287px;}
.ya1{bottom:2.159315px;}
.ya5{bottom:2.159691px;}
.y56{bottom:2.338936px;}
.yf1{bottom:2.338946px;}
.yfa{bottom:2.338961px;}
.y173{bottom:2.338975px;}
.yff{bottom:2.338977px;}
.y108{bottom:2.339017px;}
.y18e{bottom:2.339050px;}
.y192{bottom:2.339065px;}
.y114{bottom:2.339119px;}
.y119{bottom:2.339134px;}
.y124{bottom:2.339163px;}
.y1c5{bottom:2.339165px;}
.ye0{bottom:2.339223px;}
.y189{bottom:2.699028px;}
.y1ba{bottom:2.699058px;}
.y17e{bottom:3.239003px;}
.y176{bottom:3.418986px;}
.y82{bottom:3.419194px;}
.y8a{bottom:3.419224px;}
.y8f{bottom:3.419240px;}
.y1cf{bottom:3.419277px;}
.y58{bottom:3.598934px;}
.yf8{bottom:3.598959px;}
.y16c{bottom:3.598971px;}
.y101{bottom:3.598976px;}
.y17c{bottom:3.599003px;}
.y187{bottom:3.599030px;}
.y11b{bottom:3.599134px;}
.y11e{bottom:3.599147px;}
.y122{bottom:3.599161px;}
.y127{bottom:3.599162px;}
.y12a{bottom:3.599176px;}
.y12e{bottom:3.599202px;}
.ye2{bottom:3.599223px;}
.y163{bottom:3.599277px;}
.y54{bottom:3.778934px;}
.yf6{bottom:3.778959px;}
.y171{bottom:3.778973px;}
.yfd{bottom:3.778975px;}
.y106{bottom:3.779015px;}
.y18c{bottom:3.779048px;}
.y190{bottom:3.779063px;}
.y112{bottom:3.779117px;}
.y117{bottom:3.779132px;}
.y120{bottom:3.779161px;}
.y1c3{bottom:3.779163px;}
.yde{bottom:3.779221px;}
.yd4{bottom:4.139196px;}
.y210{bottom:4.139198px;}
.y1b3{bottom:5.039061px;}
.y1d4{bottom:5.039280px;}
.y184{bottom:5.579032px;}
.y5d{bottom:7.918957px;}
.y64{bottom:7.918981px;}
.yd7{bottom:9.539193px;}
.y4{bottom:80.962200px;}
.y1{bottom:90.480300px;}
.y3{bottom:98.962500px;}
.y2{bottom:116.962500px;}
.y1af{bottom:133.500000px;}
.y1b0{bottom:133.500300px;}
.y156{bottom:136.020000px;}
.y1d6{bottom:136.380000px;}
.y22e{bottom:136.560000px;}
.y50{bottom:136.920000px;}
.y7e{bottom:141.240000px;}
.y168{bottom:144.300000px;}
.y138{bottom:146.280000px;}
.ycb{bottom:148.980000px;}
.y21c{bottom:151.320000px;}
.y20c{bottom:152.940000px;}
.y1f2{bottom:153.480000px;}
.y228{bottom:155.820000px;}
.yeb{bottom:157.260000px;}
.y1ae{bottom:158.520000px;}
.y155{bottom:167.160000px;}
.ya2{bottom:167.700000px;}
.y4f{bottom:168.060000px;}
.ya4{bottom:171.300240px;}
.y7d{bottom:172.200000px;}
.y167{bottom:175.440000px;}
.y137{bottom:177.420000px;}
.ya3{bottom:178.320000px;}
.y1e0{bottom:179.220000px;}
.yca{bottom:180.120000px;}
.y21b{bottom:182.460000px;}
.y1ad{bottom:184.080000px;}
.y1f1{bottom:184.620000px;}
.y227{bottom:186.780000px;}
.yea{bottom:188.220000px;}
.y36{bottom:195.240000px;}
.y7c{bottom:197.400000px;}
.y154{bottom:198.120000px;}
.y1d5{bottom:198.300000px;}
.y22f{bottom:198.660000px;}
.y4e{bottom:199.020000px;}
.y166{bottom:206.400000px;}
.y9e{bottom:206.940000px;}
.y136{bottom:208.380000px;}
.y1ac{bottom:209.820000px;}
.y1df{bottom:210.360000px;}
.ya0{bottom:210.540600px;}
.yc9{bottom:211.080000px;}
.y21a{bottom:213.060000px;}
.y203{bottom:213.420000px;}
.y20b{bottom:215.040000px;}
.y1f0{bottom:215.580000px;}
.y9f{bottom:217.560000px;}
.y1e{bottom:217.714500px;}
.y226{bottom:217.920000px;}
.ye9{bottom:219.360000px;}
.y35{bottom:226.200000px;}
.y7b{bottom:226.380000px;}
.y153{bottom:229.260000px;}
.yce{bottom:229.800000px;}
.y4d{bottom:230.160000px;}
.y1ab{bottom:235.020000px;}
.y165{bottom:237.540000px;}
.y135{bottom:239.520000px;}
.y1de{bottom:241.320000px;}
.yc8{bottom:242.220000px;}
.y219{bottom:244.200000px;}
.y9d{bottom:246.000000px;}
.y20a{bottom:246.180000px;}
.y1ef{bottom:246.720000px;}
.y1d{bottom:248.854500px;}
.y225{bottom:248.880000px;}
.ye8{bottom:250.320000px;}
.y7a{bottom:255.360000px;}
.y152{bottom:260.220000px;}
.y1aa{bottom:260.580000px;}
.ycd{bottom:260.760000px;}
.y4c{bottom:261.120000px;}
.y164{bottom:268.500000px;}
.y134{bottom:270.480000px;}
.y1dd{bottom:272.460000px;}
.yc7{bottom:273.180000px;}
.y218{bottom:275.160000px;}
.y99{bottom:277.140000px;}
.y1ee{bottom:277.680000px;}
.y224{bottom:280.020000px;}
.y9b{bottom:280.740600px;}
.ye7{bottom:281.460000px;}
.y79{bottom:284.160000px;}
.y1a9{bottom:285.960000px;}
.y9a{bottom:287.760000px;}
.y34{bottom:288.300000px;}
.y151{bottom:291.360000px;}
.y4b{bottom:292.260000px;}
.y1d3{bottom:295.680600px;}
.y1d1{bottom:298.740000px;}
.y161{bottom:299.640000px;}
.y1d2{bottom:300.720000px;}
.y133{bottom:301.620000px;}
.y162{bottom:302.880600px;}
.y1dc{bottom:303.420000px;}
.y1d0{bottom:303.600000px;}
.y1ce{bottom:304.140600px;}
.yc6{bottom:304.320000px;}
.y217{bottom:306.660000px;}
.y202{bottom:308.100000px;}
.y209{bottom:308.280000px;}
.y1ed{bottom:308.820000px;}
.y1c{bottom:310.954500px;}
.y223{bottom:310.980000px;}
.y1a8{bottom:311.880000px;}
.ye6{bottom:312.420000px;}
.y78{bottom:313.140000px;}
.y98{bottom:316.380000px;}
.y150{bottom:322.320000px;}
.y4a{bottom:323.220000px;}
.y216{bottom:331.860000px;}
.y132{bottom:332.580000px;}
.y160{bottom:333.660000px;}
.y1cd{bottom:334.560000px;}
.yc5{bottom:335.280000px;}
.y1a7{bottom:337.260000px;}
.y201{bottom:339.240000px;}
.y1ec{bottom:339.780000px;}
.y1b{bottom:341.964000px;}
.y77{bottom:342.120000px;}
.ye5{bottom:343.560000px;}
.y94{bottom:347.520000px;}
.y33{bottom:350.400000px;}
.y96{bottom:351.120600px;}
.y14f{bottom:353.460000px;}
.y22b{bottom:354.000000px;}
.y49{bottom:354.360000px;}
.y95{bottom:358.140000px;}
.y1a6{bottom:360.120000px;}
.y215{bottom:360.660000px;}
.y1a5{bottom:362.460000px;}
.y131{bottom:363.720000px;}
.y15f{bottom:364.800000px;}
.y1cc{bottom:365.520000px;}
.yc4{bottom:366.420000px;}
.y200{bottom:370.200000px;}
.y208{bottom:370.380000px;}
.y1eb{bottom:370.920000px;}
.y1a{bottom:372.973500px;}
.y222{bottom:373.080000px;}
.ye4{bottom:374.520000px;}
.y76{bottom:377.220000px;}
.y14e{bottom:384.420000px;}
.y48{bottom:385.320000px;}
.y93{bottom:386.760000px;}
.y214{bottom:389.640000px;}
.y1a4{bottom:390.000000px;}
.y91{bottom:390.360600px;}
.y130{bottom:394.680000px;}
.y15e{bottom:395.760000px;}
.y1cb{bottom:396.660000px;}
.y8e{bottom:396.840600px;}
.y90{bottom:397.380000px;}
.y1ff{bottom:401.340000px;}
.y1ea{bottom:401.880000px;}
.y19{bottom:403.983000px;}
.y221{bottom:404.220000px;}
.ye3{bottom:405.660000px;}
.y75{bottom:408.360000px;}
.y32{bottom:412.500000px;}
.y14d{bottom:415.560000px;}
.y47{bottom:416.460000px;}
.y213{bottom:418.620000px;}
.y1a3{bottom:420.960000px;}
.y88{bottom:425.820000px;}
.y15d{bottom:426.900000px;}
.y1ca{bottom:427.260000px;}
.y1db{bottom:427.620000px;}
.yc3{bottom:428.160000px;}
.y8c{bottom:429.420600px;}
.y1fe{bottom:432.300000px;}
.y1e9{bottom:433.020000px;}
.y18{bottom:434.992500px;}
.y220{bottom:435.180000px;}
.y89{bottom:435.900600px;}
.y8b{bottom:436.440000px;}
.ydc{bottom:436.620000px;}
.ydf{bottom:439.140600px;}
.y74{bottom:439.320000px;}
.ye1{bottom:439.860600px;}
.ydd{bottom:442.740600px;}
.y14c{bottom:446.520000px;}
.y46{bottom:447.420000px;}
.y212{bottom:447.600000px;}
.y1a2{bottom:452.100000px;}
.y12f{bottom:456.780000px;}
.y15c{bottom:457.860000px;}
.y1c9{bottom:458.760000px;}
.yc2{bottom:459.480000px;}
.y1fd{bottom:463.440000px;}
.y1e8{bottom:463.980000px;}
.y86{bottom:464.880000px;}
.y17{bottom:466.002000px;}
.y21f{bottom:466.320000px;}
.y73{bottom:470.460000px;}
.y87{bottom:471.180000px;}
.y31{bottom:474.600000px;}
.ydb{bottom:474.780000px;}
.y211{bottom:476.580000px;}
.y14b{bottom:477.660000px;}
.y45{bottom:478.560000px;}
.y1a1{bottom:483.060000px;}
.y12c{bottom:487.920000px;}
.y15b{bottom:489.000000px;}
.y1c8{bottom:489.720000px;}
.yc1{bottom:490.620000px;}
.y12d{bottom:491.160600px;}
.y258{bottom:492.060000px;}
.y1fc{bottom:494.400000px;}
.y1e7{bottom:495.120000px;}
.y16{bottom:497.011500px;}
.y21e{bottom:497.280000px;}
.y20f{bottom:501.060600px;}
.y72{bottom:501.420000px;}
.y84{bottom:505.020600px;}
.y20e{bottom:505.200000px;}
.yd0{bottom:505.920000px;}
.yd3{bottom:506.820600px;}
.y30{bottom:507.000000px;}
.y14a{bottom:508.620000px;}
.yd6{bottom:509.160600px;}
.y44{bottom:509.520000px;}
.y81{bottom:511.500600px;}
.y83{bottom:512.040000px;}
.yda{bottom:513.120000px;}
.y1a0{bottom:514.020000px;}
.y1da{bottom:518.520000px;}
.yd5{bottom:518.700000px;}
.y257{bottom:519.060000px;}
.y15a{bottom:519.960000px;}
.y1c7{bottom:520.860000px;}
.yc0{bottom:521.580000px;}
.y12b{bottom:521.940000px;}
.y21d{bottom:524.100000px;}
.yd2{bottom:525.360000px;}
.y1fb{bottom:525.540000px;}
.y1e6{bottom:526.080000px;}
.y15{bottom:528.021000px;}
.yd1{bottom:529.860000px;}
.y71{bottom:532.560000px;}
.y256{bottom:533.640000px;}
.yd9{bottom:534.180000px;}
.y2f{bottom:538.140000px;}
.yd8{bottom:539.760000px;}
.y43{bottom:540.660000px;}
.y19f{bottom:545.160000px;}
.y255{bottom:548.220000px;}
.y1d9{bottom:549.480000px;}
.y159{bottom:551.100000px;}
.y1c6{bottom:551.820000px;}
.ybf{bottom:552.540000px;}
.y128{bottom:553.080000px;}
.y129{bottom:556.320600px;}
.y1fa{bottom:556.500000px;}
.y1e5{bottom:557.220000px;}
.y14{bottom:559.030500px;}
.y70{bottom:559.200000px;}
.y254{bottom:562.800000px;}
.y2e{bottom:570.360000px;}
.y149{bottom:570.720000px;}
.y22d{bottom:571.260000px;}
.y42{bottom:571.620000px;}
.y19e{bottom:576.120000px;}
.y253{bottom:577.200000px;}
.y1c1{bottom:582.780000px;}
.y1d8{bottom:582.960000px;}
.ybe{bottom:583.680000px;}
.y1c4{bottom:585.300600px;}
.y125{bottom:587.100000px;}
.y1f9{bottom:587.640000px;}
.y1e4{bottom:588.180000px;}
.y1c2{bottom:588.900600px;}
.y123{bottom:589.620600px;}
.y13{bottom:590.040000px;}
.y126{bottom:590.340600px;}
.y252{bottom:591.780000px;}
.y11f{bottom:593.220600px;}
.y121{bottom:593.400600px;}
.y2d{bottom:601.500000px;}
.y148{bottom:601.860000px;}
.y41{bottom:602.760000px;}
.y251{bottom:606.360000px;}
.y19d{bottom:607.260000px;}
.yba{bottom:614.820000px;}
.y1f8{bottom:618.600000px;}
.y250{bottom:620.940000px;}
.y12{bottom:621.049500px;}
.ybc{bottom:621.120000px;}
.ybd{bottom:623.280000px;}
.y11c{bottom:625.260000px;}
.ybb{bottom:626.340000px;}
.y11d{bottom:628.500600px;}
.y147{bottom:632.820000px;}
.y2c{bottom:633.720000px;}
.y24f{bottom:635.520000px;}
.y19c{bottom:638.220000px;}
.y1f7{bottom:649.740000px;}
.y24e{bottom:651.540000px;}
.y11{bottom:652.059000px;}
.y1c0{bottom:652.080000px;}
.yb9{bottom:656.580000px;}
.y115{bottom:659.280000px;}
.y118{bottom:661.800600px;}
.y146{bottom:662.340000px;}
.y11a{bottom:662.520600px;}
.y22c{bottom:664.500000px;}
.y40{bottom:664.860000px;}
.y116{bottom:665.400600px;}
.y19b{bottom:669.360000px;}
.y24d{bottom:672.240000px;}
.y1f6{bottom:680.700000px;}
.y1bf{bottom:683.220000px;}
.yb8{bottom:687.720000px;}
.y24c{bottom:692.940000px;}
.y2b{bottom:695.820000px;}
.y110{bottom:697.440000px;}
.y113{bottom:699.960600px;}
.y19a{bottom:700.320000px;}
.y111{bottom:703.560600px;}
.y145{bottom:710.940000px;}
.y1f5{bottom:711.840000px;}
.y144{bottom:713.280000px;}
.y24b{bottom:713.640000px;}
.y1be{bottom:714.180000px;}
.yb7{bottom:718.680000px;}
.ycf{bottom:726.600000px;}
.y3f{bottom:726.960000px;}
.y199{bottom:731.460000px;}
.y24a{bottom:734.520000px;}
.y10f{bottom:735.780000px;}
.y143{bottom:738.660000px;}
.y1f4{bottom:742.800000px;}
.y1bd{bottom:745.320000px;}
.y10{bottom:745.659000px;}
.yb6{bottom:749.820000px;}
.y249{bottom:753.780000px;}
.y6f{bottom:756.480000px;}
.y169{bottom:757.560000px;}
.y2a{bottom:757.920000px;}
.y266{bottom:761.340000px;}
.y142{bottom:761.880000px;}
.y195{bottom:762.600000px;}
.y141{bottom:764.220000px;}
.ycc{bottom:766.200000px;}
.y197{bottom:766.200600px;}
.y10e{bottom:766.740000px;}
.y248{bottom:768.180000px;}
.y196{bottom:773.220000px;}
.y1f3{bottom:773.940000px;}
.y1bc{bottom:776.280000px;}
.yb5{bottom:780.780000px;}
.y247{bottom:782.760000px;}
.yf{bottom:786.369000px;}
.y140{bottom:787.440000px;}
.y6e{bottom:787.620000px;}
.y3e{bottom:789.060000px;}
.y13f{bottom:789.780000px;}
.y265{bottom:792.480000px;}
.y246{bottom:797.340000px;}
.y10d{bottom:797.880000px;}
.y194{bottom:801.660000px;}
.y207{bottom:804.900000px;}
.y1bb{bottom:807.420000px;}
.yb4{bottom:811.920000px;}
.y13e{bottom:815.160000px;}
.y6d{bottom:818.580000px;}
.ye{bottom:818.799000px;}
.y29{bottom:820.020000px;}
.y264{bottom:824.700000px;}
.y245{bottom:826.500000px;}
.y10c{bottom:828.840000px;}
.y193{bottom:832.620000px;}
.y191{bottom:835.140600px;}
.y206{bottom:836.040000px;}
.y1b7{bottom:838.560000px;}
.y18f{bottom:838.740600px;}
.y13d{bottom:840.360000px;}
.y244{bottom:841.080000px;}
.yb3{bottom:842.880000px;}
.yd{bottom:842.949000px;}
.y1b2{bottom:843.420600px;}
.y1b5{bottom:845.580000px;}
.y1b8{bottom:847.200000px;}
.y1b4{bottom:848.460000px;}
.y6c{bottom:849.720000px;}
.y1b1{bottom:850.440000px;}
.y22a{bottom:850.800000px;}
.y28{bottom:851.160000px;}
.y1b9{bottom:852.960600px;}
.y243{bottom:854.760000px;}
.y263{bottom:857.100000px;}
.y1b6{bottom:857.280000px;}
.y10b{bottom:859.980000px;}
.y13c{bottom:866.100000px;}
.y205{bottom:867.000000px;}
.y242{bottom:869.340000px;}
.y18a{bottom:870.780000px;}
.y18d{bottom:873.300600px;}
.yb2{bottom:874.020000px;}
.yc{bottom:875.379000px;}
.y18b{bottom:876.900600px;}
.y6b{bottom:880.680000px;}
.y229{bottom:881.760000px;}
.y27{bottom:882.120000px;}
.y1e3{bottom:882.660000px;}
.y241{bottom:883.200000px;}
.y262{bottom:888.060000px;}
.y10a{bottom:890.940000px;}
.y13b{bottom:891.300000px;}
.y240{bottom:897.780000px;}
.y204{bottom:898.140000px;}
.yb1{bottom:904.980000px;}
.y180{bottom:909.120000px;}
.y23f{bottom:911.460000px;}
.y6a{bottom:911.820000px;}
.y20d{bottom:912.900000px;}
.y26{bottom:913.260000px;}
.y183{bottom:913.440600px;}
.y1e2{bottom:913.800000px;}
.y182{bottom:915.780000px;}
.yb{bottom:916.089000px;}
.y13a{bottom:916.860000px;}
.y185{bottom:917.940000px;}
.y261{bottom:920.460000px;}
.y181{bottom:921.000000px;}
.y186{bottom:921.720600px;}
.y109{bottom:922.080000px;}
.y23e{bottom:926.040000px;}
.y188{bottom:927.840600px;}
.yb0{bottom:936.120000px;}
.y23d{bottom:939.900000px;}
.y1e1{bottom:940.620000px;}
.y69{bottom:942.780000px;}
.y25{bottom:944.220000px;}
.ya{bottom:948.519000px;}
.y260{bottom:951.420000px;}
.y104{bottom:953.040000px;}
.y17f{bottom:954.300000px;}
.y23c{bottom:954.480000px;}
.y107{bottom:955.560600px;}
.y105{bottom:959.160600px;}
.yaf{bottom:967.080000px;}
.y23b{bottom:968.880000px;}
.y68{bottom:973.920000px;}
.y3d{bottom:975.360000px;}
.y24{bottom:975.360300px;}
.y23a{bottom:982.740000px;}
.y25f{bottom:983.820000px;}
.y17a{bottom:985.440000px;}
.y17b{bottom:988.680600px;}
.y17d{bottom:989.040600px;}
.y103{bottom:991.200000px;}
.y9{bottom:994.059000px;}
.y239{bottom:997.320000px;}
.yae{bottom:998.220000px;}
.y139{bottom:1003.980000px;}
.y230{bottom:1004.700000px;}
.y67{bottom:1004.880000px;}
.y3c{bottom:1006.320000px;}
.y23{bottom:1006.320300px;}
.y238{bottom:1011.000000px;}
.y25e{bottom:1014.960000px;}
.y174{bottom:1019.460000px;}
.y102{bottom:1022.340000px;}
.y178{bottom:1023.060600px;}
.y237{bottom:1025.580000px;}
.yad{bottom:1029.180000px;}
.y177{bottom:1030.080000px;}
.y175{bottom:1030.440600px;}
.y1d7{bottom:1035.120000px;}
.y60{bottom:1035.840000px;}
.y25d{bottom:1037.100000px;}
.y3b{bottom:1037.460000px;}
.y22{bottom:1037.460300px;}
.y236{bottom:1040.160000px;}
.y63{bottom:1040.160600px;}
.y66{bottom:1043.760000px;}
.y62{bottom:1052.220000px;}
.yfb{bottom:1053.300000px;}
.y235{bottom:1054.740000px;}
.yfe{bottom:1055.820600px;}
.y8{bottom:1056.159000px;}
.y61{bottom:1056.540000px;}
.y100{bottom:1056.540600px;}
.y25c{bottom:1057.800000px;}
.y16a{bottom:1058.700000px;}
.yfc{bottom:1059.420600px;}
.yac{bottom:1060.320000px;}
.y172{bottom:1061.220600px;}
.y65{bottom:1063.920000px;}
.y16f{bottom:1064.100000px;}
.y170{bottom:1064.820600px;}
.y16e{bottom:1066.260000px;}
.y3a{bottom:1068.420000px;}
.y21{bottom:1068.420300px;}
.y234{bottom:1069.320000px;}
.y16d{bottom:1069.500000px;}
.y16b{bottom:1070.040600px;}
.y25b{bottom:1078.500000px;}
.y233{bottom:1083.900000px;}
.y7{bottom:1087.119000px;}
.yab{bottom:1091.280000px;}
.yf4{bottom:1091.460000px;}
.yf9{bottom:1093.980600px;}
.y59{bottom:1095.060000px;}
.y158{bottom:1097.220000px;}
.yf5{bottom:1097.580600px;}
.yf7{bottom:1097.760600px;}
.y80{bottom:1099.200000px;}
.y5c{bottom:1099.380600px;}
.y39{bottom:1099.560000px;}
.y5f{bottom:1102.980000px;}
.y5b{bottom:1111.440000px;}
.y5a{bottom:1115.760000px;}
.y25a{bottom:1119.540000px;}
.y232{bottom:1119.900000px;}
.yaa{bottom:1122.420000px;}
.y5e{bottom:1123.140000px;}
.yf3{bottom:1127.460000px;}
.y157{bottom:1128.180000px;}
.yec{bottom:1129.800000px;}
.y7f{bottom:1130.160000px;}
.y38{bottom:1130.520000px;}
.y20{bottom:1130.520300px;}
.yf0{bottom:1131.600600px;}
.yef{bottom:1139.340000px;}
.y259{bottom:1140.240000px;}
.y231{bottom:1140.600000px;}
.y6{bottom:1148.859000px;}
.yed{bottom:1151.400000px;}
.ya6{bottom:1153.560000px;}
.y52{bottom:1154.460000px;}
.y55{bottom:1156.980600px;}
.ya8{bottom:1157.160600px;}
.yf2{bottom:1158.960000px;}
.y53{bottom:1160.580600px;}
.y57{bottom:1160.760600px;}
.y37{bottom:1161.300000px;}
.y1f{bottom:1161.300300px;}
.y51{bottom:1161.660000px;}
.yee{bottom:1162.200000px;}
.ya7{bottom:1164.180000px;}
.y5{bottom:1179.999000px;}
.h1a{height:11.340000px;}
.h21{height:11.340360px;}
.ha{height:11.880000px;}
.h5a{height:12.240000px;}
.h3b{height:12.780000px;}
.h4a{height:14.040000px;}
.h17{height:14.940000px;}
.h44{height:15.300000px;}
.h4d{height:16.200000px;}
.h35{height:16.560000px;}
.hc{height:17.640000px;}
.h8{height:17.820000px;}
.h57{height:18.360000px;}
.h2d{height:19.800000px;}
.h6d{height:20.340000px;}
.h5d{height:24.660000px;}
.h54{height:26.640000px;}
.h41{height:38.139609px;}
.h10{height:39.754188px;}
.h4b{height:40.076238px;}
.h1b{height:40.096186px;}
.h12{height:40.680000px;}
.h60{height:40.771949px;}
.h68{height:40.788193px;}
.h66{height:40.808496px;}
.h2{height:41.689453px;}
.hb{height:41.947197px;}
.h49{height:41.968077px;}
.h23{height:42.374519px;}
.h27{height:42.395611px;}
.h1d{height:42.602926px;}
.h50{height:44.046305px;}
.h5b{height:44.068212px;}
.h63{height:44.104203px;}
.h62{height:44.104221px;}
.h71{height:44.149219px;}
.h48{height:44.176262px;}
.h9{height:44.588431px;}
.h3c{height:45.158692px;}
.h3e{height:45.158710px;}
.h33{height:46.049341px;}
.h4f{height:46.820600px;}
.h20{height:46.857677px;}
.h6c{height:47.321367px;}
.h6{height:47.344922px;}
.h30{height:48.240000px;}
.h1{height:52.312500px;}
.h42{height:52.971680px;}
.h18{height:55.815203px;}
.h64{height:56.804739px;}
.h36{height:58.302020px;}
.h4c{height:58.331040px;}
.h3f{height:58.621992px;}
.h40{height:59.059688px;}
.h19{height:60.189365px;}
.h5c{height:61.231730px;}
.h65{height:61.256450px;}
.h58{height:61.340888px;}
.h45{height:61.523185px;}
.h4e{height:61.987613px;}
.h34{height:62.994485px;}
.he{height:63.025841px;}
.h22{height:63.637822px;}
.h29{height:64.132683px;}
.h69{height:65.128809px;}
.h1c{height:65.812788px;}
.h52{height:66.148091px;}
.h1e{height:66.233426px;}
.h61{height:66.236377px;}
.h46{height:66.344675px;}
.hf{height:66.435904px;}
.h14{height:66.468973px;}
.hd{height:66.976715px;}
.h6b{height:66.979870px;}
.h25{height:67.660720px;}
.h37{height:67.820230px;}
.h3a{height:67.853988px;}
.h2e{height:69.158620px;}
.h2b{height:69.158648px;}
.h24{height:69.584998px;}
.h53{height:70.329677px;}
.h43{height:70.628906px;}
.h11{height:70.635684px;}
.h6e{height:70.664034px;}
.h5{height:70.664062px;}
.h39{height:72.107522px;}
.h51{height:72.330300px;}
.h1f{height:72.386620px;}
.h3{height:72.562500px;}
.h32{height:73.530548px;}
.h38{height:74.158207px;}
.h28{height:75.093750px;}
.h2a{height:75.621909px;}
.h4{height:80.464922px;}
.h67{height:81.488609px;}
.h5e{height:82.885819px;}
.h6a{height:82.919113px;}
.h3d{height:84.750180px;}
.h59{height:87.997985px;}
.h47{height:88.255181px;}
.h26{height:88.663191px;}
.h55{height:89.542949px;}
.h5f{height:91.177580px;}
.h56{height:98.499220px;}
.h6f{height:102.064922px;}
.h70{height:102.784922px;}
.h7{height:103.784062px;}
.h2c{height:108.793072px;}
.h2f{height:111.616296px;}
.h15{height:147.108973px;}
.h16{height:151.275684px;}
.h13{height:154.132989px;}
.h31{height:184.176109px;}
.h0{height:1263.000000px;}
.wd{width:2.880000px;}
.w20{width:3.060000px;}
.w2{width:3.240000px;}
.w11{width:3.420000px;}
.w22{width:5.400000px;}
.w15{width:5.580000px;}
.w1e{width:6.300000px;}
.w17{width:6.480000px;}
.w9{width:6.660000px;}
.wa{width:6.840000px;}
.we{width:7.200000px;}
.wc{width:7.380000px;}
.w8{width:7.740000px;}
.w4{width:8.460000px;}
.w16{width:8.640000px;}
.w19{width:9.000000px;}
.w1{width:9.180000px;}
.w12{width:9.360000px;}
.w7{width:10.080000px;}
.w6{width:10.260000px;}
.w1c{width:10.980000px;}
.w5{width:12.240000px;}
.w3{width:13.500000px;}
.w1b{width:13.860000px;}
.w14{width:14.400000px;}
.w10{width:14.580000px;}
.w1f{width:16.560000px;}
.w1a{width:16.740000px;}
.w1d{width:16.920000px;}
.w23{width:17.100000px;}
.w21{width:17.640000px;}
.wb{width:17.820000px;}
.w18{width:19.980000px;}
.w13{width:40.860000px;}
.wf{width:41.400000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa2{left:1.259926px;}
.xbc{left:2.699886px;}
.x22{left:7.739782px;}
.x2{left:75.600000px;}
.x3{left:84.967500px;}
.x1f{left:89.101305px;}
.x43{left:90.540000px;}
.xed{left:92.700000px;}
.xba{left:93.960000px;}
.xf9{left:100.080000px;}
.x44{left:102.600000px;}
.xda{left:108.360000px;}
.x45{left:110.340000px;}
.x5{left:111.960669px;}
.x46{left:117.000000px;}
.xee{left:119.340000px;}
.xef{left:123.840000px;}
.x47{left:126.900000px;}
.xab{left:130.320000px;}
.xeb{left:133.200000px;}
.xe0{left:135.720000px;}
.x4{left:138.066702px;}
.xf0{left:139.320000px;}
.x20{left:146.160000px;}
.xfa{left:151.740735px;}
.xfc{left:154.619955px;}
.xac{left:155.700000px;}
.x8f{left:158.040000px;}
.xec{left:160.200000px;}
.xf1{left:161.640000px;}
.xe1{left:164.340000px;}
.xad{left:166.680000px;}
.xe2{left:171.000000px;}
.xdb{left:174.420000px;}
.xf2{left:176.040000px;}
.xc4{left:177.120000px;}
.xc5{left:179.820000px;}
.xdc{left:181.620000px;}
.x48{left:183.060000px;}
.xa1{left:184.320000px;}
.xdd{left:185.760000px;}
.xc6{left:189.900000px;}
.x49{left:192.060000px;}
.xf3{left:193.860000px;}
.xde{left:196.200000px;}
.xc7{left:197.820000px;}
.x4a{left:199.800000px;}
.x4b{left:204.300000px;}
.xa3{left:205.560000px;}
.xca{left:208.260000px;}
.x4c{left:212.040000px;}
.xe3{left:214.020000px;}
.xcb{left:218.160000px;}
.x4d{left:221.580000px;}
.xc8{left:226.800000px;}
.xaa{left:229.140000px;}
.xf4{left:231.660000px;}
.xe4{left:233.820000px;}
.xc9{left:236.340000px;}
.x4e{left:240.660000px;}
.x9e{left:246.060000px;}
.x4f{left:249.660000px;}
.xe5{left:251.460000px;}
.x9f{left:254.160000px;}
.xa7{left:255.240000px;}
.x50{left:257.400000px;}
.xcc{left:258.660000px;}
.x51{left:261.900000px;}
.xa8{left:263.880000px;}
.xa0{left:266.400000px;}
.x52{left:269.640000px;}
.x85{left:275.040000px;}
.xa9{left:276.480000px;}
.x53{left:278.820000px;}
.x86{left:281.160000px;}
.xe6{left:283.500000px;}
.xbd{left:284.580000px;}
.xf5{left:286.020000px;}
.xdf{left:291.060000px;}
.xbe{left:295.560000px;}
.xbb{left:297.540000px;}
.xbf{left:302.040000px;}
.x54{left:319.140000px;}
.xc0{left:322.920000px;}
.x55{left:327.960000px;}
.xa5{left:329.760000px;}
.x56{left:335.880000px;}
.xa6{left:337.860000px;}
.x57{left:340.200000px;}
.xc1{left:341.820000px;}
.xcd{left:345.240000px;}
.x58{left:348.120000px;}
.x69{left:349.560000px;}
.xce{left:352.980000px;}
.xb4{left:354.060000px;}
.xf6{left:356.040000px;}
.x59{left:357.660000px;}
.xb5{left:359.820000px;}
.x6a{left:366.300000px;}
.xcf{left:368.460000px;}
.x6b{left:370.800000px;}
.xd0{left:371.880000px;}
.xb6{left:377.100000px;}
.x6c{left:378.540000px;}
.xe7{left:381.600000px;}
.xd1{left:385.020000px;}
.x6d{left:388.080000px;}
.xe8{left:392.220000px;}
.xb0{left:398.880000px;}
.xb2{left:401.580000px;}
.x6e{left:405.000000px;}
.x34{left:406.080000px;}
.xb{left:407.520000px;}
.xd2{left:410.580000px;}
.xe9{left:412.740000px;}
.x6f{left:414.000000px;}
.xb1{left:415.440000px;}
.xc{left:418.500000px;}
.x70{left:421.740000px;}
.xd{left:424.080000px;}
.x71{left:426.240000px;}
.xd3{left:428.220000px;}
.x87{left:430.380000px;}
.x72{left:433.980000px;}
.x88{left:441.540000px;}
.x73{left:443.160000px;}
.xa4{left:445.500000px;}
.x89{left:448.380000px;}
.xe{left:450.720000px;}
.x35{left:452.520000px;}
.x15{left:454.140000px;}
.xf{left:456.300000px;}
.xd4{left:460.440000px;}
.xea{left:463.860000px;}
.x16{left:465.300000px;}
.x36{left:468.000000px;}
.x10{left:469.620000px;}
.x17{left:470.880000px;}
.x8a{left:473.940000px;}
.x91{left:475.920000px;}
.x12{left:477.360030px;}
.xd5{left:479.160000px;}
.x64{left:484.380000px;}
.x18{left:485.460000px;}
.x11{left:487.440000px;}
.x74{left:489.780000px;}
.x1a{left:491.040000px;}
.x65{left:493.200000px;}
.x92{left:496.260000px;}
.x75{left:498.600000px;}
.x93{left:499.680000px;}
.x66{left:501.120000px;}
.xd6{left:502.560000px;}
.x60{left:504.360000px;}
.x67{left:505.440000px;}
.x76{left:506.520000px;}
.x6{left:508.140000px;}
.x19{left:510.120000px;}
.x61{left:513.360000px;}
.x94{left:516.420000px;}
.x7{left:518.220000px;}
.xb3{left:519.480000px;}
.x13{left:520.739910px;}
.x8{left:522.360000px;}
.x62{left:525.600000px;}
.x77{left:528.300000px;}
.x90{left:530.100000px;}
.x63{left:533.340000px;}
.x9b{left:534.780000px;}
.x9{left:535.860000px;}
.x21{left:537.120000px;}
.x14{left:541.800000px;}
.x78{left:543.420000px;}
.x8b{left:545.400000px;}
.x79{left:549.000000px;}
.xa{left:553.860000px;}
.x1b{left:556.019760px;}
.x7a{left:558.000000px;}
.x8c{left:559.800000px;}
.x95{left:561.420000px;}
.x23{left:562.680000px;}
.xf7{left:564.660000px;}
.x96{left:565.920000px;}
.x24{left:569.160000px;}
.x7b{left:573.660000px;}
.x9c{left:575.820000px;}
.x25{left:579.240000px;}
.x7c{left:581.400000px;}
.x1c{left:583.920000px;}
.x7d{left:586.980000px;}
.x26{left:589.320000px;}
.x9d{left:590.940000px;}
.x5a{left:592.020000px;}
.x1d{left:594.720000px;}
.x27{left:599.400000px;}
.x5b{left:601.020000px;}
.x8d{left:604.440000px;}
.x5c{left:608.760000px;}
.x8e{left:610.020000px;}
.x28{left:611.460000px;}
.x5d{left:613.260000px;}
.x7e{left:616.140000px;}
.x29{left:619.380000px;}
.x5e{left:621.000000px;}
.x97{left:622.260000px;}
.x2a{left:624.780000px;}
.x5f{left:630.540000px;}
.x2b{left:635.940000px;}
.xaf{left:637.740000px;}
.xae{left:641.880000px;}
.x7f{left:642.960000px;}
.x2c{left:645.660000px;}
.x98{left:647.100000px;}
.x80{left:655.380000px;}
.x81{left:659.880000px;}
.xf8{left:661.320000px;}
.xc2{left:665.820000px;}
.x82{left:667.620000px;}
.x83{left:671.040000px;}
.x37{left:673.200000px;}
.xc3{left:675.180000px;}
.x38{left:678.780000px;}
.x84{left:682.200000px;}
.xd7{left:685.440000px;}
.x2d{left:687.780000px;}
.x39{left:690.840000px;}
.xd8{left:691.920000px;}
.x2e{left:693.360000px;}
.xd9{left:696.060000px;}
.x3a{left:698.760000px;}
.x2f{left:705.420000px;}
.x30{left:713.160000px;}
.x3b{left:715.320000px;}
.xfb{left:718.560000px;}
.x31{left:719.820000px;}
.x99{left:721.620000px;}
.xb9{left:723.060000px;}
.x3c{left:725.400000px;}
.x9a{left:727.740000px;}
.x32{left:729.720000px;}
.x3d{left:735.480000px;}
.x33{left:739.980000px;}
.xb7{left:743.580000px;}
.x3e{left:747.540000px;}
.xb8{left:749.340000px;}
.x3f{left:755.460000px;}
.x40{left:760.860000px;}
.x41{left:772.020000px;}
.x42{left:781.740000px;}
.x68{left:789.840000px;}
.x1{left:798.840000px;}
.x1e{left:807.840000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.000000pt;}
.v1{vertical-align:29.440000pt;}
.v5{vertical-align:35.200000pt;}
.v7{vertical-align:48.640000pt;}
.v3{vertical-align:71.680000pt;}
.ls5{letter-spacing:-4.693333pt;}
.ls4{letter-spacing:-4.688000pt;}
.ls3{letter-spacing:-3.872000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000944pt;}
.ls0{letter-spacing:0.002091pt;}
.ls28{letter-spacing:0.017380pt;}
.ls26{letter-spacing:0.017433pt;}
.ls15{letter-spacing:0.018838pt;}
.ls8{letter-spacing:0.018878pt;}
.lsc{letter-spacing:0.018891pt;}
.lse{letter-spacing:0.138579pt;}
.ls1b{letter-spacing:0.147532pt;}
.ls1a{letter-spacing:0.147585pt;}
.ls1f{letter-spacing:0.147591pt;}
.ls19{letter-spacing:0.147669pt;}
.ls1c{letter-spacing:0.147747pt;}
.ls14{letter-spacing:0.217368pt;}
.ls25{letter-spacing:0.277158pt;}
.ls7{letter-spacing:0.401002pt;}
.ls20{letter-spacing:0.539581pt;}
.ls18{letter-spacing:0.670288pt;}
.ls22{letter-spacing:2.055692pt;}
.ls24{letter-spacing:2.570957pt;}
.ls12{letter-spacing:3.890830pt;}
.ls16{letter-spacing:4.424051pt;}
.lsd{letter-spacing:9.095942pt;}
.lsa{letter-spacing:13.935041pt;}
.lsb{letter-spacing:13.935091pt;}
.ls11{letter-spacing:14.022692pt;}
.ls17{letter-spacing:17.762586pt;}
.ls9{letter-spacing:17.987213pt;}
.ls23{letter-spacing:18.037938pt;}
.ls13{letter-spacing:22.392470pt;}
.ls21{letter-spacing:28.755325pt;}
.lsf{letter-spacing:30.236283pt;}
.ls27{letter-spacing:45.605298pt;}
.ls29{letter-spacing:45.605351pt;}
.ls10{letter-spacing:54.107667pt;}
.ls6{letter-spacing:66.618667pt;}
.ls1e{letter-spacing:157.043505pt;}
.ls1d{letter-spacing:157.043968pt;}
.ws14{word-spacing:-49.728000pt;}
.ws1d{word-spacing:-47.750483pt;}
.ws1a{word-spacing:-47.000800pt;}
.ws16{word-spacing:-46.610054pt;}
.ws1f{word-spacing:-44.352800pt;}
.ws26{word-spacing:-32.019669pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.666933pt;}
.ws1c{word-spacing:-15.666927pt;}
.ws1e{word-spacing:-15.363733pt;}
.ws15{word-spacing:-15.050133pt;}
.ws21{word-spacing:-15.029467pt;}
.ws17{word-spacing:-14.996800pt;}
.ws24{word-spacing:-14.984933pt;}
.ws19{word-spacing:-14.416267pt;}
.ws20{word-spacing:-14.270528pt;}
.ws2b{word-spacing:-13.876800pt;}
.ws27{word-spacing:-13.871200pt;}
.ws22{word-spacing:-13.635067pt;}
.ws0{word-spacing:-13.333333pt;}
.ws23{word-spacing:-13.207515pt;}
.ws1{word-spacing:-10.720000pt;}
.ws29{word-spacing:-9.991200pt;}
.ws18{word-spacing:-9.599360pt;}
.ws25{word-spacing:-9.502556pt;}
.ws2a{word-spacing:-9.240000pt;}
.ws28{word-spacing:-9.236320pt;}
.wsb{word-spacing:-3.829333pt;}
.wsf{word-spacing:-1.258667pt;}
.ws11{word-spacing:-0.618667pt;}
.ws10{word-spacing:-0.277333pt;}
.ws6{word-spacing:-0.240000pt;}
.ws4{word-spacing:-0.181333pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:0.080000pt;}
.wsd{word-spacing:0.138667pt;}
.ws7{word-spacing:0.213333pt;}
.ws5{word-spacing:0.277333pt;}
.wsc{word-spacing:0.330667pt;}
.ws12{word-spacing:0.474667pt;}
.ws9{word-spacing:11.530667pt;}
.ws8{word-spacing:14.730667pt;}
.wsa{word-spacing:15.370667pt;}
.ws13{word-spacing:15.509333pt;}
._4a{margin-left:-12.367545pt;}
._43{margin-left:-8.425728pt;}
._5{margin-left:-7.368846pt;}
._42{margin-left:-6.452321pt;}
._f{margin-left:-5.364467pt;}
._3{margin-left:-4.279401pt;}
._6{margin-left:-2.729776pt;}
._4{margin-left:-1.336587pt;}
._2{width:1.268147pt;}
._0{width:2.281920pt;}
._9{width:3.264256pt;}
._a{width:4.471488pt;}
._b{width:5.508288pt;}
._d{width:6.422208pt;}
._11{width:7.946142pt;}
._e{width:9.141376pt;}
._c{width:10.158080pt;}
._7{width:11.292032pt;}
._8{width:12.386112pt;}
._1b{width:13.327667pt;}
._1{width:14.229269pt;}
._10{width:16.940608pt;}
._12{width:18.459918pt;}
._18{width:19.775927pt;}
._15{width:21.060003pt;}
._17{width:22.141044pt;}
._16{width:23.899640pt;}
._14{width:24.889643pt;}
._13{width:26.170411pt;}
._19{width:27.275062pt;}
._1a{width:28.254700pt;}
._35{width:29.146587pt;}
._4d{width:30.126001pt;}
._41{width:31.161192pt;}
._4e{width:32.204963pt;}
._40{width:33.107440pt;}
._3f{width:34.006197pt;}
._33{width:35.239524pt;}
._32{width:36.284202pt;}
._4c{width:37.308525pt;}
._4b{width:38.359855pt;}
._46{width:39.426938pt;}
._28{width:40.632434pt;}
._29{width:41.606957pt;}
._44{width:43.087948pt;}
._45{width:44.073956pt;}
._2d{width:58.484383pt;}
._34{width:59.924695pt;}
._2f{width:60.837499pt;}
._48{width:77.941755pt;}
._47{width:78.986721pt;}
._2a{width:81.512589pt;}
._5e{width:85.963660pt;}
._52{width:92.377464pt;}
._53{width:93.504740pt;}
._54{width:94.741019pt;}
._5d{width:100.244736pt;}
._49{width:103.324224pt;}
._5b{width:105.047749pt;}
._30{width:124.876547pt;}
._2e{width:125.822840pt;}
._56{width:133.887954pt;}
._59{width:137.028852pt;}
._58{width:144.582983pt;}
._57{width:145.555858pt;}
._2b{width:157.043968pt;}
._2c{width:158.177481pt;}
._55{width:164.386265pt;}
._31{width:177.548640pt;}
._27{width:184.438400pt;}
._5a{width:192.986870pt;}
._5f{width:203.707538pt;}
._5c{width:253.747830pt;}
._50{width:275.892763pt;}
._51{width:277.242303pt;}
._1f{width:352.495068pt;}
._61{width:367.909674pt;}
._20{width:387.716188pt;}
._4f{width:392.074566pt;}
._22{width:403.986917pt;}
._1d{width:415.168167pt;}
._23{width:425.945506pt;}
._24{width:427.141120pt;}
._21{width:436.024970pt;}
._26{width:475.709157pt;}
._36{width:498.320994pt;}
._37{width:579.090308pt;}
._25{width:717.235200pt;}
._39{width:729.467708pt;}
._63{width:737.566441pt;}
._60{width:757.726446pt;}
._66{width:804.645905pt;}
._65{width:811.806865pt;}
._68{width:828.555625pt;}
._64{width:857.019705pt;}
._3e{width:900.809977pt;}
._67{width:925.963439pt;}
._62{width:953.320879pt;}
._69{width:992.641839pt;}
._3c{width:1043.023366pt;}
._3d{width:1050.122653pt;}
._3b{width:1057.226653pt;}
._3a{width:1121.226653pt;}
._38{width:1128.330653pt;}
._1e{width:1182.149308pt;}
._1c{width:1301.898680pt;}
.fs1f{font-size:34.560000pt;}
.fs6{font-size:36.005120pt;}
.fsa{font-size:36.314865pt;}
.fs30{font-size:36.945280pt;}
.fs36{font-size:36.960000pt;}
.fs4{font-size:38.010225pt;}
.fsf{font-size:38.397440pt;}
.fs2c{font-size:39.912304pt;}
.fs26{font-size:39.912320pt;}
.fs33{font-size:39.964784pt;}
.fs32{font-size:39.964800pt;}
.fs24{font-size:40.030080pt;}
.fs1b{font-size:40.920304pt;}
.fs1d{font-size:40.920320pt;}
.fs15{font-size:41.727360pt;}
.fs2{font-size:42.880000pt;}
.fs20{font-size:48.000000pt;}
.fs18{font-size:52.830059pt;}
.fs1e{font-size:53.120000pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:54.540245pt;}
.fs9{font-size:54.540267pt;}
.fs2d{font-size:55.484800pt;}
.fs34{font-size:55.507178pt;}
.fs35{font-size:55.507200pt;}
.fsb{font-size:56.090133pt;}
.fs3{font-size:57.082111pt;}
.fs39{font-size:57.084800pt;}
.fse{font-size:57.665067pt;}
.fs3b{font-size:58.880000pt;}
.fs10{font-size:59.305067pt;}
.fs2a{font-size:59.939709pt;}
.fs25{font-size:59.939733pt;}
.fsc{font-size:59.987200pt;}
.fs31{font-size:60.019733pt;}
.fs21{font-size:60.117843pt;}
.fs22{font-size:60.117867pt;}
.fs5{font-size:60.200533pt;}
.fs19{font-size:61.454933pt;}
.fs27{font-size:61.644800pt;}
.fsd{font-size:61.692800pt;}
.fs14{font-size:62.667708pt;}
.fs12{font-size:62.667733pt;}
.fs1a{font-size:63.202667pt;}
.fs3a{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.fs13{font-size:64.450133pt;}
.fs37{font-size:69.450133pt;}
.fs1c{font-size:72.229867pt;}
.fs2b{font-size:74.997867pt;}
.fs23{font-size:75.217067pt;}
.fs11{font-size:75.564800pt;}
.fs2f{font-size:77.707733pt;}
.fs2e{font-size:80.992501pt;}
.fs38{font-size:81.025034pt;}
.fs29{font-size:83.947733pt;}
.fs28{font-size:87.497565pt;}
.fs16{font-size:91.477867pt;}
.fs7{font-size:131.362614pt;}
.fs17{font-size:156.967404pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:1.919054pt;}
.y179{bottom:1.919102pt;}
.y198{bottom:1.919193pt;}
.y85{bottom:1.919286pt;}
.y8d{bottom:1.919313pt;}
.y92{bottom:1.919327pt;}
.y97{bottom:1.919341pt;}
.y9c{bottom:1.919366pt;}
.ya1{bottom:1.919391pt;}
.ya5{bottom:1.919725pt;}
.y56{bottom:2.079054pt;}
.yf1{bottom:2.079063pt;}
.yfa{bottom:2.079077pt;}
.y173{bottom:2.079089pt;}
.yff{bottom:2.079090pt;}
.y108{bottom:2.079126pt;}
.y18e{bottom:2.079155pt;}
.y192{bottom:2.079169pt;}
.y114{bottom:2.079217pt;}
.y119{bottom:2.079231pt;}
.y124{bottom:2.079256pt;}
.y1c5{bottom:2.079258pt;}
.ye0{bottom:2.079310pt;}
.y189{bottom:2.399136pt;}
.y1ba{bottom:2.399162pt;}
.y17e{bottom:2.879114pt;}
.y176{bottom:3.039099pt;}
.y82{bottom:3.039284pt;}
.y8a{bottom:3.039310pt;}
.y8f{bottom:3.039324pt;}
.y1cf{bottom:3.039357pt;}
.y58{bottom:3.199053pt;}
.yf8{bottom:3.199075pt;}
.y16c{bottom:3.199085pt;}
.y101{bottom:3.199090pt;}
.y17c{bottom:3.199114pt;}
.y187{bottom:3.199138pt;}
.y11b{bottom:3.199230pt;}
.y11e{bottom:3.199242pt;}
.y122{bottom:3.199254pt;}
.y127{bottom:3.199255pt;}
.y12a{bottom:3.199268pt;}
.y12e{bottom:3.199291pt;}
.ye2{bottom:3.199309pt;}
.y163{bottom:3.199358pt;}
.y54{bottom:3.359053pt;}
.yf6{bottom:3.359075pt;}
.y171{bottom:3.359087pt;}
.yfd{bottom:3.359089pt;}
.y106{bottom:3.359124pt;}
.y18c{bottom:3.359154pt;}
.y190{bottom:3.359167pt;}
.y112{bottom:3.359215pt;}
.y117{bottom:3.359229pt;}
.y120{bottom:3.359254pt;}
.y1c3{bottom:3.359256pt;}
.yde{bottom:3.359308pt;}
.yd4{bottom:3.679285pt;}
.y210{bottom:3.679287pt;}
.y1b3{bottom:4.479165pt;}
.y1d4{bottom:4.479360pt;}
.y184{bottom:4.959140pt;}
.y5d{bottom:7.039073pt;}
.y64{bottom:7.039094pt;}
.yd7{bottom:8.479282pt;}
.y4{bottom:71.966400pt;}
.y1{bottom:80.426933pt;}
.y3{bottom:87.966667pt;}
.y2{bottom:103.966667pt;}
.y1af{bottom:118.666667pt;}
.y1b0{bottom:118.666933pt;}
.y156{bottom:120.906667pt;}
.y1d6{bottom:121.226667pt;}
.y22e{bottom:121.386667pt;}
.y50{bottom:121.706667pt;}
.y7e{bottom:125.546667pt;}
.y168{bottom:128.266667pt;}
.y138{bottom:130.026667pt;}
.ycb{bottom:132.426667pt;}
.y21c{bottom:134.506667pt;}
.y20c{bottom:135.946667pt;}
.y1f2{bottom:136.426667pt;}
.y228{bottom:138.506667pt;}
.yeb{bottom:139.786667pt;}
.y1ae{bottom:140.906667pt;}
.y155{bottom:148.586667pt;}
.ya2{bottom:149.066667pt;}
.y4f{bottom:149.386667pt;}
.ya4{bottom:152.266880pt;}
.y7d{bottom:153.066667pt;}
.y167{bottom:155.946667pt;}
.y137{bottom:157.706667pt;}
.ya3{bottom:158.506667pt;}
.y1e0{bottom:159.306667pt;}
.yca{bottom:160.106667pt;}
.y21b{bottom:162.186667pt;}
.y1ad{bottom:163.626667pt;}
.y1f1{bottom:164.106667pt;}
.y227{bottom:166.026667pt;}
.yea{bottom:167.306667pt;}
.y36{bottom:173.546667pt;}
.y7c{bottom:175.466667pt;}
.y154{bottom:176.106667pt;}
.y1d5{bottom:176.266667pt;}
.y22f{bottom:176.586667pt;}
.y4e{bottom:176.906667pt;}
.y166{bottom:183.466667pt;}
.y9e{bottom:183.946667pt;}
.y136{bottom:185.226667pt;}
.y1ac{bottom:186.506667pt;}
.y1df{bottom:186.986667pt;}
.ya0{bottom:187.147200pt;}
.yc9{bottom:187.626667pt;}
.y21a{bottom:189.386667pt;}
.y203{bottom:189.706667pt;}
.y20b{bottom:191.146667pt;}
.y1f0{bottom:191.626667pt;}
.y9f{bottom:193.386667pt;}
.y1e{bottom:193.524000pt;}
.y226{bottom:193.706667pt;}
.ye9{bottom:194.986667pt;}
.y35{bottom:201.066667pt;}
.y7b{bottom:201.226667pt;}
.y153{bottom:203.786667pt;}
.yce{bottom:204.266667pt;}
.y4d{bottom:204.586667pt;}
.y1ab{bottom:208.906667pt;}
.y165{bottom:211.146667pt;}
.y135{bottom:212.906667pt;}
.y1de{bottom:214.506667pt;}
.yc8{bottom:215.306667pt;}
.y219{bottom:217.066667pt;}
.y9d{bottom:218.666667pt;}
.y20a{bottom:218.826667pt;}
.y1ef{bottom:219.306667pt;}
.y1d{bottom:221.204000pt;}
.y225{bottom:221.226667pt;}
.ye8{bottom:222.506667pt;}
.y7a{bottom:226.986667pt;}
.y152{bottom:231.306667pt;}
.y1aa{bottom:231.626667pt;}
.ycd{bottom:231.786667pt;}
.y4c{bottom:232.106667pt;}
.y164{bottom:238.666667pt;}
.y134{bottom:240.426667pt;}
.y1dd{bottom:242.186667pt;}
.yc7{bottom:242.826667pt;}
.y218{bottom:244.586667pt;}
.y99{bottom:246.346667pt;}
.y1ee{bottom:246.826667pt;}
.y224{bottom:248.906667pt;}
.y9b{bottom:249.547200pt;}
.ye7{bottom:250.186667pt;}
.y79{bottom:252.586667pt;}
.y1a9{bottom:254.186667pt;}
.y9a{bottom:255.786667pt;}
.y34{bottom:256.266667pt;}
.y151{bottom:258.986667pt;}
.y4b{bottom:259.786667pt;}
.y1d3{bottom:262.827200pt;}
.y1d1{bottom:265.546667pt;}
.y161{bottom:266.346667pt;}
.y1d2{bottom:267.306667pt;}
.y133{bottom:268.106667pt;}
.y162{bottom:269.227200pt;}
.y1dc{bottom:269.706667pt;}
.y1d0{bottom:269.866667pt;}
.y1ce{bottom:270.347200pt;}
.yc6{bottom:270.506667pt;}
.y217{bottom:272.586667pt;}
.y202{bottom:273.866667pt;}
.y209{bottom:274.026667pt;}
.y1ed{bottom:274.506667pt;}
.y1c{bottom:276.404000pt;}
.y223{bottom:276.426667pt;}
.y1a8{bottom:277.226667pt;}
.ye6{bottom:277.706667pt;}
.y78{bottom:278.346667pt;}
.y98{bottom:281.226667pt;}
.y150{bottom:286.506667pt;}
.y4a{bottom:287.306667pt;}
.y216{bottom:294.986667pt;}
.y132{bottom:295.626667pt;}
.y160{bottom:296.586667pt;}
.y1cd{bottom:297.386667pt;}
.yc5{bottom:298.026667pt;}
.y1a7{bottom:299.786667pt;}
.y201{bottom:301.546667pt;}
.y1ec{bottom:302.026667pt;}
.y1b{bottom:303.968000pt;}
.y77{bottom:304.106667pt;}
.ye5{bottom:305.386667pt;}
.y94{bottom:308.906667pt;}
.y33{bottom:311.466667pt;}
.y96{bottom:312.107200pt;}
.y14f{bottom:314.186667pt;}
.y22b{bottom:314.666667pt;}
.y49{bottom:314.986667pt;}
.y95{bottom:318.346667pt;}
.y1a6{bottom:320.106667pt;}
.y215{bottom:320.586667pt;}
.y1a5{bottom:322.186667pt;}
.y131{bottom:323.306667pt;}
.y15f{bottom:324.266667pt;}
.y1cc{bottom:324.906667pt;}
.yc4{bottom:325.706667pt;}
.y200{bottom:329.066667pt;}
.y208{bottom:329.226667pt;}
.y1eb{bottom:329.706667pt;}
.y1a{bottom:331.532000pt;}
.y222{bottom:331.626667pt;}
.ye4{bottom:332.906667pt;}
.y76{bottom:335.306667pt;}
.y14e{bottom:341.706667pt;}
.y48{bottom:342.506667pt;}
.y93{bottom:343.786667pt;}
.y214{bottom:346.346667pt;}
.y1a4{bottom:346.666667pt;}
.y91{bottom:346.987200pt;}
.y130{bottom:350.826667pt;}
.y15e{bottom:351.786667pt;}
.y1cb{bottom:352.586667pt;}
.y8e{bottom:352.747200pt;}
.y90{bottom:353.226667pt;}
.y1ff{bottom:356.746667pt;}
.y1ea{bottom:357.226667pt;}
.y19{bottom:359.096000pt;}
.y221{bottom:359.306667pt;}
.ye3{bottom:360.586667pt;}
.y75{bottom:362.986667pt;}
.y32{bottom:366.666667pt;}
.y14d{bottom:369.386667pt;}
.y47{bottom:370.186667pt;}
.y213{bottom:372.106667pt;}
.y1a3{bottom:374.186667pt;}
.y88{bottom:378.506667pt;}
.y15d{bottom:379.466667pt;}
.y1ca{bottom:379.786667pt;}
.y1db{bottom:380.106667pt;}
.yc3{bottom:380.586667pt;}
.y8c{bottom:381.707200pt;}
.y1fe{bottom:384.266667pt;}
.y1e9{bottom:384.906667pt;}
.y18{bottom:386.660000pt;}
.y220{bottom:386.826667pt;}
.y89{bottom:387.467200pt;}
.y8b{bottom:387.946667pt;}
.ydc{bottom:388.106667pt;}
.ydf{bottom:390.347200pt;}
.y74{bottom:390.506667pt;}
.ye1{bottom:390.987200pt;}
.ydd{bottom:393.547200pt;}
.y14c{bottom:396.906667pt;}
.y46{bottom:397.706667pt;}
.y212{bottom:397.866667pt;}
.y1a2{bottom:401.866667pt;}
.y12f{bottom:406.026667pt;}
.y15c{bottom:406.986667pt;}
.y1c9{bottom:407.786667pt;}
.yc2{bottom:408.426667pt;}
.y1fd{bottom:411.946667pt;}
.y1e8{bottom:412.426667pt;}
.y86{bottom:413.226667pt;}
.y17{bottom:414.224000pt;}
.y21f{bottom:414.506667pt;}
.y73{bottom:418.186667pt;}
.y87{bottom:418.826667pt;}
.y31{bottom:421.866667pt;}
.ydb{bottom:422.026667pt;}
.y211{bottom:423.626667pt;}
.y14b{bottom:424.586667pt;}
.y45{bottom:425.386667pt;}
.y1a1{bottom:429.386667pt;}
.y12c{bottom:433.706667pt;}
.y15b{bottom:434.666667pt;}
.y1c8{bottom:435.306667pt;}
.yc1{bottom:436.106667pt;}
.y12d{bottom:436.587200pt;}
.y258{bottom:437.386667pt;}
.y1fc{bottom:439.466667pt;}
.y1e7{bottom:440.106667pt;}
.y16{bottom:441.788000pt;}
.y21e{bottom:442.026667pt;}
.y20f{bottom:445.387200pt;}
.y72{bottom:445.706667pt;}
.y84{bottom:448.907200pt;}
.y20e{bottom:449.066667pt;}
.yd0{bottom:449.706667pt;}
.yd3{bottom:450.507200pt;}
.y30{bottom:450.666667pt;}
.y14a{bottom:452.106667pt;}
.yd6{bottom:452.587200pt;}
.y44{bottom:452.906667pt;}
.y81{bottom:454.667200pt;}
.y83{bottom:455.146667pt;}
.yda{bottom:456.106667pt;}
.y1a0{bottom:456.906667pt;}
.y1da{bottom:460.906667pt;}
.yd5{bottom:461.066667pt;}
.y257{bottom:461.386667pt;}
.y15a{bottom:462.186667pt;}
.y1c7{bottom:462.986667pt;}
.yc0{bottom:463.626667pt;}
.y12b{bottom:463.946667pt;}
.y21d{bottom:465.866667pt;}
.yd2{bottom:466.986667pt;}
.y1fb{bottom:467.146667pt;}
.y1e6{bottom:467.626667pt;}
.y15{bottom:469.352000pt;}
.yd1{bottom:470.986667pt;}
.y71{bottom:473.386667pt;}
.y256{bottom:474.346667pt;}
.yd9{bottom:474.826667pt;}
.y2f{bottom:478.346667pt;}
.yd8{bottom:479.786667pt;}
.y43{bottom:480.586667pt;}
.y19f{bottom:484.586667pt;}
.y255{bottom:487.306667pt;}
.y1d9{bottom:488.426667pt;}
.y159{bottom:489.866667pt;}
.y1c6{bottom:490.506667pt;}
.ybf{bottom:491.146667pt;}
.y128{bottom:491.626667pt;}
.y129{bottom:494.507200pt;}
.y1fa{bottom:494.666667pt;}
.y1e5{bottom:495.306667pt;}
.y14{bottom:496.916000pt;}
.y70{bottom:497.066667pt;}
.y254{bottom:500.266667pt;}
.y2e{bottom:506.986667pt;}
.y149{bottom:507.306667pt;}
.y22d{bottom:507.786667pt;}
.y42{bottom:508.106667pt;}
.y19e{bottom:512.106667pt;}
.y253{bottom:513.066667pt;}
.y1c1{bottom:518.026667pt;}
.y1d8{bottom:518.186667pt;}
.ybe{bottom:518.826667pt;}
.y1c4{bottom:520.267200pt;}
.y125{bottom:521.866667pt;}
.y1f9{bottom:522.346667pt;}
.y1e4{bottom:522.826667pt;}
.y1c2{bottom:523.467200pt;}
.y123{bottom:524.107200pt;}
.y13{bottom:524.480000pt;}
.y126{bottom:524.747200pt;}
.y252{bottom:526.026667pt;}
.y11f{bottom:527.307200pt;}
.y121{bottom:527.467200pt;}
.y2d{bottom:534.666667pt;}
.y148{bottom:534.986667pt;}
.y41{bottom:535.786667pt;}
.y251{bottom:538.986667pt;}
.y19d{bottom:539.786667pt;}
.yba{bottom:546.506667pt;}
.y1f8{bottom:549.866667pt;}
.y250{bottom:551.946667pt;}
.y12{bottom:552.044000pt;}
.ybc{bottom:552.106667pt;}
.ybd{bottom:554.026667pt;}
.y11c{bottom:555.786667pt;}
.ybb{bottom:556.746667pt;}
.y11d{bottom:558.667200pt;}
.y147{bottom:562.506667pt;}
.y2c{bottom:563.306667pt;}
.y24f{bottom:564.906667pt;}
.y19c{bottom:567.306667pt;}
.y1f7{bottom:577.546667pt;}
.y24e{bottom:579.146667pt;}
.y11{bottom:579.608000pt;}
.y1c0{bottom:579.626667pt;}
.yb9{bottom:583.626667pt;}
.y115{bottom:586.026667pt;}
.y118{bottom:588.267200pt;}
.y146{bottom:588.746667pt;}
.y11a{bottom:588.907200pt;}
.y22c{bottom:590.666667pt;}
.y40{bottom:590.986667pt;}
.y116{bottom:591.467200pt;}
.y19b{bottom:594.986667pt;}
.y24d{bottom:597.546667pt;}
.y1f6{bottom:605.066667pt;}
.y1bf{bottom:607.306667pt;}
.yb8{bottom:611.306667pt;}
.y24c{bottom:615.946667pt;}
.y2b{bottom:618.506667pt;}
.y110{bottom:619.946667pt;}
.y113{bottom:622.187200pt;}
.y19a{bottom:622.506667pt;}
.y111{bottom:625.387200pt;}
.y145{bottom:631.946667pt;}
.y1f5{bottom:632.746667pt;}
.y144{bottom:634.026667pt;}
.y24b{bottom:634.346667pt;}
.y1be{bottom:634.826667pt;}
.yb7{bottom:638.826667pt;}
.ycf{bottom:645.866667pt;}
.y3f{bottom:646.186667pt;}
.y199{bottom:650.186667pt;}
.y24a{bottom:652.906667pt;}
.y10f{bottom:654.026667pt;}
.y143{bottom:656.586667pt;}
.y1f4{bottom:660.266667pt;}
.y1bd{bottom:662.506667pt;}
.y10{bottom:662.808000pt;}
.yb6{bottom:666.506667pt;}
.y249{bottom:670.026667pt;}
.y6f{bottom:672.426667pt;}
.y169{bottom:673.386667pt;}
.y2a{bottom:673.706667pt;}
.y266{bottom:676.746667pt;}
.y142{bottom:677.226667pt;}
.y195{bottom:677.866667pt;}
.y141{bottom:679.306667pt;}
.ycc{bottom:681.066667pt;}
.y197{bottom:681.067200pt;}
.y10e{bottom:681.546667pt;}
.y248{bottom:682.826667pt;}
.y196{bottom:687.306667pt;}
.y1f3{bottom:687.946667pt;}
.y1bc{bottom:690.026667pt;}
.yb5{bottom:694.026667pt;}
.y247{bottom:695.786667pt;}
.yf{bottom:698.994667pt;}
.y140{bottom:699.946667pt;}
.y6e{bottom:700.106667pt;}
.y3e{bottom:701.386667pt;}
.y13f{bottom:702.026667pt;}
.y265{bottom:704.426667pt;}
.y246{bottom:708.746667pt;}
.y10d{bottom:709.226667pt;}
.y194{bottom:712.586667pt;}
.y207{bottom:715.466667pt;}
.y1bb{bottom:717.706667pt;}
.yb4{bottom:721.706667pt;}
.y13e{bottom:724.586667pt;}
.y6d{bottom:727.626667pt;}
.ye{bottom:727.821333pt;}
.y29{bottom:728.906667pt;}
.y264{bottom:733.066667pt;}
.y245{bottom:734.666667pt;}
.y10c{bottom:736.746667pt;}
.y193{bottom:740.106667pt;}
.y191{bottom:742.347200pt;}
.y206{bottom:743.146667pt;}
.y1b7{bottom:745.386667pt;}
.y18f{bottom:745.547200pt;}
.y13d{bottom:746.986667pt;}
.y244{bottom:747.626667pt;}
.yb3{bottom:749.226667pt;}
.yd{bottom:749.288000pt;}
.y1b2{bottom:749.707200pt;}
.y1b5{bottom:751.626667pt;}
.y1b8{bottom:753.066667pt;}
.y1b4{bottom:754.186667pt;}
.y6c{bottom:755.306667pt;}
.y1b1{bottom:755.946667pt;}
.y22a{bottom:756.266667pt;}
.y28{bottom:756.586667pt;}
.y1b9{bottom:758.187200pt;}
.y243{bottom:759.786667pt;}
.y263{bottom:761.866667pt;}
.y1b6{bottom:762.026667pt;}
.y10b{bottom:764.426667pt;}
.y13c{bottom:769.866667pt;}
.y205{bottom:770.666667pt;}
.y242{bottom:772.746667pt;}
.y18a{bottom:774.026667pt;}
.y18d{bottom:776.267200pt;}
.yb2{bottom:776.906667pt;}
.yc{bottom:778.114667pt;}
.y18b{bottom:779.467200pt;}
.y6b{bottom:782.826667pt;}
.y229{bottom:783.786667pt;}
.y27{bottom:784.106667pt;}
.y1e3{bottom:784.586667pt;}
.y241{bottom:785.066667pt;}
.y262{bottom:789.386667pt;}
.y10a{bottom:791.946667pt;}
.y13b{bottom:792.266667pt;}
.y240{bottom:798.026667pt;}
.y204{bottom:798.346667pt;}
.yb1{bottom:804.426667pt;}
.y180{bottom:808.106667pt;}
.y23f{bottom:810.186667pt;}
.y6a{bottom:810.506667pt;}
.y20d{bottom:811.466667pt;}
.y26{bottom:811.786667pt;}
.y183{bottom:811.947200pt;}
.y1e2{bottom:812.266667pt;}
.y182{bottom:814.026667pt;}
.yb{bottom:814.301333pt;}
.y13a{bottom:814.986667pt;}
.y185{bottom:815.946667pt;}
.y261{bottom:818.186667pt;}
.y181{bottom:818.666667pt;}
.y186{bottom:819.307200pt;}
.y109{bottom:819.626667pt;}
.y23e{bottom:823.146667pt;}
.y188{bottom:824.747200pt;}
.yb0{bottom:832.106667pt;}
.y23d{bottom:835.466667pt;}
.y1e1{bottom:836.106667pt;}
.y69{bottom:838.026667pt;}
.y25{bottom:839.306667pt;}
.ya{bottom:843.128000pt;}
.y260{bottom:845.706667pt;}
.y104{bottom:847.146667pt;}
.y17f{bottom:848.266667pt;}
.y23c{bottom:848.426667pt;}
.y107{bottom:849.387200pt;}
.y105{bottom:852.587200pt;}
.yaf{bottom:859.626667pt;}
.y23b{bottom:861.226667pt;}
.y68{bottom:865.706667pt;}
.y3d{bottom:866.986667pt;}
.y24{bottom:866.986933pt;}
.y23a{bottom:873.546667pt;}
.y25f{bottom:874.506667pt;}
.y17a{bottom:875.946667pt;}
.y17b{bottom:878.827200pt;}
.y17d{bottom:879.147200pt;}
.y103{bottom:881.066667pt;}
.y9{bottom:883.608000pt;}
.y239{bottom:886.506667pt;}
.yae{bottom:887.306667pt;}
.y139{bottom:892.426667pt;}
.y230{bottom:893.066667pt;}
.y67{bottom:893.226667pt;}
.y3c{bottom:894.506667pt;}
.y23{bottom:894.506933pt;}
.y238{bottom:898.666667pt;}
.y25e{bottom:902.186667pt;}
.y174{bottom:906.186667pt;}
.y102{bottom:908.746667pt;}
.y178{bottom:909.387200pt;}
.y237{bottom:911.626667pt;}
.yad{bottom:914.826667pt;}
.y177{bottom:915.626667pt;}
.y175{bottom:915.947200pt;}
.y1d7{bottom:920.106667pt;}
.y60{bottom:920.746667pt;}
.y25d{bottom:921.866667pt;}
.y3b{bottom:922.186667pt;}
.y22{bottom:922.186933pt;}
.y236{bottom:924.586667pt;}
.y63{bottom:924.587200pt;}
.y66{bottom:927.786667pt;}
.y62{bottom:935.306667pt;}
.yfb{bottom:936.266667pt;}
.y235{bottom:937.546667pt;}
.yfe{bottom:938.507200pt;}
.y8{bottom:938.808000pt;}
.y61{bottom:939.146667pt;}
.y100{bottom:939.147200pt;}
.y25c{bottom:940.266667pt;}
.y16a{bottom:941.066667pt;}
.yfc{bottom:941.707200pt;}
.yac{bottom:942.506667pt;}
.y172{bottom:943.307200pt;}
.y65{bottom:945.706667pt;}
.y16f{bottom:945.866667pt;}
.y170{bottom:946.507200pt;}
.y16e{bottom:947.786667pt;}
.y3a{bottom:949.706667pt;}
.y21{bottom:949.706933pt;}
.y234{bottom:950.506667pt;}
.y16d{bottom:950.666667pt;}
.y16b{bottom:951.147200pt;}
.y25b{bottom:958.666667pt;}
.y233{bottom:963.466667pt;}
.y7{bottom:966.328000pt;}
.yab{bottom:970.026667pt;}
.yf4{bottom:970.186667pt;}
.yf9{bottom:972.427200pt;}
.y59{bottom:973.386667pt;}
.y158{bottom:975.306667pt;}
.yf5{bottom:975.627200pt;}
.yf7{bottom:975.787200pt;}
.y80{bottom:977.066667pt;}
.y5c{bottom:977.227200pt;}
.y39{bottom:977.386667pt;}
.y5f{bottom:980.426667pt;}
.y5b{bottom:987.946667pt;}
.y5a{bottom:991.786667pt;}
.y25a{bottom:995.146667pt;}
.y232{bottom:995.466667pt;}
.yaa{bottom:997.706667pt;}
.y5e{bottom:998.346667pt;}
.yf3{bottom:1002.186667pt;}
.y157{bottom:1002.826667pt;}
.yec{bottom:1004.266667pt;}
.y7f{bottom:1004.586667pt;}
.y38{bottom:1004.906667pt;}
.y20{bottom:1004.906933pt;}
.yf0{bottom:1005.867200pt;}
.yef{bottom:1012.746667pt;}
.y259{bottom:1013.546667pt;}
.y231{bottom:1013.866667pt;}
.y6{bottom:1021.208000pt;}
.yed{bottom:1023.466667pt;}
.ya6{bottom:1025.386667pt;}
.y52{bottom:1026.186667pt;}
.y55{bottom:1028.427200pt;}
.ya8{bottom:1028.587200pt;}
.yf2{bottom:1030.186667pt;}
.y53{bottom:1031.627200pt;}
.y57{bottom:1031.787200pt;}
.y37{bottom:1032.266667pt;}
.y1f{bottom:1032.266933pt;}
.y51{bottom:1032.586667pt;}
.yee{bottom:1033.066667pt;}
.ya7{bottom:1034.826667pt;}
.y5{bottom:1048.888000pt;}
.h1a{height:10.080000pt;}
.h21{height:10.080320pt;}
.ha{height:10.560000pt;}
.h5a{height:10.880000pt;}
.h3b{height:11.360000pt;}
.h4a{height:12.480000pt;}
.h17{height:13.280000pt;}
.h44{height:13.600000pt;}
.h4d{height:14.400000pt;}
.h35{height:14.720000pt;}
.hc{height:15.680000pt;}
.h8{height:15.840000pt;}
.h57{height:16.320000pt;}
.h2d{height:17.600000pt;}
.h6d{height:18.080000pt;}
.h5d{height:21.920000pt;}
.h54{height:23.680000pt;}
.h41{height:33.901875pt;}
.h10{height:35.337056pt;}
.h4b{height:35.623323pt;}
.h1b{height:35.641054pt;}
.h12{height:36.160000pt;}
.h60{height:36.241732pt;}
.h68{height:36.256172pt;}
.h66{height:36.274219pt;}
.h2{height:37.057292pt;}
.hb{height:37.286397pt;}
.h49{height:37.304957pt;}
.h23{height:37.666239pt;}
.h27{height:37.684987pt;}
.h1d{height:37.869267pt;}
.h50{height:39.152271pt;}
.h5b{height:39.171744pt;}
.h63{height:39.203736pt;}
.h62{height:39.203752pt;}
.h71{height:39.243750pt;}
.h48{height:39.267788pt;}
.h9{height:39.634161pt;}
.h3c{height:40.141060pt;}
.h3e{height:40.141076pt;}
.h33{height:40.932747pt;}
.h4f{height:41.618311pt;}
.h20{height:41.651269pt;}
.h6c{height:42.063437pt;}
.h6{height:42.084375pt;}
.h30{height:42.880000pt;}
.h1{height:46.500000pt;}
.h42{height:47.085938pt;}
.h18{height:49.613514pt;}
.h64{height:50.493102pt;}
.h36{height:51.824018pt;}
.h4c{height:51.849814pt;}
.h3f{height:52.108438pt;}
.h40{height:52.497500pt;}
.h19{height:53.501658pt;}
.h5c{height:54.428205pt;}
.h65{height:54.450178pt;}
.h58{height:54.525234pt;}
.h45{height:54.687276pt;}
.h4e{height:55.100100pt;}
.h34{height:55.995098pt;}
.he{height:56.022970pt;}
.h22{height:56.566953pt;}
.h29{height:57.006830pt;}
.h69{height:57.892275pt;}
.h1c{height:58.500256pt;}
.h52{height:58.798303pt;}
.h1e{height:58.874156pt;}
.h61{height:58.876779pt;}
.h46{height:58.973044pt;}
.hf{height:59.054136pt;}
.h14{height:59.083531pt;}
.hd{height:59.534857pt;}
.h6b{height:59.537662pt;}
.h25{height:60.142862pt;}
.h37{height:60.284649pt;}
.h3a{height:60.314656pt;}
.h2e{height:61.474329pt;}
.h2b{height:61.474354pt;}
.h24{height:61.853331pt;}
.h53{height:62.515269pt;}
.h43{height:62.781250pt;}
.h11{height:62.787275pt;}
.h6e{height:62.812475pt;}
.h5{height:62.812500pt;}
.h39{height:64.095575pt;}
.h51{height:64.293600pt;}
.h1f{height:64.343663pt;}
.h3{height:64.500000pt;}
.h32{height:65.360488pt;}
.h38{height:65.918406pt;}
.h28{height:66.750000pt;}
.h2a{height:67.219475pt;}
.h4{height:71.524375pt;}
.h67{height:72.434319pt;}
.h5e{height:73.676284pt;}
.h6a{height:73.705878pt;}
.h3d{height:75.333494pt;}
.h59{height:78.220431pt;}
.h47{height:78.449050pt;}
.h26{height:78.811725pt;}
.h55{height:79.593732pt;}
.h5f{height:81.046737pt;}
.h56{height:87.554862pt;}
.h6f{height:90.724375pt;}
.h70{height:91.364375pt;}
.h7{height:92.252500pt;}
.h2c{height:96.704953pt;}
.h2f{height:99.214485pt;}
.h15{height:130.763531pt;}
.h16{height:134.467275pt;}
.h13{height:137.007101pt;}
.h31{height:163.712097pt;}
.h0{height:1122.666667pt;}
.wd{width:2.560000pt;}
.w20{width:2.720000pt;}
.w2{width:2.880000pt;}
.w11{width:3.040000pt;}
.w22{width:4.800000pt;}
.w15{width:4.960000pt;}
.w1e{width:5.600000pt;}
.w17{width:5.760000pt;}
.w9{width:5.920000pt;}
.wa{width:6.080000pt;}
.we{width:6.400000pt;}
.wc{width:6.560000pt;}
.w8{width:6.880000pt;}
.w4{width:7.520000pt;}
.w16{width:7.680000pt;}
.w19{width:8.000000pt;}
.w1{width:8.160000pt;}
.w12{width:8.320000pt;}
.w7{width:8.960000pt;}
.w6{width:9.120000pt;}
.w1c{width:9.760000pt;}
.w5{width:10.880000pt;}
.w3{width:12.000000pt;}
.w1b{width:12.320000pt;}
.w14{width:12.800000pt;}
.w10{width:12.960000pt;}
.w1f{width:14.720000pt;}
.w1a{width:14.880000pt;}
.w1d{width:15.040000pt;}
.w23{width:15.200000pt;}
.w21{width:15.680000pt;}
.wb{width:15.840000pt;}
.w18{width:17.760000pt;}
.w13{width:36.320000pt;}
.wf{width:36.800000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa2{left:1.119934pt;}
.xbc{left:2.399899pt;}
.x22{left:6.879806pt;}
.x2{left:67.200000pt;}
.x3{left:75.526667pt;}
.x1f{left:79.201160pt;}
.x43{left:80.480000pt;}
.xed{left:82.400000pt;}
.xba{left:83.520000pt;}
.xf9{left:88.960000pt;}
.x44{left:91.200000pt;}
.xda{left:96.320000pt;}
.x45{left:98.080000pt;}
.x5{left:99.520595pt;}
.x46{left:104.000000pt;}
.xee{left:106.080000pt;}
.xef{left:110.080000pt;}
.x47{left:112.800000pt;}
.xab{left:115.840000pt;}
.xeb{left:118.400000pt;}
.xe0{left:120.640000pt;}
.x4{left:122.725957pt;}
.xf0{left:123.840000pt;}
.x20{left:129.920000pt;}
.xfa{left:134.880653pt;}
.xfc{left:137.439960pt;}
.xac{left:138.400000pt;}
.x8f{left:140.480000pt;}
.xec{left:142.400000pt;}
.xf1{left:143.680000pt;}
.xe1{left:146.080000pt;}
.xad{left:148.160000pt;}
.xe2{left:152.000000pt;}
.xdb{left:155.040000pt;}
.xf2{left:156.480000pt;}
.xc4{left:157.440000pt;}
.xc5{left:159.840000pt;}
.xdc{left:161.440000pt;}
.x48{left:162.720000pt;}
.xa1{left:163.840000pt;}
.xdd{left:165.120000pt;}
.xc6{left:168.800000pt;}
.x49{left:170.720000pt;}
.xf3{left:172.320000pt;}
.xde{left:174.400000pt;}
.xc7{left:175.840000pt;}
.x4a{left:177.600000pt;}
.x4b{left:181.600000pt;}
.xa3{left:182.720000pt;}
.xca{left:185.120000pt;}
.x4c{left:188.480000pt;}
.xe3{left:190.240000pt;}
.xcb{left:193.920000pt;}
.x4d{left:196.960000pt;}
.xc8{left:201.600000pt;}
.xaa{left:203.680000pt;}
.xf4{left:205.920000pt;}
.xe4{left:207.840000pt;}
.xc9{left:210.080000pt;}
.x4e{left:213.920000pt;}
.x9e{left:218.720000pt;}
.x4f{left:221.920000pt;}
.xe5{left:223.520000pt;}
.x9f{left:225.920000pt;}
.xa7{left:226.880000pt;}
.x50{left:228.800000pt;}
.xcc{left:229.920000pt;}
.x51{left:232.800000pt;}
.xa8{left:234.560000pt;}
.xa0{left:236.800000pt;}
.x52{left:239.680000pt;}
.x85{left:244.480000pt;}
.xa9{left:245.760000pt;}
.x53{left:247.840000pt;}
.x86{left:249.920000pt;}
.xe6{left:252.000000pt;}
.xbd{left:252.960000pt;}
.xf5{left:254.240000pt;}
.xdf{left:258.720000pt;}
.xbe{left:262.720000pt;}
.xbb{left:264.480000pt;}
.xbf{left:268.480000pt;}
.x54{left:283.680000pt;}
.xc0{left:287.040000pt;}
.x55{left:291.520000pt;}
.xa5{left:293.120000pt;}
.x56{left:298.560000pt;}
.xa6{left:300.320000pt;}
.x57{left:302.400000pt;}
.xc1{left:303.840000pt;}
.xcd{left:306.880000pt;}
.x58{left:309.440000pt;}
.x69{left:310.720000pt;}
.xce{left:313.760000pt;}
.xb4{left:314.720000pt;}
.xf6{left:316.480000pt;}
.x59{left:317.920000pt;}
.xb5{left:319.840000pt;}
.x6a{left:325.600000pt;}
.xcf{left:327.520000pt;}
.x6b{left:329.600000pt;}
.xd0{left:330.560000pt;}
.xb6{left:335.200000pt;}
.x6c{left:336.480000pt;}
.xe7{left:339.200000pt;}
.xd1{left:342.240000pt;}
.x6d{left:344.960000pt;}
.xe8{left:348.640000pt;}
.xb0{left:354.560000pt;}
.xb2{left:356.960000pt;}
.x6e{left:360.000000pt;}
.x34{left:360.960000pt;}
.xb{left:362.240000pt;}
.xd2{left:364.960000pt;}
.xe9{left:366.880000pt;}
.x6f{left:368.000000pt;}
.xb1{left:369.280000pt;}
.xc{left:372.000000pt;}
.x70{left:374.880000pt;}
.xd{left:376.960000pt;}
.x71{left:378.880000pt;}
.xd3{left:380.640000pt;}
.x87{left:382.560000pt;}
.x72{left:385.760000pt;}
.x88{left:392.480000pt;}
.x73{left:393.920000pt;}
.xa4{left:396.000000pt;}
.x89{left:398.560000pt;}
.xe{left:400.640000pt;}
.x35{left:402.240000pt;}
.x15{left:403.680000pt;}
.xf{left:405.600000pt;}
.xd4{left:409.280000pt;}
.xea{left:412.320000pt;}
.x16{left:413.600000pt;}
.x36{left:416.000000pt;}
.x10{left:417.440000pt;}
.x17{left:418.560000pt;}
.x8a{left:421.280000pt;}
.x91{left:423.040000pt;}
.x12{left:424.320027pt;}
.xd5{left:425.920000pt;}
.x64{left:430.560000pt;}
.x18{left:431.520000pt;}
.x11{left:433.280000pt;}
.x74{left:435.360000pt;}
.x1a{left:436.480000pt;}
.x65{left:438.400000pt;}
.x92{left:441.120000pt;}
.x75{left:443.200000pt;}
.x93{left:444.160000pt;}
.x66{left:445.440000pt;}
.xd6{left:446.720000pt;}
.x60{left:448.320000pt;}
.x67{left:449.280000pt;}
.x76{left:450.240000pt;}
.x6{left:451.680000pt;}
.x19{left:453.440000pt;}
.x61{left:456.320000pt;}
.x94{left:459.040000pt;}
.x7{left:460.640000pt;}
.xb3{left:461.760000pt;}
.x13{left:462.879920pt;}
.x8{left:464.320000pt;}
.x62{left:467.200000pt;}
.x77{left:469.600000pt;}
.x90{left:471.200000pt;}
.x63{left:474.080000pt;}
.x9b{left:475.360000pt;}
.x9{left:476.320000pt;}
.x21{left:477.440000pt;}
.x14{left:481.600000pt;}
.x78{left:483.040000pt;}
.x8b{left:484.800000pt;}
.x79{left:488.000000pt;}
.xa{left:492.320000pt;}
.x1b{left:494.239787pt;}
.x7a{left:496.000000pt;}
.x8c{left:497.600000pt;}
.x95{left:499.040000pt;}
.x23{left:500.160000pt;}
.xf7{left:501.920000pt;}
.x96{left:503.040000pt;}
.x24{left:505.920000pt;}
.x7b{left:509.920000pt;}
.x9c{left:511.840000pt;}
.x25{left:514.880000pt;}
.x7c{left:516.800000pt;}
.x1c{left:519.040000pt;}
.x7d{left:521.760000pt;}
.x26{left:523.840000pt;}
.x9d{left:525.280000pt;}
.x5a{left:526.240000pt;}
.x1d{left:528.640000pt;}
.x27{left:532.800000pt;}
.x5b{left:534.240000pt;}
.x8d{left:537.280000pt;}
.x5c{left:541.120000pt;}
.x8e{left:542.240000pt;}
.x28{left:543.520000pt;}
.x5d{left:545.120000pt;}
.x7e{left:547.680000pt;}
.x29{left:550.560000pt;}
.x5e{left:552.000000pt;}
.x97{left:553.120000pt;}
.x2a{left:555.360000pt;}
.x5f{left:560.480000pt;}
.x2b{left:565.280000pt;}
.xaf{left:566.880000pt;}
.xae{left:570.560000pt;}
.x7f{left:571.520000pt;}
.x2c{left:573.920000pt;}
.x98{left:575.200000pt;}
.x80{left:582.560000pt;}
.x81{left:586.560000pt;}
.xf8{left:587.840000pt;}
.xc2{left:591.840000pt;}
.x82{left:593.440000pt;}
.x83{left:596.480000pt;}
.x37{left:598.400000pt;}
.xc3{left:600.160000pt;}
.x38{left:603.360000pt;}
.x84{left:606.400000pt;}
.xd7{left:609.280000pt;}
.x2d{left:611.360000pt;}
.x39{left:614.080000pt;}
.xd8{left:615.040000pt;}
.x2e{left:616.320000pt;}
.xd9{left:618.720000pt;}
.x3a{left:621.120000pt;}
.x2f{left:627.040000pt;}
.x30{left:633.920000pt;}
.x3b{left:635.840000pt;}
.xfb{left:638.720000pt;}
.x31{left:639.840000pt;}
.x99{left:641.440000pt;}
.xb9{left:642.720000pt;}
.x3c{left:644.800000pt;}
.x9a{left:646.880000pt;}
.x32{left:648.640000pt;}
.x3d{left:653.760000pt;}
.x33{left:657.760000pt;}
.xb7{left:660.960000pt;}
.x3e{left:664.480000pt;}
.xb8{left:666.080000pt;}
.x3f{left:671.520000pt;}
.x40{left:676.320000pt;}
.x41{left:686.240000pt;}
.x42{left:694.880000pt;}
.x68{left:702.080000pt;}
.x1{left:710.080000pt;}
.x1e{left:718.080000pt;}
}




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